From a4840fcbd5a1bd3aaad1a9b9daf29115f806bb8b Mon Sep 17 00:00:00 2001 From: Philip Offtermatt Date: Thu, 19 Oct 2023 09:56:41 +0200 Subject: [PATCH 001/111] Start adding mbt using Quint model --- go.mod | 5 +- go.sum | 2 + .../difference/core/quint_model/ccv_model.qnt | 33 +- .../core/quint_model/driver/common.go | 96 + .../core/quint_model/driver/core_test.go | 346 + .../core/quint_model/driver/driver/.gitignore | 2 + .../core/quint_model/driver/mbt_test.go | 68 + .../core/quint_model/driver/setup.go | 622 + .../core/quint_model/driver/trace.json | 19892 ++++++++++++++++ 9 files changed, 21060 insertions(+), 6 deletions(-) create mode 100644 tests/difference/core/quint_model/driver/common.go create mode 100644 tests/difference/core/quint_model/driver/core_test.go create mode 100644 tests/difference/core/quint_model/driver/driver/.gitignore create mode 100644 tests/difference/core/quint_model/driver/mbt_test.go create mode 100644 tests/difference/core/quint_model/driver/setup.go create mode 100644 tests/difference/core/quint_model/driver/trace.json diff --git a/go.mod b/go.mod index 9bfd10a01c..9bfb1b9f83 100644 --- a/go.mod +++ b/go.mod @@ -1,6 +1,8 @@ module github.com/cosmos/interchain-security/v3 -go 1.20 +go 1.21.1 + +toolchain go1.21.3 require ( cosmossdk.io/errors v1.0.0 @@ -177,6 +179,7 @@ require ( github.com/cockroachdb/redact v1.1.5 // indirect github.com/getsentry/sentry-go v0.23.0 // indirect github.com/google/s2a-go v0.1.4 // indirect + github.com/informalsystems/itf-go v0.0.1 // indirect github.com/kr/pretty v0.3.1 // indirect github.com/kr/text v0.2.0 // indirect github.com/mattn/go-colorable v0.1.13 // indirect diff --git a/go.sum b/go.sum index e2d215c70a..d982afd86f 100644 --- a/go.sum +++ b/go.sum @@ -774,6 +774,8 @@ 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/itf-go v0.0.1 h1:lVvdg3v+IMWOsVfIvOOGy1hHFO5KxoS8b8EiwKLbQDg= +github.com/informalsystems/itf-go v0.0.1/go.mod h1:wgqaQ/yl2kbNlgw6GaleuHEefpZvkZo6Hc0jc8cGG9M= 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= diff --git a/tests/difference/core/quint_model/ccv_model.qnt b/tests/difference/core/quint_model/ccv_model.qnt index f886fe9e85..500246bd6b 100644 --- a/tests/difference/core/quint_model/ccv_model.qnt +++ b/tests/difference/core/quint_model/ccv_model.qnt @@ -15,6 +15,16 @@ module ccv_model { import ccv(VscTimeout = 5 * Week, CcvTimeout = ccvTimeouts, UnbondingPeriodPerChain = unbondingPeriods, ConsumerChains = consumerChains).* from "./ccv" + type Parameters = { + VscTimeout: Time, + CcvTimeout: Chain -> Time, + UnbondingPeriodPerChain: Chain -> Time, + ConsumerChains: Set[Chain], + Nodes: Set[Node], + InitialValidatorSet: Node -> int, + } + + var params: Parameters var currentState: ProtocolState @@ -126,6 +136,14 @@ module ccv_model { consumerStates: consumerStates }, trace' = List(emptyAction.with("kind", "init")), + params' = { + VscTimeout: VscTimeout, + CcvTimeout: CcvTimeout, + UnbondingPeriodPerChain: UnbondingPeriodPerChain, + ConsumerChains: ConsumerChains, + Nodes: nodes, + InitialValidatorSet: InitialValidatorSet, + } } action VotingPowerChange(validator: Node, newVotingPower: int): bool = @@ -133,7 +151,8 @@ module ccv_model { all { result.hasError() == false, currentState' = result.newState, - trace' = trace.append(emptyAction.with("kind", "VotingPowerChange").with("validator", validator).with("newVotingPower", newVotingPower)) + trace' = trace.append(emptyAction.with("kind", "VotingPowerChange").with("validator", validator).with("newVotingPower", newVotingPower)), + params' = params, } // The receiver receives the next outstanding VscPacket from the provider. @@ -144,7 +163,8 @@ module ccv_model { all { result.hasError() == false, currentState' = result.newState, - trace' = trace.append(emptyAction.with("kind", "DeliverVscPacket").with("consumerChain", receiver)) + trace' = trace.append(emptyAction.with("kind", "DeliverVscPacket").with("consumerChain", receiver)), + params' = params, } // The provider receives the next outstanding VscMaturedPacket from the sender. @@ -155,7 +175,8 @@ module ccv_model { all { result.hasError() == false, currentState' = result.newState, - trace' = trace.append(emptyAction.with("kind", "DeliverVscMaturedPacket").with("consumerChain", sender)) + trace' = trace.append(emptyAction.with("kind", "DeliverVscMaturedPacket").with("consumerChain", sender)), + params' = params, } action EndAndBeginBlockForProvider( @@ -166,7 +187,8 @@ module ccv_model { all { result.hasError() == false, currentState' = result.newState, - trace' = trace.append(emptyAction.with("kind", "EndAndBeginBlockForProvider").with("timeAdvancement", timeAdvancement).with("consumersToStart", consumersToStart).with("consumersToStop", consumersToStop)) + trace' = trace.append(emptyAction.with("kind", "EndAndBeginBlockForProvider").with("timeAdvancement", timeAdvancement).with("consumersToStart", consumersToStart).with("consumersToStop", consumersToStop)), + params' = params, } action EndAndBeginBlockForConsumer( @@ -176,7 +198,8 @@ module ccv_model { all { result.hasError() == false, currentState' = result.newState, - trace' = trace.append(emptyAction.with("kind", "EndAndBeginBlockForConsumer").with("consumerChain", chain).with("timeAdvancement", timeAdvancement)) + trace' = trace.append(emptyAction.with("kind", "EndAndBeginBlockForConsumer").with("consumerChain", chain).with("timeAdvancement", timeAdvancement)), + params' = params, } // ================== diff --git a/tests/difference/core/quint_model/driver/common.go b/tests/difference/core/quint_model/driver/common.go new file mode 100644 index 0000000000..db8f5c3885 --- /dev/null +++ b/tests/difference/core/quint_model/driver/common.go @@ -0,0 +1,96 @@ +package main + +import ( + "time" + + sdk "github.com/cosmos/cosmos-sdk/types" + stakingtypes "github.com/cosmos/cosmos-sdk/x/staking/types" + + tmproto "github.com/cometbft/cometbft/proto/tendermint/types" + tmtypes "github.com/cometbft/cometbft/types" +) + +const ( + P = "provider" + C = "consumer" +) + +// ValStates represents the total delegation +// and bond status of a validator +type ValStates struct { + Delegation []int + Tokens []int + ValidatorExtraTokens []int + Status []stakingtypes.BondStatus +} + +type InitState struct { + PKSeeds []string + NumValidators int + MaxValidators int + InitialDelegatorTokens int + SlashDoublesign sdk.Dec + SlashDowntime sdk.Dec + UnbondingP time.Duration + UnbondingC time.Duration + Trusting time.Duration + MaxClockDrift time.Duration + BlockInterval time.Duration + ConsensusParams *tmproto.ConsensusParams + ValStates ValStates + MaxEntries int +} + +var initStateVar InitState + +func init() { + // tokens === power + sdk.DefaultPowerReduction = sdk.NewInt(1) + initStateVar = InitState{ + PKSeeds: []string{ + // Fixed seeds are used to create the private keys for validators. + // The seeds are chosen to ensure that the resulting validators are + // sorted in descending order by the staking module. + "bbaaaababaabbaabababbaabbbbbbaaa", + "abbbababbbabaaaaabaaabbbbababaab", + "bbabaabaabbbbbabbbaababbbbabbbbb", + "aabbbabaaaaababbbabaabaabbbbbbba", + }, + NumValidators: 4, + MaxValidators: 2, + InitialDelegatorTokens: 10000000000000, + SlashDoublesign: sdk.NewDec(0), + SlashDowntime: sdk.NewDec(0), + UnbondingP: time.Second * 70, + UnbondingC: time.Second * 50, + Trusting: time.Second * 49, + MaxClockDrift: time.Second * 10000, + BlockInterval: time.Second * 6, + ValStates: ValStates{ + Delegation: []int{4000, 3000, 2000, 1000}, + Tokens: []int{5000, 4000, 3000, 2000}, + ValidatorExtraTokens: []int{1000, 1000, 1000, 1000}, + Status: []stakingtypes.BondStatus{ + stakingtypes.Bonded, stakingtypes.Bonded, + stakingtypes.Unbonded, stakingtypes.Unbonded, + }, + }, + MaxEntries: 1000000, + ConsensusParams: &tmproto.ConsensusParams{ + Block: &tmproto.BlockParams{ + MaxBytes: 9223372036854775807, + MaxGas: 9223372036854775807, + }, + Evidence: &tmproto.EvidenceParams{ + MaxAgeNumBlocks: 302400, + MaxAgeDuration: 504 * time.Hour, // 3 weeks is the max duration + MaxBytes: 10000, + }, + Validator: &tmproto.ValidatorParams{ + PubKeyTypes: []string{ + tmtypes.ABCIPubKeyTypeEd25519, + }, + }, + }, + } +} diff --git a/tests/difference/core/quint_model/driver/core_test.go b/tests/difference/core/quint_model/driver/core_test.go new file mode 100644 index 0000000000..0bcaedb5dd --- /dev/null +++ b/tests/difference/core/quint_model/driver/core_test.go @@ -0,0 +1,346 @@ +package main + +import ( + "fmt" + "time" + + channeltypes "github.com/cosmos/ibc-go/v7/modules/core/04-channel/types" + "github.com/stretchr/testify/suite" + + sdk "github.com/cosmos/cosmos-sdk/types" + slashingkeeper "github.com/cosmos/cosmos-sdk/x/slashing/keeper" + stakingkeeper "github.com/cosmos/cosmos-sdk/x/staking/keeper" + stakingtypes "github.com/cosmos/cosmos-sdk/x/staking/types" + + appConsumer "github.com/cosmos/interchain-security/v3/app/consumer" + appProvider "github.com/cosmos/interchain-security/v3/app/provider" + ibctestingcore "github.com/cosmos/interchain-security/v3/legacy_ibc_testing/core" + ibctesting "github.com/cosmos/interchain-security/v3/legacy_ibc_testing/testing" + simibc "github.com/cosmos/interchain-security/v3/testutil/simibc" + consumerkeeper "github.com/cosmos/interchain-security/v3/x/ccv/consumer/keeper" +) + +type CoreSuite struct { + suite.Suite + + initState InitState + + // simulate a relayed path + simibc simibc.RelayedPath + + // keep around validators for easy access + valAddresses []sdk.ValAddress + + // offsets: the model time and heights start at 0 + // so offsets are needed for comparisons. + offsetTimeUnix int64 + offsetHeight int64 +} + +// ctx returns the sdk.Context for the chain +func (s *CoreSuite) ctx(chain string) sdk.Context { + return s.chain(chain).GetContext() +} + +func (s *CoreSuite) chainID(chain string) string { + return map[string]string{P: ibctesting.GetChainID(0), C: ibctesting.GetChainID(1)}[chain] +} + +// chain returns the TestChain for a given chain identifier +func (s *CoreSuite) chain(chain string) *ibctesting.TestChain { + return map[string]*ibctesting.TestChain{P: s.providerChain(), C: s.consumerChain()}[chain] +} + +func (s *CoreSuite) providerChain() *ibctesting.TestChain { + return s.simibc.Chain(ibctesting.GetChainID(0)) +} + +func (s *CoreSuite) consumerChain() *ibctesting.TestChain { + return s.simibc.Chain(ibctesting.GetChainID(1)) +} + +func (b *CoreSuite) providerStakingKeeper() stakingkeeper.Keeper { + return *b.providerChain().App.(*appProvider.App).StakingKeeper +} + +func (b *CoreSuite) providerSlashingKeeper() slashingkeeper.Keeper { + return b.providerChain().App.(*appProvider.App).SlashingKeeper +} + +func (b *CoreSuite) consumerKeeper() consumerkeeper.Keeper { + return b.consumerChain().App.(*appConsumer.App).ConsumerKeeper +} + +// height returns the height of the current header of chain +func (s *CoreSuite) height(chain string) int64 { + return s.chain(chain).CurrentHeader.GetHeight() +} + +// time returns the time of the current header of chain +func (s *CoreSuite) time(chain string) time.Time { + return s.chain(chain).CurrentHeader.Time +} + +// delegator retrieves the address for the delegator account +func (s *CoreSuite) delegator() sdk.AccAddress { + return s.providerChain().SenderAccount.GetAddress() +} + +// validator returns the address for the validator with id (ix) i +func (s *CoreSuite) validator(i int64) sdk.ValAddress { + return s.valAddresses[i] +} + +// consAddr returns the ConsAdd for the validator with id (ix) i +func (s *CoreSuite) consAddr(i int64) sdk.ConsAddress { + return sdk.ConsAddress(s.validator(i)) +} + +// isJailed returns the jail status of validator with id (ix) i +func (s *CoreSuite) isJailed(i int64) bool { + val, found := s.providerStakingKeeper().GetValidator(s.ctx(P), s.validator(i)) + s.Require().Truef(found, "GetValidator() -> !found") + return val.IsJailed() +} + +// consumerPower returns the power on the consumer chain for +// validator with id (ix) i +func (s *CoreSuite) consumerPower(i int64) (int64, error) { + v, found := s.consumerKeeper().GetCCValidator(s.ctx(C), s.validator(i)) + if !found { + return 0, fmt.Errorf("GetCCValidator() -> !found") + } + return v.Power, nil +} + +// delegation returns the number of delegated tokens in the delegation from +// the delegator account to the validator with id (ix) i +func (s *CoreSuite) delegation(i int64) int64 { + d, found := s.providerStakingKeeper().GetDelegation(s.ctx(P), s.delegator(), s.validator(i)) + s.Require().Truef(found, "GetDelegation() -> !found") + return d.Shares.TruncateInt64() +} + +// validatorStatus returns the validator status for validator with id (ix) i +// on the provider chain +func (s *CoreSuite) validatorStatus(i int64) stakingtypes.BondStatus { + v, found := s.providerStakingKeeper().GetValidator(s.ctx(P), s.validator(i)) + s.Require().Truef(found, "GetValidator() -> !found") + return v.GetStatus() +} + +// providerTokens returns the number of tokens that the validator with +// id (ix) i has delegated to it in total on the provider chain +func (s *CoreSuite) providerTokens(i int64) int64 { + v, found := s.providerStakingKeeper().GetValidator(s.ctx(P), s.validator(i)) + s.Require().Truef(found, "GetValidator() -> !found") + return v.Tokens.Int64() +} + +// delegatorBalance returns the balance of the delegator account +func (s *CoreSuite) delegatorBalance() int64 { + d := s.delegator() + bal := s.providerChain().App.(*appProvider.App).BankKeeper.GetBalance(s.ctx(P), d, sdk.DefaultBondDenom) + return bal.Amount.Int64() +} + +// delegate delegates amt tokens to validator val +func (s *CoreSuite) delegate(val, amt int64) { + providerStaking := s.providerStakingKeeper() + server := stakingkeeper.NewMsgServerImpl(&providerStaking) + coin := sdk.NewCoin(sdk.DefaultBondDenom, sdk.NewInt(amt)) + d := s.delegator() + v := s.validator(val) + msg := stakingtypes.NewMsgDelegate(d, v, coin) + _, err := server.Delegate(sdk.WrapSDKContext(s.ctx(P)), msg) + // There may or may not be an error, depending on the trace + _ = err +} + +// undelegate undelegates amt tokens from validator val +func (s *CoreSuite) undelegate(val, amt int64) { + providerStaking := s.providerStakingKeeper() + server := stakingkeeper.NewMsgServerImpl(&providerStaking) + coin := sdk.NewCoin(sdk.DefaultBondDenom, sdk.NewInt(amt)) + d := s.delegator() + v := s.validator(val) + msg := stakingtypes.NewMsgUndelegate(d, v, coin) + _, err := server.Undelegate(sdk.WrapSDKContext(s.ctx(P)), msg) + // There may or may not be an error, depending on the trace + _ = err +} + +// consumerSlash simulates a slash event occurring on the consumer chain. +// It can be for a downtime or doublesign. +func (s *CoreSuite) consumerSlash(val sdk.ConsAddress, h int64, isDowntime bool) { + kind := stakingtypes.Infraction_INFRACTION_DOUBLE_SIGN + if isDowntime { + kind = stakingtypes.Infraction_INFRACTION_DOWNTIME + } + ctx := s.ctx(C) + before := len(ctx.EventManager().Events()) + s.consumerKeeper().SlashWithInfractionReason(ctx, val, h, 0, sdk.Dec{}, kind) + // consumer module emits packets on slash, so these must be collected. + evts := ctx.EventManager().ABCIEvents() + for _, e := range evts[before:] { + if e.Type == channeltypes.EventTypeSendPacket { + packet, err := ibctestingcore.ReconstructPacketFromEvent(e) + s.Require().NoError(err) + s.simibc.Outboxes.AddPacket(s.chainID(C), packet) + } + } +} + +func (s *CoreSuite) updateClient(chain string) { + s.simibc.UpdateClient(s.chainID(chain)) +} + +// deliver numPackets packets from the network to chain +func (s *CoreSuite) deliver(chain string, numPackets int) { + // Makes sure client is updated + s.updateClient(chain) + // Deliver any outstanding acks + s.simibc.DeliverAcks(s.chainID(chain), 999999) + // Consume deliverable packets from the network + s.simibc.DeliverPackets(s.chainID(chain), numPackets) +} + +func (s *CoreSuite) endAndBeginBlock(chain string) { + s.simibc.EndAndBeginBlock(s.chainID(chain), s.initState.BlockInterval, func() { + // s.compareModelAndSystemState() + }) +} + +// // compareModelAndSystemState compares the state in the SUT to the state in the +// // the model. +// func (s *CoreSuite) compareModelAndSystemState() { +// // Get a diagnostic for debugging +// diagnostic := s.traces.Diagnostic() +// chain := s.traces.Action().Chain + +// // Model time, height start at 0 so we need an offset for comparisons. +// sutTimeOffset := time.Unix(s.offsetTimeUnix, 0).Add(-s.initState.BlockInterval).UTC() +// modelTimeOffset := time.Duration(s.traces.Time()) * time.Second +// sutHeightOffset := s.offsetHeight - 1 +// modelHeightOffset := int64(s.traces.Height()) +// s.Require().Equalf(sutTimeOffset.Add(modelTimeOffset), s.time(chain), diagnostic+"%s Time mismatch", chain) +// s.Require().Equalf(sutHeightOffset+modelHeightOffset, s.height(chain), diagnostic+"%s Time mismatch", chain) +// if chain == P { +// for j := 0; j < s.initState.NumValidators; j++ { +// have := s.validatorStatus(int64(j)) +// s.Require().Equalf(s.traces.Status(j), have, diagnostic+"P bond status mismatch for val %d, expect %s, have %s", j, s.traces.Status(j).String(), have.String()) +// } +// for j := 0; j < s.initState.NumValidators; j++ { +// s.Require().Equalf(int64(s.traces.Tokens(j)), s.providerTokens(int64(j)), diagnostic+"P tokens mismatch for val %d", j) +// } +// s.Require().Equalf(int64(s.traces.DelegatorTokens()), s.delegatorBalance(), diagnostic+"P del balance mismatch") +// for j := 0; j < s.initState.NumValidators; j++ { +// a := s.traces.Jailed(j) != nil +// b := s.isJailed(int64(j)) +// s.Require().Equalf(a, b, diagnostic+"P jail status mismatch for val %d", j) +// } +// } +// if chain == C { +// for j := 0; j < s.initState.NumValidators; j++ { +// exp := s.traces.ConsumerPower(j) +// actual, err := s.consumerPower(int64(j)) +// if exp != nil { +// s.Require().Nilf(err, diagnostic+" validator not found") +// s.Require().Equalf(int64(*exp), actual, diagnostic+" power mismatch for val %d", j) +// } else { +// s.Require().Errorf(err, diagnostic+" power mismatch for val %d, expect 0 (nil), got %d", j, actual) +// } +// } +// } +// } + +// func (s *CoreSuite) executeTrace() { +// for i := range s.traces.Actions() { +// s.traces.CurrentActionIx = i + +// a := s.traces.Action() + +// switch a.Kind { +// case "Delegate": +// s.delegate( +// int64(a.Val), +// int64(a.Amt), +// ) +// case "Undelegate": +// s.undelegate( +// int64(a.Val), +// int64(a.Amt), +// ) +// case "ConsumerSlash": +// s.consumerSlash( +// s.consAddr(int64(a.Val)), +// // The SUT height is greater than the model height +// // because the SUT has to do initialization. +// int64(a.InfractionHeight)+s.offsetHeight, +// a.IsDowntime, +// ) +// case "UpdateClient": +// s.updateClient(a.Chain) +// case "Deliver": +// s.deliver(a.Chain, a.NumPackets) +// case "EndAndBeginBlock": +// s.endAndBeginBlock(a.Chain) +// default: +// s.Require().FailNow("Failed to parse action") +// } +// } +// } + +// // Test a set of traces +// func (s *CoreSuite) TestTraces() { +// s.traces = Traces{ +// Data: LoadTraces("traces.json"), +// } +// shortest := -1 +// shortestLen := 10000000000 +// for i := range s.traces.Data { +// if !s.Run(fmt.Sprintf("Trace ix: %d", i), func() { +// // Setup a new pair of chains for each trace +// s.SetupTest() + +// s.traces.CurrentTraceIx = i +// defer func() { +// // If a panic occurs, we trap it to print a diagnostic +// // and improve debugging experience. +// if r := recover(); r != nil { +// fmt.Println(s.traces.Diagnostic()) +// fmt.Println(r) +// // Double panic to halt. +// panic("Panic occurred during TestTraces") +// } +// }() +// // Record information about the trace, for debugging +// // diagnostics. +// s.executeTrace() +// }) { +// if s.traces.CurrentActionIx < shortestLen { +// shortest = s.traces.CurrentTraceIx +// shortestLen = s.traces.CurrentActionIx +// } +// } +// } +// fmt.Println("Shortest [traceIx, actionIx]:", shortest, shortestLen) +// } + +// TODO: diff tests will eventually be replaced by quint tests, and all this code could then be deleted. +// Until that decision is finalized, we'll just comment out the top-level test. + +// func TestCoreSuite(t *testing.T) { +// suite.Run(t, new(CoreSuite)) +// } + +// SetupTest sets up the test suite in a 'zero' state which matches +// the initial state in the model. +func (s *CoreSuite) SetupTest() { + path, valAddresses, offsetHeight, offsetTimeUnix := GetZeroState(&s.Suite, initStateVar) + s.initState = initStateVar + s.valAddresses = valAddresses + s.offsetHeight = offsetHeight + s.offsetTimeUnix = offsetTimeUnix + s.simibc = simibc.MakeRelayedPath(s.Suite.T(), path) +} diff --git a/tests/difference/core/quint_model/driver/driver/.gitignore b/tests/difference/core/quint_model/driver/driver/.gitignore new file mode 100644 index 0000000000..a241de283a --- /dev/null +++ b/tests/difference/core/quint_model/driver/driver/.gitignore @@ -0,0 +1,2 @@ +*.log +debug.json \ No newline at end of file diff --git a/tests/difference/core/quint_model/driver/mbt_test.go b/tests/difference/core/quint_model/driver/mbt_test.go new file mode 100644 index 0000000000..8ec992039d --- /dev/null +++ b/tests/difference/core/quint_model/driver/mbt_test.go @@ -0,0 +1,68 @@ +package main + +import ( + "log" + "testing" + + "github.com/informalsystems/itf-go/itf" +) + +func TestItfTrace(t *testing.T) { + path := "trace.json" + log.Printf("🟡 Testing trace %s", path) + + // Load trace + trace := &itf.Trace{} + if err := trace.LoadFromFile(path); err != nil { + log.Fatalf("Error loading trace file: %s", err) + } + + log.Println("Reading auxiliary information...") + if trace.Vars[0] != "currentState" || trace.Vars[1] != "trace" { + log.Fatalf("Error loading trace file %s: %s", path, "Variables should be currentState, trace") + } + + log.Println("Reading the trace...") + + for index, state := range trace.States { + log.Printf("Reading state %v", index) + + // modelState := state.VarValues["currentState"] + trace := state.VarValues["trace"].Value.(itf.ListExprType) + // fmt.Println(modelState) + lastAction := trace[len(trace)-1].Value.(itf.MapExprType) + + actionKind := lastAction["kind"].Value.(string) + switch actionKind { + case "init": + // start the chain(s) + case "VotingPowerChange": + node := lastAction["validator"].Value.(string) + newVotingPower := lastAction["newVotingPower"].Value.(int64) + log.Println(node, newVotingPower) + case "EndAndBeginBlockForProvider": + timeAdvancement := lastAction["timeAdvancement"].Value.(int64) + consumersToStart := lastAction["consumersToStart"].Value.(itf.ListExprType) + consumersToStop := lastAction["consumersToStop"].Value.(itf.ListExprType) + log.Println(timeAdvancement, consumersToStart, consumersToStop) + case "EndAndBeginBlockForConsumer": + consumerChain := lastAction["consumerChain"].Value.(string) + timeAdvancement := lastAction["timeAdvancement"].Value.(int64) + + log.Println(consumerChain, timeAdvancement) + case "DeliverVscPacket": + consumerChain := lastAction["consumerChain"].Value.(string) + + log.Println(consumerChain) + case "DeliverVscMaturedPacket": + consumerChain := lastAction["consumerChain"].Value.(string) + + log.Println(consumerChain) + default: + + log.Fatalf("Error loading trace file %s, step %v: do not know action type %s", + path, index, actionKind) + } + } + t.FailNow() +} diff --git a/tests/difference/core/quint_model/driver/setup.go b/tests/difference/core/quint_model/driver/setup.go new file mode 100644 index 0000000000..35f0e1e8a4 --- /dev/null +++ b/tests/difference/core/quint_model/driver/setup.go @@ -0,0 +1,622 @@ +package main + +import ( + "bytes" + cryptoEd25519 "crypto/ed25519" + "encoding/json" + "time" + + clienttypes "github.com/cosmos/ibc-go/v7/modules/core/02-client/types" + channeltypes "github.com/cosmos/ibc-go/v7/modules/core/04-channel/types" + commitmenttypes "github.com/cosmos/ibc-go/v7/modules/core/23-commitment/types" + ibctmtypes "github.com/cosmos/ibc-go/v7/modules/light-clients/07-tendermint" + "github.com/cosmos/ibc-go/v7/testing/mock" + "github.com/stretchr/testify/require" + "github.com/stretchr/testify/suite" + + "github.com/cosmos/cosmos-sdk/baseapp" + codectypes "github.com/cosmos/cosmos-sdk/codec/types" + cryptocodec "github.com/cosmos/cosmos-sdk/crypto/codec" + cosmosEd25519 "github.com/cosmos/cosmos-sdk/crypto/keys/ed25519" + "github.com/cosmos/cosmos-sdk/crypto/keys/secp256k1" + sdk "github.com/cosmos/cosmos-sdk/types" + authtypes "github.com/cosmos/cosmos-sdk/x/auth/types" + banktypes "github.com/cosmos/cosmos-sdk/x/bank/types" + slashingkeeper "github.com/cosmos/cosmos-sdk/x/slashing/keeper" + slashingtypes "github.com/cosmos/cosmos-sdk/x/slashing/types" + stakingkeeper "github.com/cosmos/cosmos-sdk/x/staking/keeper" + stakingtypes "github.com/cosmos/cosmos-sdk/x/staking/types" + + abci "github.com/cometbft/cometbft/abci/types" + tmproto "github.com/cometbft/cometbft/proto/tendermint/types" + tmtypes "github.com/cometbft/cometbft/types" + + appConsumer "github.com/cosmos/interchain-security/v3/app/consumer" + appProvider "github.com/cosmos/interchain-security/v3/app/provider" + ibctesting "github.com/cosmos/interchain-security/v3/legacy_ibc_testing/testing" + icstestingutils "github.com/cosmos/interchain-security/v3/testutil/ibc_testing" + simibc "github.com/cosmos/interchain-security/v3/testutil/simibc" + consumerkeeper "github.com/cosmos/interchain-security/v3/x/ccv/consumer/keeper" + consumertypes "github.com/cosmos/interchain-security/v3/x/ccv/consumer/types" + providerkeeper "github.com/cosmos/interchain-security/v3/x/ccv/provider/keeper" + ccv "github.com/cosmos/interchain-security/v3/x/ccv/types" +) + +type Builder struct { + suite *suite.Suite + path *ibctesting.Path + coordinator *ibctesting.Coordinator + valAddresses []sdk.ValAddress + initState InitState +} + +func (b *Builder) provider() *ibctesting.TestChain { + return b.coordinator.GetChain(ibctesting.GetChainID(0)) +} + +func (b *Builder) consumer() *ibctesting.TestChain { + return b.coordinator.GetChain(ibctesting.GetChainID(1)) +} + +func (b *Builder) providerCtx() sdk.Context { + return b.provider().GetContext() +} + +func (b *Builder) consumerCtx() sdk.Context { + return b.consumer().GetContext() +} + +func (b *Builder) providerStakingKeeper() stakingkeeper.Keeper { + return *b.provider().App.(*appProvider.App).StakingKeeper +} + +func (b *Builder) providerSlashingKeeper() slashingkeeper.Keeper { + return b.provider().App.(*appProvider.App).SlashingKeeper +} + +func (b *Builder) providerKeeper() providerkeeper.Keeper { + return b.provider().App.(*appProvider.App).ProviderKeeper +} + +func (b *Builder) consumerKeeper() consumerkeeper.Keeper { + return b.consumer().App.(*appConsumer.App).ConsumerKeeper +} + +func (b *Builder) providerEndpoint() *ibctesting.Endpoint { + return b.path.EndpointB +} + +func (b *Builder) consumerEndpoint() *ibctesting.Endpoint { + return b.path.EndpointA +} + +func (b *Builder) validator(i int64) sdk.ValAddress { + return b.valAddresses[i] +} + +func (b *Builder) consAddr(i int64) sdk.ConsAddress { + return sdk.ConsAddress(b.validator(i)) +} + +// getValidatorPK returns the validator private key using the given seed index +func (b *Builder) getValidatorPK(seedIx int) mock.PV { + seed := []byte(b.initState.PKSeeds[seedIx]) + return mock.PV{PrivKey: &cosmosEd25519.PrivKey{Key: cryptoEd25519.NewKeyFromSeed(seed)}} //nolint:staticcheck // SA1019: cosmosEd25519.PrivKey is deprecated: PrivKey defines a ed25519 private key. NOTE: ed25519 keys must not be used in SDK apps except in a tendermint validator context. +} + +func (b *Builder) getAppBytesAndSenders( + chainID string, + app ibctesting.TestingApp, + genesis map[string]json.RawMessage, + validators *tmtypes.ValidatorSet, +) ([]byte, []ibctesting.SenderAccount) { + accounts := []authtypes.GenesisAccount{} + balances := []banktypes.Balance{} + senderAccounts := []ibctesting.SenderAccount{} + + // Create genesis accounts. + for i := 0; i < b.initState.MaxValidators; i++ { + pk := secp256k1.GenPrivKey() + acc := authtypes.NewBaseAccount(pk.PubKey().Address().Bytes(), pk.PubKey(), uint64(i), 0) + + // Give enough funds for many delegations + // Extra units are to delegate to extra validators created later + // in order to bond them and still have INITIAL_DELEGATOR_TOKENS remaining + extra := 0 + for j := 0; j < b.initState.NumValidators; j++ { + if b.initState.ValStates.Status[j] != stakingtypes.Bonded { + extra += b.initState.ValStates.Delegation[j] + } + } + amt := uint64(b.initState.InitialDelegatorTokens + extra) + + bal := banktypes.Balance{ + Address: acc.GetAddress().String(), + Coins: sdk.NewCoins(sdk.NewCoin(sdk.DefaultBondDenom, sdk.NewIntFromUint64(amt))), + } + + accounts = append(accounts, acc) + balances = append(balances, bal) + + senderAccount := ibctesting.SenderAccount{ + SenderAccount: acc, + SenderPrivKey: pk, + } + + senderAccounts = append(senderAccounts, senderAccount) + } + + // set genesis accounts + genesisAuth := authtypes.NewGenesisState(authtypes.DefaultParams(), accounts) + genesis[authtypes.ModuleName] = app.AppCodec().MustMarshalJSON(genesisAuth) + + stakingValidators := make([]stakingtypes.Validator, 0, len(validators.Validators)) + delegations := make([]stakingtypes.Delegation, 0, len(validators.Validators)) + + // Sum bonded is needed for BondedPool account + sumBonded := sdk.NewInt(0) + initValPowers := []abci.ValidatorUpdate{} + + for i, val := range validators.Validators { + status := b.initState.ValStates.Status[i] + delegation := b.initState.ValStates.Delegation[i] + extra := b.initState.ValStates.ValidatorExtraTokens[i] + + tokens := sdk.NewInt(int64(delegation + extra)) + b.suite.Require().Equal(status, stakingtypes.Bonded, "All genesis validators should be bonded") + sumBonded = sumBonded.Add(tokens) + // delegator account receives delShares shares + delShares := sdk.NewDec(int64(delegation)) + // validator has additional sumShares due to extra units + sumShares := sdk.NewDec(int64(delegation + extra)) + + pk, err := cryptocodec.FromTmPubKeyInterface(val.PubKey) + require.NoError(b.suite.T(), err) + pkAny, err := codectypes.NewAnyWithValue(pk) + require.NoError(b.suite.T(), err) + + validator := stakingtypes.Validator{ + OperatorAddress: sdk.ValAddress(val.Address).String(), + ConsensusPubkey: pkAny, + Jailed: false, + Status: status, + Tokens: tokens, + DelegatorShares: sumShares, + Description: stakingtypes.Description{}, + UnbondingHeight: int64(0), + UnbondingTime: time.Unix(0, 0).UTC(), + Commission: stakingtypes.NewCommission(sdk.ZeroDec(), sdk.ZeroDec(), sdk.ZeroDec()), + MinSelfDelegation: sdk.ZeroInt(), + } + + stakingValidators = append(stakingValidators, validator) + + // Store delegation from the model delegator account + delegations = append(delegations, stakingtypes.NewDelegation(accounts[0].GetAddress(), val.Address.Bytes(), delShares)) + // Remaining delegation is from extra account + delegations = append(delegations, stakingtypes.NewDelegation(accounts[1].GetAddress(), val.Address.Bytes(), sumShares.Sub(delShares))) + + // add initial validator powers so consumer InitGenesis runs correctly + pub, _ := val.ToProto() + initValPowers = append(initValPowers, abci.ValidatorUpdate{ + Power: val.VotingPower, + PubKey: pub.PubKey, + }) + } + + bondDenom := sdk.DefaultBondDenom + genesisStaking := stakingtypes.GenesisState{} + genesisConsumer := consumertypes.GenesisState{} + + if genesis[stakingtypes.ModuleName] != nil { + // If staking module genesis already exists + app.AppCodec().MustUnmarshalJSON(genesis[stakingtypes.ModuleName], &genesisStaking) + bondDenom = genesisStaking.Params.BondDenom + } + + if genesis[consumertypes.ModuleName] != nil { + app.AppCodec().MustUnmarshalJSON(genesis[consumertypes.ModuleName], &genesisConsumer) + genesisConsumer.InitialValSet = initValPowers + genesisConsumer.Params.Enabled = true + genesis[consumertypes.ModuleName] = app.AppCodec().MustMarshalJSON(&genesisConsumer) + } + + // Set model parameters + genesisStaking.Params.MaxEntries = uint32(b.initState.MaxEntries) + genesisStaking.Params.MaxValidators = uint32(b.initState.MaxValidators) + genesisStaking.Params.UnbondingTime = b.initState.UnbondingP + genesisStaking = *stakingtypes.NewGenesisState(genesisStaking.Params, stakingValidators, delegations) + genesis[stakingtypes.ModuleName] = app.AppCodec().MustMarshalJSON(&genesisStaking) + + // add bonded amount to bonded pool module account + balances = append(balances, banktypes.Balance{ + Address: authtypes.NewModuleAddress(stakingtypes.BondedPoolName).String(), + Coins: sdk.Coins{sdk.NewCoin(bondDenom, sumBonded)}, + }) + + // add unbonded amount + balances = append(balances, banktypes.Balance{ + Address: authtypes.NewModuleAddress(stakingtypes.NotBondedPoolName).String(), + Coins: sdk.Coins{sdk.NewCoin(bondDenom, sdk.ZeroInt())}, + }) + + // update total funds supply + genesisBank := banktypes.NewGenesisState(banktypes.DefaultGenesisState().Params, balances, sdk.NewCoins(), []banktypes.Metadata{}, []banktypes.SendEnabled{}) + genesis[banktypes.ModuleName] = app.AppCodec().MustMarshalJSON(genesisBank) + + stateBytes, err := json.MarshalIndent(genesis, "", " ") + require.NoError(b.suite.T(), err) + + return stateBytes, senderAccounts +} + +func (b *Builder) newChain( + coord *ibctesting.Coordinator, + appInit ibctesting.AppIniter, + chainID string, + validators *tmtypes.ValidatorSet, + signers map[string]tmtypes.PrivValidator, +) *ibctesting.TestChain { + app, genesis := appInit() + + baseapp.SetChainID(chainID)(app.GetBaseApp()) + + stateBytes, senderAccounts := b.getAppBytesAndSenders(chainID, app, genesis, validators) + + app.InitChain( + abci.RequestInitChain{ + ChainId: chainID, + Validators: []abci.ValidatorUpdate{}, + ConsensusParams: b.initState.ConsensusParams, + AppStateBytes: stateBytes, + }, + ) + + app.Commit() + + app.BeginBlock( + abci.RequestBeginBlock{ + Header: tmproto.Header{ + ChainID: chainID, + Height: app.LastBlockHeight() + 1, + AppHash: app.LastCommitID().Hash, + ValidatorsHash: validators.Hash(), + NextValidatorsHash: validators.Hash(), + }, + }, + ) + + chain := &ibctesting.TestChain{ + T: b.suite.T(), + Coordinator: coord, + ChainID: chainID, + App: app, + CurrentHeader: tmproto.Header{ + ChainID: chainID, + Height: 1, + Time: coord.CurrentTime.UTC(), + }, + QueryServer: app.GetIBCKeeper(), + TxConfig: app.GetTxConfig(), + Codec: app.AppCodec(), + Vals: validators, + NextVals: validators, + Signers: signers, + SenderPrivKey: senderAccounts[0].SenderPrivKey, + SenderAccount: senderAccounts[0].SenderAccount, + SenderAccounts: senderAccounts, + } + + coord.CommitBlock(chain) + + return chain +} + +func (b *Builder) createValidators() (*tmtypes.ValidatorSet, map[string]tmtypes.PrivValidator, []sdk.ValAddress) { + addresses := []sdk.ValAddress{} + signers := map[string]tmtypes.PrivValidator{} + validators := []*tmtypes.Validator{} + + for i, power := range b.initState.ValStates.Tokens { + if b.initState.ValStates.Status[i] != stakingtypes.Bonded { + continue + } + privVal := b.getValidatorPK(i) + + pubKey, err := privVal.GetPubKey() + require.NoError(b.suite.T(), err) + + // Compute address + addr, err := sdk.ValAddressFromHex(pubKey.Address().String()) + require.NoError(b.suite.T(), err) + addresses = append(addresses, addr) + + // Save signer + signers[pubKey.Address().String()] = privVal + + // Save validator with power + validators = append(validators, tmtypes.NewValidator(pubKey, int64(power))) + } + + return tmtypes.NewValidatorSet(validators), signers, addresses +} + +func (b *Builder) createProviderAndConsumer() { + coordinator := ibctesting.NewCoordinator(b.suite.T(), 0) + + // Create validators + validators, signers, addresses := b.createValidators() + // Create provider + coordinator.Chains[ibctesting.GetChainID(0)] = b.newChain(coordinator, icstestingutils.ProviderAppIniter, ibctesting.GetChainID(0), validators, signers) + // Create consumer, using the same validators. + coordinator.Chains[ibctesting.GetChainID(1)] = b.newChain(coordinator, icstestingutils.ConsumerAppIniter, ibctesting.GetChainID(1), validators, signers) + + b.coordinator = coordinator + b.valAddresses = addresses +} + +// setSigningInfos sets the validator signing info in the provider Slashing module +func (b *Builder) setSigningInfos() { + for i := 0; i < b.initState.NumValidators; i++ { + info := slashingtypes.NewValidatorSigningInfo( + b.consAddr(int64(i)), + b.provider().CurrentHeader.GetHeight(), + 0, + time.Unix(0, 0), + false, + 0, + ) + b.providerSlashingKeeper().SetValidatorSigningInfo(b.providerCtx(), b.consAddr(int64(i)), info) + } +} + +// Checks that the lexicographic ordering of validator addresses as computed in +// the staking module match the ordering of validators in the model. +func (b *Builder) ensureValidatorLexicographicOrderingMatchesModel() { + check := func(lesser, greater sdk.ValAddress) { + lesserV, _ := b.providerStakingKeeper().GetValidator(b.providerCtx(), lesser) + greaterV, _ := b.providerStakingKeeper().GetValidator(b.providerCtx(), greater) + lesserKey := stakingtypes.GetValidatorsByPowerIndexKey(lesserV, sdk.DefaultPowerReduction) + greaterKey := stakingtypes.GetValidatorsByPowerIndexKey(greaterV, sdk.DefaultPowerReduction) + // The result will be 0 if a==b, -1 if a < b, and +1 if a > b. + res := bytes.Compare(lesserKey, greaterKey) + // Confirm that validator precedence is the same in code as in model + b.suite.Require().Equal(-1, res) + } + + // In order to match the model to the system under test it is necessary + // to enforce a strict lexicographic ordering on the validators. + // We must do this because the staking module will break ties when + // deciding the active validator set by comparing addresses lexicographically. + // Thus, we assert here that the ordering in the model matches the ordering + // in the SUT. + for i := range b.valAddresses[:len(b.valAddresses)-1] { + // validators are chosen sorted descending in the staking module + greater := b.valAddresses[i] + lesser := b.valAddresses[i+1] + check(lesser, greater) + } +} + +// delegate is used to delegate tokens to newly created +// validators in the setup process. +func (b *Builder) delegate(del int, val sdk.ValAddress, amt int64) { + d := b.provider().SenderAccounts[del].SenderAccount.GetAddress() + coins := sdk.NewCoin(sdk.DefaultBondDenom, sdk.NewInt(amt)) + msg := stakingtypes.NewMsgDelegate(d, val, coins) + providerStaking := b.providerStakingKeeper() + pskServer := stakingkeeper.NewMsgServerImpl(&providerStaking) + _, err := pskServer.Delegate(sdk.WrapSDKContext(b.providerCtx()), msg) + b.suite.Require().NoError(err) +} + +// addValidatorToStakingModule creates an additional validator with zero commission +// and zero tokens (zero voting power). +func (b *Builder) addValidatorToStakingModule(privVal mock.PV) { + coin := sdk.NewCoin(sdk.DefaultBondDenom, sdk.NewInt(0)) + + pubKey, err := privVal.GetPubKey() + require.NoError(b.suite.T(), err) + + // Compute address + addr, err := sdk.ValAddressFromHex(pubKey.Address().String()) + require.NoError(b.suite.T(), err) + + sdkPK, err := cryptocodec.FromTmPubKeyInterface(pubKey) + require.NoError(b.suite.T(), err) + + msg, err := stakingtypes.NewMsgCreateValidator( + addr, + sdkPK, + coin, + stakingtypes.Description{}, + stakingtypes.NewCommissionRates(sdk.ZeroDec(), sdk.ZeroDec(), sdk.ZeroDec()), + sdk.ZeroInt()) + b.suite.Require().NoError(err) + providerStaking := b.providerStakingKeeper() + pskServer := stakingkeeper.NewMsgServerImpl(&providerStaking) + _, _ = pskServer.CreateValidator(sdk.WrapSDKContext(b.providerCtx()), msg) +} + +func (b *Builder) addExtraProviderValidators() { + for i, status := range b.initState.ValStates.Status { + if status == stakingtypes.Unbonded { + privVal := b.getValidatorPK(i) + b.addValidatorToStakingModule(privVal) + pubKey, err := privVal.GetPubKey() + require.NoError(b.suite.T(), err) + + addr, err := sdk.ValAddressFromHex(pubKey.Address().String()) + require.NoError(b.suite.T(), err) + + b.valAddresses = append(b.valAddresses, addr) + b.provider().Signers[pubKey.Address().String()] = privVal + b.consumer().Signers[pubKey.Address().String()] = privVal + } + } + + b.setSigningInfos() + + b.ensureValidatorLexicographicOrderingMatchesModel() + + for i := range b.initState.ValStates.Status { + if b.initState.ValStates.Status[i] == stakingtypes.Unbonded { + del := b.initState.ValStates.Delegation[i] + extra := b.initState.ValStates.ValidatorExtraTokens[i] + b.delegate(0, b.validator(int64(i)), int64(del)) + b.delegate(1, b.validator(int64(i)), int64(extra)) + } + } +} + +func (b *Builder) setProviderParams() { + // Set the slash factors on the provider to match the model + slash := b.providerSlashingKeeper().GetParams(b.providerCtx()) + slash.SlashFractionDoubleSign = b.initState.SlashDoublesign + slash.SlashFractionDowntime = b.initState.SlashDowntime + err := b.providerSlashingKeeper().SetParams(b.providerCtx(), slash) + if err != nil { + panic(err) + } + // Set the throttle factors + throttle := b.providerKeeper().GetParams(b.providerCtx()) + throttle.SlashMeterReplenishFraction = "1.0" + throttle.SlashMeterReplenishPeriod = time.Second * 1 + b.providerKeeper().SetParams(b.providerCtx(), throttle) +} + +func (b *Builder) configurePath() { + b.path = ibctesting.NewPath(b.consumer(), b.provider()) + b.consumerEndpoint().ChannelConfig.PortID = ccv.ConsumerPortID + b.providerEndpoint().ChannelConfig.PortID = ccv.ProviderPortID + b.consumerEndpoint().ChannelConfig.Version = ccv.Version + b.providerEndpoint().ChannelConfig.Version = ccv.Version + b.consumerEndpoint().ChannelConfig.Order = channeltypes.ORDERED + b.providerEndpoint().ChannelConfig.Order = channeltypes.ORDERED +} + +func (b *Builder) createProvidersLocalClient() { + // Configure and create the consumer Client + tmCfg := b.providerEndpoint().ClientConfig.(*ibctesting.TendermintConfig) + tmCfg.UnbondingPeriod = b.initState.UnbondingC + tmCfg.TrustingPeriod = b.initState.Trusting + tmCfg.MaxClockDrift = b.initState.MaxClockDrift + err := b.providerEndpoint().CreateClient() + b.suite.Require().NoError(err) + // Create the Consumer chain ID mapping in the provider state + b.providerKeeper().SetConsumerClientId(b.providerCtx(), b.consumer().ChainID, b.providerEndpoint().ClientID) +} + +func (b *Builder) createConsumersLocalClientGenesis() *ibctmtypes.ClientState { + tmCfg := b.consumerEndpoint().ClientConfig.(*ibctesting.TendermintConfig) + tmCfg.UnbondingPeriod = b.initState.UnbondingP + tmCfg.TrustingPeriod = b.initState.Trusting + tmCfg.MaxClockDrift = b.initState.MaxClockDrift + + return ibctmtypes.NewClientState( + b.provider().ChainID, tmCfg.TrustLevel, tmCfg.TrustingPeriod, tmCfg.UnbondingPeriod, tmCfg.MaxClockDrift, + b.provider().LastHeader.GetHeight().(clienttypes.Height), commitmenttypes.GetSDKSpecs(), + []string{"upgrade", "upgradedIBCState"}, + ) +} + +func (b *Builder) createConsumerGenesis(client *ibctmtypes.ClientState) *consumertypes.GenesisState { + providerConsState := b.provider().LastHeader.ConsensusState() + + valUpdates := tmtypes.TM2PB.ValidatorUpdates(b.provider().Vals) + params := consumertypes.NewParams( + true, + 1000, // ignore distribution + "", // ignore distribution + "", // ignore distribution + ccv.DefaultCCVTimeoutPeriod, + consumertypes.DefaultTransferTimeoutPeriod, + consumertypes.DefaultConsumerRedistributeFrac, + consumertypes.DefaultHistoricalEntries, + b.initState.UnbondingC, + "0", // disable soft opt-out + []string{}, + []string{}, + ) + return consumertypes.NewInitialGenesisState(client, providerConsState, valUpdates, params) +} + +// The state of the data returned is equivalent to the state of two chains +// after a full handshake, but the precise order of steps used to reach the +// state does not necessarily mimic the order of steps that happen in a +// live scenario. +func GetZeroState( + suite *suite.Suite, + initState InitState, +) (path *ibctesting.Path, addrs []sdk.ValAddress, heightLastCommitted, timeLastCommitted int64) { + b := Builder{initState: initState, suite: suite} + + b.createProviderAndConsumer() + + b.setProviderParams() + + // This is the simplest way to initialize the slash meter + // after a change to the param value. + b.providerKeeper().InitializeSlashMeter(b.providerCtx()) + + b.addExtraProviderValidators() + + // Commit the additional validators + b.coordinator.CommitBlock(b.provider()) + + b.configurePath() + + // Create a client for the provider chain to use, using ibc go testing. + b.createProvidersLocalClient() + + // Manually create a client for the consumer chain to and bootstrap + // via genesis. + clientState := b.createConsumersLocalClientGenesis() + + consumerGenesis := b.createConsumerGenesis(clientState) + + b.consumerKeeper().InitGenesis(b.consumerCtx(), consumerGenesis) + + // Client ID is set in InitGenesis and we treat it as a block box. So + // must query it to use it with the endpoint. + clientID, _ := b.consumerKeeper().GetProviderClientID(b.consumerCtx()) + b.consumerEndpoint().ClientID = clientID + + // Handshake + b.coordinator.CreateConnections(b.path) + b.coordinator.CreateChannels(b.path) + + // Usually the consumer sets the channel ID when it receives a first VSC packet + // to the provider. For testing purposes, we can set it here. This is because + // we model a blank slate: a provider and consumer that have fully established + // their channel, and are ready for anything to happen. + b.consumerKeeper().SetProviderChannel(b.consumerCtx(), b.consumerEndpoint().ChannelID) + + // Catch up consumer height to provider height. The provider was one ahead + // from committing additional validators. + simibc.EndBlock(b.consumer(), func() {}) + + simibc.BeginBlock(b.consumer(), initState.BlockInterval) + simibc.BeginBlock(b.provider(), initState.BlockInterval) + + // Commit a block on both chains, giving us two committed headers from + // the same time and height. This is the starting point for all our + // data driven testing. + lastProviderHeader, _ := simibc.EndBlock(b.provider(), func() {}) + lastConsumerHeader, _ := simibc.EndBlock(b.consumer(), func() {}) + + // Want the height and time of last COMMITTED block + heightLastCommitted = b.provider().CurrentHeader.Height + timeLastCommitted = b.provider().CurrentHeader.Time.Unix() + + // Get ready to update clients. + simibc.BeginBlock(b.provider(), initState.BlockInterval) + simibc.BeginBlock(b.consumer(), initState.BlockInterval) + + // Update clients to the latest header. Now everything is ready to go! + // Ignore errors for brevity. Everything is checked in Assuptions test. + _ = simibc.UpdateReceiverClient(b.consumerEndpoint(), b.providerEndpoint(), lastConsumerHeader) + _ = simibc.UpdateReceiverClient(b.providerEndpoint(), b.consumerEndpoint(), lastProviderHeader) + + return b.path, b.valAddresses, heightLastCommitted, timeLastCommitted +} diff --git a/tests/difference/core/quint_model/driver/trace.json b/tests/difference/core/quint_model/driver/trace.json new file mode 100644 index 0000000000..6b4c317ecf --- /dev/null +++ b/tests/difference/core/quint_model/driver/trace.json @@ -0,0 +1,19892 @@ +{ + "#meta": { + "format": "ITF", + "format-description": "https://apalache.informal.systems/docs/adr/015adr-trace.html", + "source": "ccv_model.qnt", + "status": "ok", + "description": "Created by Quint on Wed Oct 18 2023 14:44:12 GMT+0200 (Central European Summer Time)", + "timestamp": 1697633052446 + }, + "vars": [ + "currentState", + "trace" + ], + "states": [ + { + "#meta": { + "index": 0 + }, + "currentState": { + "consumerStates": { + "#map": [ + [ + "consumer1", + { + "chainState": { + "currentValidatorSet": { + "#map": [] + }, + "lastTimestamp": { + "#bigint": "0" + }, + "votingPowerHistory": [] + }, + "maturationTimes": { + "#map": [] + }, + "outstandingPacketsToProvider": [], + "receivedVscPackets": [] + } + ], + [ + "consumer2", + { + "chainState": { + "currentValidatorSet": { + "#map": [] + }, + "lastTimestamp": { + "#bigint": "0" + }, + "votingPowerHistory": [] + }, + "maturationTimes": { + "#map": [] + }, + "outstandingPacketsToProvider": [], + "receivedVscPackets": [] + } + ], + [ + "consumer3", + { + "chainState": { + "currentValidatorSet": { + "#map": [] + }, + "lastTimestamp": { + "#bigint": "0" + }, + "votingPowerHistory": [] + }, + "maturationTimes": { + "#map": [] + }, + "outstandingPacketsToProvider": [], + "receivedVscPackets": [] + } + ] + ] + }, + "providerState": { + "chainState": { + "currentValidatorSet": { + "#map": [ + [ + "node1", + { + "#bigint": "100" + } + ], + [ + "node10", + { + "#bigint": "100" + } + ], + [ + "node2", + { + "#bigint": "100" + } + ], + [ + "node3", + { + "#bigint": "100" + } + ], + [ + "node4", + { + "#bigint": "100" + } + ], + [ + "node5", + { + "#bigint": "100" + } + ], + [ + "node6", + { + "#bigint": "100" + } + ], + [ + "node7", + { + "#bigint": "100" + } + ], + [ + "node8", + { + "#bigint": "100" + } + ], + [ + "node9", + { + "#bigint": "100" + } + ] + ] + }, + "lastTimestamp": { + "#bigint": "0" + }, + "votingPowerHistory": [ + { + "#map": [ + [ + "node1", + { + "#bigint": "100" + } + ], + [ + "node10", + { + "#bigint": "100" + } + ], + [ + "node2", + { + "#bigint": "100" + } + ], + [ + "node3", + { + "#bigint": "100" + } + ], + [ + "node4", + { + "#bigint": "100" + } + ], + [ + "node5", + { + "#bigint": "100" + } + ], + [ + "node6", + { + "#bigint": "100" + } + ], + [ + "node7", + { + "#bigint": "100" + } + ], + [ + "node8", + { + "#bigint": "100" + } + ], + [ + "node9", + { + "#bigint": "100" + } + ] + ] + } + ] + }, + "consumerStatus": { + "#map": [ + [ + "consumer1", + "not consumer" + ], + [ + "consumer2", + "not consumer" + ], + [ + "consumer3", + "not consumer" + ] + ] + }, + "outstandingPacketsToConsumer": { + "#map": [ + [ + "consumer1", + [] + ], + [ + "consumer2", + [] + ], + [ + "consumer3", + [] + ] + ] + }, + "providerValidatorSetChangedInThisBlock": false, + "receivedMaturations": { + "#set": [] + }, + "runningVscId": { + "#bigint": "0" + }, + "sentVscPacketsToConsumer": { + "#map": [ + [ + "consumer1", + [] + ], + [ + "consumer2", + [] + ], + [ + "consumer3", + [] + ] + ] + } + } + }, + "trace": [ + { + "consumerChain": "", + "consumersToStart": { + "#set": [] + }, + "consumersToStop": { + "#set": [] + }, + "kind": "init", + "newVotingPower": { + "#bigint": "0" + }, + "timeAdvancement": { + "#bigint": "0" + }, + "validator": "" + } + ] + }, + { + "#meta": { + "index": 1 + }, + "currentState": { + "consumerStates": { + "#map": [ + [ + "consumer1", + { + "chainState": { + "currentValidatorSet": { + "#map": [ + [ + "node1", + { + "#bigint": "100" + } + ], + [ + "node10", + { + "#bigint": "100" + } + ], + [ + "node2", + { + "#bigint": "100" + } + ], + [ + "node3", + { + "#bigint": "100" + } + ], + [ + "node4", + { + "#bigint": "100" + } + ], + [ + "node5", + { + "#bigint": "100" + } + ], + [ + "node6", + { + "#bigint": "100" + } + ], + [ + "node7", + { + "#bigint": "100" + } + ], + [ + "node8", + { + "#bigint": "100" + } + ], + [ + "node9", + { + "#bigint": "100" + } + ] + ] + }, + "lastTimestamp": { + "#bigint": "0" + }, + "votingPowerHistory": [] + }, + "maturationTimes": { + "#map": [] + }, + "outstandingPacketsToProvider": [], + "receivedVscPackets": [] + } + ], + [ + "consumer2", + { + "chainState": { + "currentValidatorSet": { + "#map": [] + }, + "lastTimestamp": { + "#bigint": "0" + }, + "votingPowerHistory": [] + }, + "maturationTimes": { + "#map": [] + }, + "outstandingPacketsToProvider": [], + "receivedVscPackets": [] + } + ], + [ + "consumer3", + { + "chainState": { + "currentValidatorSet": { + "#map": [ + [ + "node1", + { + "#bigint": "100" + } + ], + [ + "node10", + { + "#bigint": "100" + } + ], + [ + "node2", + { + "#bigint": "100" + } + ], + [ + "node3", + { + "#bigint": "100" + } + ], + [ + "node4", + { + "#bigint": "100" + } + ], + [ + "node5", + { + "#bigint": "100" + } + ], + [ + "node6", + { + "#bigint": "100" + } + ], + [ + "node7", + { + "#bigint": "100" + } + ], + [ + "node8", + { + "#bigint": "100" + } + ], + [ + "node9", + { + "#bigint": "100" + } + ] + ] + }, + "lastTimestamp": { + "#bigint": "0" + }, + "votingPowerHistory": [] + }, + "maturationTimes": { + "#map": [] + }, + "outstandingPacketsToProvider": [], + "receivedVscPackets": [] + } + ] + ] + }, + "providerState": { + "chainState": { + "currentValidatorSet": { + "#map": [ + [ + "node1", + { + "#bigint": "100" + } + ], + [ + "node10", + { + "#bigint": "100" + } + ], + [ + "node2", + { + "#bigint": "100" + } + ], + [ + "node3", + { + "#bigint": "100" + } + ], + [ + "node4", + { + "#bigint": "100" + } + ], + [ + "node5", + { + "#bigint": "100" + } + ], + [ + "node6", + { + "#bigint": "100" + } + ], + [ + "node7", + { + "#bigint": "100" + } + ], + [ + "node8", + { + "#bigint": "100" + } + ], + [ + "node9", + { + "#bigint": "100" + } + ] + ] + }, + "lastTimestamp": { + "#bigint": "2419200" + }, + "votingPowerHistory": [ + { + "#map": [ + [ + "node1", + { + "#bigint": "100" + } + ], + [ + "node10", + { + "#bigint": "100" + } + ], + [ + "node2", + { + "#bigint": "100" + } + ], + [ + "node3", + { + "#bigint": "100" + } + ], + [ + "node4", + { + "#bigint": "100" + } + ], + [ + "node5", + { + "#bigint": "100" + } + ], + [ + "node6", + { + "#bigint": "100" + } + ], + [ + "node7", + { + "#bigint": "100" + } + ], + [ + "node8", + { + "#bigint": "100" + } + ], + [ + "node9", + { + "#bigint": "100" + } + ] + ] + }, + { + "#map": [ + [ + "node1", + { + "#bigint": "100" + } + ], + [ + "node10", + { + "#bigint": "100" + } + ], + [ + "node2", + { + "#bigint": "100" + } + ], + [ + "node3", + { + "#bigint": "100" + } + ], + [ + "node4", + { + "#bigint": "100" + } + ], + [ + "node5", + { + "#bigint": "100" + } + ], + [ + "node6", + { + "#bigint": "100" + } + ], + [ + "node7", + { + "#bigint": "100" + } + ], + [ + "node8", + { + "#bigint": "100" + } + ], + [ + "node9", + { + "#bigint": "100" + } + ] + ] + } + ] + }, + "consumerStatus": { + "#map": [ + [ + "consumer1", + "running" + ], + [ + "consumer2", + "not consumer" + ], + [ + "consumer3", + "running" + ] + ] + }, + "outstandingPacketsToConsumer": { + "#map": [ + [ + "consumer1", + [] + ], + [ + "consumer2", + [] + ], + [ + "consumer3", + [] + ] + ] + }, + "providerValidatorSetChangedInThisBlock": false, + "receivedMaturations": { + "#set": [] + }, + "runningVscId": { + "#bigint": "0" + }, + "sentVscPacketsToConsumer": { + "#map": [ + [ + "consumer1", + [] + ], + [ + "consumer2", + [] + ], + [ + "consumer3", + [] + ] + ] + } + } + }, + "trace": [ + { + "consumerChain": "", + "consumersToStart": { + "#set": [] + }, + "consumersToStop": { + "#set": [] + }, + "kind": "init", + "newVotingPower": { + "#bigint": "0" + }, + "timeAdvancement": { + "#bigint": "0" + }, + "validator": "" + }, + { + "consumerChain": "", + "consumersToStart": { + "#set": [ + "consumer1", + "consumer3" + ] + }, + "consumersToStop": { + "#set": [] + }, + "kind": "EndAndBeginBlockForProvider", + "newVotingPower": { + "#bigint": "0" + }, + "timeAdvancement": { + "#bigint": "2419200" + }, + "validator": "" + } + ] + }, + { + "#meta": { + "index": 2 + }, + "currentState": { + "consumerStates": { + "#map": [ + [ + "consumer1", + { + "chainState": { + "currentValidatorSet": { + "#map": [ + [ + "node1", + { + "#bigint": "100" + } + ], + [ + "node10", + { + "#bigint": "100" + } + ], + [ + "node2", + { + "#bigint": "100" + } + ], + [ + "node3", + { + "#bigint": "100" + } + ], + [ + "node4", + { + "#bigint": "100" + } + ], + [ + "node5", + { + "#bigint": "100" + } + ], + [ + "node6", + { + "#bigint": "100" + } + ], + [ + "node7", + { + "#bigint": "100" + } + ], + [ + "node8", + { + "#bigint": "100" + } + ], + [ + "node9", + { + "#bigint": "100" + } + ] + ] + }, + "lastTimestamp": { + "#bigint": "0" + }, + "votingPowerHistory": [] + }, + "maturationTimes": { + "#map": [] + }, + "outstandingPacketsToProvider": [], + "receivedVscPackets": [] + } + ], + [ + "consumer2", + { + "chainState": { + "currentValidatorSet": { + "#map": [] + }, + "lastTimestamp": { + "#bigint": "0" + }, + "votingPowerHistory": [] + }, + "maturationTimes": { + "#map": [] + }, + "outstandingPacketsToProvider": [], + "receivedVscPackets": [] + } + ], + [ + "consumer3", + { + "chainState": { + "currentValidatorSet": { + "#map": [ + [ + "node1", + { + "#bigint": "100" + } + ], + [ + "node10", + { + "#bigint": "100" + } + ], + [ + "node2", + { + "#bigint": "100" + } + ], + [ + "node3", + { + "#bigint": "100" + } + ], + [ + "node4", + { + "#bigint": "100" + } + ], + [ + "node5", + { + "#bigint": "100" + } + ], + [ + "node6", + { + "#bigint": "100" + } + ], + [ + "node7", + { + "#bigint": "100" + } + ], + [ + "node8", + { + "#bigint": "100" + } + ], + [ + "node9", + { + "#bigint": "100" + } + ] + ] + }, + "lastTimestamp": { + "#bigint": "2419200" + }, + "votingPowerHistory": [ + { + "#map": [ + [ + "node1", + { + "#bigint": "100" + } + ], + [ + "node10", + { + "#bigint": "100" + } + ], + [ + "node2", + { + "#bigint": "100" + } + ], + [ + "node3", + { + "#bigint": "100" + } + ], + [ + "node4", + { + "#bigint": "100" + } + ], + [ + "node5", + { + "#bigint": "100" + } + ], + [ + "node6", + { + "#bigint": "100" + } + ], + [ + "node7", + { + "#bigint": "100" + } + ], + [ + "node8", + { + "#bigint": "100" + } + ], + [ + "node9", + { + "#bigint": "100" + } + ] + ] + } + ] + }, + "maturationTimes": { + "#map": [] + }, + "outstandingPacketsToProvider": [], + "receivedVscPackets": [] + } + ] + ] + }, + "providerState": { + "chainState": { + "currentValidatorSet": { + "#map": [ + [ + "node1", + { + "#bigint": "100" + } + ], + [ + "node10", + { + "#bigint": "100" + } + ], + [ + "node2", + { + "#bigint": "100" + } + ], + [ + "node3", + { + "#bigint": "100" + } + ], + [ + "node4", + { + "#bigint": "100" + } + ], + [ + "node5", + { + "#bigint": "100" + } + ], + [ + "node6", + { + "#bigint": "100" + } + ], + [ + "node7", + { + "#bigint": "100" + } + ], + [ + "node8", + { + "#bigint": "100" + } + ], + [ + "node9", + { + "#bigint": "100" + } + ] + ] + }, + "lastTimestamp": { + "#bigint": "2419200" + }, + "votingPowerHistory": [ + { + "#map": [ + [ + "node1", + { + "#bigint": "100" + } + ], + [ + "node10", + { + "#bigint": "100" + } + ], + [ + "node2", + { + "#bigint": "100" + } + ], + [ + "node3", + { + "#bigint": "100" + } + ], + [ + "node4", + { + "#bigint": "100" + } + ], + [ + "node5", + { + "#bigint": "100" + } + ], + [ + "node6", + { + "#bigint": "100" + } + ], + [ + "node7", + { + "#bigint": "100" + } + ], + [ + "node8", + { + "#bigint": "100" + } + ], + [ + "node9", + { + "#bigint": "100" + } + ] + ] + }, + { + "#map": [ + [ + "node1", + { + "#bigint": "100" + } + ], + [ + "node10", + { + "#bigint": "100" + } + ], + [ + "node2", + { + "#bigint": "100" + } + ], + [ + "node3", + { + "#bigint": "100" + } + ], + [ + "node4", + { + "#bigint": "100" + } + ], + [ + "node5", + { + "#bigint": "100" + } + ], + [ + "node6", + { + "#bigint": "100" + } + ], + [ + "node7", + { + "#bigint": "100" + } + ], + [ + "node8", + { + "#bigint": "100" + } + ], + [ + "node9", + { + "#bigint": "100" + } + ] + ] + } + ] + }, + "consumerStatus": { + "#map": [ + [ + "consumer1", + "running" + ], + [ + "consumer2", + "not consumer" + ], + [ + "consumer3", + "running" + ] + ] + }, + "outstandingPacketsToConsumer": { + "#map": [ + [ + "consumer1", + [] + ], + [ + "consumer2", + [] + ], + [ + "consumer3", + [] + ] + ] + }, + "providerValidatorSetChangedInThisBlock": false, + "receivedMaturations": { + "#set": [] + }, + "runningVscId": { + "#bigint": "0" + }, + "sentVscPacketsToConsumer": { + "#map": [ + [ + "consumer1", + [] + ], + [ + "consumer2", + [] + ], + [ + "consumer3", + [] + ] + ] + } + } + }, + "trace": [ + { + "consumerChain": "", + "consumersToStart": { + "#set": [] + }, + "consumersToStop": { + "#set": [] + }, + "kind": "init", + "newVotingPower": { + "#bigint": "0" + }, + "timeAdvancement": { + "#bigint": "0" + }, + "validator": "" + }, + { + "consumerChain": "", + "consumersToStart": { + "#set": [ + "consumer1", + "consumer3" + ] + }, + "consumersToStop": { + "#set": [] + }, + "kind": "EndAndBeginBlockForProvider", + "newVotingPower": { + "#bigint": "0" + }, + "timeAdvancement": { + "#bigint": "2419200" + }, + "validator": "" + }, + { + "consumerChain": "consumer3", + "consumersToStart": { + "#set": [] + }, + "consumersToStop": { + "#set": [] + }, + "kind": "EndAndBeginBlockForConsumer", + "newVotingPower": { + "#bigint": "0" + }, + "timeAdvancement": { + "#bigint": "2419200" + }, + "validator": "" + } + ] + }, + { + "#meta": { + "index": 3 + }, + "currentState": { + "consumerStates": { + "#map": [ + [ + "consumer1", + { + "chainState": { + "currentValidatorSet": { + "#map": [ + [ + "node1", + { + "#bigint": "100" + } + ], + [ + "node10", + { + "#bigint": "100" + } + ], + [ + "node2", + { + "#bigint": "100" + } + ], + [ + "node3", + { + "#bigint": "100" + } + ], + [ + "node4", + { + "#bigint": "100" + } + ], + [ + "node5", + { + "#bigint": "100" + } + ], + [ + "node6", + { + "#bigint": "100" + } + ], + [ + "node7", + { + "#bigint": "100" + } + ], + [ + "node8", + { + "#bigint": "100" + } + ], + [ + "node9", + { + "#bigint": "100" + } + ] + ] + }, + "lastTimestamp": { + "#bigint": "0" + }, + "votingPowerHistory": [] + }, + "maturationTimes": { + "#map": [] + }, + "outstandingPacketsToProvider": [], + "receivedVscPackets": [] + } + ], + [ + "consumer2", + { + "chainState": { + "currentValidatorSet": { + "#map": [] + }, + "lastTimestamp": { + "#bigint": "0" + }, + "votingPowerHistory": [] + }, + "maturationTimes": { + "#map": [] + }, + "outstandingPacketsToProvider": [], + "receivedVscPackets": [] + } + ], + [ + "consumer3", + { + "chainState": { + "currentValidatorSet": { + "#map": [ + [ + "node1", + { + "#bigint": "100" + } + ], + [ + "node10", + { + "#bigint": "100" + } + ], + [ + "node2", + { + "#bigint": "100" + } + ], + [ + "node3", + { + "#bigint": "100" + } + ], + [ + "node4", + { + "#bigint": "100" + } + ], + [ + "node5", + { + "#bigint": "100" + } + ], + [ + "node6", + { + "#bigint": "100" + } + ], + [ + "node7", + { + "#bigint": "100" + } + ], + [ + "node8", + { + "#bigint": "100" + } + ], + [ + "node9", + { + "#bigint": "100" + } + ] + ] + }, + "lastTimestamp": { + "#bigint": "2419200" + }, + "votingPowerHistory": [ + { + "#map": [ + [ + "node1", + { + "#bigint": "100" + } + ], + [ + "node10", + { + "#bigint": "100" + } + ], + [ + "node2", + { + "#bigint": "100" + } + ], + [ + "node3", + { + "#bigint": "100" + } + ], + [ + "node4", + { + "#bigint": "100" + } + ], + [ + "node5", + { + "#bigint": "100" + } + ], + [ + "node6", + { + "#bigint": "100" + } + ], + [ + "node7", + { + "#bigint": "100" + } + ], + [ + "node8", + { + "#bigint": "100" + } + ], + [ + "node9", + { + "#bigint": "100" + } + ] + ] + } + ] + }, + "maturationTimes": { + "#map": [] + }, + "outstandingPacketsToProvider": [], + "receivedVscPackets": [] + } + ] + ] + }, + "providerState": { + "chainState": { + "currentValidatorSet": { + "#map": [ + [ + "node1", + { + "#bigint": "100" + } + ], + [ + "node10", + { + "#bigint": "100" + } + ], + [ + "node2", + { + "#bigint": "100" + } + ], + [ + "node3", + { + "#bigint": "100" + } + ], + [ + "node4", + { + "#bigint": "100" + } + ], + [ + "node5", + { + "#bigint": "100" + } + ], + [ + "node6", + { + "#bigint": "100" + } + ], + [ + "node7", + { + "#bigint": "100" + } + ], + [ + "node8", + { + "#bigint": "100" + } + ], + [ + "node9", + { + "#bigint": "100" + } + ] + ] + }, + "lastTimestamp": { + "#bigint": "2419200" + }, + "votingPowerHistory": [ + { + "#map": [ + [ + "node1", + { + "#bigint": "100" + } + ], + [ + "node10", + { + "#bigint": "100" + } + ], + [ + "node2", + { + "#bigint": "100" + } + ], + [ + "node3", + { + "#bigint": "100" + } + ], + [ + "node4", + { + "#bigint": "100" + } + ], + [ + "node5", + { + "#bigint": "100" + } + ], + [ + "node6", + { + "#bigint": "100" + } + ], + [ + "node7", + { + "#bigint": "100" + } + ], + [ + "node8", + { + "#bigint": "100" + } + ], + [ + "node9", + { + "#bigint": "100" + } + ] + ] + }, + { + "#map": [ + [ + "node1", + { + "#bigint": "100" + } + ], + [ + "node10", + { + "#bigint": "100" + } + ], + [ + "node2", + { + "#bigint": "100" + } + ], + [ + "node3", + { + "#bigint": "100" + } + ], + [ + "node4", + { + "#bigint": "100" + } + ], + [ + "node5", + { + "#bigint": "100" + } + ], + [ + "node6", + { + "#bigint": "100" + } + ], + [ + "node7", + { + "#bigint": "100" + } + ], + [ + "node8", + { + "#bigint": "100" + } + ], + [ + "node9", + { + "#bigint": "100" + } + ] + ] + } + ] + }, + "consumerStatus": { + "#map": [ + [ + "consumer1", + "running" + ], + [ + "consumer2", + "not consumer" + ], + [ + "consumer3", + "running" + ] + ] + }, + "outstandingPacketsToConsumer": { + "#map": [ + [ + "consumer1", + [] + ], + [ + "consumer2", + [] + ], + [ + "consumer3", + [] + ] + ] + }, + "providerValidatorSetChangedInThisBlock": true, + "receivedMaturations": { + "#set": [] + }, + "runningVscId": { + "#bigint": "0" + }, + "sentVscPacketsToConsumer": { + "#map": [ + [ + "consumer1", + [] + ], + [ + "consumer2", + [] + ], + [ + "consumer3", + [] + ] + ] + } + } + }, + "trace": [ + { + "consumerChain": "", + "consumersToStart": { + "#set": [] + }, + "consumersToStop": { + "#set": [] + }, + "kind": "init", + "newVotingPower": { + "#bigint": "0" + }, + "timeAdvancement": { + "#bigint": "0" + }, + "validator": "" + }, + { + "consumerChain": "", + "consumersToStart": { + "#set": [ + "consumer1", + "consumer3" + ] + }, + "consumersToStop": { + "#set": [] + }, + "kind": "EndAndBeginBlockForProvider", + "newVotingPower": { + "#bigint": "0" + }, + "timeAdvancement": { + "#bigint": "2419200" + }, + "validator": "" + }, + { + "consumerChain": "consumer3", + "consumersToStart": { + "#set": [] + }, + "consumersToStop": { + "#set": [] + }, + "kind": "EndAndBeginBlockForConsumer", + "newVotingPower": { + "#bigint": "0" + }, + "timeAdvancement": { + "#bigint": "2419200" + }, + "validator": "" + }, + { + "consumerChain": "", + "consumersToStart": { + "#set": [] + }, + "consumersToStop": { + "#set": [] + }, + "kind": "VotingPowerChange", + "newVotingPower": { + "#bigint": "100" + }, + "timeAdvancement": { + "#bigint": "0" + }, + "validator": "node1" + } + ] + }, + { + "#meta": { + "index": 4 + }, + "currentState": { + "consumerStates": { + "#map": [ + [ + "consumer1", + { + "chainState": { + "currentValidatorSet": { + "#map": [ + [ + "node1", + { + "#bigint": "100" + } + ], + [ + "node10", + { + "#bigint": "100" + } + ], + [ + "node2", + { + "#bigint": "100" + } + ], + [ + "node3", + { + "#bigint": "100" + } + ], + [ + "node4", + { + "#bigint": "100" + } + ], + [ + "node5", + { + "#bigint": "100" + } + ], + [ + "node6", + { + "#bigint": "100" + } + ], + [ + "node7", + { + "#bigint": "100" + } + ], + [ + "node8", + { + "#bigint": "100" + } + ], + [ + "node9", + { + "#bigint": "100" + } + ] + ] + }, + "lastTimestamp": { + "#bigint": "0" + }, + "votingPowerHistory": [] + }, + "maturationTimes": { + "#map": [] + }, + "outstandingPacketsToProvider": [], + "receivedVscPackets": [] + } + ], + [ + "consumer2", + { + "chainState": { + "currentValidatorSet": { + "#map": [] + }, + "lastTimestamp": { + "#bigint": "0" + }, + "votingPowerHistory": [] + }, + "maturationTimes": { + "#map": [] + }, + "outstandingPacketsToProvider": [], + "receivedVscPackets": [] + } + ], + [ + "consumer3", + { + "chainState": { + "currentValidatorSet": { + "#map": [ + [ + "node1", + { + "#bigint": "100" + } + ], + [ + "node10", + { + "#bigint": "100" + } + ], + [ + "node2", + { + "#bigint": "100" + } + ], + [ + "node3", + { + "#bigint": "100" + } + ], + [ + "node4", + { + "#bigint": "100" + } + ], + [ + "node5", + { + "#bigint": "100" + } + ], + [ + "node6", + { + "#bigint": "100" + } + ], + [ + "node7", + { + "#bigint": "100" + } + ], + [ + "node8", + { + "#bigint": "100" + } + ], + [ + "node9", + { + "#bigint": "100" + } + ] + ] + }, + "lastTimestamp": { + "#bigint": "2419200" + }, + "votingPowerHistory": [ + { + "#map": [ + [ + "node1", + { + "#bigint": "100" + } + ], + [ + "node10", + { + "#bigint": "100" + } + ], + [ + "node2", + { + "#bigint": "100" + } + ], + [ + "node3", + { + "#bigint": "100" + } + ], + [ + "node4", + { + "#bigint": "100" + } + ], + [ + "node5", + { + "#bigint": "100" + } + ], + [ + "node6", + { + "#bigint": "100" + } + ], + [ + "node7", + { + "#bigint": "100" + } + ], + [ + "node8", + { + "#bigint": "100" + } + ], + [ + "node9", + { + "#bigint": "100" + } + ] + ] + } + ] + }, + "maturationTimes": { + "#map": [] + }, + "outstandingPacketsToProvider": [], + "receivedVscPackets": [] + } + ] + ] + }, + "providerState": { + "chainState": { + "currentValidatorSet": { + "#map": [ + [ + "node1", + { + "#bigint": "50" + } + ], + [ + "node10", + { + "#bigint": "100" + } + ], + [ + "node2", + { + "#bigint": "100" + } + ], + [ + "node3", + { + "#bigint": "100" + } + ], + [ + "node4", + { + "#bigint": "100" + } + ], + [ + "node5", + { + "#bigint": "100" + } + ], + [ + "node6", + { + "#bigint": "100" + } + ], + [ + "node7", + { + "#bigint": "100" + } + ], + [ + "node8", + { + "#bigint": "100" + } + ], + [ + "node9", + { + "#bigint": "100" + } + ] + ] + }, + "lastTimestamp": { + "#bigint": "2419200" + }, + "votingPowerHistory": [ + { + "#map": [ + [ + "node1", + { + "#bigint": "100" + } + ], + [ + "node10", + { + "#bigint": "100" + } + ], + [ + "node2", + { + "#bigint": "100" + } + ], + [ + "node3", + { + "#bigint": "100" + } + ], + [ + "node4", + { + "#bigint": "100" + } + ], + [ + "node5", + { + "#bigint": "100" + } + ], + [ + "node6", + { + "#bigint": "100" + } + ], + [ + "node7", + { + "#bigint": "100" + } + ], + [ + "node8", + { + "#bigint": "100" + } + ], + [ + "node9", + { + "#bigint": "100" + } + ] + ] + }, + { + "#map": [ + [ + "node1", + { + "#bigint": "100" + } + ], + [ + "node10", + { + "#bigint": "100" + } + ], + [ + "node2", + { + "#bigint": "100" + } + ], + [ + "node3", + { + "#bigint": "100" + } + ], + [ + "node4", + { + "#bigint": "100" + } + ], + [ + "node5", + { + "#bigint": "100" + } + ], + [ + "node6", + { + "#bigint": "100" + } + ], + [ + "node7", + { + "#bigint": "100" + } + ], + [ + "node8", + { + "#bigint": "100" + } + ], + [ + "node9", + { + "#bigint": "100" + } + ] + ] + } + ] + }, + "consumerStatus": { + "#map": [ + [ + "consumer1", + "running" + ], + [ + "consumer2", + "not consumer" + ], + [ + "consumer3", + "running" + ] + ] + }, + "outstandingPacketsToConsumer": { + "#map": [ + [ + "consumer1", + [] + ], + [ + "consumer2", + [] + ], + [ + "consumer3", + [] + ] + ] + }, + "providerValidatorSetChangedInThisBlock": true, + "receivedMaturations": { + "#set": [] + }, + "runningVscId": { + "#bigint": "0" + }, + "sentVscPacketsToConsumer": { + "#map": [ + [ + "consumer1", + [] + ], + [ + "consumer2", + [] + ], + [ + "consumer3", + [] + ] + ] + } + } + }, + "trace": [ + { + "consumerChain": "", + "consumersToStart": { + "#set": [] + }, + "consumersToStop": { + "#set": [] + }, + "kind": "init", + "newVotingPower": { + "#bigint": "0" + }, + "timeAdvancement": { + "#bigint": "0" + }, + "validator": "" + }, + { + "consumerChain": "", + "consumersToStart": { + "#set": [ + "consumer1", + "consumer3" + ] + }, + "consumersToStop": { + "#set": [] + }, + "kind": "EndAndBeginBlockForProvider", + "newVotingPower": { + "#bigint": "0" + }, + "timeAdvancement": { + "#bigint": "2419200" + }, + "validator": "" + }, + { + "consumerChain": "consumer3", + "consumersToStart": { + "#set": [] + }, + "consumersToStop": { + "#set": [] + }, + "kind": "EndAndBeginBlockForConsumer", + "newVotingPower": { + "#bigint": "0" + }, + "timeAdvancement": { + "#bigint": "2419200" + }, + "validator": "" + }, + { + "consumerChain": "", + "consumersToStart": { + "#set": [] + }, + "consumersToStop": { + "#set": [] + }, + "kind": "VotingPowerChange", + "newVotingPower": { + "#bigint": "100" + }, + "timeAdvancement": { + "#bigint": "0" + }, + "validator": "node1" + }, + { + "consumerChain": "", + "consumersToStart": { + "#set": [] + }, + "consumersToStop": { + "#set": [] + }, + "kind": "VotingPowerChange", + "newVotingPower": { + "#bigint": "50" + }, + "timeAdvancement": { + "#bigint": "0" + }, + "validator": "node1" + } + ] + }, + { + "#meta": { + "index": 5 + }, + "currentState": { + "consumerStates": { + "#map": [ + [ + "consumer1", + { + "chainState": { + "currentValidatorSet": { + "#map": [ + [ + "node1", + { + "#bigint": "100" + } + ], + [ + "node10", + { + "#bigint": "100" + } + ], + [ + "node2", + { + "#bigint": "100" + } + ], + [ + "node3", + { + "#bigint": "100" + } + ], + [ + "node4", + { + "#bigint": "100" + } + ], + [ + "node5", + { + "#bigint": "100" + } + ], + [ + "node6", + { + "#bigint": "100" + } + ], + [ + "node7", + { + "#bigint": "100" + } + ], + [ + "node8", + { + "#bigint": "100" + } + ], + [ + "node9", + { + "#bigint": "100" + } + ] + ] + }, + "lastTimestamp": { + "#bigint": "0" + }, + "votingPowerHistory": [] + }, + "maturationTimes": { + "#map": [] + }, + "outstandingPacketsToProvider": [], + "receivedVscPackets": [] + } + ], + [ + "consumer2", + { + "chainState": { + "currentValidatorSet": { + "#map": [] + }, + "lastTimestamp": { + "#bigint": "0" + }, + "votingPowerHistory": [] + }, + "maturationTimes": { + "#map": [] + }, + "outstandingPacketsToProvider": [], + "receivedVscPackets": [] + } + ], + [ + "consumer3", + { + "chainState": { + "currentValidatorSet": { + "#map": [ + [ + "node1", + { + "#bigint": "100" + } + ], + [ + "node10", + { + "#bigint": "100" + } + ], + [ + "node2", + { + "#bigint": "100" + } + ], + [ + "node3", + { + "#bigint": "100" + } + ], + [ + "node4", + { + "#bigint": "100" + } + ], + [ + "node5", + { + "#bigint": "100" + } + ], + [ + "node6", + { + "#bigint": "100" + } + ], + [ + "node7", + { + "#bigint": "100" + } + ], + [ + "node8", + { + "#bigint": "100" + } + ], + [ + "node9", + { + "#bigint": "100" + } + ] + ] + }, + "lastTimestamp": { + "#bigint": "2419200" + }, + "votingPowerHistory": [ + { + "#map": [ + [ + "node1", + { + "#bigint": "100" + } + ], + [ + "node10", + { + "#bigint": "100" + } + ], + [ + "node2", + { + "#bigint": "100" + } + ], + [ + "node3", + { + "#bigint": "100" + } + ], + [ + "node4", + { + "#bigint": "100" + } + ], + [ + "node5", + { + "#bigint": "100" + } + ], + [ + "node6", + { + "#bigint": "100" + } + ], + [ + "node7", + { + "#bigint": "100" + } + ], + [ + "node8", + { + "#bigint": "100" + } + ], + [ + "node9", + { + "#bigint": "100" + } + ] + ] + } + ] + }, + "maturationTimes": { + "#map": [] + }, + "outstandingPacketsToProvider": [], + "receivedVscPackets": [] + } + ] + ] + }, + "providerState": { + "chainState": { + "currentValidatorSet": { + "#map": [ + [ + "node1", + { + "#bigint": "50" + } + ], + [ + "node10", + { + "#bigint": "100" + } + ], + [ + "node2", + { + "#bigint": "100" + } + ], + [ + "node3", + { + "#bigint": "100" + } + ], + [ + "node4", + { + "#bigint": "50" + } + ], + [ + "node5", + { + "#bigint": "100" + } + ], + [ + "node6", + { + "#bigint": "100" + } + ], + [ + "node7", + { + "#bigint": "100" + } + ], + [ + "node8", + { + "#bigint": "100" + } + ], + [ + "node9", + { + "#bigint": "100" + } + ] + ] + }, + "lastTimestamp": { + "#bigint": "2419200" + }, + "votingPowerHistory": [ + { + "#map": [ + [ + "node1", + { + "#bigint": "100" + } + ], + [ + "node10", + { + "#bigint": "100" + } + ], + [ + "node2", + { + "#bigint": "100" + } + ], + [ + "node3", + { + "#bigint": "100" + } + ], + [ + "node4", + { + "#bigint": "100" + } + ], + [ + "node5", + { + "#bigint": "100" + } + ], + [ + "node6", + { + "#bigint": "100" + } + ], + [ + "node7", + { + "#bigint": "100" + } + ], + [ + "node8", + { + "#bigint": "100" + } + ], + [ + "node9", + { + "#bigint": "100" + } + ] + ] + }, + { + "#map": [ + [ + "node1", + { + "#bigint": "100" + } + ], + [ + "node10", + { + "#bigint": "100" + } + ], + [ + "node2", + { + "#bigint": "100" + } + ], + [ + "node3", + { + "#bigint": "100" + } + ], + [ + "node4", + { + "#bigint": "100" + } + ], + [ + "node5", + { + "#bigint": "100" + } + ], + [ + "node6", + { + "#bigint": "100" + } + ], + [ + "node7", + { + "#bigint": "100" + } + ], + [ + "node8", + { + "#bigint": "100" + } + ], + [ + "node9", + { + "#bigint": "100" + } + ] + ] + } + ] + }, + "consumerStatus": { + "#map": [ + [ + "consumer1", + "running" + ], + [ + "consumer2", + "not consumer" + ], + [ + "consumer3", + "running" + ] + ] + }, + "outstandingPacketsToConsumer": { + "#map": [ + [ + "consumer1", + [] + ], + [ + "consumer2", + [] + ], + [ + "consumer3", + [] + ] + ] + }, + "providerValidatorSetChangedInThisBlock": true, + "receivedMaturations": { + "#set": [] + }, + "runningVscId": { + "#bigint": "0" + }, + "sentVscPacketsToConsumer": { + "#map": [ + [ + "consumer1", + [] + ], + [ + "consumer2", + [] + ], + [ + "consumer3", + [] + ] + ] + } + } + }, + "trace": [ + { + "consumerChain": "", + "consumersToStart": { + "#set": [] + }, + "consumersToStop": { + "#set": [] + }, + "kind": "init", + "newVotingPower": { + "#bigint": "0" + }, + "timeAdvancement": { + "#bigint": "0" + }, + "validator": "" + }, + { + "consumerChain": "", + "consumersToStart": { + "#set": [ + "consumer1", + "consumer3" + ] + }, + "consumersToStop": { + "#set": [] + }, + "kind": "EndAndBeginBlockForProvider", + "newVotingPower": { + "#bigint": "0" + }, + "timeAdvancement": { + "#bigint": "2419200" + }, + "validator": "" + }, + { + "consumerChain": "consumer3", + "consumersToStart": { + "#set": [] + }, + "consumersToStop": { + "#set": [] + }, + "kind": "EndAndBeginBlockForConsumer", + "newVotingPower": { + "#bigint": "0" + }, + "timeAdvancement": { + "#bigint": "2419200" + }, + "validator": "" + }, + { + "consumerChain": "", + "consumersToStart": { + "#set": [] + }, + "consumersToStop": { + "#set": [] + }, + "kind": "VotingPowerChange", + "newVotingPower": { + "#bigint": "100" + }, + "timeAdvancement": { + "#bigint": "0" + }, + "validator": "node1" + }, + { + "consumerChain": "", + "consumersToStart": { + "#set": [] + }, + "consumersToStop": { + "#set": [] + }, + "kind": "VotingPowerChange", + "newVotingPower": { + "#bigint": "50" + }, + "timeAdvancement": { + "#bigint": "0" + }, + "validator": "node1" + }, + { + "consumerChain": "", + "consumersToStart": { + "#set": [] + }, + "consumersToStop": { + "#set": [] + }, + "kind": "VotingPowerChange", + "newVotingPower": { + "#bigint": "50" + }, + "timeAdvancement": { + "#bigint": "0" + }, + "validator": "node4" + } + ] + }, + { + "#meta": { + "index": 6 + }, + "currentState": { + "consumerStates": { + "#map": [ + [ + "consumer1", + { + "chainState": { + "currentValidatorSet": { + "#map": [ + [ + "node1", + { + "#bigint": "100" + } + ], + [ + "node10", + { + "#bigint": "100" + } + ], + [ + "node2", + { + "#bigint": "100" + } + ], + [ + "node3", + { + "#bigint": "100" + } + ], + [ + "node4", + { + "#bigint": "100" + } + ], + [ + "node5", + { + "#bigint": "100" + } + ], + [ + "node6", + { + "#bigint": "100" + } + ], + [ + "node7", + { + "#bigint": "100" + } + ], + [ + "node8", + { + "#bigint": "100" + } + ], + [ + "node9", + { + "#bigint": "100" + } + ] + ] + }, + "lastTimestamp": { + "#bigint": "0" + }, + "votingPowerHistory": [] + }, + "maturationTimes": { + "#map": [] + }, + "outstandingPacketsToProvider": [], + "receivedVscPackets": [] + } + ], + [ + "consumer2", + { + "chainState": { + "currentValidatorSet": { + "#map": [] + }, + "lastTimestamp": { + "#bigint": "0" + }, + "votingPowerHistory": [] + }, + "maturationTimes": { + "#map": [] + }, + "outstandingPacketsToProvider": [], + "receivedVscPackets": [] + } + ], + [ + "consumer3", + { + "chainState": { + "currentValidatorSet": { + "#map": [ + [ + "node1", + { + "#bigint": "100" + } + ], + [ + "node10", + { + "#bigint": "100" + } + ], + [ + "node2", + { + "#bigint": "100" + } + ], + [ + "node3", + { + "#bigint": "100" + } + ], + [ + "node4", + { + "#bigint": "100" + } + ], + [ + "node5", + { + "#bigint": "100" + } + ], + [ + "node6", + { + "#bigint": "100" + } + ], + [ + "node7", + { + "#bigint": "100" + } + ], + [ + "node8", + { + "#bigint": "100" + } + ], + [ + "node9", + { + "#bigint": "100" + } + ] + ] + }, + "lastTimestamp": { + "#bigint": "2419200" + }, + "votingPowerHistory": [ + { + "#map": [ + [ + "node1", + { + "#bigint": "100" + } + ], + [ + "node10", + { + "#bigint": "100" + } + ], + [ + "node2", + { + "#bigint": "100" + } + ], + [ + "node3", + { + "#bigint": "100" + } + ], + [ + "node4", + { + "#bigint": "100" + } + ], + [ + "node5", + { + "#bigint": "100" + } + ], + [ + "node6", + { + "#bigint": "100" + } + ], + [ + "node7", + { + "#bigint": "100" + } + ], + [ + "node8", + { + "#bigint": "100" + } + ], + [ + "node9", + { + "#bigint": "100" + } + ] + ] + } + ] + }, + "maturationTimes": { + "#map": [] + }, + "outstandingPacketsToProvider": [], + "receivedVscPackets": [] + } + ] + ] + }, + "providerState": { + "chainState": { + "currentValidatorSet": { + "#map": [ + [ + "node1", + { + "#bigint": "50" + } + ], + [ + "node10", + { + "#bigint": "100" + } + ], + [ + "node2", + { + "#bigint": "100" + } + ], + [ + "node3", + { + "#bigint": "100" + } + ], + [ + "node4", + { + "#bigint": "50" + } + ], + [ + "node5", + { + "#bigint": "100" + } + ], + [ + "node6", + { + "#bigint": "100" + } + ], + [ + "node7", + { + "#bigint": "100" + } + ], + [ + "node8", + { + "#bigint": "100" + } + ], + [ + "node9", + { + "#bigint": "100" + } + ] + ] + }, + "lastTimestamp": { + "#bigint": "4838400" + }, + "votingPowerHistory": [ + { + "#map": [ + [ + "node1", + { + "#bigint": "50" + } + ], + [ + "node10", + { + "#bigint": "100" + } + ], + [ + "node2", + { + "#bigint": "100" + } + ], + [ + "node3", + { + "#bigint": "100" + } + ], + [ + "node4", + { + "#bigint": "50" + } + ], + [ + "node5", + { + "#bigint": "100" + } + ], + [ + "node6", + { + "#bigint": "100" + } + ], + [ + "node7", + { + "#bigint": "100" + } + ], + [ + "node8", + { + "#bigint": "100" + } + ], + [ + "node9", + { + "#bigint": "100" + } + ] + ] + }, + { + "#map": [ + [ + "node1", + { + "#bigint": "100" + } + ], + [ + "node10", + { + "#bigint": "100" + } + ], + [ + "node2", + { + "#bigint": "100" + } + ], + [ + "node3", + { + "#bigint": "100" + } + ], + [ + "node4", + { + "#bigint": "100" + } + ], + [ + "node5", + { + "#bigint": "100" + } + ], + [ + "node6", + { + "#bigint": "100" + } + ], + [ + "node7", + { + "#bigint": "100" + } + ], + [ + "node8", + { + "#bigint": "100" + } + ], + [ + "node9", + { + "#bigint": "100" + } + ] + ] + }, + { + "#map": [ + [ + "node1", + { + "#bigint": "100" + } + ], + [ + "node10", + { + "#bigint": "100" + } + ], + [ + "node2", + { + "#bigint": "100" + } + ], + [ + "node3", + { + "#bigint": "100" + } + ], + [ + "node4", + { + "#bigint": "100" + } + ], + [ + "node5", + { + "#bigint": "100" + } + ], + [ + "node6", + { + "#bigint": "100" + } + ], + [ + "node7", + { + "#bigint": "100" + } + ], + [ + "node8", + { + "#bigint": "100" + } + ], + [ + "node9", + { + "#bigint": "100" + } + ] + ] + } + ] + }, + "consumerStatus": { + "#map": [ + [ + "consumer1", + "stopped" + ], + [ + "consumer2", + "not consumer" + ], + [ + "consumer3", + "stopped" + ] + ] + }, + "outstandingPacketsToConsumer": { + "#map": [ + [ + "consumer1", + [] + ], + [ + "consumer2", + [] + ], + [ + "consumer3", + [] + ] + ] + }, + "providerValidatorSetChangedInThisBlock": true, + "receivedMaturations": { + "#set": [] + }, + "runningVscId": { + "#bigint": "0" + }, + "sentVscPacketsToConsumer": { + "#map": [ + [ + "consumer1", + [] + ], + [ + "consumer2", + [] + ], + [ + "consumer3", + [] + ] + ] + } + } + }, + "trace": [ + { + "consumerChain": "", + "consumersToStart": { + "#set": [] + }, + "consumersToStop": { + "#set": [] + }, + "kind": "init", + "newVotingPower": { + "#bigint": "0" + }, + "timeAdvancement": { + "#bigint": "0" + }, + "validator": "" + }, + { + "consumerChain": "", + "consumersToStart": { + "#set": [ + "consumer1", + "consumer3" + ] + }, + "consumersToStop": { + "#set": [] + }, + "kind": "EndAndBeginBlockForProvider", + "newVotingPower": { + "#bigint": "0" + }, + "timeAdvancement": { + "#bigint": "2419200" + }, + "validator": "" + }, + { + "consumerChain": "consumer3", + "consumersToStart": { + "#set": [] + }, + "consumersToStop": { + "#set": [] + }, + "kind": "EndAndBeginBlockForConsumer", + "newVotingPower": { + "#bigint": "0" + }, + "timeAdvancement": { + "#bigint": "2419200" + }, + "validator": "" + }, + { + "consumerChain": "", + "consumersToStart": { + "#set": [] + }, + "consumersToStop": { + "#set": [] + }, + "kind": "VotingPowerChange", + "newVotingPower": { + "#bigint": "100" + }, + "timeAdvancement": { + "#bigint": "0" + }, + "validator": "node1" + }, + { + "consumerChain": "", + "consumersToStart": { + "#set": [] + }, + "consumersToStop": { + "#set": [] + }, + "kind": "VotingPowerChange", + "newVotingPower": { + "#bigint": "50" + }, + "timeAdvancement": { + "#bigint": "0" + }, + "validator": "node1" + }, + { + "consumerChain": "", + "consumersToStart": { + "#set": [] + }, + "consumersToStop": { + "#set": [] + }, + "kind": "VotingPowerChange", + "newVotingPower": { + "#bigint": "50" + }, + "timeAdvancement": { + "#bigint": "0" + }, + "validator": "node4" + }, + { + "consumerChain": "", + "consumersToStart": { + "#set": [] + }, + "consumersToStop": { + "#set": [ + "consumer1", + "consumer3" + ] + }, + "kind": "EndAndBeginBlockForProvider", + "newVotingPower": { + "#bigint": "0" + }, + "timeAdvancement": { + "#bigint": "2419200" + }, + "validator": "" + } + ] + }, + { + "#meta": { + "index": 7 + }, + "currentState": { + "consumerStates": { + "#map": [ + [ + "consumer1", + { + "chainState": { + "currentValidatorSet": { + "#map": [ + [ + "node1", + { + "#bigint": "100" + } + ], + [ + "node10", + { + "#bigint": "100" + } + ], + [ + "node2", + { + "#bigint": "100" + } + ], + [ + "node3", + { + "#bigint": "100" + } + ], + [ + "node4", + { + "#bigint": "100" + } + ], + [ + "node5", + { + "#bigint": "100" + } + ], + [ + "node6", + { + "#bigint": "100" + } + ], + [ + "node7", + { + "#bigint": "100" + } + ], + [ + "node8", + { + "#bigint": "100" + } + ], + [ + "node9", + { + "#bigint": "100" + } + ] + ] + }, + "lastTimestamp": { + "#bigint": "0" + }, + "votingPowerHistory": [] + }, + "maturationTimes": { + "#map": [] + }, + "outstandingPacketsToProvider": [], + "receivedVscPackets": [] + } + ], + [ + "consumer2", + { + "chainState": { + "currentValidatorSet": { + "#map": [] + }, + "lastTimestamp": { + "#bigint": "0" + }, + "votingPowerHistory": [] + }, + "maturationTimes": { + "#map": [] + }, + "outstandingPacketsToProvider": [], + "receivedVscPackets": [] + } + ], + [ + "consumer3", + { + "chainState": { + "currentValidatorSet": { + "#map": [ + [ + "node1", + { + "#bigint": "100" + } + ], + [ + "node10", + { + "#bigint": "100" + } + ], + [ + "node2", + { + "#bigint": "100" + } + ], + [ + "node3", + { + "#bigint": "100" + } + ], + [ + "node4", + { + "#bigint": "100" + } + ], + [ + "node5", + { + "#bigint": "100" + } + ], + [ + "node6", + { + "#bigint": "100" + } + ], + [ + "node7", + { + "#bigint": "100" + } + ], + [ + "node8", + { + "#bigint": "100" + } + ], + [ + "node9", + { + "#bigint": "100" + } + ] + ] + }, + "lastTimestamp": { + "#bigint": "2419200" + }, + "votingPowerHistory": [ + { + "#map": [ + [ + "node1", + { + "#bigint": "100" + } + ], + [ + "node10", + { + "#bigint": "100" + } + ], + [ + "node2", + { + "#bigint": "100" + } + ], + [ + "node3", + { + "#bigint": "100" + } + ], + [ + "node4", + { + "#bigint": "100" + } + ], + [ + "node5", + { + "#bigint": "100" + } + ], + [ + "node6", + { + "#bigint": "100" + } + ], + [ + "node7", + { + "#bigint": "100" + } + ], + [ + "node8", + { + "#bigint": "100" + } + ], + [ + "node9", + { + "#bigint": "100" + } + ] + ] + } + ] + }, + "maturationTimes": { + "#map": [] + }, + "outstandingPacketsToProvider": [], + "receivedVscPackets": [] + } + ] + ] + }, + "providerState": { + "chainState": { + "currentValidatorSet": { + "#map": [ + [ + "node1", + { + "#bigint": "50" + } + ], + [ + "node10", + { + "#bigint": "100" + } + ], + [ + "node2", + { + "#bigint": "100" + } + ], + [ + "node3", + { + "#bigint": "100" + } + ], + [ + "node4", + { + "#bigint": "50" + } + ], + [ + "node5", + { + "#bigint": "100" + } + ], + [ + "node6", + { + "#bigint": "100" + } + ], + [ + "node7", + { + "#bigint": "100" + } + ], + [ + "node8", + { + "#bigint": "100" + } + ], + [ + "node9", + { + "#bigint": "100" + } + ] + ] + }, + "lastTimestamp": { + "#bigint": "4838400" + }, + "votingPowerHistory": [ + { + "#map": [ + [ + "node1", + { + "#bigint": "50" + } + ], + [ + "node10", + { + "#bigint": "100" + } + ], + [ + "node2", + { + "#bigint": "100" + } + ], + [ + "node3", + { + "#bigint": "100" + } + ], + [ + "node4", + { + "#bigint": "50" + } + ], + [ + "node5", + { + "#bigint": "100" + } + ], + [ + "node6", + { + "#bigint": "100" + } + ], + [ + "node7", + { + "#bigint": "100" + } + ], + [ + "node8", + { + "#bigint": "100" + } + ], + [ + "node9", + { + "#bigint": "100" + } + ] + ] + }, + { + "#map": [ + [ + "node1", + { + "#bigint": "100" + } + ], + [ + "node10", + { + "#bigint": "100" + } + ], + [ + "node2", + { + "#bigint": "100" + } + ], + [ + "node3", + { + "#bigint": "100" + } + ], + [ + "node4", + { + "#bigint": "100" + } + ], + [ + "node5", + { + "#bigint": "100" + } + ], + [ + "node6", + { + "#bigint": "100" + } + ], + [ + "node7", + { + "#bigint": "100" + } + ], + [ + "node8", + { + "#bigint": "100" + } + ], + [ + "node9", + { + "#bigint": "100" + } + ] + ] + }, + { + "#map": [ + [ + "node1", + { + "#bigint": "100" + } + ], + [ + "node10", + { + "#bigint": "100" + } + ], + [ + "node2", + { + "#bigint": "100" + } + ], + [ + "node3", + { + "#bigint": "100" + } + ], + [ + "node4", + { + "#bigint": "100" + } + ], + [ + "node5", + { + "#bigint": "100" + } + ], + [ + "node6", + { + "#bigint": "100" + } + ], + [ + "node7", + { + "#bigint": "100" + } + ], + [ + "node8", + { + "#bigint": "100" + } + ], + [ + "node9", + { + "#bigint": "100" + } + ] + ] + } + ] + }, + "consumerStatus": { + "#map": [ + [ + "consumer1", + "stopped" + ], + [ + "consumer2", + "not consumer" + ], + [ + "consumer3", + "stopped" + ] + ] + }, + "outstandingPacketsToConsumer": { + "#map": [ + [ + "consumer1", + [] + ], + [ + "consumer2", + [] + ], + [ + "consumer3", + [] + ] + ] + }, + "providerValidatorSetChangedInThisBlock": true, + "receivedMaturations": { + "#set": [] + }, + "runningVscId": { + "#bigint": "0" + }, + "sentVscPacketsToConsumer": { + "#map": [ + [ + "consumer1", + [] + ], + [ + "consumer2", + [] + ], + [ + "consumer3", + [] + ] + ] + } + } + }, + "trace": [ + { + "consumerChain": "", + "consumersToStart": { + "#set": [] + }, + "consumersToStop": { + "#set": [] + }, + "kind": "init", + "newVotingPower": { + "#bigint": "0" + }, + "timeAdvancement": { + "#bigint": "0" + }, + "validator": "" + }, + { + "consumerChain": "", + "consumersToStart": { + "#set": [ + "consumer1", + "consumer3" + ] + }, + "consumersToStop": { + "#set": [] + }, + "kind": "EndAndBeginBlockForProvider", + "newVotingPower": { + "#bigint": "0" + }, + "timeAdvancement": { + "#bigint": "2419200" + }, + "validator": "" + }, + { + "consumerChain": "consumer3", + "consumersToStart": { + "#set": [] + }, + "consumersToStop": { + "#set": [] + }, + "kind": "EndAndBeginBlockForConsumer", + "newVotingPower": { + "#bigint": "0" + }, + "timeAdvancement": { + "#bigint": "2419200" + }, + "validator": "" + }, + { + "consumerChain": "", + "consumersToStart": { + "#set": [] + }, + "consumersToStop": { + "#set": [] + }, + "kind": "VotingPowerChange", + "newVotingPower": { + "#bigint": "100" + }, + "timeAdvancement": { + "#bigint": "0" + }, + "validator": "node1" + }, + { + "consumerChain": "", + "consumersToStart": { + "#set": [] + }, + "consumersToStop": { + "#set": [] + }, + "kind": "VotingPowerChange", + "newVotingPower": { + "#bigint": "50" + }, + "timeAdvancement": { + "#bigint": "0" + }, + "validator": "node1" + }, + { + "consumerChain": "", + "consumersToStart": { + "#set": [] + }, + "consumersToStop": { + "#set": [] + }, + "kind": "VotingPowerChange", + "newVotingPower": { + "#bigint": "50" + }, + "timeAdvancement": { + "#bigint": "0" + }, + "validator": "node4" + }, + { + "consumerChain": "", + "consumersToStart": { + "#set": [] + }, + "consumersToStop": { + "#set": [ + "consumer1", + "consumer3" + ] + }, + "kind": "EndAndBeginBlockForProvider", + "newVotingPower": { + "#bigint": "0" + }, + "timeAdvancement": { + "#bigint": "2419200" + }, + "validator": "" + }, + { + "consumerChain": "", + "consumersToStart": { + "#set": [] + }, + "consumersToStop": { + "#set": [] + }, + "kind": "VotingPowerChange", + "newVotingPower": { + "#bigint": "100" + }, + "timeAdvancement": { + "#bigint": "0" + }, + "validator": "node10" + } + ] + }, + { + "#meta": { + "index": 8 + }, + "currentState": { + "consumerStates": { + "#map": [ + [ + "consumer1", + { + "chainState": { + "currentValidatorSet": { + "#map": [ + [ + "node1", + { + "#bigint": "100" + } + ], + [ + "node10", + { + "#bigint": "100" + } + ], + [ + "node2", + { + "#bigint": "100" + } + ], + [ + "node3", + { + "#bigint": "100" + } + ], + [ + "node4", + { + "#bigint": "100" + } + ], + [ + "node5", + { + "#bigint": "100" + } + ], + [ + "node6", + { + "#bigint": "100" + } + ], + [ + "node7", + { + "#bigint": "100" + } + ], + [ + "node8", + { + "#bigint": "100" + } + ], + [ + "node9", + { + "#bigint": "100" + } + ] + ] + }, + "lastTimestamp": { + "#bigint": "0" + }, + "votingPowerHistory": [] + }, + "maturationTimes": { + "#map": [] + }, + "outstandingPacketsToProvider": [], + "receivedVscPackets": [] + } + ], + [ + "consumer2", + { + "chainState": { + "currentValidatorSet": { + "#map": [] + }, + "lastTimestamp": { + "#bigint": "0" + }, + "votingPowerHistory": [] + }, + "maturationTimes": { + "#map": [] + }, + "outstandingPacketsToProvider": [], + "receivedVscPackets": [] + } + ], + [ + "consumer3", + { + "chainState": { + "currentValidatorSet": { + "#map": [ + [ + "node1", + { + "#bigint": "100" + } + ], + [ + "node10", + { + "#bigint": "100" + } + ], + [ + "node2", + { + "#bigint": "100" + } + ], + [ + "node3", + { + "#bigint": "100" + } + ], + [ + "node4", + { + "#bigint": "100" + } + ], + [ + "node5", + { + "#bigint": "100" + } + ], + [ + "node6", + { + "#bigint": "100" + } + ], + [ + "node7", + { + "#bigint": "100" + } + ], + [ + "node8", + { + "#bigint": "100" + } + ], + [ + "node9", + { + "#bigint": "100" + } + ] + ] + }, + "lastTimestamp": { + "#bigint": "2419200" + }, + "votingPowerHistory": [ + { + "#map": [ + [ + "node1", + { + "#bigint": "100" + } + ], + [ + "node10", + { + "#bigint": "100" + } + ], + [ + "node2", + { + "#bigint": "100" + } + ], + [ + "node3", + { + "#bigint": "100" + } + ], + [ + "node4", + { + "#bigint": "100" + } + ], + [ + "node5", + { + "#bigint": "100" + } + ], + [ + "node6", + { + "#bigint": "100" + } + ], + [ + "node7", + { + "#bigint": "100" + } + ], + [ + "node8", + { + "#bigint": "100" + } + ], + [ + "node9", + { + "#bigint": "100" + } + ] + ] + } + ] + }, + "maturationTimes": { + "#map": [] + }, + "outstandingPacketsToProvider": [], + "receivedVscPackets": [] + } + ] + ] + }, + "providerState": { + "chainState": { + "currentValidatorSet": { + "#map": [ + [ + "node1", + { + "#bigint": "50" + } + ], + [ + "node10", + { + "#bigint": "100" + } + ], + [ + "node2", + { + "#bigint": "100" + } + ], + [ + "node3", + { + "#bigint": "100" + } + ], + [ + "node4", + { + "#bigint": "50" + } + ], + [ + "node5", + { + "#bigint": "100" + } + ], + [ + "node6", + { + "#bigint": "100" + } + ], + [ + "node7", + { + "#bigint": "50" + } + ], + [ + "node8", + { + "#bigint": "100" + } + ], + [ + "node9", + { + "#bigint": "100" + } + ] + ] + }, + "lastTimestamp": { + "#bigint": "4838400" + }, + "votingPowerHistory": [ + { + "#map": [ + [ + "node1", + { + "#bigint": "50" + } + ], + [ + "node10", + { + "#bigint": "100" + } + ], + [ + "node2", + { + "#bigint": "100" + } + ], + [ + "node3", + { + "#bigint": "100" + } + ], + [ + "node4", + { + "#bigint": "50" + } + ], + [ + "node5", + { + "#bigint": "100" + } + ], + [ + "node6", + { + "#bigint": "100" + } + ], + [ + "node7", + { + "#bigint": "100" + } + ], + [ + "node8", + { + "#bigint": "100" + } + ], + [ + "node9", + { + "#bigint": "100" + } + ] + ] + }, + { + "#map": [ + [ + "node1", + { + "#bigint": "100" + } + ], + [ + "node10", + { + "#bigint": "100" + } + ], + [ + "node2", + { + "#bigint": "100" + } + ], + [ + "node3", + { + "#bigint": "100" + } + ], + [ + "node4", + { + "#bigint": "100" + } + ], + [ + "node5", + { + "#bigint": "100" + } + ], + [ + "node6", + { + "#bigint": "100" + } + ], + [ + "node7", + { + "#bigint": "100" + } + ], + [ + "node8", + { + "#bigint": "100" + } + ], + [ + "node9", + { + "#bigint": "100" + } + ] + ] + }, + { + "#map": [ + [ + "node1", + { + "#bigint": "100" + } + ], + [ + "node10", + { + "#bigint": "100" + } + ], + [ + "node2", + { + "#bigint": "100" + } + ], + [ + "node3", + { + "#bigint": "100" + } + ], + [ + "node4", + { + "#bigint": "100" + } + ], + [ + "node5", + { + "#bigint": "100" + } + ], + [ + "node6", + { + "#bigint": "100" + } + ], + [ + "node7", + { + "#bigint": "100" + } + ], + [ + "node8", + { + "#bigint": "100" + } + ], + [ + "node9", + { + "#bigint": "100" + } + ] + ] + } + ] + }, + "consumerStatus": { + "#map": [ + [ + "consumer1", + "stopped" + ], + [ + "consumer2", + "not consumer" + ], + [ + "consumer3", + "stopped" + ] + ] + }, + "outstandingPacketsToConsumer": { + "#map": [ + [ + "consumer1", + [] + ], + [ + "consumer2", + [] + ], + [ + "consumer3", + [] + ] + ] + }, + "providerValidatorSetChangedInThisBlock": true, + "receivedMaturations": { + "#set": [] + }, + "runningVscId": { + "#bigint": "0" + }, + "sentVscPacketsToConsumer": { + "#map": [ + [ + "consumer1", + [] + ], + [ + "consumer2", + [] + ], + [ + "consumer3", + [] + ] + ] + } + } + }, + "trace": [ + { + "consumerChain": "", + "consumersToStart": { + "#set": [] + }, + "consumersToStop": { + "#set": [] + }, + "kind": "init", + "newVotingPower": { + "#bigint": "0" + }, + "timeAdvancement": { + "#bigint": "0" + }, + "validator": "" + }, + { + "consumerChain": "", + "consumersToStart": { + "#set": [ + "consumer1", + "consumer3" + ] + }, + "consumersToStop": { + "#set": [] + }, + "kind": "EndAndBeginBlockForProvider", + "newVotingPower": { + "#bigint": "0" + }, + "timeAdvancement": { + "#bigint": "2419200" + }, + "validator": "" + }, + { + "consumerChain": "consumer3", + "consumersToStart": { + "#set": [] + }, + "consumersToStop": { + "#set": [] + }, + "kind": "EndAndBeginBlockForConsumer", + "newVotingPower": { + "#bigint": "0" + }, + "timeAdvancement": { + "#bigint": "2419200" + }, + "validator": "" + }, + { + "consumerChain": "", + "consumersToStart": { + "#set": [] + }, + "consumersToStop": { + "#set": [] + }, + "kind": "VotingPowerChange", + "newVotingPower": { + "#bigint": "100" + }, + "timeAdvancement": { + "#bigint": "0" + }, + "validator": "node1" + }, + { + "consumerChain": "", + "consumersToStart": { + "#set": [] + }, + "consumersToStop": { + "#set": [] + }, + "kind": "VotingPowerChange", + "newVotingPower": { + "#bigint": "50" + }, + "timeAdvancement": { + "#bigint": "0" + }, + "validator": "node1" + }, + { + "consumerChain": "", + "consumersToStart": { + "#set": [] + }, + "consumersToStop": { + "#set": [] + }, + "kind": "VotingPowerChange", + "newVotingPower": { + "#bigint": "50" + }, + "timeAdvancement": { + "#bigint": "0" + }, + "validator": "node4" + }, + { + "consumerChain": "", + "consumersToStart": { + "#set": [] + }, + "consumersToStop": { + "#set": [ + "consumer1", + "consumer3" + ] + }, + "kind": "EndAndBeginBlockForProvider", + "newVotingPower": { + "#bigint": "0" + }, + "timeAdvancement": { + "#bigint": "2419200" + }, + "validator": "" + }, + { + "consumerChain": "", + "consumersToStart": { + "#set": [] + }, + "consumersToStop": { + "#set": [] + }, + "kind": "VotingPowerChange", + "newVotingPower": { + "#bigint": "100" + }, + "timeAdvancement": { + "#bigint": "0" + }, + "validator": "node10" + }, + { + "consumerChain": "", + "consumersToStart": { + "#set": [] + }, + "consumersToStop": { + "#set": [] + }, + "kind": "VotingPowerChange", + "newVotingPower": { + "#bigint": "50" + }, + "timeAdvancement": { + "#bigint": "0" + }, + "validator": "node7" + } + ] + }, + { + "#meta": { + "index": 9 + }, + "currentState": { + "consumerStates": { + "#map": [ + [ + "consumer1", + { + "chainState": { + "currentValidatorSet": { + "#map": [ + [ + "node1", + { + "#bigint": "100" + } + ], + [ + "node10", + { + "#bigint": "100" + } + ], + [ + "node2", + { + "#bigint": "100" + } + ], + [ + "node3", + { + "#bigint": "100" + } + ], + [ + "node4", + { + "#bigint": "100" + } + ], + [ + "node5", + { + "#bigint": "100" + } + ], + [ + "node6", + { + "#bigint": "100" + } + ], + [ + "node7", + { + "#bigint": "100" + } + ], + [ + "node8", + { + "#bigint": "100" + } + ], + [ + "node9", + { + "#bigint": "100" + } + ] + ] + }, + "lastTimestamp": { + "#bigint": "0" + }, + "votingPowerHistory": [] + }, + "maturationTimes": { + "#map": [] + }, + "outstandingPacketsToProvider": [], + "receivedVscPackets": [] + } + ], + [ + "consumer2", + { + "chainState": { + "currentValidatorSet": { + "#map": [] + }, + "lastTimestamp": { + "#bigint": "0" + }, + "votingPowerHistory": [] + }, + "maturationTimes": { + "#map": [] + }, + "outstandingPacketsToProvider": [], + "receivedVscPackets": [] + } + ], + [ + "consumer3", + { + "chainState": { + "currentValidatorSet": { + "#map": [ + [ + "node1", + { + "#bigint": "100" + } + ], + [ + "node10", + { + "#bigint": "100" + } + ], + [ + "node2", + { + "#bigint": "100" + } + ], + [ + "node3", + { + "#bigint": "100" + } + ], + [ + "node4", + { + "#bigint": "100" + } + ], + [ + "node5", + { + "#bigint": "100" + } + ], + [ + "node6", + { + "#bigint": "100" + } + ], + [ + "node7", + { + "#bigint": "100" + } + ], + [ + "node8", + { + "#bigint": "100" + } + ], + [ + "node9", + { + "#bigint": "100" + } + ] + ] + }, + "lastTimestamp": { + "#bigint": "2419200" + }, + "votingPowerHistory": [ + { + "#map": [ + [ + "node1", + { + "#bigint": "100" + } + ], + [ + "node10", + { + "#bigint": "100" + } + ], + [ + "node2", + { + "#bigint": "100" + } + ], + [ + "node3", + { + "#bigint": "100" + } + ], + [ + "node4", + { + "#bigint": "100" + } + ], + [ + "node5", + { + "#bigint": "100" + } + ], + [ + "node6", + { + "#bigint": "100" + } + ], + [ + "node7", + { + "#bigint": "100" + } + ], + [ + "node8", + { + "#bigint": "100" + } + ], + [ + "node9", + { + "#bigint": "100" + } + ] + ] + } + ] + }, + "maturationTimes": { + "#map": [] + }, + "outstandingPacketsToProvider": [], + "receivedVscPackets": [] + } + ] + ] + }, + "providerState": { + "chainState": { + "currentValidatorSet": { + "#map": [ + [ + "node1", + { + "#bigint": "50" + } + ], + [ + "node10", + { + "#bigint": "50" + } + ], + [ + "node2", + { + "#bigint": "100" + } + ], + [ + "node3", + { + "#bigint": "100" + } + ], + [ + "node4", + { + "#bigint": "50" + } + ], + [ + "node5", + { + "#bigint": "100" + } + ], + [ + "node6", + { + "#bigint": "100" + } + ], + [ + "node7", + { + "#bigint": "50" + } + ], + [ + "node8", + { + "#bigint": "100" + } + ], + [ + "node9", + { + "#bigint": "100" + } + ] + ] + }, + "lastTimestamp": { + "#bigint": "4838400" + }, + "votingPowerHistory": [ + { + "#map": [ + [ + "node1", + { + "#bigint": "50" + } + ], + [ + "node10", + { + "#bigint": "100" + } + ], + [ + "node2", + { + "#bigint": "100" + } + ], + [ + "node3", + { + "#bigint": "100" + } + ], + [ + "node4", + { + "#bigint": "50" + } + ], + [ + "node5", + { + "#bigint": "100" + } + ], + [ + "node6", + { + "#bigint": "100" + } + ], + [ + "node7", + { + "#bigint": "100" + } + ], + [ + "node8", + { + "#bigint": "100" + } + ], + [ + "node9", + { + "#bigint": "100" + } + ] + ] + }, + { + "#map": [ + [ + "node1", + { + "#bigint": "100" + } + ], + [ + "node10", + { + "#bigint": "100" + } + ], + [ + "node2", + { + "#bigint": "100" + } + ], + [ + "node3", + { + "#bigint": "100" + } + ], + [ + "node4", + { + "#bigint": "100" + } + ], + [ + "node5", + { + "#bigint": "100" + } + ], + [ + "node6", + { + "#bigint": "100" + } + ], + [ + "node7", + { + "#bigint": "100" + } + ], + [ + "node8", + { + "#bigint": "100" + } + ], + [ + "node9", + { + "#bigint": "100" + } + ] + ] + }, + { + "#map": [ + [ + "node1", + { + "#bigint": "100" + } + ], + [ + "node10", + { + "#bigint": "100" + } + ], + [ + "node2", + { + "#bigint": "100" + } + ], + [ + "node3", + { + "#bigint": "100" + } + ], + [ + "node4", + { + "#bigint": "100" + } + ], + [ + "node5", + { + "#bigint": "100" + } + ], + [ + "node6", + { + "#bigint": "100" + } + ], + [ + "node7", + { + "#bigint": "100" + } + ], + [ + "node8", + { + "#bigint": "100" + } + ], + [ + "node9", + { + "#bigint": "100" + } + ] + ] + } + ] + }, + "consumerStatus": { + "#map": [ + [ + "consumer1", + "stopped" + ], + [ + "consumer2", + "not consumer" + ], + [ + "consumer3", + "stopped" + ] + ] + }, + "outstandingPacketsToConsumer": { + "#map": [ + [ + "consumer1", + [] + ], + [ + "consumer2", + [] + ], + [ + "consumer3", + [] + ] + ] + }, + "providerValidatorSetChangedInThisBlock": true, + "receivedMaturations": { + "#set": [] + }, + "runningVscId": { + "#bigint": "0" + }, + "sentVscPacketsToConsumer": { + "#map": [ + [ + "consumer1", + [] + ], + [ + "consumer2", + [] + ], + [ + "consumer3", + [] + ] + ] + } + } + }, + "trace": [ + { + "consumerChain": "", + "consumersToStart": { + "#set": [] + }, + "consumersToStop": { + "#set": [] + }, + "kind": "init", + "newVotingPower": { + "#bigint": "0" + }, + "timeAdvancement": { + "#bigint": "0" + }, + "validator": "" + }, + { + "consumerChain": "", + "consumersToStart": { + "#set": [ + "consumer1", + "consumer3" + ] + }, + "consumersToStop": { + "#set": [] + }, + "kind": "EndAndBeginBlockForProvider", + "newVotingPower": { + "#bigint": "0" + }, + "timeAdvancement": { + "#bigint": "2419200" + }, + "validator": "" + }, + { + "consumerChain": "consumer3", + "consumersToStart": { + "#set": [] + }, + "consumersToStop": { + "#set": [] + }, + "kind": "EndAndBeginBlockForConsumer", + "newVotingPower": { + "#bigint": "0" + }, + "timeAdvancement": { + "#bigint": "2419200" + }, + "validator": "" + }, + { + "consumerChain": "", + "consumersToStart": { + "#set": [] + }, + "consumersToStop": { + "#set": [] + }, + "kind": "VotingPowerChange", + "newVotingPower": { + "#bigint": "100" + }, + "timeAdvancement": { + "#bigint": "0" + }, + "validator": "node1" + }, + { + "consumerChain": "", + "consumersToStart": { + "#set": [] + }, + "consumersToStop": { + "#set": [] + }, + "kind": "VotingPowerChange", + "newVotingPower": { + "#bigint": "50" + }, + "timeAdvancement": { + "#bigint": "0" + }, + "validator": "node1" + }, + { + "consumerChain": "", + "consumersToStart": { + "#set": [] + }, + "consumersToStop": { + "#set": [] + }, + "kind": "VotingPowerChange", + "newVotingPower": { + "#bigint": "50" + }, + "timeAdvancement": { + "#bigint": "0" + }, + "validator": "node4" + }, + { + "consumerChain": "", + "consumersToStart": { + "#set": [] + }, + "consumersToStop": { + "#set": [ + "consumer1", + "consumer3" + ] + }, + "kind": "EndAndBeginBlockForProvider", + "newVotingPower": { + "#bigint": "0" + }, + "timeAdvancement": { + "#bigint": "2419200" + }, + "validator": "" + }, + { + "consumerChain": "", + "consumersToStart": { + "#set": [] + }, + "consumersToStop": { + "#set": [] + }, + "kind": "VotingPowerChange", + "newVotingPower": { + "#bigint": "100" + }, + "timeAdvancement": { + "#bigint": "0" + }, + "validator": "node10" + }, + { + "consumerChain": "", + "consumersToStart": { + "#set": [] + }, + "consumersToStop": { + "#set": [] + }, + "kind": "VotingPowerChange", + "newVotingPower": { + "#bigint": "50" + }, + "timeAdvancement": { + "#bigint": "0" + }, + "validator": "node7" + }, + { + "consumerChain": "", + "consumersToStart": { + "#set": [] + }, + "consumersToStop": { + "#set": [] + }, + "kind": "VotingPowerChange", + "newVotingPower": { + "#bigint": "50" + }, + "timeAdvancement": { + "#bigint": "0" + }, + "validator": "node10" + } + ] + }, + { + "#meta": { + "index": 10 + }, + "currentState": { + "consumerStates": { + "#map": [ + [ + "consumer1", + { + "chainState": { + "currentValidatorSet": { + "#map": [ + [ + "node1", + { + "#bigint": "100" + } + ], + [ + "node10", + { + "#bigint": "100" + } + ], + [ + "node2", + { + "#bigint": "100" + } + ], + [ + "node3", + { + "#bigint": "100" + } + ], + [ + "node4", + { + "#bigint": "100" + } + ], + [ + "node5", + { + "#bigint": "100" + } + ], + [ + "node6", + { + "#bigint": "100" + } + ], + [ + "node7", + { + "#bigint": "100" + } + ], + [ + "node8", + { + "#bigint": "100" + } + ], + [ + "node9", + { + "#bigint": "100" + } + ] + ] + }, + "lastTimestamp": { + "#bigint": "0" + }, + "votingPowerHistory": [] + }, + "maturationTimes": { + "#map": [] + }, + "outstandingPacketsToProvider": [], + "receivedVscPackets": [] + } + ], + [ + "consumer2", + { + "chainState": { + "currentValidatorSet": { + "#map": [ + [ + "node1", + { + "#bigint": "50" + } + ], + [ + "node10", + { + "#bigint": "50" + } + ], + [ + "node2", + { + "#bigint": "100" + } + ], + [ + "node3", + { + "#bigint": "100" + } + ], + [ + "node4", + { + "#bigint": "50" + } + ], + [ + "node5", + { + "#bigint": "100" + } + ], + [ + "node6", + { + "#bigint": "100" + } + ], + [ + "node7", + { + "#bigint": "50" + } + ], + [ + "node8", + { + "#bigint": "100" + } + ], + [ + "node9", + { + "#bigint": "100" + } + ] + ] + }, + "lastTimestamp": { + "#bigint": "0" + }, + "votingPowerHistory": [] + }, + "maturationTimes": { + "#map": [] + }, + "outstandingPacketsToProvider": [], + "receivedVscPackets": [] + } + ], + [ + "consumer3", + { + "chainState": { + "currentValidatorSet": { + "#map": [ + [ + "node1", + { + "#bigint": "100" + } + ], + [ + "node10", + { + "#bigint": "100" + } + ], + [ + "node2", + { + "#bigint": "100" + } + ], + [ + "node3", + { + "#bigint": "100" + } + ], + [ + "node4", + { + "#bigint": "100" + } + ], + [ + "node5", + { + "#bigint": "100" + } + ], + [ + "node6", + { + "#bigint": "100" + } + ], + [ + "node7", + { + "#bigint": "100" + } + ], + [ + "node8", + { + "#bigint": "100" + } + ], + [ + "node9", + { + "#bigint": "100" + } + ] + ] + }, + "lastTimestamp": { + "#bigint": "2419200" + }, + "votingPowerHistory": [ + { + "#map": [ + [ + "node1", + { + "#bigint": "100" + } + ], + [ + "node10", + { + "#bigint": "100" + } + ], + [ + "node2", + { + "#bigint": "100" + } + ], + [ + "node3", + { + "#bigint": "100" + } + ], + [ + "node4", + { + "#bigint": "100" + } + ], + [ + "node5", + { + "#bigint": "100" + } + ], + [ + "node6", + { + "#bigint": "100" + } + ], + [ + "node7", + { + "#bigint": "100" + } + ], + [ + "node8", + { + "#bigint": "100" + } + ], + [ + "node9", + { + "#bigint": "100" + } + ] + ] + } + ] + }, + "maturationTimes": { + "#map": [] + }, + "outstandingPacketsToProvider": [], + "receivedVscPackets": [] + } + ] + ] + }, + "providerState": { + "chainState": { + "currentValidatorSet": { + "#map": [ + [ + "node1", + { + "#bigint": "50" + } + ], + [ + "node10", + { + "#bigint": "50" + } + ], + [ + "node2", + { + "#bigint": "100" + } + ], + [ + "node3", + { + "#bigint": "100" + } + ], + [ + "node4", + { + "#bigint": "50" + } + ], + [ + "node5", + { + "#bigint": "100" + } + ], + [ + "node6", + { + "#bigint": "100" + } + ], + [ + "node7", + { + "#bigint": "50" + } + ], + [ + "node8", + { + "#bigint": "100" + } + ], + [ + "node9", + { + "#bigint": "100" + } + ] + ] + }, + "lastTimestamp": { + "#bigint": "4924800" + }, + "votingPowerHistory": [ + { + "#map": [ + [ + "node1", + { + "#bigint": "50" + } + ], + [ + "node10", + { + "#bigint": "50" + } + ], + [ + "node2", + { + "#bigint": "100" + } + ], + [ + "node3", + { + "#bigint": "100" + } + ], + [ + "node4", + { + "#bigint": "50" + } + ], + [ + "node5", + { + "#bigint": "100" + } + ], + [ + "node6", + { + "#bigint": "100" + } + ], + [ + "node7", + { + "#bigint": "50" + } + ], + [ + "node8", + { + "#bigint": "100" + } + ], + [ + "node9", + { + "#bigint": "100" + } + ] + ] + }, + { + "#map": [ + [ + "node1", + { + "#bigint": "50" + } + ], + [ + "node10", + { + "#bigint": "100" + } + ], + [ + "node2", + { + "#bigint": "100" + } + ], + [ + "node3", + { + "#bigint": "100" + } + ], + [ + "node4", + { + "#bigint": "50" + } + ], + [ + "node5", + { + "#bigint": "100" + } + ], + [ + "node6", + { + "#bigint": "100" + } + ], + [ + "node7", + { + "#bigint": "100" + } + ], + [ + "node8", + { + "#bigint": "100" + } + ], + [ + "node9", + { + "#bigint": "100" + } + ] + ] + }, + { + "#map": [ + [ + "node1", + { + "#bigint": "100" + } + ], + [ + "node10", + { + "#bigint": "100" + } + ], + [ + "node2", + { + "#bigint": "100" + } + ], + [ + "node3", + { + "#bigint": "100" + } + ], + [ + "node4", + { + "#bigint": "100" + } + ], + [ + "node5", + { + "#bigint": "100" + } + ], + [ + "node6", + { + "#bigint": "100" + } + ], + [ + "node7", + { + "#bigint": "100" + } + ], + [ + "node8", + { + "#bigint": "100" + } + ], + [ + "node9", + { + "#bigint": "100" + } + ] + ] + }, + { + "#map": [ + [ + "node1", + { + "#bigint": "100" + } + ], + [ + "node10", + { + "#bigint": "100" + } + ], + [ + "node2", + { + "#bigint": "100" + } + ], + [ + "node3", + { + "#bigint": "100" + } + ], + [ + "node4", + { + "#bigint": "100" + } + ], + [ + "node5", + { + "#bigint": "100" + } + ], + [ + "node6", + { + "#bigint": "100" + } + ], + [ + "node7", + { + "#bigint": "100" + } + ], + [ + "node8", + { + "#bigint": "100" + } + ], + [ + "node9", + { + "#bigint": "100" + } + ] + ] + } + ] + }, + "consumerStatus": { + "#map": [ + [ + "consumer1", + "stopped" + ], + [ + "consumer2", + "running" + ], + [ + "consumer3", + "stopped" + ] + ] + }, + "outstandingPacketsToConsumer": { + "#map": [ + [ + "consumer1", + [] + ], + [ + "consumer2", + [ + { + "id": { + "#bigint": "0" + }, + "sendingTime": { + "#bigint": "4924800" + }, + "validatorSet": { + "#map": [ + [ + "node1", + { + "#bigint": "50" + } + ], + [ + "node10", + { + "#bigint": "50" + } + ], + [ + "node2", + { + "#bigint": "100" + } + ], + [ + "node3", + { + "#bigint": "100" + } + ], + [ + "node4", + { + "#bigint": "50" + } + ], + [ + "node5", + { + "#bigint": "100" + } + ], + [ + "node6", + { + "#bigint": "100" + } + ], + [ + "node7", + { + "#bigint": "50" + } + ], + [ + "node8", + { + "#bigint": "100" + } + ], + [ + "node9", + { + "#bigint": "100" + } + ] + ] + } + } + ] + ], + [ + "consumer3", + [] + ] + ] + }, + "providerValidatorSetChangedInThisBlock": false, + "receivedMaturations": { + "#set": [] + }, + "runningVscId": { + "#bigint": "1" + }, + "sentVscPacketsToConsumer": { + "#map": [ + [ + "consumer1", + [] + ], + [ + "consumer2", + [ + { + "id": { + "#bigint": "0" + }, + "sendingTime": { + "#bigint": "4924800" + }, + "validatorSet": { + "#map": [ + [ + "node1", + { + "#bigint": "50" + } + ], + [ + "node10", + { + "#bigint": "50" + } + ], + [ + "node2", + { + "#bigint": "100" + } + ], + [ + "node3", + { + "#bigint": "100" + } + ], + [ + "node4", + { + "#bigint": "50" + } + ], + [ + "node5", + { + "#bigint": "100" + } + ], + [ + "node6", + { + "#bigint": "100" + } + ], + [ + "node7", + { + "#bigint": "50" + } + ], + [ + "node8", + { + "#bigint": "100" + } + ], + [ + "node9", + { + "#bigint": "100" + } + ] + ] + } + } + ] + ], + [ + "consumer3", + [] + ] + ] + } + } + }, + "trace": [ + { + "consumerChain": "", + "consumersToStart": { + "#set": [] + }, + "consumersToStop": { + "#set": [] + }, + "kind": "init", + "newVotingPower": { + "#bigint": "0" + }, + "timeAdvancement": { + "#bigint": "0" + }, + "validator": "" + }, + { + "consumerChain": "", + "consumersToStart": { + "#set": [ + "consumer1", + "consumer3" + ] + }, + "consumersToStop": { + "#set": [] + }, + "kind": "EndAndBeginBlockForProvider", + "newVotingPower": { + "#bigint": "0" + }, + "timeAdvancement": { + "#bigint": "2419200" + }, + "validator": "" + }, + { + "consumerChain": "consumer3", + "consumersToStart": { + "#set": [] + }, + "consumersToStop": { + "#set": [] + }, + "kind": "EndAndBeginBlockForConsumer", + "newVotingPower": { + "#bigint": "0" + }, + "timeAdvancement": { + "#bigint": "2419200" + }, + "validator": "" + }, + { + "consumerChain": "", + "consumersToStart": { + "#set": [] + }, + "consumersToStop": { + "#set": [] + }, + "kind": "VotingPowerChange", + "newVotingPower": { + "#bigint": "100" + }, + "timeAdvancement": { + "#bigint": "0" + }, + "validator": "node1" + }, + { + "consumerChain": "", + "consumersToStart": { + "#set": [] + }, + "consumersToStop": { + "#set": [] + }, + "kind": "VotingPowerChange", + "newVotingPower": { + "#bigint": "50" + }, + "timeAdvancement": { + "#bigint": "0" + }, + "validator": "node1" + }, + { + "consumerChain": "", + "consumersToStart": { + "#set": [] + }, + "consumersToStop": { + "#set": [] + }, + "kind": "VotingPowerChange", + "newVotingPower": { + "#bigint": "50" + }, + "timeAdvancement": { + "#bigint": "0" + }, + "validator": "node4" + }, + { + "consumerChain": "", + "consumersToStart": { + "#set": [] + }, + "consumersToStop": { + "#set": [ + "consumer1", + "consumer3" + ] + }, + "kind": "EndAndBeginBlockForProvider", + "newVotingPower": { + "#bigint": "0" + }, + "timeAdvancement": { + "#bigint": "2419200" + }, + "validator": "" + }, + { + "consumerChain": "", + "consumersToStart": { + "#set": [] + }, + "consumersToStop": { + "#set": [] + }, + "kind": "VotingPowerChange", + "newVotingPower": { + "#bigint": "100" + }, + "timeAdvancement": { + "#bigint": "0" + }, + "validator": "node10" + }, + { + "consumerChain": "", + "consumersToStart": { + "#set": [] + }, + "consumersToStop": { + "#set": [] + }, + "kind": "VotingPowerChange", + "newVotingPower": { + "#bigint": "50" + }, + "timeAdvancement": { + "#bigint": "0" + }, + "validator": "node7" + }, + { + "consumerChain": "", + "consumersToStart": { + "#set": [] + }, + "consumersToStop": { + "#set": [] + }, + "kind": "VotingPowerChange", + "newVotingPower": { + "#bigint": "50" + }, + "timeAdvancement": { + "#bigint": "0" + }, + "validator": "node10" + }, + { + "consumerChain": "", + "consumersToStart": { + "#set": [ + "consumer2" + ] + }, + "consumersToStop": { + "#set": [] + }, + "kind": "EndAndBeginBlockForProvider", + "newVotingPower": { + "#bigint": "0" + }, + "timeAdvancement": { + "#bigint": "86400" + }, + "validator": "" + } + ] + }, + { + "#meta": { + "index": 11 + }, + "currentState": { + "consumerStates": { + "#map": [ + [ + "consumer1", + { + "chainState": { + "currentValidatorSet": { + "#map": [ + [ + "node1", + { + "#bigint": "100" + } + ], + [ + "node10", + { + "#bigint": "100" + } + ], + [ + "node2", + { + "#bigint": "100" + } + ], + [ + "node3", + { + "#bigint": "100" + } + ], + [ + "node4", + { + "#bigint": "100" + } + ], + [ + "node5", + { + "#bigint": "100" + } + ], + [ + "node6", + { + "#bigint": "100" + } + ], + [ + "node7", + { + "#bigint": "100" + } + ], + [ + "node8", + { + "#bigint": "100" + } + ], + [ + "node9", + { + "#bigint": "100" + } + ] + ] + }, + "lastTimestamp": { + "#bigint": "0" + }, + "votingPowerHistory": [] + }, + "maturationTimes": { + "#map": [] + }, + "outstandingPacketsToProvider": [], + "receivedVscPackets": [] + } + ], + [ + "consumer2", + { + "chainState": { + "currentValidatorSet": { + "#map": [ + [ + "node1", + { + "#bigint": "50" + } + ], + [ + "node10", + { + "#bigint": "50" + } + ], + [ + "node2", + { + "#bigint": "100" + } + ], + [ + "node3", + { + "#bigint": "100" + } + ], + [ + "node4", + { + "#bigint": "50" + } + ], + [ + "node5", + { + "#bigint": "100" + } + ], + [ + "node6", + { + "#bigint": "100" + } + ], + [ + "node7", + { + "#bigint": "50" + } + ], + [ + "node8", + { + "#bigint": "100" + } + ], + [ + "node9", + { + "#bigint": "100" + } + ] + ] + }, + "lastTimestamp": { + "#bigint": "0" + }, + "votingPowerHistory": [] + }, + "maturationTimes": { + "#map": [] + }, + "outstandingPacketsToProvider": [], + "receivedVscPackets": [] + } + ], + [ + "consumer3", + { + "chainState": { + "currentValidatorSet": { + "#map": [ + [ + "node1", + { + "#bigint": "100" + } + ], + [ + "node10", + { + "#bigint": "100" + } + ], + [ + "node2", + { + "#bigint": "100" + } + ], + [ + "node3", + { + "#bigint": "100" + } + ], + [ + "node4", + { + "#bigint": "100" + } + ], + [ + "node5", + { + "#bigint": "100" + } + ], + [ + "node6", + { + "#bigint": "100" + } + ], + [ + "node7", + { + "#bigint": "100" + } + ], + [ + "node8", + { + "#bigint": "100" + } + ], + [ + "node9", + { + "#bigint": "100" + } + ] + ] + }, + "lastTimestamp": { + "#bigint": "2419200" + }, + "votingPowerHistory": [ + { + "#map": [ + [ + "node1", + { + "#bigint": "100" + } + ], + [ + "node10", + { + "#bigint": "100" + } + ], + [ + "node2", + { + "#bigint": "100" + } + ], + [ + "node3", + { + "#bigint": "100" + } + ], + [ + "node4", + { + "#bigint": "100" + } + ], + [ + "node5", + { + "#bigint": "100" + } + ], + [ + "node6", + { + "#bigint": "100" + } + ], + [ + "node7", + { + "#bigint": "100" + } + ], + [ + "node8", + { + "#bigint": "100" + } + ], + [ + "node9", + { + "#bigint": "100" + } + ] + ] + } + ] + }, + "maturationTimes": { + "#map": [] + }, + "outstandingPacketsToProvider": [], + "receivedVscPackets": [] + } + ] + ] + }, + "providerState": { + "chainState": { + "currentValidatorSet": { + "#map": [ + [ + "node1", + { + "#bigint": "50" + } + ], + [ + "node10", + { + "#bigint": "50" + } + ], + [ + "node2", + { + "#bigint": "50" + } + ], + [ + "node3", + { + "#bigint": "100" + } + ], + [ + "node4", + { + "#bigint": "50" + } + ], + [ + "node5", + { + "#bigint": "100" + } + ], + [ + "node6", + { + "#bigint": "100" + } + ], + [ + "node7", + { + "#bigint": "50" + } + ], + [ + "node8", + { + "#bigint": "100" + } + ], + [ + "node9", + { + "#bigint": "100" + } + ] + ] + }, + "lastTimestamp": { + "#bigint": "4924800" + }, + "votingPowerHistory": [ + { + "#map": [ + [ + "node1", + { + "#bigint": "50" + } + ], + [ + "node10", + { + "#bigint": "50" + } + ], + [ + "node2", + { + "#bigint": "100" + } + ], + [ + "node3", + { + "#bigint": "100" + } + ], + [ + "node4", + { + "#bigint": "50" + } + ], + [ + "node5", + { + "#bigint": "100" + } + ], + [ + "node6", + { + "#bigint": "100" + } + ], + [ + "node7", + { + "#bigint": "50" + } + ], + [ + "node8", + { + "#bigint": "100" + } + ], + [ + "node9", + { + "#bigint": "100" + } + ] + ] + }, + { + "#map": [ + [ + "node1", + { + "#bigint": "50" + } + ], + [ + "node10", + { + "#bigint": "100" + } + ], + [ + "node2", + { + "#bigint": "100" + } + ], + [ + "node3", + { + "#bigint": "100" + } + ], + [ + "node4", + { + "#bigint": "50" + } + ], + [ + "node5", + { + "#bigint": "100" + } + ], + [ + "node6", + { + "#bigint": "100" + } + ], + [ + "node7", + { + "#bigint": "100" + } + ], + [ + "node8", + { + "#bigint": "100" + } + ], + [ + "node9", + { + "#bigint": "100" + } + ] + ] + }, + { + "#map": [ + [ + "node1", + { + "#bigint": "100" + } + ], + [ + "node10", + { + "#bigint": "100" + } + ], + [ + "node2", + { + "#bigint": "100" + } + ], + [ + "node3", + { + "#bigint": "100" + } + ], + [ + "node4", + { + "#bigint": "100" + } + ], + [ + "node5", + { + "#bigint": "100" + } + ], + [ + "node6", + { + "#bigint": "100" + } + ], + [ + "node7", + { + "#bigint": "100" + } + ], + [ + "node8", + { + "#bigint": "100" + } + ], + [ + "node9", + { + "#bigint": "100" + } + ] + ] + }, + { + "#map": [ + [ + "node1", + { + "#bigint": "100" + } + ], + [ + "node10", + { + "#bigint": "100" + } + ], + [ + "node2", + { + "#bigint": "100" + } + ], + [ + "node3", + { + "#bigint": "100" + } + ], + [ + "node4", + { + "#bigint": "100" + } + ], + [ + "node5", + { + "#bigint": "100" + } + ], + [ + "node6", + { + "#bigint": "100" + } + ], + [ + "node7", + { + "#bigint": "100" + } + ], + [ + "node8", + { + "#bigint": "100" + } + ], + [ + "node9", + { + "#bigint": "100" + } + ] + ] + } + ] + }, + "consumerStatus": { + "#map": [ + [ + "consumer1", + "stopped" + ], + [ + "consumer2", + "running" + ], + [ + "consumer3", + "stopped" + ] + ] + }, + "outstandingPacketsToConsumer": { + "#map": [ + [ + "consumer1", + [] + ], + [ + "consumer2", + [ + { + "id": { + "#bigint": "0" + }, + "sendingTime": { + "#bigint": "4924800" + }, + "validatorSet": { + "#map": [ + [ + "node1", + { + "#bigint": "50" + } + ], + [ + "node10", + { + "#bigint": "50" + } + ], + [ + "node2", + { + "#bigint": "100" + } + ], + [ + "node3", + { + "#bigint": "100" + } + ], + [ + "node4", + { + "#bigint": "50" + } + ], + [ + "node5", + { + "#bigint": "100" + } + ], + [ + "node6", + { + "#bigint": "100" + } + ], + [ + "node7", + { + "#bigint": "50" + } + ], + [ + "node8", + { + "#bigint": "100" + } + ], + [ + "node9", + { + "#bigint": "100" + } + ] + ] + } + } + ] + ], + [ + "consumer3", + [] + ] + ] + }, + "providerValidatorSetChangedInThisBlock": true, + "receivedMaturations": { + "#set": [] + }, + "runningVscId": { + "#bigint": "1" + }, + "sentVscPacketsToConsumer": { + "#map": [ + [ + "consumer1", + [] + ], + [ + "consumer2", + [ + { + "id": { + "#bigint": "0" + }, + "sendingTime": { + "#bigint": "4924800" + }, + "validatorSet": { + "#map": [ + [ + "node1", + { + "#bigint": "50" + } + ], + [ + "node10", + { + "#bigint": "50" + } + ], + [ + "node2", + { + "#bigint": "100" + } + ], + [ + "node3", + { + "#bigint": "100" + } + ], + [ + "node4", + { + "#bigint": "50" + } + ], + [ + "node5", + { + "#bigint": "100" + } + ], + [ + "node6", + { + "#bigint": "100" + } + ], + [ + "node7", + { + "#bigint": "50" + } + ], + [ + "node8", + { + "#bigint": "100" + } + ], + [ + "node9", + { + "#bigint": "100" + } + ] + ] + } + } + ] + ], + [ + "consumer3", + [] + ] + ] + } + } + }, + "trace": [ + { + "consumerChain": "", + "consumersToStart": { + "#set": [] + }, + "consumersToStop": { + "#set": [] + }, + "kind": "init", + "newVotingPower": { + "#bigint": "0" + }, + "timeAdvancement": { + "#bigint": "0" + }, + "validator": "" + }, + { + "consumerChain": "", + "consumersToStart": { + "#set": [ + "consumer1", + "consumer3" + ] + }, + "consumersToStop": { + "#set": [] + }, + "kind": "EndAndBeginBlockForProvider", + "newVotingPower": { + "#bigint": "0" + }, + "timeAdvancement": { + "#bigint": "2419200" + }, + "validator": "" + }, + { + "consumerChain": "consumer3", + "consumersToStart": { + "#set": [] + }, + "consumersToStop": { + "#set": [] + }, + "kind": "EndAndBeginBlockForConsumer", + "newVotingPower": { + "#bigint": "0" + }, + "timeAdvancement": { + "#bigint": "2419200" + }, + "validator": "" + }, + { + "consumerChain": "", + "consumersToStart": { + "#set": [] + }, + "consumersToStop": { + "#set": [] + }, + "kind": "VotingPowerChange", + "newVotingPower": { + "#bigint": "100" + }, + "timeAdvancement": { + "#bigint": "0" + }, + "validator": "node1" + }, + { + "consumerChain": "", + "consumersToStart": { + "#set": [] + }, + "consumersToStop": { + "#set": [] + }, + "kind": "VotingPowerChange", + "newVotingPower": { + "#bigint": "50" + }, + "timeAdvancement": { + "#bigint": "0" + }, + "validator": "node1" + }, + { + "consumerChain": "", + "consumersToStart": { + "#set": [] + }, + "consumersToStop": { + "#set": [] + }, + "kind": "VotingPowerChange", + "newVotingPower": { + "#bigint": "50" + }, + "timeAdvancement": { + "#bigint": "0" + }, + "validator": "node4" + }, + { + "consumerChain": "", + "consumersToStart": { + "#set": [] + }, + "consumersToStop": { + "#set": [ + "consumer1", + "consumer3" + ] + }, + "kind": "EndAndBeginBlockForProvider", + "newVotingPower": { + "#bigint": "0" + }, + "timeAdvancement": { + "#bigint": "2419200" + }, + "validator": "" + }, + { + "consumerChain": "", + "consumersToStart": { + "#set": [] + }, + "consumersToStop": { + "#set": [] + }, + "kind": "VotingPowerChange", + "newVotingPower": { + "#bigint": "100" + }, + "timeAdvancement": { + "#bigint": "0" + }, + "validator": "node10" + }, + { + "consumerChain": "", + "consumersToStart": { + "#set": [] + }, + "consumersToStop": { + "#set": [] + }, + "kind": "VotingPowerChange", + "newVotingPower": { + "#bigint": "50" + }, + "timeAdvancement": { + "#bigint": "0" + }, + "validator": "node7" + }, + { + "consumerChain": "", + "consumersToStart": { + "#set": [] + }, + "consumersToStop": { + "#set": [] + }, + "kind": "VotingPowerChange", + "newVotingPower": { + "#bigint": "50" + }, + "timeAdvancement": { + "#bigint": "0" + }, + "validator": "node10" + }, + { + "consumerChain": "", + "consumersToStart": { + "#set": [ + "consumer2" + ] + }, + "consumersToStop": { + "#set": [] + }, + "kind": "EndAndBeginBlockForProvider", + "newVotingPower": { + "#bigint": "0" + }, + "timeAdvancement": { + "#bigint": "86400" + }, + "validator": "" + }, + { + "consumerChain": "", + "consumersToStart": { + "#set": [] + }, + "consumersToStop": { + "#set": [] + }, + "kind": "VotingPowerChange", + "newVotingPower": { + "#bigint": "50" + }, + "timeAdvancement": { + "#bigint": "0" + }, + "validator": "node2" + } + ] + }, + { + "#meta": { + "index": 12 + }, + "currentState": { + "consumerStates": { + "#map": [ + [ + "consumer1", + { + "chainState": { + "currentValidatorSet": { + "#map": [ + [ + "node1", + { + "#bigint": "100" + } + ], + [ + "node10", + { + "#bigint": "100" + } + ], + [ + "node2", + { + "#bigint": "100" + } + ], + [ + "node3", + { + "#bigint": "100" + } + ], + [ + "node4", + { + "#bigint": "100" + } + ], + [ + "node5", + { + "#bigint": "100" + } + ], + [ + "node6", + { + "#bigint": "100" + } + ], + [ + "node7", + { + "#bigint": "100" + } + ], + [ + "node8", + { + "#bigint": "100" + } + ], + [ + "node9", + { + "#bigint": "100" + } + ] + ] + }, + "lastTimestamp": { + "#bigint": "0" + }, + "votingPowerHistory": [] + }, + "maturationTimes": { + "#map": [] + }, + "outstandingPacketsToProvider": [], + "receivedVscPackets": [] + } + ], + [ + "consumer2", + { + "chainState": { + "currentValidatorSet": { + "#map": [ + [ + "node1", + { + "#bigint": "50" + } + ], + [ + "node10", + { + "#bigint": "50" + } + ], + [ + "node2", + { + "#bigint": "100" + } + ], + [ + "node3", + { + "#bigint": "100" + } + ], + [ + "node4", + { + "#bigint": "50" + } + ], + [ + "node5", + { + "#bigint": "100" + } + ], + [ + "node6", + { + "#bigint": "100" + } + ], + [ + "node7", + { + "#bigint": "50" + } + ], + [ + "node8", + { + "#bigint": "100" + } + ], + [ + "node9", + { + "#bigint": "100" + } + ] + ] + }, + "lastTimestamp": { + "#bigint": "0" + }, + "votingPowerHistory": [] + }, + "maturationTimes": { + "#map": [] + }, + "outstandingPacketsToProvider": [], + "receivedVscPackets": [] + } + ], + [ + "consumer3", + { + "chainState": { + "currentValidatorSet": { + "#map": [ + [ + "node1", + { + "#bigint": "100" + } + ], + [ + "node10", + { + "#bigint": "100" + } + ], + [ + "node2", + { + "#bigint": "100" + } + ], + [ + "node3", + { + "#bigint": "100" + } + ], + [ + "node4", + { + "#bigint": "100" + } + ], + [ + "node5", + { + "#bigint": "100" + } + ], + [ + "node6", + { + "#bigint": "100" + } + ], + [ + "node7", + { + "#bigint": "100" + } + ], + [ + "node8", + { + "#bigint": "100" + } + ], + [ + "node9", + { + "#bigint": "100" + } + ] + ] + }, + "lastTimestamp": { + "#bigint": "2419200" + }, + "votingPowerHistory": [ + { + "#map": [ + [ + "node1", + { + "#bigint": "100" + } + ], + [ + "node10", + { + "#bigint": "100" + } + ], + [ + "node2", + { + "#bigint": "100" + } + ], + [ + "node3", + { + "#bigint": "100" + } + ], + [ + "node4", + { + "#bigint": "100" + } + ], + [ + "node5", + { + "#bigint": "100" + } + ], + [ + "node6", + { + "#bigint": "100" + } + ], + [ + "node7", + { + "#bigint": "100" + } + ], + [ + "node8", + { + "#bigint": "100" + } + ], + [ + "node9", + { + "#bigint": "100" + } + ] + ] + } + ] + }, + "maturationTimes": { + "#map": [] + }, + "outstandingPacketsToProvider": [], + "receivedVscPackets": [] + } + ] + ] + }, + "providerState": { + "chainState": { + "currentValidatorSet": { + "#map": [ + [ + "node1", + { + "#bigint": "50" + } + ], + [ + "node10", + { + "#bigint": "50" + } + ], + [ + "node2", + { + "#bigint": "50" + } + ], + [ + "node3", + { + "#bigint": "100" + } + ], + [ + "node4", + { + "#bigint": "100" + } + ], + [ + "node5", + { + "#bigint": "100" + } + ], + [ + "node6", + { + "#bigint": "100" + } + ], + [ + "node7", + { + "#bigint": "50" + } + ], + [ + "node8", + { + "#bigint": "100" + } + ], + [ + "node9", + { + "#bigint": "100" + } + ] + ] + }, + "lastTimestamp": { + "#bigint": "4924800" + }, + "votingPowerHistory": [ + { + "#map": [ + [ + "node1", + { + "#bigint": "50" + } + ], + [ + "node10", + { + "#bigint": "50" + } + ], + [ + "node2", + { + "#bigint": "100" + } + ], + [ + "node3", + { + "#bigint": "100" + } + ], + [ + "node4", + { + "#bigint": "50" + } + ], + [ + "node5", + { + "#bigint": "100" + } + ], + [ + "node6", + { + "#bigint": "100" + } + ], + [ + "node7", + { + "#bigint": "50" + } + ], + [ + "node8", + { + "#bigint": "100" + } + ], + [ + "node9", + { + "#bigint": "100" + } + ] + ] + }, + { + "#map": [ + [ + "node1", + { + "#bigint": "50" + } + ], + [ + "node10", + { + "#bigint": "100" + } + ], + [ + "node2", + { + "#bigint": "100" + } + ], + [ + "node3", + { + "#bigint": "100" + } + ], + [ + "node4", + { + "#bigint": "50" + } + ], + [ + "node5", + { + "#bigint": "100" + } + ], + [ + "node6", + { + "#bigint": "100" + } + ], + [ + "node7", + { + "#bigint": "100" + } + ], + [ + "node8", + { + "#bigint": "100" + } + ], + [ + "node9", + { + "#bigint": "100" + } + ] + ] + }, + { + "#map": [ + [ + "node1", + { + "#bigint": "100" + } + ], + [ + "node10", + { + "#bigint": "100" + } + ], + [ + "node2", + { + "#bigint": "100" + } + ], + [ + "node3", + { + "#bigint": "100" + } + ], + [ + "node4", + { + "#bigint": "100" + } + ], + [ + "node5", + { + "#bigint": "100" + } + ], + [ + "node6", + { + "#bigint": "100" + } + ], + [ + "node7", + { + "#bigint": "100" + } + ], + [ + "node8", + { + "#bigint": "100" + } + ], + [ + "node9", + { + "#bigint": "100" + } + ] + ] + }, + { + "#map": [ + [ + "node1", + { + "#bigint": "100" + } + ], + [ + "node10", + { + "#bigint": "100" + } + ], + [ + "node2", + { + "#bigint": "100" + } + ], + [ + "node3", + { + "#bigint": "100" + } + ], + [ + "node4", + { + "#bigint": "100" + } + ], + [ + "node5", + { + "#bigint": "100" + } + ], + [ + "node6", + { + "#bigint": "100" + } + ], + [ + "node7", + { + "#bigint": "100" + } + ], + [ + "node8", + { + "#bigint": "100" + } + ], + [ + "node9", + { + "#bigint": "100" + } + ] + ] + } + ] + }, + "consumerStatus": { + "#map": [ + [ + "consumer1", + "stopped" + ], + [ + "consumer2", + "running" + ], + [ + "consumer3", + "stopped" + ] + ] + }, + "outstandingPacketsToConsumer": { + "#map": [ + [ + "consumer1", + [] + ], + [ + "consumer2", + [ + { + "id": { + "#bigint": "0" + }, + "sendingTime": { + "#bigint": "4924800" + }, + "validatorSet": { + "#map": [ + [ + "node1", + { + "#bigint": "50" + } + ], + [ + "node10", + { + "#bigint": "50" + } + ], + [ + "node2", + { + "#bigint": "100" + } + ], + [ + "node3", + { + "#bigint": "100" + } + ], + [ + "node4", + { + "#bigint": "50" + } + ], + [ + "node5", + { + "#bigint": "100" + } + ], + [ + "node6", + { + "#bigint": "100" + } + ], + [ + "node7", + { + "#bigint": "50" + } + ], + [ + "node8", + { + "#bigint": "100" + } + ], + [ + "node9", + { + "#bigint": "100" + } + ] + ] + } + } + ] + ], + [ + "consumer3", + [] + ] + ] + }, + "providerValidatorSetChangedInThisBlock": true, + "receivedMaturations": { + "#set": [] + }, + "runningVscId": { + "#bigint": "1" + }, + "sentVscPacketsToConsumer": { + "#map": [ + [ + "consumer1", + [] + ], + [ + "consumer2", + [ + { + "id": { + "#bigint": "0" + }, + "sendingTime": { + "#bigint": "4924800" + }, + "validatorSet": { + "#map": [ + [ + "node1", + { + "#bigint": "50" + } + ], + [ + "node10", + { + "#bigint": "50" + } + ], + [ + "node2", + { + "#bigint": "100" + } + ], + [ + "node3", + { + "#bigint": "100" + } + ], + [ + "node4", + { + "#bigint": "50" + } + ], + [ + "node5", + { + "#bigint": "100" + } + ], + [ + "node6", + { + "#bigint": "100" + } + ], + [ + "node7", + { + "#bigint": "50" + } + ], + [ + "node8", + { + "#bigint": "100" + } + ], + [ + "node9", + { + "#bigint": "100" + } + ] + ] + } + } + ] + ], + [ + "consumer3", + [] + ] + ] + } + } + }, + "trace": [ + { + "consumerChain": "", + "consumersToStart": { + "#set": [] + }, + "consumersToStop": { + "#set": [] + }, + "kind": "init", + "newVotingPower": { + "#bigint": "0" + }, + "timeAdvancement": { + "#bigint": "0" + }, + "validator": "" + }, + { + "consumerChain": "", + "consumersToStart": { + "#set": [ + "consumer1", + "consumer3" + ] + }, + "consumersToStop": { + "#set": [] + }, + "kind": "EndAndBeginBlockForProvider", + "newVotingPower": { + "#bigint": "0" + }, + "timeAdvancement": { + "#bigint": "2419200" + }, + "validator": "" + }, + { + "consumerChain": "consumer3", + "consumersToStart": { + "#set": [] + }, + "consumersToStop": { + "#set": [] + }, + "kind": "EndAndBeginBlockForConsumer", + "newVotingPower": { + "#bigint": "0" + }, + "timeAdvancement": { + "#bigint": "2419200" + }, + "validator": "" + }, + { + "consumerChain": "", + "consumersToStart": { + "#set": [] + }, + "consumersToStop": { + "#set": [] + }, + "kind": "VotingPowerChange", + "newVotingPower": { + "#bigint": "100" + }, + "timeAdvancement": { + "#bigint": "0" + }, + "validator": "node1" + }, + { + "consumerChain": "", + "consumersToStart": { + "#set": [] + }, + "consumersToStop": { + "#set": [] + }, + "kind": "VotingPowerChange", + "newVotingPower": { + "#bigint": "50" + }, + "timeAdvancement": { + "#bigint": "0" + }, + "validator": "node1" + }, + { + "consumerChain": "", + "consumersToStart": { + "#set": [] + }, + "consumersToStop": { + "#set": [] + }, + "kind": "VotingPowerChange", + "newVotingPower": { + "#bigint": "50" + }, + "timeAdvancement": { + "#bigint": "0" + }, + "validator": "node4" + }, + { + "consumerChain": "", + "consumersToStart": { + "#set": [] + }, + "consumersToStop": { + "#set": [ + "consumer1", + "consumer3" + ] + }, + "kind": "EndAndBeginBlockForProvider", + "newVotingPower": { + "#bigint": "0" + }, + "timeAdvancement": { + "#bigint": "2419200" + }, + "validator": "" + }, + { + "consumerChain": "", + "consumersToStart": { + "#set": [] + }, + "consumersToStop": { + "#set": [] + }, + "kind": "VotingPowerChange", + "newVotingPower": { + "#bigint": "100" + }, + "timeAdvancement": { + "#bigint": "0" + }, + "validator": "node10" + }, + { + "consumerChain": "", + "consumersToStart": { + "#set": [] + }, + "consumersToStop": { + "#set": [] + }, + "kind": "VotingPowerChange", + "newVotingPower": { + "#bigint": "50" + }, + "timeAdvancement": { + "#bigint": "0" + }, + "validator": "node7" + }, + { + "consumerChain": "", + "consumersToStart": { + "#set": [] + }, + "consumersToStop": { + "#set": [] + }, + "kind": "VotingPowerChange", + "newVotingPower": { + "#bigint": "50" + }, + "timeAdvancement": { + "#bigint": "0" + }, + "validator": "node10" + }, + { + "consumerChain": "", + "consumersToStart": { + "#set": [ + "consumer2" + ] + }, + "consumersToStop": { + "#set": [] + }, + "kind": "EndAndBeginBlockForProvider", + "newVotingPower": { + "#bigint": "0" + }, + "timeAdvancement": { + "#bigint": "86400" + }, + "validator": "" + }, + { + "consumerChain": "", + "consumersToStart": { + "#set": [] + }, + "consumersToStop": { + "#set": [] + }, + "kind": "VotingPowerChange", + "newVotingPower": { + "#bigint": "50" + }, + "timeAdvancement": { + "#bigint": "0" + }, + "validator": "node2" + }, + { + "consumerChain": "", + "consumersToStart": { + "#set": [] + }, + "consumersToStop": { + "#set": [] + }, + "kind": "VotingPowerChange", + "newVotingPower": { + "#bigint": "100" + }, + "timeAdvancement": { + "#bigint": "0" + }, + "validator": "node4" + } + ] + }, + { + "#meta": { + "index": 13 + }, + "currentState": { + "consumerStates": { + "#map": [ + [ + "consumer1", + { + "chainState": { + "currentValidatorSet": { + "#map": [ + [ + "node1", + { + "#bigint": "100" + } + ], + [ + "node10", + { + "#bigint": "100" + } + ], + [ + "node2", + { + "#bigint": "100" + } + ], + [ + "node3", + { + "#bigint": "100" + } + ], + [ + "node4", + { + "#bigint": "100" + } + ], + [ + "node5", + { + "#bigint": "100" + } + ], + [ + "node6", + { + "#bigint": "100" + } + ], + [ + "node7", + { + "#bigint": "100" + } + ], + [ + "node8", + { + "#bigint": "100" + } + ], + [ + "node9", + { + "#bigint": "100" + } + ] + ] + }, + "lastTimestamp": { + "#bigint": "0" + }, + "votingPowerHistory": [] + }, + "maturationTimes": { + "#map": [] + }, + "outstandingPacketsToProvider": [], + "receivedVscPackets": [] + } + ], + [ + "consumer2", + { + "chainState": { + "currentValidatorSet": { + "#map": [ + [ + "node1", + { + "#bigint": "50" + } + ], + [ + "node10", + { + "#bigint": "50" + } + ], + [ + "node2", + { + "#bigint": "100" + } + ], + [ + "node3", + { + "#bigint": "100" + } + ], + [ + "node4", + { + "#bigint": "50" + } + ], + [ + "node5", + { + "#bigint": "100" + } + ], + [ + "node6", + { + "#bigint": "100" + } + ], + [ + "node7", + { + "#bigint": "50" + } + ], + [ + "node8", + { + "#bigint": "100" + } + ], + [ + "node9", + { + "#bigint": "100" + } + ] + ] + }, + "lastTimestamp": { + "#bigint": "0" + }, + "votingPowerHistory": [] + }, + "maturationTimes": { + "#map": [] + }, + "outstandingPacketsToProvider": [], + "receivedVscPackets": [] + } + ], + [ + "consumer3", + { + "chainState": { + "currentValidatorSet": { + "#map": [ + [ + "node1", + { + "#bigint": "100" + } + ], + [ + "node10", + { + "#bigint": "100" + } + ], + [ + "node2", + { + "#bigint": "100" + } + ], + [ + "node3", + { + "#bigint": "100" + } + ], + [ + "node4", + { + "#bigint": "100" + } + ], + [ + "node5", + { + "#bigint": "100" + } + ], + [ + "node6", + { + "#bigint": "100" + } + ], + [ + "node7", + { + "#bigint": "100" + } + ], + [ + "node8", + { + "#bigint": "100" + } + ], + [ + "node9", + { + "#bigint": "100" + } + ] + ] + }, + "lastTimestamp": { + "#bigint": "2419200" + }, + "votingPowerHistory": [ + { + "#map": [ + [ + "node1", + { + "#bigint": "100" + } + ], + [ + "node10", + { + "#bigint": "100" + } + ], + [ + "node2", + { + "#bigint": "100" + } + ], + [ + "node3", + { + "#bigint": "100" + } + ], + [ + "node4", + { + "#bigint": "100" + } + ], + [ + "node5", + { + "#bigint": "100" + } + ], + [ + "node6", + { + "#bigint": "100" + } + ], + [ + "node7", + { + "#bigint": "100" + } + ], + [ + "node8", + { + "#bigint": "100" + } + ], + [ + "node9", + { + "#bigint": "100" + } + ] + ] + } + ] + }, + "maturationTimes": { + "#map": [] + }, + "outstandingPacketsToProvider": [], + "receivedVscPackets": [] + } + ] + ] + }, + "providerState": { + "chainState": { + "currentValidatorSet": { + "#map": [ + [ + "node1", + { + "#bigint": "50" + } + ], + [ + "node10", + { + "#bigint": "50" + } + ], + [ + "node2", + { + "#bigint": "50" + } + ], + [ + "node3", + { + "#bigint": "100" + } + ], + [ + "node4", + { + "#bigint": "100" + } + ], + [ + "node5", + { + "#bigint": "100" + } + ], + [ + "node6", + { + "#bigint": "100" + } + ], + [ + "node7", + { + "#bigint": "50" + } + ], + [ + "node8", + { + "#bigint": "100" + } + ], + [ + "node9", + { + "#bigint": "100" + } + ] + ] + }, + "lastTimestamp": { + "#bigint": "5529600" + }, + "votingPowerHistory": [ + { + "#map": [ + [ + "node1", + { + "#bigint": "50" + } + ], + [ + "node10", + { + "#bigint": "50" + } + ], + [ + "node2", + { + "#bigint": "50" + } + ], + [ + "node3", + { + "#bigint": "100" + } + ], + [ + "node4", + { + "#bigint": "100" + } + ], + [ + "node5", + { + "#bigint": "100" + } + ], + [ + "node6", + { + "#bigint": "100" + } + ], + [ + "node7", + { + "#bigint": "50" + } + ], + [ + "node8", + { + "#bigint": "100" + } + ], + [ + "node9", + { + "#bigint": "100" + } + ] + ] + }, + { + "#map": [ + [ + "node1", + { + "#bigint": "50" + } + ], + [ + "node10", + { + "#bigint": "50" + } + ], + [ + "node2", + { + "#bigint": "100" + } + ], + [ + "node3", + { + "#bigint": "100" + } + ], + [ + "node4", + { + "#bigint": "50" + } + ], + [ + "node5", + { + "#bigint": "100" + } + ], + [ + "node6", + { + "#bigint": "100" + } + ], + [ + "node7", + { + "#bigint": "50" + } + ], + [ + "node8", + { + "#bigint": "100" + } + ], + [ + "node9", + { + "#bigint": "100" + } + ] + ] + }, + { + "#map": [ + [ + "node1", + { + "#bigint": "50" + } + ], + [ + "node10", + { + "#bigint": "100" + } + ], + [ + "node2", + { + "#bigint": "100" + } + ], + [ + "node3", + { + "#bigint": "100" + } + ], + [ + "node4", + { + "#bigint": "50" + } + ], + [ + "node5", + { + "#bigint": "100" + } + ], + [ + "node6", + { + "#bigint": "100" + } + ], + [ + "node7", + { + "#bigint": "100" + } + ], + [ + "node8", + { + "#bigint": "100" + } + ], + [ + "node9", + { + "#bigint": "100" + } + ] + ] + }, + { + "#map": [ + [ + "node1", + { + "#bigint": "100" + } + ], + [ + "node10", + { + "#bigint": "100" + } + ], + [ + "node2", + { + "#bigint": "100" + } + ], + [ + "node3", + { + "#bigint": "100" + } + ], + [ + "node4", + { + "#bigint": "100" + } + ], + [ + "node5", + { + "#bigint": "100" + } + ], + [ + "node6", + { + "#bigint": "100" + } + ], + [ + "node7", + { + "#bigint": "100" + } + ], + [ + "node8", + { + "#bigint": "100" + } + ], + [ + "node9", + { + "#bigint": "100" + } + ] + ] + }, + { + "#map": [ + [ + "node1", + { + "#bigint": "100" + } + ], + [ + "node10", + { + "#bigint": "100" + } + ], + [ + "node2", + { + "#bigint": "100" + } + ], + [ + "node3", + { + "#bigint": "100" + } + ], + [ + "node4", + { + "#bigint": "100" + } + ], + [ + "node5", + { + "#bigint": "100" + } + ], + [ + "node6", + { + "#bigint": "100" + } + ], + [ + "node7", + { + "#bigint": "100" + } + ], + [ + "node8", + { + "#bigint": "100" + } + ], + [ + "node9", + { + "#bigint": "100" + } + ] + ] + } + ] + }, + "consumerStatus": { + "#map": [ + [ + "consumer1", + "stopped" + ], + [ + "consumer2", + "stopped" + ], + [ + "consumer3", + "stopped" + ] + ] + }, + "outstandingPacketsToConsumer": { + "#map": [ + [ + "consumer1", + [] + ], + [ + "consumer2", + [ + { + "id": { + "#bigint": "0" + }, + "sendingTime": { + "#bigint": "4924800" + }, + "validatorSet": { + "#map": [ + [ + "node1", + { + "#bigint": "50" + } + ], + [ + "node10", + { + "#bigint": "50" + } + ], + [ + "node2", + { + "#bigint": "100" + } + ], + [ + "node3", + { + "#bigint": "100" + } + ], + [ + "node4", + { + "#bigint": "50" + } + ], + [ + "node5", + { + "#bigint": "100" + } + ], + [ + "node6", + { + "#bigint": "100" + } + ], + [ + "node7", + { + "#bigint": "50" + } + ], + [ + "node8", + { + "#bigint": "100" + } + ], + [ + "node9", + { + "#bigint": "100" + } + ] + ] + } + } + ] + ], + [ + "consumer3", + [] + ] + ] + }, + "providerValidatorSetChangedInThisBlock": true, + "receivedMaturations": { + "#set": [] + }, + "runningVscId": { + "#bigint": "1" + }, + "sentVscPacketsToConsumer": { + "#map": [ + [ + "consumer1", + [] + ], + [ + "consumer2", + [ + { + "id": { + "#bigint": "0" + }, + "sendingTime": { + "#bigint": "4924800" + }, + "validatorSet": { + "#map": [ + [ + "node1", + { + "#bigint": "50" + } + ], + [ + "node10", + { + "#bigint": "50" + } + ], + [ + "node2", + { + "#bigint": "100" + } + ], + [ + "node3", + { + "#bigint": "100" + } + ], + [ + "node4", + { + "#bigint": "50" + } + ], + [ + "node5", + { + "#bigint": "100" + } + ], + [ + "node6", + { + "#bigint": "100" + } + ], + [ + "node7", + { + "#bigint": "50" + } + ], + [ + "node8", + { + "#bigint": "100" + } + ], + [ + "node9", + { + "#bigint": "100" + } + ] + ] + } + } + ] + ], + [ + "consumer3", + [] + ] + ] + } + } + }, + "trace": [ + { + "consumerChain": "", + "consumersToStart": { + "#set": [] + }, + "consumersToStop": { + "#set": [] + }, + "kind": "init", + "newVotingPower": { + "#bigint": "0" + }, + "timeAdvancement": { + "#bigint": "0" + }, + "validator": "" + }, + { + "consumerChain": "", + "consumersToStart": { + "#set": [ + "consumer1", + "consumer3" + ] + }, + "consumersToStop": { + "#set": [] + }, + "kind": "EndAndBeginBlockForProvider", + "newVotingPower": { + "#bigint": "0" + }, + "timeAdvancement": { + "#bigint": "2419200" + }, + "validator": "" + }, + { + "consumerChain": "consumer3", + "consumersToStart": { + "#set": [] + }, + "consumersToStop": { + "#set": [] + }, + "kind": "EndAndBeginBlockForConsumer", + "newVotingPower": { + "#bigint": "0" + }, + "timeAdvancement": { + "#bigint": "2419200" + }, + "validator": "" + }, + { + "consumerChain": "", + "consumersToStart": { + "#set": [] + }, + "consumersToStop": { + "#set": [] + }, + "kind": "VotingPowerChange", + "newVotingPower": { + "#bigint": "100" + }, + "timeAdvancement": { + "#bigint": "0" + }, + "validator": "node1" + }, + { + "consumerChain": "", + "consumersToStart": { + "#set": [] + }, + "consumersToStop": { + "#set": [] + }, + "kind": "VotingPowerChange", + "newVotingPower": { + "#bigint": "50" + }, + "timeAdvancement": { + "#bigint": "0" + }, + "validator": "node1" + }, + { + "consumerChain": "", + "consumersToStart": { + "#set": [] + }, + "consumersToStop": { + "#set": [] + }, + "kind": "VotingPowerChange", + "newVotingPower": { + "#bigint": "50" + }, + "timeAdvancement": { + "#bigint": "0" + }, + "validator": "node4" + }, + { + "consumerChain": "", + "consumersToStart": { + "#set": [] + }, + "consumersToStop": { + "#set": [ + "consumer1", + "consumer3" + ] + }, + "kind": "EndAndBeginBlockForProvider", + "newVotingPower": { + "#bigint": "0" + }, + "timeAdvancement": { + "#bigint": "2419200" + }, + "validator": "" + }, + { + "consumerChain": "", + "consumersToStart": { + "#set": [] + }, + "consumersToStop": { + "#set": [] + }, + "kind": "VotingPowerChange", + "newVotingPower": { + "#bigint": "100" + }, + "timeAdvancement": { + "#bigint": "0" + }, + "validator": "node10" + }, + { + "consumerChain": "", + "consumersToStart": { + "#set": [] + }, + "consumersToStop": { + "#set": [] + }, + "kind": "VotingPowerChange", + "newVotingPower": { + "#bigint": "50" + }, + "timeAdvancement": { + "#bigint": "0" + }, + "validator": "node7" + }, + { + "consumerChain": "", + "consumersToStart": { + "#set": [] + }, + "consumersToStop": { + "#set": [] + }, + "kind": "VotingPowerChange", + "newVotingPower": { + "#bigint": "50" + }, + "timeAdvancement": { + "#bigint": "0" + }, + "validator": "node10" + }, + { + "consumerChain": "", + "consumersToStart": { + "#set": [ + "consumer2" + ] + }, + "consumersToStop": { + "#set": [] + }, + "kind": "EndAndBeginBlockForProvider", + "newVotingPower": { + "#bigint": "0" + }, + "timeAdvancement": { + "#bigint": "86400" + }, + "validator": "" + }, + { + "consumerChain": "", + "consumersToStart": { + "#set": [] + }, + "consumersToStop": { + "#set": [] + }, + "kind": "VotingPowerChange", + "newVotingPower": { + "#bigint": "50" + }, + "timeAdvancement": { + "#bigint": "0" + }, + "validator": "node2" + }, + { + "consumerChain": "", + "consumersToStart": { + "#set": [] + }, + "consumersToStop": { + "#set": [] + }, + "kind": "VotingPowerChange", + "newVotingPower": { + "#bigint": "100" + }, + "timeAdvancement": { + "#bigint": "0" + }, + "validator": "node4" + }, + { + "consumerChain": "", + "consumersToStart": { + "#set": [] + }, + "consumersToStop": { + "#set": [ + "consumer2" + ] + }, + "kind": "EndAndBeginBlockForProvider", + "newVotingPower": { + "#bigint": "0" + }, + "timeAdvancement": { + "#bigint": "604800" + }, + "validator": "" + } + ] + }, + { + "#meta": { + "index": 14 + }, + "currentState": { + "consumerStates": { + "#map": [ + [ + "consumer1", + { + "chainState": { + "currentValidatorSet": { + "#map": [ + [ + "node1", + { + "#bigint": "100" + } + ], + [ + "node10", + { + "#bigint": "100" + } + ], + [ + "node2", + { + "#bigint": "100" + } + ], + [ + "node3", + { + "#bigint": "100" + } + ], + [ + "node4", + { + "#bigint": "100" + } + ], + [ + "node5", + { + "#bigint": "100" + } + ], + [ + "node6", + { + "#bigint": "100" + } + ], + [ + "node7", + { + "#bigint": "100" + } + ], + [ + "node8", + { + "#bigint": "100" + } + ], + [ + "node9", + { + "#bigint": "100" + } + ] + ] + }, + "lastTimestamp": { + "#bigint": "0" + }, + "votingPowerHistory": [] + }, + "maturationTimes": { + "#map": [] + }, + "outstandingPacketsToProvider": [], + "receivedVscPackets": [] + } + ], + [ + "consumer2", + { + "chainState": { + "currentValidatorSet": { + "#map": [ + [ + "node1", + { + "#bigint": "50" + } + ], + [ + "node10", + { + "#bigint": "50" + } + ], + [ + "node2", + { + "#bigint": "100" + } + ], + [ + "node3", + { + "#bigint": "100" + } + ], + [ + "node4", + { + "#bigint": "50" + } + ], + [ + "node5", + { + "#bigint": "100" + } + ], + [ + "node6", + { + "#bigint": "100" + } + ], + [ + "node7", + { + "#bigint": "50" + } + ], + [ + "node8", + { + "#bigint": "100" + } + ], + [ + "node9", + { + "#bigint": "100" + } + ] + ] + }, + "lastTimestamp": { + "#bigint": "0" + }, + "votingPowerHistory": [] + }, + "maturationTimes": { + "#map": [] + }, + "outstandingPacketsToProvider": [], + "receivedVscPackets": [] + } + ], + [ + "consumer3", + { + "chainState": { + "currentValidatorSet": { + "#map": [ + [ + "node1", + { + "#bigint": "100" + } + ], + [ + "node10", + { + "#bigint": "100" + } + ], + [ + "node2", + { + "#bigint": "100" + } + ], + [ + "node3", + { + "#bigint": "100" + } + ], + [ + "node4", + { + "#bigint": "100" + } + ], + [ + "node5", + { + "#bigint": "100" + } + ], + [ + "node6", + { + "#bigint": "100" + } + ], + [ + "node7", + { + "#bigint": "100" + } + ], + [ + "node8", + { + "#bigint": "100" + } + ], + [ + "node9", + { + "#bigint": "100" + } + ] + ] + }, + "lastTimestamp": { + "#bigint": "2419200" + }, + "votingPowerHistory": [ + { + "#map": [ + [ + "node1", + { + "#bigint": "100" + } + ], + [ + "node10", + { + "#bigint": "100" + } + ], + [ + "node2", + { + "#bigint": "100" + } + ], + [ + "node3", + { + "#bigint": "100" + } + ], + [ + "node4", + { + "#bigint": "100" + } + ], + [ + "node5", + { + "#bigint": "100" + } + ], + [ + "node6", + { + "#bigint": "100" + } + ], + [ + "node7", + { + "#bigint": "100" + } + ], + [ + "node8", + { + "#bigint": "100" + } + ], + [ + "node9", + { + "#bigint": "100" + } + ] + ] + } + ] + }, + "maturationTimes": { + "#map": [] + }, + "outstandingPacketsToProvider": [], + "receivedVscPackets": [] + } + ] + ] + }, + "providerState": { + "chainState": { + "currentValidatorSet": { + "#map": [ + [ + "node1", + { + "#bigint": "50" + } + ], + [ + "node10", + { + "#bigint": "50" + } + ], + [ + "node2", + { + "#bigint": "50" + } + ], + [ + "node3", + { + "#bigint": "100" + } + ], + [ + "node4", + { + "#bigint": "100" + } + ], + [ + "node5", + { + "#bigint": "100" + } + ], + [ + "node6", + { + "#bigint": "100" + } + ], + [ + "node7", + { + "#bigint": "50" + } + ], + [ + "node8", + { + "#bigint": "100" + } + ], + [ + "node9", + { + "#bigint": "100" + } + ] + ] + }, + "lastTimestamp": { + "#bigint": "6134400" + }, + "votingPowerHistory": [ + { + "#map": [ + [ + "node1", + { + "#bigint": "50" + } + ], + [ + "node10", + { + "#bigint": "50" + } + ], + [ + "node2", + { + "#bigint": "50" + } + ], + [ + "node3", + { + "#bigint": "100" + } + ], + [ + "node4", + { + "#bigint": "100" + } + ], + [ + "node5", + { + "#bigint": "100" + } + ], + [ + "node6", + { + "#bigint": "100" + } + ], + [ + "node7", + { + "#bigint": "50" + } + ], + [ + "node8", + { + "#bigint": "100" + } + ], + [ + "node9", + { + "#bigint": "100" + } + ] + ] + }, + { + "#map": [ + [ + "node1", + { + "#bigint": "50" + } + ], + [ + "node10", + { + "#bigint": "50" + } + ], + [ + "node2", + { + "#bigint": "50" + } + ], + [ + "node3", + { + "#bigint": "100" + } + ], + [ + "node4", + { + "#bigint": "100" + } + ], + [ + "node5", + { + "#bigint": "100" + } + ], + [ + "node6", + { + "#bigint": "100" + } + ], + [ + "node7", + { + "#bigint": "50" + } + ], + [ + "node8", + { + "#bigint": "100" + } + ], + [ + "node9", + { + "#bigint": "100" + } + ] + ] + }, + { + "#map": [ + [ + "node1", + { + "#bigint": "50" + } + ], + [ + "node10", + { + "#bigint": "50" + } + ], + [ + "node2", + { + "#bigint": "100" + } + ], + [ + "node3", + { + "#bigint": "100" + } + ], + [ + "node4", + { + "#bigint": "50" + } + ], + [ + "node5", + { + "#bigint": "100" + } + ], + [ + "node6", + { + "#bigint": "100" + } + ], + [ + "node7", + { + "#bigint": "50" + } + ], + [ + "node8", + { + "#bigint": "100" + } + ], + [ + "node9", + { + "#bigint": "100" + } + ] + ] + }, + { + "#map": [ + [ + "node1", + { + "#bigint": "50" + } + ], + [ + "node10", + { + "#bigint": "100" + } + ], + [ + "node2", + { + "#bigint": "100" + } + ], + [ + "node3", + { + "#bigint": "100" + } + ], + [ + "node4", + { + "#bigint": "50" + } + ], + [ + "node5", + { + "#bigint": "100" + } + ], + [ + "node6", + { + "#bigint": "100" + } + ], + [ + "node7", + { + "#bigint": "100" + } + ], + [ + "node8", + { + "#bigint": "100" + } + ], + [ + "node9", + { + "#bigint": "100" + } + ] + ] + }, + { + "#map": [ + [ + "node1", + { + "#bigint": "100" + } + ], + [ + "node10", + { + "#bigint": "100" + } + ], + [ + "node2", + { + "#bigint": "100" + } + ], + [ + "node3", + { + "#bigint": "100" + } + ], + [ + "node4", + { + "#bigint": "100" + } + ], + [ + "node5", + { + "#bigint": "100" + } + ], + [ + "node6", + { + "#bigint": "100" + } + ], + [ + "node7", + { + "#bigint": "100" + } + ], + [ + "node8", + { + "#bigint": "100" + } + ], + [ + "node9", + { + "#bigint": "100" + } + ] + ] + }, + { + "#map": [ + [ + "node1", + { + "#bigint": "100" + } + ], + [ + "node10", + { + "#bigint": "100" + } + ], + [ + "node2", + { + "#bigint": "100" + } + ], + [ + "node3", + { + "#bigint": "100" + } + ], + [ + "node4", + { + "#bigint": "100" + } + ], + [ + "node5", + { + "#bigint": "100" + } + ], + [ + "node6", + { + "#bigint": "100" + } + ], + [ + "node7", + { + "#bigint": "100" + } + ], + [ + "node8", + { + "#bigint": "100" + } + ], + [ + "node9", + { + "#bigint": "100" + } + ] + ] + } + ] + }, + "consumerStatus": { + "#map": [ + [ + "consumer1", + "stopped" + ], + [ + "consumer2", + "stopped" + ], + [ + "consumer3", + "stopped" + ] + ] + }, + "outstandingPacketsToConsumer": { + "#map": [ + [ + "consumer1", + [] + ], + [ + "consumer2", + [ + { + "id": { + "#bigint": "0" + }, + "sendingTime": { + "#bigint": "4924800" + }, + "validatorSet": { + "#map": [ + [ + "node1", + { + "#bigint": "50" + } + ], + [ + "node10", + { + "#bigint": "50" + } + ], + [ + "node2", + { + "#bigint": "100" + } + ], + [ + "node3", + { + "#bigint": "100" + } + ], + [ + "node4", + { + "#bigint": "50" + } + ], + [ + "node5", + { + "#bigint": "100" + } + ], + [ + "node6", + { + "#bigint": "100" + } + ], + [ + "node7", + { + "#bigint": "50" + } + ], + [ + "node8", + { + "#bigint": "100" + } + ], + [ + "node9", + { + "#bigint": "100" + } + ] + ] + } + } + ] + ], + [ + "consumer3", + [] + ] + ] + }, + "providerValidatorSetChangedInThisBlock": true, + "receivedMaturations": { + "#set": [] + }, + "runningVscId": { + "#bigint": "1" + }, + "sentVscPacketsToConsumer": { + "#map": [ + [ + "consumer1", + [] + ], + [ + "consumer2", + [ + { + "id": { + "#bigint": "0" + }, + "sendingTime": { + "#bigint": "4924800" + }, + "validatorSet": { + "#map": [ + [ + "node1", + { + "#bigint": "50" + } + ], + [ + "node10", + { + "#bigint": "50" + } + ], + [ + "node2", + { + "#bigint": "100" + } + ], + [ + "node3", + { + "#bigint": "100" + } + ], + [ + "node4", + { + "#bigint": "50" + } + ], + [ + "node5", + { + "#bigint": "100" + } + ], + [ + "node6", + { + "#bigint": "100" + } + ], + [ + "node7", + { + "#bigint": "50" + } + ], + [ + "node8", + { + "#bigint": "100" + } + ], + [ + "node9", + { + "#bigint": "100" + } + ] + ] + } + } + ] + ], + [ + "consumer3", + [] + ] + ] + } + } + }, + "trace": [ + { + "consumerChain": "", + "consumersToStart": { + "#set": [] + }, + "consumersToStop": { + "#set": [] + }, + "kind": "init", + "newVotingPower": { + "#bigint": "0" + }, + "timeAdvancement": { + "#bigint": "0" + }, + "validator": "" + }, + { + "consumerChain": "", + "consumersToStart": { + "#set": [ + "consumer1", + "consumer3" + ] + }, + "consumersToStop": { + "#set": [] + }, + "kind": "EndAndBeginBlockForProvider", + "newVotingPower": { + "#bigint": "0" + }, + "timeAdvancement": { + "#bigint": "2419200" + }, + "validator": "" + }, + { + "consumerChain": "consumer3", + "consumersToStart": { + "#set": [] + }, + "consumersToStop": { + "#set": [] + }, + "kind": "EndAndBeginBlockForConsumer", + "newVotingPower": { + "#bigint": "0" + }, + "timeAdvancement": { + "#bigint": "2419200" + }, + "validator": "" + }, + { + "consumerChain": "", + "consumersToStart": { + "#set": [] + }, + "consumersToStop": { + "#set": [] + }, + "kind": "VotingPowerChange", + "newVotingPower": { + "#bigint": "100" + }, + "timeAdvancement": { + "#bigint": "0" + }, + "validator": "node1" + }, + { + "consumerChain": "", + "consumersToStart": { + "#set": [] + }, + "consumersToStop": { + "#set": [] + }, + "kind": "VotingPowerChange", + "newVotingPower": { + "#bigint": "50" + }, + "timeAdvancement": { + "#bigint": "0" + }, + "validator": "node1" + }, + { + "consumerChain": "", + "consumersToStart": { + "#set": [] + }, + "consumersToStop": { + "#set": [] + }, + "kind": "VotingPowerChange", + "newVotingPower": { + "#bigint": "50" + }, + "timeAdvancement": { + "#bigint": "0" + }, + "validator": "node4" + }, + { + "consumerChain": "", + "consumersToStart": { + "#set": [] + }, + "consumersToStop": { + "#set": [ + "consumer1", + "consumer3" + ] + }, + "kind": "EndAndBeginBlockForProvider", + "newVotingPower": { + "#bigint": "0" + }, + "timeAdvancement": { + "#bigint": "2419200" + }, + "validator": "" + }, + { + "consumerChain": "", + "consumersToStart": { + "#set": [] + }, + "consumersToStop": { + "#set": [] + }, + "kind": "VotingPowerChange", + "newVotingPower": { + "#bigint": "100" + }, + "timeAdvancement": { + "#bigint": "0" + }, + "validator": "node10" + }, + { + "consumerChain": "", + "consumersToStart": { + "#set": [] + }, + "consumersToStop": { + "#set": [] + }, + "kind": "VotingPowerChange", + "newVotingPower": { + "#bigint": "50" + }, + "timeAdvancement": { + "#bigint": "0" + }, + "validator": "node7" + }, + { + "consumerChain": "", + "consumersToStart": { + "#set": [] + }, + "consumersToStop": { + "#set": [] + }, + "kind": "VotingPowerChange", + "newVotingPower": { + "#bigint": "50" + }, + "timeAdvancement": { + "#bigint": "0" + }, + "validator": "node10" + }, + { + "consumerChain": "", + "consumersToStart": { + "#set": [ + "consumer2" + ] + }, + "consumersToStop": { + "#set": [] + }, + "kind": "EndAndBeginBlockForProvider", + "newVotingPower": { + "#bigint": "0" + }, + "timeAdvancement": { + "#bigint": "86400" + }, + "validator": "" + }, + { + "consumerChain": "", + "consumersToStart": { + "#set": [] + }, + "consumersToStop": { + "#set": [] + }, + "kind": "VotingPowerChange", + "newVotingPower": { + "#bigint": "50" + }, + "timeAdvancement": { + "#bigint": "0" + }, + "validator": "node2" + }, + { + "consumerChain": "", + "consumersToStart": { + "#set": [] + }, + "consumersToStop": { + "#set": [] + }, + "kind": "VotingPowerChange", + "newVotingPower": { + "#bigint": "100" + }, + "timeAdvancement": { + "#bigint": "0" + }, + "validator": "node4" + }, + { + "consumerChain": "", + "consumersToStart": { + "#set": [] + }, + "consumersToStop": { + "#set": [ + "consumer2" + ] + }, + "kind": "EndAndBeginBlockForProvider", + "newVotingPower": { + "#bigint": "0" + }, + "timeAdvancement": { + "#bigint": "604800" + }, + "validator": "" + }, + { + "consumerChain": "", + "consumersToStart": { + "#set": [] + }, + "consumersToStop": { + "#set": [] + }, + "kind": "EndAndBeginBlockForProvider", + "newVotingPower": { + "#bigint": "0" + }, + "timeAdvancement": { + "#bigint": "604800" + }, + "validator": "" + } + ] + }, + { + "#meta": { + "index": 15 + }, + "currentState": { + "consumerStates": { + "#map": [ + [ + "consumer1", + { + "chainState": { + "currentValidatorSet": { + "#map": [ + [ + "node1", + { + "#bigint": "100" + } + ], + [ + "node10", + { + "#bigint": "100" + } + ], + [ + "node2", + { + "#bigint": "100" + } + ], + [ + "node3", + { + "#bigint": "100" + } + ], + [ + "node4", + { + "#bigint": "100" + } + ], + [ + "node5", + { + "#bigint": "100" + } + ], + [ + "node6", + { + "#bigint": "100" + } + ], + [ + "node7", + { + "#bigint": "100" + } + ], + [ + "node8", + { + "#bigint": "100" + } + ], + [ + "node9", + { + "#bigint": "100" + } + ] + ] + }, + "lastTimestamp": { + "#bigint": "0" + }, + "votingPowerHistory": [] + }, + "maturationTimes": { + "#map": [] + }, + "outstandingPacketsToProvider": [], + "receivedVscPackets": [] + } + ], + [ + "consumer2", + { + "chainState": { + "currentValidatorSet": { + "#map": [ + [ + "node1", + { + "#bigint": "50" + } + ], + [ + "node10", + { + "#bigint": "50" + } + ], + [ + "node2", + { + "#bigint": "100" + } + ], + [ + "node3", + { + "#bigint": "100" + } + ], + [ + "node4", + { + "#bigint": "50" + } + ], + [ + "node5", + { + "#bigint": "100" + } + ], + [ + "node6", + { + "#bigint": "100" + } + ], + [ + "node7", + { + "#bigint": "50" + } + ], + [ + "node8", + { + "#bigint": "100" + } + ], + [ + "node9", + { + "#bigint": "100" + } + ] + ] + }, + "lastTimestamp": { + "#bigint": "0" + }, + "votingPowerHistory": [] + }, + "maturationTimes": { + "#map": [] + }, + "outstandingPacketsToProvider": [], + "receivedVscPackets": [] + } + ], + [ + "consumer3", + { + "chainState": { + "currentValidatorSet": { + "#map": [ + [ + "node1", + { + "#bigint": "100" + } + ], + [ + "node10", + { + "#bigint": "100" + } + ], + [ + "node2", + { + "#bigint": "100" + } + ], + [ + "node3", + { + "#bigint": "100" + } + ], + [ + "node4", + { + "#bigint": "100" + } + ], + [ + "node5", + { + "#bigint": "100" + } + ], + [ + "node6", + { + "#bigint": "100" + } + ], + [ + "node7", + { + "#bigint": "100" + } + ], + [ + "node8", + { + "#bigint": "100" + } + ], + [ + "node9", + { + "#bigint": "100" + } + ] + ] + }, + "lastTimestamp": { + "#bigint": "2419200" + }, + "votingPowerHistory": [ + { + "#map": [ + [ + "node1", + { + "#bigint": "100" + } + ], + [ + "node10", + { + "#bigint": "100" + } + ], + [ + "node2", + { + "#bigint": "100" + } + ], + [ + "node3", + { + "#bigint": "100" + } + ], + [ + "node4", + { + "#bigint": "100" + } + ], + [ + "node5", + { + "#bigint": "100" + } + ], + [ + "node6", + { + "#bigint": "100" + } + ], + [ + "node7", + { + "#bigint": "100" + } + ], + [ + "node8", + { + "#bigint": "100" + } + ], + [ + "node9", + { + "#bigint": "100" + } + ] + ] + } + ] + }, + "maturationTimes": { + "#map": [] + }, + "outstandingPacketsToProvider": [], + "receivedVscPackets": [] + } + ] + ] + }, + "providerState": { + "chainState": { + "currentValidatorSet": { + "#map": [ + [ + "node1", + { + "#bigint": "50" + } + ], + [ + "node10", + { + "#bigint": "50" + } + ], + [ + "node2", + { + "#bigint": "0" + } + ], + [ + "node3", + { + "#bigint": "100" + } + ], + [ + "node4", + { + "#bigint": "100" + } + ], + [ + "node5", + { + "#bigint": "100" + } + ], + [ + "node6", + { + "#bigint": "100" + } + ], + [ + "node7", + { + "#bigint": "50" + } + ], + [ + "node8", + { + "#bigint": "100" + } + ], + [ + "node9", + { + "#bigint": "100" + } + ] + ] + }, + "lastTimestamp": { + "#bigint": "6134400" + }, + "votingPowerHistory": [ + { + "#map": [ + [ + "node1", + { + "#bigint": "50" + } + ], + [ + "node10", + { + "#bigint": "50" + } + ], + [ + "node2", + { + "#bigint": "50" + } + ], + [ + "node3", + { + "#bigint": "100" + } + ], + [ + "node4", + { + "#bigint": "100" + } + ], + [ + "node5", + { + "#bigint": "100" + } + ], + [ + "node6", + { + "#bigint": "100" + } + ], + [ + "node7", + { + "#bigint": "50" + } + ], + [ + "node8", + { + "#bigint": "100" + } + ], + [ + "node9", + { + "#bigint": "100" + } + ] + ] + }, + { + "#map": [ + [ + "node1", + { + "#bigint": "50" + } + ], + [ + "node10", + { + "#bigint": "50" + } + ], + [ + "node2", + { + "#bigint": "50" + } + ], + [ + "node3", + { + "#bigint": "100" + } + ], + [ + "node4", + { + "#bigint": "100" + } + ], + [ + "node5", + { + "#bigint": "100" + } + ], + [ + "node6", + { + "#bigint": "100" + } + ], + [ + "node7", + { + "#bigint": "50" + } + ], + [ + "node8", + { + "#bigint": "100" + } + ], + [ + "node9", + { + "#bigint": "100" + } + ] + ] + }, + { + "#map": [ + [ + "node1", + { + "#bigint": "50" + } + ], + [ + "node10", + { + "#bigint": "50" + } + ], + [ + "node2", + { + "#bigint": "100" + } + ], + [ + "node3", + { + "#bigint": "100" + } + ], + [ + "node4", + { + "#bigint": "50" + } + ], + [ + "node5", + { + "#bigint": "100" + } + ], + [ + "node6", + { + "#bigint": "100" + } + ], + [ + "node7", + { + "#bigint": "50" + } + ], + [ + "node8", + { + "#bigint": "100" + } + ], + [ + "node9", + { + "#bigint": "100" + } + ] + ] + }, + { + "#map": [ + [ + "node1", + { + "#bigint": "50" + } + ], + [ + "node10", + { + "#bigint": "100" + } + ], + [ + "node2", + { + "#bigint": "100" + } + ], + [ + "node3", + { + "#bigint": "100" + } + ], + [ + "node4", + { + "#bigint": "50" + } + ], + [ + "node5", + { + "#bigint": "100" + } + ], + [ + "node6", + { + "#bigint": "100" + } + ], + [ + "node7", + { + "#bigint": "100" + } + ], + [ + "node8", + { + "#bigint": "100" + } + ], + [ + "node9", + { + "#bigint": "100" + } + ] + ] + }, + { + "#map": [ + [ + "node1", + { + "#bigint": "100" + } + ], + [ + "node10", + { + "#bigint": "100" + } + ], + [ + "node2", + { + "#bigint": "100" + } + ], + [ + "node3", + { + "#bigint": "100" + } + ], + [ + "node4", + { + "#bigint": "100" + } + ], + [ + "node5", + { + "#bigint": "100" + } + ], + [ + "node6", + { + "#bigint": "100" + } + ], + [ + "node7", + { + "#bigint": "100" + } + ], + [ + "node8", + { + "#bigint": "100" + } + ], + [ + "node9", + { + "#bigint": "100" + } + ] + ] + }, + { + "#map": [ + [ + "node1", + { + "#bigint": "100" + } + ], + [ + "node10", + { + "#bigint": "100" + } + ], + [ + "node2", + { + "#bigint": "100" + } + ], + [ + "node3", + { + "#bigint": "100" + } + ], + [ + "node4", + { + "#bigint": "100" + } + ], + [ + "node5", + { + "#bigint": "100" + } + ], + [ + "node6", + { + "#bigint": "100" + } + ], + [ + "node7", + { + "#bigint": "100" + } + ], + [ + "node8", + { + "#bigint": "100" + } + ], + [ + "node9", + { + "#bigint": "100" + } + ] + ] + } + ] + }, + "consumerStatus": { + "#map": [ + [ + "consumer1", + "stopped" + ], + [ + "consumer2", + "stopped" + ], + [ + "consumer3", + "stopped" + ] + ] + }, + "outstandingPacketsToConsumer": { + "#map": [ + [ + "consumer1", + [] + ], + [ + "consumer2", + [ + { + "id": { + "#bigint": "0" + }, + "sendingTime": { + "#bigint": "4924800" + }, + "validatorSet": { + "#map": [ + [ + "node1", + { + "#bigint": "50" + } + ], + [ + "node10", + { + "#bigint": "50" + } + ], + [ + "node2", + { + "#bigint": "100" + } + ], + [ + "node3", + { + "#bigint": "100" + } + ], + [ + "node4", + { + "#bigint": "50" + } + ], + [ + "node5", + { + "#bigint": "100" + } + ], + [ + "node6", + { + "#bigint": "100" + } + ], + [ + "node7", + { + "#bigint": "50" + } + ], + [ + "node8", + { + "#bigint": "100" + } + ], + [ + "node9", + { + "#bigint": "100" + } + ] + ] + } + } + ] + ], + [ + "consumer3", + [] + ] + ] + }, + "providerValidatorSetChangedInThisBlock": true, + "receivedMaturations": { + "#set": [] + }, + "runningVscId": { + "#bigint": "1" + }, + "sentVscPacketsToConsumer": { + "#map": [ + [ + "consumer1", + [] + ], + [ + "consumer2", + [ + { + "id": { + "#bigint": "0" + }, + "sendingTime": { + "#bigint": "4924800" + }, + "validatorSet": { + "#map": [ + [ + "node1", + { + "#bigint": "50" + } + ], + [ + "node10", + { + "#bigint": "50" + } + ], + [ + "node2", + { + "#bigint": "100" + } + ], + [ + "node3", + { + "#bigint": "100" + } + ], + [ + "node4", + { + "#bigint": "50" + } + ], + [ + "node5", + { + "#bigint": "100" + } + ], + [ + "node6", + { + "#bigint": "100" + } + ], + [ + "node7", + { + "#bigint": "50" + } + ], + [ + "node8", + { + "#bigint": "100" + } + ], + [ + "node9", + { + "#bigint": "100" + } + ] + ] + } + } + ] + ], + [ + "consumer3", + [] + ] + ] + } + } + }, + "trace": [ + { + "consumerChain": "", + "consumersToStart": { + "#set": [] + }, + "consumersToStop": { + "#set": [] + }, + "kind": "init", + "newVotingPower": { + "#bigint": "0" + }, + "timeAdvancement": { + "#bigint": "0" + }, + "validator": "" + }, + { + "consumerChain": "", + "consumersToStart": { + "#set": [ + "consumer1", + "consumer3" + ] + }, + "consumersToStop": { + "#set": [] + }, + "kind": "EndAndBeginBlockForProvider", + "newVotingPower": { + "#bigint": "0" + }, + "timeAdvancement": { + "#bigint": "2419200" + }, + "validator": "" + }, + { + "consumerChain": "consumer3", + "consumersToStart": { + "#set": [] + }, + "consumersToStop": { + "#set": [] + }, + "kind": "EndAndBeginBlockForConsumer", + "newVotingPower": { + "#bigint": "0" + }, + "timeAdvancement": { + "#bigint": "2419200" + }, + "validator": "" + }, + { + "consumerChain": "", + "consumersToStart": { + "#set": [] + }, + "consumersToStop": { + "#set": [] + }, + "kind": "VotingPowerChange", + "newVotingPower": { + "#bigint": "100" + }, + "timeAdvancement": { + "#bigint": "0" + }, + "validator": "node1" + }, + { + "consumerChain": "", + "consumersToStart": { + "#set": [] + }, + "consumersToStop": { + "#set": [] + }, + "kind": "VotingPowerChange", + "newVotingPower": { + "#bigint": "50" + }, + "timeAdvancement": { + "#bigint": "0" + }, + "validator": "node1" + }, + { + "consumerChain": "", + "consumersToStart": { + "#set": [] + }, + "consumersToStop": { + "#set": [] + }, + "kind": "VotingPowerChange", + "newVotingPower": { + "#bigint": "50" + }, + "timeAdvancement": { + "#bigint": "0" + }, + "validator": "node4" + }, + { + "consumerChain": "", + "consumersToStart": { + "#set": [] + }, + "consumersToStop": { + "#set": [ + "consumer1", + "consumer3" + ] + }, + "kind": "EndAndBeginBlockForProvider", + "newVotingPower": { + "#bigint": "0" + }, + "timeAdvancement": { + "#bigint": "2419200" + }, + "validator": "" + }, + { + "consumerChain": "", + "consumersToStart": { + "#set": [] + }, + "consumersToStop": { + "#set": [] + }, + "kind": "VotingPowerChange", + "newVotingPower": { + "#bigint": "100" + }, + "timeAdvancement": { + "#bigint": "0" + }, + "validator": "node10" + }, + { + "consumerChain": "", + "consumersToStart": { + "#set": [] + }, + "consumersToStop": { + "#set": [] + }, + "kind": "VotingPowerChange", + "newVotingPower": { + "#bigint": "50" + }, + "timeAdvancement": { + "#bigint": "0" + }, + "validator": "node7" + }, + { + "consumerChain": "", + "consumersToStart": { + "#set": [] + }, + "consumersToStop": { + "#set": [] + }, + "kind": "VotingPowerChange", + "newVotingPower": { + "#bigint": "50" + }, + "timeAdvancement": { + "#bigint": "0" + }, + "validator": "node10" + }, + { + "consumerChain": "", + "consumersToStart": { + "#set": [ + "consumer2" + ] + }, + "consumersToStop": { + "#set": [] + }, + "kind": "EndAndBeginBlockForProvider", + "newVotingPower": { + "#bigint": "0" + }, + "timeAdvancement": { + "#bigint": "86400" + }, + "validator": "" + }, + { + "consumerChain": "", + "consumersToStart": { + "#set": [] + }, + "consumersToStop": { + "#set": [] + }, + "kind": "VotingPowerChange", + "newVotingPower": { + "#bigint": "50" + }, + "timeAdvancement": { + "#bigint": "0" + }, + "validator": "node2" + }, + { + "consumerChain": "", + "consumersToStart": { + "#set": [] + }, + "consumersToStop": { + "#set": [] + }, + "kind": "VotingPowerChange", + "newVotingPower": { + "#bigint": "100" + }, + "timeAdvancement": { + "#bigint": "0" + }, + "validator": "node4" + }, + { + "consumerChain": "", + "consumersToStart": { + "#set": [] + }, + "consumersToStop": { + "#set": [ + "consumer2" + ] + }, + "kind": "EndAndBeginBlockForProvider", + "newVotingPower": { + "#bigint": "0" + }, + "timeAdvancement": { + "#bigint": "604800" + }, + "validator": "" + }, + { + "consumerChain": "", + "consumersToStart": { + "#set": [] + }, + "consumersToStop": { + "#set": [] + }, + "kind": "EndAndBeginBlockForProvider", + "newVotingPower": { + "#bigint": "0" + }, + "timeAdvancement": { + "#bigint": "604800" + }, + "validator": "" + }, + { + "consumerChain": "", + "consumersToStart": { + "#set": [] + }, + "consumersToStop": { + "#set": [] + }, + "kind": "VotingPowerChange", + "newVotingPower": { + "#bigint": "0" + }, + "timeAdvancement": { + "#bigint": "0" + }, + "validator": "node2" + } + ] + }, + { + "#meta": { + "index": 16 + }, + "currentState": { + "consumerStates": { + "#map": [ + [ + "consumer1", + { + "chainState": { + "currentValidatorSet": { + "#map": [ + [ + "node1", + { + "#bigint": "100" + } + ], + [ + "node10", + { + "#bigint": "100" + } + ], + [ + "node2", + { + "#bigint": "100" + } + ], + [ + "node3", + { + "#bigint": "100" + } + ], + [ + "node4", + { + "#bigint": "100" + } + ], + [ + "node5", + { + "#bigint": "100" + } + ], + [ + "node6", + { + "#bigint": "100" + } + ], + [ + "node7", + { + "#bigint": "100" + } + ], + [ + "node8", + { + "#bigint": "100" + } + ], + [ + "node9", + { + "#bigint": "100" + } + ] + ] + }, + "lastTimestamp": { + "#bigint": "0" + }, + "votingPowerHistory": [] + }, + "maturationTimes": { + "#map": [] + }, + "outstandingPacketsToProvider": [], + "receivedVscPackets": [] + } + ], + [ + "consumer2", + { + "chainState": { + "currentValidatorSet": { + "#map": [ + [ + "node1", + { + "#bigint": "50" + } + ], + [ + "node10", + { + "#bigint": "50" + } + ], + [ + "node2", + { + "#bigint": "100" + } + ], + [ + "node3", + { + "#bigint": "100" + } + ], + [ + "node4", + { + "#bigint": "50" + } + ], + [ + "node5", + { + "#bigint": "100" + } + ], + [ + "node6", + { + "#bigint": "100" + } + ], + [ + "node7", + { + "#bigint": "50" + } + ], + [ + "node8", + { + "#bigint": "100" + } + ], + [ + "node9", + { + "#bigint": "100" + } + ] + ] + }, + "lastTimestamp": { + "#bigint": "0" + }, + "votingPowerHistory": [] + }, + "maturationTimes": { + "#map": [] + }, + "outstandingPacketsToProvider": [], + "receivedVscPackets": [] + } + ], + [ + "consumer3", + { + "chainState": { + "currentValidatorSet": { + "#map": [ + [ + "node1", + { + "#bigint": "100" + } + ], + [ + "node10", + { + "#bigint": "100" + } + ], + [ + "node2", + { + "#bigint": "100" + } + ], + [ + "node3", + { + "#bigint": "100" + } + ], + [ + "node4", + { + "#bigint": "100" + } + ], + [ + "node5", + { + "#bigint": "100" + } + ], + [ + "node6", + { + "#bigint": "100" + } + ], + [ + "node7", + { + "#bigint": "100" + } + ], + [ + "node8", + { + "#bigint": "100" + } + ], + [ + "node9", + { + "#bigint": "100" + } + ] + ] + }, + "lastTimestamp": { + "#bigint": "2419200" + }, + "votingPowerHistory": [ + { + "#map": [ + [ + "node1", + { + "#bigint": "100" + } + ], + [ + "node10", + { + "#bigint": "100" + } + ], + [ + "node2", + { + "#bigint": "100" + } + ], + [ + "node3", + { + "#bigint": "100" + } + ], + [ + "node4", + { + "#bigint": "100" + } + ], + [ + "node5", + { + "#bigint": "100" + } + ], + [ + "node6", + { + "#bigint": "100" + } + ], + [ + "node7", + { + "#bigint": "100" + } + ], + [ + "node8", + { + "#bigint": "100" + } + ], + [ + "node9", + { + "#bigint": "100" + } + ] + ] + } + ] + }, + "maturationTimes": { + "#map": [] + }, + "outstandingPacketsToProvider": [], + "receivedVscPackets": [] + } + ] + ] + }, + "providerState": { + "chainState": { + "currentValidatorSet": { + "#map": [ + [ + "node1", + { + "#bigint": "50" + } + ], + [ + "node10", + { + "#bigint": "50" + } + ], + [ + "node2", + { + "#bigint": "0" + } + ], + [ + "node3", + { + "#bigint": "100" + } + ], + [ + "node4", + { + "#bigint": "100" + } + ], + [ + "node5", + { + "#bigint": "100" + } + ], + [ + "node6", + { + "#bigint": "100" + } + ], + [ + "node7", + { + "#bigint": "50" + } + ], + [ + "node8", + { + "#bigint": "100" + } + ], + [ + "node9", + { + "#bigint": "100" + } + ] + ] + }, + "lastTimestamp": { + "#bigint": "6220800" + }, + "votingPowerHistory": [ + { + "#map": [ + [ + "node1", + { + "#bigint": "50" + } + ], + [ + "node10", + { + "#bigint": "50" + } + ], + [ + "node2", + { + "#bigint": "0" + } + ], + [ + "node3", + { + "#bigint": "100" + } + ], + [ + "node4", + { + "#bigint": "100" + } + ], + [ + "node5", + { + "#bigint": "100" + } + ], + [ + "node6", + { + "#bigint": "100" + } + ], + [ + "node7", + { + "#bigint": "50" + } + ], + [ + "node8", + { + "#bigint": "100" + } + ], + [ + "node9", + { + "#bigint": "100" + } + ] + ] + }, + { + "#map": [ + [ + "node1", + { + "#bigint": "50" + } + ], + [ + "node10", + { + "#bigint": "50" + } + ], + [ + "node2", + { + "#bigint": "50" + } + ], + [ + "node3", + { + "#bigint": "100" + } + ], + [ + "node4", + { + "#bigint": "100" + } + ], + [ + "node5", + { + "#bigint": "100" + } + ], + [ + "node6", + { + "#bigint": "100" + } + ], + [ + "node7", + { + "#bigint": "50" + } + ], + [ + "node8", + { + "#bigint": "100" + } + ], + [ + "node9", + { + "#bigint": "100" + } + ] + ] + }, + { + "#map": [ + [ + "node1", + { + "#bigint": "50" + } + ], + [ + "node10", + { + "#bigint": "50" + } + ], + [ + "node2", + { + "#bigint": "50" + } + ], + [ + "node3", + { + "#bigint": "100" + } + ], + [ + "node4", + { + "#bigint": "100" + } + ], + [ + "node5", + { + "#bigint": "100" + } + ], + [ + "node6", + { + "#bigint": "100" + } + ], + [ + "node7", + { + "#bigint": "50" + } + ], + [ + "node8", + { + "#bigint": "100" + } + ], + [ + "node9", + { + "#bigint": "100" + } + ] + ] + }, + { + "#map": [ + [ + "node1", + { + "#bigint": "50" + } + ], + [ + "node10", + { + "#bigint": "50" + } + ], + [ + "node2", + { + "#bigint": "100" + } + ], + [ + "node3", + { + "#bigint": "100" + } + ], + [ + "node4", + { + "#bigint": "50" + } + ], + [ + "node5", + { + "#bigint": "100" + } + ], + [ + "node6", + { + "#bigint": "100" + } + ], + [ + "node7", + { + "#bigint": "50" + } + ], + [ + "node8", + { + "#bigint": "100" + } + ], + [ + "node9", + { + "#bigint": "100" + } + ] + ] + }, + { + "#map": [ + [ + "node1", + { + "#bigint": "50" + } + ], + [ + "node10", + { + "#bigint": "100" + } + ], + [ + "node2", + { + "#bigint": "100" + } + ], + [ + "node3", + { + "#bigint": "100" + } + ], + [ + "node4", + { + "#bigint": "50" + } + ], + [ + "node5", + { + "#bigint": "100" + } + ], + [ + "node6", + { + "#bigint": "100" + } + ], + [ + "node7", + { + "#bigint": "100" + } + ], + [ + "node8", + { + "#bigint": "100" + } + ], + [ + "node9", + { + "#bigint": "100" + } + ] + ] + }, + { + "#map": [ + [ + "node1", + { + "#bigint": "100" + } + ], + [ + "node10", + { + "#bigint": "100" + } + ], + [ + "node2", + { + "#bigint": "100" + } + ], + [ + "node3", + { + "#bigint": "100" + } + ], + [ + "node4", + { + "#bigint": "100" + } + ], + [ + "node5", + { + "#bigint": "100" + } + ], + [ + "node6", + { + "#bigint": "100" + } + ], + [ + "node7", + { + "#bigint": "100" + } + ], + [ + "node8", + { + "#bigint": "100" + } + ], + [ + "node9", + { + "#bigint": "100" + } + ] + ] + }, + { + "#map": [ + [ + "node1", + { + "#bigint": "100" + } + ], + [ + "node10", + { + "#bigint": "100" + } + ], + [ + "node2", + { + "#bigint": "100" + } + ], + [ + "node3", + { + "#bigint": "100" + } + ], + [ + "node4", + { + "#bigint": "100" + } + ], + [ + "node5", + { + "#bigint": "100" + } + ], + [ + "node6", + { + "#bigint": "100" + } + ], + [ + "node7", + { + "#bigint": "100" + } + ], + [ + "node8", + { + "#bigint": "100" + } + ], + [ + "node9", + { + "#bigint": "100" + } + ] + ] + } + ] + }, + "consumerStatus": { + "#map": [ + [ + "consumer1", + "stopped" + ], + [ + "consumer2", + "stopped" + ], + [ + "consumer3", + "stopped" + ] + ] + }, + "outstandingPacketsToConsumer": { + "#map": [ + [ + "consumer1", + [] + ], + [ + "consumer2", + [ + { + "id": { + "#bigint": "0" + }, + "sendingTime": { + "#bigint": "4924800" + }, + "validatorSet": { + "#map": [ + [ + "node1", + { + "#bigint": "50" + } + ], + [ + "node10", + { + "#bigint": "50" + } + ], + [ + "node2", + { + "#bigint": "100" + } + ], + [ + "node3", + { + "#bigint": "100" + } + ], + [ + "node4", + { + "#bigint": "50" + } + ], + [ + "node5", + { + "#bigint": "100" + } + ], + [ + "node6", + { + "#bigint": "100" + } + ], + [ + "node7", + { + "#bigint": "50" + } + ], + [ + "node8", + { + "#bigint": "100" + } + ], + [ + "node9", + { + "#bigint": "100" + } + ] + ] + } + } + ] + ], + [ + "consumer3", + [] + ] + ] + }, + "providerValidatorSetChangedInThisBlock": true, + "receivedMaturations": { + "#set": [] + }, + "runningVscId": { + "#bigint": "1" + }, + "sentVscPacketsToConsumer": { + "#map": [ + [ + "consumer1", + [] + ], + [ + "consumer2", + [ + { + "id": { + "#bigint": "0" + }, + "sendingTime": { + "#bigint": "4924800" + }, + "validatorSet": { + "#map": [ + [ + "node1", + { + "#bigint": "50" + } + ], + [ + "node10", + { + "#bigint": "50" + } + ], + [ + "node2", + { + "#bigint": "100" + } + ], + [ + "node3", + { + "#bigint": "100" + } + ], + [ + "node4", + { + "#bigint": "50" + } + ], + [ + "node5", + { + "#bigint": "100" + } + ], + [ + "node6", + { + "#bigint": "100" + } + ], + [ + "node7", + { + "#bigint": "50" + } + ], + [ + "node8", + { + "#bigint": "100" + } + ], + [ + "node9", + { + "#bigint": "100" + } + ] + ] + } + } + ] + ], + [ + "consumer3", + [] + ] + ] + } + } + }, + "trace": [ + { + "consumerChain": "", + "consumersToStart": { + "#set": [] + }, + "consumersToStop": { + "#set": [] + }, + "kind": "init", + "newVotingPower": { + "#bigint": "0" + }, + "timeAdvancement": { + "#bigint": "0" + }, + "validator": "" + }, + { + "consumerChain": "", + "consumersToStart": { + "#set": [ + "consumer1", + "consumer3" + ] + }, + "consumersToStop": { + "#set": [] + }, + "kind": "EndAndBeginBlockForProvider", + "newVotingPower": { + "#bigint": "0" + }, + "timeAdvancement": { + "#bigint": "2419200" + }, + "validator": "" + }, + { + "consumerChain": "consumer3", + "consumersToStart": { + "#set": [] + }, + "consumersToStop": { + "#set": [] + }, + "kind": "EndAndBeginBlockForConsumer", + "newVotingPower": { + "#bigint": "0" + }, + "timeAdvancement": { + "#bigint": "2419200" + }, + "validator": "" + }, + { + "consumerChain": "", + "consumersToStart": { + "#set": [] + }, + "consumersToStop": { + "#set": [] + }, + "kind": "VotingPowerChange", + "newVotingPower": { + "#bigint": "100" + }, + "timeAdvancement": { + "#bigint": "0" + }, + "validator": "node1" + }, + { + "consumerChain": "", + "consumersToStart": { + "#set": [] + }, + "consumersToStop": { + "#set": [] + }, + "kind": "VotingPowerChange", + "newVotingPower": { + "#bigint": "50" + }, + "timeAdvancement": { + "#bigint": "0" + }, + "validator": "node1" + }, + { + "consumerChain": "", + "consumersToStart": { + "#set": [] + }, + "consumersToStop": { + "#set": [] + }, + "kind": "VotingPowerChange", + "newVotingPower": { + "#bigint": "50" + }, + "timeAdvancement": { + "#bigint": "0" + }, + "validator": "node4" + }, + { + "consumerChain": "", + "consumersToStart": { + "#set": [] + }, + "consumersToStop": { + "#set": [ + "consumer1", + "consumer3" + ] + }, + "kind": "EndAndBeginBlockForProvider", + "newVotingPower": { + "#bigint": "0" + }, + "timeAdvancement": { + "#bigint": "2419200" + }, + "validator": "" + }, + { + "consumerChain": "", + "consumersToStart": { + "#set": [] + }, + "consumersToStop": { + "#set": [] + }, + "kind": "VotingPowerChange", + "newVotingPower": { + "#bigint": "100" + }, + "timeAdvancement": { + "#bigint": "0" + }, + "validator": "node10" + }, + { + "consumerChain": "", + "consumersToStart": { + "#set": [] + }, + "consumersToStop": { + "#set": [] + }, + "kind": "VotingPowerChange", + "newVotingPower": { + "#bigint": "50" + }, + "timeAdvancement": { + "#bigint": "0" + }, + "validator": "node7" + }, + { + "consumerChain": "", + "consumersToStart": { + "#set": [] + }, + "consumersToStop": { + "#set": [] + }, + "kind": "VotingPowerChange", + "newVotingPower": { + "#bigint": "50" + }, + "timeAdvancement": { + "#bigint": "0" + }, + "validator": "node10" + }, + { + "consumerChain": "", + "consumersToStart": { + "#set": [ + "consumer2" + ] + }, + "consumersToStop": { + "#set": [] + }, + "kind": "EndAndBeginBlockForProvider", + "newVotingPower": { + "#bigint": "0" + }, + "timeAdvancement": { + "#bigint": "86400" + }, + "validator": "" + }, + { + "consumerChain": "", + "consumersToStart": { + "#set": [] + }, + "consumersToStop": { + "#set": [] + }, + "kind": "VotingPowerChange", + "newVotingPower": { + "#bigint": "50" + }, + "timeAdvancement": { + "#bigint": "0" + }, + "validator": "node2" + }, + { + "consumerChain": "", + "consumersToStart": { + "#set": [] + }, + "consumersToStop": { + "#set": [] + }, + "kind": "VotingPowerChange", + "newVotingPower": { + "#bigint": "100" + }, + "timeAdvancement": { + "#bigint": "0" + }, + "validator": "node4" + }, + { + "consumerChain": "", + "consumersToStart": { + "#set": [] + }, + "consumersToStop": { + "#set": [ + "consumer2" + ] + }, + "kind": "EndAndBeginBlockForProvider", + "newVotingPower": { + "#bigint": "0" + }, + "timeAdvancement": { + "#bigint": "604800" + }, + "validator": "" + }, + { + "consumerChain": "", + "consumersToStart": { + "#set": [] + }, + "consumersToStop": { + "#set": [] + }, + "kind": "EndAndBeginBlockForProvider", + "newVotingPower": { + "#bigint": "0" + }, + "timeAdvancement": { + "#bigint": "604800" + }, + "validator": "" + }, + { + "consumerChain": "", + "consumersToStart": { + "#set": [] + }, + "consumersToStop": { + "#set": [] + }, + "kind": "VotingPowerChange", + "newVotingPower": { + "#bigint": "0" + }, + "timeAdvancement": { + "#bigint": "0" + }, + "validator": "node2" + }, + { + "consumerChain": "", + "consumersToStart": { + "#set": [] + }, + "consumersToStop": { + "#set": [] + }, + "kind": "EndAndBeginBlockForProvider", + "newVotingPower": { + "#bigint": "0" + }, + "timeAdvancement": { + "#bigint": "86400" + }, + "validator": "" + } + ] + }, + { + "#meta": { + "index": 17 + }, + "currentState": { + "consumerStates": { + "#map": [ + [ + "consumer1", + { + "chainState": { + "currentValidatorSet": { + "#map": [ + [ + "node1", + { + "#bigint": "100" + } + ], + [ + "node10", + { + "#bigint": "100" + } + ], + [ + "node2", + { + "#bigint": "100" + } + ], + [ + "node3", + { + "#bigint": "100" + } + ], + [ + "node4", + { + "#bigint": "100" + } + ], + [ + "node5", + { + "#bigint": "100" + } + ], + [ + "node6", + { + "#bigint": "100" + } + ], + [ + "node7", + { + "#bigint": "100" + } + ], + [ + "node8", + { + "#bigint": "100" + } + ], + [ + "node9", + { + "#bigint": "100" + } + ] + ] + }, + "lastTimestamp": { + "#bigint": "0" + }, + "votingPowerHistory": [] + }, + "maturationTimes": { + "#map": [] + }, + "outstandingPacketsToProvider": [], + "receivedVscPackets": [] + } + ], + [ + "consumer2", + { + "chainState": { + "currentValidatorSet": { + "#map": [ + [ + "node1", + { + "#bigint": "50" + } + ], + [ + "node10", + { + "#bigint": "50" + } + ], + [ + "node2", + { + "#bigint": "100" + } + ], + [ + "node3", + { + "#bigint": "100" + } + ], + [ + "node4", + { + "#bigint": "50" + } + ], + [ + "node5", + { + "#bigint": "100" + } + ], + [ + "node6", + { + "#bigint": "100" + } + ], + [ + "node7", + { + "#bigint": "50" + } + ], + [ + "node8", + { + "#bigint": "100" + } + ], + [ + "node9", + { + "#bigint": "100" + } + ] + ] + }, + "lastTimestamp": { + "#bigint": "0" + }, + "votingPowerHistory": [] + }, + "maturationTimes": { + "#map": [] + }, + "outstandingPacketsToProvider": [], + "receivedVscPackets": [] + } + ], + [ + "consumer3", + { + "chainState": { + "currentValidatorSet": { + "#map": [ + [ + "node1", + { + "#bigint": "100" + } + ], + [ + "node10", + { + "#bigint": "100" + } + ], + [ + "node2", + { + "#bigint": "100" + } + ], + [ + "node3", + { + "#bigint": "100" + } + ], + [ + "node4", + { + "#bigint": "100" + } + ], + [ + "node5", + { + "#bigint": "100" + } + ], + [ + "node6", + { + "#bigint": "100" + } + ], + [ + "node7", + { + "#bigint": "100" + } + ], + [ + "node8", + { + "#bigint": "100" + } + ], + [ + "node9", + { + "#bigint": "100" + } + ] + ] + }, + "lastTimestamp": { + "#bigint": "2419200" + }, + "votingPowerHistory": [ + { + "#map": [ + [ + "node1", + { + "#bigint": "100" + } + ], + [ + "node10", + { + "#bigint": "100" + } + ], + [ + "node2", + { + "#bigint": "100" + } + ], + [ + "node3", + { + "#bigint": "100" + } + ], + [ + "node4", + { + "#bigint": "100" + } + ], + [ + "node5", + { + "#bigint": "100" + } + ], + [ + "node6", + { + "#bigint": "100" + } + ], + [ + "node7", + { + "#bigint": "100" + } + ], + [ + "node8", + { + "#bigint": "100" + } + ], + [ + "node9", + { + "#bigint": "100" + } + ] + ] + } + ] + }, + "maturationTimes": { + "#map": [] + }, + "outstandingPacketsToProvider": [], + "receivedVscPackets": [] + } + ] + ] + }, + "providerState": { + "chainState": { + "currentValidatorSet": { + "#map": [ + [ + "node1", + { + "#bigint": "50" + } + ], + [ + "node10", + { + "#bigint": "100" + } + ], + [ + "node2", + { + "#bigint": "0" + } + ], + [ + "node3", + { + "#bigint": "100" + } + ], + [ + "node4", + { + "#bigint": "100" + } + ], + [ + "node5", + { + "#bigint": "100" + } + ], + [ + "node6", + { + "#bigint": "100" + } + ], + [ + "node7", + { + "#bigint": "50" + } + ], + [ + "node8", + { + "#bigint": "100" + } + ], + [ + "node9", + { + "#bigint": "100" + } + ] + ] + }, + "lastTimestamp": { + "#bigint": "6220800" + }, + "votingPowerHistory": [ + { + "#map": [ + [ + "node1", + { + "#bigint": "50" + } + ], + [ + "node10", + { + "#bigint": "50" + } + ], + [ + "node2", + { + "#bigint": "0" + } + ], + [ + "node3", + { + "#bigint": "100" + } + ], + [ + "node4", + { + "#bigint": "100" + } + ], + [ + "node5", + { + "#bigint": "100" + } + ], + [ + "node6", + { + "#bigint": "100" + } + ], + [ + "node7", + { + "#bigint": "50" + } + ], + [ + "node8", + { + "#bigint": "100" + } + ], + [ + "node9", + { + "#bigint": "100" + } + ] + ] + }, + { + "#map": [ + [ + "node1", + { + "#bigint": "50" + } + ], + [ + "node10", + { + "#bigint": "50" + } + ], + [ + "node2", + { + "#bigint": "50" + } + ], + [ + "node3", + { + "#bigint": "100" + } + ], + [ + "node4", + { + "#bigint": "100" + } + ], + [ + "node5", + { + "#bigint": "100" + } + ], + [ + "node6", + { + "#bigint": "100" + } + ], + [ + "node7", + { + "#bigint": "50" + } + ], + [ + "node8", + { + "#bigint": "100" + } + ], + [ + "node9", + { + "#bigint": "100" + } + ] + ] + }, + { + "#map": [ + [ + "node1", + { + "#bigint": "50" + } + ], + [ + "node10", + { + "#bigint": "50" + } + ], + [ + "node2", + { + "#bigint": "50" + } + ], + [ + "node3", + { + "#bigint": "100" + } + ], + [ + "node4", + { + "#bigint": "100" + } + ], + [ + "node5", + { + "#bigint": "100" + } + ], + [ + "node6", + { + "#bigint": "100" + } + ], + [ + "node7", + { + "#bigint": "50" + } + ], + [ + "node8", + { + "#bigint": "100" + } + ], + [ + "node9", + { + "#bigint": "100" + } + ] + ] + }, + { + "#map": [ + [ + "node1", + { + "#bigint": "50" + } + ], + [ + "node10", + { + "#bigint": "50" + } + ], + [ + "node2", + { + "#bigint": "100" + } + ], + [ + "node3", + { + "#bigint": "100" + } + ], + [ + "node4", + { + "#bigint": "50" + } + ], + [ + "node5", + { + "#bigint": "100" + } + ], + [ + "node6", + { + "#bigint": "100" + } + ], + [ + "node7", + { + "#bigint": "50" + } + ], + [ + "node8", + { + "#bigint": "100" + } + ], + [ + "node9", + { + "#bigint": "100" + } + ] + ] + }, + { + "#map": [ + [ + "node1", + { + "#bigint": "50" + } + ], + [ + "node10", + { + "#bigint": "100" + } + ], + [ + "node2", + { + "#bigint": "100" + } + ], + [ + "node3", + { + "#bigint": "100" + } + ], + [ + "node4", + { + "#bigint": "50" + } + ], + [ + "node5", + { + "#bigint": "100" + } + ], + [ + "node6", + { + "#bigint": "100" + } + ], + [ + "node7", + { + "#bigint": "100" + } + ], + [ + "node8", + { + "#bigint": "100" + } + ], + [ + "node9", + { + "#bigint": "100" + } + ] + ] + }, + { + "#map": [ + [ + "node1", + { + "#bigint": "100" + } + ], + [ + "node10", + { + "#bigint": "100" + } + ], + [ + "node2", + { + "#bigint": "100" + } + ], + [ + "node3", + { + "#bigint": "100" + } + ], + [ + "node4", + { + "#bigint": "100" + } + ], + [ + "node5", + { + "#bigint": "100" + } + ], + [ + "node6", + { + "#bigint": "100" + } + ], + [ + "node7", + { + "#bigint": "100" + } + ], + [ + "node8", + { + "#bigint": "100" + } + ], + [ + "node9", + { + "#bigint": "100" + } + ] + ] + }, + { + "#map": [ + [ + "node1", + { + "#bigint": "100" + } + ], + [ + "node10", + { + "#bigint": "100" + } + ], + [ + "node2", + { + "#bigint": "100" + } + ], + [ + "node3", + { + "#bigint": "100" + } + ], + [ + "node4", + { + "#bigint": "100" + } + ], + [ + "node5", + { + "#bigint": "100" + } + ], + [ + "node6", + { + "#bigint": "100" + } + ], + [ + "node7", + { + "#bigint": "100" + } + ], + [ + "node8", + { + "#bigint": "100" + } + ], + [ + "node9", + { + "#bigint": "100" + } + ] + ] + } + ] + }, + "consumerStatus": { + "#map": [ + [ + "consumer1", + "stopped" + ], + [ + "consumer2", + "stopped" + ], + [ + "consumer3", + "stopped" + ] + ] + }, + "outstandingPacketsToConsumer": { + "#map": [ + [ + "consumer1", + [] + ], + [ + "consumer2", + [ + { + "id": { + "#bigint": "0" + }, + "sendingTime": { + "#bigint": "4924800" + }, + "validatorSet": { + "#map": [ + [ + "node1", + { + "#bigint": "50" + } + ], + [ + "node10", + { + "#bigint": "50" + } + ], + [ + "node2", + { + "#bigint": "100" + } + ], + [ + "node3", + { + "#bigint": "100" + } + ], + [ + "node4", + { + "#bigint": "50" + } + ], + [ + "node5", + { + "#bigint": "100" + } + ], + [ + "node6", + { + "#bigint": "100" + } + ], + [ + "node7", + { + "#bigint": "50" + } + ], + [ + "node8", + { + "#bigint": "100" + } + ], + [ + "node9", + { + "#bigint": "100" + } + ] + ] + } + } + ] + ], + [ + "consumer3", + [] + ] + ] + }, + "providerValidatorSetChangedInThisBlock": true, + "receivedMaturations": { + "#set": [] + }, + "runningVscId": { + "#bigint": "1" + }, + "sentVscPacketsToConsumer": { + "#map": [ + [ + "consumer1", + [] + ], + [ + "consumer2", + [ + { + "id": { + "#bigint": "0" + }, + "sendingTime": { + "#bigint": "4924800" + }, + "validatorSet": { + "#map": [ + [ + "node1", + { + "#bigint": "50" + } + ], + [ + "node10", + { + "#bigint": "50" + } + ], + [ + "node2", + { + "#bigint": "100" + } + ], + [ + "node3", + { + "#bigint": "100" + } + ], + [ + "node4", + { + "#bigint": "50" + } + ], + [ + "node5", + { + "#bigint": "100" + } + ], + [ + "node6", + { + "#bigint": "100" + } + ], + [ + "node7", + { + "#bigint": "50" + } + ], + [ + "node8", + { + "#bigint": "100" + } + ], + [ + "node9", + { + "#bigint": "100" + } + ] + ] + } + } + ] + ], + [ + "consumer3", + [] + ] + ] + } + } + }, + "trace": [ + { + "consumerChain": "", + "consumersToStart": { + "#set": [] + }, + "consumersToStop": { + "#set": [] + }, + "kind": "init", + "newVotingPower": { + "#bigint": "0" + }, + "timeAdvancement": { + "#bigint": "0" + }, + "validator": "" + }, + { + "consumerChain": "", + "consumersToStart": { + "#set": [ + "consumer1", + "consumer3" + ] + }, + "consumersToStop": { + "#set": [] + }, + "kind": "EndAndBeginBlockForProvider", + "newVotingPower": { + "#bigint": "0" + }, + "timeAdvancement": { + "#bigint": "2419200" + }, + "validator": "" + }, + { + "consumerChain": "consumer3", + "consumersToStart": { + "#set": [] + }, + "consumersToStop": { + "#set": [] + }, + "kind": "EndAndBeginBlockForConsumer", + "newVotingPower": { + "#bigint": "0" + }, + "timeAdvancement": { + "#bigint": "2419200" + }, + "validator": "" + }, + { + "consumerChain": "", + "consumersToStart": { + "#set": [] + }, + "consumersToStop": { + "#set": [] + }, + "kind": "VotingPowerChange", + "newVotingPower": { + "#bigint": "100" + }, + "timeAdvancement": { + "#bigint": "0" + }, + "validator": "node1" + }, + { + "consumerChain": "", + "consumersToStart": { + "#set": [] + }, + "consumersToStop": { + "#set": [] + }, + "kind": "VotingPowerChange", + "newVotingPower": { + "#bigint": "50" + }, + "timeAdvancement": { + "#bigint": "0" + }, + "validator": "node1" + }, + { + "consumerChain": "", + "consumersToStart": { + "#set": [] + }, + "consumersToStop": { + "#set": [] + }, + "kind": "VotingPowerChange", + "newVotingPower": { + "#bigint": "50" + }, + "timeAdvancement": { + "#bigint": "0" + }, + "validator": "node4" + }, + { + "consumerChain": "", + "consumersToStart": { + "#set": [] + }, + "consumersToStop": { + "#set": [ + "consumer1", + "consumer3" + ] + }, + "kind": "EndAndBeginBlockForProvider", + "newVotingPower": { + "#bigint": "0" + }, + "timeAdvancement": { + "#bigint": "2419200" + }, + "validator": "" + }, + { + "consumerChain": "", + "consumersToStart": { + "#set": [] + }, + "consumersToStop": { + "#set": [] + }, + "kind": "VotingPowerChange", + "newVotingPower": { + "#bigint": "100" + }, + "timeAdvancement": { + "#bigint": "0" + }, + "validator": "node10" + }, + { + "consumerChain": "", + "consumersToStart": { + "#set": [] + }, + "consumersToStop": { + "#set": [] + }, + "kind": "VotingPowerChange", + "newVotingPower": { + "#bigint": "50" + }, + "timeAdvancement": { + "#bigint": "0" + }, + "validator": "node7" + }, + { + "consumerChain": "", + "consumersToStart": { + "#set": [] + }, + "consumersToStop": { + "#set": [] + }, + "kind": "VotingPowerChange", + "newVotingPower": { + "#bigint": "50" + }, + "timeAdvancement": { + "#bigint": "0" + }, + "validator": "node10" + }, + { + "consumerChain": "", + "consumersToStart": { + "#set": [ + "consumer2" + ] + }, + "consumersToStop": { + "#set": [] + }, + "kind": "EndAndBeginBlockForProvider", + "newVotingPower": { + "#bigint": "0" + }, + "timeAdvancement": { + "#bigint": "86400" + }, + "validator": "" + }, + { + "consumerChain": "", + "consumersToStart": { + "#set": [] + }, + "consumersToStop": { + "#set": [] + }, + "kind": "VotingPowerChange", + "newVotingPower": { + "#bigint": "50" + }, + "timeAdvancement": { + "#bigint": "0" + }, + "validator": "node2" + }, + { + "consumerChain": "", + "consumersToStart": { + "#set": [] + }, + "consumersToStop": { + "#set": [] + }, + "kind": "VotingPowerChange", + "newVotingPower": { + "#bigint": "100" + }, + "timeAdvancement": { + "#bigint": "0" + }, + "validator": "node4" + }, + { + "consumerChain": "", + "consumersToStart": { + "#set": [] + }, + "consumersToStop": { + "#set": [ + "consumer2" + ] + }, + "kind": "EndAndBeginBlockForProvider", + "newVotingPower": { + "#bigint": "0" + }, + "timeAdvancement": { + "#bigint": "604800" + }, + "validator": "" + }, + { + "consumerChain": "", + "consumersToStart": { + "#set": [] + }, + "consumersToStop": { + "#set": [] + }, + "kind": "EndAndBeginBlockForProvider", + "newVotingPower": { + "#bigint": "0" + }, + "timeAdvancement": { + "#bigint": "604800" + }, + "validator": "" + }, + { + "consumerChain": "", + "consumersToStart": { + "#set": [] + }, + "consumersToStop": { + "#set": [] + }, + "kind": "VotingPowerChange", + "newVotingPower": { + "#bigint": "0" + }, + "timeAdvancement": { + "#bigint": "0" + }, + "validator": "node2" + }, + { + "consumerChain": "", + "consumersToStart": { + "#set": [] + }, + "consumersToStop": { + "#set": [] + }, + "kind": "EndAndBeginBlockForProvider", + "newVotingPower": { + "#bigint": "0" + }, + "timeAdvancement": { + "#bigint": "86400" + }, + "validator": "" + }, + { + "consumerChain": "", + "consumersToStart": { + "#set": [] + }, + "consumersToStop": { + "#set": [] + }, + "kind": "VotingPowerChange", + "newVotingPower": { + "#bigint": "100" + }, + "timeAdvancement": { + "#bigint": "0" + }, + "validator": "node10" + } + ] + }, + { + "#meta": { + "index": 18 + }, + "currentState": { + "consumerStates": { + "#map": [ + [ + "consumer1", + { + "chainState": { + "currentValidatorSet": { + "#map": [ + [ + "node1", + { + "#bigint": "100" + } + ], + [ + "node10", + { + "#bigint": "100" + } + ], + [ + "node2", + { + "#bigint": "100" + } + ], + [ + "node3", + { + "#bigint": "100" + } + ], + [ + "node4", + { + "#bigint": "100" + } + ], + [ + "node5", + { + "#bigint": "100" + } + ], + [ + "node6", + { + "#bigint": "100" + } + ], + [ + "node7", + { + "#bigint": "100" + } + ], + [ + "node8", + { + "#bigint": "100" + } + ], + [ + "node9", + { + "#bigint": "100" + } + ] + ] + }, + "lastTimestamp": { + "#bigint": "0" + }, + "votingPowerHistory": [] + }, + "maturationTimes": { + "#map": [] + }, + "outstandingPacketsToProvider": [], + "receivedVscPackets": [] + } + ], + [ + "consumer2", + { + "chainState": { + "currentValidatorSet": { + "#map": [ + [ + "node1", + { + "#bigint": "50" + } + ], + [ + "node10", + { + "#bigint": "50" + } + ], + [ + "node2", + { + "#bigint": "100" + } + ], + [ + "node3", + { + "#bigint": "100" + } + ], + [ + "node4", + { + "#bigint": "50" + } + ], + [ + "node5", + { + "#bigint": "100" + } + ], + [ + "node6", + { + "#bigint": "100" + } + ], + [ + "node7", + { + "#bigint": "50" + } + ], + [ + "node8", + { + "#bigint": "100" + } + ], + [ + "node9", + { + "#bigint": "100" + } + ] + ] + }, + "lastTimestamp": { + "#bigint": "0" + }, + "votingPowerHistory": [] + }, + "maturationTimes": { + "#map": [] + }, + "outstandingPacketsToProvider": [], + "receivedVscPackets": [] + } + ], + [ + "consumer3", + { + "chainState": { + "currentValidatorSet": { + "#map": [ + [ + "node1", + { + "#bigint": "100" + } + ], + [ + "node10", + { + "#bigint": "100" + } + ], + [ + "node2", + { + "#bigint": "100" + } + ], + [ + "node3", + { + "#bigint": "100" + } + ], + [ + "node4", + { + "#bigint": "100" + } + ], + [ + "node5", + { + "#bigint": "100" + } + ], + [ + "node6", + { + "#bigint": "100" + } + ], + [ + "node7", + { + "#bigint": "100" + } + ], + [ + "node8", + { + "#bigint": "100" + } + ], + [ + "node9", + { + "#bigint": "100" + } + ] + ] + }, + "lastTimestamp": { + "#bigint": "2419200" + }, + "votingPowerHistory": [ + { + "#map": [ + [ + "node1", + { + "#bigint": "100" + } + ], + [ + "node10", + { + "#bigint": "100" + } + ], + [ + "node2", + { + "#bigint": "100" + } + ], + [ + "node3", + { + "#bigint": "100" + } + ], + [ + "node4", + { + "#bigint": "100" + } + ], + [ + "node5", + { + "#bigint": "100" + } + ], + [ + "node6", + { + "#bigint": "100" + } + ], + [ + "node7", + { + "#bigint": "100" + } + ], + [ + "node8", + { + "#bigint": "100" + } + ], + [ + "node9", + { + "#bigint": "100" + } + ] + ] + } + ] + }, + "maturationTimes": { + "#map": [] + }, + "outstandingPacketsToProvider": [], + "receivedVscPackets": [] + } + ] + ] + }, + "providerState": { + "chainState": { + "currentValidatorSet": { + "#map": [ + [ + "node1", + { + "#bigint": "50" + } + ], + [ + "node10", + { + "#bigint": "100" + } + ], + [ + "node2", + { + "#bigint": "0" + } + ], + [ + "node3", + { + "#bigint": "100" + } + ], + [ + "node4", + { + "#bigint": "100" + } + ], + [ + "node5", + { + "#bigint": "100" + } + ], + [ + "node6", + { + "#bigint": "50" + } + ], + [ + "node7", + { + "#bigint": "50" + } + ], + [ + "node8", + { + "#bigint": "100" + } + ], + [ + "node9", + { + "#bigint": "100" + } + ] + ] + }, + "lastTimestamp": { + "#bigint": "6220800" + }, + "votingPowerHistory": [ + { + "#map": [ + [ + "node1", + { + "#bigint": "50" + } + ], + [ + "node10", + { + "#bigint": "50" + } + ], + [ + "node2", + { + "#bigint": "0" + } + ], + [ + "node3", + { + "#bigint": "100" + } + ], + [ + "node4", + { + "#bigint": "100" + } + ], + [ + "node5", + { + "#bigint": "100" + } + ], + [ + "node6", + { + "#bigint": "100" + } + ], + [ + "node7", + { + "#bigint": "50" + } + ], + [ + "node8", + { + "#bigint": "100" + } + ], + [ + "node9", + { + "#bigint": "100" + } + ] + ] + }, + { + "#map": [ + [ + "node1", + { + "#bigint": "50" + } + ], + [ + "node10", + { + "#bigint": "50" + } + ], + [ + "node2", + { + "#bigint": "50" + } + ], + [ + "node3", + { + "#bigint": "100" + } + ], + [ + "node4", + { + "#bigint": "100" + } + ], + [ + "node5", + { + "#bigint": "100" + } + ], + [ + "node6", + { + "#bigint": "100" + } + ], + [ + "node7", + { + "#bigint": "50" + } + ], + [ + "node8", + { + "#bigint": "100" + } + ], + [ + "node9", + { + "#bigint": "100" + } + ] + ] + }, + { + "#map": [ + [ + "node1", + { + "#bigint": "50" + } + ], + [ + "node10", + { + "#bigint": "50" + } + ], + [ + "node2", + { + "#bigint": "50" + } + ], + [ + "node3", + { + "#bigint": "100" + } + ], + [ + "node4", + { + "#bigint": "100" + } + ], + [ + "node5", + { + "#bigint": "100" + } + ], + [ + "node6", + { + "#bigint": "100" + } + ], + [ + "node7", + { + "#bigint": "50" + } + ], + [ + "node8", + { + "#bigint": "100" + } + ], + [ + "node9", + { + "#bigint": "100" + } + ] + ] + }, + { + "#map": [ + [ + "node1", + { + "#bigint": "50" + } + ], + [ + "node10", + { + "#bigint": "50" + } + ], + [ + "node2", + { + "#bigint": "100" + } + ], + [ + "node3", + { + "#bigint": "100" + } + ], + [ + "node4", + { + "#bigint": "50" + } + ], + [ + "node5", + { + "#bigint": "100" + } + ], + [ + "node6", + { + "#bigint": "100" + } + ], + [ + "node7", + { + "#bigint": "50" + } + ], + [ + "node8", + { + "#bigint": "100" + } + ], + [ + "node9", + { + "#bigint": "100" + } + ] + ] + }, + { + "#map": [ + [ + "node1", + { + "#bigint": "50" + } + ], + [ + "node10", + { + "#bigint": "100" + } + ], + [ + "node2", + { + "#bigint": "100" + } + ], + [ + "node3", + { + "#bigint": "100" + } + ], + [ + "node4", + { + "#bigint": "50" + } + ], + [ + "node5", + { + "#bigint": "100" + } + ], + [ + "node6", + { + "#bigint": "100" + } + ], + [ + "node7", + { + "#bigint": "100" + } + ], + [ + "node8", + { + "#bigint": "100" + } + ], + [ + "node9", + { + "#bigint": "100" + } + ] + ] + }, + { + "#map": [ + [ + "node1", + { + "#bigint": "100" + } + ], + [ + "node10", + { + "#bigint": "100" + } + ], + [ + "node2", + { + "#bigint": "100" + } + ], + [ + "node3", + { + "#bigint": "100" + } + ], + [ + "node4", + { + "#bigint": "100" + } + ], + [ + "node5", + { + "#bigint": "100" + } + ], + [ + "node6", + { + "#bigint": "100" + } + ], + [ + "node7", + { + "#bigint": "100" + } + ], + [ + "node8", + { + "#bigint": "100" + } + ], + [ + "node9", + { + "#bigint": "100" + } + ] + ] + }, + { + "#map": [ + [ + "node1", + { + "#bigint": "100" + } + ], + [ + "node10", + { + "#bigint": "100" + } + ], + [ + "node2", + { + "#bigint": "100" + } + ], + [ + "node3", + { + "#bigint": "100" + } + ], + [ + "node4", + { + "#bigint": "100" + } + ], + [ + "node5", + { + "#bigint": "100" + } + ], + [ + "node6", + { + "#bigint": "100" + } + ], + [ + "node7", + { + "#bigint": "100" + } + ], + [ + "node8", + { + "#bigint": "100" + } + ], + [ + "node9", + { + "#bigint": "100" + } + ] + ] + } + ] + }, + "consumerStatus": { + "#map": [ + [ + "consumer1", + "stopped" + ], + [ + "consumer2", + "stopped" + ], + [ + "consumer3", + "stopped" + ] + ] + }, + "outstandingPacketsToConsumer": { + "#map": [ + [ + "consumer1", + [] + ], + [ + "consumer2", + [ + { + "id": { + "#bigint": "0" + }, + "sendingTime": { + "#bigint": "4924800" + }, + "validatorSet": { + "#map": [ + [ + "node1", + { + "#bigint": "50" + } + ], + [ + "node10", + { + "#bigint": "50" + } + ], + [ + "node2", + { + "#bigint": "100" + } + ], + [ + "node3", + { + "#bigint": "100" + } + ], + [ + "node4", + { + "#bigint": "50" + } + ], + [ + "node5", + { + "#bigint": "100" + } + ], + [ + "node6", + { + "#bigint": "100" + } + ], + [ + "node7", + { + "#bigint": "50" + } + ], + [ + "node8", + { + "#bigint": "100" + } + ], + [ + "node9", + { + "#bigint": "100" + } + ] + ] + } + } + ] + ], + [ + "consumer3", + [] + ] + ] + }, + "providerValidatorSetChangedInThisBlock": true, + "receivedMaturations": { + "#set": [] + }, + "runningVscId": { + "#bigint": "1" + }, + "sentVscPacketsToConsumer": { + "#map": [ + [ + "consumer1", + [] + ], + [ + "consumer2", + [ + { + "id": { + "#bigint": "0" + }, + "sendingTime": { + "#bigint": "4924800" + }, + "validatorSet": { + "#map": [ + [ + "node1", + { + "#bigint": "50" + } + ], + [ + "node10", + { + "#bigint": "50" + } + ], + [ + "node2", + { + "#bigint": "100" + } + ], + [ + "node3", + { + "#bigint": "100" + } + ], + [ + "node4", + { + "#bigint": "50" + } + ], + [ + "node5", + { + "#bigint": "100" + } + ], + [ + "node6", + { + "#bigint": "100" + } + ], + [ + "node7", + { + "#bigint": "50" + } + ], + [ + "node8", + { + "#bigint": "100" + } + ], + [ + "node9", + { + "#bigint": "100" + } + ] + ] + } + } + ] + ], + [ + "consumer3", + [] + ] + ] + } + } + }, + "trace": [ + { + "consumerChain": "", + "consumersToStart": { + "#set": [] + }, + "consumersToStop": { + "#set": [] + }, + "kind": "init", + "newVotingPower": { + "#bigint": "0" + }, + "timeAdvancement": { + "#bigint": "0" + }, + "validator": "" + }, + { + "consumerChain": "", + "consumersToStart": { + "#set": [ + "consumer1", + "consumer3" + ] + }, + "consumersToStop": { + "#set": [] + }, + "kind": "EndAndBeginBlockForProvider", + "newVotingPower": { + "#bigint": "0" + }, + "timeAdvancement": { + "#bigint": "2419200" + }, + "validator": "" + }, + { + "consumerChain": "consumer3", + "consumersToStart": { + "#set": [] + }, + "consumersToStop": { + "#set": [] + }, + "kind": "EndAndBeginBlockForConsumer", + "newVotingPower": { + "#bigint": "0" + }, + "timeAdvancement": { + "#bigint": "2419200" + }, + "validator": "" + }, + { + "consumerChain": "", + "consumersToStart": { + "#set": [] + }, + "consumersToStop": { + "#set": [] + }, + "kind": "VotingPowerChange", + "newVotingPower": { + "#bigint": "100" + }, + "timeAdvancement": { + "#bigint": "0" + }, + "validator": "node1" + }, + { + "consumerChain": "", + "consumersToStart": { + "#set": [] + }, + "consumersToStop": { + "#set": [] + }, + "kind": "VotingPowerChange", + "newVotingPower": { + "#bigint": "50" + }, + "timeAdvancement": { + "#bigint": "0" + }, + "validator": "node1" + }, + { + "consumerChain": "", + "consumersToStart": { + "#set": [] + }, + "consumersToStop": { + "#set": [] + }, + "kind": "VotingPowerChange", + "newVotingPower": { + "#bigint": "50" + }, + "timeAdvancement": { + "#bigint": "0" + }, + "validator": "node4" + }, + { + "consumerChain": "", + "consumersToStart": { + "#set": [] + }, + "consumersToStop": { + "#set": [ + "consumer1", + "consumer3" + ] + }, + "kind": "EndAndBeginBlockForProvider", + "newVotingPower": { + "#bigint": "0" + }, + "timeAdvancement": { + "#bigint": "2419200" + }, + "validator": "" + }, + { + "consumerChain": "", + "consumersToStart": { + "#set": [] + }, + "consumersToStop": { + "#set": [] + }, + "kind": "VotingPowerChange", + "newVotingPower": { + "#bigint": "100" + }, + "timeAdvancement": { + "#bigint": "0" + }, + "validator": "node10" + }, + { + "consumerChain": "", + "consumersToStart": { + "#set": [] + }, + "consumersToStop": { + "#set": [] + }, + "kind": "VotingPowerChange", + "newVotingPower": { + "#bigint": "50" + }, + "timeAdvancement": { + "#bigint": "0" + }, + "validator": "node7" + }, + { + "consumerChain": "", + "consumersToStart": { + "#set": [] + }, + "consumersToStop": { + "#set": [] + }, + "kind": "VotingPowerChange", + "newVotingPower": { + "#bigint": "50" + }, + "timeAdvancement": { + "#bigint": "0" + }, + "validator": "node10" + }, + { + "consumerChain": "", + "consumersToStart": { + "#set": [ + "consumer2" + ] + }, + "consumersToStop": { + "#set": [] + }, + "kind": "EndAndBeginBlockForProvider", + "newVotingPower": { + "#bigint": "0" + }, + "timeAdvancement": { + "#bigint": "86400" + }, + "validator": "" + }, + { + "consumerChain": "", + "consumersToStart": { + "#set": [] + }, + "consumersToStop": { + "#set": [] + }, + "kind": "VotingPowerChange", + "newVotingPower": { + "#bigint": "50" + }, + "timeAdvancement": { + "#bigint": "0" + }, + "validator": "node2" + }, + { + "consumerChain": "", + "consumersToStart": { + "#set": [] + }, + "consumersToStop": { + "#set": [] + }, + "kind": "VotingPowerChange", + "newVotingPower": { + "#bigint": "100" + }, + "timeAdvancement": { + "#bigint": "0" + }, + "validator": "node4" + }, + { + "consumerChain": "", + "consumersToStart": { + "#set": [] + }, + "consumersToStop": { + "#set": [ + "consumer2" + ] + }, + "kind": "EndAndBeginBlockForProvider", + "newVotingPower": { + "#bigint": "0" + }, + "timeAdvancement": { + "#bigint": "604800" + }, + "validator": "" + }, + { + "consumerChain": "", + "consumersToStart": { + "#set": [] + }, + "consumersToStop": { + "#set": [] + }, + "kind": "EndAndBeginBlockForProvider", + "newVotingPower": { + "#bigint": "0" + }, + "timeAdvancement": { + "#bigint": "604800" + }, + "validator": "" + }, + { + "consumerChain": "", + "consumersToStart": { + "#set": [] + }, + "consumersToStop": { + "#set": [] + }, + "kind": "VotingPowerChange", + "newVotingPower": { + "#bigint": "0" + }, + "timeAdvancement": { + "#bigint": "0" + }, + "validator": "node2" + }, + { + "consumerChain": "", + "consumersToStart": { + "#set": [] + }, + "consumersToStop": { + "#set": [] + }, + "kind": "EndAndBeginBlockForProvider", + "newVotingPower": { + "#bigint": "0" + }, + "timeAdvancement": { + "#bigint": "86400" + }, + "validator": "" + }, + { + "consumerChain": "", + "consumersToStart": { + "#set": [] + }, + "consumersToStop": { + "#set": [] + }, + "kind": "VotingPowerChange", + "newVotingPower": { + "#bigint": "100" + }, + "timeAdvancement": { + "#bigint": "0" + }, + "validator": "node10" + }, + { + "consumerChain": "", + "consumersToStart": { + "#set": [] + }, + "consumersToStop": { + "#set": [] + }, + "kind": "VotingPowerChange", + "newVotingPower": { + "#bigint": "50" + }, + "timeAdvancement": { + "#bigint": "0" + }, + "validator": "node6" + } + ] + }, + { + "#meta": { + "index": 19 + }, + "currentState": { + "consumerStates": { + "#map": [ + [ + "consumer1", + { + "chainState": { + "currentValidatorSet": { + "#map": [ + [ + "node1", + { + "#bigint": "100" + } + ], + [ + "node10", + { + "#bigint": "100" + } + ], + [ + "node2", + { + "#bigint": "100" + } + ], + [ + "node3", + { + "#bigint": "100" + } + ], + [ + "node4", + { + "#bigint": "100" + } + ], + [ + "node5", + { + "#bigint": "100" + } + ], + [ + "node6", + { + "#bigint": "100" + } + ], + [ + "node7", + { + "#bigint": "100" + } + ], + [ + "node8", + { + "#bigint": "100" + } + ], + [ + "node9", + { + "#bigint": "100" + } + ] + ] + }, + "lastTimestamp": { + "#bigint": "0" + }, + "votingPowerHistory": [] + }, + "maturationTimes": { + "#map": [] + }, + "outstandingPacketsToProvider": [], + "receivedVscPackets": [] + } + ], + [ + "consumer2", + { + "chainState": { + "currentValidatorSet": { + "#map": [ + [ + "node1", + { + "#bigint": "50" + } + ], + [ + "node10", + { + "#bigint": "50" + } + ], + [ + "node2", + { + "#bigint": "100" + } + ], + [ + "node3", + { + "#bigint": "100" + } + ], + [ + "node4", + { + "#bigint": "50" + } + ], + [ + "node5", + { + "#bigint": "100" + } + ], + [ + "node6", + { + "#bigint": "100" + } + ], + [ + "node7", + { + "#bigint": "50" + } + ], + [ + "node8", + { + "#bigint": "100" + } + ], + [ + "node9", + { + "#bigint": "100" + } + ] + ] + }, + "lastTimestamp": { + "#bigint": "0" + }, + "votingPowerHistory": [] + }, + "maturationTimes": { + "#map": [] + }, + "outstandingPacketsToProvider": [], + "receivedVscPackets": [] + } + ], + [ + "consumer3", + { + "chainState": { + "currentValidatorSet": { + "#map": [ + [ + "node1", + { + "#bigint": "100" + } + ], + [ + "node10", + { + "#bigint": "100" + } + ], + [ + "node2", + { + "#bigint": "100" + } + ], + [ + "node3", + { + "#bigint": "100" + } + ], + [ + "node4", + { + "#bigint": "100" + } + ], + [ + "node5", + { + "#bigint": "100" + } + ], + [ + "node6", + { + "#bigint": "100" + } + ], + [ + "node7", + { + "#bigint": "100" + } + ], + [ + "node8", + { + "#bigint": "100" + } + ], + [ + "node9", + { + "#bigint": "100" + } + ] + ] + }, + "lastTimestamp": { + "#bigint": "2419200" + }, + "votingPowerHistory": [ + { + "#map": [ + [ + "node1", + { + "#bigint": "100" + } + ], + [ + "node10", + { + "#bigint": "100" + } + ], + [ + "node2", + { + "#bigint": "100" + } + ], + [ + "node3", + { + "#bigint": "100" + } + ], + [ + "node4", + { + "#bigint": "100" + } + ], + [ + "node5", + { + "#bigint": "100" + } + ], + [ + "node6", + { + "#bigint": "100" + } + ], + [ + "node7", + { + "#bigint": "100" + } + ], + [ + "node8", + { + "#bigint": "100" + } + ], + [ + "node9", + { + "#bigint": "100" + } + ] + ] + } + ] + }, + "maturationTimes": { + "#map": [] + }, + "outstandingPacketsToProvider": [], + "receivedVscPackets": [] + } + ] + ] + }, + "providerState": { + "chainState": { + "currentValidatorSet": { + "#map": [ + [ + "node1", + { + "#bigint": "50" + } + ], + [ + "node10", + { + "#bigint": "100" + } + ], + [ + "node2", + { + "#bigint": "0" + } + ], + [ + "node3", + { + "#bigint": "100" + } + ], + [ + "node4", + { + "#bigint": "100" + } + ], + [ + "node5", + { + "#bigint": "100" + } + ], + [ + "node6", + { + "#bigint": "50" + } + ], + [ + "node7", + { + "#bigint": "50" + } + ], + [ + "node8", + { + "#bigint": "100" + } + ], + [ + "node9", + { + "#bigint": "100" + } + ] + ] + }, + "lastTimestamp": { + "#bigint": "6220801" + }, + "votingPowerHistory": [ + { + "#map": [ + [ + "node1", + { + "#bigint": "50" + } + ], + [ + "node10", + { + "#bigint": "100" + } + ], + [ + "node2", + { + "#bigint": "0" + } + ], + [ + "node3", + { + "#bigint": "100" + } + ], + [ + "node4", + { + "#bigint": "100" + } + ], + [ + "node5", + { + "#bigint": "100" + } + ], + [ + "node6", + { + "#bigint": "50" + } + ], + [ + "node7", + { + "#bigint": "50" + } + ], + [ + "node8", + { + "#bigint": "100" + } + ], + [ + "node9", + { + "#bigint": "100" + } + ] + ] + }, + { + "#map": [ + [ + "node1", + { + "#bigint": "50" + } + ], + [ + "node10", + { + "#bigint": "50" + } + ], + [ + "node2", + { + "#bigint": "0" + } + ], + [ + "node3", + { + "#bigint": "100" + } + ], + [ + "node4", + { + "#bigint": "100" + } + ], + [ + "node5", + { + "#bigint": "100" + } + ], + [ + "node6", + { + "#bigint": "100" + } + ], + [ + "node7", + { + "#bigint": "50" + } + ], + [ + "node8", + { + "#bigint": "100" + } + ], + [ + "node9", + { + "#bigint": "100" + } + ] + ] + }, + { + "#map": [ + [ + "node1", + { + "#bigint": "50" + } + ], + [ + "node10", + { + "#bigint": "50" + } + ], + [ + "node2", + { + "#bigint": "50" + } + ], + [ + "node3", + { + "#bigint": "100" + } + ], + [ + "node4", + { + "#bigint": "100" + } + ], + [ + "node5", + { + "#bigint": "100" + } + ], + [ + "node6", + { + "#bigint": "100" + } + ], + [ + "node7", + { + "#bigint": "50" + } + ], + [ + "node8", + { + "#bigint": "100" + } + ], + [ + "node9", + { + "#bigint": "100" + } + ] + ] + }, + { + "#map": [ + [ + "node1", + { + "#bigint": "50" + } + ], + [ + "node10", + { + "#bigint": "50" + } + ], + [ + "node2", + { + "#bigint": "50" + } + ], + [ + "node3", + { + "#bigint": "100" + } + ], + [ + "node4", + { + "#bigint": "100" + } + ], + [ + "node5", + { + "#bigint": "100" + } + ], + [ + "node6", + { + "#bigint": "100" + } + ], + [ + "node7", + { + "#bigint": "50" + } + ], + [ + "node8", + { + "#bigint": "100" + } + ], + [ + "node9", + { + "#bigint": "100" + } + ] + ] + }, + { + "#map": [ + [ + "node1", + { + "#bigint": "50" + } + ], + [ + "node10", + { + "#bigint": "50" + } + ], + [ + "node2", + { + "#bigint": "100" + } + ], + [ + "node3", + { + "#bigint": "100" + } + ], + [ + "node4", + { + "#bigint": "50" + } + ], + [ + "node5", + { + "#bigint": "100" + } + ], + [ + "node6", + { + "#bigint": "100" + } + ], + [ + "node7", + { + "#bigint": "50" + } + ], + [ + "node8", + { + "#bigint": "100" + } + ], + [ + "node9", + { + "#bigint": "100" + } + ] + ] + }, + { + "#map": [ + [ + "node1", + { + "#bigint": "50" + } + ], + [ + "node10", + { + "#bigint": "100" + } + ], + [ + "node2", + { + "#bigint": "100" + } + ], + [ + "node3", + { + "#bigint": "100" + } + ], + [ + "node4", + { + "#bigint": "50" + } + ], + [ + "node5", + { + "#bigint": "100" + } + ], + [ + "node6", + { + "#bigint": "100" + } + ], + [ + "node7", + { + "#bigint": "100" + } + ], + [ + "node8", + { + "#bigint": "100" + } + ], + [ + "node9", + { + "#bigint": "100" + } + ] + ] + }, + { + "#map": [ + [ + "node1", + { + "#bigint": "100" + } + ], + [ + "node10", + { + "#bigint": "100" + } + ], + [ + "node2", + { + "#bigint": "100" + } + ], + [ + "node3", + { + "#bigint": "100" + } + ], + [ + "node4", + { + "#bigint": "100" + } + ], + [ + "node5", + { + "#bigint": "100" + } + ], + [ + "node6", + { + "#bigint": "100" + } + ], + [ + "node7", + { + "#bigint": "100" + } + ], + [ + "node8", + { + "#bigint": "100" + } + ], + [ + "node9", + { + "#bigint": "100" + } + ] + ] + }, + { + "#map": [ + [ + "node1", + { + "#bigint": "100" + } + ], + [ + "node10", + { + "#bigint": "100" + } + ], + [ + "node2", + { + "#bigint": "100" + } + ], + [ + "node3", + { + "#bigint": "100" + } + ], + [ + "node4", + { + "#bigint": "100" + } + ], + [ + "node5", + { + "#bigint": "100" + } + ], + [ + "node6", + { + "#bigint": "100" + } + ], + [ + "node7", + { + "#bigint": "100" + } + ], + [ + "node8", + { + "#bigint": "100" + } + ], + [ + "node9", + { + "#bigint": "100" + } + ] + ] + } + ] + }, + "consumerStatus": { + "#map": [ + [ + "consumer1", + "stopped" + ], + [ + "consumer2", + "stopped" + ], + [ + "consumer3", + "stopped" + ] + ] + }, + "outstandingPacketsToConsumer": { + "#map": [ + [ + "consumer1", + [] + ], + [ + "consumer2", + [ + { + "id": { + "#bigint": "0" + }, + "sendingTime": { + "#bigint": "4924800" + }, + "validatorSet": { + "#map": [ + [ + "node1", + { + "#bigint": "50" + } + ], + [ + "node10", + { + "#bigint": "50" + } + ], + [ + "node2", + { + "#bigint": "100" + } + ], + [ + "node3", + { + "#bigint": "100" + } + ], + [ + "node4", + { + "#bigint": "50" + } + ], + [ + "node5", + { + "#bigint": "100" + } + ], + [ + "node6", + { + "#bigint": "100" + } + ], + [ + "node7", + { + "#bigint": "50" + } + ], + [ + "node8", + { + "#bigint": "100" + } + ], + [ + "node9", + { + "#bigint": "100" + } + ] + ] + } + } + ] + ], + [ + "consumer3", + [] + ] + ] + }, + "providerValidatorSetChangedInThisBlock": true, + "receivedMaturations": { + "#set": [] + }, + "runningVscId": { + "#bigint": "1" + }, + "sentVscPacketsToConsumer": { + "#map": [ + [ + "consumer1", + [] + ], + [ + "consumer2", + [ + { + "id": { + "#bigint": "0" + }, + "sendingTime": { + "#bigint": "4924800" + }, + "validatorSet": { + "#map": [ + [ + "node1", + { + "#bigint": "50" + } + ], + [ + "node10", + { + "#bigint": "50" + } + ], + [ + "node2", + { + "#bigint": "100" + } + ], + [ + "node3", + { + "#bigint": "100" + } + ], + [ + "node4", + { + "#bigint": "50" + } + ], + [ + "node5", + { + "#bigint": "100" + } + ], + [ + "node6", + { + "#bigint": "100" + } + ], + [ + "node7", + { + "#bigint": "50" + } + ], + [ + "node8", + { + "#bigint": "100" + } + ], + [ + "node9", + { + "#bigint": "100" + } + ] + ] + } + } + ] + ], + [ + "consumer3", + [] + ] + ] + } + } + }, + "trace": [ + { + "consumerChain": "", + "consumersToStart": { + "#set": [] + }, + "consumersToStop": { + "#set": [] + }, + "kind": "init", + "newVotingPower": { + "#bigint": "0" + }, + "timeAdvancement": { + "#bigint": "0" + }, + "validator": "" + }, + { + "consumerChain": "", + "consumersToStart": { + "#set": [ + "consumer1", + "consumer3" + ] + }, + "consumersToStop": { + "#set": [] + }, + "kind": "EndAndBeginBlockForProvider", + "newVotingPower": { + "#bigint": "0" + }, + "timeAdvancement": { + "#bigint": "2419200" + }, + "validator": "" + }, + { + "consumerChain": "consumer3", + "consumersToStart": { + "#set": [] + }, + "consumersToStop": { + "#set": [] + }, + "kind": "EndAndBeginBlockForConsumer", + "newVotingPower": { + "#bigint": "0" + }, + "timeAdvancement": { + "#bigint": "2419200" + }, + "validator": "" + }, + { + "consumerChain": "", + "consumersToStart": { + "#set": [] + }, + "consumersToStop": { + "#set": [] + }, + "kind": "VotingPowerChange", + "newVotingPower": { + "#bigint": "100" + }, + "timeAdvancement": { + "#bigint": "0" + }, + "validator": "node1" + }, + { + "consumerChain": "", + "consumersToStart": { + "#set": [] + }, + "consumersToStop": { + "#set": [] + }, + "kind": "VotingPowerChange", + "newVotingPower": { + "#bigint": "50" + }, + "timeAdvancement": { + "#bigint": "0" + }, + "validator": "node1" + }, + { + "consumerChain": "", + "consumersToStart": { + "#set": [] + }, + "consumersToStop": { + "#set": [] + }, + "kind": "VotingPowerChange", + "newVotingPower": { + "#bigint": "50" + }, + "timeAdvancement": { + "#bigint": "0" + }, + "validator": "node4" + }, + { + "consumerChain": "", + "consumersToStart": { + "#set": [] + }, + "consumersToStop": { + "#set": [ + "consumer1", + "consumer3" + ] + }, + "kind": "EndAndBeginBlockForProvider", + "newVotingPower": { + "#bigint": "0" + }, + "timeAdvancement": { + "#bigint": "2419200" + }, + "validator": "" + }, + { + "consumerChain": "", + "consumersToStart": { + "#set": [] + }, + "consumersToStop": { + "#set": [] + }, + "kind": "VotingPowerChange", + "newVotingPower": { + "#bigint": "100" + }, + "timeAdvancement": { + "#bigint": "0" + }, + "validator": "node10" + }, + { + "consumerChain": "", + "consumersToStart": { + "#set": [] + }, + "consumersToStop": { + "#set": [] + }, + "kind": "VotingPowerChange", + "newVotingPower": { + "#bigint": "50" + }, + "timeAdvancement": { + "#bigint": "0" + }, + "validator": "node7" + }, + { + "consumerChain": "", + "consumersToStart": { + "#set": [] + }, + "consumersToStop": { + "#set": [] + }, + "kind": "VotingPowerChange", + "newVotingPower": { + "#bigint": "50" + }, + "timeAdvancement": { + "#bigint": "0" + }, + "validator": "node10" + }, + { + "consumerChain": "", + "consumersToStart": { + "#set": [ + "consumer2" + ] + }, + "consumersToStop": { + "#set": [] + }, + "kind": "EndAndBeginBlockForProvider", + "newVotingPower": { + "#bigint": "0" + }, + "timeAdvancement": { + "#bigint": "86400" + }, + "validator": "" + }, + { + "consumerChain": "", + "consumersToStart": { + "#set": [] + }, + "consumersToStop": { + "#set": [] + }, + "kind": "VotingPowerChange", + "newVotingPower": { + "#bigint": "50" + }, + "timeAdvancement": { + "#bigint": "0" + }, + "validator": "node2" + }, + { + "consumerChain": "", + "consumersToStart": { + "#set": [] + }, + "consumersToStop": { + "#set": [] + }, + "kind": "VotingPowerChange", + "newVotingPower": { + "#bigint": "100" + }, + "timeAdvancement": { + "#bigint": "0" + }, + "validator": "node4" + }, + { + "consumerChain": "", + "consumersToStart": { + "#set": [] + }, + "consumersToStop": { + "#set": [ + "consumer2" + ] + }, + "kind": "EndAndBeginBlockForProvider", + "newVotingPower": { + "#bigint": "0" + }, + "timeAdvancement": { + "#bigint": "604800" + }, + "validator": "" + }, + { + "consumerChain": "", + "consumersToStart": { + "#set": [] + }, + "consumersToStop": { + "#set": [] + }, + "kind": "EndAndBeginBlockForProvider", + "newVotingPower": { + "#bigint": "0" + }, + "timeAdvancement": { + "#bigint": "604800" + }, + "validator": "" + }, + { + "consumerChain": "", + "consumersToStart": { + "#set": [] + }, + "consumersToStop": { + "#set": [] + }, + "kind": "VotingPowerChange", + "newVotingPower": { + "#bigint": "0" + }, + "timeAdvancement": { + "#bigint": "0" + }, + "validator": "node2" + }, + { + "consumerChain": "", + "consumersToStart": { + "#set": [] + }, + "consumersToStop": { + "#set": [] + }, + "kind": "EndAndBeginBlockForProvider", + "newVotingPower": { + "#bigint": "0" + }, + "timeAdvancement": { + "#bigint": "86400" + }, + "validator": "" + }, + { + "consumerChain": "", + "consumersToStart": { + "#set": [] + }, + "consumersToStop": { + "#set": [] + }, + "kind": "VotingPowerChange", + "newVotingPower": { + "#bigint": "100" + }, + "timeAdvancement": { + "#bigint": "0" + }, + "validator": "node10" + }, + { + "consumerChain": "", + "consumersToStart": { + "#set": [] + }, + "consumersToStop": { + "#set": [] + }, + "kind": "VotingPowerChange", + "newVotingPower": { + "#bigint": "50" + }, + "timeAdvancement": { + "#bigint": "0" + }, + "validator": "node6" + }, + { + "consumerChain": "", + "consumersToStart": { + "#set": [] + }, + "consumersToStop": { + "#set": [] + }, + "kind": "EndAndBeginBlockForProvider", + "newVotingPower": { + "#bigint": "0" + }, + "timeAdvancement": { + "#bigint": "1" + }, + "validator": "" + } + ] + }, + { + "#meta": { + "index": 20 + }, + "currentState": { + "consumerStates": { + "#map": [ + [ + "consumer1", + { + "chainState": { + "currentValidatorSet": { + "#map": [ + [ + "node1", + { + "#bigint": "100" + } + ], + [ + "node10", + { + "#bigint": "100" + } + ], + [ + "node2", + { + "#bigint": "100" + } + ], + [ + "node3", + { + "#bigint": "100" + } + ], + [ + "node4", + { + "#bigint": "100" + } + ], + [ + "node5", + { + "#bigint": "100" + } + ], + [ + "node6", + { + "#bigint": "100" + } + ], + [ + "node7", + { + "#bigint": "100" + } + ], + [ + "node8", + { + "#bigint": "100" + } + ], + [ + "node9", + { + "#bigint": "100" + } + ] + ] + }, + "lastTimestamp": { + "#bigint": "0" + }, + "votingPowerHistory": [] + }, + "maturationTimes": { + "#map": [] + }, + "outstandingPacketsToProvider": [], + "receivedVscPackets": [] + } + ], + [ + "consumer2", + { + "chainState": { + "currentValidatorSet": { + "#map": [ + [ + "node1", + { + "#bigint": "50" + } + ], + [ + "node10", + { + "#bigint": "50" + } + ], + [ + "node2", + { + "#bigint": "100" + } + ], + [ + "node3", + { + "#bigint": "100" + } + ], + [ + "node4", + { + "#bigint": "50" + } + ], + [ + "node5", + { + "#bigint": "100" + } + ], + [ + "node6", + { + "#bigint": "100" + } + ], + [ + "node7", + { + "#bigint": "50" + } + ], + [ + "node8", + { + "#bigint": "100" + } + ], + [ + "node9", + { + "#bigint": "100" + } + ] + ] + }, + "lastTimestamp": { + "#bigint": "0" + }, + "votingPowerHistory": [] + }, + "maturationTimes": { + "#map": [] + }, + "outstandingPacketsToProvider": [], + "receivedVscPackets": [] + } + ], + [ + "consumer3", + { + "chainState": { + "currentValidatorSet": { + "#map": [ + [ + "node1", + { + "#bigint": "100" + } + ], + [ + "node10", + { + "#bigint": "100" + } + ], + [ + "node2", + { + "#bigint": "100" + } + ], + [ + "node3", + { + "#bigint": "100" + } + ], + [ + "node4", + { + "#bigint": "100" + } + ], + [ + "node5", + { + "#bigint": "100" + } + ], + [ + "node6", + { + "#bigint": "100" + } + ], + [ + "node7", + { + "#bigint": "100" + } + ], + [ + "node8", + { + "#bigint": "100" + } + ], + [ + "node9", + { + "#bigint": "100" + } + ] + ] + }, + "lastTimestamp": { + "#bigint": "2419200" + }, + "votingPowerHistory": [ + { + "#map": [ + [ + "node1", + { + "#bigint": "100" + } + ], + [ + "node10", + { + "#bigint": "100" + } + ], + [ + "node2", + { + "#bigint": "100" + } + ], + [ + "node3", + { + "#bigint": "100" + } + ], + [ + "node4", + { + "#bigint": "100" + } + ], + [ + "node5", + { + "#bigint": "100" + } + ], + [ + "node6", + { + "#bigint": "100" + } + ], + [ + "node7", + { + "#bigint": "100" + } + ], + [ + "node8", + { + "#bigint": "100" + } + ], + [ + "node9", + { + "#bigint": "100" + } + ] + ] + } + ] + }, + "maturationTimes": { + "#map": [] + }, + "outstandingPacketsToProvider": [], + "receivedVscPackets": [] + } + ] + ] + }, + "providerState": { + "chainState": { + "currentValidatorSet": { + "#map": [ + [ + "node1", + { + "#bigint": "50" + } + ], + [ + "node10", + { + "#bigint": "100" + } + ], + [ + "node2", + { + "#bigint": "0" + } + ], + [ + "node3", + { + "#bigint": "100" + } + ], + [ + "node4", + { + "#bigint": "100" + } + ], + [ + "node5", + { + "#bigint": "100" + } + ], + [ + "node6", + { + "#bigint": "0" + } + ], + [ + "node7", + { + "#bigint": "50" + } + ], + [ + "node8", + { + "#bigint": "100" + } + ], + [ + "node9", + { + "#bigint": "100" + } + ] + ] + }, + "lastTimestamp": { + "#bigint": "6220801" + }, + "votingPowerHistory": [ + { + "#map": [ + [ + "node1", + { + "#bigint": "50" + } + ], + [ + "node10", + { + "#bigint": "100" + } + ], + [ + "node2", + { + "#bigint": "0" + } + ], + [ + "node3", + { + "#bigint": "100" + } + ], + [ + "node4", + { + "#bigint": "100" + } + ], + [ + "node5", + { + "#bigint": "100" + } + ], + [ + "node6", + { + "#bigint": "50" + } + ], + [ + "node7", + { + "#bigint": "50" + } + ], + [ + "node8", + { + "#bigint": "100" + } + ], + [ + "node9", + { + "#bigint": "100" + } + ] + ] + }, + { + "#map": [ + [ + "node1", + { + "#bigint": "50" + } + ], + [ + "node10", + { + "#bigint": "50" + } + ], + [ + "node2", + { + "#bigint": "0" + } + ], + [ + "node3", + { + "#bigint": "100" + } + ], + [ + "node4", + { + "#bigint": "100" + } + ], + [ + "node5", + { + "#bigint": "100" + } + ], + [ + "node6", + { + "#bigint": "100" + } + ], + [ + "node7", + { + "#bigint": "50" + } + ], + [ + "node8", + { + "#bigint": "100" + } + ], + [ + "node9", + { + "#bigint": "100" + } + ] + ] + }, + { + "#map": [ + [ + "node1", + { + "#bigint": "50" + } + ], + [ + "node10", + { + "#bigint": "50" + } + ], + [ + "node2", + { + "#bigint": "50" + } + ], + [ + "node3", + { + "#bigint": "100" + } + ], + [ + "node4", + { + "#bigint": "100" + } + ], + [ + "node5", + { + "#bigint": "100" + } + ], + [ + "node6", + { + "#bigint": "100" + } + ], + [ + "node7", + { + "#bigint": "50" + } + ], + [ + "node8", + { + "#bigint": "100" + } + ], + [ + "node9", + { + "#bigint": "100" + } + ] + ] + }, + { + "#map": [ + [ + "node1", + { + "#bigint": "50" + } + ], + [ + "node10", + { + "#bigint": "50" + } + ], + [ + "node2", + { + "#bigint": "50" + } + ], + [ + "node3", + { + "#bigint": "100" + } + ], + [ + "node4", + { + "#bigint": "100" + } + ], + [ + "node5", + { + "#bigint": "100" + } + ], + [ + "node6", + { + "#bigint": "100" + } + ], + [ + "node7", + { + "#bigint": "50" + } + ], + [ + "node8", + { + "#bigint": "100" + } + ], + [ + "node9", + { + "#bigint": "100" + } + ] + ] + }, + { + "#map": [ + [ + "node1", + { + "#bigint": "50" + } + ], + [ + "node10", + { + "#bigint": "50" + } + ], + [ + "node2", + { + "#bigint": "100" + } + ], + [ + "node3", + { + "#bigint": "100" + } + ], + [ + "node4", + { + "#bigint": "50" + } + ], + [ + "node5", + { + "#bigint": "100" + } + ], + [ + "node6", + { + "#bigint": "100" + } + ], + [ + "node7", + { + "#bigint": "50" + } + ], + [ + "node8", + { + "#bigint": "100" + } + ], + [ + "node9", + { + "#bigint": "100" + } + ] + ] + }, + { + "#map": [ + [ + "node1", + { + "#bigint": "50" + } + ], + [ + "node10", + { + "#bigint": "100" + } + ], + [ + "node2", + { + "#bigint": "100" + } + ], + [ + "node3", + { + "#bigint": "100" + } + ], + [ + "node4", + { + "#bigint": "50" + } + ], + [ + "node5", + { + "#bigint": "100" + } + ], + [ + "node6", + { + "#bigint": "100" + } + ], + [ + "node7", + { + "#bigint": "100" + } + ], + [ + "node8", + { + "#bigint": "100" + } + ], + [ + "node9", + { + "#bigint": "100" + } + ] + ] + }, + { + "#map": [ + [ + "node1", + { + "#bigint": "100" + } + ], + [ + "node10", + { + "#bigint": "100" + } + ], + [ + "node2", + { + "#bigint": "100" + } + ], + [ + "node3", + { + "#bigint": "100" + } + ], + [ + "node4", + { + "#bigint": "100" + } + ], + [ + "node5", + { + "#bigint": "100" + } + ], + [ + "node6", + { + "#bigint": "100" + } + ], + [ + "node7", + { + "#bigint": "100" + } + ], + [ + "node8", + { + "#bigint": "100" + } + ], + [ + "node9", + { + "#bigint": "100" + } + ] + ] + }, + { + "#map": [ + [ + "node1", + { + "#bigint": "100" + } + ], + [ + "node10", + { + "#bigint": "100" + } + ], + [ + "node2", + { + "#bigint": "100" + } + ], + [ + "node3", + { + "#bigint": "100" + } + ], + [ + "node4", + { + "#bigint": "100" + } + ], + [ + "node5", + { + "#bigint": "100" + } + ], + [ + "node6", + { + "#bigint": "100" + } + ], + [ + "node7", + { + "#bigint": "100" + } + ], + [ + "node8", + { + "#bigint": "100" + } + ], + [ + "node9", + { + "#bigint": "100" + } + ] + ] + } + ] + }, + "consumerStatus": { + "#map": [ + [ + "consumer1", + "stopped" + ], + [ + "consumer2", + "stopped" + ], + [ + "consumer3", + "stopped" + ] + ] + }, + "outstandingPacketsToConsumer": { + "#map": [ + [ + "consumer1", + [] + ], + [ + "consumer2", + [ + { + "id": { + "#bigint": "0" + }, + "sendingTime": { + "#bigint": "4924800" + }, + "validatorSet": { + "#map": [ + [ + "node1", + { + "#bigint": "50" + } + ], + [ + "node10", + { + "#bigint": "50" + } + ], + [ + "node2", + { + "#bigint": "100" + } + ], + [ + "node3", + { + "#bigint": "100" + } + ], + [ + "node4", + { + "#bigint": "50" + } + ], + [ + "node5", + { + "#bigint": "100" + } + ], + [ + "node6", + { + "#bigint": "100" + } + ], + [ + "node7", + { + "#bigint": "50" + } + ], + [ + "node8", + { + "#bigint": "100" + } + ], + [ + "node9", + { + "#bigint": "100" + } + ] + ] + } + } + ] + ], + [ + "consumer3", + [] + ] + ] + }, + "providerValidatorSetChangedInThisBlock": true, + "receivedMaturations": { + "#set": [] + }, + "runningVscId": { + "#bigint": "1" + }, + "sentVscPacketsToConsumer": { + "#map": [ + [ + "consumer1", + [] + ], + [ + "consumer2", + [ + { + "id": { + "#bigint": "0" + }, + "sendingTime": { + "#bigint": "4924800" + }, + "validatorSet": { + "#map": [ + [ + "node1", + { + "#bigint": "50" + } + ], + [ + "node10", + { + "#bigint": "50" + } + ], + [ + "node2", + { + "#bigint": "100" + } + ], + [ + "node3", + { + "#bigint": "100" + } + ], + [ + "node4", + { + "#bigint": "50" + } + ], + [ + "node5", + { + "#bigint": "100" + } + ], + [ + "node6", + { + "#bigint": "100" + } + ], + [ + "node7", + { + "#bigint": "50" + } + ], + [ + "node8", + { + "#bigint": "100" + } + ], + [ + "node9", + { + "#bigint": "100" + } + ] + ] + } + } + ] + ], + [ + "consumer3", + [] + ] + ] + } + } + }, + "trace": [ + { + "consumerChain": "", + "consumersToStart": { + "#set": [] + }, + "consumersToStop": { + "#set": [] + }, + "kind": "init", + "newVotingPower": { + "#bigint": "0" + }, + "timeAdvancement": { + "#bigint": "0" + }, + "validator": "" + }, + { + "consumerChain": "", + "consumersToStart": { + "#set": [ + "consumer1", + "consumer3" + ] + }, + "consumersToStop": { + "#set": [] + }, + "kind": "EndAndBeginBlockForProvider", + "newVotingPower": { + "#bigint": "0" + }, + "timeAdvancement": { + "#bigint": "2419200" + }, + "validator": "" + }, + { + "consumerChain": "consumer3", + "consumersToStart": { + "#set": [] + }, + "consumersToStop": { + "#set": [] + }, + "kind": "EndAndBeginBlockForConsumer", + "newVotingPower": { + "#bigint": "0" + }, + "timeAdvancement": { + "#bigint": "2419200" + }, + "validator": "" + }, + { + "consumerChain": "", + "consumersToStart": { + "#set": [] + }, + "consumersToStop": { + "#set": [] + }, + "kind": "VotingPowerChange", + "newVotingPower": { + "#bigint": "100" + }, + "timeAdvancement": { + "#bigint": "0" + }, + "validator": "node1" + }, + { + "consumerChain": "", + "consumersToStart": { + "#set": [] + }, + "consumersToStop": { + "#set": [] + }, + "kind": "VotingPowerChange", + "newVotingPower": { + "#bigint": "50" + }, + "timeAdvancement": { + "#bigint": "0" + }, + "validator": "node1" + }, + { + "consumerChain": "", + "consumersToStart": { + "#set": [] + }, + "consumersToStop": { + "#set": [] + }, + "kind": "VotingPowerChange", + "newVotingPower": { + "#bigint": "50" + }, + "timeAdvancement": { + "#bigint": "0" + }, + "validator": "node4" + }, + { + "consumerChain": "", + "consumersToStart": { + "#set": [] + }, + "consumersToStop": { + "#set": [ + "consumer1", + "consumer3" + ] + }, + "kind": "EndAndBeginBlockForProvider", + "newVotingPower": { + "#bigint": "0" + }, + "timeAdvancement": { + "#bigint": "2419200" + }, + "validator": "" + }, + { + "consumerChain": "", + "consumersToStart": { + "#set": [] + }, + "consumersToStop": { + "#set": [] + }, + "kind": "VotingPowerChange", + "newVotingPower": { + "#bigint": "100" + }, + "timeAdvancement": { + "#bigint": "0" + }, + "validator": "node10" + }, + { + "consumerChain": "", + "consumersToStart": { + "#set": [] + }, + "consumersToStop": { + "#set": [] + }, + "kind": "VotingPowerChange", + "newVotingPower": { + "#bigint": "50" + }, + "timeAdvancement": { + "#bigint": "0" + }, + "validator": "node7" + }, + { + "consumerChain": "", + "consumersToStart": { + "#set": [] + }, + "consumersToStop": { + "#set": [] + }, + "kind": "VotingPowerChange", + "newVotingPower": { + "#bigint": "50" + }, + "timeAdvancement": { + "#bigint": "0" + }, + "validator": "node10" + }, + { + "consumerChain": "", + "consumersToStart": { + "#set": [ + "consumer2" + ] + }, + "consumersToStop": { + "#set": [] + }, + "kind": "EndAndBeginBlockForProvider", + "newVotingPower": { + "#bigint": "0" + }, + "timeAdvancement": { + "#bigint": "86400" + }, + "validator": "" + }, + { + "consumerChain": "", + "consumersToStart": { + "#set": [] + }, + "consumersToStop": { + "#set": [] + }, + "kind": "VotingPowerChange", + "newVotingPower": { + "#bigint": "50" + }, + "timeAdvancement": { + "#bigint": "0" + }, + "validator": "node2" + }, + { + "consumerChain": "", + "consumersToStart": { + "#set": [] + }, + "consumersToStop": { + "#set": [] + }, + "kind": "VotingPowerChange", + "newVotingPower": { + "#bigint": "100" + }, + "timeAdvancement": { + "#bigint": "0" + }, + "validator": "node4" + }, + { + "consumerChain": "", + "consumersToStart": { + "#set": [] + }, + "consumersToStop": { + "#set": [ + "consumer2" + ] + }, + "kind": "EndAndBeginBlockForProvider", + "newVotingPower": { + "#bigint": "0" + }, + "timeAdvancement": { + "#bigint": "604800" + }, + "validator": "" + }, + { + "consumerChain": "", + "consumersToStart": { + "#set": [] + }, + "consumersToStop": { + "#set": [] + }, + "kind": "EndAndBeginBlockForProvider", + "newVotingPower": { + "#bigint": "0" + }, + "timeAdvancement": { + "#bigint": "604800" + }, + "validator": "" + }, + { + "consumerChain": "", + "consumersToStart": { + "#set": [] + }, + "consumersToStop": { + "#set": [] + }, + "kind": "VotingPowerChange", + "newVotingPower": { + "#bigint": "0" + }, + "timeAdvancement": { + "#bigint": "0" + }, + "validator": "node2" + }, + { + "consumerChain": "", + "consumersToStart": { + "#set": [] + }, + "consumersToStop": { + "#set": [] + }, + "kind": "EndAndBeginBlockForProvider", + "newVotingPower": { + "#bigint": "0" + }, + "timeAdvancement": { + "#bigint": "86400" + }, + "validator": "" + }, + { + "consumerChain": "", + "consumersToStart": { + "#set": [] + }, + "consumersToStop": { + "#set": [] + }, + "kind": "VotingPowerChange", + "newVotingPower": { + "#bigint": "100" + }, + "timeAdvancement": { + "#bigint": "0" + }, + "validator": "node10" + }, + { + "consumerChain": "", + "consumersToStart": { + "#set": [] + }, + "consumersToStop": { + "#set": [] + }, + "kind": "VotingPowerChange", + "newVotingPower": { + "#bigint": "50" + }, + "timeAdvancement": { + "#bigint": "0" + }, + "validator": "node6" + }, + { + "consumerChain": "", + "consumersToStart": { + "#set": [] + }, + "consumersToStop": { + "#set": [] + }, + "kind": "EndAndBeginBlockForProvider", + "newVotingPower": { + "#bigint": "0" + }, + "timeAdvancement": { + "#bigint": "1" + }, + "validator": "" + }, + { + "consumerChain": "", + "consumersToStart": { + "#set": [] + }, + "consumersToStop": { + "#set": [] + }, + "kind": "VotingPowerChange", + "newVotingPower": { + "#bigint": "0" + }, + "timeAdvancement": { + "#bigint": "0" + }, + "validator": "node6" + } + ] + } + ] +} \ No newline at end of file From 5ffe64727e8c6a04a1eb83ae01da6c7abf828fef Mon Sep 17 00:00:00 2001 From: Philip Offtermatt Date: Thu, 19 Oct 2023 10:25:24 +0200 Subject: [PATCH 002/111] Clean up dependencies --- go.mod | 2 +- go.sum | 36 +++++++++++++++++++ .../core/quint_model/driver/core_test.go | 35 ++++++++---------- .../core/quint_model/driver/setup.go | 19 +++++----- 4 files changed, 63 insertions(+), 29 deletions(-) diff --git a/go.mod b/go.mod index 9bfb1b9f83..7c324de0f1 100644 --- a/go.mod +++ b/go.mod @@ -168,6 +168,7 @@ require ( ) require ( + github.com/informalsystems/itf-go v0.0.1 github.com/spf13/viper v1.16.0 google.golang.org/genproto/googleapis/api v0.0.0-20230711160842-782d3b101e98 ) @@ -179,7 +180,6 @@ require ( github.com/cockroachdb/redact v1.1.5 // indirect github.com/getsentry/sentry-go v0.23.0 // indirect github.com/google/s2a-go v0.1.4 // indirect - github.com/informalsystems/itf-go v0.0.1 // indirect github.com/kr/pretty v0.3.1 // indirect github.com/kr/text v0.2.0 // indirect github.com/mattn/go-colorable v0.1.13 // indirect diff --git a/go.sum b/go.sum index d982afd86f..930a7e6285 100644 --- a/go.sum +++ b/go.sum @@ -219,6 +219,7 @@ github.com/Azure/azure-sdk-for-go/sdk/azcore v0.21.1/go.mod h1:fBF9PQNqB8scdgpZ3 github.com/Azure/azure-sdk-for-go/sdk/internal v0.8.3/go.mod h1:KLF4gFr6DcKFZwSuH8w8yEK6DpFl3LP5rhdvAb7Yz5I= github.com/Azure/azure-sdk-for-go/sdk/storage/azblob v0.3.0/go.mod h1:tPaiy8S5bQ+S5sOiDlINkp7+Ef339+Nz5L5XO+cnOHo= github.com/Azure/go-ansiterm v0.0.0-20210617225240-d185dfc1b5a1 h1:UQHMgLO+TxOElx5B5HZ4hJQsoJ/PvUvKRhJHDQXO8P8= +github.com/Azure/go-ansiterm v0.0.0-20210617225240-d185dfc1b5a1/go.mod h1:xomTg63KZ2rFqZQzSB4Vz2SUXa1BpHTVz9L5PTmPC4E= github.com/BurntSushi/toml v0.3.1/go.mod h1:xHWCNGjB5oqiDr8zfno3MHue2Ht5sIBksp03qcyfWMU= github.com/BurntSushi/xgb v0.0.0-20160522181843-27f122750802/go.mod h1:IVnqGOEym/WlBOVXweHU+Q+/VP0lqqI8lqeDx9IjBqo= github.com/ChainSafe/go-schnorrkel v0.0.0-20200405005733-88cbf1b4c40d h1:nalkkPQcITbvhmL4+C4cKA87NW0tfm3Kl9VXRoPywFg= @@ -228,7 +229,9 @@ github.com/DataDog/datadog-go v3.2.0+incompatible/go.mod h1:LButxg5PwREeZtORoXG3 github.com/DataDog/zstd v1.5.0/go.mod h1:g4AWEaM3yOg3HYfnJ3YIawPnVdXJh9QME85blwSAmyw= github.com/Knetic/govaluate v3.0.1-0.20171022003610-9aa49832a739+incompatible/go.mod h1:r7JcOSlj0wfOMncg0iLm8Leh48TZaKVeNIfJntJ2wa0= github.com/Microsoft/go-winio v0.6.0 h1:slsWYD/zyx7lCXoZVlvQrj0hPTM1HI4+v1sIda2yDvg= +github.com/Microsoft/go-winio v0.6.0/go.mod h1:cTAf44im0RAYeL23bpB+fzCyDH2MJiz2BO69KH/soAE= github.com/Nvveen/Gotty v0.0.0-20120604004816-cd527374f1e5 h1:TngWCqHvy9oXAN6lEVMRuU21PR1EtLVZJmdB18Gu3Rw= +github.com/Nvveen/Gotty v0.0.0-20120604004816-cd527374f1e5/go.mod h1:lmUJ/7eu/Q8D7ML55dXQrVaamCz2vxCfdQBasLZfHKk= github.com/OneOfOne/xxhash v1.2.2 h1:KMrpdQIwFcEqXDklaen+P1axHaj9BSKzvpUUfnHldSE= github.com/OneOfOne/xxhash v1.2.2/go.mod h1:HSdplMjZKSmBqAxg5vPj2TmRDmfkzw+cTzAElWljhcU= github.com/Shopify/sarama v1.19.0/go.mod h1:FVkBWblsNy7DGZRfXLU0O9RCGt5g3g3yEuWXgklEdEo= @@ -239,6 +242,7 @@ github.com/VividCortex/gohistogram v1.0.0 h1:6+hBz+qvs0JOrrNhhmR7lFxo5sINxBCGXrd github.com/VividCortex/gohistogram v1.0.0/go.mod h1:Pf5mBqqDxYaXu3hDrrU+w6nw50o/4+TcAqDqk/vUH7g= 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/adlio/schema v1.3.3/go.mod h1:1EsRssiv9/Ce2CMzq5DoL7RiMshhuigQxrR4DMV9fHg= 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= @@ -295,6 +299,7 @@ github.com/btcsuite/btcd/btcec/v2 v2.1.2/go.mod h1:ctjw4H1kknNJmRN4iP1R7bTQ+v3GJ 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= github.com/btcsuite/btcd/btcutil v1.1.2 h1:XLMbX8JQEiwMcYft2EGi8zPUkoa0abKIU6/BJSRsjzQ= +github.com/btcsuite/btcd/btcutil v1.1.2/go.mod h1:UR7dsSJzJUfMmFiiLlIrMq1lS9jh9EdCV7FStZSnpi0= github.com/btcsuite/btcd/chaincfg/chainhash v1.0.0/go.mod h1:7SFka0XMvUgj3hfZtydOrQY2mwhPclbT2snogU7SQQc= github.com/btcsuite/btcd/chaincfg/chainhash v1.0.1 h1:q0rUy8C/TYNBQS1+CGKw68tLOFYSNEs0TFnxxnS9+4U= github.com/btcsuite/btcd/chaincfg/chainhash v1.0.1/go.mod h1:7SFka0XMvUgj3hfZtydOrQY2mwhPclbT2snogU7SQQc= @@ -311,6 +316,7 @@ github.com/btcsuite/snappy-go v1.0.0/go.mod h1:8woku9dyThutzjeg+3xrA5iCpBRH8XEEg 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/bufbuild/protocompile v0.4.0/go.mod h1:3v93+mbWn/v3xzN+31nwkJfrEpAUwp+BagBSZWx+TP8= 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= @@ -374,6 +380,7 @@ github.com/consensys/bavard v0.1.8-0.20210915155054-088da2f7f54a/go.mod h1:9ItSM github.com/consensys/gnark-crypto v0.4.1-0.20210426202927-39ac3d4b3f1f/go.mod h1:815PAHg3wvysy0SyIqanF8gZ0Y1wjk/hrDHD/iT88+Q= github.com/consensys/gnark-crypto v0.5.3/go.mod h1:hOdPlWQV1gDLp7faZVeg8Y0iEPFaOUnCc4XeCCk96p0= github.com/containerd/continuity v0.3.0 h1:nisirsYROK15TAMVukJOUyGJjz4BNQJBVsNvAXZJ/eg= +github.com/containerd/continuity v0.3.0/go.mod h1:wJEAIwKOm/pBZuBd0JmeTvnLquTB1Ag8espWhkykbPM= github.com/coreos/etcd v3.3.10+incompatible/go.mod h1:uF7uidLiAD3TWHmW31ZFd/JWoc32PjwdhPthX9715RE= 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= @@ -447,7 +454,9 @@ github.com/dnaeon/go-vcr v1.1.0/go.mod h1:M7tiix8f0r6mKKJ3Yq/kqU1OYf3MnfmBWVbPx/ github.com/dnaeon/go-vcr v1.2.0/go.mod h1:R4UdLID7HZT3taECzJs4YgbbH6PIGXB6W/sc5OLb6RQ= github.com/docker/docker v1.4.2-0.20180625184442-8e610b2b55bf/go.mod h1:eEKB0N0r5NX/I1kEveEz05bcu8tLC/8azJZsviup8Sk= github.com/docker/go-connections v0.4.0 h1:El9xVISelRB7BuFusrZozjnkIM5YnzCViNKohAFqRJQ= +github.com/docker/go-connections v0.4.0/go.mod h1:Gbd7IOopHjR8Iph03tsViu4nIes5XhDvyHbTtUxmeec= github.com/docker/go-units v0.5.0 h1:69rxXcBk27SvSaaxTtLh/8llcHD8vYHT7WSdRZ/jvr4= +github.com/docker/go-units v0.5.0/go.mod h1:fgPhTUdO+D/Jk86RDLlptpiXQzgHJF7gydDDbaIK4Dk= github.com/dop251/goja v0.0.0-20211011172007-d99e4b8cbf48/go.mod h1:R9ET47fwRVRPZnOGvHxxhuZcbrMCuiqOz3Rlrh4KSnk= 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= @@ -481,9 +490,11 @@ github.com/felixge/httpsnoop v1.0.2/go.mod h1:m8KPJKqk1gH5J9DgRY2ASl2lWCfGKXixSw 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/fortytw2/leaktest v1.3.0/go.mod h1:jDsjWgpAGjm2CA7WthBh/CdZYEPF31XHquHwclZch5g= 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.4 h1:g2rn0vABPOOXmZUj+vbmUp0lPoXEMuhTpIluN0XL9UY= +github.com/frankban/quicktest v1.14.4/go.mod h1:4ptaffx2x8+WTWXmUCuVU6aPUX1/Mz7zb5vbUoiM6w0= 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= @@ -498,10 +509,12 @@ 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.8.1 h1:4+fr/el88TOO3ewCmQr8cx/CtZ/umlIRIs5M4NTNjf8= +github.com/gin-gonic/gin v1.8.1/go.mod h1:ji8BvRH1azfM+SYow9zQ6SZMvR8qOMZHmsCuWR9tTTk= 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= github.com/go-errors/errors v1.4.2 h1:J6MZopCL4uSllY1OfXM374weqZFFItUbrImctkmUxIA= +github.com/go-errors/errors v1.4.2/go.mod h1:sIVyrIiJhuEF+Pj9Ebtd6P/rEYROXFi3BopGUQ5a5Og= github.com/go-gl/glfw v0.0.0-20190409004039-e6da0acd62b1/go.mod h1:vR7hzQXu2zJy9AVAgeJqvqgH9Q5CA+iKCZ2gyEVpxRU= github.com/go-gl/glfw/v3.3/glfw v0.0.0-20191125211704-12ad95a8df72/go.mod h1:tQ2UAYgL5IevRw8kRxooKSPJfGvJ9fJQFa0TUsXzTg8= github.com/go-gl/glfw/v3.3/glfw v0.0.0-20200222043503-6f7a984d4dc4/go.mod h1:tQ2UAYgL5IevRw8kRxooKSPJfGvJ9fJQFa0TUsXzTg8= @@ -523,10 +536,13 @@ github.com/go-openapi/swag v0.19.5/go.mod h1:POnQmlKehdgb5mhVOsnJFsivZCEZ/vjK9gh github.com/go-playground/assert/v2 v2.0.1/go.mod h1:VDjEfimB/XKnb+ZQfWdccd7VUvScMdVu0Titje2rxJ4= github.com/go-playground/locales v0.13.0/go.mod h1:taPMhCMXrRLJO55olJkUXHZBHCxTMfnGwq/HNwmWNS8= 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.11.1 h1:prmOlTVv+YjZjmRmNSF3VmspqJIxJWXmqUsHwfTRRkQ= +github.com/go-playground/validator/v10 v10.11.1/go.mod h1:i+3WkQ1FvaUjjxh1kSvIA4dMGDBiPU55YFDl0WbKdWU= 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= @@ -538,6 +554,7 @@ github.com/gobwas/pool v0.2.0/go.mod h1:q8bcK0KcYlCgd9e7WYLm9LpyS+YeLd8JVDW6Wezm 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/goccy/go-json v0.9.11/go.mod h1:6MelG93GURQebXPDq3khkgXZkazVtN9CRI+MGFi0w8I= 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= @@ -625,12 +642,14 @@ github.com/google/gofuzz v0.0.0-20170612174753-24818f796faf/go.mod h1:HP5RmnzzSN 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/go.mod h1:oBOf6HBosgwRXnUGWUB05QECsc6uvmMiJ3+6W4l/CUk= github.com/google/martian/v3 v3.3.2 h1:IqNFLAmvJOgVlpdEBiQbDc2EwKW77amAycfTuWKdfvw= +github.com/google/martian/v3 v3.3.2/go.mod h1:oBOf6HBosgwRXnUGWUB05QECsc6uvmMiJ3+6W4l/CUk= 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= @@ -781,6 +800,7 @@ github.com/jedisct1/go-minisign v0.0.0-20190909160543-45766022959e/go.mod h1:G1C 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.15.1 h1:HUMERORf3I3ZdX05WaQ6MIpd/NJ434hTp5YiKgfCL6c= +github.com/jhump/protoreflect v1.15.1/go.mod h1:jD/2GMKKE6OqX8qTjhADU1e6DShO+gavG9e0Q693nKo= 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= @@ -797,6 +817,7 @@ github.com/json-iterator/go v1.1.8/go.mod h1:KdQUCv79m/52Kvf8AW2vK1V8akMuk1QjK/u 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.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= @@ -840,6 +861,7 @@ github.com/labstack/gommon v0.3.0/go.mod h1:MULnywXg0yavhxWKc+lOruYdAhDwPK9wf0OL github.com/leanovate/gopter v0.2.9/go.mod h1:U2L/78B+KVFIx2VmW6onHJQzXtFb+p5y3y2Sh+Jxxv8= 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= @@ -913,6 +935,7 @@ 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= @@ -934,6 +957,7 @@ github.com/neilotoole/errgroup v0.1.6/go.mod h1:Q2nLGf+594h0CLBs/Mbg6qOr7GtqDK7C github.com/niemeyer/pretty v0.0.0-20200227124842-a10e7caefd8e/go.mod h1:zD1mROLANZcx1PVRCS0qkT7pwLkGfwJo4zjcN/Tysno= github.com/nxadm/tail v1.4.4/go.mod h1:kenIhsEOeOJmVchQTgglprH7qJGnHDVpk1VPCcaMI8A= github.com/nxadm/tail v1.4.8 h1:nPr65rt6Y5JFSKQO7qToXr7pePgD6Gwiw05lkbyAQTE= +github.com/nxadm/tail v1.4.8/go.mod h1:+ncqLTQzXmGhMZNUePPaPqPvBxHAIsmXswZKocGu+AU= 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= @@ -944,15 +968,20 @@ github.com/onsi/ginkgo v1.7.0/go.mod h1:lLunBs/Ym6LB5Z9jYTR76FiuTmxDTDusOGeTQH+W github.com/onsi/ginkgo v1.12.1/go.mod h1:zj2OWP4+oCPe1qIXoGWkgMRwljMUYCdkwsT2108oapk= 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/ginkgo v1.16.4/go.mod h1:dX+/inL/fNMqNlz0e9LfyB9TswhZpCVdJM/Z6Vvnwo0= 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.20.0 h1:8W0cWlwFkflGPLltQvLRB7ZVD5HuP6ng320w2IS245Q= +github.com/onsi/gomega v1.20.0/go.mod h1:DtrZpjmvpn2mPm4YWQa0/ALMDj9v4YxLgojwPeREyVo= 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/go-digest v1.0.0/go.mod h1:0JzlMkj0TRzQZfJkVvzbP0HBR3IKzErnv2BNG4W4MAM= github.com/opencontainers/image-spec v1.1.0-rc2 h1:2zx/Stx4Wc5pIPDvIxHXvXtQFW/7XWJGmnM7r3wg034= +github.com/opencontainers/image-spec v1.1.0-rc2/go.mod h1:3OVijpioIKYWTqjiG0zfF6wvoJ4fAXGbjdZuI2NgsRQ= github.com/opencontainers/runc v1.1.3 h1:vIXrkId+0/J2Ymu2m7VjGvbSlAId9XNRPhn2p4b+d8w= +github.com/opencontainers/runc v1.1.3/go.mod h1:1J5XiS+vdZ3wCyZybsuxXZWGrgSr8fFJHLXuG2PsnNg= github.com/opentracing-contrib/go-observer v0.0.0-20170622124052-a52f23424492/go.mod h1:Ngi6UdF0k5OKD5t5wlmGhe/EDKPoUM3BXZSSfIuJbis= github.com/opentracing/basictracer-go v1.0.0/go.mod h1:QfBfYuafItcjQuMwinw9GhYKwFXS9KnPs5lxoYwgW74= github.com/opentracing/opentracing-go v1.0.2/go.mod h1:UkNAQd3GIcIGf0SeVgPpRdFStlNbqXla1AfSYxPUl2o= @@ -963,6 +992,7 @@ github.com/openzipkin/zipkin-go v0.1.6/go.mod h1:QgAqvLzwWbR/WpD4A3cGpPtJrZXNIiJ github.com/openzipkin/zipkin-go v0.2.1/go.mod h1:NaW6tEwdmWMaCDZzg8sh+IBNOxHMPnhQw8ySjnjRyN4= github.com/openzipkin/zipkin-go v0.2.2/go.mod h1:NaW6tEwdmWMaCDZzg8sh+IBNOxHMPnhQw8ySjnjRyN4= github.com/ory/dockertest v3.3.5+incompatible h1:iLLK6SQwIhcbrG783Dghaaa3WPzGc+4Emza6EbVUUGA= +github.com/ory/dockertest v3.3.5+incompatible/go.mod h1:1vX4m9wsvi00u5bseYwXaSnhNrne+V0E6LAcBILJdPs= github.com/oxyno-zeta/gomock-extra-matcher v1.2.0 h1:WPEclU0y0PMwUzdDcaKZvld4aXpa3fkzjiUMQdcBEHg= github.com/oxyno-zeta/gomock-extra-matcher v1.2.0/go.mod h1:S0r7HmKeCGsHmvIVFMjKWwswb4+30nCNWbXRMBVPkaU= github.com/pact-foundation/pact-go v1.0.4/go.mod h1:uExwJY4kCzNPcHRj+hCR/HBbOOIwwtUjcrb0b5/5kLM= @@ -984,6 +1014,7 @@ github.com/philhofer/fwd v1.0.0/go.mod h1:gk3iGcWd9+svBvR0sR+KPcfE+RNWozjowpeBVG 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/pingcap/errors v0.11.4 h1:lFuQV/oaUMGcD2tqt+01ROSmJs75VG1ToEOkZIZ4nE4= +github.com/pingcap/errors v0.11.4/go.mod h1:Oi8TUi2kEtXXLMJk9l1cGmz20kV3TaQ0usTwv5KuLY8= github.com/pkg/diff v0.0.0-20210226163009-20ebb0f2a09e/go.mod h1:pJLUxLENpZxwdsKMEsNbx1VGcRFpLqf3715MtcvvzbA= github.com/pkg/errors v0.8.0/go.mod h1:bwawxfHBFNV+L2hUp1rHADufV3IMtnDRdf1r5NINEl0= github.com/pkg/errors v0.8.1/go.mod h1:bwawxfHBFNV+L2hUp1rHADufV3IMtnDRdf1r5NINEl0= @@ -1068,6 +1099,7 @@ github.com/sirupsen/logrus v1.4.2/go.mod h1:tLMulIdttU9McNUspp0xgXVQah82FyeX6Mwd github.com/sirupsen/logrus v1.6.0/go.mod h1:7uNnSEd1DgxDLC74fIahvMZmmYsHGZGEOFrfsX/uA88= github.com/sirupsen/logrus v1.7.0/go.mod h1:yWOB1SBYBC5VeMP7gHvWumXLIWorT60ONWic61uBYv0= github.com/sirupsen/logrus v1.9.0 h1:trlNQbNUG3OdDrDil03MCb1H2o9nJ1x4/5LYw7byDE0= +github.com/sirupsen/logrus v1.9.0/go.mod h1:naHLuLoDiP4jHNo9R0sCBMtWGeIprob74mVsIT4qYEQ= github.com/smartystreets/assertions v0.0.0-20180927180507-b2de0cb4f26d/go.mod h1:OnSkiWE9lh6wB0YB77sQom3nweQdgAjqCqsofrRNTgc= github.com/smartystreets/goconvey v1.6.4/go.mod h1:syvi0/a8iFYH4r/RixwvyeAJjdLS9QV7WQ/tjFTllLA= github.com/soheilhy/cmux v0.1.4/go.mod h1:IM3LyeVVIOuxMH7sFAkER9+bJ4dT7Ms6E4xg4kGIyLM= @@ -1146,6 +1178,7 @@ 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/go.mod h1:Ax+UKWsSmolVDwsd+7N3ZtXu+yMGCf907BLYF3GoBXY= github.com/ugorji/go/codec v1.2.7 h1:YPXUKf7fYbp/y8xloBqZOw2qaVggbfwMlI8WM3wZUJ0= +github.com/ugorji/go/codec v1.2.7/go.mod h1:WGN1fab3R1fzQlVQTkfxVtIBhWDRqOviHU95kRgeqEY= 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= @@ -1271,6 +1304,7 @@ golang.org/x/mod v0.4.2/go.mod h1:s0Qsj1ACt9ePp/hMypM3fl4fZqREWJwdYDEqhRiZZUA= golang.org/x/mod v0.5.1/go.mod h1:5OXOZSfqPIIbmVBIIKWRFfZjPR0E5r58TLhUjH0a2Ro= golang.org/x/mod v0.6.0-dev.0.20220419223038-86c51ed26bb4/go.mod h1:jJ57K6gSWd91VN4djpZkiMVwK6gcyfeH4XE8wZrZaV4= golang.org/x/mod v0.11.0 h1:bUO06HqtnRcc/7l71XBe4WcqTZ+3AH1J59zWDDwLKgU= +golang.org/x/mod v0.11.0/go.mod h1:iBbtSCu2XBx23ZKBPSOrRkjjQPZFPuis4dIYUhu/chs= 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= @@ -1584,6 +1618,7 @@ golang.org/x/tools v0.1.5/go.mod h1:o0xws9oXOQQZyjljx8fwUC0k7L1pTE6eaCbjGeHmOkk= golang.org/x/tools v0.1.8/go.mod h1:nABZi5QlRsZVlzPpHl034qft6wpY4eDcsTt5AaioBiU= 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/tools v0.6.0/go.mod h1:Xwgl3UAJ/d3gWutnCtw505GrjyAbvKui8lOU390QaIU= 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= @@ -1874,6 +1909,7 @@ 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.5.0 h1:Ljk6PdHdOhAb5aDMWXjDLMMhph+BpztA4v1QdqEW2eY= +gotest.tools/v3 v3.5.0/go.mod h1:isy3WKz7GK6uNw/sbHzfKBLvlvXwUyV06n6brMxxopU= 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= diff --git a/tests/difference/core/quint_model/driver/core_test.go b/tests/difference/core/quint_model/driver/core_test.go index 0bcaedb5dd..c4e6e29b3a 100644 --- a/tests/difference/core/quint_model/driver/core_test.go +++ b/tests/difference/core/quint_model/driver/core_test.go @@ -4,7 +4,7 @@ import ( "fmt" "time" - channeltypes "github.com/cosmos/ibc-go/v7/modules/core/04-channel/types" + ibctesting "github.com/cosmos/ibc-go/v7/testing" "github.com/stretchr/testify/suite" sdk "github.com/cosmos/cosmos-sdk/types" @@ -14,8 +14,6 @@ import ( appConsumer "github.com/cosmos/interchain-security/v3/app/consumer" appProvider "github.com/cosmos/interchain-security/v3/app/provider" - ibctestingcore "github.com/cosmos/interchain-security/v3/legacy_ibc_testing/core" - ibctesting "github.com/cosmos/interchain-security/v3/legacy_ibc_testing/testing" simibc "github.com/cosmos/interchain-security/v3/testutil/simibc" consumerkeeper "github.com/cosmos/interchain-security/v3/x/ccv/consumer/keeper" ) @@ -181,13 +179,10 @@ func (s *CoreSuite) consumerSlash(val sdk.ConsAddress, h int64, isDowntime bool) before := len(ctx.EventManager().Events()) s.consumerKeeper().SlashWithInfractionReason(ctx, val, h, 0, sdk.Dec{}, kind) // consumer module emits packets on slash, so these must be collected. - evts := ctx.EventManager().ABCIEvents() - for _, e := range evts[before:] { - if e.Type == channeltypes.EventTypeSendPacket { - packet, err := ibctestingcore.ReconstructPacketFromEvent(e) - s.Require().NoError(err) - s.simibc.Outboxes.AddPacket(s.chainID(C), packet) - } + evts := ctx.EventManager().Events() + packets := simibc.ParsePacketsFromEvents(evts[before:]) + if len(packets) > 0 { + s.simibc.Outboxes.AddPacket(s.chainID(C), packets[0]) } } @@ -205,11 +200,11 @@ func (s *CoreSuite) deliver(chain string, numPackets int) { s.simibc.DeliverPackets(s.chainID(chain), numPackets) } -func (s *CoreSuite) endAndBeginBlock(chain string) { - s.simibc.EndAndBeginBlock(s.chainID(chain), s.initState.BlockInterval, func() { - // s.compareModelAndSystemState() - }) -} +// func (s *CoreSuite) endAndBeginBlock(chain string) { +// s.simibc.EndAndBeginBlock(s.chainID(chain), s.initState.BlockInterval, func() { +// s.compareModelAndSystemState() +// }) +// } // // compareModelAndSystemState compares the state in the SUT to the state in the // // the model. @@ -327,12 +322,12 @@ func (s *CoreSuite) endAndBeginBlock(chain string) { // fmt.Println("Shortest [traceIx, actionIx]:", shortest, shortestLen) // } -// TODO: diff tests will eventually be replaced by quint tests, and all this code could then be deleted. -// Until that decision is finalized, we'll just comment out the top-level test. +// // TODO: diff tests will eventually be replaced by quint tests, and all this code could then be deleted. +// // Until that decision is finalized, we'll just comment out the top-level test. -// func TestCoreSuite(t *testing.T) { -// suite.Run(t, new(CoreSuite)) -// } +// // func TestCoreSuite(t *testing.T) { +// // suite.Run(t, new(CoreSuite)) +// // } // SetupTest sets up the test suite in a 'zero' state which matches // the initial state in the model. diff --git a/tests/difference/core/quint_model/driver/setup.go b/tests/difference/core/quint_model/driver/setup.go index 35f0e1e8a4..d5329b3464 100644 --- a/tests/difference/core/quint_model/driver/setup.go +++ b/tests/difference/core/quint_model/driver/setup.go @@ -10,6 +10,7 @@ import ( channeltypes "github.com/cosmos/ibc-go/v7/modules/core/04-channel/types" commitmenttypes "github.com/cosmos/ibc-go/v7/modules/core/23-commitment/types" ibctmtypes "github.com/cosmos/ibc-go/v7/modules/light-clients/07-tendermint" + ibctesting "github.com/cosmos/ibc-go/v7/testing" "github.com/cosmos/ibc-go/v7/testing/mock" "github.com/stretchr/testify/require" "github.com/stretchr/testify/suite" @@ -33,8 +34,8 @@ import ( appConsumer "github.com/cosmos/interchain-security/v3/app/consumer" appProvider "github.com/cosmos/interchain-security/v3/app/provider" - ibctesting "github.com/cosmos/interchain-security/v3/legacy_ibc_testing/testing" icstestingutils "github.com/cosmos/interchain-security/v3/testutil/ibc_testing" + testutil "github.com/cosmos/interchain-security/v3/testutil/integration" simibc "github.com/cosmos/interchain-security/v3/testutil/simibc" consumerkeeper "github.com/cosmos/interchain-security/v3/x/ccv/consumer/keeper" consumertypes "github.com/cosmos/interchain-security/v3/x/ccv/consumer/types" @@ -216,7 +217,7 @@ func (b *Builder) getAppBytesAndSenders( if genesis[consumertypes.ModuleName] != nil { app.AppCodec().MustUnmarshalJSON(genesis[consumertypes.ModuleName], &genesisConsumer) - genesisConsumer.InitialValSet = initValPowers + genesisConsumer.Provider.InitialValSet = initValPowers genesisConsumer.Params.Enabled = true genesis[consumertypes.ModuleName] = app.AppCodec().MustMarshalJSON(&genesisConsumer) } @@ -252,7 +253,7 @@ func (b *Builder) getAppBytesAndSenders( func (b *Builder) newChain( coord *ibctesting.Coordinator, - appInit ibctesting.AppIniter, + appInit icstestingutils.AppIniter, chainID string, validators *tmtypes.ValidatorSet, signers map[string]tmtypes.PrivValidator, @@ -349,7 +350,8 @@ func (b *Builder) createProviderAndConsumer() { // Create provider coordinator.Chains[ibctesting.GetChainID(0)] = b.newChain(coordinator, icstestingutils.ProviderAppIniter, ibctesting.GetChainID(0), validators, signers) // Create consumer, using the same validators. - coordinator.Chains[ibctesting.GetChainID(1)] = b.newChain(coordinator, icstestingutils.ConsumerAppIniter, ibctesting.GetChainID(1), validators, signers) + valUpdates := testutil.ToValidatorUpdates(b.suite.T(), validators) + coordinator.Chains[ibctesting.GetChainID(1)] = b.newChain(coordinator, icstestingutils.ConsumerAppIniter(valUpdates), ibctesting.GetChainID(1), validators, signers) b.coordinator = coordinator b.valAddresses = addresses @@ -524,19 +526,20 @@ func (b *Builder) createConsumerGenesis(client *ibctmtypes.ClientState) *consume providerConsState := b.provider().LastHeader.ConsensusState() valUpdates := tmtypes.TM2PB.ValidatorUpdates(b.provider().Vals) - params := consumertypes.NewParams( + params := ccv.NewParams( true, 1000, // ignore distribution "", // ignore distribution "", // ignore distribution ccv.DefaultCCVTimeoutPeriod, - consumertypes.DefaultTransferTimeoutPeriod, - consumertypes.DefaultConsumerRedistributeFrac, - consumertypes.DefaultHistoricalEntries, + ccv.DefaultTransferTimeoutPeriod, + ccv.DefaultConsumerRedistributeFrac, + ccv.DefaultHistoricalEntries, b.initState.UnbondingC, "0", // disable soft opt-out []string{}, []string{}, + ccv.DefaultRetryDelayPeriod, ) return consumertypes.NewInitialGenesisState(client, providerConsState, valUpdates, params) } From 5f966436385fd2af645032210d3b7e6862e6aed0 Mon Sep 17 00:00:00 2001 From: Philip Offtermatt Date: Wed, 1 Nov 2023 09:29:01 +0100 Subject: [PATCH 003/111] Start taking difftest code for mbt --- .../core/quint_model/driver/core_test.go | 20 +- .../core/quint_model/driver/mbt_test.go | 313 +- .../core/quint_model/driver/setup.go | 1267 +- .../core/quint_model/driver/trace.json | 18538 +--------------- 4 files changed, 2001 insertions(+), 18137 deletions(-) diff --git a/tests/difference/core/quint_model/driver/core_test.go b/tests/difference/core/quint_model/driver/core_test.go index c4e6e29b3a..c04f2704db 100644 --- a/tests/difference/core/quint_model/driver/core_test.go +++ b/tests/difference/core/quint_model/driver/core_test.go @@ -329,13 +329,13 @@ func (s *CoreSuite) deliver(chain string, numPackets int) { // // suite.Run(t, new(CoreSuite)) // // } -// SetupTest sets up the test suite in a 'zero' state which matches -// the initial state in the model. -func (s *CoreSuite) SetupTest() { - path, valAddresses, offsetHeight, offsetTimeUnix := GetZeroState(&s.Suite, initStateVar) - s.initState = initStateVar - s.valAddresses = valAddresses - s.offsetHeight = offsetHeight - s.offsetTimeUnix = offsetTimeUnix - s.simibc = simibc.MakeRelayedPath(s.Suite.T(), path) -} +// // SetupTest sets up the test suite in a 'zero' state which matches +// // the initial state in the model. +// func (s *CoreSuite) SetupTest() { +// path, valAddresses, offsetHeight, offsetTimeUnix := GetZeroState(&s.Suite, initStateVar) +// s.initState = initStateVar +// s.valAddresses = valAddresses +// s.offsetHeight = offsetHeight +// s.offsetTimeUnix = offsetTimeUnix +// s.simibc = simibc.MakeRelayedPath(s.Suite.T(), path) +// } diff --git a/tests/difference/core/quint_model/driver/mbt_test.go b/tests/difference/core/quint_model/driver/mbt_test.go index 8ec992039d..0cbd253d75 100644 --- a/tests/difference/core/quint_model/driver/mbt_test.go +++ b/tests/difference/core/quint_model/driver/mbt_test.go @@ -1,15 +1,269 @@ package main import ( + "encoding/json" "log" "testing" + "time" + "cosmossdk.io/api/tendermint/abci" + cmttypes "github.com/cometbft/cometbft/types" + "github.com/cosmos/cosmos-sdk/baseapp" + codectypes "github.com/cosmos/cosmos-sdk/codec/types" + cryptocodec "github.com/cosmos/cosmos-sdk/crypto/codec" + "github.com/cosmos/cosmos-sdk/crypto/keys/secp256k1" + sdk "github.com/cosmos/cosmos-sdk/types" + "github.com/cosmos/interchain-security/v3/testutil/integration" "github.com/informalsystems/itf-go/itf" + "github.com/stretchr/testify/require" + + authtypes "github.com/cosmos/cosmos-sdk/x/auth/types" + banktypes "github.com/cosmos/cosmos-sdk/x/bank/types" + stakingtypes "github.com/cosmos/cosmos-sdk/x/staking/types" + + ibctesting "github.com/cosmos/ibc-go/v7/testing" ) +const INITIAL_ACCOUNT_BALANCE = 1000000000 + +func getAppBytesAndSenders( + t *testing.T, + chainID string, + app ibctesting.TestingApp, + genesis map[string]json.RawMessage, + initialValSet *cmttypes.ValidatorSet, + // the list of nodes that will be created, even ones that have no voting power initially + nodes []*cmttypes.Validator, +) ([]byte, []ibctesting.SenderAccount) { + accounts := []authtypes.GenesisAccount{} + balances := []banktypes.Balance{} + senderAccounts := []ibctesting.SenderAccount{} + + // Create genesis accounts. + for i := 0; i < len(nodes); i++ { + pk := secp256k1.GenPrivKey() + acc := authtypes.NewBaseAccount(pk.PubKey().Address().Bytes(), pk.PubKey(), uint64(i), 0) + + // Give enough funds for many delegations + // Extra units are to delegate to extra validators created later + // in order to bond them and still have INITIAL_DELEGATOR_TOKENS remaining + bal := banktypes.Balance{ + Address: acc.GetAddress().String(), + Coins: sdk.NewCoins(sdk.NewCoin(sdk.DefaultBondDenom, + sdk.NewIntFromUint64(INITIAL_ACCOUNT_BALANCE))), + } + + accounts = append(accounts, acc) + balances = append(balances, bal) + + senderAccount := ibctesting.SenderAccount{ + SenderAccount: acc, + SenderPrivKey: pk, + } + + senderAccounts = append(senderAccounts, senderAccount) + } + + // set genesis accounts + genesisAuth := authtypes.NewGenesisState(authtypes.DefaultParams(), accounts) + genesis[authtypes.ModuleName] = app.AppCodec().MustMarshalJSON(genesisAuth) + + stakingValidators := make([]stakingtypes.Validator, 0, len(nodes)) + delegations := make([]stakingtypes.Delegation, 0, len(nodes)) + + // Sum bonded is needed for BondedPool account + sumBonded := sdk.NewInt(0) + initValPowers := []abci.ValidatorUpdate{} + + for i, val := range nodes { + tokens := sdk.NewInt(int64(val.VotingPower)) + sumBonded = sumBonded.Add(tokens) + + pk, err := cryptocodec.FromTmPubKeyInterface(val.PubKey) + require.NoError(b.suite.T(), err) + pkAny, err := codectypes.NewAnyWithValue(pk) + require.NoError(b.suite.T(), err) + + validator := stakingtypes.Validator{ + OperatorAddress: sdk.ValAddress(val.Address).String(), + ConsensusPubkey: pkAny, + Jailed: false, + Status: status, + Tokens: tokens, + DelegatorShares: sumShares, + Description: stakingtypes.Description{}, + UnbondingHeight: int64(0), + UnbondingTime: time.Unix(0, 0).UTC(), + Commission: stakingtypes.NewCommission(sdk.ZeroDec(), sdk.ZeroDec(), sdk.ZeroDec()), + MinSelfDelegation: sdk.ZeroInt(), + } + + stakingValidators = append(stakingValidators, validator) + + // Store delegation from the model delegator account + delegations = append(delegations, stakingtypes.NewDelegation(accounts[0].GetAddress(), val.Address.Bytes(), delShares)) + // Remaining delegation is from extra account + delegations = append(delegations, stakingtypes.NewDelegation(accounts[1].GetAddress(), val.Address.Bytes(), sumShares.Sub(delShares))) + + // add initial validator powers so consumer InitGenesis runs correctly + pub, _ := val.ToProto() + initValPowers = append(initValPowers, abci.ValidatorUpdate{ + Power: val.VotingPower, + PubKey: pub.PubKey, + }) + } + + bondDenom := sdk.DefaultBondDenom + genesisStaking := stakingtypes.GenesisState{} + genesisConsumer := consumertypes.GenesisState{} + + if genesis[stakingtypes.ModuleName] != nil { + // If staking module genesis already exists + app.AppCodec().MustUnmarshalJSON(genesis[stakingtypes.ModuleName], &genesisStaking) + bondDenom = genesisStaking.Params.BondDenom + } + + if genesis[consumertypes.ModuleName] != nil { + app.AppCodec().MustUnmarshalJSON(genesis[consumertypes.ModuleName], &genesisConsumer) + genesisConsumer.Provider.InitialValSet = initValPowers + genesisConsumer.Params.Enabled = true + genesis[consumertypes.ModuleName] = app.AppCodec().MustMarshalJSON(&genesisConsumer) + } + + // Set model parameters + genesisStaking.Params.MaxEntries = uint32(b.initState.MaxEntries) + genesisStaking.Params.MaxValidators = uint32(b.initState.MaxValidators) + genesisStaking.Params.UnbondingTime = b.initState.UnbondingP + genesisStaking = *stakingtypes.NewGenesisState(genesisStaking.Params, stakingValidators, delegations) + genesis[stakingtypes.ModuleName] = app.AppCodec().MustMarshalJSON(&genesisStaking) + + // add bonded amount to bonded pool module account + balances = append(balances, banktypes.Balance{ + Address: authtypes.NewModuleAddress(stakingtypes.BondedPoolName).String(), + Coins: sdk.Coins{sdk.NewCoin(bondDenom, sumBonded)}, + }) + + // add unbonded amount + balances = append(balances, banktypes.Balance{ + Address: authtypes.NewModuleAddress(stakingtypes.NotBondedPoolName).String(), + Coins: sdk.Coins{sdk.NewCoin(bondDenom, sdk.ZeroInt())}, + }) + + // update total funds supply + genesisBank := banktypes.NewGenesisState(banktypes.DefaultGenesisState().Params, balances, sdk.NewCoins(), []banktypes.Metadata{}, []banktypes.SendEnabled{}) + genesis[banktypes.ModuleName] = app.AppCodec().MustMarshalJSON(genesisBank) + + stateBytes, err := json.MarshalIndent(genesis, "", " ") + require.NoError(b.suite.T(), err) + + return stateBytes, senderAccounts +} + +func newChain( + coord *ibctesting.Coordinator, + appInit icstestingutils.AppIniter, + chainID string, + validators *tmtypes.ValidatorSet, + signers map[string]tmtypes.PrivValidator, +) *ibctesting.TestChain { + app, genesis := appInit() + + baseapp.SetChainID(chainID)(app.GetBaseApp()) + + stateBytes, senderAccounts := b.getAppBytesAndSenders(chainID, app, genesis, validators) + + app.InitChain( + abci.RequestInitChain{ + ChainId: chainID, + Validators: []abci.ValidatorUpdate{}, + ConsensusParams: b.initState.ConsensusParams, + AppStateBytes: stateBytes, + }, + ) + + app.Commit() + + app.BeginBlock( + abci.RequestBeginBlock{ + Header: tmproto.Header{ + ChainID: chainID, + Height: app.LastBlockHeight() + 1, + AppHash: app.LastCommitID().Hash, + ValidatorsHash: validators.Hash(), + NextValidatorsHash: validators.Hash(), + }, + }, + ) + + chain := &ibctesting.TestChain{ + T: b.suite.T(), + Coordinator: coord, + ChainID: chainID, + App: app, + CurrentHeader: tmproto.Header{ + ChainID: chainID, + Height: 1, + Time: coord.CurrentTime.UTC(), + }, + QueryServer: app.GetIBCKeeper(), + TxConfig: app.GetTxConfig(), + Codec: app.AppCodec(), + Vals: validators, + NextVals: validators, + Signers: signers, + SenderPrivKey: senderAccounts[0].SenderPrivKey, + SenderAccount: senderAccounts[0].SenderAccount, + SenderAccounts: senderAccounts, + } + + coord.CommitBlock(chain) + + return chain +} + +// Given a map from node names to voting powers, create a validator set with the right voting powers. +// All nodes should be included in the voting power map, even if they have voting power 0. +// This way, the nodes will have validators (that can later be assigned voting powers) and signers created for them. +// +// Returns: +// - a validator set +// - a map from node names to validator objects and +// - a map from validator addresses to private validators (signers) +func CreateValSet(t *testing.T, initialValidatorSet map[string]int64) (*cmttypes.ValidatorSet, map[string]*cmttypes.Validator, map[string]cmttypes.PrivValidator) { + // create a valSet and signers, but the voting powers will not yet be right + valSet, _, signers := integration.CreateValidators(t, len(initialValidatorSet)) + + // create a map from validator names to validators + valMap := make(map[string]*cmttypes.Validator) + + // impose an order on the validators + valNames := make([]string, 0, len(initialValidatorSet)) + for valName := range initialValidatorSet { + valNames = append(valNames, valName) + } + + // assign the validators from the created valSet to valNames in the chosen order + for i, valName := range valNames { + _, val := valSet.GetByIndex(int32(i)) + valMap[valName] = val + } + + // create a valSet that has the right voting powers + vals := make([]*cmttypes.Validator, len(valNames)) + for index, valName := range valNames { + _, val := valSet.GetByIndex(int32(index)) + val.VotingPower = initialValidatorSet[valName] + vals[index] = val + } + + // override the valSet by creating a new one with the right voting powers + valSet = cmttypes.NewValidatorSet(vals) + return valSet, valMap, signers +} + func TestItfTrace(t *testing.T) { path := "trace.json" - log.Printf("🟡 Testing trace %s", path) + t.Logf("🟡 Testing trace %s", path) // Load trace trace := &itf.Trace{} @@ -17,15 +271,52 @@ func TestItfTrace(t *testing.T) { log.Fatalf("Error loading trace file: %s", err) } - log.Println("Reading auxiliary information...") - if trace.Vars[0] != "currentState" || trace.Vars[1] != "trace" { - log.Fatalf("Error loading trace file %s: %s", path, "Variables should be currentState, trace") + if trace.Vars[0] != "currentState" || + trace.Vars[1] != "params" || + trace.Vars[2] != "trace" { + t.Fatalf("Error loading trace file %s: Variables should be currentState, params, trace but are %s", + path, trace.Vars) + } + + t.Log("Reading params...") + params := trace.States[0].VarValues["params"].Value.(itf.MapExprType) + + consumersExpr := params["ConsumerChains"].Value.(itf.ListExprType) + initialValSetExpr := params["InitialValidatorSet"].Value.(itf.MapExprType) + + initialValSet := make(map[string]int64) + for val, power := range initialValSetExpr { + initialValSet[val] = power.Value.(int64) } - log.Println("Reading the trace...") + consumers := make([]string, len(consumersExpr)) + for i, chain := range consumersExpr { + consumers[i] = chain.Value.(string) + } + + t.Log("Consumer chains are: ", consumers) + + valExprs := params["Nodes"].Value.(itf.ListExprType) + valNames := make([]string, len(valExprs)) + for i, val := range valExprs { + valNames[i] = val.Value.(string) + } + + // dummyValSet is a valSet with the right validators, but not yet right powers + valSet, addressMap, signers := CreateValSet(t, initialValSet) + t.Log("Initial validator set is: ", valSet) + t.Log(addressMap) + t.Log(signers) + + t.Log("Creating coordinator") + coordinator := ibctesting.NewCoordinator(t, len(consumers)) + + // initializing the provider chain + + t.Log("Reading the trace...") for index, state := range trace.States { - log.Printf("Reading state %v", index) + t.Logf("Reading state %v", index) // modelState := state.VarValues["currentState"] trace := state.VarValues["trace"].Value.(itf.ListExprType) @@ -39,25 +330,25 @@ func TestItfTrace(t *testing.T) { case "VotingPowerChange": node := lastAction["validator"].Value.(string) newVotingPower := lastAction["newVotingPower"].Value.(int64) - log.Println(node, newVotingPower) + t.Log(node, newVotingPower) case "EndAndBeginBlockForProvider": timeAdvancement := lastAction["timeAdvancement"].Value.(int64) consumersToStart := lastAction["consumersToStart"].Value.(itf.ListExprType) consumersToStop := lastAction["consumersToStop"].Value.(itf.ListExprType) - log.Println(timeAdvancement, consumersToStart, consumersToStop) + t.Log(timeAdvancement, consumersToStart, consumersToStop) case "EndAndBeginBlockForConsumer": consumerChain := lastAction["consumerChain"].Value.(string) timeAdvancement := lastAction["timeAdvancement"].Value.(int64) - log.Println(consumerChain, timeAdvancement) + t.Log(consumerChain, timeAdvancement) case "DeliverVscPacket": consumerChain := lastAction["consumerChain"].Value.(string) - log.Println(consumerChain) + t.Log(consumerChain) case "DeliverVscMaturedPacket": consumerChain := lastAction["consumerChain"].Value.(string) - log.Println(consumerChain) + t.Log(consumerChain) default: log.Fatalf("Error loading trace file %s, step %v: do not know action type %s", diff --git a/tests/difference/core/quint_model/driver/setup.go b/tests/difference/core/quint_model/driver/setup.go index d5329b3464..4ebaa1b009 100644 --- a/tests/difference/core/quint_model/driver/setup.go +++ b/tests/difference/core/quint_model/driver/setup.go @@ -1,625 +1,644 @@ +// package main + +// import ( +// "bytes" +// cryptoEd25519 "crypto/ed25519" +// "encoding/json" +// "time" + +// clienttypes "github.com/cosmos/ibc-go/v7/modules/core/02-client/types" +// channeltypes "github.com/cosmos/ibc-go/v7/modules/core/04-channel/types" +// commitmenttypes "github.com/cosmos/ibc-go/v7/modules/core/23-commitment/types" +// ibctmtypes "github.com/cosmos/ibc-go/v7/modules/light-clients/07-tendermint" +// ibctesting "github.com/cosmos/ibc-go/v7/testing" +// "github.com/cosmos/ibc-go/v7/testing/mock" +// "github.com/stretchr/testify/require" +// "github.com/stretchr/testify/suite" + +// "github.com/cosmos/cosmos-sdk/baseapp" +// codectypes "github.com/cosmos/cosmos-sdk/codec/types" +// cryptocodec "github.com/cosmos/cosmos-sdk/crypto/codec" +// cosmosEd25519 "github.com/cosmos/cosmos-sdk/crypto/keys/ed25519" +// "github.com/cosmos/cosmos-sdk/crypto/keys/secp256k1" +// sdk "github.com/cosmos/cosmos-sdk/types" +// authtypes "github.com/cosmos/cosmos-sdk/x/auth/types" +// banktypes "github.com/cosmos/cosmos-sdk/x/bank/types" +// slashingkeeper "github.com/cosmos/cosmos-sdk/x/slashing/keeper" +// slashingtypes "github.com/cosmos/cosmos-sdk/x/slashing/types" +// stakingkeeper "github.com/cosmos/cosmos-sdk/x/staking/keeper" +// stakingtypes "github.com/cosmos/cosmos-sdk/x/staking/types" + +// abci "github.com/cometbft/cometbft/abci/types" +// tmproto "github.com/cometbft/cometbft/proto/tendermint/types" +// tmtypes "github.com/cometbft/cometbft/types" + +// appConsumer "github.com/cosmos/interchain-security/v3/app/consumer" +// appProvider "github.com/cosmos/interchain-security/v3/app/provider" +// icstestingutils "github.com/cosmos/interchain-security/v3/testutil/ibc_testing" +// testutil "github.com/cosmos/interchain-security/v3/testutil/integration" +// consumerkeeper "github.com/cosmos/interchain-security/v3/x/ccv/consumer/keeper" +// consumertypes "github.com/cosmos/interchain-security/v3/x/ccv/consumer/types" +// providerkeeper "github.com/cosmos/interchain-security/v3/x/ccv/provider/keeper" +// ccv "github.com/cosmos/interchain-security/v3/x/ccv/types" +// ) + +// type Builder struct { +// suite *suite.Suite +// path *ibctesting.Path +// coordinator *ibctesting.Coordinator +// valAddresses []sdk.ValAddress +// initState InitState +// } + +// func (b *Builder) provider() *ibctesting.TestChain { +// return b.coordinator.GetChain(ibctesting.GetChainID(0)) +// } + +// func (b *Builder) consumer() *ibctesting.TestChain { +// return b.coordinator.GetChain(ibctesting.GetChainID(1)) +// } + +// func (b *Builder) providerCtx() sdk.Context { +// return b.provider().GetContext() +// } + +// func (b *Builder) consumerCtx() sdk.Context { +// return b.consumer().GetContext() +// } + +// func (b *Builder) providerStakingKeeper() stakingkeeper.Keeper { +// return *b.provider().App.(*appProvider.App).StakingKeeper +// } + +// func (b *Builder) providerSlashingKeeper() slashingkeeper.Keeper { +// return b.provider().App.(*appProvider.App).SlashingKeeper +// } + +// func (b *Builder) providerKeeper() providerkeeper.Keeper { +// return b.provider().App.(*appProvider.App).ProviderKeeper +// } + +// func (b *Builder) consumerKeeper() consumerkeeper.Keeper { +// return b.consumer().App.(*appConsumer.App).ConsumerKeeper +// } + +// func (b *Builder) providerEndpoint() *ibctesting.Endpoint { +// return b.path.EndpointB +// } + +// func (b *Builder) consumerEndpoint() *ibctesting.Endpoint { +// return b.path.EndpointA +// } + +// func (b *Builder) validator(i int64) sdk.ValAddress { +// return b.valAddresses[i] +// } + +// func (b *Builder) consAddr(i int64) sdk.ConsAddress { +// return sdk.ConsAddress(b.validator(i)) +// } + +// // getValidatorPK returns the validator private key using the given seed index +// func (b *Builder) getValidatorPK(seedIx int) mock.PV { +// seed := []byte(b.initState.PKSeeds[seedIx]) +// return mock.PV{PrivKey: &cosmosEd25519.PrivKey{Key: cryptoEd25519.NewKeyFromSeed(seed)}} //nolint:staticcheck // SA1019: cosmosEd25519.PrivKey is deprecated: PrivKey defines a ed25519 private key. NOTE: ed25519 keys must not be used in SDK apps except in a tendermint validator context. +// } + +// func (b *Builder) getAppBytesAndSenders( +// chainID string, +// app ibctesting.TestingApp, +// genesis map[string]json.RawMessage, +// validators *tmtypes.ValidatorSet, +// ) ([]byte, []ibctesting.SenderAccount) { +// accounts := []authtypes.GenesisAccount{} +// balances := []banktypes.Balance{} +// senderAccounts := []ibctesting.SenderAccount{} + +// // Create genesis accounts. +// for i := 0; i < b.initState.MaxValidators; i++ { +// pk := secp256k1.GenPrivKey() +// acc := authtypes.NewBaseAccount(pk.PubKey().Address().Bytes(), pk.PubKey(), uint64(i), 0) + +// // Give enough funds for many delegations +// // Extra units are to delegate to extra validators created later +// // in order to bond them and still have INITIAL_DELEGATOR_TOKENS remaining +// extra := 0 +// for j := 0; j < b.initState.NumValidators; j++ { +// if b.initState.ValStates.Status[j] != stakingtypes.Bonded { +// extra += b.initState.ValStates.Delegation[j] +// } +// } +// amt := uint64(b.initState.InitialDelegatorTokens + extra) + +// bal := banktypes.Balance{ +// Address: acc.GetAddress().String(), +// Coins: sdk.NewCoins(sdk.NewCoin(sdk.DefaultBondDenom, sdk.NewIntFromUint64(amt))), +// } + +// accounts = append(accounts, acc) +// balances = append(balances, bal) + +// senderAccount := ibctesting.SenderAccount{ +// SenderAccount: acc, +// SenderPrivKey: pk, +// } + +// senderAccounts = append(senderAccounts, senderAccount) +// } + +// // set genesis accounts +// genesisAuth := authtypes.NewGenesisState(authtypes.DefaultParams(), accounts) +// genesis[authtypes.ModuleName] = app.AppCodec().MustMarshalJSON(genesisAuth) + +// stakingValidators := make([]stakingtypes.Validator, 0, len(validators.Validators)) +// delegations := make([]stakingtypes.Delegation, 0, len(validators.Validators)) + +// // Sum bonded is needed for BondedPool account +// sumBonded := sdk.NewInt(0) +// initValPowers := []abci.ValidatorUpdate{} + +// for i, val := range validators.Validators { +// status := b.initState.ValStates.Status[i] +// delegation := b.initState.ValStates.Delegation[i] +// extra := b.initState.ValStates.ValidatorExtraTokens[i] + +// tokens := sdk.NewInt(int64(delegation + extra)) +// b.suite.Require().Equal(status, stakingtypes.Bonded, "All genesis validators should be bonded") +// sumBonded = sumBonded.Add(tokens) +// // delegator account receives delShares shares +// delShares := sdk.NewDec(int64(delegation)) +// // validator has additional sumShares due to extra units +// sumShares := sdk.NewDec(int64(delegation + extra)) + +// pk, err := cryptocodec.FromTmPubKeyInterface(val.PubKey) +// require.NoError(b.suite.T(), err) +// pkAny, err := codectypes.NewAnyWithValue(pk) +// require.NoError(b.suite.T(), err) + +// validator := stakingtypes.Validator{ +// OperatorAddress: sdk.ValAddress(val.Address).String(), +// ConsensusPubkey: pkAny, +// Jailed: false, +// Status: status, +// Tokens: tokens, +// DelegatorShares: sumShares, +// Description: stakingtypes.Description{}, +// UnbondingHeight: int64(0), +// UnbondingTime: time.Unix(0, 0).UTC(), +// Commission: stakingtypes.NewCommission(sdk.ZeroDec(), sdk.ZeroDec(), sdk.ZeroDec()), +// MinSelfDelegation: sdk.ZeroInt(), +// } + +// stakingValidators = append(stakingValidators, validator) + +// // Store delegation from the model delegator account +// delegations = append(delegations, stakingtypes.NewDelegation(accounts[0].GetAddress(), val.Address.Bytes(), delShares)) +// // Remaining delegation is from extra account +// delegations = append(delegations, stakingtypes.NewDelegation(accounts[1].GetAddress(), val.Address.Bytes(), sumShares.Sub(delShares))) + +// // add initial validator powers so consumer InitGenesis runs correctly +// pub, _ := val.ToProto() +// initValPowers = append(initValPowers, abci.ValidatorUpdate{ +// Power: val.VotingPower, +// PubKey: pub.PubKey, +// }) +// } + +// bondDenom := sdk.DefaultBondDenom +// genesisStaking := stakingtypes.GenesisState{} +// genesisConsumer := consumertypes.GenesisState{} + +// if genesis[stakingtypes.ModuleName] != nil { +// // If staking module genesis already exists +// app.AppCodec().MustUnmarshalJSON(genesis[stakingtypes.ModuleName], &genesisStaking) +// bondDenom = genesisStaking.Params.BondDenom +// } + +// if genesis[consumertypes.ModuleName] != nil { +// app.AppCodec().MustUnmarshalJSON(genesis[consumertypes.ModuleName], &genesisConsumer) +// genesisConsumer.Provider.InitialValSet = initValPowers +// genesisConsumer.Params.Enabled = true +// genesis[consumertypes.ModuleName] = app.AppCodec().MustMarshalJSON(&genesisConsumer) +// } + +// // Set model parameters +// genesisStaking.Params.MaxEntries = uint32(b.initState.MaxEntries) +// genesisStaking.Params.MaxValidators = uint32(b.initState.MaxValidators) +// genesisStaking.Params.UnbondingTime = b.initState.UnbondingP +// genesisStaking = *stakingtypes.NewGenesisState(genesisStaking.Params, stakingValidators, delegations) +// genesis[stakingtypes.ModuleName] = app.AppCodec().MustMarshalJSON(&genesisStaking) + +// // add bonded amount to bonded pool module account +// balances = append(balances, banktypes.Balance{ +// Address: authtypes.NewModuleAddress(stakingtypes.BondedPoolName).String(), +// Coins: sdk.Coins{sdk.NewCoin(bondDenom, sumBonded)}, +// }) + +// // add unbonded amount +// balances = append(balances, banktypes.Balance{ +// Address: authtypes.NewModuleAddress(stakingtypes.NotBondedPoolName).String(), +// Coins: sdk.Coins{sdk.NewCoin(bondDenom, sdk.ZeroInt())}, +// }) + +// // update total funds supply +// genesisBank := banktypes.NewGenesisState(banktypes.DefaultGenesisState().Params, balances, sdk.NewCoins(), []banktypes.Metadata{}, []banktypes.SendEnabled{}) +// genesis[banktypes.ModuleName] = app.AppCodec().MustMarshalJSON(genesisBank) + +// stateBytes, err := json.MarshalIndent(genesis, "", " ") +// require.NoError(b.suite.T(), err) + +// return stateBytes, senderAccounts +// } + +// func (b *Builder) newChain( +// coord *ibctesting.Coordinator, +// appInit icstestingutils.AppIniter, +// chainID string, +// validators *tmtypes.ValidatorSet, +// signers map[string]tmtypes.PrivValidator, +// ) *ibctesting.TestChain { +// app, genesis := appInit() + +// baseapp.SetChainID(chainID)(app.GetBaseApp()) + +// stateBytes, senderAccounts := b.getAppBytesAndSenders(chainID, app, genesis, validators) + +// app.InitChain( +// abci.RequestInitChain{ +// ChainId: chainID, +// Validators: []abci.ValidatorUpdate{}, +// ConsensusParams: b.initState.ConsensusParams, +// AppStateBytes: stateBytes, +// }, +// ) + +// app.Commit() + +// app.BeginBlock( +// abci.RequestBeginBlock{ +// Header: tmproto.Header{ +// ChainID: chainID, +// Height: app.LastBlockHeight() + 1, +// AppHash: app.LastCommitID().Hash, +// ValidatorsHash: validators.Hash(), +// NextValidatorsHash: validators.Hash(), +// }, +// }, +// ) + +// chain := &ibctesting.TestChain{ +// T: b.suite.T(), +// Coordinator: coord, +// ChainID: chainID, +// App: app, +// CurrentHeader: tmproto.Header{ +// ChainID: chainID, +// Height: 1, +// Time: coord.CurrentTime.UTC(), +// }, +// QueryServer: app.GetIBCKeeper(), +// TxConfig: app.GetTxConfig(), +// Codec: app.AppCodec(), +// Vals: validators, +// NextVals: validators, +// Signers: signers, +// SenderPrivKey: senderAccounts[0].SenderPrivKey, +// SenderAccount: senderAccounts[0].SenderAccount, +// SenderAccounts: senderAccounts, +// } + +// coord.CommitBlock(chain) + +// return chain +// } + +// func (b *Builder) createValidators(addresses []sdk.ValAddress) (*tmtypes.ValidatorSet, map[string]tmtypes.PrivValidator) { +// signers := map[string]tmtypes.PrivValidator{} +// validators := []*tmtypes.Validator{} + +// for i, power := range b.initState.ValStates.Tokens { +// if b.initState.ValStates.Status[i] != stakingtypes.Bonded { +// continue +// } +// privVal := b.getValidatorPK(i) + +// pubKey, err := privVal.GetPubKey() +// require.NoError(b.suite.T(), err) + +// // Compute address +// addr, err := sdk.ValAddressFromHex(pubKey.Address().String()) +// require.NoError(b.suite.T(), err) +// addresses = append(addresses, addr) + +// // Save signer +// signers[pubKey.Address().String()] = privVal + +// // Save validator with power +// validators = append(validators, tmtypes.NewValidator(pubKey, int64(power))) +// } + +// return tmtypes.NewValidatorSet(validators), signers, addresses +// } + +// func (b *Builder) createChain(initialValSet *tmproto.ValidatorSet) { +// // Create provider +// b.coordinator.Chains["provider"] = b.newChain( +// b.coordinator, +// icstestingutils.ProviderAppIniter, +// "provider", validators, signers) + +// valUpdates := testutil.ToValidatorUpdates(b.suite.T(), validators) +// } + +// func (b *Builder) createProviderAndConsumer() { +// coordinator := ibctesting.NewCoordinator(b.suite.T(), 0) + +// // Create validators +// validators, signers, addresses := b.createValidators() +// // Create provider +// coordinator.Chains[ibctesting.GetChainID(0)] = b.newChain(coordinator, icstestingutils.ProviderAppIniter, ibctesting.GetChainID(0), validators, signers) +// // Create consumer, using the same validators. +// valUpdates := testutil.ToValidatorUpdates(b.suite.T(), validators) +// coordinator.Chains[ibctesting.GetChainID(1)] = b.newChain(coordinator, icstestingutils.ConsumerAppIniter(valUpdates), ibctesting.GetChainID(1), validators, signers) + +// b.coordinator = coordinator +// b.valAddresses = addresses +// } + +// // setSigningInfos sets the validator signing info in the provider Slashing module +// func (b *Builder) setSigningInfos() { +// for i := 0; i < b.initState.NumValidators; i++ { +// info := slashingtypes.NewValidatorSigningInfo( +// b.consAddr(int64(i)), +// b.provider().CurrentHeader.GetHeight(), +// 0, +// time.Unix(0, 0), +// false, +// 0, +// ) +// b.providerSlashingKeeper().SetValidatorSigningInfo(b.providerCtx(), b.consAddr(int64(i)), info) +// } +// } + +// // Checks that the lexicographic ordering of validator addresses as computed in +// // the staking module match the ordering of validators in the model. +// func (b *Builder) ensureValidatorLexicographicOrderingMatchesModel() { +// check := func(lesser, greater sdk.ValAddress) { +// lesserV, _ := b.providerStakingKeeper().GetValidator(b.providerCtx(), lesser) +// greaterV, _ := b.providerStakingKeeper().GetValidator(b.providerCtx(), greater) +// lesserKey := stakingtypes.GetValidatorsByPowerIndexKey(lesserV, sdk.DefaultPowerReduction) +// greaterKey := stakingtypes.GetValidatorsByPowerIndexKey(greaterV, sdk.DefaultPowerReduction) +// // The result will be 0 if a==b, -1 if a < b, and +1 if a > b. +// res := bytes.Compare(lesserKey, greaterKey) +// // Confirm that validator precedence is the same in code as in model +// b.suite.Require().Equal(-1, res) +// } + +// // In order to match the model to the system under test it is necessary +// // to enforce a strict lexicographic ordering on the validators. +// // We must do this because the staking module will break ties when +// // deciding the active validator set by comparing addresses lexicographically. +// // Thus, we assert here that the ordering in the model matches the ordering +// // in the SUT. +// for i := range b.valAddresses[:len(b.valAddresses)-1] { +// // validators are chosen sorted descending in the staking module +// greater := b.valAddresses[i] +// lesser := b.valAddresses[i+1] +// check(lesser, greater) +// } +// } + +// // delegate is used to delegate tokens to newly created +// // validators in the setup process. +// func (b *Builder) delegate(del int, val sdk.ValAddress, amt int64) { +// d := b.provider().SenderAccounts[del].SenderAccount.GetAddress() +// coins := sdk.NewCoin(sdk.DefaultBondDenom, sdk.NewInt(amt)) +// msg := stakingtypes.NewMsgDelegate(d, val, coins) +// providerStaking := b.providerStakingKeeper() +// pskServer := stakingkeeper.NewMsgServerImpl(&providerStaking) +// _, err := pskServer.Delegate(sdk.WrapSDKContext(b.providerCtx()), msg) +// b.suite.Require().NoError(err) +// } + +// // addValidatorToStakingModule creates an additional validator with zero commission +// // and zero tokens (zero voting power). +// func (b *Builder) addValidatorToStakingModule(privVal mock.PV) { +// coin := sdk.NewCoin(sdk.DefaultBondDenom, sdk.NewInt(0)) + +// pubKey, err := privVal.GetPubKey() +// require.NoError(b.suite.T(), err) + +// // Compute address +// addr, err := sdk.ValAddressFromHex(pubKey.Address().String()) +// require.NoError(b.suite.T(), err) + +// sdkPK, err := cryptocodec.FromTmPubKeyInterface(pubKey) +// require.NoError(b.suite.T(), err) + +// msg, err := stakingtypes.NewMsgCreateValidator( +// addr, +// sdkPK, +// coin, +// stakingtypes.Description{}, +// stakingtypes.NewCommissionRates(sdk.ZeroDec(), sdk.ZeroDec(), sdk.ZeroDec()), +// sdk.ZeroInt()) +// b.suite.Require().NoError(err) +// providerStaking := b.providerStakingKeeper() +// pskServer := stakingkeeper.NewMsgServerImpl(&providerStaking) +// _, _ = pskServer.CreateValidator(sdk.WrapSDKContext(b.providerCtx()), msg) +// } + +// func (b *Builder) addExtraProviderValidators() { +// for i, status := range b.initState.ValStates.Status { +// if status == stakingtypes.Unbonded { +// privVal := b.getValidatorPK(i) +// b.addValidatorToStakingModule(privVal) +// pubKey, err := privVal.GetPubKey() +// require.NoError(b.suite.T(), err) + +// addr, err := sdk.ValAddressFromHex(pubKey.Address().String()) +// require.NoError(b.suite.T(), err) + +// b.valAddresses = append(b.valAddresses, addr) +// b.provider().Signers[pubKey.Address().String()] = privVal +// b.consumer().Signers[pubKey.Address().String()] = privVal +// } +// } + +// b.setSigningInfos() + +// b.ensureValidatorLexicographicOrderingMatchesModel() + +// for i := range b.initState.ValStates.Status { +// if b.initState.ValStates.Status[i] == stakingtypes.Unbonded { +// del := b.initState.ValStates.Delegation[i] +// extra := b.initState.ValStates.ValidatorExtraTokens[i] +// b.delegate(0, b.validator(int64(i)), int64(del)) +// b.delegate(1, b.validator(int64(i)), int64(extra)) +// } +// } +// } + +// func (b *Builder) setProviderParams() { +// // Set the slash factors on the provider to match the model +// slash := b.providerSlashingKeeper().GetParams(b.providerCtx()) +// slash.SlashFractionDoubleSign = b.initState.SlashDoublesign +// slash.SlashFractionDowntime = b.initState.SlashDowntime +// err := b.providerSlashingKeeper().SetParams(b.providerCtx(), slash) +// if err != nil { +// panic(err) +// } +// // Set the throttle factors +// throttle := b.providerKeeper().GetParams(b.providerCtx()) +// throttle.SlashMeterReplenishFraction = "1.0" +// throttle.SlashMeterReplenishPeriod = time.Second * 1 +// b.providerKeeper().SetParams(b.providerCtx(), throttle) +// } + +// func (b *Builder) configurePath() { +// b.path = ibctesting.NewPath(b.consumer(), b.provider()) +// b.consumerEndpoint().ChannelConfig.PortID = ccv.ConsumerPortID +// b.providerEndpoint().ChannelConfig.PortID = ccv.ProviderPortID +// b.consumerEndpoint().ChannelConfig.Version = ccv.Version +// b.providerEndpoint().ChannelConfig.Version = ccv.Version +// b.consumerEndpoint().ChannelConfig.Order = channeltypes.ORDERED +// b.providerEndpoint().ChannelConfig.Order = channeltypes.ORDERED +// } + +// func (b *Builder) createProvidersLocalClient() { +// // Configure and create the consumer Client +// tmCfg := b.providerEndpoint().ClientConfig.(*ibctesting.TendermintConfig) +// tmCfg.UnbondingPeriod = b.initState.UnbondingC +// tmCfg.TrustingPeriod = b.initState.Trusting +// tmCfg.MaxClockDrift = b.initState.MaxClockDrift +// err := b.providerEndpoint().CreateClient() +// b.suite.Require().NoError(err) +// // Create the Consumer chain ID mapping in the provider state +// b.providerKeeper().SetConsumerClientId(b.providerCtx(), b.consumer().ChainID, b.providerEndpoint().ClientID) +// } + +// func (b *Builder) createConsumersLocalClientGenesis() *ibctmtypes.ClientState { +// tmCfg := b.consumerEndpoint().ClientConfig.(*ibctesting.TendermintConfig) +// tmCfg.UnbondingPeriod = b.initState.UnbondingP +// tmCfg.TrustingPeriod = b.initState.Trusting +// tmCfg.MaxClockDrift = b.initState.MaxClockDrift + +// return ibctmtypes.NewClientState( +// b.provider().ChainID, tmCfg.TrustLevel, tmCfg.TrustingPeriod, tmCfg.UnbondingPeriod, tmCfg.MaxClockDrift, +// b.provider().LastHeader.GetHeight().(clienttypes.Height), commitmenttypes.GetSDKSpecs(), +// []string{"upgrade", "upgradedIBCState"}, +// ) +// } + +// func (b *Builder) createConsumerGenesis(client *ibctmtypes.ClientState) *consumertypes.GenesisState { +// providerConsState := b.provider().LastHeader.ConsensusState() + +// valUpdates := tmtypes.TM2PB.ValidatorUpdates(b.provider().Vals) +// params := ccv.NewParams( +// true, +// 1000, // ignore distribution +// "", // ignore distribution +// "", // ignore distribution +// ccv.DefaultCCVTimeoutPeriod, +// ccv.DefaultTransferTimeoutPeriod, +// ccv.DefaultConsumerRedistributeFrac, +// ccv.DefaultHistoricalEntries, +// b.initState.UnbondingC, +// "0", // disable soft opt-out +// []string{}, +// []string{}, +// ccv.DefaultRetryDelayPeriod, +// ) +// return consumertypes.NewInitialGenesisState(client, providerConsState, valUpdates, params) +// } + +// func NewBuilder(s *suite.Suite, valAddresses []sdk.ValAddress) *Builder { +// coord := ibctesting.NewCoordinator(s.T(), 0) + +// return &Builder{ +// suite: s, +// valAddresses: valAddresses, +// coordinator: coord, +// } +// } + +// // // The state of the data returned is equivalent to the state of two chains +// // // after a full handshake, but the precise order of steps used to reach the +// // // state does not necessarily mimic the order of steps that happen in a +// // // live scenario. +// // func GetZeroState( +// // suite *suite.Suite, +// // initState InitState, +// // ) (path *ibctesting.Path, addrs []sdk.ValAddress, heightLastCommitted, timeLastCommitted int64) { +// // b := Builder{initState: initState, suite: suite} + +// // b.createProviderAndConsumer() + +// // b.setProviderParams() + +// // // This is the simplest way to initialize the slash meter +// // // after a change to the param value. +// // b.providerKeeper().InitializeSlashMeter(b.providerCtx()) + +// // b.addExtraProviderValidators() + +// // // Commit the additional validators +// // b.coordinator.CommitBlock(b.provider()) + +// // b.configurePath() + +// // // Create a client for the provider chain to use, using ibc go testing. +// // b.createProvidersLocalClient() + +// // // Manually create a client for the consumer chain to and bootstrap +// // // via genesis. +// // clientState := b.createConsumersLocalClientGenesis() + +// // consumerGenesis := b.createConsumerGenesis(clientState) + +// // b.consumerKeeper().InitGenesis(b.consumerCtx(), consumerGenesis) + +// // // Client ID is set in InitGenesis and we treat it as a block box. So +// // // must query it to use it with the endpoint. +// // clientID, _ := b.consumerKeeper().GetProviderClientID(b.consumerCtx()) +// // b.consumerEndpoint().ClientID = clientID + +// // // Handshake +// // b.coordinator.CreateConnections(b.path) +// // b.coordinator.CreateChannels(b.path) + +// // // Usually the consumer sets the channel ID when it receives a first VSC packet +// // // to the provider. For testing purposes, we can set it here. This is because +// // // we model a blank slate: a provider and consumer that have fully established +// // // their channel, and are ready for anything to happen. +// // b.consumerKeeper().SetProviderChannel(b.consumerCtx(), b.consumerEndpoint().ChannelID) + +// // // Catch up consumer height to provider height. The provider was one ahead +// // // from committing additional validators. +// // simibc.EndBlock(b.consumer(), func() {}) + +// // simibc.BeginBlock(b.consumer(), initState.BlockInterval) +// // simibc.BeginBlock(b.provider(), initState.BlockInterval) + +// // // Commit a block on both chains, giving us two committed headers from +// // // the same time and height. This is the starting point for all our +// // // data driven testing. +// // lastProviderHeader, _ := simibc.EndBlock(b.provider(), func() {}) +// // lastConsumerHeader, _ := simibc.EndBlock(b.consumer(), func() {}) + +// // // Want the height and time of last COMMITTED block +// // heightLastCommitted = b.provider().CurrentHeader.Height +// // timeLastCommitted = b.provider().CurrentHeader.Time.Unix() + +// // // Get ready to update clients. +// // simibc.BeginBlock(b.provider(), initState.BlockInterval) +// // simibc.BeginBlock(b.consumer(), initState.BlockInterval) + +// // // Update clients to the latest header. Now everything is ready to go! +// // // Ignore errors for brevity. Everything is checked in Assuptions test. +// // _ = simibc.UpdateReceiverClient(b.consumerEndpoint(), b.providerEndpoint(), lastConsumerHeader) +// // _ = simibc.UpdateReceiverClient(b.providerEndpoint(), b.consumerEndpoint(), lastProviderHeader) + +// // return b.path, b.valAddresses, heightLastCommitted, timeLastCommitted +// // } package main - -import ( - "bytes" - cryptoEd25519 "crypto/ed25519" - "encoding/json" - "time" - - clienttypes "github.com/cosmos/ibc-go/v7/modules/core/02-client/types" - channeltypes "github.com/cosmos/ibc-go/v7/modules/core/04-channel/types" - commitmenttypes "github.com/cosmos/ibc-go/v7/modules/core/23-commitment/types" - ibctmtypes "github.com/cosmos/ibc-go/v7/modules/light-clients/07-tendermint" - ibctesting "github.com/cosmos/ibc-go/v7/testing" - "github.com/cosmos/ibc-go/v7/testing/mock" - "github.com/stretchr/testify/require" - "github.com/stretchr/testify/suite" - - "github.com/cosmos/cosmos-sdk/baseapp" - codectypes "github.com/cosmos/cosmos-sdk/codec/types" - cryptocodec "github.com/cosmos/cosmos-sdk/crypto/codec" - cosmosEd25519 "github.com/cosmos/cosmos-sdk/crypto/keys/ed25519" - "github.com/cosmos/cosmos-sdk/crypto/keys/secp256k1" - sdk "github.com/cosmos/cosmos-sdk/types" - authtypes "github.com/cosmos/cosmos-sdk/x/auth/types" - banktypes "github.com/cosmos/cosmos-sdk/x/bank/types" - slashingkeeper "github.com/cosmos/cosmos-sdk/x/slashing/keeper" - slashingtypes "github.com/cosmos/cosmos-sdk/x/slashing/types" - stakingkeeper "github.com/cosmos/cosmos-sdk/x/staking/keeper" - stakingtypes "github.com/cosmos/cosmos-sdk/x/staking/types" - - abci "github.com/cometbft/cometbft/abci/types" - tmproto "github.com/cometbft/cometbft/proto/tendermint/types" - tmtypes "github.com/cometbft/cometbft/types" - - appConsumer "github.com/cosmos/interchain-security/v3/app/consumer" - appProvider "github.com/cosmos/interchain-security/v3/app/provider" - icstestingutils "github.com/cosmos/interchain-security/v3/testutil/ibc_testing" - testutil "github.com/cosmos/interchain-security/v3/testutil/integration" - simibc "github.com/cosmos/interchain-security/v3/testutil/simibc" - consumerkeeper "github.com/cosmos/interchain-security/v3/x/ccv/consumer/keeper" - consumertypes "github.com/cosmos/interchain-security/v3/x/ccv/consumer/types" - providerkeeper "github.com/cosmos/interchain-security/v3/x/ccv/provider/keeper" - ccv "github.com/cosmos/interchain-security/v3/x/ccv/types" -) - -type Builder struct { - suite *suite.Suite - path *ibctesting.Path - coordinator *ibctesting.Coordinator - valAddresses []sdk.ValAddress - initState InitState -} - -func (b *Builder) provider() *ibctesting.TestChain { - return b.coordinator.GetChain(ibctesting.GetChainID(0)) -} - -func (b *Builder) consumer() *ibctesting.TestChain { - return b.coordinator.GetChain(ibctesting.GetChainID(1)) -} - -func (b *Builder) providerCtx() sdk.Context { - return b.provider().GetContext() -} - -func (b *Builder) consumerCtx() sdk.Context { - return b.consumer().GetContext() -} - -func (b *Builder) providerStakingKeeper() stakingkeeper.Keeper { - return *b.provider().App.(*appProvider.App).StakingKeeper -} - -func (b *Builder) providerSlashingKeeper() slashingkeeper.Keeper { - return b.provider().App.(*appProvider.App).SlashingKeeper -} - -func (b *Builder) providerKeeper() providerkeeper.Keeper { - return b.provider().App.(*appProvider.App).ProviderKeeper -} - -func (b *Builder) consumerKeeper() consumerkeeper.Keeper { - return b.consumer().App.(*appConsumer.App).ConsumerKeeper -} - -func (b *Builder) providerEndpoint() *ibctesting.Endpoint { - return b.path.EndpointB -} - -func (b *Builder) consumerEndpoint() *ibctesting.Endpoint { - return b.path.EndpointA -} - -func (b *Builder) validator(i int64) sdk.ValAddress { - return b.valAddresses[i] -} - -func (b *Builder) consAddr(i int64) sdk.ConsAddress { - return sdk.ConsAddress(b.validator(i)) -} - -// getValidatorPK returns the validator private key using the given seed index -func (b *Builder) getValidatorPK(seedIx int) mock.PV { - seed := []byte(b.initState.PKSeeds[seedIx]) - return mock.PV{PrivKey: &cosmosEd25519.PrivKey{Key: cryptoEd25519.NewKeyFromSeed(seed)}} //nolint:staticcheck // SA1019: cosmosEd25519.PrivKey is deprecated: PrivKey defines a ed25519 private key. NOTE: ed25519 keys must not be used in SDK apps except in a tendermint validator context. -} - -func (b *Builder) getAppBytesAndSenders( - chainID string, - app ibctesting.TestingApp, - genesis map[string]json.RawMessage, - validators *tmtypes.ValidatorSet, -) ([]byte, []ibctesting.SenderAccount) { - accounts := []authtypes.GenesisAccount{} - balances := []banktypes.Balance{} - senderAccounts := []ibctesting.SenderAccount{} - - // Create genesis accounts. - for i := 0; i < b.initState.MaxValidators; i++ { - pk := secp256k1.GenPrivKey() - acc := authtypes.NewBaseAccount(pk.PubKey().Address().Bytes(), pk.PubKey(), uint64(i), 0) - - // Give enough funds for many delegations - // Extra units are to delegate to extra validators created later - // in order to bond them and still have INITIAL_DELEGATOR_TOKENS remaining - extra := 0 - for j := 0; j < b.initState.NumValidators; j++ { - if b.initState.ValStates.Status[j] != stakingtypes.Bonded { - extra += b.initState.ValStates.Delegation[j] - } - } - amt := uint64(b.initState.InitialDelegatorTokens + extra) - - bal := banktypes.Balance{ - Address: acc.GetAddress().String(), - Coins: sdk.NewCoins(sdk.NewCoin(sdk.DefaultBondDenom, sdk.NewIntFromUint64(amt))), - } - - accounts = append(accounts, acc) - balances = append(balances, bal) - - senderAccount := ibctesting.SenderAccount{ - SenderAccount: acc, - SenderPrivKey: pk, - } - - senderAccounts = append(senderAccounts, senderAccount) - } - - // set genesis accounts - genesisAuth := authtypes.NewGenesisState(authtypes.DefaultParams(), accounts) - genesis[authtypes.ModuleName] = app.AppCodec().MustMarshalJSON(genesisAuth) - - stakingValidators := make([]stakingtypes.Validator, 0, len(validators.Validators)) - delegations := make([]stakingtypes.Delegation, 0, len(validators.Validators)) - - // Sum bonded is needed for BondedPool account - sumBonded := sdk.NewInt(0) - initValPowers := []abci.ValidatorUpdate{} - - for i, val := range validators.Validators { - status := b.initState.ValStates.Status[i] - delegation := b.initState.ValStates.Delegation[i] - extra := b.initState.ValStates.ValidatorExtraTokens[i] - - tokens := sdk.NewInt(int64(delegation + extra)) - b.suite.Require().Equal(status, stakingtypes.Bonded, "All genesis validators should be bonded") - sumBonded = sumBonded.Add(tokens) - // delegator account receives delShares shares - delShares := sdk.NewDec(int64(delegation)) - // validator has additional sumShares due to extra units - sumShares := sdk.NewDec(int64(delegation + extra)) - - pk, err := cryptocodec.FromTmPubKeyInterface(val.PubKey) - require.NoError(b.suite.T(), err) - pkAny, err := codectypes.NewAnyWithValue(pk) - require.NoError(b.suite.T(), err) - - validator := stakingtypes.Validator{ - OperatorAddress: sdk.ValAddress(val.Address).String(), - ConsensusPubkey: pkAny, - Jailed: false, - Status: status, - Tokens: tokens, - DelegatorShares: sumShares, - Description: stakingtypes.Description{}, - UnbondingHeight: int64(0), - UnbondingTime: time.Unix(0, 0).UTC(), - Commission: stakingtypes.NewCommission(sdk.ZeroDec(), sdk.ZeroDec(), sdk.ZeroDec()), - MinSelfDelegation: sdk.ZeroInt(), - } - - stakingValidators = append(stakingValidators, validator) - - // Store delegation from the model delegator account - delegations = append(delegations, stakingtypes.NewDelegation(accounts[0].GetAddress(), val.Address.Bytes(), delShares)) - // Remaining delegation is from extra account - delegations = append(delegations, stakingtypes.NewDelegation(accounts[1].GetAddress(), val.Address.Bytes(), sumShares.Sub(delShares))) - - // add initial validator powers so consumer InitGenesis runs correctly - pub, _ := val.ToProto() - initValPowers = append(initValPowers, abci.ValidatorUpdate{ - Power: val.VotingPower, - PubKey: pub.PubKey, - }) - } - - bondDenom := sdk.DefaultBondDenom - genesisStaking := stakingtypes.GenesisState{} - genesisConsumer := consumertypes.GenesisState{} - - if genesis[stakingtypes.ModuleName] != nil { - // If staking module genesis already exists - app.AppCodec().MustUnmarshalJSON(genesis[stakingtypes.ModuleName], &genesisStaking) - bondDenom = genesisStaking.Params.BondDenom - } - - if genesis[consumertypes.ModuleName] != nil { - app.AppCodec().MustUnmarshalJSON(genesis[consumertypes.ModuleName], &genesisConsumer) - genesisConsumer.Provider.InitialValSet = initValPowers - genesisConsumer.Params.Enabled = true - genesis[consumertypes.ModuleName] = app.AppCodec().MustMarshalJSON(&genesisConsumer) - } - - // Set model parameters - genesisStaking.Params.MaxEntries = uint32(b.initState.MaxEntries) - genesisStaking.Params.MaxValidators = uint32(b.initState.MaxValidators) - genesisStaking.Params.UnbondingTime = b.initState.UnbondingP - genesisStaking = *stakingtypes.NewGenesisState(genesisStaking.Params, stakingValidators, delegations) - genesis[stakingtypes.ModuleName] = app.AppCodec().MustMarshalJSON(&genesisStaking) - - // add bonded amount to bonded pool module account - balances = append(balances, banktypes.Balance{ - Address: authtypes.NewModuleAddress(stakingtypes.BondedPoolName).String(), - Coins: sdk.Coins{sdk.NewCoin(bondDenom, sumBonded)}, - }) - - // add unbonded amount - balances = append(balances, banktypes.Balance{ - Address: authtypes.NewModuleAddress(stakingtypes.NotBondedPoolName).String(), - Coins: sdk.Coins{sdk.NewCoin(bondDenom, sdk.ZeroInt())}, - }) - - // update total funds supply - genesisBank := banktypes.NewGenesisState(banktypes.DefaultGenesisState().Params, balances, sdk.NewCoins(), []banktypes.Metadata{}, []banktypes.SendEnabled{}) - genesis[banktypes.ModuleName] = app.AppCodec().MustMarshalJSON(genesisBank) - - stateBytes, err := json.MarshalIndent(genesis, "", " ") - require.NoError(b.suite.T(), err) - - return stateBytes, senderAccounts -} - -func (b *Builder) newChain( - coord *ibctesting.Coordinator, - appInit icstestingutils.AppIniter, - chainID string, - validators *tmtypes.ValidatorSet, - signers map[string]tmtypes.PrivValidator, -) *ibctesting.TestChain { - app, genesis := appInit() - - baseapp.SetChainID(chainID)(app.GetBaseApp()) - - stateBytes, senderAccounts := b.getAppBytesAndSenders(chainID, app, genesis, validators) - - app.InitChain( - abci.RequestInitChain{ - ChainId: chainID, - Validators: []abci.ValidatorUpdate{}, - ConsensusParams: b.initState.ConsensusParams, - AppStateBytes: stateBytes, - }, - ) - - app.Commit() - - app.BeginBlock( - abci.RequestBeginBlock{ - Header: tmproto.Header{ - ChainID: chainID, - Height: app.LastBlockHeight() + 1, - AppHash: app.LastCommitID().Hash, - ValidatorsHash: validators.Hash(), - NextValidatorsHash: validators.Hash(), - }, - }, - ) - - chain := &ibctesting.TestChain{ - T: b.suite.T(), - Coordinator: coord, - ChainID: chainID, - App: app, - CurrentHeader: tmproto.Header{ - ChainID: chainID, - Height: 1, - Time: coord.CurrentTime.UTC(), - }, - QueryServer: app.GetIBCKeeper(), - TxConfig: app.GetTxConfig(), - Codec: app.AppCodec(), - Vals: validators, - NextVals: validators, - Signers: signers, - SenderPrivKey: senderAccounts[0].SenderPrivKey, - SenderAccount: senderAccounts[0].SenderAccount, - SenderAccounts: senderAccounts, - } - - coord.CommitBlock(chain) - - return chain -} - -func (b *Builder) createValidators() (*tmtypes.ValidatorSet, map[string]tmtypes.PrivValidator, []sdk.ValAddress) { - addresses := []sdk.ValAddress{} - signers := map[string]tmtypes.PrivValidator{} - validators := []*tmtypes.Validator{} - - for i, power := range b.initState.ValStates.Tokens { - if b.initState.ValStates.Status[i] != stakingtypes.Bonded { - continue - } - privVal := b.getValidatorPK(i) - - pubKey, err := privVal.GetPubKey() - require.NoError(b.suite.T(), err) - - // Compute address - addr, err := sdk.ValAddressFromHex(pubKey.Address().String()) - require.NoError(b.suite.T(), err) - addresses = append(addresses, addr) - - // Save signer - signers[pubKey.Address().String()] = privVal - - // Save validator with power - validators = append(validators, tmtypes.NewValidator(pubKey, int64(power))) - } - - return tmtypes.NewValidatorSet(validators), signers, addresses -} - -func (b *Builder) createProviderAndConsumer() { - coordinator := ibctesting.NewCoordinator(b.suite.T(), 0) - - // Create validators - validators, signers, addresses := b.createValidators() - // Create provider - coordinator.Chains[ibctesting.GetChainID(0)] = b.newChain(coordinator, icstestingutils.ProviderAppIniter, ibctesting.GetChainID(0), validators, signers) - // Create consumer, using the same validators. - valUpdates := testutil.ToValidatorUpdates(b.suite.T(), validators) - coordinator.Chains[ibctesting.GetChainID(1)] = b.newChain(coordinator, icstestingutils.ConsumerAppIniter(valUpdates), ibctesting.GetChainID(1), validators, signers) - - b.coordinator = coordinator - b.valAddresses = addresses -} - -// setSigningInfos sets the validator signing info in the provider Slashing module -func (b *Builder) setSigningInfos() { - for i := 0; i < b.initState.NumValidators; i++ { - info := slashingtypes.NewValidatorSigningInfo( - b.consAddr(int64(i)), - b.provider().CurrentHeader.GetHeight(), - 0, - time.Unix(0, 0), - false, - 0, - ) - b.providerSlashingKeeper().SetValidatorSigningInfo(b.providerCtx(), b.consAddr(int64(i)), info) - } -} - -// Checks that the lexicographic ordering of validator addresses as computed in -// the staking module match the ordering of validators in the model. -func (b *Builder) ensureValidatorLexicographicOrderingMatchesModel() { - check := func(lesser, greater sdk.ValAddress) { - lesserV, _ := b.providerStakingKeeper().GetValidator(b.providerCtx(), lesser) - greaterV, _ := b.providerStakingKeeper().GetValidator(b.providerCtx(), greater) - lesserKey := stakingtypes.GetValidatorsByPowerIndexKey(lesserV, sdk.DefaultPowerReduction) - greaterKey := stakingtypes.GetValidatorsByPowerIndexKey(greaterV, sdk.DefaultPowerReduction) - // The result will be 0 if a==b, -1 if a < b, and +1 if a > b. - res := bytes.Compare(lesserKey, greaterKey) - // Confirm that validator precedence is the same in code as in model - b.suite.Require().Equal(-1, res) - } - - // In order to match the model to the system under test it is necessary - // to enforce a strict lexicographic ordering on the validators. - // We must do this because the staking module will break ties when - // deciding the active validator set by comparing addresses lexicographically. - // Thus, we assert here that the ordering in the model matches the ordering - // in the SUT. - for i := range b.valAddresses[:len(b.valAddresses)-1] { - // validators are chosen sorted descending in the staking module - greater := b.valAddresses[i] - lesser := b.valAddresses[i+1] - check(lesser, greater) - } -} - -// delegate is used to delegate tokens to newly created -// validators in the setup process. -func (b *Builder) delegate(del int, val sdk.ValAddress, amt int64) { - d := b.provider().SenderAccounts[del].SenderAccount.GetAddress() - coins := sdk.NewCoin(sdk.DefaultBondDenom, sdk.NewInt(amt)) - msg := stakingtypes.NewMsgDelegate(d, val, coins) - providerStaking := b.providerStakingKeeper() - pskServer := stakingkeeper.NewMsgServerImpl(&providerStaking) - _, err := pskServer.Delegate(sdk.WrapSDKContext(b.providerCtx()), msg) - b.suite.Require().NoError(err) -} - -// addValidatorToStakingModule creates an additional validator with zero commission -// and zero tokens (zero voting power). -func (b *Builder) addValidatorToStakingModule(privVal mock.PV) { - coin := sdk.NewCoin(sdk.DefaultBondDenom, sdk.NewInt(0)) - - pubKey, err := privVal.GetPubKey() - require.NoError(b.suite.T(), err) - - // Compute address - addr, err := sdk.ValAddressFromHex(pubKey.Address().String()) - require.NoError(b.suite.T(), err) - - sdkPK, err := cryptocodec.FromTmPubKeyInterface(pubKey) - require.NoError(b.suite.T(), err) - - msg, err := stakingtypes.NewMsgCreateValidator( - addr, - sdkPK, - coin, - stakingtypes.Description{}, - stakingtypes.NewCommissionRates(sdk.ZeroDec(), sdk.ZeroDec(), sdk.ZeroDec()), - sdk.ZeroInt()) - b.suite.Require().NoError(err) - providerStaking := b.providerStakingKeeper() - pskServer := stakingkeeper.NewMsgServerImpl(&providerStaking) - _, _ = pskServer.CreateValidator(sdk.WrapSDKContext(b.providerCtx()), msg) -} - -func (b *Builder) addExtraProviderValidators() { - for i, status := range b.initState.ValStates.Status { - if status == stakingtypes.Unbonded { - privVal := b.getValidatorPK(i) - b.addValidatorToStakingModule(privVal) - pubKey, err := privVal.GetPubKey() - require.NoError(b.suite.T(), err) - - addr, err := sdk.ValAddressFromHex(pubKey.Address().String()) - require.NoError(b.suite.T(), err) - - b.valAddresses = append(b.valAddresses, addr) - b.provider().Signers[pubKey.Address().String()] = privVal - b.consumer().Signers[pubKey.Address().String()] = privVal - } - } - - b.setSigningInfos() - - b.ensureValidatorLexicographicOrderingMatchesModel() - - for i := range b.initState.ValStates.Status { - if b.initState.ValStates.Status[i] == stakingtypes.Unbonded { - del := b.initState.ValStates.Delegation[i] - extra := b.initState.ValStates.ValidatorExtraTokens[i] - b.delegate(0, b.validator(int64(i)), int64(del)) - b.delegate(1, b.validator(int64(i)), int64(extra)) - } - } -} - -func (b *Builder) setProviderParams() { - // Set the slash factors on the provider to match the model - slash := b.providerSlashingKeeper().GetParams(b.providerCtx()) - slash.SlashFractionDoubleSign = b.initState.SlashDoublesign - slash.SlashFractionDowntime = b.initState.SlashDowntime - err := b.providerSlashingKeeper().SetParams(b.providerCtx(), slash) - if err != nil { - panic(err) - } - // Set the throttle factors - throttle := b.providerKeeper().GetParams(b.providerCtx()) - throttle.SlashMeterReplenishFraction = "1.0" - throttle.SlashMeterReplenishPeriod = time.Second * 1 - b.providerKeeper().SetParams(b.providerCtx(), throttle) -} - -func (b *Builder) configurePath() { - b.path = ibctesting.NewPath(b.consumer(), b.provider()) - b.consumerEndpoint().ChannelConfig.PortID = ccv.ConsumerPortID - b.providerEndpoint().ChannelConfig.PortID = ccv.ProviderPortID - b.consumerEndpoint().ChannelConfig.Version = ccv.Version - b.providerEndpoint().ChannelConfig.Version = ccv.Version - b.consumerEndpoint().ChannelConfig.Order = channeltypes.ORDERED - b.providerEndpoint().ChannelConfig.Order = channeltypes.ORDERED -} - -func (b *Builder) createProvidersLocalClient() { - // Configure and create the consumer Client - tmCfg := b.providerEndpoint().ClientConfig.(*ibctesting.TendermintConfig) - tmCfg.UnbondingPeriod = b.initState.UnbondingC - tmCfg.TrustingPeriod = b.initState.Trusting - tmCfg.MaxClockDrift = b.initState.MaxClockDrift - err := b.providerEndpoint().CreateClient() - b.suite.Require().NoError(err) - // Create the Consumer chain ID mapping in the provider state - b.providerKeeper().SetConsumerClientId(b.providerCtx(), b.consumer().ChainID, b.providerEndpoint().ClientID) -} - -func (b *Builder) createConsumersLocalClientGenesis() *ibctmtypes.ClientState { - tmCfg := b.consumerEndpoint().ClientConfig.(*ibctesting.TendermintConfig) - tmCfg.UnbondingPeriod = b.initState.UnbondingP - tmCfg.TrustingPeriod = b.initState.Trusting - tmCfg.MaxClockDrift = b.initState.MaxClockDrift - - return ibctmtypes.NewClientState( - b.provider().ChainID, tmCfg.TrustLevel, tmCfg.TrustingPeriod, tmCfg.UnbondingPeriod, tmCfg.MaxClockDrift, - b.provider().LastHeader.GetHeight().(clienttypes.Height), commitmenttypes.GetSDKSpecs(), - []string{"upgrade", "upgradedIBCState"}, - ) -} - -func (b *Builder) createConsumerGenesis(client *ibctmtypes.ClientState) *consumertypes.GenesisState { - providerConsState := b.provider().LastHeader.ConsensusState() - - valUpdates := tmtypes.TM2PB.ValidatorUpdates(b.provider().Vals) - params := ccv.NewParams( - true, - 1000, // ignore distribution - "", // ignore distribution - "", // ignore distribution - ccv.DefaultCCVTimeoutPeriod, - ccv.DefaultTransferTimeoutPeriod, - ccv.DefaultConsumerRedistributeFrac, - ccv.DefaultHistoricalEntries, - b.initState.UnbondingC, - "0", // disable soft opt-out - []string{}, - []string{}, - ccv.DefaultRetryDelayPeriod, - ) - return consumertypes.NewInitialGenesisState(client, providerConsState, valUpdates, params) -} - -// The state of the data returned is equivalent to the state of two chains -// after a full handshake, but the precise order of steps used to reach the -// state does not necessarily mimic the order of steps that happen in a -// live scenario. -func GetZeroState( - suite *suite.Suite, - initState InitState, -) (path *ibctesting.Path, addrs []sdk.ValAddress, heightLastCommitted, timeLastCommitted int64) { - b := Builder{initState: initState, suite: suite} - - b.createProviderAndConsumer() - - b.setProviderParams() - - // This is the simplest way to initialize the slash meter - // after a change to the param value. - b.providerKeeper().InitializeSlashMeter(b.providerCtx()) - - b.addExtraProviderValidators() - - // Commit the additional validators - b.coordinator.CommitBlock(b.provider()) - - b.configurePath() - - // Create a client for the provider chain to use, using ibc go testing. - b.createProvidersLocalClient() - - // Manually create a client for the consumer chain to and bootstrap - // via genesis. - clientState := b.createConsumersLocalClientGenesis() - - consumerGenesis := b.createConsumerGenesis(clientState) - - b.consumerKeeper().InitGenesis(b.consumerCtx(), consumerGenesis) - - // Client ID is set in InitGenesis and we treat it as a block box. So - // must query it to use it with the endpoint. - clientID, _ := b.consumerKeeper().GetProviderClientID(b.consumerCtx()) - b.consumerEndpoint().ClientID = clientID - - // Handshake - b.coordinator.CreateConnections(b.path) - b.coordinator.CreateChannels(b.path) - - // Usually the consumer sets the channel ID when it receives a first VSC packet - // to the provider. For testing purposes, we can set it here. This is because - // we model a blank slate: a provider and consumer that have fully established - // their channel, and are ready for anything to happen. - b.consumerKeeper().SetProviderChannel(b.consumerCtx(), b.consumerEndpoint().ChannelID) - - // Catch up consumer height to provider height. The provider was one ahead - // from committing additional validators. - simibc.EndBlock(b.consumer(), func() {}) - - simibc.BeginBlock(b.consumer(), initState.BlockInterval) - simibc.BeginBlock(b.provider(), initState.BlockInterval) - - // Commit a block on both chains, giving us two committed headers from - // the same time and height. This is the starting point for all our - // data driven testing. - lastProviderHeader, _ := simibc.EndBlock(b.provider(), func() {}) - lastConsumerHeader, _ := simibc.EndBlock(b.consumer(), func() {}) - - // Want the height and time of last COMMITTED block - heightLastCommitted = b.provider().CurrentHeader.Height - timeLastCommitted = b.provider().CurrentHeader.Time.Unix() - - // Get ready to update clients. - simibc.BeginBlock(b.provider(), initState.BlockInterval) - simibc.BeginBlock(b.consumer(), initState.BlockInterval) - - // Update clients to the latest header. Now everything is ready to go! - // Ignore errors for brevity. Everything is checked in Assuptions test. - _ = simibc.UpdateReceiverClient(b.consumerEndpoint(), b.providerEndpoint(), lastConsumerHeader) - _ = simibc.UpdateReceiverClient(b.providerEndpoint(), b.consumerEndpoint(), lastProviderHeader) - - return b.path, b.valAddresses, heightLastCommitted, timeLastCommitted -} diff --git a/tests/difference/core/quint_model/driver/trace.json b/tests/difference/core/quint_model/driver/trace.json index 6b4c317ecf..a0c80be43e 100644 --- a/tests/difference/core/quint_model/driver/trace.json +++ b/tests/difference/core/quint_model/driver/trace.json @@ -4,11 +4,12 @@ "format-description": "https://apalache.informal.systems/docs/adr/015adr-trace.html", "source": "ccv_model.qnt", "status": "ok", - "description": "Created by Quint on Wed Oct 18 2023 14:44:12 GMT+0200 (Central European Summer Time)", - "timestamp": 1697633052446 + "description": "Created by Quint on Thu Oct 19 2023 10:50:02 GMT+0200 (Central European Summer Time)", + "timestamp": 1697705402333 }, "vars": [ "currentState", + "params", "trace" ], "states": [ @@ -271,6 +272,152 @@ } } }, + "params": { + "CcvTimeout": { + "#map": [ + [ + "consumer1", + { + "#bigint": "1814400" + } + ], + [ + "consumer2", + { + "#bigint": "1814400" + } + ], + [ + "consumer3", + { + "#bigint": "1814400" + } + ], + [ + "provider", + { + "#bigint": "1814400" + } + ] + ] + }, + "ConsumerChains": { + "#set": [ + "consumer1", + "consumer2", + "consumer3" + ] + }, + "InitialValidatorSet": { + "#map": [ + [ + "node1", + { + "#bigint": "50" + } + ], + [ + "node10", + { + "#bigint": "100" + } + ], + [ + "node2", + { + "#bigint": "100" + } + ], + [ + "node3", + { + "#bigint": "100" + } + ], + [ + "node4", + { + "#bigint": "100" + } + ], + [ + "node5", + { + "#bigint": "100" + } + ], + [ + "node6", + { + "#bigint": "100" + } + ], + [ + "node7", + { + "#bigint": "100" + } + ], + [ + "node8", + { + "#bigint": "100" + } + ], + [ + "node9", + { + "#bigint": "100" + } + ] + ] + }, + "Nodes": { + "#set": [ + "node1", + "node10", + "node2", + "node3", + "node4", + "node5", + "node6", + "node7", + "node8", + "node9" + ] + }, + "UnbondingPeriodPerChain": { + "#map": [ + [ + "consumer1", + { + "#bigint": "1209600" + } + ], + [ + "consumer2", + { + "#bigint": "1209600" + } + ], + [ + "consumer3", + { + "#bigint": "1209600" + } + ], + [ + "provider", + { + "#bigint": "1209600" + } + ] + ] + }, + "VscTimeout": { + "#bigint": "3024000" + } + }, "trace": [ { "consumerChain": "", @@ -383,7 +530,68 @@ { "chainState": { "currentValidatorSet": { - "#map": [] + "#map": [ + [ + "node1", + { + "#bigint": "100" + } + ], + [ + "node10", + { + "#bigint": "100" + } + ], + [ + "node2", + { + "#bigint": "100" + } + ], + [ + "node3", + { + "#bigint": "100" + } + ], + [ + "node4", + { + "#bigint": "100" + } + ], + [ + "node5", + { + "#bigint": "100" + } + ], + [ + "node6", + { + "#bigint": "100" + } + ], + [ + "node7", + { + "#bigint": "100" + } + ], + [ + "node8", + { + "#bigint": "100" + } + ], + [ + "node9", + { + "#bigint": "100" + } + ] + ] }, "lastTimestamp": { "#bigint": "0" @@ -546,7 +754,7 @@ ] }, "lastTimestamp": { - "#bigint": "2419200" + "#bigint": "604800" }, "votingPowerHistory": [ { @@ -687,7 +895,7 @@ ], [ "consumer2", - "not consumer" + "running" ], [ "consumer3", @@ -736,6 +944,152 @@ } } }, + "params": { + "CcvTimeout": { + "#map": [ + [ + "consumer1", + { + "#bigint": "1814400" + } + ], + [ + "consumer2", + { + "#bigint": "1814400" + } + ], + [ + "consumer3", + { + "#bigint": "1814400" + } + ], + [ + "provider", + { + "#bigint": "1814400" + } + ] + ] + }, + "ConsumerChains": { + "#set": [ + "consumer1", + "consumer2", + "consumer3" + ] + }, + "InitialValidatorSet": { + "#map": [ + [ + "node1", + { + "#bigint": "100" + } + ], + [ + "node10", + { + "#bigint": "100" + } + ], + [ + "node2", + { + "#bigint": "100" + } + ], + [ + "node3", + { + "#bigint": "100" + } + ], + [ + "node4", + { + "#bigint": "100" + } + ], + [ + "node5", + { + "#bigint": "100" + } + ], + [ + "node6", + { + "#bigint": "100" + } + ], + [ + "node7", + { + "#bigint": "100" + } + ], + [ + "node8", + { + "#bigint": "100" + } + ], + [ + "node9", + { + "#bigint": "100" + } + ] + ] + }, + "Nodes": { + "#set": [ + "node1", + "node10", + "node2", + "node3", + "node4", + "node5", + "node6", + "node7", + "node8", + "node9" + ] + }, + "UnbondingPeriodPerChain": { + "#map": [ + [ + "consumer1", + { + "#bigint": "1209600" + } + ], + [ + "consumer2", + { + "#bigint": "1209600" + } + ], + [ + "consumer3", + { + "#bigint": "1209600" + } + ], + [ + "provider", + { + "#bigint": "1209600" + } + ] + ] + }, + "VscTimeout": { + "#bigint": "3024000" + } + }, "trace": [ { "consumerChain": "", @@ -759,6 +1113,7 @@ "consumersToStart": { "#set": [ "consumer1", + "consumer2", "consumer3" ] }, @@ -770,7 +1125,7 @@ "#bigint": "0" }, "timeAdvancement": { - "#bigint": "2419200" + "#bigint": "604800" }, "validator": "" } @@ -868,9 +1223,70 @@ { "chainState": { "currentValidatorSet": { - "#map": [] - }, - "lastTimestamp": { + "#map": [ + [ + "node1", + { + "#bigint": "100" + } + ], + [ + "node10", + { + "#bigint": "100" + } + ], + [ + "node2", + { + "#bigint": "100" + } + ], + [ + "node3", + { + "#bigint": "100" + } + ], + [ + "node4", + { + "#bigint": "100" + } + ], + [ + "node5", + { + "#bigint": "100" + } + ], + [ + "node6", + { + "#bigint": "100" + } + ], + [ + "node7", + { + "#bigint": "100" + } + ], + [ + "node8", + { + "#bigint": "100" + } + ], + [ + "node9", + { + "#bigint": "100" + } + ] + ] + }, + "lastTimestamp": { "#bigint": "0" }, "votingPowerHistory": [] @@ -951,74 +1367,9 @@ ] }, "lastTimestamp": { - "#bigint": "2419200" + "#bigint": "0" }, - "votingPowerHistory": [ - { - "#map": [ - [ - "node1", - { - "#bigint": "100" - } - ], - [ - "node10", - { - "#bigint": "100" - } - ], - [ - "node2", - { - "#bigint": "100" - } - ], - [ - "node3", - { - "#bigint": "100" - } - ], - [ - "node4", - { - "#bigint": "100" - } - ], - [ - "node5", - { - "#bigint": "100" - } - ], - [ - "node6", - { - "#bigint": "100" - } - ], - [ - "node7", - { - "#bigint": "100" - } - ], - [ - "node8", - { - "#bigint": "100" - } - ], - [ - "node9", - { - "#bigint": "100" - } - ] - ] - } - ] + "votingPowerHistory": [] }, "maturationTimes": { "#map": [] @@ -1042,7 +1393,7 @@ [ "node10", { - "#bigint": "100" + "#bigint": "0" } ], [ @@ -1096,7 +1447,7 @@ ] }, "lastTimestamp": { - "#bigint": "2419200" + "#bigint": "604800" }, "votingPowerHistory": [ { @@ -1237,7 +1588,7 @@ ], [ "consumer2", - "not consumer" + "running" ], [ "consumer3", @@ -1261,7 +1612,7 @@ ] ] }, - "providerValidatorSetChangedInThisBlock": false, + "providerValidatorSetChangedInThisBlock": true, "receivedMaturations": { "#set": [] }, @@ -1286,6 +1637,152 @@ } } }, + "params": { + "CcvTimeout": { + "#map": [ + [ + "consumer1", + { + "#bigint": "1814400" + } + ], + [ + "consumer2", + { + "#bigint": "1814400" + } + ], + [ + "consumer3", + { + "#bigint": "1814400" + } + ], + [ + "provider", + { + "#bigint": "1814400" + } + ] + ] + }, + "ConsumerChains": { + "#set": [ + "consumer1", + "consumer2", + "consumer3" + ] + }, + "InitialValidatorSet": { + "#map": [ + [ + "node1", + { + "#bigint": "100" + } + ], + [ + "node10", + { + "#bigint": "100" + } + ], + [ + "node2", + { + "#bigint": "100" + } + ], + [ + "node3", + { + "#bigint": "100" + } + ], + [ + "node4", + { + "#bigint": "100" + } + ], + [ + "node5", + { + "#bigint": "100" + } + ], + [ + "node6", + { + "#bigint": "100" + } + ], + [ + "node7", + { + "#bigint": "100" + } + ], + [ + "node8", + { + "#bigint": "100" + } + ], + [ + "node9", + { + "#bigint": "100" + } + ] + ] + }, + "Nodes": { + "#set": [ + "node1", + "node10", + "node2", + "node3", + "node4", + "node5", + "node6", + "node7", + "node8", + "node9" + ] + }, + "UnbondingPeriodPerChain": { + "#map": [ + [ + "consumer1", + { + "#bigint": "1209600" + } + ], + [ + "consumer2", + { + "#bigint": "1209600" + } + ], + [ + "consumer3", + { + "#bigint": "1209600" + } + ], + [ + "provider", + { + "#bigint": "1209600" + } + ] + ] + }, + "VscTimeout": { + "#bigint": "3024000" + } + }, "trace": [ { "consumerChain": "", @@ -1309,6 +1806,7 @@ "consumersToStart": { "#set": [ "consumer1", + "consumer2", "consumer3" ] }, @@ -1320,26 +1818,26 @@ "#bigint": "0" }, "timeAdvancement": { - "#bigint": "2419200" + "#bigint": "604800" }, "validator": "" }, { - "consumerChain": "consumer3", + "consumerChain": "", "consumersToStart": { "#set": [] }, "consumersToStop": { "#set": [] }, - "kind": "EndAndBeginBlockForConsumer", + "kind": "VotingPowerChange", "newVotingPower": { "#bigint": "0" }, "timeAdvancement": { - "#bigint": "2419200" + "#bigint": "0" }, - "validator": "" + "validator": "node10" } ] }, @@ -1435,22 +1933,83 @@ { "chainState": { "currentValidatorSet": { - "#map": [] - }, - "lastTimestamp": { - "#bigint": "0" - }, - "votingPowerHistory": [] - }, - "maturationTimes": { - "#map": [] - }, - "outstandingPacketsToProvider": [], - "receivedVscPackets": [] - } - ], - [ - "consumer3", + "#map": [ + [ + "node1", + { + "#bigint": "100" + } + ], + [ + "node10", + { + "#bigint": "100" + } + ], + [ + "node2", + { + "#bigint": "100" + } + ], + [ + "node3", + { + "#bigint": "100" + } + ], + [ + "node4", + { + "#bigint": "100" + } + ], + [ + "node5", + { + "#bigint": "100" + } + ], + [ + "node6", + { + "#bigint": "100" + } + ], + [ + "node7", + { + "#bigint": "100" + } + ], + [ + "node8", + { + "#bigint": "100" + } + ], + [ + "node9", + { + "#bigint": "100" + } + ] + ] + }, + "lastTimestamp": { + "#bigint": "0" + }, + "votingPowerHistory": [] + }, + "maturationTimes": { + "#map": [] + }, + "outstandingPacketsToProvider": [], + "receivedVscPackets": [] + } + ], + [ + "consumer3", { "chainState": { "currentValidatorSet": { @@ -1518,7 +2077,7 @@ ] }, "lastTimestamp": { - "#bigint": "2419200" + "#bigint": "1" }, "votingPowerHistory": [ { @@ -1609,7 +2168,7 @@ [ "node10", { - "#bigint": "100" + "#bigint": "0" } ], [ @@ -1663,7 +2222,7 @@ ] }, "lastTimestamp": { - "#bigint": "2419200" + "#bigint": "604800" }, "votingPowerHistory": [ { @@ -1804,7 +2363,7 @@ ], [ "consumer2", - "not consumer" + "running" ], [ "consumer3", @@ -1853,6 +2412,152 @@ } } }, + "params": { + "CcvTimeout": { + "#map": [ + [ + "consumer1", + { + "#bigint": "1814400" + } + ], + [ + "consumer2", + { + "#bigint": "1814400" + } + ], + [ + "consumer3", + { + "#bigint": "1814400" + } + ], + [ + "provider", + { + "#bigint": "1814400" + } + ] + ] + }, + "ConsumerChains": { + "#set": [ + "consumer1", + "consumer2", + "consumer3" + ] + }, + "InitialValidatorSet": { + "#map": [ + [ + "node1", + { + "#bigint": "100" + } + ], + [ + "node10", + { + "#bigint": "100" + } + ], + [ + "node2", + { + "#bigint": "100" + } + ], + [ + "node3", + { + "#bigint": "100" + } + ], + [ + "node4", + { + "#bigint": "100" + } + ], + [ + "node5", + { + "#bigint": "100" + } + ], + [ + "node6", + { + "#bigint": "100" + } + ], + [ + "node7", + { + "#bigint": "100" + } + ], + [ + "node8", + { + "#bigint": "100" + } + ], + [ + "node9", + { + "#bigint": "100" + } + ] + ] + }, + "Nodes": { + "#set": [ + "node1", + "node10", + "node2", + "node3", + "node4", + "node5", + "node6", + "node7", + "node8", + "node9" + ] + }, + "UnbondingPeriodPerChain": { + "#map": [ + [ + "consumer1", + { + "#bigint": "1209600" + } + ], + [ + "consumer2", + { + "#bigint": "1209600" + } + ], + [ + "consumer3", + { + "#bigint": "1209600" + } + ], + [ + "provider", + { + "#bigint": "1209600" + } + ] + ] + }, + "VscTimeout": { + "#bigint": "3024000" + } + }, "trace": [ { "consumerChain": "", @@ -1876,6 +2581,7 @@ "consumersToStart": { "#set": [ "consumer1", + "consumer2", "consumer3" ] }, @@ -1887,43 +2593,43 @@ "#bigint": "0" }, "timeAdvancement": { - "#bigint": "2419200" + "#bigint": "604800" }, "validator": "" }, { - "consumerChain": "consumer3", + "consumerChain": "", "consumersToStart": { "#set": [] }, "consumersToStop": { "#set": [] }, - "kind": "EndAndBeginBlockForConsumer", + "kind": "VotingPowerChange", "newVotingPower": { "#bigint": "0" }, "timeAdvancement": { - "#bigint": "2419200" + "#bigint": "0" }, - "validator": "" + "validator": "node10" }, { - "consumerChain": "", + "consumerChain": "consumer3", "consumersToStart": { "#set": [] }, "consumersToStop": { "#set": [] }, - "kind": "VotingPowerChange", + "kind": "EndAndBeginBlockForConsumer", "newVotingPower": { - "#bigint": "100" + "#bigint": "0" }, "timeAdvancement": { - "#bigint": "0" + "#bigint": "1" }, - "validator": "node1" + "validator": "" } ] }, @@ -2019,7 +2725,68 @@ { "chainState": { "currentValidatorSet": { - "#map": [] + "#map": [ + [ + "node1", + { + "#bigint": "100" + } + ], + [ + "node10", + { + "#bigint": "100" + } + ], + [ + "node2", + { + "#bigint": "100" + } + ], + [ + "node3", + { + "#bigint": "100" + } + ], + [ + "node4", + { + "#bigint": "100" + } + ], + [ + "node5", + { + "#bigint": "100" + } + ], + [ + "node6", + { + "#bigint": "100" + } + ], + [ + "node7", + { + "#bigint": "100" + } + ], + [ + "node8", + { + "#bigint": "100" + } + ], + [ + "node9", + { + "#bigint": "100" + } + ] + ] }, "lastTimestamp": { "#bigint": "0" @@ -2102,7 +2869,7 @@ ] }, "lastTimestamp": { - "#bigint": "2419200" + "#bigint": "1" }, "votingPowerHistory": [ { @@ -2187,19 +2954,19 @@ [ "node1", { - "#bigint": "50" + "#bigint": "100" } ], [ "node10", { - "#bigint": "100" + "#bigint": "0" } ], [ "node2", { - "#bigint": "100" + "#bigint": "50" } ], [ @@ -2247,7 +3014,7 @@ ] }, "lastTimestamp": { - "#bigint": "2419200" + "#bigint": "604800" }, "votingPowerHistory": [ { @@ -2388,7 +3155,7 @@ ], [ "consumer2", - "not consumer" + "running" ], [ "consumer3", @@ -2437,6 +3204,152 @@ } } }, + "params": { + "CcvTimeout": { + "#map": [ + [ + "consumer1", + { + "#bigint": "1814400" + } + ], + [ + "consumer2", + { + "#bigint": "1814400" + } + ], + [ + "consumer3", + { + "#bigint": "1814400" + } + ], + [ + "provider", + { + "#bigint": "1814400" + } + ] + ] + }, + "ConsumerChains": { + "#set": [ + "consumer1", + "consumer2", + "consumer3" + ] + }, + "InitialValidatorSet": { + "#map": [ + [ + "node1", + { + "#bigint": "100" + } + ], + [ + "node10", + { + "#bigint": "100" + } + ], + [ + "node2", + { + "#bigint": "100" + } + ], + [ + "node3", + { + "#bigint": "100" + } + ], + [ + "node4", + { + "#bigint": "100" + } + ], + [ + "node5", + { + "#bigint": "100" + } + ], + [ + "node6", + { + "#bigint": "100" + } + ], + [ + "node7", + { + "#bigint": "100" + } + ], + [ + "node8", + { + "#bigint": "100" + } + ], + [ + "node9", + { + "#bigint": "100" + } + ] + ] + }, + "Nodes": { + "#set": [ + "node1", + "node10", + "node2", + "node3", + "node4", + "node5", + "node6", + "node7", + "node8", + "node9" + ] + }, + "UnbondingPeriodPerChain": { + "#map": [ + [ + "consumer1", + { + "#bigint": "1209600" + } + ], + [ + "consumer2", + { + "#bigint": "1209600" + } + ], + [ + "consumer3", + { + "#bigint": "1209600" + } + ], + [ + "provider", + { + "#bigint": "1209600" + } + ] + ] + }, + "VscTimeout": { + "#bigint": "3024000" + } + }, "trace": [ { "consumerChain": "", @@ -2460,6 +3373,7 @@ "consumersToStart": { "#set": [ "consumer1", + "consumer2", "consumer3" ] }, @@ -2471,43 +3385,43 @@ "#bigint": "0" }, "timeAdvancement": { - "#bigint": "2419200" + "#bigint": "604800" }, "validator": "" }, { - "consumerChain": "consumer3", + "consumerChain": "", "consumersToStart": { "#set": [] }, "consumersToStop": { "#set": [] }, - "kind": "EndAndBeginBlockForConsumer", + "kind": "VotingPowerChange", "newVotingPower": { "#bigint": "0" }, "timeAdvancement": { - "#bigint": "2419200" + "#bigint": "0" }, - "validator": "" + "validator": "node10" }, { - "consumerChain": "", + "consumerChain": "consumer3", "consumersToStart": { "#set": [] }, "consumersToStop": { "#set": [] }, - "kind": "VotingPowerChange", + "kind": "EndAndBeginBlockForConsumer", "newVotingPower": { - "#bigint": "100" + "#bigint": "0" }, "timeAdvancement": { - "#bigint": "0" + "#bigint": "1" }, - "validator": "node1" + "validator": "" }, { "consumerChain": "", @@ -2524,17367 +3438,7 @@ "timeAdvancement": { "#bigint": "0" }, - "validator": "node1" - } - ] - }, - { - "#meta": { - "index": 5 - }, - "currentState": { - "consumerStates": { - "#map": [ - [ - "consumer1", - { - "chainState": { - "currentValidatorSet": { - "#map": [ - [ - "node1", - { - "#bigint": "100" - } - ], - [ - "node10", - { - "#bigint": "100" - } - ], - [ - "node2", - { - "#bigint": "100" - } - ], - [ - "node3", - { - "#bigint": "100" - } - ], - [ - "node4", - { - "#bigint": "100" - } - ], - [ - "node5", - { - "#bigint": "100" - } - ], - [ - "node6", - { - "#bigint": "100" - } - ], - [ - "node7", - { - "#bigint": "100" - } - ], - [ - "node8", - { - "#bigint": "100" - } - ], - [ - "node9", - { - "#bigint": "100" - } - ] - ] - }, - "lastTimestamp": { - "#bigint": "0" - }, - "votingPowerHistory": [] - }, - "maturationTimes": { - "#map": [] - }, - "outstandingPacketsToProvider": [], - "receivedVscPackets": [] - } - ], - [ - "consumer2", - { - "chainState": { - "currentValidatorSet": { - "#map": [] - }, - "lastTimestamp": { - "#bigint": "0" - }, - "votingPowerHistory": [] - }, - "maturationTimes": { - "#map": [] - }, - "outstandingPacketsToProvider": [], - "receivedVscPackets": [] - } - ], - [ - "consumer3", - { - "chainState": { - "currentValidatorSet": { - "#map": [ - [ - "node1", - { - "#bigint": "100" - } - ], - [ - "node10", - { - "#bigint": "100" - } - ], - [ - "node2", - { - "#bigint": "100" - } - ], - [ - "node3", - { - "#bigint": "100" - } - ], - [ - "node4", - { - "#bigint": "100" - } - ], - [ - "node5", - { - "#bigint": "100" - } - ], - [ - "node6", - { - "#bigint": "100" - } - ], - [ - "node7", - { - "#bigint": "100" - } - ], - [ - "node8", - { - "#bigint": "100" - } - ], - [ - "node9", - { - "#bigint": "100" - } - ] - ] - }, - "lastTimestamp": { - "#bigint": "2419200" - }, - "votingPowerHistory": [ - { - "#map": [ - [ - "node1", - { - "#bigint": "100" - } - ], - [ - "node10", - { - "#bigint": "100" - } - ], - [ - "node2", - { - "#bigint": "100" - } - ], - [ - "node3", - { - "#bigint": "100" - } - ], - [ - "node4", - { - "#bigint": "100" - } - ], - [ - "node5", - { - "#bigint": "100" - } - ], - [ - "node6", - { - "#bigint": "100" - } - ], - [ - "node7", - { - "#bigint": "100" - } - ], - [ - "node8", - { - "#bigint": "100" - } - ], - [ - "node9", - { - "#bigint": "100" - } - ] - ] - } - ] - }, - "maturationTimes": { - "#map": [] - }, - "outstandingPacketsToProvider": [], - "receivedVscPackets": [] - } - ] - ] - }, - "providerState": { - "chainState": { - "currentValidatorSet": { - "#map": [ - [ - "node1", - { - "#bigint": "50" - } - ], - [ - "node10", - { - "#bigint": "100" - } - ], - [ - "node2", - { - "#bigint": "100" - } - ], - [ - "node3", - { - "#bigint": "100" - } - ], - [ - "node4", - { - "#bigint": "50" - } - ], - [ - "node5", - { - "#bigint": "100" - } - ], - [ - "node6", - { - "#bigint": "100" - } - ], - [ - "node7", - { - "#bigint": "100" - } - ], - [ - "node8", - { - "#bigint": "100" - } - ], - [ - "node9", - { - "#bigint": "100" - } - ] - ] - }, - "lastTimestamp": { - "#bigint": "2419200" - }, - "votingPowerHistory": [ - { - "#map": [ - [ - "node1", - { - "#bigint": "100" - } - ], - [ - "node10", - { - "#bigint": "100" - } - ], - [ - "node2", - { - "#bigint": "100" - } - ], - [ - "node3", - { - "#bigint": "100" - } - ], - [ - "node4", - { - "#bigint": "100" - } - ], - [ - "node5", - { - "#bigint": "100" - } - ], - [ - "node6", - { - "#bigint": "100" - } - ], - [ - "node7", - { - "#bigint": "100" - } - ], - [ - "node8", - { - "#bigint": "100" - } - ], - [ - "node9", - { - "#bigint": "100" - } - ] - ] - }, - { - "#map": [ - [ - "node1", - { - "#bigint": "100" - } - ], - [ - "node10", - { - "#bigint": "100" - } - ], - [ - "node2", - { - "#bigint": "100" - } - ], - [ - "node3", - { - "#bigint": "100" - } - ], - [ - "node4", - { - "#bigint": "100" - } - ], - [ - "node5", - { - "#bigint": "100" - } - ], - [ - "node6", - { - "#bigint": "100" - } - ], - [ - "node7", - { - "#bigint": "100" - } - ], - [ - "node8", - { - "#bigint": "100" - } - ], - [ - "node9", - { - "#bigint": "100" - } - ] - ] - } - ] - }, - "consumerStatus": { - "#map": [ - [ - "consumer1", - "running" - ], - [ - "consumer2", - "not consumer" - ], - [ - "consumer3", - "running" - ] - ] - }, - "outstandingPacketsToConsumer": { - "#map": [ - [ - "consumer1", - [] - ], - [ - "consumer2", - [] - ], - [ - "consumer3", - [] - ] - ] - }, - "providerValidatorSetChangedInThisBlock": true, - "receivedMaturations": { - "#set": [] - }, - "runningVscId": { - "#bigint": "0" - }, - "sentVscPacketsToConsumer": { - "#map": [ - [ - "consumer1", - [] - ], - [ - "consumer2", - [] - ], - [ - "consumer3", - [] - ] - ] - } - } - }, - "trace": [ - { - "consumerChain": "", - "consumersToStart": { - "#set": [] - }, - "consumersToStop": { - "#set": [] - }, - "kind": "init", - "newVotingPower": { - "#bigint": "0" - }, - "timeAdvancement": { - "#bigint": "0" - }, - "validator": "" - }, - { - "consumerChain": "", - "consumersToStart": { - "#set": [ - "consumer1", - "consumer3" - ] - }, - "consumersToStop": { - "#set": [] - }, - "kind": "EndAndBeginBlockForProvider", - "newVotingPower": { - "#bigint": "0" - }, - "timeAdvancement": { - "#bigint": "2419200" - }, - "validator": "" - }, - { - "consumerChain": "consumer3", - "consumersToStart": { - "#set": [] - }, - "consumersToStop": { - "#set": [] - }, - "kind": "EndAndBeginBlockForConsumer", - "newVotingPower": { - "#bigint": "0" - }, - "timeAdvancement": { - "#bigint": "2419200" - }, - "validator": "" - }, - { - "consumerChain": "", - "consumersToStart": { - "#set": [] - }, - "consumersToStop": { - "#set": [] - }, - "kind": "VotingPowerChange", - "newVotingPower": { - "#bigint": "100" - }, - "timeAdvancement": { - "#bigint": "0" - }, - "validator": "node1" - }, - { - "consumerChain": "", - "consumersToStart": { - "#set": [] - }, - "consumersToStop": { - "#set": [] - }, - "kind": "VotingPowerChange", - "newVotingPower": { - "#bigint": "50" - }, - "timeAdvancement": { - "#bigint": "0" - }, - "validator": "node1" - }, - { - "consumerChain": "", - "consumersToStart": { - "#set": [] - }, - "consumersToStop": { - "#set": [] - }, - "kind": "VotingPowerChange", - "newVotingPower": { - "#bigint": "50" - }, - "timeAdvancement": { - "#bigint": "0" - }, - "validator": "node4" - } - ] - }, - { - "#meta": { - "index": 6 - }, - "currentState": { - "consumerStates": { - "#map": [ - [ - "consumer1", - { - "chainState": { - "currentValidatorSet": { - "#map": [ - [ - "node1", - { - "#bigint": "100" - } - ], - [ - "node10", - { - "#bigint": "100" - } - ], - [ - "node2", - { - "#bigint": "100" - } - ], - [ - "node3", - { - "#bigint": "100" - } - ], - [ - "node4", - { - "#bigint": "100" - } - ], - [ - "node5", - { - "#bigint": "100" - } - ], - [ - "node6", - { - "#bigint": "100" - } - ], - [ - "node7", - { - "#bigint": "100" - } - ], - [ - "node8", - { - "#bigint": "100" - } - ], - [ - "node9", - { - "#bigint": "100" - } - ] - ] - }, - "lastTimestamp": { - "#bigint": "0" - }, - "votingPowerHistory": [] - }, - "maturationTimes": { - "#map": [] - }, - "outstandingPacketsToProvider": [], - "receivedVscPackets": [] - } - ], - [ - "consumer2", - { - "chainState": { - "currentValidatorSet": { - "#map": [] - }, - "lastTimestamp": { - "#bigint": "0" - }, - "votingPowerHistory": [] - }, - "maturationTimes": { - "#map": [] - }, - "outstandingPacketsToProvider": [], - "receivedVscPackets": [] - } - ], - [ - "consumer3", - { - "chainState": { - "currentValidatorSet": { - "#map": [ - [ - "node1", - { - "#bigint": "100" - } - ], - [ - "node10", - { - "#bigint": "100" - } - ], - [ - "node2", - { - "#bigint": "100" - } - ], - [ - "node3", - { - "#bigint": "100" - } - ], - [ - "node4", - { - "#bigint": "100" - } - ], - [ - "node5", - { - "#bigint": "100" - } - ], - [ - "node6", - { - "#bigint": "100" - } - ], - [ - "node7", - { - "#bigint": "100" - } - ], - [ - "node8", - { - "#bigint": "100" - } - ], - [ - "node9", - { - "#bigint": "100" - } - ] - ] - }, - "lastTimestamp": { - "#bigint": "2419200" - }, - "votingPowerHistory": [ - { - "#map": [ - [ - "node1", - { - "#bigint": "100" - } - ], - [ - "node10", - { - "#bigint": "100" - } - ], - [ - "node2", - { - "#bigint": "100" - } - ], - [ - "node3", - { - "#bigint": "100" - } - ], - [ - "node4", - { - "#bigint": "100" - } - ], - [ - "node5", - { - "#bigint": "100" - } - ], - [ - "node6", - { - "#bigint": "100" - } - ], - [ - "node7", - { - "#bigint": "100" - } - ], - [ - "node8", - { - "#bigint": "100" - } - ], - [ - "node9", - { - "#bigint": "100" - } - ] - ] - } - ] - }, - "maturationTimes": { - "#map": [] - }, - "outstandingPacketsToProvider": [], - "receivedVscPackets": [] - } - ] - ] - }, - "providerState": { - "chainState": { - "currentValidatorSet": { - "#map": [ - [ - "node1", - { - "#bigint": "50" - } - ], - [ - "node10", - { - "#bigint": "100" - } - ], - [ - "node2", - { - "#bigint": "100" - } - ], - [ - "node3", - { - "#bigint": "100" - } - ], - [ - "node4", - { - "#bigint": "50" - } - ], - [ - "node5", - { - "#bigint": "100" - } - ], - [ - "node6", - { - "#bigint": "100" - } - ], - [ - "node7", - { - "#bigint": "100" - } - ], - [ - "node8", - { - "#bigint": "100" - } - ], - [ - "node9", - { - "#bigint": "100" - } - ] - ] - }, - "lastTimestamp": { - "#bigint": "4838400" - }, - "votingPowerHistory": [ - { - "#map": [ - [ - "node1", - { - "#bigint": "50" - } - ], - [ - "node10", - { - "#bigint": "100" - } - ], - [ - "node2", - { - "#bigint": "100" - } - ], - [ - "node3", - { - "#bigint": "100" - } - ], - [ - "node4", - { - "#bigint": "50" - } - ], - [ - "node5", - { - "#bigint": "100" - } - ], - [ - "node6", - { - "#bigint": "100" - } - ], - [ - "node7", - { - "#bigint": "100" - } - ], - [ - "node8", - { - "#bigint": "100" - } - ], - [ - "node9", - { - "#bigint": "100" - } - ] - ] - }, - { - "#map": [ - [ - "node1", - { - "#bigint": "100" - } - ], - [ - "node10", - { - "#bigint": "100" - } - ], - [ - "node2", - { - "#bigint": "100" - } - ], - [ - "node3", - { - "#bigint": "100" - } - ], - [ - "node4", - { - "#bigint": "100" - } - ], - [ - "node5", - { - "#bigint": "100" - } - ], - [ - "node6", - { - "#bigint": "100" - } - ], - [ - "node7", - { - "#bigint": "100" - } - ], - [ - "node8", - { - "#bigint": "100" - } - ], - [ - "node9", - { - "#bigint": "100" - } - ] - ] - }, - { - "#map": [ - [ - "node1", - { - "#bigint": "100" - } - ], - [ - "node10", - { - "#bigint": "100" - } - ], - [ - "node2", - { - "#bigint": "100" - } - ], - [ - "node3", - { - "#bigint": "100" - } - ], - [ - "node4", - { - "#bigint": "100" - } - ], - [ - "node5", - { - "#bigint": "100" - } - ], - [ - "node6", - { - "#bigint": "100" - } - ], - [ - "node7", - { - "#bigint": "100" - } - ], - [ - "node8", - { - "#bigint": "100" - } - ], - [ - "node9", - { - "#bigint": "100" - } - ] - ] - } - ] - }, - "consumerStatus": { - "#map": [ - [ - "consumer1", - "stopped" - ], - [ - "consumer2", - "not consumer" - ], - [ - "consumer3", - "stopped" - ] - ] - }, - "outstandingPacketsToConsumer": { - "#map": [ - [ - "consumer1", - [] - ], - [ - "consumer2", - [] - ], - [ - "consumer3", - [] - ] - ] - }, - "providerValidatorSetChangedInThisBlock": true, - "receivedMaturations": { - "#set": [] - }, - "runningVscId": { - "#bigint": "0" - }, - "sentVscPacketsToConsumer": { - "#map": [ - [ - "consumer1", - [] - ], - [ - "consumer2", - [] - ], - [ - "consumer3", - [] - ] - ] - } - } - }, - "trace": [ - { - "consumerChain": "", - "consumersToStart": { - "#set": [] - }, - "consumersToStop": { - "#set": [] - }, - "kind": "init", - "newVotingPower": { - "#bigint": "0" - }, - "timeAdvancement": { - "#bigint": "0" - }, - "validator": "" - }, - { - "consumerChain": "", - "consumersToStart": { - "#set": [ - "consumer1", - "consumer3" - ] - }, - "consumersToStop": { - "#set": [] - }, - "kind": "EndAndBeginBlockForProvider", - "newVotingPower": { - "#bigint": "0" - }, - "timeAdvancement": { - "#bigint": "2419200" - }, - "validator": "" - }, - { - "consumerChain": "consumer3", - "consumersToStart": { - "#set": [] - }, - "consumersToStop": { - "#set": [] - }, - "kind": "EndAndBeginBlockForConsumer", - "newVotingPower": { - "#bigint": "0" - }, - "timeAdvancement": { - "#bigint": "2419200" - }, - "validator": "" - }, - { - "consumerChain": "", - "consumersToStart": { - "#set": [] - }, - "consumersToStop": { - "#set": [] - }, - "kind": "VotingPowerChange", - "newVotingPower": { - "#bigint": "100" - }, - "timeAdvancement": { - "#bigint": "0" - }, - "validator": "node1" - }, - { - "consumerChain": "", - "consumersToStart": { - "#set": [] - }, - "consumersToStop": { - "#set": [] - }, - "kind": "VotingPowerChange", - "newVotingPower": { - "#bigint": "50" - }, - "timeAdvancement": { - "#bigint": "0" - }, - "validator": "node1" - }, - { - "consumerChain": "", - "consumersToStart": { - "#set": [] - }, - "consumersToStop": { - "#set": [] - }, - "kind": "VotingPowerChange", - "newVotingPower": { - "#bigint": "50" - }, - "timeAdvancement": { - "#bigint": "0" - }, - "validator": "node4" - }, - { - "consumerChain": "", - "consumersToStart": { - "#set": [] - }, - "consumersToStop": { - "#set": [ - "consumer1", - "consumer3" - ] - }, - "kind": "EndAndBeginBlockForProvider", - "newVotingPower": { - "#bigint": "0" - }, - "timeAdvancement": { - "#bigint": "2419200" - }, - "validator": "" - } - ] - }, - { - "#meta": { - "index": 7 - }, - "currentState": { - "consumerStates": { - "#map": [ - [ - "consumer1", - { - "chainState": { - "currentValidatorSet": { - "#map": [ - [ - "node1", - { - "#bigint": "100" - } - ], - [ - "node10", - { - "#bigint": "100" - } - ], - [ - "node2", - { - "#bigint": "100" - } - ], - [ - "node3", - { - "#bigint": "100" - } - ], - [ - "node4", - { - "#bigint": "100" - } - ], - [ - "node5", - { - "#bigint": "100" - } - ], - [ - "node6", - { - "#bigint": "100" - } - ], - [ - "node7", - { - "#bigint": "100" - } - ], - [ - "node8", - { - "#bigint": "100" - } - ], - [ - "node9", - { - "#bigint": "100" - } - ] - ] - }, - "lastTimestamp": { - "#bigint": "0" - }, - "votingPowerHistory": [] - }, - "maturationTimes": { - "#map": [] - }, - "outstandingPacketsToProvider": [], - "receivedVscPackets": [] - } - ], - [ - "consumer2", - { - "chainState": { - "currentValidatorSet": { - "#map": [] - }, - "lastTimestamp": { - "#bigint": "0" - }, - "votingPowerHistory": [] - }, - "maturationTimes": { - "#map": [] - }, - "outstandingPacketsToProvider": [], - "receivedVscPackets": [] - } - ], - [ - "consumer3", - { - "chainState": { - "currentValidatorSet": { - "#map": [ - [ - "node1", - { - "#bigint": "100" - } - ], - [ - "node10", - { - "#bigint": "100" - } - ], - [ - "node2", - { - "#bigint": "100" - } - ], - [ - "node3", - { - "#bigint": "100" - } - ], - [ - "node4", - { - "#bigint": "100" - } - ], - [ - "node5", - { - "#bigint": "100" - } - ], - [ - "node6", - { - "#bigint": "100" - } - ], - [ - "node7", - { - "#bigint": "100" - } - ], - [ - "node8", - { - "#bigint": "100" - } - ], - [ - "node9", - { - "#bigint": "100" - } - ] - ] - }, - "lastTimestamp": { - "#bigint": "2419200" - }, - "votingPowerHistory": [ - { - "#map": [ - [ - "node1", - { - "#bigint": "100" - } - ], - [ - "node10", - { - "#bigint": "100" - } - ], - [ - "node2", - { - "#bigint": "100" - } - ], - [ - "node3", - { - "#bigint": "100" - } - ], - [ - "node4", - { - "#bigint": "100" - } - ], - [ - "node5", - { - "#bigint": "100" - } - ], - [ - "node6", - { - "#bigint": "100" - } - ], - [ - "node7", - { - "#bigint": "100" - } - ], - [ - "node8", - { - "#bigint": "100" - } - ], - [ - "node9", - { - "#bigint": "100" - } - ] - ] - } - ] - }, - "maturationTimes": { - "#map": [] - }, - "outstandingPacketsToProvider": [], - "receivedVscPackets": [] - } - ] - ] - }, - "providerState": { - "chainState": { - "currentValidatorSet": { - "#map": [ - [ - "node1", - { - "#bigint": "50" - } - ], - [ - "node10", - { - "#bigint": "100" - } - ], - [ - "node2", - { - "#bigint": "100" - } - ], - [ - "node3", - { - "#bigint": "100" - } - ], - [ - "node4", - { - "#bigint": "50" - } - ], - [ - "node5", - { - "#bigint": "100" - } - ], - [ - "node6", - { - "#bigint": "100" - } - ], - [ - "node7", - { - "#bigint": "100" - } - ], - [ - "node8", - { - "#bigint": "100" - } - ], - [ - "node9", - { - "#bigint": "100" - } - ] - ] - }, - "lastTimestamp": { - "#bigint": "4838400" - }, - "votingPowerHistory": [ - { - "#map": [ - [ - "node1", - { - "#bigint": "50" - } - ], - [ - "node10", - { - "#bigint": "100" - } - ], - [ - "node2", - { - "#bigint": "100" - } - ], - [ - "node3", - { - "#bigint": "100" - } - ], - [ - "node4", - { - "#bigint": "50" - } - ], - [ - "node5", - { - "#bigint": "100" - } - ], - [ - "node6", - { - "#bigint": "100" - } - ], - [ - "node7", - { - "#bigint": "100" - } - ], - [ - "node8", - { - "#bigint": "100" - } - ], - [ - "node9", - { - "#bigint": "100" - } - ] - ] - }, - { - "#map": [ - [ - "node1", - { - "#bigint": "100" - } - ], - [ - "node10", - { - "#bigint": "100" - } - ], - [ - "node2", - { - "#bigint": "100" - } - ], - [ - "node3", - { - "#bigint": "100" - } - ], - [ - "node4", - { - "#bigint": "100" - } - ], - [ - "node5", - { - "#bigint": "100" - } - ], - [ - "node6", - { - "#bigint": "100" - } - ], - [ - "node7", - { - "#bigint": "100" - } - ], - [ - "node8", - { - "#bigint": "100" - } - ], - [ - "node9", - { - "#bigint": "100" - } - ] - ] - }, - { - "#map": [ - [ - "node1", - { - "#bigint": "100" - } - ], - [ - "node10", - { - "#bigint": "100" - } - ], - [ - "node2", - { - "#bigint": "100" - } - ], - [ - "node3", - { - "#bigint": "100" - } - ], - [ - "node4", - { - "#bigint": "100" - } - ], - [ - "node5", - { - "#bigint": "100" - } - ], - [ - "node6", - { - "#bigint": "100" - } - ], - [ - "node7", - { - "#bigint": "100" - } - ], - [ - "node8", - { - "#bigint": "100" - } - ], - [ - "node9", - { - "#bigint": "100" - } - ] - ] - } - ] - }, - "consumerStatus": { - "#map": [ - [ - "consumer1", - "stopped" - ], - [ - "consumer2", - "not consumer" - ], - [ - "consumer3", - "stopped" - ] - ] - }, - "outstandingPacketsToConsumer": { - "#map": [ - [ - "consumer1", - [] - ], - [ - "consumer2", - [] - ], - [ - "consumer3", - [] - ] - ] - }, - "providerValidatorSetChangedInThisBlock": true, - "receivedMaturations": { - "#set": [] - }, - "runningVscId": { - "#bigint": "0" - }, - "sentVscPacketsToConsumer": { - "#map": [ - [ - "consumer1", - [] - ], - [ - "consumer2", - [] - ], - [ - "consumer3", - [] - ] - ] - } - } - }, - "trace": [ - { - "consumerChain": "", - "consumersToStart": { - "#set": [] - }, - "consumersToStop": { - "#set": [] - }, - "kind": "init", - "newVotingPower": { - "#bigint": "0" - }, - "timeAdvancement": { - "#bigint": "0" - }, - "validator": "" - }, - { - "consumerChain": "", - "consumersToStart": { - "#set": [ - "consumer1", - "consumer3" - ] - }, - "consumersToStop": { - "#set": [] - }, - "kind": "EndAndBeginBlockForProvider", - "newVotingPower": { - "#bigint": "0" - }, - "timeAdvancement": { - "#bigint": "2419200" - }, - "validator": "" - }, - { - "consumerChain": "consumer3", - "consumersToStart": { - "#set": [] - }, - "consumersToStop": { - "#set": [] - }, - "kind": "EndAndBeginBlockForConsumer", - "newVotingPower": { - "#bigint": "0" - }, - "timeAdvancement": { - "#bigint": "2419200" - }, - "validator": "" - }, - { - "consumerChain": "", - "consumersToStart": { - "#set": [] - }, - "consumersToStop": { - "#set": [] - }, - "kind": "VotingPowerChange", - "newVotingPower": { - "#bigint": "100" - }, - "timeAdvancement": { - "#bigint": "0" - }, - "validator": "node1" - }, - { - "consumerChain": "", - "consumersToStart": { - "#set": [] - }, - "consumersToStop": { - "#set": [] - }, - "kind": "VotingPowerChange", - "newVotingPower": { - "#bigint": "50" - }, - "timeAdvancement": { - "#bigint": "0" - }, - "validator": "node1" - }, - { - "consumerChain": "", - "consumersToStart": { - "#set": [] - }, - "consumersToStop": { - "#set": [] - }, - "kind": "VotingPowerChange", - "newVotingPower": { - "#bigint": "50" - }, - "timeAdvancement": { - "#bigint": "0" - }, - "validator": "node4" - }, - { - "consumerChain": "", - "consumersToStart": { - "#set": [] - }, - "consumersToStop": { - "#set": [ - "consumer1", - "consumer3" - ] - }, - "kind": "EndAndBeginBlockForProvider", - "newVotingPower": { - "#bigint": "0" - }, - "timeAdvancement": { - "#bigint": "2419200" - }, - "validator": "" - }, - { - "consumerChain": "", - "consumersToStart": { - "#set": [] - }, - "consumersToStop": { - "#set": [] - }, - "kind": "VotingPowerChange", - "newVotingPower": { - "#bigint": "100" - }, - "timeAdvancement": { - "#bigint": "0" - }, - "validator": "node10" - } - ] - }, - { - "#meta": { - "index": 8 - }, - "currentState": { - "consumerStates": { - "#map": [ - [ - "consumer1", - { - "chainState": { - "currentValidatorSet": { - "#map": [ - [ - "node1", - { - "#bigint": "100" - } - ], - [ - "node10", - { - "#bigint": "100" - } - ], - [ - "node2", - { - "#bigint": "100" - } - ], - [ - "node3", - { - "#bigint": "100" - } - ], - [ - "node4", - { - "#bigint": "100" - } - ], - [ - "node5", - { - "#bigint": "100" - } - ], - [ - "node6", - { - "#bigint": "100" - } - ], - [ - "node7", - { - "#bigint": "100" - } - ], - [ - "node8", - { - "#bigint": "100" - } - ], - [ - "node9", - { - "#bigint": "100" - } - ] - ] - }, - "lastTimestamp": { - "#bigint": "0" - }, - "votingPowerHistory": [] - }, - "maturationTimes": { - "#map": [] - }, - "outstandingPacketsToProvider": [], - "receivedVscPackets": [] - } - ], - [ - "consumer2", - { - "chainState": { - "currentValidatorSet": { - "#map": [] - }, - "lastTimestamp": { - "#bigint": "0" - }, - "votingPowerHistory": [] - }, - "maturationTimes": { - "#map": [] - }, - "outstandingPacketsToProvider": [], - "receivedVscPackets": [] - } - ], - [ - "consumer3", - { - "chainState": { - "currentValidatorSet": { - "#map": [ - [ - "node1", - { - "#bigint": "100" - } - ], - [ - "node10", - { - "#bigint": "100" - } - ], - [ - "node2", - { - "#bigint": "100" - } - ], - [ - "node3", - { - "#bigint": "100" - } - ], - [ - "node4", - { - "#bigint": "100" - } - ], - [ - "node5", - { - "#bigint": "100" - } - ], - [ - "node6", - { - "#bigint": "100" - } - ], - [ - "node7", - { - "#bigint": "100" - } - ], - [ - "node8", - { - "#bigint": "100" - } - ], - [ - "node9", - { - "#bigint": "100" - } - ] - ] - }, - "lastTimestamp": { - "#bigint": "2419200" - }, - "votingPowerHistory": [ - { - "#map": [ - [ - "node1", - { - "#bigint": "100" - } - ], - [ - "node10", - { - "#bigint": "100" - } - ], - [ - "node2", - { - "#bigint": "100" - } - ], - [ - "node3", - { - "#bigint": "100" - } - ], - [ - "node4", - { - "#bigint": "100" - } - ], - [ - "node5", - { - "#bigint": "100" - } - ], - [ - "node6", - { - "#bigint": "100" - } - ], - [ - "node7", - { - "#bigint": "100" - } - ], - [ - "node8", - { - "#bigint": "100" - } - ], - [ - "node9", - { - "#bigint": "100" - } - ] - ] - } - ] - }, - "maturationTimes": { - "#map": [] - }, - "outstandingPacketsToProvider": [], - "receivedVscPackets": [] - } - ] - ] - }, - "providerState": { - "chainState": { - "currentValidatorSet": { - "#map": [ - [ - "node1", - { - "#bigint": "50" - } - ], - [ - "node10", - { - "#bigint": "100" - } - ], - [ - "node2", - { - "#bigint": "100" - } - ], - [ - "node3", - { - "#bigint": "100" - } - ], - [ - "node4", - { - "#bigint": "50" - } - ], - [ - "node5", - { - "#bigint": "100" - } - ], - [ - "node6", - { - "#bigint": "100" - } - ], - [ - "node7", - { - "#bigint": "50" - } - ], - [ - "node8", - { - "#bigint": "100" - } - ], - [ - "node9", - { - "#bigint": "100" - } - ] - ] - }, - "lastTimestamp": { - "#bigint": "4838400" - }, - "votingPowerHistory": [ - { - "#map": [ - [ - "node1", - { - "#bigint": "50" - } - ], - [ - "node10", - { - "#bigint": "100" - } - ], - [ - "node2", - { - "#bigint": "100" - } - ], - [ - "node3", - { - "#bigint": "100" - } - ], - [ - "node4", - { - "#bigint": "50" - } - ], - [ - "node5", - { - "#bigint": "100" - } - ], - [ - "node6", - { - "#bigint": "100" - } - ], - [ - "node7", - { - "#bigint": "100" - } - ], - [ - "node8", - { - "#bigint": "100" - } - ], - [ - "node9", - { - "#bigint": "100" - } - ] - ] - }, - { - "#map": [ - [ - "node1", - { - "#bigint": "100" - } - ], - [ - "node10", - { - "#bigint": "100" - } - ], - [ - "node2", - { - "#bigint": "100" - } - ], - [ - "node3", - { - "#bigint": "100" - } - ], - [ - "node4", - { - "#bigint": "100" - } - ], - [ - "node5", - { - "#bigint": "100" - } - ], - [ - "node6", - { - "#bigint": "100" - } - ], - [ - "node7", - { - "#bigint": "100" - } - ], - [ - "node8", - { - "#bigint": "100" - } - ], - [ - "node9", - { - "#bigint": "100" - } - ] - ] - }, - { - "#map": [ - [ - "node1", - { - "#bigint": "100" - } - ], - [ - "node10", - { - "#bigint": "100" - } - ], - [ - "node2", - { - "#bigint": "100" - } - ], - [ - "node3", - { - "#bigint": "100" - } - ], - [ - "node4", - { - "#bigint": "100" - } - ], - [ - "node5", - { - "#bigint": "100" - } - ], - [ - "node6", - { - "#bigint": "100" - } - ], - [ - "node7", - { - "#bigint": "100" - } - ], - [ - "node8", - { - "#bigint": "100" - } - ], - [ - "node9", - { - "#bigint": "100" - } - ] - ] - } - ] - }, - "consumerStatus": { - "#map": [ - [ - "consumer1", - "stopped" - ], - [ - "consumer2", - "not consumer" - ], - [ - "consumer3", - "stopped" - ] - ] - }, - "outstandingPacketsToConsumer": { - "#map": [ - [ - "consumer1", - [] - ], - [ - "consumer2", - [] - ], - [ - "consumer3", - [] - ] - ] - }, - "providerValidatorSetChangedInThisBlock": true, - "receivedMaturations": { - "#set": [] - }, - "runningVscId": { - "#bigint": "0" - }, - "sentVscPacketsToConsumer": { - "#map": [ - [ - "consumer1", - [] - ], - [ - "consumer2", - [] - ], - [ - "consumer3", - [] - ] - ] - } - } - }, - "trace": [ - { - "consumerChain": "", - "consumersToStart": { - "#set": [] - }, - "consumersToStop": { - "#set": [] - }, - "kind": "init", - "newVotingPower": { - "#bigint": "0" - }, - "timeAdvancement": { - "#bigint": "0" - }, - "validator": "" - }, - { - "consumerChain": "", - "consumersToStart": { - "#set": [ - "consumer1", - "consumer3" - ] - }, - "consumersToStop": { - "#set": [] - }, - "kind": "EndAndBeginBlockForProvider", - "newVotingPower": { - "#bigint": "0" - }, - "timeAdvancement": { - "#bigint": "2419200" - }, - "validator": "" - }, - { - "consumerChain": "consumer3", - "consumersToStart": { - "#set": [] - }, - "consumersToStop": { - "#set": [] - }, - "kind": "EndAndBeginBlockForConsumer", - "newVotingPower": { - "#bigint": "0" - }, - "timeAdvancement": { - "#bigint": "2419200" - }, - "validator": "" - }, - { - "consumerChain": "", - "consumersToStart": { - "#set": [] - }, - "consumersToStop": { - "#set": [] - }, - "kind": "VotingPowerChange", - "newVotingPower": { - "#bigint": "100" - }, - "timeAdvancement": { - "#bigint": "0" - }, - "validator": "node1" - }, - { - "consumerChain": "", - "consumersToStart": { - "#set": [] - }, - "consumersToStop": { - "#set": [] - }, - "kind": "VotingPowerChange", - "newVotingPower": { - "#bigint": "50" - }, - "timeAdvancement": { - "#bigint": "0" - }, - "validator": "node1" - }, - { - "consumerChain": "", - "consumersToStart": { - "#set": [] - }, - "consumersToStop": { - "#set": [] - }, - "kind": "VotingPowerChange", - "newVotingPower": { - "#bigint": "50" - }, - "timeAdvancement": { - "#bigint": "0" - }, - "validator": "node4" - }, - { - "consumerChain": "", - "consumersToStart": { - "#set": [] - }, - "consumersToStop": { - "#set": [ - "consumer1", - "consumer3" - ] - }, - "kind": "EndAndBeginBlockForProvider", - "newVotingPower": { - "#bigint": "0" - }, - "timeAdvancement": { - "#bigint": "2419200" - }, - "validator": "" - }, - { - "consumerChain": "", - "consumersToStart": { - "#set": [] - }, - "consumersToStop": { - "#set": [] - }, - "kind": "VotingPowerChange", - "newVotingPower": { - "#bigint": "100" - }, - "timeAdvancement": { - "#bigint": "0" - }, - "validator": "node10" - }, - { - "consumerChain": "", - "consumersToStart": { - "#set": [] - }, - "consumersToStop": { - "#set": [] - }, - "kind": "VotingPowerChange", - "newVotingPower": { - "#bigint": "50" - }, - "timeAdvancement": { - "#bigint": "0" - }, - "validator": "node7" - } - ] - }, - { - "#meta": { - "index": 9 - }, - "currentState": { - "consumerStates": { - "#map": [ - [ - "consumer1", - { - "chainState": { - "currentValidatorSet": { - "#map": [ - [ - "node1", - { - "#bigint": "100" - } - ], - [ - "node10", - { - "#bigint": "100" - } - ], - [ - "node2", - { - "#bigint": "100" - } - ], - [ - "node3", - { - "#bigint": "100" - } - ], - [ - "node4", - { - "#bigint": "100" - } - ], - [ - "node5", - { - "#bigint": "100" - } - ], - [ - "node6", - { - "#bigint": "100" - } - ], - [ - "node7", - { - "#bigint": "100" - } - ], - [ - "node8", - { - "#bigint": "100" - } - ], - [ - "node9", - { - "#bigint": "100" - } - ] - ] - }, - "lastTimestamp": { - "#bigint": "0" - }, - "votingPowerHistory": [] - }, - "maturationTimes": { - "#map": [] - }, - "outstandingPacketsToProvider": [], - "receivedVscPackets": [] - } - ], - [ - "consumer2", - { - "chainState": { - "currentValidatorSet": { - "#map": [] - }, - "lastTimestamp": { - "#bigint": "0" - }, - "votingPowerHistory": [] - }, - "maturationTimes": { - "#map": [] - }, - "outstandingPacketsToProvider": [], - "receivedVscPackets": [] - } - ], - [ - "consumer3", - { - "chainState": { - "currentValidatorSet": { - "#map": [ - [ - "node1", - { - "#bigint": "100" - } - ], - [ - "node10", - { - "#bigint": "100" - } - ], - [ - "node2", - { - "#bigint": "100" - } - ], - [ - "node3", - { - "#bigint": "100" - } - ], - [ - "node4", - { - "#bigint": "100" - } - ], - [ - "node5", - { - "#bigint": "100" - } - ], - [ - "node6", - { - "#bigint": "100" - } - ], - [ - "node7", - { - "#bigint": "100" - } - ], - [ - "node8", - { - "#bigint": "100" - } - ], - [ - "node9", - { - "#bigint": "100" - } - ] - ] - }, - "lastTimestamp": { - "#bigint": "2419200" - }, - "votingPowerHistory": [ - { - "#map": [ - [ - "node1", - { - "#bigint": "100" - } - ], - [ - "node10", - { - "#bigint": "100" - } - ], - [ - "node2", - { - "#bigint": "100" - } - ], - [ - "node3", - { - "#bigint": "100" - } - ], - [ - "node4", - { - "#bigint": "100" - } - ], - [ - "node5", - { - "#bigint": "100" - } - ], - [ - "node6", - { - "#bigint": "100" - } - ], - [ - "node7", - { - "#bigint": "100" - } - ], - [ - "node8", - { - "#bigint": "100" - } - ], - [ - "node9", - { - "#bigint": "100" - } - ] - ] - } - ] - }, - "maturationTimes": { - "#map": [] - }, - "outstandingPacketsToProvider": [], - "receivedVscPackets": [] - } - ] - ] - }, - "providerState": { - "chainState": { - "currentValidatorSet": { - "#map": [ - [ - "node1", - { - "#bigint": "50" - } - ], - [ - "node10", - { - "#bigint": "50" - } - ], - [ - "node2", - { - "#bigint": "100" - } - ], - [ - "node3", - { - "#bigint": "100" - } - ], - [ - "node4", - { - "#bigint": "50" - } - ], - [ - "node5", - { - "#bigint": "100" - } - ], - [ - "node6", - { - "#bigint": "100" - } - ], - [ - "node7", - { - "#bigint": "50" - } - ], - [ - "node8", - { - "#bigint": "100" - } - ], - [ - "node9", - { - "#bigint": "100" - } - ] - ] - }, - "lastTimestamp": { - "#bigint": "4838400" - }, - "votingPowerHistory": [ - { - "#map": [ - [ - "node1", - { - "#bigint": "50" - } - ], - [ - "node10", - { - "#bigint": "100" - } - ], - [ - "node2", - { - "#bigint": "100" - } - ], - [ - "node3", - { - "#bigint": "100" - } - ], - [ - "node4", - { - "#bigint": "50" - } - ], - [ - "node5", - { - "#bigint": "100" - } - ], - [ - "node6", - { - "#bigint": "100" - } - ], - [ - "node7", - { - "#bigint": "100" - } - ], - [ - "node8", - { - "#bigint": "100" - } - ], - [ - "node9", - { - "#bigint": "100" - } - ] - ] - }, - { - "#map": [ - [ - "node1", - { - "#bigint": "100" - } - ], - [ - "node10", - { - "#bigint": "100" - } - ], - [ - "node2", - { - "#bigint": "100" - } - ], - [ - "node3", - { - "#bigint": "100" - } - ], - [ - "node4", - { - "#bigint": "100" - } - ], - [ - "node5", - { - "#bigint": "100" - } - ], - [ - "node6", - { - "#bigint": "100" - } - ], - [ - "node7", - { - "#bigint": "100" - } - ], - [ - "node8", - { - "#bigint": "100" - } - ], - [ - "node9", - { - "#bigint": "100" - } - ] - ] - }, - { - "#map": [ - [ - "node1", - { - "#bigint": "100" - } - ], - [ - "node10", - { - "#bigint": "100" - } - ], - [ - "node2", - { - "#bigint": "100" - } - ], - [ - "node3", - { - "#bigint": "100" - } - ], - [ - "node4", - { - "#bigint": "100" - } - ], - [ - "node5", - { - "#bigint": "100" - } - ], - [ - "node6", - { - "#bigint": "100" - } - ], - [ - "node7", - { - "#bigint": "100" - } - ], - [ - "node8", - { - "#bigint": "100" - } - ], - [ - "node9", - { - "#bigint": "100" - } - ] - ] - } - ] - }, - "consumerStatus": { - "#map": [ - [ - "consumer1", - "stopped" - ], - [ - "consumer2", - "not consumer" - ], - [ - "consumer3", - "stopped" - ] - ] - }, - "outstandingPacketsToConsumer": { - "#map": [ - [ - "consumer1", - [] - ], - [ - "consumer2", - [] - ], - [ - "consumer3", - [] - ] - ] - }, - "providerValidatorSetChangedInThisBlock": true, - "receivedMaturations": { - "#set": [] - }, - "runningVscId": { - "#bigint": "0" - }, - "sentVscPacketsToConsumer": { - "#map": [ - [ - "consumer1", - [] - ], - [ - "consumer2", - [] - ], - [ - "consumer3", - [] - ] - ] - } - } - }, - "trace": [ - { - "consumerChain": "", - "consumersToStart": { - "#set": [] - }, - "consumersToStop": { - "#set": [] - }, - "kind": "init", - "newVotingPower": { - "#bigint": "0" - }, - "timeAdvancement": { - "#bigint": "0" - }, - "validator": "" - }, - { - "consumerChain": "", - "consumersToStart": { - "#set": [ - "consumer1", - "consumer3" - ] - }, - "consumersToStop": { - "#set": [] - }, - "kind": "EndAndBeginBlockForProvider", - "newVotingPower": { - "#bigint": "0" - }, - "timeAdvancement": { - "#bigint": "2419200" - }, - "validator": "" - }, - { - "consumerChain": "consumer3", - "consumersToStart": { - "#set": [] - }, - "consumersToStop": { - "#set": [] - }, - "kind": "EndAndBeginBlockForConsumer", - "newVotingPower": { - "#bigint": "0" - }, - "timeAdvancement": { - "#bigint": "2419200" - }, - "validator": "" - }, - { - "consumerChain": "", - "consumersToStart": { - "#set": [] - }, - "consumersToStop": { - "#set": [] - }, - "kind": "VotingPowerChange", - "newVotingPower": { - "#bigint": "100" - }, - "timeAdvancement": { - "#bigint": "0" - }, - "validator": "node1" - }, - { - "consumerChain": "", - "consumersToStart": { - "#set": [] - }, - "consumersToStop": { - "#set": [] - }, - "kind": "VotingPowerChange", - "newVotingPower": { - "#bigint": "50" - }, - "timeAdvancement": { - "#bigint": "0" - }, - "validator": "node1" - }, - { - "consumerChain": "", - "consumersToStart": { - "#set": [] - }, - "consumersToStop": { - "#set": [] - }, - "kind": "VotingPowerChange", - "newVotingPower": { - "#bigint": "50" - }, - "timeAdvancement": { - "#bigint": "0" - }, - "validator": "node4" - }, - { - "consumerChain": "", - "consumersToStart": { - "#set": [] - }, - "consumersToStop": { - "#set": [ - "consumer1", - "consumer3" - ] - }, - "kind": "EndAndBeginBlockForProvider", - "newVotingPower": { - "#bigint": "0" - }, - "timeAdvancement": { - "#bigint": "2419200" - }, - "validator": "" - }, - { - "consumerChain": "", - "consumersToStart": { - "#set": [] - }, - "consumersToStop": { - "#set": [] - }, - "kind": "VotingPowerChange", - "newVotingPower": { - "#bigint": "100" - }, - "timeAdvancement": { - "#bigint": "0" - }, - "validator": "node10" - }, - { - "consumerChain": "", - "consumersToStart": { - "#set": [] - }, - "consumersToStop": { - "#set": [] - }, - "kind": "VotingPowerChange", - "newVotingPower": { - "#bigint": "50" - }, - "timeAdvancement": { - "#bigint": "0" - }, - "validator": "node7" - }, - { - "consumerChain": "", - "consumersToStart": { - "#set": [] - }, - "consumersToStop": { - "#set": [] - }, - "kind": "VotingPowerChange", - "newVotingPower": { - "#bigint": "50" - }, - "timeAdvancement": { - "#bigint": "0" - }, - "validator": "node10" - } - ] - }, - { - "#meta": { - "index": 10 - }, - "currentState": { - "consumerStates": { - "#map": [ - [ - "consumer1", - { - "chainState": { - "currentValidatorSet": { - "#map": [ - [ - "node1", - { - "#bigint": "100" - } - ], - [ - "node10", - { - "#bigint": "100" - } - ], - [ - "node2", - { - "#bigint": "100" - } - ], - [ - "node3", - { - "#bigint": "100" - } - ], - [ - "node4", - { - "#bigint": "100" - } - ], - [ - "node5", - { - "#bigint": "100" - } - ], - [ - "node6", - { - "#bigint": "100" - } - ], - [ - "node7", - { - "#bigint": "100" - } - ], - [ - "node8", - { - "#bigint": "100" - } - ], - [ - "node9", - { - "#bigint": "100" - } - ] - ] - }, - "lastTimestamp": { - "#bigint": "0" - }, - "votingPowerHistory": [] - }, - "maturationTimes": { - "#map": [] - }, - "outstandingPacketsToProvider": [], - "receivedVscPackets": [] - } - ], - [ - "consumer2", - { - "chainState": { - "currentValidatorSet": { - "#map": [ - [ - "node1", - { - "#bigint": "50" - } - ], - [ - "node10", - { - "#bigint": "50" - } - ], - [ - "node2", - { - "#bigint": "100" - } - ], - [ - "node3", - { - "#bigint": "100" - } - ], - [ - "node4", - { - "#bigint": "50" - } - ], - [ - "node5", - { - "#bigint": "100" - } - ], - [ - "node6", - { - "#bigint": "100" - } - ], - [ - "node7", - { - "#bigint": "50" - } - ], - [ - "node8", - { - "#bigint": "100" - } - ], - [ - "node9", - { - "#bigint": "100" - } - ] - ] - }, - "lastTimestamp": { - "#bigint": "0" - }, - "votingPowerHistory": [] - }, - "maturationTimes": { - "#map": [] - }, - "outstandingPacketsToProvider": [], - "receivedVscPackets": [] - } - ], - [ - "consumer3", - { - "chainState": { - "currentValidatorSet": { - "#map": [ - [ - "node1", - { - "#bigint": "100" - } - ], - [ - "node10", - { - "#bigint": "100" - } - ], - [ - "node2", - { - "#bigint": "100" - } - ], - [ - "node3", - { - "#bigint": "100" - } - ], - [ - "node4", - { - "#bigint": "100" - } - ], - [ - "node5", - { - "#bigint": "100" - } - ], - [ - "node6", - { - "#bigint": "100" - } - ], - [ - "node7", - { - "#bigint": "100" - } - ], - [ - "node8", - { - "#bigint": "100" - } - ], - [ - "node9", - { - "#bigint": "100" - } - ] - ] - }, - "lastTimestamp": { - "#bigint": "2419200" - }, - "votingPowerHistory": [ - { - "#map": [ - [ - "node1", - { - "#bigint": "100" - } - ], - [ - "node10", - { - "#bigint": "100" - } - ], - [ - "node2", - { - "#bigint": "100" - } - ], - [ - "node3", - { - "#bigint": "100" - } - ], - [ - "node4", - { - "#bigint": "100" - } - ], - [ - "node5", - { - "#bigint": "100" - } - ], - [ - "node6", - { - "#bigint": "100" - } - ], - [ - "node7", - { - "#bigint": "100" - } - ], - [ - "node8", - { - "#bigint": "100" - } - ], - [ - "node9", - { - "#bigint": "100" - } - ] - ] - } - ] - }, - "maturationTimes": { - "#map": [] - }, - "outstandingPacketsToProvider": [], - "receivedVscPackets": [] - } - ] - ] - }, - "providerState": { - "chainState": { - "currentValidatorSet": { - "#map": [ - [ - "node1", - { - "#bigint": "50" - } - ], - [ - "node10", - { - "#bigint": "50" - } - ], - [ - "node2", - { - "#bigint": "100" - } - ], - [ - "node3", - { - "#bigint": "100" - } - ], - [ - "node4", - { - "#bigint": "50" - } - ], - [ - "node5", - { - "#bigint": "100" - } - ], - [ - "node6", - { - "#bigint": "100" - } - ], - [ - "node7", - { - "#bigint": "50" - } - ], - [ - "node8", - { - "#bigint": "100" - } - ], - [ - "node9", - { - "#bigint": "100" - } - ] - ] - }, - "lastTimestamp": { - "#bigint": "4924800" - }, - "votingPowerHistory": [ - { - "#map": [ - [ - "node1", - { - "#bigint": "50" - } - ], - [ - "node10", - { - "#bigint": "50" - } - ], - [ - "node2", - { - "#bigint": "100" - } - ], - [ - "node3", - { - "#bigint": "100" - } - ], - [ - "node4", - { - "#bigint": "50" - } - ], - [ - "node5", - { - "#bigint": "100" - } - ], - [ - "node6", - { - "#bigint": "100" - } - ], - [ - "node7", - { - "#bigint": "50" - } - ], - [ - "node8", - { - "#bigint": "100" - } - ], - [ - "node9", - { - "#bigint": "100" - } - ] - ] - }, - { - "#map": [ - [ - "node1", - { - "#bigint": "50" - } - ], - [ - "node10", - { - "#bigint": "100" - } - ], - [ - "node2", - { - "#bigint": "100" - } - ], - [ - "node3", - { - "#bigint": "100" - } - ], - [ - "node4", - { - "#bigint": "50" - } - ], - [ - "node5", - { - "#bigint": "100" - } - ], - [ - "node6", - { - "#bigint": "100" - } - ], - [ - "node7", - { - "#bigint": "100" - } - ], - [ - "node8", - { - "#bigint": "100" - } - ], - [ - "node9", - { - "#bigint": "100" - } - ] - ] - }, - { - "#map": [ - [ - "node1", - { - "#bigint": "100" - } - ], - [ - "node10", - { - "#bigint": "100" - } - ], - [ - "node2", - { - "#bigint": "100" - } - ], - [ - "node3", - { - "#bigint": "100" - } - ], - [ - "node4", - { - "#bigint": "100" - } - ], - [ - "node5", - { - "#bigint": "100" - } - ], - [ - "node6", - { - "#bigint": "100" - } - ], - [ - "node7", - { - "#bigint": "100" - } - ], - [ - "node8", - { - "#bigint": "100" - } - ], - [ - "node9", - { - "#bigint": "100" - } - ] - ] - }, - { - "#map": [ - [ - "node1", - { - "#bigint": "100" - } - ], - [ - "node10", - { - "#bigint": "100" - } - ], - [ - "node2", - { - "#bigint": "100" - } - ], - [ - "node3", - { - "#bigint": "100" - } - ], - [ - "node4", - { - "#bigint": "100" - } - ], - [ - "node5", - { - "#bigint": "100" - } - ], - [ - "node6", - { - "#bigint": "100" - } - ], - [ - "node7", - { - "#bigint": "100" - } - ], - [ - "node8", - { - "#bigint": "100" - } - ], - [ - "node9", - { - "#bigint": "100" - } - ] - ] - } - ] - }, - "consumerStatus": { - "#map": [ - [ - "consumer1", - "stopped" - ], - [ - "consumer2", - "running" - ], - [ - "consumer3", - "stopped" - ] - ] - }, - "outstandingPacketsToConsumer": { - "#map": [ - [ - "consumer1", - [] - ], - [ - "consumer2", - [ - { - "id": { - "#bigint": "0" - }, - "sendingTime": { - "#bigint": "4924800" - }, - "validatorSet": { - "#map": [ - [ - "node1", - { - "#bigint": "50" - } - ], - [ - "node10", - { - "#bigint": "50" - } - ], - [ - "node2", - { - "#bigint": "100" - } - ], - [ - "node3", - { - "#bigint": "100" - } - ], - [ - "node4", - { - "#bigint": "50" - } - ], - [ - "node5", - { - "#bigint": "100" - } - ], - [ - "node6", - { - "#bigint": "100" - } - ], - [ - "node7", - { - "#bigint": "50" - } - ], - [ - "node8", - { - "#bigint": "100" - } - ], - [ - "node9", - { - "#bigint": "100" - } - ] - ] - } - } - ] - ], - [ - "consumer3", - [] - ] - ] - }, - "providerValidatorSetChangedInThisBlock": false, - "receivedMaturations": { - "#set": [] - }, - "runningVscId": { - "#bigint": "1" - }, - "sentVscPacketsToConsumer": { - "#map": [ - [ - "consumer1", - [] - ], - [ - "consumer2", - [ - { - "id": { - "#bigint": "0" - }, - "sendingTime": { - "#bigint": "4924800" - }, - "validatorSet": { - "#map": [ - [ - "node1", - { - "#bigint": "50" - } - ], - [ - "node10", - { - "#bigint": "50" - } - ], - [ - "node2", - { - "#bigint": "100" - } - ], - [ - "node3", - { - "#bigint": "100" - } - ], - [ - "node4", - { - "#bigint": "50" - } - ], - [ - "node5", - { - "#bigint": "100" - } - ], - [ - "node6", - { - "#bigint": "100" - } - ], - [ - "node7", - { - "#bigint": "50" - } - ], - [ - "node8", - { - "#bigint": "100" - } - ], - [ - "node9", - { - "#bigint": "100" - } - ] - ] - } - } - ] - ], - [ - "consumer3", - [] - ] - ] - } - } - }, - "trace": [ - { - "consumerChain": "", - "consumersToStart": { - "#set": [] - }, - "consumersToStop": { - "#set": [] - }, - "kind": "init", - "newVotingPower": { - "#bigint": "0" - }, - "timeAdvancement": { - "#bigint": "0" - }, - "validator": "" - }, - { - "consumerChain": "", - "consumersToStart": { - "#set": [ - "consumer1", - "consumer3" - ] - }, - "consumersToStop": { - "#set": [] - }, - "kind": "EndAndBeginBlockForProvider", - "newVotingPower": { - "#bigint": "0" - }, - "timeAdvancement": { - "#bigint": "2419200" - }, - "validator": "" - }, - { - "consumerChain": "consumer3", - "consumersToStart": { - "#set": [] - }, - "consumersToStop": { - "#set": [] - }, - "kind": "EndAndBeginBlockForConsumer", - "newVotingPower": { - "#bigint": "0" - }, - "timeAdvancement": { - "#bigint": "2419200" - }, - "validator": "" - }, - { - "consumerChain": "", - "consumersToStart": { - "#set": [] - }, - "consumersToStop": { - "#set": [] - }, - "kind": "VotingPowerChange", - "newVotingPower": { - "#bigint": "100" - }, - "timeAdvancement": { - "#bigint": "0" - }, - "validator": "node1" - }, - { - "consumerChain": "", - "consumersToStart": { - "#set": [] - }, - "consumersToStop": { - "#set": [] - }, - "kind": "VotingPowerChange", - "newVotingPower": { - "#bigint": "50" - }, - "timeAdvancement": { - "#bigint": "0" - }, - "validator": "node1" - }, - { - "consumerChain": "", - "consumersToStart": { - "#set": [] - }, - "consumersToStop": { - "#set": [] - }, - "kind": "VotingPowerChange", - "newVotingPower": { - "#bigint": "50" - }, - "timeAdvancement": { - "#bigint": "0" - }, - "validator": "node4" - }, - { - "consumerChain": "", - "consumersToStart": { - "#set": [] - }, - "consumersToStop": { - "#set": [ - "consumer1", - "consumer3" - ] - }, - "kind": "EndAndBeginBlockForProvider", - "newVotingPower": { - "#bigint": "0" - }, - "timeAdvancement": { - "#bigint": "2419200" - }, - "validator": "" - }, - { - "consumerChain": "", - "consumersToStart": { - "#set": [] - }, - "consumersToStop": { - "#set": [] - }, - "kind": "VotingPowerChange", - "newVotingPower": { - "#bigint": "100" - }, - "timeAdvancement": { - "#bigint": "0" - }, - "validator": "node10" - }, - { - "consumerChain": "", - "consumersToStart": { - "#set": [] - }, - "consumersToStop": { - "#set": [] - }, - "kind": "VotingPowerChange", - "newVotingPower": { - "#bigint": "50" - }, - "timeAdvancement": { - "#bigint": "0" - }, - "validator": "node7" - }, - { - "consumerChain": "", - "consumersToStart": { - "#set": [] - }, - "consumersToStop": { - "#set": [] - }, - "kind": "VotingPowerChange", - "newVotingPower": { - "#bigint": "50" - }, - "timeAdvancement": { - "#bigint": "0" - }, - "validator": "node10" - }, - { - "consumerChain": "", - "consumersToStart": { - "#set": [ - "consumer2" - ] - }, - "consumersToStop": { - "#set": [] - }, - "kind": "EndAndBeginBlockForProvider", - "newVotingPower": { - "#bigint": "0" - }, - "timeAdvancement": { - "#bigint": "86400" - }, - "validator": "" - } - ] - }, - { - "#meta": { - "index": 11 - }, - "currentState": { - "consumerStates": { - "#map": [ - [ - "consumer1", - { - "chainState": { - "currentValidatorSet": { - "#map": [ - [ - "node1", - { - "#bigint": "100" - } - ], - [ - "node10", - { - "#bigint": "100" - } - ], - [ - "node2", - { - "#bigint": "100" - } - ], - [ - "node3", - { - "#bigint": "100" - } - ], - [ - "node4", - { - "#bigint": "100" - } - ], - [ - "node5", - { - "#bigint": "100" - } - ], - [ - "node6", - { - "#bigint": "100" - } - ], - [ - "node7", - { - "#bigint": "100" - } - ], - [ - "node8", - { - "#bigint": "100" - } - ], - [ - "node9", - { - "#bigint": "100" - } - ] - ] - }, - "lastTimestamp": { - "#bigint": "0" - }, - "votingPowerHistory": [] - }, - "maturationTimes": { - "#map": [] - }, - "outstandingPacketsToProvider": [], - "receivedVscPackets": [] - } - ], - [ - "consumer2", - { - "chainState": { - "currentValidatorSet": { - "#map": [ - [ - "node1", - { - "#bigint": "50" - } - ], - [ - "node10", - { - "#bigint": "50" - } - ], - [ - "node2", - { - "#bigint": "100" - } - ], - [ - "node3", - { - "#bigint": "100" - } - ], - [ - "node4", - { - "#bigint": "50" - } - ], - [ - "node5", - { - "#bigint": "100" - } - ], - [ - "node6", - { - "#bigint": "100" - } - ], - [ - "node7", - { - "#bigint": "50" - } - ], - [ - "node8", - { - "#bigint": "100" - } - ], - [ - "node9", - { - "#bigint": "100" - } - ] - ] - }, - "lastTimestamp": { - "#bigint": "0" - }, - "votingPowerHistory": [] - }, - "maturationTimes": { - "#map": [] - }, - "outstandingPacketsToProvider": [], - "receivedVscPackets": [] - } - ], - [ - "consumer3", - { - "chainState": { - "currentValidatorSet": { - "#map": [ - [ - "node1", - { - "#bigint": "100" - } - ], - [ - "node10", - { - "#bigint": "100" - } - ], - [ - "node2", - { - "#bigint": "100" - } - ], - [ - "node3", - { - "#bigint": "100" - } - ], - [ - "node4", - { - "#bigint": "100" - } - ], - [ - "node5", - { - "#bigint": "100" - } - ], - [ - "node6", - { - "#bigint": "100" - } - ], - [ - "node7", - { - "#bigint": "100" - } - ], - [ - "node8", - { - "#bigint": "100" - } - ], - [ - "node9", - { - "#bigint": "100" - } - ] - ] - }, - "lastTimestamp": { - "#bigint": "2419200" - }, - "votingPowerHistory": [ - { - "#map": [ - [ - "node1", - { - "#bigint": "100" - } - ], - [ - "node10", - { - "#bigint": "100" - } - ], - [ - "node2", - { - "#bigint": "100" - } - ], - [ - "node3", - { - "#bigint": "100" - } - ], - [ - "node4", - { - "#bigint": "100" - } - ], - [ - "node5", - { - "#bigint": "100" - } - ], - [ - "node6", - { - "#bigint": "100" - } - ], - [ - "node7", - { - "#bigint": "100" - } - ], - [ - "node8", - { - "#bigint": "100" - } - ], - [ - "node9", - { - "#bigint": "100" - } - ] - ] - } - ] - }, - "maturationTimes": { - "#map": [] - }, - "outstandingPacketsToProvider": [], - "receivedVscPackets": [] - } - ] - ] - }, - "providerState": { - "chainState": { - "currentValidatorSet": { - "#map": [ - [ - "node1", - { - "#bigint": "50" - } - ], - [ - "node10", - { - "#bigint": "50" - } - ], - [ - "node2", - { - "#bigint": "50" - } - ], - [ - "node3", - { - "#bigint": "100" - } - ], - [ - "node4", - { - "#bigint": "50" - } - ], - [ - "node5", - { - "#bigint": "100" - } - ], - [ - "node6", - { - "#bigint": "100" - } - ], - [ - "node7", - { - "#bigint": "50" - } - ], - [ - "node8", - { - "#bigint": "100" - } - ], - [ - "node9", - { - "#bigint": "100" - } - ] - ] - }, - "lastTimestamp": { - "#bigint": "4924800" - }, - "votingPowerHistory": [ - { - "#map": [ - [ - "node1", - { - "#bigint": "50" - } - ], - [ - "node10", - { - "#bigint": "50" - } - ], - [ - "node2", - { - "#bigint": "100" - } - ], - [ - "node3", - { - "#bigint": "100" - } - ], - [ - "node4", - { - "#bigint": "50" - } - ], - [ - "node5", - { - "#bigint": "100" - } - ], - [ - "node6", - { - "#bigint": "100" - } - ], - [ - "node7", - { - "#bigint": "50" - } - ], - [ - "node8", - { - "#bigint": "100" - } - ], - [ - "node9", - { - "#bigint": "100" - } - ] - ] - }, - { - "#map": [ - [ - "node1", - { - "#bigint": "50" - } - ], - [ - "node10", - { - "#bigint": "100" - } - ], - [ - "node2", - { - "#bigint": "100" - } - ], - [ - "node3", - { - "#bigint": "100" - } - ], - [ - "node4", - { - "#bigint": "50" - } - ], - [ - "node5", - { - "#bigint": "100" - } - ], - [ - "node6", - { - "#bigint": "100" - } - ], - [ - "node7", - { - "#bigint": "100" - } - ], - [ - "node8", - { - "#bigint": "100" - } - ], - [ - "node9", - { - "#bigint": "100" - } - ] - ] - }, - { - "#map": [ - [ - "node1", - { - "#bigint": "100" - } - ], - [ - "node10", - { - "#bigint": "100" - } - ], - [ - "node2", - { - "#bigint": "100" - } - ], - [ - "node3", - { - "#bigint": "100" - } - ], - [ - "node4", - { - "#bigint": "100" - } - ], - [ - "node5", - { - "#bigint": "100" - } - ], - [ - "node6", - { - "#bigint": "100" - } - ], - [ - "node7", - { - "#bigint": "100" - } - ], - [ - "node8", - { - "#bigint": "100" - } - ], - [ - "node9", - { - "#bigint": "100" - } - ] - ] - }, - { - "#map": [ - [ - "node1", - { - "#bigint": "100" - } - ], - [ - "node10", - { - "#bigint": "100" - } - ], - [ - "node2", - { - "#bigint": "100" - } - ], - [ - "node3", - { - "#bigint": "100" - } - ], - [ - "node4", - { - "#bigint": "100" - } - ], - [ - "node5", - { - "#bigint": "100" - } - ], - [ - "node6", - { - "#bigint": "100" - } - ], - [ - "node7", - { - "#bigint": "100" - } - ], - [ - "node8", - { - "#bigint": "100" - } - ], - [ - "node9", - { - "#bigint": "100" - } - ] - ] - } - ] - }, - "consumerStatus": { - "#map": [ - [ - "consumer1", - "stopped" - ], - [ - "consumer2", - "running" - ], - [ - "consumer3", - "stopped" - ] - ] - }, - "outstandingPacketsToConsumer": { - "#map": [ - [ - "consumer1", - [] - ], - [ - "consumer2", - [ - { - "id": { - "#bigint": "0" - }, - "sendingTime": { - "#bigint": "4924800" - }, - "validatorSet": { - "#map": [ - [ - "node1", - { - "#bigint": "50" - } - ], - [ - "node10", - { - "#bigint": "50" - } - ], - [ - "node2", - { - "#bigint": "100" - } - ], - [ - "node3", - { - "#bigint": "100" - } - ], - [ - "node4", - { - "#bigint": "50" - } - ], - [ - "node5", - { - "#bigint": "100" - } - ], - [ - "node6", - { - "#bigint": "100" - } - ], - [ - "node7", - { - "#bigint": "50" - } - ], - [ - "node8", - { - "#bigint": "100" - } - ], - [ - "node9", - { - "#bigint": "100" - } - ] - ] - } - } - ] - ], - [ - "consumer3", - [] - ] - ] - }, - "providerValidatorSetChangedInThisBlock": true, - "receivedMaturations": { - "#set": [] - }, - "runningVscId": { - "#bigint": "1" - }, - "sentVscPacketsToConsumer": { - "#map": [ - [ - "consumer1", - [] - ], - [ - "consumer2", - [ - { - "id": { - "#bigint": "0" - }, - "sendingTime": { - "#bigint": "4924800" - }, - "validatorSet": { - "#map": [ - [ - "node1", - { - "#bigint": "50" - } - ], - [ - "node10", - { - "#bigint": "50" - } - ], - [ - "node2", - { - "#bigint": "100" - } - ], - [ - "node3", - { - "#bigint": "100" - } - ], - [ - "node4", - { - "#bigint": "50" - } - ], - [ - "node5", - { - "#bigint": "100" - } - ], - [ - "node6", - { - "#bigint": "100" - } - ], - [ - "node7", - { - "#bigint": "50" - } - ], - [ - "node8", - { - "#bigint": "100" - } - ], - [ - "node9", - { - "#bigint": "100" - } - ] - ] - } - } - ] - ], - [ - "consumer3", - [] - ] - ] - } - } - }, - "trace": [ - { - "consumerChain": "", - "consumersToStart": { - "#set": [] - }, - "consumersToStop": { - "#set": [] - }, - "kind": "init", - "newVotingPower": { - "#bigint": "0" - }, - "timeAdvancement": { - "#bigint": "0" - }, - "validator": "" - }, - { - "consumerChain": "", - "consumersToStart": { - "#set": [ - "consumer1", - "consumer3" - ] - }, - "consumersToStop": { - "#set": [] - }, - "kind": "EndAndBeginBlockForProvider", - "newVotingPower": { - "#bigint": "0" - }, - "timeAdvancement": { - "#bigint": "2419200" - }, - "validator": "" - }, - { - "consumerChain": "consumer3", - "consumersToStart": { - "#set": [] - }, - "consumersToStop": { - "#set": [] - }, - "kind": "EndAndBeginBlockForConsumer", - "newVotingPower": { - "#bigint": "0" - }, - "timeAdvancement": { - "#bigint": "2419200" - }, - "validator": "" - }, - { - "consumerChain": "", - "consumersToStart": { - "#set": [] - }, - "consumersToStop": { - "#set": [] - }, - "kind": "VotingPowerChange", - "newVotingPower": { - "#bigint": "100" - }, - "timeAdvancement": { - "#bigint": "0" - }, - "validator": "node1" - }, - { - "consumerChain": "", - "consumersToStart": { - "#set": [] - }, - "consumersToStop": { - "#set": [] - }, - "kind": "VotingPowerChange", - "newVotingPower": { - "#bigint": "50" - }, - "timeAdvancement": { - "#bigint": "0" - }, - "validator": "node1" - }, - { - "consumerChain": "", - "consumersToStart": { - "#set": [] - }, - "consumersToStop": { - "#set": [] - }, - "kind": "VotingPowerChange", - "newVotingPower": { - "#bigint": "50" - }, - "timeAdvancement": { - "#bigint": "0" - }, - "validator": "node4" - }, - { - "consumerChain": "", - "consumersToStart": { - "#set": [] - }, - "consumersToStop": { - "#set": [ - "consumer1", - "consumer3" - ] - }, - "kind": "EndAndBeginBlockForProvider", - "newVotingPower": { - "#bigint": "0" - }, - "timeAdvancement": { - "#bigint": "2419200" - }, - "validator": "" - }, - { - "consumerChain": "", - "consumersToStart": { - "#set": [] - }, - "consumersToStop": { - "#set": [] - }, - "kind": "VotingPowerChange", - "newVotingPower": { - "#bigint": "100" - }, - "timeAdvancement": { - "#bigint": "0" - }, - "validator": "node10" - }, - { - "consumerChain": "", - "consumersToStart": { - "#set": [] - }, - "consumersToStop": { - "#set": [] - }, - "kind": "VotingPowerChange", - "newVotingPower": { - "#bigint": "50" - }, - "timeAdvancement": { - "#bigint": "0" - }, - "validator": "node7" - }, - { - "consumerChain": "", - "consumersToStart": { - "#set": [] - }, - "consumersToStop": { - "#set": [] - }, - "kind": "VotingPowerChange", - "newVotingPower": { - "#bigint": "50" - }, - "timeAdvancement": { - "#bigint": "0" - }, - "validator": "node10" - }, - { - "consumerChain": "", - "consumersToStart": { - "#set": [ - "consumer2" - ] - }, - "consumersToStop": { - "#set": [] - }, - "kind": "EndAndBeginBlockForProvider", - "newVotingPower": { - "#bigint": "0" - }, - "timeAdvancement": { - "#bigint": "86400" - }, - "validator": "" - }, - { - "consumerChain": "", - "consumersToStart": { - "#set": [] - }, - "consumersToStop": { - "#set": [] - }, - "kind": "VotingPowerChange", - "newVotingPower": { - "#bigint": "50" - }, - "timeAdvancement": { - "#bigint": "0" - }, - "validator": "node2" - } - ] - }, - { - "#meta": { - "index": 12 - }, - "currentState": { - "consumerStates": { - "#map": [ - [ - "consumer1", - { - "chainState": { - "currentValidatorSet": { - "#map": [ - [ - "node1", - { - "#bigint": "100" - } - ], - [ - "node10", - { - "#bigint": "100" - } - ], - [ - "node2", - { - "#bigint": "100" - } - ], - [ - "node3", - { - "#bigint": "100" - } - ], - [ - "node4", - { - "#bigint": "100" - } - ], - [ - "node5", - { - "#bigint": "100" - } - ], - [ - "node6", - { - "#bigint": "100" - } - ], - [ - "node7", - { - "#bigint": "100" - } - ], - [ - "node8", - { - "#bigint": "100" - } - ], - [ - "node9", - { - "#bigint": "100" - } - ] - ] - }, - "lastTimestamp": { - "#bigint": "0" - }, - "votingPowerHistory": [] - }, - "maturationTimes": { - "#map": [] - }, - "outstandingPacketsToProvider": [], - "receivedVscPackets": [] - } - ], - [ - "consumer2", - { - "chainState": { - "currentValidatorSet": { - "#map": [ - [ - "node1", - { - "#bigint": "50" - } - ], - [ - "node10", - { - "#bigint": "50" - } - ], - [ - "node2", - { - "#bigint": "100" - } - ], - [ - "node3", - { - "#bigint": "100" - } - ], - [ - "node4", - { - "#bigint": "50" - } - ], - [ - "node5", - { - "#bigint": "100" - } - ], - [ - "node6", - { - "#bigint": "100" - } - ], - [ - "node7", - { - "#bigint": "50" - } - ], - [ - "node8", - { - "#bigint": "100" - } - ], - [ - "node9", - { - "#bigint": "100" - } - ] - ] - }, - "lastTimestamp": { - "#bigint": "0" - }, - "votingPowerHistory": [] - }, - "maturationTimes": { - "#map": [] - }, - "outstandingPacketsToProvider": [], - "receivedVscPackets": [] - } - ], - [ - "consumer3", - { - "chainState": { - "currentValidatorSet": { - "#map": [ - [ - "node1", - { - "#bigint": "100" - } - ], - [ - "node10", - { - "#bigint": "100" - } - ], - [ - "node2", - { - "#bigint": "100" - } - ], - [ - "node3", - { - "#bigint": "100" - } - ], - [ - "node4", - { - "#bigint": "100" - } - ], - [ - "node5", - { - "#bigint": "100" - } - ], - [ - "node6", - { - "#bigint": "100" - } - ], - [ - "node7", - { - "#bigint": "100" - } - ], - [ - "node8", - { - "#bigint": "100" - } - ], - [ - "node9", - { - "#bigint": "100" - } - ] - ] - }, - "lastTimestamp": { - "#bigint": "2419200" - }, - "votingPowerHistory": [ - { - "#map": [ - [ - "node1", - { - "#bigint": "100" - } - ], - [ - "node10", - { - "#bigint": "100" - } - ], - [ - "node2", - { - "#bigint": "100" - } - ], - [ - "node3", - { - "#bigint": "100" - } - ], - [ - "node4", - { - "#bigint": "100" - } - ], - [ - "node5", - { - "#bigint": "100" - } - ], - [ - "node6", - { - "#bigint": "100" - } - ], - [ - "node7", - { - "#bigint": "100" - } - ], - [ - "node8", - { - "#bigint": "100" - } - ], - [ - "node9", - { - "#bigint": "100" - } - ] - ] - } - ] - }, - "maturationTimes": { - "#map": [] - }, - "outstandingPacketsToProvider": [], - "receivedVscPackets": [] - } - ] - ] - }, - "providerState": { - "chainState": { - "currentValidatorSet": { - "#map": [ - [ - "node1", - { - "#bigint": "50" - } - ], - [ - "node10", - { - "#bigint": "50" - } - ], - [ - "node2", - { - "#bigint": "50" - } - ], - [ - "node3", - { - "#bigint": "100" - } - ], - [ - "node4", - { - "#bigint": "100" - } - ], - [ - "node5", - { - "#bigint": "100" - } - ], - [ - "node6", - { - "#bigint": "100" - } - ], - [ - "node7", - { - "#bigint": "50" - } - ], - [ - "node8", - { - "#bigint": "100" - } - ], - [ - "node9", - { - "#bigint": "100" - } - ] - ] - }, - "lastTimestamp": { - "#bigint": "4924800" - }, - "votingPowerHistory": [ - { - "#map": [ - [ - "node1", - { - "#bigint": "50" - } - ], - [ - "node10", - { - "#bigint": "50" - } - ], - [ - "node2", - { - "#bigint": "100" - } - ], - [ - "node3", - { - "#bigint": "100" - } - ], - [ - "node4", - { - "#bigint": "50" - } - ], - [ - "node5", - { - "#bigint": "100" - } - ], - [ - "node6", - { - "#bigint": "100" - } - ], - [ - "node7", - { - "#bigint": "50" - } - ], - [ - "node8", - { - "#bigint": "100" - } - ], - [ - "node9", - { - "#bigint": "100" - } - ] - ] - }, - { - "#map": [ - [ - "node1", - { - "#bigint": "50" - } - ], - [ - "node10", - { - "#bigint": "100" - } - ], - [ - "node2", - { - "#bigint": "100" - } - ], - [ - "node3", - { - "#bigint": "100" - } - ], - [ - "node4", - { - "#bigint": "50" - } - ], - [ - "node5", - { - "#bigint": "100" - } - ], - [ - "node6", - { - "#bigint": "100" - } - ], - [ - "node7", - { - "#bigint": "100" - } - ], - [ - "node8", - { - "#bigint": "100" - } - ], - [ - "node9", - { - "#bigint": "100" - } - ] - ] - }, - { - "#map": [ - [ - "node1", - { - "#bigint": "100" - } - ], - [ - "node10", - { - "#bigint": "100" - } - ], - [ - "node2", - { - "#bigint": "100" - } - ], - [ - "node3", - { - "#bigint": "100" - } - ], - [ - "node4", - { - "#bigint": "100" - } - ], - [ - "node5", - { - "#bigint": "100" - } - ], - [ - "node6", - { - "#bigint": "100" - } - ], - [ - "node7", - { - "#bigint": "100" - } - ], - [ - "node8", - { - "#bigint": "100" - } - ], - [ - "node9", - { - "#bigint": "100" - } - ] - ] - }, - { - "#map": [ - [ - "node1", - { - "#bigint": "100" - } - ], - [ - "node10", - { - "#bigint": "100" - } - ], - [ - "node2", - { - "#bigint": "100" - } - ], - [ - "node3", - { - "#bigint": "100" - } - ], - [ - "node4", - { - "#bigint": "100" - } - ], - [ - "node5", - { - "#bigint": "100" - } - ], - [ - "node6", - { - "#bigint": "100" - } - ], - [ - "node7", - { - "#bigint": "100" - } - ], - [ - "node8", - { - "#bigint": "100" - } - ], - [ - "node9", - { - "#bigint": "100" - } - ] - ] - } - ] - }, - "consumerStatus": { - "#map": [ - [ - "consumer1", - "stopped" - ], - [ - "consumer2", - "running" - ], - [ - "consumer3", - "stopped" - ] - ] - }, - "outstandingPacketsToConsumer": { - "#map": [ - [ - "consumer1", - [] - ], - [ - "consumer2", - [ - { - "id": { - "#bigint": "0" - }, - "sendingTime": { - "#bigint": "4924800" - }, - "validatorSet": { - "#map": [ - [ - "node1", - { - "#bigint": "50" - } - ], - [ - "node10", - { - "#bigint": "50" - } - ], - [ - "node2", - { - "#bigint": "100" - } - ], - [ - "node3", - { - "#bigint": "100" - } - ], - [ - "node4", - { - "#bigint": "50" - } - ], - [ - "node5", - { - "#bigint": "100" - } - ], - [ - "node6", - { - "#bigint": "100" - } - ], - [ - "node7", - { - "#bigint": "50" - } - ], - [ - "node8", - { - "#bigint": "100" - } - ], - [ - "node9", - { - "#bigint": "100" - } - ] - ] - } - } - ] - ], - [ - "consumer3", - [] - ] - ] - }, - "providerValidatorSetChangedInThisBlock": true, - "receivedMaturations": { - "#set": [] - }, - "runningVscId": { - "#bigint": "1" - }, - "sentVscPacketsToConsumer": { - "#map": [ - [ - "consumer1", - [] - ], - [ - "consumer2", - [ - { - "id": { - "#bigint": "0" - }, - "sendingTime": { - "#bigint": "4924800" - }, - "validatorSet": { - "#map": [ - [ - "node1", - { - "#bigint": "50" - } - ], - [ - "node10", - { - "#bigint": "50" - } - ], - [ - "node2", - { - "#bigint": "100" - } - ], - [ - "node3", - { - "#bigint": "100" - } - ], - [ - "node4", - { - "#bigint": "50" - } - ], - [ - "node5", - { - "#bigint": "100" - } - ], - [ - "node6", - { - "#bigint": "100" - } - ], - [ - "node7", - { - "#bigint": "50" - } - ], - [ - "node8", - { - "#bigint": "100" - } - ], - [ - "node9", - { - "#bigint": "100" - } - ] - ] - } - } - ] - ], - [ - "consumer3", - [] - ] - ] - } - } - }, - "trace": [ - { - "consumerChain": "", - "consumersToStart": { - "#set": [] - }, - "consumersToStop": { - "#set": [] - }, - "kind": "init", - "newVotingPower": { - "#bigint": "0" - }, - "timeAdvancement": { - "#bigint": "0" - }, - "validator": "" - }, - { - "consumerChain": "", - "consumersToStart": { - "#set": [ - "consumer1", - "consumer3" - ] - }, - "consumersToStop": { - "#set": [] - }, - "kind": "EndAndBeginBlockForProvider", - "newVotingPower": { - "#bigint": "0" - }, - "timeAdvancement": { - "#bigint": "2419200" - }, - "validator": "" - }, - { - "consumerChain": "consumer3", - "consumersToStart": { - "#set": [] - }, - "consumersToStop": { - "#set": [] - }, - "kind": "EndAndBeginBlockForConsumer", - "newVotingPower": { - "#bigint": "0" - }, - "timeAdvancement": { - "#bigint": "2419200" - }, - "validator": "" - }, - { - "consumerChain": "", - "consumersToStart": { - "#set": [] - }, - "consumersToStop": { - "#set": [] - }, - "kind": "VotingPowerChange", - "newVotingPower": { - "#bigint": "100" - }, - "timeAdvancement": { - "#bigint": "0" - }, - "validator": "node1" - }, - { - "consumerChain": "", - "consumersToStart": { - "#set": [] - }, - "consumersToStop": { - "#set": [] - }, - "kind": "VotingPowerChange", - "newVotingPower": { - "#bigint": "50" - }, - "timeAdvancement": { - "#bigint": "0" - }, - "validator": "node1" - }, - { - "consumerChain": "", - "consumersToStart": { - "#set": [] - }, - "consumersToStop": { - "#set": [] - }, - "kind": "VotingPowerChange", - "newVotingPower": { - "#bigint": "50" - }, - "timeAdvancement": { - "#bigint": "0" - }, - "validator": "node4" - }, - { - "consumerChain": "", - "consumersToStart": { - "#set": [] - }, - "consumersToStop": { - "#set": [ - "consumer1", - "consumer3" - ] - }, - "kind": "EndAndBeginBlockForProvider", - "newVotingPower": { - "#bigint": "0" - }, - "timeAdvancement": { - "#bigint": "2419200" - }, - "validator": "" - }, - { - "consumerChain": "", - "consumersToStart": { - "#set": [] - }, - "consumersToStop": { - "#set": [] - }, - "kind": "VotingPowerChange", - "newVotingPower": { - "#bigint": "100" - }, - "timeAdvancement": { - "#bigint": "0" - }, - "validator": "node10" - }, - { - "consumerChain": "", - "consumersToStart": { - "#set": [] - }, - "consumersToStop": { - "#set": [] - }, - "kind": "VotingPowerChange", - "newVotingPower": { - "#bigint": "50" - }, - "timeAdvancement": { - "#bigint": "0" - }, - "validator": "node7" - }, - { - "consumerChain": "", - "consumersToStart": { - "#set": [] - }, - "consumersToStop": { - "#set": [] - }, - "kind": "VotingPowerChange", - "newVotingPower": { - "#bigint": "50" - }, - "timeAdvancement": { - "#bigint": "0" - }, - "validator": "node10" - }, - { - "consumerChain": "", - "consumersToStart": { - "#set": [ - "consumer2" - ] - }, - "consumersToStop": { - "#set": [] - }, - "kind": "EndAndBeginBlockForProvider", - "newVotingPower": { - "#bigint": "0" - }, - "timeAdvancement": { - "#bigint": "86400" - }, - "validator": "" - }, - { - "consumerChain": "", - "consumersToStart": { - "#set": [] - }, - "consumersToStop": { - "#set": [] - }, - "kind": "VotingPowerChange", - "newVotingPower": { - "#bigint": "50" - }, - "timeAdvancement": { - "#bigint": "0" - }, - "validator": "node2" - }, - { - "consumerChain": "", - "consumersToStart": { - "#set": [] - }, - "consumersToStop": { - "#set": [] - }, - "kind": "VotingPowerChange", - "newVotingPower": { - "#bigint": "100" - }, - "timeAdvancement": { - "#bigint": "0" - }, - "validator": "node4" - } - ] - }, - { - "#meta": { - "index": 13 - }, - "currentState": { - "consumerStates": { - "#map": [ - [ - "consumer1", - { - "chainState": { - "currentValidatorSet": { - "#map": [ - [ - "node1", - { - "#bigint": "100" - } - ], - [ - "node10", - { - "#bigint": "100" - } - ], - [ - "node2", - { - "#bigint": "100" - } - ], - [ - "node3", - { - "#bigint": "100" - } - ], - [ - "node4", - { - "#bigint": "100" - } - ], - [ - "node5", - { - "#bigint": "100" - } - ], - [ - "node6", - { - "#bigint": "100" - } - ], - [ - "node7", - { - "#bigint": "100" - } - ], - [ - "node8", - { - "#bigint": "100" - } - ], - [ - "node9", - { - "#bigint": "100" - } - ] - ] - }, - "lastTimestamp": { - "#bigint": "0" - }, - "votingPowerHistory": [] - }, - "maturationTimes": { - "#map": [] - }, - "outstandingPacketsToProvider": [], - "receivedVscPackets": [] - } - ], - [ - "consumer2", - { - "chainState": { - "currentValidatorSet": { - "#map": [ - [ - "node1", - { - "#bigint": "50" - } - ], - [ - "node10", - { - "#bigint": "50" - } - ], - [ - "node2", - { - "#bigint": "100" - } - ], - [ - "node3", - { - "#bigint": "100" - } - ], - [ - "node4", - { - "#bigint": "50" - } - ], - [ - "node5", - { - "#bigint": "100" - } - ], - [ - "node6", - { - "#bigint": "100" - } - ], - [ - "node7", - { - "#bigint": "50" - } - ], - [ - "node8", - { - "#bigint": "100" - } - ], - [ - "node9", - { - "#bigint": "100" - } - ] - ] - }, - "lastTimestamp": { - "#bigint": "0" - }, - "votingPowerHistory": [] - }, - "maturationTimes": { - "#map": [] - }, - "outstandingPacketsToProvider": [], - "receivedVscPackets": [] - } - ], - [ - "consumer3", - { - "chainState": { - "currentValidatorSet": { - "#map": [ - [ - "node1", - { - "#bigint": "100" - } - ], - [ - "node10", - { - "#bigint": "100" - } - ], - [ - "node2", - { - "#bigint": "100" - } - ], - [ - "node3", - { - "#bigint": "100" - } - ], - [ - "node4", - { - "#bigint": "100" - } - ], - [ - "node5", - { - "#bigint": "100" - } - ], - [ - "node6", - { - "#bigint": "100" - } - ], - [ - "node7", - { - "#bigint": "100" - } - ], - [ - "node8", - { - "#bigint": "100" - } - ], - [ - "node9", - { - "#bigint": "100" - } - ] - ] - }, - "lastTimestamp": { - "#bigint": "2419200" - }, - "votingPowerHistory": [ - { - "#map": [ - [ - "node1", - { - "#bigint": "100" - } - ], - [ - "node10", - { - "#bigint": "100" - } - ], - [ - "node2", - { - "#bigint": "100" - } - ], - [ - "node3", - { - "#bigint": "100" - } - ], - [ - "node4", - { - "#bigint": "100" - } - ], - [ - "node5", - { - "#bigint": "100" - } - ], - [ - "node6", - { - "#bigint": "100" - } - ], - [ - "node7", - { - "#bigint": "100" - } - ], - [ - "node8", - { - "#bigint": "100" - } - ], - [ - "node9", - { - "#bigint": "100" - } - ] - ] - } - ] - }, - "maturationTimes": { - "#map": [] - }, - "outstandingPacketsToProvider": [], - "receivedVscPackets": [] - } - ] - ] - }, - "providerState": { - "chainState": { - "currentValidatorSet": { - "#map": [ - [ - "node1", - { - "#bigint": "50" - } - ], - [ - "node10", - { - "#bigint": "50" - } - ], - [ - "node2", - { - "#bigint": "50" - } - ], - [ - "node3", - { - "#bigint": "100" - } - ], - [ - "node4", - { - "#bigint": "100" - } - ], - [ - "node5", - { - "#bigint": "100" - } - ], - [ - "node6", - { - "#bigint": "100" - } - ], - [ - "node7", - { - "#bigint": "50" - } - ], - [ - "node8", - { - "#bigint": "100" - } - ], - [ - "node9", - { - "#bigint": "100" - } - ] - ] - }, - "lastTimestamp": { - "#bigint": "5529600" - }, - "votingPowerHistory": [ - { - "#map": [ - [ - "node1", - { - "#bigint": "50" - } - ], - [ - "node10", - { - "#bigint": "50" - } - ], - [ - "node2", - { - "#bigint": "50" - } - ], - [ - "node3", - { - "#bigint": "100" - } - ], - [ - "node4", - { - "#bigint": "100" - } - ], - [ - "node5", - { - "#bigint": "100" - } - ], - [ - "node6", - { - "#bigint": "100" - } - ], - [ - "node7", - { - "#bigint": "50" - } - ], - [ - "node8", - { - "#bigint": "100" - } - ], - [ - "node9", - { - "#bigint": "100" - } - ] - ] - }, - { - "#map": [ - [ - "node1", - { - "#bigint": "50" - } - ], - [ - "node10", - { - "#bigint": "50" - } - ], - [ - "node2", - { - "#bigint": "100" - } - ], - [ - "node3", - { - "#bigint": "100" - } - ], - [ - "node4", - { - "#bigint": "50" - } - ], - [ - "node5", - { - "#bigint": "100" - } - ], - [ - "node6", - { - "#bigint": "100" - } - ], - [ - "node7", - { - "#bigint": "50" - } - ], - [ - "node8", - { - "#bigint": "100" - } - ], - [ - "node9", - { - "#bigint": "100" - } - ] - ] - }, - { - "#map": [ - [ - "node1", - { - "#bigint": "50" - } - ], - [ - "node10", - { - "#bigint": "100" - } - ], - [ - "node2", - { - "#bigint": "100" - } - ], - [ - "node3", - { - "#bigint": "100" - } - ], - [ - "node4", - { - "#bigint": "50" - } - ], - [ - "node5", - { - "#bigint": "100" - } - ], - [ - "node6", - { - "#bigint": "100" - } - ], - [ - "node7", - { - "#bigint": "100" - } - ], - [ - "node8", - { - "#bigint": "100" - } - ], - [ - "node9", - { - "#bigint": "100" - } - ] - ] - }, - { - "#map": [ - [ - "node1", - { - "#bigint": "100" - } - ], - [ - "node10", - { - "#bigint": "100" - } - ], - [ - "node2", - { - "#bigint": "100" - } - ], - [ - "node3", - { - "#bigint": "100" - } - ], - [ - "node4", - { - "#bigint": "100" - } - ], - [ - "node5", - { - "#bigint": "100" - } - ], - [ - "node6", - { - "#bigint": "100" - } - ], - [ - "node7", - { - "#bigint": "100" - } - ], - [ - "node8", - { - "#bigint": "100" - } - ], - [ - "node9", - { - "#bigint": "100" - } - ] - ] - }, - { - "#map": [ - [ - "node1", - { - "#bigint": "100" - } - ], - [ - "node10", - { - "#bigint": "100" - } - ], - [ - "node2", - { - "#bigint": "100" - } - ], - [ - "node3", - { - "#bigint": "100" - } - ], - [ - "node4", - { - "#bigint": "100" - } - ], - [ - "node5", - { - "#bigint": "100" - } - ], - [ - "node6", - { - "#bigint": "100" - } - ], - [ - "node7", - { - "#bigint": "100" - } - ], - [ - "node8", - { - "#bigint": "100" - } - ], - [ - "node9", - { - "#bigint": "100" - } - ] - ] - } - ] - }, - "consumerStatus": { - "#map": [ - [ - "consumer1", - "stopped" - ], - [ - "consumer2", - "stopped" - ], - [ - "consumer3", - "stopped" - ] - ] - }, - "outstandingPacketsToConsumer": { - "#map": [ - [ - "consumer1", - [] - ], - [ - "consumer2", - [ - { - "id": { - "#bigint": "0" - }, - "sendingTime": { - "#bigint": "4924800" - }, - "validatorSet": { - "#map": [ - [ - "node1", - { - "#bigint": "50" - } - ], - [ - "node10", - { - "#bigint": "50" - } - ], - [ - "node2", - { - "#bigint": "100" - } - ], - [ - "node3", - { - "#bigint": "100" - } - ], - [ - "node4", - { - "#bigint": "50" - } - ], - [ - "node5", - { - "#bigint": "100" - } - ], - [ - "node6", - { - "#bigint": "100" - } - ], - [ - "node7", - { - "#bigint": "50" - } - ], - [ - "node8", - { - "#bigint": "100" - } - ], - [ - "node9", - { - "#bigint": "100" - } - ] - ] - } - } - ] - ], - [ - "consumer3", - [] - ] - ] - }, - "providerValidatorSetChangedInThisBlock": true, - "receivedMaturations": { - "#set": [] - }, - "runningVscId": { - "#bigint": "1" - }, - "sentVscPacketsToConsumer": { - "#map": [ - [ - "consumer1", - [] - ], - [ - "consumer2", - [ - { - "id": { - "#bigint": "0" - }, - "sendingTime": { - "#bigint": "4924800" - }, - "validatorSet": { - "#map": [ - [ - "node1", - { - "#bigint": "50" - } - ], - [ - "node10", - { - "#bigint": "50" - } - ], - [ - "node2", - { - "#bigint": "100" - } - ], - [ - "node3", - { - "#bigint": "100" - } - ], - [ - "node4", - { - "#bigint": "50" - } - ], - [ - "node5", - { - "#bigint": "100" - } - ], - [ - "node6", - { - "#bigint": "100" - } - ], - [ - "node7", - { - "#bigint": "50" - } - ], - [ - "node8", - { - "#bigint": "100" - } - ], - [ - "node9", - { - "#bigint": "100" - } - ] - ] - } - } - ] - ], - [ - "consumer3", - [] - ] - ] - } - } - }, - "trace": [ - { - "consumerChain": "", - "consumersToStart": { - "#set": [] - }, - "consumersToStop": { - "#set": [] - }, - "kind": "init", - "newVotingPower": { - "#bigint": "0" - }, - "timeAdvancement": { - "#bigint": "0" - }, - "validator": "" - }, - { - "consumerChain": "", - "consumersToStart": { - "#set": [ - "consumer1", - "consumer3" - ] - }, - "consumersToStop": { - "#set": [] - }, - "kind": "EndAndBeginBlockForProvider", - "newVotingPower": { - "#bigint": "0" - }, - "timeAdvancement": { - "#bigint": "2419200" - }, - "validator": "" - }, - { - "consumerChain": "consumer3", - "consumersToStart": { - "#set": [] - }, - "consumersToStop": { - "#set": [] - }, - "kind": "EndAndBeginBlockForConsumer", - "newVotingPower": { - "#bigint": "0" - }, - "timeAdvancement": { - "#bigint": "2419200" - }, - "validator": "" - }, - { - "consumerChain": "", - "consumersToStart": { - "#set": [] - }, - "consumersToStop": { - "#set": [] - }, - "kind": "VotingPowerChange", - "newVotingPower": { - "#bigint": "100" - }, - "timeAdvancement": { - "#bigint": "0" - }, - "validator": "node1" - }, - { - "consumerChain": "", - "consumersToStart": { - "#set": [] - }, - "consumersToStop": { - "#set": [] - }, - "kind": "VotingPowerChange", - "newVotingPower": { - "#bigint": "50" - }, - "timeAdvancement": { - "#bigint": "0" - }, - "validator": "node1" - }, - { - "consumerChain": "", - "consumersToStart": { - "#set": [] - }, - "consumersToStop": { - "#set": [] - }, - "kind": "VotingPowerChange", - "newVotingPower": { - "#bigint": "50" - }, - "timeAdvancement": { - "#bigint": "0" - }, - "validator": "node4" - }, - { - "consumerChain": "", - "consumersToStart": { - "#set": [] - }, - "consumersToStop": { - "#set": [ - "consumer1", - "consumer3" - ] - }, - "kind": "EndAndBeginBlockForProvider", - "newVotingPower": { - "#bigint": "0" - }, - "timeAdvancement": { - "#bigint": "2419200" - }, - "validator": "" - }, - { - "consumerChain": "", - "consumersToStart": { - "#set": [] - }, - "consumersToStop": { - "#set": [] - }, - "kind": "VotingPowerChange", - "newVotingPower": { - "#bigint": "100" - }, - "timeAdvancement": { - "#bigint": "0" - }, - "validator": "node10" - }, - { - "consumerChain": "", - "consumersToStart": { - "#set": [] - }, - "consumersToStop": { - "#set": [] - }, - "kind": "VotingPowerChange", - "newVotingPower": { - "#bigint": "50" - }, - "timeAdvancement": { - "#bigint": "0" - }, - "validator": "node7" - }, - { - "consumerChain": "", - "consumersToStart": { - "#set": [] - }, - "consumersToStop": { - "#set": [] - }, - "kind": "VotingPowerChange", - "newVotingPower": { - "#bigint": "50" - }, - "timeAdvancement": { - "#bigint": "0" - }, - "validator": "node10" - }, - { - "consumerChain": "", - "consumersToStart": { - "#set": [ - "consumer2" - ] - }, - "consumersToStop": { - "#set": [] - }, - "kind": "EndAndBeginBlockForProvider", - "newVotingPower": { - "#bigint": "0" - }, - "timeAdvancement": { - "#bigint": "86400" - }, - "validator": "" - }, - { - "consumerChain": "", - "consumersToStart": { - "#set": [] - }, - "consumersToStop": { - "#set": [] - }, - "kind": "VotingPowerChange", - "newVotingPower": { - "#bigint": "50" - }, - "timeAdvancement": { - "#bigint": "0" - }, - "validator": "node2" - }, - { - "consumerChain": "", - "consumersToStart": { - "#set": [] - }, - "consumersToStop": { - "#set": [] - }, - "kind": "VotingPowerChange", - "newVotingPower": { - "#bigint": "100" - }, - "timeAdvancement": { - "#bigint": "0" - }, - "validator": "node4" - }, - { - "consumerChain": "", - "consumersToStart": { - "#set": [] - }, - "consumersToStop": { - "#set": [ - "consumer2" - ] - }, - "kind": "EndAndBeginBlockForProvider", - "newVotingPower": { - "#bigint": "0" - }, - "timeAdvancement": { - "#bigint": "604800" - }, - "validator": "" - } - ] - }, - { - "#meta": { - "index": 14 - }, - "currentState": { - "consumerStates": { - "#map": [ - [ - "consumer1", - { - "chainState": { - "currentValidatorSet": { - "#map": [ - [ - "node1", - { - "#bigint": "100" - } - ], - [ - "node10", - { - "#bigint": "100" - } - ], - [ - "node2", - { - "#bigint": "100" - } - ], - [ - "node3", - { - "#bigint": "100" - } - ], - [ - "node4", - { - "#bigint": "100" - } - ], - [ - "node5", - { - "#bigint": "100" - } - ], - [ - "node6", - { - "#bigint": "100" - } - ], - [ - "node7", - { - "#bigint": "100" - } - ], - [ - "node8", - { - "#bigint": "100" - } - ], - [ - "node9", - { - "#bigint": "100" - } - ] - ] - }, - "lastTimestamp": { - "#bigint": "0" - }, - "votingPowerHistory": [] - }, - "maturationTimes": { - "#map": [] - }, - "outstandingPacketsToProvider": [], - "receivedVscPackets": [] - } - ], - [ - "consumer2", - { - "chainState": { - "currentValidatorSet": { - "#map": [ - [ - "node1", - { - "#bigint": "50" - } - ], - [ - "node10", - { - "#bigint": "50" - } - ], - [ - "node2", - { - "#bigint": "100" - } - ], - [ - "node3", - { - "#bigint": "100" - } - ], - [ - "node4", - { - "#bigint": "50" - } - ], - [ - "node5", - { - "#bigint": "100" - } - ], - [ - "node6", - { - "#bigint": "100" - } - ], - [ - "node7", - { - "#bigint": "50" - } - ], - [ - "node8", - { - "#bigint": "100" - } - ], - [ - "node9", - { - "#bigint": "100" - } - ] - ] - }, - "lastTimestamp": { - "#bigint": "0" - }, - "votingPowerHistory": [] - }, - "maturationTimes": { - "#map": [] - }, - "outstandingPacketsToProvider": [], - "receivedVscPackets": [] - } - ], - [ - "consumer3", - { - "chainState": { - "currentValidatorSet": { - "#map": [ - [ - "node1", - { - "#bigint": "100" - } - ], - [ - "node10", - { - "#bigint": "100" - } - ], - [ - "node2", - { - "#bigint": "100" - } - ], - [ - "node3", - { - "#bigint": "100" - } - ], - [ - "node4", - { - "#bigint": "100" - } - ], - [ - "node5", - { - "#bigint": "100" - } - ], - [ - "node6", - { - "#bigint": "100" - } - ], - [ - "node7", - { - "#bigint": "100" - } - ], - [ - "node8", - { - "#bigint": "100" - } - ], - [ - "node9", - { - "#bigint": "100" - } - ] - ] - }, - "lastTimestamp": { - "#bigint": "2419200" - }, - "votingPowerHistory": [ - { - "#map": [ - [ - "node1", - { - "#bigint": "100" - } - ], - [ - "node10", - { - "#bigint": "100" - } - ], - [ - "node2", - { - "#bigint": "100" - } - ], - [ - "node3", - { - "#bigint": "100" - } - ], - [ - "node4", - { - "#bigint": "100" - } - ], - [ - "node5", - { - "#bigint": "100" - } - ], - [ - "node6", - { - "#bigint": "100" - } - ], - [ - "node7", - { - "#bigint": "100" - } - ], - [ - "node8", - { - "#bigint": "100" - } - ], - [ - "node9", - { - "#bigint": "100" - } - ] - ] - } - ] - }, - "maturationTimes": { - "#map": [] - }, - "outstandingPacketsToProvider": [], - "receivedVscPackets": [] - } - ] - ] - }, - "providerState": { - "chainState": { - "currentValidatorSet": { - "#map": [ - [ - "node1", - { - "#bigint": "50" - } - ], - [ - "node10", - { - "#bigint": "50" - } - ], - [ - "node2", - { - "#bigint": "50" - } - ], - [ - "node3", - { - "#bigint": "100" - } - ], - [ - "node4", - { - "#bigint": "100" - } - ], - [ - "node5", - { - "#bigint": "100" - } - ], - [ - "node6", - { - "#bigint": "100" - } - ], - [ - "node7", - { - "#bigint": "50" - } - ], - [ - "node8", - { - "#bigint": "100" - } - ], - [ - "node9", - { - "#bigint": "100" - } - ] - ] - }, - "lastTimestamp": { - "#bigint": "6134400" - }, - "votingPowerHistory": [ - { - "#map": [ - [ - "node1", - { - "#bigint": "50" - } - ], - [ - "node10", - { - "#bigint": "50" - } - ], - [ - "node2", - { - "#bigint": "50" - } - ], - [ - "node3", - { - "#bigint": "100" - } - ], - [ - "node4", - { - "#bigint": "100" - } - ], - [ - "node5", - { - "#bigint": "100" - } - ], - [ - "node6", - { - "#bigint": "100" - } - ], - [ - "node7", - { - "#bigint": "50" - } - ], - [ - "node8", - { - "#bigint": "100" - } - ], - [ - "node9", - { - "#bigint": "100" - } - ] - ] - }, - { - "#map": [ - [ - "node1", - { - "#bigint": "50" - } - ], - [ - "node10", - { - "#bigint": "50" - } - ], - [ - "node2", - { - "#bigint": "50" - } - ], - [ - "node3", - { - "#bigint": "100" - } - ], - [ - "node4", - { - "#bigint": "100" - } - ], - [ - "node5", - { - "#bigint": "100" - } - ], - [ - "node6", - { - "#bigint": "100" - } - ], - [ - "node7", - { - "#bigint": "50" - } - ], - [ - "node8", - { - "#bigint": "100" - } - ], - [ - "node9", - { - "#bigint": "100" - } - ] - ] - }, - { - "#map": [ - [ - "node1", - { - "#bigint": "50" - } - ], - [ - "node10", - { - "#bigint": "50" - } - ], - [ - "node2", - { - "#bigint": "100" - } - ], - [ - "node3", - { - "#bigint": "100" - } - ], - [ - "node4", - { - "#bigint": "50" - } - ], - [ - "node5", - { - "#bigint": "100" - } - ], - [ - "node6", - { - "#bigint": "100" - } - ], - [ - "node7", - { - "#bigint": "50" - } - ], - [ - "node8", - { - "#bigint": "100" - } - ], - [ - "node9", - { - "#bigint": "100" - } - ] - ] - }, - { - "#map": [ - [ - "node1", - { - "#bigint": "50" - } - ], - [ - "node10", - { - "#bigint": "100" - } - ], - [ - "node2", - { - "#bigint": "100" - } - ], - [ - "node3", - { - "#bigint": "100" - } - ], - [ - "node4", - { - "#bigint": "50" - } - ], - [ - "node5", - { - "#bigint": "100" - } - ], - [ - "node6", - { - "#bigint": "100" - } - ], - [ - "node7", - { - "#bigint": "100" - } - ], - [ - "node8", - { - "#bigint": "100" - } - ], - [ - "node9", - { - "#bigint": "100" - } - ] - ] - }, - { - "#map": [ - [ - "node1", - { - "#bigint": "100" - } - ], - [ - "node10", - { - "#bigint": "100" - } - ], - [ - "node2", - { - "#bigint": "100" - } - ], - [ - "node3", - { - "#bigint": "100" - } - ], - [ - "node4", - { - "#bigint": "100" - } - ], - [ - "node5", - { - "#bigint": "100" - } - ], - [ - "node6", - { - "#bigint": "100" - } - ], - [ - "node7", - { - "#bigint": "100" - } - ], - [ - "node8", - { - "#bigint": "100" - } - ], - [ - "node9", - { - "#bigint": "100" - } - ] - ] - }, - { - "#map": [ - [ - "node1", - { - "#bigint": "100" - } - ], - [ - "node10", - { - "#bigint": "100" - } - ], - [ - "node2", - { - "#bigint": "100" - } - ], - [ - "node3", - { - "#bigint": "100" - } - ], - [ - "node4", - { - "#bigint": "100" - } - ], - [ - "node5", - { - "#bigint": "100" - } - ], - [ - "node6", - { - "#bigint": "100" - } - ], - [ - "node7", - { - "#bigint": "100" - } - ], - [ - "node8", - { - "#bigint": "100" - } - ], - [ - "node9", - { - "#bigint": "100" - } - ] - ] - } - ] - }, - "consumerStatus": { - "#map": [ - [ - "consumer1", - "stopped" - ], - [ - "consumer2", - "stopped" - ], - [ - "consumer3", - "stopped" - ] - ] - }, - "outstandingPacketsToConsumer": { - "#map": [ - [ - "consumer1", - [] - ], - [ - "consumer2", - [ - { - "id": { - "#bigint": "0" - }, - "sendingTime": { - "#bigint": "4924800" - }, - "validatorSet": { - "#map": [ - [ - "node1", - { - "#bigint": "50" - } - ], - [ - "node10", - { - "#bigint": "50" - } - ], - [ - "node2", - { - "#bigint": "100" - } - ], - [ - "node3", - { - "#bigint": "100" - } - ], - [ - "node4", - { - "#bigint": "50" - } - ], - [ - "node5", - { - "#bigint": "100" - } - ], - [ - "node6", - { - "#bigint": "100" - } - ], - [ - "node7", - { - "#bigint": "50" - } - ], - [ - "node8", - { - "#bigint": "100" - } - ], - [ - "node9", - { - "#bigint": "100" - } - ] - ] - } - } - ] - ], - [ - "consumer3", - [] - ] - ] - }, - "providerValidatorSetChangedInThisBlock": true, - "receivedMaturations": { - "#set": [] - }, - "runningVscId": { - "#bigint": "1" - }, - "sentVscPacketsToConsumer": { - "#map": [ - [ - "consumer1", - [] - ], - [ - "consumer2", - [ - { - "id": { - "#bigint": "0" - }, - "sendingTime": { - "#bigint": "4924800" - }, - "validatorSet": { - "#map": [ - [ - "node1", - { - "#bigint": "50" - } - ], - [ - "node10", - { - "#bigint": "50" - } - ], - [ - "node2", - { - "#bigint": "100" - } - ], - [ - "node3", - { - "#bigint": "100" - } - ], - [ - "node4", - { - "#bigint": "50" - } - ], - [ - "node5", - { - "#bigint": "100" - } - ], - [ - "node6", - { - "#bigint": "100" - } - ], - [ - "node7", - { - "#bigint": "50" - } - ], - [ - "node8", - { - "#bigint": "100" - } - ], - [ - "node9", - { - "#bigint": "100" - } - ] - ] - } - } - ] - ], - [ - "consumer3", - [] - ] - ] - } - } - }, - "trace": [ - { - "consumerChain": "", - "consumersToStart": { - "#set": [] - }, - "consumersToStop": { - "#set": [] - }, - "kind": "init", - "newVotingPower": { - "#bigint": "0" - }, - "timeAdvancement": { - "#bigint": "0" - }, - "validator": "" - }, - { - "consumerChain": "", - "consumersToStart": { - "#set": [ - "consumer1", - "consumer3" - ] - }, - "consumersToStop": { - "#set": [] - }, - "kind": "EndAndBeginBlockForProvider", - "newVotingPower": { - "#bigint": "0" - }, - "timeAdvancement": { - "#bigint": "2419200" - }, - "validator": "" - }, - { - "consumerChain": "consumer3", - "consumersToStart": { - "#set": [] - }, - "consumersToStop": { - "#set": [] - }, - "kind": "EndAndBeginBlockForConsumer", - "newVotingPower": { - "#bigint": "0" - }, - "timeAdvancement": { - "#bigint": "2419200" - }, - "validator": "" - }, - { - "consumerChain": "", - "consumersToStart": { - "#set": [] - }, - "consumersToStop": { - "#set": [] - }, - "kind": "VotingPowerChange", - "newVotingPower": { - "#bigint": "100" - }, - "timeAdvancement": { - "#bigint": "0" - }, - "validator": "node1" - }, - { - "consumerChain": "", - "consumersToStart": { - "#set": [] - }, - "consumersToStop": { - "#set": [] - }, - "kind": "VotingPowerChange", - "newVotingPower": { - "#bigint": "50" - }, - "timeAdvancement": { - "#bigint": "0" - }, - "validator": "node1" - }, - { - "consumerChain": "", - "consumersToStart": { - "#set": [] - }, - "consumersToStop": { - "#set": [] - }, - "kind": "VotingPowerChange", - "newVotingPower": { - "#bigint": "50" - }, - "timeAdvancement": { - "#bigint": "0" - }, - "validator": "node4" - }, - { - "consumerChain": "", - "consumersToStart": { - "#set": [] - }, - "consumersToStop": { - "#set": [ - "consumer1", - "consumer3" - ] - }, - "kind": "EndAndBeginBlockForProvider", - "newVotingPower": { - "#bigint": "0" - }, - "timeAdvancement": { - "#bigint": "2419200" - }, - "validator": "" - }, - { - "consumerChain": "", - "consumersToStart": { - "#set": [] - }, - "consumersToStop": { - "#set": [] - }, - "kind": "VotingPowerChange", - "newVotingPower": { - "#bigint": "100" - }, - "timeAdvancement": { - "#bigint": "0" - }, - "validator": "node10" - }, - { - "consumerChain": "", - "consumersToStart": { - "#set": [] - }, - "consumersToStop": { - "#set": [] - }, - "kind": "VotingPowerChange", - "newVotingPower": { - "#bigint": "50" - }, - "timeAdvancement": { - "#bigint": "0" - }, - "validator": "node7" - }, - { - "consumerChain": "", - "consumersToStart": { - "#set": [] - }, - "consumersToStop": { - "#set": [] - }, - "kind": "VotingPowerChange", - "newVotingPower": { - "#bigint": "50" - }, - "timeAdvancement": { - "#bigint": "0" - }, - "validator": "node10" - }, - { - "consumerChain": "", - "consumersToStart": { - "#set": [ - "consumer2" - ] - }, - "consumersToStop": { - "#set": [] - }, - "kind": "EndAndBeginBlockForProvider", - "newVotingPower": { - "#bigint": "0" - }, - "timeAdvancement": { - "#bigint": "86400" - }, - "validator": "" - }, - { - "consumerChain": "", - "consumersToStart": { - "#set": [] - }, - "consumersToStop": { - "#set": [] - }, - "kind": "VotingPowerChange", - "newVotingPower": { - "#bigint": "50" - }, - "timeAdvancement": { - "#bigint": "0" - }, - "validator": "node2" - }, - { - "consumerChain": "", - "consumersToStart": { - "#set": [] - }, - "consumersToStop": { - "#set": [] - }, - "kind": "VotingPowerChange", - "newVotingPower": { - "#bigint": "100" - }, - "timeAdvancement": { - "#bigint": "0" - }, - "validator": "node4" - }, - { - "consumerChain": "", - "consumersToStart": { - "#set": [] - }, - "consumersToStop": { - "#set": [ - "consumer2" - ] - }, - "kind": "EndAndBeginBlockForProvider", - "newVotingPower": { - "#bigint": "0" - }, - "timeAdvancement": { - "#bigint": "604800" - }, - "validator": "" - }, - { - "consumerChain": "", - "consumersToStart": { - "#set": [] - }, - "consumersToStop": { - "#set": [] - }, - "kind": "EndAndBeginBlockForProvider", - "newVotingPower": { - "#bigint": "0" - }, - "timeAdvancement": { - "#bigint": "604800" - }, - "validator": "" - } - ] - }, - { - "#meta": { - "index": 15 - }, - "currentState": { - "consumerStates": { - "#map": [ - [ - "consumer1", - { - "chainState": { - "currentValidatorSet": { - "#map": [ - [ - "node1", - { - "#bigint": "100" - } - ], - [ - "node10", - { - "#bigint": "100" - } - ], - [ - "node2", - { - "#bigint": "100" - } - ], - [ - "node3", - { - "#bigint": "100" - } - ], - [ - "node4", - { - "#bigint": "100" - } - ], - [ - "node5", - { - "#bigint": "100" - } - ], - [ - "node6", - { - "#bigint": "100" - } - ], - [ - "node7", - { - "#bigint": "100" - } - ], - [ - "node8", - { - "#bigint": "100" - } - ], - [ - "node9", - { - "#bigint": "100" - } - ] - ] - }, - "lastTimestamp": { - "#bigint": "0" - }, - "votingPowerHistory": [] - }, - "maturationTimes": { - "#map": [] - }, - "outstandingPacketsToProvider": [], - "receivedVscPackets": [] - } - ], - [ - "consumer2", - { - "chainState": { - "currentValidatorSet": { - "#map": [ - [ - "node1", - { - "#bigint": "50" - } - ], - [ - "node10", - { - "#bigint": "50" - } - ], - [ - "node2", - { - "#bigint": "100" - } - ], - [ - "node3", - { - "#bigint": "100" - } - ], - [ - "node4", - { - "#bigint": "50" - } - ], - [ - "node5", - { - "#bigint": "100" - } - ], - [ - "node6", - { - "#bigint": "100" - } - ], - [ - "node7", - { - "#bigint": "50" - } - ], - [ - "node8", - { - "#bigint": "100" - } - ], - [ - "node9", - { - "#bigint": "100" - } - ] - ] - }, - "lastTimestamp": { - "#bigint": "0" - }, - "votingPowerHistory": [] - }, - "maturationTimes": { - "#map": [] - }, - "outstandingPacketsToProvider": [], - "receivedVscPackets": [] - } - ], - [ - "consumer3", - { - "chainState": { - "currentValidatorSet": { - "#map": [ - [ - "node1", - { - "#bigint": "100" - } - ], - [ - "node10", - { - "#bigint": "100" - } - ], - [ - "node2", - { - "#bigint": "100" - } - ], - [ - "node3", - { - "#bigint": "100" - } - ], - [ - "node4", - { - "#bigint": "100" - } - ], - [ - "node5", - { - "#bigint": "100" - } - ], - [ - "node6", - { - "#bigint": "100" - } - ], - [ - "node7", - { - "#bigint": "100" - } - ], - [ - "node8", - { - "#bigint": "100" - } - ], - [ - "node9", - { - "#bigint": "100" - } - ] - ] - }, - "lastTimestamp": { - "#bigint": "2419200" - }, - "votingPowerHistory": [ - { - "#map": [ - [ - "node1", - { - "#bigint": "100" - } - ], - [ - "node10", - { - "#bigint": "100" - } - ], - [ - "node2", - { - "#bigint": "100" - } - ], - [ - "node3", - { - "#bigint": "100" - } - ], - [ - "node4", - { - "#bigint": "100" - } - ], - [ - "node5", - { - "#bigint": "100" - } - ], - [ - "node6", - { - "#bigint": "100" - } - ], - [ - "node7", - { - "#bigint": "100" - } - ], - [ - "node8", - { - "#bigint": "100" - } - ], - [ - "node9", - { - "#bigint": "100" - } - ] - ] - } - ] - }, - "maturationTimes": { - "#map": [] - }, - "outstandingPacketsToProvider": [], - "receivedVscPackets": [] - } - ] - ] - }, - "providerState": { - "chainState": { - "currentValidatorSet": { - "#map": [ - [ - "node1", - { - "#bigint": "50" - } - ], - [ - "node10", - { - "#bigint": "50" - } - ], - [ - "node2", - { - "#bigint": "0" - } - ], - [ - "node3", - { - "#bigint": "100" - } - ], - [ - "node4", - { - "#bigint": "100" - } - ], - [ - "node5", - { - "#bigint": "100" - } - ], - [ - "node6", - { - "#bigint": "100" - } - ], - [ - "node7", - { - "#bigint": "50" - } - ], - [ - "node8", - { - "#bigint": "100" - } - ], - [ - "node9", - { - "#bigint": "100" - } - ] - ] - }, - "lastTimestamp": { - "#bigint": "6134400" - }, - "votingPowerHistory": [ - { - "#map": [ - [ - "node1", - { - "#bigint": "50" - } - ], - [ - "node10", - { - "#bigint": "50" - } - ], - [ - "node2", - { - "#bigint": "50" - } - ], - [ - "node3", - { - "#bigint": "100" - } - ], - [ - "node4", - { - "#bigint": "100" - } - ], - [ - "node5", - { - "#bigint": "100" - } - ], - [ - "node6", - { - "#bigint": "100" - } - ], - [ - "node7", - { - "#bigint": "50" - } - ], - [ - "node8", - { - "#bigint": "100" - } - ], - [ - "node9", - { - "#bigint": "100" - } - ] - ] - }, - { - "#map": [ - [ - "node1", - { - "#bigint": "50" - } - ], - [ - "node10", - { - "#bigint": "50" - } - ], - [ - "node2", - { - "#bigint": "50" - } - ], - [ - "node3", - { - "#bigint": "100" - } - ], - [ - "node4", - { - "#bigint": "100" - } - ], - [ - "node5", - { - "#bigint": "100" - } - ], - [ - "node6", - { - "#bigint": "100" - } - ], - [ - "node7", - { - "#bigint": "50" - } - ], - [ - "node8", - { - "#bigint": "100" - } - ], - [ - "node9", - { - "#bigint": "100" - } - ] - ] - }, - { - "#map": [ - [ - "node1", - { - "#bigint": "50" - } - ], - [ - "node10", - { - "#bigint": "50" - } - ], - [ - "node2", - { - "#bigint": "100" - } - ], - [ - "node3", - { - "#bigint": "100" - } - ], - [ - "node4", - { - "#bigint": "50" - } - ], - [ - "node5", - { - "#bigint": "100" - } - ], - [ - "node6", - { - "#bigint": "100" - } - ], - [ - "node7", - { - "#bigint": "50" - } - ], - [ - "node8", - { - "#bigint": "100" - } - ], - [ - "node9", - { - "#bigint": "100" - } - ] - ] - }, - { - "#map": [ - [ - "node1", - { - "#bigint": "50" - } - ], - [ - "node10", - { - "#bigint": "100" - } - ], - [ - "node2", - { - "#bigint": "100" - } - ], - [ - "node3", - { - "#bigint": "100" - } - ], - [ - "node4", - { - "#bigint": "50" - } - ], - [ - "node5", - { - "#bigint": "100" - } - ], - [ - "node6", - { - "#bigint": "100" - } - ], - [ - "node7", - { - "#bigint": "100" - } - ], - [ - "node8", - { - "#bigint": "100" - } - ], - [ - "node9", - { - "#bigint": "100" - } - ] - ] - }, - { - "#map": [ - [ - "node1", - { - "#bigint": "100" - } - ], - [ - "node10", - { - "#bigint": "100" - } - ], - [ - "node2", - { - "#bigint": "100" - } - ], - [ - "node3", - { - "#bigint": "100" - } - ], - [ - "node4", - { - "#bigint": "100" - } - ], - [ - "node5", - { - "#bigint": "100" - } - ], - [ - "node6", - { - "#bigint": "100" - } - ], - [ - "node7", - { - "#bigint": "100" - } - ], - [ - "node8", - { - "#bigint": "100" - } - ], - [ - "node9", - { - "#bigint": "100" - } - ] - ] - }, - { - "#map": [ - [ - "node1", - { - "#bigint": "100" - } - ], - [ - "node10", - { - "#bigint": "100" - } - ], - [ - "node2", - { - "#bigint": "100" - } - ], - [ - "node3", - { - "#bigint": "100" - } - ], - [ - "node4", - { - "#bigint": "100" - } - ], - [ - "node5", - { - "#bigint": "100" - } - ], - [ - "node6", - { - "#bigint": "100" - } - ], - [ - "node7", - { - "#bigint": "100" - } - ], - [ - "node8", - { - "#bigint": "100" - } - ], - [ - "node9", - { - "#bigint": "100" - } - ] - ] - } - ] - }, - "consumerStatus": { - "#map": [ - [ - "consumer1", - "stopped" - ], - [ - "consumer2", - "stopped" - ], - [ - "consumer3", - "stopped" - ] - ] - }, - "outstandingPacketsToConsumer": { - "#map": [ - [ - "consumer1", - [] - ], - [ - "consumer2", - [ - { - "id": { - "#bigint": "0" - }, - "sendingTime": { - "#bigint": "4924800" - }, - "validatorSet": { - "#map": [ - [ - "node1", - { - "#bigint": "50" - } - ], - [ - "node10", - { - "#bigint": "50" - } - ], - [ - "node2", - { - "#bigint": "100" - } - ], - [ - "node3", - { - "#bigint": "100" - } - ], - [ - "node4", - { - "#bigint": "50" - } - ], - [ - "node5", - { - "#bigint": "100" - } - ], - [ - "node6", - { - "#bigint": "100" - } - ], - [ - "node7", - { - "#bigint": "50" - } - ], - [ - "node8", - { - "#bigint": "100" - } - ], - [ - "node9", - { - "#bigint": "100" - } - ] - ] - } - } - ] - ], - [ - "consumer3", - [] - ] - ] - }, - "providerValidatorSetChangedInThisBlock": true, - "receivedMaturations": { - "#set": [] - }, - "runningVscId": { - "#bigint": "1" - }, - "sentVscPacketsToConsumer": { - "#map": [ - [ - "consumer1", - [] - ], - [ - "consumer2", - [ - { - "id": { - "#bigint": "0" - }, - "sendingTime": { - "#bigint": "4924800" - }, - "validatorSet": { - "#map": [ - [ - "node1", - { - "#bigint": "50" - } - ], - [ - "node10", - { - "#bigint": "50" - } - ], - [ - "node2", - { - "#bigint": "100" - } - ], - [ - "node3", - { - "#bigint": "100" - } - ], - [ - "node4", - { - "#bigint": "50" - } - ], - [ - "node5", - { - "#bigint": "100" - } - ], - [ - "node6", - { - "#bigint": "100" - } - ], - [ - "node7", - { - "#bigint": "50" - } - ], - [ - "node8", - { - "#bigint": "100" - } - ], - [ - "node9", - { - "#bigint": "100" - } - ] - ] - } - } - ] - ], - [ - "consumer3", - [] - ] - ] - } - } - }, - "trace": [ - { - "consumerChain": "", - "consumersToStart": { - "#set": [] - }, - "consumersToStop": { - "#set": [] - }, - "kind": "init", - "newVotingPower": { - "#bigint": "0" - }, - "timeAdvancement": { - "#bigint": "0" - }, - "validator": "" - }, - { - "consumerChain": "", - "consumersToStart": { - "#set": [ - "consumer1", - "consumer3" - ] - }, - "consumersToStop": { - "#set": [] - }, - "kind": "EndAndBeginBlockForProvider", - "newVotingPower": { - "#bigint": "0" - }, - "timeAdvancement": { - "#bigint": "2419200" - }, - "validator": "" - }, - { - "consumerChain": "consumer3", - "consumersToStart": { - "#set": [] - }, - "consumersToStop": { - "#set": [] - }, - "kind": "EndAndBeginBlockForConsumer", - "newVotingPower": { - "#bigint": "0" - }, - "timeAdvancement": { - "#bigint": "2419200" - }, - "validator": "" - }, - { - "consumerChain": "", - "consumersToStart": { - "#set": [] - }, - "consumersToStop": { - "#set": [] - }, - "kind": "VotingPowerChange", - "newVotingPower": { - "#bigint": "100" - }, - "timeAdvancement": { - "#bigint": "0" - }, - "validator": "node1" - }, - { - "consumerChain": "", - "consumersToStart": { - "#set": [] - }, - "consumersToStop": { - "#set": [] - }, - "kind": "VotingPowerChange", - "newVotingPower": { - "#bigint": "50" - }, - "timeAdvancement": { - "#bigint": "0" - }, - "validator": "node1" - }, - { - "consumerChain": "", - "consumersToStart": { - "#set": [] - }, - "consumersToStop": { - "#set": [] - }, - "kind": "VotingPowerChange", - "newVotingPower": { - "#bigint": "50" - }, - "timeAdvancement": { - "#bigint": "0" - }, - "validator": "node4" - }, - { - "consumerChain": "", - "consumersToStart": { - "#set": [] - }, - "consumersToStop": { - "#set": [ - "consumer1", - "consumer3" - ] - }, - "kind": "EndAndBeginBlockForProvider", - "newVotingPower": { - "#bigint": "0" - }, - "timeAdvancement": { - "#bigint": "2419200" - }, - "validator": "" - }, - { - "consumerChain": "", - "consumersToStart": { - "#set": [] - }, - "consumersToStop": { - "#set": [] - }, - "kind": "VotingPowerChange", - "newVotingPower": { - "#bigint": "100" - }, - "timeAdvancement": { - "#bigint": "0" - }, - "validator": "node10" - }, - { - "consumerChain": "", - "consumersToStart": { - "#set": [] - }, - "consumersToStop": { - "#set": [] - }, - "kind": "VotingPowerChange", - "newVotingPower": { - "#bigint": "50" - }, - "timeAdvancement": { - "#bigint": "0" - }, - "validator": "node7" - }, - { - "consumerChain": "", - "consumersToStart": { - "#set": [] - }, - "consumersToStop": { - "#set": [] - }, - "kind": "VotingPowerChange", - "newVotingPower": { - "#bigint": "50" - }, - "timeAdvancement": { - "#bigint": "0" - }, - "validator": "node10" - }, - { - "consumerChain": "", - "consumersToStart": { - "#set": [ - "consumer2" - ] - }, - "consumersToStop": { - "#set": [] - }, - "kind": "EndAndBeginBlockForProvider", - "newVotingPower": { - "#bigint": "0" - }, - "timeAdvancement": { - "#bigint": "86400" - }, - "validator": "" - }, - { - "consumerChain": "", - "consumersToStart": { - "#set": [] - }, - "consumersToStop": { - "#set": [] - }, - "kind": "VotingPowerChange", - "newVotingPower": { - "#bigint": "50" - }, - "timeAdvancement": { - "#bigint": "0" - }, - "validator": "node2" - }, - { - "consumerChain": "", - "consumersToStart": { - "#set": [] - }, - "consumersToStop": { - "#set": [] - }, - "kind": "VotingPowerChange", - "newVotingPower": { - "#bigint": "100" - }, - "timeAdvancement": { - "#bigint": "0" - }, - "validator": "node4" - }, - { - "consumerChain": "", - "consumersToStart": { - "#set": [] - }, - "consumersToStop": { - "#set": [ - "consumer2" - ] - }, - "kind": "EndAndBeginBlockForProvider", - "newVotingPower": { - "#bigint": "0" - }, - "timeAdvancement": { - "#bigint": "604800" - }, - "validator": "" - }, - { - "consumerChain": "", - "consumersToStart": { - "#set": [] - }, - "consumersToStop": { - "#set": [] - }, - "kind": "EndAndBeginBlockForProvider", - "newVotingPower": { - "#bigint": "0" - }, - "timeAdvancement": { - "#bigint": "604800" - }, - "validator": "" - }, - { - "consumerChain": "", - "consumersToStart": { - "#set": [] - }, - "consumersToStop": { - "#set": [] - }, - "kind": "VotingPowerChange", - "newVotingPower": { - "#bigint": "0" - }, - "timeAdvancement": { - "#bigint": "0" - }, - "validator": "node2" - } - ] - }, - { - "#meta": { - "index": 16 - }, - "currentState": { - "consumerStates": { - "#map": [ - [ - "consumer1", - { - "chainState": { - "currentValidatorSet": { - "#map": [ - [ - "node1", - { - "#bigint": "100" - } - ], - [ - "node10", - { - "#bigint": "100" - } - ], - [ - "node2", - { - "#bigint": "100" - } - ], - [ - "node3", - { - "#bigint": "100" - } - ], - [ - "node4", - { - "#bigint": "100" - } - ], - [ - "node5", - { - "#bigint": "100" - } - ], - [ - "node6", - { - "#bigint": "100" - } - ], - [ - "node7", - { - "#bigint": "100" - } - ], - [ - "node8", - { - "#bigint": "100" - } - ], - [ - "node9", - { - "#bigint": "100" - } - ] - ] - }, - "lastTimestamp": { - "#bigint": "0" - }, - "votingPowerHistory": [] - }, - "maturationTimes": { - "#map": [] - }, - "outstandingPacketsToProvider": [], - "receivedVscPackets": [] - } - ], - [ - "consumer2", - { - "chainState": { - "currentValidatorSet": { - "#map": [ - [ - "node1", - { - "#bigint": "50" - } - ], - [ - "node10", - { - "#bigint": "50" - } - ], - [ - "node2", - { - "#bigint": "100" - } - ], - [ - "node3", - { - "#bigint": "100" - } - ], - [ - "node4", - { - "#bigint": "50" - } - ], - [ - "node5", - { - "#bigint": "100" - } - ], - [ - "node6", - { - "#bigint": "100" - } - ], - [ - "node7", - { - "#bigint": "50" - } - ], - [ - "node8", - { - "#bigint": "100" - } - ], - [ - "node9", - { - "#bigint": "100" - } - ] - ] - }, - "lastTimestamp": { - "#bigint": "0" - }, - "votingPowerHistory": [] - }, - "maturationTimes": { - "#map": [] - }, - "outstandingPacketsToProvider": [], - "receivedVscPackets": [] - } - ], - [ - "consumer3", - { - "chainState": { - "currentValidatorSet": { - "#map": [ - [ - "node1", - { - "#bigint": "100" - } - ], - [ - "node10", - { - "#bigint": "100" - } - ], - [ - "node2", - { - "#bigint": "100" - } - ], - [ - "node3", - { - "#bigint": "100" - } - ], - [ - "node4", - { - "#bigint": "100" - } - ], - [ - "node5", - { - "#bigint": "100" - } - ], - [ - "node6", - { - "#bigint": "100" - } - ], - [ - "node7", - { - "#bigint": "100" - } - ], - [ - "node8", - { - "#bigint": "100" - } - ], - [ - "node9", - { - "#bigint": "100" - } - ] - ] - }, - "lastTimestamp": { - "#bigint": "2419200" - }, - "votingPowerHistory": [ - { - "#map": [ - [ - "node1", - { - "#bigint": "100" - } - ], - [ - "node10", - { - "#bigint": "100" - } - ], - [ - "node2", - { - "#bigint": "100" - } - ], - [ - "node3", - { - "#bigint": "100" - } - ], - [ - "node4", - { - "#bigint": "100" - } - ], - [ - "node5", - { - "#bigint": "100" - } - ], - [ - "node6", - { - "#bigint": "100" - } - ], - [ - "node7", - { - "#bigint": "100" - } - ], - [ - "node8", - { - "#bigint": "100" - } - ], - [ - "node9", - { - "#bigint": "100" - } - ] - ] - } - ] - }, - "maturationTimes": { - "#map": [] - }, - "outstandingPacketsToProvider": [], - "receivedVscPackets": [] - } - ] - ] - }, - "providerState": { - "chainState": { - "currentValidatorSet": { - "#map": [ - [ - "node1", - { - "#bigint": "50" - } - ], - [ - "node10", - { - "#bigint": "50" - } - ], - [ - "node2", - { - "#bigint": "0" - } - ], - [ - "node3", - { - "#bigint": "100" - } - ], - [ - "node4", - { - "#bigint": "100" - } - ], - [ - "node5", - { - "#bigint": "100" - } - ], - [ - "node6", - { - "#bigint": "100" - } - ], - [ - "node7", - { - "#bigint": "50" - } - ], - [ - "node8", - { - "#bigint": "100" - } - ], - [ - "node9", - { - "#bigint": "100" - } - ] - ] - }, - "lastTimestamp": { - "#bigint": "6220800" - }, - "votingPowerHistory": [ - { - "#map": [ - [ - "node1", - { - "#bigint": "50" - } - ], - [ - "node10", - { - "#bigint": "50" - } - ], - [ - "node2", - { - "#bigint": "0" - } - ], - [ - "node3", - { - "#bigint": "100" - } - ], - [ - "node4", - { - "#bigint": "100" - } - ], - [ - "node5", - { - "#bigint": "100" - } - ], - [ - "node6", - { - "#bigint": "100" - } - ], - [ - "node7", - { - "#bigint": "50" - } - ], - [ - "node8", - { - "#bigint": "100" - } - ], - [ - "node9", - { - "#bigint": "100" - } - ] - ] - }, - { - "#map": [ - [ - "node1", - { - "#bigint": "50" - } - ], - [ - "node10", - { - "#bigint": "50" - } - ], - [ - "node2", - { - "#bigint": "50" - } - ], - [ - "node3", - { - "#bigint": "100" - } - ], - [ - "node4", - { - "#bigint": "100" - } - ], - [ - "node5", - { - "#bigint": "100" - } - ], - [ - "node6", - { - "#bigint": "100" - } - ], - [ - "node7", - { - "#bigint": "50" - } - ], - [ - "node8", - { - "#bigint": "100" - } - ], - [ - "node9", - { - "#bigint": "100" - } - ] - ] - }, - { - "#map": [ - [ - "node1", - { - "#bigint": "50" - } - ], - [ - "node10", - { - "#bigint": "50" - } - ], - [ - "node2", - { - "#bigint": "50" - } - ], - [ - "node3", - { - "#bigint": "100" - } - ], - [ - "node4", - { - "#bigint": "100" - } - ], - [ - "node5", - { - "#bigint": "100" - } - ], - [ - "node6", - { - "#bigint": "100" - } - ], - [ - "node7", - { - "#bigint": "50" - } - ], - [ - "node8", - { - "#bigint": "100" - } - ], - [ - "node9", - { - "#bigint": "100" - } - ] - ] - }, - { - "#map": [ - [ - "node1", - { - "#bigint": "50" - } - ], - [ - "node10", - { - "#bigint": "50" - } - ], - [ - "node2", - { - "#bigint": "100" - } - ], - [ - "node3", - { - "#bigint": "100" - } - ], - [ - "node4", - { - "#bigint": "50" - } - ], - [ - "node5", - { - "#bigint": "100" - } - ], - [ - "node6", - { - "#bigint": "100" - } - ], - [ - "node7", - { - "#bigint": "50" - } - ], - [ - "node8", - { - "#bigint": "100" - } - ], - [ - "node9", - { - "#bigint": "100" - } - ] - ] - }, - { - "#map": [ - [ - "node1", - { - "#bigint": "50" - } - ], - [ - "node10", - { - "#bigint": "100" - } - ], - [ - "node2", - { - "#bigint": "100" - } - ], - [ - "node3", - { - "#bigint": "100" - } - ], - [ - "node4", - { - "#bigint": "50" - } - ], - [ - "node5", - { - "#bigint": "100" - } - ], - [ - "node6", - { - "#bigint": "100" - } - ], - [ - "node7", - { - "#bigint": "100" - } - ], - [ - "node8", - { - "#bigint": "100" - } - ], - [ - "node9", - { - "#bigint": "100" - } - ] - ] - }, - { - "#map": [ - [ - "node1", - { - "#bigint": "100" - } - ], - [ - "node10", - { - "#bigint": "100" - } - ], - [ - "node2", - { - "#bigint": "100" - } - ], - [ - "node3", - { - "#bigint": "100" - } - ], - [ - "node4", - { - "#bigint": "100" - } - ], - [ - "node5", - { - "#bigint": "100" - } - ], - [ - "node6", - { - "#bigint": "100" - } - ], - [ - "node7", - { - "#bigint": "100" - } - ], - [ - "node8", - { - "#bigint": "100" - } - ], - [ - "node9", - { - "#bigint": "100" - } - ] - ] - }, - { - "#map": [ - [ - "node1", - { - "#bigint": "100" - } - ], - [ - "node10", - { - "#bigint": "100" - } - ], - [ - "node2", - { - "#bigint": "100" - } - ], - [ - "node3", - { - "#bigint": "100" - } - ], - [ - "node4", - { - "#bigint": "100" - } - ], - [ - "node5", - { - "#bigint": "100" - } - ], - [ - "node6", - { - "#bigint": "100" - } - ], - [ - "node7", - { - "#bigint": "100" - } - ], - [ - "node8", - { - "#bigint": "100" - } - ], - [ - "node9", - { - "#bigint": "100" - } - ] - ] - } - ] - }, - "consumerStatus": { - "#map": [ - [ - "consumer1", - "stopped" - ], - [ - "consumer2", - "stopped" - ], - [ - "consumer3", - "stopped" - ] - ] - }, - "outstandingPacketsToConsumer": { - "#map": [ - [ - "consumer1", - [] - ], - [ - "consumer2", - [ - { - "id": { - "#bigint": "0" - }, - "sendingTime": { - "#bigint": "4924800" - }, - "validatorSet": { - "#map": [ - [ - "node1", - { - "#bigint": "50" - } - ], - [ - "node10", - { - "#bigint": "50" - } - ], - [ - "node2", - { - "#bigint": "100" - } - ], - [ - "node3", - { - "#bigint": "100" - } - ], - [ - "node4", - { - "#bigint": "50" - } - ], - [ - "node5", - { - "#bigint": "100" - } - ], - [ - "node6", - { - "#bigint": "100" - } - ], - [ - "node7", - { - "#bigint": "50" - } - ], - [ - "node8", - { - "#bigint": "100" - } - ], - [ - "node9", - { - "#bigint": "100" - } - ] - ] - } - } - ] - ], - [ - "consumer3", - [] - ] - ] - }, - "providerValidatorSetChangedInThisBlock": true, - "receivedMaturations": { - "#set": [] - }, - "runningVscId": { - "#bigint": "1" - }, - "sentVscPacketsToConsumer": { - "#map": [ - [ - "consumer1", - [] - ], - [ - "consumer2", - [ - { - "id": { - "#bigint": "0" - }, - "sendingTime": { - "#bigint": "4924800" - }, - "validatorSet": { - "#map": [ - [ - "node1", - { - "#bigint": "50" - } - ], - [ - "node10", - { - "#bigint": "50" - } - ], - [ - "node2", - { - "#bigint": "100" - } - ], - [ - "node3", - { - "#bigint": "100" - } - ], - [ - "node4", - { - "#bigint": "50" - } - ], - [ - "node5", - { - "#bigint": "100" - } - ], - [ - "node6", - { - "#bigint": "100" - } - ], - [ - "node7", - { - "#bigint": "50" - } - ], - [ - "node8", - { - "#bigint": "100" - } - ], - [ - "node9", - { - "#bigint": "100" - } - ] - ] - } - } - ] - ], - [ - "consumer3", - [] - ] - ] - } - } - }, - "trace": [ - { - "consumerChain": "", - "consumersToStart": { - "#set": [] - }, - "consumersToStop": { - "#set": [] - }, - "kind": "init", - "newVotingPower": { - "#bigint": "0" - }, - "timeAdvancement": { - "#bigint": "0" - }, - "validator": "" - }, - { - "consumerChain": "", - "consumersToStart": { - "#set": [ - "consumer1", - "consumer3" - ] - }, - "consumersToStop": { - "#set": [] - }, - "kind": "EndAndBeginBlockForProvider", - "newVotingPower": { - "#bigint": "0" - }, - "timeAdvancement": { - "#bigint": "2419200" - }, - "validator": "" - }, - { - "consumerChain": "consumer3", - "consumersToStart": { - "#set": [] - }, - "consumersToStop": { - "#set": [] - }, - "kind": "EndAndBeginBlockForConsumer", - "newVotingPower": { - "#bigint": "0" - }, - "timeAdvancement": { - "#bigint": "2419200" - }, - "validator": "" - }, - { - "consumerChain": "", - "consumersToStart": { - "#set": [] - }, - "consumersToStop": { - "#set": [] - }, - "kind": "VotingPowerChange", - "newVotingPower": { - "#bigint": "100" - }, - "timeAdvancement": { - "#bigint": "0" - }, - "validator": "node1" - }, - { - "consumerChain": "", - "consumersToStart": { - "#set": [] - }, - "consumersToStop": { - "#set": [] - }, - "kind": "VotingPowerChange", - "newVotingPower": { - "#bigint": "50" - }, - "timeAdvancement": { - "#bigint": "0" - }, - "validator": "node1" - }, - { - "consumerChain": "", - "consumersToStart": { - "#set": [] - }, - "consumersToStop": { - "#set": [] - }, - "kind": "VotingPowerChange", - "newVotingPower": { - "#bigint": "50" - }, - "timeAdvancement": { - "#bigint": "0" - }, - "validator": "node4" - }, - { - "consumerChain": "", - "consumersToStart": { - "#set": [] - }, - "consumersToStop": { - "#set": [ - "consumer1", - "consumer3" - ] - }, - "kind": "EndAndBeginBlockForProvider", - "newVotingPower": { - "#bigint": "0" - }, - "timeAdvancement": { - "#bigint": "2419200" - }, - "validator": "" - }, - { - "consumerChain": "", - "consumersToStart": { - "#set": [] - }, - "consumersToStop": { - "#set": [] - }, - "kind": "VotingPowerChange", - "newVotingPower": { - "#bigint": "100" - }, - "timeAdvancement": { - "#bigint": "0" - }, - "validator": "node10" - }, - { - "consumerChain": "", - "consumersToStart": { - "#set": [] - }, - "consumersToStop": { - "#set": [] - }, - "kind": "VotingPowerChange", - "newVotingPower": { - "#bigint": "50" - }, - "timeAdvancement": { - "#bigint": "0" - }, - "validator": "node7" - }, - { - "consumerChain": "", - "consumersToStart": { - "#set": [] - }, - "consumersToStop": { - "#set": [] - }, - "kind": "VotingPowerChange", - "newVotingPower": { - "#bigint": "50" - }, - "timeAdvancement": { - "#bigint": "0" - }, - "validator": "node10" - }, - { - "consumerChain": "", - "consumersToStart": { - "#set": [ - "consumer2" - ] - }, - "consumersToStop": { - "#set": [] - }, - "kind": "EndAndBeginBlockForProvider", - "newVotingPower": { - "#bigint": "0" - }, - "timeAdvancement": { - "#bigint": "86400" - }, - "validator": "" - }, - { - "consumerChain": "", - "consumersToStart": { - "#set": [] - }, - "consumersToStop": { - "#set": [] - }, - "kind": "VotingPowerChange", - "newVotingPower": { - "#bigint": "50" - }, - "timeAdvancement": { - "#bigint": "0" - }, - "validator": "node2" - }, - { - "consumerChain": "", - "consumersToStart": { - "#set": [] - }, - "consumersToStop": { - "#set": [] - }, - "kind": "VotingPowerChange", - "newVotingPower": { - "#bigint": "100" - }, - "timeAdvancement": { - "#bigint": "0" - }, - "validator": "node4" - }, - { - "consumerChain": "", - "consumersToStart": { - "#set": [] - }, - "consumersToStop": { - "#set": [ - "consumer2" - ] - }, - "kind": "EndAndBeginBlockForProvider", - "newVotingPower": { - "#bigint": "0" - }, - "timeAdvancement": { - "#bigint": "604800" - }, - "validator": "" - }, - { - "consumerChain": "", - "consumersToStart": { - "#set": [] - }, - "consumersToStop": { - "#set": [] - }, - "kind": "EndAndBeginBlockForProvider", - "newVotingPower": { - "#bigint": "0" - }, - "timeAdvancement": { - "#bigint": "604800" - }, - "validator": "" - }, - { - "consumerChain": "", - "consumersToStart": { - "#set": [] - }, - "consumersToStop": { - "#set": [] - }, - "kind": "VotingPowerChange", - "newVotingPower": { - "#bigint": "0" - }, - "timeAdvancement": { - "#bigint": "0" - }, - "validator": "node2" - }, - { - "consumerChain": "", - "consumersToStart": { - "#set": [] - }, - "consumersToStop": { - "#set": [] - }, - "kind": "EndAndBeginBlockForProvider", - "newVotingPower": { - "#bigint": "0" - }, - "timeAdvancement": { - "#bigint": "86400" - }, - "validator": "" - } - ] - }, - { - "#meta": { - "index": 17 - }, - "currentState": { - "consumerStates": { - "#map": [ - [ - "consumer1", - { - "chainState": { - "currentValidatorSet": { - "#map": [ - [ - "node1", - { - "#bigint": "100" - } - ], - [ - "node10", - { - "#bigint": "100" - } - ], - [ - "node2", - { - "#bigint": "100" - } - ], - [ - "node3", - { - "#bigint": "100" - } - ], - [ - "node4", - { - "#bigint": "100" - } - ], - [ - "node5", - { - "#bigint": "100" - } - ], - [ - "node6", - { - "#bigint": "100" - } - ], - [ - "node7", - { - "#bigint": "100" - } - ], - [ - "node8", - { - "#bigint": "100" - } - ], - [ - "node9", - { - "#bigint": "100" - } - ] - ] - }, - "lastTimestamp": { - "#bigint": "0" - }, - "votingPowerHistory": [] - }, - "maturationTimes": { - "#map": [] - }, - "outstandingPacketsToProvider": [], - "receivedVscPackets": [] - } - ], - [ - "consumer2", - { - "chainState": { - "currentValidatorSet": { - "#map": [ - [ - "node1", - { - "#bigint": "50" - } - ], - [ - "node10", - { - "#bigint": "50" - } - ], - [ - "node2", - { - "#bigint": "100" - } - ], - [ - "node3", - { - "#bigint": "100" - } - ], - [ - "node4", - { - "#bigint": "50" - } - ], - [ - "node5", - { - "#bigint": "100" - } - ], - [ - "node6", - { - "#bigint": "100" - } - ], - [ - "node7", - { - "#bigint": "50" - } - ], - [ - "node8", - { - "#bigint": "100" - } - ], - [ - "node9", - { - "#bigint": "100" - } - ] - ] - }, - "lastTimestamp": { - "#bigint": "0" - }, - "votingPowerHistory": [] - }, - "maturationTimes": { - "#map": [] - }, - "outstandingPacketsToProvider": [], - "receivedVscPackets": [] - } - ], - [ - "consumer3", - { - "chainState": { - "currentValidatorSet": { - "#map": [ - [ - "node1", - { - "#bigint": "100" - } - ], - [ - "node10", - { - "#bigint": "100" - } - ], - [ - "node2", - { - "#bigint": "100" - } - ], - [ - "node3", - { - "#bigint": "100" - } - ], - [ - "node4", - { - "#bigint": "100" - } - ], - [ - "node5", - { - "#bigint": "100" - } - ], - [ - "node6", - { - "#bigint": "100" - } - ], - [ - "node7", - { - "#bigint": "100" - } - ], - [ - "node8", - { - "#bigint": "100" - } - ], - [ - "node9", - { - "#bigint": "100" - } - ] - ] - }, - "lastTimestamp": { - "#bigint": "2419200" - }, - "votingPowerHistory": [ - { - "#map": [ - [ - "node1", - { - "#bigint": "100" - } - ], - [ - "node10", - { - "#bigint": "100" - } - ], - [ - "node2", - { - "#bigint": "100" - } - ], - [ - "node3", - { - "#bigint": "100" - } - ], - [ - "node4", - { - "#bigint": "100" - } - ], - [ - "node5", - { - "#bigint": "100" - } - ], - [ - "node6", - { - "#bigint": "100" - } - ], - [ - "node7", - { - "#bigint": "100" - } - ], - [ - "node8", - { - "#bigint": "100" - } - ], - [ - "node9", - { - "#bigint": "100" - } - ] - ] - } - ] - }, - "maturationTimes": { - "#map": [] - }, - "outstandingPacketsToProvider": [], - "receivedVscPackets": [] - } - ] - ] - }, - "providerState": { - "chainState": { - "currentValidatorSet": { - "#map": [ - [ - "node1", - { - "#bigint": "50" - } - ], - [ - "node10", - { - "#bigint": "100" - } - ], - [ - "node2", - { - "#bigint": "0" - } - ], - [ - "node3", - { - "#bigint": "100" - } - ], - [ - "node4", - { - "#bigint": "100" - } - ], - [ - "node5", - { - "#bigint": "100" - } - ], - [ - "node6", - { - "#bigint": "100" - } - ], - [ - "node7", - { - "#bigint": "50" - } - ], - [ - "node8", - { - "#bigint": "100" - } - ], - [ - "node9", - { - "#bigint": "100" - } - ] - ] - }, - "lastTimestamp": { - "#bigint": "6220800" - }, - "votingPowerHistory": [ - { - "#map": [ - [ - "node1", - { - "#bigint": "50" - } - ], - [ - "node10", - { - "#bigint": "50" - } - ], - [ - "node2", - { - "#bigint": "0" - } - ], - [ - "node3", - { - "#bigint": "100" - } - ], - [ - "node4", - { - "#bigint": "100" - } - ], - [ - "node5", - { - "#bigint": "100" - } - ], - [ - "node6", - { - "#bigint": "100" - } - ], - [ - "node7", - { - "#bigint": "50" - } - ], - [ - "node8", - { - "#bigint": "100" - } - ], - [ - "node9", - { - "#bigint": "100" - } - ] - ] - }, - { - "#map": [ - [ - "node1", - { - "#bigint": "50" - } - ], - [ - "node10", - { - "#bigint": "50" - } - ], - [ - "node2", - { - "#bigint": "50" - } - ], - [ - "node3", - { - "#bigint": "100" - } - ], - [ - "node4", - { - "#bigint": "100" - } - ], - [ - "node5", - { - "#bigint": "100" - } - ], - [ - "node6", - { - "#bigint": "100" - } - ], - [ - "node7", - { - "#bigint": "50" - } - ], - [ - "node8", - { - "#bigint": "100" - } - ], - [ - "node9", - { - "#bigint": "100" - } - ] - ] - }, - { - "#map": [ - [ - "node1", - { - "#bigint": "50" - } - ], - [ - "node10", - { - "#bigint": "50" - } - ], - [ - "node2", - { - "#bigint": "50" - } - ], - [ - "node3", - { - "#bigint": "100" - } - ], - [ - "node4", - { - "#bigint": "100" - } - ], - [ - "node5", - { - "#bigint": "100" - } - ], - [ - "node6", - { - "#bigint": "100" - } - ], - [ - "node7", - { - "#bigint": "50" - } - ], - [ - "node8", - { - "#bigint": "100" - } - ], - [ - "node9", - { - "#bigint": "100" - } - ] - ] - }, - { - "#map": [ - [ - "node1", - { - "#bigint": "50" - } - ], - [ - "node10", - { - "#bigint": "50" - } - ], - [ - "node2", - { - "#bigint": "100" - } - ], - [ - "node3", - { - "#bigint": "100" - } - ], - [ - "node4", - { - "#bigint": "50" - } - ], - [ - "node5", - { - "#bigint": "100" - } - ], - [ - "node6", - { - "#bigint": "100" - } - ], - [ - "node7", - { - "#bigint": "50" - } - ], - [ - "node8", - { - "#bigint": "100" - } - ], - [ - "node9", - { - "#bigint": "100" - } - ] - ] - }, - { - "#map": [ - [ - "node1", - { - "#bigint": "50" - } - ], - [ - "node10", - { - "#bigint": "100" - } - ], - [ - "node2", - { - "#bigint": "100" - } - ], - [ - "node3", - { - "#bigint": "100" - } - ], - [ - "node4", - { - "#bigint": "50" - } - ], - [ - "node5", - { - "#bigint": "100" - } - ], - [ - "node6", - { - "#bigint": "100" - } - ], - [ - "node7", - { - "#bigint": "100" - } - ], - [ - "node8", - { - "#bigint": "100" - } - ], - [ - "node9", - { - "#bigint": "100" - } - ] - ] - }, - { - "#map": [ - [ - "node1", - { - "#bigint": "100" - } - ], - [ - "node10", - { - "#bigint": "100" - } - ], - [ - "node2", - { - "#bigint": "100" - } - ], - [ - "node3", - { - "#bigint": "100" - } - ], - [ - "node4", - { - "#bigint": "100" - } - ], - [ - "node5", - { - "#bigint": "100" - } - ], - [ - "node6", - { - "#bigint": "100" - } - ], - [ - "node7", - { - "#bigint": "100" - } - ], - [ - "node8", - { - "#bigint": "100" - } - ], - [ - "node9", - { - "#bigint": "100" - } - ] - ] - }, - { - "#map": [ - [ - "node1", - { - "#bigint": "100" - } - ], - [ - "node10", - { - "#bigint": "100" - } - ], - [ - "node2", - { - "#bigint": "100" - } - ], - [ - "node3", - { - "#bigint": "100" - } - ], - [ - "node4", - { - "#bigint": "100" - } - ], - [ - "node5", - { - "#bigint": "100" - } - ], - [ - "node6", - { - "#bigint": "100" - } - ], - [ - "node7", - { - "#bigint": "100" - } - ], - [ - "node8", - { - "#bigint": "100" - } - ], - [ - "node9", - { - "#bigint": "100" - } - ] - ] - } - ] - }, - "consumerStatus": { - "#map": [ - [ - "consumer1", - "stopped" - ], - [ - "consumer2", - "stopped" - ], - [ - "consumer3", - "stopped" - ] - ] - }, - "outstandingPacketsToConsumer": { - "#map": [ - [ - "consumer1", - [] - ], - [ - "consumer2", - [ - { - "id": { - "#bigint": "0" - }, - "sendingTime": { - "#bigint": "4924800" - }, - "validatorSet": { - "#map": [ - [ - "node1", - { - "#bigint": "50" - } - ], - [ - "node10", - { - "#bigint": "50" - } - ], - [ - "node2", - { - "#bigint": "100" - } - ], - [ - "node3", - { - "#bigint": "100" - } - ], - [ - "node4", - { - "#bigint": "50" - } - ], - [ - "node5", - { - "#bigint": "100" - } - ], - [ - "node6", - { - "#bigint": "100" - } - ], - [ - "node7", - { - "#bigint": "50" - } - ], - [ - "node8", - { - "#bigint": "100" - } - ], - [ - "node9", - { - "#bigint": "100" - } - ] - ] - } - } - ] - ], - [ - "consumer3", - [] - ] - ] - }, - "providerValidatorSetChangedInThisBlock": true, - "receivedMaturations": { - "#set": [] - }, - "runningVscId": { - "#bigint": "1" - }, - "sentVscPacketsToConsumer": { - "#map": [ - [ - "consumer1", - [] - ], - [ - "consumer2", - [ - { - "id": { - "#bigint": "0" - }, - "sendingTime": { - "#bigint": "4924800" - }, - "validatorSet": { - "#map": [ - [ - "node1", - { - "#bigint": "50" - } - ], - [ - "node10", - { - "#bigint": "50" - } - ], - [ - "node2", - { - "#bigint": "100" - } - ], - [ - "node3", - { - "#bigint": "100" - } - ], - [ - "node4", - { - "#bigint": "50" - } - ], - [ - "node5", - { - "#bigint": "100" - } - ], - [ - "node6", - { - "#bigint": "100" - } - ], - [ - "node7", - { - "#bigint": "50" - } - ], - [ - "node8", - { - "#bigint": "100" - } - ], - [ - "node9", - { - "#bigint": "100" - } - ] - ] - } - } - ] - ], - [ - "consumer3", - [] - ] - ] - } - } - }, - "trace": [ - { - "consumerChain": "", - "consumersToStart": { - "#set": [] - }, - "consumersToStop": { - "#set": [] - }, - "kind": "init", - "newVotingPower": { - "#bigint": "0" - }, - "timeAdvancement": { - "#bigint": "0" - }, - "validator": "" - }, - { - "consumerChain": "", - "consumersToStart": { - "#set": [ - "consumer1", - "consumer3" - ] - }, - "consumersToStop": { - "#set": [] - }, - "kind": "EndAndBeginBlockForProvider", - "newVotingPower": { - "#bigint": "0" - }, - "timeAdvancement": { - "#bigint": "2419200" - }, - "validator": "" - }, - { - "consumerChain": "consumer3", - "consumersToStart": { - "#set": [] - }, - "consumersToStop": { - "#set": [] - }, - "kind": "EndAndBeginBlockForConsumer", - "newVotingPower": { - "#bigint": "0" - }, - "timeAdvancement": { - "#bigint": "2419200" - }, - "validator": "" - }, - { - "consumerChain": "", - "consumersToStart": { - "#set": [] - }, - "consumersToStop": { - "#set": [] - }, - "kind": "VotingPowerChange", - "newVotingPower": { - "#bigint": "100" - }, - "timeAdvancement": { - "#bigint": "0" - }, - "validator": "node1" - }, - { - "consumerChain": "", - "consumersToStart": { - "#set": [] - }, - "consumersToStop": { - "#set": [] - }, - "kind": "VotingPowerChange", - "newVotingPower": { - "#bigint": "50" - }, - "timeAdvancement": { - "#bigint": "0" - }, - "validator": "node1" - }, - { - "consumerChain": "", - "consumersToStart": { - "#set": [] - }, - "consumersToStop": { - "#set": [] - }, - "kind": "VotingPowerChange", - "newVotingPower": { - "#bigint": "50" - }, - "timeAdvancement": { - "#bigint": "0" - }, - "validator": "node4" - }, - { - "consumerChain": "", - "consumersToStart": { - "#set": [] - }, - "consumersToStop": { - "#set": [ - "consumer1", - "consumer3" - ] - }, - "kind": "EndAndBeginBlockForProvider", - "newVotingPower": { - "#bigint": "0" - }, - "timeAdvancement": { - "#bigint": "2419200" - }, - "validator": "" - }, - { - "consumerChain": "", - "consumersToStart": { - "#set": [] - }, - "consumersToStop": { - "#set": [] - }, - "kind": "VotingPowerChange", - "newVotingPower": { - "#bigint": "100" - }, - "timeAdvancement": { - "#bigint": "0" - }, - "validator": "node10" - }, - { - "consumerChain": "", - "consumersToStart": { - "#set": [] - }, - "consumersToStop": { - "#set": [] - }, - "kind": "VotingPowerChange", - "newVotingPower": { - "#bigint": "50" - }, - "timeAdvancement": { - "#bigint": "0" - }, - "validator": "node7" - }, - { - "consumerChain": "", - "consumersToStart": { - "#set": [] - }, - "consumersToStop": { - "#set": [] - }, - "kind": "VotingPowerChange", - "newVotingPower": { - "#bigint": "50" - }, - "timeAdvancement": { - "#bigint": "0" - }, - "validator": "node10" - }, - { - "consumerChain": "", - "consumersToStart": { - "#set": [ - "consumer2" - ] - }, - "consumersToStop": { - "#set": [] - }, - "kind": "EndAndBeginBlockForProvider", - "newVotingPower": { - "#bigint": "0" - }, - "timeAdvancement": { - "#bigint": "86400" - }, - "validator": "" - }, - { - "consumerChain": "", - "consumersToStart": { - "#set": [] - }, - "consumersToStop": { - "#set": [] - }, - "kind": "VotingPowerChange", - "newVotingPower": { - "#bigint": "50" - }, - "timeAdvancement": { - "#bigint": "0" - }, - "validator": "node2" - }, - { - "consumerChain": "", - "consumersToStart": { - "#set": [] - }, - "consumersToStop": { - "#set": [] - }, - "kind": "VotingPowerChange", - "newVotingPower": { - "#bigint": "100" - }, - "timeAdvancement": { - "#bigint": "0" - }, - "validator": "node4" - }, - { - "consumerChain": "", - "consumersToStart": { - "#set": [] - }, - "consumersToStop": { - "#set": [ - "consumer2" - ] - }, - "kind": "EndAndBeginBlockForProvider", - "newVotingPower": { - "#bigint": "0" - }, - "timeAdvancement": { - "#bigint": "604800" - }, - "validator": "" - }, - { - "consumerChain": "", - "consumersToStart": { - "#set": [] - }, - "consumersToStop": { - "#set": [] - }, - "kind": "EndAndBeginBlockForProvider", - "newVotingPower": { - "#bigint": "0" - }, - "timeAdvancement": { - "#bigint": "604800" - }, - "validator": "" - }, - { - "consumerChain": "", - "consumersToStart": { - "#set": [] - }, - "consumersToStop": { - "#set": [] - }, - "kind": "VotingPowerChange", - "newVotingPower": { - "#bigint": "0" - }, - "timeAdvancement": { - "#bigint": "0" - }, - "validator": "node2" - }, - { - "consumerChain": "", - "consumersToStart": { - "#set": [] - }, - "consumersToStop": { - "#set": [] - }, - "kind": "EndAndBeginBlockForProvider", - "newVotingPower": { - "#bigint": "0" - }, - "timeAdvancement": { - "#bigint": "86400" - }, - "validator": "" - }, - { - "consumerChain": "", - "consumersToStart": { - "#set": [] - }, - "consumersToStop": { - "#set": [] - }, - "kind": "VotingPowerChange", - "newVotingPower": { - "#bigint": "100" - }, - "timeAdvancement": { - "#bigint": "0" - }, - "validator": "node10" - } - ] - }, - { - "#meta": { - "index": 18 - }, - "currentState": { - "consumerStates": { - "#map": [ - [ - "consumer1", - { - "chainState": { - "currentValidatorSet": { - "#map": [ - [ - "node1", - { - "#bigint": "100" - } - ], - [ - "node10", - { - "#bigint": "100" - } - ], - [ - "node2", - { - "#bigint": "100" - } - ], - [ - "node3", - { - "#bigint": "100" - } - ], - [ - "node4", - { - "#bigint": "100" - } - ], - [ - "node5", - { - "#bigint": "100" - } - ], - [ - "node6", - { - "#bigint": "100" - } - ], - [ - "node7", - { - "#bigint": "100" - } - ], - [ - "node8", - { - "#bigint": "100" - } - ], - [ - "node9", - { - "#bigint": "100" - } - ] - ] - }, - "lastTimestamp": { - "#bigint": "0" - }, - "votingPowerHistory": [] - }, - "maturationTimes": { - "#map": [] - }, - "outstandingPacketsToProvider": [], - "receivedVscPackets": [] - } - ], - [ - "consumer2", - { - "chainState": { - "currentValidatorSet": { - "#map": [ - [ - "node1", - { - "#bigint": "50" - } - ], - [ - "node10", - { - "#bigint": "50" - } - ], - [ - "node2", - { - "#bigint": "100" - } - ], - [ - "node3", - { - "#bigint": "100" - } - ], - [ - "node4", - { - "#bigint": "50" - } - ], - [ - "node5", - { - "#bigint": "100" - } - ], - [ - "node6", - { - "#bigint": "100" - } - ], - [ - "node7", - { - "#bigint": "50" - } - ], - [ - "node8", - { - "#bigint": "100" - } - ], - [ - "node9", - { - "#bigint": "100" - } - ] - ] - }, - "lastTimestamp": { - "#bigint": "0" - }, - "votingPowerHistory": [] - }, - "maturationTimes": { - "#map": [] - }, - "outstandingPacketsToProvider": [], - "receivedVscPackets": [] - } - ], - [ - "consumer3", - { - "chainState": { - "currentValidatorSet": { - "#map": [ - [ - "node1", - { - "#bigint": "100" - } - ], - [ - "node10", - { - "#bigint": "100" - } - ], - [ - "node2", - { - "#bigint": "100" - } - ], - [ - "node3", - { - "#bigint": "100" - } - ], - [ - "node4", - { - "#bigint": "100" - } - ], - [ - "node5", - { - "#bigint": "100" - } - ], - [ - "node6", - { - "#bigint": "100" - } - ], - [ - "node7", - { - "#bigint": "100" - } - ], - [ - "node8", - { - "#bigint": "100" - } - ], - [ - "node9", - { - "#bigint": "100" - } - ] - ] - }, - "lastTimestamp": { - "#bigint": "2419200" - }, - "votingPowerHistory": [ - { - "#map": [ - [ - "node1", - { - "#bigint": "100" - } - ], - [ - "node10", - { - "#bigint": "100" - } - ], - [ - "node2", - { - "#bigint": "100" - } - ], - [ - "node3", - { - "#bigint": "100" - } - ], - [ - "node4", - { - "#bigint": "100" - } - ], - [ - "node5", - { - "#bigint": "100" - } - ], - [ - "node6", - { - "#bigint": "100" - } - ], - [ - "node7", - { - "#bigint": "100" - } - ], - [ - "node8", - { - "#bigint": "100" - } - ], - [ - "node9", - { - "#bigint": "100" - } - ] - ] - } - ] - }, - "maturationTimes": { - "#map": [] - }, - "outstandingPacketsToProvider": [], - "receivedVscPackets": [] - } - ] - ] - }, - "providerState": { - "chainState": { - "currentValidatorSet": { - "#map": [ - [ - "node1", - { - "#bigint": "50" - } - ], - [ - "node10", - { - "#bigint": "100" - } - ], - [ - "node2", - { - "#bigint": "0" - } - ], - [ - "node3", - { - "#bigint": "100" - } - ], - [ - "node4", - { - "#bigint": "100" - } - ], - [ - "node5", - { - "#bigint": "100" - } - ], - [ - "node6", - { - "#bigint": "50" - } - ], - [ - "node7", - { - "#bigint": "50" - } - ], - [ - "node8", - { - "#bigint": "100" - } - ], - [ - "node9", - { - "#bigint": "100" - } - ] - ] - }, - "lastTimestamp": { - "#bigint": "6220800" - }, - "votingPowerHistory": [ - { - "#map": [ - [ - "node1", - { - "#bigint": "50" - } - ], - [ - "node10", - { - "#bigint": "50" - } - ], - [ - "node2", - { - "#bigint": "0" - } - ], - [ - "node3", - { - "#bigint": "100" - } - ], - [ - "node4", - { - "#bigint": "100" - } - ], - [ - "node5", - { - "#bigint": "100" - } - ], - [ - "node6", - { - "#bigint": "100" - } - ], - [ - "node7", - { - "#bigint": "50" - } - ], - [ - "node8", - { - "#bigint": "100" - } - ], - [ - "node9", - { - "#bigint": "100" - } - ] - ] - }, - { - "#map": [ - [ - "node1", - { - "#bigint": "50" - } - ], - [ - "node10", - { - "#bigint": "50" - } - ], - [ - "node2", - { - "#bigint": "50" - } - ], - [ - "node3", - { - "#bigint": "100" - } - ], - [ - "node4", - { - "#bigint": "100" - } - ], - [ - "node5", - { - "#bigint": "100" - } - ], - [ - "node6", - { - "#bigint": "100" - } - ], - [ - "node7", - { - "#bigint": "50" - } - ], - [ - "node8", - { - "#bigint": "100" - } - ], - [ - "node9", - { - "#bigint": "100" - } - ] - ] - }, - { - "#map": [ - [ - "node1", - { - "#bigint": "50" - } - ], - [ - "node10", - { - "#bigint": "50" - } - ], - [ - "node2", - { - "#bigint": "50" - } - ], - [ - "node3", - { - "#bigint": "100" - } - ], - [ - "node4", - { - "#bigint": "100" - } - ], - [ - "node5", - { - "#bigint": "100" - } - ], - [ - "node6", - { - "#bigint": "100" - } - ], - [ - "node7", - { - "#bigint": "50" - } - ], - [ - "node8", - { - "#bigint": "100" - } - ], - [ - "node9", - { - "#bigint": "100" - } - ] - ] - }, - { - "#map": [ - [ - "node1", - { - "#bigint": "50" - } - ], - [ - "node10", - { - "#bigint": "50" - } - ], - [ - "node2", - { - "#bigint": "100" - } - ], - [ - "node3", - { - "#bigint": "100" - } - ], - [ - "node4", - { - "#bigint": "50" - } - ], - [ - "node5", - { - "#bigint": "100" - } - ], - [ - "node6", - { - "#bigint": "100" - } - ], - [ - "node7", - { - "#bigint": "50" - } - ], - [ - "node8", - { - "#bigint": "100" - } - ], - [ - "node9", - { - "#bigint": "100" - } - ] - ] - }, - { - "#map": [ - [ - "node1", - { - "#bigint": "50" - } - ], - [ - "node10", - { - "#bigint": "100" - } - ], - [ - "node2", - { - "#bigint": "100" - } - ], - [ - "node3", - { - "#bigint": "100" - } - ], - [ - "node4", - { - "#bigint": "50" - } - ], - [ - "node5", - { - "#bigint": "100" - } - ], - [ - "node6", - { - "#bigint": "100" - } - ], - [ - "node7", - { - "#bigint": "100" - } - ], - [ - "node8", - { - "#bigint": "100" - } - ], - [ - "node9", - { - "#bigint": "100" - } - ] - ] - }, - { - "#map": [ - [ - "node1", - { - "#bigint": "100" - } - ], - [ - "node10", - { - "#bigint": "100" - } - ], - [ - "node2", - { - "#bigint": "100" - } - ], - [ - "node3", - { - "#bigint": "100" - } - ], - [ - "node4", - { - "#bigint": "100" - } - ], - [ - "node5", - { - "#bigint": "100" - } - ], - [ - "node6", - { - "#bigint": "100" - } - ], - [ - "node7", - { - "#bigint": "100" - } - ], - [ - "node8", - { - "#bigint": "100" - } - ], - [ - "node9", - { - "#bigint": "100" - } - ] - ] - }, - { - "#map": [ - [ - "node1", - { - "#bigint": "100" - } - ], - [ - "node10", - { - "#bigint": "100" - } - ], - [ - "node2", - { - "#bigint": "100" - } - ], - [ - "node3", - { - "#bigint": "100" - } - ], - [ - "node4", - { - "#bigint": "100" - } - ], - [ - "node5", - { - "#bigint": "100" - } - ], - [ - "node6", - { - "#bigint": "100" - } - ], - [ - "node7", - { - "#bigint": "100" - } - ], - [ - "node8", - { - "#bigint": "100" - } - ], - [ - "node9", - { - "#bigint": "100" - } - ] - ] - } - ] - }, - "consumerStatus": { - "#map": [ - [ - "consumer1", - "stopped" - ], - [ - "consumer2", - "stopped" - ], - [ - "consumer3", - "stopped" - ] - ] - }, - "outstandingPacketsToConsumer": { - "#map": [ - [ - "consumer1", - [] - ], - [ - "consumer2", - [ - { - "id": { - "#bigint": "0" - }, - "sendingTime": { - "#bigint": "4924800" - }, - "validatorSet": { - "#map": [ - [ - "node1", - { - "#bigint": "50" - } - ], - [ - "node10", - { - "#bigint": "50" - } - ], - [ - "node2", - { - "#bigint": "100" - } - ], - [ - "node3", - { - "#bigint": "100" - } - ], - [ - "node4", - { - "#bigint": "50" - } - ], - [ - "node5", - { - "#bigint": "100" - } - ], - [ - "node6", - { - "#bigint": "100" - } - ], - [ - "node7", - { - "#bigint": "50" - } - ], - [ - "node8", - { - "#bigint": "100" - } - ], - [ - "node9", - { - "#bigint": "100" - } - ] - ] - } - } - ] - ], - [ - "consumer3", - [] - ] - ] - }, - "providerValidatorSetChangedInThisBlock": true, - "receivedMaturations": { - "#set": [] - }, - "runningVscId": { - "#bigint": "1" - }, - "sentVscPacketsToConsumer": { - "#map": [ - [ - "consumer1", - [] - ], - [ - "consumer2", - [ - { - "id": { - "#bigint": "0" - }, - "sendingTime": { - "#bigint": "4924800" - }, - "validatorSet": { - "#map": [ - [ - "node1", - { - "#bigint": "50" - } - ], - [ - "node10", - { - "#bigint": "50" - } - ], - [ - "node2", - { - "#bigint": "100" - } - ], - [ - "node3", - { - "#bigint": "100" - } - ], - [ - "node4", - { - "#bigint": "50" - } - ], - [ - "node5", - { - "#bigint": "100" - } - ], - [ - "node6", - { - "#bigint": "100" - } - ], - [ - "node7", - { - "#bigint": "50" - } - ], - [ - "node8", - { - "#bigint": "100" - } - ], - [ - "node9", - { - "#bigint": "100" - } - ] - ] - } - } - ] - ], - [ - "consumer3", - [] - ] - ] - } - } - }, - "trace": [ - { - "consumerChain": "", - "consumersToStart": { - "#set": [] - }, - "consumersToStop": { - "#set": [] - }, - "kind": "init", - "newVotingPower": { - "#bigint": "0" - }, - "timeAdvancement": { - "#bigint": "0" - }, - "validator": "" - }, - { - "consumerChain": "", - "consumersToStart": { - "#set": [ - "consumer1", - "consumer3" - ] - }, - "consumersToStop": { - "#set": [] - }, - "kind": "EndAndBeginBlockForProvider", - "newVotingPower": { - "#bigint": "0" - }, - "timeAdvancement": { - "#bigint": "2419200" - }, - "validator": "" - }, - { - "consumerChain": "consumer3", - "consumersToStart": { - "#set": [] - }, - "consumersToStop": { - "#set": [] - }, - "kind": "EndAndBeginBlockForConsumer", - "newVotingPower": { - "#bigint": "0" - }, - "timeAdvancement": { - "#bigint": "2419200" - }, - "validator": "" - }, - { - "consumerChain": "", - "consumersToStart": { - "#set": [] - }, - "consumersToStop": { - "#set": [] - }, - "kind": "VotingPowerChange", - "newVotingPower": { - "#bigint": "100" - }, - "timeAdvancement": { - "#bigint": "0" - }, - "validator": "node1" - }, - { - "consumerChain": "", - "consumersToStart": { - "#set": [] - }, - "consumersToStop": { - "#set": [] - }, - "kind": "VotingPowerChange", - "newVotingPower": { - "#bigint": "50" - }, - "timeAdvancement": { - "#bigint": "0" - }, - "validator": "node1" - }, - { - "consumerChain": "", - "consumersToStart": { - "#set": [] - }, - "consumersToStop": { - "#set": [] - }, - "kind": "VotingPowerChange", - "newVotingPower": { - "#bigint": "50" - }, - "timeAdvancement": { - "#bigint": "0" - }, - "validator": "node4" - }, - { - "consumerChain": "", - "consumersToStart": { - "#set": [] - }, - "consumersToStop": { - "#set": [ - "consumer1", - "consumer3" - ] - }, - "kind": "EndAndBeginBlockForProvider", - "newVotingPower": { - "#bigint": "0" - }, - "timeAdvancement": { - "#bigint": "2419200" - }, - "validator": "" - }, - { - "consumerChain": "", - "consumersToStart": { - "#set": [] - }, - "consumersToStop": { - "#set": [] - }, - "kind": "VotingPowerChange", - "newVotingPower": { - "#bigint": "100" - }, - "timeAdvancement": { - "#bigint": "0" - }, - "validator": "node10" - }, - { - "consumerChain": "", - "consumersToStart": { - "#set": [] - }, - "consumersToStop": { - "#set": [] - }, - "kind": "VotingPowerChange", - "newVotingPower": { - "#bigint": "50" - }, - "timeAdvancement": { - "#bigint": "0" - }, - "validator": "node7" - }, - { - "consumerChain": "", - "consumersToStart": { - "#set": [] - }, - "consumersToStop": { - "#set": [] - }, - "kind": "VotingPowerChange", - "newVotingPower": { - "#bigint": "50" - }, - "timeAdvancement": { - "#bigint": "0" - }, - "validator": "node10" - }, - { - "consumerChain": "", - "consumersToStart": { - "#set": [ - "consumer2" - ] - }, - "consumersToStop": { - "#set": [] - }, - "kind": "EndAndBeginBlockForProvider", - "newVotingPower": { - "#bigint": "0" - }, - "timeAdvancement": { - "#bigint": "86400" - }, - "validator": "" - }, - { - "consumerChain": "", - "consumersToStart": { - "#set": [] - }, - "consumersToStop": { - "#set": [] - }, - "kind": "VotingPowerChange", - "newVotingPower": { - "#bigint": "50" - }, - "timeAdvancement": { - "#bigint": "0" - }, - "validator": "node2" - }, - { - "consumerChain": "", - "consumersToStart": { - "#set": [] - }, - "consumersToStop": { - "#set": [] - }, - "kind": "VotingPowerChange", - "newVotingPower": { - "#bigint": "100" - }, - "timeAdvancement": { - "#bigint": "0" - }, - "validator": "node4" - }, - { - "consumerChain": "", - "consumersToStart": { - "#set": [] - }, - "consumersToStop": { - "#set": [ - "consumer2" - ] - }, - "kind": "EndAndBeginBlockForProvider", - "newVotingPower": { - "#bigint": "0" - }, - "timeAdvancement": { - "#bigint": "604800" - }, - "validator": "" - }, - { - "consumerChain": "", - "consumersToStart": { - "#set": [] - }, - "consumersToStop": { - "#set": [] - }, - "kind": "EndAndBeginBlockForProvider", - "newVotingPower": { - "#bigint": "0" - }, - "timeAdvancement": { - "#bigint": "604800" - }, - "validator": "" - }, - { - "consumerChain": "", - "consumersToStart": { - "#set": [] - }, - "consumersToStop": { - "#set": [] - }, - "kind": "VotingPowerChange", - "newVotingPower": { - "#bigint": "0" - }, - "timeAdvancement": { - "#bigint": "0" - }, - "validator": "node2" - }, - { - "consumerChain": "", - "consumersToStart": { - "#set": [] - }, - "consumersToStop": { - "#set": [] - }, - "kind": "EndAndBeginBlockForProvider", - "newVotingPower": { - "#bigint": "0" - }, - "timeAdvancement": { - "#bigint": "86400" - }, - "validator": "" - }, - { - "consumerChain": "", - "consumersToStart": { - "#set": [] - }, - "consumersToStop": { - "#set": [] - }, - "kind": "VotingPowerChange", - "newVotingPower": { - "#bigint": "100" - }, - "timeAdvancement": { - "#bigint": "0" - }, - "validator": "node10" - }, - { - "consumerChain": "", - "consumersToStart": { - "#set": [] - }, - "consumersToStop": { - "#set": [] - }, - "kind": "VotingPowerChange", - "newVotingPower": { - "#bigint": "50" - }, - "timeAdvancement": { - "#bigint": "0" - }, - "validator": "node6" - } - ] - }, - { - "#meta": { - "index": 19 - }, - "currentState": { - "consumerStates": { - "#map": [ - [ - "consumer1", - { - "chainState": { - "currentValidatorSet": { - "#map": [ - [ - "node1", - { - "#bigint": "100" - } - ], - [ - "node10", - { - "#bigint": "100" - } - ], - [ - "node2", - { - "#bigint": "100" - } - ], - [ - "node3", - { - "#bigint": "100" - } - ], - [ - "node4", - { - "#bigint": "100" - } - ], - [ - "node5", - { - "#bigint": "100" - } - ], - [ - "node6", - { - "#bigint": "100" - } - ], - [ - "node7", - { - "#bigint": "100" - } - ], - [ - "node8", - { - "#bigint": "100" - } - ], - [ - "node9", - { - "#bigint": "100" - } - ] - ] - }, - "lastTimestamp": { - "#bigint": "0" - }, - "votingPowerHistory": [] - }, - "maturationTimes": { - "#map": [] - }, - "outstandingPacketsToProvider": [], - "receivedVscPackets": [] - } - ], - [ - "consumer2", - { - "chainState": { - "currentValidatorSet": { - "#map": [ - [ - "node1", - { - "#bigint": "50" - } - ], - [ - "node10", - { - "#bigint": "50" - } - ], - [ - "node2", - { - "#bigint": "100" - } - ], - [ - "node3", - { - "#bigint": "100" - } - ], - [ - "node4", - { - "#bigint": "50" - } - ], - [ - "node5", - { - "#bigint": "100" - } - ], - [ - "node6", - { - "#bigint": "100" - } - ], - [ - "node7", - { - "#bigint": "50" - } - ], - [ - "node8", - { - "#bigint": "100" - } - ], - [ - "node9", - { - "#bigint": "100" - } - ] - ] - }, - "lastTimestamp": { - "#bigint": "0" - }, - "votingPowerHistory": [] - }, - "maturationTimes": { - "#map": [] - }, - "outstandingPacketsToProvider": [], - "receivedVscPackets": [] - } - ], - [ - "consumer3", - { - "chainState": { - "currentValidatorSet": { - "#map": [ - [ - "node1", - { - "#bigint": "100" - } - ], - [ - "node10", - { - "#bigint": "100" - } - ], - [ - "node2", - { - "#bigint": "100" - } - ], - [ - "node3", - { - "#bigint": "100" - } - ], - [ - "node4", - { - "#bigint": "100" - } - ], - [ - "node5", - { - "#bigint": "100" - } - ], - [ - "node6", - { - "#bigint": "100" - } - ], - [ - "node7", - { - "#bigint": "100" - } - ], - [ - "node8", - { - "#bigint": "100" - } - ], - [ - "node9", - { - "#bigint": "100" - } - ] - ] - }, - "lastTimestamp": { - "#bigint": "2419200" - }, - "votingPowerHistory": [ - { - "#map": [ - [ - "node1", - { - "#bigint": "100" - } - ], - [ - "node10", - { - "#bigint": "100" - } - ], - [ - "node2", - { - "#bigint": "100" - } - ], - [ - "node3", - { - "#bigint": "100" - } - ], - [ - "node4", - { - "#bigint": "100" - } - ], - [ - "node5", - { - "#bigint": "100" - } - ], - [ - "node6", - { - "#bigint": "100" - } - ], - [ - "node7", - { - "#bigint": "100" - } - ], - [ - "node8", - { - "#bigint": "100" - } - ], - [ - "node9", - { - "#bigint": "100" - } - ] - ] - } - ] - }, - "maturationTimes": { - "#map": [] - }, - "outstandingPacketsToProvider": [], - "receivedVscPackets": [] - } - ] - ] - }, - "providerState": { - "chainState": { - "currentValidatorSet": { - "#map": [ - [ - "node1", - { - "#bigint": "50" - } - ], - [ - "node10", - { - "#bigint": "100" - } - ], - [ - "node2", - { - "#bigint": "0" - } - ], - [ - "node3", - { - "#bigint": "100" - } - ], - [ - "node4", - { - "#bigint": "100" - } - ], - [ - "node5", - { - "#bigint": "100" - } - ], - [ - "node6", - { - "#bigint": "50" - } - ], - [ - "node7", - { - "#bigint": "50" - } - ], - [ - "node8", - { - "#bigint": "100" - } - ], - [ - "node9", - { - "#bigint": "100" - } - ] - ] - }, - "lastTimestamp": { - "#bigint": "6220801" - }, - "votingPowerHistory": [ - { - "#map": [ - [ - "node1", - { - "#bigint": "50" - } - ], - [ - "node10", - { - "#bigint": "100" - } - ], - [ - "node2", - { - "#bigint": "0" - } - ], - [ - "node3", - { - "#bigint": "100" - } - ], - [ - "node4", - { - "#bigint": "100" - } - ], - [ - "node5", - { - "#bigint": "100" - } - ], - [ - "node6", - { - "#bigint": "50" - } - ], - [ - "node7", - { - "#bigint": "50" - } - ], - [ - "node8", - { - "#bigint": "100" - } - ], - [ - "node9", - { - "#bigint": "100" - } - ] - ] - }, - { - "#map": [ - [ - "node1", - { - "#bigint": "50" - } - ], - [ - "node10", - { - "#bigint": "50" - } - ], - [ - "node2", - { - "#bigint": "0" - } - ], - [ - "node3", - { - "#bigint": "100" - } - ], - [ - "node4", - { - "#bigint": "100" - } - ], - [ - "node5", - { - "#bigint": "100" - } - ], - [ - "node6", - { - "#bigint": "100" - } - ], - [ - "node7", - { - "#bigint": "50" - } - ], - [ - "node8", - { - "#bigint": "100" - } - ], - [ - "node9", - { - "#bigint": "100" - } - ] - ] - }, - { - "#map": [ - [ - "node1", - { - "#bigint": "50" - } - ], - [ - "node10", - { - "#bigint": "50" - } - ], - [ - "node2", - { - "#bigint": "50" - } - ], - [ - "node3", - { - "#bigint": "100" - } - ], - [ - "node4", - { - "#bigint": "100" - } - ], - [ - "node5", - { - "#bigint": "100" - } - ], - [ - "node6", - { - "#bigint": "100" - } - ], - [ - "node7", - { - "#bigint": "50" - } - ], - [ - "node8", - { - "#bigint": "100" - } - ], - [ - "node9", - { - "#bigint": "100" - } - ] - ] - }, - { - "#map": [ - [ - "node1", - { - "#bigint": "50" - } - ], - [ - "node10", - { - "#bigint": "50" - } - ], - [ - "node2", - { - "#bigint": "50" - } - ], - [ - "node3", - { - "#bigint": "100" - } - ], - [ - "node4", - { - "#bigint": "100" - } - ], - [ - "node5", - { - "#bigint": "100" - } - ], - [ - "node6", - { - "#bigint": "100" - } - ], - [ - "node7", - { - "#bigint": "50" - } - ], - [ - "node8", - { - "#bigint": "100" - } - ], - [ - "node9", - { - "#bigint": "100" - } - ] - ] - }, - { - "#map": [ - [ - "node1", - { - "#bigint": "50" - } - ], - [ - "node10", - { - "#bigint": "50" - } - ], - [ - "node2", - { - "#bigint": "100" - } - ], - [ - "node3", - { - "#bigint": "100" - } - ], - [ - "node4", - { - "#bigint": "50" - } - ], - [ - "node5", - { - "#bigint": "100" - } - ], - [ - "node6", - { - "#bigint": "100" - } - ], - [ - "node7", - { - "#bigint": "50" - } - ], - [ - "node8", - { - "#bigint": "100" - } - ], - [ - "node9", - { - "#bigint": "100" - } - ] - ] - }, - { - "#map": [ - [ - "node1", - { - "#bigint": "50" - } - ], - [ - "node10", - { - "#bigint": "100" - } - ], - [ - "node2", - { - "#bigint": "100" - } - ], - [ - "node3", - { - "#bigint": "100" - } - ], - [ - "node4", - { - "#bigint": "50" - } - ], - [ - "node5", - { - "#bigint": "100" - } - ], - [ - "node6", - { - "#bigint": "100" - } - ], - [ - "node7", - { - "#bigint": "100" - } - ], - [ - "node8", - { - "#bigint": "100" - } - ], - [ - "node9", - { - "#bigint": "100" - } - ] - ] - }, - { - "#map": [ - [ - "node1", - { - "#bigint": "100" - } - ], - [ - "node10", - { - "#bigint": "100" - } - ], - [ - "node2", - { - "#bigint": "100" - } - ], - [ - "node3", - { - "#bigint": "100" - } - ], - [ - "node4", - { - "#bigint": "100" - } - ], - [ - "node5", - { - "#bigint": "100" - } - ], - [ - "node6", - { - "#bigint": "100" - } - ], - [ - "node7", - { - "#bigint": "100" - } - ], - [ - "node8", - { - "#bigint": "100" - } - ], - [ - "node9", - { - "#bigint": "100" - } - ] - ] - }, - { - "#map": [ - [ - "node1", - { - "#bigint": "100" - } - ], - [ - "node10", - { - "#bigint": "100" - } - ], - [ - "node2", - { - "#bigint": "100" - } - ], - [ - "node3", - { - "#bigint": "100" - } - ], - [ - "node4", - { - "#bigint": "100" - } - ], - [ - "node5", - { - "#bigint": "100" - } - ], - [ - "node6", - { - "#bigint": "100" - } - ], - [ - "node7", - { - "#bigint": "100" - } - ], - [ - "node8", - { - "#bigint": "100" - } - ], - [ - "node9", - { - "#bigint": "100" - } - ] - ] - } - ] - }, - "consumerStatus": { - "#map": [ - [ - "consumer1", - "stopped" - ], - [ - "consumer2", - "stopped" - ], - [ - "consumer3", - "stopped" - ] - ] - }, - "outstandingPacketsToConsumer": { - "#map": [ - [ - "consumer1", - [] - ], - [ - "consumer2", - [ - { - "id": { - "#bigint": "0" - }, - "sendingTime": { - "#bigint": "4924800" - }, - "validatorSet": { - "#map": [ - [ - "node1", - { - "#bigint": "50" - } - ], - [ - "node10", - { - "#bigint": "50" - } - ], - [ - "node2", - { - "#bigint": "100" - } - ], - [ - "node3", - { - "#bigint": "100" - } - ], - [ - "node4", - { - "#bigint": "50" - } - ], - [ - "node5", - { - "#bigint": "100" - } - ], - [ - "node6", - { - "#bigint": "100" - } - ], - [ - "node7", - { - "#bigint": "50" - } - ], - [ - "node8", - { - "#bigint": "100" - } - ], - [ - "node9", - { - "#bigint": "100" - } - ] - ] - } - } - ] - ], - [ - "consumer3", - [] - ] - ] - }, - "providerValidatorSetChangedInThisBlock": true, - "receivedMaturations": { - "#set": [] - }, - "runningVscId": { - "#bigint": "1" - }, - "sentVscPacketsToConsumer": { - "#map": [ - [ - "consumer1", - [] - ], - [ - "consumer2", - [ - { - "id": { - "#bigint": "0" - }, - "sendingTime": { - "#bigint": "4924800" - }, - "validatorSet": { - "#map": [ - [ - "node1", - { - "#bigint": "50" - } - ], - [ - "node10", - { - "#bigint": "50" - } - ], - [ - "node2", - { - "#bigint": "100" - } - ], - [ - "node3", - { - "#bigint": "100" - } - ], - [ - "node4", - { - "#bigint": "50" - } - ], - [ - "node5", - { - "#bigint": "100" - } - ], - [ - "node6", - { - "#bigint": "100" - } - ], - [ - "node7", - { - "#bigint": "50" - } - ], - [ - "node8", - { - "#bigint": "100" - } - ], - [ - "node9", - { - "#bigint": "100" - } - ] - ] - } - } - ] - ], - [ - "consumer3", - [] - ] - ] - } - } - }, - "trace": [ - { - "consumerChain": "", - "consumersToStart": { - "#set": [] - }, - "consumersToStop": { - "#set": [] - }, - "kind": "init", - "newVotingPower": { - "#bigint": "0" - }, - "timeAdvancement": { - "#bigint": "0" - }, - "validator": "" - }, - { - "consumerChain": "", - "consumersToStart": { - "#set": [ - "consumer1", - "consumer3" - ] - }, - "consumersToStop": { - "#set": [] - }, - "kind": "EndAndBeginBlockForProvider", - "newVotingPower": { - "#bigint": "0" - }, - "timeAdvancement": { - "#bigint": "2419200" - }, - "validator": "" - }, - { - "consumerChain": "consumer3", - "consumersToStart": { - "#set": [] - }, - "consumersToStop": { - "#set": [] - }, - "kind": "EndAndBeginBlockForConsumer", - "newVotingPower": { - "#bigint": "0" - }, - "timeAdvancement": { - "#bigint": "2419200" - }, - "validator": "" - }, - { - "consumerChain": "", - "consumersToStart": { - "#set": [] - }, - "consumersToStop": { - "#set": [] - }, - "kind": "VotingPowerChange", - "newVotingPower": { - "#bigint": "100" - }, - "timeAdvancement": { - "#bigint": "0" - }, - "validator": "node1" - }, - { - "consumerChain": "", - "consumersToStart": { - "#set": [] - }, - "consumersToStop": { - "#set": [] - }, - "kind": "VotingPowerChange", - "newVotingPower": { - "#bigint": "50" - }, - "timeAdvancement": { - "#bigint": "0" - }, - "validator": "node1" - }, - { - "consumerChain": "", - "consumersToStart": { - "#set": [] - }, - "consumersToStop": { - "#set": [] - }, - "kind": "VotingPowerChange", - "newVotingPower": { - "#bigint": "50" - }, - "timeAdvancement": { - "#bigint": "0" - }, - "validator": "node4" - }, - { - "consumerChain": "", - "consumersToStart": { - "#set": [] - }, - "consumersToStop": { - "#set": [ - "consumer1", - "consumer3" - ] - }, - "kind": "EndAndBeginBlockForProvider", - "newVotingPower": { - "#bigint": "0" - }, - "timeAdvancement": { - "#bigint": "2419200" - }, - "validator": "" - }, - { - "consumerChain": "", - "consumersToStart": { - "#set": [] - }, - "consumersToStop": { - "#set": [] - }, - "kind": "VotingPowerChange", - "newVotingPower": { - "#bigint": "100" - }, - "timeAdvancement": { - "#bigint": "0" - }, - "validator": "node10" - }, - { - "consumerChain": "", - "consumersToStart": { - "#set": [] - }, - "consumersToStop": { - "#set": [] - }, - "kind": "VotingPowerChange", - "newVotingPower": { - "#bigint": "50" - }, - "timeAdvancement": { - "#bigint": "0" - }, - "validator": "node7" - }, - { - "consumerChain": "", - "consumersToStart": { - "#set": [] - }, - "consumersToStop": { - "#set": [] - }, - "kind": "VotingPowerChange", - "newVotingPower": { - "#bigint": "50" - }, - "timeAdvancement": { - "#bigint": "0" - }, - "validator": "node10" - }, - { - "consumerChain": "", - "consumersToStart": { - "#set": [ - "consumer2" - ] - }, - "consumersToStop": { - "#set": [] - }, - "kind": "EndAndBeginBlockForProvider", - "newVotingPower": { - "#bigint": "0" - }, - "timeAdvancement": { - "#bigint": "86400" - }, - "validator": "" - }, - { - "consumerChain": "", - "consumersToStart": { - "#set": [] - }, - "consumersToStop": { - "#set": [] - }, - "kind": "VotingPowerChange", - "newVotingPower": { - "#bigint": "50" - }, - "timeAdvancement": { - "#bigint": "0" - }, - "validator": "node2" - }, - { - "consumerChain": "", - "consumersToStart": { - "#set": [] - }, - "consumersToStop": { - "#set": [] - }, - "kind": "VotingPowerChange", - "newVotingPower": { - "#bigint": "100" - }, - "timeAdvancement": { - "#bigint": "0" - }, - "validator": "node4" - }, - { - "consumerChain": "", - "consumersToStart": { - "#set": [] - }, - "consumersToStop": { - "#set": [ - "consumer2" - ] - }, - "kind": "EndAndBeginBlockForProvider", - "newVotingPower": { - "#bigint": "0" - }, - "timeAdvancement": { - "#bigint": "604800" - }, - "validator": "" - }, - { - "consumerChain": "", - "consumersToStart": { - "#set": [] - }, - "consumersToStop": { - "#set": [] - }, - "kind": "EndAndBeginBlockForProvider", - "newVotingPower": { - "#bigint": "0" - }, - "timeAdvancement": { - "#bigint": "604800" - }, - "validator": "" - }, - { - "consumerChain": "", - "consumersToStart": { - "#set": [] - }, - "consumersToStop": { - "#set": [] - }, - "kind": "VotingPowerChange", - "newVotingPower": { - "#bigint": "0" - }, - "timeAdvancement": { - "#bigint": "0" - }, - "validator": "node2" - }, - { - "consumerChain": "", - "consumersToStart": { - "#set": [] - }, - "consumersToStop": { - "#set": [] - }, - "kind": "EndAndBeginBlockForProvider", - "newVotingPower": { - "#bigint": "0" - }, - "timeAdvancement": { - "#bigint": "86400" - }, - "validator": "" - }, - { - "consumerChain": "", - "consumersToStart": { - "#set": [] - }, - "consumersToStop": { - "#set": [] - }, - "kind": "VotingPowerChange", - "newVotingPower": { - "#bigint": "100" - }, - "timeAdvancement": { - "#bigint": "0" - }, - "validator": "node10" - }, - { - "consumerChain": "", - "consumersToStart": { - "#set": [] - }, - "consumersToStop": { - "#set": [] - }, - "kind": "VotingPowerChange", - "newVotingPower": { - "#bigint": "50" - }, - "timeAdvancement": { - "#bigint": "0" - }, - "validator": "node6" - }, - { - "consumerChain": "", - "consumersToStart": { - "#set": [] - }, - "consumersToStop": { - "#set": [] - }, - "kind": "EndAndBeginBlockForProvider", - "newVotingPower": { - "#bigint": "0" - }, - "timeAdvancement": { - "#bigint": "1" - }, - "validator": "" - } - ] - }, - { - "#meta": { - "index": 20 - }, - "currentState": { - "consumerStates": { - "#map": [ - [ - "consumer1", - { - "chainState": { - "currentValidatorSet": { - "#map": [ - [ - "node1", - { - "#bigint": "100" - } - ], - [ - "node10", - { - "#bigint": "100" - } - ], - [ - "node2", - { - "#bigint": "100" - } - ], - [ - "node3", - { - "#bigint": "100" - } - ], - [ - "node4", - { - "#bigint": "100" - } - ], - [ - "node5", - { - "#bigint": "100" - } - ], - [ - "node6", - { - "#bigint": "100" - } - ], - [ - "node7", - { - "#bigint": "100" - } - ], - [ - "node8", - { - "#bigint": "100" - } - ], - [ - "node9", - { - "#bigint": "100" - } - ] - ] - }, - "lastTimestamp": { - "#bigint": "0" - }, - "votingPowerHistory": [] - }, - "maturationTimes": { - "#map": [] - }, - "outstandingPacketsToProvider": [], - "receivedVscPackets": [] - } - ], - [ - "consumer2", - { - "chainState": { - "currentValidatorSet": { - "#map": [ - [ - "node1", - { - "#bigint": "50" - } - ], - [ - "node10", - { - "#bigint": "50" - } - ], - [ - "node2", - { - "#bigint": "100" - } - ], - [ - "node3", - { - "#bigint": "100" - } - ], - [ - "node4", - { - "#bigint": "50" - } - ], - [ - "node5", - { - "#bigint": "100" - } - ], - [ - "node6", - { - "#bigint": "100" - } - ], - [ - "node7", - { - "#bigint": "50" - } - ], - [ - "node8", - { - "#bigint": "100" - } - ], - [ - "node9", - { - "#bigint": "100" - } - ] - ] - }, - "lastTimestamp": { - "#bigint": "0" - }, - "votingPowerHistory": [] - }, - "maturationTimes": { - "#map": [] - }, - "outstandingPacketsToProvider": [], - "receivedVscPackets": [] - } - ], - [ - "consumer3", - { - "chainState": { - "currentValidatorSet": { - "#map": [ - [ - "node1", - { - "#bigint": "100" - } - ], - [ - "node10", - { - "#bigint": "100" - } - ], - [ - "node2", - { - "#bigint": "100" - } - ], - [ - "node3", - { - "#bigint": "100" - } - ], - [ - "node4", - { - "#bigint": "100" - } - ], - [ - "node5", - { - "#bigint": "100" - } - ], - [ - "node6", - { - "#bigint": "100" - } - ], - [ - "node7", - { - "#bigint": "100" - } - ], - [ - "node8", - { - "#bigint": "100" - } - ], - [ - "node9", - { - "#bigint": "100" - } - ] - ] - }, - "lastTimestamp": { - "#bigint": "2419200" - }, - "votingPowerHistory": [ - { - "#map": [ - [ - "node1", - { - "#bigint": "100" - } - ], - [ - "node10", - { - "#bigint": "100" - } - ], - [ - "node2", - { - "#bigint": "100" - } - ], - [ - "node3", - { - "#bigint": "100" - } - ], - [ - "node4", - { - "#bigint": "100" - } - ], - [ - "node5", - { - "#bigint": "100" - } - ], - [ - "node6", - { - "#bigint": "100" - } - ], - [ - "node7", - { - "#bigint": "100" - } - ], - [ - "node8", - { - "#bigint": "100" - } - ], - [ - "node9", - { - "#bigint": "100" - } - ] - ] - } - ] - }, - "maturationTimes": { - "#map": [] - }, - "outstandingPacketsToProvider": [], - "receivedVscPackets": [] - } - ] - ] - }, - "providerState": { - "chainState": { - "currentValidatorSet": { - "#map": [ - [ - "node1", - { - "#bigint": "50" - } - ], - [ - "node10", - { - "#bigint": "100" - } - ], - [ - "node2", - { - "#bigint": "0" - } - ], - [ - "node3", - { - "#bigint": "100" - } - ], - [ - "node4", - { - "#bigint": "100" - } - ], - [ - "node5", - { - "#bigint": "100" - } - ], - [ - "node6", - { - "#bigint": "0" - } - ], - [ - "node7", - { - "#bigint": "50" - } - ], - [ - "node8", - { - "#bigint": "100" - } - ], - [ - "node9", - { - "#bigint": "100" - } - ] - ] - }, - "lastTimestamp": { - "#bigint": "6220801" - }, - "votingPowerHistory": [ - { - "#map": [ - [ - "node1", - { - "#bigint": "50" - } - ], - [ - "node10", - { - "#bigint": "100" - } - ], - [ - "node2", - { - "#bigint": "0" - } - ], - [ - "node3", - { - "#bigint": "100" - } - ], - [ - "node4", - { - "#bigint": "100" - } - ], - [ - "node5", - { - "#bigint": "100" - } - ], - [ - "node6", - { - "#bigint": "50" - } - ], - [ - "node7", - { - "#bigint": "50" - } - ], - [ - "node8", - { - "#bigint": "100" - } - ], - [ - "node9", - { - "#bigint": "100" - } - ] - ] - }, - { - "#map": [ - [ - "node1", - { - "#bigint": "50" - } - ], - [ - "node10", - { - "#bigint": "50" - } - ], - [ - "node2", - { - "#bigint": "0" - } - ], - [ - "node3", - { - "#bigint": "100" - } - ], - [ - "node4", - { - "#bigint": "100" - } - ], - [ - "node5", - { - "#bigint": "100" - } - ], - [ - "node6", - { - "#bigint": "100" - } - ], - [ - "node7", - { - "#bigint": "50" - } - ], - [ - "node8", - { - "#bigint": "100" - } - ], - [ - "node9", - { - "#bigint": "100" - } - ] - ] - }, - { - "#map": [ - [ - "node1", - { - "#bigint": "50" - } - ], - [ - "node10", - { - "#bigint": "50" - } - ], - [ - "node2", - { - "#bigint": "50" - } - ], - [ - "node3", - { - "#bigint": "100" - } - ], - [ - "node4", - { - "#bigint": "100" - } - ], - [ - "node5", - { - "#bigint": "100" - } - ], - [ - "node6", - { - "#bigint": "100" - } - ], - [ - "node7", - { - "#bigint": "50" - } - ], - [ - "node8", - { - "#bigint": "100" - } - ], - [ - "node9", - { - "#bigint": "100" - } - ] - ] - }, - { - "#map": [ - [ - "node1", - { - "#bigint": "50" - } - ], - [ - "node10", - { - "#bigint": "50" - } - ], - [ - "node2", - { - "#bigint": "50" - } - ], - [ - "node3", - { - "#bigint": "100" - } - ], - [ - "node4", - { - "#bigint": "100" - } - ], - [ - "node5", - { - "#bigint": "100" - } - ], - [ - "node6", - { - "#bigint": "100" - } - ], - [ - "node7", - { - "#bigint": "50" - } - ], - [ - "node8", - { - "#bigint": "100" - } - ], - [ - "node9", - { - "#bigint": "100" - } - ] - ] - }, - { - "#map": [ - [ - "node1", - { - "#bigint": "50" - } - ], - [ - "node10", - { - "#bigint": "50" - } - ], - [ - "node2", - { - "#bigint": "100" - } - ], - [ - "node3", - { - "#bigint": "100" - } - ], - [ - "node4", - { - "#bigint": "50" - } - ], - [ - "node5", - { - "#bigint": "100" - } - ], - [ - "node6", - { - "#bigint": "100" - } - ], - [ - "node7", - { - "#bigint": "50" - } - ], - [ - "node8", - { - "#bigint": "100" - } - ], - [ - "node9", - { - "#bigint": "100" - } - ] - ] - }, - { - "#map": [ - [ - "node1", - { - "#bigint": "50" - } - ], - [ - "node10", - { - "#bigint": "100" - } - ], - [ - "node2", - { - "#bigint": "100" - } - ], - [ - "node3", - { - "#bigint": "100" - } - ], - [ - "node4", - { - "#bigint": "50" - } - ], - [ - "node5", - { - "#bigint": "100" - } - ], - [ - "node6", - { - "#bigint": "100" - } - ], - [ - "node7", - { - "#bigint": "100" - } - ], - [ - "node8", - { - "#bigint": "100" - } - ], - [ - "node9", - { - "#bigint": "100" - } - ] - ] - }, - { - "#map": [ - [ - "node1", - { - "#bigint": "100" - } - ], - [ - "node10", - { - "#bigint": "100" - } - ], - [ - "node2", - { - "#bigint": "100" - } - ], - [ - "node3", - { - "#bigint": "100" - } - ], - [ - "node4", - { - "#bigint": "100" - } - ], - [ - "node5", - { - "#bigint": "100" - } - ], - [ - "node6", - { - "#bigint": "100" - } - ], - [ - "node7", - { - "#bigint": "100" - } - ], - [ - "node8", - { - "#bigint": "100" - } - ], - [ - "node9", - { - "#bigint": "100" - } - ] - ] - }, - { - "#map": [ - [ - "node1", - { - "#bigint": "100" - } - ], - [ - "node10", - { - "#bigint": "100" - } - ], - [ - "node2", - { - "#bigint": "100" - } - ], - [ - "node3", - { - "#bigint": "100" - } - ], - [ - "node4", - { - "#bigint": "100" - } - ], - [ - "node5", - { - "#bigint": "100" - } - ], - [ - "node6", - { - "#bigint": "100" - } - ], - [ - "node7", - { - "#bigint": "100" - } - ], - [ - "node8", - { - "#bigint": "100" - } - ], - [ - "node9", - { - "#bigint": "100" - } - ] - ] - } - ] - }, - "consumerStatus": { - "#map": [ - [ - "consumer1", - "stopped" - ], - [ - "consumer2", - "stopped" - ], - [ - "consumer3", - "stopped" - ] - ] - }, - "outstandingPacketsToConsumer": { - "#map": [ - [ - "consumer1", - [] - ], - [ - "consumer2", - [ - { - "id": { - "#bigint": "0" - }, - "sendingTime": { - "#bigint": "4924800" - }, - "validatorSet": { - "#map": [ - [ - "node1", - { - "#bigint": "50" - } - ], - [ - "node10", - { - "#bigint": "50" - } - ], - [ - "node2", - { - "#bigint": "100" - } - ], - [ - "node3", - { - "#bigint": "100" - } - ], - [ - "node4", - { - "#bigint": "50" - } - ], - [ - "node5", - { - "#bigint": "100" - } - ], - [ - "node6", - { - "#bigint": "100" - } - ], - [ - "node7", - { - "#bigint": "50" - } - ], - [ - "node8", - { - "#bigint": "100" - } - ], - [ - "node9", - { - "#bigint": "100" - } - ] - ] - } - } - ] - ], - [ - "consumer3", - [] - ] - ] - }, - "providerValidatorSetChangedInThisBlock": true, - "receivedMaturations": { - "#set": [] - }, - "runningVscId": { - "#bigint": "1" - }, - "sentVscPacketsToConsumer": { - "#map": [ - [ - "consumer1", - [] - ], - [ - "consumer2", - [ - { - "id": { - "#bigint": "0" - }, - "sendingTime": { - "#bigint": "4924800" - }, - "validatorSet": { - "#map": [ - [ - "node1", - { - "#bigint": "50" - } - ], - [ - "node10", - { - "#bigint": "50" - } - ], - [ - "node2", - { - "#bigint": "100" - } - ], - [ - "node3", - { - "#bigint": "100" - } - ], - [ - "node4", - { - "#bigint": "50" - } - ], - [ - "node5", - { - "#bigint": "100" - } - ], - [ - "node6", - { - "#bigint": "100" - } - ], - [ - "node7", - { - "#bigint": "50" - } - ], - [ - "node8", - { - "#bigint": "100" - } - ], - [ - "node9", - { - "#bigint": "100" - } - ] - ] - } - } - ] - ], - [ - "consumer3", - [] - ] - ] - } - } - }, - "trace": [ - { - "consumerChain": "", - "consumersToStart": { - "#set": [] - }, - "consumersToStop": { - "#set": [] - }, - "kind": "init", - "newVotingPower": { - "#bigint": "0" - }, - "timeAdvancement": { - "#bigint": "0" - }, - "validator": "" - }, - { - "consumerChain": "", - "consumersToStart": { - "#set": [ - "consumer1", - "consumer3" - ] - }, - "consumersToStop": { - "#set": [] - }, - "kind": "EndAndBeginBlockForProvider", - "newVotingPower": { - "#bigint": "0" - }, - "timeAdvancement": { - "#bigint": "2419200" - }, - "validator": "" - }, - { - "consumerChain": "consumer3", - "consumersToStart": { - "#set": [] - }, - "consumersToStop": { - "#set": [] - }, - "kind": "EndAndBeginBlockForConsumer", - "newVotingPower": { - "#bigint": "0" - }, - "timeAdvancement": { - "#bigint": "2419200" - }, - "validator": "" - }, - { - "consumerChain": "", - "consumersToStart": { - "#set": [] - }, - "consumersToStop": { - "#set": [] - }, - "kind": "VotingPowerChange", - "newVotingPower": { - "#bigint": "100" - }, - "timeAdvancement": { - "#bigint": "0" - }, - "validator": "node1" - }, - { - "consumerChain": "", - "consumersToStart": { - "#set": [] - }, - "consumersToStop": { - "#set": [] - }, - "kind": "VotingPowerChange", - "newVotingPower": { - "#bigint": "50" - }, - "timeAdvancement": { - "#bigint": "0" - }, - "validator": "node1" - }, - { - "consumerChain": "", - "consumersToStart": { - "#set": [] - }, - "consumersToStop": { - "#set": [] - }, - "kind": "VotingPowerChange", - "newVotingPower": { - "#bigint": "50" - }, - "timeAdvancement": { - "#bigint": "0" - }, - "validator": "node4" - }, - { - "consumerChain": "", - "consumersToStart": { - "#set": [] - }, - "consumersToStop": { - "#set": [ - "consumer1", - "consumer3" - ] - }, - "kind": "EndAndBeginBlockForProvider", - "newVotingPower": { - "#bigint": "0" - }, - "timeAdvancement": { - "#bigint": "2419200" - }, - "validator": "" - }, - { - "consumerChain": "", - "consumersToStart": { - "#set": [] - }, - "consumersToStop": { - "#set": [] - }, - "kind": "VotingPowerChange", - "newVotingPower": { - "#bigint": "100" - }, - "timeAdvancement": { - "#bigint": "0" - }, - "validator": "node10" - }, - { - "consumerChain": "", - "consumersToStart": { - "#set": [] - }, - "consumersToStop": { - "#set": [] - }, - "kind": "VotingPowerChange", - "newVotingPower": { - "#bigint": "50" - }, - "timeAdvancement": { - "#bigint": "0" - }, - "validator": "node7" - }, - { - "consumerChain": "", - "consumersToStart": { - "#set": [] - }, - "consumersToStop": { - "#set": [] - }, - "kind": "VotingPowerChange", - "newVotingPower": { - "#bigint": "50" - }, - "timeAdvancement": { - "#bigint": "0" - }, - "validator": "node10" - }, - { - "consumerChain": "", - "consumersToStart": { - "#set": [ - "consumer2" - ] - }, - "consumersToStop": { - "#set": [] - }, - "kind": "EndAndBeginBlockForProvider", - "newVotingPower": { - "#bigint": "0" - }, - "timeAdvancement": { - "#bigint": "86400" - }, - "validator": "" - }, - { - "consumerChain": "", - "consumersToStart": { - "#set": [] - }, - "consumersToStop": { - "#set": [] - }, - "kind": "VotingPowerChange", - "newVotingPower": { - "#bigint": "50" - }, - "timeAdvancement": { - "#bigint": "0" - }, - "validator": "node2" - }, - { - "consumerChain": "", - "consumersToStart": { - "#set": [] - }, - "consumersToStop": { - "#set": [] - }, - "kind": "VotingPowerChange", - "newVotingPower": { - "#bigint": "100" - }, - "timeAdvancement": { - "#bigint": "0" - }, - "validator": "node4" - }, - { - "consumerChain": "", - "consumersToStart": { - "#set": [] - }, - "consumersToStop": { - "#set": [ - "consumer2" - ] - }, - "kind": "EndAndBeginBlockForProvider", - "newVotingPower": { - "#bigint": "0" - }, - "timeAdvancement": { - "#bigint": "604800" - }, - "validator": "" - }, - { - "consumerChain": "", - "consumersToStart": { - "#set": [] - }, - "consumersToStop": { - "#set": [] - }, - "kind": "EndAndBeginBlockForProvider", - "newVotingPower": { - "#bigint": "0" - }, - "timeAdvancement": { - "#bigint": "604800" - }, - "validator": "" - }, - { - "consumerChain": "", - "consumersToStart": { - "#set": [] - }, - "consumersToStop": { - "#set": [] - }, - "kind": "VotingPowerChange", - "newVotingPower": { - "#bigint": "0" - }, - "timeAdvancement": { - "#bigint": "0" - }, "validator": "node2" - }, - { - "consumerChain": "", - "consumersToStart": { - "#set": [] - }, - "consumersToStop": { - "#set": [] - }, - "kind": "EndAndBeginBlockForProvider", - "newVotingPower": { - "#bigint": "0" - }, - "timeAdvancement": { - "#bigint": "86400" - }, - "validator": "" - }, - { - "consumerChain": "", - "consumersToStart": { - "#set": [] - }, - "consumersToStop": { - "#set": [] - }, - "kind": "VotingPowerChange", - "newVotingPower": { - "#bigint": "100" - }, - "timeAdvancement": { - "#bigint": "0" - }, - "validator": "node10" - }, - { - "consumerChain": "", - "consumersToStart": { - "#set": [] - }, - "consumersToStop": { - "#set": [] - }, - "kind": "VotingPowerChange", - "newVotingPower": { - "#bigint": "50" - }, - "timeAdvancement": { - "#bigint": "0" - }, - "validator": "node6" - }, - { - "consumerChain": "", - "consumersToStart": { - "#set": [] - }, - "consumersToStop": { - "#set": [] - }, - "kind": "EndAndBeginBlockForProvider", - "newVotingPower": { - "#bigint": "0" - }, - "timeAdvancement": { - "#bigint": "1" - }, - "validator": "" - }, - { - "consumerChain": "", - "consumersToStart": { - "#set": [] - }, - "consumersToStop": { - "#set": [] - }, - "kind": "VotingPowerChange", - "newVotingPower": { - "#bigint": "0" - }, - "timeAdvancement": { - "#bigint": "0" - }, - "validator": "node6" } ] } From 2285a4cbba28abd4af5846f8a286d46f4c124807 Mon Sep 17 00:00:00 2001 From: Philip Offtermatt Date: Thu, 2 Nov 2023 09:03:29 +0100 Subject: [PATCH 004/111] Implement chain startup --- .../driver/{core_test.go => core.go} | 56 ++++---- .../core/quint_model/driver/driver/.gitignore | 2 - .../core/quint_model/driver/mbt_test.go | 126 +++++++++++++----- 3 files changed, 122 insertions(+), 62 deletions(-) rename tests/difference/core/quint_model/driver/{core_test.go => core.go} (89%) delete mode 100644 tests/difference/core/quint_model/driver/driver/.gitignore diff --git a/tests/difference/core/quint_model/driver/core_test.go b/tests/difference/core/quint_model/driver/core.go similarity index 89% rename from tests/difference/core/quint_model/driver/core_test.go rename to tests/difference/core/quint_model/driver/core.go index c04f2704db..5d21c98b0e 100644 --- a/tests/difference/core/quint_model/driver/core_test.go +++ b/tests/difference/core/quint_model/driver/core.go @@ -2,10 +2,10 @@ package main import ( "fmt" + "testing" "time" ibctesting "github.com/cosmos/ibc-go/v7/testing" - "github.com/stretchr/testify/suite" sdk "github.com/cosmos/cosmos-sdk/types" slashingkeeper "github.com/cosmos/cosmos-sdk/x/slashing/keeper" @@ -19,9 +19,7 @@ import ( ) type CoreSuite struct { - suite.Suite - - initState InitState + t *testing.T // simulate a relayed path simibc simibc.RelayedPath @@ -46,15 +44,11 @@ func (s *CoreSuite) chainID(chain string) string { // chain returns the TestChain for a given chain identifier func (s *CoreSuite) chain(chain string) *ibctesting.TestChain { - return map[string]*ibctesting.TestChain{P: s.providerChain(), C: s.consumerChain()}[chain] + return s.simibc.Chain(chain) } func (s *CoreSuite) providerChain() *ibctesting.TestChain { - return s.simibc.Chain(ibctesting.GetChainID(0)) -} - -func (s *CoreSuite) consumerChain() *ibctesting.TestChain { - return s.simibc.Chain(ibctesting.GetChainID(1)) + return s.chain("provider") } func (b *CoreSuite) providerStakingKeeper() stakingkeeper.Keeper { @@ -65,8 +59,8 @@ func (b *CoreSuite) providerSlashingKeeper() slashingkeeper.Keeper { return b.providerChain().App.(*appProvider.App).SlashingKeeper } -func (b *CoreSuite) consumerKeeper() consumerkeeper.Keeper { - return b.consumerChain().App.(*appConsumer.App).ConsumerKeeper +func (b *CoreSuite) consumerKeeper(chain string) consumerkeeper.Keeper { + return b.chain(chain).App.(*appConsumer.App).ConsumerKeeper } // height returns the height of the current header of chain @@ -97,16 +91,18 @@ func (s *CoreSuite) consAddr(i int64) sdk.ConsAddress { // isJailed returns the jail status of validator with id (ix) i func (s *CoreSuite) isJailed(i int64) bool { val, found := s.providerStakingKeeper().GetValidator(s.ctx(P), s.validator(i)) - s.Require().Truef(found, "GetValidator() -> !found") + if !found { + s.t.Errorf("GetValidator(%v) -> !found", s.validator(i)) + } return val.IsJailed() } -// consumerPower returns the power on the consumer chain for +// consumerPower returns the power on the consumer chain chain for // validator with id (ix) i -func (s *CoreSuite) consumerPower(i int64) (int64, error) { - v, found := s.consumerKeeper().GetCCValidator(s.ctx(C), s.validator(i)) +func (s *CoreSuite) consumerPower(i int64, chain string) (int64, error) { + v, found := s.consumerKeeper(chain).GetCCValidator(s.ctx(C), s.validator(i)) if !found { - return 0, fmt.Errorf("GetCCValidator() -> !found") + return 0, fmt.Errorf("GetCCValidator(%v) -> !found", s.validator(i)) } return v.Power, nil } @@ -115,7 +111,9 @@ func (s *CoreSuite) consumerPower(i int64) (int64, error) { // the delegator account to the validator with id (ix) i func (s *CoreSuite) delegation(i int64) int64 { d, found := s.providerStakingKeeper().GetDelegation(s.ctx(P), s.delegator(), s.validator(i)) - s.Require().Truef(found, "GetDelegation() -> !found") + if !found { + s.t.Errorf("GetDelegation(%v) -> !found", s.validator(i)) + } return d.Shares.TruncateInt64() } @@ -123,7 +121,9 @@ func (s *CoreSuite) delegation(i int64) int64 { // on the provider chain func (s *CoreSuite) validatorStatus(i int64) stakingtypes.BondStatus { v, found := s.providerStakingKeeper().GetValidator(s.ctx(P), s.validator(i)) - s.Require().Truef(found, "GetValidator() -> !found") + if !found { + s.t.Errorf("GetValidator(%v) -> !found", s.validator(i)) + } return v.GetStatus() } @@ -131,7 +131,9 @@ func (s *CoreSuite) validatorStatus(i int64) stakingtypes.BondStatus { // id (ix) i has delegated to it in total on the provider chain func (s *CoreSuite) providerTokens(i int64) int64 { v, found := s.providerStakingKeeper().GetValidator(s.ctx(P), s.validator(i)) - s.Require().Truef(found, "GetValidator() -> !found") + if !found { + s.t.Errorf("GetValidator(%v) -> !found", s.validator(i)) + } return v.Tokens.Int64() } @@ -170,14 +172,14 @@ func (s *CoreSuite) undelegate(val, amt int64) { // consumerSlash simulates a slash event occurring on the consumer chain. // It can be for a downtime or doublesign. -func (s *CoreSuite) consumerSlash(val sdk.ConsAddress, h int64, isDowntime bool) { +func (s *CoreSuite) consumerSlash(val sdk.ConsAddress, h int64, isDowntime bool, chain string) { kind := stakingtypes.Infraction_INFRACTION_DOUBLE_SIGN if isDowntime { kind = stakingtypes.Infraction_INFRACTION_DOWNTIME } ctx := s.ctx(C) before := len(ctx.EventManager().Events()) - s.consumerKeeper().SlashWithInfractionReason(ctx, val, h, 0, sdk.Dec{}, kind) + s.consumerKeeper(chain).SlashWithInfractionReason(ctx, val, h, 0, sdk.Dec{}, kind) // consumer module emits packets on slash, so these must be collected. evts := ctx.EventManager().Events() packets := simibc.ParsePacketsFromEvents(evts[before:]) @@ -200,11 +202,11 @@ func (s *CoreSuite) deliver(chain string, numPackets int) { s.simibc.DeliverPackets(s.chainID(chain), numPackets) } -// func (s *CoreSuite) endAndBeginBlock(chain string) { -// s.simibc.EndAndBeginBlock(s.chainID(chain), s.initState.BlockInterval, func() { -// s.compareModelAndSystemState() -// }) -// } +func (s *CoreSuite) endAndBeginBlock(chain string, timeAdvancement time.Duration) { + s.simibc.EndAndBeginBlock(s.chainID(chain), timeAdvancement, func() { + // s.compareModelAndSystemState() + }) +} // // compareModelAndSystemState compares the state in the SUT to the state in the // // the model. diff --git a/tests/difference/core/quint_model/driver/driver/.gitignore b/tests/difference/core/quint_model/driver/driver/.gitignore deleted file mode 100644 index a241de283a..0000000000 --- a/tests/difference/core/quint_model/driver/driver/.gitignore +++ /dev/null @@ -1,2 +0,0 @@ -*.log -debug.json \ No newline at end of file diff --git a/tests/difference/core/quint_model/driver/mbt_test.go b/tests/difference/core/quint_model/driver/mbt_test.go index 0cbd253d75..65d886eba0 100644 --- a/tests/difference/core/quint_model/driver/mbt_test.go +++ b/tests/difference/core/quint_model/driver/mbt_test.go @@ -6,28 +6,43 @@ import ( "testing" "time" - "cosmossdk.io/api/tendermint/abci" + abcitypes "github.com/cometbft/cometbft/abci/types" + cmtproto "github.com/cometbft/cometbft/proto/tendermint/types" + "github.com/cometbft/cometbft/types" cmttypes "github.com/cometbft/cometbft/types" "github.com/cosmos/cosmos-sdk/baseapp" codectypes "github.com/cosmos/cosmos-sdk/codec/types" cryptocodec "github.com/cosmos/cosmos-sdk/crypto/codec" "github.com/cosmos/cosmos-sdk/crypto/keys/secp256k1" sdk "github.com/cosmos/cosmos-sdk/types" + icstestingutils "github.com/cosmos/interchain-security/v3/testutil/ibc_testing" "github.com/cosmos/interchain-security/v3/testutil/integration" "github.com/informalsystems/itf-go/itf" - "github.com/stretchr/testify/require" authtypes "github.com/cosmos/cosmos-sdk/x/auth/types" banktypes "github.com/cosmos/cosmos-sdk/x/bank/types" stakingtypes "github.com/cosmos/cosmos-sdk/x/staking/types" + consumertypes "github.com/cosmos/interchain-security/v3/x/ccv/consumer/types" + ccvtypes "github.com/cosmos/interchain-security/v3/x/ccv/types" ibctesting "github.com/cosmos/ibc-go/v7/testing" ) -const INITIAL_ACCOUNT_BALANCE = 1000000000 +const ( + INITIAL_ACCOUNT_BALANCE = 1000000000 + + // Parameters used in the staking module + StakingParamsMaxEntries = 10000 + StakingParamsMaxValidators = 100 + StakingParamsUnbondingTime = 5 * 7 * 24 * time.Hour // 5 weeks +) + +// Parameters used by CometBFT +var ( + ConsensusParams = cmttypes.DefaultConsensusParams() +) func getAppBytesAndSenders( - t *testing.T, chainID string, app ibctesting.TestingApp, genesis map[string]json.RawMessage, @@ -68,29 +83,48 @@ func getAppBytesAndSenders( genesisAuth := authtypes.NewGenesisState(authtypes.DefaultParams(), accounts) genesis[authtypes.ModuleName] = app.AppCodec().MustMarshalJSON(genesisAuth) + // create initial validator set and its delegations stakingValidators := make([]stakingtypes.Validator, 0, len(nodes)) delegations := make([]stakingtypes.Delegation, 0, len(nodes)) // Sum bonded is needed for BondedPool account sumBonded := sdk.NewInt(0) - initValPowers := []abci.ValidatorUpdate{} + initValPowers := []abcitypes.ValidatorUpdate{} for i, val := range nodes { - tokens := sdk.NewInt(int64(val.VotingPower)) + _, valSetVal := initialValSet.GetByAddress(val.Address.Bytes()) + valAccount := accounts[i] + if valSetVal == nil { + log.Panicf("error getting validator with address %v from valSet %v", val, initialValSet) + } + tokens := sdk.NewInt(valSetVal.VotingPower) sumBonded = sumBonded.Add(tokens) pk, err := cryptocodec.FromTmPubKeyInterface(val.PubKey) - require.NoError(b.suite.T(), err) + if err != nil { + log.Panicf("error getting pubkey for val %v", val) + } pkAny, err := codectypes.NewAnyWithValue(pk) - require.NoError(b.suite.T(), err) + if err != nil { + log.Panicf("error getting pubkeyAny for val %v", val) + } + + var valStatus stakingtypes.BondStatus + if val.VotingPower > 0 { + valStatus = stakingtypes.Bonded + } else { + valStatus = stakingtypes.Unbonded + } + + delShares := sdk.NewDec(tokens.Int64()) // as many shares as tokens validator := stakingtypes.Validator{ OperatorAddress: sdk.ValAddress(val.Address).String(), ConsensusPubkey: pkAny, Jailed: false, - Status: status, + Status: valStatus, Tokens: tokens, - DelegatorShares: sumShares, + DelegatorShares: delShares, Description: stakingtypes.Description{}, UnbondingHeight: int64(0), UnbondingTime: time.Unix(0, 0).UTC(), @@ -101,13 +135,11 @@ func getAppBytesAndSenders( stakingValidators = append(stakingValidators, validator) // Store delegation from the model delegator account - delegations = append(delegations, stakingtypes.NewDelegation(accounts[0].GetAddress(), val.Address.Bytes(), delShares)) - // Remaining delegation is from extra account - delegations = append(delegations, stakingtypes.NewDelegation(accounts[1].GetAddress(), val.Address.Bytes(), sumShares.Sub(delShares))) + delegations = append(delegations, stakingtypes.NewDelegation(valAccount.GetAddress(), val.Address.Bytes(), delShares)) // add initial validator powers so consumer InitGenesis runs correctly pub, _ := val.ToProto() - initValPowers = append(initValPowers, abci.ValidatorUpdate{ + initValPowers = append(initValPowers, abcitypes.ValidatorUpdate{ Power: val.VotingPower, PubKey: pub.PubKey, }) @@ -123,17 +155,17 @@ func getAppBytesAndSenders( bondDenom = genesisStaking.Params.BondDenom } - if genesis[consumertypes.ModuleName] != nil { - app.AppCodec().MustUnmarshalJSON(genesis[consumertypes.ModuleName], &genesisConsumer) + if genesis[ccvtypes.ModuleName] != nil { + app.AppCodec().MustUnmarshalJSON(genesis[ccvtypes.ModuleName], &genesisConsumer) genesisConsumer.Provider.InitialValSet = initValPowers genesisConsumer.Params.Enabled = true - genesis[consumertypes.ModuleName] = app.AppCodec().MustMarshalJSON(&genesisConsumer) + genesis[ccvtypes.ModuleName] = app.AppCodec().MustMarshalJSON(&genesisConsumer) } // Set model parameters - genesisStaking.Params.MaxEntries = uint32(b.initState.MaxEntries) - genesisStaking.Params.MaxValidators = uint32(b.initState.MaxValidators) - genesisStaking.Params.UnbondingTime = b.initState.UnbondingP + genesisStaking.Params.MaxEntries = StakingParamsMaxEntries + genesisStaking.Params.MaxValidators = StakingParamsMaxValidators + genesisStaking.Params.UnbondingTime = StakingParamsUnbondingTime genesisStaking = *stakingtypes.NewGenesisState(genesisStaking.Params, stakingValidators, delegations) genesis[stakingtypes.ModuleName] = app.AppCodec().MustMarshalJSON(&genesisStaking) @@ -154,29 +186,34 @@ func getAppBytesAndSenders( genesis[banktypes.ModuleName] = app.AppCodec().MustMarshalJSON(genesisBank) stateBytes, err := json.MarshalIndent(genesis, "", " ") - require.NoError(b.suite.T(), err) + if err != nil { + log.Panicf("error marshalling genesis: %v", err) + } return stateBytes, senderAccounts } func newChain( + t *testing.T, coord *ibctesting.Coordinator, appInit icstestingutils.AppIniter, chainID string, - validators *tmtypes.ValidatorSet, - signers map[string]tmtypes.PrivValidator, + validators *cmttypes.ValidatorSet, + signers map[string]cmttypes.PrivValidator, + nodes []*cmttypes.Validator, ) *ibctesting.TestChain { app, genesis := appInit() baseapp.SetChainID(chainID)(app.GetBaseApp()) - stateBytes, senderAccounts := b.getAppBytesAndSenders(chainID, app, genesis, validators) + stateBytes, senderAccounts := getAppBytesAndSenders(chainID, app, genesis, validators, nodes) + protoConsParams := ConsensusParams.ToProto() app.InitChain( - abci.RequestInitChain{ + abcitypes.RequestInitChain{ ChainId: chainID, - Validators: []abci.ValidatorUpdate{}, - ConsensusParams: b.initState.ConsensusParams, + Validators: []abcitypes.ValidatorUpdate{}, + ConsensusParams: &protoConsParams, AppStateBytes: stateBytes, }, ) @@ -184,8 +221,8 @@ func newChain( app.Commit() app.BeginBlock( - abci.RequestBeginBlock{ - Header: tmproto.Header{ + abcitypes.RequestBeginBlock{ + Header: cmtproto.Header{ ChainID: chainID, Height: app.LastBlockHeight() + 1, AppHash: app.LastCommitID().Hash, @@ -196,11 +233,11 @@ func newChain( ) chain := &ibctesting.TestChain{ - T: b.suite.T(), + T: t, Coordinator: coord, ChainID: chainID, App: app, - CurrentHeader: tmproto.Header{ + CurrentHeader: cmtproto.Header{ ChainID: chainID, Height: 1, Time: coord.CurrentTime.UTC(), @@ -308,8 +345,30 @@ func TestItfTrace(t *testing.T) { t.Log(addressMap) t.Log(signers) + // get a slice of validators in the right order + nodes := make([]*cmttypes.Validator, len(valNames)) + for i, valName := range valNames { + nodes[i] = addressMap[valName] + } + + initValUpdates := types.TM2PB.ValidatorUpdates(valSet) + t.Log("Creating coordinator") - coordinator := ibctesting.NewCoordinator(t, len(consumers)) + coordinator := ibctesting.NewCoordinator(t, 0) // start without chains, which we add later + + // start provider + t.Log("Creating provider chain") + providerChain := newChain(t, coordinator, icstestingutils.ProviderAppIniter, "provider", valSet, signers, nodes) + coordinator.Chains["provider"] = providerChain + + // start consumer chains + for _, chain := range consumers { + t.Logf("Creating consumer chain %v", chain) + consumerChain := newChain(t, coordinator, icstestingutils.ConsumerAppIniter(initValUpdates), chain, valSet, signers, nodes) + coordinator.Chains[chain] = consumerChain + } + + t.Log("Started chains") // initializing the provider chain @@ -330,7 +389,8 @@ func TestItfTrace(t *testing.T) { case "VotingPowerChange": node := lastAction["validator"].Value.(string) newVotingPower := lastAction["newVotingPower"].Value.(int64) - t.Log(node, newVotingPower) + t.Logf("Setting provider voting power of %v to %v", node, newVotingPower) + case "EndAndBeginBlockForProvider": timeAdvancement := lastAction["timeAdvancement"].Value.(int64) consumersToStart := lastAction["consumersToStart"].Value.(itf.ListExprType) From ae5b106f40e71d64fd89590a72d95a98f6a4b290 Mon Sep 17 00:00:00 2001 From: Philip Offtermatt Date: Thu, 2 Nov 2023 13:19:04 +0100 Subject: [PATCH 005/111] Rewrite chain startup --- .../core/quint_model/driver/core.go | 261 ++--- .../core/quint_model/driver/mbt_test.go | 250 ---- .../core/quint_model/driver/setup.go | 1006 ++++++----------- 3 files changed, 473 insertions(+), 1044 deletions(-) diff --git a/tests/difference/core/quint_model/driver/core.go b/tests/difference/core/quint_model/driver/core.go index 5d21c98b0e..18d37ecd0e 100644 --- a/tests/difference/core/quint_model/driver/core.go +++ b/tests/difference/core/quint_model/driver/core.go @@ -6,6 +6,7 @@ import ( "time" ibctesting "github.com/cosmos/ibc-go/v7/testing" + "github.com/stretchr/testify/require" sdk "github.com/cosmos/cosmos-sdk/types" slashingkeeper "github.com/cosmos/cosmos-sdk/x/slashing/keeper" @@ -18,11 +19,18 @@ import ( consumerkeeper "github.com/cosmos/interchain-security/v3/x/ccv/consumer/keeper" ) +type ChainId string + +type Params struct { + VscTimeout time.Duration + CcvTimeout map[ChainId]time.Duration +} + type CoreSuite struct { t *testing.T - // simulate a relayed path - simibc simibc.RelayedPath + // simulate IBC network: for each consumer chain name, we have a path between consumer and provider + simibcs map[string]*simibc.RelayedPath // keep around validators for easy access valAddresses []sdk.ValAddress @@ -38,13 +46,18 @@ func (s *CoreSuite) ctx(chain string) sdk.Context { return s.chain(chain).GetContext() } +// returns the path from the given chain to the provider. +func (s *CoreSuite) path(chain string) *simibc.RelayedPath { + return s.simibcs[chain] +} + func (s *CoreSuite) chainID(chain string) string { return map[string]string{P: ibctesting.GetChainID(0), C: ibctesting.GetChainID(1)}[chain] } // chain returns the TestChain for a given chain identifier func (s *CoreSuite) chain(chain string) *ibctesting.TestChain { - return s.simibc.Chain(chain) + return s.path(chain).Chain(chain) } func (s *CoreSuite) providerChain() *ibctesting.TestChain { @@ -91,9 +104,8 @@ func (s *CoreSuite) consAddr(i int64) sdk.ConsAddress { // isJailed returns the jail status of validator with id (ix) i func (s *CoreSuite) isJailed(i int64) bool { val, found := s.providerStakingKeeper().GetValidator(s.ctx(P), s.validator(i)) - if !found { - s.t.Errorf("GetValidator(%v) -> !found", s.validator(i)) - } + + require.True(s.t, found, "GetValidator(%v) -> !found", s.validator(i)) return val.IsJailed() } @@ -111,9 +123,7 @@ func (s *CoreSuite) consumerPower(i int64, chain string) (int64, error) { // the delegator account to the validator with id (ix) i func (s *CoreSuite) delegation(i int64) int64 { d, found := s.providerStakingKeeper().GetDelegation(s.ctx(P), s.delegator(), s.validator(i)) - if !found { - s.t.Errorf("GetDelegation(%v) -> !found", s.validator(i)) - } + require.True(s.t, found, "GetDelegation(%v) -> !found", s.validator(i)) return d.Shares.TruncateInt64() } @@ -121,9 +131,7 @@ func (s *CoreSuite) delegation(i int64) int64 { // on the provider chain func (s *CoreSuite) validatorStatus(i int64) stakingtypes.BondStatus { v, found := s.providerStakingKeeper().GetValidator(s.ctx(P), s.validator(i)) - if !found { - s.t.Errorf("GetValidator(%v) -> !found", s.validator(i)) - } + require.True(s.t, found, "GetValidator(%v) -> !found", s.validator(i)) return v.GetStatus() } @@ -131,12 +139,18 @@ func (s *CoreSuite) validatorStatus(i int64) stakingtypes.BondStatus { // id (ix) i has delegated to it in total on the provider chain func (s *CoreSuite) providerTokens(i int64) int64 { v, found := s.providerStakingKeeper().GetValidator(s.ctx(P), s.validator(i)) - if !found { - s.t.Errorf("GetValidator(%v) -> !found", s.validator(i)) - } + require.True(s.t, found, "GetValidator(%v) -> !found", s.validator(i)) return v.Tokens.Int64() } +func (s *CoreSuite) validatorSet(chain string) []stakingtypes.Validator { + if chain == P { + return s.providerStakingKeeper().GetLastValidators(s.ctx(P)) + } else { + return s.consumerKeeper(chain).GetAllValidators(s.ctx(C)) + } +} + // delegatorBalance returns the balance of the delegator account func (s *CoreSuite) delegatorBalance() int64 { d := s.delegator() @@ -184,12 +198,12 @@ func (s *CoreSuite) consumerSlash(val sdk.ConsAddress, h int64, isDowntime bool, evts := ctx.EventManager().Events() packets := simibc.ParsePacketsFromEvents(evts[before:]) if len(packets) > 0 { - s.simibc.Outboxes.AddPacket(s.chainID(C), packets[0]) + s.path(chain).Outboxes.AddPacket(s.chainID(C), packets[0]) } } func (s *CoreSuite) updateClient(chain string) { - s.simibc.UpdateClient(s.chainID(chain)) + s.path(chain).UpdateClient(s.chainID(chain)) } // deliver numPackets packets from the network to chain @@ -197,147 +211,92 @@ func (s *CoreSuite) deliver(chain string, numPackets int) { // Makes sure client is updated s.updateClient(chain) // Deliver any outstanding acks - s.simibc.DeliverAcks(s.chainID(chain), 999999) + s.path(chain).DeliverAcks(s.chainID(chain), 999999) // Consume deliverable packets from the network - s.simibc.DeliverPackets(s.chainID(chain), numPackets) + s.path(chain).DeliverPackets(s.chainID(chain), numPackets) } -func (s *CoreSuite) endAndBeginBlock(chain string, timeAdvancement time.Duration) { - s.simibc.EndAndBeginBlock(s.chainID(chain), timeAdvancement, func() { - // s.compareModelAndSystemState() +func (s *CoreSuite) endAndBeginBlock(chain string, timeAdvancement time.Duration, preCommitCallback func()) { + s.path(chain).EndAndBeginBlock(s.chainID(chain), timeAdvancement, func() { }) } -// // compareModelAndSystemState compares the state in the SUT to the state in the -// // the model. -// func (s *CoreSuite) compareModelAndSystemState() { -// // Get a diagnostic for debugging -// diagnostic := s.traces.Diagnostic() -// chain := s.traces.Action().Chain - -// // Model time, height start at 0 so we need an offset for comparisons. -// sutTimeOffset := time.Unix(s.offsetTimeUnix, 0).Add(-s.initState.BlockInterval).UTC() -// modelTimeOffset := time.Duration(s.traces.Time()) * time.Second -// sutHeightOffset := s.offsetHeight - 1 -// modelHeightOffset := int64(s.traces.Height()) -// s.Require().Equalf(sutTimeOffset.Add(modelTimeOffset), s.time(chain), diagnostic+"%s Time mismatch", chain) -// s.Require().Equalf(sutHeightOffset+modelHeightOffset, s.height(chain), diagnostic+"%s Time mismatch", chain) -// if chain == P { -// for j := 0; j < s.initState.NumValidators; j++ { -// have := s.validatorStatus(int64(j)) -// s.Require().Equalf(s.traces.Status(j), have, diagnostic+"P bond status mismatch for val %d, expect %s, have %s", j, s.traces.Status(j).String(), have.String()) -// } -// for j := 0; j < s.initState.NumValidators; j++ { -// s.Require().Equalf(int64(s.traces.Tokens(j)), s.providerTokens(int64(j)), diagnostic+"P tokens mismatch for val %d", j) -// } -// s.Require().Equalf(int64(s.traces.DelegatorTokens()), s.delegatorBalance(), diagnostic+"P del balance mismatch") -// for j := 0; j < s.initState.NumValidators; j++ { -// a := s.traces.Jailed(j) != nil -// b := s.isJailed(int64(j)) -// s.Require().Equalf(a, b, diagnostic+"P jail status mismatch for val %d", j) -// } -// } -// if chain == C { -// for j := 0; j < s.initState.NumValidators; j++ { -// exp := s.traces.ConsumerPower(j) -// actual, err := s.consumerPower(int64(j)) -// if exp != nil { -// s.Require().Nilf(err, diagnostic+" validator not found") -// s.Require().Equalf(int64(*exp), actual, diagnostic+" power mismatch for val %d", j) -// } else { -// s.Require().Errorf(err, diagnostic+" power mismatch for val %d, expect 0 (nil), got %d", j, actual) -// } -// } -// } -// } +// // The state of the data returned is equivalent to the state of two chains +// // after a full handshake, but the precise order of steps used to reach the +// // state does not necessarily mimic the order of steps that happen in a +// // live scenario. +// func GetZeroState( +// suite *suite.Suite, +// initState InitState, +// ) (path *ibctesting.Path, addrs []sdk.ValAddress, heightLastCommitted, timeLastCommitted int64) { +// b := Builder{initState: initState, suite: suite} -// func (s *CoreSuite) executeTrace() { -// for i := range s.traces.Actions() { -// s.traces.CurrentActionIx = i - -// a := s.traces.Action() - -// switch a.Kind { -// case "Delegate": -// s.delegate( -// int64(a.Val), -// int64(a.Amt), -// ) -// case "Undelegate": -// s.undelegate( -// int64(a.Val), -// int64(a.Amt), -// ) -// case "ConsumerSlash": -// s.consumerSlash( -// s.consAddr(int64(a.Val)), -// // The SUT height is greater than the model height -// // because the SUT has to do initialization. -// int64(a.InfractionHeight)+s.offsetHeight, -// a.IsDowntime, -// ) -// case "UpdateClient": -// s.updateClient(a.Chain) -// case "Deliver": -// s.deliver(a.Chain, a.NumPackets) -// case "EndAndBeginBlock": -// s.endAndBeginBlock(a.Chain) -// default: -// s.Require().FailNow("Failed to parse action") -// } -// } -// } +// b.createProviderAndConsumer() -// // Test a set of traces -// func (s *CoreSuite) TestTraces() { -// s.traces = Traces{ -// Data: LoadTraces("traces.json"), -// } -// shortest := -1 -// shortestLen := 10000000000 -// for i := range s.traces.Data { -// if !s.Run(fmt.Sprintf("Trace ix: %d", i), func() { -// // Setup a new pair of chains for each trace -// s.SetupTest() - -// s.traces.CurrentTraceIx = i -// defer func() { -// // If a panic occurs, we trap it to print a diagnostic -// // and improve debugging experience. -// if r := recover(); r != nil { -// fmt.Println(s.traces.Diagnostic()) -// fmt.Println(r) -// // Double panic to halt. -// panic("Panic occurred during TestTraces") -// } -// }() -// // Record information about the trace, for debugging -// // diagnostics. -// s.executeTrace() -// }) { -// if s.traces.CurrentActionIx < shortestLen { -// shortest = s.traces.CurrentTraceIx -// shortestLen = s.traces.CurrentActionIx -// } -// } -// } -// fmt.Println("Shortest [traceIx, actionIx]:", shortest, shortestLen) -// } +// b.setProviderParams() + +// // This is the simplest way to initialize the slash meter +// // after a change to the param value. +// b.providerKeeper().InitializeSlashMeter(b.providerCtx()) + +// b.addExtraProviderValidators() + +// // Commit the additional validators +// b.coordinator.CommitBlock(b.provider()) + +// b.configurePath() + +// // Create a client for the provider chain to use, using ibc go testing. +// b.createProvidersLocalClient() + +// // Manually create a client for the consumer chain to and bootstrap +// // via genesis. +// clientState := b.createConsumersLocalClientGenesis() + +// consumerGenesis := b.createConsumerGenesis(clientState) + +// b.consumerKeeper().InitGenesis(b.consumerCtx(), consumerGenesis) + +// // Client ID is set in InitGenesis and we treat it as a block box. So +// // must query it to use it with the endpoint. +// clientID, _ := b.consumerKeeper().GetProviderClientID(b.consumerCtx()) +// b.consumerEndpoint().ClientID = clientID + +// // Handshake +// b.coordinator.CreateConnections(b.path) +// b.coordinator.CreateChannels(b.path) + +// // Usually the consumer sets the channel ID when it receives a first VSC packet +// // to the provider. For testing purposes, we can set it here. This is because +// // we model a blank slate: a provider and consumer that have fully established +// // their channel, and are ready for anything to happen. +// b.consumerKeeper().SetProviderChannel(b.consumerCtx(), b.consumerEndpoint().ChannelID) + +// // Catch up consumer height to provider height. The provider was one ahead +// // from committing additional validators. +// simibc.EndBlock(b.consumer(), func() {}) + +// simibc.BeginBlock(b.consumer(), initState.BlockInterval) +// simibc.BeginBlock(b.provider(), initState.BlockInterval) + +// // Commit a block on both chains, giving us two committed headers from +// // the same time and height. This is the starting point for all our +// // data driven testing. +// lastProviderHeader, _ := simibc.EndBlock(b.provider(), func() {}) +// lastConsumerHeader, _ := simibc.EndBlock(b.consumer(), func() {}) + +// // Want the height and time of last COMMITTED block +// heightLastCommitted = b.provider().CurrentHeader.Height +// timeLastCommitted = b.provider().CurrentHeader.Time.Unix() + +// // Get ready to update clients. +// simibc.BeginBlock(b.provider(), initState.BlockInterval) +// simibc.BeginBlock(b.consumer(), initState.BlockInterval) + +// // Update clients to the latest header. Now everything is ready to go! +// // Ignore errors for brevity. Everything is checked in Assuptions test. +// _ = simibc.UpdateReceiverClient(b.consumerEndpoint(), b.providerEndpoint(), lastConsumerHeader) +// _ = simibc.UpdateReceiverClient(b.providerEndpoint(), b.consumerEndpoint(), lastProviderHeader) -// // TODO: diff tests will eventually be replaced by quint tests, and all this code could then be deleted. -// // Until that decision is finalized, we'll just comment out the top-level test. - -// // func TestCoreSuite(t *testing.T) { -// // suite.Run(t, new(CoreSuite)) -// // } - -// // SetupTest sets up the test suite in a 'zero' state which matches -// // the initial state in the model. -// func (s *CoreSuite) SetupTest() { -// path, valAddresses, offsetHeight, offsetTimeUnix := GetZeroState(&s.Suite, initStateVar) -// s.initState = initStateVar -// s.valAddresses = valAddresses -// s.offsetHeight = offsetHeight -// s.offsetTimeUnix = offsetTimeUnix -// s.simibc = simibc.MakeRelayedPath(s.Suite.T(), path) +// return b.path, b.valAddresses, heightLastCommitted, timeLastCommitted // } diff --git a/tests/difference/core/quint_model/driver/mbt_test.go b/tests/difference/core/quint_model/driver/mbt_test.go index 65d886eba0..5325a2dc45 100644 --- a/tests/difference/core/quint_model/driver/mbt_test.go +++ b/tests/difference/core/quint_model/driver/mbt_test.go @@ -1,263 +1,17 @@ package main import ( - "encoding/json" "log" "testing" - "time" - abcitypes "github.com/cometbft/cometbft/abci/types" - cmtproto "github.com/cometbft/cometbft/proto/tendermint/types" - "github.com/cometbft/cometbft/types" cmttypes "github.com/cometbft/cometbft/types" - "github.com/cosmos/cosmos-sdk/baseapp" - codectypes "github.com/cosmos/cosmos-sdk/codec/types" - cryptocodec "github.com/cosmos/cosmos-sdk/crypto/codec" - "github.com/cosmos/cosmos-sdk/crypto/keys/secp256k1" - sdk "github.com/cosmos/cosmos-sdk/types" icstestingutils "github.com/cosmos/interchain-security/v3/testutil/ibc_testing" "github.com/cosmos/interchain-security/v3/testutil/integration" "github.com/informalsystems/itf-go/itf" - authtypes "github.com/cosmos/cosmos-sdk/x/auth/types" - banktypes "github.com/cosmos/cosmos-sdk/x/bank/types" - stakingtypes "github.com/cosmos/cosmos-sdk/x/staking/types" - consumertypes "github.com/cosmos/interchain-security/v3/x/ccv/consumer/types" - ccvtypes "github.com/cosmos/interchain-security/v3/x/ccv/types" - ibctesting "github.com/cosmos/ibc-go/v7/testing" ) -const ( - INITIAL_ACCOUNT_BALANCE = 1000000000 - - // Parameters used in the staking module - StakingParamsMaxEntries = 10000 - StakingParamsMaxValidators = 100 - StakingParamsUnbondingTime = 5 * 7 * 24 * time.Hour // 5 weeks -) - -// Parameters used by CometBFT -var ( - ConsensusParams = cmttypes.DefaultConsensusParams() -) - -func getAppBytesAndSenders( - chainID string, - app ibctesting.TestingApp, - genesis map[string]json.RawMessage, - initialValSet *cmttypes.ValidatorSet, - // the list of nodes that will be created, even ones that have no voting power initially - nodes []*cmttypes.Validator, -) ([]byte, []ibctesting.SenderAccount) { - accounts := []authtypes.GenesisAccount{} - balances := []banktypes.Balance{} - senderAccounts := []ibctesting.SenderAccount{} - - // Create genesis accounts. - for i := 0; i < len(nodes); i++ { - pk := secp256k1.GenPrivKey() - acc := authtypes.NewBaseAccount(pk.PubKey().Address().Bytes(), pk.PubKey(), uint64(i), 0) - - // Give enough funds for many delegations - // Extra units are to delegate to extra validators created later - // in order to bond them and still have INITIAL_DELEGATOR_TOKENS remaining - bal := banktypes.Balance{ - Address: acc.GetAddress().String(), - Coins: sdk.NewCoins(sdk.NewCoin(sdk.DefaultBondDenom, - sdk.NewIntFromUint64(INITIAL_ACCOUNT_BALANCE))), - } - - accounts = append(accounts, acc) - balances = append(balances, bal) - - senderAccount := ibctesting.SenderAccount{ - SenderAccount: acc, - SenderPrivKey: pk, - } - - senderAccounts = append(senderAccounts, senderAccount) - } - - // set genesis accounts - genesisAuth := authtypes.NewGenesisState(authtypes.DefaultParams(), accounts) - genesis[authtypes.ModuleName] = app.AppCodec().MustMarshalJSON(genesisAuth) - - // create initial validator set and its delegations - stakingValidators := make([]stakingtypes.Validator, 0, len(nodes)) - delegations := make([]stakingtypes.Delegation, 0, len(nodes)) - - // Sum bonded is needed for BondedPool account - sumBonded := sdk.NewInt(0) - initValPowers := []abcitypes.ValidatorUpdate{} - - for i, val := range nodes { - _, valSetVal := initialValSet.GetByAddress(val.Address.Bytes()) - valAccount := accounts[i] - if valSetVal == nil { - log.Panicf("error getting validator with address %v from valSet %v", val, initialValSet) - } - tokens := sdk.NewInt(valSetVal.VotingPower) - sumBonded = sumBonded.Add(tokens) - - pk, err := cryptocodec.FromTmPubKeyInterface(val.PubKey) - if err != nil { - log.Panicf("error getting pubkey for val %v", val) - } - pkAny, err := codectypes.NewAnyWithValue(pk) - if err != nil { - log.Panicf("error getting pubkeyAny for val %v", val) - } - - var valStatus stakingtypes.BondStatus - if val.VotingPower > 0 { - valStatus = stakingtypes.Bonded - } else { - valStatus = stakingtypes.Unbonded - } - - delShares := sdk.NewDec(tokens.Int64()) // as many shares as tokens - - validator := stakingtypes.Validator{ - OperatorAddress: sdk.ValAddress(val.Address).String(), - ConsensusPubkey: pkAny, - Jailed: false, - Status: valStatus, - Tokens: tokens, - DelegatorShares: delShares, - Description: stakingtypes.Description{}, - UnbondingHeight: int64(0), - UnbondingTime: time.Unix(0, 0).UTC(), - Commission: stakingtypes.NewCommission(sdk.ZeroDec(), sdk.ZeroDec(), sdk.ZeroDec()), - MinSelfDelegation: sdk.ZeroInt(), - } - - stakingValidators = append(stakingValidators, validator) - - // Store delegation from the model delegator account - delegations = append(delegations, stakingtypes.NewDelegation(valAccount.GetAddress(), val.Address.Bytes(), delShares)) - - // add initial validator powers so consumer InitGenesis runs correctly - pub, _ := val.ToProto() - initValPowers = append(initValPowers, abcitypes.ValidatorUpdate{ - Power: val.VotingPower, - PubKey: pub.PubKey, - }) - } - - bondDenom := sdk.DefaultBondDenom - genesisStaking := stakingtypes.GenesisState{} - genesisConsumer := consumertypes.GenesisState{} - - if genesis[stakingtypes.ModuleName] != nil { - // If staking module genesis already exists - app.AppCodec().MustUnmarshalJSON(genesis[stakingtypes.ModuleName], &genesisStaking) - bondDenom = genesisStaking.Params.BondDenom - } - - if genesis[ccvtypes.ModuleName] != nil { - app.AppCodec().MustUnmarshalJSON(genesis[ccvtypes.ModuleName], &genesisConsumer) - genesisConsumer.Provider.InitialValSet = initValPowers - genesisConsumer.Params.Enabled = true - genesis[ccvtypes.ModuleName] = app.AppCodec().MustMarshalJSON(&genesisConsumer) - } - - // Set model parameters - genesisStaking.Params.MaxEntries = StakingParamsMaxEntries - genesisStaking.Params.MaxValidators = StakingParamsMaxValidators - genesisStaking.Params.UnbondingTime = StakingParamsUnbondingTime - genesisStaking = *stakingtypes.NewGenesisState(genesisStaking.Params, stakingValidators, delegations) - genesis[stakingtypes.ModuleName] = app.AppCodec().MustMarshalJSON(&genesisStaking) - - // add bonded amount to bonded pool module account - balances = append(balances, banktypes.Balance{ - Address: authtypes.NewModuleAddress(stakingtypes.BondedPoolName).String(), - Coins: sdk.Coins{sdk.NewCoin(bondDenom, sumBonded)}, - }) - - // add unbonded amount - balances = append(balances, banktypes.Balance{ - Address: authtypes.NewModuleAddress(stakingtypes.NotBondedPoolName).String(), - Coins: sdk.Coins{sdk.NewCoin(bondDenom, sdk.ZeroInt())}, - }) - - // update total funds supply - genesisBank := banktypes.NewGenesisState(banktypes.DefaultGenesisState().Params, balances, sdk.NewCoins(), []banktypes.Metadata{}, []banktypes.SendEnabled{}) - genesis[banktypes.ModuleName] = app.AppCodec().MustMarshalJSON(genesisBank) - - stateBytes, err := json.MarshalIndent(genesis, "", " ") - if err != nil { - log.Panicf("error marshalling genesis: %v", err) - } - - return stateBytes, senderAccounts -} - -func newChain( - t *testing.T, - coord *ibctesting.Coordinator, - appInit icstestingutils.AppIniter, - chainID string, - validators *cmttypes.ValidatorSet, - signers map[string]cmttypes.PrivValidator, - nodes []*cmttypes.Validator, -) *ibctesting.TestChain { - app, genesis := appInit() - - baseapp.SetChainID(chainID)(app.GetBaseApp()) - - stateBytes, senderAccounts := getAppBytesAndSenders(chainID, app, genesis, validators, nodes) - - protoConsParams := ConsensusParams.ToProto() - app.InitChain( - abcitypes.RequestInitChain{ - ChainId: chainID, - Validators: []abcitypes.ValidatorUpdate{}, - ConsensusParams: &protoConsParams, - AppStateBytes: stateBytes, - }, - ) - - app.Commit() - - app.BeginBlock( - abcitypes.RequestBeginBlock{ - Header: cmtproto.Header{ - ChainID: chainID, - Height: app.LastBlockHeight() + 1, - AppHash: app.LastCommitID().Hash, - ValidatorsHash: validators.Hash(), - NextValidatorsHash: validators.Hash(), - }, - }, - ) - - chain := &ibctesting.TestChain{ - T: t, - Coordinator: coord, - ChainID: chainID, - App: app, - CurrentHeader: cmtproto.Header{ - ChainID: chainID, - Height: 1, - Time: coord.CurrentTime.UTC(), - }, - QueryServer: app.GetIBCKeeper(), - TxConfig: app.GetTxConfig(), - Codec: app.AppCodec(), - Vals: validators, - NextVals: validators, - Signers: signers, - SenderPrivKey: senderAccounts[0].SenderPrivKey, - SenderAccount: senderAccounts[0].SenderAccount, - SenderAccounts: senderAccounts, - } - - coord.CommitBlock(chain) - - return chain -} - // Given a map from node names to voting powers, create a validator set with the right voting powers. // All nodes should be included in the voting power map, even if they have voting power 0. // This way, the nodes will have validators (that can later be assigned voting powers) and signers created for them. @@ -351,8 +105,6 @@ func TestItfTrace(t *testing.T) { nodes[i] = addressMap[valName] } - initValUpdates := types.TM2PB.ValidatorUpdates(valSet) - t.Log("Creating coordinator") coordinator := ibctesting.NewCoordinator(t, 0) // start without chains, which we add later @@ -370,8 +122,6 @@ func TestItfTrace(t *testing.T) { t.Log("Started chains") - // initializing the provider chain - t.Log("Reading the trace...") for index, state := range trace.States { diff --git a/tests/difference/core/quint_model/driver/setup.go b/tests/difference/core/quint_model/driver/setup.go index 4ebaa1b009..4c7ca4ae6a 100644 --- a/tests/difference/core/quint_model/driver/setup.go +++ b/tests/difference/core/quint_model/driver/setup.go @@ -1,644 +1,364 @@ -// package main - -// import ( -// "bytes" -// cryptoEd25519 "crypto/ed25519" -// "encoding/json" -// "time" - -// clienttypes "github.com/cosmos/ibc-go/v7/modules/core/02-client/types" -// channeltypes "github.com/cosmos/ibc-go/v7/modules/core/04-channel/types" -// commitmenttypes "github.com/cosmos/ibc-go/v7/modules/core/23-commitment/types" -// ibctmtypes "github.com/cosmos/ibc-go/v7/modules/light-clients/07-tendermint" -// ibctesting "github.com/cosmos/ibc-go/v7/testing" -// "github.com/cosmos/ibc-go/v7/testing/mock" -// "github.com/stretchr/testify/require" -// "github.com/stretchr/testify/suite" - -// "github.com/cosmos/cosmos-sdk/baseapp" -// codectypes "github.com/cosmos/cosmos-sdk/codec/types" -// cryptocodec "github.com/cosmos/cosmos-sdk/crypto/codec" -// cosmosEd25519 "github.com/cosmos/cosmos-sdk/crypto/keys/ed25519" -// "github.com/cosmos/cosmos-sdk/crypto/keys/secp256k1" -// sdk "github.com/cosmos/cosmos-sdk/types" -// authtypes "github.com/cosmos/cosmos-sdk/x/auth/types" -// banktypes "github.com/cosmos/cosmos-sdk/x/bank/types" -// slashingkeeper "github.com/cosmos/cosmos-sdk/x/slashing/keeper" -// slashingtypes "github.com/cosmos/cosmos-sdk/x/slashing/types" -// stakingkeeper "github.com/cosmos/cosmos-sdk/x/staking/keeper" -// stakingtypes "github.com/cosmos/cosmos-sdk/x/staking/types" - -// abci "github.com/cometbft/cometbft/abci/types" -// tmproto "github.com/cometbft/cometbft/proto/tendermint/types" -// tmtypes "github.com/cometbft/cometbft/types" - -// appConsumer "github.com/cosmos/interchain-security/v3/app/consumer" -// appProvider "github.com/cosmos/interchain-security/v3/app/provider" -// icstestingutils "github.com/cosmos/interchain-security/v3/testutil/ibc_testing" -// testutil "github.com/cosmos/interchain-security/v3/testutil/integration" -// consumerkeeper "github.com/cosmos/interchain-security/v3/x/ccv/consumer/keeper" -// consumertypes "github.com/cosmos/interchain-security/v3/x/ccv/consumer/types" -// providerkeeper "github.com/cosmos/interchain-security/v3/x/ccv/provider/keeper" -// ccv "github.com/cosmos/interchain-security/v3/x/ccv/types" -// ) - -// type Builder struct { -// suite *suite.Suite -// path *ibctesting.Path -// coordinator *ibctesting.Coordinator -// valAddresses []sdk.ValAddress -// initState InitState -// } - -// func (b *Builder) provider() *ibctesting.TestChain { -// return b.coordinator.GetChain(ibctesting.GetChainID(0)) -// } - -// func (b *Builder) consumer() *ibctesting.TestChain { -// return b.coordinator.GetChain(ibctesting.GetChainID(1)) -// } - -// func (b *Builder) providerCtx() sdk.Context { -// return b.provider().GetContext() -// } - -// func (b *Builder) consumerCtx() sdk.Context { -// return b.consumer().GetContext() -// } - -// func (b *Builder) providerStakingKeeper() stakingkeeper.Keeper { -// return *b.provider().App.(*appProvider.App).StakingKeeper -// } - -// func (b *Builder) providerSlashingKeeper() slashingkeeper.Keeper { -// return b.provider().App.(*appProvider.App).SlashingKeeper -// } - -// func (b *Builder) providerKeeper() providerkeeper.Keeper { -// return b.provider().App.(*appProvider.App).ProviderKeeper -// } - -// func (b *Builder) consumerKeeper() consumerkeeper.Keeper { -// return b.consumer().App.(*appConsumer.App).ConsumerKeeper -// } - -// func (b *Builder) providerEndpoint() *ibctesting.Endpoint { -// return b.path.EndpointB -// } - -// func (b *Builder) consumerEndpoint() *ibctesting.Endpoint { -// return b.path.EndpointA -// } - -// func (b *Builder) validator(i int64) sdk.ValAddress { -// return b.valAddresses[i] -// } - -// func (b *Builder) consAddr(i int64) sdk.ConsAddress { -// return sdk.ConsAddress(b.validator(i)) -// } - -// // getValidatorPK returns the validator private key using the given seed index -// func (b *Builder) getValidatorPK(seedIx int) mock.PV { -// seed := []byte(b.initState.PKSeeds[seedIx]) -// return mock.PV{PrivKey: &cosmosEd25519.PrivKey{Key: cryptoEd25519.NewKeyFromSeed(seed)}} //nolint:staticcheck // SA1019: cosmosEd25519.PrivKey is deprecated: PrivKey defines a ed25519 private key. NOTE: ed25519 keys must not be used in SDK apps except in a tendermint validator context. -// } - -// func (b *Builder) getAppBytesAndSenders( -// chainID string, -// app ibctesting.TestingApp, -// genesis map[string]json.RawMessage, -// validators *tmtypes.ValidatorSet, -// ) ([]byte, []ibctesting.SenderAccount) { -// accounts := []authtypes.GenesisAccount{} -// balances := []banktypes.Balance{} -// senderAccounts := []ibctesting.SenderAccount{} - -// // Create genesis accounts. -// for i := 0; i < b.initState.MaxValidators; i++ { -// pk := secp256k1.GenPrivKey() -// acc := authtypes.NewBaseAccount(pk.PubKey().Address().Bytes(), pk.PubKey(), uint64(i), 0) - -// // Give enough funds for many delegations -// // Extra units are to delegate to extra validators created later -// // in order to bond them and still have INITIAL_DELEGATOR_TOKENS remaining -// extra := 0 -// for j := 0; j < b.initState.NumValidators; j++ { -// if b.initState.ValStates.Status[j] != stakingtypes.Bonded { -// extra += b.initState.ValStates.Delegation[j] -// } -// } -// amt := uint64(b.initState.InitialDelegatorTokens + extra) - -// bal := banktypes.Balance{ -// Address: acc.GetAddress().String(), -// Coins: sdk.NewCoins(sdk.NewCoin(sdk.DefaultBondDenom, sdk.NewIntFromUint64(amt))), -// } - -// accounts = append(accounts, acc) -// balances = append(balances, bal) - -// senderAccount := ibctesting.SenderAccount{ -// SenderAccount: acc, -// SenderPrivKey: pk, -// } - -// senderAccounts = append(senderAccounts, senderAccount) -// } - -// // set genesis accounts -// genesisAuth := authtypes.NewGenesisState(authtypes.DefaultParams(), accounts) -// genesis[authtypes.ModuleName] = app.AppCodec().MustMarshalJSON(genesisAuth) - -// stakingValidators := make([]stakingtypes.Validator, 0, len(validators.Validators)) -// delegations := make([]stakingtypes.Delegation, 0, len(validators.Validators)) - -// // Sum bonded is needed for BondedPool account -// sumBonded := sdk.NewInt(0) -// initValPowers := []abci.ValidatorUpdate{} - -// for i, val := range validators.Validators { -// status := b.initState.ValStates.Status[i] -// delegation := b.initState.ValStates.Delegation[i] -// extra := b.initState.ValStates.ValidatorExtraTokens[i] - -// tokens := sdk.NewInt(int64(delegation + extra)) -// b.suite.Require().Equal(status, stakingtypes.Bonded, "All genesis validators should be bonded") -// sumBonded = sumBonded.Add(tokens) -// // delegator account receives delShares shares -// delShares := sdk.NewDec(int64(delegation)) -// // validator has additional sumShares due to extra units -// sumShares := sdk.NewDec(int64(delegation + extra)) - -// pk, err := cryptocodec.FromTmPubKeyInterface(val.PubKey) -// require.NoError(b.suite.T(), err) -// pkAny, err := codectypes.NewAnyWithValue(pk) -// require.NoError(b.suite.T(), err) - -// validator := stakingtypes.Validator{ -// OperatorAddress: sdk.ValAddress(val.Address).String(), -// ConsensusPubkey: pkAny, -// Jailed: false, -// Status: status, -// Tokens: tokens, -// DelegatorShares: sumShares, -// Description: stakingtypes.Description{}, -// UnbondingHeight: int64(0), -// UnbondingTime: time.Unix(0, 0).UTC(), -// Commission: stakingtypes.NewCommission(sdk.ZeroDec(), sdk.ZeroDec(), sdk.ZeroDec()), -// MinSelfDelegation: sdk.ZeroInt(), -// } - -// stakingValidators = append(stakingValidators, validator) - -// // Store delegation from the model delegator account -// delegations = append(delegations, stakingtypes.NewDelegation(accounts[0].GetAddress(), val.Address.Bytes(), delShares)) -// // Remaining delegation is from extra account -// delegations = append(delegations, stakingtypes.NewDelegation(accounts[1].GetAddress(), val.Address.Bytes(), sumShares.Sub(delShares))) - -// // add initial validator powers so consumer InitGenesis runs correctly -// pub, _ := val.ToProto() -// initValPowers = append(initValPowers, abci.ValidatorUpdate{ -// Power: val.VotingPower, -// PubKey: pub.PubKey, -// }) -// } - -// bondDenom := sdk.DefaultBondDenom -// genesisStaking := stakingtypes.GenesisState{} -// genesisConsumer := consumertypes.GenesisState{} - -// if genesis[stakingtypes.ModuleName] != nil { -// // If staking module genesis already exists -// app.AppCodec().MustUnmarshalJSON(genesis[stakingtypes.ModuleName], &genesisStaking) -// bondDenom = genesisStaking.Params.BondDenom -// } - -// if genesis[consumertypes.ModuleName] != nil { -// app.AppCodec().MustUnmarshalJSON(genesis[consumertypes.ModuleName], &genesisConsumer) -// genesisConsumer.Provider.InitialValSet = initValPowers -// genesisConsumer.Params.Enabled = true -// genesis[consumertypes.ModuleName] = app.AppCodec().MustMarshalJSON(&genesisConsumer) -// } - -// // Set model parameters -// genesisStaking.Params.MaxEntries = uint32(b.initState.MaxEntries) -// genesisStaking.Params.MaxValidators = uint32(b.initState.MaxValidators) -// genesisStaking.Params.UnbondingTime = b.initState.UnbondingP -// genesisStaking = *stakingtypes.NewGenesisState(genesisStaking.Params, stakingValidators, delegations) -// genesis[stakingtypes.ModuleName] = app.AppCodec().MustMarshalJSON(&genesisStaking) - -// // add bonded amount to bonded pool module account -// balances = append(balances, banktypes.Balance{ -// Address: authtypes.NewModuleAddress(stakingtypes.BondedPoolName).String(), -// Coins: sdk.Coins{sdk.NewCoin(bondDenom, sumBonded)}, -// }) - -// // add unbonded amount -// balances = append(balances, banktypes.Balance{ -// Address: authtypes.NewModuleAddress(stakingtypes.NotBondedPoolName).String(), -// Coins: sdk.Coins{sdk.NewCoin(bondDenom, sdk.ZeroInt())}, -// }) - -// // update total funds supply -// genesisBank := banktypes.NewGenesisState(banktypes.DefaultGenesisState().Params, balances, sdk.NewCoins(), []banktypes.Metadata{}, []banktypes.SendEnabled{}) -// genesis[banktypes.ModuleName] = app.AppCodec().MustMarshalJSON(genesisBank) - -// stateBytes, err := json.MarshalIndent(genesis, "", " ") -// require.NoError(b.suite.T(), err) - -// return stateBytes, senderAccounts -// } - -// func (b *Builder) newChain( -// coord *ibctesting.Coordinator, -// appInit icstestingutils.AppIniter, -// chainID string, -// validators *tmtypes.ValidatorSet, -// signers map[string]tmtypes.PrivValidator, -// ) *ibctesting.TestChain { -// app, genesis := appInit() - -// baseapp.SetChainID(chainID)(app.GetBaseApp()) - -// stateBytes, senderAccounts := b.getAppBytesAndSenders(chainID, app, genesis, validators) - -// app.InitChain( -// abci.RequestInitChain{ -// ChainId: chainID, -// Validators: []abci.ValidatorUpdate{}, -// ConsensusParams: b.initState.ConsensusParams, -// AppStateBytes: stateBytes, -// }, -// ) - -// app.Commit() - -// app.BeginBlock( -// abci.RequestBeginBlock{ -// Header: tmproto.Header{ -// ChainID: chainID, -// Height: app.LastBlockHeight() + 1, -// AppHash: app.LastCommitID().Hash, -// ValidatorsHash: validators.Hash(), -// NextValidatorsHash: validators.Hash(), -// }, -// }, -// ) - -// chain := &ibctesting.TestChain{ -// T: b.suite.T(), -// Coordinator: coord, -// ChainID: chainID, -// App: app, -// CurrentHeader: tmproto.Header{ -// ChainID: chainID, -// Height: 1, -// Time: coord.CurrentTime.UTC(), -// }, -// QueryServer: app.GetIBCKeeper(), -// TxConfig: app.GetTxConfig(), -// Codec: app.AppCodec(), -// Vals: validators, -// NextVals: validators, -// Signers: signers, -// SenderPrivKey: senderAccounts[0].SenderPrivKey, -// SenderAccount: senderAccounts[0].SenderAccount, -// SenderAccounts: senderAccounts, -// } - -// coord.CommitBlock(chain) - -// return chain -// } - -// func (b *Builder) createValidators(addresses []sdk.ValAddress) (*tmtypes.ValidatorSet, map[string]tmtypes.PrivValidator) { -// signers := map[string]tmtypes.PrivValidator{} -// validators := []*tmtypes.Validator{} - -// for i, power := range b.initState.ValStates.Tokens { -// if b.initState.ValStates.Status[i] != stakingtypes.Bonded { -// continue -// } -// privVal := b.getValidatorPK(i) - -// pubKey, err := privVal.GetPubKey() -// require.NoError(b.suite.T(), err) - -// // Compute address -// addr, err := sdk.ValAddressFromHex(pubKey.Address().String()) -// require.NoError(b.suite.T(), err) -// addresses = append(addresses, addr) - -// // Save signer -// signers[pubKey.Address().String()] = privVal - -// // Save validator with power -// validators = append(validators, tmtypes.NewValidator(pubKey, int64(power))) -// } - -// return tmtypes.NewValidatorSet(validators), signers, addresses -// } - -// func (b *Builder) createChain(initialValSet *tmproto.ValidatorSet) { -// // Create provider -// b.coordinator.Chains["provider"] = b.newChain( -// b.coordinator, -// icstestingutils.ProviderAppIniter, -// "provider", validators, signers) - -// valUpdates := testutil.ToValidatorUpdates(b.suite.T(), validators) -// } - -// func (b *Builder) createProviderAndConsumer() { -// coordinator := ibctesting.NewCoordinator(b.suite.T(), 0) - -// // Create validators -// validators, signers, addresses := b.createValidators() -// // Create provider -// coordinator.Chains[ibctesting.GetChainID(0)] = b.newChain(coordinator, icstestingutils.ProviderAppIniter, ibctesting.GetChainID(0), validators, signers) -// // Create consumer, using the same validators. -// valUpdates := testutil.ToValidatorUpdates(b.suite.T(), validators) -// coordinator.Chains[ibctesting.GetChainID(1)] = b.newChain(coordinator, icstestingutils.ConsumerAppIniter(valUpdates), ibctesting.GetChainID(1), validators, signers) - -// b.coordinator = coordinator -// b.valAddresses = addresses -// } - -// // setSigningInfos sets the validator signing info in the provider Slashing module -// func (b *Builder) setSigningInfos() { -// for i := 0; i < b.initState.NumValidators; i++ { -// info := slashingtypes.NewValidatorSigningInfo( -// b.consAddr(int64(i)), -// b.provider().CurrentHeader.GetHeight(), -// 0, -// time.Unix(0, 0), -// false, -// 0, -// ) -// b.providerSlashingKeeper().SetValidatorSigningInfo(b.providerCtx(), b.consAddr(int64(i)), info) -// } -// } - -// // Checks that the lexicographic ordering of validator addresses as computed in -// // the staking module match the ordering of validators in the model. -// func (b *Builder) ensureValidatorLexicographicOrderingMatchesModel() { -// check := func(lesser, greater sdk.ValAddress) { -// lesserV, _ := b.providerStakingKeeper().GetValidator(b.providerCtx(), lesser) -// greaterV, _ := b.providerStakingKeeper().GetValidator(b.providerCtx(), greater) -// lesserKey := stakingtypes.GetValidatorsByPowerIndexKey(lesserV, sdk.DefaultPowerReduction) -// greaterKey := stakingtypes.GetValidatorsByPowerIndexKey(greaterV, sdk.DefaultPowerReduction) -// // The result will be 0 if a==b, -1 if a < b, and +1 if a > b. -// res := bytes.Compare(lesserKey, greaterKey) -// // Confirm that validator precedence is the same in code as in model -// b.suite.Require().Equal(-1, res) -// } - -// // In order to match the model to the system under test it is necessary -// // to enforce a strict lexicographic ordering on the validators. -// // We must do this because the staking module will break ties when -// // deciding the active validator set by comparing addresses lexicographically. -// // Thus, we assert here that the ordering in the model matches the ordering -// // in the SUT. -// for i := range b.valAddresses[:len(b.valAddresses)-1] { -// // validators are chosen sorted descending in the staking module -// greater := b.valAddresses[i] -// lesser := b.valAddresses[i+1] -// check(lesser, greater) -// } -// } - -// // delegate is used to delegate tokens to newly created -// // validators in the setup process. -// func (b *Builder) delegate(del int, val sdk.ValAddress, amt int64) { -// d := b.provider().SenderAccounts[del].SenderAccount.GetAddress() -// coins := sdk.NewCoin(sdk.DefaultBondDenom, sdk.NewInt(amt)) -// msg := stakingtypes.NewMsgDelegate(d, val, coins) -// providerStaking := b.providerStakingKeeper() -// pskServer := stakingkeeper.NewMsgServerImpl(&providerStaking) -// _, err := pskServer.Delegate(sdk.WrapSDKContext(b.providerCtx()), msg) -// b.suite.Require().NoError(err) -// } - -// // addValidatorToStakingModule creates an additional validator with zero commission -// // and zero tokens (zero voting power). -// func (b *Builder) addValidatorToStakingModule(privVal mock.PV) { -// coin := sdk.NewCoin(sdk.DefaultBondDenom, sdk.NewInt(0)) - -// pubKey, err := privVal.GetPubKey() -// require.NoError(b.suite.T(), err) - -// // Compute address -// addr, err := sdk.ValAddressFromHex(pubKey.Address().String()) -// require.NoError(b.suite.T(), err) - -// sdkPK, err := cryptocodec.FromTmPubKeyInterface(pubKey) -// require.NoError(b.suite.T(), err) - -// msg, err := stakingtypes.NewMsgCreateValidator( -// addr, -// sdkPK, -// coin, -// stakingtypes.Description{}, -// stakingtypes.NewCommissionRates(sdk.ZeroDec(), sdk.ZeroDec(), sdk.ZeroDec()), -// sdk.ZeroInt()) -// b.suite.Require().NoError(err) -// providerStaking := b.providerStakingKeeper() -// pskServer := stakingkeeper.NewMsgServerImpl(&providerStaking) -// _, _ = pskServer.CreateValidator(sdk.WrapSDKContext(b.providerCtx()), msg) -// } - -// func (b *Builder) addExtraProviderValidators() { -// for i, status := range b.initState.ValStates.Status { -// if status == stakingtypes.Unbonded { -// privVal := b.getValidatorPK(i) -// b.addValidatorToStakingModule(privVal) -// pubKey, err := privVal.GetPubKey() -// require.NoError(b.suite.T(), err) - -// addr, err := sdk.ValAddressFromHex(pubKey.Address().String()) -// require.NoError(b.suite.T(), err) - -// b.valAddresses = append(b.valAddresses, addr) -// b.provider().Signers[pubKey.Address().String()] = privVal -// b.consumer().Signers[pubKey.Address().String()] = privVal -// } -// } - -// b.setSigningInfos() - -// b.ensureValidatorLexicographicOrderingMatchesModel() - -// for i := range b.initState.ValStates.Status { -// if b.initState.ValStates.Status[i] == stakingtypes.Unbonded { -// del := b.initState.ValStates.Delegation[i] -// extra := b.initState.ValStates.ValidatorExtraTokens[i] -// b.delegate(0, b.validator(int64(i)), int64(del)) -// b.delegate(1, b.validator(int64(i)), int64(extra)) -// } -// } -// } - -// func (b *Builder) setProviderParams() { -// // Set the slash factors on the provider to match the model -// slash := b.providerSlashingKeeper().GetParams(b.providerCtx()) -// slash.SlashFractionDoubleSign = b.initState.SlashDoublesign -// slash.SlashFractionDowntime = b.initState.SlashDowntime -// err := b.providerSlashingKeeper().SetParams(b.providerCtx(), slash) -// if err != nil { -// panic(err) -// } -// // Set the throttle factors -// throttle := b.providerKeeper().GetParams(b.providerCtx()) -// throttle.SlashMeterReplenishFraction = "1.0" -// throttle.SlashMeterReplenishPeriod = time.Second * 1 -// b.providerKeeper().SetParams(b.providerCtx(), throttle) -// } - -// func (b *Builder) configurePath() { -// b.path = ibctesting.NewPath(b.consumer(), b.provider()) -// b.consumerEndpoint().ChannelConfig.PortID = ccv.ConsumerPortID -// b.providerEndpoint().ChannelConfig.PortID = ccv.ProviderPortID -// b.consumerEndpoint().ChannelConfig.Version = ccv.Version -// b.providerEndpoint().ChannelConfig.Version = ccv.Version -// b.consumerEndpoint().ChannelConfig.Order = channeltypes.ORDERED -// b.providerEndpoint().ChannelConfig.Order = channeltypes.ORDERED -// } - -// func (b *Builder) createProvidersLocalClient() { -// // Configure and create the consumer Client -// tmCfg := b.providerEndpoint().ClientConfig.(*ibctesting.TendermintConfig) -// tmCfg.UnbondingPeriod = b.initState.UnbondingC -// tmCfg.TrustingPeriod = b.initState.Trusting -// tmCfg.MaxClockDrift = b.initState.MaxClockDrift -// err := b.providerEndpoint().CreateClient() -// b.suite.Require().NoError(err) -// // Create the Consumer chain ID mapping in the provider state -// b.providerKeeper().SetConsumerClientId(b.providerCtx(), b.consumer().ChainID, b.providerEndpoint().ClientID) -// } - -// func (b *Builder) createConsumersLocalClientGenesis() *ibctmtypes.ClientState { -// tmCfg := b.consumerEndpoint().ClientConfig.(*ibctesting.TendermintConfig) -// tmCfg.UnbondingPeriod = b.initState.UnbondingP -// tmCfg.TrustingPeriod = b.initState.Trusting -// tmCfg.MaxClockDrift = b.initState.MaxClockDrift - -// return ibctmtypes.NewClientState( -// b.provider().ChainID, tmCfg.TrustLevel, tmCfg.TrustingPeriod, tmCfg.UnbondingPeriod, tmCfg.MaxClockDrift, -// b.provider().LastHeader.GetHeight().(clienttypes.Height), commitmenttypes.GetSDKSpecs(), -// []string{"upgrade", "upgradedIBCState"}, -// ) -// } - -// func (b *Builder) createConsumerGenesis(client *ibctmtypes.ClientState) *consumertypes.GenesisState { -// providerConsState := b.provider().LastHeader.ConsensusState() - -// valUpdates := tmtypes.TM2PB.ValidatorUpdates(b.provider().Vals) -// params := ccv.NewParams( -// true, -// 1000, // ignore distribution -// "", // ignore distribution -// "", // ignore distribution -// ccv.DefaultCCVTimeoutPeriod, -// ccv.DefaultTransferTimeoutPeriod, -// ccv.DefaultConsumerRedistributeFrac, -// ccv.DefaultHistoricalEntries, -// b.initState.UnbondingC, -// "0", // disable soft opt-out -// []string{}, -// []string{}, -// ccv.DefaultRetryDelayPeriod, -// ) -// return consumertypes.NewInitialGenesisState(client, providerConsState, valUpdates, params) -// } - -// func NewBuilder(s *suite.Suite, valAddresses []sdk.ValAddress) *Builder { -// coord := ibctesting.NewCoordinator(s.T(), 0) - -// return &Builder{ -// suite: s, -// valAddresses: valAddresses, -// coordinator: coord, -// } -// } - -// // // The state of the data returned is equivalent to the state of two chains -// // // after a full handshake, but the precise order of steps used to reach the -// // // state does not necessarily mimic the order of steps that happen in a -// // // live scenario. -// // func GetZeroState( -// // suite *suite.Suite, -// // initState InitState, -// // ) (path *ibctesting.Path, addrs []sdk.ValAddress, heightLastCommitted, timeLastCommitted int64) { -// // b := Builder{initState: initState, suite: suite} - -// // b.createProviderAndConsumer() - -// // b.setProviderParams() - -// // // This is the simplest way to initialize the slash meter -// // // after a change to the param value. -// // b.providerKeeper().InitializeSlashMeter(b.providerCtx()) - -// // b.addExtraProviderValidators() - -// // // Commit the additional validators -// // b.coordinator.CommitBlock(b.provider()) - -// // b.configurePath() - -// // // Create a client for the provider chain to use, using ibc go testing. -// // b.createProvidersLocalClient() - -// // // Manually create a client for the consumer chain to and bootstrap -// // // via genesis. -// // clientState := b.createConsumersLocalClientGenesis() - -// // consumerGenesis := b.createConsumerGenesis(clientState) - -// // b.consumerKeeper().InitGenesis(b.consumerCtx(), consumerGenesis) - -// // // Client ID is set in InitGenesis and we treat it as a block box. So -// // // must query it to use it with the endpoint. -// // clientID, _ := b.consumerKeeper().GetProviderClientID(b.consumerCtx()) -// // b.consumerEndpoint().ClientID = clientID - -// // // Handshake -// // b.coordinator.CreateConnections(b.path) -// // b.coordinator.CreateChannels(b.path) - -// // // Usually the consumer sets the channel ID when it receives a first VSC packet -// // // to the provider. For testing purposes, we can set it here. This is because -// // // we model a blank slate: a provider and consumer that have fully established -// // // their channel, and are ready for anything to happen. -// // b.consumerKeeper().SetProviderChannel(b.consumerCtx(), b.consumerEndpoint().ChannelID) - -// // // Catch up consumer height to provider height. The provider was one ahead -// // // from committing additional validators. -// // simibc.EndBlock(b.consumer(), func() {}) - -// // simibc.BeginBlock(b.consumer(), initState.BlockInterval) -// // simibc.BeginBlock(b.provider(), initState.BlockInterval) - -// // // Commit a block on both chains, giving us two committed headers from -// // // the same time and height. This is the starting point for all our -// // // data driven testing. -// // lastProviderHeader, _ := simibc.EndBlock(b.provider(), func() {}) -// // lastConsumerHeader, _ := simibc.EndBlock(b.consumer(), func() {}) - -// // // Want the height and time of last COMMITTED block -// // heightLastCommitted = b.provider().CurrentHeader.Height -// // timeLastCommitted = b.provider().CurrentHeader.Time.Unix() - -// // // Get ready to update clients. -// // simibc.BeginBlock(b.provider(), initState.BlockInterval) -// // simibc.BeginBlock(b.consumer(), initState.BlockInterval) - -// // // Update clients to the latest header. Now everything is ready to go! -// // // Ignore errors for brevity. Everything is checked in Assuptions test. -// // _ = simibc.UpdateReceiverClient(b.consumerEndpoint(), b.providerEndpoint(), lastConsumerHeader) -// // _ = simibc.UpdateReceiverClient(b.providerEndpoint(), b.consumerEndpoint(), lastProviderHeader) - -// // return b.path, b.valAddresses, heightLastCommitted, timeLastCommitted -// // } package main + +import ( + "encoding/json" + "log" + "testing" + "time" + + abcitypes "github.com/cometbft/cometbft/abci/types" + cmtproto "github.com/cometbft/cometbft/proto/tendermint/types" + cmttypes "github.com/cometbft/cometbft/types" + "github.com/cosmos/cosmos-sdk/baseapp" + codectypes "github.com/cosmos/cosmos-sdk/codec/types" + cryptocodec "github.com/cosmos/cosmos-sdk/crypto/codec" + "github.com/cosmos/cosmos-sdk/crypto/keys/secp256k1" + sdk "github.com/cosmos/cosmos-sdk/types" + icstestingutils "github.com/cosmos/interchain-security/v3/testutil/ibc_testing" + simibc "github.com/cosmos/interchain-security/v3/testutil/simibc" + + authtypes "github.com/cosmos/cosmos-sdk/x/auth/types" + banktypes "github.com/cosmos/cosmos-sdk/x/bank/types" + stakingtypes "github.com/cosmos/cosmos-sdk/x/staking/types" + channeltypes "github.com/cosmos/ibc-go/v7/modules/core/04-channel/types" + consumertypes "github.com/cosmos/interchain-security/v3/x/ccv/consumer/types" + ccvtypes "github.com/cosmos/interchain-security/v3/x/ccv/types" + + ibctesting "github.com/cosmos/ibc-go/v7/testing" +) + +const ( + INITIAL_ACCOUNT_BALANCE = 1000000000 + + // Parameters used in the staking module + StakingParamsMaxEntries = 10000 + StakingParamsMaxValidators = 100 + StakingParamsUnbondingTime = 5 * 7 * 24 * time.Hour // 5 weeks +) + +// Parameters used by CometBFT +var ( + ConsensusParams = cmttypes.DefaultConsensusParams() +) + +func getAppBytesAndSenders( + chainID string, + app ibctesting.TestingApp, + genesis map[string]json.RawMessage, + initialValSet *cmttypes.ValidatorSet, + // the list of nodes that will be created, even ones that have no voting power initially + nodes []*cmttypes.Validator, +) ([]byte, []ibctesting.SenderAccount) { + accounts := []authtypes.GenesisAccount{} + balances := []banktypes.Balance{} + senderAccounts := []ibctesting.SenderAccount{} + + // Create genesis accounts. + for i := 0; i < len(nodes); i++ { + pk := secp256k1.GenPrivKey() + acc := authtypes.NewBaseAccount(pk.PubKey().Address().Bytes(), pk.PubKey(), uint64(i), 0) + + // Give enough funds for many delegations + // Extra units are to delegate to extra validators created later + // in order to bond them and still have INITIAL_DELEGATOR_TOKENS remaining + bal := banktypes.Balance{ + Address: acc.GetAddress().String(), + Coins: sdk.NewCoins(sdk.NewCoin(sdk.DefaultBondDenom, + sdk.NewIntFromUint64(INITIAL_ACCOUNT_BALANCE))), + } + + accounts = append(accounts, acc) + balances = append(balances, bal) + + senderAccount := ibctesting.SenderAccount{ + SenderAccount: acc, + SenderPrivKey: pk, + } + + senderAccounts = append(senderAccounts, senderAccount) + } + + // set genesis accounts + genesisAuth := authtypes.NewGenesisState(authtypes.DefaultParams(), accounts) + genesis[authtypes.ModuleName] = app.AppCodec().MustMarshalJSON(genesisAuth) + + // create initial validator set and its delegations + stakingValidators := make([]stakingtypes.Validator, 0, len(nodes)) + delegations := make([]stakingtypes.Delegation, 0, len(nodes)) + + // Sum bonded is needed for BondedPool account + sumBonded := sdk.NewInt(0) + initValPowers := []abcitypes.ValidatorUpdate{} + + for i, val := range nodes { + _, valSetVal := initialValSet.GetByAddress(val.Address.Bytes()) + valAccount := accounts[i] + if valSetVal == nil { + log.Panicf("error getting validator with address %v from valSet %v", val, initialValSet) + } + tokens := sdk.NewInt(valSetVal.VotingPower) + sumBonded = sumBonded.Add(tokens) + + pk, err := cryptocodec.FromTmPubKeyInterface(val.PubKey) + if err != nil { + log.Panicf("error getting pubkey for val %v", val) + } + pkAny, err := codectypes.NewAnyWithValue(pk) + if err != nil { + log.Panicf("error getting pubkeyAny for val %v", val) + } + + var valStatus stakingtypes.BondStatus + if val.VotingPower > 0 { + valStatus = stakingtypes.Bonded + } else { + valStatus = stakingtypes.Unbonded + } + + delShares := sdk.NewDec(tokens.Int64()) // as many shares as tokens + + validator := stakingtypes.Validator{ + OperatorAddress: sdk.ValAddress(val.Address).String(), + ConsensusPubkey: pkAny, + Jailed: false, + Status: valStatus, + Tokens: tokens, + DelegatorShares: delShares, + Description: stakingtypes.Description{}, + UnbondingHeight: int64(0), + UnbondingTime: time.Unix(0, 0).UTC(), + Commission: stakingtypes.NewCommission(sdk.ZeroDec(), sdk.ZeroDec(), sdk.ZeroDec()), + MinSelfDelegation: sdk.ZeroInt(), + } + + stakingValidators = append(stakingValidators, validator) + + // Store delegation from the model delegator account + delegations = append(delegations, stakingtypes.NewDelegation(valAccount.GetAddress(), val.Address.Bytes(), delShares)) + + // add initial validator powers so consumer InitGenesis runs correctly + pub, _ := val.ToProto() + initValPowers = append(initValPowers, abcitypes.ValidatorUpdate{ + Power: val.VotingPower, + PubKey: pub.PubKey, + }) + } + + bondDenom := sdk.DefaultBondDenom + genesisStaking := stakingtypes.GenesisState{} + genesisConsumer := consumertypes.GenesisState{} + + if genesis[stakingtypes.ModuleName] != nil { + // If staking module genesis already exists + app.AppCodec().MustUnmarshalJSON(genesis[stakingtypes.ModuleName], &genesisStaking) + bondDenom = genesisStaking.Params.BondDenom + } + + if genesis[ccvtypes.ModuleName] != nil { + app.AppCodec().MustUnmarshalJSON(genesis[ccvtypes.ModuleName], &genesisConsumer) + genesisConsumer.Provider.InitialValSet = initValPowers + genesisConsumer.Params.Enabled = true + genesis[ccvtypes.ModuleName] = app.AppCodec().MustMarshalJSON(&genesisConsumer) + } + + // Set model parameters + genesisStaking.Params.MaxEntries = StakingParamsMaxEntries + genesisStaking.Params.MaxValidators = StakingParamsMaxValidators + genesisStaking.Params.UnbondingTime = StakingParamsUnbondingTime + genesisStaking = *stakingtypes.NewGenesisState(genesisStaking.Params, stakingValidators, delegations) + genesis[stakingtypes.ModuleName] = app.AppCodec().MustMarshalJSON(&genesisStaking) + + // add bonded amount to bonded pool module account + balances = append(balances, banktypes.Balance{ + Address: authtypes.NewModuleAddress(stakingtypes.BondedPoolName).String(), + Coins: sdk.Coins{sdk.NewCoin(bondDenom, sumBonded)}, + }) + + // add unbonded amount + balances = append(balances, banktypes.Balance{ + Address: authtypes.NewModuleAddress(stakingtypes.NotBondedPoolName).String(), + Coins: sdk.Coins{sdk.NewCoin(bondDenom, sdk.ZeroInt())}, + }) + + // update total funds supply + genesisBank := banktypes.NewGenesisState(banktypes.DefaultGenesisState().Params, balances, sdk.NewCoins(), []banktypes.Metadata{}, []banktypes.SendEnabled{}) + genesis[banktypes.ModuleName] = app.AppCodec().MustMarshalJSON(genesisBank) + + stateBytes, err := json.MarshalIndent(genesis, "", " ") + if err != nil { + log.Panicf("error marshalling genesis: %v", err) + } + + return stateBytes, senderAccounts +} + +func newChain( + t *testing.T, + coord *ibctesting.Coordinator, + appInit icstestingutils.AppIniter, + chainID string, + validators *cmttypes.ValidatorSet, + signers map[string]cmttypes.PrivValidator, + nodes []*cmttypes.Validator, +) *ibctesting.TestChain { + app, genesis := appInit() + + baseapp.SetChainID(chainID)(app.GetBaseApp()) + + stateBytes, senderAccounts := getAppBytesAndSenders(chainID, app, genesis, validators, nodes) + + protoConsParams := ConsensusParams.ToProto() + app.InitChain( + abcitypes.RequestInitChain{ + ChainId: chainID, + Validators: []abcitypes.ValidatorUpdate{}, + ConsensusParams: &protoConsParams, + AppStateBytes: stateBytes, + }, + ) + + app.Commit() + + app.BeginBlock( + abcitypes.RequestBeginBlock{ + Header: cmtproto.Header{ + ChainID: chainID, + Height: app.LastBlockHeight() + 1, + AppHash: app.LastCommitID().Hash, + ValidatorsHash: validators.Hash(), + NextValidatorsHash: validators.Hash(), + }, + }, + ) + + chain := &ibctesting.TestChain{ + T: t, + Coordinator: coord, + ChainID: chainID, + App: app, + CurrentHeader: cmtproto.Header{ + ChainID: chainID, + Height: 1, + Time: coord.CurrentTime.UTC(), + }, + QueryServer: app.GetIBCKeeper(), + TxConfig: app.GetTxConfig(), + Codec: app.AppCodec(), + Vals: validators, + NextVals: validators, + Signers: signers, + SenderPrivKey: senderAccounts[0].SenderPrivKey, + SenderAccount: senderAccounts[0].SenderAccount, + SenderAccounts: senderAccounts, + } + + coord.CommitBlock(chain) + + return chain +} + +// Creates a path for cross-chain validation from the consumer to the provider and configures the channel config of the endpoints +// as well as the clients +func ConfigureNewPath(consumerChain *ibctesting.TestChain, providerChain *ibctesting.TestChain) *ibctesting.Path { + path := ibctesting.NewPath(consumerChain, providerChain) + consumerEndPoint := path.EndpointA + providerEndPoint := path.EndpointB + consumerEndPoint.ChannelConfig.PortID = ccvtypes.ConsumerPortID + providerEndPoint.ChannelConfig.PortID = ccvtypes.ProviderPortID + consumerEndPoint.ChannelConfig.Version = ccvtypes.Version + providerEndPoint.ChannelConfig.Version = ccvtypes.Version + consumerEndPoint.ChannelConfig.Order = channeltypes.ORDERED + providerEndPoint.ChannelConfig.Order = channeltypes.ORDERED + + // Configure and create the consumer Client + tmCfg := providerEndPoint.ClientConfig.(*ibctesting.TendermintConfig) + tmCfg.UnbondingPeriod = b.initState.UnbondingC + tmCfg.TrustingPeriod = b.initState.Trusting + err := b.providerEndpoint().CreateClient() + b.suite.Require().NoError(err) + // Create the Consumer chain ID mapping in the provider state + b.providerKeeper().SetConsumerClientId(b.providerCtx(), b.consumer().ChainID, b.providerEndpoint().ClientID) + + return path +} + +func SetupChains(t *testing.T, + s *CoreSuite, + valSet *cmttypes.ValidatorSet, // the initial validator set + signers map[string]cmttypes.PrivValidator, // a map of validator addresses to private validators (signers) + nodes []*cmttypes.Validator, // the list of nodes, even ones that have no voting power initially + consumers []string, // a list of consumer chain names +) { + initValUpdates := cmttypes.TM2PB.ValidatorUpdates(valSet) + + t.Log("Creating coordinator") + coordinator := ibctesting.NewCoordinator(t, 0) // start without chains, which we add later + + // start provider + t.Log("Creating provider chain") + providerChain := newChain(t, coordinator, icstestingutils.ProviderAppIniter, "provider", valSet, signers, nodes) + coordinator.Chains["provider"] = providerChain + + // start consumer chains + for _, chain := range consumers { + t.Logf("Creating consumer chain %v", chain) + consumerChain := newChain(t, coordinator, icstestingutils.ConsumerAppIniter(initValUpdates), chain, valSet, signers, nodes) + coordinator.Chains[chain] = consumerChain + + path := ConfigureNewPath(consumerChain, providerChain) + } + + // Create a client for the provider chain to use, using ibc go testing. + b.createProvidersLocalClient() + + // Manually create a client for the consumer chain to and bootstrap + // via genesis. + clientState := b.createConsumersLocalClientGenesis() + + consumerGenesis := b.createConsumerGenesis(clientState) + + b.consumerKeeper().InitGenesis(b.consumerCtx(), consumerGenesis) + + // Client ID is set in InitGenesis and we treat it as a block box. So + // must query it to use it with the endpoint. + clientID, _ := b.consumerKeeper().GetProviderClientID(b.consumerCtx()) + b.consumerEndpoint().ClientID = clientID + + // Handshake + b.coordinator.CreateConnections(b.path) + b.coordinator.CreateChannels(b.path) + + // Usually the consumer sets the channel ID when it receives a first VSC packet + // to the provider. For testing purposes, we can set it here. This is because + // we model a blank slate: a provider and consumer that have fully established + // their channel, and are ready for anything to happen. + b.consumerKeeper().SetProviderChannel(b.consumerCtx(), b.consumerEndpoint().ChannelID) + + // Catch up consumer height to provider height. The provider was one ahead + // from committing additional validators. + simibc.EndBlock(b.consumer(), func() {}) + + simibc.BeginBlock(b.consumer(), initState.BlockInterval) + simibc.BeginBlock(b.provider(), initState.BlockInterval) + + // Commit a block on both chains, giving us two committed headers from + // the same time and height. This is the starting point for all our + // data driven testing. + lastProviderHeader, _ := simibc.EndBlock(b.provider(), func() {}) + lastConsumerHeader, _ := simibc.EndBlock(b.consumer(), func() {}) + + // Want the height and time of last COMMITTED block + heightLastCommitted = b.provider().CurrentHeader.Height + timeLastCommitted = b.provider().CurrentHeader.Time.Unix() + + // Get ready to update clients. + simibc.BeginBlock(b.provider(), initState.BlockInterval) + simibc.BeginBlock(b.consumer(), initState.BlockInterval) + + // Update clients to the latest header. Now everything is ready to go! + // Ignore errors for brevity. Everything is checked in Assuptions test. + _ = simibc.UpdateReceiverClient(b.consumerEndpoint(), b.providerEndpoint(), lastConsumerHeader) + _ = simibc.UpdateReceiverClient(b.providerEndpoint(), b.consumerEndpoint(), lastProviderHeader) + + return b.path, b.valAddresses, heightLastCommitted, timeLastCommitted +} From 50231fbf5ff511267d20a267205f8d391f9ead87 Mon Sep 17 00:00:00 2001 From: Philip Offtermatt Date: Mon, 6 Nov 2023 09:42:05 +0100 Subject: [PATCH 006/111] Continue chain setup --- .../core/quint_model/driver/core.go | 109 +++++++----- .../core/quint_model/driver/mbt_test.go | 45 +++-- .../core/quint_model/driver/setup.go | 165 ++++++++++-------- 3 files changed, 189 insertions(+), 130 deletions(-) diff --git a/tests/difference/core/quint_model/driver/core.go b/tests/difference/core/quint_model/driver/core.go index 18d37ecd0e..5938b540a5 100644 --- a/tests/difference/core/quint_model/driver/core.go +++ b/tests/difference/core/quint_model/driver/core.go @@ -15,94 +15,100 @@ import ( appConsumer "github.com/cosmos/interchain-security/v3/app/consumer" appProvider "github.com/cosmos/interchain-security/v3/app/provider" + simibc "github.com/cosmos/interchain-security/v3/testutil/simibc" consumerkeeper "github.com/cosmos/interchain-security/v3/x/ccv/consumer/keeper" + providerkeeper "github.com/cosmos/interchain-security/v3/x/ccv/provider/keeper" ) +// Define a new type for ChainIds to be more explicit +// about what the string represents. type ChainId string -type Params struct { - VscTimeout time.Duration - CcvTimeout map[ChainId]time.Duration +type ModelParams struct { + VscTimeout time.Duration + CcvTimeout map[ChainId]time.Duration + UnbondingPeriodPerChain map[ChainId]time.Duration } -type CoreSuite struct { +type Driver struct { t *testing.T + coordinator *ibctesting.Coordinator + // simulate IBC network: for each consumer chain name, we have a path between consumer and provider - simibcs map[string]*simibc.RelayedPath + simibcs map[ChainId]*simibc.RelayedPath // keep around validators for easy access valAddresses []sdk.ValAddress - - // offsets: the model time and heights start at 0 - // so offsets are needed for comparisons. - offsetTimeUnix int64 - offsetHeight int64 } // ctx returns the sdk.Context for the chain -func (s *CoreSuite) ctx(chain string) sdk.Context { +func (s *Driver) ctx(chain ChainId) sdk.Context { return s.chain(chain).GetContext() } // returns the path from the given chain to the provider. -func (s *CoreSuite) path(chain string) *simibc.RelayedPath { +func (s *Driver) path(chain ChainId) *simibc.RelayedPath { return s.simibcs[chain] } -func (s *CoreSuite) chainID(chain string) string { - return map[string]string{P: ibctesting.GetChainID(0), C: ibctesting.GetChainID(1)}[chain] -} - // chain returns the TestChain for a given chain identifier -func (s *CoreSuite) chain(chain string) *ibctesting.TestChain { - return s.path(chain).Chain(chain) +func (s *Driver) chain(chain ChainId) *ibctesting.TestChain { + return s.path(chain).Chain(string(chain)) } -func (s *CoreSuite) providerChain() *ibctesting.TestChain { +func (s *Driver) providerChain() *ibctesting.TestChain { return s.chain("provider") } -func (b *CoreSuite) providerStakingKeeper() stakingkeeper.Keeper { +func (s *Driver) providerCtx() sdk.Context { + return s.providerChain().GetContext() +} + +func (s *Driver) providerKeeper() providerkeeper.Keeper { + return s.providerChain().App.(*appProvider.App).ProviderKeeper +} + +func (b *Driver) providerStakingKeeper() stakingkeeper.Keeper { return *b.providerChain().App.(*appProvider.App).StakingKeeper } -func (b *CoreSuite) providerSlashingKeeper() slashingkeeper.Keeper { +func (b *Driver) providerSlashingKeeper() slashingkeeper.Keeper { return b.providerChain().App.(*appProvider.App).SlashingKeeper } -func (b *CoreSuite) consumerKeeper(chain string) consumerkeeper.Keeper { +func (b *Driver) consumerKeeper(chain ChainId) consumerkeeper.Keeper { return b.chain(chain).App.(*appConsumer.App).ConsumerKeeper } // height returns the height of the current header of chain -func (s *CoreSuite) height(chain string) int64 { +func (s *Driver) height(chain ChainId) int64 { return s.chain(chain).CurrentHeader.GetHeight() } // time returns the time of the current header of chain -func (s *CoreSuite) time(chain string) time.Time { +func (s *Driver) time(chain ChainId) time.Time { return s.chain(chain).CurrentHeader.Time } // delegator retrieves the address for the delegator account -func (s *CoreSuite) delegator() sdk.AccAddress { +func (s *Driver) delegator() sdk.AccAddress { return s.providerChain().SenderAccount.GetAddress() } // validator returns the address for the validator with id (ix) i -func (s *CoreSuite) validator(i int64) sdk.ValAddress { +func (s *Driver) validator(i int64) sdk.ValAddress { return s.valAddresses[i] } // consAddr returns the ConsAdd for the validator with id (ix) i -func (s *CoreSuite) consAddr(i int64) sdk.ConsAddress { +func (s *Driver) consAddr(i int64) sdk.ConsAddress { return sdk.ConsAddress(s.validator(i)) } // isJailed returns the jail status of validator with id (ix) i -func (s *CoreSuite) isJailed(i int64) bool { +func (s *Driver) isJailed(i int64) bool { val, found := s.providerStakingKeeper().GetValidator(s.ctx(P), s.validator(i)) require.True(s.t, found, "GetValidator(%v) -> !found", s.validator(i)) @@ -111,7 +117,7 @@ func (s *CoreSuite) isJailed(i int64) bool { // consumerPower returns the power on the consumer chain chain for // validator with id (ix) i -func (s *CoreSuite) consumerPower(i int64, chain string) (int64, error) { +func (s *Driver) consumerPower(i int64, chain ChainId) (int64, error) { v, found := s.consumerKeeper(chain).GetCCValidator(s.ctx(C), s.validator(i)) if !found { return 0, fmt.Errorf("GetCCValidator(%v) -> !found", s.validator(i)) @@ -121,7 +127,7 @@ func (s *CoreSuite) consumerPower(i int64, chain string) (int64, error) { // delegation returns the number of delegated tokens in the delegation from // the delegator account to the validator with id (ix) i -func (s *CoreSuite) delegation(i int64) int64 { +func (s *Driver) delegation(i int64) int64 { d, found := s.providerStakingKeeper().GetDelegation(s.ctx(P), s.delegator(), s.validator(i)) require.True(s.t, found, "GetDelegation(%v) -> !found", s.validator(i)) return d.Shares.TruncateInt64() @@ -129,7 +135,7 @@ func (s *CoreSuite) delegation(i int64) int64 { // validatorStatus returns the validator status for validator with id (ix) i // on the provider chain -func (s *CoreSuite) validatorStatus(i int64) stakingtypes.BondStatus { +func (s *Driver) validatorStatus(i int64) stakingtypes.BondStatus { v, found := s.providerStakingKeeper().GetValidator(s.ctx(P), s.validator(i)) require.True(s.t, found, "GetValidator(%v) -> !found", s.validator(i)) return v.GetStatus() @@ -137,13 +143,13 @@ func (s *CoreSuite) validatorStatus(i int64) stakingtypes.BondStatus { // providerTokens returns the number of tokens that the validator with // id (ix) i has delegated to it in total on the provider chain -func (s *CoreSuite) providerTokens(i int64) int64 { +func (s *Driver) providerTokens(i int64) int64 { v, found := s.providerStakingKeeper().GetValidator(s.ctx(P), s.validator(i)) require.True(s.t, found, "GetValidator(%v) -> !found", s.validator(i)) return v.Tokens.Int64() } -func (s *CoreSuite) validatorSet(chain string) []stakingtypes.Validator { +func (s *Driver) validatorSet(chain ChainId) []stakingtypes.Validator { if chain == P { return s.providerStakingKeeper().GetLastValidators(s.ctx(P)) } else { @@ -152,14 +158,14 @@ func (s *CoreSuite) validatorSet(chain string) []stakingtypes.Validator { } // delegatorBalance returns the balance of the delegator account -func (s *CoreSuite) delegatorBalance() int64 { +func (s *Driver) delegatorBalance() int64 { d := s.delegator() bal := s.providerChain().App.(*appProvider.App).BankKeeper.GetBalance(s.ctx(P), d, sdk.DefaultBondDenom) return bal.Amount.Int64() } // delegate delegates amt tokens to validator val -func (s *CoreSuite) delegate(val, amt int64) { +func (s *Driver) delegate(val, amt int64) { providerStaking := s.providerStakingKeeper() server := stakingkeeper.NewMsgServerImpl(&providerStaking) coin := sdk.NewCoin(sdk.DefaultBondDenom, sdk.NewInt(amt)) @@ -172,7 +178,7 @@ func (s *CoreSuite) delegate(val, amt int64) { } // undelegate undelegates amt tokens from validator val -func (s *CoreSuite) undelegate(val, amt int64) { +func (s *Driver) undelegate(val, amt int64) { providerStaking := s.providerStakingKeeper() server := stakingkeeper.NewMsgServerImpl(&providerStaking) coin := sdk.NewCoin(sdk.DefaultBondDenom, sdk.NewInt(amt)) @@ -186,7 +192,7 @@ func (s *CoreSuite) undelegate(val, amt int64) { // consumerSlash simulates a slash event occurring on the consumer chain. // It can be for a downtime or doublesign. -func (s *CoreSuite) consumerSlash(val sdk.ConsAddress, h int64, isDowntime bool, chain string) { +func (s *Driver) consumerSlash(val sdk.ConsAddress, h int64, isDowntime bool, chain ChainId) { kind := stakingtypes.Infraction_INFRACTION_DOUBLE_SIGN if isDowntime { kind = stakingtypes.Infraction_INFRACTION_DOWNTIME @@ -198,29 +204,42 @@ func (s *CoreSuite) consumerSlash(val sdk.ConsAddress, h int64, isDowntime bool, evts := ctx.EventManager().Events() packets := simibc.ParsePacketsFromEvents(evts[before:]) if len(packets) > 0 { - s.path(chain).Outboxes.AddPacket(s.chainID(C), packets[0]) + s.path(chain).Outboxes.AddPacket(C, packets[0]) } } -func (s *CoreSuite) updateClient(chain string) { - s.path(chain).UpdateClient(s.chainID(chain)) +func (s *Driver) updateClient(chain ChainId) { + s.path(chain).UpdateClient(string(chain)) } // deliver numPackets packets from the network to chain -func (s *CoreSuite) deliver(chain string, numPackets int) { +func (s *Driver) deliver(chain ChainId, numPackets int) { // Makes sure client is updated s.updateClient(chain) // Deliver any outstanding acks - s.path(chain).DeliverAcks(s.chainID(chain), 999999) + s.path(chain).DeliverAcks(string(chain), 999999) // Consume deliverable packets from the network - s.path(chain).DeliverPackets(s.chainID(chain), numPackets) + s.path(chain).DeliverPackets(string(chain), numPackets) } -func (s *CoreSuite) endAndBeginBlock(chain string, timeAdvancement time.Duration, preCommitCallback func()) { - s.path(chain).EndAndBeginBlock(s.chainID(chain), timeAdvancement, func() { +func (s *Driver) endAndBeginBlock(chain ChainId, timeAdvancement time.Duration, preCommitCallback func()) { + s.path(chain).EndAndBeginBlock(string(chain), timeAdvancement, func() { }) } +func newDriver(t *testing.T, valAddresses []sdk.ValAddress) *Driver { + t.Log("Creating coordinator") + coordinator := ibctesting.NewCoordinator(t, 0) // start without chains, which we add later + + suite := &Driver{ + t: t, + coordinator: coordinator, + simibcs: make(map[ChainId]*simibc.RelayedPath), + valAddresses: valAddresses, + } + return suite +} + // // The state of the data returned is equivalent to the state of two chains // // after a full handshake, but the precise order of steps used to reach the // // state does not necessarily mimic the order of steps that happen in a diff --git a/tests/difference/core/quint_model/driver/mbt_test.go b/tests/difference/core/quint_model/driver/mbt_test.go index 5325a2dc45..53cb7b9a78 100644 --- a/tests/difference/core/quint_model/driver/mbt_test.go +++ b/tests/difference/core/quint_model/driver/mbt_test.go @@ -3,13 +3,12 @@ package main import ( "log" "testing" + "time" cmttypes "github.com/cometbft/cometbft/types" - icstestingutils "github.com/cosmos/interchain-security/v3/testutil/ibc_testing" + "github.com/cosmos/cosmos-sdk/types" "github.com/cosmos/interchain-security/v3/testutil/integration" "github.com/informalsystems/itf-go/itf" - - ibctesting "github.com/cosmos/ibc-go/v7/testing" ) // Given a map from node names to voting powers, create a validator set with the right voting powers. @@ -85,7 +84,25 @@ func TestItfTrace(t *testing.T) { consumers[i] = chain.Value.(string) } - t.Log("Consumer chains are: ", consumers) + chains := append(consumers, "provider") + + t.Log("Chains are: ", chains) + + // create params struct + vscTimeout := time.Duration(params["VscTimeout"].Value.(int64)) + + unbondingPeriodPerChain := make(map[ChainId]time.Duration, len(consumers)) + ccvTimeoutPerChain := make(map[ChainId]time.Duration, len(consumers)) + for _, consumer := range chains { + unbondingPeriodPerChain[ChainId(consumer)] = time.Duration(params["UnbondingPeriodPerChain"].Value.(itf.MapExprType)[consumer].Value.(int64)) + ccvTimeoutPerChain[ChainId(consumer)] = time.Duration(params["CcvTimeout"].Value.(itf.MapExprType)[consumer].Value.(int64)) + } + + modelParams := ModelParams{ + VscTimeout: vscTimeout, + CcvTimeout: ccvTimeoutPerChain, + UnbondingPeriodPerChain: unbondingPeriodPerChain, + } valExprs := params["Nodes"].Value.(itf.ListExprType) valNames := make([]string, len(valExprs)) @@ -105,21 +122,15 @@ func TestItfTrace(t *testing.T) { nodes[i] = addressMap[valName] } - t.Log("Creating coordinator") - coordinator := ibctesting.NewCoordinator(t, 0) // start without chains, which we add later - - // start provider - t.Log("Creating provider chain") - providerChain := newChain(t, coordinator, icstestingutils.ProviderAppIniter, "provider", valSet, signers, nodes) - coordinator.Chains["provider"] = providerChain - - // start consumer chains - for _, chain := range consumers { - t.Logf("Creating consumer chain %v", chain) - consumerChain := newChain(t, coordinator, icstestingutils.ConsumerAppIniter(initValUpdates), chain, valSet, signers, nodes) - coordinator.Chains[chain] = consumerChain + valAddresses := make([]types.ValAddress, len(valNames)) + for i, valNode := range nodes { + pbVal := cmttypes.TM2PB.Validator(valNode) + valAddresses[i] = pbVal.Address } + driver := newDriver(t, valAddresses) + driver.setupChains(modelParams, valSet, signers, nodes, consumers) + t.Log("Started chains") t.Log("Reading the trace...") diff --git a/tests/difference/core/quint_model/driver/setup.go b/tests/difference/core/quint_model/driver/setup.go index 4c7ca4ae6a..02341044e0 100644 --- a/tests/difference/core/quint_model/driver/setup.go +++ b/tests/difference/core/quint_model/driver/setup.go @@ -14,8 +14,14 @@ import ( cryptocodec "github.com/cosmos/cosmos-sdk/crypto/codec" "github.com/cosmos/cosmos-sdk/crypto/keys/secp256k1" sdk "github.com/cosmos/cosmos-sdk/types" + clienttypes "github.com/cosmos/ibc-go/v7/modules/core/02-client/types" + commitmenttypes "github.com/cosmos/ibc-go/v7/modules/core/23-commitment/types" + ibctmtypes "github.com/cosmos/ibc-go/v7/modules/light-clients/07-tendermint" icstestingutils "github.com/cosmos/interchain-security/v3/testutil/ibc_testing" simibc "github.com/cosmos/interchain-security/v3/testutil/simibc" + "github.com/stretchr/testify/require" + + ccv "github.com/cosmos/interchain-security/v3/x/ccv/types" authtypes "github.com/cosmos/cosmos-sdk/x/auth/types" banktypes "github.com/cosmos/cosmos-sdk/x/bank/types" @@ -252,14 +258,17 @@ func newChain( SenderAccounts: senderAccounts, } - coord.CommitBlock(chain) + chain.NextBlock() return chain } // Creates a path for cross-chain validation from the consumer to the provider and configures the channel config of the endpoints -// as well as the clients -func ConfigureNewPath(consumerChain *ibctesting.TestChain, providerChain *ibctesting.TestChain) *ibctesting.Path { +// as well as the clients. +// this function stops when there is an initialized, ready-to-relay channel between the provider and consumer. +func (s *Driver) ConfigureNewPath(consumerChain *ibctesting.TestChain, providerChain *ibctesting.TestChain, params ModelParams, lastProviderHeader *ibctmtypes.Header) *ibctesting.Path { + consumerChainId := ChainId(consumerChain.ChainID) + path := ibctesting.NewPath(consumerChain, providerChain) consumerEndPoint := path.EndpointA providerEndPoint := path.EndpointB @@ -270,95 +279,115 @@ func ConfigureNewPath(consumerChain *ibctesting.TestChain, providerChain *ibctes consumerEndPoint.ChannelConfig.Order = channeltypes.ORDERED providerEndPoint.ChannelConfig.Order = channeltypes.ORDERED - // Configure and create the consumer Client + // Configure and create the client on the provider tmCfg := providerEndPoint.ClientConfig.(*ibctesting.TendermintConfig) - tmCfg.UnbondingPeriod = b.initState.UnbondingC - tmCfg.TrustingPeriod = b.initState.Trusting - err := b.providerEndpoint().CreateClient() - b.suite.Require().NoError(err) - // Create the Consumer chain ID mapping in the provider state - b.providerKeeper().SetConsumerClientId(b.providerCtx(), b.consumer().ChainID, b.providerEndpoint().ClientID) - - return path -} + tmCfg.UnbondingPeriod = params.UnbondingPeriodPerChain[ChainId(providerChain.ChainID)] + err := providerEndPoint.CreateClient() + require.NoError(s.t, err, "Error creating client on provider for chain %v", consumerChain.ChainID) -func SetupChains(t *testing.T, - s *CoreSuite, - valSet *cmttypes.ValidatorSet, // the initial validator set - signers map[string]cmttypes.PrivValidator, // a map of validator addresses to private validators (signers) - nodes []*cmttypes.Validator, // the list of nodes, even ones that have no voting power initially - consumers []string, // a list of consumer chain names -) { - initValUpdates := cmttypes.TM2PB.ValidatorUpdates(valSet) - - t.Log("Creating coordinator") - coordinator := ibctesting.NewCoordinator(t, 0) // start without chains, which we add later - - // start provider - t.Log("Creating provider chain") - providerChain := newChain(t, coordinator, icstestingutils.ProviderAppIniter, "provider", valSet, signers, nodes) - coordinator.Chains["provider"] = providerChain - - // start consumer chains - for _, chain := range consumers { - t.Logf("Creating consumer chain %v", chain) - consumerChain := newChain(t, coordinator, icstestingutils.ConsumerAppIniter(initValUpdates), chain, valSet, signers, nodes) - coordinator.Chains[chain] = consumerChain - - path := ConfigureNewPath(consumerChain, providerChain) - } + // Create the Consumer chain ID mapping in the provider state + s.providerKeeper().SetConsumerClientId(providerChain.GetContext(), consumerChain.ChainID, providerEndPoint.ClientID) - // Create a client for the provider chain to use, using ibc go testing. - b.createProvidersLocalClient() + // Configure and create the client on the consumer + tmCfg = consumerEndPoint.ClientConfig.(*ibctesting.TendermintConfig) + tmCfg.UnbondingPeriod = params.UnbondingPeriodPerChain[consumerChainId] - // Manually create a client for the consumer chain to and bootstrap - // via genesis. - clientState := b.createConsumersLocalClientGenesis() + consumerClientState := ibctmtypes.NewClientState( + providerChain.ChainID, tmCfg.TrustLevel, tmCfg.TrustingPeriod, tmCfg.UnbondingPeriod, tmCfg.MaxClockDrift, + providerChain.LastHeader.GetHeight().(clienttypes.Height), commitmenttypes.GetSDKSpecs(), + []string{"upgrade", "upgradedIBCState"}, + ) - consumerGenesis := b.createConsumerGenesis(clientState) + consumerGenesis := createConsumerGenesis(params, providerChain, consumerClientState) - b.consumerKeeper().InitGenesis(b.consumerCtx(), consumerGenesis) + s.consumerKeeper(consumerChainId).InitGenesis(s.ctx(consumerChainId), consumerGenesis) // Client ID is set in InitGenesis and we treat it as a block box. So // must query it to use it with the endpoint. - clientID, _ := b.consumerKeeper().GetProviderClientID(b.consumerCtx()) - b.consumerEndpoint().ClientID = clientID + clientID, _ := s.consumerKeeper(consumerChainId).GetProviderClientID(s.ctx(consumerChainId)) + consumerEndPoint.ClientID = clientID // Handshake - b.coordinator.CreateConnections(b.path) - b.coordinator.CreateChannels(b.path) + s.coordinator.CreateConnections(path) + s.coordinator.CreateChannels(path) // Usually the consumer sets the channel ID when it receives a first VSC packet // to the provider. For testing purposes, we can set it here. This is because // we model a blank slate: a provider and consumer that have fully established // their channel, and are ready for anything to happen. - b.consumerKeeper().SetProviderChannel(b.consumerCtx(), b.consumerEndpoint().ChannelID) + s.consumerKeeper(consumerChainId).SetProviderChannel(s.ctx(consumerChainId), consumerEndPoint.ChannelID) - // Catch up consumer height to provider height. The provider was one ahead - // from committing additional validators. - simibc.EndBlock(b.consumer(), func() {}) + // // Catch up consumer height to provider height. The provider was one ahead TODO: activate this + // // from committing additional validators. + // simibc.EndBlock(consumerChain, func() {}) - simibc.BeginBlock(b.consumer(), initState.BlockInterval) - simibc.BeginBlock(b.provider(), initState.BlockInterval) + // simibc.BeginBlock(consumerChain, initState.BlockInterval) + // simibc.BeginBlock(providerChain, initState.BlockInterval) // Commit a block on both chains, giving us two committed headers from // the same time and height. This is the starting point for all our // data driven testing. - lastProviderHeader, _ := simibc.EndBlock(b.provider(), func() {}) - lastConsumerHeader, _ := simibc.EndBlock(b.consumer(), func() {}) - - // Want the height and time of last COMMITTED block - heightLastCommitted = b.provider().CurrentHeader.Height - timeLastCommitted = b.provider().CurrentHeader.Time.Unix() + lastConsumerHeader, _ := simibc.EndBlock(consumerChain, func() {}) // Get ready to update clients. - simibc.BeginBlock(b.provider(), initState.BlockInterval) - simibc.BeginBlock(b.consumer(), initState.BlockInterval) + simibc.BeginBlock(providerChain, 0) + simibc.BeginBlock(consumerChain, 0) + + // Update clients to the latest header. + err = simibc.UpdateReceiverClient(consumerEndPoint, providerEndPoint, lastConsumerHeader) + require.NoError(s.t, err, "Error updating client on consumer for chain %v", consumerChain.ChainID) + err = simibc.UpdateReceiverClient(providerEndPoint, consumerEndPoint, lastProviderHeader) + require.NoError(s.t, err, "Error updating client on provider for chain %v", consumerChain.ChainID) - // Update clients to the latest header. Now everything is ready to go! - // Ignore errors for brevity. Everything is checked in Assuptions test. - _ = simibc.UpdateReceiverClient(b.consumerEndpoint(), b.providerEndpoint(), lastConsumerHeader) - _ = simibc.UpdateReceiverClient(b.providerEndpoint(), b.consumerEndpoint(), lastProviderHeader) + // path is ready to go + return path +} - return b.path, b.valAddresses, heightLastCommitted, timeLastCommitted +func (s *Driver) setupChains( + params ModelParams, + valSet *cmttypes.ValidatorSet, // the initial validator set + signers map[string]cmttypes.PrivValidator, // a map of validator addresses to private validators (signers) + nodes []*cmttypes.Validator, // the list of nodes, even ones that have no voting power initially + consumers []string, // a list of consumer chain names +) { + initValUpdates := cmttypes.TM2PB.ValidatorUpdates(valSet) + // start provider + s.t.Log("Creating provider chain") + providerChain := newChain(s.t, s.coordinator, icstestingutils.ProviderAppIniter, "provider", valSet, signers, nodes) + s.coordinator.Chains["provider"] = providerChain + + providerHeader, _ := simibc.EndBlock(providerChain, func() {}) + + // start consumer chains + for _, chain := range consumers { + s.t.Logf("Creating consumer chain %v", chain) + consumerChain := newChain(s.t, s.coordinator, icstestingutils.ConsumerAppIniter(initValUpdates), chain, valSet, signers, nodes) + s.coordinator.Chains[chain] = consumerChain + + path := s.ConfigureNewPath(consumerChain, providerChain, params, providerHeader) + relayedPath := simibc.MakeRelayedPath(s.t, path) + s.simibcs[ChainId(chain)] = &relayedPath + } +} + +func createConsumerGenesis(modelParams ModelParams, providerChain *ibctesting.TestChain, consumerClientState *ibctmtypes.ClientState) *consumertypes.GenesisState { + providerConsState := providerChain.LastHeader.ConsensusState() + + valUpdates := cmttypes.TM2PB.ValidatorUpdates(providerChain.Vals) + params := ccv.NewParams( + true, + 1000, // ignore distribution + "", // ignore distribution + "", // ignore distribution + ccv.DefaultCCVTimeoutPeriod, + ccv.DefaultTransferTimeoutPeriod, + ccv.DefaultConsumerRedistributeFrac, + ccv.DefaultHistoricalEntries, + consumerClientState.UnbondingPeriod, + "0", // disable soft opt-out + []string{}, + []string{}, + ccv.DefaultRetryDelayPeriod, + ) + return consumertypes.NewInitialGenesisState(consumerClientState, providerConsState, valUpdates, params) } From 2d29208be301d2e0e2cad72d8d4e6b74955d8e66 Mon Sep 17 00:00:00 2001 From: Philip Offtermatt Date: Mon, 6 Nov 2023 13:57:35 +0100 Subject: [PATCH 007/111] Add trusting period --- tests/difference/core/quint_model/ccv.qnt | 5 + .../difference/core/quint_model/ccv_model.qnt | 5 +- .../core/quint_model/driver/core.go | 132 +-- .../core/quint_model/driver/mbt_test.go | 31 +- .../core/quint_model/driver/setup.go | 29 +- .../core/quint_model/driver/trace.json | 916 ++++++++---------- 6 files changed, 501 insertions(+), 617 deletions(-) diff --git a/tests/difference/core/quint_model/ccv.qnt b/tests/difference/core/quint_model/ccv.qnt index 0e07b4476c..b89331da33 100644 --- a/tests/difference/core/quint_model/ccv.qnt +++ b/tests/difference/core/quint_model/ccv.qnt @@ -235,6 +235,11 @@ module ccv { // The timeoutTimestamp for sent packets. Can differ by chain. const CcvTimeout: Chain -> int + // The trusting period on each chain. + // If headers on a channel between two chains are not updated within this period, + // they expire and the channel will be closed. + const TrustingPeriodPerChain: Chain -> int // TODO: USE THIS! + // =================== // PROTOCOL LOGIC contains the meat of the protocol // functions here roughly correspond to API calls that can be triggered from external sources diff --git a/tests/difference/core/quint_model/ccv_model.qnt b/tests/difference/core/quint_model/ccv_model.qnt index 500246bd6b..813450301a 100644 --- a/tests/difference/core/quint_model/ccv_model.qnt +++ b/tests/difference/core/quint_model/ccv_model.qnt @@ -8,17 +8,19 @@ module ccv_model { pure val consumerChains = Set("consumer1", "consumer2", "consumer3") pure val chains = consumerChains.union(Set(PROVIDER_CHAIN)) pure val unbondingPeriods = chains.mapBy(chain => 2 * Week) + pure val trustingPeriods = chains.mapBy(chain => 1 * Week) pure val ccvTimeouts = chains.mapBy(chain => 3 * Week) pure val nodes = Set("node1", "node2", "node3", "node4", "node5", "node6", "node7", "node8", "node9", "node10") pure val InitialValidatorSet = nodes.mapBy(node => 100) - import ccv(VscTimeout = 5 * Week, CcvTimeout = ccvTimeouts, UnbondingPeriodPerChain = unbondingPeriods, ConsumerChains = consumerChains).* from "./ccv" + import ccv(VscTimeout = 5 * Week, CcvTimeout = ccvTimeouts, UnbondingPeriodPerChain = unbondingPeriods, ConsumerChains = consumerChains, TrustingPeriodPerChain = trustingPeriods).* from "./ccv" type Parameters = { VscTimeout: Time, CcvTimeout: Chain -> Time, UnbondingPeriodPerChain: Chain -> Time, + TrustingPeriodPerChain: Chain -> Time, // TODO: integrate trusting period in logic ConsumerChains: Set[Chain], Nodes: Set[Node], InitialValidatorSet: Node -> int, @@ -143,6 +145,7 @@ module ccv_model { ConsumerChains: ConsumerChains, Nodes: nodes, InitialValidatorSet: InitialValidatorSet, + TrustingPeriodPerChain: TrustingPeriodPerChain, } } diff --git a/tests/difference/core/quint_model/driver/core.go b/tests/difference/core/quint_model/driver/core.go index 5938b540a5..7890913ab3 100644 --- a/tests/difference/core/quint_model/driver/core.go +++ b/tests/difference/core/quint_model/driver/core.go @@ -2,6 +2,7 @@ package main import ( "fmt" + "strings" "testing" "time" @@ -29,6 +30,7 @@ type ModelParams struct { VscTimeout time.Duration CcvTimeout map[ChainId]time.Duration UnbondingPeriodPerChain map[ChainId]time.Duration + TrustingPeriodPerChain map[ChainId]time.Duration } type Driver struct { @@ -55,7 +57,7 @@ func (s *Driver) path(chain ChainId) *simibc.RelayedPath { // chain returns the TestChain for a given chain identifier func (s *Driver) chain(chain ChainId) *ibctesting.TestChain { - return s.path(chain).Chain(string(chain)) + return s.coordinator.GetChain(string(chain)) } func (s *Driver) providerChain() *ibctesting.TestChain { @@ -151,9 +153,9 @@ func (s *Driver) providerTokens(i int64) int64 { func (s *Driver) validatorSet(chain ChainId) []stakingtypes.Validator { if chain == P { - return s.providerStakingKeeper().GetLastValidators(s.ctx(P)) + return s.providerStakingKeeper().GetAllValidators(s.ctx(P)) } else { - return s.consumerKeeper(chain).GetAllValidators(s.ctx(C)) + return s.consumerKeeper(chain).GetAllValidators(s.ctx(chain)) } } @@ -222,6 +224,50 @@ func (s *Driver) deliver(chain ChainId, numPackets int) { s.path(chain).DeliverPackets(string(chain), numPackets) } +func (s *Driver) getStateString() string { + var state strings.Builder + + state.WriteString("Provider\n") + state.WriteString(s.getChainStateString("provider")) + state.WriteString("\n") + + for chain := range s.simibcs { + state.WriteString(fmt.Sprintf("Chain %s\n", chain)) + state.WriteString(s.getChainStateString(chain)) + state.WriteString("\n") + } + + return state.String() +} + +func (s *Driver) getChainStateString(chain ChainId) string { + ctx := s.ctx(chain) + + // Get the current block height + height := ctx.BlockHeight() + + // Get the current block time + blockTime := ctx.BlockTime() + + // Get the validator set for the current block + validatorSet := s.validatorSet(chain) + + // Build the chain info string + var chainInfo strings.Builder + chainInfo.WriteString(fmt.Sprintf(" Height: %d\n", height)) + chainInfo.WriteString(fmt.Sprintf(" Time: %s\n", blockTime)) + + // Build the validator info string + var validatorInfo strings.Builder + for _, validator := range validatorSet { + validatorInfo.WriteString(fmt.Sprintf(" Validator %s: power=%d\n", validator.GetOperator().String(), validator.BondedTokens())) + } + + chainInfo.WriteString(validatorInfo.String()) + + return chainInfo.String() +} + func (s *Driver) endAndBeginBlock(chain ChainId, timeAdvancement time.Duration, preCommitCallback func()) { s.path(chain).EndAndBeginBlock(string(chain), timeAdvancement, func() { }) @@ -239,83 +285,3 @@ func newDriver(t *testing.T, valAddresses []sdk.ValAddress) *Driver { } return suite } - -// // The state of the data returned is equivalent to the state of two chains -// // after a full handshake, but the precise order of steps used to reach the -// // state does not necessarily mimic the order of steps that happen in a -// // live scenario. -// func GetZeroState( -// suite *suite.Suite, -// initState InitState, -// ) (path *ibctesting.Path, addrs []sdk.ValAddress, heightLastCommitted, timeLastCommitted int64) { -// b := Builder{initState: initState, suite: suite} - -// b.createProviderAndConsumer() - -// b.setProviderParams() - -// // This is the simplest way to initialize the slash meter -// // after a change to the param value. -// b.providerKeeper().InitializeSlashMeter(b.providerCtx()) - -// b.addExtraProviderValidators() - -// // Commit the additional validators -// b.coordinator.CommitBlock(b.provider()) - -// b.configurePath() - -// // Create a client for the provider chain to use, using ibc go testing. -// b.createProvidersLocalClient() - -// // Manually create a client for the consumer chain to and bootstrap -// // via genesis. -// clientState := b.createConsumersLocalClientGenesis() - -// consumerGenesis := b.createConsumerGenesis(clientState) - -// b.consumerKeeper().InitGenesis(b.consumerCtx(), consumerGenesis) - -// // Client ID is set in InitGenesis and we treat it as a block box. So -// // must query it to use it with the endpoint. -// clientID, _ := b.consumerKeeper().GetProviderClientID(b.consumerCtx()) -// b.consumerEndpoint().ClientID = clientID - -// // Handshake -// b.coordinator.CreateConnections(b.path) -// b.coordinator.CreateChannels(b.path) - -// // Usually the consumer sets the channel ID when it receives a first VSC packet -// // to the provider. For testing purposes, we can set it here. This is because -// // we model a blank slate: a provider and consumer that have fully established -// // their channel, and are ready for anything to happen. -// b.consumerKeeper().SetProviderChannel(b.consumerCtx(), b.consumerEndpoint().ChannelID) - -// // Catch up consumer height to provider height. The provider was one ahead -// // from committing additional validators. -// simibc.EndBlock(b.consumer(), func() {}) - -// simibc.BeginBlock(b.consumer(), initState.BlockInterval) -// simibc.BeginBlock(b.provider(), initState.BlockInterval) - -// // Commit a block on both chains, giving us two committed headers from -// // the same time and height. This is the starting point for all our -// // data driven testing. -// lastProviderHeader, _ := simibc.EndBlock(b.provider(), func() {}) -// lastConsumerHeader, _ := simibc.EndBlock(b.consumer(), func() {}) - -// // Want the height and time of last COMMITTED block -// heightLastCommitted = b.provider().CurrentHeader.Height -// timeLastCommitted = b.provider().CurrentHeader.Time.Unix() - -// // Get ready to update clients. -// simibc.BeginBlock(b.provider(), initState.BlockInterval) -// simibc.BeginBlock(b.consumer(), initState.BlockInterval) - -// // Update clients to the latest header. Now everything is ready to go! -// // Ignore errors for brevity. Everything is checked in Assuptions test. -// _ = simibc.UpdateReceiverClient(b.consumerEndpoint(), b.providerEndpoint(), lastConsumerHeader) -// _ = simibc.UpdateReceiverClient(b.providerEndpoint(), b.consumerEndpoint(), lastProviderHeader) - -// return b.path, b.valAddresses, heightLastCommitted, timeLastCommitted -// } diff --git a/tests/difference/core/quint_model/driver/mbt_test.go b/tests/difference/core/quint_model/driver/mbt_test.go index 53cb7b9a78..f480d45048 100644 --- a/tests/difference/core/quint_model/driver/mbt_test.go +++ b/tests/difference/core/quint_model/driver/mbt_test.go @@ -9,6 +9,7 @@ import ( "github.com/cosmos/cosmos-sdk/types" "github.com/cosmos/interchain-security/v3/testutil/integration" "github.com/informalsystems/itf-go/itf" + "github.com/stretchr/testify/require" ) // Given a map from node names to voting powers, create a validator set with the right voting powers. @@ -61,11 +62,21 @@ func TestItfTrace(t *testing.T) { log.Fatalf("Error loading trace file: %s", err) } - if trace.Vars[0] != "currentState" || - trace.Vars[1] != "params" || - trace.Vars[2] != "trace" { - t.Fatalf("Error loading trace file %s: Variables should be currentState, params, trace but are %s", - path, trace.Vars) + expectedVarNames := []string{"currentState", "params", "trace"} + + varNames := make(map[string]bool, len(expectedVarNames)) + // populate the set + for _, varName := range trace.Vars { + varNames[varName] = true + } + + // sanity check: there are as many var names as we expect + require.Equal(t, len(expectedVarNames), len(varNames), "Expected %v var names, got %v", expectedVarNames, varNames) + + // sanity check: each expected var name should be in the set + for _, expectedVarName := range expectedVarNames { + _, ok := varNames[expectedVarName] + require.True(t, ok, "Expected var name %v not found in actual var names %v", expectedVarName, varNames) } t.Log("Reading params...") @@ -92,16 +103,19 @@ func TestItfTrace(t *testing.T) { vscTimeout := time.Duration(params["VscTimeout"].Value.(int64)) unbondingPeriodPerChain := make(map[ChainId]time.Duration, len(consumers)) + trustingPeriodPerChain := make(map[ChainId]time.Duration, len(consumers)) ccvTimeoutPerChain := make(map[ChainId]time.Duration, len(consumers)) for _, consumer := range chains { - unbondingPeriodPerChain[ChainId(consumer)] = time.Duration(params["UnbondingPeriodPerChain"].Value.(itf.MapExprType)[consumer].Value.(int64)) - ccvTimeoutPerChain[ChainId(consumer)] = time.Duration(params["CcvTimeout"].Value.(itf.MapExprType)[consumer].Value.(int64)) + unbondingPeriodPerChain[ChainId(consumer)] = time.Duration(params["UnbondingPeriodPerChain"].Value.(itf.MapExprType)[consumer].Value.(int64)) * time.Second + trustingPeriodPerChain[ChainId(consumer)] = time.Duration(params["TrustingPeriodPerChain"].Value.(itf.MapExprType)[consumer].Value.(int64)) * time.Second + ccvTimeoutPerChain[ChainId(consumer)] = time.Duration(params["CcvTimeout"].Value.(itf.MapExprType)[consumer].Value.(int64)) * time.Second } modelParams := ModelParams{ VscTimeout: vscTimeout, CcvTimeout: ccvTimeoutPerChain, UnbondingPeriodPerChain: unbondingPeriodPerChain, + TrustingPeriodPerChain: trustingPeriodPerChain, } valExprs := params["Nodes"].Value.(itf.ListExprType) @@ -146,7 +160,8 @@ func TestItfTrace(t *testing.T) { actionKind := lastAction["kind"].Value.(string) switch actionKind { case "init": - // start the chain(s) + t.Log("Initializing...") + t.Logf(driver.getStateString()) case "VotingPowerChange": node := lastAction["validator"].Value.(string) newVotingPower := lastAction["newVotingPower"].Value.(int64) diff --git a/tests/difference/core/quint_model/driver/setup.go b/tests/difference/core/quint_model/driver/setup.go index 02341044e0..9667fb221f 100644 --- a/tests/difference/core/quint_model/driver/setup.go +++ b/tests/difference/core/quint_model/driver/setup.go @@ -39,7 +39,6 @@ const ( // Parameters used in the staking module StakingParamsMaxEntries = 10000 StakingParamsMaxValidators = 100 - StakingParamsUnbondingTime = 5 * 7 * 24 * time.Hour // 5 weeks ) // Parameters used by CometBFT @@ -49,6 +48,7 @@ var ( func getAppBytesAndSenders( chainID string, + modelParams ModelParams, app ibctesting.TestingApp, genesis map[string]json.RawMessage, initialValSet *cmttypes.ValidatorSet, @@ -115,7 +115,7 @@ func getAppBytesAndSenders( } var valStatus stakingtypes.BondStatus - if val.VotingPower > 0 { + if tokens.Int64() > 0 { valStatus = stakingtypes.Bonded } else { valStatus = stakingtypes.Unbonded @@ -145,7 +145,7 @@ func getAppBytesAndSenders( // add initial validator powers so consumer InitGenesis runs correctly pub, _ := val.ToProto() initValPowers = append(initValPowers, abcitypes.ValidatorUpdate{ - Power: val.VotingPower, + Power: tokens.Int64(), PubKey: pub.PubKey, }) } @@ -170,7 +170,7 @@ func getAppBytesAndSenders( // Set model parameters genesisStaking.Params.MaxEntries = StakingParamsMaxEntries genesisStaking.Params.MaxValidators = StakingParamsMaxValidators - genesisStaking.Params.UnbondingTime = StakingParamsUnbondingTime + genesisStaking.Params.UnbondingTime = modelParams.UnbondingPeriodPerChain[ChainId(chainID)] genesisStaking = *stakingtypes.NewGenesisState(genesisStaking.Params, stakingValidators, delegations) genesis[stakingtypes.ModuleName] = app.AppCodec().MustMarshalJSON(&genesisStaking) @@ -200,6 +200,7 @@ func getAppBytesAndSenders( func newChain( t *testing.T, + modelParams ModelParams, coord *ibctesting.Coordinator, appInit icstestingutils.AppIniter, chainID string, @@ -211,7 +212,7 @@ func newChain( baseapp.SetChainID(chainID)(app.GetBaseApp()) - stateBytes, senderAccounts := getAppBytesAndSenders(chainID, app, genesis, validators, nodes) + stateBytes, senderAccounts := getAppBytesAndSenders(chainID, modelParams, app, genesis, validators, nodes) protoConsParams := ConsensusParams.ToProto() app.InitChain( @@ -282,6 +283,7 @@ func (s *Driver) ConfigureNewPath(consumerChain *ibctesting.TestChain, providerC // Configure and create the client on the provider tmCfg := providerEndPoint.ClientConfig.(*ibctesting.TendermintConfig) tmCfg.UnbondingPeriod = params.UnbondingPeriodPerChain[ChainId(providerChain.ChainID)] + tmCfg.TrustingPeriod = params.TrustingPeriodPerChain[ChainId(providerChain.ChainID)] err := providerEndPoint.CreateClient() require.NoError(s.t, err, "Error creating client on provider for chain %v", consumerChain.ChainID) @@ -291,6 +293,7 @@ func (s *Driver) ConfigureNewPath(consumerChain *ibctesting.TestChain, providerC // Configure and create the client on the consumer tmCfg = consumerEndPoint.ClientConfig.(*ibctesting.TendermintConfig) tmCfg.UnbondingPeriod = params.UnbondingPeriodPerChain[consumerChainId] + tmCfg.TrustingPeriod = params.TrustingPeriodPerChain[consumerChainId] consumerClientState := ibctmtypes.NewClientState( providerChain.ChainID, tmCfg.TrustLevel, tmCfg.TrustingPeriod, tmCfg.UnbondingPeriod, tmCfg.MaxClockDrift, @@ -317,17 +320,11 @@ func (s *Driver) ConfigureNewPath(consumerChain *ibctesting.TestChain, providerC // their channel, and are ready for anything to happen. s.consumerKeeper(consumerChainId).SetProviderChannel(s.ctx(consumerChainId), consumerEndPoint.ChannelID) - // // Catch up consumer height to provider height. The provider was one ahead TODO: activate this - // // from committing additional validators. - // simibc.EndBlock(consumerChain, func() {}) - - // simibc.BeginBlock(consumerChain, initState.BlockInterval) - // simibc.BeginBlock(providerChain, initState.BlockInterval) - // Commit a block on both chains, giving us two committed headers from // the same time and height. This is the starting point for all our // data driven testing. lastConsumerHeader, _ := simibc.EndBlock(consumerChain, func() {}) + lastProviderHeader, _ = simibc.EndBlock(providerChain, func() {}) // Get ready to update clients. simibc.BeginBlock(providerChain, 0) @@ -353,15 +350,16 @@ func (s *Driver) setupChains( initValUpdates := cmttypes.TM2PB.ValidatorUpdates(valSet) // start provider s.t.Log("Creating provider chain") - providerChain := newChain(s.t, s.coordinator, icstestingutils.ProviderAppIniter, "provider", valSet, signers, nodes) + providerChain := newChain(s.t, params, s.coordinator, icstestingutils.ProviderAppIniter, "provider", valSet, signers, nodes) s.coordinator.Chains["provider"] = providerChain providerHeader, _ := simibc.EndBlock(providerChain, func() {}) + simibc.BeginBlock(providerChain, 0) // start consumer chains for _, chain := range consumers { s.t.Logf("Creating consumer chain %v", chain) - consumerChain := newChain(s.t, s.coordinator, icstestingutils.ConsumerAppIniter(initValUpdates), chain, valSet, signers, nodes) + consumerChain := newChain(s.t, params, s.coordinator, icstestingutils.ConsumerAppIniter(initValUpdates), chain, valSet, signers, nodes) s.coordinator.Chains[chain] = consumerChain path := s.ConfigureNewPath(consumerChain, providerChain, params, providerHeader) @@ -389,5 +387,8 @@ func createConsumerGenesis(modelParams ModelParams, providerChain *ibctesting.Te []string{}, ccv.DefaultRetryDelayPeriod, ) + params.CcvTimeoutPeriod = modelParams.CcvTimeout[ChainId(consumerClientState.ChainId)] + params.UnbondingPeriod = modelParams.UnbondingPeriodPerChain[ChainId(consumerClientState.ChainId)] + return consumertypes.NewInitialGenesisState(consumerClientState, providerConsState, valUpdates, params) } diff --git a/tests/difference/core/quint_model/driver/trace.json b/tests/difference/core/quint_model/driver/trace.json index a0c80be43e..8433328980 100644 --- a/tests/difference/core/quint_model/driver/trace.json +++ b/tests/difference/core/quint_model/driver/trace.json @@ -4,13 +4,13 @@ "format-description": "https://apalache.informal.systems/docs/adr/015adr-trace.html", "source": "ccv_model.qnt", "status": "ok", - "description": "Created by Quint on Thu Oct 19 2023 10:50:02 GMT+0200 (Central European Summer Time)", - "timestamp": 1697705402333 + "description": "Created by Quint on Mon Nov 06 2023 10:21:20 GMT+0100 (Central European Standard Time)", + "timestamp": 1699262480568 }, "vars": [ "currentState", - "params", - "trace" + "trace", + "params" ], "states": [ { @@ -313,7 +313,7 @@ [ "node1", { - "#bigint": "50" + "#bigint": "100" } ], [ @@ -386,6 +386,34 @@ "node9" ] }, + "TrustingPeriodPerChain": { + "#map": [ + [ + "consumer1", + { + "#bigint": "604800" + } + ], + [ + "consumer2", + { + "#bigint": "604800" + } + ], + [ + "consumer3", + { + "#bigint": "604800" + } + ], + [ + "provider", + { + "#bigint": "604800" + } + ] + ] + }, "UnbondingPeriodPerChain": { "#map": [ [ @@ -450,68 +478,7 @@ { "chainState": { "currentValidatorSet": { - "#map": [ - [ - "node1", - { - "#bigint": "100" - } - ], - [ - "node10", - { - "#bigint": "100" - } - ], - [ - "node2", - { - "#bigint": "100" - } - ], - [ - "node3", - { - "#bigint": "100" - } - ], - [ - "node4", - { - "#bigint": "100" - } - ], - [ - "node5", - { - "#bigint": "100" - } - ], - [ - "node6", - { - "#bigint": "100" - } - ], - [ - "node7", - { - "#bigint": "100" - } - ], - [ - "node8", - { - "#bigint": "100" - } - ], - [ - "node9", - { - "#bigint": "100" - } - ] - ] + "#map": [] }, "lastTimestamp": { "#bigint": "0" @@ -530,68 +497,7 @@ { "chainState": { "currentValidatorSet": { - "#map": [ - [ - "node1", - { - "#bigint": "100" - } - ], - [ - "node10", - { - "#bigint": "100" - } - ], - [ - "node2", - { - "#bigint": "100" - } - ], - [ - "node3", - { - "#bigint": "100" - } - ], - [ - "node4", - { - "#bigint": "100" - } - ], - [ - "node5", - { - "#bigint": "100" - } - ], - [ - "node6", - { - "#bigint": "100" - } - ], - [ - "node7", - { - "#bigint": "100" - } - ], - [ - "node8", - { - "#bigint": "100" - } - ], - [ - "node9", - { - "#bigint": "100" - } - ] - ] + "#map": [] }, "lastTimestamp": { "#bigint": "0" @@ -610,68 +516,7 @@ { "chainState": { "currentValidatorSet": { - "#map": [ - [ - "node1", - { - "#bigint": "100" - } - ], - [ - "node10", - { - "#bigint": "100" - } - ], - [ - "node2", - { - "#bigint": "100" - } - ], - [ - "node3", - { - "#bigint": "100" - } - ], - [ - "node4", - { - "#bigint": "100" - } - ], - [ - "node5", - { - "#bigint": "100" - } - ], - [ - "node6", - { - "#bigint": "100" - } - ], - [ - "node7", - { - "#bigint": "100" - } - ], - [ - "node8", - { - "#bigint": "100" - } - ], - [ - "node9", - { - "#bigint": "100" - } - ] - ] + "#map": [] }, "lastTimestamp": { "#bigint": "0" @@ -891,15 +736,15 @@ "#map": [ [ "consumer1", - "running" + "not consumer" ], [ "consumer2", - "running" + "not consumer" ], [ "consumer3", - "running" + "not consumer" ] ] }, @@ -1058,6 +903,34 @@ "node9" ] }, + "TrustingPeriodPerChain": { + "#map": [ + [ + "consumer1", + { + "#bigint": "604800" + } + ], + [ + "consumer2", + { + "#bigint": "604800" + } + ], + [ + "consumer3", + { + "#bigint": "604800" + } + ], + [ + "provider", + { + "#bigint": "604800" + } + ] + ] + }, "UnbondingPeriodPerChain": { "#map": [ [ @@ -1111,11 +984,7 @@ { "consumerChain": "", "consumersToStart": { - "#set": [ - "consumer1", - "consumer2", - "consumer3" - ] + "#set": [] }, "consumersToStop": { "#set": [] @@ -1223,68 +1092,7 @@ { "chainState": { "currentValidatorSet": { - "#map": [ - [ - "node1", - { - "#bigint": "100" - } - ], - [ - "node10", - { - "#bigint": "100" - } - ], - [ - "node2", - { - "#bigint": "100" - } - ], - [ - "node3", - { - "#bigint": "100" - } - ], - [ - "node4", - { - "#bigint": "100" - } - ], - [ - "node5", - { - "#bigint": "100" - } - ], - [ - "node6", - { - "#bigint": "100" - } - ], - [ - "node7", - { - "#bigint": "100" - } - ], - [ - "node8", - { - "#bigint": "100" - } - ], - [ - "node9", - { - "#bigint": "100" - } - ] - ] + "#map": [] }, "lastTimestamp": { "#bigint": "0" @@ -1393,7 +1201,7 @@ [ "node10", { - "#bigint": "0" + "#bigint": "100" } ], [ @@ -1447,7 +1255,7 @@ ] }, "lastTimestamp": { - "#bigint": "604800" + "#bigint": "3024000" }, "votingPowerHistory": [ { @@ -1514,6 +1322,70 @@ ] ] }, + { + "#map": [ + [ + "node1", + { + "#bigint": "100" + } + ], + [ + "node10", + { + "#bigint": "100" + } + ], + [ + "node2", + { + "#bigint": "100" + } + ], + [ + "node3", + { + "#bigint": "100" + } + ], + [ + "node4", + { + "#bigint": "100" + } + ], + [ + "node5", + { + "#bigint": "100" + } + ], + [ + "node6", + { + "#bigint": "100" + } + ], + [ + "node7", + { + "#bigint": "100" + } + ], + [ + "node8", + { + "#bigint": "100" + } + ], + [ + "node9", + { + "#bigint": "100" + } + ] + ] + }, { "#map": [ [ @@ -1588,7 +1460,7 @@ ], [ "consumer2", - "running" + "not consumer" ], [ "consumer3", @@ -1612,7 +1484,7 @@ ] ] }, - "providerValidatorSetChangedInThisBlock": true, + "providerValidatorSetChangedInThisBlock": false, "receivedMaturations": { "#set": [] }, @@ -1751,6 +1623,34 @@ "node9" ] }, + "TrustingPeriodPerChain": { + "#map": [ + [ + "consumer1", + { + "#bigint": "604800" + } + ], + [ + "consumer2", + { + "#bigint": "604800" + } + ], + [ + "consumer3", + { + "#bigint": "604800" + } + ], + [ + "provider", + { + "#bigint": "604800" + } + ] + ] + }, "UnbondingPeriodPerChain": { "#map": [ [ @@ -1804,11 +1704,7 @@ { "consumerChain": "", "consumersToStart": { - "#set": [ - "consumer1", - "consumer2", - "consumer3" - ] + "#set": [] }, "consumersToStop": { "#set": [] @@ -1825,19 +1721,22 @@ { "consumerChain": "", "consumersToStart": { - "#set": [] + "#set": [ + "consumer1", + "consumer3" + ] }, "consumersToStop": { "#set": [] }, - "kind": "VotingPowerChange", + "kind": "EndAndBeginBlockForProvider", "newVotingPower": { "#bigint": "0" }, "timeAdvancement": { - "#bigint": "0" + "#bigint": "2419200" }, - "validator": "node10" + "validator": "" } ] }, @@ -1933,68 +1832,7 @@ { "chainState": { "currentValidatorSet": { - "#map": [ - [ - "node1", - { - "#bigint": "100" - } - ], - [ - "node10", - { - "#bigint": "100" - } - ], - [ - "node2", - { - "#bigint": "100" - } - ], - [ - "node3", - { - "#bigint": "100" - } - ], - [ - "node4", - { - "#bigint": "100" - } - ], - [ - "node5", - { - "#bigint": "100" - } - ], - [ - "node6", - { - "#bigint": "100" - } - ], - [ - "node7", - { - "#bigint": "100" - } - ], - [ - "node8", - { - "#bigint": "100" - } - ], - [ - "node9", - { - "#bigint": "100" - } - ] - ] + "#map": [] }, "lastTimestamp": { "#bigint": "0" @@ -2077,74 +1915,9 @@ ] }, "lastTimestamp": { - "#bigint": "1" + "#bigint": "0" }, - "votingPowerHistory": [ - { - "#map": [ - [ - "node1", - { - "#bigint": "100" - } - ], - [ - "node10", - { - "#bigint": "100" - } - ], - [ - "node2", - { - "#bigint": "100" - } - ], - [ - "node3", - { - "#bigint": "100" - } - ], - [ - "node4", - { - "#bigint": "100" - } - ], - [ - "node5", - { - "#bigint": "100" - } - ], - [ - "node6", - { - "#bigint": "100" - } - ], - [ - "node7", - { - "#bigint": "100" - } - ], - [ - "node8", - { - "#bigint": "100" - } - ], - [ - "node9", - { - "#bigint": "100" - } - ] - ] - } - ] + "votingPowerHistory": [] }, "maturationTimes": { "#map": [] @@ -2168,13 +1941,13 @@ [ "node10", { - "#bigint": "0" + "#bigint": "100" } ], [ "node2", { - "#bigint": "100" + "#bigint": "50" } ], [ @@ -2219,12 +1992,76 @@ "#bigint": "100" } ] - ] - }, - "lastTimestamp": { - "#bigint": "604800" - }, - "votingPowerHistory": [ + ] + }, + "lastTimestamp": { + "#bigint": "3024000" + }, + "votingPowerHistory": [ + { + "#map": [ + [ + "node1", + { + "#bigint": "100" + } + ], + [ + "node10", + { + "#bigint": "100" + } + ], + [ + "node2", + { + "#bigint": "100" + } + ], + [ + "node3", + { + "#bigint": "100" + } + ], + [ + "node4", + { + "#bigint": "100" + } + ], + [ + "node5", + { + "#bigint": "100" + } + ], + [ + "node6", + { + "#bigint": "100" + } + ], + [ + "node7", + { + "#bigint": "100" + } + ], + [ + "node8", + { + "#bigint": "100" + } + ], + [ + "node9", + { + "#bigint": "100" + } + ] + ] + }, { "#map": [ [ @@ -2363,7 +2200,7 @@ ], [ "consumer2", - "running" + "not consumer" ], [ "consumer3", @@ -2526,6 +2363,34 @@ "node9" ] }, + "TrustingPeriodPerChain": { + "#map": [ + [ + "consumer1", + { + "#bigint": "604800" + } + ], + [ + "consumer2", + { + "#bigint": "604800" + } + ], + [ + "consumer3", + { + "#bigint": "604800" + } + ], + [ + "provider", + { + "#bigint": "604800" + } + ] + ] + }, "UnbondingPeriodPerChain": { "#map": [ [ @@ -2579,11 +2444,7 @@ { "consumerChain": "", "consumersToStart": { - "#set": [ - "consumer1", - "consumer2", - "consumer3" - ] + "#set": [] }, "consumersToStop": { "#set": [] @@ -2600,36 +2461,39 @@ { "consumerChain": "", "consumersToStart": { - "#set": [] + "#set": [ + "consumer1", + "consumer3" + ] }, "consumersToStop": { "#set": [] }, - "kind": "VotingPowerChange", + "kind": "EndAndBeginBlockForProvider", "newVotingPower": { "#bigint": "0" }, "timeAdvancement": { - "#bigint": "0" + "#bigint": "2419200" }, - "validator": "node10" + "validator": "" }, { - "consumerChain": "consumer3", + "consumerChain": "", "consumersToStart": { "#set": [] }, "consumersToStop": { "#set": [] }, - "kind": "EndAndBeginBlockForConsumer", + "kind": "VotingPowerChange", "newVotingPower": { - "#bigint": "0" + "#bigint": "50" }, "timeAdvancement": { - "#bigint": "1" + "#bigint": "0" }, - "validator": "" + "validator": "node2" } ] }, @@ -2725,68 +2589,7 @@ { "chainState": { "currentValidatorSet": { - "#map": [ - [ - "node1", - { - "#bigint": "100" - } - ], - [ - "node10", - { - "#bigint": "100" - } - ], - [ - "node2", - { - "#bigint": "100" - } - ], - [ - "node3", - { - "#bigint": "100" - } - ], - [ - "node4", - { - "#bigint": "100" - } - ], - [ - "node5", - { - "#bigint": "100" - } - ], - [ - "node6", - { - "#bigint": "100" - } - ], - [ - "node7", - { - "#bigint": "100" - } - ], - [ - "node8", - { - "#bigint": "100" - } - ], - [ - "node9", - { - "#bigint": "100" - } - ] - ] + "#map": [] }, "lastTimestamp": { "#bigint": "0" @@ -2869,7 +2672,7 @@ ] }, "lastTimestamp": { - "#bigint": "1" + "#bigint": "86400" }, "votingPowerHistory": [ { @@ -2960,7 +2763,7 @@ [ "node10", { - "#bigint": "0" + "#bigint": "100" } ], [ @@ -3014,7 +2817,7 @@ ] }, "lastTimestamp": { - "#bigint": "604800" + "#bigint": "3024000" }, "votingPowerHistory": [ { @@ -3081,6 +2884,70 @@ ] ] }, + { + "#map": [ + [ + "node1", + { + "#bigint": "100" + } + ], + [ + "node10", + { + "#bigint": "100" + } + ], + [ + "node2", + { + "#bigint": "100" + } + ], + [ + "node3", + { + "#bigint": "100" + } + ], + [ + "node4", + { + "#bigint": "100" + } + ], + [ + "node5", + { + "#bigint": "100" + } + ], + [ + "node6", + { + "#bigint": "100" + } + ], + [ + "node7", + { + "#bigint": "100" + } + ], + [ + "node8", + { + "#bigint": "100" + } + ], + [ + "node9", + { + "#bigint": "100" + } + ] + ] + }, { "#map": [ [ @@ -3155,7 +3022,7 @@ ], [ "consumer2", - "running" + "not consumer" ], [ "consumer3", @@ -3318,6 +3185,34 @@ "node9" ] }, + "TrustingPeriodPerChain": { + "#map": [ + [ + "consumer1", + { + "#bigint": "604800" + } + ], + [ + "consumer2", + { + "#bigint": "604800" + } + ], + [ + "consumer3", + { + "#bigint": "604800" + } + ], + [ + "provider", + { + "#bigint": "604800" + } + ] + ] + }, "UnbondingPeriodPerChain": { "#map": [ [ @@ -3371,11 +3266,7 @@ { "consumerChain": "", "consumersToStart": { - "#set": [ - "consumer1", - "consumer2", - "consumer3" - ] + "#set": [] }, "consumersToStop": { "#set": [] @@ -3392,53 +3283,56 @@ { "consumerChain": "", "consumersToStart": { - "#set": [] + "#set": [ + "consumer1", + "consumer3" + ] }, "consumersToStop": { "#set": [] }, - "kind": "VotingPowerChange", + "kind": "EndAndBeginBlockForProvider", "newVotingPower": { "#bigint": "0" }, "timeAdvancement": { - "#bigint": "0" + "#bigint": "2419200" }, - "validator": "node10" + "validator": "" }, { - "consumerChain": "consumer3", + "consumerChain": "", "consumersToStart": { "#set": [] }, "consumersToStop": { "#set": [] }, - "kind": "EndAndBeginBlockForConsumer", + "kind": "VotingPowerChange", "newVotingPower": { - "#bigint": "0" + "#bigint": "50" }, "timeAdvancement": { - "#bigint": "1" + "#bigint": "0" }, - "validator": "" + "validator": "node2" }, { - "consumerChain": "", + "consumerChain": "consumer3", "consumersToStart": { "#set": [] }, "consumersToStop": { "#set": [] }, - "kind": "VotingPowerChange", + "kind": "EndAndBeginBlockForConsumer", "newVotingPower": { - "#bigint": "50" + "#bigint": "0" }, "timeAdvancement": { - "#bigint": "0" + "#bigint": "86400" }, - "validator": "node2" + "validator": "" } ] } From 81bcd3b0e2ddf18ffea9234c1d3f75d1cb49ce9c Mon Sep 17 00:00:00 2001 From: Philip Offtermatt Date: Tue, 7 Nov 2023 09:39:53 +0100 Subject: [PATCH 008/111] Adjust tests for fee testing --- Dockerfile.gaia | 2 +- tests/e2e/actions.go | 69 ++++++++++++++++++------ tests/e2e/steps_start_chains.go | 41 ++------------ tests/e2e/testnet-scripts/start-chain.sh | 1 + 4 files changed, 61 insertions(+), 52 deletions(-) diff --git a/Dockerfile.gaia b/Dockerfile.gaia index b9f6ff007f..40dbd98da7 100644 --- a/Dockerfile.gaia +++ b/Dockerfile.gaia @@ -29,7 +29,7 @@ RUN if [ -n "${GAIA_TAG}" ]; \ then git checkout "${GAIA_TAG}"; \ # if GAIA_TAG is not set, build the latest tagged version else \ - git checkout $(git tag | tail -1); \ + git checkout $(git tag | sort -Vr | head -n1); \ fi # Also replace sdk version in the go.mod if specified diff --git a/tests/e2e/actions.go b/tests/e2e/actions.go index 63070289d6..3bac7cc5c8 100644 --- a/tests/e2e/actions.go +++ b/tests/e2e/actions.go @@ -43,7 +43,8 @@ func (tr TestConfig) sendTokens( tr.validatorConfigs[action.From].DelAddress, tr.validatorConfigs[action.To].DelAddress, fmt.Sprint(action.Amount)+`stake`, - + `--gas-prices`, `0.0025stake`, + `--gas-adjustment`, `1.5`, `--chain-id`, string(tr.chainConfigs[action.Chain].ChainId), `--home`, tr.getValidatorHome(action.Chain, action.From), `--node`, tr.getValidatorNode(action.Chain, action.From), @@ -205,6 +206,9 @@ func (tr TestConfig) submitTextProposal( `--description`, action.Description, `--deposit`, fmt.Sprint(action.Deposit)+`stake`, `--from`, `validator`+fmt.Sprint(action.From), + `--gas`, "auto", + `--gas-prices`, `0.0025stake`, + `--gas-adjustment`, `1.5`, `--chain-id`, string(tr.chainConfigs[action.Chain].ChainId), `--home`, tr.getValidatorHome(action.Chain, action.From), `--node`, tr.getValidatorNode(action.Chain, action.From), @@ -274,16 +278,22 @@ func (tr TestConfig) submitConsumerAdditionProposal( //#nosec G204 -- Bypass linter warning for spawning subprocess with cmd arguments. // CONSUMER ADDITION PROPOSAL - bz, err = exec.Command("docker", "exec", tr.containerConfig.InstanceName, tr.chainConfigs[action.Chain].BinaryName, + cmd := exec.Command("docker", "exec", tr.containerConfig.InstanceName, tr.chainConfigs[action.Chain].BinaryName, "tx", "gov", "submit-legacy-proposal", "consumer-addition", "/temp-proposal.json", `--from`, `validator`+fmt.Sprint(action.From), + `--gas-prices`, `0.0025stake`, + `--gas-adjustment`, `1.5`, `--chain-id`, string(tr.chainConfigs[action.Chain].ChainId), `--home`, tr.getValidatorHome(action.Chain, action.From), - `--gas`, `900000`, + `--gas`, "auto", `--node`, tr.getValidatorNode(action.Chain, action.From), `--keyring-backend`, `test`, `-y`, - ).CombinedOutput() + ) + + log.Println(cmd) + + bz, err = cmd.CombinedOutput() if err != nil { log.Fatal(err, "\n", string(bz)) @@ -338,10 +348,12 @@ func (tr TestConfig) submitConsumerRemovalProposal( "tx", "gov", "submit-legacy-proposal", "consumer-removal", "/temp-proposal.json", `--from`, `validator`+fmt.Sprint(action.From), + `--gas-prices`, `0.0025stake`, + `--gas-adjustment`, `1.5`, `--chain-id`, string(tr.chainConfigs[action.Chain].ChainId), `--home`, tr.getValidatorHome(action.Chain, action.From), `--node`, tr.getValidatorNode(action.Chain, action.From), - `--gas`, "900000", + `--gas`, "auto", `--keyring-backend`, `test`, `-y`, ).CombinedOutput() @@ -414,10 +426,12 @@ func (tr TestConfig) submitParamChangeProposal( "tx", "gov", "submit-legacy-proposal", "param-change", "/params-proposal.json", `--from`, `validator`+fmt.Sprint(action.From), + `--gas-prices`, `0.0025stake`, + `--gas-adjustment`, `1.5`, `--chain-id`, string(tr.chainConfigs[action.Chain].ChainId), `--home`, tr.getValidatorHome(action.Chain, action.From), `--node`, tr.getValidatorNode(action.Chain, action.From), - `--gas`, "900000", + `--gas`, "auto", `--keyring-backend`, `test`, `-y`, ) @@ -490,7 +504,9 @@ func (tr TestConfig) submitEquivocationProposal(action submitEquivocationProposa `--chain-id`, string(providerChain.ChainId), `--home`, tr.getValidatorHome(providerChain.ChainId, action.From), `--node`, tr.getValidatorNode(providerChain.ChainId, action.From), - `--gas`, "9000000", + `--gas`, "auto", + `--gas-prices`, `0.0025stake`, + `--gas-adjustment`, `1.5`, `--keyring-backend`, `test`, `-y`, ).CombinedOutput() @@ -527,11 +543,13 @@ func (tr *TestConfig) voteGovProposal( fmt.Sprint(action.PropNumber), vote, `--from`, `validator`+fmt.Sprint(val), + `--gas-prices`, `0.0025stake`, + `--gas-adjustment`, `1.5`, `--chain-id`, string(tr.chainConfigs[action.Chain].ChainId), `--home`, tr.getValidatorHome(action.Chain, val), `--node`, tr.getValidatorNode(action.Chain, val), `--keyring-backend`, `test`, - `--gas`, "900000", + `--gas`, "auto", `-y`, ).CombinedOutput() if err != nil { @@ -740,7 +758,7 @@ websocket_addr = "%s" [chains.gas_price] denom = "stake" - price = 0.000 + price = 0.025 [chains.trust_threshold] denominator = "3" @@ -1015,6 +1033,10 @@ func (tr TestConfig) addIbcConnectionHermes( "--b-client", "07-tendermint-"+fmt.Sprint(action.ClientB), ) + if verbose { + log.Println("addIbcConnectionHermes cmd: ", cmd.String()) + } + cmdReader, err := cmd.StdoutPipe() if err != nil { log.Fatal(err) @@ -1386,6 +1408,9 @@ func (tr TestConfig) delegateTokens( fmt.Sprint(action.Amount)+`stake`, `--from`, `validator`+fmt.Sprint(action.From), + `--gas`, "auto", + `--gas-prices`, `0.0025stake`, + `--gas-adjustment`, `1.5`, `--chain-id`, string(tr.chainConfigs[action.Chain].ChainId), `--home`, tr.getValidatorHome(action.Chain, action.From), `--node`, tr.getValidatorNode(action.Chain, action.From), @@ -1430,10 +1455,12 @@ func (tr TestConfig) unbondTokens( fmt.Sprint(action.Amount)+`stake`, `--from`, `validator`+fmt.Sprint(action.Sender), + `--gas-prices`, `0.0025stake`, + `--gas-adjustment`, `1.5`, `--chain-id`, string(tr.chainConfigs[action.Chain].ChainId), `--home`, tr.getValidatorHome(action.Chain, action.Sender), `--node`, tr.getValidatorNode(action.Chain, action.Sender), - `--gas`, "900000", + `--gas`, "auto", `--keyring-backend`, `test`, `-y`, ) @@ -1497,10 +1524,12 @@ func (tr TestConfig) cancelUnbondTokens( fmt.Sprint(action.Amount)+`stake`, fmt.Sprint(creationHeight), `--from`, `validator`+fmt.Sprint(action.Delegator), + `--gas-prices`, `0.0025stake`, + `--gas-adjustment`, `1.5`, `--chain-id`, string(tr.chainConfigs[action.Chain].ChainId), `--home`, tr.getValidatorHome(action.Chain, action.Delegator), `--node`, tr.getValidatorNode(action.Chain, action.Delegator), - `--gas`, "900000", + `--gas`, "auto", `--keyring-backend`, `test`, `-o`, `json`, `-y`, @@ -1550,11 +1579,13 @@ func (tr TestConfig) redelegateTokens(action redelegateTokensAction, verbose boo redelegateDst, fmt.Sprint(action.Amount)+`stake`, `--from`, `validator`+fmt.Sprint(action.TxSender), + `--gas-prices`, `0.0025stake`, + `--gas-adjustment`, `1.5`, `--chain-id`, string(tr.chainConfigs[action.Chain].ChainId), `--home`, tr.getValidatorHome(action.Chain, action.TxSender), `--node`, tr.getValidatorNode(action.Chain, action.TxSender), // Need to manually set gas limit past default (200000), since redelegate has a lot of operations - `--gas`, "900000", + `--gas`, "auto", `--keyring-backend`, `test`, `-y`, ) @@ -1680,7 +1711,9 @@ func (tr TestConfig) unjailValidator(action unjailValidatorAction, verbose bool) `--chain-id`, string(tr.chainConfigs[action.Provider].ChainId), `--home`, tr.getValidatorHome(action.Provider, action.Validator), `--node`, tr.getValidatorNode(action.Provider, action.Validator), - `--gas`, "900000", + `--gas`, "auto", + `--gas-prices`, `0.0025stake`, + `--gas-adjustment`, `1.5`, `--keyring-backend`, `test`, `-y`, ) @@ -1738,6 +1771,9 @@ func (tr TestConfig) registerRepresentative( `--commission-max-change-rate`, "0.01", `--min-self-delegation`, "1", `--from`, `validator`+fmt.Sprint(val), + `--gas`, "auto", + `--gas-prices`, `0.0025stake`, + `--gas-adjustment`, `1.5`, `--chain-id`, string(tr.chainConfigs[action.Chain].ChainId), `--home`, tr.getValidatorHome(action.Chain, val), `--node`, tr.getValidatorNode(action.Chain, val), @@ -1802,7 +1838,9 @@ func (tr TestConfig) submitChangeRewardDenomsProposal(action submitChangeRewardD `--chain-id`, string(providerChain.ChainId), `--home`, tr.getValidatorHome(providerChain.ChainId, action.From), `--node`, tr.getValidatorNode(providerChain.ChainId, action.From), - `--gas`, "9000000", + `--gas`, "auto", + `--gas-prices`, `0.0025stake`, + `--gas-adjustment`, `1.5`, `--keyring-backend`, `test`, `-y`, ).CombinedOutput() @@ -1955,7 +1993,7 @@ func (tr TestConfig) assignConsumerPubKey(action assignConsumerPubKeyAction, ver gas = "9000000" } assignKey := fmt.Sprintf( - `%s tx provider assign-consensus-key %s '%s' --from validator%s --chain-id %s --home %s --node %s --gas %s --keyring-backend test -y -o json`, + `%s tx provider assign-consensus-key %s '%s' --from validator%s --chain-id %s --home %s --node %s --gas %s --gas-prices %s --gas-adjustment 1.5 --keyring-backend test -y -o json`, tr.chainConfigs[ChainID("provi")].BinaryName, string(tr.chainConfigs[action.Chain].ChainId), action.ConsumerPubkey, @@ -1964,6 +2002,7 @@ func (tr TestConfig) assignConsumerPubKey(action assignConsumerPubKeyAction, ver tr.getValidatorHome(ChainID("provi"), action.Validator), tr.getValidatorNode(ChainID("provi"), action.Validator), gas, + `0.0025stake`, ) //#nosec G204 -- Bypass linter warning for spawning subprocess with cmd arguments. diff --git a/tests/e2e/steps_start_chains.go b/tests/e2e/steps_start_chains.go index ace3d6c255..6d929fc8be 100644 --- a/tests/e2e/steps_start_chains.go +++ b/tests/e2e/steps_start_chains.go @@ -10,20 +10,12 @@ func stepStartProviderChain() []Step { Action: StartChainAction{ Chain: ChainID("provi"), Validators: []StartChainValidator{ - {Id: ValidatorID("bob"), Stake: 500000000, Allocation: 10000000000}, - {Id: ValidatorID("alice"), Stake: 500000000, Allocation: 10000000000}, - {Id: ValidatorID("carol"), Stake: 500000000, Allocation: 10000000000}, - }, - }, - State: State{ - ChainID("provi"): ChainState{ - ValBalances: &map[ValidatorID]uint{ - ValidatorID("alice"): 9500000000, - ValidatorID("bob"): 9500000000, - ValidatorID("carol"): 9500000000, - }, + {Id: ValidatorID("bob"), Stake: 500000000, Allocation: 1000000000000000}, + {Id: ValidatorID("alice"), Stake: 500000000, Allocation: 1000000000000000}, + {Id: ValidatorID("carol"), Stake: 500000000, Allocation: 1000000000000000}, }, }, + State: State{}, }, } } @@ -41,10 +33,6 @@ func stepsStartConsumerChain(consumerName string, proposalIndex, chainIndex uint }, State: State{ ChainID("provi"): ChainState{ - ValBalances: &map[ValidatorID]uint{ - ValidatorID("alice"): 9489999999, - ValidatorID("bob"): 9500000000, - }, Proposals: &map[uint]Proposal{ proposalIndex: ConsumerAdditionProposal{ Deposit: 10000001, @@ -133,10 +121,6 @@ func stepsStartConsumerChain(consumerName string, proposalIndex, chainIndex uint Status: "PROPOSAL_STATUS_PASSED", }, }, - ValBalances: &map[ValidatorID]uint{ - ValidatorID("alice"): 9500000000, - ValidatorID("bob"): 9500000000, - }, }, }, }, @@ -156,22 +140,7 @@ func stepsStartConsumerChain(consumerName string, proposalIndex, chainIndex uint // values from the genesis file. GenesisChanges: ".app_state.ccvconsumer.params.soft_opt_out_threshold = \"0.05\"", }, - State: State{ - ChainID("provi"): ChainState{ - ValBalances: &map[ValidatorID]uint{ - ValidatorID("alice"): 9500000000, - ValidatorID("bob"): 9500000000, - ValidatorID("carol"): 9500000000, - }, - }, - ChainID(consumerName): ChainState{ - ValBalances: &map[ValidatorID]uint{ - ValidatorID("alice"): 10000000000, - ValidatorID("bob"): 10000000000, - ValidatorID("carol"): 10000000000, - }, - }, - }, + State: State{}, }, { Action: addIbcConnectionAction{ diff --git a/tests/e2e/testnet-scripts/start-chain.sh b/tests/e2e/testnet-scripts/start-chain.sh index 88c8455e51..c2ec92d6b5 100644 --- a/tests/e2e/testnet-scripts/start-chain.sh +++ b/tests/e2e/testnet-scripts/start-chain.sh @@ -198,6 +198,7 @@ do #'s/foo/bar/;s/abc/def/' sed -i "$TENDERMINT_CONFIG_TRANSFORM" $CHAIN_ID/validator$VAL_ID/config/config.toml fi + sed -i 's/minimum-gas-prices = "0stake"/minimum-gas-prices = "0.0025stake"/g' $CHAIN_ID/validator$VAL_ID/config/app.toml done From eedcf46efce3cd55031efd2a3879057bdcfad409 Mon Sep 17 00:00:00 2001 From: Philip Offtermatt Date: Tue, 7 Nov 2023 16:36:56 +0100 Subject: [PATCH 009/111] Use correct validators in RequestInitChain --- tests/difference/core/quint_model/driver/setup.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/difference/core/quint_model/driver/setup.go b/tests/difference/core/quint_model/driver/setup.go index 9667fb221f..e396e31df7 100644 --- a/tests/difference/core/quint_model/driver/setup.go +++ b/tests/difference/core/quint_model/driver/setup.go @@ -218,7 +218,7 @@ func newChain( app.InitChain( abcitypes.RequestInitChain{ ChainId: chainID, - Validators: []abcitypes.ValidatorUpdate{}, + Validators: cmttypes.TM2PB.ValidatorUpdates(validators), ConsensusParams: &protoConsParams, AppStateBytes: stateBytes, }, From 1bb6ed078154f3da55b39963035b2e073b7a6187 Mon Sep 17 00:00:00 2001 From: Philip Offtermatt Date: Tue, 7 Nov 2023 17:11:21 +0100 Subject: [PATCH 010/111] Remove min and max functions --- tests/difference/core/quint_model/ccv.qnt | 6 +- .../difference/core/quint_model/ccv_model.qnt | 61 ++++++++++++++++++- .../quint_model/libraries/extraSpells.qnt | 42 ------------- 3 files changed, 63 insertions(+), 46 deletions(-) diff --git a/tests/difference/core/quint_model/ccv.qnt b/tests/difference/core/quint_model/ccv.qnt index b89331da33..8990c12055 100644 --- a/tests/difference/core/quint_model/ccv.qnt +++ b/tests/difference/core/quint_model/ccv.qnt @@ -478,7 +478,7 @@ module ccv { } ).toList() ) - val newConsumerState2 = newConsumerState.with( + val newConsumerState2: ConsumerState = newConsumerState.with( "maturationTimes", newMaturationTimes ).with( "outstandingPacketsToProvider", newOutstandingPackets @@ -801,7 +801,9 @@ module ccv { CcvTimeout.keys().forall(chain => CcvTimeout.get(chain) > 0) run CcvTimeoutLargerThanUnbondingPeriodTest = - CcvTimeout.get(PROVIDER_CHAIN) > UnbondingPeriodPerChain.values().max() + UnbondingPeriodPerChain.values().forall( + value => CcvTimeout.get(PROVIDER_CHAIN) > value + ) run ProviderIsNotAConsumerTest = not(ConsumerChains.contains(PROVIDER_CHAIN)) diff --git a/tests/difference/core/quint_model/ccv_model.qnt b/tests/difference/core/quint_model/ccv_model.qnt index 813450301a..2797f169ed 100644 --- a/tests/difference/core/quint_model/ccv_model.qnt +++ b/tests/difference/core/quint_model/ccv_model.qnt @@ -205,6 +205,63 @@ module ccv_model { params' = params, } + // ================== + // UTILITY FUNCTIONS + // ================== + + pure def earliest(packets: Set[VscPacket]): VscPacket = + val latestPossiblePacket: VscPacket = { + id: 0, + validatorSet: Map(), + sendingTime: 9999999999999 * Second, + } + packets.fold( + latestPossiblePacket, + (res, pack) => if(res.sendingTime < pack.sendingTime) { res } else { pack } + ) + + pure def latest(packets: Set[VscPacket]): VscPacket = + val earliestPossiblePacket: VscPacket = { + id: 0, + validatorSet: Map(), + sendingTime: -9999999999 * Second, + } + packets.fold( + earliestPossiblePacket, + (res, pack) => if(res.sendingTime >= pack.sendingTime) { res } else { pack } + ) + + // run maxByTest = + // all { + // assert(maxBy(Set(1, 2, 3), __x => __x) == 3), + // assert(maxBy(Set(1, 2, 3), __x => -__x) == 1), + // } + run earliestLatestTest = { + val packet1 = { + id: 1, + validatorSet: Map(), + sendingTime: 1 * Second, + } + + val packet2 = { + id: 2, + validatorSet: Map(), + sendingTime: 2 * Second, + } + + val packet3 = { + id: 3, + validatorSet: Map(), + sendingTime: 3 * Second, + } + all { + assert(earliest(Set(packet1, packet2, packet3)) == packet1), + assert(earliest(Set(packet3, packet2, packet1)) == packet1), + assert(latest(Set(packet1, packet2, packet3)) == packet3), + assert(latest(Set(packet3, packet2, packet1)) == packet3), + } + } + // ================== // INVARIANT CHECKS // ================== @@ -251,8 +308,8 @@ module ccv_model { if (commonPackets.size() == 0) { true // they don't share any packets, so nothing to check } else { - val newestCommonPacket = commonPackets.maxBy(packet => packet.sendingTime) - val oldestCommonPacket = commonPackets.minBy(packet => packet.sendingTime) + val newestCommonPacket = commonPackets.latest() + val oldestCommonPacket = commonPackets.earliest() // get all packets sent between the oldest and newest common packet val packetsBetween1 = packets1.select( packet => packet.sendingTime >= oldestCommonPacket.sendingTime and packet.sendingTime <= newestCommonPacket.sendingTime diff --git a/tests/difference/core/quint_model/libraries/extraSpells.qnt b/tests/difference/core/quint_model/libraries/extraSpells.qnt index cc20c17aef..cfea35de57 100644 --- a/tests/difference/core/quint_model/libraries/extraSpells.qnt +++ b/tests/difference/core/quint_model/libraries/extraSpells.qnt @@ -168,46 +168,4 @@ module extraSpells { assert(values(Map(1 -> 2, 3 -> 4)) == Set(2, 4)), assert(values(Map()) == Set()) } - - // Returns the maximal element of the set. - // If the set is empty, the function call will fail at runtime. - pure def max(__set: Set[int]): int = maxBy(__set, __a => __a) - - run maxTest = - all { - assert(max(Set(1, 2, 3)) == 3), - } - - // Returns the minimal element of the set. - // If the set is empty, the function call will fail at runtime. - pure def min(__set: Set[int]): int = minBy(__set, __a => __a) - - run minTest = - all { - assert(min(Set(1, 2, 3)) == 1), - } - - // Returns the maximum element of a set, according to a given function. - // If two elements are equally large, an arbitrary one will be returned. - // If the set is empty, the function call will fail at runtime. - pure def maxBy(__set: Set[a], __f: a => int): a = { - __set.fold( - oneOf(__set), - (__m, __e) => if(__f(__m) > __f(__e)) {__m } else {__e} - ) - } - - run maxByTest = - all { - assert(maxBy(Set(1, 2, 3), __x => __x) == 3), - assert(maxBy(Set(1, 2, 3), __x => -__x) == 1), - } - - // Like maxBy, but returns the minimum element. - pure def minBy(__set: Set[a], __f: a => int): a = { - __set.fold( - oneOf(__set), - (__m, __e) => if(__f(__m) < __f(__e)) {__m } else {__e} - ) - } } From 065f458c3307b0904eb2b6b8c6a04e20e7cada36 Mon Sep 17 00:00:00 2001 From: Philip Offtermatt Date: Wed, 8 Nov 2023 13:16:13 +0100 Subject: [PATCH 011/111] Add type annotations --- tests/difference/core/quint_model/ccv.qnt | 22 +++++++++++----------- 1 file changed, 11 insertions(+), 11 deletions(-) diff --git a/tests/difference/core/quint_model/ccv.qnt b/tests/difference/core/quint_model/ccv.qnt index 8990c12055..43f0920e4d 100644 --- a/tests/difference/core/quint_model/ccv.qnt +++ b/tests/difference/core/quint_model/ccv.qnt @@ -295,7 +295,7 @@ module ccv { val newProviderState = currentState.providerState.with( "consumerStatus", newConsumerStatus ) - val newState = currentState.with( + val newState: ProtocolState = currentState.with( "providerState", newProviderState ) (Ok(newState), true) // true because the packet timed out @@ -344,7 +344,7 @@ module ccv { val newProviderState = currentState.providerState.with( "consumerStatus", newConsumerStatus ) - val newState = currentState.with( + val newState: ProtocolState = currentState.with( "providerState", newProviderState ) (Ok(newState), true) // true because the packet timed out @@ -415,8 +415,8 @@ module ccv { tmpState.consumerStates.keys().mapBy( (consumer) => if (consumersToStart.contains(consumer)) { - val currentConsumerState = tmpState.consumerStates.get(consumer) - val newConsumerState = currentConsumerState.with( + val currentConsumerState: ConsumerState = tmpState.consumerStates.get(consumer) + val newConsumerState: ConsumerState = currentConsumerState.with( "chainState", currentConsumerState.chainState.with( "currentValidatorSet", providerStateAfterConsumerAdvancement.chainState.currentValidatorSet ) @@ -459,9 +459,9 @@ module ccv { // if the chain is not a consumer, return an error Err("chain is not a consumer") } else { - val currentConsumerState = currentState.consumerStates.get(chain) - val newChainState = currentConsumerState.chainState.endAndBeginBlockShared(timeAdvancement) - val newConsumerState = currentConsumerState.with( + val currentConsumerState: ConsumerState = currentState.consumerStates.get(chain) + val newChainState: ChainState = currentConsumerState.chainState.endAndBeginBlockShared(timeAdvancement) + val newConsumerState: ConsumerState = currentConsumerState.with( "chainState", newChainState ) val maturedPackets = newConsumerState.maturationTimes.keys().filter( @@ -484,7 +484,7 @@ module ccv { "outstandingPacketsToProvider", newOutstandingPackets ) val newConsumerStates = currentState.consumerStates.set(chain, newConsumerState2) - val newState = currentState.with( + val newState: ProtocolState = currentState.with( "consumerStates", newConsumerStates ) Ok(newState) @@ -650,8 +650,8 @@ module ccv { } else { // update the running validator set, but not the history yet, // as that only happens when the next block is started - val currentConsumerState = currentState.consumerStates.get(receiver) - val newConsumerState = + val currentConsumerState: ConsumerState = currentState.consumerStates.get(receiver) + val newConsumerState: ConsumerState = { ...currentConsumerState, chainState: currentConsumerState.chainState.with( @@ -769,7 +769,7 @@ module ccv { (false, "Consumer is not currently a consumer - must have 'running' status!") } else { val providerState = currentState.providerState - val consumerState = currentState.consumerStates.get(consumer) + val consumerState: ConsumerState = currentState.consumerStates.get(consumer) // has a packet been sent on the provider more than VscTimeout ago, but we have not received an answer since then? val sentVscPacketsToConsumer = providerState.sentVscPacketsToConsumer.get(consumer) From b1fde438035f90bf164563ede9bcd7f59a08fbfd Mon Sep 17 00:00:00 2001 From: Philip Offtermatt Date: Wed, 8 Nov 2023 13:16:51 +0100 Subject: [PATCH 012/111] Make state printing more robust --- .../core/quint_model/driver/common.go | 96 ++----------------- .../core/quint_model/driver/core.go | 68 +++++++++---- .../core/quint_model/driver/mbt_test.go | 21 ++-- .../core/quint_model/driver/setup.go | 25 +++-- 4 files changed, 86 insertions(+), 124 deletions(-) diff --git a/tests/difference/core/quint_model/driver/common.go b/tests/difference/core/quint_model/driver/common.go index db8f5c3885..a5e0cf8e5c 100644 --- a/tests/difference/core/quint_model/driver/common.go +++ b/tests/difference/core/quint_model/driver/common.go @@ -1,96 +1,16 @@ package main -import ( - "time" - - sdk "github.com/cosmos/cosmos-sdk/types" - stakingtypes "github.com/cosmos/cosmos-sdk/x/staking/types" - - tmproto "github.com/cometbft/cometbft/proto/tendermint/types" - tmtypes "github.com/cometbft/cometbft/types" -) - const ( P = "provider" - C = "consumer" ) -// ValStates represents the total delegation -// and bond status of a validator -type ValStates struct { - Delegation []int - Tokens []int - ValidatorExtraTokens []int - Status []stakingtypes.BondStatus -} - -type InitState struct { - PKSeeds []string - NumValidators int - MaxValidators int - InitialDelegatorTokens int - SlashDoublesign sdk.Dec - SlashDowntime sdk.Dec - UnbondingP time.Duration - UnbondingC time.Duration - Trusting time.Duration - MaxClockDrift time.Duration - BlockInterval time.Duration - ConsensusParams *tmproto.ConsensusParams - ValStates ValStates - MaxEntries int -} - -var initStateVar InitState - -func init() { - // tokens === power - sdk.DefaultPowerReduction = sdk.NewInt(1) - initStateVar = InitState{ - PKSeeds: []string{ - // Fixed seeds are used to create the private keys for validators. - // The seeds are chosen to ensure that the resulting validators are - // sorted in descending order by the staking module. - "bbaaaababaabbaabababbaabbbbbbaaa", - "abbbababbbabaaaaabaaabbbbababaab", - "bbabaabaabbbbbabbbaababbbbabbbbb", - "aabbbabaaaaababbbabaabaabbbbbbba", - }, - NumValidators: 4, - MaxValidators: 2, - InitialDelegatorTokens: 10000000000000, - SlashDoublesign: sdk.NewDec(0), - SlashDowntime: sdk.NewDec(0), - UnbondingP: time.Second * 70, - UnbondingC: time.Second * 50, - Trusting: time.Second * 49, - MaxClockDrift: time.Second * 10000, - BlockInterval: time.Second * 6, - ValStates: ValStates{ - Delegation: []int{4000, 3000, 2000, 1000}, - Tokens: []int{5000, 4000, 3000, 2000}, - ValidatorExtraTokens: []int{1000, 1000, 1000, 1000}, - Status: []stakingtypes.BondStatus{ - stakingtypes.Bonded, stakingtypes.Bonded, - stakingtypes.Unbonded, stakingtypes.Unbonded, - }, - }, - MaxEntries: 1000000, - ConsensusParams: &tmproto.ConsensusParams{ - Block: &tmproto.BlockParams{ - MaxBytes: 9223372036854775807, - MaxGas: 9223372036854775807, - }, - Evidence: &tmproto.EvidenceParams{ - MaxAgeNumBlocks: 302400, - MaxAgeDuration: 504 * time.Hour, // 3 weeks is the max duration - MaxBytes: 10000, - }, - Validator: &tmproto.ValidatorParams{ - PubKeyTypes: []string{ - tmtypes.ABCIPubKeyTypeEd25519, - }, - }, - }, +// getIndexOfString returns the index of the first occurrence of the given string +// in the given slice, or -1 if the string is not found. +func getIndexOfString(s string, slice []string) int { + for i, v := range slice { + if v == s { + return i + } } + return -1 } diff --git a/tests/difference/core/quint_model/driver/core.go b/tests/difference/core/quint_model/driver/core.go index 7890913ab3..d01ddab4a7 100644 --- a/tests/difference/core/quint_model/driver/core.go +++ b/tests/difference/core/quint_model/driver/core.go @@ -20,6 +20,8 @@ import ( simibc "github.com/cosmos/interchain-security/v3/testutil/simibc" consumerkeeper "github.com/cosmos/interchain-security/v3/x/ccv/consumer/keeper" providerkeeper "github.com/cosmos/interchain-security/v3/x/ccv/provider/keeper" + + cmttypes "github.com/cometbft/cometbft/types" ) // Define a new type for ChainIds to be more explicit @@ -42,7 +44,8 @@ type Driver struct { simibcs map[ChainId]*simibc.RelayedPath // keep around validators for easy access - valAddresses []sdk.ValAddress + validators []*cmttypes.Validator + valNames []string } // ctx returns the sdk.Context for the chain @@ -101,7 +104,7 @@ func (s *Driver) delegator() sdk.AccAddress { // validator returns the address for the validator with id (ix) i func (s *Driver) validator(i int64) sdk.ValAddress { - return s.valAddresses[i] + return sdk.ValAddress(s.validators[i].Address) } // consAddr returns the ConsAdd for the validator with id (ix) i @@ -120,13 +123,21 @@ func (s *Driver) isJailed(i int64) bool { // consumerPower returns the power on the consumer chain chain for // validator with id (ix) i func (s *Driver) consumerPower(i int64, chain ChainId) (int64, error) { - v, found := s.consumerKeeper(chain).GetCCValidator(s.ctx(C), s.validator(i)) + v, found := s.consumerKeeper(chain).GetCCValidator(s.ctx(chain), s.validator(i)) if !found { return 0, fmt.Errorf("GetCCValidator(%v) -> !found", s.validator(i)) } return v.Power, nil } +// consumerTokens returns the number of tokens that the validator with +// id (ix) i has delegated to it in total on the provider chain +func (s *Driver) providerPower(i int64) int64 { + v, found := s.providerStakingKeeper().GetValidator(s.ctx(P), s.validator(i)) + require.True(s.t, found, "GetValidator(%v) -> !found", s.validator(i)) + return v.BondedTokens().Int64() +} + // delegation returns the number of delegated tokens in the delegation from // the delegator account to the validator with id (ix) i func (s *Driver) delegation(i int64) int64 { @@ -147,7 +158,9 @@ func (s *Driver) validatorStatus(i int64) stakingtypes.BondStatus { // id (ix) i has delegated to it in total on the provider chain func (s *Driver) providerTokens(i int64) int64 { v, found := s.providerStakingKeeper().GetValidator(s.ctx(P), s.validator(i)) - require.True(s.t, found, "GetValidator(%v) -> !found", s.validator(i)) + if !found { + return 0 + } return v.Tokens.Int64() } @@ -199,14 +212,14 @@ func (s *Driver) consumerSlash(val sdk.ConsAddress, h int64, isDowntime bool, ch if isDowntime { kind = stakingtypes.Infraction_INFRACTION_DOWNTIME } - ctx := s.ctx(C) + ctx := s.ctx(chain) before := len(ctx.EventManager().Events()) s.consumerKeeper(chain).SlashWithInfractionReason(ctx, val, h, 0, sdk.Dec{}, kind) // consumer module emits packets on slash, so these must be collected. evts := ctx.EventManager().Events() packets := simibc.ParsePacketsFromEvents(evts[before:]) if len(packets) > 0 { - s.path(chain).Outboxes.AddPacket(C, packets[0]) + s.path(chain).Outboxes.AddPacket(string(chain), packets[0]) } } @@ -240,6 +253,10 @@ func (s *Driver) getStateString() string { return state.String() } +func (s *Driver) isProviderChain(chain ChainId) bool { + return chain == "provider" +} + func (s *Driver) getChainStateString(chain ChainId) string { ctx := s.ctx(chain) @@ -249,18 +266,36 @@ func (s *Driver) getChainStateString(chain ChainId) string { // Get the current block time blockTime := ctx.BlockTime() - // Get the validator set for the current block - validatorSet := s.validatorSet(chain) - // Build the chain info string var chainInfo strings.Builder chainInfo.WriteString(fmt.Sprintf(" Height: %d\n", height)) chainInfo.WriteString(fmt.Sprintf(" Time: %s\n", blockTime)) + if !s.isProviderChain(chain) { + // Check whether the chain is in the consumer chains on the provider + + consumerChains := s.providerKeeper().GetAllConsumerChains(s.providerCtx()) + + found := false + for _, consumerChain := range consumerChains { + if consumerChain.ChainId == string(chain) { + found = true + } + } + + if found { + chainInfo.WriteString("...is currently a consumer chain") + } else { + chainInfo.WriteString("...is currently not a consumer chain") + } + } + // Build the validator info string var validatorInfo strings.Builder - for _, validator := range validatorSet { - validatorInfo.WriteString(fmt.Sprintf(" Validator %s: power=%d\n", validator.GetOperator().String(), validator.BondedTokens())) + for index, valName := range s.valNames { + power := s.providerPower(int64(index)) + + validatorInfo.WriteString(fmt.Sprintf(" Validator %s: power=%d\n", valName, power)) } chainInfo.WriteString(validatorInfo.String()) @@ -273,15 +308,16 @@ func (s *Driver) endAndBeginBlock(chain ChainId, timeAdvancement time.Duration, }) } -func newDriver(t *testing.T, valAddresses []sdk.ValAddress) *Driver { +func newDriver(t *testing.T, validators []*cmttypes.Validator, valNames []string) *Driver { t.Log("Creating coordinator") coordinator := ibctesting.NewCoordinator(t, 0) // start without chains, which we add later suite := &Driver{ - t: t, - coordinator: coordinator, - simibcs: make(map[ChainId]*simibc.RelayedPath), - valAddresses: valAddresses, + t: t, + coordinator: coordinator, + simibcs: make(map[ChainId]*simibc.RelayedPath), + validators: validators, + valNames: valNames, } return suite } diff --git a/tests/difference/core/quint_model/driver/mbt_test.go b/tests/difference/core/quint_model/driver/mbt_test.go index f480d45048..ebece67ee6 100644 --- a/tests/difference/core/quint_model/driver/mbt_test.go +++ b/tests/difference/core/quint_model/driver/mbt_test.go @@ -6,7 +6,6 @@ import ( "time" cmttypes "github.com/cometbft/cometbft/types" - "github.com/cosmos/cosmos-sdk/types" "github.com/cosmos/interchain-security/v3/testutil/integration" "github.com/informalsystems/itf-go/itf" "github.com/stretchr/testify/require" @@ -136,14 +135,8 @@ func TestItfTrace(t *testing.T) { nodes[i] = addressMap[valName] } - valAddresses := make([]types.ValAddress, len(valNames)) - for i, valNode := range nodes { - pbVal := cmttypes.TM2PB.Validator(valNode) - valAddresses[i] = pbVal.Address - } - - driver := newDriver(t, valAddresses) - driver.setupChains(modelParams, valSet, signers, nodes, consumers) + driver := newDriver(t, nodes, valNames) + driver.setupChains(modelParams, valSet, signers, nodes, valNames, consumers) t.Log("Started chains") @@ -161,12 +154,18 @@ func TestItfTrace(t *testing.T) { switch actionKind { case "init": t.Log("Initializing...") - t.Logf(driver.getStateString()) case "VotingPowerChange": node := lastAction["validator"].Value.(string) newVotingPower := lastAction["newVotingPower"].Value.(int64) t.Logf("Setting provider voting power of %v to %v", node, newVotingPower) + // valIndex := getIndexOfString(node, valNames) + + // // set the voting power of the validator + + // // get the previous voting power of that validator + // prevVotingPower := driver.validato + case "EndAndBeginBlockForProvider": timeAdvancement := lastAction["timeAdvancement"].Value.(int64) consumersToStart := lastAction["consumersToStart"].Value.(itf.ListExprType) @@ -190,6 +189,8 @@ func TestItfTrace(t *testing.T) { log.Fatalf("Error loading trace file %s, step %v: do not know action type %s", path, index, actionKind) } + + t.Logf("Current actual state: %s", driver.getStateString()) } t.FailNow() } diff --git a/tests/difference/core/quint_model/driver/setup.go b/tests/difference/core/quint_model/driver/setup.go index e396e31df7..b85b592cb5 100644 --- a/tests/difference/core/quint_model/driver/setup.go +++ b/tests/difference/core/quint_model/driver/setup.go @@ -54,6 +54,7 @@ func getAppBytesAndSenders( initialValSet *cmttypes.ValidatorSet, // the list of nodes that will be created, even ones that have no voting power initially nodes []*cmttypes.Validator, + valNames []string, ) ([]byte, []ibctesting.SenderAccount) { accounts := []authtypes.GenesisAccount{} balances := []banktypes.Balance{} @@ -124,13 +125,15 @@ func getAppBytesAndSenders( delShares := sdk.NewDec(tokens.Int64()) // as many shares as tokens validator := stakingtypes.Validator{ - OperatorAddress: sdk.ValAddress(val.Address).String(), - ConsensusPubkey: pkAny, - Jailed: false, - Status: valStatus, - Tokens: tokens, - DelegatorShares: delShares, - Description: stakingtypes.Description{}, + OperatorAddress: sdk.ValAddress(val.Address).String(), + ConsensusPubkey: pkAny, + Jailed: false, + Status: valStatus, + Tokens: tokens, + DelegatorShares: delShares, + Description: stakingtypes.Description{ + Moniker: valNames[i], + }, UnbondingHeight: int64(0), UnbondingTime: time.Unix(0, 0).UTC(), Commission: stakingtypes.NewCommission(sdk.ZeroDec(), sdk.ZeroDec(), sdk.ZeroDec()), @@ -207,12 +210,13 @@ func newChain( validators *cmttypes.ValidatorSet, signers map[string]cmttypes.PrivValidator, nodes []*cmttypes.Validator, + valNames []string, ) *ibctesting.TestChain { app, genesis := appInit() baseapp.SetChainID(chainID)(app.GetBaseApp()) - stateBytes, senderAccounts := getAppBytesAndSenders(chainID, modelParams, app, genesis, validators, nodes) + stateBytes, senderAccounts := getAppBytesAndSenders(chainID, modelParams, app, genesis, validators, nodes, valNames) protoConsParams := ConsensusParams.ToProto() app.InitChain( @@ -345,12 +349,13 @@ func (s *Driver) setupChains( valSet *cmttypes.ValidatorSet, // the initial validator set signers map[string]cmttypes.PrivValidator, // a map of validator addresses to private validators (signers) nodes []*cmttypes.Validator, // the list of nodes, even ones that have no voting power initially + valNames []string, consumers []string, // a list of consumer chain names ) { initValUpdates := cmttypes.TM2PB.ValidatorUpdates(valSet) // start provider s.t.Log("Creating provider chain") - providerChain := newChain(s.t, params, s.coordinator, icstestingutils.ProviderAppIniter, "provider", valSet, signers, nodes) + providerChain := newChain(s.t, params, s.coordinator, icstestingutils.ProviderAppIniter, "provider", valSet, signers, nodes, valNames) s.coordinator.Chains["provider"] = providerChain providerHeader, _ := simibc.EndBlock(providerChain, func() {}) @@ -359,7 +364,7 @@ func (s *Driver) setupChains( // start consumer chains for _, chain := range consumers { s.t.Logf("Creating consumer chain %v", chain) - consumerChain := newChain(s.t, params, s.coordinator, icstestingutils.ConsumerAppIniter(initValUpdates), chain, valSet, signers, nodes) + consumerChain := newChain(s.t, params, s.coordinator, icstestingutils.ConsumerAppIniter(initValUpdates), chain, valSet, signers, nodes, valNames) s.coordinator.Chains[chain] = consumerChain path := s.ConfigureNewPath(consumerChain, providerChain, params, providerHeader) From 44914e2b89b4c777e97d428e8d1499aa6f600eaf Mon Sep 17 00:00:00 2001 From: Philip Offtermatt Date: Wed, 8 Nov 2023 13:36:53 +0100 Subject: [PATCH 013/111] Fix setting default power reduction --- tests/difference/core/quint_model/driver/common.go | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/tests/difference/core/quint_model/driver/common.go b/tests/difference/core/quint_model/driver/common.go index a5e0cf8e5c..db1557c2d0 100644 --- a/tests/difference/core/quint_model/driver/common.go +++ b/tests/difference/core/quint_model/driver/common.go @@ -1,5 +1,9 @@ package main +import ( + sdk "github.com/cosmos/cosmos-sdk/types" +) + const ( P = "provider" ) @@ -14,3 +18,8 @@ func getIndexOfString(s string, slice []string) int { } return -1 } + +func init() { + // tokens === power + sdk.DefaultPowerReduction = sdk.NewInt(1) +} From e9d7107a44a24fe1ca4ff29d7d6d789245df5b1b Mon Sep 17 00:00:00 2001 From: Philip Offtermatt Date: Wed, 8 Nov 2023 14:12:42 +0100 Subject: [PATCH 014/111] Adjust max steps and run all tests --- tests/difference/core/quint_model/run_invariants.sh | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/tests/difference/core/quint_model/run_invariants.sh b/tests/difference/core/quint_model/run_invariants.sh index 4c65693cc0..03e63db579 100755 --- a/tests/difference/core/quint_model/run_invariants.sh +++ b/tests/difference/core/quint_model/run_invariants.sh @@ -1,4 +1,5 @@ #! /bin/sh quint test ccv_model.qnt -quint run --invariant "all{ValidatorUpdatesArePropagatedInv,ValidatorSetHasExistedInv,SameVscPacketsInv,MatureOnTimeInv,EventuallyMatureOnProviderInv}" ccv_model.qnt --max-steps 500 --max-samples 200 \ No newline at end of file +quint test ccv_test.qnt +quint run --invariant "all{ValidatorUpdatesArePropagatedInv,ValidatorSetHasExistedInv,SameVscPacketsInv,MatureOnTimeInv,EventuallyMatureOnProviderInv}" ccv_model.qnt --max-steps 200 --max-samples 200 \ No newline at end of file From b8640d904fad67c1ae41a241ed0823f869cce4b2 Mon Sep 17 00:00:00 2001 From: Philip Offtermatt Date: Wed, 8 Nov 2023 14:13:07 +0100 Subject: [PATCH 015/111] Change semantics of VotingPowerChange to take change amount, not new total --- tests/difference/core/quint_model/ccv.qnt | 11 ++++++----- tests/difference/core/quint_model/ccv_model.qnt | 16 ++++++++-------- tests/difference/core/quint_model/ccv_test.qnt | 12 ++++++------ 3 files changed, 20 insertions(+), 19 deletions(-) diff --git a/tests/difference/core/quint_model/ccv.qnt b/tests/difference/core/quint_model/ccv.qnt index 43f0920e4d..4080a6b4d3 100644 --- a/tests/difference/core/quint_model/ccv.qnt +++ b/tests/difference/core/quint_model/ccv.qnt @@ -245,14 +245,15 @@ module ccv { // functions here roughly correspond to API calls that can be triggered from external sources // =================== - // the power of a validator on the provider chain is changed to the given amount. We do not care how this happens, + // the power of a validator on the provider chain is changed by the given amount. We do not care how this happens, // e.g. via undelegations, or delegations, ... pure def votingPowerChange(currentState: ProtocolState, validator: Node, amount: int): Result = { - if (amount < 0) { - Err("Voting power changes must be nonnegative") + pure val currentValidatorSet = currentState.providerState.chainState.currentValidatorSet + pure val oldVotingPower = if (currentValidatorSet.keys().contains(validator)) currentValidatorSet.get(validator) else 0 + if (amount == 0) { + Err("Voting power cannot change by zero!") } else { - pure val currentValidatorSet = currentState.providerState.chainState.currentValidatorSet - pure val newValidatorSet = currentValidatorSet.put(validator, amount) + pure val newValidatorSet = currentValidatorSet.put(validator, oldVotingPower + amount) // set the validator set changed flag val newProviderState = currentState.providerState.with( "providerValidatorSetChangedInThisBlock", true diff --git a/tests/difference/core/quint_model/ccv_model.qnt b/tests/difference/core/quint_model/ccv_model.qnt index 2797f169ed..4539ea4421 100644 --- a/tests/difference/core/quint_model/ccv_model.qnt +++ b/tests/difference/core/quint_model/ccv_model.qnt @@ -43,7 +43,7 @@ module ccv_model { consumersToStart: Set[Chain], consumersToStop: Set[Chain], validator: Node, - newVotingPower: int, + changeAmount: int, } @@ -64,7 +64,7 @@ module ccv_model { consumersToStart: Set(), consumersToStop: Set(), validator: "", - newVotingPower: 0, + changeAmount: 0, } // step allows the most generic nondeterminism, in particular it becomes relatively likely @@ -149,12 +149,12 @@ module ccv_model { } } - action VotingPowerChange(validator: Node, newVotingPower: int): bool = - val result = votingPowerChange(currentState, validator, newVotingPower) + action VotingPowerChange(validator: Node, changeAmount: int): bool = + val result = votingPowerChange(currentState, validator, changeAmount) all { result.hasError() == false, currentState' = result.newState, - trace' = trace.append(emptyAction.with("kind", "VotingPowerChange").with("validator", validator).with("newVotingPower", newVotingPower)), + trace' = trace.append(emptyAction.with("kind", "VotingPowerChange").with("validator", validator).with("changeAmount", changeAmount)), params' = params, } @@ -448,7 +448,7 @@ module ccv_model { .then( all { // the validator set has changed - assert(currentState.providerState.chainState.currentValidatorSet == InitialValidatorSet.put("node1", 50)), + assert(currentState.providerState.chainState.currentValidatorSet == InitialValidatorSet.put("node1", 150)), // start consumer1 EndAndBeginBlockForProvider(1 * Second, Set("consumer1"), Set()) }) @@ -459,7 +459,7 @@ module ccv_model { // a packet was sent to consumer1 assert(currentState.providerState.outstandingPacketsToConsumer.get("consumer1").length() == 1), // the validator set on the provider was entered into the history - assert(currentState.providerState.chainState.votingPowerHistory == List(InitialValidatorSet.put("node1", 50), InitialValidatorSet)), + assert(currentState.providerState.chainState.votingPowerHistory == List(InitialValidatorSet.put("node1", 150), InitialValidatorSet)), // deliver the packet DeliverVscPacket("consumer1") } @@ -471,7 +471,7 @@ module ccv_model { // ensure the maturation time was entered on the consumer assert(currentState.consumerStates.get("consumer1").maturationTimes.keys().size() == 1), // the validator set was put as the current validator set - assert(currentState.consumerStates.get("consumer1").chainState.currentValidatorSet == InitialValidatorSet.put("node1", 50)), + assert(currentState.consumerStates.get("consumer1").chainState.currentValidatorSet == InitialValidatorSet.put("node1", 150)), // advance time on provider until the unbonding period is over EndAndBeginBlockForProvider(UnbondingPeriodPerChain.get("consumer1"), Set(), Set()), } diff --git a/tests/difference/core/quint_model/ccv_test.qnt b/tests/difference/core/quint_model/ccv_test.qnt index 6bbe884d52..56320b12f0 100644 --- a/tests/difference/core/quint_model/ccv_test.qnt +++ b/tests/difference/core/quint_model/ccv_test.qnt @@ -13,13 +13,13 @@ module ccv_test { import ccv(VscTimeout = 5 * Week, CcvTimeout = ccvTimeouts, UnbondingPeriodPerChain = unbondingPeriods, ConsumerChains = consumerChains).* from "./ccv" - // negative voting powers give an error - run VotingPowerNegativeTest = + // changing voting power by zero gives an error + run VotingPowerZeroChangeTest = { votingPowerChange( GetEmptyProtocolState, "validator", - -1 + 0 ).hasError() } @@ -46,7 +46,7 @@ module ccv_test { val finalResult = votingPowerChange( tmpResult.newState, "validator", - 0 + -5 ) not(finalResult.hasError()) and finalResult.newState.providerState.chainState.currentValidatorSet.get("validator") == 0 @@ -64,7 +64,7 @@ module ccv_test { val finalResult = votingPowerChange( tmpResult.newState, "validator", - 0 + -5 ) // still should set the flag not(finalResult.hasError()) and @@ -78,7 +78,7 @@ module ccv_test { val result = votingPowerChange( GetEmptyProtocolState, "validator", - 0 + 2 ) not(result.hasError()) and result.newState.providerState.chainState.votingPowerHistory == List() From a8f45c4b8dc0c0b8c54fe379de1b71dae0024b82 Mon Sep 17 00:00:00 2001 From: Philip Offtermatt Date: Wed, 8 Nov 2023 18:27:42 +0100 Subject: [PATCH 016/111] Adjust voting power choices to be changes instead of absolute values --- tests/difference/core/quint_model/ccv_model.qnt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/difference/core/quint_model/ccv_model.qnt b/tests/difference/core/quint_model/ccv_model.qnt index 4539ea4421..8818163a00 100644 --- a/tests/difference/core/quint_model/ccv_model.qnt +++ b/tests/difference/core/quint_model/ccv_model.qnt @@ -88,7 +88,7 @@ module ccv_model { nondet node = oneOf(nodes) // very restricted set of voting powers. exact values are not important, // and this keeps the state space smaller. - nondet newVotingPower = oneOf(Set(0, 50, 100)) + nondet newVotingPower = oneOf(Set(-50, 50)) VotingPowerChange(node, newVotingPower), // try to send a packet. we could filter by chains that can actually send, From ef7a80e6bfcb5b31ba481383573092358c35800f Mon Sep 17 00:00:00 2001 From: Philip Offtermatt Date: Wed, 8 Nov 2023 18:34:19 +0100 Subject: [PATCH 017/111] Start refactoring relaying code --- .../core/quint_model/driver/core.go | 85 ++++++++++++- .../core/quint_model/driver/mbt_test.go | 36 +++--- .../core/quint_model/driver/setup.go | 3 +- testutil/simibc/relayed_path.go | 114 ++++++++++++------ 4 files changed, 178 insertions(+), 60 deletions(-) diff --git a/tests/difference/core/quint_model/driver/core.go b/tests/difference/core/quint_model/driver/core.go index d01ddab4a7..f88f68405e 100644 --- a/tests/difference/core/quint_model/driver/core.go +++ b/tests/difference/core/quint_model/driver/core.go @@ -55,6 +55,8 @@ func (s *Driver) ctx(chain ChainId) sdk.Context { // returns the path from the given chain to the provider. func (s *Driver) path(chain ChainId) *simibc.RelayedPath { + if s.isProviderChain(chain) { + } return s.simibcs[chain] } @@ -244,6 +246,15 @@ func (s *Driver) getStateString() string { state.WriteString(s.getChainStateString("provider")) state.WriteString("\n") + state.WriteString("Consumers Chains:\n") + consumerChains := s.providerKeeper().GetAllConsumerChains(s.providerCtx()) + chainIds := make([]string, len(consumerChains)) + for i, consumerChain := range consumerChains { + chainIds[i] = consumerChain.ChainId + } + state.WriteString(strings.Join(chainIds, ", ")) + state.WriteString("\n\n") + for chain := range s.simibcs { state.WriteString(fmt.Sprintf("Chain %s\n", chain)) state.WriteString(s.getChainStateString(chain)) @@ -300,14 +311,84 @@ func (s *Driver) getChainStateString(chain ChainId) string { chainInfo.WriteString(validatorInfo.String()) + if !s.isProviderChain(chain) { + var outboxInfo strings.Builder + outboxInfo.WriteString("OutboxPackets:\n") + + outboxInfo.WriteString("OutgoingPackets: \n") + outgoing := s.path(chain).Outboxes.OutboxPackets[string(chain)] + for _, packet := range outgoing { + outboxInfo.WriteString(fmt.Sprintf("%v\n", packet)) + } + + outboxInfo.WriteString("IncomingPackets: \n") + incoming := s.path(chain).Outboxes.OutboxPackets[P] + for _, packet := range incoming { + outboxInfo.WriteString(fmt.Sprintf("%v\n", packet)) + } + + outboxInfo.WriteString("utboxAcks:\n") + + outboxInfo.WriteString("OutgoingAcks: \n") + outgoingAcks := s.path(chain).Outboxes.OutboxAcks[string(chain)] + for _, packet := range outgoingAcks { + outboxInfo.WriteString(fmt.Sprintf("%v\n", packet)) + } + + outboxInfo.WriteString("IncomingAcks: \n") + incomingAcks := s.path(chain).Outboxes.OutboxAcks[P] + for _, packet := range incomingAcks { + outboxInfo.WriteString(fmt.Sprintf("%v\n", packet)) + } + + chainInfo.WriteString(outboxInfo.String()) + } + return chainInfo.String() } +// endAndBeginBlock ends the current block and begins a new one. +// Before Comitting, it runs the preCommitCallback, which allows +// checks to be run before the context of the old block is discarded. +// After comitting, it processes any packets that have been sent by the chain, +// as witnessed by events, and adds them to the correct paths. +// It also updates the client header on the paths +// that involve the chain. func (s *Driver) endAndBeginBlock(chain ChainId, timeAdvancement time.Duration, preCommitCallback func()) { - s.path(chain).EndAndBeginBlock(string(chain), timeAdvancement, func() { - }) + testChain, found := s.coordinator.Chains[string(chain)] + require.True(s.t, found, "chain %s not found", chain) + + header, packets := simibc.EndBlock(testChain, preCommitCallback) + + for _, path := range s.simibcs { + if path.InvolvesChain(string(chain)) { + path.AddClientHeader(string(chain), header) + path.Outboxes.Commit(string(chain)) + } + } + + // for each packet, find the path it should be sent on + for _, p := range packets { + found := false + for _, path := range s.simibcs { + if path.PacketBelongs(p) { + path.Outboxes.AddPacket(string(chain), p) + found = true + break + } + } + if !found { + s.t.Fatal("packet does not belong to any path: ", p) + } + } + + simibc.BeginBlock(testChain, timeAdvancement) } +// newDriver creates a new Driver object. +// It creates a new coordinator, but does not start any chains. +// The caller must call setupChains to start the chains and +// fully populate the Driver. func newDriver(t *testing.T, validators []*cmttypes.Validator, valNames []string) *Driver { t.Log("Creating coordinator") coordinator := ibctesting.NewCoordinator(t, 0) // start without chains, which we add later diff --git a/tests/difference/core/quint_model/driver/mbt_test.go b/tests/difference/core/quint_model/driver/mbt_test.go index ebece67ee6..1b9c84d629 100644 --- a/tests/difference/core/quint_model/driver/mbt_test.go +++ b/tests/difference/core/quint_model/driver/mbt_test.go @@ -125,9 +125,6 @@ func TestItfTrace(t *testing.T) { // dummyValSet is a valSet with the right validators, but not yet right powers valSet, addressMap, signers := CreateValSet(t, initialValSet) - t.Log("Initial validator set is: ", valSet) - t.Log(addressMap) - t.Log(signers) // get a slice of validators in the right order nodes := make([]*cmttypes.Validator, len(valNames)) @@ -156,34 +153,39 @@ func TestItfTrace(t *testing.T) { t.Log("Initializing...") case "VotingPowerChange": node := lastAction["validator"].Value.(string) - newVotingPower := lastAction["newVotingPower"].Value.(int64) - t.Logf("Setting provider voting power of %v to %v", node, newVotingPower) - - // valIndex := getIndexOfString(node, valNames) - - // // set the voting power of the validator - - // // get the previous voting power of that validator - // prevVotingPower := driver.validato - + changeAmount := lastAction["changeAmount"].Value.(int64) + t.Logf("Setting provider voting power of %v to %v", node, changeAmount) + + valIndex := getIndexOfString(node, valNames) + + if changeAmount > 0 { + // delegate to the validator + driver.delegate(int64(valIndex), changeAmount) + } else { + // undelegate from the validator + driver.undelegate(int64(valIndex), -changeAmount) + } case "EndAndBeginBlockForProvider": timeAdvancement := lastAction["timeAdvancement"].Value.(int64) consumersToStart := lastAction["consumersToStart"].Value.(itf.ListExprType) consumersToStop := lastAction["consumersToStop"].Value.(itf.ListExprType) - t.Log(timeAdvancement, consumersToStart, consumersToStop) + t.Log("EndAndBeginBlockForProvider", timeAdvancement, consumersToStart, consumersToStop) + + driver.endAndBeginBlock("provider", time.Duration(timeAdvancement)*time.Second, func() {}) case "EndAndBeginBlockForConsumer": consumerChain := lastAction["consumerChain"].Value.(string) timeAdvancement := lastAction["timeAdvancement"].Value.(int64) - t.Log(consumerChain, timeAdvancement) + driver.endAndBeginBlock(ChainId(consumerChain), time.Duration(timeAdvancement)*time.Second, func() {}) + t.Log("EndAndBeginBlockForConsumer", consumerChain, timeAdvancement) case "DeliverVscPacket": consumerChain := lastAction["consumerChain"].Value.(string) - t.Log(consumerChain) + t.Log("DeliverVscPacket", consumerChain) case "DeliverVscMaturedPacket": consumerChain := lastAction["consumerChain"].Value.(string) - t.Log(consumerChain) + t.Log("DeliverVscMaturedPacket", consumerChain) default: log.Fatalf("Error loading trace file %s, step %v: do not know action type %s", diff --git a/tests/difference/core/quint_model/driver/setup.go b/tests/difference/core/quint_model/driver/setup.go index b85b592cb5..76a48ddfd2 100644 --- a/tests/difference/core/quint_model/driver/setup.go +++ b/tests/difference/core/quint_model/driver/setup.go @@ -368,8 +368,7 @@ func (s *Driver) setupChains( s.coordinator.Chains[chain] = consumerChain path := s.ConfigureNewPath(consumerChain, providerChain, params, providerHeader) - relayedPath := simibc.MakeRelayedPath(s.t, path) - s.simibcs[ChainId(chain)] = &relayedPath + s.simibcs[ChainId(chain)] = simibc.MakeRelayedPath(s.t, path) } } diff --git a/testutil/simibc/relayed_path.go b/testutil/simibc/relayed_path.go index daf32f0c84..8105b7997e 100644 --- a/testutil/simibc/relayed_path.go +++ b/testutil/simibc/relayed_path.go @@ -1,9 +1,10 @@ package simibc import ( + "bytes" "testing" - "time" + channeltypes "github.com/cosmos/ibc-go/v7/modules/core/04-channel/types" ibctmtypes "github.com/cosmos/ibc-go/v7/modules/light-clients/07-tendermint" ibctesting "github.com/cosmos/ibc-go/v7/testing" ) @@ -16,7 +17,7 @@ import ( // new blocks on each chain. type RelayedPath struct { t *testing.T - path *ibctesting.Path + Path *ibctesting.Path // clientHeaders is a map from chainID to an ordered list of headers that // have been committed to that chain. The headers are used to update the // client of the counterparty chain. @@ -30,28 +31,85 @@ type RelayedPath struct { // MakeRelayedPath returns an initialized RelayedPath without any // packets, acks or headers. Requires a fully initialised path where // the connection and any channel handshakes have been COMPLETED. -func MakeRelayedPath(t *testing.T, path *ibctesting.Path) RelayedPath { +func MakeRelayedPath(t *testing.T, path *ibctesting.Path) *RelayedPath { t.Helper() - return RelayedPath{ + return &RelayedPath{ t: t, clientHeaders: map[string][]*ibctmtypes.Header{}, - path: path, + Path: path, Outboxes: MakeOrderedOutbox(), } } +// PacketBelongs returns true if the packet belongs to this relayed path. +func (f *RelayedPath) PacketBelongs(packet channeltypes.Packet) bool { + return f.PacketSentByA(packet) || f.PacketSentByB(packet) +} + +// PacketSentByA returns true if the given packet was sent by chain A on this path. +func (f *RelayedPath) PacketSentByA(packet channeltypes.Packet) bool { + committedByA := f.Path.EndpointA.Chain.App.GetIBCKeeper().ChannelKeeper.GetPacketCommitment( + f.Path.EndpointA.Chain.GetContext(), + f.Path.EndpointA.ChannelConfig.PortID, + f.Path.EndpointA.ChannelID, + packet.GetSequence(), + ) + + return bytes.Equal(committedByA, channeltypes.CommitPacket(f.Path.EndpointA.Chain.App.AppCodec(), packet)) +} + +// PacketSentByB returns true if the given packet was sent by chain B on this path. +func (f *RelayedPath) PacketSentByB(packet channeltypes.Packet) bool { + committedByB := f.Path.EndpointB.Chain.App.GetIBCKeeper().ChannelKeeper.GetPacketCommitment( + f.Path.EndpointB.Chain.GetContext(), + f.Path.EndpointB.ChannelConfig.PortID, + f.Path.EndpointB.ChannelID, + packet.GetSequence(), + ) + + return bytes.Equal(committedByB, channeltypes.CommitPacket(f.Path.EndpointB.Chain.App.AppCodec(), packet)) +} + +// AddPacket adds a packet to the outbox of the chain with chainID. +// It will fail if the chain is not involved in the relayed path, +// or if the packet does not belong to this path, +// i.e. if the pace +func (f *RelayedPath) AddPacket(chainID string, packet channeltypes.Packet) { + if !f.InvolvesChain(chainID) { + f.t.Fatal("in relayed path could not add packet to chain: ", chainID, " because it is not involved in the relayed path") + } + + f.Outboxes.AddPacket(chainID, packet) +} + +// AddClientHeader adds a client header to the chain with chainID. +// The header is used to update the client of the counterparty chain. +// It will fail if the chain is not involved in the relayed path. +func (f *RelayedPath) AddClientHeader(chainID string, header *ibctmtypes.Header) { + if !f.InvolvesChain(chainID) { + f.t.Fatal("in relayed path could not add client header to chain: ", chainID, " because it is not involved in the relayed path") + } + f.clientHeaders[chainID] = append(f.clientHeaders[chainID], header) +} + // Chain returns the chain with chainID func (f *RelayedPath) Chain(chainID string) *ibctesting.TestChain { - if f.path.EndpointA.Chain.ChainID == chainID { - return f.path.EndpointA.Chain + if f.Path.EndpointA.Chain.ChainID == chainID { + return f.Path.EndpointA.Chain } - if f.path.EndpointB.Chain.ChainID == chainID { - return f.path.EndpointB.Chain + if f.Path.EndpointB.Chain.ChainID == chainID { + return f.Path.EndpointB.Chain } f.t.Fatal("no chain found in relayed path with chainID: ", chainID) return nil } +// InvolvesChain returns true if the chain is involved in the relayed path, +// i.e. if it is either the source or destination chain. +func (f *RelayedPath) InvolvesChain(chainID string) bool { + return f.Path.EndpointA.Chain.ChainID == chainID || f.Path.EndpointB.Chain.ChainID == chainID +} + // UpdateClient updates the chain with the latest sequence // of available headers committed by the counterparty chain since // the last call to UpdateClient (or all for the first call). @@ -106,35 +164,13 @@ func (f *RelayedPath) DeliverAcks(chainID string, num int) { } } -// EndAndBeginBlock calls EndBlock and commits block state, storing the header which can later -// be used to update the client on the counterparty chain. After committing, the chain local -// time progresses by dt, and BeginBlock is called with a header timestamped for the new time. -// -// preCommitCallback is called after EndBlock and before Commit, allowing arbitrary access to -// the sdk.Context after EndBlock. The callback is useful for testing purposes to execute -// arbitrary code before the chain sdk context is cleared in .Commit(). -// For example, app.EndBlock may lead to a new state, which you would like to query -// to check that it is correct. However, the sdk context is cleared after .Commit(), -// so you can query the state inside the callback. -func (f *RelayedPath) EndAndBeginBlock(chainID string, dt time.Duration, preCommitCallback func()) { - c := f.Chain(chainID) - - header, packets := EndBlock(c, preCommitCallback) - f.clientHeaders[chainID] = append(f.clientHeaders[chainID], header) - for _, p := range packets { - f.Outboxes.AddPacket(chainID, p) - } - f.Outboxes.Commit(chainID) - BeginBlock(c, dt) -} - // counterparty is a helper returning the counterparty chainID func (f *RelayedPath) counterparty(chainID string) string { - if f.path.EndpointA.Chain.ChainID == chainID { - return f.path.EndpointB.Chain.ChainID + if f.Path.EndpointA.Chain.ChainID == chainID { + return f.Path.EndpointB.Chain.ChainID } - if f.path.EndpointB.Chain.ChainID == chainID { - return f.path.EndpointA.Chain.ChainID + if f.Path.EndpointB.Chain.ChainID == chainID { + return f.Path.EndpointA.Chain.ChainID } f.t.Fatal("no chain found in relayed path with chainID: ", chainID) return "" @@ -142,11 +178,11 @@ func (f *RelayedPath) counterparty(chainID string) string { // endpoint is a helper returning the endpoint for the chain func (f *RelayedPath) endpoint(chainID string) *ibctesting.Endpoint { - if chainID == f.path.EndpointA.Chain.ChainID { - return f.path.EndpointA + if chainID == f.Path.EndpointA.Chain.ChainID { + return f.Path.EndpointA } - if chainID == f.path.EndpointB.Chain.ChainID { - return f.path.EndpointB + if chainID == f.Path.EndpointB.Chain.ChainID { + return f.Path.EndpointB } f.t.Fatal("no chain found in relayed path with chainID: ", chainID) return nil From 6336273bd0b14d10ae4c8328c04f2b95bcc226fa Mon Sep 17 00:00:00 2001 From: Philip Offtermatt Date: Fri, 10 Nov 2023 09:29:18 +0100 Subject: [PATCH 018/111] Refactor map to list of pairs --- tests/difference/core/quint_model/ccv.qnt | 35 ++++++++++++------- .../difference/core/quint_model/ccv_model.qnt | 16 +++++---- 2 files changed, 32 insertions(+), 19 deletions(-) diff --git a/tests/difference/core/quint_model/ccv.qnt b/tests/difference/core/quint_model/ccv.qnt index 4080a6b4d3..6e0275abe7 100644 --- a/tests/difference/core/quint_model/ccv.qnt +++ b/tests/difference/core/quint_model/ccv.qnt @@ -104,13 +104,14 @@ module ccv_types { // the state that each chain needs to store chainState: ChainState, - // Stores the maturation times for VscPackets received by this consumer - maturationTimes: VscPacket -> Time, - // stores the received vscpackets in descending order of recency, // i.e. newest first. receivedVscPackets: List[VscPacket], + // Stores the maturation times for VscPackets received by this consumer + // in the same order as they are in the receivedVscPackets. + maturationTimes: List[(VscPacket, Time)], + // Stores the list of packets that have been sent to the provider chain by this consumer // and have not been received yet. // ordered by recency, so the head is the oldest packet. @@ -122,7 +123,7 @@ module ccv_types { pure def GetEmptyConsumerState(): ConsumerState = { chainState: GetEmptyChainState, - maturationTimes: Map(), + maturationTimes: List(), outstandingPacketsToProvider: List(), receivedVscPackets: List(), } @@ -465,19 +466,25 @@ module ccv { val newConsumerState: ConsumerState = currentConsumerState.with( "chainState", newChainState ) - val maturedPackets = newConsumerState.maturationTimes.keys().filter( - packet => - val maturationTime = newConsumerState.maturationTimes.get(packet) + val maturedPackets = newConsumerState.maturationTimes.select( + pair => + val packet = pair._1 + val maturationTime = pair._2 maturationTime <= newChainState.lastTimestamp + ).transform(pair => pair._1) + val newMaturationTimes = newConsumerState.maturationTimes.select( + pair => + val packet = pair._1 + val maturationTime = pair._2 + maturationTime > newChainState.lastTimestamp ) - val newMaturationTimes = newConsumerState.maturationTimes.mapRemoveAll(maturedPackets) val newOutstandingPackets = newConsumerState.outstandingPacketsToProvider.concat( - maturedPackets.map( + maturedPackets.transform( packet => { id: packet.id, sendingTime: newConsumerState.chainState.lastTimestamp } - ).toList() + ) ) val newConsumerState2: ConsumerState = newConsumerState.with( "maturationTimes", newMaturationTimes @@ -658,9 +665,11 @@ module ccv { chainState: currentConsumerState.chainState.with( "currentValidatorSet", packet.validatorSet ), - maturationTimes: currentConsumerState.maturationTimes.put( - packet, - currentConsumerState.chainState.lastTimestamp + UnbondingPeriodPerChain.get(receiver) + maturationTimes: currentConsumerState.maturationTimes.append( + ( + packet, + currentConsumerState.chainState.lastTimestamp + UnbondingPeriodPerChain.get(receiver) + ) ), receivedVscPackets: currentConsumerState.receivedVscPackets.prepend(packet) } diff --git a/tests/difference/core/quint_model/ccv_model.qnt b/tests/difference/core/quint_model/ccv_model.qnt index 8818163a00..c253824e43 100644 --- a/tests/difference/core/quint_model/ccv_model.qnt +++ b/tests/difference/core/quint_model/ccv_model.qnt @@ -54,7 +54,9 @@ module ccv_model { // Roughly, 1s for very small advances (like between blocks), // and then longer values for increasingly severe downtime scenarios. // Note that these can still be combined, so in effect we can get all time advancements by any amount of seconds. - pure val timeAdvancements = Set(1 * Second, 1 * Day, 1 * Week, 4 * Week) + // These should be smaller than the minimal TrustingPeriodPerChain, + // otherwise connections will break down. + pure val timeAdvancements = Set(1 * Second, 1 * Day, 1 * Week - 1 * Hour) // 4 * Week) pure def emptyAction = { @@ -260,7 +262,7 @@ module ccv_model { assert(latest(Set(packet1, packet2, packet3)) == packet3), assert(latest(Set(packet3, packet2, packet1)) == packet3), } - } + } // ================== // INVARIANT CHECKS @@ -334,9 +336,11 @@ module ccv_model { runningConsumers.forall( consumer => { val maturationTimes = currentState.consumerStates.get(consumer).maturationTimes - maturationTimes.keys().forall( + maturationTimes.listForAll( // check that the maturation time is in the future - packet => maturationTimes.get(packet) >= currentState.consumerStates.get(consumer).chainState.lastTimestamp + pair => + val maturationTime = pair._2 + maturationTime >= currentState.consumerStates.get(consumer).chainState.lastTimestamp ) } ) @@ -469,7 +473,7 @@ module ccv_model { // make sure the packet was removed from the provider assert(currentState.providerState.outstandingPacketsToConsumer.get("consumer1").length() == 0), // ensure the maturation time was entered on the consumer - assert(currentState.consumerStates.get("consumer1").maturationTimes.keys().size() == 1), + assert(currentState.consumerStates.get("consumer1").maturationTimes.length() == 1), // the validator set was put as the current validator set assert(currentState.consumerStates.get("consumer1").chainState.currentValidatorSet == InitialValidatorSet.put("node1", 150)), // advance time on provider until the unbonding period is over @@ -485,7 +489,7 @@ module ccv_model { // the packet has matured, so it was sent by the consumer assert(currentState.consumerStates.get("consumer1").outstandingPacketsToProvider.length() == 1), // it was removed from the maturationTimes - assert(currentState.consumerStates.get("consumer1").maturationTimes.keys().size() == 0), + assert(currentState.consumerStates.get("consumer1").maturationTimes.length() == 0), // receive the packet on the provider DeliverVscMaturedPacket("consumer1") } From dd9d87838458fc01735ddba76adfec10a1150e9a Mon Sep 17 00:00:00 2001 From: Philip Offtermatt Date: Fri, 10 Nov 2023 17:48:43 +0100 Subject: [PATCH 019/111] Add libraries for map rewrite --- .../quint_model/libraries/extraSpells.qnt | 41 ++++++++++++++++++- 1 file changed, 40 insertions(+), 1 deletion(-) diff --git a/tests/difference/core/quint_model/libraries/extraSpells.qnt b/tests/difference/core/quint_model/libraries/extraSpells.qnt index cfea35de57..9167bb4bcb 100644 --- a/tests/difference/core/quint_model/libraries/extraSpells.qnt +++ b/tests/difference/core/quint_model/libraries/extraSpells.qnt @@ -168,4 +168,43 @@ module extraSpells { assert(values(Map(1 -> 2, 3 -> 4)) == Set(2, 4)), assert(values(Map()) == Set()) } -} + + //// Returns a new list l, where l[i] = __f(__list[i]) + //// + //// - @param __list a list + //// - @param __f a function that is applied to each element of __list + //// + //// - @returns a set of the elements in __list + pure def transform(__list: List[a], __f: a => b): List[b] = { + __list.foldl(List(), (__l, __e) => __l.append(__f(__e))) + } + + run transformTest = + all { + assert(transform(List(1, 2, 3), __x => __x + 1) == List(2, 3, 4)), + assert(transform(List(), __x => __x + 1) == List()), + assert(transform(List(1, 2, 3), __x => __x * 2) == List(2, 4, 6)), + assert(transform(List(1, 2, 3), __x => __x) == List(1, 2, 3)), + } + + + // listForAll returns true if the given predicate function returns true for all elements in the given list, + // and false otherwise. + // + // Parameters: + // - __list: The list to check. + // - __f: The predicate function to apply to each element in the list. + // + // Returns: + // - true if the predicate function returns true for all elements in the list, and false otherwise. + pure def listForAll(__list: List[a], __f: a => bool): bool = { + __list.foldl(true, (__b, __e) => __b and __f(__e)) + } + + run listForAllTest = + all { + assert(listForAll(List(1, 2, 3), __x => __x > 0)), + assert(not(listForAll(List(1, 2, 3), __x => __x > 1))), + assert(listForAll(List(), __x => __x > 0)), + } +} \ No newline at end of file From 61b6a858569858e4bc4c8d94719714bbae37a9cb Mon Sep 17 00:00:00 2001 From: Philip Offtermatt Date: Fri, 10 Nov 2023 17:49:05 +0100 Subject: [PATCH 020/111] Start fixing client updates --- .../core/quint_model/driver/core.go | 38 +- .../core/quint_model/driver/mbt_test.go | 40 +- .../core/quint_model/driver/setup.go | 13 +- .../core/quint_model/driver/trace.json | 4249 ++++++++++++++--- testutil/simibc/chain_util.go | 7 +- testutil/simibc/relayed_path.go | 53 +- 6 files changed, 3767 insertions(+), 633 deletions(-) diff --git a/tests/difference/core/quint_model/driver/core.go b/tests/difference/core/quint_model/driver/core.go index f88f68405e..b332f1984e 100644 --- a/tests/difference/core/quint_model/driver/core.go +++ b/tests/difference/core/quint_model/driver/core.go @@ -55,8 +55,6 @@ func (s *Driver) ctx(chain ChainId) sdk.Context { // returns the path from the given chain to the provider. func (s *Driver) path(chain ChainId) *simibc.RelayedPath { - if s.isProviderChain(chain) { - } return s.simibcs[chain] } @@ -205,6 +203,7 @@ func (s *Driver) undelegate(val, amt int64) { _, err := server.Undelegate(sdk.WrapSDKContext(s.ctx(P)), msg) // There may or may not be an error, depending on the trace _ = err + providerStaking.GetAllDelegations(s.ctx(P)) } // consumerSlash simulates a slash event occurring on the consumer chain. @@ -304,7 +303,12 @@ func (s *Driver) getChainStateString(chain ChainId) string { // Build the validator info string var validatorInfo strings.Builder for index, valName := range s.valNames { - power := s.providerPower(int64(index)) + var power int64 + if s.isProviderChain(chain) { + power = s.providerPower(int64(index)) + } else { + power, _ = s.consumerPower(int64(index), chain) + } validatorInfo.WriteString(fmt.Sprintf(" Validator %s: power=%d\n", valName, power)) } @@ -327,7 +331,7 @@ func (s *Driver) getChainStateString(chain ChainId) string { outboxInfo.WriteString(fmt.Sprintf("%v\n", packet)) } - outboxInfo.WriteString("utboxAcks:\n") + outboxInfo.WriteString("OutboxAcks:\n") outboxInfo.WriteString("OutgoingAcks: \n") outgoingAcks := s.path(chain).Outboxes.OutboxAcks[string(chain)] @@ -354,11 +358,11 @@ func (s *Driver) getChainStateString(chain ChainId) string { // as witnessed by events, and adds them to the correct paths. // It also updates the client header on the paths // that involve the chain. -func (s *Driver) endAndBeginBlock(chain ChainId, timeAdvancement time.Duration, preCommitCallback func()) { +func (s *Driver) endAndBeginBlock(chain ChainId, timeAdvancement time.Duration) { //}, preCommitCallback func()) { testChain, found := s.coordinator.Chains[string(chain)] require.True(s.t, found, "chain %s not found", chain) - header, packets := simibc.EndBlock(testChain, preCommitCallback) + header, packets := simibc.EndBlock(testChain) //, preCommitCallback) for _, path := range s.simibcs { if path.InvolvesChain(string(chain)) { @@ -371,7 +375,7 @@ func (s *Driver) endAndBeginBlock(chain ChainId, timeAdvancement time.Duration, for _, p := range packets { found := false for _, path := range s.simibcs { - if path.PacketBelongs(p) { + if path.PacketSentByChain(p, string(chain)) { path.Outboxes.AddPacket(string(chain), p) found = true break @@ -383,6 +387,26 @@ func (s *Driver) endAndBeginBlock(chain ChainId, timeAdvancement time.Duration, } simibc.BeginBlock(testChain, timeAdvancement) + + for _, path := range s.simibcs { + if path.InvolvesChain(string(chain)) { + path.UpdateClient(path.Counterparty(string(chain))) + } + } +} + +// DeliverPacketToConsumer delivers a packet from the provider to the given consumer recipient. +// It updates the client before delivering the packet. +// Since the channel is ordered, the packet that is delivered is the first packet in the outbox. +func (s *Driver) DeliverPacketToConsumer(recipient ChainId) { + s.path(recipient).DeliverPackets(string(recipient), 1) +} + +// DeliverPacketFromConsumer delivers a packet from the given consumer sender to the provider. +// It updates the client before delivering the packet. +// Since the channel is ordered, the packet that is delivered is the first packet in the outbox. +func (s *Driver) DeliverPacketFromConsumer(sender ChainId) { + s.path(sender).DeliverPackets(P, 1) // deliver to the provider } // newDriver creates a new Driver object. diff --git a/tests/difference/core/quint_model/driver/mbt_test.go b/tests/difference/core/quint_model/driver/mbt_test.go index 1b9c84d629..473b7ca048 100644 --- a/tests/difference/core/quint_model/driver/mbt_test.go +++ b/tests/difference/core/quint_model/driver/mbt_test.go @@ -154,7 +154,7 @@ func TestItfTrace(t *testing.T) { case "VotingPowerChange": node := lastAction["validator"].Value.(string) changeAmount := lastAction["changeAmount"].Value.(int64) - t.Logf("Setting provider voting power of %v to %v", node, changeAmount) + t.Logf("Changing provider voting power of %v by %v", node, changeAmount) valIndex := getIndexOfString(node, valNames) @@ -171,21 +171,49 @@ func TestItfTrace(t *testing.T) { consumersToStop := lastAction["consumersToStop"].Value.(itf.ListExprType) t.Log("EndAndBeginBlockForProvider", timeAdvancement, consumersToStart, consumersToStop) - driver.endAndBeginBlock("provider", time.Duration(timeAdvancement)*time.Second, func() {}) + // TODO continue here + totalDuration := time.Duration(timeAdvancement) * time.Second + halfDuration := totalDuration / 2 + halfDuration = halfDuration.Round(time.Second) + remainingDuration := totalDuration - halfDuration + remainingDuration = remainingDuration.Round(time.Second) + + require.True(t, halfDuration+remainingDuration == totalDuration) + + // TODO: start and stop consumers + driver.endAndBeginBlock("provider", time.Duration(1)*time.Second) //, func() {}) + driver.endAndBeginBlock("provider", time.Duration(1)*time.Second) //, func() {}) + driver.endAndBeginBlock("provider", time.Duration(1)*time.Second) //, func() {}) case "EndAndBeginBlockForConsumer": consumerChain := lastAction["consumerChain"].Value.(string) timeAdvancement := lastAction["timeAdvancement"].Value.(int64) - - driver.endAndBeginBlock(ChainId(consumerChain), time.Duration(timeAdvancement)*time.Second, func() {}) t.Log("EndAndBeginBlockForConsumer", consumerChain, timeAdvancement) + + // TODO continue here + totalDuration := time.Duration(timeAdvancement) * time.Second + halfDuration := totalDuration / 2 + halfDuration = halfDuration.Round(time.Second) + remainingDuration := totalDuration - halfDuration + remainingDuration = remainingDuration.Round(time.Second) + // this is trying to split into two parts, but fails because all need to be non-0 + // updating client multiple times with headers that do not progress in time is not allowed + + require.True(t, halfDuration+remainingDuration == totalDuration) + + // time duration needs 3 parts because the packet needs 3 commits to be delivered + driver.endAndBeginBlock(ChainId(consumerChain), time.Duration(1)*time.Second) //, func() {}) + driver.endAndBeginBlock(ChainId(consumerChain), time.Duration(1)*time.Second) //, func() {}) + driver.endAndBeginBlock(ChainId(consumerChain), time.Duration(1)*time.Second) //, func() {}) case "DeliverVscPacket": consumerChain := lastAction["consumerChain"].Value.(string) - t.Log("DeliverVscPacket", consumerChain) + + driver.DeliverPacketToConsumer(ChainId(consumerChain)) case "DeliverVscMaturedPacket": consumerChain := lastAction["consumerChain"].Value.(string) - t.Log("DeliverVscMaturedPacket", consumerChain) + + driver.DeliverPacketFromConsumer(ChainId(consumerChain)) default: log.Fatalf("Error loading trace file %s, step %v: do not know action type %s", diff --git a/tests/difference/core/quint_model/driver/setup.go b/tests/difference/core/quint_model/driver/setup.go index 76a48ddfd2..8a87e0d577 100644 --- a/tests/difference/core/quint_model/driver/setup.go +++ b/tests/difference/core/quint_model/driver/setup.go @@ -99,7 +99,6 @@ func getAppBytesAndSenders( for i, val := range nodes { _, valSetVal := initialValSet.GetByAddress(val.Address.Bytes()) - valAccount := accounts[i] if valSetVal == nil { log.Panicf("error getting validator with address %v from valSet %v", val, initialValSet) } @@ -143,7 +142,7 @@ func getAppBytesAndSenders( stakingValidators = append(stakingValidators, validator) // Store delegation from the model delegator account - delegations = append(delegations, stakingtypes.NewDelegation(valAccount.GetAddress(), val.Address.Bytes(), delShares)) + delegations = append(delegations, stakingtypes.NewDelegation(senderAccounts[0].SenderAccount.GetAddress(), val.Address.Bytes(), delShares)) // add initial validator powers so consumer InitGenesis runs correctly pub, _ := val.ToProto() @@ -327,12 +326,12 @@ func (s *Driver) ConfigureNewPath(consumerChain *ibctesting.TestChain, providerC // Commit a block on both chains, giving us two committed headers from // the same time and height. This is the starting point for all our // data driven testing. - lastConsumerHeader, _ := simibc.EndBlock(consumerChain, func() {}) - lastProviderHeader, _ = simibc.EndBlock(providerChain, func() {}) + lastConsumerHeader, _ := simibc.EndBlock(consumerChain) //, func() {}) + lastProviderHeader, _ = simibc.EndBlock(providerChain) //, func() {}) // Get ready to update clients. - simibc.BeginBlock(providerChain, 0) - simibc.BeginBlock(consumerChain, 0) + simibc.BeginBlock(providerChain, 5) + simibc.BeginBlock(consumerChain, 5) // Update clients to the latest header. err = simibc.UpdateReceiverClient(consumerEndPoint, providerEndPoint, lastConsumerHeader) @@ -358,7 +357,7 @@ func (s *Driver) setupChains( providerChain := newChain(s.t, params, s.coordinator, icstestingutils.ProviderAppIniter, "provider", valSet, signers, nodes, valNames) s.coordinator.Chains["provider"] = providerChain - providerHeader, _ := simibc.EndBlock(providerChain, func() {}) + providerHeader, _ := simibc.EndBlock(providerChain) //, func() {}) simibc.BeginBlock(providerChain, 0) // start consumer chains diff --git a/tests/difference/core/quint_model/driver/trace.json b/tests/difference/core/quint_model/driver/trace.json index 8433328980..d0f4fac106 100644 --- a/tests/difference/core/quint_model/driver/trace.json +++ b/tests/difference/core/quint_model/driver/trace.json @@ -3,9 +3,9 @@ "format": "ITF", "format-description": "https://apalache.informal.systems/docs/adr/015adr-trace.html", "source": "ccv_model.qnt", - "status": "ok", - "description": "Created by Quint on Mon Nov 06 2023 10:21:20 GMT+0100 (Central European Standard Time)", - "timestamp": 1699262480568 + "status": "violation", + "description": "Created by Quint on Fri Nov 10 2023 10:07:52 GMT+0100 (Central European Standard Time)", + "timestamp": 1699607272414 }, "vars": [ "currentState", @@ -32,9 +32,7 @@ }, "votingPowerHistory": [] }, - "maturationTimes": { - "#map": [] - }, + "maturationTimes": [], "outstandingPacketsToProvider": [], "receivedVscPackets": [] } @@ -51,9 +49,7 @@ }, "votingPowerHistory": [] }, - "maturationTimes": { - "#map": [] - }, + "maturationTimes": [], "outstandingPacketsToProvider": [], "receivedVscPackets": [] } @@ -70,9 +66,7 @@ }, "votingPowerHistory": [] }, - "maturationTimes": { - "#map": [] - }, + "maturationTimes": [], "outstandingPacketsToProvider": [], "receivedVscPackets": [] } @@ -448,6 +442,9 @@ }, "trace": [ { + "changeAmount": { + "#bigint": "0" + }, "consumerChain": "", "consumersToStart": { "#set": [] @@ -456,9 +453,6 @@ "#set": [] }, "kind": "init", - "newVotingPower": { - "#bigint": "0" - }, "timeAdvancement": { "#bigint": "0" }, @@ -485,9 +479,7 @@ }, "votingPowerHistory": [] }, - "maturationTimes": { - "#map": [] - }, + "maturationTimes": [], "outstandingPacketsToProvider": [], "receivedVscPackets": [] } @@ -504,9 +496,7 @@ }, "votingPowerHistory": [] }, - "maturationTimes": { - "#map": [] - }, + "maturationTimes": [], "outstandingPacketsToProvider": [], "receivedVscPackets": [] } @@ -523,9 +513,7 @@ }, "votingPowerHistory": [] }, - "maturationTimes": { - "#map": [] - }, + "maturationTimes": [], "outstandingPacketsToProvider": [], "receivedVscPackets": [] } @@ -587,7 +575,7 @@ [ "node8", { - "#bigint": "100" + "#bigint": "50" } ], [ @@ -599,73 +587,9 @@ ] }, "lastTimestamp": { - "#bigint": "604800" + "#bigint": "0" }, "votingPowerHistory": [ - { - "#map": [ - [ - "node1", - { - "#bigint": "100" - } - ], - [ - "node10", - { - "#bigint": "100" - } - ], - [ - "node2", - { - "#bigint": "100" - } - ], - [ - "node3", - { - "#bigint": "100" - } - ], - [ - "node4", - { - "#bigint": "100" - } - ], - [ - "node5", - { - "#bigint": "100" - } - ], - [ - "node6", - { - "#bigint": "100" - } - ], - [ - "node7", - { - "#bigint": "100" - } - ], - [ - "node8", - { - "#bigint": "100" - } - ], - [ - "node9", - { - "#bigint": "100" - } - ] - ] - }, { "#map": [ [ @@ -764,7 +688,7 @@ ] ] }, - "providerValidatorSetChangedInThisBlock": false, + "providerValidatorSetChangedInThisBlock": true, "receivedMaturations": { "#set": [] }, @@ -965,6 +889,9 @@ }, "trace": [ { + "changeAmount": { + "#bigint": "0" + }, "consumerChain": "", "consumersToStart": { "#set": [] @@ -973,15 +900,15 @@ "#set": [] }, "kind": "init", - "newVotingPower": { - "#bigint": "0" - }, "timeAdvancement": { "#bigint": "0" }, "validator": "" }, { + "changeAmount": { + "#bigint": "-50" + }, "consumerChain": "", "consumersToStart": { "#set": [] @@ -989,14 +916,11 @@ "consumersToStop": { "#set": [] }, - "kind": "EndAndBeginBlockForProvider", - "newVotingPower": { - "#bigint": "0" - }, + "kind": "VotingPowerChange", "timeAdvancement": { - "#bigint": "604800" + "#bigint": "0" }, - "validator": "" + "validator": "node8" } ] }, @@ -1012,77 +936,14 @@ { "chainState": { "currentValidatorSet": { - "#map": [ - [ - "node1", - { - "#bigint": "100" - } - ], - [ - "node10", - { - "#bigint": "100" - } - ], - [ - "node2", - { - "#bigint": "100" - } - ], - [ - "node3", - { - "#bigint": "100" - } - ], - [ - "node4", - { - "#bigint": "100" - } - ], - [ - "node5", - { - "#bigint": "100" - } - ], - [ - "node6", - { - "#bigint": "100" - } - ], - [ - "node7", - { - "#bigint": "100" - } - ], - [ - "node8", - { - "#bigint": "100" - } - ], - [ - "node9", - { - "#bigint": "100" - } - ] - ] + "#map": [] }, "lastTimestamp": { "#bigint": "0" }, "votingPowerHistory": [] }, - "maturationTimes": { - "#map": [] - }, + "maturationTimes": [], "outstandingPacketsToProvider": [], "receivedVscPackets": [] } @@ -1099,9 +960,7 @@ }, "votingPowerHistory": [] }, - "maturationTimes": { - "#map": [] - }, + "maturationTimes": [], "outstandingPacketsToProvider": [], "receivedVscPackets": [] } @@ -1163,7 +1022,7 @@ [ "node8", { - "#bigint": "100" + "#bigint": "50" } ], [ @@ -1179,9 +1038,7 @@ }, "votingPowerHistory": [] }, - "maturationTimes": { - "#map": [] - }, + "maturationTimes": [], "outstandingPacketsToProvider": [], "receivedVscPackets": [] } @@ -1243,7 +1100,7 @@ [ "node8", { - "#bigint": "100" + "#bigint": "50" } ], [ @@ -1255,7 +1112,7 @@ ] }, "lastTimestamp": { - "#bigint": "3024000" + "#bigint": "1" }, "votingPowerHistory": [ { @@ -1311,71 +1168,7 @@ [ "node8", { - "#bigint": "100" - } - ], - [ - "node9", - { - "#bigint": "100" - } - ] - ] - }, - { - "#map": [ - [ - "node1", - { - "#bigint": "100" - } - ], - [ - "node10", - { - "#bigint": "100" - } - ], - [ - "node2", - { - "#bigint": "100" - } - ], - [ - "node3", - { - "#bigint": "100" - } - ], - [ - "node4", - { - "#bigint": "100" - } - ], - [ - "node5", - { - "#bigint": "100" - } - ], - [ - "node6", - { - "#bigint": "100" - } - ], - [ - "node7", - { - "#bigint": "100" - } - ], - [ - "node8", - { - "#bigint": "100" + "#bigint": "50" } ], [ @@ -1456,7 +1249,7 @@ "#map": [ [ "consumer1", - "running" + "not consumer" ], [ "consumer2", @@ -1480,36 +1273,182 @@ ], [ "consumer3", - [] - ] - ] - }, - "providerValidatorSetChangedInThisBlock": false, - "receivedMaturations": { - "#set": [] - }, - "runningVscId": { - "#bigint": "0" - }, - "sentVscPacketsToConsumer": { - "#map": [ - [ - "consumer1", - [] - ], - [ - "consumer2", - [] - ], - [ - "consumer3", - [] - ] - ] - } - } - }, - "params": { + [ + { + "id": { + "#bigint": "0" + }, + "sendingTime": { + "#bigint": "1" + }, + "validatorSet": { + "#map": [ + [ + "node1", + { + "#bigint": "100" + } + ], + [ + "node10", + { + "#bigint": "100" + } + ], + [ + "node2", + { + "#bigint": "100" + } + ], + [ + "node3", + { + "#bigint": "100" + } + ], + [ + "node4", + { + "#bigint": "100" + } + ], + [ + "node5", + { + "#bigint": "100" + } + ], + [ + "node6", + { + "#bigint": "100" + } + ], + [ + "node7", + { + "#bigint": "100" + } + ], + [ + "node8", + { + "#bigint": "50" + } + ], + [ + "node9", + { + "#bigint": "100" + } + ] + ] + } + } + ] + ] + ] + }, + "providerValidatorSetChangedInThisBlock": false, + "receivedMaturations": { + "#set": [] + }, + "runningVscId": { + "#bigint": "1" + }, + "sentVscPacketsToConsumer": { + "#map": [ + [ + "consumer1", + [] + ], + [ + "consumer2", + [] + ], + [ + "consumer3", + [ + { + "id": { + "#bigint": "0" + }, + "sendingTime": { + "#bigint": "1" + }, + "validatorSet": { + "#map": [ + [ + "node1", + { + "#bigint": "100" + } + ], + [ + "node10", + { + "#bigint": "100" + } + ], + [ + "node2", + { + "#bigint": "100" + } + ], + [ + "node3", + { + "#bigint": "100" + } + ], + [ + "node4", + { + "#bigint": "100" + } + ], + [ + "node5", + { + "#bigint": "100" + } + ], + [ + "node6", + { + "#bigint": "100" + } + ], + [ + "node7", + { + "#bigint": "100" + } + ], + [ + "node8", + { + "#bigint": "50" + } + ], + [ + "node9", + { + "#bigint": "100" + } + ] + ] + } + } + ] + ] + ] + } + } + }, + "params": { "CcvTimeout": { "#map": [ [ @@ -1685,6 +1624,9 @@ }, "trace": [ { + "changeAmount": { + "#bigint": "0" + }, "consumerChain": "", "consumersToStart": { "#set": [] @@ -1693,15 +1635,15 @@ "#set": [] }, "kind": "init", - "newVotingPower": { - "#bigint": "0" - }, "timeAdvancement": { "#bigint": "0" }, "validator": "" }, { + "changeAmount": { + "#bigint": "-50" + }, "consumerChain": "", "consumersToStart": { "#set": [] @@ -1709,20 +1651,19 @@ "consumersToStop": { "#set": [] }, - "kind": "EndAndBeginBlockForProvider", - "newVotingPower": { - "#bigint": "0" - }, + "kind": "VotingPowerChange", "timeAdvancement": { - "#bigint": "604800" + "#bigint": "0" }, - "validator": "" + "validator": "node8" }, { + "changeAmount": { + "#bigint": "0" + }, "consumerChain": "", "consumersToStart": { "#set": [ - "consumer1", "consumer3" ] }, @@ -1730,11 +1671,8 @@ "#set": [] }, "kind": "EndAndBeginBlockForProvider", - "newVotingPower": { - "#bigint": "0" - }, "timeAdvancement": { - "#bigint": "2419200" + "#bigint": "1" }, "validator": "" } @@ -1752,77 +1690,14 @@ { "chainState": { "currentValidatorSet": { - "#map": [ - [ - "node1", - { - "#bigint": "100" - } - ], - [ - "node10", - { - "#bigint": "100" - } - ], - [ - "node2", - { - "#bigint": "100" - } - ], - [ - "node3", - { - "#bigint": "100" - } - ], - [ - "node4", - { - "#bigint": "100" - } - ], - [ - "node5", - { - "#bigint": "100" - } - ], - [ - "node6", - { - "#bigint": "100" - } - ], - [ - "node7", - { - "#bigint": "100" - } - ], - [ - "node8", - { - "#bigint": "100" - } - ], - [ - "node9", - { - "#bigint": "100" - } - ] - ] + "#map": [] }, "lastTimestamp": { "#bigint": "0" }, "votingPowerHistory": [] }, - "maturationTimes": { - "#map": [] - }, + "maturationTimes": [], "outstandingPacketsToProvider": [], "receivedVscPackets": [] } @@ -1839,9 +1714,7 @@ }, "votingPowerHistory": [] }, - "maturationTimes": { - "#map": [] - }, + "maturationTimes": [], "outstandingPacketsToProvider": [], "receivedVscPackets": [] } @@ -1903,7 +1776,7 @@ [ "node8", { - "#bigint": "100" + "#bigint": "50" } ], [ @@ -1919,24 +1792,175 @@ }, "votingPowerHistory": [] }, - "maturationTimes": { - "#map": [] - }, - "outstandingPacketsToProvider": [], - "receivedVscPackets": [] - } - ] - ] - }, - "providerState": { - "chainState": { - "currentValidatorSet": { - "#map": [ - [ - "node1", + "maturationTimes": [ { - "#bigint": "100" - } + "#tup": [ + { + "id": { + "#bigint": "0" + }, + "sendingTime": { + "#bigint": "1" + }, + "validatorSet": { + "#map": [ + [ + "node1", + { + "#bigint": "100" + } + ], + [ + "node10", + { + "#bigint": "100" + } + ], + [ + "node2", + { + "#bigint": "100" + } + ], + [ + "node3", + { + "#bigint": "100" + } + ], + [ + "node4", + { + "#bigint": "100" + } + ], + [ + "node5", + { + "#bigint": "100" + } + ], + [ + "node6", + { + "#bigint": "100" + } + ], + [ + "node7", + { + "#bigint": "100" + } + ], + [ + "node8", + { + "#bigint": "50" + } + ], + [ + "node9", + { + "#bigint": "100" + } + ] + ] + } + }, + { + "#bigint": "1209600" + } + ] + } + ], + "outstandingPacketsToProvider": [], + "receivedVscPackets": [ + { + "id": { + "#bigint": "0" + }, + "sendingTime": { + "#bigint": "1" + }, + "validatorSet": { + "#map": [ + [ + "node1", + { + "#bigint": "100" + } + ], + [ + "node10", + { + "#bigint": "100" + } + ], + [ + "node2", + { + "#bigint": "100" + } + ], + [ + "node3", + { + "#bigint": "100" + } + ], + [ + "node4", + { + "#bigint": "100" + } + ], + [ + "node5", + { + "#bigint": "100" + } + ], + [ + "node6", + { + "#bigint": "100" + } + ], + [ + "node7", + { + "#bigint": "100" + } + ], + [ + "node8", + { + "#bigint": "50" + } + ], + [ + "node9", + { + "#bigint": "100" + } + ] + ] + } + } + ] + } + ] + ] + }, + "providerState": { + "chainState": { + "currentValidatorSet": { + "#map": [ + [ + "node1", + { + "#bigint": "100" + } ], [ "node10", @@ -1947,7 +1971,7 @@ [ "node2", { - "#bigint": "50" + "#bigint": "100" } ], [ @@ -1983,7 +2007,7 @@ [ "node8", { - "#bigint": "100" + "#bigint": "50" } ], [ @@ -1995,7 +2019,7 @@ ] }, "lastTimestamp": { - "#bigint": "3024000" + "#bigint": "1" }, "votingPowerHistory": [ { @@ -2051,71 +2075,7 @@ [ "node8", { - "#bigint": "100" - } - ], - [ - "node9", - { - "#bigint": "100" - } - ] - ] - }, - { - "#map": [ - [ - "node1", - { - "#bigint": "100" - } - ], - [ - "node10", - { - "#bigint": "100" - } - ], - [ - "node2", - { - "#bigint": "100" - } - ], - [ - "node3", - { - "#bigint": "100" - } - ], - [ - "node4", - { - "#bigint": "100" - } - ], - [ - "node5", - { - "#bigint": "100" - } - ], - [ - "node6", - { - "#bigint": "100" - } - ], - [ - "node7", - { - "#bigint": "100" - } - ], - [ - "node8", - { - "#bigint": "100" + "#bigint": "50" } ], [ @@ -2196,7 +2156,7 @@ "#map": [ [ "consumer1", - "running" + "not consumer" ], [ "consumer2", @@ -2224,12 +2184,12 @@ ] ] }, - "providerValidatorSetChangedInThisBlock": true, + "providerValidatorSetChangedInThisBlock": false, "receivedMaturations": { "#set": [] }, "runningVscId": { - "#bigint": "0" + "#bigint": "1" }, "sentVscPacketsToConsumer": { "#map": [ @@ -2243,7 +2203,80 @@ ], [ "consumer3", - [] + [ + { + "id": { + "#bigint": "0" + }, + "sendingTime": { + "#bigint": "1" + }, + "validatorSet": { + "#map": [ + [ + "node1", + { + "#bigint": "100" + } + ], + [ + "node10", + { + "#bigint": "100" + } + ], + [ + "node2", + { + "#bigint": "100" + } + ], + [ + "node3", + { + "#bigint": "100" + } + ], + [ + "node4", + { + "#bigint": "100" + } + ], + [ + "node5", + { + "#bigint": "100" + } + ], + [ + "node6", + { + "#bigint": "100" + } + ], + [ + "node7", + { + "#bigint": "100" + } + ], + [ + "node8", + { + "#bigint": "50" + } + ], + [ + "node9", + { + "#bigint": "100" + } + ] + ] + } + } + ] ] ] } @@ -2425,6 +2458,9 @@ }, "trace": [ { + "changeAmount": { + "#bigint": "0" + }, "consumerChain": "", "consumersToStart": { "#set": [] @@ -2433,15 +2469,15 @@ "#set": [] }, "kind": "init", - "newVotingPower": { - "#bigint": "0" - }, "timeAdvancement": { "#bigint": "0" }, "validator": "" }, { + "changeAmount": { + "#bigint": "-50" + }, "consumerChain": "", "consumersToStart": { "#set": [] @@ -2449,20 +2485,19 @@ "consumersToStop": { "#set": [] }, - "kind": "EndAndBeginBlockForProvider", - "newVotingPower": { - "#bigint": "0" - }, + "kind": "VotingPowerChange", "timeAdvancement": { - "#bigint": "604800" + "#bigint": "0" }, - "validator": "" + "validator": "node8" }, { + "changeAmount": { + "#bigint": "0" + }, "consumerChain": "", "consumersToStart": { "#set": [ - "consumer1", "consumer3" ] }, @@ -2470,30 +2505,27 @@ "#set": [] }, "kind": "EndAndBeginBlockForProvider", - "newVotingPower": { - "#bigint": "0" - }, "timeAdvancement": { - "#bigint": "2419200" + "#bigint": "1" }, "validator": "" }, { - "consumerChain": "", + "changeAmount": { + "#bigint": "0" + }, + "consumerChain": "consumer3", "consumersToStart": { "#set": [] }, "consumersToStop": { "#set": [] }, - "kind": "VotingPowerChange", - "newVotingPower": { - "#bigint": "50" - }, + "kind": "DeliverVscPacket", "timeAdvancement": { "#bigint": "0" }, - "validator": "node2" + "validator": "" } ] }, @@ -2509,14 +2541,48 @@ { "chainState": { "currentValidatorSet": { - "#map": [ - [ - "node1", - { - "#bigint": "100" - } - ], - [ + "#map": [] + }, + "lastTimestamp": { + "#bigint": "0" + }, + "votingPowerHistory": [] + }, + "maturationTimes": [], + "outstandingPacketsToProvider": [], + "receivedVscPackets": [] + } + ], + [ + "consumer2", + { + "chainState": { + "currentValidatorSet": { + "#map": [] + }, + "lastTimestamp": { + "#bigint": "0" + }, + "votingPowerHistory": [] + }, + "maturationTimes": [], + "outstandingPacketsToProvider": [], + "receivedVscPackets": [] + } + ], + [ + "consumer3", + { + "chainState": { + "currentValidatorSet": { + "#map": [ + [ + "node1", + { + "#bigint": "100" + } + ], + [ "node10", { "#bigint": "100" @@ -2561,7 +2627,7 @@ [ "node8", { - "#bigint": "100" + "#bigint": "50" } ], [ @@ -2577,9 +2643,2761 @@ }, "votingPowerHistory": [] }, - "maturationTimes": { - "#map": [] - }, + "maturationTimes": [ + { + "#tup": [ + { + "id": { + "#bigint": "0" + }, + "sendingTime": { + "#bigint": "1" + }, + "validatorSet": { + "#map": [ + [ + "node1", + { + "#bigint": "100" + } + ], + [ + "node10", + { + "#bigint": "100" + } + ], + [ + "node2", + { + "#bigint": "100" + } + ], + [ + "node3", + { + "#bigint": "100" + } + ], + [ + "node4", + { + "#bigint": "100" + } + ], + [ + "node5", + { + "#bigint": "100" + } + ], + [ + "node6", + { + "#bigint": "100" + } + ], + [ + "node7", + { + "#bigint": "100" + } + ], + [ + "node8", + { + "#bigint": "50" + } + ], + [ + "node9", + { + "#bigint": "100" + } + ] + ] + } + }, + { + "#bigint": "1209600" + } + ] + } + ], + "outstandingPacketsToProvider": [], + "receivedVscPackets": [ + { + "id": { + "#bigint": "0" + }, + "sendingTime": { + "#bigint": "1" + }, + "validatorSet": { + "#map": [ + [ + "node1", + { + "#bigint": "100" + } + ], + [ + "node10", + { + "#bigint": "100" + } + ], + [ + "node2", + { + "#bigint": "100" + } + ], + [ + "node3", + { + "#bigint": "100" + } + ], + [ + "node4", + { + "#bigint": "100" + } + ], + [ + "node5", + { + "#bigint": "100" + } + ], + [ + "node6", + { + "#bigint": "100" + } + ], + [ + "node7", + { + "#bigint": "100" + } + ], + [ + "node8", + { + "#bigint": "50" + } + ], + [ + "node9", + { + "#bigint": "100" + } + ] + ] + } + } + ] + } + ] + ] + }, + "providerState": { + "chainState": { + "currentValidatorSet": { + "#map": [ + [ + "node1", + { + "#bigint": "100" + } + ], + [ + "node10", + { + "#bigint": "100" + } + ], + [ + "node2", + { + "#bigint": "100" + } + ], + [ + "node3", + { + "#bigint": "150" + } + ], + [ + "node4", + { + "#bigint": "100" + } + ], + [ + "node5", + { + "#bigint": "100" + } + ], + [ + "node6", + { + "#bigint": "100" + } + ], + [ + "node7", + { + "#bigint": "100" + } + ], + [ + "node8", + { + "#bigint": "50" + } + ], + [ + "node9", + { + "#bigint": "100" + } + ] + ] + }, + "lastTimestamp": { + "#bigint": "1" + }, + "votingPowerHistory": [ + { + "#map": [ + [ + "node1", + { + "#bigint": "100" + } + ], + [ + "node10", + { + "#bigint": "100" + } + ], + [ + "node2", + { + "#bigint": "100" + } + ], + [ + "node3", + { + "#bigint": "100" + } + ], + [ + "node4", + { + "#bigint": "100" + } + ], + [ + "node5", + { + "#bigint": "100" + } + ], + [ + "node6", + { + "#bigint": "100" + } + ], + [ + "node7", + { + "#bigint": "100" + } + ], + [ + "node8", + { + "#bigint": "50" + } + ], + [ + "node9", + { + "#bigint": "100" + } + ] + ] + }, + { + "#map": [ + [ + "node1", + { + "#bigint": "100" + } + ], + [ + "node10", + { + "#bigint": "100" + } + ], + [ + "node2", + { + "#bigint": "100" + } + ], + [ + "node3", + { + "#bigint": "100" + } + ], + [ + "node4", + { + "#bigint": "100" + } + ], + [ + "node5", + { + "#bigint": "100" + } + ], + [ + "node6", + { + "#bigint": "100" + } + ], + [ + "node7", + { + "#bigint": "100" + } + ], + [ + "node8", + { + "#bigint": "100" + } + ], + [ + "node9", + { + "#bigint": "100" + } + ] + ] + } + ] + }, + "consumerStatus": { + "#map": [ + [ + "consumer1", + "not consumer" + ], + [ + "consumer2", + "not consumer" + ], + [ + "consumer3", + "running" + ] + ] + }, + "outstandingPacketsToConsumer": { + "#map": [ + [ + "consumer1", + [] + ], + [ + "consumer2", + [] + ], + [ + "consumer3", + [] + ] + ] + }, + "providerValidatorSetChangedInThisBlock": true, + "receivedMaturations": { + "#set": [] + }, + "runningVscId": { + "#bigint": "1" + }, + "sentVscPacketsToConsumer": { + "#map": [ + [ + "consumer1", + [] + ], + [ + "consumer2", + [] + ], + [ + "consumer3", + [ + { + "id": { + "#bigint": "0" + }, + "sendingTime": { + "#bigint": "1" + }, + "validatorSet": { + "#map": [ + [ + "node1", + { + "#bigint": "100" + } + ], + [ + "node10", + { + "#bigint": "100" + } + ], + [ + "node2", + { + "#bigint": "100" + } + ], + [ + "node3", + { + "#bigint": "100" + } + ], + [ + "node4", + { + "#bigint": "100" + } + ], + [ + "node5", + { + "#bigint": "100" + } + ], + [ + "node6", + { + "#bigint": "100" + } + ], + [ + "node7", + { + "#bigint": "100" + } + ], + [ + "node8", + { + "#bigint": "50" + } + ], + [ + "node9", + { + "#bigint": "100" + } + ] + ] + } + } + ] + ] + ] + } + } + }, + "params": { + "CcvTimeout": { + "#map": [ + [ + "consumer1", + { + "#bigint": "1814400" + } + ], + [ + "consumer2", + { + "#bigint": "1814400" + } + ], + [ + "consumer3", + { + "#bigint": "1814400" + } + ], + [ + "provider", + { + "#bigint": "1814400" + } + ] + ] + }, + "ConsumerChains": { + "#set": [ + "consumer1", + "consumer2", + "consumer3" + ] + }, + "InitialValidatorSet": { + "#map": [ + [ + "node1", + { + "#bigint": "100" + } + ], + [ + "node10", + { + "#bigint": "100" + } + ], + [ + "node2", + { + "#bigint": "100" + } + ], + [ + "node3", + { + "#bigint": "100" + } + ], + [ + "node4", + { + "#bigint": "100" + } + ], + [ + "node5", + { + "#bigint": "100" + } + ], + [ + "node6", + { + "#bigint": "100" + } + ], + [ + "node7", + { + "#bigint": "100" + } + ], + [ + "node8", + { + "#bigint": "100" + } + ], + [ + "node9", + { + "#bigint": "100" + } + ] + ] + }, + "Nodes": { + "#set": [ + "node1", + "node10", + "node2", + "node3", + "node4", + "node5", + "node6", + "node7", + "node8", + "node9" + ] + }, + "TrustingPeriodPerChain": { + "#map": [ + [ + "consumer1", + { + "#bigint": "604800" + } + ], + [ + "consumer2", + { + "#bigint": "604800" + } + ], + [ + "consumer3", + { + "#bigint": "604800" + } + ], + [ + "provider", + { + "#bigint": "604800" + } + ] + ] + }, + "UnbondingPeriodPerChain": { + "#map": [ + [ + "consumer1", + { + "#bigint": "1209600" + } + ], + [ + "consumer2", + { + "#bigint": "1209600" + } + ], + [ + "consumer3", + { + "#bigint": "1209600" + } + ], + [ + "provider", + { + "#bigint": "1209600" + } + ] + ] + }, + "VscTimeout": { + "#bigint": "3024000" + } + }, + "trace": [ + { + "changeAmount": { + "#bigint": "0" + }, + "consumerChain": "", + "consumersToStart": { + "#set": [] + }, + "consumersToStop": { + "#set": [] + }, + "kind": "init", + "timeAdvancement": { + "#bigint": "0" + }, + "validator": "" + }, + { + "changeAmount": { + "#bigint": "-50" + }, + "consumerChain": "", + "consumersToStart": { + "#set": [] + }, + "consumersToStop": { + "#set": [] + }, + "kind": "VotingPowerChange", + "timeAdvancement": { + "#bigint": "0" + }, + "validator": "node8" + }, + { + "changeAmount": { + "#bigint": "0" + }, + "consumerChain": "", + "consumersToStart": { + "#set": [ + "consumer3" + ] + }, + "consumersToStop": { + "#set": [] + }, + "kind": "EndAndBeginBlockForProvider", + "timeAdvancement": { + "#bigint": "1" + }, + "validator": "" + }, + { + "changeAmount": { + "#bigint": "0" + }, + "consumerChain": "consumer3", + "consumersToStart": { + "#set": [] + }, + "consumersToStop": { + "#set": [] + }, + "kind": "DeliverVscPacket", + "timeAdvancement": { + "#bigint": "0" + }, + "validator": "" + }, + { + "changeAmount": { + "#bigint": "50" + }, + "consumerChain": "", + "consumersToStart": { + "#set": [] + }, + "consumersToStop": { + "#set": [] + }, + "kind": "VotingPowerChange", + "timeAdvancement": { + "#bigint": "0" + }, + "validator": "node3" + } + ] + }, + { + "#meta": { + "index": 5 + }, + "currentState": { + "consumerStates": { + "#map": [ + [ + "consumer1", + { + "chainState": { + "currentValidatorSet": { + "#map": [] + }, + "lastTimestamp": { + "#bigint": "0" + }, + "votingPowerHistory": [] + }, + "maturationTimes": [], + "outstandingPacketsToProvider": [], + "receivedVscPackets": [] + } + ], + [ + "consumer2", + { + "chainState": { + "currentValidatorSet": { + "#map": [] + }, + "lastTimestamp": { + "#bigint": "0" + }, + "votingPowerHistory": [] + }, + "maturationTimes": [], + "outstandingPacketsToProvider": [], + "receivedVscPackets": [] + } + ], + [ + "consumer3", + { + "chainState": { + "currentValidatorSet": { + "#map": [ + [ + "node1", + { + "#bigint": "100" + } + ], + [ + "node10", + { + "#bigint": "100" + } + ], + [ + "node2", + { + "#bigint": "100" + } + ], + [ + "node3", + { + "#bigint": "100" + } + ], + [ + "node4", + { + "#bigint": "100" + } + ], + [ + "node5", + { + "#bigint": "100" + } + ], + [ + "node6", + { + "#bigint": "100" + } + ], + [ + "node7", + { + "#bigint": "100" + } + ], + [ + "node8", + { + "#bigint": "50" + } + ], + [ + "node9", + { + "#bigint": "100" + } + ] + ] + }, + "lastTimestamp": { + "#bigint": "601200" + }, + "votingPowerHistory": [ + { + "#map": [ + [ + "node1", + { + "#bigint": "100" + } + ], + [ + "node10", + { + "#bigint": "100" + } + ], + [ + "node2", + { + "#bigint": "100" + } + ], + [ + "node3", + { + "#bigint": "100" + } + ], + [ + "node4", + { + "#bigint": "100" + } + ], + [ + "node5", + { + "#bigint": "100" + } + ], + [ + "node6", + { + "#bigint": "100" + } + ], + [ + "node7", + { + "#bigint": "100" + } + ], + [ + "node8", + { + "#bigint": "50" + } + ], + [ + "node9", + { + "#bigint": "100" + } + ] + ] + } + ] + }, + "maturationTimes": [ + { + "#tup": [ + { + "id": { + "#bigint": "0" + }, + "sendingTime": { + "#bigint": "1" + }, + "validatorSet": { + "#map": [ + [ + "node1", + { + "#bigint": "100" + } + ], + [ + "node10", + { + "#bigint": "100" + } + ], + [ + "node2", + { + "#bigint": "100" + } + ], + [ + "node3", + { + "#bigint": "100" + } + ], + [ + "node4", + { + "#bigint": "100" + } + ], + [ + "node5", + { + "#bigint": "100" + } + ], + [ + "node6", + { + "#bigint": "100" + } + ], + [ + "node7", + { + "#bigint": "100" + } + ], + [ + "node8", + { + "#bigint": "50" + } + ], + [ + "node9", + { + "#bigint": "100" + } + ] + ] + } + }, + { + "#bigint": "1209600" + } + ] + } + ], + "outstandingPacketsToProvider": [], + "receivedVscPackets": [ + { + "id": { + "#bigint": "0" + }, + "sendingTime": { + "#bigint": "1" + }, + "validatorSet": { + "#map": [ + [ + "node1", + { + "#bigint": "100" + } + ], + [ + "node10", + { + "#bigint": "100" + } + ], + [ + "node2", + { + "#bigint": "100" + } + ], + [ + "node3", + { + "#bigint": "100" + } + ], + [ + "node4", + { + "#bigint": "100" + } + ], + [ + "node5", + { + "#bigint": "100" + } + ], + [ + "node6", + { + "#bigint": "100" + } + ], + [ + "node7", + { + "#bigint": "100" + } + ], + [ + "node8", + { + "#bigint": "50" + } + ], + [ + "node9", + { + "#bigint": "100" + } + ] + ] + } + } + ] + } + ] + ] + }, + "providerState": { + "chainState": { + "currentValidatorSet": { + "#map": [ + [ + "node1", + { + "#bigint": "100" + } + ], + [ + "node10", + { + "#bigint": "100" + } + ], + [ + "node2", + { + "#bigint": "100" + } + ], + [ + "node3", + { + "#bigint": "150" + } + ], + [ + "node4", + { + "#bigint": "100" + } + ], + [ + "node5", + { + "#bigint": "100" + } + ], + [ + "node6", + { + "#bigint": "100" + } + ], + [ + "node7", + { + "#bigint": "100" + } + ], + [ + "node8", + { + "#bigint": "50" + } + ], + [ + "node9", + { + "#bigint": "100" + } + ] + ] + }, + "lastTimestamp": { + "#bigint": "1" + }, + "votingPowerHistory": [ + { + "#map": [ + [ + "node1", + { + "#bigint": "100" + } + ], + [ + "node10", + { + "#bigint": "100" + } + ], + [ + "node2", + { + "#bigint": "100" + } + ], + [ + "node3", + { + "#bigint": "100" + } + ], + [ + "node4", + { + "#bigint": "100" + } + ], + [ + "node5", + { + "#bigint": "100" + } + ], + [ + "node6", + { + "#bigint": "100" + } + ], + [ + "node7", + { + "#bigint": "100" + } + ], + [ + "node8", + { + "#bigint": "50" + } + ], + [ + "node9", + { + "#bigint": "100" + } + ] + ] + }, + { + "#map": [ + [ + "node1", + { + "#bigint": "100" + } + ], + [ + "node10", + { + "#bigint": "100" + } + ], + [ + "node2", + { + "#bigint": "100" + } + ], + [ + "node3", + { + "#bigint": "100" + } + ], + [ + "node4", + { + "#bigint": "100" + } + ], + [ + "node5", + { + "#bigint": "100" + } + ], + [ + "node6", + { + "#bigint": "100" + } + ], + [ + "node7", + { + "#bigint": "100" + } + ], + [ + "node8", + { + "#bigint": "100" + } + ], + [ + "node9", + { + "#bigint": "100" + } + ] + ] + } + ] + }, + "consumerStatus": { + "#map": [ + [ + "consumer1", + "not consumer" + ], + [ + "consumer2", + "not consumer" + ], + [ + "consumer3", + "running" + ] + ] + }, + "outstandingPacketsToConsumer": { + "#map": [ + [ + "consumer1", + [] + ], + [ + "consumer2", + [] + ], + [ + "consumer3", + [] + ] + ] + }, + "providerValidatorSetChangedInThisBlock": true, + "receivedMaturations": { + "#set": [] + }, + "runningVscId": { + "#bigint": "1" + }, + "sentVscPacketsToConsumer": { + "#map": [ + [ + "consumer1", + [] + ], + [ + "consumer2", + [] + ], + [ + "consumer3", + [ + { + "id": { + "#bigint": "0" + }, + "sendingTime": { + "#bigint": "1" + }, + "validatorSet": { + "#map": [ + [ + "node1", + { + "#bigint": "100" + } + ], + [ + "node10", + { + "#bigint": "100" + } + ], + [ + "node2", + { + "#bigint": "100" + } + ], + [ + "node3", + { + "#bigint": "100" + } + ], + [ + "node4", + { + "#bigint": "100" + } + ], + [ + "node5", + { + "#bigint": "100" + } + ], + [ + "node6", + { + "#bigint": "100" + } + ], + [ + "node7", + { + "#bigint": "100" + } + ], + [ + "node8", + { + "#bigint": "50" + } + ], + [ + "node9", + { + "#bigint": "100" + } + ] + ] + } + } + ] + ] + ] + } + } + }, + "params": { + "CcvTimeout": { + "#map": [ + [ + "consumer1", + { + "#bigint": "1814400" + } + ], + [ + "consumer2", + { + "#bigint": "1814400" + } + ], + [ + "consumer3", + { + "#bigint": "1814400" + } + ], + [ + "provider", + { + "#bigint": "1814400" + } + ] + ] + }, + "ConsumerChains": { + "#set": [ + "consumer1", + "consumer2", + "consumer3" + ] + }, + "InitialValidatorSet": { + "#map": [ + [ + "node1", + { + "#bigint": "100" + } + ], + [ + "node10", + { + "#bigint": "100" + } + ], + [ + "node2", + { + "#bigint": "100" + } + ], + [ + "node3", + { + "#bigint": "100" + } + ], + [ + "node4", + { + "#bigint": "100" + } + ], + [ + "node5", + { + "#bigint": "100" + } + ], + [ + "node6", + { + "#bigint": "100" + } + ], + [ + "node7", + { + "#bigint": "100" + } + ], + [ + "node8", + { + "#bigint": "100" + } + ], + [ + "node9", + { + "#bigint": "100" + } + ] + ] + }, + "Nodes": { + "#set": [ + "node1", + "node10", + "node2", + "node3", + "node4", + "node5", + "node6", + "node7", + "node8", + "node9" + ] + }, + "TrustingPeriodPerChain": { + "#map": [ + [ + "consumer1", + { + "#bigint": "604800" + } + ], + [ + "consumer2", + { + "#bigint": "604800" + } + ], + [ + "consumer3", + { + "#bigint": "604800" + } + ], + [ + "provider", + { + "#bigint": "604800" + } + ] + ] + }, + "UnbondingPeriodPerChain": { + "#map": [ + [ + "consumer1", + { + "#bigint": "1209600" + } + ], + [ + "consumer2", + { + "#bigint": "1209600" + } + ], + [ + "consumer3", + { + "#bigint": "1209600" + } + ], + [ + "provider", + { + "#bigint": "1209600" + } + ] + ] + }, + "VscTimeout": { + "#bigint": "3024000" + } + }, + "trace": [ + { + "changeAmount": { + "#bigint": "0" + }, + "consumerChain": "", + "consumersToStart": { + "#set": [] + }, + "consumersToStop": { + "#set": [] + }, + "kind": "init", + "timeAdvancement": { + "#bigint": "0" + }, + "validator": "" + }, + { + "changeAmount": { + "#bigint": "-50" + }, + "consumerChain": "", + "consumersToStart": { + "#set": [] + }, + "consumersToStop": { + "#set": [] + }, + "kind": "VotingPowerChange", + "timeAdvancement": { + "#bigint": "0" + }, + "validator": "node8" + }, + { + "changeAmount": { + "#bigint": "0" + }, + "consumerChain": "", + "consumersToStart": { + "#set": [ + "consumer3" + ] + }, + "consumersToStop": { + "#set": [] + }, + "kind": "EndAndBeginBlockForProvider", + "timeAdvancement": { + "#bigint": "1" + }, + "validator": "" + }, + { + "changeAmount": { + "#bigint": "0" + }, + "consumerChain": "consumer3", + "consumersToStart": { + "#set": [] + }, + "consumersToStop": { + "#set": [] + }, + "kind": "DeliverVscPacket", + "timeAdvancement": { + "#bigint": "0" + }, + "validator": "" + }, + { + "changeAmount": { + "#bigint": "50" + }, + "consumerChain": "", + "consumersToStart": { + "#set": [] + }, + "consumersToStop": { + "#set": [] + }, + "kind": "VotingPowerChange", + "timeAdvancement": { + "#bigint": "0" + }, + "validator": "node3" + }, + { + "changeAmount": { + "#bigint": "0" + }, + "consumerChain": "consumer3", + "consumersToStart": { + "#set": [] + }, + "consumersToStop": { + "#set": [] + }, + "kind": "EndAndBeginBlockForConsumer", + "timeAdvancement": { + "#bigint": "601200" + }, + "validator": "" + } + ] + }, + { + "#meta": { + "index": 6 + }, + "currentState": { + "consumerStates": { + "#map": [ + [ + "consumer1", + { + "chainState": { + "currentValidatorSet": { + "#map": [] + }, + "lastTimestamp": { + "#bigint": "0" + }, + "votingPowerHistory": [] + }, + "maturationTimes": [], + "outstandingPacketsToProvider": [], + "receivedVscPackets": [] + } + ], + [ + "consumer2", + { + "chainState": { + "currentValidatorSet": { + "#map": [] + }, + "lastTimestamp": { + "#bigint": "0" + }, + "votingPowerHistory": [] + }, + "maturationTimes": [], + "outstandingPacketsToProvider": [], + "receivedVscPackets": [] + } + ], + [ + "consumer3", + { + "chainState": { + "currentValidatorSet": { + "#map": [ + [ + "node1", + { + "#bigint": "100" + } + ], + [ + "node10", + { + "#bigint": "100" + } + ], + [ + "node2", + { + "#bigint": "100" + } + ], + [ + "node3", + { + "#bigint": "100" + } + ], + [ + "node4", + { + "#bigint": "100" + } + ], + [ + "node5", + { + "#bigint": "100" + } + ], + [ + "node6", + { + "#bigint": "100" + } + ], + [ + "node7", + { + "#bigint": "100" + } + ], + [ + "node8", + { + "#bigint": "50" + } + ], + [ + "node9", + { + "#bigint": "100" + } + ] + ] + }, + "lastTimestamp": { + "#bigint": "1202400" + }, + "votingPowerHistory": [ + { + "#map": [ + [ + "node1", + { + "#bigint": "100" + } + ], + [ + "node10", + { + "#bigint": "100" + } + ], + [ + "node2", + { + "#bigint": "100" + } + ], + [ + "node3", + { + "#bigint": "100" + } + ], + [ + "node4", + { + "#bigint": "100" + } + ], + [ + "node5", + { + "#bigint": "100" + } + ], + [ + "node6", + { + "#bigint": "100" + } + ], + [ + "node7", + { + "#bigint": "100" + } + ], + [ + "node8", + { + "#bigint": "50" + } + ], + [ + "node9", + { + "#bigint": "100" + } + ] + ] + }, + { + "#map": [ + [ + "node1", + { + "#bigint": "100" + } + ], + [ + "node10", + { + "#bigint": "100" + } + ], + [ + "node2", + { + "#bigint": "100" + } + ], + [ + "node3", + { + "#bigint": "100" + } + ], + [ + "node4", + { + "#bigint": "100" + } + ], + [ + "node5", + { + "#bigint": "100" + } + ], + [ + "node6", + { + "#bigint": "100" + } + ], + [ + "node7", + { + "#bigint": "100" + } + ], + [ + "node8", + { + "#bigint": "50" + } + ], + [ + "node9", + { + "#bigint": "100" + } + ] + ] + } + ] + }, + "maturationTimes": [ + { + "#tup": [ + { + "id": { + "#bigint": "0" + }, + "sendingTime": { + "#bigint": "1" + }, + "validatorSet": { + "#map": [ + [ + "node1", + { + "#bigint": "100" + } + ], + [ + "node10", + { + "#bigint": "100" + } + ], + [ + "node2", + { + "#bigint": "100" + } + ], + [ + "node3", + { + "#bigint": "100" + } + ], + [ + "node4", + { + "#bigint": "100" + } + ], + [ + "node5", + { + "#bigint": "100" + } + ], + [ + "node6", + { + "#bigint": "100" + } + ], + [ + "node7", + { + "#bigint": "100" + } + ], + [ + "node8", + { + "#bigint": "50" + } + ], + [ + "node9", + { + "#bigint": "100" + } + ] + ] + } + }, + { + "#bigint": "1209600" + } + ] + } + ], + "outstandingPacketsToProvider": [], + "receivedVscPackets": [ + { + "id": { + "#bigint": "0" + }, + "sendingTime": { + "#bigint": "1" + }, + "validatorSet": { + "#map": [ + [ + "node1", + { + "#bigint": "100" + } + ], + [ + "node10", + { + "#bigint": "100" + } + ], + [ + "node2", + { + "#bigint": "100" + } + ], + [ + "node3", + { + "#bigint": "100" + } + ], + [ + "node4", + { + "#bigint": "100" + } + ], + [ + "node5", + { + "#bigint": "100" + } + ], + [ + "node6", + { + "#bigint": "100" + } + ], + [ + "node7", + { + "#bigint": "100" + } + ], + [ + "node8", + { + "#bigint": "50" + } + ], + [ + "node9", + { + "#bigint": "100" + } + ] + ] + } + } + ] + } + ] + ] + }, + "providerState": { + "chainState": { + "currentValidatorSet": { + "#map": [ + [ + "node1", + { + "#bigint": "100" + } + ], + [ + "node10", + { + "#bigint": "100" + } + ], + [ + "node2", + { + "#bigint": "100" + } + ], + [ + "node3", + { + "#bigint": "150" + } + ], + [ + "node4", + { + "#bigint": "100" + } + ], + [ + "node5", + { + "#bigint": "100" + } + ], + [ + "node6", + { + "#bigint": "100" + } + ], + [ + "node7", + { + "#bigint": "100" + } + ], + [ + "node8", + { + "#bigint": "50" + } + ], + [ + "node9", + { + "#bigint": "100" + } + ] + ] + }, + "lastTimestamp": { + "#bigint": "1" + }, + "votingPowerHistory": [ + { + "#map": [ + [ + "node1", + { + "#bigint": "100" + } + ], + [ + "node10", + { + "#bigint": "100" + } + ], + [ + "node2", + { + "#bigint": "100" + } + ], + [ + "node3", + { + "#bigint": "100" + } + ], + [ + "node4", + { + "#bigint": "100" + } + ], + [ + "node5", + { + "#bigint": "100" + } + ], + [ + "node6", + { + "#bigint": "100" + } + ], + [ + "node7", + { + "#bigint": "100" + } + ], + [ + "node8", + { + "#bigint": "50" + } + ], + [ + "node9", + { + "#bigint": "100" + } + ] + ] + }, + { + "#map": [ + [ + "node1", + { + "#bigint": "100" + } + ], + [ + "node10", + { + "#bigint": "100" + } + ], + [ + "node2", + { + "#bigint": "100" + } + ], + [ + "node3", + { + "#bigint": "100" + } + ], + [ + "node4", + { + "#bigint": "100" + } + ], + [ + "node5", + { + "#bigint": "100" + } + ], + [ + "node6", + { + "#bigint": "100" + } + ], + [ + "node7", + { + "#bigint": "100" + } + ], + [ + "node8", + { + "#bigint": "100" + } + ], + [ + "node9", + { + "#bigint": "100" + } + ] + ] + } + ] + }, + "consumerStatus": { + "#map": [ + [ + "consumer1", + "not consumer" + ], + [ + "consumer2", + "not consumer" + ], + [ + "consumer3", + "running" + ] + ] + }, + "outstandingPacketsToConsumer": { + "#map": [ + [ + "consumer1", + [] + ], + [ + "consumer2", + [] + ], + [ + "consumer3", + [] + ] + ] + }, + "providerValidatorSetChangedInThisBlock": true, + "receivedMaturations": { + "#set": [] + }, + "runningVscId": { + "#bigint": "1" + }, + "sentVscPacketsToConsumer": { + "#map": [ + [ + "consumer1", + [] + ], + [ + "consumer2", + [] + ], + [ + "consumer3", + [ + { + "id": { + "#bigint": "0" + }, + "sendingTime": { + "#bigint": "1" + }, + "validatorSet": { + "#map": [ + [ + "node1", + { + "#bigint": "100" + } + ], + [ + "node10", + { + "#bigint": "100" + } + ], + [ + "node2", + { + "#bigint": "100" + } + ], + [ + "node3", + { + "#bigint": "100" + } + ], + [ + "node4", + { + "#bigint": "100" + } + ], + [ + "node5", + { + "#bigint": "100" + } + ], + [ + "node6", + { + "#bigint": "100" + } + ], + [ + "node7", + { + "#bigint": "100" + } + ], + [ + "node8", + { + "#bigint": "50" + } + ], + [ + "node9", + { + "#bigint": "100" + } + ] + ] + } + } + ] + ] + ] + } + } + }, + "params": { + "CcvTimeout": { + "#map": [ + [ + "consumer1", + { + "#bigint": "1814400" + } + ], + [ + "consumer2", + { + "#bigint": "1814400" + } + ], + [ + "consumer3", + { + "#bigint": "1814400" + } + ], + [ + "provider", + { + "#bigint": "1814400" + } + ] + ] + }, + "ConsumerChains": { + "#set": [ + "consumer1", + "consumer2", + "consumer3" + ] + }, + "InitialValidatorSet": { + "#map": [ + [ + "node1", + { + "#bigint": "100" + } + ], + [ + "node10", + { + "#bigint": "100" + } + ], + [ + "node2", + { + "#bigint": "100" + } + ], + [ + "node3", + { + "#bigint": "100" + } + ], + [ + "node4", + { + "#bigint": "100" + } + ], + [ + "node5", + { + "#bigint": "100" + } + ], + [ + "node6", + { + "#bigint": "100" + } + ], + [ + "node7", + { + "#bigint": "100" + } + ], + [ + "node8", + { + "#bigint": "100" + } + ], + [ + "node9", + { + "#bigint": "100" + } + ] + ] + }, + "Nodes": { + "#set": [ + "node1", + "node10", + "node2", + "node3", + "node4", + "node5", + "node6", + "node7", + "node8", + "node9" + ] + }, + "TrustingPeriodPerChain": { + "#map": [ + [ + "consumer1", + { + "#bigint": "604800" + } + ], + [ + "consumer2", + { + "#bigint": "604800" + } + ], + [ + "consumer3", + { + "#bigint": "604800" + } + ], + [ + "provider", + { + "#bigint": "604800" + } + ] + ] + }, + "UnbondingPeriodPerChain": { + "#map": [ + [ + "consumer1", + { + "#bigint": "1209600" + } + ], + [ + "consumer2", + { + "#bigint": "1209600" + } + ], + [ + "consumer3", + { + "#bigint": "1209600" + } + ], + [ + "provider", + { + "#bigint": "1209600" + } + ] + ] + }, + "VscTimeout": { + "#bigint": "3024000" + } + }, + "trace": [ + { + "changeAmount": { + "#bigint": "0" + }, + "consumerChain": "", + "consumersToStart": { + "#set": [] + }, + "consumersToStop": { + "#set": [] + }, + "kind": "init", + "timeAdvancement": { + "#bigint": "0" + }, + "validator": "" + }, + { + "changeAmount": { + "#bigint": "-50" + }, + "consumerChain": "", + "consumersToStart": { + "#set": [] + }, + "consumersToStop": { + "#set": [] + }, + "kind": "VotingPowerChange", + "timeAdvancement": { + "#bigint": "0" + }, + "validator": "node8" + }, + { + "changeAmount": { + "#bigint": "0" + }, + "consumerChain": "", + "consumersToStart": { + "#set": [ + "consumer3" + ] + }, + "consumersToStop": { + "#set": [] + }, + "kind": "EndAndBeginBlockForProvider", + "timeAdvancement": { + "#bigint": "1" + }, + "validator": "" + }, + { + "changeAmount": { + "#bigint": "0" + }, + "consumerChain": "consumer3", + "consumersToStart": { + "#set": [] + }, + "consumersToStop": { + "#set": [] + }, + "kind": "DeliverVscPacket", + "timeAdvancement": { + "#bigint": "0" + }, + "validator": "" + }, + { + "changeAmount": { + "#bigint": "50" + }, + "consumerChain": "", + "consumersToStart": { + "#set": [] + }, + "consumersToStop": { + "#set": [] + }, + "kind": "VotingPowerChange", + "timeAdvancement": { + "#bigint": "0" + }, + "validator": "node3" + }, + { + "changeAmount": { + "#bigint": "0" + }, + "consumerChain": "consumer3", + "consumersToStart": { + "#set": [] + }, + "consumersToStop": { + "#set": [] + }, + "kind": "EndAndBeginBlockForConsumer", + "timeAdvancement": { + "#bigint": "601200" + }, + "validator": "" + }, + { + "changeAmount": { + "#bigint": "0" + }, + "consumerChain": "consumer3", + "consumersToStart": { + "#set": [] + }, + "consumersToStop": { + "#set": [] + }, + "kind": "EndAndBeginBlockForConsumer", + "timeAdvancement": { + "#bigint": "601200" + }, + "validator": "" + } + ] + }, + { + "#meta": { + "index": 7 + }, + "currentState": { + "consumerStates": { + "#map": [ + [ + "consumer1", + { + "chainState": { + "currentValidatorSet": { + "#map": [] + }, + "lastTimestamp": { + "#bigint": "0" + }, + "votingPowerHistory": [] + }, + "maturationTimes": [], "outstandingPacketsToProvider": [], "receivedVscPackets": [] } @@ -2596,9 +5414,7 @@ }, "votingPowerHistory": [] }, - "maturationTimes": { - "#map": [] - }, + "maturationTimes": [], "outstandingPacketsToProvider": [], "receivedVscPackets": [] } @@ -2660,7 +5476,7 @@ [ "node8", { - "#bigint": "100" + "#bigint": "50" } ], [ @@ -2669,13 +5485,226 @@ "#bigint": "100" } ] - ] - }, - "lastTimestamp": { - "#bigint": "86400" - }, - "votingPowerHistory": [ - { + ] + }, + "lastTimestamp": { + "#bigint": "1803600" + }, + "votingPowerHistory": [ + { + "#map": [ + [ + "node1", + { + "#bigint": "100" + } + ], + [ + "node10", + { + "#bigint": "100" + } + ], + [ + "node2", + { + "#bigint": "100" + } + ], + [ + "node3", + { + "#bigint": "100" + } + ], + [ + "node4", + { + "#bigint": "100" + } + ], + [ + "node5", + { + "#bigint": "100" + } + ], + [ + "node6", + { + "#bigint": "100" + } + ], + [ + "node7", + { + "#bigint": "100" + } + ], + [ + "node8", + { + "#bigint": "50" + } + ], + [ + "node9", + { + "#bigint": "100" + } + ] + ] + }, + { + "#map": [ + [ + "node1", + { + "#bigint": "100" + } + ], + [ + "node10", + { + "#bigint": "100" + } + ], + [ + "node2", + { + "#bigint": "100" + } + ], + [ + "node3", + { + "#bigint": "100" + } + ], + [ + "node4", + { + "#bigint": "100" + } + ], + [ + "node5", + { + "#bigint": "100" + } + ], + [ + "node6", + { + "#bigint": "100" + } + ], + [ + "node7", + { + "#bigint": "100" + } + ], + [ + "node8", + { + "#bigint": "50" + } + ], + [ + "node9", + { + "#bigint": "100" + } + ] + ] + }, + { + "#map": [ + [ + "node1", + { + "#bigint": "100" + } + ], + [ + "node10", + { + "#bigint": "100" + } + ], + [ + "node2", + { + "#bigint": "100" + } + ], + [ + "node3", + { + "#bigint": "100" + } + ], + [ + "node4", + { + "#bigint": "100" + } + ], + [ + "node5", + { + "#bigint": "100" + } + ], + [ + "node6", + { + "#bigint": "100" + } + ], + [ + "node7", + { + "#bigint": "100" + } + ], + [ + "node8", + { + "#bigint": "50" + } + ], + [ + "node9", + { + "#bigint": "100" + } + ] + ] + } + ] + }, + "maturationTimes": [], + "outstandingPacketsToProvider": [ + { + "id": { + "#bigint": "0" + }, + "sendingTime": { + "#bigint": "1803600" + } + } + ], + "receivedVscPackets": [ + { + "id": { + "#bigint": "0" + }, + "sendingTime": { + "#bigint": "1" + }, + "validatorSet": { "#map": [ [ "node1", @@ -2728,7 +5757,7 @@ [ "node8", { - "#bigint": "100" + "#bigint": "50" } ], [ @@ -2739,13 +5768,8 @@ ] ] } - ] - }, - "maturationTimes": { - "#map": [] - }, - "outstandingPacketsToProvider": [], - "receivedVscPackets": [] + } + ] } ] ] @@ -2769,13 +5793,13 @@ [ "node2", { - "#bigint": "50" + "#bigint": "100" } ], [ "node3", { - "#bigint": "100" + "#bigint": "150" } ], [ @@ -2805,7 +5829,7 @@ [ "node8", { - "#bigint": "100" + "#bigint": "50" } ], [ @@ -2817,7 +5841,7 @@ ] }, "lastTimestamp": { - "#bigint": "3024000" + "#bigint": "1" }, "votingPowerHistory": [ { @@ -2873,71 +5897,7 @@ [ "node8", { - "#bigint": "100" - } - ], - [ - "node9", - { - "#bigint": "100" - } - ] - ] - }, - { - "#map": [ - [ - "node1", - { - "#bigint": "100" - } - ], - [ - "node10", - { - "#bigint": "100" - } - ], - [ - "node2", - { - "#bigint": "100" - } - ], - [ - "node3", - { - "#bigint": "100" - } - ], - [ - "node4", - { - "#bigint": "100" - } - ], - [ - "node5", - { - "#bigint": "100" - } - ], - [ - "node6", - { - "#bigint": "100" - } - ], - [ - "node7", - { - "#bigint": "100" - } - ], - [ - "node8", - { - "#bigint": "100" + "#bigint": "50" } ], [ @@ -3018,7 +5978,7 @@ "#map": [ [ "consumer1", - "running" + "not consumer" ], [ "consumer2", @@ -3051,7 +6011,7 @@ "#set": [] }, "runningVscId": { - "#bigint": "0" + "#bigint": "1" }, "sentVscPacketsToConsumer": { "#map": [ @@ -3065,7 +6025,80 @@ ], [ "consumer3", - [] + [ + { + "id": { + "#bigint": "0" + }, + "sendingTime": { + "#bigint": "1" + }, + "validatorSet": { + "#map": [ + [ + "node1", + { + "#bigint": "100" + } + ], + [ + "node10", + { + "#bigint": "100" + } + ], + [ + "node2", + { + "#bigint": "100" + } + ], + [ + "node3", + { + "#bigint": "100" + } + ], + [ + "node4", + { + "#bigint": "100" + } + ], + [ + "node5", + { + "#bigint": "100" + } + ], + [ + "node6", + { + "#bigint": "100" + } + ], + [ + "node7", + { + "#bigint": "100" + } + ], + [ + "node8", + { + "#bigint": "50" + } + ], + [ + "node9", + { + "#bigint": "100" + } + ] + ] + } + } + ] ] ] } @@ -3247,6 +6280,9 @@ }, "trace": [ { + "changeAmount": { + "#bigint": "0" + }, "consumerChain": "", "consumersToStart": { "#set": [] @@ -3255,15 +6291,15 @@ "#set": [] }, "kind": "init", - "newVotingPower": { - "#bigint": "0" - }, "timeAdvancement": { "#bigint": "0" }, "validator": "" }, { + "changeAmount": { + "#bigint": "-50" + }, "consumerChain": "", "consumersToStart": { "#set": [] @@ -3271,20 +6307,19 @@ "consumersToStop": { "#set": [] }, - "kind": "EndAndBeginBlockForProvider", - "newVotingPower": { - "#bigint": "0" - }, + "kind": "VotingPowerChange", "timeAdvancement": { - "#bigint": "604800" + "#bigint": "0" }, - "validator": "" + "validator": "node8" }, { + "changeAmount": { + "#bigint": "0" + }, "consumerChain": "", "consumersToStart": { "#set": [ - "consumer1", "consumer3" ] }, @@ -3292,15 +6327,32 @@ "#set": [] }, "kind": "EndAndBeginBlockForProvider", - "newVotingPower": { + "timeAdvancement": { + "#bigint": "1" + }, + "validator": "" + }, + { + "changeAmount": { "#bigint": "0" }, + "consumerChain": "consumer3", + "consumersToStart": { + "#set": [] + }, + "consumersToStop": { + "#set": [] + }, + "kind": "DeliverVscPacket", "timeAdvancement": { - "#bigint": "2419200" + "#bigint": "0" }, "validator": "" }, { + "changeAmount": { + "#bigint": "50" + }, "consumerChain": "", "consumersToStart": { "#set": [] @@ -3309,15 +6361,32 @@ "#set": [] }, "kind": "VotingPowerChange", - "newVotingPower": { - "#bigint": "50" - }, "timeAdvancement": { "#bigint": "0" }, - "validator": "node2" + "validator": "node3" + }, + { + "changeAmount": { + "#bigint": "0" + }, + "consumerChain": "consumer3", + "consumersToStart": { + "#set": [] + }, + "consumersToStop": { + "#set": [] + }, + "kind": "EndAndBeginBlockForConsumer", + "timeAdvancement": { + "#bigint": "601200" + }, + "validator": "" }, { + "changeAmount": { + "#bigint": "0" + }, "consumerChain": "consumer3", "consumersToStart": { "#set": [] @@ -3326,11 +6395,25 @@ "#set": [] }, "kind": "EndAndBeginBlockForConsumer", - "newVotingPower": { + "timeAdvancement": { + "#bigint": "601200" + }, + "validator": "" + }, + { + "changeAmount": { "#bigint": "0" }, + "consumerChain": "consumer3", + "consumersToStart": { + "#set": [] + }, + "consumersToStop": { + "#set": [] + }, + "kind": "EndAndBeginBlockForConsumer", "timeAdvancement": { - "#bigint": "86400" + "#bigint": "601200" }, "validator": "" } diff --git a/testutil/simibc/chain_util.go b/testutil/simibc/chain_util.go index 1c00c928c5..fe60002333 100644 --- a/testutil/simibc/chain_util.go +++ b/testutil/simibc/chain_util.go @@ -39,14 +39,17 @@ func BeginBlock(c *ibctesting.TestChain, dt time.Duration) { // so you can query the state inside the callback. // // NOTE: this method may be used independently of the rest of simibc. -func EndBlock(c *ibctesting.TestChain, preCommitCallback func()) (*ibctmtypes.Header, []channeltypes.Packet) { +func EndBlock( + c *ibctesting.TestChain, + // preCommitCallback func(), +) (*ibctmtypes.Header, []channeltypes.Packet) { ebRes := c.App.EndBlock(abci.RequestEndBlock{Height: c.CurrentHeader.Height}) /* It is useful to call arbitrary code after ending the block but before committing the block because the sdk.Context is cleared after committing. */ - preCommitCallback() + // preCommitCallback() c.App.Commit() diff --git a/testutil/simibc/relayed_path.go b/testutil/simibc/relayed_path.go index 8105b7997e..b5ba476305 100644 --- a/testutil/simibc/relayed_path.go +++ b/testutil/simibc/relayed_path.go @@ -1,7 +1,6 @@ package simibc import ( - "bytes" "testing" channeltypes "github.com/cosmos/ibc-go/v7/modules/core/04-channel/types" @@ -42,32 +41,29 @@ func MakeRelayedPath(t *testing.T, path *ibctesting.Path) *RelayedPath { } // PacketBelongs returns true if the packet belongs to this relayed path. -func (f *RelayedPath) PacketBelongs(packet channeltypes.Packet) bool { - return f.PacketSentByA(packet) || f.PacketSentByB(packet) +func (f *RelayedPath) PacketSentByChain(packet channeltypes.Packet, chainID string) bool { + if chainID == f.Path.EndpointA.Chain.ChainID { + return f.PacketSentByA(packet) + } else if chainID == f.Path.EndpointB.Chain.ChainID { + return f.PacketSentByB(packet) + } + return false } // PacketSentByA returns true if the given packet was sent by chain A on this path. func (f *RelayedPath) PacketSentByA(packet channeltypes.Packet) bool { - committedByA := f.Path.EndpointA.Chain.App.GetIBCKeeper().ChannelKeeper.GetPacketCommitment( - f.Path.EndpointA.Chain.GetContext(), - f.Path.EndpointA.ChannelConfig.PortID, - f.Path.EndpointA.ChannelID, - packet.GetSequence(), - ) - - return bytes.Equal(committedByA, channeltypes.CommitPacket(f.Path.EndpointA.Chain.App.AppCodec(), packet)) + return packet.SourcePort == f.Path.EndpointA.ChannelConfig.PortID && + packet.SourceChannel == f.Path.EndpointA.ChannelID && + packet.DestinationPort == f.Path.EndpointB.ChannelConfig.PortID && + packet.DestinationChannel == f.Path.EndpointB.ChannelID } // PacketSentByB returns true if the given packet was sent by chain B on this path. func (f *RelayedPath) PacketSentByB(packet channeltypes.Packet) bool { - committedByB := f.Path.EndpointB.Chain.App.GetIBCKeeper().ChannelKeeper.GetPacketCommitment( - f.Path.EndpointB.Chain.GetContext(), - f.Path.EndpointB.ChannelConfig.PortID, - f.Path.EndpointB.ChannelID, - packet.GetSequence(), - ) - - return bytes.Equal(committedByB, channeltypes.CommitPacket(f.Path.EndpointB.Chain.App.AppCodec(), packet)) + return packet.SourcePort == f.Path.EndpointB.ChannelConfig.PortID && + packet.SourceChannel == f.Path.EndpointB.ChannelID && + packet.DestinationPort == f.Path.EndpointA.ChannelConfig.PortID && + packet.DestinationChannel == f.Path.EndpointA.ChannelID } // AddPacket adds a packet to the outbox of the chain with chainID. @@ -114,13 +110,13 @@ func (f *RelayedPath) InvolvesChain(chainID string) bool { // of available headers committed by the counterparty chain since // the last call to UpdateClient (or all for the first call). func (f *RelayedPath) UpdateClient(chainID string) { - for _, header := range f.clientHeaders[f.counterparty(chainID)] { - err := UpdateReceiverClient(f.endpoint(f.counterparty(chainID)), f.endpoint(chainID), header) + for _, header := range f.clientHeaders[f.Counterparty(chainID)] { + err := UpdateReceiverClient(f.endpoint(f.Counterparty(chainID)), f.endpoint(chainID), header) if err != nil { f.t.Fatal("in relayed path could not update client of chain: ", chainID, " with header: ", header, " err: ", err) } } - f.clientHeaders[f.counterparty(chainID)] = []*ibctmtypes.Header{} + f.clientHeaders[f.Counterparty(chainID)] = []*ibctmtypes.Header{} } // DeliverPackets delivers UP TO packets to the chain which have been @@ -135,8 +131,8 @@ func (f *RelayedPath) UpdateClient(chainID string) { // In order to deliver packets, the chain must have an up-to-date client // of the counterparty chain. Ie. UpdateClient should be called before this. func (f *RelayedPath) DeliverPackets(chainID string, num int) { - for _, p := range f.Outboxes.ConsumePackets(f.counterparty(chainID), num) { - ack, err := TryRecvPacket(f.endpoint(f.counterparty(chainID)), f.endpoint(chainID), p.Packet) + for _, p := range f.Outboxes.ConsumePackets(f.Counterparty(chainID), num) { + ack, err := TryRecvPacket(f.endpoint(f.Counterparty(chainID)), f.endpoint(chainID), p.Packet) if err != nil { f.t.Fatal("deliver") } @@ -156,16 +152,17 @@ func (f *RelayedPath) DeliverPackets(chainID string, num int) { // In order to deliver acks, the chain must have an up-to-date client // of the counterparty chain. Ie. UpdateClient should be called before this. func (f *RelayedPath) DeliverAcks(chainID string, num int) { - for _, ack := range f.Outboxes.ConsumeAcks(f.counterparty(chainID), num) { - err := TryRecvAck(f.endpoint(f.counterparty(chainID)), f.endpoint(chainID), ack.Packet, ack.Ack) + for _, ack := range f.Outboxes.ConsumeAcks(f.Counterparty(chainID), num) { + err := TryRecvAck(f.endpoint(f.Counterparty(chainID)), f.endpoint(chainID), ack.Packet, ack.Ack) if err != nil { f.t.Fatal("deliverAcks") } } } -// counterparty is a helper returning the counterparty chainID -func (f *RelayedPath) counterparty(chainID string) string { +// Counterparty returns the chainID of the other chain, +// from the perspective of the given chain. +func (f *RelayedPath) Counterparty(chainID string) string { if f.Path.EndpointA.Chain.ChainID == chainID { return f.Path.EndpointB.Chain.ChainID } From abc12cfda02e483e2bf7f245baad871d7e4ec1c2 Mon Sep 17 00:00:00 2001 From: Philip Offtermatt Date: Tue, 14 Nov 2023 10:57:48 +0100 Subject: [PATCH 021/111] Add ccv_happy module as a happyPath variant --- .../difference/core/quint_model/ccv_happy.qnt | 67 ++++++++++++ .../difference/core/quint_model/ccv_model.qnt | 100 ++++++++++-------- 2 files changed, 124 insertions(+), 43 deletions(-) create mode 100644 tests/difference/core/quint_model/ccv_happy.qnt diff --git a/tests/difference/core/quint_model/ccv_happy.qnt b/tests/difference/core/quint_model/ccv_happy.qnt new file mode 100644 index 0000000000..60e2574422 --- /dev/null +++ b/tests/difference/core/quint_model/ccv_happy.qnt @@ -0,0 +1,67 @@ +module ccv_happy { + import ccv_model.* from "ccv_model" + import ccv_types as ccvt from "ccv" + import ccv from "ccv" + import Time.* from "./libraries/Time" + import extraSpells.* from "./libraries/extraSpells" + + + // The happy path module has its own init and step functions. + // They ensure that chains do not drift from each other in terms of time, + // and all chains produce blocks synchronously. + // To do so, it makes use of + // "action scheduling", essentially using a variable to + // determine the next action to be taken. + + // QueuedEndBlocks contains a list of chains which will end their blocks next, + // together with the time advancement they should advance by. + // When stepHappyPath selects an action, it checks if there are any chains in this list, + // and if so, it will only select actions that end blocks on the head of the list. + // QueuedEndBlocks is thus used to schedule actions. + var QueuedEndBlocks: List[(ccvt::Chain, Time)] + + // runs init, then ends and begins a block for each chain, while also starting all consumers. + // necessary because we want the happy path to have all consumer chains started. + action initHappy = + all { + init.then( + EndAndBeginBlockForProvider(1 * Second, consumerChains, Set()) + ), + QueuedEndBlocks' = consumerChainList.foldl( + List(), + (acc, consumer) => acc.append((consumer, 1 * Second)) + ), + } + + + + // step will advance time for all chains at the same rate, + // thus the clock times are always in sync. + // This is useful to test happy paths. + action stepHappy = any { + nondet timeAdvancement = oneOf(timeAdvancements) + all { + QueuedEndBlocks.length() == 0, + EndAndBeginBlockForProvider(timeAdvancement, Set(), Set()), + QueuedEndBlocks' = consumerChainList.foldl( + List(), + (acc, consumer) => acc.append((consumer, timeAdvancement)) + ), + }, + + all { + QueuedEndBlocks.length() > 0, + val pair = QueuedEndBlocks.head() + val chain = pair._1 + val timeAdv = pair._2 + EndAndBeginBlockForConsumer(chain, timeAdv), + QueuedEndBlocks' = QueuedEndBlocks.tail(), + }, + + all { + QueuedEndBlocks.length() == 0, + step_common, + QueuedEndBlocks' = QueuedEndBlocks, + } + } +} \ No newline at end of file diff --git a/tests/difference/core/quint_model/ccv_model.qnt b/tests/difference/core/quint_model/ccv_model.qnt index c253824e43..80e414e3fa 100644 --- a/tests/difference/core/quint_model/ccv_model.qnt +++ b/tests/difference/core/quint_model/ccv_model.qnt @@ -5,10 +5,12 @@ module ccv_model { import Time.* from "./libraries/Time" import extraSpells.* from "./libraries/extraSpells" - pure val consumerChains = Set("consumer1", "consumer2", "consumer3") + pure val consumerChainList = List("consumer1", "consumer2", "consumer3") + pure val consumerChains = consumerChainList.toSet() pure val chains = consumerChains.union(Set(PROVIDER_CHAIN)) - pure val unbondingPeriods = chains.mapBy(chain => 2 * Week) - pure val trustingPeriods = chains.mapBy(chain => 1 * Week) + pure val defUnbondingPeriod = 2 * Week + pure val unbondingPeriods = chains.mapBy(chain => defUnbondingPeriod) + pure val trustingPeriods = chains.mapBy(chain => defUnbondingPeriod - 1 * Hour) pure val ccvTimeouts = chains.mapBy(chain => 3 * Week) pure val nodes = Set("node1", "node2", "node3", "node4", "node5", "node6", "node7", "node8", "node9", "node10") @@ -16,6 +18,8 @@ module ccv_model { import ccv(VscTimeout = 5 * Week, CcvTimeout = ccvTimeouts, UnbondingPeriodPerChain = unbondingPeriods, ConsumerChains = consumerChains, TrustingPeriodPerChain = trustingPeriods).* from "./ccv" + // TODO: introduce max clock drift to produce traces with bounded drift + type Parameters = { VscTimeout: Time, CcvTimeout: Chain -> Time, @@ -69,46 +73,6 @@ module ccv_model { changeAmount: 0, } - // step allows the most generic nondeterminism, in particular it becomes relatively likely - // that over a long enough runtime, all consumers would time out by mismatching their time advancements, - // and each endblock has a good chance to stop consumers, ... - // step is thus suited to test also unhappy paths. - action step = any { - all { - runningConsumers.size() > 0, // ensure there is a running consumer, otherwise this action does not make sense - nondet chain = oneOf(runningConsumers) - nondet timeAdvancement = oneOf(timeAdvancements) - EndAndBeginBlockForConsumer(chain, timeAdvancement), - }, - - val consumerStatus = currentState.providerState.consumerStatus - nondet consumersToStart = oneOf(nonConsumers.powerset()) - nondet consumersToStop = oneOf(runningConsumers.powerset()) - nondet timeAdvancement = oneOf(timeAdvancements) - EndAndBeginBlockForProvider(timeAdvancement, consumersToStart, consumersToStop), - - nondet node = oneOf(nodes) - // very restricted set of voting powers. exact values are not important, - // and this keeps the state space smaller. - nondet newVotingPower = oneOf(Set(-50, 50)) - VotingPowerChange(node, newVotingPower), - - // try to send a packet. we could filter by chains that can actually send, - // but it's probably not much faster than just trying and failing. - all { - runningConsumers.size() > 0, // ensure there is a running consumer, otherwise this action does not make sense - nondet sender = oneOf(runningConsumers) - DeliverVscMaturedPacket(sender), - }, - - // again, we could filter by chains that can actually receive, - // but it's probably not much faster than just trying and failing. - all { - runningConsumers.size() > 0, // ensure there is a running consumer, otherwise this action does not make sense - nondet recciver = oneOf(runningConsumers) - DeliverVscPacket(recciver), - }, - } // some utility stateful vals to make invariants easier to define val providerValidatorHistory = currentState.providerState.chainState.votingPowerHistory @@ -207,6 +171,53 @@ module ccv_model { params' = params, } + // step_common is the core functionality of steps that does not have anything to do with time. + // Thus, it is part of both step and stepBoundedDrift. + action step_common = any { + nondet node = oneOf(nodes) + // very restricted set of voting powers. exact values are not important, + // and this keeps the state space smaller. + nondet newVotingPower = oneOf(Set(-50, 50)) + VotingPowerChange(node, newVotingPower), + + // try to send a packet. we could filter by chains that can actually send, + // but it's probably not much faster than just trying and failing. + all { + runningConsumers.size() > 0, // ensure there is a running consumer, otherwise this action does not make sense + nondet sender = oneOf(runningConsumers) + DeliverVscMaturedPacket(sender), + }, + + // again, we could filter by chains that can actually receive, + // but it's probably not much faster than just trying and failing. + all { + runningConsumers.size() > 0, // ensure there is a running consumer, otherwise this action does not make sense + nondet recciver = oneOf(runningConsumers) + DeliverVscPacket(recciver), + }, + } + + // step allows the most generic nondeterminism, in particular it becomes relatively likely + // that over a long enough runtime, all consumers would time out by mismatching their time advancements, + // and each endblock has a good chance to stop consumers, ... + // step is thus suited to test also unhappy paths. + action step = any { + all { + runningConsumers.size() > 0, // ensure there is a running consumer, otherwise this action does not make sense + nondet chain = oneOf(runningConsumers) + nondet timeAdvancement = oneOf(timeAdvancements) + EndAndBeginBlockForConsumer(chain, timeAdvancement), + }, + + val consumerStatus = currentState.providerState.consumerStatus + nondet consumersToStart = oneOf(nonConsumers.powerset()) + nondet consumersToStop = oneOf(runningConsumers.powerset()) + nondet timeAdvancement = oneOf(timeAdvancements) + EndAndBeginBlockForProvider(timeAdvancement, consumersToStart, consumersToStop), + + step_common + } + // ================== // UTILITY FUNCTIONS // ================== @@ -400,6 +411,9 @@ module ccv_model { currentState.providerState.outstandingPacketsToConsumer.get(consumer).length() > 0 )) + val CanReceiveVscPackets = + not(trace[length(trace)-1].kind == "DeliverVscPacket") + val CanSendVscMaturedPackets = not(ConsumerChains.exists( consumer => From ad2502965586eced274cdcf96248be58550fe094 Mon Sep 17 00:00:00 2001 From: Philip Offtermatt Date: Thu, 16 Nov 2023 13:09:13 +0100 Subject: [PATCH 022/111] Fix model: packets are emitted based on the timestamp of the last block, not the new block --- tests/difference/core/quint_model/ccv.qnt | 17 ++++++-- .../difference/core/quint_model/ccv_model.qnt | 41 ++++++++++++------- 2 files changed, 40 insertions(+), 18 deletions(-) diff --git a/tests/difference/core/quint_model/ccv.qnt b/tests/difference/core/quint_model/ccv.qnt index 6e0275abe7..5087098e3d 100644 --- a/tests/difference/core/quint_model/ccv.qnt +++ b/tests/difference/core/quint_model/ccv.qnt @@ -413,6 +413,7 @@ module ccv { ) // for each consumer we just set to running, set its initial validator set to be the current one on the provider. + val valSet = providerStateAfterConsumerAdvancement.chainState.currentValidatorSet val newConsumerStateMap = tmpState.consumerStates.keys().mapBy( (consumer) => @@ -420,7 +421,10 @@ module ccv { val currentConsumerState: ConsumerState = tmpState.consumerStates.get(consumer) val newConsumerState: ConsumerState = currentConsumerState.with( "chainState", currentConsumerState.chainState.with( - "currentValidatorSet", providerStateAfterConsumerAdvancement.chainState.currentValidatorSet + "currentValidatorSet", valSet + ).with( + "votingPowerHistory", + List(valSet) ) ) newConsumerState @@ -462,6 +466,7 @@ module ccv { Err("chain is not a consumer") } else { val currentConsumerState: ConsumerState = currentState.consumerStates.get(chain) + val oldChainState: ChainState = currentConsumerState.chainState val newChainState: ChainState = currentConsumerState.chainState.endAndBeginBlockShared(timeAdvancement) val newConsumerState: ConsumerState = currentConsumerState.with( "chainState", newChainState @@ -470,19 +475,23 @@ module ccv { pair => val packet = pair._1 val maturationTime = pair._2 - maturationTime <= newChainState.lastTimestamp + // important that the old chain state is used here, because sending packets happens on EndBlock, + // but the new timestamp only appears after BeginBlock + maturationTime <= oldChainState.lastTimestamp ).transform(pair => pair._1) val newMaturationTimes = newConsumerState.maturationTimes.select( pair => val packet = pair._1 val maturationTime = pair._2 - maturationTime > newChainState.lastTimestamp + // important that the old chain state is used here, because sending packets happens on EndBlock, + // but the new timestamp only appears after BeginBlock + maturationTime > oldChainState.lastTimestamp ) val newOutstandingPackets = newConsumerState.outstandingPacketsToProvider.concat( maturedPackets.transform( packet => { id: packet.id, - sendingTime: newConsumerState.chainState.lastTimestamp + sendingTime: oldChainState.lastTimestamp } ) ) diff --git a/tests/difference/core/quint_model/ccv_model.qnt b/tests/difference/core/quint_model/ccv_model.qnt index 80e414e3fa..b580be32a5 100644 --- a/tests/difference/core/quint_model/ccv_model.qnt +++ b/tests/difference/core/quint_model/ccv_model.qnt @@ -338,24 +338,26 @@ module ccv_model { ) // For every ValidatorSetChangePacket received by a consumer chain at - // time t, a MaturedVscPacket is sent back to the provider in the first block + // time t, a MaturedVscPacket is sent back to the provider when we end the first block // with a timestamp >= t + UnbondingPeriod // NOTE: because we remove the maturationTimes entry when we send the packets, - // it suffices to check that there is never an entry in maturationTimes - // that has already matured, i.e. where the maturationTime is smaller-or-equal than the lastTimestamp + // it suffices to check that after we end/begin a block, there is never an entry in maturationTimes + // that has already matured, i.e. where the maturationTime is smaller-or-equal than the + // timestamp of the block we just ended + val MaturationPrecondition = trace[trace.length()-1].kind == "EndAndBeginBlockForConsumer" + val ConsumerWithPotentialMaturations = trace[trace.length()-1].consumerChain + val lastTimeAdvancement = trace[trace.length()-1].timeAdvancement + val lastBlockTime = currentState.consumerStates.get(ConsumerWithPotentialMaturations).chainState.lastTimestamp - lastTimeAdvancement val MatureOnTimeInv = - runningConsumers.forall( - consumer => { - val maturationTimes = currentState.consumerStates.get(consumer).maturationTimes - maturationTimes.listForAll( - // check that the maturation time is in the future - pair => - val maturationTime = pair._2 - maturationTime >= currentState.consumerStates.get(consumer).chainState.lastTimestamp - ) - } + MaturationPrecondition + implies + currentState.consumerStates.get(ConsumerWithPotentialMaturations).maturationTimes.toSet().forall( + pair => + val maturationTime = pair._2 + maturationTime > lastBlockTime ) + // If we send a VscPacket, this is eventually responded to by all consumers // that were running at the time the packet was sent (and are still running). // Since we remove sentVscPacketsToConsumer when we receive responses for them, @@ -500,7 +502,18 @@ module ccv_model { ) .then( all { - // the packet has matured, so it was sent by the consumer + // the packet has not matured yet - the timestamp for the current block is after the naturation time, + // but packets are only sent on EndBlock + assert(currentState.consumerStates.get("consumer1").outstandingPacketsToProvider.length() == 0), + // the packet is still waiting to mature + assert(currentState.consumerStates.get("consumer1").maturationTimes.length() == 1), + // end another block, this time after the time has been reached + EndAndBeginBlockForConsumer("consumer1", 1 * Second) + } + ) + .then( + all { + // the packet now was sent by the consumer assert(currentState.consumerStates.get("consumer1").outstandingPacketsToProvider.length() == 1), // it was removed from the maturationTimes assert(currentState.consumerStates.get("consumer1").maturationTimes.length() == 0), From fea71dc84c414f35ab538100c63cb36348190b54 Mon Sep 17 00:00:00 2001 From: Philip Offtermatt Date: Thu, 16 Nov 2023 13:10:22 +0100 Subject: [PATCH 023/111] Add viewer for ModelState and fix model-system equivalence checks --- .../core/quint_model/driver/core.go | 68 +- .../core/quint_model/driver/mbt_test.go | 238 +- .../core/quint_model/driver/model_viewer.go | 57 + .../core/quint_model/driver/setup.go | 57 +- .../core/quint_model/driver/trace.json | 6424 +---------------- testutil/simibc/chain_util.go | 2 +- testutil/simibc/ordered_outbox.go | 11 +- 7 files changed, 338 insertions(+), 6519 deletions(-) create mode 100644 tests/difference/core/quint_model/driver/model_viewer.go diff --git a/tests/difference/core/quint_model/driver/core.go b/tests/difference/core/quint_model/driver/core.go index b332f1984e..03e65f008c 100644 --- a/tests/difference/core/quint_model/driver/core.go +++ b/tests/difference/core/quint_model/driver/core.go @@ -13,6 +13,7 @@ import ( slashingkeeper "github.com/cosmos/cosmos-sdk/x/slashing/keeper" stakingkeeper "github.com/cosmos/cosmos-sdk/x/staking/keeper" stakingtypes "github.com/cosmos/cosmos-sdk/x/staking/types" + consumertypes "github.com/cosmos/interchain-security/v3/x/ccv/consumer/types" appConsumer "github.com/cosmos/interchain-security/v3/app/consumer" appProvider "github.com/cosmos/interchain-security/v3/app/provider" @@ -164,12 +165,12 @@ func (s *Driver) providerTokens(i int64) int64 { return v.Tokens.Int64() } -func (s *Driver) validatorSet(chain ChainId) []stakingtypes.Validator { - if chain == P { - return s.providerStakingKeeper().GetAllValidators(s.ctx(P)) - } else { - return s.consumerKeeper(chain).GetAllValidators(s.ctx(chain)) - } +func (s *Driver) providerValidatorSet(chain ChainId) []stakingtypes.Validator { + return s.providerStakingKeeper().GetAllValidators(s.ctx(P)) +} + +func (s *Driver) consumerValidatorSet(chain ChainId) []consumertypes.CrossChainValidator { + return s.consumerKeeper(chain).GetAllCCValidator(s.ctx(chain)) } // delegatorBalance returns the balance of the delegator account @@ -238,6 +239,33 @@ func (s *Driver) deliver(chain ChainId, numPackets int) { s.path(chain).DeliverPackets(string(chain), numPackets) } +// packetQueue returns the queued packet sfrom sender to receiver, +// where either sender or receiver must be the provider. +func (s *Driver) packetQueue(sender ChainId, receiver ChainId) []simibc.Packet { + var path *simibc.RelayedPath + if sender == P { + path = s.path(receiver) + } else { + path = s.path(sender) + } + outboxes := path.Outboxes + outboxPackets := outboxes.OutboxPackets + res, ok := outboxPackets[string(sender)] + if !ok { + return []simibc.Packet{} + } else { + return res + } +} + +func (s *Driver) getPacketsFromProviderToConsumer(consumer ChainId) []simibc.Packet { + return s.path(consumer).Outboxes.OutboxPackets[string(consumer)] +} + +func (s *Driver) getPacketsFromConsumerToProvider(consumer ChainId) []simibc.Packet { + return s.path(consumer).Outboxes.OutboxPackets[P] +} + func (s *Driver) getStateString() string { var state strings.Builder @@ -322,13 +350,13 @@ func (s *Driver) getChainStateString(chain ChainId) string { outboxInfo.WriteString("OutgoingPackets: \n") outgoing := s.path(chain).Outboxes.OutboxPackets[string(chain)] for _, packet := range outgoing { - outboxInfo.WriteString(fmt.Sprintf("%v\n", packet)) + outboxInfo.WriteString(fmt.Sprintf("%v\n", packet.Packet.String())) } outboxInfo.WriteString("IncomingPackets: \n") incoming := s.path(chain).Outboxes.OutboxPackets[P] for _, packet := range incoming { - outboxInfo.WriteString(fmt.Sprintf("%v\n", packet)) + outboxInfo.WriteString(fmt.Sprintf("%v\n", packet.Packet.String())) } outboxInfo.WriteString("OutboxAcks:\n") @@ -336,13 +364,13 @@ func (s *Driver) getChainStateString(chain ChainId) string { outboxInfo.WriteString("OutgoingAcks: \n") outgoingAcks := s.path(chain).Outboxes.OutboxAcks[string(chain)] for _, packet := range outgoingAcks { - outboxInfo.WriteString(fmt.Sprintf("%v\n", packet)) + outboxInfo.WriteString(fmt.Sprintf("%v\n", packet.Packet.String())) } outboxInfo.WriteString("IncomingAcks: \n") incomingAcks := s.path(chain).Outboxes.OutboxAcks[P] for _, packet := range incomingAcks { - outboxInfo.WriteString(fmt.Sprintf("%v\n", packet)) + outboxInfo.WriteString(fmt.Sprintf("%v\n", packet.Packet.String())) } chainInfo.WriteString(outboxInfo.String()) @@ -352,24 +380,15 @@ func (s *Driver) getChainStateString(chain ChainId) string { } // endAndBeginBlock ends the current block and begins a new one. -// Before Comitting, it runs the preCommitCallback, which allows -// checks to be run before the context of the old block is discarded. // After comitting, it processes any packets that have been sent by the chain, // as witnessed by events, and adds them to the correct paths. // It also updates the client header on the paths // that involve the chain. -func (s *Driver) endAndBeginBlock(chain ChainId, timeAdvancement time.Duration) { //}, preCommitCallback func()) { +func (s *Driver) endAndBeginBlock(chain ChainId, timeAdvancement time.Duration) { testChain, found := s.coordinator.Chains[string(chain)] require.True(s.t, found, "chain %s not found", chain) - header, packets := simibc.EndBlock(testChain) //, preCommitCallback) - - for _, path := range s.simibcs { - if path.InvolvesChain(string(chain)) { - path.AddClientHeader(string(chain), header) - path.Outboxes.Commit(string(chain)) - } - } + header, packets := simibc.EndBlock(testChain, func() {}) // for each packet, find the path it should be sent on for _, p := range packets { @@ -386,6 +405,13 @@ func (s *Driver) endAndBeginBlock(chain ChainId, timeAdvancement time.Duration) } } + for _, path := range s.simibcs { + if path.InvolvesChain(string(chain)) { + path.AddClientHeader(string(chain), header) + path.Outboxes.Commit(string(chain)) + } + } + simibc.BeginBlock(testChain, timeAdvancement) for _, path := range s.simibcs { diff --git a/tests/difference/core/quint_model/driver/mbt_test.go b/tests/difference/core/quint_model/driver/mbt_test.go index 473b7ca048..6f8b575300 100644 --- a/tests/difference/core/quint_model/driver/mbt_test.go +++ b/tests/difference/core/quint_model/driver/mbt_test.go @@ -1,55 +1,21 @@ package main import ( + "fmt" "log" + "reflect" "testing" "time" cmttypes "github.com/cometbft/cometbft/types" - "github.com/cosmos/interchain-security/v3/testutil/integration" + sdktypes "github.com/cosmos/cosmos-sdk/types" + providertypes "github.com/cosmos/interchain-security/v3/x/ccv/provider/types" + "github.com/informalsystems/itf-go/itf" "github.com/stretchr/testify/require" ) -// Given a map from node names to voting powers, create a validator set with the right voting powers. -// All nodes should be included in the voting power map, even if they have voting power 0. -// This way, the nodes will have validators (that can later be assigned voting powers) and signers created for them. -// -// Returns: -// - a validator set -// - a map from node names to validator objects and -// - a map from validator addresses to private validators (signers) -func CreateValSet(t *testing.T, initialValidatorSet map[string]int64) (*cmttypes.ValidatorSet, map[string]*cmttypes.Validator, map[string]cmttypes.PrivValidator) { - // create a valSet and signers, but the voting powers will not yet be right - valSet, _, signers := integration.CreateValidators(t, len(initialValidatorSet)) - - // create a map from validator names to validators - valMap := make(map[string]*cmttypes.Validator) - - // impose an order on the validators - valNames := make([]string, 0, len(initialValidatorSet)) - for valName := range initialValidatorSet { - valNames = append(valNames, valName) - } - - // assign the validators from the created valSet to valNames in the chosen order - for i, valName := range valNames { - _, val := valSet.GetByIndex(int32(i)) - valMap[valName] = val - } - - // create a valSet that has the right voting powers - vals := make([]*cmttypes.Validator, len(valNames)) - for index, valName := range valNames { - _, val := valSet.GetByIndex(int32(index)) - val.VotingPower = initialValidatorSet[valName] - vals[index] = val - } - - // override the valSet by creating a new one with the right voting powers - valSet = cmttypes.NewValidatorSet(vals) - return valSet, valMap, signers -} +const verbose = false func TestItfTrace(t *testing.T) { path := "trace.json" @@ -69,14 +35,12 @@ func TestItfTrace(t *testing.T) { varNames[varName] = true } - // sanity check: there are as many var names as we expect - require.Equal(t, len(expectedVarNames), len(varNames), "Expected %v var names, got %v", expectedVarNames, varNames) - // sanity check: each expected var name should be in the set for _, expectedVarName := range expectedVarNames { _, ok := varNames[expectedVarName] require.True(t, ok, "Expected var name %v not found in actual var names %v", expectedVarName, varNames) } + // extra var names are ok, so no need to change the length t.Log("Reading params...") params := trace.States[0].VarValues["params"].Value.(itf.MapExprType) @@ -135,6 +99,14 @@ func TestItfTrace(t *testing.T) { driver := newDriver(t, nodes, valNames) driver.setupChains(modelParams, valSet, signers, nodes, valNames, consumers) + // remember the time offsets to be able to compare times to the model + // this is necessary because the system needs to do many steps to initialize the chains, + // which is abstracted away in the model + timeOffsets := make(map[ChainId]time.Time, len(chains)) + for _, chain := range chains { + timeOffsets[ChainId(chain)] = driver.time(ChainId(chain)) + } + t.Log("Started chains") t.Log("Reading the trace...") @@ -151,6 +123,7 @@ func TestItfTrace(t *testing.T) { switch actionKind { case "init": t.Log("Initializing...") + continue case "VotingPowerChange": node := lastAction["validator"].Value.(string) changeAmount := lastAction["changeAmount"].Value.(int64) @@ -171,39 +144,23 @@ func TestItfTrace(t *testing.T) { consumersToStop := lastAction["consumersToStop"].Value.(itf.ListExprType) t.Log("EndAndBeginBlockForProvider", timeAdvancement, consumersToStart, consumersToStop) - // TODO continue here - totalDuration := time.Duration(timeAdvancement) * time.Second - halfDuration := totalDuration / 2 - halfDuration = halfDuration.Round(time.Second) - remainingDuration := totalDuration - halfDuration - remainingDuration = remainingDuration.Round(time.Second) - - require.True(t, halfDuration+remainingDuration == totalDuration) + // we need 2 blocks, because for a packet sent at height H, the receiving chain + // needs a header of height H+1 to accept the packet + // so we do one time advancement with a very small increment, + // and then increment the rest of the time] // TODO: start and stop consumers - driver.endAndBeginBlock("provider", time.Duration(1)*time.Second) //, func() {}) - driver.endAndBeginBlock("provider", time.Duration(1)*time.Second) //, func() {}) - driver.endAndBeginBlock("provider", time.Duration(1)*time.Second) //, func() {}) + driver.endAndBeginBlock("provider", 1) + driver.endAndBeginBlock("provider", time.Duration(timeAdvancement)*time.Second-1) case "EndAndBeginBlockForConsumer": consumerChain := lastAction["consumerChain"].Value.(string) timeAdvancement := lastAction["timeAdvancement"].Value.(int64) t.Log("EndAndBeginBlockForConsumer", consumerChain, timeAdvancement) - // TODO continue here - totalDuration := time.Duration(timeAdvancement) * time.Second - halfDuration := totalDuration / 2 - halfDuration = halfDuration.Round(time.Second) - remainingDuration := totalDuration - halfDuration - remainingDuration = remainingDuration.Round(time.Second) - // this is trying to split into two parts, but fails because all need to be non-0 - // updating client multiple times with headers that do not progress in time is not allowed - - require.True(t, halfDuration+remainingDuration == totalDuration) - - // time duration needs 3 parts because the packet needs 3 commits to be delivered - driver.endAndBeginBlock(ChainId(consumerChain), time.Duration(1)*time.Second) //, func() {}) - driver.endAndBeginBlock(ChainId(consumerChain), time.Duration(1)*time.Second) //, func() {}) - driver.endAndBeginBlock(ChainId(consumerChain), time.Duration(1)*time.Second) //, func() {}) + // as in EndAndBeginBlockForProvider, we need to produce 2 blocks, + // while still honoring the time advancement + driver.endAndBeginBlock(ChainId(consumerChain), 1) + driver.endAndBeginBlock(ChainId(consumerChain), time.Duration(timeAdvancement)*time.Second-1) case "DeliverVscPacket": consumerChain := lastAction["consumerChain"].Value.(string) t.Log("DeliverVscPacket", consumerChain) @@ -220,7 +177,148 @@ func TestItfTrace(t *testing.T) { path, index, actionKind) } - t.Logf("Current actual state: %s", driver.getStateString()) + if verbose { + t.Logf("Current actual state: %s", driver.getStateString()) + } + + currentModelState := state.VarValues["currentState"].Value.(itf.MapExprType) + // check that the actual state is the same as the model state + + // check validator sets - provider current validator set should be the one from the staking keeper + + // provider + // consumers - current validator set does not correspond to anything, + // we can only check the head of the voting power history + // no assignment found, so providerConsAddr is the consumerConsAddr + t.Log("Comparing validator sets") + CompareValidatorSets(t, driver, currentModelState, consumers, index) + t.Log("Validator sets match") + + // check times - sanity check that the block times match the ones from the model + t.Log("Comparing timestamps") + CompareTimes(t, driver, consumers, currentModelState, timeOffsets) + t.Log("Timestamps match") + + // check sent packets: we check that the package queues in the model and the system have the same length. + t.Log("Comparing packet queues") + for _, consumer := range consumers { + ComparePacketQueues(t, driver, currentModelState, consumer) + } + t.Log("Packet queues match") } t.FailNow() } + +func CompareValidatorSets(t *testing.T, driver *Driver, currentModelState map[string]itf.Expr, consumers []string, index int) { + modelValSet := ValidatorSet(currentModelState, "provider") + curValSet := driver.providerValidatorSet("provider") + + actualValSet := make(map[string]int64, len(curValSet)) + + for _, val := range curValSet { + valName := val.Description.Moniker + actualValSet[valName] = int64(val.Tokens.Int64()) + } + + require.NoError(t, CompareValSet(modelValSet, actualValSet), "Validator sets do not match") + + for _, consumer := range consumers { + modelValSet = HistoricalValidatorSet(currentModelState, consumer, 0) + + consumerVals := driver.consumerValidatorSet(ChainId(consumer)) + consumerCurValSet := make(map[string]int64, len(consumerVals)) + for _, val := range consumerVals { + pubkey, err := val.ConsPubKey() + require.NoError(t, err, "Error getting pubkey") + + consAddr := providertypes.NewConsumerConsAddress(sdktypes.ConsAddress(pubkey.Address().Bytes())) + + providerConsAddr, found := driver.providerKeeper().GetValidatorByConsumerAddr(driver.providerCtx(), consumer, consAddr) + if !found { + providerConsAddr = providertypes.NewProviderConsAddress(consAddr.Address) + } + + providerVal, found := driver.providerStakingKeeper().GetValidatorByConsAddr(driver.providerCtx(), providerConsAddr.Address) + require.True(t, found, "Error getting provider validator") + + consumerCurValSet[providerVal.GetMoniker()] = int64(val.Power) + } + for val, power := range modelValSet { + _ = val + intPow := power.Value.(int64) + _ = intPow + } + require.NoError(t, CompareValSet(modelValSet, consumerCurValSet), "Validator sets do not match for consumer %v", consumer) + } +} + +// ComparePacketQueues compares the packet queues in the model to the packet queues in the system. +// It compares both incoming (provider->consumer) and outgoing (consumer->provider) packets. +// It only takes the number of packets into account, not the contents. +func ComparePacketQueues( + t *testing.T, + driver *Driver, + currentModelState map[string]itf.Expr, + consumer string, +) { + ComparePacketQueue(t, driver, currentModelState, Provider, consumer) + ComparePacketQueue(t, driver, currentModelState, consumer, Provider) +} + +func ComparePacketQueue(t *testing.T, driver *Driver, currentModelState map[string]itf.Expr, sender string, receiver string) { + modelSenderQueue := PacketQueue(currentModelState, sender, receiver) + actualSenderQueue := driver.packetQueue(ChainId(sender), ChainId(receiver)) + + require.Equal(t, + len(modelSenderQueue), + len(actualSenderQueue), + "Packet queues do not match for sender %v, receiver %v", + sender, + receiver) +} + +// CompareTimes compares the block times in the model to the block times in the system. +// It takes into account the timeOffsets, which should be the starting times +// of the chains in the system after the system has been initialized. +func CompareTimes( + t *testing.T, + driver *Driver, + consumers []string, + currentModelState map[string]itf.Expr, + timeOffsets map[ChainId]time.Time, +) { + providerLastTimestamp := Time(currentModelState, "provider") + actualProviderTime := driver.time("provider") + providerOffset := timeOffsets["provider"] + + require.Equal(t, + providerLastTimestamp, + actualProviderTime.Unix()-providerOffset.Unix(), + "Block times do not match") + + for _, chain := range consumers { + modelLastTimestamp := Time(currentModelState, chain) + actualChainTime := driver.time(ChainId(chain)) + + require.Equal(t, + modelLastTimestamp, + actualChainTime.Unix()-timeOffsets[ChainId(chain)].Unix(), + "Block times do not match") + } +} + +// CompareValSet compares the validator set in the model to the validator set in the system. +// The model validator set is given as a map from validator name to power, +// whereas the system validator set is given as a slice of validators. +// The names in the model validator set are expected to correspond to the monikers in the system validator set. +func CompareValSet(modelValSet map[string]itf.Expr, systemValSet map[string]int64) error { + expectedValSet := make(map[string]int64, len(modelValSet)) + for val, power := range modelValSet { + expectedValSet[val] = power.Value.(int64) + } + + if !reflect.DeepEqual(expectedValSet, systemValSet) { + return fmt.Errorf("Model validator set %v, system validator set %v", expectedValSet, systemValSet) + } + return nil +} diff --git a/tests/difference/core/quint_model/driver/model_viewer.go b/tests/difference/core/quint_model/driver/model_viewer.go new file mode 100644 index 0000000000..b293effbb9 --- /dev/null +++ b/tests/difference/core/quint_model/driver/model_viewer.go @@ -0,0 +1,57 @@ +package main + +import "github.com/informalsystems/itf-go/itf" + +// This file contains logic to process +// and access parts of the current state of the Quint trace. + +const Provider = "provider" + +func ProviderState(curStateExpr itf.MapExprType) itf.MapExprType { + return curStateExpr["providerState"].Value.(itf.MapExprType) +} + +func ConsumerState(curStateExpr itf.MapExprType, consumer string) itf.MapExprType { + return curStateExpr["consumerStates"].Value.(itf.MapExprType)[consumer].Value.(itf.MapExprType) +} + +func State(curStateExpr itf.MapExprType, chain string) itf.MapExprType { + if chain == Provider { + return ProviderState(curStateExpr) + } else { + return ConsumerState(curStateExpr, chain) + } +} + +func ChainState(curStateExpr itf.MapExprType, chain string) itf.MapExprType { + return State(curStateExpr, chain)["chainState"].Value.(itf.MapExprType) +} + +func ValidatorSet(curStateExpr itf.MapExprType, chain string) itf.MapExprType { + return ChainState(curStateExpr, chain)["currentValidatorSet"].Value.(itf.MapExprType) +} + +func HistoricalValidatorSet(curStateExpr itf.MapExprType, chain string, index int) itf.MapExprType { + history := ChainState(curStateExpr, chain)["votingPowerHistory"].Value.(itf.ListExprType) + return history[index].Value.(itf.MapExprType) +} + +func Time(curStateExpr itf.MapExprType, chain string) int64 { + return ChainState(curStateExpr, chain)["lastTimestamp"].Value.(int64) +} + +// PacketQueue returns the queued packets between sender and receiver. +// Either sender or receiver need to be the provider. +func PacketQueue(curStateExpr itf.MapExprType, sender string, receiver string) itf.ListExprType { + if sender == Provider { + packetQueue := ProviderState(curStateExpr)["outstandingPacketsToConsumer"].Value.(itf.MapExprType)[receiver] + if packetQueue.Value == nil { + return itf.ListExprType{} + } else { + return packetQueue.Value.([]itf.Expr) + } + } else { + consumerState := State(curStateExpr, sender) + return consumerState["outstandingPacketsToProvider"].Value.([]itf.Expr) + } +} diff --git a/tests/difference/core/quint_model/driver/setup.go b/tests/difference/core/quint_model/driver/setup.go index 8a87e0d577..381f5560e2 100644 --- a/tests/difference/core/quint_model/driver/setup.go +++ b/tests/difference/core/quint_model/driver/setup.go @@ -18,6 +18,7 @@ import ( commitmenttypes "github.com/cosmos/ibc-go/v7/modules/core/23-commitment/types" ibctmtypes "github.com/cosmos/ibc-go/v7/modules/light-clients/07-tendermint" icstestingutils "github.com/cosmos/interchain-security/v3/testutil/ibc_testing" + "github.com/cosmos/interchain-security/v3/testutil/integration" simibc "github.com/cosmos/interchain-security/v3/testutil/simibc" "github.com/stretchr/testify/require" @@ -46,6 +47,46 @@ var ( ConsensusParams = cmttypes.DefaultConsensusParams() ) +// Given a map from node names to voting powers, create a validator set with the right voting powers. +// All nodes should be included in the voting power map, even if they have voting power 0. +// This way, the nodes will have validators (that can later be assigned voting powers) and signers created for them. +// +// Returns: +// - a validator set +// - a map from node names to validator objects and +// - a map from validator addresses to private validators (signers) +func CreateValSet(t *testing.T, initialValidatorSet map[string]int64) (*cmttypes.ValidatorSet, map[string]*cmttypes.Validator, map[string]cmttypes.PrivValidator) { + // create a valSet and signers, but the voting powers will not yet be right + valSet, _, signers := integration.CreateValidators(t, len(initialValidatorSet)) + + // create a map from validator names to validators + valMap := make(map[string]*cmttypes.Validator) + + // impose an order on the validators + valNames := make([]string, 0, len(initialValidatorSet)) + for valName := range initialValidatorSet { + valNames = append(valNames, valName) + } + + // assign the validators from the created valSet to valNames in the chosen order + for i, valName := range valNames { + _, val := valSet.GetByIndex(int32(i)) + valMap[valName] = val + } + + // create a valSet that has the right voting powers + vals := make([]*cmttypes.Validator, len(valNames)) + for index, valName := range valNames { + _, val := valSet.GetByIndex(int32(index)) + val.VotingPower = initialValidatorSet[valName] + vals[index] = val + } + + // override the valSet by creating a new one with the right voting powers + valSet = cmttypes.NewValidatorSet(vals) + return valSet, valMap, signers +} + func getAppBytesAndSenders( chainID string, modelParams ModelParams, @@ -287,16 +328,26 @@ func (s *Driver) ConfigureNewPath(consumerChain *ibctesting.TestChain, providerC tmCfg := providerEndPoint.ClientConfig.(*ibctesting.TendermintConfig) tmCfg.UnbondingPeriod = params.UnbondingPeriodPerChain[ChainId(providerChain.ChainID)] tmCfg.TrustingPeriod = params.TrustingPeriodPerChain[ChainId(providerChain.ChainID)] + tmCfg.MaxClockDrift = params.TrustingPeriodPerChain[ChainId(providerChain.ChainID)] // make the clock drift a non-issue err := providerEndPoint.CreateClient() require.NoError(s.t, err, "Error creating client on provider for chain %v", consumerChain.ChainID) // Create the Consumer chain ID mapping in the provider state s.providerKeeper().SetConsumerClientId(providerChain.GetContext(), consumerChain.ChainID, providerEndPoint.ClientID) + // create consumer key assignment + // for _, val := range s.providerValidatorSet(ChainId(providerChain.ChainID)) { + // pubKey, err := val.TmConsPublicKey() + // require.NoError(s.t, err, "Error getting consensus pubkey for validator %v", val) + + // err = s.providerKeeper().AssignConsumerKey(providerChain.GetContext(), consumerChain.ChainID, val, pubKey) + // } + // Configure and create the client on the consumer tmCfg = consumerEndPoint.ClientConfig.(*ibctesting.TendermintConfig) tmCfg.UnbondingPeriod = params.UnbondingPeriodPerChain[consumerChainId] tmCfg.TrustingPeriod = params.TrustingPeriodPerChain[consumerChainId] + tmCfg.MaxClockDrift = params.TrustingPeriodPerChain[ChainId(providerChain.ChainID)] // make the clock drift a non-issue consumerClientState := ibctmtypes.NewClientState( providerChain.ChainID, tmCfg.TrustLevel, tmCfg.TrustingPeriod, tmCfg.UnbondingPeriod, tmCfg.MaxClockDrift, @@ -326,8 +377,8 @@ func (s *Driver) ConfigureNewPath(consumerChain *ibctesting.TestChain, providerC // Commit a block on both chains, giving us two committed headers from // the same time and height. This is the starting point for all our // data driven testing. - lastConsumerHeader, _ := simibc.EndBlock(consumerChain) //, func() {}) - lastProviderHeader, _ = simibc.EndBlock(providerChain) //, func() {}) + lastConsumerHeader, _ := simibc.EndBlock(consumerChain, func() {}) + lastProviderHeader, _ = simibc.EndBlock(providerChain, func() {}) // Get ready to update clients. simibc.BeginBlock(providerChain, 5) @@ -357,7 +408,7 @@ func (s *Driver) setupChains( providerChain := newChain(s.t, params, s.coordinator, icstestingutils.ProviderAppIniter, "provider", valSet, signers, nodes, valNames) s.coordinator.Chains["provider"] = providerChain - providerHeader, _ := simibc.EndBlock(providerChain) //, func() {}) + providerHeader, _ := simibc.EndBlock(providerChain, func() {}) simibc.BeginBlock(providerChain, 0) // start consumer chains diff --git a/tests/difference/core/quint_model/driver/trace.json b/tests/difference/core/quint_model/driver/trace.json index d0f4fac106..9f3c7c35c1 100644 --- a/tests/difference/core/quint_model/driver/trace.json +++ b/tests/difference/core/quint_model/driver/trace.json @@ -1,6423 +1 @@ -{ - "#meta": { - "format": "ITF", - "format-description": "https://apalache.informal.systems/docs/adr/015adr-trace.html", - "source": "ccv_model.qnt", - "status": "violation", - "description": "Created by Quint on Fri Nov 10 2023 10:07:52 GMT+0100 (Central European Standard Time)", - "timestamp": 1699607272414 - }, - "vars": [ - "currentState", - "trace", - "params" - ], - "states": [ - { - "#meta": { - "index": 0 - }, - "currentState": { - "consumerStates": { - "#map": [ - [ - "consumer1", - { - "chainState": { - "currentValidatorSet": { - "#map": [] - }, - "lastTimestamp": { - "#bigint": "0" - }, - "votingPowerHistory": [] - }, - "maturationTimes": [], - "outstandingPacketsToProvider": [], - "receivedVscPackets": [] - } - ], - [ - "consumer2", - { - "chainState": { - "currentValidatorSet": { - "#map": [] - }, - "lastTimestamp": { - "#bigint": "0" - }, - "votingPowerHistory": [] - }, - "maturationTimes": [], - "outstandingPacketsToProvider": [], - "receivedVscPackets": [] - } - ], - [ - "consumer3", - { - "chainState": { - "currentValidatorSet": { - "#map": [] - }, - "lastTimestamp": { - "#bigint": "0" - }, - "votingPowerHistory": [] - }, - "maturationTimes": [], - "outstandingPacketsToProvider": [], - "receivedVscPackets": [] - } - ] - ] - }, - "providerState": { - "chainState": { - "currentValidatorSet": { - "#map": [ - [ - "node1", - { - "#bigint": "100" - } - ], - [ - "node10", - { - "#bigint": "100" - } - ], - [ - "node2", - { - "#bigint": "100" - } - ], - [ - "node3", - { - "#bigint": "100" - } - ], - [ - "node4", - { - "#bigint": "100" - } - ], - [ - "node5", - { - "#bigint": "100" - } - ], - [ - "node6", - { - "#bigint": "100" - } - ], - [ - "node7", - { - "#bigint": "100" - } - ], - [ - "node8", - { - "#bigint": "100" - } - ], - [ - "node9", - { - "#bigint": "100" - } - ] - ] - }, - "lastTimestamp": { - "#bigint": "0" - }, - "votingPowerHistory": [ - { - "#map": [ - [ - "node1", - { - "#bigint": "100" - } - ], - [ - "node10", - { - "#bigint": "100" - } - ], - [ - "node2", - { - "#bigint": "100" - } - ], - [ - "node3", - { - "#bigint": "100" - } - ], - [ - "node4", - { - "#bigint": "100" - } - ], - [ - "node5", - { - "#bigint": "100" - } - ], - [ - "node6", - { - "#bigint": "100" - } - ], - [ - "node7", - { - "#bigint": "100" - } - ], - [ - "node8", - { - "#bigint": "100" - } - ], - [ - "node9", - { - "#bigint": "100" - } - ] - ] - } - ] - }, - "consumerStatus": { - "#map": [ - [ - "consumer1", - "not consumer" - ], - [ - "consumer2", - "not consumer" - ], - [ - "consumer3", - "not consumer" - ] - ] - }, - "outstandingPacketsToConsumer": { - "#map": [ - [ - "consumer1", - [] - ], - [ - "consumer2", - [] - ], - [ - "consumer3", - [] - ] - ] - }, - "providerValidatorSetChangedInThisBlock": false, - "receivedMaturations": { - "#set": [] - }, - "runningVscId": { - "#bigint": "0" - }, - "sentVscPacketsToConsumer": { - "#map": [ - [ - "consumer1", - [] - ], - [ - "consumer2", - [] - ], - [ - "consumer3", - [] - ] - ] - } - } - }, - "params": { - "CcvTimeout": { - "#map": [ - [ - "consumer1", - { - "#bigint": "1814400" - } - ], - [ - "consumer2", - { - "#bigint": "1814400" - } - ], - [ - "consumer3", - { - "#bigint": "1814400" - } - ], - [ - "provider", - { - "#bigint": "1814400" - } - ] - ] - }, - "ConsumerChains": { - "#set": [ - "consumer1", - "consumer2", - "consumer3" - ] - }, - "InitialValidatorSet": { - "#map": [ - [ - "node1", - { - "#bigint": "100" - } - ], - [ - "node10", - { - "#bigint": "100" - } - ], - [ - "node2", - { - "#bigint": "100" - } - ], - [ - "node3", - { - "#bigint": "100" - } - ], - [ - "node4", - { - "#bigint": "100" - } - ], - [ - "node5", - { - "#bigint": "100" - } - ], - [ - "node6", - { - "#bigint": "100" - } - ], - [ - "node7", - { - "#bigint": "100" - } - ], - [ - "node8", - { - "#bigint": "100" - } - ], - [ - "node9", - { - "#bigint": "100" - } - ] - ] - }, - "Nodes": { - "#set": [ - "node1", - "node10", - "node2", - "node3", - "node4", - "node5", - "node6", - "node7", - "node8", - "node9" - ] - }, - "TrustingPeriodPerChain": { - "#map": [ - [ - "consumer1", - { - "#bigint": "604800" - } - ], - [ - "consumer2", - { - "#bigint": "604800" - } - ], - [ - "consumer3", - { - "#bigint": "604800" - } - ], - [ - "provider", - { - "#bigint": "604800" - } - ] - ] - }, - "UnbondingPeriodPerChain": { - "#map": [ - [ - "consumer1", - { - "#bigint": "1209600" - } - ], - [ - "consumer2", - { - "#bigint": "1209600" - } - ], - [ - "consumer3", - { - "#bigint": "1209600" - } - ], - [ - "provider", - { - "#bigint": "1209600" - } - ] - ] - }, - "VscTimeout": { - "#bigint": "3024000" - } - }, - "trace": [ - { - "changeAmount": { - "#bigint": "0" - }, - "consumerChain": "", - "consumersToStart": { - "#set": [] - }, - "consumersToStop": { - "#set": [] - }, - "kind": "init", - "timeAdvancement": { - "#bigint": "0" - }, - "validator": "" - } - ] - }, - { - "#meta": { - "index": 1 - }, - "currentState": { - "consumerStates": { - "#map": [ - [ - "consumer1", - { - "chainState": { - "currentValidatorSet": { - "#map": [] - }, - "lastTimestamp": { - "#bigint": "0" - }, - "votingPowerHistory": [] - }, - "maturationTimes": [], - "outstandingPacketsToProvider": [], - "receivedVscPackets": [] - } - ], - [ - "consumer2", - { - "chainState": { - "currentValidatorSet": { - "#map": [] - }, - "lastTimestamp": { - "#bigint": "0" - }, - "votingPowerHistory": [] - }, - "maturationTimes": [], - "outstandingPacketsToProvider": [], - "receivedVscPackets": [] - } - ], - [ - "consumer3", - { - "chainState": { - "currentValidatorSet": { - "#map": [] - }, - "lastTimestamp": { - "#bigint": "0" - }, - "votingPowerHistory": [] - }, - "maturationTimes": [], - "outstandingPacketsToProvider": [], - "receivedVscPackets": [] - } - ] - ] - }, - "providerState": { - "chainState": { - "currentValidatorSet": { - "#map": [ - [ - "node1", - { - "#bigint": "100" - } - ], - [ - "node10", - { - "#bigint": "100" - } - ], - [ - "node2", - { - "#bigint": "100" - } - ], - [ - "node3", - { - "#bigint": "100" - } - ], - [ - "node4", - { - "#bigint": "100" - } - ], - [ - "node5", - { - "#bigint": "100" - } - ], - [ - "node6", - { - "#bigint": "100" - } - ], - [ - "node7", - { - "#bigint": "100" - } - ], - [ - "node8", - { - "#bigint": "50" - } - ], - [ - "node9", - { - "#bigint": "100" - } - ] - ] - }, - "lastTimestamp": { - "#bigint": "0" - }, - "votingPowerHistory": [ - { - "#map": [ - [ - "node1", - { - "#bigint": "100" - } - ], - [ - "node10", - { - "#bigint": "100" - } - ], - [ - "node2", - { - "#bigint": "100" - } - ], - [ - "node3", - { - "#bigint": "100" - } - ], - [ - "node4", - { - "#bigint": "100" - } - ], - [ - "node5", - { - "#bigint": "100" - } - ], - [ - "node6", - { - "#bigint": "100" - } - ], - [ - "node7", - { - "#bigint": "100" - } - ], - [ - "node8", - { - "#bigint": "100" - } - ], - [ - "node9", - { - "#bigint": "100" - } - ] - ] - } - ] - }, - "consumerStatus": { - "#map": [ - [ - "consumer1", - "not consumer" - ], - [ - "consumer2", - "not consumer" - ], - [ - "consumer3", - "not consumer" - ] - ] - }, - "outstandingPacketsToConsumer": { - "#map": [ - [ - "consumer1", - [] - ], - [ - "consumer2", - [] - ], - [ - "consumer3", - [] - ] - ] - }, - "providerValidatorSetChangedInThisBlock": true, - "receivedMaturations": { - "#set": [] - }, - "runningVscId": { - "#bigint": "0" - }, - "sentVscPacketsToConsumer": { - "#map": [ - [ - "consumer1", - [] - ], - [ - "consumer2", - [] - ], - [ - "consumer3", - [] - ] - ] - } - } - }, - "params": { - "CcvTimeout": { - "#map": [ - [ - "consumer1", - { - "#bigint": "1814400" - } - ], - [ - "consumer2", - { - "#bigint": "1814400" - } - ], - [ - "consumer3", - { - "#bigint": "1814400" - } - ], - [ - "provider", - { - "#bigint": "1814400" - } - ] - ] - }, - "ConsumerChains": { - "#set": [ - "consumer1", - "consumer2", - "consumer3" - ] - }, - "InitialValidatorSet": { - "#map": [ - [ - "node1", - { - "#bigint": "100" - } - ], - [ - "node10", - { - "#bigint": "100" - } - ], - [ - "node2", - { - "#bigint": "100" - } - ], - [ - "node3", - { - "#bigint": "100" - } - ], - [ - "node4", - { - "#bigint": "100" - } - ], - [ - "node5", - { - "#bigint": "100" - } - ], - [ - "node6", - { - "#bigint": "100" - } - ], - [ - "node7", - { - "#bigint": "100" - } - ], - [ - "node8", - { - "#bigint": "100" - } - ], - [ - "node9", - { - "#bigint": "100" - } - ] - ] - }, - "Nodes": { - "#set": [ - "node1", - "node10", - "node2", - "node3", - "node4", - "node5", - "node6", - "node7", - "node8", - "node9" - ] - }, - "TrustingPeriodPerChain": { - "#map": [ - [ - "consumer1", - { - "#bigint": "604800" - } - ], - [ - "consumer2", - { - "#bigint": "604800" - } - ], - [ - "consumer3", - { - "#bigint": "604800" - } - ], - [ - "provider", - { - "#bigint": "604800" - } - ] - ] - }, - "UnbondingPeriodPerChain": { - "#map": [ - [ - "consumer1", - { - "#bigint": "1209600" - } - ], - [ - "consumer2", - { - "#bigint": "1209600" - } - ], - [ - "consumer3", - { - "#bigint": "1209600" - } - ], - [ - "provider", - { - "#bigint": "1209600" - } - ] - ] - }, - "VscTimeout": { - "#bigint": "3024000" - } - }, - "trace": [ - { - "changeAmount": { - "#bigint": "0" - }, - "consumerChain": "", - "consumersToStart": { - "#set": [] - }, - "consumersToStop": { - "#set": [] - }, - "kind": "init", - "timeAdvancement": { - "#bigint": "0" - }, - "validator": "" - }, - { - "changeAmount": { - "#bigint": "-50" - }, - "consumerChain": "", - "consumersToStart": { - "#set": [] - }, - "consumersToStop": { - "#set": [] - }, - "kind": "VotingPowerChange", - "timeAdvancement": { - "#bigint": "0" - }, - "validator": "node8" - } - ] - }, - { - "#meta": { - "index": 2 - }, - "currentState": { - "consumerStates": { - "#map": [ - [ - "consumer1", - { - "chainState": { - "currentValidatorSet": { - "#map": [] - }, - "lastTimestamp": { - "#bigint": "0" - }, - "votingPowerHistory": [] - }, - "maturationTimes": [], - "outstandingPacketsToProvider": [], - "receivedVscPackets": [] - } - ], - [ - "consumer2", - { - "chainState": { - "currentValidatorSet": { - "#map": [] - }, - "lastTimestamp": { - "#bigint": "0" - }, - "votingPowerHistory": [] - }, - "maturationTimes": [], - "outstandingPacketsToProvider": [], - "receivedVscPackets": [] - } - ], - [ - "consumer3", - { - "chainState": { - "currentValidatorSet": { - "#map": [ - [ - "node1", - { - "#bigint": "100" - } - ], - [ - "node10", - { - "#bigint": "100" - } - ], - [ - "node2", - { - "#bigint": "100" - } - ], - [ - "node3", - { - "#bigint": "100" - } - ], - [ - "node4", - { - "#bigint": "100" - } - ], - [ - "node5", - { - "#bigint": "100" - } - ], - [ - "node6", - { - "#bigint": "100" - } - ], - [ - "node7", - { - "#bigint": "100" - } - ], - [ - "node8", - { - "#bigint": "50" - } - ], - [ - "node9", - { - "#bigint": "100" - } - ] - ] - }, - "lastTimestamp": { - "#bigint": "0" - }, - "votingPowerHistory": [] - }, - "maturationTimes": [], - "outstandingPacketsToProvider": [], - "receivedVscPackets": [] - } - ] - ] - }, - "providerState": { - "chainState": { - "currentValidatorSet": { - "#map": [ - [ - "node1", - { - "#bigint": "100" - } - ], - [ - "node10", - { - "#bigint": "100" - } - ], - [ - "node2", - { - "#bigint": "100" - } - ], - [ - "node3", - { - "#bigint": "100" - } - ], - [ - "node4", - { - "#bigint": "100" - } - ], - [ - "node5", - { - "#bigint": "100" - } - ], - [ - "node6", - { - "#bigint": "100" - } - ], - [ - "node7", - { - "#bigint": "100" - } - ], - [ - "node8", - { - "#bigint": "50" - } - ], - [ - "node9", - { - "#bigint": "100" - } - ] - ] - }, - "lastTimestamp": { - "#bigint": "1" - }, - "votingPowerHistory": [ - { - "#map": [ - [ - "node1", - { - "#bigint": "100" - } - ], - [ - "node10", - { - "#bigint": "100" - } - ], - [ - "node2", - { - "#bigint": "100" - } - ], - [ - "node3", - { - "#bigint": "100" - } - ], - [ - "node4", - { - "#bigint": "100" - } - ], - [ - "node5", - { - "#bigint": "100" - } - ], - [ - "node6", - { - "#bigint": "100" - } - ], - [ - "node7", - { - "#bigint": "100" - } - ], - [ - "node8", - { - "#bigint": "50" - } - ], - [ - "node9", - { - "#bigint": "100" - } - ] - ] - }, - { - "#map": [ - [ - "node1", - { - "#bigint": "100" - } - ], - [ - "node10", - { - "#bigint": "100" - } - ], - [ - "node2", - { - "#bigint": "100" - } - ], - [ - "node3", - { - "#bigint": "100" - } - ], - [ - "node4", - { - "#bigint": "100" - } - ], - [ - "node5", - { - "#bigint": "100" - } - ], - [ - "node6", - { - "#bigint": "100" - } - ], - [ - "node7", - { - "#bigint": "100" - } - ], - [ - "node8", - { - "#bigint": "100" - } - ], - [ - "node9", - { - "#bigint": "100" - } - ] - ] - } - ] - }, - "consumerStatus": { - "#map": [ - [ - "consumer1", - "not consumer" - ], - [ - "consumer2", - "not consumer" - ], - [ - "consumer3", - "running" - ] - ] - }, - "outstandingPacketsToConsumer": { - "#map": [ - [ - "consumer1", - [] - ], - [ - "consumer2", - [] - ], - [ - "consumer3", - [ - { - "id": { - "#bigint": "0" - }, - "sendingTime": { - "#bigint": "1" - }, - "validatorSet": { - "#map": [ - [ - "node1", - { - "#bigint": "100" - } - ], - [ - "node10", - { - "#bigint": "100" - } - ], - [ - "node2", - { - "#bigint": "100" - } - ], - [ - "node3", - { - "#bigint": "100" - } - ], - [ - "node4", - { - "#bigint": "100" - } - ], - [ - "node5", - { - "#bigint": "100" - } - ], - [ - "node6", - { - "#bigint": "100" - } - ], - [ - "node7", - { - "#bigint": "100" - } - ], - [ - "node8", - { - "#bigint": "50" - } - ], - [ - "node9", - { - "#bigint": "100" - } - ] - ] - } - } - ] - ] - ] - }, - "providerValidatorSetChangedInThisBlock": false, - "receivedMaturations": { - "#set": [] - }, - "runningVscId": { - "#bigint": "1" - }, - "sentVscPacketsToConsumer": { - "#map": [ - [ - "consumer1", - [] - ], - [ - "consumer2", - [] - ], - [ - "consumer3", - [ - { - "id": { - "#bigint": "0" - }, - "sendingTime": { - "#bigint": "1" - }, - "validatorSet": { - "#map": [ - [ - "node1", - { - "#bigint": "100" - } - ], - [ - "node10", - { - "#bigint": "100" - } - ], - [ - "node2", - { - "#bigint": "100" - } - ], - [ - "node3", - { - "#bigint": "100" - } - ], - [ - "node4", - { - "#bigint": "100" - } - ], - [ - "node5", - { - "#bigint": "100" - } - ], - [ - "node6", - { - "#bigint": "100" - } - ], - [ - "node7", - { - "#bigint": "100" - } - ], - [ - "node8", - { - "#bigint": "50" - } - ], - [ - "node9", - { - "#bigint": "100" - } - ] - ] - } - } - ] - ] - ] - } - } - }, - "params": { - "CcvTimeout": { - "#map": [ - [ - "consumer1", - { - "#bigint": "1814400" - } - ], - [ - "consumer2", - { - "#bigint": "1814400" - } - ], - [ - "consumer3", - { - "#bigint": "1814400" - } - ], - [ - "provider", - { - "#bigint": "1814400" - } - ] - ] - }, - "ConsumerChains": { - "#set": [ - "consumer1", - "consumer2", - "consumer3" - ] - }, - "InitialValidatorSet": { - "#map": [ - [ - "node1", - { - "#bigint": "100" - } - ], - [ - "node10", - { - "#bigint": "100" - } - ], - [ - "node2", - { - "#bigint": "100" - } - ], - [ - "node3", - { - "#bigint": "100" - } - ], - [ - "node4", - { - "#bigint": "100" - } - ], - [ - "node5", - { - "#bigint": "100" - } - ], - [ - "node6", - { - "#bigint": "100" - } - ], - [ - "node7", - { - "#bigint": "100" - } - ], - [ - "node8", - { - "#bigint": "100" - } - ], - [ - "node9", - { - "#bigint": "100" - } - ] - ] - }, - "Nodes": { - "#set": [ - "node1", - "node10", - "node2", - "node3", - "node4", - "node5", - "node6", - "node7", - "node8", - "node9" - ] - }, - "TrustingPeriodPerChain": { - "#map": [ - [ - "consumer1", - { - "#bigint": "604800" - } - ], - [ - "consumer2", - { - "#bigint": "604800" - } - ], - [ - "consumer3", - { - "#bigint": "604800" - } - ], - [ - "provider", - { - "#bigint": "604800" - } - ] - ] - }, - "UnbondingPeriodPerChain": { - "#map": [ - [ - "consumer1", - { - "#bigint": "1209600" - } - ], - [ - "consumer2", - { - "#bigint": "1209600" - } - ], - [ - "consumer3", - { - "#bigint": "1209600" - } - ], - [ - "provider", - { - "#bigint": "1209600" - } - ] - ] - }, - "VscTimeout": { - "#bigint": "3024000" - } - }, - "trace": [ - { - "changeAmount": { - "#bigint": "0" - }, - "consumerChain": "", - "consumersToStart": { - "#set": [] - }, - "consumersToStop": { - "#set": [] - }, - "kind": "init", - "timeAdvancement": { - "#bigint": "0" - }, - "validator": "" - }, - { - "changeAmount": { - "#bigint": "-50" - }, - "consumerChain": "", - "consumersToStart": { - "#set": [] - }, - "consumersToStop": { - "#set": [] - }, - "kind": "VotingPowerChange", - "timeAdvancement": { - "#bigint": "0" - }, - "validator": "node8" - }, - { - "changeAmount": { - "#bigint": "0" - }, - "consumerChain": "", - "consumersToStart": { - "#set": [ - "consumer3" - ] - }, - "consumersToStop": { - "#set": [] - }, - "kind": "EndAndBeginBlockForProvider", - "timeAdvancement": { - "#bigint": "1" - }, - "validator": "" - } - ] - }, - { - "#meta": { - "index": 3 - }, - "currentState": { - "consumerStates": { - "#map": [ - [ - "consumer1", - { - "chainState": { - "currentValidatorSet": { - "#map": [] - }, - "lastTimestamp": { - "#bigint": "0" - }, - "votingPowerHistory": [] - }, - "maturationTimes": [], - "outstandingPacketsToProvider": [], - "receivedVscPackets": [] - } - ], - [ - "consumer2", - { - "chainState": { - "currentValidatorSet": { - "#map": [] - }, - "lastTimestamp": { - "#bigint": "0" - }, - "votingPowerHistory": [] - }, - "maturationTimes": [], - "outstandingPacketsToProvider": [], - "receivedVscPackets": [] - } - ], - [ - "consumer3", - { - "chainState": { - "currentValidatorSet": { - "#map": [ - [ - "node1", - { - "#bigint": "100" - } - ], - [ - "node10", - { - "#bigint": "100" - } - ], - [ - "node2", - { - "#bigint": "100" - } - ], - [ - "node3", - { - "#bigint": "100" - } - ], - [ - "node4", - { - "#bigint": "100" - } - ], - [ - "node5", - { - "#bigint": "100" - } - ], - [ - "node6", - { - "#bigint": "100" - } - ], - [ - "node7", - { - "#bigint": "100" - } - ], - [ - "node8", - { - "#bigint": "50" - } - ], - [ - "node9", - { - "#bigint": "100" - } - ] - ] - }, - "lastTimestamp": { - "#bigint": "0" - }, - "votingPowerHistory": [] - }, - "maturationTimes": [ - { - "#tup": [ - { - "id": { - "#bigint": "0" - }, - "sendingTime": { - "#bigint": "1" - }, - "validatorSet": { - "#map": [ - [ - "node1", - { - "#bigint": "100" - } - ], - [ - "node10", - { - "#bigint": "100" - } - ], - [ - "node2", - { - "#bigint": "100" - } - ], - [ - "node3", - { - "#bigint": "100" - } - ], - [ - "node4", - { - "#bigint": "100" - } - ], - [ - "node5", - { - "#bigint": "100" - } - ], - [ - "node6", - { - "#bigint": "100" - } - ], - [ - "node7", - { - "#bigint": "100" - } - ], - [ - "node8", - { - "#bigint": "50" - } - ], - [ - "node9", - { - "#bigint": "100" - } - ] - ] - } - }, - { - "#bigint": "1209600" - } - ] - } - ], - "outstandingPacketsToProvider": [], - "receivedVscPackets": [ - { - "id": { - "#bigint": "0" - }, - "sendingTime": { - "#bigint": "1" - }, - "validatorSet": { - "#map": [ - [ - "node1", - { - "#bigint": "100" - } - ], - [ - "node10", - { - "#bigint": "100" - } - ], - [ - "node2", - { - "#bigint": "100" - } - ], - [ - "node3", - { - "#bigint": "100" - } - ], - [ - "node4", - { - "#bigint": "100" - } - ], - [ - "node5", - { - "#bigint": "100" - } - ], - [ - "node6", - { - "#bigint": "100" - } - ], - [ - "node7", - { - "#bigint": "100" - } - ], - [ - "node8", - { - "#bigint": "50" - } - ], - [ - "node9", - { - "#bigint": "100" - } - ] - ] - } - } - ] - } - ] - ] - }, - "providerState": { - "chainState": { - "currentValidatorSet": { - "#map": [ - [ - "node1", - { - "#bigint": "100" - } - ], - [ - "node10", - { - "#bigint": "100" - } - ], - [ - "node2", - { - "#bigint": "100" - } - ], - [ - "node3", - { - "#bigint": "100" - } - ], - [ - "node4", - { - "#bigint": "100" - } - ], - [ - "node5", - { - "#bigint": "100" - } - ], - [ - "node6", - { - "#bigint": "100" - } - ], - [ - "node7", - { - "#bigint": "100" - } - ], - [ - "node8", - { - "#bigint": "50" - } - ], - [ - "node9", - { - "#bigint": "100" - } - ] - ] - }, - "lastTimestamp": { - "#bigint": "1" - }, - "votingPowerHistory": [ - { - "#map": [ - [ - "node1", - { - "#bigint": "100" - } - ], - [ - "node10", - { - "#bigint": "100" - } - ], - [ - "node2", - { - "#bigint": "100" - } - ], - [ - "node3", - { - "#bigint": "100" - } - ], - [ - "node4", - { - "#bigint": "100" - } - ], - [ - "node5", - { - "#bigint": "100" - } - ], - [ - "node6", - { - "#bigint": "100" - } - ], - [ - "node7", - { - "#bigint": "100" - } - ], - [ - "node8", - { - "#bigint": "50" - } - ], - [ - "node9", - { - "#bigint": "100" - } - ] - ] - }, - { - "#map": [ - [ - "node1", - { - "#bigint": "100" - } - ], - [ - "node10", - { - "#bigint": "100" - } - ], - [ - "node2", - { - "#bigint": "100" - } - ], - [ - "node3", - { - "#bigint": "100" - } - ], - [ - "node4", - { - "#bigint": "100" - } - ], - [ - "node5", - { - "#bigint": "100" - } - ], - [ - "node6", - { - "#bigint": "100" - } - ], - [ - "node7", - { - "#bigint": "100" - } - ], - [ - "node8", - { - "#bigint": "100" - } - ], - [ - "node9", - { - "#bigint": "100" - } - ] - ] - } - ] - }, - "consumerStatus": { - "#map": [ - [ - "consumer1", - "not consumer" - ], - [ - "consumer2", - "not consumer" - ], - [ - "consumer3", - "running" - ] - ] - }, - "outstandingPacketsToConsumer": { - "#map": [ - [ - "consumer1", - [] - ], - [ - "consumer2", - [] - ], - [ - "consumer3", - [] - ] - ] - }, - "providerValidatorSetChangedInThisBlock": false, - "receivedMaturations": { - "#set": [] - }, - "runningVscId": { - "#bigint": "1" - }, - "sentVscPacketsToConsumer": { - "#map": [ - [ - "consumer1", - [] - ], - [ - "consumer2", - [] - ], - [ - "consumer3", - [ - { - "id": { - "#bigint": "0" - }, - "sendingTime": { - "#bigint": "1" - }, - "validatorSet": { - "#map": [ - [ - "node1", - { - "#bigint": "100" - } - ], - [ - "node10", - { - "#bigint": "100" - } - ], - [ - "node2", - { - "#bigint": "100" - } - ], - [ - "node3", - { - "#bigint": "100" - } - ], - [ - "node4", - { - "#bigint": "100" - } - ], - [ - "node5", - { - "#bigint": "100" - } - ], - [ - "node6", - { - "#bigint": "100" - } - ], - [ - "node7", - { - "#bigint": "100" - } - ], - [ - "node8", - { - "#bigint": "50" - } - ], - [ - "node9", - { - "#bigint": "100" - } - ] - ] - } - } - ] - ] - ] - } - } - }, - "params": { - "CcvTimeout": { - "#map": [ - [ - "consumer1", - { - "#bigint": "1814400" - } - ], - [ - "consumer2", - { - "#bigint": "1814400" - } - ], - [ - "consumer3", - { - "#bigint": "1814400" - } - ], - [ - "provider", - { - "#bigint": "1814400" - } - ] - ] - }, - "ConsumerChains": { - "#set": [ - "consumer1", - "consumer2", - "consumer3" - ] - }, - "InitialValidatorSet": { - "#map": [ - [ - "node1", - { - "#bigint": "100" - } - ], - [ - "node10", - { - "#bigint": "100" - } - ], - [ - "node2", - { - "#bigint": "100" - } - ], - [ - "node3", - { - "#bigint": "100" - } - ], - [ - "node4", - { - "#bigint": "100" - } - ], - [ - "node5", - { - "#bigint": "100" - } - ], - [ - "node6", - { - "#bigint": "100" - } - ], - [ - "node7", - { - "#bigint": "100" - } - ], - [ - "node8", - { - "#bigint": "100" - } - ], - [ - "node9", - { - "#bigint": "100" - } - ] - ] - }, - "Nodes": { - "#set": [ - "node1", - "node10", - "node2", - "node3", - "node4", - "node5", - "node6", - "node7", - "node8", - "node9" - ] - }, - "TrustingPeriodPerChain": { - "#map": [ - [ - "consumer1", - { - "#bigint": "604800" - } - ], - [ - "consumer2", - { - "#bigint": "604800" - } - ], - [ - "consumer3", - { - "#bigint": "604800" - } - ], - [ - "provider", - { - "#bigint": "604800" - } - ] - ] - }, - "UnbondingPeriodPerChain": { - "#map": [ - [ - "consumer1", - { - "#bigint": "1209600" - } - ], - [ - "consumer2", - { - "#bigint": "1209600" - } - ], - [ - "consumer3", - { - "#bigint": "1209600" - } - ], - [ - "provider", - { - "#bigint": "1209600" - } - ] - ] - }, - "VscTimeout": { - "#bigint": "3024000" - } - }, - "trace": [ - { - "changeAmount": { - "#bigint": "0" - }, - "consumerChain": "", - "consumersToStart": { - "#set": [] - }, - "consumersToStop": { - "#set": [] - }, - "kind": "init", - "timeAdvancement": { - "#bigint": "0" - }, - "validator": "" - }, - { - "changeAmount": { - "#bigint": "-50" - }, - "consumerChain": "", - "consumersToStart": { - "#set": [] - }, - "consumersToStop": { - "#set": [] - }, - "kind": "VotingPowerChange", - "timeAdvancement": { - "#bigint": "0" - }, - "validator": "node8" - }, - { - "changeAmount": { - "#bigint": "0" - }, - "consumerChain": "", - "consumersToStart": { - "#set": [ - "consumer3" - ] - }, - "consumersToStop": { - "#set": [] - }, - "kind": "EndAndBeginBlockForProvider", - "timeAdvancement": { - "#bigint": "1" - }, - "validator": "" - }, - { - "changeAmount": { - "#bigint": "0" - }, - "consumerChain": "consumer3", - "consumersToStart": { - "#set": [] - }, - "consumersToStop": { - "#set": [] - }, - "kind": "DeliverVscPacket", - "timeAdvancement": { - "#bigint": "0" - }, - "validator": "" - } - ] - }, - { - "#meta": { - "index": 4 - }, - "currentState": { - "consumerStates": { - "#map": [ - [ - "consumer1", - { - "chainState": { - "currentValidatorSet": { - "#map": [] - }, - "lastTimestamp": { - "#bigint": "0" - }, - "votingPowerHistory": [] - }, - "maturationTimes": [], - "outstandingPacketsToProvider": [], - "receivedVscPackets": [] - } - ], - [ - "consumer2", - { - "chainState": { - "currentValidatorSet": { - "#map": [] - }, - "lastTimestamp": { - "#bigint": "0" - }, - "votingPowerHistory": [] - }, - "maturationTimes": [], - "outstandingPacketsToProvider": [], - "receivedVscPackets": [] - } - ], - [ - "consumer3", - { - "chainState": { - "currentValidatorSet": { - "#map": [ - [ - "node1", - { - "#bigint": "100" - } - ], - [ - "node10", - { - "#bigint": "100" - } - ], - [ - "node2", - { - "#bigint": "100" - } - ], - [ - "node3", - { - "#bigint": "100" - } - ], - [ - "node4", - { - "#bigint": "100" - } - ], - [ - "node5", - { - "#bigint": "100" - } - ], - [ - "node6", - { - "#bigint": "100" - } - ], - [ - "node7", - { - "#bigint": "100" - } - ], - [ - "node8", - { - "#bigint": "50" - } - ], - [ - "node9", - { - "#bigint": "100" - } - ] - ] - }, - "lastTimestamp": { - "#bigint": "0" - }, - "votingPowerHistory": [] - }, - "maturationTimes": [ - { - "#tup": [ - { - "id": { - "#bigint": "0" - }, - "sendingTime": { - "#bigint": "1" - }, - "validatorSet": { - "#map": [ - [ - "node1", - { - "#bigint": "100" - } - ], - [ - "node10", - { - "#bigint": "100" - } - ], - [ - "node2", - { - "#bigint": "100" - } - ], - [ - "node3", - { - "#bigint": "100" - } - ], - [ - "node4", - { - "#bigint": "100" - } - ], - [ - "node5", - { - "#bigint": "100" - } - ], - [ - "node6", - { - "#bigint": "100" - } - ], - [ - "node7", - { - "#bigint": "100" - } - ], - [ - "node8", - { - "#bigint": "50" - } - ], - [ - "node9", - { - "#bigint": "100" - } - ] - ] - } - }, - { - "#bigint": "1209600" - } - ] - } - ], - "outstandingPacketsToProvider": [], - "receivedVscPackets": [ - { - "id": { - "#bigint": "0" - }, - "sendingTime": { - "#bigint": "1" - }, - "validatorSet": { - "#map": [ - [ - "node1", - { - "#bigint": "100" - } - ], - [ - "node10", - { - "#bigint": "100" - } - ], - [ - "node2", - { - "#bigint": "100" - } - ], - [ - "node3", - { - "#bigint": "100" - } - ], - [ - "node4", - { - "#bigint": "100" - } - ], - [ - "node5", - { - "#bigint": "100" - } - ], - [ - "node6", - { - "#bigint": "100" - } - ], - [ - "node7", - { - "#bigint": "100" - } - ], - [ - "node8", - { - "#bigint": "50" - } - ], - [ - "node9", - { - "#bigint": "100" - } - ] - ] - } - } - ] - } - ] - ] - }, - "providerState": { - "chainState": { - "currentValidatorSet": { - "#map": [ - [ - "node1", - { - "#bigint": "100" - } - ], - [ - "node10", - { - "#bigint": "100" - } - ], - [ - "node2", - { - "#bigint": "100" - } - ], - [ - "node3", - { - "#bigint": "150" - } - ], - [ - "node4", - { - "#bigint": "100" - } - ], - [ - "node5", - { - "#bigint": "100" - } - ], - [ - "node6", - { - "#bigint": "100" - } - ], - [ - "node7", - { - "#bigint": "100" - } - ], - [ - "node8", - { - "#bigint": "50" - } - ], - [ - "node9", - { - "#bigint": "100" - } - ] - ] - }, - "lastTimestamp": { - "#bigint": "1" - }, - "votingPowerHistory": [ - { - "#map": [ - [ - "node1", - { - "#bigint": "100" - } - ], - [ - "node10", - { - "#bigint": "100" - } - ], - [ - "node2", - { - "#bigint": "100" - } - ], - [ - "node3", - { - "#bigint": "100" - } - ], - [ - "node4", - { - "#bigint": "100" - } - ], - [ - "node5", - { - "#bigint": "100" - } - ], - [ - "node6", - { - "#bigint": "100" - } - ], - [ - "node7", - { - "#bigint": "100" - } - ], - [ - "node8", - { - "#bigint": "50" - } - ], - [ - "node9", - { - "#bigint": "100" - } - ] - ] - }, - { - "#map": [ - [ - "node1", - { - "#bigint": "100" - } - ], - [ - "node10", - { - "#bigint": "100" - } - ], - [ - "node2", - { - "#bigint": "100" - } - ], - [ - "node3", - { - "#bigint": "100" - } - ], - [ - "node4", - { - "#bigint": "100" - } - ], - [ - "node5", - { - "#bigint": "100" - } - ], - [ - "node6", - { - "#bigint": "100" - } - ], - [ - "node7", - { - "#bigint": "100" - } - ], - [ - "node8", - { - "#bigint": "100" - } - ], - [ - "node9", - { - "#bigint": "100" - } - ] - ] - } - ] - }, - "consumerStatus": { - "#map": [ - [ - "consumer1", - "not consumer" - ], - [ - "consumer2", - "not consumer" - ], - [ - "consumer3", - "running" - ] - ] - }, - "outstandingPacketsToConsumer": { - "#map": [ - [ - "consumer1", - [] - ], - [ - "consumer2", - [] - ], - [ - "consumer3", - [] - ] - ] - }, - "providerValidatorSetChangedInThisBlock": true, - "receivedMaturations": { - "#set": [] - }, - "runningVscId": { - "#bigint": "1" - }, - "sentVscPacketsToConsumer": { - "#map": [ - [ - "consumer1", - [] - ], - [ - "consumer2", - [] - ], - [ - "consumer3", - [ - { - "id": { - "#bigint": "0" - }, - "sendingTime": { - "#bigint": "1" - }, - "validatorSet": { - "#map": [ - [ - "node1", - { - "#bigint": "100" - } - ], - [ - "node10", - { - "#bigint": "100" - } - ], - [ - "node2", - { - "#bigint": "100" - } - ], - [ - "node3", - { - "#bigint": "100" - } - ], - [ - "node4", - { - "#bigint": "100" - } - ], - [ - "node5", - { - "#bigint": "100" - } - ], - [ - "node6", - { - "#bigint": "100" - } - ], - [ - "node7", - { - "#bigint": "100" - } - ], - [ - "node8", - { - "#bigint": "50" - } - ], - [ - "node9", - { - "#bigint": "100" - } - ] - ] - } - } - ] - ] - ] - } - } - }, - "params": { - "CcvTimeout": { - "#map": [ - [ - "consumer1", - { - "#bigint": "1814400" - } - ], - [ - "consumer2", - { - "#bigint": "1814400" - } - ], - [ - "consumer3", - { - "#bigint": "1814400" - } - ], - [ - "provider", - { - "#bigint": "1814400" - } - ] - ] - }, - "ConsumerChains": { - "#set": [ - "consumer1", - "consumer2", - "consumer3" - ] - }, - "InitialValidatorSet": { - "#map": [ - [ - "node1", - { - "#bigint": "100" - } - ], - [ - "node10", - { - "#bigint": "100" - } - ], - [ - "node2", - { - "#bigint": "100" - } - ], - [ - "node3", - { - "#bigint": "100" - } - ], - [ - "node4", - { - "#bigint": "100" - } - ], - [ - "node5", - { - "#bigint": "100" - } - ], - [ - "node6", - { - "#bigint": "100" - } - ], - [ - "node7", - { - "#bigint": "100" - } - ], - [ - "node8", - { - "#bigint": "100" - } - ], - [ - "node9", - { - "#bigint": "100" - } - ] - ] - }, - "Nodes": { - "#set": [ - "node1", - "node10", - "node2", - "node3", - "node4", - "node5", - "node6", - "node7", - "node8", - "node9" - ] - }, - "TrustingPeriodPerChain": { - "#map": [ - [ - "consumer1", - { - "#bigint": "604800" - } - ], - [ - "consumer2", - { - "#bigint": "604800" - } - ], - [ - "consumer3", - { - "#bigint": "604800" - } - ], - [ - "provider", - { - "#bigint": "604800" - } - ] - ] - }, - "UnbondingPeriodPerChain": { - "#map": [ - [ - "consumer1", - { - "#bigint": "1209600" - } - ], - [ - "consumer2", - { - "#bigint": "1209600" - } - ], - [ - "consumer3", - { - "#bigint": "1209600" - } - ], - [ - "provider", - { - "#bigint": "1209600" - } - ] - ] - }, - "VscTimeout": { - "#bigint": "3024000" - } - }, - "trace": [ - { - "changeAmount": { - "#bigint": "0" - }, - "consumerChain": "", - "consumersToStart": { - "#set": [] - }, - "consumersToStop": { - "#set": [] - }, - "kind": "init", - "timeAdvancement": { - "#bigint": "0" - }, - "validator": "" - }, - { - "changeAmount": { - "#bigint": "-50" - }, - "consumerChain": "", - "consumersToStart": { - "#set": [] - }, - "consumersToStop": { - "#set": [] - }, - "kind": "VotingPowerChange", - "timeAdvancement": { - "#bigint": "0" - }, - "validator": "node8" - }, - { - "changeAmount": { - "#bigint": "0" - }, - "consumerChain": "", - "consumersToStart": { - "#set": [ - "consumer3" - ] - }, - "consumersToStop": { - "#set": [] - }, - "kind": "EndAndBeginBlockForProvider", - "timeAdvancement": { - "#bigint": "1" - }, - "validator": "" - }, - { - "changeAmount": { - "#bigint": "0" - }, - "consumerChain": "consumer3", - "consumersToStart": { - "#set": [] - }, - "consumersToStop": { - "#set": [] - }, - "kind": "DeliverVscPacket", - "timeAdvancement": { - "#bigint": "0" - }, - "validator": "" - }, - { - "changeAmount": { - "#bigint": "50" - }, - "consumerChain": "", - "consumersToStart": { - "#set": [] - }, - "consumersToStop": { - "#set": [] - }, - "kind": "VotingPowerChange", - "timeAdvancement": { - "#bigint": "0" - }, - "validator": "node3" - } - ] - }, - { - "#meta": { - "index": 5 - }, - "currentState": { - "consumerStates": { - "#map": [ - [ - "consumer1", - { - "chainState": { - "currentValidatorSet": { - "#map": [] - }, - "lastTimestamp": { - "#bigint": "0" - }, - "votingPowerHistory": [] - }, - "maturationTimes": [], - "outstandingPacketsToProvider": [], - "receivedVscPackets": [] - } - ], - [ - "consumer2", - { - "chainState": { - "currentValidatorSet": { - "#map": [] - }, - "lastTimestamp": { - "#bigint": "0" - }, - "votingPowerHistory": [] - }, - "maturationTimes": [], - "outstandingPacketsToProvider": [], - "receivedVscPackets": [] - } - ], - [ - "consumer3", - { - "chainState": { - "currentValidatorSet": { - "#map": [ - [ - "node1", - { - "#bigint": "100" - } - ], - [ - "node10", - { - "#bigint": "100" - } - ], - [ - "node2", - { - "#bigint": "100" - } - ], - [ - "node3", - { - "#bigint": "100" - } - ], - [ - "node4", - { - "#bigint": "100" - } - ], - [ - "node5", - { - "#bigint": "100" - } - ], - [ - "node6", - { - "#bigint": "100" - } - ], - [ - "node7", - { - "#bigint": "100" - } - ], - [ - "node8", - { - "#bigint": "50" - } - ], - [ - "node9", - { - "#bigint": "100" - } - ] - ] - }, - "lastTimestamp": { - "#bigint": "601200" - }, - "votingPowerHistory": [ - { - "#map": [ - [ - "node1", - { - "#bigint": "100" - } - ], - [ - "node10", - { - "#bigint": "100" - } - ], - [ - "node2", - { - "#bigint": "100" - } - ], - [ - "node3", - { - "#bigint": "100" - } - ], - [ - "node4", - { - "#bigint": "100" - } - ], - [ - "node5", - { - "#bigint": "100" - } - ], - [ - "node6", - { - "#bigint": "100" - } - ], - [ - "node7", - { - "#bigint": "100" - } - ], - [ - "node8", - { - "#bigint": "50" - } - ], - [ - "node9", - { - "#bigint": "100" - } - ] - ] - } - ] - }, - "maturationTimes": [ - { - "#tup": [ - { - "id": { - "#bigint": "0" - }, - "sendingTime": { - "#bigint": "1" - }, - "validatorSet": { - "#map": [ - [ - "node1", - { - "#bigint": "100" - } - ], - [ - "node10", - { - "#bigint": "100" - } - ], - [ - "node2", - { - "#bigint": "100" - } - ], - [ - "node3", - { - "#bigint": "100" - } - ], - [ - "node4", - { - "#bigint": "100" - } - ], - [ - "node5", - { - "#bigint": "100" - } - ], - [ - "node6", - { - "#bigint": "100" - } - ], - [ - "node7", - { - "#bigint": "100" - } - ], - [ - "node8", - { - "#bigint": "50" - } - ], - [ - "node9", - { - "#bigint": "100" - } - ] - ] - } - }, - { - "#bigint": "1209600" - } - ] - } - ], - "outstandingPacketsToProvider": [], - "receivedVscPackets": [ - { - "id": { - "#bigint": "0" - }, - "sendingTime": { - "#bigint": "1" - }, - "validatorSet": { - "#map": [ - [ - "node1", - { - "#bigint": "100" - } - ], - [ - "node10", - { - "#bigint": "100" - } - ], - [ - "node2", - { - "#bigint": "100" - } - ], - [ - "node3", - { - "#bigint": "100" - } - ], - [ - "node4", - { - "#bigint": "100" - } - ], - [ - "node5", - { - "#bigint": "100" - } - ], - [ - "node6", - { - "#bigint": "100" - } - ], - [ - "node7", - { - "#bigint": "100" - } - ], - [ - "node8", - { - "#bigint": "50" - } - ], - [ - "node9", - { - "#bigint": "100" - } - ] - ] - } - } - ] - } - ] - ] - }, - "providerState": { - "chainState": { - "currentValidatorSet": { - "#map": [ - [ - "node1", - { - "#bigint": "100" - } - ], - [ - "node10", - { - "#bigint": "100" - } - ], - [ - "node2", - { - "#bigint": "100" - } - ], - [ - "node3", - { - "#bigint": "150" - } - ], - [ - "node4", - { - "#bigint": "100" - } - ], - [ - "node5", - { - "#bigint": "100" - } - ], - [ - "node6", - { - "#bigint": "100" - } - ], - [ - "node7", - { - "#bigint": "100" - } - ], - [ - "node8", - { - "#bigint": "50" - } - ], - [ - "node9", - { - "#bigint": "100" - } - ] - ] - }, - "lastTimestamp": { - "#bigint": "1" - }, - "votingPowerHistory": [ - { - "#map": [ - [ - "node1", - { - "#bigint": "100" - } - ], - [ - "node10", - { - "#bigint": "100" - } - ], - [ - "node2", - { - "#bigint": "100" - } - ], - [ - "node3", - { - "#bigint": "100" - } - ], - [ - "node4", - { - "#bigint": "100" - } - ], - [ - "node5", - { - "#bigint": "100" - } - ], - [ - "node6", - { - "#bigint": "100" - } - ], - [ - "node7", - { - "#bigint": "100" - } - ], - [ - "node8", - { - "#bigint": "50" - } - ], - [ - "node9", - { - "#bigint": "100" - } - ] - ] - }, - { - "#map": [ - [ - "node1", - { - "#bigint": "100" - } - ], - [ - "node10", - { - "#bigint": "100" - } - ], - [ - "node2", - { - "#bigint": "100" - } - ], - [ - "node3", - { - "#bigint": "100" - } - ], - [ - "node4", - { - "#bigint": "100" - } - ], - [ - "node5", - { - "#bigint": "100" - } - ], - [ - "node6", - { - "#bigint": "100" - } - ], - [ - "node7", - { - "#bigint": "100" - } - ], - [ - "node8", - { - "#bigint": "100" - } - ], - [ - "node9", - { - "#bigint": "100" - } - ] - ] - } - ] - }, - "consumerStatus": { - "#map": [ - [ - "consumer1", - "not consumer" - ], - [ - "consumer2", - "not consumer" - ], - [ - "consumer3", - "running" - ] - ] - }, - "outstandingPacketsToConsumer": { - "#map": [ - [ - "consumer1", - [] - ], - [ - "consumer2", - [] - ], - [ - "consumer3", - [] - ] - ] - }, - "providerValidatorSetChangedInThisBlock": true, - "receivedMaturations": { - "#set": [] - }, - "runningVscId": { - "#bigint": "1" - }, - "sentVscPacketsToConsumer": { - "#map": [ - [ - "consumer1", - [] - ], - [ - "consumer2", - [] - ], - [ - "consumer3", - [ - { - "id": { - "#bigint": "0" - }, - "sendingTime": { - "#bigint": "1" - }, - "validatorSet": { - "#map": [ - [ - "node1", - { - "#bigint": "100" - } - ], - [ - "node10", - { - "#bigint": "100" - } - ], - [ - "node2", - { - "#bigint": "100" - } - ], - [ - "node3", - { - "#bigint": "100" - } - ], - [ - "node4", - { - "#bigint": "100" - } - ], - [ - "node5", - { - "#bigint": "100" - } - ], - [ - "node6", - { - "#bigint": "100" - } - ], - [ - "node7", - { - "#bigint": "100" - } - ], - [ - "node8", - { - "#bigint": "50" - } - ], - [ - "node9", - { - "#bigint": "100" - } - ] - ] - } - } - ] - ] - ] - } - } - }, - "params": { - "CcvTimeout": { - "#map": [ - [ - "consumer1", - { - "#bigint": "1814400" - } - ], - [ - "consumer2", - { - "#bigint": "1814400" - } - ], - [ - "consumer3", - { - "#bigint": "1814400" - } - ], - [ - "provider", - { - "#bigint": "1814400" - } - ] - ] - }, - "ConsumerChains": { - "#set": [ - "consumer1", - "consumer2", - "consumer3" - ] - }, - "InitialValidatorSet": { - "#map": [ - [ - "node1", - { - "#bigint": "100" - } - ], - [ - "node10", - { - "#bigint": "100" - } - ], - [ - "node2", - { - "#bigint": "100" - } - ], - [ - "node3", - { - "#bigint": "100" - } - ], - [ - "node4", - { - "#bigint": "100" - } - ], - [ - "node5", - { - "#bigint": "100" - } - ], - [ - "node6", - { - "#bigint": "100" - } - ], - [ - "node7", - { - "#bigint": "100" - } - ], - [ - "node8", - { - "#bigint": "100" - } - ], - [ - "node9", - { - "#bigint": "100" - } - ] - ] - }, - "Nodes": { - "#set": [ - "node1", - "node10", - "node2", - "node3", - "node4", - "node5", - "node6", - "node7", - "node8", - "node9" - ] - }, - "TrustingPeriodPerChain": { - "#map": [ - [ - "consumer1", - { - "#bigint": "604800" - } - ], - [ - "consumer2", - { - "#bigint": "604800" - } - ], - [ - "consumer3", - { - "#bigint": "604800" - } - ], - [ - "provider", - { - "#bigint": "604800" - } - ] - ] - }, - "UnbondingPeriodPerChain": { - "#map": [ - [ - "consumer1", - { - "#bigint": "1209600" - } - ], - [ - "consumer2", - { - "#bigint": "1209600" - } - ], - [ - "consumer3", - { - "#bigint": "1209600" - } - ], - [ - "provider", - { - "#bigint": "1209600" - } - ] - ] - }, - "VscTimeout": { - "#bigint": "3024000" - } - }, - "trace": [ - { - "changeAmount": { - "#bigint": "0" - }, - "consumerChain": "", - "consumersToStart": { - "#set": [] - }, - "consumersToStop": { - "#set": [] - }, - "kind": "init", - "timeAdvancement": { - "#bigint": "0" - }, - "validator": "" - }, - { - "changeAmount": { - "#bigint": "-50" - }, - "consumerChain": "", - "consumersToStart": { - "#set": [] - }, - "consumersToStop": { - "#set": [] - }, - "kind": "VotingPowerChange", - "timeAdvancement": { - "#bigint": "0" - }, - "validator": "node8" - }, - { - "changeAmount": { - "#bigint": "0" - }, - "consumerChain": "", - "consumersToStart": { - "#set": [ - "consumer3" - ] - }, - "consumersToStop": { - "#set": [] - }, - "kind": "EndAndBeginBlockForProvider", - "timeAdvancement": { - "#bigint": "1" - }, - "validator": "" - }, - { - "changeAmount": { - "#bigint": "0" - }, - "consumerChain": "consumer3", - "consumersToStart": { - "#set": [] - }, - "consumersToStop": { - "#set": [] - }, - "kind": "DeliverVscPacket", - "timeAdvancement": { - "#bigint": "0" - }, - "validator": "" - }, - { - "changeAmount": { - "#bigint": "50" - }, - "consumerChain": "", - "consumersToStart": { - "#set": [] - }, - "consumersToStop": { - "#set": [] - }, - "kind": "VotingPowerChange", - "timeAdvancement": { - "#bigint": "0" - }, - "validator": "node3" - }, - { - "changeAmount": { - "#bigint": "0" - }, - "consumerChain": "consumer3", - "consumersToStart": { - "#set": [] - }, - "consumersToStop": { - "#set": [] - }, - "kind": "EndAndBeginBlockForConsumer", - "timeAdvancement": { - "#bigint": "601200" - }, - "validator": "" - } - ] - }, - { - "#meta": { - "index": 6 - }, - "currentState": { - "consumerStates": { - "#map": [ - [ - "consumer1", - { - "chainState": { - "currentValidatorSet": { - "#map": [] - }, - "lastTimestamp": { - "#bigint": "0" - }, - "votingPowerHistory": [] - }, - "maturationTimes": [], - "outstandingPacketsToProvider": [], - "receivedVscPackets": [] - } - ], - [ - "consumer2", - { - "chainState": { - "currentValidatorSet": { - "#map": [] - }, - "lastTimestamp": { - "#bigint": "0" - }, - "votingPowerHistory": [] - }, - "maturationTimes": [], - "outstandingPacketsToProvider": [], - "receivedVscPackets": [] - } - ], - [ - "consumer3", - { - "chainState": { - "currentValidatorSet": { - "#map": [ - [ - "node1", - { - "#bigint": "100" - } - ], - [ - "node10", - { - "#bigint": "100" - } - ], - [ - "node2", - { - "#bigint": "100" - } - ], - [ - "node3", - { - "#bigint": "100" - } - ], - [ - "node4", - { - "#bigint": "100" - } - ], - [ - "node5", - { - "#bigint": "100" - } - ], - [ - "node6", - { - "#bigint": "100" - } - ], - [ - "node7", - { - "#bigint": "100" - } - ], - [ - "node8", - { - "#bigint": "50" - } - ], - [ - "node9", - { - "#bigint": "100" - } - ] - ] - }, - "lastTimestamp": { - "#bigint": "1202400" - }, - "votingPowerHistory": [ - { - "#map": [ - [ - "node1", - { - "#bigint": "100" - } - ], - [ - "node10", - { - "#bigint": "100" - } - ], - [ - "node2", - { - "#bigint": "100" - } - ], - [ - "node3", - { - "#bigint": "100" - } - ], - [ - "node4", - { - "#bigint": "100" - } - ], - [ - "node5", - { - "#bigint": "100" - } - ], - [ - "node6", - { - "#bigint": "100" - } - ], - [ - "node7", - { - "#bigint": "100" - } - ], - [ - "node8", - { - "#bigint": "50" - } - ], - [ - "node9", - { - "#bigint": "100" - } - ] - ] - }, - { - "#map": [ - [ - "node1", - { - "#bigint": "100" - } - ], - [ - "node10", - { - "#bigint": "100" - } - ], - [ - "node2", - { - "#bigint": "100" - } - ], - [ - "node3", - { - "#bigint": "100" - } - ], - [ - "node4", - { - "#bigint": "100" - } - ], - [ - "node5", - { - "#bigint": "100" - } - ], - [ - "node6", - { - "#bigint": "100" - } - ], - [ - "node7", - { - "#bigint": "100" - } - ], - [ - "node8", - { - "#bigint": "50" - } - ], - [ - "node9", - { - "#bigint": "100" - } - ] - ] - } - ] - }, - "maturationTimes": [ - { - "#tup": [ - { - "id": { - "#bigint": "0" - }, - "sendingTime": { - "#bigint": "1" - }, - "validatorSet": { - "#map": [ - [ - "node1", - { - "#bigint": "100" - } - ], - [ - "node10", - { - "#bigint": "100" - } - ], - [ - "node2", - { - "#bigint": "100" - } - ], - [ - "node3", - { - "#bigint": "100" - } - ], - [ - "node4", - { - "#bigint": "100" - } - ], - [ - "node5", - { - "#bigint": "100" - } - ], - [ - "node6", - { - "#bigint": "100" - } - ], - [ - "node7", - { - "#bigint": "100" - } - ], - [ - "node8", - { - "#bigint": "50" - } - ], - [ - "node9", - { - "#bigint": "100" - } - ] - ] - } - }, - { - "#bigint": "1209600" - } - ] - } - ], - "outstandingPacketsToProvider": [], - "receivedVscPackets": [ - { - "id": { - "#bigint": "0" - }, - "sendingTime": { - "#bigint": "1" - }, - "validatorSet": { - "#map": [ - [ - "node1", - { - "#bigint": "100" - } - ], - [ - "node10", - { - "#bigint": "100" - } - ], - [ - "node2", - { - "#bigint": "100" - } - ], - [ - "node3", - { - "#bigint": "100" - } - ], - [ - "node4", - { - "#bigint": "100" - } - ], - [ - "node5", - { - "#bigint": "100" - } - ], - [ - "node6", - { - "#bigint": "100" - } - ], - [ - "node7", - { - "#bigint": "100" - } - ], - [ - "node8", - { - "#bigint": "50" - } - ], - [ - "node9", - { - "#bigint": "100" - } - ] - ] - } - } - ] - } - ] - ] - }, - "providerState": { - "chainState": { - "currentValidatorSet": { - "#map": [ - [ - "node1", - { - "#bigint": "100" - } - ], - [ - "node10", - { - "#bigint": "100" - } - ], - [ - "node2", - { - "#bigint": "100" - } - ], - [ - "node3", - { - "#bigint": "150" - } - ], - [ - "node4", - { - "#bigint": "100" - } - ], - [ - "node5", - { - "#bigint": "100" - } - ], - [ - "node6", - { - "#bigint": "100" - } - ], - [ - "node7", - { - "#bigint": "100" - } - ], - [ - "node8", - { - "#bigint": "50" - } - ], - [ - "node9", - { - "#bigint": "100" - } - ] - ] - }, - "lastTimestamp": { - "#bigint": "1" - }, - "votingPowerHistory": [ - { - "#map": [ - [ - "node1", - { - "#bigint": "100" - } - ], - [ - "node10", - { - "#bigint": "100" - } - ], - [ - "node2", - { - "#bigint": "100" - } - ], - [ - "node3", - { - "#bigint": "100" - } - ], - [ - "node4", - { - "#bigint": "100" - } - ], - [ - "node5", - { - "#bigint": "100" - } - ], - [ - "node6", - { - "#bigint": "100" - } - ], - [ - "node7", - { - "#bigint": "100" - } - ], - [ - "node8", - { - "#bigint": "50" - } - ], - [ - "node9", - { - "#bigint": "100" - } - ] - ] - }, - { - "#map": [ - [ - "node1", - { - "#bigint": "100" - } - ], - [ - "node10", - { - "#bigint": "100" - } - ], - [ - "node2", - { - "#bigint": "100" - } - ], - [ - "node3", - { - "#bigint": "100" - } - ], - [ - "node4", - { - "#bigint": "100" - } - ], - [ - "node5", - { - "#bigint": "100" - } - ], - [ - "node6", - { - "#bigint": "100" - } - ], - [ - "node7", - { - "#bigint": "100" - } - ], - [ - "node8", - { - "#bigint": "100" - } - ], - [ - "node9", - { - "#bigint": "100" - } - ] - ] - } - ] - }, - "consumerStatus": { - "#map": [ - [ - "consumer1", - "not consumer" - ], - [ - "consumer2", - "not consumer" - ], - [ - "consumer3", - "running" - ] - ] - }, - "outstandingPacketsToConsumer": { - "#map": [ - [ - "consumer1", - [] - ], - [ - "consumer2", - [] - ], - [ - "consumer3", - [] - ] - ] - }, - "providerValidatorSetChangedInThisBlock": true, - "receivedMaturations": { - "#set": [] - }, - "runningVscId": { - "#bigint": "1" - }, - "sentVscPacketsToConsumer": { - "#map": [ - [ - "consumer1", - [] - ], - [ - "consumer2", - [] - ], - [ - "consumer3", - [ - { - "id": { - "#bigint": "0" - }, - "sendingTime": { - "#bigint": "1" - }, - "validatorSet": { - "#map": [ - [ - "node1", - { - "#bigint": "100" - } - ], - [ - "node10", - { - "#bigint": "100" - } - ], - [ - "node2", - { - "#bigint": "100" - } - ], - [ - "node3", - { - "#bigint": "100" - } - ], - [ - "node4", - { - "#bigint": "100" - } - ], - [ - "node5", - { - "#bigint": "100" - } - ], - [ - "node6", - { - "#bigint": "100" - } - ], - [ - "node7", - { - "#bigint": "100" - } - ], - [ - "node8", - { - "#bigint": "50" - } - ], - [ - "node9", - { - "#bigint": "100" - } - ] - ] - } - } - ] - ] - ] - } - } - }, - "params": { - "CcvTimeout": { - "#map": [ - [ - "consumer1", - { - "#bigint": "1814400" - } - ], - [ - "consumer2", - { - "#bigint": "1814400" - } - ], - [ - "consumer3", - { - "#bigint": "1814400" - } - ], - [ - "provider", - { - "#bigint": "1814400" - } - ] - ] - }, - "ConsumerChains": { - "#set": [ - "consumer1", - "consumer2", - "consumer3" - ] - }, - "InitialValidatorSet": { - "#map": [ - [ - "node1", - { - "#bigint": "100" - } - ], - [ - "node10", - { - "#bigint": "100" - } - ], - [ - "node2", - { - "#bigint": "100" - } - ], - [ - "node3", - { - "#bigint": "100" - } - ], - [ - "node4", - { - "#bigint": "100" - } - ], - [ - "node5", - { - "#bigint": "100" - } - ], - [ - "node6", - { - "#bigint": "100" - } - ], - [ - "node7", - { - "#bigint": "100" - } - ], - [ - "node8", - { - "#bigint": "100" - } - ], - [ - "node9", - { - "#bigint": "100" - } - ] - ] - }, - "Nodes": { - "#set": [ - "node1", - "node10", - "node2", - "node3", - "node4", - "node5", - "node6", - "node7", - "node8", - "node9" - ] - }, - "TrustingPeriodPerChain": { - "#map": [ - [ - "consumer1", - { - "#bigint": "604800" - } - ], - [ - "consumer2", - { - "#bigint": "604800" - } - ], - [ - "consumer3", - { - "#bigint": "604800" - } - ], - [ - "provider", - { - "#bigint": "604800" - } - ] - ] - }, - "UnbondingPeriodPerChain": { - "#map": [ - [ - "consumer1", - { - "#bigint": "1209600" - } - ], - [ - "consumer2", - { - "#bigint": "1209600" - } - ], - [ - "consumer3", - { - "#bigint": "1209600" - } - ], - [ - "provider", - { - "#bigint": "1209600" - } - ] - ] - }, - "VscTimeout": { - "#bigint": "3024000" - } - }, - "trace": [ - { - "changeAmount": { - "#bigint": "0" - }, - "consumerChain": "", - "consumersToStart": { - "#set": [] - }, - "consumersToStop": { - "#set": [] - }, - "kind": "init", - "timeAdvancement": { - "#bigint": "0" - }, - "validator": "" - }, - { - "changeAmount": { - "#bigint": "-50" - }, - "consumerChain": "", - "consumersToStart": { - "#set": [] - }, - "consumersToStop": { - "#set": [] - }, - "kind": "VotingPowerChange", - "timeAdvancement": { - "#bigint": "0" - }, - "validator": "node8" - }, - { - "changeAmount": { - "#bigint": "0" - }, - "consumerChain": "", - "consumersToStart": { - "#set": [ - "consumer3" - ] - }, - "consumersToStop": { - "#set": [] - }, - "kind": "EndAndBeginBlockForProvider", - "timeAdvancement": { - "#bigint": "1" - }, - "validator": "" - }, - { - "changeAmount": { - "#bigint": "0" - }, - "consumerChain": "consumer3", - "consumersToStart": { - "#set": [] - }, - "consumersToStop": { - "#set": [] - }, - "kind": "DeliverVscPacket", - "timeAdvancement": { - "#bigint": "0" - }, - "validator": "" - }, - { - "changeAmount": { - "#bigint": "50" - }, - "consumerChain": "", - "consumersToStart": { - "#set": [] - }, - "consumersToStop": { - "#set": [] - }, - "kind": "VotingPowerChange", - "timeAdvancement": { - "#bigint": "0" - }, - "validator": "node3" - }, - { - "changeAmount": { - "#bigint": "0" - }, - "consumerChain": "consumer3", - "consumersToStart": { - "#set": [] - }, - "consumersToStop": { - "#set": [] - }, - "kind": "EndAndBeginBlockForConsumer", - "timeAdvancement": { - "#bigint": "601200" - }, - "validator": "" - }, - { - "changeAmount": { - "#bigint": "0" - }, - "consumerChain": "consumer3", - "consumersToStart": { - "#set": [] - }, - "consumersToStop": { - "#set": [] - }, - "kind": "EndAndBeginBlockForConsumer", - "timeAdvancement": { - "#bigint": "601200" - }, - "validator": "" - } - ] - }, - { - "#meta": { - "index": 7 - }, - "currentState": { - "consumerStates": { - "#map": [ - [ - "consumer1", - { - "chainState": { - "currentValidatorSet": { - "#map": [] - }, - "lastTimestamp": { - "#bigint": "0" - }, - "votingPowerHistory": [] - }, - "maturationTimes": [], - "outstandingPacketsToProvider": [], - "receivedVscPackets": [] - } - ], - [ - "consumer2", - { - "chainState": { - "currentValidatorSet": { - "#map": [] - }, - "lastTimestamp": { - "#bigint": "0" - }, - "votingPowerHistory": [] - }, - "maturationTimes": [], - "outstandingPacketsToProvider": [], - "receivedVscPackets": [] - } - ], - [ - "consumer3", - { - "chainState": { - "currentValidatorSet": { - "#map": [ - [ - "node1", - { - "#bigint": "100" - } - ], - [ - "node10", - { - "#bigint": "100" - } - ], - [ - "node2", - { - "#bigint": "100" - } - ], - [ - "node3", - { - "#bigint": "100" - } - ], - [ - "node4", - { - "#bigint": "100" - } - ], - [ - "node5", - { - "#bigint": "100" - } - ], - [ - "node6", - { - "#bigint": "100" - } - ], - [ - "node7", - { - "#bigint": "100" - } - ], - [ - "node8", - { - "#bigint": "50" - } - ], - [ - "node9", - { - "#bigint": "100" - } - ] - ] - }, - "lastTimestamp": { - "#bigint": "1803600" - }, - "votingPowerHistory": [ - { - "#map": [ - [ - "node1", - { - "#bigint": "100" - } - ], - [ - "node10", - { - "#bigint": "100" - } - ], - [ - "node2", - { - "#bigint": "100" - } - ], - [ - "node3", - { - "#bigint": "100" - } - ], - [ - "node4", - { - "#bigint": "100" - } - ], - [ - "node5", - { - "#bigint": "100" - } - ], - [ - "node6", - { - "#bigint": "100" - } - ], - [ - "node7", - { - "#bigint": "100" - } - ], - [ - "node8", - { - "#bigint": "50" - } - ], - [ - "node9", - { - "#bigint": "100" - } - ] - ] - }, - { - "#map": [ - [ - "node1", - { - "#bigint": "100" - } - ], - [ - "node10", - { - "#bigint": "100" - } - ], - [ - "node2", - { - "#bigint": "100" - } - ], - [ - "node3", - { - "#bigint": "100" - } - ], - [ - "node4", - { - "#bigint": "100" - } - ], - [ - "node5", - { - "#bigint": "100" - } - ], - [ - "node6", - { - "#bigint": "100" - } - ], - [ - "node7", - { - "#bigint": "100" - } - ], - [ - "node8", - { - "#bigint": "50" - } - ], - [ - "node9", - { - "#bigint": "100" - } - ] - ] - }, - { - "#map": [ - [ - "node1", - { - "#bigint": "100" - } - ], - [ - "node10", - { - "#bigint": "100" - } - ], - [ - "node2", - { - "#bigint": "100" - } - ], - [ - "node3", - { - "#bigint": "100" - } - ], - [ - "node4", - { - "#bigint": "100" - } - ], - [ - "node5", - { - "#bigint": "100" - } - ], - [ - "node6", - { - "#bigint": "100" - } - ], - [ - "node7", - { - "#bigint": "100" - } - ], - [ - "node8", - { - "#bigint": "50" - } - ], - [ - "node9", - { - "#bigint": "100" - } - ] - ] - } - ] - }, - "maturationTimes": [], - "outstandingPacketsToProvider": [ - { - "id": { - "#bigint": "0" - }, - "sendingTime": { - "#bigint": "1803600" - } - } - ], - "receivedVscPackets": [ - { - "id": { - "#bigint": "0" - }, - "sendingTime": { - "#bigint": "1" - }, - "validatorSet": { - "#map": [ - [ - "node1", - { - "#bigint": "100" - } - ], - [ - "node10", - { - "#bigint": "100" - } - ], - [ - "node2", - { - "#bigint": "100" - } - ], - [ - "node3", - { - "#bigint": "100" - } - ], - [ - "node4", - { - "#bigint": "100" - } - ], - [ - "node5", - { - "#bigint": "100" - } - ], - [ - "node6", - { - "#bigint": "100" - } - ], - [ - "node7", - { - "#bigint": "100" - } - ], - [ - "node8", - { - "#bigint": "50" - } - ], - [ - "node9", - { - "#bigint": "100" - } - ] - ] - } - } - ] - } - ] - ] - }, - "providerState": { - "chainState": { - "currentValidatorSet": { - "#map": [ - [ - "node1", - { - "#bigint": "100" - } - ], - [ - "node10", - { - "#bigint": "100" - } - ], - [ - "node2", - { - "#bigint": "100" - } - ], - [ - "node3", - { - "#bigint": "150" - } - ], - [ - "node4", - { - "#bigint": "100" - } - ], - [ - "node5", - { - "#bigint": "100" - } - ], - [ - "node6", - { - "#bigint": "100" - } - ], - [ - "node7", - { - "#bigint": "100" - } - ], - [ - "node8", - { - "#bigint": "50" - } - ], - [ - "node9", - { - "#bigint": "100" - } - ] - ] - }, - "lastTimestamp": { - "#bigint": "1" - }, - "votingPowerHistory": [ - { - "#map": [ - [ - "node1", - { - "#bigint": "100" - } - ], - [ - "node10", - { - "#bigint": "100" - } - ], - [ - "node2", - { - "#bigint": "100" - } - ], - [ - "node3", - { - "#bigint": "100" - } - ], - [ - "node4", - { - "#bigint": "100" - } - ], - [ - "node5", - { - "#bigint": "100" - } - ], - [ - "node6", - { - "#bigint": "100" - } - ], - [ - "node7", - { - "#bigint": "100" - } - ], - [ - "node8", - { - "#bigint": "50" - } - ], - [ - "node9", - { - "#bigint": "100" - } - ] - ] - }, - { - "#map": [ - [ - "node1", - { - "#bigint": "100" - } - ], - [ - "node10", - { - "#bigint": "100" - } - ], - [ - "node2", - { - "#bigint": "100" - } - ], - [ - "node3", - { - "#bigint": "100" - } - ], - [ - "node4", - { - "#bigint": "100" - } - ], - [ - "node5", - { - "#bigint": "100" - } - ], - [ - "node6", - { - "#bigint": "100" - } - ], - [ - "node7", - { - "#bigint": "100" - } - ], - [ - "node8", - { - "#bigint": "100" - } - ], - [ - "node9", - { - "#bigint": "100" - } - ] - ] - } - ] - }, - "consumerStatus": { - "#map": [ - [ - "consumer1", - "not consumer" - ], - [ - "consumer2", - "not consumer" - ], - [ - "consumer3", - "running" - ] - ] - }, - "outstandingPacketsToConsumer": { - "#map": [ - [ - "consumer1", - [] - ], - [ - "consumer2", - [] - ], - [ - "consumer3", - [] - ] - ] - }, - "providerValidatorSetChangedInThisBlock": true, - "receivedMaturations": { - "#set": [] - }, - "runningVscId": { - "#bigint": "1" - }, - "sentVscPacketsToConsumer": { - "#map": [ - [ - "consumer1", - [] - ], - [ - "consumer2", - [] - ], - [ - "consumer3", - [ - { - "id": { - "#bigint": "0" - }, - "sendingTime": { - "#bigint": "1" - }, - "validatorSet": { - "#map": [ - [ - "node1", - { - "#bigint": "100" - } - ], - [ - "node10", - { - "#bigint": "100" - } - ], - [ - "node2", - { - "#bigint": "100" - } - ], - [ - "node3", - { - "#bigint": "100" - } - ], - [ - "node4", - { - "#bigint": "100" - } - ], - [ - "node5", - { - "#bigint": "100" - } - ], - [ - "node6", - { - "#bigint": "100" - } - ], - [ - "node7", - { - "#bigint": "100" - } - ], - [ - "node8", - { - "#bigint": "50" - } - ], - [ - "node9", - { - "#bigint": "100" - } - ] - ] - } - } - ] - ] - ] - } - } - }, - "params": { - "CcvTimeout": { - "#map": [ - [ - "consumer1", - { - "#bigint": "1814400" - } - ], - [ - "consumer2", - { - "#bigint": "1814400" - } - ], - [ - "consumer3", - { - "#bigint": "1814400" - } - ], - [ - "provider", - { - "#bigint": "1814400" - } - ] - ] - }, - "ConsumerChains": { - "#set": [ - "consumer1", - "consumer2", - "consumer3" - ] - }, - "InitialValidatorSet": { - "#map": [ - [ - "node1", - { - "#bigint": "100" - } - ], - [ - "node10", - { - "#bigint": "100" - } - ], - [ - "node2", - { - "#bigint": "100" - } - ], - [ - "node3", - { - "#bigint": "100" - } - ], - [ - "node4", - { - "#bigint": "100" - } - ], - [ - "node5", - { - "#bigint": "100" - } - ], - [ - "node6", - { - "#bigint": "100" - } - ], - [ - "node7", - { - "#bigint": "100" - } - ], - [ - "node8", - { - "#bigint": "100" - } - ], - [ - "node9", - { - "#bigint": "100" - } - ] - ] - }, - "Nodes": { - "#set": [ - "node1", - "node10", - "node2", - "node3", - "node4", - "node5", - "node6", - "node7", - "node8", - "node9" - ] - }, - "TrustingPeriodPerChain": { - "#map": [ - [ - "consumer1", - { - "#bigint": "604800" - } - ], - [ - "consumer2", - { - "#bigint": "604800" - } - ], - [ - "consumer3", - { - "#bigint": "604800" - } - ], - [ - "provider", - { - "#bigint": "604800" - } - ] - ] - }, - "UnbondingPeriodPerChain": { - "#map": [ - [ - "consumer1", - { - "#bigint": "1209600" - } - ], - [ - "consumer2", - { - "#bigint": "1209600" - } - ], - [ - "consumer3", - { - "#bigint": "1209600" - } - ], - [ - "provider", - { - "#bigint": "1209600" - } - ] - ] - }, - "VscTimeout": { - "#bigint": "3024000" - } - }, - "trace": [ - { - "changeAmount": { - "#bigint": "0" - }, - "consumerChain": "", - "consumersToStart": { - "#set": [] - }, - "consumersToStop": { - "#set": [] - }, - "kind": "init", - "timeAdvancement": { - "#bigint": "0" - }, - "validator": "" - }, - { - "changeAmount": { - "#bigint": "-50" - }, - "consumerChain": "", - "consumersToStart": { - "#set": [] - }, - "consumersToStop": { - "#set": [] - }, - "kind": "VotingPowerChange", - "timeAdvancement": { - "#bigint": "0" - }, - "validator": "node8" - }, - { - "changeAmount": { - "#bigint": "0" - }, - "consumerChain": "", - "consumersToStart": { - "#set": [ - "consumer3" - ] - }, - "consumersToStop": { - "#set": [] - }, - "kind": "EndAndBeginBlockForProvider", - "timeAdvancement": { - "#bigint": "1" - }, - "validator": "" - }, - { - "changeAmount": { - "#bigint": "0" - }, - "consumerChain": "consumer3", - "consumersToStart": { - "#set": [] - }, - "consumersToStop": { - "#set": [] - }, - "kind": "DeliverVscPacket", - "timeAdvancement": { - "#bigint": "0" - }, - "validator": "" - }, - { - "changeAmount": { - "#bigint": "50" - }, - "consumerChain": "", - "consumersToStart": { - "#set": [] - }, - "consumersToStop": { - "#set": [] - }, - "kind": "VotingPowerChange", - "timeAdvancement": { - "#bigint": "0" - }, - "validator": "node3" - }, - { - "changeAmount": { - "#bigint": "0" - }, - "consumerChain": "consumer3", - "consumersToStart": { - "#set": [] - }, - "consumersToStop": { - "#set": [] - }, - "kind": "EndAndBeginBlockForConsumer", - "timeAdvancement": { - "#bigint": "601200" - }, - "validator": "" - }, - { - "changeAmount": { - "#bigint": "0" - }, - "consumerChain": "consumer3", - "consumersToStart": { - "#set": [] - }, - "consumersToStop": { - "#set": [] - }, - "kind": "EndAndBeginBlockForConsumer", - "timeAdvancement": { - "#bigint": "601200" - }, - "validator": "" - }, - { - "changeAmount": { - "#bigint": "0" - }, - "consumerChain": "consumer3", - "consumersToStart": { - "#set": [] - }, - "consumersToStop": { - "#set": [] - }, - "kind": "EndAndBeginBlockForConsumer", - "timeAdvancement": { - "#bigint": "601200" - }, - "validator": "" - } - ] - } - ] -} \ No newline at end of file +{"#meta":{"format":"ITF","format-description":"https://apalache.informal.systems/docs/adr/015adr-trace.html","source":"ccv_happy.qnt","status":"violation","description":"Created by Quint on Thu Nov 16 2023 12:49:55 GMT+0100 (GMT+01:00)","timestamp":1700135395077},"vars":["QueuedEndBlocks","currentState","trace","params"],"states":[{"#meta":{"index":0},"currentState":{"consumerStates":{"#map":[["consumer1",{"chainState":{"currentValidatorSet":{"#map":[]},"lastTimestamp":{"#bigint":"0"},"votingPowerHistory":[]},"maturationTimes":[],"outstandingPacketsToProvider":[],"receivedVscPackets":[]}],["consumer2",{"chainState":{"currentValidatorSet":{"#map":[]},"lastTimestamp":{"#bigint":"0"},"votingPowerHistory":[]},"maturationTimes":[],"outstandingPacketsToProvider":[],"receivedVscPackets":[]}],["consumer3",{"chainState":{"currentValidatorSet":{"#map":[]},"lastTimestamp":{"#bigint":"0"},"votingPowerHistory":[]},"maturationTimes":[],"outstandingPacketsToProvider":[],"receivedVscPackets":[]}]]},"providerState":{"chainState":{"currentValidatorSet":{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},"lastTimestamp":{"#bigint":"0"},"votingPowerHistory":[{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]}]},"consumerStatus":{"#map":[["consumer1","not consumer"],["consumer2","not consumer"],["consumer3","not consumer"]]},"outstandingPacketsToConsumer":{"#map":[["consumer1",[]],["consumer2",[]],["consumer3",[]]]},"providerValidatorSetChangedInThisBlock":false,"receivedMaturations":{"#set":[]},"runningVscId":{"#bigint":"0"},"sentVscPacketsToConsumer":{"#map":[["consumer1",[]],["consumer2",[]],["consumer3",[]]]}}},"params":{"CcvTimeout":{"#map":[["consumer1",{"#bigint":"1814400"}],["consumer2",{"#bigint":"1814400"}],["consumer3",{"#bigint":"1814400"}],["provider",{"#bigint":"1814400"}]]},"ConsumerChains":{"#set":["consumer1","consumer2","consumer3"]},"InitialValidatorSet":{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},"Nodes":{"#set":["node1","node10","node2","node3","node4","node5","node6","node7","node8","node9"]},"TrustingPeriodPerChain":{"#map":[["consumer1",{"#bigint":"1206000"}],["consumer2",{"#bigint":"1206000"}],["consumer3",{"#bigint":"1206000"}],["provider",{"#bigint":"1206000"}]]},"UnbondingPeriodPerChain":{"#map":[["consumer1",{"#bigint":"1209600"}],["consumer2",{"#bigint":"1209600"}],["consumer3",{"#bigint":"1209600"}],["provider",{"#bigint":"1209600"}]]},"VscTimeout":{"#bigint":"3024000"}},"trace":[{"changeAmount":{"#bigint":"0"},"consumerChain":"","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"init","timeAdvancement":{"#bigint":"0"},"validator":""}]},{"#meta":{"index":1},"QueuedEndBlocks":[{"#tup":["consumer1",{"#bigint":"1"}]},{"#tup":["consumer2",{"#bigint":"1"}]},{"#tup":["consumer3",{"#bigint":"1"}]}],"currentState":{"consumerStates":{"#map":[["consumer1",{"chainState":{"currentValidatorSet":{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},"lastTimestamp":{"#bigint":"0"},"votingPowerHistory":[{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]}]},"maturationTimes":[],"outstandingPacketsToProvider":[],"receivedVscPackets":[]}],["consumer2",{"chainState":{"currentValidatorSet":{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},"lastTimestamp":{"#bigint":"0"},"votingPowerHistory":[{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]}]},"maturationTimes":[],"outstandingPacketsToProvider":[],"receivedVscPackets":[]}],["consumer3",{"chainState":{"currentValidatorSet":{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},"lastTimestamp":{"#bigint":"0"},"votingPowerHistory":[{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]}]},"maturationTimes":[],"outstandingPacketsToProvider":[],"receivedVscPackets":[]}]]},"providerState":{"chainState":{"currentValidatorSet":{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},"lastTimestamp":{"#bigint":"1"},"votingPowerHistory":[{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]}]},"consumerStatus":{"#map":[["consumer1","running"],["consumer2","running"],["consumer3","running"]]},"outstandingPacketsToConsumer":{"#map":[["consumer1",[]],["consumer2",[]],["consumer3",[]]]},"providerValidatorSetChangedInThisBlock":false,"receivedMaturations":{"#set":[]},"runningVscId":{"#bigint":"0"},"sentVscPacketsToConsumer":{"#map":[["consumer1",[]],["consumer2",[]],["consumer3",[]]]}}},"params":{"CcvTimeout":{"#map":[["consumer1",{"#bigint":"1814400"}],["consumer2",{"#bigint":"1814400"}],["consumer3",{"#bigint":"1814400"}],["provider",{"#bigint":"1814400"}]]},"ConsumerChains":{"#set":["consumer1","consumer2","consumer3"]},"InitialValidatorSet":{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},"Nodes":{"#set":["node1","node10","node2","node3","node4","node5","node6","node7","node8","node9"]},"TrustingPeriodPerChain":{"#map":[["consumer1",{"#bigint":"1206000"}],["consumer2",{"#bigint":"1206000"}],["consumer3",{"#bigint":"1206000"}],["provider",{"#bigint":"1206000"}]]},"UnbondingPeriodPerChain":{"#map":[["consumer1",{"#bigint":"1209600"}],["consumer2",{"#bigint":"1209600"}],["consumer3",{"#bigint":"1209600"}],["provider",{"#bigint":"1209600"}]]},"VscTimeout":{"#bigint":"3024000"}},"trace":[{"changeAmount":{"#bigint":"0"},"consumerChain":"","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"init","timeAdvancement":{"#bigint":"0"},"validator":""},{"changeAmount":{"#bigint":"0"},"consumerChain":"","consumersToStart":{"#set":["consumer1","consumer2","consumer3"]},"consumersToStop":{"#set":[]},"kind":"EndAndBeginBlockForProvider","timeAdvancement":{"#bigint":"1"},"validator":""}]},{"#meta":{"index":2},"QueuedEndBlocks":[{"#tup":["consumer2",{"#bigint":"1"}]},{"#tup":["consumer3",{"#bigint":"1"}]}],"currentState":{"consumerStates":{"#map":[["consumer1",{"chainState":{"currentValidatorSet":{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},"lastTimestamp":{"#bigint":"1"},"votingPowerHistory":[{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]}]},"maturationTimes":[],"outstandingPacketsToProvider":[],"receivedVscPackets":[]}],["consumer2",{"chainState":{"currentValidatorSet":{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},"lastTimestamp":{"#bigint":"0"},"votingPowerHistory":[{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]}]},"maturationTimes":[],"outstandingPacketsToProvider":[],"receivedVscPackets":[]}],["consumer3",{"chainState":{"currentValidatorSet":{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},"lastTimestamp":{"#bigint":"0"},"votingPowerHistory":[{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]}]},"maturationTimes":[],"outstandingPacketsToProvider":[],"receivedVscPackets":[]}]]},"providerState":{"chainState":{"currentValidatorSet":{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},"lastTimestamp":{"#bigint":"1"},"votingPowerHistory":[{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]}]},"consumerStatus":{"#map":[["consumer1","running"],["consumer2","running"],["consumer3","running"]]},"outstandingPacketsToConsumer":{"#map":[["consumer1",[]],["consumer2",[]],["consumer3",[]]]},"providerValidatorSetChangedInThisBlock":false,"receivedMaturations":{"#set":[]},"runningVscId":{"#bigint":"0"},"sentVscPacketsToConsumer":{"#map":[["consumer1",[]],["consumer2",[]],["consumer3",[]]]}}},"params":{"CcvTimeout":{"#map":[["consumer1",{"#bigint":"1814400"}],["consumer2",{"#bigint":"1814400"}],["consumer3",{"#bigint":"1814400"}],["provider",{"#bigint":"1814400"}]]},"ConsumerChains":{"#set":["consumer1","consumer2","consumer3"]},"InitialValidatorSet":{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},"Nodes":{"#set":["node1","node10","node2","node3","node4","node5","node6","node7","node8","node9"]},"TrustingPeriodPerChain":{"#map":[["consumer1",{"#bigint":"1206000"}],["consumer2",{"#bigint":"1206000"}],["consumer3",{"#bigint":"1206000"}],["provider",{"#bigint":"1206000"}]]},"UnbondingPeriodPerChain":{"#map":[["consumer1",{"#bigint":"1209600"}],["consumer2",{"#bigint":"1209600"}],["consumer3",{"#bigint":"1209600"}],["provider",{"#bigint":"1209600"}]]},"VscTimeout":{"#bigint":"3024000"}},"trace":[{"changeAmount":{"#bigint":"0"},"consumerChain":"","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"init","timeAdvancement":{"#bigint":"0"},"validator":""},{"changeAmount":{"#bigint":"0"},"consumerChain":"","consumersToStart":{"#set":["consumer1","consumer2","consumer3"]},"consumersToStop":{"#set":[]},"kind":"EndAndBeginBlockForProvider","timeAdvancement":{"#bigint":"1"},"validator":""},{"changeAmount":{"#bigint":"0"},"consumerChain":"consumer1","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"EndAndBeginBlockForConsumer","timeAdvancement":{"#bigint":"1"},"validator":""}]},{"#meta":{"index":3},"QueuedEndBlocks":[{"#tup":["consumer3",{"#bigint":"1"}]}],"currentState":{"consumerStates":{"#map":[["consumer1",{"chainState":{"currentValidatorSet":{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},"lastTimestamp":{"#bigint":"1"},"votingPowerHistory":[{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]}]},"maturationTimes":[],"outstandingPacketsToProvider":[],"receivedVscPackets":[]}],["consumer2",{"chainState":{"currentValidatorSet":{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},"lastTimestamp":{"#bigint":"1"},"votingPowerHistory":[{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]}]},"maturationTimes":[],"outstandingPacketsToProvider":[],"receivedVscPackets":[]}],["consumer3",{"chainState":{"currentValidatorSet":{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},"lastTimestamp":{"#bigint":"0"},"votingPowerHistory":[{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]}]},"maturationTimes":[],"outstandingPacketsToProvider":[],"receivedVscPackets":[]}]]},"providerState":{"chainState":{"currentValidatorSet":{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},"lastTimestamp":{"#bigint":"1"},"votingPowerHistory":[{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]}]},"consumerStatus":{"#map":[["consumer1","running"],["consumer2","running"],["consumer3","running"]]},"outstandingPacketsToConsumer":{"#map":[["consumer1",[]],["consumer2",[]],["consumer3",[]]]},"providerValidatorSetChangedInThisBlock":false,"receivedMaturations":{"#set":[]},"runningVscId":{"#bigint":"0"},"sentVscPacketsToConsumer":{"#map":[["consumer1",[]],["consumer2",[]],["consumer3",[]]]}}},"params":{"CcvTimeout":{"#map":[["consumer1",{"#bigint":"1814400"}],["consumer2",{"#bigint":"1814400"}],["consumer3",{"#bigint":"1814400"}],["provider",{"#bigint":"1814400"}]]},"ConsumerChains":{"#set":["consumer1","consumer2","consumer3"]},"InitialValidatorSet":{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},"Nodes":{"#set":["node1","node10","node2","node3","node4","node5","node6","node7","node8","node9"]},"TrustingPeriodPerChain":{"#map":[["consumer1",{"#bigint":"1206000"}],["consumer2",{"#bigint":"1206000"}],["consumer3",{"#bigint":"1206000"}],["provider",{"#bigint":"1206000"}]]},"UnbondingPeriodPerChain":{"#map":[["consumer1",{"#bigint":"1209600"}],["consumer2",{"#bigint":"1209600"}],["consumer3",{"#bigint":"1209600"}],["provider",{"#bigint":"1209600"}]]},"VscTimeout":{"#bigint":"3024000"}},"trace":[{"changeAmount":{"#bigint":"0"},"consumerChain":"","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"init","timeAdvancement":{"#bigint":"0"},"validator":""},{"changeAmount":{"#bigint":"0"},"consumerChain":"","consumersToStart":{"#set":["consumer1","consumer2","consumer3"]},"consumersToStop":{"#set":[]},"kind":"EndAndBeginBlockForProvider","timeAdvancement":{"#bigint":"1"},"validator":""},{"changeAmount":{"#bigint":"0"},"consumerChain":"consumer1","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"EndAndBeginBlockForConsumer","timeAdvancement":{"#bigint":"1"},"validator":""},{"changeAmount":{"#bigint":"0"},"consumerChain":"consumer2","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"EndAndBeginBlockForConsumer","timeAdvancement":{"#bigint":"1"},"validator":""}]},{"#meta":{"index":4},"QueuedEndBlocks":[],"currentState":{"consumerStates":{"#map":[["consumer1",{"chainState":{"currentValidatorSet":{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},"lastTimestamp":{"#bigint":"1"},"votingPowerHistory":[{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]}]},"maturationTimes":[],"outstandingPacketsToProvider":[],"receivedVscPackets":[]}],["consumer2",{"chainState":{"currentValidatorSet":{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},"lastTimestamp":{"#bigint":"1"},"votingPowerHistory":[{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]}]},"maturationTimes":[],"outstandingPacketsToProvider":[],"receivedVscPackets":[]}],["consumer3",{"chainState":{"currentValidatorSet":{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},"lastTimestamp":{"#bigint":"1"},"votingPowerHistory":[{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]}]},"maturationTimes":[],"outstandingPacketsToProvider":[],"receivedVscPackets":[]}]]},"providerState":{"chainState":{"currentValidatorSet":{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},"lastTimestamp":{"#bigint":"1"},"votingPowerHistory":[{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]}]},"consumerStatus":{"#map":[["consumer1","running"],["consumer2","running"],["consumer3","running"]]},"outstandingPacketsToConsumer":{"#map":[["consumer1",[]],["consumer2",[]],["consumer3",[]]]},"providerValidatorSetChangedInThisBlock":false,"receivedMaturations":{"#set":[]},"runningVscId":{"#bigint":"0"},"sentVscPacketsToConsumer":{"#map":[["consumer1",[]],["consumer2",[]],["consumer3",[]]]}}},"params":{"CcvTimeout":{"#map":[["consumer1",{"#bigint":"1814400"}],["consumer2",{"#bigint":"1814400"}],["consumer3",{"#bigint":"1814400"}],["provider",{"#bigint":"1814400"}]]},"ConsumerChains":{"#set":["consumer1","consumer2","consumer3"]},"InitialValidatorSet":{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},"Nodes":{"#set":["node1","node10","node2","node3","node4","node5","node6","node7","node8","node9"]},"TrustingPeriodPerChain":{"#map":[["consumer1",{"#bigint":"1206000"}],["consumer2",{"#bigint":"1206000"}],["consumer3",{"#bigint":"1206000"}],["provider",{"#bigint":"1206000"}]]},"UnbondingPeriodPerChain":{"#map":[["consumer1",{"#bigint":"1209600"}],["consumer2",{"#bigint":"1209600"}],["consumer3",{"#bigint":"1209600"}],["provider",{"#bigint":"1209600"}]]},"VscTimeout":{"#bigint":"3024000"}},"trace":[{"changeAmount":{"#bigint":"0"},"consumerChain":"","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"init","timeAdvancement":{"#bigint":"0"},"validator":""},{"changeAmount":{"#bigint":"0"},"consumerChain":"","consumersToStart":{"#set":["consumer1","consumer2","consumer3"]},"consumersToStop":{"#set":[]},"kind":"EndAndBeginBlockForProvider","timeAdvancement":{"#bigint":"1"},"validator":""},{"changeAmount":{"#bigint":"0"},"consumerChain":"consumer1","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"EndAndBeginBlockForConsumer","timeAdvancement":{"#bigint":"1"},"validator":""},{"changeAmount":{"#bigint":"0"},"consumerChain":"consumer2","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"EndAndBeginBlockForConsumer","timeAdvancement":{"#bigint":"1"},"validator":""},{"changeAmount":{"#bigint":"0"},"consumerChain":"consumer3","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"EndAndBeginBlockForConsumer","timeAdvancement":{"#bigint":"1"},"validator":""}]},{"#meta":{"index":5},"QueuedEndBlocks":[],"currentState":{"consumerStates":{"#map":[["consumer1",{"chainState":{"currentValidatorSet":{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},"lastTimestamp":{"#bigint":"1"},"votingPowerHistory":[{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]}]},"maturationTimes":[],"outstandingPacketsToProvider":[],"receivedVscPackets":[]}],["consumer2",{"chainState":{"currentValidatorSet":{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},"lastTimestamp":{"#bigint":"1"},"votingPowerHistory":[{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]}]},"maturationTimes":[],"outstandingPacketsToProvider":[],"receivedVscPackets":[]}],["consumer3",{"chainState":{"currentValidatorSet":{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},"lastTimestamp":{"#bigint":"1"},"votingPowerHistory":[{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]}]},"maturationTimes":[],"outstandingPacketsToProvider":[],"receivedVscPackets":[]}]]},"providerState":{"chainState":{"currentValidatorSet":{"#map":[["node1",{"#bigint":"50"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},"lastTimestamp":{"#bigint":"1"},"votingPowerHistory":[{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]}]},"consumerStatus":{"#map":[["consumer1","running"],["consumer2","running"],["consumer3","running"]]},"outstandingPacketsToConsumer":{"#map":[["consumer1",[]],["consumer2",[]],["consumer3",[]]]},"providerValidatorSetChangedInThisBlock":true,"receivedMaturations":{"#set":[]},"runningVscId":{"#bigint":"0"},"sentVscPacketsToConsumer":{"#map":[["consumer1",[]],["consumer2",[]],["consumer3",[]]]}}},"params":{"CcvTimeout":{"#map":[["consumer1",{"#bigint":"1814400"}],["consumer2",{"#bigint":"1814400"}],["consumer3",{"#bigint":"1814400"}],["provider",{"#bigint":"1814400"}]]},"ConsumerChains":{"#set":["consumer1","consumer2","consumer3"]},"InitialValidatorSet":{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},"Nodes":{"#set":["node1","node10","node2","node3","node4","node5","node6","node7","node8","node9"]},"TrustingPeriodPerChain":{"#map":[["consumer1",{"#bigint":"1206000"}],["consumer2",{"#bigint":"1206000"}],["consumer3",{"#bigint":"1206000"}],["provider",{"#bigint":"1206000"}]]},"UnbondingPeriodPerChain":{"#map":[["consumer1",{"#bigint":"1209600"}],["consumer2",{"#bigint":"1209600"}],["consumer3",{"#bigint":"1209600"}],["provider",{"#bigint":"1209600"}]]},"VscTimeout":{"#bigint":"3024000"}},"trace":[{"changeAmount":{"#bigint":"0"},"consumerChain":"","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"init","timeAdvancement":{"#bigint":"0"},"validator":""},{"changeAmount":{"#bigint":"0"},"consumerChain":"","consumersToStart":{"#set":["consumer1","consumer2","consumer3"]},"consumersToStop":{"#set":[]},"kind":"EndAndBeginBlockForProvider","timeAdvancement":{"#bigint":"1"},"validator":""},{"changeAmount":{"#bigint":"0"},"consumerChain":"consumer1","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"EndAndBeginBlockForConsumer","timeAdvancement":{"#bigint":"1"},"validator":""},{"changeAmount":{"#bigint":"0"},"consumerChain":"consumer2","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"EndAndBeginBlockForConsumer","timeAdvancement":{"#bigint":"1"},"validator":""},{"changeAmount":{"#bigint":"0"},"consumerChain":"consumer3","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"EndAndBeginBlockForConsumer","timeAdvancement":{"#bigint":"1"},"validator":""},{"changeAmount":{"#bigint":"-50"},"consumerChain":"","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"VotingPowerChange","timeAdvancement":{"#bigint":"0"},"validator":"node1"}]},{"#meta":{"index":6},"QueuedEndBlocks":[{"#tup":["consumer1",{"#bigint":"1"}]},{"#tup":["consumer2",{"#bigint":"1"}]},{"#tup":["consumer3",{"#bigint":"1"}]}],"currentState":{"consumerStates":{"#map":[["consumer1",{"chainState":{"currentValidatorSet":{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},"lastTimestamp":{"#bigint":"1"},"votingPowerHistory":[{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]}]},"maturationTimes":[],"outstandingPacketsToProvider":[],"receivedVscPackets":[]}],["consumer2",{"chainState":{"currentValidatorSet":{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},"lastTimestamp":{"#bigint":"1"},"votingPowerHistory":[{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]}]},"maturationTimes":[],"outstandingPacketsToProvider":[],"receivedVscPackets":[]}],["consumer3",{"chainState":{"currentValidatorSet":{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},"lastTimestamp":{"#bigint":"1"},"votingPowerHistory":[{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]}]},"maturationTimes":[],"outstandingPacketsToProvider":[],"receivedVscPackets":[]}]]},"providerState":{"chainState":{"currentValidatorSet":{"#map":[["node1",{"#bigint":"50"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},"lastTimestamp":{"#bigint":"2"},"votingPowerHistory":[{"#map":[["node1",{"#bigint":"50"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]}]},"consumerStatus":{"#map":[["consumer1","running"],["consumer2","running"],["consumer3","running"]]},"outstandingPacketsToConsumer":{"#map":[["consumer1",[{"id":{"#bigint":"0"},"sendingTime":{"#bigint":"2"},"validatorSet":{"#map":[["node1",{"#bigint":"50"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]}}]],["consumer2",[{"id":{"#bigint":"0"},"sendingTime":{"#bigint":"2"},"validatorSet":{"#map":[["node1",{"#bigint":"50"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]}}]],["consumer3",[{"id":{"#bigint":"0"},"sendingTime":{"#bigint":"2"},"validatorSet":{"#map":[["node1",{"#bigint":"50"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]}}]]]},"providerValidatorSetChangedInThisBlock":false,"receivedMaturations":{"#set":[]},"runningVscId":{"#bigint":"1"},"sentVscPacketsToConsumer":{"#map":[["consumer1",[{"id":{"#bigint":"0"},"sendingTime":{"#bigint":"2"},"validatorSet":{"#map":[["node1",{"#bigint":"50"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]}}]],["consumer2",[{"id":{"#bigint":"0"},"sendingTime":{"#bigint":"2"},"validatorSet":{"#map":[["node1",{"#bigint":"50"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]}}]],["consumer3",[{"id":{"#bigint":"0"},"sendingTime":{"#bigint":"2"},"validatorSet":{"#map":[["node1",{"#bigint":"50"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]}}]]]}}},"params":{"CcvTimeout":{"#map":[["consumer1",{"#bigint":"1814400"}],["consumer2",{"#bigint":"1814400"}],["consumer3",{"#bigint":"1814400"}],["provider",{"#bigint":"1814400"}]]},"ConsumerChains":{"#set":["consumer1","consumer2","consumer3"]},"InitialValidatorSet":{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},"Nodes":{"#set":["node1","node10","node2","node3","node4","node5","node6","node7","node8","node9"]},"TrustingPeriodPerChain":{"#map":[["consumer1",{"#bigint":"1206000"}],["consumer2",{"#bigint":"1206000"}],["consumer3",{"#bigint":"1206000"}],["provider",{"#bigint":"1206000"}]]},"UnbondingPeriodPerChain":{"#map":[["consumer1",{"#bigint":"1209600"}],["consumer2",{"#bigint":"1209600"}],["consumer3",{"#bigint":"1209600"}],["provider",{"#bigint":"1209600"}]]},"VscTimeout":{"#bigint":"3024000"}},"trace":[{"changeAmount":{"#bigint":"0"},"consumerChain":"","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"init","timeAdvancement":{"#bigint":"0"},"validator":""},{"changeAmount":{"#bigint":"0"},"consumerChain":"","consumersToStart":{"#set":["consumer1","consumer2","consumer3"]},"consumersToStop":{"#set":[]},"kind":"EndAndBeginBlockForProvider","timeAdvancement":{"#bigint":"1"},"validator":""},{"changeAmount":{"#bigint":"0"},"consumerChain":"consumer1","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"EndAndBeginBlockForConsumer","timeAdvancement":{"#bigint":"1"},"validator":""},{"changeAmount":{"#bigint":"0"},"consumerChain":"consumer2","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"EndAndBeginBlockForConsumer","timeAdvancement":{"#bigint":"1"},"validator":""},{"changeAmount":{"#bigint":"0"},"consumerChain":"consumer3","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"EndAndBeginBlockForConsumer","timeAdvancement":{"#bigint":"1"},"validator":""},{"changeAmount":{"#bigint":"-50"},"consumerChain":"","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"VotingPowerChange","timeAdvancement":{"#bigint":"0"},"validator":"node1"},{"changeAmount":{"#bigint":"0"},"consumerChain":"","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"EndAndBeginBlockForProvider","timeAdvancement":{"#bigint":"1"},"validator":""}]},{"#meta":{"index":7},"QueuedEndBlocks":[{"#tup":["consumer2",{"#bigint":"1"}]},{"#tup":["consumer3",{"#bigint":"1"}]}],"currentState":{"consumerStates":{"#map":[["consumer1",{"chainState":{"currentValidatorSet":{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},"lastTimestamp":{"#bigint":"2"},"votingPowerHistory":[{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]}]},"maturationTimes":[],"outstandingPacketsToProvider":[],"receivedVscPackets":[]}],["consumer2",{"chainState":{"currentValidatorSet":{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},"lastTimestamp":{"#bigint":"1"},"votingPowerHistory":[{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]}]},"maturationTimes":[],"outstandingPacketsToProvider":[],"receivedVscPackets":[]}],["consumer3",{"chainState":{"currentValidatorSet":{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},"lastTimestamp":{"#bigint":"1"},"votingPowerHistory":[{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]}]},"maturationTimes":[],"outstandingPacketsToProvider":[],"receivedVscPackets":[]}]]},"providerState":{"chainState":{"currentValidatorSet":{"#map":[["node1",{"#bigint":"50"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},"lastTimestamp":{"#bigint":"2"},"votingPowerHistory":[{"#map":[["node1",{"#bigint":"50"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]}]},"consumerStatus":{"#map":[["consumer1","running"],["consumer2","running"],["consumer3","running"]]},"outstandingPacketsToConsumer":{"#map":[["consumer1",[{"id":{"#bigint":"0"},"sendingTime":{"#bigint":"2"},"validatorSet":{"#map":[["node1",{"#bigint":"50"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]}}]],["consumer2",[{"id":{"#bigint":"0"},"sendingTime":{"#bigint":"2"},"validatorSet":{"#map":[["node1",{"#bigint":"50"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]}}]],["consumer3",[{"id":{"#bigint":"0"},"sendingTime":{"#bigint":"2"},"validatorSet":{"#map":[["node1",{"#bigint":"50"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]}}]]]},"providerValidatorSetChangedInThisBlock":false,"receivedMaturations":{"#set":[]},"runningVscId":{"#bigint":"1"},"sentVscPacketsToConsumer":{"#map":[["consumer1",[{"id":{"#bigint":"0"},"sendingTime":{"#bigint":"2"},"validatorSet":{"#map":[["node1",{"#bigint":"50"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]}}]],["consumer2",[{"id":{"#bigint":"0"},"sendingTime":{"#bigint":"2"},"validatorSet":{"#map":[["node1",{"#bigint":"50"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]}}]],["consumer3",[{"id":{"#bigint":"0"},"sendingTime":{"#bigint":"2"},"validatorSet":{"#map":[["node1",{"#bigint":"50"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]}}]]]}}},"params":{"CcvTimeout":{"#map":[["consumer1",{"#bigint":"1814400"}],["consumer2",{"#bigint":"1814400"}],["consumer3",{"#bigint":"1814400"}],["provider",{"#bigint":"1814400"}]]},"ConsumerChains":{"#set":["consumer1","consumer2","consumer3"]},"InitialValidatorSet":{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},"Nodes":{"#set":["node1","node10","node2","node3","node4","node5","node6","node7","node8","node9"]},"TrustingPeriodPerChain":{"#map":[["consumer1",{"#bigint":"1206000"}],["consumer2",{"#bigint":"1206000"}],["consumer3",{"#bigint":"1206000"}],["provider",{"#bigint":"1206000"}]]},"UnbondingPeriodPerChain":{"#map":[["consumer1",{"#bigint":"1209600"}],["consumer2",{"#bigint":"1209600"}],["consumer3",{"#bigint":"1209600"}],["provider",{"#bigint":"1209600"}]]},"VscTimeout":{"#bigint":"3024000"}},"trace":[{"changeAmount":{"#bigint":"0"},"consumerChain":"","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"init","timeAdvancement":{"#bigint":"0"},"validator":""},{"changeAmount":{"#bigint":"0"},"consumerChain":"","consumersToStart":{"#set":["consumer1","consumer2","consumer3"]},"consumersToStop":{"#set":[]},"kind":"EndAndBeginBlockForProvider","timeAdvancement":{"#bigint":"1"},"validator":""},{"changeAmount":{"#bigint":"0"},"consumerChain":"consumer1","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"EndAndBeginBlockForConsumer","timeAdvancement":{"#bigint":"1"},"validator":""},{"changeAmount":{"#bigint":"0"},"consumerChain":"consumer2","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"EndAndBeginBlockForConsumer","timeAdvancement":{"#bigint":"1"},"validator":""},{"changeAmount":{"#bigint":"0"},"consumerChain":"consumer3","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"EndAndBeginBlockForConsumer","timeAdvancement":{"#bigint":"1"},"validator":""},{"changeAmount":{"#bigint":"-50"},"consumerChain":"","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"VotingPowerChange","timeAdvancement":{"#bigint":"0"},"validator":"node1"},{"changeAmount":{"#bigint":"0"},"consumerChain":"","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"EndAndBeginBlockForProvider","timeAdvancement":{"#bigint":"1"},"validator":""},{"changeAmount":{"#bigint":"0"},"consumerChain":"consumer1","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"EndAndBeginBlockForConsumer","timeAdvancement":{"#bigint":"1"},"validator":""}]},{"#meta":{"index":8},"QueuedEndBlocks":[{"#tup":["consumer3",{"#bigint":"1"}]}],"currentState":{"consumerStates":{"#map":[["consumer1",{"chainState":{"currentValidatorSet":{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},"lastTimestamp":{"#bigint":"2"},"votingPowerHistory":[{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]}]},"maturationTimes":[],"outstandingPacketsToProvider":[],"receivedVscPackets":[]}],["consumer2",{"chainState":{"currentValidatorSet":{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},"lastTimestamp":{"#bigint":"2"},"votingPowerHistory":[{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]}]},"maturationTimes":[],"outstandingPacketsToProvider":[],"receivedVscPackets":[]}],["consumer3",{"chainState":{"currentValidatorSet":{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},"lastTimestamp":{"#bigint":"1"},"votingPowerHistory":[{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]}]},"maturationTimes":[],"outstandingPacketsToProvider":[],"receivedVscPackets":[]}]]},"providerState":{"chainState":{"currentValidatorSet":{"#map":[["node1",{"#bigint":"50"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},"lastTimestamp":{"#bigint":"2"},"votingPowerHistory":[{"#map":[["node1",{"#bigint":"50"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]}]},"consumerStatus":{"#map":[["consumer1","running"],["consumer2","running"],["consumer3","running"]]},"outstandingPacketsToConsumer":{"#map":[["consumer1",[{"id":{"#bigint":"0"},"sendingTime":{"#bigint":"2"},"validatorSet":{"#map":[["node1",{"#bigint":"50"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]}}]],["consumer2",[{"id":{"#bigint":"0"},"sendingTime":{"#bigint":"2"},"validatorSet":{"#map":[["node1",{"#bigint":"50"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]}}]],["consumer3",[{"id":{"#bigint":"0"},"sendingTime":{"#bigint":"2"},"validatorSet":{"#map":[["node1",{"#bigint":"50"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]}}]]]},"providerValidatorSetChangedInThisBlock":false,"receivedMaturations":{"#set":[]},"runningVscId":{"#bigint":"1"},"sentVscPacketsToConsumer":{"#map":[["consumer1",[{"id":{"#bigint":"0"},"sendingTime":{"#bigint":"2"},"validatorSet":{"#map":[["node1",{"#bigint":"50"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]}}]],["consumer2",[{"id":{"#bigint":"0"},"sendingTime":{"#bigint":"2"},"validatorSet":{"#map":[["node1",{"#bigint":"50"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]}}]],["consumer3",[{"id":{"#bigint":"0"},"sendingTime":{"#bigint":"2"},"validatorSet":{"#map":[["node1",{"#bigint":"50"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]}}]]]}}},"params":{"CcvTimeout":{"#map":[["consumer1",{"#bigint":"1814400"}],["consumer2",{"#bigint":"1814400"}],["consumer3",{"#bigint":"1814400"}],["provider",{"#bigint":"1814400"}]]},"ConsumerChains":{"#set":["consumer1","consumer2","consumer3"]},"InitialValidatorSet":{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},"Nodes":{"#set":["node1","node10","node2","node3","node4","node5","node6","node7","node8","node9"]},"TrustingPeriodPerChain":{"#map":[["consumer1",{"#bigint":"1206000"}],["consumer2",{"#bigint":"1206000"}],["consumer3",{"#bigint":"1206000"}],["provider",{"#bigint":"1206000"}]]},"UnbondingPeriodPerChain":{"#map":[["consumer1",{"#bigint":"1209600"}],["consumer2",{"#bigint":"1209600"}],["consumer3",{"#bigint":"1209600"}],["provider",{"#bigint":"1209600"}]]},"VscTimeout":{"#bigint":"3024000"}},"trace":[{"changeAmount":{"#bigint":"0"},"consumerChain":"","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"init","timeAdvancement":{"#bigint":"0"},"validator":""},{"changeAmount":{"#bigint":"0"},"consumerChain":"","consumersToStart":{"#set":["consumer1","consumer2","consumer3"]},"consumersToStop":{"#set":[]},"kind":"EndAndBeginBlockForProvider","timeAdvancement":{"#bigint":"1"},"validator":""},{"changeAmount":{"#bigint":"0"},"consumerChain":"consumer1","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"EndAndBeginBlockForConsumer","timeAdvancement":{"#bigint":"1"},"validator":""},{"changeAmount":{"#bigint":"0"},"consumerChain":"consumer2","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"EndAndBeginBlockForConsumer","timeAdvancement":{"#bigint":"1"},"validator":""},{"changeAmount":{"#bigint":"0"},"consumerChain":"consumer3","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"EndAndBeginBlockForConsumer","timeAdvancement":{"#bigint":"1"},"validator":""},{"changeAmount":{"#bigint":"-50"},"consumerChain":"","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"VotingPowerChange","timeAdvancement":{"#bigint":"0"},"validator":"node1"},{"changeAmount":{"#bigint":"0"},"consumerChain":"","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"EndAndBeginBlockForProvider","timeAdvancement":{"#bigint":"1"},"validator":""},{"changeAmount":{"#bigint":"0"},"consumerChain":"consumer1","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"EndAndBeginBlockForConsumer","timeAdvancement":{"#bigint":"1"},"validator":""},{"changeAmount":{"#bigint":"0"},"consumerChain":"consumer2","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"EndAndBeginBlockForConsumer","timeAdvancement":{"#bigint":"1"},"validator":""}]},{"#meta":{"index":9},"QueuedEndBlocks":[],"currentState":{"consumerStates":{"#map":[["consumer1",{"chainState":{"currentValidatorSet":{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},"lastTimestamp":{"#bigint":"2"},"votingPowerHistory":[{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]}]},"maturationTimes":[],"outstandingPacketsToProvider":[],"receivedVscPackets":[]}],["consumer2",{"chainState":{"currentValidatorSet":{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},"lastTimestamp":{"#bigint":"2"},"votingPowerHistory":[{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]}]},"maturationTimes":[],"outstandingPacketsToProvider":[],"receivedVscPackets":[]}],["consumer3",{"chainState":{"currentValidatorSet":{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},"lastTimestamp":{"#bigint":"2"},"votingPowerHistory":[{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]}]},"maturationTimes":[],"outstandingPacketsToProvider":[],"receivedVscPackets":[]}]]},"providerState":{"chainState":{"currentValidatorSet":{"#map":[["node1",{"#bigint":"50"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},"lastTimestamp":{"#bigint":"2"},"votingPowerHistory":[{"#map":[["node1",{"#bigint":"50"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]}]},"consumerStatus":{"#map":[["consumer1","running"],["consumer2","running"],["consumer3","running"]]},"outstandingPacketsToConsumer":{"#map":[["consumer1",[{"id":{"#bigint":"0"},"sendingTime":{"#bigint":"2"},"validatorSet":{"#map":[["node1",{"#bigint":"50"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]}}]],["consumer2",[{"id":{"#bigint":"0"},"sendingTime":{"#bigint":"2"},"validatorSet":{"#map":[["node1",{"#bigint":"50"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]}}]],["consumer3",[{"id":{"#bigint":"0"},"sendingTime":{"#bigint":"2"},"validatorSet":{"#map":[["node1",{"#bigint":"50"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]}}]]]},"providerValidatorSetChangedInThisBlock":false,"receivedMaturations":{"#set":[]},"runningVscId":{"#bigint":"1"},"sentVscPacketsToConsumer":{"#map":[["consumer1",[{"id":{"#bigint":"0"},"sendingTime":{"#bigint":"2"},"validatorSet":{"#map":[["node1",{"#bigint":"50"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]}}]],["consumer2",[{"id":{"#bigint":"0"},"sendingTime":{"#bigint":"2"},"validatorSet":{"#map":[["node1",{"#bigint":"50"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]}}]],["consumer3",[{"id":{"#bigint":"0"},"sendingTime":{"#bigint":"2"},"validatorSet":{"#map":[["node1",{"#bigint":"50"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]}}]]]}}},"params":{"CcvTimeout":{"#map":[["consumer1",{"#bigint":"1814400"}],["consumer2",{"#bigint":"1814400"}],["consumer3",{"#bigint":"1814400"}],["provider",{"#bigint":"1814400"}]]},"ConsumerChains":{"#set":["consumer1","consumer2","consumer3"]},"InitialValidatorSet":{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},"Nodes":{"#set":["node1","node10","node2","node3","node4","node5","node6","node7","node8","node9"]},"TrustingPeriodPerChain":{"#map":[["consumer1",{"#bigint":"1206000"}],["consumer2",{"#bigint":"1206000"}],["consumer3",{"#bigint":"1206000"}],["provider",{"#bigint":"1206000"}]]},"UnbondingPeriodPerChain":{"#map":[["consumer1",{"#bigint":"1209600"}],["consumer2",{"#bigint":"1209600"}],["consumer3",{"#bigint":"1209600"}],["provider",{"#bigint":"1209600"}]]},"VscTimeout":{"#bigint":"3024000"}},"trace":[{"changeAmount":{"#bigint":"0"},"consumerChain":"","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"init","timeAdvancement":{"#bigint":"0"},"validator":""},{"changeAmount":{"#bigint":"0"},"consumerChain":"","consumersToStart":{"#set":["consumer1","consumer2","consumer3"]},"consumersToStop":{"#set":[]},"kind":"EndAndBeginBlockForProvider","timeAdvancement":{"#bigint":"1"},"validator":""},{"changeAmount":{"#bigint":"0"},"consumerChain":"consumer1","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"EndAndBeginBlockForConsumer","timeAdvancement":{"#bigint":"1"},"validator":""},{"changeAmount":{"#bigint":"0"},"consumerChain":"consumer2","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"EndAndBeginBlockForConsumer","timeAdvancement":{"#bigint":"1"},"validator":""},{"changeAmount":{"#bigint":"0"},"consumerChain":"consumer3","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"EndAndBeginBlockForConsumer","timeAdvancement":{"#bigint":"1"},"validator":""},{"changeAmount":{"#bigint":"-50"},"consumerChain":"","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"VotingPowerChange","timeAdvancement":{"#bigint":"0"},"validator":"node1"},{"changeAmount":{"#bigint":"0"},"consumerChain":"","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"EndAndBeginBlockForProvider","timeAdvancement":{"#bigint":"1"},"validator":""},{"changeAmount":{"#bigint":"0"},"consumerChain":"consumer1","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"EndAndBeginBlockForConsumer","timeAdvancement":{"#bigint":"1"},"validator":""},{"changeAmount":{"#bigint":"0"},"consumerChain":"consumer2","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"EndAndBeginBlockForConsumer","timeAdvancement":{"#bigint":"1"},"validator":""},{"changeAmount":{"#bigint":"0"},"consumerChain":"consumer3","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"EndAndBeginBlockForConsumer","timeAdvancement":{"#bigint":"1"},"validator":""}]},{"#meta":{"index":10},"QueuedEndBlocks":[],"currentState":{"consumerStates":{"#map":[["consumer1",{"chainState":{"currentValidatorSet":{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},"lastTimestamp":{"#bigint":"2"},"votingPowerHistory":[{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]}]},"maturationTimes":[],"outstandingPacketsToProvider":[],"receivedVscPackets":[]}],["consumer2",{"chainState":{"currentValidatorSet":{"#map":[["node1",{"#bigint":"50"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},"lastTimestamp":{"#bigint":"2"},"votingPowerHistory":[{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]}]},"maturationTimes":[{"#tup":[{"id":{"#bigint":"0"},"sendingTime":{"#bigint":"2"},"validatorSet":{"#map":[["node1",{"#bigint":"50"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]}},{"#bigint":"1209602"}]}],"outstandingPacketsToProvider":[],"receivedVscPackets":[{"id":{"#bigint":"0"},"sendingTime":{"#bigint":"2"},"validatorSet":{"#map":[["node1",{"#bigint":"50"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]}}]}],["consumer3",{"chainState":{"currentValidatorSet":{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},"lastTimestamp":{"#bigint":"2"},"votingPowerHistory":[{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]}]},"maturationTimes":[],"outstandingPacketsToProvider":[],"receivedVscPackets":[]}]]},"providerState":{"chainState":{"currentValidatorSet":{"#map":[["node1",{"#bigint":"50"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},"lastTimestamp":{"#bigint":"2"},"votingPowerHistory":[{"#map":[["node1",{"#bigint":"50"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]}]},"consumerStatus":{"#map":[["consumer1","running"],["consumer2","running"],["consumer3","running"]]},"outstandingPacketsToConsumer":{"#map":[["consumer1",[{"id":{"#bigint":"0"},"sendingTime":{"#bigint":"2"},"validatorSet":{"#map":[["node1",{"#bigint":"50"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]}}]],["consumer2",[]],["consumer3",[{"id":{"#bigint":"0"},"sendingTime":{"#bigint":"2"},"validatorSet":{"#map":[["node1",{"#bigint":"50"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]}}]]]},"providerValidatorSetChangedInThisBlock":false,"receivedMaturations":{"#set":[]},"runningVscId":{"#bigint":"1"},"sentVscPacketsToConsumer":{"#map":[["consumer1",[{"id":{"#bigint":"0"},"sendingTime":{"#bigint":"2"},"validatorSet":{"#map":[["node1",{"#bigint":"50"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]}}]],["consumer2",[{"id":{"#bigint":"0"},"sendingTime":{"#bigint":"2"},"validatorSet":{"#map":[["node1",{"#bigint":"50"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]}}]],["consumer3",[{"id":{"#bigint":"0"},"sendingTime":{"#bigint":"2"},"validatorSet":{"#map":[["node1",{"#bigint":"50"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]}}]]]}}},"params":{"CcvTimeout":{"#map":[["consumer1",{"#bigint":"1814400"}],["consumer2",{"#bigint":"1814400"}],["consumer3",{"#bigint":"1814400"}],["provider",{"#bigint":"1814400"}]]},"ConsumerChains":{"#set":["consumer1","consumer2","consumer3"]},"InitialValidatorSet":{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},"Nodes":{"#set":["node1","node10","node2","node3","node4","node5","node6","node7","node8","node9"]},"TrustingPeriodPerChain":{"#map":[["consumer1",{"#bigint":"1206000"}],["consumer2",{"#bigint":"1206000"}],["consumer3",{"#bigint":"1206000"}],["provider",{"#bigint":"1206000"}]]},"UnbondingPeriodPerChain":{"#map":[["consumer1",{"#bigint":"1209600"}],["consumer2",{"#bigint":"1209600"}],["consumer3",{"#bigint":"1209600"}],["provider",{"#bigint":"1209600"}]]},"VscTimeout":{"#bigint":"3024000"}},"trace":[{"changeAmount":{"#bigint":"0"},"consumerChain":"","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"init","timeAdvancement":{"#bigint":"0"},"validator":""},{"changeAmount":{"#bigint":"0"},"consumerChain":"","consumersToStart":{"#set":["consumer1","consumer2","consumer3"]},"consumersToStop":{"#set":[]},"kind":"EndAndBeginBlockForProvider","timeAdvancement":{"#bigint":"1"},"validator":""},{"changeAmount":{"#bigint":"0"},"consumerChain":"consumer1","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"EndAndBeginBlockForConsumer","timeAdvancement":{"#bigint":"1"},"validator":""},{"changeAmount":{"#bigint":"0"},"consumerChain":"consumer2","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"EndAndBeginBlockForConsumer","timeAdvancement":{"#bigint":"1"},"validator":""},{"changeAmount":{"#bigint":"0"},"consumerChain":"consumer3","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"EndAndBeginBlockForConsumer","timeAdvancement":{"#bigint":"1"},"validator":""},{"changeAmount":{"#bigint":"-50"},"consumerChain":"","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"VotingPowerChange","timeAdvancement":{"#bigint":"0"},"validator":"node1"},{"changeAmount":{"#bigint":"0"},"consumerChain":"","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"EndAndBeginBlockForProvider","timeAdvancement":{"#bigint":"1"},"validator":""},{"changeAmount":{"#bigint":"0"},"consumerChain":"consumer1","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"EndAndBeginBlockForConsumer","timeAdvancement":{"#bigint":"1"},"validator":""},{"changeAmount":{"#bigint":"0"},"consumerChain":"consumer2","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"EndAndBeginBlockForConsumer","timeAdvancement":{"#bigint":"1"},"validator":""},{"changeAmount":{"#bigint":"0"},"consumerChain":"consumer3","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"EndAndBeginBlockForConsumer","timeAdvancement":{"#bigint":"1"},"validator":""},{"changeAmount":{"#bigint":"0"},"consumerChain":"consumer2","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"DeliverVscPacket","timeAdvancement":{"#bigint":"0"},"validator":""}]},{"#meta":{"index":11},"QueuedEndBlocks":[],"currentState":{"consumerStates":{"#map":[["consumer1",{"chainState":{"currentValidatorSet":{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},"lastTimestamp":{"#bigint":"2"},"votingPowerHistory":[{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]}]},"maturationTimes":[],"outstandingPacketsToProvider":[],"receivedVscPackets":[]}],["consumer2",{"chainState":{"currentValidatorSet":{"#map":[["node1",{"#bigint":"50"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},"lastTimestamp":{"#bigint":"2"},"votingPowerHistory":[{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]}]},"maturationTimes":[{"#tup":[{"id":{"#bigint":"0"},"sendingTime":{"#bigint":"2"},"validatorSet":{"#map":[["node1",{"#bigint":"50"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]}},{"#bigint":"1209602"}]}],"outstandingPacketsToProvider":[],"receivedVscPackets":[{"id":{"#bigint":"0"},"sendingTime":{"#bigint":"2"},"validatorSet":{"#map":[["node1",{"#bigint":"50"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]}}]}],["consumer3",{"chainState":{"currentValidatorSet":{"#map":[["node1",{"#bigint":"50"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},"lastTimestamp":{"#bigint":"2"},"votingPowerHistory":[{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]}]},"maturationTimes":[{"#tup":[{"id":{"#bigint":"0"},"sendingTime":{"#bigint":"2"},"validatorSet":{"#map":[["node1",{"#bigint":"50"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]}},{"#bigint":"1209602"}]}],"outstandingPacketsToProvider":[],"receivedVscPackets":[{"id":{"#bigint":"0"},"sendingTime":{"#bigint":"2"},"validatorSet":{"#map":[["node1",{"#bigint":"50"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]}}]}]]},"providerState":{"chainState":{"currentValidatorSet":{"#map":[["node1",{"#bigint":"50"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},"lastTimestamp":{"#bigint":"2"},"votingPowerHistory":[{"#map":[["node1",{"#bigint":"50"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]}]},"consumerStatus":{"#map":[["consumer1","running"],["consumer2","running"],["consumer3","running"]]},"outstandingPacketsToConsumer":{"#map":[["consumer1",[{"id":{"#bigint":"0"},"sendingTime":{"#bigint":"2"},"validatorSet":{"#map":[["node1",{"#bigint":"50"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]}}]],["consumer2",[]],["consumer3",[]]]},"providerValidatorSetChangedInThisBlock":false,"receivedMaturations":{"#set":[]},"runningVscId":{"#bigint":"1"},"sentVscPacketsToConsumer":{"#map":[["consumer1",[{"id":{"#bigint":"0"},"sendingTime":{"#bigint":"2"},"validatorSet":{"#map":[["node1",{"#bigint":"50"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]}}]],["consumer2",[{"id":{"#bigint":"0"},"sendingTime":{"#bigint":"2"},"validatorSet":{"#map":[["node1",{"#bigint":"50"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]}}]],["consumer3",[{"id":{"#bigint":"0"},"sendingTime":{"#bigint":"2"},"validatorSet":{"#map":[["node1",{"#bigint":"50"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]}}]]]}}},"params":{"CcvTimeout":{"#map":[["consumer1",{"#bigint":"1814400"}],["consumer2",{"#bigint":"1814400"}],["consumer3",{"#bigint":"1814400"}],["provider",{"#bigint":"1814400"}]]},"ConsumerChains":{"#set":["consumer1","consumer2","consumer3"]},"InitialValidatorSet":{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},"Nodes":{"#set":["node1","node10","node2","node3","node4","node5","node6","node7","node8","node9"]},"TrustingPeriodPerChain":{"#map":[["consumer1",{"#bigint":"1206000"}],["consumer2",{"#bigint":"1206000"}],["consumer3",{"#bigint":"1206000"}],["provider",{"#bigint":"1206000"}]]},"UnbondingPeriodPerChain":{"#map":[["consumer1",{"#bigint":"1209600"}],["consumer2",{"#bigint":"1209600"}],["consumer3",{"#bigint":"1209600"}],["provider",{"#bigint":"1209600"}]]},"VscTimeout":{"#bigint":"3024000"}},"trace":[{"changeAmount":{"#bigint":"0"},"consumerChain":"","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"init","timeAdvancement":{"#bigint":"0"},"validator":""},{"changeAmount":{"#bigint":"0"},"consumerChain":"","consumersToStart":{"#set":["consumer1","consumer2","consumer3"]},"consumersToStop":{"#set":[]},"kind":"EndAndBeginBlockForProvider","timeAdvancement":{"#bigint":"1"},"validator":""},{"changeAmount":{"#bigint":"0"},"consumerChain":"consumer1","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"EndAndBeginBlockForConsumer","timeAdvancement":{"#bigint":"1"},"validator":""},{"changeAmount":{"#bigint":"0"},"consumerChain":"consumer2","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"EndAndBeginBlockForConsumer","timeAdvancement":{"#bigint":"1"},"validator":""},{"changeAmount":{"#bigint":"0"},"consumerChain":"consumer3","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"EndAndBeginBlockForConsumer","timeAdvancement":{"#bigint":"1"},"validator":""},{"changeAmount":{"#bigint":"-50"},"consumerChain":"","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"VotingPowerChange","timeAdvancement":{"#bigint":"0"},"validator":"node1"},{"changeAmount":{"#bigint":"0"},"consumerChain":"","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"EndAndBeginBlockForProvider","timeAdvancement":{"#bigint":"1"},"validator":""},{"changeAmount":{"#bigint":"0"},"consumerChain":"consumer1","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"EndAndBeginBlockForConsumer","timeAdvancement":{"#bigint":"1"},"validator":""},{"changeAmount":{"#bigint":"0"},"consumerChain":"consumer2","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"EndAndBeginBlockForConsumer","timeAdvancement":{"#bigint":"1"},"validator":""},{"changeAmount":{"#bigint":"0"},"consumerChain":"consumer3","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"EndAndBeginBlockForConsumer","timeAdvancement":{"#bigint":"1"},"validator":""},{"changeAmount":{"#bigint":"0"},"consumerChain":"consumer2","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"DeliverVscPacket","timeAdvancement":{"#bigint":"0"},"validator":""},{"changeAmount":{"#bigint":"0"},"consumerChain":"consumer3","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"DeliverVscPacket","timeAdvancement":{"#bigint":"0"},"validator":""}]},{"#meta":{"index":12},"QueuedEndBlocks":[{"#tup":["consumer1",{"#bigint":"601200"}]},{"#tup":["consumer2",{"#bigint":"601200"}]},{"#tup":["consumer3",{"#bigint":"601200"}]}],"currentState":{"consumerStates":{"#map":[["consumer1",{"chainState":{"currentValidatorSet":{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},"lastTimestamp":{"#bigint":"2"},"votingPowerHistory":[{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]}]},"maturationTimes":[],"outstandingPacketsToProvider":[],"receivedVscPackets":[]}],["consumer2",{"chainState":{"currentValidatorSet":{"#map":[["node1",{"#bigint":"50"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},"lastTimestamp":{"#bigint":"2"},"votingPowerHistory":[{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]}]},"maturationTimes":[{"#tup":[{"id":{"#bigint":"0"},"sendingTime":{"#bigint":"2"},"validatorSet":{"#map":[["node1",{"#bigint":"50"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]}},{"#bigint":"1209602"}]}],"outstandingPacketsToProvider":[],"receivedVscPackets":[{"id":{"#bigint":"0"},"sendingTime":{"#bigint":"2"},"validatorSet":{"#map":[["node1",{"#bigint":"50"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]}}]}],["consumer3",{"chainState":{"currentValidatorSet":{"#map":[["node1",{"#bigint":"50"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},"lastTimestamp":{"#bigint":"2"},"votingPowerHistory":[{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]}]},"maturationTimes":[{"#tup":[{"id":{"#bigint":"0"},"sendingTime":{"#bigint":"2"},"validatorSet":{"#map":[["node1",{"#bigint":"50"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]}},{"#bigint":"1209602"}]}],"outstandingPacketsToProvider":[],"receivedVscPackets":[{"id":{"#bigint":"0"},"sendingTime":{"#bigint":"2"},"validatorSet":{"#map":[["node1",{"#bigint":"50"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]}}]}]]},"providerState":{"chainState":{"currentValidatorSet":{"#map":[["node1",{"#bigint":"50"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},"lastTimestamp":{"#bigint":"601202"},"votingPowerHistory":[{"#map":[["node1",{"#bigint":"50"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},{"#map":[["node1",{"#bigint":"50"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]}]},"consumerStatus":{"#map":[["consumer1","running"],["consumer2","running"],["consumer3","running"]]},"outstandingPacketsToConsumer":{"#map":[["consumer1",[{"id":{"#bigint":"0"},"sendingTime":{"#bigint":"2"},"validatorSet":{"#map":[["node1",{"#bigint":"50"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]}}]],["consumer2",[]],["consumer3",[]]]},"providerValidatorSetChangedInThisBlock":false,"receivedMaturations":{"#set":[]},"runningVscId":{"#bigint":"1"},"sentVscPacketsToConsumer":{"#map":[["consumer1",[{"id":{"#bigint":"0"},"sendingTime":{"#bigint":"2"},"validatorSet":{"#map":[["node1",{"#bigint":"50"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]}}]],["consumer2",[{"id":{"#bigint":"0"},"sendingTime":{"#bigint":"2"},"validatorSet":{"#map":[["node1",{"#bigint":"50"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]}}]],["consumer3",[{"id":{"#bigint":"0"},"sendingTime":{"#bigint":"2"},"validatorSet":{"#map":[["node1",{"#bigint":"50"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]}}]]]}}},"params":{"CcvTimeout":{"#map":[["consumer1",{"#bigint":"1814400"}],["consumer2",{"#bigint":"1814400"}],["consumer3",{"#bigint":"1814400"}],["provider",{"#bigint":"1814400"}]]},"ConsumerChains":{"#set":["consumer1","consumer2","consumer3"]},"InitialValidatorSet":{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},"Nodes":{"#set":["node1","node10","node2","node3","node4","node5","node6","node7","node8","node9"]},"TrustingPeriodPerChain":{"#map":[["consumer1",{"#bigint":"1206000"}],["consumer2",{"#bigint":"1206000"}],["consumer3",{"#bigint":"1206000"}],["provider",{"#bigint":"1206000"}]]},"UnbondingPeriodPerChain":{"#map":[["consumer1",{"#bigint":"1209600"}],["consumer2",{"#bigint":"1209600"}],["consumer3",{"#bigint":"1209600"}],["provider",{"#bigint":"1209600"}]]},"VscTimeout":{"#bigint":"3024000"}},"trace":[{"changeAmount":{"#bigint":"0"},"consumerChain":"","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"init","timeAdvancement":{"#bigint":"0"},"validator":""},{"changeAmount":{"#bigint":"0"},"consumerChain":"","consumersToStart":{"#set":["consumer1","consumer2","consumer3"]},"consumersToStop":{"#set":[]},"kind":"EndAndBeginBlockForProvider","timeAdvancement":{"#bigint":"1"},"validator":""},{"changeAmount":{"#bigint":"0"},"consumerChain":"consumer1","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"EndAndBeginBlockForConsumer","timeAdvancement":{"#bigint":"1"},"validator":""},{"changeAmount":{"#bigint":"0"},"consumerChain":"consumer2","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"EndAndBeginBlockForConsumer","timeAdvancement":{"#bigint":"1"},"validator":""},{"changeAmount":{"#bigint":"0"},"consumerChain":"consumer3","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"EndAndBeginBlockForConsumer","timeAdvancement":{"#bigint":"1"},"validator":""},{"changeAmount":{"#bigint":"-50"},"consumerChain":"","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"VotingPowerChange","timeAdvancement":{"#bigint":"0"},"validator":"node1"},{"changeAmount":{"#bigint":"0"},"consumerChain":"","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"EndAndBeginBlockForProvider","timeAdvancement":{"#bigint":"1"},"validator":""},{"changeAmount":{"#bigint":"0"},"consumerChain":"consumer1","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"EndAndBeginBlockForConsumer","timeAdvancement":{"#bigint":"1"},"validator":""},{"changeAmount":{"#bigint":"0"},"consumerChain":"consumer2","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"EndAndBeginBlockForConsumer","timeAdvancement":{"#bigint":"1"},"validator":""},{"changeAmount":{"#bigint":"0"},"consumerChain":"consumer3","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"EndAndBeginBlockForConsumer","timeAdvancement":{"#bigint":"1"},"validator":""},{"changeAmount":{"#bigint":"0"},"consumerChain":"consumer2","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"DeliverVscPacket","timeAdvancement":{"#bigint":"0"},"validator":""},{"changeAmount":{"#bigint":"0"},"consumerChain":"consumer3","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"DeliverVscPacket","timeAdvancement":{"#bigint":"0"},"validator":""},{"changeAmount":{"#bigint":"0"},"consumerChain":"","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"EndAndBeginBlockForProvider","timeAdvancement":{"#bigint":"601200"},"validator":""}]},{"#meta":{"index":13},"QueuedEndBlocks":[{"#tup":["consumer2",{"#bigint":"601200"}]},{"#tup":["consumer3",{"#bigint":"601200"}]}],"currentState":{"consumerStates":{"#map":[["consumer1",{"chainState":{"currentValidatorSet":{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},"lastTimestamp":{"#bigint":"601202"},"votingPowerHistory":[{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]}]},"maturationTimes":[],"outstandingPacketsToProvider":[],"receivedVscPackets":[]}],["consumer2",{"chainState":{"currentValidatorSet":{"#map":[["node1",{"#bigint":"50"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},"lastTimestamp":{"#bigint":"2"},"votingPowerHistory":[{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]}]},"maturationTimes":[{"#tup":[{"id":{"#bigint":"0"},"sendingTime":{"#bigint":"2"},"validatorSet":{"#map":[["node1",{"#bigint":"50"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]}},{"#bigint":"1209602"}]}],"outstandingPacketsToProvider":[],"receivedVscPackets":[{"id":{"#bigint":"0"},"sendingTime":{"#bigint":"2"},"validatorSet":{"#map":[["node1",{"#bigint":"50"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]}}]}],["consumer3",{"chainState":{"currentValidatorSet":{"#map":[["node1",{"#bigint":"50"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},"lastTimestamp":{"#bigint":"2"},"votingPowerHistory":[{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]}]},"maturationTimes":[{"#tup":[{"id":{"#bigint":"0"},"sendingTime":{"#bigint":"2"},"validatorSet":{"#map":[["node1",{"#bigint":"50"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]}},{"#bigint":"1209602"}]}],"outstandingPacketsToProvider":[],"receivedVscPackets":[{"id":{"#bigint":"0"},"sendingTime":{"#bigint":"2"},"validatorSet":{"#map":[["node1",{"#bigint":"50"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]}}]}]]},"providerState":{"chainState":{"currentValidatorSet":{"#map":[["node1",{"#bigint":"50"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},"lastTimestamp":{"#bigint":"601202"},"votingPowerHistory":[{"#map":[["node1",{"#bigint":"50"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},{"#map":[["node1",{"#bigint":"50"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]}]},"consumerStatus":{"#map":[["consumer1","running"],["consumer2","running"],["consumer3","running"]]},"outstandingPacketsToConsumer":{"#map":[["consumer1",[{"id":{"#bigint":"0"},"sendingTime":{"#bigint":"2"},"validatorSet":{"#map":[["node1",{"#bigint":"50"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]}}]],["consumer2",[]],["consumer3",[]]]},"providerValidatorSetChangedInThisBlock":false,"receivedMaturations":{"#set":[]},"runningVscId":{"#bigint":"1"},"sentVscPacketsToConsumer":{"#map":[["consumer1",[{"id":{"#bigint":"0"},"sendingTime":{"#bigint":"2"},"validatorSet":{"#map":[["node1",{"#bigint":"50"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]}}]],["consumer2",[{"id":{"#bigint":"0"},"sendingTime":{"#bigint":"2"},"validatorSet":{"#map":[["node1",{"#bigint":"50"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]}}]],["consumer3",[{"id":{"#bigint":"0"},"sendingTime":{"#bigint":"2"},"validatorSet":{"#map":[["node1",{"#bigint":"50"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]}}]]]}}},"params":{"CcvTimeout":{"#map":[["consumer1",{"#bigint":"1814400"}],["consumer2",{"#bigint":"1814400"}],["consumer3",{"#bigint":"1814400"}],["provider",{"#bigint":"1814400"}]]},"ConsumerChains":{"#set":["consumer1","consumer2","consumer3"]},"InitialValidatorSet":{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},"Nodes":{"#set":["node1","node10","node2","node3","node4","node5","node6","node7","node8","node9"]},"TrustingPeriodPerChain":{"#map":[["consumer1",{"#bigint":"1206000"}],["consumer2",{"#bigint":"1206000"}],["consumer3",{"#bigint":"1206000"}],["provider",{"#bigint":"1206000"}]]},"UnbondingPeriodPerChain":{"#map":[["consumer1",{"#bigint":"1209600"}],["consumer2",{"#bigint":"1209600"}],["consumer3",{"#bigint":"1209600"}],["provider",{"#bigint":"1209600"}]]},"VscTimeout":{"#bigint":"3024000"}},"trace":[{"changeAmount":{"#bigint":"0"},"consumerChain":"","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"init","timeAdvancement":{"#bigint":"0"},"validator":""},{"changeAmount":{"#bigint":"0"},"consumerChain":"","consumersToStart":{"#set":["consumer1","consumer2","consumer3"]},"consumersToStop":{"#set":[]},"kind":"EndAndBeginBlockForProvider","timeAdvancement":{"#bigint":"1"},"validator":""},{"changeAmount":{"#bigint":"0"},"consumerChain":"consumer1","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"EndAndBeginBlockForConsumer","timeAdvancement":{"#bigint":"1"},"validator":""},{"changeAmount":{"#bigint":"0"},"consumerChain":"consumer2","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"EndAndBeginBlockForConsumer","timeAdvancement":{"#bigint":"1"},"validator":""},{"changeAmount":{"#bigint":"0"},"consumerChain":"consumer3","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"EndAndBeginBlockForConsumer","timeAdvancement":{"#bigint":"1"},"validator":""},{"changeAmount":{"#bigint":"-50"},"consumerChain":"","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"VotingPowerChange","timeAdvancement":{"#bigint":"0"},"validator":"node1"},{"changeAmount":{"#bigint":"0"},"consumerChain":"","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"EndAndBeginBlockForProvider","timeAdvancement":{"#bigint":"1"},"validator":""},{"changeAmount":{"#bigint":"0"},"consumerChain":"consumer1","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"EndAndBeginBlockForConsumer","timeAdvancement":{"#bigint":"1"},"validator":""},{"changeAmount":{"#bigint":"0"},"consumerChain":"consumer2","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"EndAndBeginBlockForConsumer","timeAdvancement":{"#bigint":"1"},"validator":""},{"changeAmount":{"#bigint":"0"},"consumerChain":"consumer3","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"EndAndBeginBlockForConsumer","timeAdvancement":{"#bigint":"1"},"validator":""},{"changeAmount":{"#bigint":"0"},"consumerChain":"consumer2","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"DeliverVscPacket","timeAdvancement":{"#bigint":"0"},"validator":""},{"changeAmount":{"#bigint":"0"},"consumerChain":"consumer3","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"DeliverVscPacket","timeAdvancement":{"#bigint":"0"},"validator":""},{"changeAmount":{"#bigint":"0"},"consumerChain":"","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"EndAndBeginBlockForProvider","timeAdvancement":{"#bigint":"601200"},"validator":""},{"changeAmount":{"#bigint":"0"},"consumerChain":"consumer1","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"EndAndBeginBlockForConsumer","timeAdvancement":{"#bigint":"601200"},"validator":""}]},{"#meta":{"index":14},"QueuedEndBlocks":[{"#tup":["consumer3",{"#bigint":"601200"}]}],"currentState":{"consumerStates":{"#map":[["consumer1",{"chainState":{"currentValidatorSet":{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},"lastTimestamp":{"#bigint":"601202"},"votingPowerHistory":[{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]}]},"maturationTimes":[],"outstandingPacketsToProvider":[],"receivedVscPackets":[]}],["consumer2",{"chainState":{"currentValidatorSet":{"#map":[["node1",{"#bigint":"50"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},"lastTimestamp":{"#bigint":"601202"},"votingPowerHistory":[{"#map":[["node1",{"#bigint":"50"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]}]},"maturationTimes":[{"#tup":[{"id":{"#bigint":"0"},"sendingTime":{"#bigint":"2"},"validatorSet":{"#map":[["node1",{"#bigint":"50"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]}},{"#bigint":"1209602"}]}],"outstandingPacketsToProvider":[],"receivedVscPackets":[{"id":{"#bigint":"0"},"sendingTime":{"#bigint":"2"},"validatorSet":{"#map":[["node1",{"#bigint":"50"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]}}]}],["consumer3",{"chainState":{"currentValidatorSet":{"#map":[["node1",{"#bigint":"50"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},"lastTimestamp":{"#bigint":"2"},"votingPowerHistory":[{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]}]},"maturationTimes":[{"#tup":[{"id":{"#bigint":"0"},"sendingTime":{"#bigint":"2"},"validatorSet":{"#map":[["node1",{"#bigint":"50"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]}},{"#bigint":"1209602"}]}],"outstandingPacketsToProvider":[],"receivedVscPackets":[{"id":{"#bigint":"0"},"sendingTime":{"#bigint":"2"},"validatorSet":{"#map":[["node1",{"#bigint":"50"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]}}]}]]},"providerState":{"chainState":{"currentValidatorSet":{"#map":[["node1",{"#bigint":"50"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},"lastTimestamp":{"#bigint":"601202"},"votingPowerHistory":[{"#map":[["node1",{"#bigint":"50"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},{"#map":[["node1",{"#bigint":"50"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]}]},"consumerStatus":{"#map":[["consumer1","running"],["consumer2","running"],["consumer3","running"]]},"outstandingPacketsToConsumer":{"#map":[["consumer1",[{"id":{"#bigint":"0"},"sendingTime":{"#bigint":"2"},"validatorSet":{"#map":[["node1",{"#bigint":"50"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]}}]],["consumer2",[]],["consumer3",[]]]},"providerValidatorSetChangedInThisBlock":false,"receivedMaturations":{"#set":[]},"runningVscId":{"#bigint":"1"},"sentVscPacketsToConsumer":{"#map":[["consumer1",[{"id":{"#bigint":"0"},"sendingTime":{"#bigint":"2"},"validatorSet":{"#map":[["node1",{"#bigint":"50"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]}}]],["consumer2",[{"id":{"#bigint":"0"},"sendingTime":{"#bigint":"2"},"validatorSet":{"#map":[["node1",{"#bigint":"50"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]}}]],["consumer3",[{"id":{"#bigint":"0"},"sendingTime":{"#bigint":"2"},"validatorSet":{"#map":[["node1",{"#bigint":"50"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]}}]]]}}},"params":{"CcvTimeout":{"#map":[["consumer1",{"#bigint":"1814400"}],["consumer2",{"#bigint":"1814400"}],["consumer3",{"#bigint":"1814400"}],["provider",{"#bigint":"1814400"}]]},"ConsumerChains":{"#set":["consumer1","consumer2","consumer3"]},"InitialValidatorSet":{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},"Nodes":{"#set":["node1","node10","node2","node3","node4","node5","node6","node7","node8","node9"]},"TrustingPeriodPerChain":{"#map":[["consumer1",{"#bigint":"1206000"}],["consumer2",{"#bigint":"1206000"}],["consumer3",{"#bigint":"1206000"}],["provider",{"#bigint":"1206000"}]]},"UnbondingPeriodPerChain":{"#map":[["consumer1",{"#bigint":"1209600"}],["consumer2",{"#bigint":"1209600"}],["consumer3",{"#bigint":"1209600"}],["provider",{"#bigint":"1209600"}]]},"VscTimeout":{"#bigint":"3024000"}},"trace":[{"changeAmount":{"#bigint":"0"},"consumerChain":"","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"init","timeAdvancement":{"#bigint":"0"},"validator":""},{"changeAmount":{"#bigint":"0"},"consumerChain":"","consumersToStart":{"#set":["consumer1","consumer2","consumer3"]},"consumersToStop":{"#set":[]},"kind":"EndAndBeginBlockForProvider","timeAdvancement":{"#bigint":"1"},"validator":""},{"changeAmount":{"#bigint":"0"},"consumerChain":"consumer1","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"EndAndBeginBlockForConsumer","timeAdvancement":{"#bigint":"1"},"validator":""},{"changeAmount":{"#bigint":"0"},"consumerChain":"consumer2","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"EndAndBeginBlockForConsumer","timeAdvancement":{"#bigint":"1"},"validator":""},{"changeAmount":{"#bigint":"0"},"consumerChain":"consumer3","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"EndAndBeginBlockForConsumer","timeAdvancement":{"#bigint":"1"},"validator":""},{"changeAmount":{"#bigint":"-50"},"consumerChain":"","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"VotingPowerChange","timeAdvancement":{"#bigint":"0"},"validator":"node1"},{"changeAmount":{"#bigint":"0"},"consumerChain":"","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"EndAndBeginBlockForProvider","timeAdvancement":{"#bigint":"1"},"validator":""},{"changeAmount":{"#bigint":"0"},"consumerChain":"consumer1","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"EndAndBeginBlockForConsumer","timeAdvancement":{"#bigint":"1"},"validator":""},{"changeAmount":{"#bigint":"0"},"consumerChain":"consumer2","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"EndAndBeginBlockForConsumer","timeAdvancement":{"#bigint":"1"},"validator":""},{"changeAmount":{"#bigint":"0"},"consumerChain":"consumer3","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"EndAndBeginBlockForConsumer","timeAdvancement":{"#bigint":"1"},"validator":""},{"changeAmount":{"#bigint":"0"},"consumerChain":"consumer2","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"DeliverVscPacket","timeAdvancement":{"#bigint":"0"},"validator":""},{"changeAmount":{"#bigint":"0"},"consumerChain":"consumer3","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"DeliverVscPacket","timeAdvancement":{"#bigint":"0"},"validator":""},{"changeAmount":{"#bigint":"0"},"consumerChain":"","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"EndAndBeginBlockForProvider","timeAdvancement":{"#bigint":"601200"},"validator":""},{"changeAmount":{"#bigint":"0"},"consumerChain":"consumer1","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"EndAndBeginBlockForConsumer","timeAdvancement":{"#bigint":"601200"},"validator":""},{"changeAmount":{"#bigint":"0"},"consumerChain":"consumer2","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"EndAndBeginBlockForConsumer","timeAdvancement":{"#bigint":"601200"},"validator":""}]},{"#meta":{"index":15},"QueuedEndBlocks":[],"currentState":{"consumerStates":{"#map":[["consumer1",{"chainState":{"currentValidatorSet":{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},"lastTimestamp":{"#bigint":"601202"},"votingPowerHistory":[{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]}]},"maturationTimes":[],"outstandingPacketsToProvider":[],"receivedVscPackets":[]}],["consumer2",{"chainState":{"currentValidatorSet":{"#map":[["node1",{"#bigint":"50"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},"lastTimestamp":{"#bigint":"601202"},"votingPowerHistory":[{"#map":[["node1",{"#bigint":"50"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]}]},"maturationTimes":[{"#tup":[{"id":{"#bigint":"0"},"sendingTime":{"#bigint":"2"},"validatorSet":{"#map":[["node1",{"#bigint":"50"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]}},{"#bigint":"1209602"}]}],"outstandingPacketsToProvider":[],"receivedVscPackets":[{"id":{"#bigint":"0"},"sendingTime":{"#bigint":"2"},"validatorSet":{"#map":[["node1",{"#bigint":"50"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]}}]}],["consumer3",{"chainState":{"currentValidatorSet":{"#map":[["node1",{"#bigint":"50"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},"lastTimestamp":{"#bigint":"601202"},"votingPowerHistory":[{"#map":[["node1",{"#bigint":"50"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]}]},"maturationTimes":[{"#tup":[{"id":{"#bigint":"0"},"sendingTime":{"#bigint":"2"},"validatorSet":{"#map":[["node1",{"#bigint":"50"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]}},{"#bigint":"1209602"}]}],"outstandingPacketsToProvider":[],"receivedVscPackets":[{"id":{"#bigint":"0"},"sendingTime":{"#bigint":"2"},"validatorSet":{"#map":[["node1",{"#bigint":"50"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]}}]}]]},"providerState":{"chainState":{"currentValidatorSet":{"#map":[["node1",{"#bigint":"50"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},"lastTimestamp":{"#bigint":"601202"},"votingPowerHistory":[{"#map":[["node1",{"#bigint":"50"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},{"#map":[["node1",{"#bigint":"50"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]}]},"consumerStatus":{"#map":[["consumer1","running"],["consumer2","running"],["consumer3","running"]]},"outstandingPacketsToConsumer":{"#map":[["consumer1",[{"id":{"#bigint":"0"},"sendingTime":{"#bigint":"2"},"validatorSet":{"#map":[["node1",{"#bigint":"50"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]}}]],["consumer2",[]],["consumer3",[]]]},"providerValidatorSetChangedInThisBlock":false,"receivedMaturations":{"#set":[]},"runningVscId":{"#bigint":"1"},"sentVscPacketsToConsumer":{"#map":[["consumer1",[{"id":{"#bigint":"0"},"sendingTime":{"#bigint":"2"},"validatorSet":{"#map":[["node1",{"#bigint":"50"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]}}]],["consumer2",[{"id":{"#bigint":"0"},"sendingTime":{"#bigint":"2"},"validatorSet":{"#map":[["node1",{"#bigint":"50"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]}}]],["consumer3",[{"id":{"#bigint":"0"},"sendingTime":{"#bigint":"2"},"validatorSet":{"#map":[["node1",{"#bigint":"50"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]}}]]]}}},"params":{"CcvTimeout":{"#map":[["consumer1",{"#bigint":"1814400"}],["consumer2",{"#bigint":"1814400"}],["consumer3",{"#bigint":"1814400"}],["provider",{"#bigint":"1814400"}]]},"ConsumerChains":{"#set":["consumer1","consumer2","consumer3"]},"InitialValidatorSet":{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},"Nodes":{"#set":["node1","node10","node2","node3","node4","node5","node6","node7","node8","node9"]},"TrustingPeriodPerChain":{"#map":[["consumer1",{"#bigint":"1206000"}],["consumer2",{"#bigint":"1206000"}],["consumer3",{"#bigint":"1206000"}],["provider",{"#bigint":"1206000"}]]},"UnbondingPeriodPerChain":{"#map":[["consumer1",{"#bigint":"1209600"}],["consumer2",{"#bigint":"1209600"}],["consumer3",{"#bigint":"1209600"}],["provider",{"#bigint":"1209600"}]]},"VscTimeout":{"#bigint":"3024000"}},"trace":[{"changeAmount":{"#bigint":"0"},"consumerChain":"","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"init","timeAdvancement":{"#bigint":"0"},"validator":""},{"changeAmount":{"#bigint":"0"},"consumerChain":"","consumersToStart":{"#set":["consumer1","consumer2","consumer3"]},"consumersToStop":{"#set":[]},"kind":"EndAndBeginBlockForProvider","timeAdvancement":{"#bigint":"1"},"validator":""},{"changeAmount":{"#bigint":"0"},"consumerChain":"consumer1","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"EndAndBeginBlockForConsumer","timeAdvancement":{"#bigint":"1"},"validator":""},{"changeAmount":{"#bigint":"0"},"consumerChain":"consumer2","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"EndAndBeginBlockForConsumer","timeAdvancement":{"#bigint":"1"},"validator":""},{"changeAmount":{"#bigint":"0"},"consumerChain":"consumer3","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"EndAndBeginBlockForConsumer","timeAdvancement":{"#bigint":"1"},"validator":""},{"changeAmount":{"#bigint":"-50"},"consumerChain":"","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"VotingPowerChange","timeAdvancement":{"#bigint":"0"},"validator":"node1"},{"changeAmount":{"#bigint":"0"},"consumerChain":"","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"EndAndBeginBlockForProvider","timeAdvancement":{"#bigint":"1"},"validator":""},{"changeAmount":{"#bigint":"0"},"consumerChain":"consumer1","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"EndAndBeginBlockForConsumer","timeAdvancement":{"#bigint":"1"},"validator":""},{"changeAmount":{"#bigint":"0"},"consumerChain":"consumer2","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"EndAndBeginBlockForConsumer","timeAdvancement":{"#bigint":"1"},"validator":""},{"changeAmount":{"#bigint":"0"},"consumerChain":"consumer3","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"EndAndBeginBlockForConsumer","timeAdvancement":{"#bigint":"1"},"validator":""},{"changeAmount":{"#bigint":"0"},"consumerChain":"consumer2","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"DeliverVscPacket","timeAdvancement":{"#bigint":"0"},"validator":""},{"changeAmount":{"#bigint":"0"},"consumerChain":"consumer3","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"DeliverVscPacket","timeAdvancement":{"#bigint":"0"},"validator":""},{"changeAmount":{"#bigint":"0"},"consumerChain":"","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"EndAndBeginBlockForProvider","timeAdvancement":{"#bigint":"601200"},"validator":""},{"changeAmount":{"#bigint":"0"},"consumerChain":"consumer1","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"EndAndBeginBlockForConsumer","timeAdvancement":{"#bigint":"601200"},"validator":""},{"changeAmount":{"#bigint":"0"},"consumerChain":"consumer2","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"EndAndBeginBlockForConsumer","timeAdvancement":{"#bigint":"601200"},"validator":""},{"changeAmount":{"#bigint":"0"},"consumerChain":"consumer3","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"EndAndBeginBlockForConsumer","timeAdvancement":{"#bigint":"601200"},"validator":""}]},{"#meta":{"index":16},"QueuedEndBlocks":[{"#tup":["consumer1",{"#bigint":"601200"}]},{"#tup":["consumer2",{"#bigint":"601200"}]},{"#tup":["consumer3",{"#bigint":"601200"}]}],"currentState":{"consumerStates":{"#map":[["consumer1",{"chainState":{"currentValidatorSet":{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},"lastTimestamp":{"#bigint":"601202"},"votingPowerHistory":[{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]}]},"maturationTimes":[],"outstandingPacketsToProvider":[],"receivedVscPackets":[]}],["consumer2",{"chainState":{"currentValidatorSet":{"#map":[["node1",{"#bigint":"50"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},"lastTimestamp":{"#bigint":"601202"},"votingPowerHistory":[{"#map":[["node1",{"#bigint":"50"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]}]},"maturationTimes":[{"#tup":[{"id":{"#bigint":"0"},"sendingTime":{"#bigint":"2"},"validatorSet":{"#map":[["node1",{"#bigint":"50"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]}},{"#bigint":"1209602"}]}],"outstandingPacketsToProvider":[],"receivedVscPackets":[{"id":{"#bigint":"0"},"sendingTime":{"#bigint":"2"},"validatorSet":{"#map":[["node1",{"#bigint":"50"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]}}]}],["consumer3",{"chainState":{"currentValidatorSet":{"#map":[["node1",{"#bigint":"50"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},"lastTimestamp":{"#bigint":"601202"},"votingPowerHistory":[{"#map":[["node1",{"#bigint":"50"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]}]},"maturationTimes":[{"#tup":[{"id":{"#bigint":"0"},"sendingTime":{"#bigint":"2"},"validatorSet":{"#map":[["node1",{"#bigint":"50"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]}},{"#bigint":"1209602"}]}],"outstandingPacketsToProvider":[],"receivedVscPackets":[{"id":{"#bigint":"0"},"sendingTime":{"#bigint":"2"},"validatorSet":{"#map":[["node1",{"#bigint":"50"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]}}]}]]},"providerState":{"chainState":{"currentValidatorSet":{"#map":[["node1",{"#bigint":"50"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},"lastTimestamp":{"#bigint":"1202402"},"votingPowerHistory":[{"#map":[["node1",{"#bigint":"50"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},{"#map":[["node1",{"#bigint":"50"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},{"#map":[["node1",{"#bigint":"50"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]}]},"consumerStatus":{"#map":[["consumer1","running"],["consumer2","running"],["consumer3","running"]]},"outstandingPacketsToConsumer":{"#map":[["consumer1",[{"id":{"#bigint":"0"},"sendingTime":{"#bigint":"2"},"validatorSet":{"#map":[["node1",{"#bigint":"50"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]}}]],["consumer2",[]],["consumer3",[]]]},"providerValidatorSetChangedInThisBlock":false,"receivedMaturations":{"#set":[]},"runningVscId":{"#bigint":"1"},"sentVscPacketsToConsumer":{"#map":[["consumer1",[{"id":{"#bigint":"0"},"sendingTime":{"#bigint":"2"},"validatorSet":{"#map":[["node1",{"#bigint":"50"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]}}]],["consumer2",[{"id":{"#bigint":"0"},"sendingTime":{"#bigint":"2"},"validatorSet":{"#map":[["node1",{"#bigint":"50"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]}}]],["consumer3",[{"id":{"#bigint":"0"},"sendingTime":{"#bigint":"2"},"validatorSet":{"#map":[["node1",{"#bigint":"50"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]}}]]]}}},"params":{"CcvTimeout":{"#map":[["consumer1",{"#bigint":"1814400"}],["consumer2",{"#bigint":"1814400"}],["consumer3",{"#bigint":"1814400"}],["provider",{"#bigint":"1814400"}]]},"ConsumerChains":{"#set":["consumer1","consumer2","consumer3"]},"InitialValidatorSet":{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},"Nodes":{"#set":["node1","node10","node2","node3","node4","node5","node6","node7","node8","node9"]},"TrustingPeriodPerChain":{"#map":[["consumer1",{"#bigint":"1206000"}],["consumer2",{"#bigint":"1206000"}],["consumer3",{"#bigint":"1206000"}],["provider",{"#bigint":"1206000"}]]},"UnbondingPeriodPerChain":{"#map":[["consumer1",{"#bigint":"1209600"}],["consumer2",{"#bigint":"1209600"}],["consumer3",{"#bigint":"1209600"}],["provider",{"#bigint":"1209600"}]]},"VscTimeout":{"#bigint":"3024000"}},"trace":[{"changeAmount":{"#bigint":"0"},"consumerChain":"","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"init","timeAdvancement":{"#bigint":"0"},"validator":""},{"changeAmount":{"#bigint":"0"},"consumerChain":"","consumersToStart":{"#set":["consumer1","consumer2","consumer3"]},"consumersToStop":{"#set":[]},"kind":"EndAndBeginBlockForProvider","timeAdvancement":{"#bigint":"1"},"validator":""},{"changeAmount":{"#bigint":"0"},"consumerChain":"consumer1","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"EndAndBeginBlockForConsumer","timeAdvancement":{"#bigint":"1"},"validator":""},{"changeAmount":{"#bigint":"0"},"consumerChain":"consumer2","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"EndAndBeginBlockForConsumer","timeAdvancement":{"#bigint":"1"},"validator":""},{"changeAmount":{"#bigint":"0"},"consumerChain":"consumer3","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"EndAndBeginBlockForConsumer","timeAdvancement":{"#bigint":"1"},"validator":""},{"changeAmount":{"#bigint":"-50"},"consumerChain":"","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"VotingPowerChange","timeAdvancement":{"#bigint":"0"},"validator":"node1"},{"changeAmount":{"#bigint":"0"},"consumerChain":"","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"EndAndBeginBlockForProvider","timeAdvancement":{"#bigint":"1"},"validator":""},{"changeAmount":{"#bigint":"0"},"consumerChain":"consumer1","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"EndAndBeginBlockForConsumer","timeAdvancement":{"#bigint":"1"},"validator":""},{"changeAmount":{"#bigint":"0"},"consumerChain":"consumer2","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"EndAndBeginBlockForConsumer","timeAdvancement":{"#bigint":"1"},"validator":""},{"changeAmount":{"#bigint":"0"},"consumerChain":"consumer3","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"EndAndBeginBlockForConsumer","timeAdvancement":{"#bigint":"1"},"validator":""},{"changeAmount":{"#bigint":"0"},"consumerChain":"consumer2","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"DeliverVscPacket","timeAdvancement":{"#bigint":"0"},"validator":""},{"changeAmount":{"#bigint":"0"},"consumerChain":"consumer3","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"DeliverVscPacket","timeAdvancement":{"#bigint":"0"},"validator":""},{"changeAmount":{"#bigint":"0"},"consumerChain":"","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"EndAndBeginBlockForProvider","timeAdvancement":{"#bigint":"601200"},"validator":""},{"changeAmount":{"#bigint":"0"},"consumerChain":"consumer1","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"EndAndBeginBlockForConsumer","timeAdvancement":{"#bigint":"601200"},"validator":""},{"changeAmount":{"#bigint":"0"},"consumerChain":"consumer2","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"EndAndBeginBlockForConsumer","timeAdvancement":{"#bigint":"601200"},"validator":""},{"changeAmount":{"#bigint":"0"},"consumerChain":"consumer3","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"EndAndBeginBlockForConsumer","timeAdvancement":{"#bigint":"601200"},"validator":""},{"changeAmount":{"#bigint":"0"},"consumerChain":"","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"EndAndBeginBlockForProvider","timeAdvancement":{"#bigint":"601200"},"validator":""}]},{"#meta":{"index":17},"QueuedEndBlocks":[{"#tup":["consumer2",{"#bigint":"601200"}]},{"#tup":["consumer3",{"#bigint":"601200"}]}],"currentState":{"consumerStates":{"#map":[["consumer1",{"chainState":{"currentValidatorSet":{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},"lastTimestamp":{"#bigint":"1202402"},"votingPowerHistory":[{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]}]},"maturationTimes":[],"outstandingPacketsToProvider":[],"receivedVscPackets":[]}],["consumer2",{"chainState":{"currentValidatorSet":{"#map":[["node1",{"#bigint":"50"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},"lastTimestamp":{"#bigint":"601202"},"votingPowerHistory":[{"#map":[["node1",{"#bigint":"50"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]}]},"maturationTimes":[{"#tup":[{"id":{"#bigint":"0"},"sendingTime":{"#bigint":"2"},"validatorSet":{"#map":[["node1",{"#bigint":"50"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]}},{"#bigint":"1209602"}]}],"outstandingPacketsToProvider":[],"receivedVscPackets":[{"id":{"#bigint":"0"},"sendingTime":{"#bigint":"2"},"validatorSet":{"#map":[["node1",{"#bigint":"50"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]}}]}],["consumer3",{"chainState":{"currentValidatorSet":{"#map":[["node1",{"#bigint":"50"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},"lastTimestamp":{"#bigint":"601202"},"votingPowerHistory":[{"#map":[["node1",{"#bigint":"50"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]}]},"maturationTimes":[{"#tup":[{"id":{"#bigint":"0"},"sendingTime":{"#bigint":"2"},"validatorSet":{"#map":[["node1",{"#bigint":"50"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]}},{"#bigint":"1209602"}]}],"outstandingPacketsToProvider":[],"receivedVscPackets":[{"id":{"#bigint":"0"},"sendingTime":{"#bigint":"2"},"validatorSet":{"#map":[["node1",{"#bigint":"50"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]}}]}]]},"providerState":{"chainState":{"currentValidatorSet":{"#map":[["node1",{"#bigint":"50"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},"lastTimestamp":{"#bigint":"1202402"},"votingPowerHistory":[{"#map":[["node1",{"#bigint":"50"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},{"#map":[["node1",{"#bigint":"50"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},{"#map":[["node1",{"#bigint":"50"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]}]},"consumerStatus":{"#map":[["consumer1","running"],["consumer2","running"],["consumer3","running"]]},"outstandingPacketsToConsumer":{"#map":[["consumer1",[{"id":{"#bigint":"0"},"sendingTime":{"#bigint":"2"},"validatorSet":{"#map":[["node1",{"#bigint":"50"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]}}]],["consumer2",[]],["consumer3",[]]]},"providerValidatorSetChangedInThisBlock":false,"receivedMaturations":{"#set":[]},"runningVscId":{"#bigint":"1"},"sentVscPacketsToConsumer":{"#map":[["consumer1",[{"id":{"#bigint":"0"},"sendingTime":{"#bigint":"2"},"validatorSet":{"#map":[["node1",{"#bigint":"50"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]}}]],["consumer2",[{"id":{"#bigint":"0"},"sendingTime":{"#bigint":"2"},"validatorSet":{"#map":[["node1",{"#bigint":"50"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]}}]],["consumer3",[{"id":{"#bigint":"0"},"sendingTime":{"#bigint":"2"},"validatorSet":{"#map":[["node1",{"#bigint":"50"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]}}]]]}}},"params":{"CcvTimeout":{"#map":[["consumer1",{"#bigint":"1814400"}],["consumer2",{"#bigint":"1814400"}],["consumer3",{"#bigint":"1814400"}],["provider",{"#bigint":"1814400"}]]},"ConsumerChains":{"#set":["consumer1","consumer2","consumer3"]},"InitialValidatorSet":{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},"Nodes":{"#set":["node1","node10","node2","node3","node4","node5","node6","node7","node8","node9"]},"TrustingPeriodPerChain":{"#map":[["consumer1",{"#bigint":"1206000"}],["consumer2",{"#bigint":"1206000"}],["consumer3",{"#bigint":"1206000"}],["provider",{"#bigint":"1206000"}]]},"UnbondingPeriodPerChain":{"#map":[["consumer1",{"#bigint":"1209600"}],["consumer2",{"#bigint":"1209600"}],["consumer3",{"#bigint":"1209600"}],["provider",{"#bigint":"1209600"}]]},"VscTimeout":{"#bigint":"3024000"}},"trace":[{"changeAmount":{"#bigint":"0"},"consumerChain":"","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"init","timeAdvancement":{"#bigint":"0"},"validator":""},{"changeAmount":{"#bigint":"0"},"consumerChain":"","consumersToStart":{"#set":["consumer1","consumer2","consumer3"]},"consumersToStop":{"#set":[]},"kind":"EndAndBeginBlockForProvider","timeAdvancement":{"#bigint":"1"},"validator":""},{"changeAmount":{"#bigint":"0"},"consumerChain":"consumer1","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"EndAndBeginBlockForConsumer","timeAdvancement":{"#bigint":"1"},"validator":""},{"changeAmount":{"#bigint":"0"},"consumerChain":"consumer2","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"EndAndBeginBlockForConsumer","timeAdvancement":{"#bigint":"1"},"validator":""},{"changeAmount":{"#bigint":"0"},"consumerChain":"consumer3","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"EndAndBeginBlockForConsumer","timeAdvancement":{"#bigint":"1"},"validator":""},{"changeAmount":{"#bigint":"-50"},"consumerChain":"","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"VotingPowerChange","timeAdvancement":{"#bigint":"0"},"validator":"node1"},{"changeAmount":{"#bigint":"0"},"consumerChain":"","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"EndAndBeginBlockForProvider","timeAdvancement":{"#bigint":"1"},"validator":""},{"changeAmount":{"#bigint":"0"},"consumerChain":"consumer1","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"EndAndBeginBlockForConsumer","timeAdvancement":{"#bigint":"1"},"validator":""},{"changeAmount":{"#bigint":"0"},"consumerChain":"consumer2","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"EndAndBeginBlockForConsumer","timeAdvancement":{"#bigint":"1"},"validator":""},{"changeAmount":{"#bigint":"0"},"consumerChain":"consumer3","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"EndAndBeginBlockForConsumer","timeAdvancement":{"#bigint":"1"},"validator":""},{"changeAmount":{"#bigint":"0"},"consumerChain":"consumer2","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"DeliverVscPacket","timeAdvancement":{"#bigint":"0"},"validator":""},{"changeAmount":{"#bigint":"0"},"consumerChain":"consumer3","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"DeliverVscPacket","timeAdvancement":{"#bigint":"0"},"validator":""},{"changeAmount":{"#bigint":"0"},"consumerChain":"","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"EndAndBeginBlockForProvider","timeAdvancement":{"#bigint":"601200"},"validator":""},{"changeAmount":{"#bigint":"0"},"consumerChain":"consumer1","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"EndAndBeginBlockForConsumer","timeAdvancement":{"#bigint":"601200"},"validator":""},{"changeAmount":{"#bigint":"0"},"consumerChain":"consumer2","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"EndAndBeginBlockForConsumer","timeAdvancement":{"#bigint":"601200"},"validator":""},{"changeAmount":{"#bigint":"0"},"consumerChain":"consumer3","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"EndAndBeginBlockForConsumer","timeAdvancement":{"#bigint":"601200"},"validator":""},{"changeAmount":{"#bigint":"0"},"consumerChain":"","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"EndAndBeginBlockForProvider","timeAdvancement":{"#bigint":"601200"},"validator":""},{"changeAmount":{"#bigint":"0"},"consumerChain":"consumer1","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"EndAndBeginBlockForConsumer","timeAdvancement":{"#bigint":"601200"},"validator":""}]},{"#meta":{"index":18},"QueuedEndBlocks":[{"#tup":["consumer3",{"#bigint":"601200"}]}],"currentState":{"consumerStates":{"#map":[["consumer1",{"chainState":{"currentValidatorSet":{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},"lastTimestamp":{"#bigint":"1202402"},"votingPowerHistory":[{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]}]},"maturationTimes":[],"outstandingPacketsToProvider":[],"receivedVscPackets":[]}],["consumer2",{"chainState":{"currentValidatorSet":{"#map":[["node1",{"#bigint":"50"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},"lastTimestamp":{"#bigint":"1202402"},"votingPowerHistory":[{"#map":[["node1",{"#bigint":"50"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},{"#map":[["node1",{"#bigint":"50"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]}]},"maturationTimes":[{"#tup":[{"id":{"#bigint":"0"},"sendingTime":{"#bigint":"2"},"validatorSet":{"#map":[["node1",{"#bigint":"50"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]}},{"#bigint":"1209602"}]}],"outstandingPacketsToProvider":[],"receivedVscPackets":[{"id":{"#bigint":"0"},"sendingTime":{"#bigint":"2"},"validatorSet":{"#map":[["node1",{"#bigint":"50"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]}}]}],["consumer3",{"chainState":{"currentValidatorSet":{"#map":[["node1",{"#bigint":"50"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},"lastTimestamp":{"#bigint":"601202"},"votingPowerHistory":[{"#map":[["node1",{"#bigint":"50"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]}]},"maturationTimes":[{"#tup":[{"id":{"#bigint":"0"},"sendingTime":{"#bigint":"2"},"validatorSet":{"#map":[["node1",{"#bigint":"50"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]}},{"#bigint":"1209602"}]}],"outstandingPacketsToProvider":[],"receivedVscPackets":[{"id":{"#bigint":"0"},"sendingTime":{"#bigint":"2"},"validatorSet":{"#map":[["node1",{"#bigint":"50"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]}}]}]]},"providerState":{"chainState":{"currentValidatorSet":{"#map":[["node1",{"#bigint":"50"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},"lastTimestamp":{"#bigint":"1202402"},"votingPowerHistory":[{"#map":[["node1",{"#bigint":"50"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},{"#map":[["node1",{"#bigint":"50"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},{"#map":[["node1",{"#bigint":"50"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]}]},"consumerStatus":{"#map":[["consumer1","running"],["consumer2","running"],["consumer3","running"]]},"outstandingPacketsToConsumer":{"#map":[["consumer1",[{"id":{"#bigint":"0"},"sendingTime":{"#bigint":"2"},"validatorSet":{"#map":[["node1",{"#bigint":"50"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]}}]],["consumer2",[]],["consumer3",[]]]},"providerValidatorSetChangedInThisBlock":false,"receivedMaturations":{"#set":[]},"runningVscId":{"#bigint":"1"},"sentVscPacketsToConsumer":{"#map":[["consumer1",[{"id":{"#bigint":"0"},"sendingTime":{"#bigint":"2"},"validatorSet":{"#map":[["node1",{"#bigint":"50"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]}}]],["consumer2",[{"id":{"#bigint":"0"},"sendingTime":{"#bigint":"2"},"validatorSet":{"#map":[["node1",{"#bigint":"50"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]}}]],["consumer3",[{"id":{"#bigint":"0"},"sendingTime":{"#bigint":"2"},"validatorSet":{"#map":[["node1",{"#bigint":"50"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]}}]]]}}},"params":{"CcvTimeout":{"#map":[["consumer1",{"#bigint":"1814400"}],["consumer2",{"#bigint":"1814400"}],["consumer3",{"#bigint":"1814400"}],["provider",{"#bigint":"1814400"}]]},"ConsumerChains":{"#set":["consumer1","consumer2","consumer3"]},"InitialValidatorSet":{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},"Nodes":{"#set":["node1","node10","node2","node3","node4","node5","node6","node7","node8","node9"]},"TrustingPeriodPerChain":{"#map":[["consumer1",{"#bigint":"1206000"}],["consumer2",{"#bigint":"1206000"}],["consumer3",{"#bigint":"1206000"}],["provider",{"#bigint":"1206000"}]]},"UnbondingPeriodPerChain":{"#map":[["consumer1",{"#bigint":"1209600"}],["consumer2",{"#bigint":"1209600"}],["consumer3",{"#bigint":"1209600"}],["provider",{"#bigint":"1209600"}]]},"VscTimeout":{"#bigint":"3024000"}},"trace":[{"changeAmount":{"#bigint":"0"},"consumerChain":"","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"init","timeAdvancement":{"#bigint":"0"},"validator":""},{"changeAmount":{"#bigint":"0"},"consumerChain":"","consumersToStart":{"#set":["consumer1","consumer2","consumer3"]},"consumersToStop":{"#set":[]},"kind":"EndAndBeginBlockForProvider","timeAdvancement":{"#bigint":"1"},"validator":""},{"changeAmount":{"#bigint":"0"},"consumerChain":"consumer1","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"EndAndBeginBlockForConsumer","timeAdvancement":{"#bigint":"1"},"validator":""},{"changeAmount":{"#bigint":"0"},"consumerChain":"consumer2","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"EndAndBeginBlockForConsumer","timeAdvancement":{"#bigint":"1"},"validator":""},{"changeAmount":{"#bigint":"0"},"consumerChain":"consumer3","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"EndAndBeginBlockForConsumer","timeAdvancement":{"#bigint":"1"},"validator":""},{"changeAmount":{"#bigint":"-50"},"consumerChain":"","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"VotingPowerChange","timeAdvancement":{"#bigint":"0"},"validator":"node1"},{"changeAmount":{"#bigint":"0"},"consumerChain":"","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"EndAndBeginBlockForProvider","timeAdvancement":{"#bigint":"1"},"validator":""},{"changeAmount":{"#bigint":"0"},"consumerChain":"consumer1","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"EndAndBeginBlockForConsumer","timeAdvancement":{"#bigint":"1"},"validator":""},{"changeAmount":{"#bigint":"0"},"consumerChain":"consumer2","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"EndAndBeginBlockForConsumer","timeAdvancement":{"#bigint":"1"},"validator":""},{"changeAmount":{"#bigint":"0"},"consumerChain":"consumer3","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"EndAndBeginBlockForConsumer","timeAdvancement":{"#bigint":"1"},"validator":""},{"changeAmount":{"#bigint":"0"},"consumerChain":"consumer2","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"DeliverVscPacket","timeAdvancement":{"#bigint":"0"},"validator":""},{"changeAmount":{"#bigint":"0"},"consumerChain":"consumer3","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"DeliverVscPacket","timeAdvancement":{"#bigint":"0"},"validator":""},{"changeAmount":{"#bigint":"0"},"consumerChain":"","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"EndAndBeginBlockForProvider","timeAdvancement":{"#bigint":"601200"},"validator":""},{"changeAmount":{"#bigint":"0"},"consumerChain":"consumer1","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"EndAndBeginBlockForConsumer","timeAdvancement":{"#bigint":"601200"},"validator":""},{"changeAmount":{"#bigint":"0"},"consumerChain":"consumer2","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"EndAndBeginBlockForConsumer","timeAdvancement":{"#bigint":"601200"},"validator":""},{"changeAmount":{"#bigint":"0"},"consumerChain":"consumer3","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"EndAndBeginBlockForConsumer","timeAdvancement":{"#bigint":"601200"},"validator":""},{"changeAmount":{"#bigint":"0"},"consumerChain":"","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"EndAndBeginBlockForProvider","timeAdvancement":{"#bigint":"601200"},"validator":""},{"changeAmount":{"#bigint":"0"},"consumerChain":"consumer1","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"EndAndBeginBlockForConsumer","timeAdvancement":{"#bigint":"601200"},"validator":""},{"changeAmount":{"#bigint":"0"},"consumerChain":"consumer2","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"EndAndBeginBlockForConsumer","timeAdvancement":{"#bigint":"601200"},"validator":""}]},{"#meta":{"index":19},"QueuedEndBlocks":[],"currentState":{"consumerStates":{"#map":[["consumer1",{"chainState":{"currentValidatorSet":{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},"lastTimestamp":{"#bigint":"1202402"},"votingPowerHistory":[{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]}]},"maturationTimes":[],"outstandingPacketsToProvider":[],"receivedVscPackets":[]}],["consumer2",{"chainState":{"currentValidatorSet":{"#map":[["node1",{"#bigint":"50"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},"lastTimestamp":{"#bigint":"1202402"},"votingPowerHistory":[{"#map":[["node1",{"#bigint":"50"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},{"#map":[["node1",{"#bigint":"50"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]}]},"maturationTimes":[{"#tup":[{"id":{"#bigint":"0"},"sendingTime":{"#bigint":"2"},"validatorSet":{"#map":[["node1",{"#bigint":"50"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]}},{"#bigint":"1209602"}]}],"outstandingPacketsToProvider":[],"receivedVscPackets":[{"id":{"#bigint":"0"},"sendingTime":{"#bigint":"2"},"validatorSet":{"#map":[["node1",{"#bigint":"50"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]}}]}],["consumer3",{"chainState":{"currentValidatorSet":{"#map":[["node1",{"#bigint":"50"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},"lastTimestamp":{"#bigint":"1202402"},"votingPowerHistory":[{"#map":[["node1",{"#bigint":"50"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},{"#map":[["node1",{"#bigint":"50"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]}]},"maturationTimes":[{"#tup":[{"id":{"#bigint":"0"},"sendingTime":{"#bigint":"2"},"validatorSet":{"#map":[["node1",{"#bigint":"50"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]}},{"#bigint":"1209602"}]}],"outstandingPacketsToProvider":[],"receivedVscPackets":[{"id":{"#bigint":"0"},"sendingTime":{"#bigint":"2"},"validatorSet":{"#map":[["node1",{"#bigint":"50"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]}}]}]]},"providerState":{"chainState":{"currentValidatorSet":{"#map":[["node1",{"#bigint":"50"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},"lastTimestamp":{"#bigint":"1202402"},"votingPowerHistory":[{"#map":[["node1",{"#bigint":"50"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},{"#map":[["node1",{"#bigint":"50"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},{"#map":[["node1",{"#bigint":"50"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]}]},"consumerStatus":{"#map":[["consumer1","running"],["consumer2","running"],["consumer3","running"]]},"outstandingPacketsToConsumer":{"#map":[["consumer1",[{"id":{"#bigint":"0"},"sendingTime":{"#bigint":"2"},"validatorSet":{"#map":[["node1",{"#bigint":"50"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]}}]],["consumer2",[]],["consumer3",[]]]},"providerValidatorSetChangedInThisBlock":false,"receivedMaturations":{"#set":[]},"runningVscId":{"#bigint":"1"},"sentVscPacketsToConsumer":{"#map":[["consumer1",[{"id":{"#bigint":"0"},"sendingTime":{"#bigint":"2"},"validatorSet":{"#map":[["node1",{"#bigint":"50"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]}}]],["consumer2",[{"id":{"#bigint":"0"},"sendingTime":{"#bigint":"2"},"validatorSet":{"#map":[["node1",{"#bigint":"50"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]}}]],["consumer3",[{"id":{"#bigint":"0"},"sendingTime":{"#bigint":"2"},"validatorSet":{"#map":[["node1",{"#bigint":"50"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]}}]]]}}},"params":{"CcvTimeout":{"#map":[["consumer1",{"#bigint":"1814400"}],["consumer2",{"#bigint":"1814400"}],["consumer3",{"#bigint":"1814400"}],["provider",{"#bigint":"1814400"}]]},"ConsumerChains":{"#set":["consumer1","consumer2","consumer3"]},"InitialValidatorSet":{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},"Nodes":{"#set":["node1","node10","node2","node3","node4","node5","node6","node7","node8","node9"]},"TrustingPeriodPerChain":{"#map":[["consumer1",{"#bigint":"1206000"}],["consumer2",{"#bigint":"1206000"}],["consumer3",{"#bigint":"1206000"}],["provider",{"#bigint":"1206000"}]]},"UnbondingPeriodPerChain":{"#map":[["consumer1",{"#bigint":"1209600"}],["consumer2",{"#bigint":"1209600"}],["consumer3",{"#bigint":"1209600"}],["provider",{"#bigint":"1209600"}]]},"VscTimeout":{"#bigint":"3024000"}},"trace":[{"changeAmount":{"#bigint":"0"},"consumerChain":"","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"init","timeAdvancement":{"#bigint":"0"},"validator":""},{"changeAmount":{"#bigint":"0"},"consumerChain":"","consumersToStart":{"#set":["consumer1","consumer2","consumer3"]},"consumersToStop":{"#set":[]},"kind":"EndAndBeginBlockForProvider","timeAdvancement":{"#bigint":"1"},"validator":""},{"changeAmount":{"#bigint":"0"},"consumerChain":"consumer1","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"EndAndBeginBlockForConsumer","timeAdvancement":{"#bigint":"1"},"validator":""},{"changeAmount":{"#bigint":"0"},"consumerChain":"consumer2","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"EndAndBeginBlockForConsumer","timeAdvancement":{"#bigint":"1"},"validator":""},{"changeAmount":{"#bigint":"0"},"consumerChain":"consumer3","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"EndAndBeginBlockForConsumer","timeAdvancement":{"#bigint":"1"},"validator":""},{"changeAmount":{"#bigint":"-50"},"consumerChain":"","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"VotingPowerChange","timeAdvancement":{"#bigint":"0"},"validator":"node1"},{"changeAmount":{"#bigint":"0"},"consumerChain":"","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"EndAndBeginBlockForProvider","timeAdvancement":{"#bigint":"1"},"validator":""},{"changeAmount":{"#bigint":"0"},"consumerChain":"consumer1","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"EndAndBeginBlockForConsumer","timeAdvancement":{"#bigint":"1"},"validator":""},{"changeAmount":{"#bigint":"0"},"consumerChain":"consumer2","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"EndAndBeginBlockForConsumer","timeAdvancement":{"#bigint":"1"},"validator":""},{"changeAmount":{"#bigint":"0"},"consumerChain":"consumer3","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"EndAndBeginBlockForConsumer","timeAdvancement":{"#bigint":"1"},"validator":""},{"changeAmount":{"#bigint":"0"},"consumerChain":"consumer2","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"DeliverVscPacket","timeAdvancement":{"#bigint":"0"},"validator":""},{"changeAmount":{"#bigint":"0"},"consumerChain":"consumer3","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"DeliverVscPacket","timeAdvancement":{"#bigint":"0"},"validator":""},{"changeAmount":{"#bigint":"0"},"consumerChain":"","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"EndAndBeginBlockForProvider","timeAdvancement":{"#bigint":"601200"},"validator":""},{"changeAmount":{"#bigint":"0"},"consumerChain":"consumer1","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"EndAndBeginBlockForConsumer","timeAdvancement":{"#bigint":"601200"},"validator":""},{"changeAmount":{"#bigint":"0"},"consumerChain":"consumer2","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"EndAndBeginBlockForConsumer","timeAdvancement":{"#bigint":"601200"},"validator":""},{"changeAmount":{"#bigint":"0"},"consumerChain":"consumer3","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"EndAndBeginBlockForConsumer","timeAdvancement":{"#bigint":"601200"},"validator":""},{"changeAmount":{"#bigint":"0"},"consumerChain":"","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"EndAndBeginBlockForProvider","timeAdvancement":{"#bigint":"601200"},"validator":""},{"changeAmount":{"#bigint":"0"},"consumerChain":"consumer1","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"EndAndBeginBlockForConsumer","timeAdvancement":{"#bigint":"601200"},"validator":""},{"changeAmount":{"#bigint":"0"},"consumerChain":"consumer2","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"EndAndBeginBlockForConsumer","timeAdvancement":{"#bigint":"601200"},"validator":""},{"changeAmount":{"#bigint":"0"},"consumerChain":"consumer3","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"EndAndBeginBlockForConsumer","timeAdvancement":{"#bigint":"601200"},"validator":""}]},{"#meta":{"index":20},"QueuedEndBlocks":[{"#tup":["consumer1",{"#bigint":"601200"}]},{"#tup":["consumer2",{"#bigint":"601200"}]},{"#tup":["consumer3",{"#bigint":"601200"}]}],"currentState":{"consumerStates":{"#map":[["consumer1",{"chainState":{"currentValidatorSet":{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},"lastTimestamp":{"#bigint":"1202402"},"votingPowerHistory":[{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]}]},"maturationTimes":[],"outstandingPacketsToProvider":[],"receivedVscPackets":[]}],["consumer2",{"chainState":{"currentValidatorSet":{"#map":[["node1",{"#bigint":"50"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},"lastTimestamp":{"#bigint":"1202402"},"votingPowerHistory":[{"#map":[["node1",{"#bigint":"50"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},{"#map":[["node1",{"#bigint":"50"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]}]},"maturationTimes":[{"#tup":[{"id":{"#bigint":"0"},"sendingTime":{"#bigint":"2"},"validatorSet":{"#map":[["node1",{"#bigint":"50"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]}},{"#bigint":"1209602"}]}],"outstandingPacketsToProvider":[],"receivedVscPackets":[{"id":{"#bigint":"0"},"sendingTime":{"#bigint":"2"},"validatorSet":{"#map":[["node1",{"#bigint":"50"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]}}]}],["consumer3",{"chainState":{"currentValidatorSet":{"#map":[["node1",{"#bigint":"50"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},"lastTimestamp":{"#bigint":"1202402"},"votingPowerHistory":[{"#map":[["node1",{"#bigint":"50"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},{"#map":[["node1",{"#bigint":"50"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]}]},"maturationTimes":[{"#tup":[{"id":{"#bigint":"0"},"sendingTime":{"#bigint":"2"},"validatorSet":{"#map":[["node1",{"#bigint":"50"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]}},{"#bigint":"1209602"}]}],"outstandingPacketsToProvider":[],"receivedVscPackets":[{"id":{"#bigint":"0"},"sendingTime":{"#bigint":"2"},"validatorSet":{"#map":[["node1",{"#bigint":"50"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]}}]}]]},"providerState":{"chainState":{"currentValidatorSet":{"#map":[["node1",{"#bigint":"50"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},"lastTimestamp":{"#bigint":"1803602"},"votingPowerHistory":[{"#map":[["node1",{"#bigint":"50"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},{"#map":[["node1",{"#bigint":"50"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},{"#map":[["node1",{"#bigint":"50"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},{"#map":[["node1",{"#bigint":"50"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]}]},"consumerStatus":{"#map":[["consumer1","running"],["consumer2","running"],["consumer3","running"]]},"outstandingPacketsToConsumer":{"#map":[["consumer1",[{"id":{"#bigint":"0"},"sendingTime":{"#bigint":"2"},"validatorSet":{"#map":[["node1",{"#bigint":"50"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]}}]],["consumer2",[]],["consumer3",[]]]},"providerValidatorSetChangedInThisBlock":false,"receivedMaturations":{"#set":[]},"runningVscId":{"#bigint":"1"},"sentVscPacketsToConsumer":{"#map":[["consumer1",[{"id":{"#bigint":"0"},"sendingTime":{"#bigint":"2"},"validatorSet":{"#map":[["node1",{"#bigint":"50"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]}}]],["consumer2",[{"id":{"#bigint":"0"},"sendingTime":{"#bigint":"2"},"validatorSet":{"#map":[["node1",{"#bigint":"50"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]}}]],["consumer3",[{"id":{"#bigint":"0"},"sendingTime":{"#bigint":"2"},"validatorSet":{"#map":[["node1",{"#bigint":"50"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]}}]]]}}},"params":{"CcvTimeout":{"#map":[["consumer1",{"#bigint":"1814400"}],["consumer2",{"#bigint":"1814400"}],["consumer3",{"#bigint":"1814400"}],["provider",{"#bigint":"1814400"}]]},"ConsumerChains":{"#set":["consumer1","consumer2","consumer3"]},"InitialValidatorSet":{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},"Nodes":{"#set":["node1","node10","node2","node3","node4","node5","node6","node7","node8","node9"]},"TrustingPeriodPerChain":{"#map":[["consumer1",{"#bigint":"1206000"}],["consumer2",{"#bigint":"1206000"}],["consumer3",{"#bigint":"1206000"}],["provider",{"#bigint":"1206000"}]]},"UnbondingPeriodPerChain":{"#map":[["consumer1",{"#bigint":"1209600"}],["consumer2",{"#bigint":"1209600"}],["consumer3",{"#bigint":"1209600"}],["provider",{"#bigint":"1209600"}]]},"VscTimeout":{"#bigint":"3024000"}},"trace":[{"changeAmount":{"#bigint":"0"},"consumerChain":"","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"init","timeAdvancement":{"#bigint":"0"},"validator":""},{"changeAmount":{"#bigint":"0"},"consumerChain":"","consumersToStart":{"#set":["consumer1","consumer2","consumer3"]},"consumersToStop":{"#set":[]},"kind":"EndAndBeginBlockForProvider","timeAdvancement":{"#bigint":"1"},"validator":""},{"changeAmount":{"#bigint":"0"},"consumerChain":"consumer1","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"EndAndBeginBlockForConsumer","timeAdvancement":{"#bigint":"1"},"validator":""},{"changeAmount":{"#bigint":"0"},"consumerChain":"consumer2","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"EndAndBeginBlockForConsumer","timeAdvancement":{"#bigint":"1"},"validator":""},{"changeAmount":{"#bigint":"0"},"consumerChain":"consumer3","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"EndAndBeginBlockForConsumer","timeAdvancement":{"#bigint":"1"},"validator":""},{"changeAmount":{"#bigint":"-50"},"consumerChain":"","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"VotingPowerChange","timeAdvancement":{"#bigint":"0"},"validator":"node1"},{"changeAmount":{"#bigint":"0"},"consumerChain":"","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"EndAndBeginBlockForProvider","timeAdvancement":{"#bigint":"1"},"validator":""},{"changeAmount":{"#bigint":"0"},"consumerChain":"consumer1","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"EndAndBeginBlockForConsumer","timeAdvancement":{"#bigint":"1"},"validator":""},{"changeAmount":{"#bigint":"0"},"consumerChain":"consumer2","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"EndAndBeginBlockForConsumer","timeAdvancement":{"#bigint":"1"},"validator":""},{"changeAmount":{"#bigint":"0"},"consumerChain":"consumer3","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"EndAndBeginBlockForConsumer","timeAdvancement":{"#bigint":"1"},"validator":""},{"changeAmount":{"#bigint":"0"},"consumerChain":"consumer2","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"DeliverVscPacket","timeAdvancement":{"#bigint":"0"},"validator":""},{"changeAmount":{"#bigint":"0"},"consumerChain":"consumer3","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"DeliverVscPacket","timeAdvancement":{"#bigint":"0"},"validator":""},{"changeAmount":{"#bigint":"0"},"consumerChain":"","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"EndAndBeginBlockForProvider","timeAdvancement":{"#bigint":"601200"},"validator":""},{"changeAmount":{"#bigint":"0"},"consumerChain":"consumer1","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"EndAndBeginBlockForConsumer","timeAdvancement":{"#bigint":"601200"},"validator":""},{"changeAmount":{"#bigint":"0"},"consumerChain":"consumer2","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"EndAndBeginBlockForConsumer","timeAdvancement":{"#bigint":"601200"},"validator":""},{"changeAmount":{"#bigint":"0"},"consumerChain":"consumer3","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"EndAndBeginBlockForConsumer","timeAdvancement":{"#bigint":"601200"},"validator":""},{"changeAmount":{"#bigint":"0"},"consumerChain":"","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"EndAndBeginBlockForProvider","timeAdvancement":{"#bigint":"601200"},"validator":""},{"changeAmount":{"#bigint":"0"},"consumerChain":"consumer1","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"EndAndBeginBlockForConsumer","timeAdvancement":{"#bigint":"601200"},"validator":""},{"changeAmount":{"#bigint":"0"},"consumerChain":"consumer2","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"EndAndBeginBlockForConsumer","timeAdvancement":{"#bigint":"601200"},"validator":""},{"changeAmount":{"#bigint":"0"},"consumerChain":"consumer3","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"EndAndBeginBlockForConsumer","timeAdvancement":{"#bigint":"601200"},"validator":""},{"changeAmount":{"#bigint":"0"},"consumerChain":"","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"EndAndBeginBlockForProvider","timeAdvancement":{"#bigint":"601200"},"validator":""}]},{"#meta":{"index":21},"QueuedEndBlocks":[{"#tup":["consumer2",{"#bigint":"601200"}]},{"#tup":["consumer3",{"#bigint":"601200"}]}],"currentState":{"consumerStates":{"#map":[["consumer1",{"chainState":{"currentValidatorSet":{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},"lastTimestamp":{"#bigint":"1803602"},"votingPowerHistory":[{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]}]},"maturationTimes":[],"outstandingPacketsToProvider":[],"receivedVscPackets":[]}],["consumer2",{"chainState":{"currentValidatorSet":{"#map":[["node1",{"#bigint":"50"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},"lastTimestamp":{"#bigint":"1202402"},"votingPowerHistory":[{"#map":[["node1",{"#bigint":"50"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},{"#map":[["node1",{"#bigint":"50"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]}]},"maturationTimes":[{"#tup":[{"id":{"#bigint":"0"},"sendingTime":{"#bigint":"2"},"validatorSet":{"#map":[["node1",{"#bigint":"50"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]}},{"#bigint":"1209602"}]}],"outstandingPacketsToProvider":[],"receivedVscPackets":[{"id":{"#bigint":"0"},"sendingTime":{"#bigint":"2"},"validatorSet":{"#map":[["node1",{"#bigint":"50"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]}}]}],["consumer3",{"chainState":{"currentValidatorSet":{"#map":[["node1",{"#bigint":"50"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},"lastTimestamp":{"#bigint":"1202402"},"votingPowerHistory":[{"#map":[["node1",{"#bigint":"50"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},{"#map":[["node1",{"#bigint":"50"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]}]},"maturationTimes":[{"#tup":[{"id":{"#bigint":"0"},"sendingTime":{"#bigint":"2"},"validatorSet":{"#map":[["node1",{"#bigint":"50"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]}},{"#bigint":"1209602"}]}],"outstandingPacketsToProvider":[],"receivedVscPackets":[{"id":{"#bigint":"0"},"sendingTime":{"#bigint":"2"},"validatorSet":{"#map":[["node1",{"#bigint":"50"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]}}]}]]},"providerState":{"chainState":{"currentValidatorSet":{"#map":[["node1",{"#bigint":"50"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},"lastTimestamp":{"#bigint":"1803602"},"votingPowerHistory":[{"#map":[["node1",{"#bigint":"50"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},{"#map":[["node1",{"#bigint":"50"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},{"#map":[["node1",{"#bigint":"50"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},{"#map":[["node1",{"#bigint":"50"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]}]},"consumerStatus":{"#map":[["consumer1","running"],["consumer2","running"],["consumer3","running"]]},"outstandingPacketsToConsumer":{"#map":[["consumer1",[{"id":{"#bigint":"0"},"sendingTime":{"#bigint":"2"},"validatorSet":{"#map":[["node1",{"#bigint":"50"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]}}]],["consumer2",[]],["consumer3",[]]]},"providerValidatorSetChangedInThisBlock":false,"receivedMaturations":{"#set":[]},"runningVscId":{"#bigint":"1"},"sentVscPacketsToConsumer":{"#map":[["consumer1",[{"id":{"#bigint":"0"},"sendingTime":{"#bigint":"2"},"validatorSet":{"#map":[["node1",{"#bigint":"50"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]}}]],["consumer2",[{"id":{"#bigint":"0"},"sendingTime":{"#bigint":"2"},"validatorSet":{"#map":[["node1",{"#bigint":"50"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]}}]],["consumer3",[{"id":{"#bigint":"0"},"sendingTime":{"#bigint":"2"},"validatorSet":{"#map":[["node1",{"#bigint":"50"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]}}]]]}}},"params":{"CcvTimeout":{"#map":[["consumer1",{"#bigint":"1814400"}],["consumer2",{"#bigint":"1814400"}],["consumer3",{"#bigint":"1814400"}],["provider",{"#bigint":"1814400"}]]},"ConsumerChains":{"#set":["consumer1","consumer2","consumer3"]},"InitialValidatorSet":{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},"Nodes":{"#set":["node1","node10","node2","node3","node4","node5","node6","node7","node8","node9"]},"TrustingPeriodPerChain":{"#map":[["consumer1",{"#bigint":"1206000"}],["consumer2",{"#bigint":"1206000"}],["consumer3",{"#bigint":"1206000"}],["provider",{"#bigint":"1206000"}]]},"UnbondingPeriodPerChain":{"#map":[["consumer1",{"#bigint":"1209600"}],["consumer2",{"#bigint":"1209600"}],["consumer3",{"#bigint":"1209600"}],["provider",{"#bigint":"1209600"}]]},"VscTimeout":{"#bigint":"3024000"}},"trace":[{"changeAmount":{"#bigint":"0"},"consumerChain":"","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"init","timeAdvancement":{"#bigint":"0"},"validator":""},{"changeAmount":{"#bigint":"0"},"consumerChain":"","consumersToStart":{"#set":["consumer1","consumer2","consumer3"]},"consumersToStop":{"#set":[]},"kind":"EndAndBeginBlockForProvider","timeAdvancement":{"#bigint":"1"},"validator":""},{"changeAmount":{"#bigint":"0"},"consumerChain":"consumer1","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"EndAndBeginBlockForConsumer","timeAdvancement":{"#bigint":"1"},"validator":""},{"changeAmount":{"#bigint":"0"},"consumerChain":"consumer2","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"EndAndBeginBlockForConsumer","timeAdvancement":{"#bigint":"1"},"validator":""},{"changeAmount":{"#bigint":"0"},"consumerChain":"consumer3","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"EndAndBeginBlockForConsumer","timeAdvancement":{"#bigint":"1"},"validator":""},{"changeAmount":{"#bigint":"-50"},"consumerChain":"","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"VotingPowerChange","timeAdvancement":{"#bigint":"0"},"validator":"node1"},{"changeAmount":{"#bigint":"0"},"consumerChain":"","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"EndAndBeginBlockForProvider","timeAdvancement":{"#bigint":"1"},"validator":""},{"changeAmount":{"#bigint":"0"},"consumerChain":"consumer1","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"EndAndBeginBlockForConsumer","timeAdvancement":{"#bigint":"1"},"validator":""},{"changeAmount":{"#bigint":"0"},"consumerChain":"consumer2","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"EndAndBeginBlockForConsumer","timeAdvancement":{"#bigint":"1"},"validator":""},{"changeAmount":{"#bigint":"0"},"consumerChain":"consumer3","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"EndAndBeginBlockForConsumer","timeAdvancement":{"#bigint":"1"},"validator":""},{"changeAmount":{"#bigint":"0"},"consumerChain":"consumer2","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"DeliverVscPacket","timeAdvancement":{"#bigint":"0"},"validator":""},{"changeAmount":{"#bigint":"0"},"consumerChain":"consumer3","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"DeliverVscPacket","timeAdvancement":{"#bigint":"0"},"validator":""},{"changeAmount":{"#bigint":"0"},"consumerChain":"","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"EndAndBeginBlockForProvider","timeAdvancement":{"#bigint":"601200"},"validator":""},{"changeAmount":{"#bigint":"0"},"consumerChain":"consumer1","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"EndAndBeginBlockForConsumer","timeAdvancement":{"#bigint":"601200"},"validator":""},{"changeAmount":{"#bigint":"0"},"consumerChain":"consumer2","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"EndAndBeginBlockForConsumer","timeAdvancement":{"#bigint":"601200"},"validator":""},{"changeAmount":{"#bigint":"0"},"consumerChain":"consumer3","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"EndAndBeginBlockForConsumer","timeAdvancement":{"#bigint":"601200"},"validator":""},{"changeAmount":{"#bigint":"0"},"consumerChain":"","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"EndAndBeginBlockForProvider","timeAdvancement":{"#bigint":"601200"},"validator":""},{"changeAmount":{"#bigint":"0"},"consumerChain":"consumer1","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"EndAndBeginBlockForConsumer","timeAdvancement":{"#bigint":"601200"},"validator":""},{"changeAmount":{"#bigint":"0"},"consumerChain":"consumer2","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"EndAndBeginBlockForConsumer","timeAdvancement":{"#bigint":"601200"},"validator":""},{"changeAmount":{"#bigint":"0"},"consumerChain":"consumer3","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"EndAndBeginBlockForConsumer","timeAdvancement":{"#bigint":"601200"},"validator":""},{"changeAmount":{"#bigint":"0"},"consumerChain":"","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"EndAndBeginBlockForProvider","timeAdvancement":{"#bigint":"601200"},"validator":""},{"changeAmount":{"#bigint":"0"},"consumerChain":"consumer1","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"EndAndBeginBlockForConsumer","timeAdvancement":{"#bigint":"601200"},"validator":""}]},{"#meta":{"index":22},"QueuedEndBlocks":[{"#tup":["consumer3",{"#bigint":"601200"}]}],"currentState":{"consumerStates":{"#map":[["consumer1",{"chainState":{"currentValidatorSet":{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},"lastTimestamp":{"#bigint":"1803602"},"votingPowerHistory":[{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]}]},"maturationTimes":[],"outstandingPacketsToProvider":[],"receivedVscPackets":[]}],["consumer2",{"chainState":{"currentValidatorSet":{"#map":[["node1",{"#bigint":"50"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},"lastTimestamp":{"#bigint":"1803602"},"votingPowerHistory":[{"#map":[["node1",{"#bigint":"50"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},{"#map":[["node1",{"#bigint":"50"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},{"#map":[["node1",{"#bigint":"50"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]}]},"maturationTimes":[{"#tup":[{"id":{"#bigint":"0"},"sendingTime":{"#bigint":"2"},"validatorSet":{"#map":[["node1",{"#bigint":"50"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]}},{"#bigint":"1209602"}]}],"outstandingPacketsToProvider":[],"receivedVscPackets":[{"id":{"#bigint":"0"},"sendingTime":{"#bigint":"2"},"validatorSet":{"#map":[["node1",{"#bigint":"50"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]}}]}],["consumer3",{"chainState":{"currentValidatorSet":{"#map":[["node1",{"#bigint":"50"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},"lastTimestamp":{"#bigint":"1202402"},"votingPowerHistory":[{"#map":[["node1",{"#bigint":"50"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},{"#map":[["node1",{"#bigint":"50"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]}]},"maturationTimes":[{"#tup":[{"id":{"#bigint":"0"},"sendingTime":{"#bigint":"2"},"validatorSet":{"#map":[["node1",{"#bigint":"50"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]}},{"#bigint":"1209602"}]}],"outstandingPacketsToProvider":[],"receivedVscPackets":[{"id":{"#bigint":"0"},"sendingTime":{"#bigint":"2"},"validatorSet":{"#map":[["node1",{"#bigint":"50"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]}}]}]]},"providerState":{"chainState":{"currentValidatorSet":{"#map":[["node1",{"#bigint":"50"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},"lastTimestamp":{"#bigint":"1803602"},"votingPowerHistory":[{"#map":[["node1",{"#bigint":"50"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},{"#map":[["node1",{"#bigint":"50"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},{"#map":[["node1",{"#bigint":"50"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},{"#map":[["node1",{"#bigint":"50"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]}]},"consumerStatus":{"#map":[["consumer1","running"],["consumer2","running"],["consumer3","running"]]},"outstandingPacketsToConsumer":{"#map":[["consumer1",[{"id":{"#bigint":"0"},"sendingTime":{"#bigint":"2"},"validatorSet":{"#map":[["node1",{"#bigint":"50"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]}}]],["consumer2",[]],["consumer3",[]]]},"providerValidatorSetChangedInThisBlock":false,"receivedMaturations":{"#set":[]},"runningVscId":{"#bigint":"1"},"sentVscPacketsToConsumer":{"#map":[["consumer1",[{"id":{"#bigint":"0"},"sendingTime":{"#bigint":"2"},"validatorSet":{"#map":[["node1",{"#bigint":"50"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]}}]],["consumer2",[{"id":{"#bigint":"0"},"sendingTime":{"#bigint":"2"},"validatorSet":{"#map":[["node1",{"#bigint":"50"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]}}]],["consumer3",[{"id":{"#bigint":"0"},"sendingTime":{"#bigint":"2"},"validatorSet":{"#map":[["node1",{"#bigint":"50"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]}}]]]}}},"params":{"CcvTimeout":{"#map":[["consumer1",{"#bigint":"1814400"}],["consumer2",{"#bigint":"1814400"}],["consumer3",{"#bigint":"1814400"}],["provider",{"#bigint":"1814400"}]]},"ConsumerChains":{"#set":["consumer1","consumer2","consumer3"]},"InitialValidatorSet":{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},"Nodes":{"#set":["node1","node10","node2","node3","node4","node5","node6","node7","node8","node9"]},"TrustingPeriodPerChain":{"#map":[["consumer1",{"#bigint":"1206000"}],["consumer2",{"#bigint":"1206000"}],["consumer3",{"#bigint":"1206000"}],["provider",{"#bigint":"1206000"}]]},"UnbondingPeriodPerChain":{"#map":[["consumer1",{"#bigint":"1209600"}],["consumer2",{"#bigint":"1209600"}],["consumer3",{"#bigint":"1209600"}],["provider",{"#bigint":"1209600"}]]},"VscTimeout":{"#bigint":"3024000"}},"trace":[{"changeAmount":{"#bigint":"0"},"consumerChain":"","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"init","timeAdvancement":{"#bigint":"0"},"validator":""},{"changeAmount":{"#bigint":"0"},"consumerChain":"","consumersToStart":{"#set":["consumer1","consumer2","consumer3"]},"consumersToStop":{"#set":[]},"kind":"EndAndBeginBlockForProvider","timeAdvancement":{"#bigint":"1"},"validator":""},{"changeAmount":{"#bigint":"0"},"consumerChain":"consumer1","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"EndAndBeginBlockForConsumer","timeAdvancement":{"#bigint":"1"},"validator":""},{"changeAmount":{"#bigint":"0"},"consumerChain":"consumer2","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"EndAndBeginBlockForConsumer","timeAdvancement":{"#bigint":"1"},"validator":""},{"changeAmount":{"#bigint":"0"},"consumerChain":"consumer3","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"EndAndBeginBlockForConsumer","timeAdvancement":{"#bigint":"1"},"validator":""},{"changeAmount":{"#bigint":"-50"},"consumerChain":"","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"VotingPowerChange","timeAdvancement":{"#bigint":"0"},"validator":"node1"},{"changeAmount":{"#bigint":"0"},"consumerChain":"","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"EndAndBeginBlockForProvider","timeAdvancement":{"#bigint":"1"},"validator":""},{"changeAmount":{"#bigint":"0"},"consumerChain":"consumer1","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"EndAndBeginBlockForConsumer","timeAdvancement":{"#bigint":"1"},"validator":""},{"changeAmount":{"#bigint":"0"},"consumerChain":"consumer2","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"EndAndBeginBlockForConsumer","timeAdvancement":{"#bigint":"1"},"validator":""},{"changeAmount":{"#bigint":"0"},"consumerChain":"consumer3","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"EndAndBeginBlockForConsumer","timeAdvancement":{"#bigint":"1"},"validator":""},{"changeAmount":{"#bigint":"0"},"consumerChain":"consumer2","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"DeliverVscPacket","timeAdvancement":{"#bigint":"0"},"validator":""},{"changeAmount":{"#bigint":"0"},"consumerChain":"consumer3","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"DeliverVscPacket","timeAdvancement":{"#bigint":"0"},"validator":""},{"changeAmount":{"#bigint":"0"},"consumerChain":"","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"EndAndBeginBlockForProvider","timeAdvancement":{"#bigint":"601200"},"validator":""},{"changeAmount":{"#bigint":"0"},"consumerChain":"consumer1","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"EndAndBeginBlockForConsumer","timeAdvancement":{"#bigint":"601200"},"validator":""},{"changeAmount":{"#bigint":"0"},"consumerChain":"consumer2","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"EndAndBeginBlockForConsumer","timeAdvancement":{"#bigint":"601200"},"validator":""},{"changeAmount":{"#bigint":"0"},"consumerChain":"consumer3","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"EndAndBeginBlockForConsumer","timeAdvancement":{"#bigint":"601200"},"validator":""},{"changeAmount":{"#bigint":"0"},"consumerChain":"","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"EndAndBeginBlockForProvider","timeAdvancement":{"#bigint":"601200"},"validator":""},{"changeAmount":{"#bigint":"0"},"consumerChain":"consumer1","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"EndAndBeginBlockForConsumer","timeAdvancement":{"#bigint":"601200"},"validator":""},{"changeAmount":{"#bigint":"0"},"consumerChain":"consumer2","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"EndAndBeginBlockForConsumer","timeAdvancement":{"#bigint":"601200"},"validator":""},{"changeAmount":{"#bigint":"0"},"consumerChain":"consumer3","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"EndAndBeginBlockForConsumer","timeAdvancement":{"#bigint":"601200"},"validator":""},{"changeAmount":{"#bigint":"0"},"consumerChain":"","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"EndAndBeginBlockForProvider","timeAdvancement":{"#bigint":"601200"},"validator":""},{"changeAmount":{"#bigint":"0"},"consumerChain":"consumer1","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"EndAndBeginBlockForConsumer","timeAdvancement":{"#bigint":"601200"},"validator":""},{"changeAmount":{"#bigint":"0"},"consumerChain":"consumer2","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"EndAndBeginBlockForConsumer","timeAdvancement":{"#bigint":"601200"},"validator":""}]},{"#meta":{"index":23},"QueuedEndBlocks":[],"currentState":{"consumerStates":{"#map":[["consumer1",{"chainState":{"currentValidatorSet":{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},"lastTimestamp":{"#bigint":"1803602"},"votingPowerHistory":[{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]}]},"maturationTimes":[],"outstandingPacketsToProvider":[],"receivedVscPackets":[]}],["consumer2",{"chainState":{"currentValidatorSet":{"#map":[["node1",{"#bigint":"50"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},"lastTimestamp":{"#bigint":"1803602"},"votingPowerHistory":[{"#map":[["node1",{"#bigint":"50"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},{"#map":[["node1",{"#bigint":"50"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},{"#map":[["node1",{"#bigint":"50"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]}]},"maturationTimes":[{"#tup":[{"id":{"#bigint":"0"},"sendingTime":{"#bigint":"2"},"validatorSet":{"#map":[["node1",{"#bigint":"50"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]}},{"#bigint":"1209602"}]}],"outstandingPacketsToProvider":[],"receivedVscPackets":[{"id":{"#bigint":"0"},"sendingTime":{"#bigint":"2"},"validatorSet":{"#map":[["node1",{"#bigint":"50"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]}}]}],["consumer3",{"chainState":{"currentValidatorSet":{"#map":[["node1",{"#bigint":"50"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},"lastTimestamp":{"#bigint":"1803602"},"votingPowerHistory":[{"#map":[["node1",{"#bigint":"50"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},{"#map":[["node1",{"#bigint":"50"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},{"#map":[["node1",{"#bigint":"50"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]}]},"maturationTimes":[{"#tup":[{"id":{"#bigint":"0"},"sendingTime":{"#bigint":"2"},"validatorSet":{"#map":[["node1",{"#bigint":"50"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]}},{"#bigint":"1209602"}]}],"outstandingPacketsToProvider":[],"receivedVscPackets":[{"id":{"#bigint":"0"},"sendingTime":{"#bigint":"2"},"validatorSet":{"#map":[["node1",{"#bigint":"50"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]}}]}]]},"providerState":{"chainState":{"currentValidatorSet":{"#map":[["node1",{"#bigint":"50"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},"lastTimestamp":{"#bigint":"1803602"},"votingPowerHistory":[{"#map":[["node1",{"#bigint":"50"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},{"#map":[["node1",{"#bigint":"50"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},{"#map":[["node1",{"#bigint":"50"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},{"#map":[["node1",{"#bigint":"50"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]}]},"consumerStatus":{"#map":[["consumer1","running"],["consumer2","running"],["consumer3","running"]]},"outstandingPacketsToConsumer":{"#map":[["consumer1",[{"id":{"#bigint":"0"},"sendingTime":{"#bigint":"2"},"validatorSet":{"#map":[["node1",{"#bigint":"50"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]}}]],["consumer2",[]],["consumer3",[]]]},"providerValidatorSetChangedInThisBlock":false,"receivedMaturations":{"#set":[]},"runningVscId":{"#bigint":"1"},"sentVscPacketsToConsumer":{"#map":[["consumer1",[{"id":{"#bigint":"0"},"sendingTime":{"#bigint":"2"},"validatorSet":{"#map":[["node1",{"#bigint":"50"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]}}]],["consumer2",[{"id":{"#bigint":"0"},"sendingTime":{"#bigint":"2"},"validatorSet":{"#map":[["node1",{"#bigint":"50"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]}}]],["consumer3",[{"id":{"#bigint":"0"},"sendingTime":{"#bigint":"2"},"validatorSet":{"#map":[["node1",{"#bigint":"50"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]}}]]]}}},"params":{"CcvTimeout":{"#map":[["consumer1",{"#bigint":"1814400"}],["consumer2",{"#bigint":"1814400"}],["consumer3",{"#bigint":"1814400"}],["provider",{"#bigint":"1814400"}]]},"ConsumerChains":{"#set":["consumer1","consumer2","consumer3"]},"InitialValidatorSet":{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},"Nodes":{"#set":["node1","node10","node2","node3","node4","node5","node6","node7","node8","node9"]},"TrustingPeriodPerChain":{"#map":[["consumer1",{"#bigint":"1206000"}],["consumer2",{"#bigint":"1206000"}],["consumer3",{"#bigint":"1206000"}],["provider",{"#bigint":"1206000"}]]},"UnbondingPeriodPerChain":{"#map":[["consumer1",{"#bigint":"1209600"}],["consumer2",{"#bigint":"1209600"}],["consumer3",{"#bigint":"1209600"}],["provider",{"#bigint":"1209600"}]]},"VscTimeout":{"#bigint":"3024000"}},"trace":[{"changeAmount":{"#bigint":"0"},"consumerChain":"","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"init","timeAdvancement":{"#bigint":"0"},"validator":""},{"changeAmount":{"#bigint":"0"},"consumerChain":"","consumersToStart":{"#set":["consumer1","consumer2","consumer3"]},"consumersToStop":{"#set":[]},"kind":"EndAndBeginBlockForProvider","timeAdvancement":{"#bigint":"1"},"validator":""},{"changeAmount":{"#bigint":"0"},"consumerChain":"consumer1","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"EndAndBeginBlockForConsumer","timeAdvancement":{"#bigint":"1"},"validator":""},{"changeAmount":{"#bigint":"0"},"consumerChain":"consumer2","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"EndAndBeginBlockForConsumer","timeAdvancement":{"#bigint":"1"},"validator":""},{"changeAmount":{"#bigint":"0"},"consumerChain":"consumer3","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"EndAndBeginBlockForConsumer","timeAdvancement":{"#bigint":"1"},"validator":""},{"changeAmount":{"#bigint":"-50"},"consumerChain":"","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"VotingPowerChange","timeAdvancement":{"#bigint":"0"},"validator":"node1"},{"changeAmount":{"#bigint":"0"},"consumerChain":"","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"EndAndBeginBlockForProvider","timeAdvancement":{"#bigint":"1"},"validator":""},{"changeAmount":{"#bigint":"0"},"consumerChain":"consumer1","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"EndAndBeginBlockForConsumer","timeAdvancement":{"#bigint":"1"},"validator":""},{"changeAmount":{"#bigint":"0"},"consumerChain":"consumer2","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"EndAndBeginBlockForConsumer","timeAdvancement":{"#bigint":"1"},"validator":""},{"changeAmount":{"#bigint":"0"},"consumerChain":"consumer3","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"EndAndBeginBlockForConsumer","timeAdvancement":{"#bigint":"1"},"validator":""},{"changeAmount":{"#bigint":"0"},"consumerChain":"consumer2","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"DeliverVscPacket","timeAdvancement":{"#bigint":"0"},"validator":""},{"changeAmount":{"#bigint":"0"},"consumerChain":"consumer3","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"DeliverVscPacket","timeAdvancement":{"#bigint":"0"},"validator":""},{"changeAmount":{"#bigint":"0"},"consumerChain":"","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"EndAndBeginBlockForProvider","timeAdvancement":{"#bigint":"601200"},"validator":""},{"changeAmount":{"#bigint":"0"},"consumerChain":"consumer1","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"EndAndBeginBlockForConsumer","timeAdvancement":{"#bigint":"601200"},"validator":""},{"changeAmount":{"#bigint":"0"},"consumerChain":"consumer2","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"EndAndBeginBlockForConsumer","timeAdvancement":{"#bigint":"601200"},"validator":""},{"changeAmount":{"#bigint":"0"},"consumerChain":"consumer3","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"EndAndBeginBlockForConsumer","timeAdvancement":{"#bigint":"601200"},"validator":""},{"changeAmount":{"#bigint":"0"},"consumerChain":"","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"EndAndBeginBlockForProvider","timeAdvancement":{"#bigint":"601200"},"validator":""},{"changeAmount":{"#bigint":"0"},"consumerChain":"consumer1","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"EndAndBeginBlockForConsumer","timeAdvancement":{"#bigint":"601200"},"validator":""},{"changeAmount":{"#bigint":"0"},"consumerChain":"consumer2","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"EndAndBeginBlockForConsumer","timeAdvancement":{"#bigint":"601200"},"validator":""},{"changeAmount":{"#bigint":"0"},"consumerChain":"consumer3","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"EndAndBeginBlockForConsumer","timeAdvancement":{"#bigint":"601200"},"validator":""},{"changeAmount":{"#bigint":"0"},"consumerChain":"","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"EndAndBeginBlockForProvider","timeAdvancement":{"#bigint":"601200"},"validator":""},{"changeAmount":{"#bigint":"0"},"consumerChain":"consumer1","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"EndAndBeginBlockForConsumer","timeAdvancement":{"#bigint":"601200"},"validator":""},{"changeAmount":{"#bigint":"0"},"consumerChain":"consumer2","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"EndAndBeginBlockForConsumer","timeAdvancement":{"#bigint":"601200"},"validator":""},{"changeAmount":{"#bigint":"0"},"consumerChain":"consumer3","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"EndAndBeginBlockForConsumer","timeAdvancement":{"#bigint":"601200"},"validator":""}]},{"#meta":{"index":24},"QueuedEndBlocks":[{"#tup":["consumer1",{"#bigint":"86400"}]},{"#tup":["consumer2",{"#bigint":"86400"}]},{"#tup":["consumer3",{"#bigint":"86400"}]}],"currentState":{"consumerStates":{"#map":[["consumer1",{"chainState":{"currentValidatorSet":{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},"lastTimestamp":{"#bigint":"1803602"},"votingPowerHistory":[{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]}]},"maturationTimes":[],"outstandingPacketsToProvider":[],"receivedVscPackets":[]}],["consumer2",{"chainState":{"currentValidatorSet":{"#map":[["node1",{"#bigint":"50"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},"lastTimestamp":{"#bigint":"1803602"},"votingPowerHistory":[{"#map":[["node1",{"#bigint":"50"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},{"#map":[["node1",{"#bigint":"50"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},{"#map":[["node1",{"#bigint":"50"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]}]},"maturationTimes":[{"#tup":[{"id":{"#bigint":"0"},"sendingTime":{"#bigint":"2"},"validatorSet":{"#map":[["node1",{"#bigint":"50"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]}},{"#bigint":"1209602"}]}],"outstandingPacketsToProvider":[],"receivedVscPackets":[{"id":{"#bigint":"0"},"sendingTime":{"#bigint":"2"},"validatorSet":{"#map":[["node1",{"#bigint":"50"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]}}]}],["consumer3",{"chainState":{"currentValidatorSet":{"#map":[["node1",{"#bigint":"50"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},"lastTimestamp":{"#bigint":"1803602"},"votingPowerHistory":[{"#map":[["node1",{"#bigint":"50"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},{"#map":[["node1",{"#bigint":"50"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},{"#map":[["node1",{"#bigint":"50"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]}]},"maturationTimes":[{"#tup":[{"id":{"#bigint":"0"},"sendingTime":{"#bigint":"2"},"validatorSet":{"#map":[["node1",{"#bigint":"50"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]}},{"#bigint":"1209602"}]}],"outstandingPacketsToProvider":[],"receivedVscPackets":[{"id":{"#bigint":"0"},"sendingTime":{"#bigint":"2"},"validatorSet":{"#map":[["node1",{"#bigint":"50"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]}}]}]]},"providerState":{"chainState":{"currentValidatorSet":{"#map":[["node1",{"#bigint":"50"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},"lastTimestamp":{"#bigint":"1890002"},"votingPowerHistory":[{"#map":[["node1",{"#bigint":"50"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},{"#map":[["node1",{"#bigint":"50"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},{"#map":[["node1",{"#bigint":"50"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},{"#map":[["node1",{"#bigint":"50"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},{"#map":[["node1",{"#bigint":"50"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]}]},"consumerStatus":{"#map":[["consumer1","running"],["consumer2","running"],["consumer3","running"]]},"outstandingPacketsToConsumer":{"#map":[["consumer1",[{"id":{"#bigint":"0"},"sendingTime":{"#bigint":"2"},"validatorSet":{"#map":[["node1",{"#bigint":"50"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]}}]],["consumer2",[]],["consumer3",[]]]},"providerValidatorSetChangedInThisBlock":false,"receivedMaturations":{"#set":[]},"runningVscId":{"#bigint":"1"},"sentVscPacketsToConsumer":{"#map":[["consumer1",[{"id":{"#bigint":"0"},"sendingTime":{"#bigint":"2"},"validatorSet":{"#map":[["node1",{"#bigint":"50"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]}}]],["consumer2",[{"id":{"#bigint":"0"},"sendingTime":{"#bigint":"2"},"validatorSet":{"#map":[["node1",{"#bigint":"50"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]}}]],["consumer3",[{"id":{"#bigint":"0"},"sendingTime":{"#bigint":"2"},"validatorSet":{"#map":[["node1",{"#bigint":"50"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]}}]]]}}},"params":{"CcvTimeout":{"#map":[["consumer1",{"#bigint":"1814400"}],["consumer2",{"#bigint":"1814400"}],["consumer3",{"#bigint":"1814400"}],["provider",{"#bigint":"1814400"}]]},"ConsumerChains":{"#set":["consumer1","consumer2","consumer3"]},"InitialValidatorSet":{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},"Nodes":{"#set":["node1","node10","node2","node3","node4","node5","node6","node7","node8","node9"]},"TrustingPeriodPerChain":{"#map":[["consumer1",{"#bigint":"1206000"}],["consumer2",{"#bigint":"1206000"}],["consumer3",{"#bigint":"1206000"}],["provider",{"#bigint":"1206000"}]]},"UnbondingPeriodPerChain":{"#map":[["consumer1",{"#bigint":"1209600"}],["consumer2",{"#bigint":"1209600"}],["consumer3",{"#bigint":"1209600"}],["provider",{"#bigint":"1209600"}]]},"VscTimeout":{"#bigint":"3024000"}},"trace":[{"changeAmount":{"#bigint":"0"},"consumerChain":"","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"init","timeAdvancement":{"#bigint":"0"},"validator":""},{"changeAmount":{"#bigint":"0"},"consumerChain":"","consumersToStart":{"#set":["consumer1","consumer2","consumer3"]},"consumersToStop":{"#set":[]},"kind":"EndAndBeginBlockForProvider","timeAdvancement":{"#bigint":"1"},"validator":""},{"changeAmount":{"#bigint":"0"},"consumerChain":"consumer1","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"EndAndBeginBlockForConsumer","timeAdvancement":{"#bigint":"1"},"validator":""},{"changeAmount":{"#bigint":"0"},"consumerChain":"consumer2","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"EndAndBeginBlockForConsumer","timeAdvancement":{"#bigint":"1"},"validator":""},{"changeAmount":{"#bigint":"0"},"consumerChain":"consumer3","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"EndAndBeginBlockForConsumer","timeAdvancement":{"#bigint":"1"},"validator":""},{"changeAmount":{"#bigint":"-50"},"consumerChain":"","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"VotingPowerChange","timeAdvancement":{"#bigint":"0"},"validator":"node1"},{"changeAmount":{"#bigint":"0"},"consumerChain":"","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"EndAndBeginBlockForProvider","timeAdvancement":{"#bigint":"1"},"validator":""},{"changeAmount":{"#bigint":"0"},"consumerChain":"consumer1","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"EndAndBeginBlockForConsumer","timeAdvancement":{"#bigint":"1"},"validator":""},{"changeAmount":{"#bigint":"0"},"consumerChain":"consumer2","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"EndAndBeginBlockForConsumer","timeAdvancement":{"#bigint":"1"},"validator":""},{"changeAmount":{"#bigint":"0"},"consumerChain":"consumer3","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"EndAndBeginBlockForConsumer","timeAdvancement":{"#bigint":"1"},"validator":""},{"changeAmount":{"#bigint":"0"},"consumerChain":"consumer2","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"DeliverVscPacket","timeAdvancement":{"#bigint":"0"},"validator":""},{"changeAmount":{"#bigint":"0"},"consumerChain":"consumer3","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"DeliverVscPacket","timeAdvancement":{"#bigint":"0"},"validator":""},{"changeAmount":{"#bigint":"0"},"consumerChain":"","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"EndAndBeginBlockForProvider","timeAdvancement":{"#bigint":"601200"},"validator":""},{"changeAmount":{"#bigint":"0"},"consumerChain":"consumer1","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"EndAndBeginBlockForConsumer","timeAdvancement":{"#bigint":"601200"},"validator":""},{"changeAmount":{"#bigint":"0"},"consumerChain":"consumer2","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"EndAndBeginBlockForConsumer","timeAdvancement":{"#bigint":"601200"},"validator":""},{"changeAmount":{"#bigint":"0"},"consumerChain":"consumer3","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"EndAndBeginBlockForConsumer","timeAdvancement":{"#bigint":"601200"},"validator":""},{"changeAmount":{"#bigint":"0"},"consumerChain":"","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"EndAndBeginBlockForProvider","timeAdvancement":{"#bigint":"601200"},"validator":""},{"changeAmount":{"#bigint":"0"},"consumerChain":"consumer1","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"EndAndBeginBlockForConsumer","timeAdvancement":{"#bigint":"601200"},"validator":""},{"changeAmount":{"#bigint":"0"},"consumerChain":"consumer2","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"EndAndBeginBlockForConsumer","timeAdvancement":{"#bigint":"601200"},"validator":""},{"changeAmount":{"#bigint":"0"},"consumerChain":"consumer3","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"EndAndBeginBlockForConsumer","timeAdvancement":{"#bigint":"601200"},"validator":""},{"changeAmount":{"#bigint":"0"},"consumerChain":"","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"EndAndBeginBlockForProvider","timeAdvancement":{"#bigint":"601200"},"validator":""},{"changeAmount":{"#bigint":"0"},"consumerChain":"consumer1","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"EndAndBeginBlockForConsumer","timeAdvancement":{"#bigint":"601200"},"validator":""},{"changeAmount":{"#bigint":"0"},"consumerChain":"consumer2","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"EndAndBeginBlockForConsumer","timeAdvancement":{"#bigint":"601200"},"validator":""},{"changeAmount":{"#bigint":"0"},"consumerChain":"consumer3","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"EndAndBeginBlockForConsumer","timeAdvancement":{"#bigint":"601200"},"validator":""},{"changeAmount":{"#bigint":"0"},"consumerChain":"","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"EndAndBeginBlockForProvider","timeAdvancement":{"#bigint":"86400"},"validator":""}]},{"#meta":{"index":25},"QueuedEndBlocks":[{"#tup":["consumer2",{"#bigint":"86400"}]},{"#tup":["consumer3",{"#bigint":"86400"}]}],"currentState":{"consumerStates":{"#map":[["consumer1",{"chainState":{"currentValidatorSet":{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},"lastTimestamp":{"#bigint":"1890002"},"votingPowerHistory":[{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]}]},"maturationTimes":[],"outstandingPacketsToProvider":[],"receivedVscPackets":[]}],["consumer2",{"chainState":{"currentValidatorSet":{"#map":[["node1",{"#bigint":"50"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},"lastTimestamp":{"#bigint":"1803602"},"votingPowerHistory":[{"#map":[["node1",{"#bigint":"50"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},{"#map":[["node1",{"#bigint":"50"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},{"#map":[["node1",{"#bigint":"50"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]}]},"maturationTimes":[{"#tup":[{"id":{"#bigint":"0"},"sendingTime":{"#bigint":"2"},"validatorSet":{"#map":[["node1",{"#bigint":"50"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]}},{"#bigint":"1209602"}]}],"outstandingPacketsToProvider":[],"receivedVscPackets":[{"id":{"#bigint":"0"},"sendingTime":{"#bigint":"2"},"validatorSet":{"#map":[["node1",{"#bigint":"50"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]}}]}],["consumer3",{"chainState":{"currentValidatorSet":{"#map":[["node1",{"#bigint":"50"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},"lastTimestamp":{"#bigint":"1803602"},"votingPowerHistory":[{"#map":[["node1",{"#bigint":"50"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},{"#map":[["node1",{"#bigint":"50"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},{"#map":[["node1",{"#bigint":"50"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]}]},"maturationTimes":[{"#tup":[{"id":{"#bigint":"0"},"sendingTime":{"#bigint":"2"},"validatorSet":{"#map":[["node1",{"#bigint":"50"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]}},{"#bigint":"1209602"}]}],"outstandingPacketsToProvider":[],"receivedVscPackets":[{"id":{"#bigint":"0"},"sendingTime":{"#bigint":"2"},"validatorSet":{"#map":[["node1",{"#bigint":"50"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]}}]}]]},"providerState":{"chainState":{"currentValidatorSet":{"#map":[["node1",{"#bigint":"50"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},"lastTimestamp":{"#bigint":"1890002"},"votingPowerHistory":[{"#map":[["node1",{"#bigint":"50"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},{"#map":[["node1",{"#bigint":"50"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},{"#map":[["node1",{"#bigint":"50"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},{"#map":[["node1",{"#bigint":"50"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},{"#map":[["node1",{"#bigint":"50"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]}]},"consumerStatus":{"#map":[["consumer1","running"],["consumer2","running"],["consumer3","running"]]},"outstandingPacketsToConsumer":{"#map":[["consumer1",[{"id":{"#bigint":"0"},"sendingTime":{"#bigint":"2"},"validatorSet":{"#map":[["node1",{"#bigint":"50"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]}}]],["consumer2",[]],["consumer3",[]]]},"providerValidatorSetChangedInThisBlock":false,"receivedMaturations":{"#set":[]},"runningVscId":{"#bigint":"1"},"sentVscPacketsToConsumer":{"#map":[["consumer1",[{"id":{"#bigint":"0"},"sendingTime":{"#bigint":"2"},"validatorSet":{"#map":[["node1",{"#bigint":"50"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]}}]],["consumer2",[{"id":{"#bigint":"0"},"sendingTime":{"#bigint":"2"},"validatorSet":{"#map":[["node1",{"#bigint":"50"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]}}]],["consumer3",[{"id":{"#bigint":"0"},"sendingTime":{"#bigint":"2"},"validatorSet":{"#map":[["node1",{"#bigint":"50"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]}}]]]}}},"params":{"CcvTimeout":{"#map":[["consumer1",{"#bigint":"1814400"}],["consumer2",{"#bigint":"1814400"}],["consumer3",{"#bigint":"1814400"}],["provider",{"#bigint":"1814400"}]]},"ConsumerChains":{"#set":["consumer1","consumer2","consumer3"]},"InitialValidatorSet":{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},"Nodes":{"#set":["node1","node10","node2","node3","node4","node5","node6","node7","node8","node9"]},"TrustingPeriodPerChain":{"#map":[["consumer1",{"#bigint":"1206000"}],["consumer2",{"#bigint":"1206000"}],["consumer3",{"#bigint":"1206000"}],["provider",{"#bigint":"1206000"}]]},"UnbondingPeriodPerChain":{"#map":[["consumer1",{"#bigint":"1209600"}],["consumer2",{"#bigint":"1209600"}],["consumer3",{"#bigint":"1209600"}],["provider",{"#bigint":"1209600"}]]},"VscTimeout":{"#bigint":"3024000"}},"trace":[{"changeAmount":{"#bigint":"0"},"consumerChain":"","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"init","timeAdvancement":{"#bigint":"0"},"validator":""},{"changeAmount":{"#bigint":"0"},"consumerChain":"","consumersToStart":{"#set":["consumer1","consumer2","consumer3"]},"consumersToStop":{"#set":[]},"kind":"EndAndBeginBlockForProvider","timeAdvancement":{"#bigint":"1"},"validator":""},{"changeAmount":{"#bigint":"0"},"consumerChain":"consumer1","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"EndAndBeginBlockForConsumer","timeAdvancement":{"#bigint":"1"},"validator":""},{"changeAmount":{"#bigint":"0"},"consumerChain":"consumer2","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"EndAndBeginBlockForConsumer","timeAdvancement":{"#bigint":"1"},"validator":""},{"changeAmount":{"#bigint":"0"},"consumerChain":"consumer3","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"EndAndBeginBlockForConsumer","timeAdvancement":{"#bigint":"1"},"validator":""},{"changeAmount":{"#bigint":"-50"},"consumerChain":"","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"VotingPowerChange","timeAdvancement":{"#bigint":"0"},"validator":"node1"},{"changeAmount":{"#bigint":"0"},"consumerChain":"","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"EndAndBeginBlockForProvider","timeAdvancement":{"#bigint":"1"},"validator":""},{"changeAmount":{"#bigint":"0"},"consumerChain":"consumer1","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"EndAndBeginBlockForConsumer","timeAdvancement":{"#bigint":"1"},"validator":""},{"changeAmount":{"#bigint":"0"},"consumerChain":"consumer2","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"EndAndBeginBlockForConsumer","timeAdvancement":{"#bigint":"1"},"validator":""},{"changeAmount":{"#bigint":"0"},"consumerChain":"consumer3","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"EndAndBeginBlockForConsumer","timeAdvancement":{"#bigint":"1"},"validator":""},{"changeAmount":{"#bigint":"0"},"consumerChain":"consumer2","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"DeliverVscPacket","timeAdvancement":{"#bigint":"0"},"validator":""},{"changeAmount":{"#bigint":"0"},"consumerChain":"consumer3","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"DeliverVscPacket","timeAdvancement":{"#bigint":"0"},"validator":""},{"changeAmount":{"#bigint":"0"},"consumerChain":"","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"EndAndBeginBlockForProvider","timeAdvancement":{"#bigint":"601200"},"validator":""},{"changeAmount":{"#bigint":"0"},"consumerChain":"consumer1","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"EndAndBeginBlockForConsumer","timeAdvancement":{"#bigint":"601200"},"validator":""},{"changeAmount":{"#bigint":"0"},"consumerChain":"consumer2","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"EndAndBeginBlockForConsumer","timeAdvancement":{"#bigint":"601200"},"validator":""},{"changeAmount":{"#bigint":"0"},"consumerChain":"consumer3","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"EndAndBeginBlockForConsumer","timeAdvancement":{"#bigint":"601200"},"validator":""},{"changeAmount":{"#bigint":"0"},"consumerChain":"","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"EndAndBeginBlockForProvider","timeAdvancement":{"#bigint":"601200"},"validator":""},{"changeAmount":{"#bigint":"0"},"consumerChain":"consumer1","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"EndAndBeginBlockForConsumer","timeAdvancement":{"#bigint":"601200"},"validator":""},{"changeAmount":{"#bigint":"0"},"consumerChain":"consumer2","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"EndAndBeginBlockForConsumer","timeAdvancement":{"#bigint":"601200"},"validator":""},{"changeAmount":{"#bigint":"0"},"consumerChain":"consumer3","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"EndAndBeginBlockForConsumer","timeAdvancement":{"#bigint":"601200"},"validator":""},{"changeAmount":{"#bigint":"0"},"consumerChain":"","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"EndAndBeginBlockForProvider","timeAdvancement":{"#bigint":"601200"},"validator":""},{"changeAmount":{"#bigint":"0"},"consumerChain":"consumer1","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"EndAndBeginBlockForConsumer","timeAdvancement":{"#bigint":"601200"},"validator":""},{"changeAmount":{"#bigint":"0"},"consumerChain":"consumer2","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"EndAndBeginBlockForConsumer","timeAdvancement":{"#bigint":"601200"},"validator":""},{"changeAmount":{"#bigint":"0"},"consumerChain":"consumer3","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"EndAndBeginBlockForConsumer","timeAdvancement":{"#bigint":"601200"},"validator":""},{"changeAmount":{"#bigint":"0"},"consumerChain":"","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"EndAndBeginBlockForProvider","timeAdvancement":{"#bigint":"86400"},"validator":""},{"changeAmount":{"#bigint":"0"},"consumerChain":"consumer1","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"EndAndBeginBlockForConsumer","timeAdvancement":{"#bigint":"86400"},"validator":""}]},{"#meta":{"index":26},"QueuedEndBlocks":[{"#tup":["consumer3",{"#bigint":"86400"}]}],"currentState":{"consumerStates":{"#map":[["consumer1",{"chainState":{"currentValidatorSet":{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},"lastTimestamp":{"#bigint":"1890002"},"votingPowerHistory":[{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]}]},"maturationTimes":[],"outstandingPacketsToProvider":[],"receivedVscPackets":[]}],["consumer2",{"chainState":{"currentValidatorSet":{"#map":[["node1",{"#bigint":"50"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},"lastTimestamp":{"#bigint":"1890002"},"votingPowerHistory":[{"#map":[["node1",{"#bigint":"50"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},{"#map":[["node1",{"#bigint":"50"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},{"#map":[["node1",{"#bigint":"50"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},{"#map":[["node1",{"#bigint":"50"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]}]},"maturationTimes":[],"outstandingPacketsToProvider":[{"id":{"#bigint":"0"},"sendingTime":{"#bigint":"1803602"}}],"receivedVscPackets":[{"id":{"#bigint":"0"},"sendingTime":{"#bigint":"2"},"validatorSet":{"#map":[["node1",{"#bigint":"50"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]}}]}],["consumer3",{"chainState":{"currentValidatorSet":{"#map":[["node1",{"#bigint":"50"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},"lastTimestamp":{"#bigint":"1803602"},"votingPowerHistory":[{"#map":[["node1",{"#bigint":"50"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},{"#map":[["node1",{"#bigint":"50"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},{"#map":[["node1",{"#bigint":"50"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]}]},"maturationTimes":[{"#tup":[{"id":{"#bigint":"0"},"sendingTime":{"#bigint":"2"},"validatorSet":{"#map":[["node1",{"#bigint":"50"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]}},{"#bigint":"1209602"}]}],"outstandingPacketsToProvider":[],"receivedVscPackets":[{"id":{"#bigint":"0"},"sendingTime":{"#bigint":"2"},"validatorSet":{"#map":[["node1",{"#bigint":"50"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]}}]}]]},"providerState":{"chainState":{"currentValidatorSet":{"#map":[["node1",{"#bigint":"50"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},"lastTimestamp":{"#bigint":"1890002"},"votingPowerHistory":[{"#map":[["node1",{"#bigint":"50"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},{"#map":[["node1",{"#bigint":"50"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},{"#map":[["node1",{"#bigint":"50"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},{"#map":[["node1",{"#bigint":"50"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},{"#map":[["node1",{"#bigint":"50"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]}]},"consumerStatus":{"#map":[["consumer1","running"],["consumer2","running"],["consumer3","running"]]},"outstandingPacketsToConsumer":{"#map":[["consumer1",[{"id":{"#bigint":"0"},"sendingTime":{"#bigint":"2"},"validatorSet":{"#map":[["node1",{"#bigint":"50"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]}}]],["consumer2",[]],["consumer3",[]]]},"providerValidatorSetChangedInThisBlock":false,"receivedMaturations":{"#set":[]},"runningVscId":{"#bigint":"1"},"sentVscPacketsToConsumer":{"#map":[["consumer1",[{"id":{"#bigint":"0"},"sendingTime":{"#bigint":"2"},"validatorSet":{"#map":[["node1",{"#bigint":"50"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]}}]],["consumer2",[{"id":{"#bigint":"0"},"sendingTime":{"#bigint":"2"},"validatorSet":{"#map":[["node1",{"#bigint":"50"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]}}]],["consumer3",[{"id":{"#bigint":"0"},"sendingTime":{"#bigint":"2"},"validatorSet":{"#map":[["node1",{"#bigint":"50"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]}}]]]}}},"params":{"CcvTimeout":{"#map":[["consumer1",{"#bigint":"1814400"}],["consumer2",{"#bigint":"1814400"}],["consumer3",{"#bigint":"1814400"}],["provider",{"#bigint":"1814400"}]]},"ConsumerChains":{"#set":["consumer1","consumer2","consumer3"]},"InitialValidatorSet":{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},"Nodes":{"#set":["node1","node10","node2","node3","node4","node5","node6","node7","node8","node9"]},"TrustingPeriodPerChain":{"#map":[["consumer1",{"#bigint":"1206000"}],["consumer2",{"#bigint":"1206000"}],["consumer3",{"#bigint":"1206000"}],["provider",{"#bigint":"1206000"}]]},"UnbondingPeriodPerChain":{"#map":[["consumer1",{"#bigint":"1209600"}],["consumer2",{"#bigint":"1209600"}],["consumer3",{"#bigint":"1209600"}],["provider",{"#bigint":"1209600"}]]},"VscTimeout":{"#bigint":"3024000"}},"trace":[{"changeAmount":{"#bigint":"0"},"consumerChain":"","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"init","timeAdvancement":{"#bigint":"0"},"validator":""},{"changeAmount":{"#bigint":"0"},"consumerChain":"","consumersToStart":{"#set":["consumer1","consumer2","consumer3"]},"consumersToStop":{"#set":[]},"kind":"EndAndBeginBlockForProvider","timeAdvancement":{"#bigint":"1"},"validator":""},{"changeAmount":{"#bigint":"0"},"consumerChain":"consumer1","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"EndAndBeginBlockForConsumer","timeAdvancement":{"#bigint":"1"},"validator":""},{"changeAmount":{"#bigint":"0"},"consumerChain":"consumer2","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"EndAndBeginBlockForConsumer","timeAdvancement":{"#bigint":"1"},"validator":""},{"changeAmount":{"#bigint":"0"},"consumerChain":"consumer3","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"EndAndBeginBlockForConsumer","timeAdvancement":{"#bigint":"1"},"validator":""},{"changeAmount":{"#bigint":"-50"},"consumerChain":"","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"VotingPowerChange","timeAdvancement":{"#bigint":"0"},"validator":"node1"},{"changeAmount":{"#bigint":"0"},"consumerChain":"","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"EndAndBeginBlockForProvider","timeAdvancement":{"#bigint":"1"},"validator":""},{"changeAmount":{"#bigint":"0"},"consumerChain":"consumer1","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"EndAndBeginBlockForConsumer","timeAdvancement":{"#bigint":"1"},"validator":""},{"changeAmount":{"#bigint":"0"},"consumerChain":"consumer2","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"EndAndBeginBlockForConsumer","timeAdvancement":{"#bigint":"1"},"validator":""},{"changeAmount":{"#bigint":"0"},"consumerChain":"consumer3","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"EndAndBeginBlockForConsumer","timeAdvancement":{"#bigint":"1"},"validator":""},{"changeAmount":{"#bigint":"0"},"consumerChain":"consumer2","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"DeliverVscPacket","timeAdvancement":{"#bigint":"0"},"validator":""},{"changeAmount":{"#bigint":"0"},"consumerChain":"consumer3","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"DeliverVscPacket","timeAdvancement":{"#bigint":"0"},"validator":""},{"changeAmount":{"#bigint":"0"},"consumerChain":"","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"EndAndBeginBlockForProvider","timeAdvancement":{"#bigint":"601200"},"validator":""},{"changeAmount":{"#bigint":"0"},"consumerChain":"consumer1","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"EndAndBeginBlockForConsumer","timeAdvancement":{"#bigint":"601200"},"validator":""},{"changeAmount":{"#bigint":"0"},"consumerChain":"consumer2","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"EndAndBeginBlockForConsumer","timeAdvancement":{"#bigint":"601200"},"validator":""},{"changeAmount":{"#bigint":"0"},"consumerChain":"consumer3","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"EndAndBeginBlockForConsumer","timeAdvancement":{"#bigint":"601200"},"validator":""},{"changeAmount":{"#bigint":"0"},"consumerChain":"","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"EndAndBeginBlockForProvider","timeAdvancement":{"#bigint":"601200"},"validator":""},{"changeAmount":{"#bigint":"0"},"consumerChain":"consumer1","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"EndAndBeginBlockForConsumer","timeAdvancement":{"#bigint":"601200"},"validator":""},{"changeAmount":{"#bigint":"0"},"consumerChain":"consumer2","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"EndAndBeginBlockForConsumer","timeAdvancement":{"#bigint":"601200"},"validator":""},{"changeAmount":{"#bigint":"0"},"consumerChain":"consumer3","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"EndAndBeginBlockForConsumer","timeAdvancement":{"#bigint":"601200"},"validator":""},{"changeAmount":{"#bigint":"0"},"consumerChain":"","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"EndAndBeginBlockForProvider","timeAdvancement":{"#bigint":"601200"},"validator":""},{"changeAmount":{"#bigint":"0"},"consumerChain":"consumer1","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"EndAndBeginBlockForConsumer","timeAdvancement":{"#bigint":"601200"},"validator":""},{"changeAmount":{"#bigint":"0"},"consumerChain":"consumer2","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"EndAndBeginBlockForConsumer","timeAdvancement":{"#bigint":"601200"},"validator":""},{"changeAmount":{"#bigint":"0"},"consumerChain":"consumer3","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"EndAndBeginBlockForConsumer","timeAdvancement":{"#bigint":"601200"},"validator":""},{"changeAmount":{"#bigint":"0"},"consumerChain":"","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"EndAndBeginBlockForProvider","timeAdvancement":{"#bigint":"86400"},"validator":""},{"changeAmount":{"#bigint":"0"},"consumerChain":"consumer1","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"EndAndBeginBlockForConsumer","timeAdvancement":{"#bigint":"86400"},"validator":""},{"changeAmount":{"#bigint":"0"},"consumerChain":"consumer2","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"EndAndBeginBlockForConsumer","timeAdvancement":{"#bigint":"86400"},"validator":""}]},{"#meta":{"index":27},"QueuedEndBlocks":[],"currentState":{"consumerStates":{"#map":[["consumer1",{"chainState":{"currentValidatorSet":{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},"lastTimestamp":{"#bigint":"1890002"},"votingPowerHistory":[{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]}]},"maturationTimes":[],"outstandingPacketsToProvider":[],"receivedVscPackets":[]}],["consumer2",{"chainState":{"currentValidatorSet":{"#map":[["node1",{"#bigint":"50"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},"lastTimestamp":{"#bigint":"1890002"},"votingPowerHistory":[{"#map":[["node1",{"#bigint":"50"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},{"#map":[["node1",{"#bigint":"50"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},{"#map":[["node1",{"#bigint":"50"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},{"#map":[["node1",{"#bigint":"50"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]}]},"maturationTimes":[],"outstandingPacketsToProvider":[{"id":{"#bigint":"0"},"sendingTime":{"#bigint":"1803602"}}],"receivedVscPackets":[{"id":{"#bigint":"0"},"sendingTime":{"#bigint":"2"},"validatorSet":{"#map":[["node1",{"#bigint":"50"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]}}]}],["consumer3",{"chainState":{"currentValidatorSet":{"#map":[["node1",{"#bigint":"50"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},"lastTimestamp":{"#bigint":"1890002"},"votingPowerHistory":[{"#map":[["node1",{"#bigint":"50"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},{"#map":[["node1",{"#bigint":"50"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},{"#map":[["node1",{"#bigint":"50"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},{"#map":[["node1",{"#bigint":"50"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]}]},"maturationTimes":[],"outstandingPacketsToProvider":[{"id":{"#bigint":"0"},"sendingTime":{"#bigint":"1803602"}}],"receivedVscPackets":[{"id":{"#bigint":"0"},"sendingTime":{"#bigint":"2"},"validatorSet":{"#map":[["node1",{"#bigint":"50"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]}}]}]]},"providerState":{"chainState":{"currentValidatorSet":{"#map":[["node1",{"#bigint":"50"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},"lastTimestamp":{"#bigint":"1890002"},"votingPowerHistory":[{"#map":[["node1",{"#bigint":"50"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},{"#map":[["node1",{"#bigint":"50"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},{"#map":[["node1",{"#bigint":"50"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},{"#map":[["node1",{"#bigint":"50"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},{"#map":[["node1",{"#bigint":"50"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]}]},"consumerStatus":{"#map":[["consumer1","running"],["consumer2","running"],["consumer3","running"]]},"outstandingPacketsToConsumer":{"#map":[["consumer1",[{"id":{"#bigint":"0"},"sendingTime":{"#bigint":"2"},"validatorSet":{"#map":[["node1",{"#bigint":"50"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]}}]],["consumer2",[]],["consumer3",[]]]},"providerValidatorSetChangedInThisBlock":false,"receivedMaturations":{"#set":[]},"runningVscId":{"#bigint":"1"},"sentVscPacketsToConsumer":{"#map":[["consumer1",[{"id":{"#bigint":"0"},"sendingTime":{"#bigint":"2"},"validatorSet":{"#map":[["node1",{"#bigint":"50"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]}}]],["consumer2",[{"id":{"#bigint":"0"},"sendingTime":{"#bigint":"2"},"validatorSet":{"#map":[["node1",{"#bigint":"50"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]}}]],["consumer3",[{"id":{"#bigint":"0"},"sendingTime":{"#bigint":"2"},"validatorSet":{"#map":[["node1",{"#bigint":"50"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]}}]]]}}},"params":{"CcvTimeout":{"#map":[["consumer1",{"#bigint":"1814400"}],["consumer2",{"#bigint":"1814400"}],["consumer3",{"#bigint":"1814400"}],["provider",{"#bigint":"1814400"}]]},"ConsumerChains":{"#set":["consumer1","consumer2","consumer3"]},"InitialValidatorSet":{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},"Nodes":{"#set":["node1","node10","node2","node3","node4","node5","node6","node7","node8","node9"]},"TrustingPeriodPerChain":{"#map":[["consumer1",{"#bigint":"1206000"}],["consumer2",{"#bigint":"1206000"}],["consumer3",{"#bigint":"1206000"}],["provider",{"#bigint":"1206000"}]]},"UnbondingPeriodPerChain":{"#map":[["consumer1",{"#bigint":"1209600"}],["consumer2",{"#bigint":"1209600"}],["consumer3",{"#bigint":"1209600"}],["provider",{"#bigint":"1209600"}]]},"VscTimeout":{"#bigint":"3024000"}},"trace":[{"changeAmount":{"#bigint":"0"},"consumerChain":"","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"init","timeAdvancement":{"#bigint":"0"},"validator":""},{"changeAmount":{"#bigint":"0"},"consumerChain":"","consumersToStart":{"#set":["consumer1","consumer2","consumer3"]},"consumersToStop":{"#set":[]},"kind":"EndAndBeginBlockForProvider","timeAdvancement":{"#bigint":"1"},"validator":""},{"changeAmount":{"#bigint":"0"},"consumerChain":"consumer1","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"EndAndBeginBlockForConsumer","timeAdvancement":{"#bigint":"1"},"validator":""},{"changeAmount":{"#bigint":"0"},"consumerChain":"consumer2","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"EndAndBeginBlockForConsumer","timeAdvancement":{"#bigint":"1"},"validator":""},{"changeAmount":{"#bigint":"0"},"consumerChain":"consumer3","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"EndAndBeginBlockForConsumer","timeAdvancement":{"#bigint":"1"},"validator":""},{"changeAmount":{"#bigint":"-50"},"consumerChain":"","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"VotingPowerChange","timeAdvancement":{"#bigint":"0"},"validator":"node1"},{"changeAmount":{"#bigint":"0"},"consumerChain":"","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"EndAndBeginBlockForProvider","timeAdvancement":{"#bigint":"1"},"validator":""},{"changeAmount":{"#bigint":"0"},"consumerChain":"consumer1","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"EndAndBeginBlockForConsumer","timeAdvancement":{"#bigint":"1"},"validator":""},{"changeAmount":{"#bigint":"0"},"consumerChain":"consumer2","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"EndAndBeginBlockForConsumer","timeAdvancement":{"#bigint":"1"},"validator":""},{"changeAmount":{"#bigint":"0"},"consumerChain":"consumer3","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"EndAndBeginBlockForConsumer","timeAdvancement":{"#bigint":"1"},"validator":""},{"changeAmount":{"#bigint":"0"},"consumerChain":"consumer2","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"DeliverVscPacket","timeAdvancement":{"#bigint":"0"},"validator":""},{"changeAmount":{"#bigint":"0"},"consumerChain":"consumer3","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"DeliverVscPacket","timeAdvancement":{"#bigint":"0"},"validator":""},{"changeAmount":{"#bigint":"0"},"consumerChain":"","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"EndAndBeginBlockForProvider","timeAdvancement":{"#bigint":"601200"},"validator":""},{"changeAmount":{"#bigint":"0"},"consumerChain":"consumer1","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"EndAndBeginBlockForConsumer","timeAdvancement":{"#bigint":"601200"},"validator":""},{"changeAmount":{"#bigint":"0"},"consumerChain":"consumer2","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"EndAndBeginBlockForConsumer","timeAdvancement":{"#bigint":"601200"},"validator":""},{"changeAmount":{"#bigint":"0"},"consumerChain":"consumer3","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"EndAndBeginBlockForConsumer","timeAdvancement":{"#bigint":"601200"},"validator":""},{"changeAmount":{"#bigint":"0"},"consumerChain":"","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"EndAndBeginBlockForProvider","timeAdvancement":{"#bigint":"601200"},"validator":""},{"changeAmount":{"#bigint":"0"},"consumerChain":"consumer1","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"EndAndBeginBlockForConsumer","timeAdvancement":{"#bigint":"601200"},"validator":""},{"changeAmount":{"#bigint":"0"},"consumerChain":"consumer2","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"EndAndBeginBlockForConsumer","timeAdvancement":{"#bigint":"601200"},"validator":""},{"changeAmount":{"#bigint":"0"},"consumerChain":"consumer3","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"EndAndBeginBlockForConsumer","timeAdvancement":{"#bigint":"601200"},"validator":""},{"changeAmount":{"#bigint":"0"},"consumerChain":"","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"EndAndBeginBlockForProvider","timeAdvancement":{"#bigint":"601200"},"validator":""},{"changeAmount":{"#bigint":"0"},"consumerChain":"consumer1","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"EndAndBeginBlockForConsumer","timeAdvancement":{"#bigint":"601200"},"validator":""},{"changeAmount":{"#bigint":"0"},"consumerChain":"consumer2","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"EndAndBeginBlockForConsumer","timeAdvancement":{"#bigint":"601200"},"validator":""},{"changeAmount":{"#bigint":"0"},"consumerChain":"consumer3","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"EndAndBeginBlockForConsumer","timeAdvancement":{"#bigint":"601200"},"validator":""},{"changeAmount":{"#bigint":"0"},"consumerChain":"","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"EndAndBeginBlockForProvider","timeAdvancement":{"#bigint":"86400"},"validator":""},{"changeAmount":{"#bigint":"0"},"consumerChain":"consumer1","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"EndAndBeginBlockForConsumer","timeAdvancement":{"#bigint":"86400"},"validator":""},{"changeAmount":{"#bigint":"0"},"consumerChain":"consumer2","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"EndAndBeginBlockForConsumer","timeAdvancement":{"#bigint":"86400"},"validator":""},{"changeAmount":{"#bigint":"0"},"consumerChain":"consumer3","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"EndAndBeginBlockForConsumer","timeAdvancement":{"#bigint":"86400"},"validator":""}]},{"#meta":{"index":28},"QueuedEndBlocks":[],"currentState":{"consumerStates":{"#map":[["consumer1",{"chainState":{"currentValidatorSet":{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},"lastTimestamp":{"#bigint":"1890002"},"votingPowerHistory":[{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]}]},"maturationTimes":[],"outstandingPacketsToProvider":[],"receivedVscPackets":[]}],["consumer2",{"chainState":{"currentValidatorSet":{"#map":[["node1",{"#bigint":"50"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},"lastTimestamp":{"#bigint":"1890002"},"votingPowerHistory":[{"#map":[["node1",{"#bigint":"50"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},{"#map":[["node1",{"#bigint":"50"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},{"#map":[["node1",{"#bigint":"50"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},{"#map":[["node1",{"#bigint":"50"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]}]},"maturationTimes":[],"outstandingPacketsToProvider":[],"receivedVscPackets":[{"id":{"#bigint":"0"},"sendingTime":{"#bigint":"2"},"validatorSet":{"#map":[["node1",{"#bigint":"50"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]}}]}],["consumer3",{"chainState":{"currentValidatorSet":{"#map":[["node1",{"#bigint":"50"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},"lastTimestamp":{"#bigint":"1890002"},"votingPowerHistory":[{"#map":[["node1",{"#bigint":"50"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},{"#map":[["node1",{"#bigint":"50"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},{"#map":[["node1",{"#bigint":"50"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},{"#map":[["node1",{"#bigint":"50"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]}]},"maturationTimes":[],"outstandingPacketsToProvider":[{"id":{"#bigint":"0"},"sendingTime":{"#bigint":"1803602"}}],"receivedVscPackets":[{"id":{"#bigint":"0"},"sendingTime":{"#bigint":"2"},"validatorSet":{"#map":[["node1",{"#bigint":"50"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]}}]}]]},"providerState":{"chainState":{"currentValidatorSet":{"#map":[["node1",{"#bigint":"50"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},"lastTimestamp":{"#bigint":"1890002"},"votingPowerHistory":[{"#map":[["node1",{"#bigint":"50"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},{"#map":[["node1",{"#bigint":"50"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},{"#map":[["node1",{"#bigint":"50"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},{"#map":[["node1",{"#bigint":"50"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},{"#map":[["node1",{"#bigint":"50"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]}]},"consumerStatus":{"#map":[["consumer1","running"],["consumer2","running"],["consumer3","running"]]},"outstandingPacketsToConsumer":{"#map":[["consumer1",[{"id":{"#bigint":"0"},"sendingTime":{"#bigint":"2"},"validatorSet":{"#map":[["node1",{"#bigint":"50"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]}}]],["consumer2",[]],["consumer3",[]]]},"providerValidatorSetChangedInThisBlock":false,"receivedMaturations":{"#set":[{"id":{"#bigint":"0"},"sendingTime":{"#bigint":"1803602"}}]},"runningVscId":{"#bigint":"1"},"sentVscPacketsToConsumer":{"#map":[["consumer1",[{"id":{"#bigint":"0"},"sendingTime":{"#bigint":"2"},"validatorSet":{"#map":[["node1",{"#bigint":"50"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]}}]],["consumer2",[{"id":{"#bigint":"0"},"sendingTime":{"#bigint":"2"},"validatorSet":{"#map":[["node1",{"#bigint":"50"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]}}]],["consumer3",[{"id":{"#bigint":"0"},"sendingTime":{"#bigint":"2"},"validatorSet":{"#map":[["node1",{"#bigint":"50"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]}}]]]}}},"params":{"CcvTimeout":{"#map":[["consumer1",{"#bigint":"1814400"}],["consumer2",{"#bigint":"1814400"}],["consumer3",{"#bigint":"1814400"}],["provider",{"#bigint":"1814400"}]]},"ConsumerChains":{"#set":["consumer1","consumer2","consumer3"]},"InitialValidatorSet":{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},"Nodes":{"#set":["node1","node10","node2","node3","node4","node5","node6","node7","node8","node9"]},"TrustingPeriodPerChain":{"#map":[["consumer1",{"#bigint":"1206000"}],["consumer2",{"#bigint":"1206000"}],["consumer3",{"#bigint":"1206000"}],["provider",{"#bigint":"1206000"}]]},"UnbondingPeriodPerChain":{"#map":[["consumer1",{"#bigint":"1209600"}],["consumer2",{"#bigint":"1209600"}],["consumer3",{"#bigint":"1209600"}],["provider",{"#bigint":"1209600"}]]},"VscTimeout":{"#bigint":"3024000"}},"trace":[{"changeAmount":{"#bigint":"0"},"consumerChain":"","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"init","timeAdvancement":{"#bigint":"0"},"validator":""},{"changeAmount":{"#bigint":"0"},"consumerChain":"","consumersToStart":{"#set":["consumer1","consumer2","consumer3"]},"consumersToStop":{"#set":[]},"kind":"EndAndBeginBlockForProvider","timeAdvancement":{"#bigint":"1"},"validator":""},{"changeAmount":{"#bigint":"0"},"consumerChain":"consumer1","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"EndAndBeginBlockForConsumer","timeAdvancement":{"#bigint":"1"},"validator":""},{"changeAmount":{"#bigint":"0"},"consumerChain":"consumer2","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"EndAndBeginBlockForConsumer","timeAdvancement":{"#bigint":"1"},"validator":""},{"changeAmount":{"#bigint":"0"},"consumerChain":"consumer3","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"EndAndBeginBlockForConsumer","timeAdvancement":{"#bigint":"1"},"validator":""},{"changeAmount":{"#bigint":"-50"},"consumerChain":"","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"VotingPowerChange","timeAdvancement":{"#bigint":"0"},"validator":"node1"},{"changeAmount":{"#bigint":"0"},"consumerChain":"","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"EndAndBeginBlockForProvider","timeAdvancement":{"#bigint":"1"},"validator":""},{"changeAmount":{"#bigint":"0"},"consumerChain":"consumer1","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"EndAndBeginBlockForConsumer","timeAdvancement":{"#bigint":"1"},"validator":""},{"changeAmount":{"#bigint":"0"},"consumerChain":"consumer2","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"EndAndBeginBlockForConsumer","timeAdvancement":{"#bigint":"1"},"validator":""},{"changeAmount":{"#bigint":"0"},"consumerChain":"consumer3","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"EndAndBeginBlockForConsumer","timeAdvancement":{"#bigint":"1"},"validator":""},{"changeAmount":{"#bigint":"0"},"consumerChain":"consumer2","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"DeliverVscPacket","timeAdvancement":{"#bigint":"0"},"validator":""},{"changeAmount":{"#bigint":"0"},"consumerChain":"consumer3","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"DeliverVscPacket","timeAdvancement":{"#bigint":"0"},"validator":""},{"changeAmount":{"#bigint":"0"},"consumerChain":"","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"EndAndBeginBlockForProvider","timeAdvancement":{"#bigint":"601200"},"validator":""},{"changeAmount":{"#bigint":"0"},"consumerChain":"consumer1","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"EndAndBeginBlockForConsumer","timeAdvancement":{"#bigint":"601200"},"validator":""},{"changeAmount":{"#bigint":"0"},"consumerChain":"consumer2","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"EndAndBeginBlockForConsumer","timeAdvancement":{"#bigint":"601200"},"validator":""},{"changeAmount":{"#bigint":"0"},"consumerChain":"consumer3","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"EndAndBeginBlockForConsumer","timeAdvancement":{"#bigint":"601200"},"validator":""},{"changeAmount":{"#bigint":"0"},"consumerChain":"","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"EndAndBeginBlockForProvider","timeAdvancement":{"#bigint":"601200"},"validator":""},{"changeAmount":{"#bigint":"0"},"consumerChain":"consumer1","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"EndAndBeginBlockForConsumer","timeAdvancement":{"#bigint":"601200"},"validator":""},{"changeAmount":{"#bigint":"0"},"consumerChain":"consumer2","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"EndAndBeginBlockForConsumer","timeAdvancement":{"#bigint":"601200"},"validator":""},{"changeAmount":{"#bigint":"0"},"consumerChain":"consumer3","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"EndAndBeginBlockForConsumer","timeAdvancement":{"#bigint":"601200"},"validator":""},{"changeAmount":{"#bigint":"0"},"consumerChain":"","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"EndAndBeginBlockForProvider","timeAdvancement":{"#bigint":"601200"},"validator":""},{"changeAmount":{"#bigint":"0"},"consumerChain":"consumer1","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"EndAndBeginBlockForConsumer","timeAdvancement":{"#bigint":"601200"},"validator":""},{"changeAmount":{"#bigint":"0"},"consumerChain":"consumer2","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"EndAndBeginBlockForConsumer","timeAdvancement":{"#bigint":"601200"},"validator":""},{"changeAmount":{"#bigint":"0"},"consumerChain":"consumer3","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"EndAndBeginBlockForConsumer","timeAdvancement":{"#bigint":"601200"},"validator":""},{"changeAmount":{"#bigint":"0"},"consumerChain":"","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"EndAndBeginBlockForProvider","timeAdvancement":{"#bigint":"86400"},"validator":""},{"changeAmount":{"#bigint":"0"},"consumerChain":"consumer1","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"EndAndBeginBlockForConsumer","timeAdvancement":{"#bigint":"86400"},"validator":""},{"changeAmount":{"#bigint":"0"},"consumerChain":"consumer2","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"EndAndBeginBlockForConsumer","timeAdvancement":{"#bigint":"86400"},"validator":""},{"changeAmount":{"#bigint":"0"},"consumerChain":"consumer3","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"EndAndBeginBlockForConsumer","timeAdvancement":{"#bigint":"86400"},"validator":""},{"changeAmount":{"#bigint":"0"},"consumerChain":"consumer2","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"DeliverVscMaturedPacket","timeAdvancement":{"#bigint":"0"},"validator":""}]}]} \ No newline at end of file diff --git a/testutil/simibc/chain_util.go b/testutil/simibc/chain_util.go index fe60002333..b102fffd13 100644 --- a/testutil/simibc/chain_util.go +++ b/testutil/simibc/chain_util.go @@ -41,7 +41,7 @@ func BeginBlock(c *ibctesting.TestChain, dt time.Duration) { // NOTE: this method may be used independently of the rest of simibc. func EndBlock( c *ibctesting.TestChain, - // preCommitCallback func(), + preCommitCallback func(), ) (*ibctmtypes.Header, []channeltypes.Packet) { ebRes := c.App.EndBlock(abci.RequestEndBlock{Height: c.CurrentHeader.Height}) diff --git a/testutil/simibc/ordered_outbox.go b/testutil/simibc/ordered_outbox.go index 3c969d2a32..b107cda7d8 100644 --- a/testutil/simibc/ordered_outbox.go +++ b/testutil/simibc/ordered_outbox.go @@ -2,6 +2,15 @@ package simibc import channeltypes "github.com/cosmos/ibc-go/v7/modules/core/04-channel/types" +// The number of blocks to wait before a packet or ack is available for delivery +// after it has been comitted on the chain. +// For example, if DelayPeriodBlocks is 0 and a packet p was sent at height h +// (i.e. the chain has produced a header height h) +// the packet can immediately be received. +// If DelayPeriodBlocks is 1, the packet can be received +// once the chain has produced a header for height h + 1. +const DelayPeriodBlocks = 1 + // Ack represents a (sent) ack committed to block state type Ack struct { Ack []byte @@ -67,7 +76,7 @@ func (n OrderedOutbox) ConsumePackets(sender string, num int) []Packet { num = sz } for _, p := range n.OutboxPackets[sender][:num] { - if 1 < p.Commits { + if DelayPeriodBlocks < p.Commits { ret = append(ret, p) } else { break From 8f8d2c4e3db767b8fc27e8a218a8d87e1d18a2fd Mon Sep 17 00:00:00 2001 From: Philip Offtermatt Date: Mon, 20 Nov 2023 09:33:56 +0100 Subject: [PATCH 024/111] Add type annotations --- tests/difference/core/quint_model/ccv.qnt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/difference/core/quint_model/ccv.qnt b/tests/difference/core/quint_model/ccv.qnt index 5087098e3d..be7bc74efc 100644 --- a/tests/difference/core/quint_model/ccv.qnt +++ b/tests/difference/core/quint_model/ccv.qnt @@ -474,7 +474,7 @@ module ccv { val maturedPackets = newConsumerState.maturationTimes.select( pair => val packet = pair._1 - val maturationTime = pair._2 + val maturationTime: Time = pair._2 // important that the old chain state is used here, because sending packets happens on EndBlock, // but the new timestamp only appears after BeginBlock maturationTime <= oldChainState.lastTimestamp @@ -482,7 +482,7 @@ module ccv { val newMaturationTimes = newConsumerState.maturationTimes.select( pair => val packet = pair._1 - val maturationTime = pair._2 + val maturationTime: Time = pair._2 // important that the old chain state is used here, because sending packets happens on EndBlock, // but the new timestamp only appears after BeginBlock maturationTime > oldChainState.lastTimestamp From 6dacc097a2332c795062cf6a261695859226231e Mon Sep 17 00:00:00 2001 From: Philip Offtermatt Date: Wed, 22 Nov 2023 11:06:18 +0100 Subject: [PATCH 025/111] Add ack delivery after each step --- .../core/quint_model/driver/core.go | 10 ++++ .../core/quint_model/driver/mbt_test.go | 5 +- .../core/quint_model/driver/trace_gen.go | 60 +++++++++++++++++++ 3 files changed, 74 insertions(+), 1 deletion(-) create mode 100644 tests/difference/core/quint_model/driver/trace_gen.go diff --git a/tests/difference/core/quint_model/driver/core.go b/tests/difference/core/quint_model/driver/core.go index 03e65f008c..6fb993b2c4 100644 --- a/tests/difference/core/quint_model/driver/core.go +++ b/tests/difference/core/quint_model/driver/core.go @@ -2,6 +2,7 @@ package main import ( "fmt" + "math" "strings" "testing" "time" @@ -435,6 +436,15 @@ func (s *Driver) DeliverPacketFromConsumer(sender ChainId) { s.path(sender).DeliverPackets(P, 1) // deliver to the provider } +// DeliverAcks delivers, for each path, +// all possible acks (up to math.MaxInt many per path). +func (s *Driver) DeliverAcks() { + for _, path := range s.simibcs { + path.DeliverAcks(string(path.Path.EndpointA.Chain.ChainID), math.MaxInt) + path.DeliverAcks(string(path.Path.EndpointB.Chain.ChainID), math.MaxInt) + } +} + // newDriver creates a new Driver object. // It creates a new coordinator, but does not start any chains. // The caller must call setupChains to start the chains and diff --git a/tests/difference/core/quint_model/driver/mbt_test.go b/tests/difference/core/quint_model/driver/mbt_test.go index 6f8b575300..ccd1955eee 100644 --- a/tests/difference/core/quint_model/driver/mbt_test.go +++ b/tests/difference/core/quint_model/driver/mbt_test.go @@ -15,7 +15,7 @@ import ( "github.com/stretchr/testify/require" ) -const verbose = false +const verbose = true func TestItfTrace(t *testing.T) { path := "trace.json" @@ -177,6 +177,9 @@ func TestItfTrace(t *testing.T) { path, index, actionKind) } + // deliver all acks that are ready + driver.DeliverAcks() + if verbose { t.Logf("Current actual state: %s", driver.getStateString()) } diff --git a/tests/difference/core/quint_model/driver/trace_gen.go b/tests/difference/core/quint_model/driver/trace_gen.go new file mode 100644 index 0000000000..2643e16b78 --- /dev/null +++ b/tests/difference/core/quint_model/driver/trace_gen.go @@ -0,0 +1,60 @@ +package main + +import ( + "fmt" + "os" + "os/exec" +) + +type ModelConfig struct { + modelPath string + init string + step string +} + +type InvariantConfig struct { + invariant string + numSamples int + numSteps int +} + +// GenerateTraces generates a number of traces for a given invariant +// and stores them in a given folder. +// The traces will be named trace_0, trace_1, etc. +// For each trace that is produced, quint will run at most for numSteps steps, +// and run numSamples samples. +// If a quint run does not produce a trace that violates the invariant, +// it will not be retried, and there will simply be fewer than numTraces traces. +func GenerateTraces(numTraces int, modelConfig ModelConfig, invConfig InvariantConfig, traceFolder string) { + // make sure the folder exists + if err := os.MkdirAll(traceFolder, 0o755); err != nil { + panic(err) + } + + for i := 0; i < numTraces; i++ { + // Generate trace + traceName := fmt.Sprintf("trace_%d", i) + GenerateTrace(modelConfig, invConfig, traceName) + } +} + +func GenerateTrace(modelConfig ModelConfig, invConfig InvariantConfig, traceName string) { + cmd := fmt.Sprintf( + "quint run --out-itf %v --init %v --step %v --invariant=%v --max-steps=%v --max-samples=%v %v", + traceName, + modelConfig.init, + modelConfig.step, + invConfig.invariant, + invConfig.numSteps, + invConfig.numSamples, + modelConfig.modelPath, + ) + + fmt.Println(cmd) + + out, err := exec.Command("bash", "-c", cmd).CombinedOutput() + if err != nil { + fmt.Println(string(out)) + panic(err) + } +} From 2c3a6d5568dd056fe3997e79eff478871fd28c20 Mon Sep 17 00:00:00 2001 From: Philip Offtermatt Date: Wed, 22 Nov 2023 13:27:25 +0100 Subject: [PATCH 026/111] Add programmatic ways of generating traces --- .../core/quint_model/driver/.gitignore | 1 + .../quint_model/driver/generate_traces.sh | 1 + .../core/quint_model/driver/main.go | 77 +++++++++++++++++++ .../core/quint_model/driver/mbt_test.go | 28 +++++-- .../core/quint_model/driver/trace_gen.go | 11 ++- 5 files changed, 110 insertions(+), 8 deletions(-) create mode 100644 tests/difference/core/quint_model/driver/.gitignore create mode 100755 tests/difference/core/quint_model/driver/generate_traces.sh create mode 100644 tests/difference/core/quint_model/driver/main.go diff --git a/tests/difference/core/quint_model/driver/.gitignore b/tests/difference/core/quint_model/driver/.gitignore new file mode 100644 index 0000000000..f20fc92b55 --- /dev/null +++ b/tests/difference/core/quint_model/driver/.gitignore @@ -0,0 +1 @@ +traces/* diff --git a/tests/difference/core/quint_model/driver/generate_traces.sh b/tests/difference/core/quint_model/driver/generate_traces.sh new file mode 100755 index 0000000000..7dc347bd89 --- /dev/null +++ b/tests/difference/core/quint_model/driver/generate_traces.sh @@ -0,0 +1 @@ +go run ./... -modelPath=../ccv_happy.qnt -init initHappy -step stepHappy -invariant CanReceiveMaturations -traceFolder traces -numTraces 50 \ No newline at end of file diff --git a/tests/difference/core/quint_model/driver/main.go b/tests/difference/core/quint_model/driver/main.go new file mode 100644 index 0000000000..d6343a2ee5 --- /dev/null +++ b/tests/difference/core/quint_model/driver/main.go @@ -0,0 +1,77 @@ +package main + +import ( + "flag" + "fmt" + "os" +) + +// main generates traces according to a given config +// and stores them in a folder. +// This can be used to generate traces for testing, see mbt_test.go +func main() { + // Define command-line flags + modelPath := flag.String("modelPath", "", "Path to the model") + init := flag.String("init", "init", "init action to use for quint") + step := flag.String("step", "step", "step action to use for quint") + invariant := flag.String("invariant", "", "The invariant to check") + numSamples := flag.Int("numSamples", 20, "Number of samples") + numSteps := flag.Int("numSteps", 20, "Number of steps") + traceFolder := flag.String("traceFolder", "", "Path to the trace folder") + numTraces := flag.Int("numTraces", 0, "Number of traces to generate") + + // Parse command-line flags + flag.Parse() + + // ensure flags were set + if *modelPath == "" { + fmt.Println("Error: modelPath flag is required") + os.Exit(1) + } + + if *invariant == "" { + fmt.Println("Error: invariant flag is required") + os.Exit(1) + } + + if *traceFolder == "" { + fmt.Println("Error: traceFolder flag is required") + os.Exit(1) + } + + if *numTraces == 0 { + fmt.Println("Error: numTraces flag is required") + os.Exit(1) + } + + // Create ModelConfig and InvariantConfig instances + modelConfig := ModelConfig{ + modelPath: *modelPath, + init: *init, + step: *step, + } + + invariantConfig := InvariantConfig{ + invariant: *invariant, + numSamples: *numSamples, + numSteps: *numSteps, + } + + // Print the parsed values + fmt.Println("Model Config:") + fmt.Println("Model Path:", modelConfig.modelPath) + fmt.Println("Init:", modelConfig.init) + fmt.Println("Step:", modelConfig.step) + + fmt.Println("Invariant Config:") + fmt.Println("Invariant:", invariantConfig.invariant) + fmt.Println("Num Samples:", invariantConfig.numSamples) + fmt.Println("Num Steps:", invariantConfig.numSteps) + + fmt.Println("Trace Folder:", *traceFolder) + + fmt.Println("Num Traces:", *numTraces) + + // Generate the traces + GenerateTraces(*numTraces, modelConfig, invariantConfig, *traceFolder) +} diff --git a/tests/difference/core/quint_model/driver/mbt_test.go b/tests/difference/core/quint_model/driver/mbt_test.go index ccd1955eee..f0611f6a70 100644 --- a/tests/difference/core/quint_model/driver/mbt_test.go +++ b/tests/difference/core/quint_model/driver/mbt_test.go @@ -3,6 +3,7 @@ package main import ( "fmt" "log" + "os" "reflect" "testing" "time" @@ -15,16 +16,29 @@ import ( "github.com/stretchr/testify/require" ) -const verbose = true +const verbose = false -func TestItfTrace(t *testing.T) { - path := "trace.json" +func TestMBT(t *testing.T) { + dirEntries, err := os.ReadDir("traces") + if err != nil { + t.Fatal("Error:", err) + } + + t.Log("Running traces from the traces folder") + + for _, dirEntry := range dirEntries { + t.Log("Running trace ", dirEntry.Name()) + RunItfTrace(t, "traces/"+dirEntry.Name()) + } +} + +func RunItfTrace(t *testing.T, path string) { t.Logf("🟡 Testing trace %s", path) // Load trace trace := &itf.Trace{} if err := trace.LoadFromFile(path); err != nil { - log.Fatalf("Error loading trace file: %s", err) + t.Fatalf("Error loading trace file: %s", err) } expectedVarNames := []string{"currentState", "params", "trace"} @@ -209,7 +223,6 @@ func TestItfTrace(t *testing.T) { } t.Log("Packet queues match") } - t.FailNow() } func CompareValidatorSets(t *testing.T, driver *Driver, currentModelState map[string]itf.Expr, consumers []string, index int) { @@ -317,9 +330,12 @@ func CompareTimes( func CompareValSet(modelValSet map[string]itf.Expr, systemValSet map[string]int64) error { expectedValSet := make(map[string]int64, len(modelValSet)) for val, power := range modelValSet { + // strip away vals with power 0, since they do not appear at all in the system val set + if power.Value.(int64) == 0 { + continue + } expectedValSet[val] = power.Value.(int64) } - if !reflect.DeepEqual(expectedValSet, systemValSet) { return fmt.Errorf("Model validator set %v, system validator set %v", expectedValSet, systemValSet) } diff --git a/tests/difference/core/quint_model/driver/trace_gen.go b/tests/difference/core/quint_model/driver/trace_gen.go index 2643e16b78..d8a2a6e1dc 100644 --- a/tests/difference/core/quint_model/driver/trace_gen.go +++ b/tests/difference/core/quint_model/driver/trace_gen.go @@ -2,8 +2,10 @@ package main import ( "fmt" + "log" "os" "os/exec" + "strings" ) type ModelConfig struct { @@ -24,7 +26,7 @@ type InvariantConfig struct { // For each trace that is produced, quint will run at most for numSteps steps, // and run numSamples samples. // If a quint run does not produce a trace that violates the invariant, -// it will not be retried, and there will simply be fewer than numTraces traces. +// the trace will still be stored in the folder. func GenerateTraces(numTraces int, modelConfig ModelConfig, invConfig InvariantConfig, traceFolder string) { // make sure the folder exists if err := os.MkdirAll(traceFolder, 0o755); err != nil { @@ -33,8 +35,10 @@ func GenerateTraces(numTraces int, modelConfig ModelConfig, invConfig InvariantC for i := 0; i < numTraces; i++ { // Generate trace - traceName := fmt.Sprintf("trace_%d", i) + traceName := fmt.Sprintf("%v/trace_%d", traceFolder, i) GenerateTrace(modelConfig, invConfig, traceName) + + log.Println("Generated trace", traceName) } } @@ -54,6 +58,9 @@ func GenerateTrace(modelConfig ModelConfig, invConfig InvariantConfig, traceName out, err := exec.Command("bash", "-c", cmd).CombinedOutput() if err != nil { + if strings.Contains(string(out), "Invariant violated") { + return // this is an expected error, so no need to panic + } fmt.Println(string(out)) panic(err) } From 71a3b80835f1ca9edcde90aab0bd945e0c4a141b Mon Sep 17 00:00:00 2001 From: Philip Offtermatt Date: Wed, 22 Nov 2023 13:39:58 +0100 Subject: [PATCH 027/111] Make invariant optional --- tests/difference/core/quint_model/driver/main.go | 5 ----- tests/difference/core/quint_model/driver/trace_gen.go | 10 ++++++++-- 2 files changed, 8 insertions(+), 7 deletions(-) diff --git a/tests/difference/core/quint_model/driver/main.go b/tests/difference/core/quint_model/driver/main.go index d6343a2ee5..39193eff26 100644 --- a/tests/difference/core/quint_model/driver/main.go +++ b/tests/difference/core/quint_model/driver/main.go @@ -29,11 +29,6 @@ func main() { os.Exit(1) } - if *invariant == "" { - fmt.Println("Error: invariant flag is required") - os.Exit(1) - } - if *traceFolder == "" { fmt.Println("Error: traceFolder flag is required") os.Exit(1) diff --git a/tests/difference/core/quint_model/driver/trace_gen.go b/tests/difference/core/quint_model/driver/trace_gen.go index d8a2a6e1dc..3d23b6512d 100644 --- a/tests/difference/core/quint_model/driver/trace_gen.go +++ b/tests/difference/core/quint_model/driver/trace_gen.go @@ -43,12 +43,18 @@ func GenerateTraces(numTraces int, modelConfig ModelConfig, invConfig InvariantC } func GenerateTrace(modelConfig ModelConfig, invConfig InvariantConfig, traceName string) { + var invariant_config string + if invConfig.invariant != "" { + invariant_config = fmt.Sprintf("--invariant=%v", invConfig.invariant) + } else { + invariant_config = "" + } cmd := fmt.Sprintf( - "quint run --out-itf %v --init %v --step %v --invariant=%v --max-steps=%v --max-samples=%v %v", + "quint run --out-itf %v --init %v --step %v %v --max-steps=%v --max-samples=%v %v", traceName, modelConfig.init, modelConfig.step, - invConfig.invariant, + invariant_config, invConfig.numSteps, invConfig.numSamples, modelConfig.modelPath, From c510e61111bee6d8e8cded9f896417deef4c5e6e Mon Sep 17 00:00:00 2001 From: Philip Offtermatt Date: Wed, 22 Nov 2023 13:40:09 +0100 Subject: [PATCH 028/111] Pretty up the output --- .../core/quint_model/driver/mbt_test.go | 19 ++++++++++++++++--- 1 file changed, 16 insertions(+), 3 deletions(-) diff --git a/tests/difference/core/quint_model/driver/mbt_test.go b/tests/difference/core/quint_model/driver/mbt_test.go index f0611f6a70..2b8dee82a9 100644 --- a/tests/difference/core/quint_model/driver/mbt_test.go +++ b/tests/difference/core/quint_model/driver/mbt_test.go @@ -30,6 +30,9 @@ func TestMBT(t *testing.T) { t.Log("Running trace ", dirEntry.Name()) RunItfTrace(t, "traces/"+dirEntry.Name()) } + + t.Log("✅ Running traces from the traces folder done") + t.Log(len(dirEntries), "traces run") } func RunItfTrace(t *testing.T, path string) { @@ -223,6 +226,7 @@ func RunItfTrace(t *testing.T, path string) { } t.Log("Packet queues match") } + t.Log("🟢 Trace is ok!") } func CompareValidatorSets(t *testing.T, driver *Driver, currentModelState map[string]itf.Expr, consumers []string, index int) { @@ -329,15 +333,24 @@ func CompareTimes( // The names in the model validator set are expected to correspond to the monikers in the system validator set. func CompareValSet(modelValSet map[string]itf.Expr, systemValSet map[string]int64) error { expectedValSet := make(map[string]int64, len(modelValSet)) + // strip away vals with power 0, because they are not always in the system validator set for val, power := range modelValSet { - // strip away vals with power 0, since they do not appear at all in the system val set if power.Value.(int64) == 0 { continue } expectedValSet[val] = power.Value.(int64) } - if !reflect.DeepEqual(expectedValSet, systemValSet) { - return fmt.Errorf("Model validator set %v, system validator set %v", expectedValSet, systemValSet) + + actualValSet := make(map[string]int64, len(systemValSet)) + for val, power := range systemValSet { + if power == 0 { + continue + } + actualValSet[val] = power + } + + if !reflect.DeepEqual(expectedValSet, actualValSet) { + return fmt.Errorf("Model validator set %v, system validator set %v", expectedValSet, actualValSet) } return nil } From db16905a6ed126160173cd3123188271685a9795 Mon Sep 17 00:00:00 2001 From: Philip Offtermatt Date: Wed, 22 Nov 2023 13:40:28 +0100 Subject: [PATCH 029/111] Add script for generating happy and normal traces --- .../difference/core/quint_model/driver/generate_happy_traces.sh | 1 + tests/difference/core/quint_model/driver/generate_traces.sh | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) create mode 100755 tests/difference/core/quint_model/driver/generate_happy_traces.sh diff --git a/tests/difference/core/quint_model/driver/generate_happy_traces.sh b/tests/difference/core/quint_model/driver/generate_happy_traces.sh new file mode 100755 index 0000000000..7dc347bd89 --- /dev/null +++ b/tests/difference/core/quint_model/driver/generate_happy_traces.sh @@ -0,0 +1 @@ +go run ./... -modelPath=../ccv_happy.qnt -init initHappy -step stepHappy -invariant CanReceiveMaturations -traceFolder traces -numTraces 50 \ No newline at end of file diff --git a/tests/difference/core/quint_model/driver/generate_traces.sh b/tests/difference/core/quint_model/driver/generate_traces.sh index 7dc347bd89..2b9a7b6b88 100755 --- a/tests/difference/core/quint_model/driver/generate_traces.sh +++ b/tests/difference/core/quint_model/driver/generate_traces.sh @@ -1 +1 @@ -go run ./... -modelPath=../ccv_happy.qnt -init initHappy -step stepHappy -invariant CanReceiveMaturations -traceFolder traces -numTraces 50 \ No newline at end of file +go run ./... -modelPath=../ccv_model.qnt -init init -step step -traceFolder traces -numTraces 50 \ No newline at end of file From 436aec4136a48adba0a0f33287ccc20dd4b8c520 Mon Sep 17 00:00:00 2001 From: Philip Offtermatt Date: Thu, 23 Nov 2023 13:12:45 +0100 Subject: [PATCH 030/111] Remove message sends for consumers that were started in this block --- tests/difference/core/quint_model/ccv.qnt | 77 ++++++++++--------- .../difference/core/quint_model/ccv_model.qnt | 22 ++++-- 2 files changed, 55 insertions(+), 44 deletions(-) diff --git a/tests/difference/core/quint_model/ccv.qnt b/tests/difference/core/quint_model/ccv.qnt index be7bc74efc..86d34d7334 100644 --- a/tests/difference/core/quint_model/ccv.qnt +++ b/tests/difference/core/quint_model/ccv.qnt @@ -399,60 +399,61 @@ module ccv { res._1 ) + // send vsc packets + val providerStateAfterSending = + if (currentProviderState.providerValidatorSetChangedInThisBlock and + // important: check this on the provider state after the consumer advancement, not on the current state. + getRunningConsumers(providerStateAfterTimeAdvancement).size() > 0) { + providerStateAfterTimeAdvancement.sendVscPackets() + } else { + providerStateAfterTimeAdvancement + } + // start/stop chains - val res = providerStateAfterTimeAdvancement.consumerStatus.StartStopConsumers( + val res = providerStateAfterSending.consumerStatus.StartStopConsumers( consumersToStart, consumersToStop, timedOutConsumers ) val newConsumerStatus = res._1 val err = res._2 - val providerStateAfterConsumerAdvancement = providerStateAfterTimeAdvancement.with( + val providerStateAfterConsumerAdvancement = providerStateAfterSending.with( "consumerStatus", newConsumerStatus - ) - - // for each consumer we just set to running, set its initial validator set to be the current one on the provider. - val valSet = providerStateAfterConsumerAdvancement.chainState.currentValidatorSet - val newConsumerStateMap = - tmpState.consumerStates.keys().mapBy( - (consumer) => - if (consumersToStart.contains(consumer)) { - val currentConsumerState: ConsumerState = tmpState.consumerStates.get(consumer) - val newConsumerState: ConsumerState = currentConsumerState.with( - "chainState", currentConsumerState.chainState.with( - "currentValidatorSet", valSet - ).with( - "votingPowerHistory", - List(valSet) - ) - ) - newConsumerState - } else { - currentState.consumerStates.get(consumer) - } - ) - val newState = tmpState.with( - "providerState", providerStateAfterConsumerAdvancement ).with( - "consumerStates", newConsumerStateMap + "providerValidatorSetChangedInThisBlock", false ) if (err != "") { Err(err) } else { - val providerStateAfterSending = - if (currentProviderState.providerValidatorSetChangedInThisBlock and - // important: check this on the provider state after the consumer advancement, not on the current state. - getRunningConsumers(providerStateAfterConsumerAdvancement).size() > 0) { - providerStateAfterConsumerAdvancement.sendVscPackets() - } else { - providerStateAfterConsumerAdvancement - } - val finalState = newState.with( - "providerState", providerStateAfterSending + // for each consumer we just set to running, set its initial validator set to be the current one on the provider. + val valSet = providerStateAfterConsumerAdvancement.chainState.currentValidatorSet + val newConsumerStateMap = + tmpState.consumerStates.keys().mapBy( + (consumer) => + if (consumersToStart.contains(consumer)) { + val currentConsumerState: ConsumerState = tmpState.consumerStates.get(consumer) + val newConsumerState: ConsumerState = currentConsumerState.with( + "chainState", currentConsumerState.chainState.with( + "currentValidatorSet", valSet + ).with( + "votingPowerHistory", + List(valSet) + ) + ) + newConsumerState + } else { + currentState.consumerStates.get(consumer) + } + ) + val newState = tmpState.with( + "providerState", providerStateAfterConsumerAdvancement + ).with( + "consumerStates", newConsumerStateMap ) - Ok(finalState) + + Ok(newState) } } diff --git a/tests/difference/core/quint_model/ccv_model.qnt b/tests/difference/core/quint_model/ccv_model.qnt index b580be32a5..45035ddfdd 100644 --- a/tests/difference/core/quint_model/ccv_model.qnt +++ b/tests/difference/core/quint_model/ccv_model.qnt @@ -299,10 +299,14 @@ module ccv_model { val providerValSetInCurBlock = providerValidatorHistory.head() // ... for each consumer that is running then ... runningConsumers.forall( - // ...the validator set is in a sent packet + // ...the validator set is in a sent packet... consumer => currentState.providerState.sentVscPacketsToConsumer.get(consumer).toSet().exists( packet => packet.validatorSet == providerValSetInCurBlock ) + // or the consumer was just started, which we detect by the consumer having a timestamp of 0 + // and the consumer having the validator set that was just sent in the block + or + (currentState.consumerStates.get(consumer).chainState.lastTimestamp == 0 and currentState.consumerStates.get(consumer).chainState.currentValidatorSet == providerValSetInCurBlock) ) // Every consumer chain receives the same sequence of @@ -476,12 +480,18 @@ module ccv_model { all { // consumer1 was started assert(currentState.providerState.consumerStatus.get("consumer1") == RUNNING), - // a packet was sent to consumer1 - assert(currentState.providerState.outstandingPacketsToConsumer.get("consumer1").length() == 1), + // but no packet was sent to consumer 1 + assert(currentState.providerState.outstandingPacketsToConsumer.get("consumer1").length() == 0), // the validator set on the provider was entered into the history assert(currentState.providerState.chainState.votingPowerHistory == List(InitialValidatorSet.put("node1", 150), InitialValidatorSet)), - // deliver the packet - DeliverVscPacket("consumer1") + // change voting power on provider again + VotingPowerChange("node1", 50).then( + // end another block + EndAndBeginBlockForProvider(1 * Second, Set(), Set()) + ).then( + // deliver packet to consumer1 + DeliverVscPacket("consumer1") + ) } ) .then( @@ -491,7 +501,7 @@ module ccv_model { // ensure the maturation time was entered on the consumer assert(currentState.consumerStates.get("consumer1").maturationTimes.length() == 1), // the validator set was put as the current validator set - assert(currentState.consumerStates.get("consumer1").chainState.currentValidatorSet == InitialValidatorSet.put("node1", 150)), + assert(currentState.consumerStates.get("consumer1").chainState.currentValidatorSet == InitialValidatorSet.put("node1", 200)), // advance time on provider until the unbonding period is over EndAndBeginBlockForProvider(UnbondingPeriodPerChain.get("consumer1"), Set(), Set()), } From 5d17552c1eaa3fe7f5abc1abfd8638cee8fcd123 Mon Sep 17 00:00:00 2001 From: Philip Offtermatt Date: Thu, 23 Nov 2023 17:41:00 +0100 Subject: [PATCH 031/111] Use .itf extension instead of .json --- .../difference/core/quint_model/driver/generate_happy_traces.sh | 2 +- tests/difference/core/quint_model/driver/generate_traces.sh | 2 +- tests/difference/core/quint_model/driver/trace_gen.go | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/tests/difference/core/quint_model/driver/generate_happy_traces.sh b/tests/difference/core/quint_model/driver/generate_happy_traces.sh index 7dc347bd89..fd1a45f589 100755 --- a/tests/difference/core/quint_model/driver/generate_happy_traces.sh +++ b/tests/difference/core/quint_model/driver/generate_happy_traces.sh @@ -1 +1 @@ -go run ./... -modelPath=../ccv_happy.qnt -init initHappy -step stepHappy -invariant CanReceiveMaturations -traceFolder traces -numTraces 50 \ No newline at end of file +go run ./... -modelPath=../ccv_happy.qnt -init initHappy -step stepHappy -invariant CanReceiveMaturations -traceFolder traces -numTraces 5 \ No newline at end of file diff --git a/tests/difference/core/quint_model/driver/generate_traces.sh b/tests/difference/core/quint_model/driver/generate_traces.sh index 2b9a7b6b88..2936b05455 100755 --- a/tests/difference/core/quint_model/driver/generate_traces.sh +++ b/tests/difference/core/quint_model/driver/generate_traces.sh @@ -1 +1 @@ -go run ./... -modelPath=../ccv_model.qnt -init init -step step -traceFolder traces -numTraces 50 \ No newline at end of file +go run ./... -modelPath=../ccv_model.qnt -init init -step step -traceFolder traces -numTraces 100 --numSamples 1 \ No newline at end of file diff --git a/tests/difference/core/quint_model/driver/trace_gen.go b/tests/difference/core/quint_model/driver/trace_gen.go index 3d23b6512d..1d237319e8 100644 --- a/tests/difference/core/quint_model/driver/trace_gen.go +++ b/tests/difference/core/quint_model/driver/trace_gen.go @@ -35,7 +35,7 @@ func GenerateTraces(numTraces int, modelConfig ModelConfig, invConfig InvariantC for i := 0; i < numTraces; i++ { // Generate trace - traceName := fmt.Sprintf("%v/trace_%d", traceFolder, i) + traceName := fmt.Sprintf("%v/trace_%d.itf", traceFolder, i) GenerateTrace(modelConfig, invConfig, traceName) log.Println("Generated trace", traceName) From d085ccef85b82f79dea4657f5cabbc7a27ba80bb Mon Sep 17 00:00:00 2001 From: Philip Offtermatt Date: Thu, 23 Nov 2023 17:41:24 +0100 Subject: [PATCH 032/111] Start adjusting behaviour for started/stopped consumers --- .../core/quint_model/driver/core.go | 50 ++++++- .../core/quint_model/driver/mbt_test.go | 129 +++++++++++++++--- .../core/quint_model/driver/model_viewer.go | 14 ++ .../core/quint_model/driver/setup.go | 46 +++++-- testutil/simibc/relayed_path.go | 1 + 5 files changed, 203 insertions(+), 37 deletions(-) diff --git a/tests/difference/core/quint_model/driver/core.go b/tests/difference/core/quint_model/driver/core.go index 6fb993b2c4..68d6f6fcd6 100644 --- a/tests/difference/core/quint_model/driver/core.go +++ b/tests/difference/core/quint_model/driver/core.go @@ -7,6 +7,7 @@ import ( "testing" "time" + tendermint "github.com/cosmos/ibc-go/v7/modules/light-clients/07-tendermint" ibctesting "github.com/cosmos/ibc-go/v7/testing" "github.com/stretchr/testify/require" @@ -15,6 +16,7 @@ import ( stakingkeeper "github.com/cosmos/cosmos-sdk/x/staking/keeper" stakingtypes "github.com/cosmos/cosmos-sdk/x/staking/types" consumertypes "github.com/cosmos/interchain-security/v3/x/ccv/consumer/types" + providertypes "github.com/cosmos/interchain-security/v3/x/ccv/provider/types" appConsumer "github.com/cosmos/interchain-security/v3/app/consumer" appProvider "github.com/cosmos/interchain-security/v3/app/provider" @@ -23,6 +25,7 @@ import ( consumerkeeper "github.com/cosmos/interchain-security/v3/x/ccv/consumer/keeper" providerkeeper "github.com/cosmos/interchain-security/v3/x/ccv/provider/keeper" + abcitypes "github.com/cometbft/cometbft/abci/types" cmttypes "github.com/cometbft/cometbft/types" ) @@ -96,7 +99,17 @@ func (s *Driver) height(chain ChainId) int64 { // time returns the time of the current header of chain func (s *Driver) time(chain ChainId) time.Time { - return s.chain(chain).CurrentHeader.Time + testChain := s.chain(chain) + return testChain.CurrentHeader.Time +} + +func (s *Driver) allTimes() map[ChainId]time.Time { + chains := s.coordinator.Chains + times := make(map[ChainId]time.Time, len(chains)) + for _, chain := range chains { + times[ChainId(chain.ChainID)] = chain.CurrentHeader.Time + } + return times } // delegator retrieves the address for the delegator account @@ -385,7 +398,8 @@ func (s *Driver) getChainStateString(chain ChainId) string { // as witnessed by events, and adds them to the correct paths. // It also updates the client header on the paths // that involve the chain. -func (s *Driver) endAndBeginBlock(chain ChainId, timeAdvancement time.Duration) { +// Returns the header of the chain. +func (s *Driver) endAndBeginBlock(chain ChainId, timeAdvancement time.Duration) *tendermint.Header { testChain, found := s.coordinator.Chains[string(chain)] require.True(s.t, found, "chain %s not found", chain) @@ -408,17 +422,29 @@ func (s *Driver) endAndBeginBlock(chain ChainId, timeAdvancement time.Duration) for _, path := range s.simibcs { if path.InvolvesChain(string(chain)) { - path.AddClientHeader(string(chain), header) path.Outboxes.Commit(string(chain)) } } simibc.BeginBlock(testChain, timeAdvancement) + return header +} - for _, path := range s.simibcs { - if path.InvolvesChain(string(chain)) { - path.UpdateClient(path.Counterparty(string(chain))) - } +func (s *Driver) runningConsumers() []providertypes.Chain { + return s.providerKeeper().GetAllConsumerChains(s.providerCtx()) +} + +func (s *Driver) setTime(chain ChainId, newTime time.Time) { + testChain, found := s.coordinator.Chains[string(chain)] + require.True(s.t, found, "chain %s not found", chain) + + testChain.CurrentHeader.Time = newTime + testChain.App.BeginBlock(abcitypes.RequestBeginBlock{Header: testChain.CurrentHeader}) +} + +func (s *Driver) setAllTimes(newTimes map[ChainId]time.Time) { + for chain, newTime := range newTimes { + s.setTime(chain, newTime) } } @@ -445,6 +471,16 @@ func (s *Driver) DeliverAcks() { } } +// stopConsumer stops a given consumer chain. +func (s *Driver) stopConsumer(chain ChainId) { + // stop the consumer chain on the provider + s.providerKeeper().StopConsumerChain(s.providerCtx(), string(chain), true) + // delete the chain from the coordinator + delete(s.coordinator.Chains, string(chain)) + // delete the path from the driver + delete(s.simibcs, chain) +} + // newDriver creates a new Driver object. // It creates a new coordinator, but does not start any chains. // The caller must call setupChains to start the chains and diff --git a/tests/difference/core/quint_model/driver/mbt_test.go b/tests/difference/core/quint_model/driver/mbt_test.go index 2b8dee82a9..89de31135c 100644 --- a/tests/difference/core/quint_model/driver/mbt_test.go +++ b/tests/difference/core/quint_model/driver/mbt_test.go @@ -5,6 +5,7 @@ import ( "log" "os" "reflect" + "sort" "testing" "time" @@ -16,7 +17,7 @@ import ( "github.com/stretchr/testify/require" ) -const verbose = false +const verbose = true func TestMBT(t *testing.T) { dirEntries, err := os.ReadDir("traces") @@ -114,15 +115,14 @@ func RunItfTrace(t *testing.T, path string) { } driver := newDriver(t, nodes, valNames) - driver.setupChains(modelParams, valSet, signers, nodes, valNames, consumers) + + driver.setupProvider(modelParams, valSet, signers, nodes, valNames) // remember the time offsets to be able to compare times to the model // this is necessary because the system needs to do many steps to initialize the chains, // which is abstracted away in the model timeOffsets := make(map[ChainId]time.Time, len(chains)) - for _, chain := range chains { - timeOffsets[ChainId(chain)] = driver.time(ChainId(chain)) - } + timeOffsets[Provider] = driver.time(Provider) t.Log("Started chains") @@ -167,8 +167,81 @@ func RunItfTrace(t *testing.T, path string) { // and then increment the rest of the time] // TODO: start and stop consumers - driver.endAndBeginBlock("provider", 1) - driver.endAndBeginBlock("provider", time.Duration(timeAdvancement)*time.Second-1) + driver.endAndBeginBlock("provider", time.Duration(timeAdvancement)*time.Second-1*time.Nanosecond) + driver.endAndBeginBlock("provider", 1*time.Nanosecond) + + // save the last timestamp for each chain, + // because setting up chains will modify timestamps + // when the coordinator is starting chains + lastTimestamps := driver.allTimes() + // start consumers + for _, consumer := range consumersToStart { + driver.setupConsumer( + consumer.Value.(string), + modelParams, + driver.providerChain().Vals, + signers, + nodes, + valNames, + driver.providerChain(), + ) + lastTimestamps[ChainId(consumer.Value.(string))] = driver.time(ChainId(consumer.Value.(string))) + } + + // stop consumers + for _, consumer := range consumersToStop { + consumerChain := ChainId(consumer.Value.(string)) + driver.stopConsumer(consumerChain) + + // remove the consumer from timestamps map and time offsets + delete(lastTimestamps, consumerChain) + delete(timeOffsets, consumerChain) + } + + // remove the stopped consumers from the timestamps + for _, consumer := range consumersToStop { + consumerChain := ChainId(consumer.Value.(string)) + delete(lastTimestamps, consumerChain) + delete(timeOffsets, consumerChain) + } + + // restore the old timestamps, but increment by 1 nanosecond to avoid duplicate timestamps in headers + for chain, oldTimestamp := range lastTimestamps { + // if the chain was stopped, we don't need to restore the timestamp + driver.setTime(ChainId(chain), oldTimestamp.Add(1*time.Nanosecond)) + // also set the offset for each chain correctly - offset is incremented by 1 nanosecond + timeOffsets[ChainId(chain)] = timeOffsets[ChainId(chain)].Add(1 * time.Nanosecond) + } + + // set the timeOffsets for the newly started chains + for _, consumer := range consumersToStart { + consumerChain := ChainId(consumer.Value.(string)) + timeOffsets[consumerChain] = driver.time(consumerChain) + } + + // need to produce another block to fix messed up times because the provider comitted blocks with + // times that were fixed by the coordinator + driver.endAndBeginBlock("provider", 0) + providerHeader := driver.providerChain().LastHeader + + // same for the consumers that were started + for _, consumer := range consumersToStart { + consumerChainId := string(consumer.Value.(string)) + driver.endAndBeginBlock(ChainId(consumerChainId), 0) + } + + // for all connected consumers, update the clients... + // unless it was the last consumer to be started, in which case it already has the header + for _, consumer := range driver.runningConsumers() { + if len(consumersToStart) > 0 && consumer.ChainId == consumersToStart[len(consumersToStart)-1].Value.(string) { + continue + } + consumerChainId := string(consumer.ChainId) + + driver.path(ChainId(consumerChainId)).AddClientHeader(Provider, providerHeader) + driver.path(ChainId(consumerChainId)).UpdateClient(consumerChainId) + } + case "EndAndBeginBlockForConsumer": consumerChain := lastAction["consumerChain"].Value.(string) timeAdvancement := lastAction["timeAdvancement"].Value.(int64) @@ -176,8 +249,16 @@ func RunItfTrace(t *testing.T, path string) { // as in EndAndBeginBlockForProvider, we need to produce 2 blocks, // while still honoring the time advancement - driver.endAndBeginBlock(ChainId(consumerChain), 1) - driver.endAndBeginBlock(ChainId(consumerChain), time.Duration(timeAdvancement)*time.Second-1) + headerBefore := driver.chain(ChainId(consumerChain)).LastHeader + _ = headerBefore + + driver.endAndBeginBlock(ChainId(consumerChain), time.Duration(timeAdvancement)*time.Second-1*time.Nanosecond) + driver.endAndBeginBlock(ChainId(consumerChain), 1*time.Nanosecond) + + // update the client on the provider + consumerHeader := driver.chain(ChainId(consumerChain)).LastHeader + driver.path(ChainId(consumerChain)).AddClientHeader(consumerChain, consumerHeader) + driver.path(ChainId(consumerChain)).UpdateClient(Provider) case "DeliverVscPacket": consumerChain := lastAction["consumerChain"].Value.(string) t.Log("DeliverVscPacket", consumerChain) @@ -204,24 +285,38 @@ func RunItfTrace(t *testing.T, path string) { currentModelState := state.VarValues["currentState"].Value.(itf.MapExprType) // check that the actual state is the same as the model state - // check validator sets - provider current validator set should be the one from the staking keeper + // compare the running consumers + modelRunningConsumers := RunningConsumers(currentModelState) + + systemRunningConsumers := driver.runningConsumers() + actualRunningConsumers := make([]string, len(systemRunningConsumers)) + for i, chain := range systemRunningConsumers { + actualRunningConsumers[i] = chain.ChainId + } - // provider - // consumers - current validator set does not correspond to anything, - // we can only check the head of the voting power history - // no assignment found, so providerConsAddr is the consumerConsAddr + // sort the slices so that we can compare them + sort.Slice(modelRunningConsumers, func(i, j int) bool { + return modelRunningConsumers[i] < modelRunningConsumers[j] + }) + sort.Slice(actualRunningConsumers, func(i, j int) bool { + return actualRunningConsumers[i] < actualRunningConsumers[j] + }) + + require.Equal(t, modelRunningConsumers, actualRunningConsumers, "Running consumers do not match") + + // check validator sets - provider current validator set should be the one from the staking keeper t.Log("Comparing validator sets") - CompareValidatorSets(t, driver, currentModelState, consumers, index) + CompareValidatorSets(t, driver, currentModelState, actualRunningConsumers, index) t.Log("Validator sets match") // check times - sanity check that the block times match the ones from the model t.Log("Comparing timestamps") - CompareTimes(t, driver, consumers, currentModelState, timeOffsets) + CompareTimes(t, driver, actualRunningConsumers, currentModelState, timeOffsets) t.Log("Timestamps match") // check sent packets: we check that the package queues in the model and the system have the same length. t.Log("Comparing packet queues") - for _, consumer := range consumers { + for _, consumer := range actualRunningConsumers { ComparePacketQueues(t, driver, currentModelState, consumer) } t.Log("Packet queues match") diff --git a/tests/difference/core/quint_model/driver/model_viewer.go b/tests/difference/core/quint_model/driver/model_viewer.go index b293effbb9..e72363b313 100644 --- a/tests/difference/core/quint_model/driver/model_viewer.go +++ b/tests/difference/core/quint_model/driver/model_viewer.go @@ -55,3 +55,17 @@ func PacketQueue(curStateExpr itf.MapExprType, sender string, receiver string) i return consumerState["outstandingPacketsToProvider"].Value.([]itf.Expr) } } + +// RunningConsumers returns a slice containing the names of the consumers +// that are currently running. +func RunningConsumers(curStateExpr itf.MapExprType) []string { + exprSlice := ProviderState(curStateExpr)["consumerStatus"].Value.(itf.MapExprType) + runningConsumers := make([]string, 0) + for consumer, statusExpr := range exprSlice { + status := statusExpr.Value.(string) + if status == "running" { + runningConsumers = append(runningConsumers, consumer) + } + } + return runningConsumers +} diff --git a/tests/difference/core/quint_model/driver/setup.go b/tests/difference/core/quint_model/driver/setup.go index 381f5560e2..da755546fc 100644 --- a/tests/difference/core/quint_model/driver/setup.go +++ b/tests/difference/core/quint_model/driver/setup.go @@ -6,6 +6,7 @@ import ( "testing" "time" + "cosmossdk.io/math" abcitypes "github.com/cometbft/cometbft/abci/types" cmtproto "github.com/cometbft/cometbft/proto/tendermint/types" cmttypes "github.com/cometbft/cometbft/types" @@ -17,6 +18,7 @@ import ( clienttypes "github.com/cosmos/ibc-go/v7/modules/core/02-client/types" commitmenttypes "github.com/cosmos/ibc-go/v7/modules/core/23-commitment/types" ibctmtypes "github.com/cosmos/ibc-go/v7/modules/light-clients/07-tendermint" + tendermint "github.com/cosmos/ibc-go/v7/modules/light-clients/07-tendermint" icstestingutils "github.com/cosmos/interchain-security/v3/testutil/ibc_testing" "github.com/cosmos/interchain-security/v3/testutil/integration" simibc "github.com/cosmos/interchain-security/v3/testutil/simibc" @@ -140,10 +142,13 @@ func getAppBytesAndSenders( for i, val := range nodes { _, valSetVal := initialValSet.GetByAddress(val.Address.Bytes()) + var tokens math.Int if valSetVal == nil { - log.Panicf("error getting validator with address %v from valSet %v", val, initialValSet) + tokens = sdk.NewInt(0) + } else { + tokens = sdk.NewInt(valSetVal.VotingPower) } - tokens := sdk.NewInt(valSetVal.VotingPower) + sumBonded = sumBonded.Add(tokens) pk, err := cryptocodec.FromTmPubKeyInterface(val.PubKey) @@ -394,32 +399,47 @@ func (s *Driver) ConfigureNewPath(consumerChain *ibctesting.TestChain, providerC return path } -func (s *Driver) setupChains( +func (s *Driver) providerHeader() *tendermint.Header { + return s.coordinator.Chains["provider"].LastHeader +} + +func (s *Driver) setupProvider( params ModelParams, valSet *cmttypes.ValidatorSet, // the initial validator set signers map[string]cmttypes.PrivValidator, // a map of validator addresses to private validators (signers) nodes []*cmttypes.Validator, // the list of nodes, even ones that have no voting power initially valNames []string, - consumers []string, // a list of consumer chain names ) { - initValUpdates := cmttypes.TM2PB.ValidatorUpdates(valSet) // start provider s.t.Log("Creating provider chain") providerChain := newChain(s.t, params, s.coordinator, icstestingutils.ProviderAppIniter, "provider", valSet, signers, nodes, valNames) s.coordinator.Chains["provider"] = providerChain - providerHeader, _ := simibc.EndBlock(providerChain, func() {}) + // produce a first block + simibc.EndBlock(providerChain, func() {}) simibc.BeginBlock(providerChain, 0) +} + +func (s *Driver) setupConsumer( + chain string, + params ModelParams, + valSet *cmttypes.ValidatorSet, // the current validator set on the provider chain + signers map[string]cmttypes.PrivValidator, // a map of validator addresses to private validators (signers) + nodes []*cmttypes.Validator, // the list of nodes, even ones that have no voting power initially + valNames []string, + providerChain *ibctesting.TestChain, +) { + s.t.Logf("Starting consumer %v", chain) + + initValUpdates := cmttypes.TM2PB.ValidatorUpdates(valSet) // start consumer chains - for _, chain := range consumers { - s.t.Logf("Creating consumer chain %v", chain) - consumerChain := newChain(s.t, params, s.coordinator, icstestingutils.ConsumerAppIniter(initValUpdates), chain, valSet, signers, nodes, valNames) - s.coordinator.Chains[chain] = consumerChain + s.t.Logf("Creating consumer chain %v", chain) + consumerChain := newChain(s.t, params, s.coordinator, icstestingutils.ConsumerAppIniter(initValUpdates), chain, valSet, signers, nodes, valNames) + s.coordinator.Chains[chain] = consumerChain - path := s.ConfigureNewPath(consumerChain, providerChain, params, providerHeader) - s.simibcs[ChainId(chain)] = simibc.MakeRelayedPath(s.t, path) - } + path := s.ConfigureNewPath(consumerChain, providerChain, params, s.providerHeader()) + s.simibcs[ChainId(chain)] = simibc.MakeRelayedPath(s.t, path) } func createConsumerGenesis(modelParams ModelParams, providerChain *ibctesting.TestChain, consumerClientState *ibctmtypes.ClientState) *consumertypes.GenesisState { diff --git a/testutil/simibc/relayed_path.go b/testutil/simibc/relayed_path.go index b5ba476305..8c2b79bc3d 100644 --- a/testutil/simibc/relayed_path.go +++ b/testutil/simibc/relayed_path.go @@ -21,6 +21,7 @@ type RelayedPath struct { // have been committed to that chain. The headers are used to update the // client of the counterparty chain. clientHeaders map[string][]*ibctmtypes.Header + // TODO: Make this private and expose methods to add packets and acks. // Currently, packets and acks are added directly to the outboxes, // but we should hide this implementation detail. From 3a7564e6b3d87f660c7f13ad1e636d2ee6e87497 Mon Sep 17 00:00:00 2001 From: Philip Offtermatt Date: Fri, 24 Nov 2023 14:48:48 +0100 Subject: [PATCH 033/111] Use GetEmptyProtocolState instead of verbose declaration --- tests/difference/core/quint_model/ccv.qnt | 15 +-------------- 1 file changed, 1 insertion(+), 14 deletions(-) diff --git a/tests/difference/core/quint_model/ccv.qnt b/tests/difference/core/quint_model/ccv.qnt index 86d34d7334..2bada21c96 100644 --- a/tests/difference/core/quint_model/ccv.qnt +++ b/tests/difference/core/quint_model/ccv.qnt @@ -164,20 +164,7 @@ module ccv_types { pure def Err(msg: str): Result = { { newState: { - providerState: { - chainState: { - votingPowerHistory: List(), - currentValidatorSet: Map(), - lastTimestamp: 0, - }, - outstandingPacketsToConsumer: Map(), - receivedMaturations: Set(), - sentVscPacketsToConsumer: Map(), - providerValidatorSetChangedInThisBlock: false, - consumerStatus: Map(), - runningVscId: 0, - }, - consumerStates: Map(), + GetEmptyProtocolState }, error: msg } From 1b8ae7bfdffeec3b39f731a42028af6eb0521111 Mon Sep 17 00:00:00 2001 From: Philip Offtermatt Date: Fri, 24 Nov 2023 15:08:36 +0100 Subject: [PATCH 034/111] Add expired status and set timestamps of new consumers --- tests/difference/core/quint_model/ccv.qnt | 31 ++++++++++++++++++----- 1 file changed, 24 insertions(+), 7 deletions(-) diff --git a/tests/difference/core/quint_model/ccv.qnt b/tests/difference/core/quint_model/ccv.qnt index 2bada21c96..9d9a29cce1 100644 --- a/tests/difference/core/quint_model/ccv.qnt +++ b/tests/difference/core/quint_model/ccv.qnt @@ -177,6 +177,7 @@ module ccv_types { pure val TIMEDOUT = "timedout" // the chain has timed out and was dropped by the provider. This is only used for involuntary drops. pure val RUNNING = "running" // the chain is currently a consumer chain. Running chains are those that get sent VscPackets. pure val NOT_CONSUMER = "not consumer" // the chain has never been a consumer chain, and is available to become one. + pure val EXPIRED = "expired" // The channel between the chains is expired. This is only used for involuntary drops. // When a chain is dropped, it cannot become a consumer again - we assume that would be done by another consumer becoming running. // the provider chain. @@ -226,7 +227,7 @@ module ccv { // The trusting period on each chain. // If headers on a channel between two chains are not updated within this period, // they expire and the channel will be closed. - const TrustingPeriodPerChain: Chain -> int // TODO: USE THIS! + const TrustingPeriodPerChain: Chain -> int // =================== // PROTOCOL LOGIC contains the meat of the protocol @@ -273,7 +274,8 @@ module ccv { val result = stopConsumers( currentState.providerState.consumerStatus, Set(), - Set(sender) + Set(sender), + Set() ) val newConsumerStatus = result._1 @@ -322,7 +324,8 @@ module ccv { val result = stopConsumers( currentState.providerState.consumerStatus, Set(), - Set(receiver) + Set(receiver), + Set() ) val newConsumerStatus = result._1 @@ -386,6 +389,12 @@ module ccv { res._1 ) + val expiredConsumers = getRunningConsumers(providerStateAfterTimeAdvancement).filter( + consumer => + val res = TimeoutDueToVscTimeout(tmpState, consumer) + res._1 + ).exclude(timedOutConsumers) + // send vsc packets val providerStateAfterSending = if (currentProviderState.providerValidatorSetChangedInThisBlock and @@ -401,7 +410,8 @@ module ccv { val res = providerStateAfterSending.consumerStatus.StartStopConsumers( consumersToStart, consumersToStop, - timedOutConsumers + timedOutConsumers, + expiredConsumers ) val newConsumerStatus = res._1 val err = res._2 @@ -427,6 +437,9 @@ module ccv { ).with( "votingPowerHistory", List(valSet) + ).with( + "lastTimestamp", + providerStateAfterConsumerAdvancement.chainState.lastTimestamp ) ) newConsumerState @@ -509,7 +522,8 @@ module ccv { pure def stopConsumers( currentConsumerStatusMap: Chain -> str, consumersToStop: Set[Chain], - consumersToTimeout: Set[Chain]): (Chain -> str, str) = { + consumersToTimeout: Set[Chain], + expiredConsumers: Set[Chain]): (Chain -> str, str) = { val runningConsumers = currentConsumerStatusMap.keys().filter( chain => currentConsumerStatusMap.get(chain) == RUNNING ) @@ -521,6 +535,8 @@ module ccv { (chain) => if (consumersToTimeout.contains(chain)) { TIMEDOUT + } else if (expiredConsumers.contains(chain)) { + EXPIRED } else if (consumersToStop.contains(chain)) { STOPPED } else { @@ -560,7 +576,8 @@ module ccv { currentConsumerStatusMap: Chain -> str, consumersToStart: Set[Chain], consumersToStop: Set[Chain], - consumersToTimeout: Set[Chain] + consumersToTimeout: Set[Chain], + expiredConsumers: Set[Chain] ): (Chain -> str, str) = { // check if any consumer is both started and stopped if (consumersToStart.intersect(consumersToStop).size() > 0) { @@ -569,7 +586,7 @@ module ccv { val res1 = currentConsumerStatusMap.startConsumers(consumersToStart) val newConsumerStatus = res1._1 val err1 = res1._2 - val res2 = newConsumerStatus.stopConsumers(consumersToStop, consumersToTimeout) + val res2 = newConsumerStatus.stopConsumers(consumersToStop, consumersToTimeout, expiredConsumers) val err2 = res2._2 if (err1 != "") { (currentConsumerStatusMap, err1) From c7cba8b762674490639502e44b2e7c79c6de3d89 Mon Sep 17 00:00:00 2001 From: Philip Offtermatt Date: Fri, 24 Nov 2023 18:07:02 +0100 Subject: [PATCH 035/111] Add note to split up timestamps --- tests/difference/core/quint_model/ccv.qnt | 19 ++++++++++++++++++- 1 file changed, 18 insertions(+), 1 deletion(-) diff --git a/tests/difference/core/quint_model/ccv.qnt b/tests/difference/core/quint_model/ccv.qnt index 9d9a29cce1..bc252522a5 100644 --- a/tests/difference/core/quint_model/ccv.qnt +++ b/tests/difference/core/quint_model/ccv.qnt @@ -42,6 +42,9 @@ module ccv_types { // e.g. there may be more modifications in the current block. currentValidatorSet: ValidatorSet, + + // TODO: split into lastTimestamp and runningTimestamp + // TODO: check how expiry needs to work (checks own chains runningTimestamp, but for foreign chain it's tracking the last comitted timestamp) // the latest timestamp that was comitted on chain lastTimestamp: Time, } @@ -117,6 +120,9 @@ module ccv_types { // ordered by recency, so the head is the oldest packet. // In the implementation, essentially unacknowledged IBC packets. outstandingPacketsToProvider: List[VscMaturedPacket], + + // true if the local client of that chain has expired, false otherwise. + localClientExpired: bool, } // utility function: returns a consumer state that is initialized minimally. @@ -126,6 +132,7 @@ module ccv_types { maturationTimes: List(), outstandingPacketsToProvider: List(), receivedVscPackets: List(), + localClientExpired: false, } // the state of the protocol consists of the composition of the state of one provider chain with potentially many consumer chains. @@ -242,7 +249,8 @@ module ccv { if (amount == 0) { Err("Voting power cannot change by zero!") } else { - pure val newValidatorSet = currentValidatorSet.put(validator, oldVotingPower + amount) + pure val newVotingPower = oldVotingPower + amount + pure val newValidatorSet = currentValidatorSet.put(validator, if(newVotingPower >= 0) newVotingPower else 0) // set the validator set changed flag val newProviderState = currentState.providerState.with( "providerValidatorSetChangedInThisBlock", true @@ -496,10 +504,19 @@ module ccv { } ) ) + // checks whether the local client for the provider chain has expired on the consumer + val clientExpired = + if (newChainState.lastTimestamp > currentState.providerState.chainState.lastTimestamp + TrustingPeriodPerChain.get(chain)) { + true + } else { + false + } val newConsumerState2: ConsumerState = newConsumerState.with( "maturationTimes", newMaturationTimes ).with( "outstandingPacketsToProvider", newOutstandingPackets + ).with( + "localClientExpired", clientExpired ) val newConsumerStates = currentState.consumerStates.set(chain, newConsumerState2) val newState: ProtocolState = currentState.with( From 2d130df3bfe1c39b7c11c56a58320f29a41d270c Mon Sep 17 00:00:00 2001 From: Philip Offtermatt Date: Fri, 24 Nov 2023 18:07:25 +0100 Subject: [PATCH 036/111] Advance MBT prototype --- .../core/quint_model/driver/core.go | 20 +++-- .../core/quint_model/driver/mbt_test.go | 87 ++++++++++--------- .../core/quint_model/driver/model_viewer.go | 8 ++ .../core/quint_model/driver/setup.go | 8 +- testutil/simibc/relay_util.go | 10 +-- testutil/simibc/relayed_path.go | 7 +- 6 files changed, 78 insertions(+), 62 deletions(-) diff --git a/tests/difference/core/quint_model/driver/core.go b/tests/difference/core/quint_model/driver/core.go index 68d6f6fcd6..ac4eb9a4ee 100644 --- a/tests/difference/core/quint_model/driver/core.go +++ b/tests/difference/core/quint_model/driver/core.go @@ -38,6 +38,7 @@ type ModelParams struct { CcvTimeout map[ChainId]time.Duration UnbondingPeriodPerChain map[ChainId]time.Duration TrustingPeriodPerChain map[ChainId]time.Duration + MaxClockDrift time.Duration } type Driver struct { @@ -147,10 +148,13 @@ func (s *Driver) consumerPower(i int64, chain ChainId) (int64, error) { // consumerTokens returns the number of tokens that the validator with // id (ix) i has delegated to it in total on the provider chain -func (s *Driver) providerPower(i int64) int64 { +func (s *Driver) providerPower(i int64) (int64, error) { v, found := s.providerStakingKeeper().GetValidator(s.ctx(P), s.validator(i)) - require.True(s.t, found, "GetValidator(%v) -> !found", s.validator(i)) - return v.BondedTokens().Int64() + if !found { + return 0, fmt.Errorf("Validator with id %v not found on provider!", i) + } else { + return v.BondedTokens().Int64(), nil + } } // delegation returns the number of delegated tokens in the delegation from @@ -179,7 +183,7 @@ func (s *Driver) providerTokens(i int64) int64 { return v.Tokens.Int64() } -func (s *Driver) providerValidatorSet(chain ChainId) []stakingtypes.Validator { +func (s *Driver) providerValidatorSet() []stakingtypes.Validator { return s.providerStakingKeeper().GetAllValidators(s.ctx(P)) } @@ -239,14 +243,12 @@ func (s *Driver) consumerSlash(val sdk.ConsAddress, h int64, isDowntime bool, ch } } -func (s *Driver) updateClient(chain ChainId) { - s.path(chain).UpdateClient(string(chain)) +func (s *Driver) updateClient(chain ChainId) error { + return s.path(chain).UpdateClient(string(chain), false) } // deliver numPackets packets from the network to chain func (s *Driver) deliver(chain ChainId, numPackets int) { - // Makes sure client is updated - s.updateClient(chain) // Deliver any outstanding acks s.path(chain).DeliverAcks(string(chain), 999999) // Consume deliverable packets from the network @@ -347,7 +349,7 @@ func (s *Driver) getChainStateString(chain ChainId) string { for index, valName := range s.valNames { var power int64 if s.isProviderChain(chain) { - power = s.providerPower(int64(index)) + power, _ = s.providerPower(int64(index)) } else { power, _ = s.consumerPower(int64(index), chain) } diff --git a/tests/difference/core/quint_model/driver/mbt_test.go b/tests/difference/core/quint_model/driver/mbt_test.go index 89de31135c..4d8c36304c 100644 --- a/tests/difference/core/quint_model/driver/mbt_test.go +++ b/tests/difference/core/quint_model/driver/mbt_test.go @@ -11,7 +11,9 @@ import ( cmttypes "github.com/cometbft/cometbft/types" sdktypes "github.com/cosmos/cosmos-sdk/types" + ibctesting "github.com/cosmos/ibc-go/v7/testing" providertypes "github.com/cosmos/interchain-security/v3/x/ccv/provider/types" + "github.com/kylelemons/godebug/pretty" "github.com/informalsystems/itf-go/itf" "github.com/stretchr/testify/require" @@ -27,6 +29,8 @@ func TestMBT(t *testing.T) { t.Log("Running traces from the traces folder") + ibctesting.TimeIncrement = 1 * time.Nanosecond + for _, dirEntry := range dirEntries { t.Log("Running trace ", dirEntry.Name()) RunItfTrace(t, "traces/"+dirEntry.Name()) @@ -129,13 +133,15 @@ func RunItfTrace(t *testing.T, path string) { t.Log("Reading the trace...") for index, state := range trace.States { - t.Logf("Reading state %v", index) + t.Logf("Reading state %v of trace %v", index, path) // modelState := state.VarValues["currentState"] trace := state.VarValues["trace"].Value.(itf.ListExprType) // fmt.Println(modelState) lastAction := trace[len(trace)-1].Value.(itf.MapExprType) + currentModelState := state.VarValues["currentState"].Value.(itf.MapExprType) + actionKind := lastAction["kind"].Value.(string) switch actionKind { case "init": @@ -165,15 +171,18 @@ func RunItfTrace(t *testing.T, path string) { // needs a header of height H+1 to accept the packet // so we do one time advancement with a very small increment, // and then increment the rest of the time] - - // TODO: start and stop consumers - driver.endAndBeginBlock("provider", time.Duration(timeAdvancement)*time.Second-1*time.Nanosecond) driver.endAndBeginBlock("provider", 1*time.Nanosecond) + driver.endAndBeginBlock("provider", time.Duration(timeAdvancement)*time.Second-1*time.Nanosecond) - // save the last timestamp for each chain, + // save the last timestamp for runningConsumers, // because setting up chains will modify timestamps // when the coordinator is starting chains - lastTimestamps := driver.allTimes() + lastTimestamps := make(map[ChainId]time.Time, len(consumers)) + for _, consumer := range driver.runningConsumers() { + lastTimestamps[ChainId(consumer.ChainId)] = driver.time(ChainId(consumer.ChainId)) + } + + driver.coordinator.CurrentTime = driver.time("provider") // start consumers for _, consumer := range consumersToStart { driver.setupConsumer( @@ -185,7 +194,6 @@ func RunItfTrace(t *testing.T, path string) { valNames, driver.providerChain(), ) - lastTimestamps[ChainId(consumer.Value.(string))] = driver.time(ChainId(consumer.Value.(string))) } // stop consumers @@ -194,40 +202,23 @@ func RunItfTrace(t *testing.T, path string) { driver.stopConsumer(consumerChain) // remove the consumer from timestamps map and time offsets - delete(lastTimestamps, consumerChain) delete(timeOffsets, consumerChain) - } - - // remove the stopped consumers from the timestamps - for _, consumer := range consumersToStop { - consumerChain := ChainId(consumer.Value.(string)) delete(lastTimestamps, consumerChain) - delete(timeOffsets, consumerChain) } - // restore the old timestamps, but increment by 1 nanosecond to avoid duplicate timestamps in headers - for chain, oldTimestamp := range lastTimestamps { - // if the chain was stopped, we don't need to restore the timestamp - driver.setTime(ChainId(chain), oldTimestamp.Add(1*time.Nanosecond)) - // also set the offset for each chain correctly - offset is incremented by 1 nanosecond - timeOffsets[ChainId(chain)] = timeOffsets[ChainId(chain)].Add(1 * time.Nanosecond) + // reset the times for the consumers that were not stopped or started just now + // their times were messed up by the coordinator + for consumer, timestamp := range lastTimestamps { + driver.setTime(consumer, timestamp) } // set the timeOffsets for the newly started chains for _, consumer := range consumersToStart { consumerChain := ChainId(consumer.Value.(string)) - timeOffsets[consumerChain] = driver.time(consumerChain) - } - - // need to produce another block to fix messed up times because the provider comitted blocks with - // times that were fixed by the coordinator - driver.endAndBeginBlock("provider", 0) - providerHeader := driver.providerChain().LastHeader - - // same for the consumers that were started - for _, consumer := range consumersToStart { - consumerChainId := string(consumer.Value.(string)) - driver.endAndBeginBlock(ChainId(consumerChainId), 0) + // the time offset is the time of the provider, + // because the model sets the timestamp on the consumer to the provider time + // when the consumer is started + timeOffsets[consumerChain] = timeOffsets["provider"] } // for all connected consumers, update the clients... @@ -238,8 +229,14 @@ func RunItfTrace(t *testing.T, path string) { } consumerChainId := string(consumer.ChainId) - driver.path(ChainId(consumerChainId)).AddClientHeader(Provider, providerHeader) - driver.path(ChainId(consumerChainId)).UpdateClient(consumerChainId) + driver.path(ChainId(consumerChainId)).AddClientHeader(Provider, driver.providerHeader()) + var err error + if ConsumerStatus(currentModelState, consumerChainId) == "expired" { + err = driver.path(ChainId(consumerChainId)).UpdateClient(consumerChainId, true) + } else { + err = driver.path(ChainId(consumerChainId)).UpdateClient(consumerChainId, false) + } + require.True(t, err == nil, "Error updating client from %v on provider: %v", consumerChainId, err) } case "EndAndBeginBlockForConsumer": @@ -252,13 +249,20 @@ func RunItfTrace(t *testing.T, path string) { headerBefore := driver.chain(ChainId(consumerChain)).LastHeader _ = headerBefore - driver.endAndBeginBlock(ChainId(consumerChain), time.Duration(timeAdvancement)*time.Second-1*time.Nanosecond) driver.endAndBeginBlock(ChainId(consumerChain), 1*time.Nanosecond) + driver.endAndBeginBlock(ChainId(consumerChain), time.Duration(timeAdvancement)*time.Second-1*time.Nanosecond) // update the client on the provider consumerHeader := driver.chain(ChainId(consumerChain)).LastHeader driver.path(ChainId(consumerChain)).AddClientHeader(consumerChain, consumerHeader) - driver.path(ChainId(consumerChain)).UpdateClient(Provider) + var err error + if LocalClientExpired(currentModelState, consumerChain) { + err = driver.path(ChainId(consumerChain)).UpdateClient(Provider, true) + } else { + err = driver.path(ChainId(consumerChain)).UpdateClient(Provider, false) + } + require.True(t, err == nil, "Error updating client from %v on provider: %v", consumerChain, err) + case "DeliverVscPacket": consumerChain := lastAction["consumerChain"].Value.(string) t.Log("DeliverVscPacket", consumerChain) @@ -282,7 +286,6 @@ func RunItfTrace(t *testing.T, path string) { t.Logf("Current actual state: %s", driver.getStateString()) } - currentModelState := state.VarValues["currentState"].Value.(itf.MapExprType) // check that the actual state is the same as the model state // compare the running consumers @@ -326,7 +329,7 @@ func RunItfTrace(t *testing.T, path string) { func CompareValidatorSets(t *testing.T, driver *Driver, currentModelState map[string]itf.Expr, consumers []string, index int) { modelValSet := ValidatorSet(currentModelState, "provider") - curValSet := driver.providerValidatorSet("provider") + curValSet := driver.providerValidatorSet() actualValSet := make(map[string]int64, len(curValSet)) @@ -395,6 +398,8 @@ func ComparePacketQueue(t *testing.T, driver *Driver, currentModelState map[stri // CompareTimes compares the block times in the model to the block times in the system. // It takes into account the timeOffsets, which should be the starting times // of the chains in the system after the system has been initialized. +// We only compare down to seconds, because the model and system will differ +// on the order of nanoseconds. func CompareTimes( t *testing.T, driver *Driver, @@ -409,7 +414,7 @@ func CompareTimes( require.Equal(t, providerLastTimestamp, actualProviderTime.Unix()-providerOffset.Unix(), - "Block times do not match") + "Block times do not match for provider") for _, chain := range consumers { modelLastTimestamp := Time(currentModelState, chain) @@ -418,7 +423,7 @@ func CompareTimes( require.Equal(t, modelLastTimestamp, actualChainTime.Unix()-timeOffsets[ChainId(chain)].Unix(), - "Block times do not match") + "Block times do not match for chain %v", chain) } } @@ -445,7 +450,7 @@ func CompareValSet(modelValSet map[string]itf.Expr, systemValSet map[string]int6 } if !reflect.DeepEqual(expectedValSet, actualValSet) { - return fmt.Errorf("Model validator set %v, system validator set %v", expectedValSet, actualValSet) + return fmt.Errorf("Validator sets do not match: (+ expected, - actual): %v", pretty.Compare(expectedValSet, actualValSet)) } return nil } diff --git a/tests/difference/core/quint_model/driver/model_viewer.go b/tests/difference/core/quint_model/driver/model_viewer.go index e72363b313..309690bb7b 100644 --- a/tests/difference/core/quint_model/driver/model_viewer.go +++ b/tests/difference/core/quint_model/driver/model_viewer.go @@ -69,3 +69,11 @@ func RunningConsumers(curStateExpr itf.MapExprType) []string { } return runningConsumers } + +func ConsumerStatus(curStateExpr itf.MapExprType, consumer string) string { + return ProviderState(curStateExpr)["consumerStatus"].Value.(itf.MapExprType)[consumer].Value.(string) +} + +func LocalClientExpired(curStateExpr itf.MapExprType, consumer string) bool { + return ConsumerState(curStateExpr, consumer)["localClientExpired"].Value.(bool) +} diff --git a/tests/difference/core/quint_model/driver/setup.go b/tests/difference/core/quint_model/driver/setup.go index da755546fc..9a9263d376 100644 --- a/tests/difference/core/quint_model/driver/setup.go +++ b/tests/difference/core/quint_model/driver/setup.go @@ -333,7 +333,7 @@ func (s *Driver) ConfigureNewPath(consumerChain *ibctesting.TestChain, providerC tmCfg := providerEndPoint.ClientConfig.(*ibctesting.TendermintConfig) tmCfg.UnbondingPeriod = params.UnbondingPeriodPerChain[ChainId(providerChain.ChainID)] tmCfg.TrustingPeriod = params.TrustingPeriodPerChain[ChainId(providerChain.ChainID)] - tmCfg.MaxClockDrift = params.TrustingPeriodPerChain[ChainId(providerChain.ChainID)] // make the clock drift a non-issue + tmCfg.MaxClockDrift = params.TrustingPeriodPerChain[ChainId(providerChain.ChainID)] * 5 // make the clock drift a non-issue err := providerEndPoint.CreateClient() require.NoError(s.t, err, "Error creating client on provider for chain %v", consumerChain.ChainID) @@ -352,7 +352,7 @@ func (s *Driver) ConfigureNewPath(consumerChain *ibctesting.TestChain, providerC tmCfg = consumerEndPoint.ClientConfig.(*ibctesting.TendermintConfig) tmCfg.UnbondingPeriod = params.UnbondingPeriodPerChain[consumerChainId] tmCfg.TrustingPeriod = params.TrustingPeriodPerChain[consumerChainId] - tmCfg.MaxClockDrift = params.TrustingPeriodPerChain[ChainId(providerChain.ChainID)] // make the clock drift a non-issue + tmCfg.MaxClockDrift = params.TrustingPeriodPerChain[ChainId(providerChain.ChainID)] * 5 // make the clock drift a non-issue consumerClientState := ibctmtypes.NewClientState( providerChain.ChainID, tmCfg.TrustLevel, tmCfg.TrustingPeriod, tmCfg.UnbondingPeriod, tmCfg.MaxClockDrift, @@ -390,9 +390,9 @@ func (s *Driver) ConfigureNewPath(consumerChain *ibctesting.TestChain, providerC simibc.BeginBlock(consumerChain, 5) // Update clients to the latest header. - err = simibc.UpdateReceiverClient(consumerEndPoint, providerEndPoint, lastConsumerHeader) + err = simibc.UpdateReceiverClient(consumerEndPoint, providerEndPoint, lastConsumerHeader, false) require.NoError(s.t, err, "Error updating client on consumer for chain %v", consumerChain.ChainID) - err = simibc.UpdateReceiverClient(providerEndPoint, consumerEndPoint, lastProviderHeader) + err = simibc.UpdateReceiverClient(providerEndPoint, consumerEndPoint, lastProviderHeader, false) require.NoError(s.t, err, "Error updating client on provider for chain %v", consumerChain.ChainID) // path is ready to go diff --git a/testutil/simibc/relay_util.go b/testutil/simibc/relay_util.go index 9fd5213d5b..edfbfddb35 100644 --- a/testutil/simibc/relay_util.go +++ b/testutil/simibc/relay_util.go @@ -7,7 +7,6 @@ import ( ibctmtypes "github.com/cosmos/ibc-go/v7/modules/light-clients/07-tendermint" ibctesting "github.com/cosmos/ibc-go/v7/testing" simapp "github.com/cosmos/ibc-go/v7/testing/simapp" - "github.com/stretchr/testify/require" errorsmod "cosmossdk.io/errors" @@ -23,7 +22,7 @@ import ( // must have a client of the sender chain that it can update. // // NOTE: this function MAY be used independently of the rest of simibc. -func UpdateReceiverClient(sender, receiver *ibctesting.Endpoint, header *ibctmtypes.Header) (err error) { +func UpdateReceiverClient(sender, receiver *ibctesting.Endpoint, header *ibctmtypes.Header, expectExpiration bool) (err error) { err = augmentHeader(sender.Chain, receiver.Chain, receiver.ClientID, header) if err != nil { @@ -34,8 +33,9 @@ func UpdateReceiverClient(sender, receiver *ibctesting.Endpoint, header *ibctmty receiver.ClientID, header, receiver.Chain.SenderAccount.GetAddress().String(), ) - - require.NoError(receiver.Chain.T, err) + if err != nil { + return err + } _, _, err = simapp.SignAndDeliver( receiver.Chain.T, @@ -46,7 +46,7 @@ func UpdateReceiverClient(sender, receiver *ibctesting.Endpoint, header *ibctmty receiver.Chain.ChainID, []uint64{receiver.Chain.SenderAccount.GetAccountNumber()}, []uint64{receiver.Chain.SenderAccount.GetSequence()}, - true, true, receiver.Chain.SenderPrivKey, + true, !expectExpiration, receiver.Chain.SenderPrivKey, ) if err != nil { diff --git a/testutil/simibc/relayed_path.go b/testutil/simibc/relayed_path.go index 8c2b79bc3d..bda1a50a10 100644 --- a/testutil/simibc/relayed_path.go +++ b/testutil/simibc/relayed_path.go @@ -110,14 +110,15 @@ func (f *RelayedPath) InvolvesChain(chainID string) bool { // UpdateClient updates the chain with the latest sequence // of available headers committed by the counterparty chain since // the last call to UpdateClient (or all for the first call). -func (f *RelayedPath) UpdateClient(chainID string) { +func (f *RelayedPath) UpdateClient(chainID string, expectExpiration bool) error { for _, header := range f.clientHeaders[f.Counterparty(chainID)] { - err := UpdateReceiverClient(f.endpoint(f.Counterparty(chainID)), f.endpoint(chainID), header) + err := UpdateReceiverClient(f.endpoint(f.Counterparty(chainID)), f.endpoint(chainID), header, expectExpiration) if err != nil { - f.t.Fatal("in relayed path could not update client of chain: ", chainID, " with header: ", header, " err: ", err) + return err } } f.clientHeaders[f.Counterparty(chainID)] = []*ibctmtypes.Header{} + return nil } // DeliverPackets delivers UP TO packets to the chain which have been From 8f31705f1d9a8fa2a8cf9cc510e0109698c48305 Mon Sep 17 00:00:00 2001 From: Philip Offtermatt Date: Mon, 27 Nov 2023 17:35:22 +0100 Subject: [PATCH 037/111] Add test case for expired clients --- tests/difference/core/quint_model/ccv.qnt | 46 ++++++++++--------- .../difference/core/quint_model/ccv_model.qnt | 31 +++++++++++-- .../difference/core/quint_model/ccv_test.qnt | 5 ++ 3 files changed, 58 insertions(+), 24 deletions(-) diff --git a/tests/difference/core/quint_model/ccv.qnt b/tests/difference/core/quint_model/ccv.qnt index bc252522a5..c0f7137412 100644 --- a/tests/difference/core/quint_model/ccv.qnt +++ b/tests/difference/core/quint_model/ccv.qnt @@ -43,10 +43,11 @@ module ccv_types { currentValidatorSet: ValidatorSet, - // TODO: split into lastTimestamp and runningTimestamp - // TODO: check how expiry needs to work (checks own chains runningTimestamp, but for foreign chain it's tracking the last comitted timestamp) // the latest timestamp that was comitted on chain lastTimestamp: Time, + + // the running timestamp of the current block (that will be put on chain when the block is ended) + runningTimestamp: Time, } // utility function: returns a chain state that is initialized minimally. @@ -55,6 +56,7 @@ module ccv_types { votingPowerHistory: List(), currentValidatorSet: Map(), lastTimestamp: 0, + runningTimestamp: 0, } // Defines the current state of the provider chain. Essentially, all information here is stored by the provider on-chain (or could be derived purely by information that is on-chain). @@ -277,7 +279,7 @@ module ccv { (Err("No outstanding packets to deliver"), false) } else { val packet = currentState.consumerStates.get(sender).outstandingPacketsToProvider.head() - if(packet.sendingTime + CcvTimeout.get(sender) < currentState.providerState.chainState.lastTimestamp) { + if(packet.sendingTime + CcvTimeout.get(sender) < currentState.providerState.chainState.runningTimestamp) { // drop consumer val result = stopConsumers( currentState.providerState.consumerStatus, @@ -327,7 +329,7 @@ module ccv { } else { val packet = currentState.providerState.outstandingPacketsToConsumer.get(receiver).head() // check if the consumer timed out - if (packet.sendingTime + CcvTimeout.get(PROVIDER_CHAIN) < currentState.consumerStates.get(receiver).chainState.lastTimestamp) { + if (packet.sendingTime + CcvTimeout.get(PROVIDER_CHAIN) < currentState.consumerStates.get(receiver).chainState.runningTimestamp) { // drop consumer val result = stopConsumers( currentState.providerState.consumerStatus, @@ -399,8 +401,7 @@ module ccv { val expiredConsumers = getRunningConsumers(providerStateAfterTimeAdvancement).filter( consumer => - val res = TimeoutDueToVscTimeout(tmpState, consumer) - res._1 + providerStateAfterTimeAdvancement.chainState.runningTimestamp > tmpState.consumerStates.get(consumer).chainState.lastTimestamp + TrustingPeriodPerChain.get("provider") ).exclude(timedOutConsumers) // send vsc packets @@ -448,6 +449,9 @@ module ccv { ).with( "lastTimestamp", providerStateAfterConsumerAdvancement.chainState.lastTimestamp + ).with( + "runningTimestamp", + providerStateAfterConsumerAdvancement.chainState.runningTimestamp ) ) newConsumerState @@ -484,29 +488,28 @@ module ccv { pair => val packet = pair._1 val maturationTime: Time = pair._2 - // important that the old chain state is used here, because sending packets happens on EndBlock, - // but the new timestamp only appears after BeginBlock - maturationTime <= oldChainState.lastTimestamp + // important: this uses the last comitted timestamp, not the running timestamp! + maturationTime <= newChainState.lastTimestamp ).transform(pair => pair._1) val newMaturationTimes = newConsumerState.maturationTimes.select( pair => val packet = pair._1 val maturationTime: Time = pair._2 - // important that the old chain state is used here, because sending packets happens on EndBlock, - // but the new timestamp only appears after BeginBlock - maturationTime > oldChainState.lastTimestamp + // important: this uses the last comitted timestamp, not the running timestamp! + + maturationTime > newChainState.lastTimestamp ) val newOutstandingPackets = newConsumerState.outstandingPacketsToProvider.concat( maturedPackets.transform( packet => { id: packet.id, - sendingTime: oldChainState.lastTimestamp + sendingTime: newChainState.runningTimestamp } ) ) // checks whether the local client for the provider chain has expired on the consumer val clientExpired = - if (newChainState.lastTimestamp > currentState.providerState.chainState.lastTimestamp + TrustingPeriodPerChain.get(chain)) { + if (newChainState.runningTimestamp > currentState.providerState.chainState.lastTimestamp + TrustingPeriodPerChain.get(chain)) { true } else { false @@ -626,10 +629,11 @@ module ccv { } // Advances the timestamp in the chainState by timeAdvancement - pure def advanceTime(chainState: ChainState, timeAdvancement: Time): ChainState = { - chainState.with( - "lastTimestamp", chainState.lastTimestamp + timeAdvancement - ) + pure def advanceTime(chainState: ChainState, timeAdvancement: Time): ChainState = + { + lastTimestamp: chainState.runningTimestamp, + runningTimestamp: chainState.runningTimestamp + timeAdvancement, + ...chainState } // common logic to update the chain state, used by both provider and consumers. @@ -652,7 +656,7 @@ module ccv { List({ id: providerState.runningVscId, validatorSet: providerState.chainState.currentValidatorSet, - sendingTime: providerState.chainState.lastTimestamp + sendingTime: providerState.chainState.runningTimestamp }) } else { List() @@ -699,7 +703,7 @@ module ccv { maturationTimes: currentConsumerState.maturationTimes.append( ( packet, - currentConsumerState.chainState.lastTimestamp + UnbondingPeriodPerChain.get(receiver) + currentConsumerState.chainState.runningTimestamp + UnbondingPeriodPerChain.get(receiver) ) ), receivedVscPackets: currentConsumerState.receivedVscPackets.prepend(packet) @@ -816,7 +820,7 @@ module ccv { val sentVscPacketsToConsumer = providerState.sentVscPacketsToConsumer.get(consumer) if(sentVscPacketsToConsumer.length() > 0) { val oldestSentVscPacket = sentVscPacketsToConsumer.head() // if length is 0, this is undefined, but we check for this before we use it - if(oldestSentVscPacket.sendingTime + VscTimeout < providerState.chainState.lastTimestamp) { + if(oldestSentVscPacket.sendingTime + VscTimeout < providerState.chainState.runningTimestamp) { (true, "") } else { // no timeout yet, it has not been VscTimeout since that packet was sent diff --git a/tests/difference/core/quint_model/ccv_model.qnt b/tests/difference/core/quint_model/ccv_model.qnt index 45035ddfdd..f0f200e7a8 100644 --- a/tests/difference/core/quint_model/ccv_model.qnt +++ b/tests/difference/core/quint_model/ccv_model.qnt @@ -18,13 +18,11 @@ module ccv_model { import ccv(VscTimeout = 5 * Week, CcvTimeout = ccvTimeouts, UnbondingPeriodPerChain = unbondingPeriods, ConsumerChains = consumerChains, TrustingPeriodPerChain = trustingPeriods).* from "./ccv" - // TODO: introduce max clock drift to produce traces with bounded drift - type Parameters = { VscTimeout: Time, CcvTimeout: Chain -> Time, UnbondingPeriodPerChain: Chain -> Time, - TrustingPeriodPerChain: Chain -> Time, // TODO: integrate trusting period in logic + TrustingPeriodPerChain: Chain -> Time, ConsumerChains: Set[Chain], Nodes: Set[Node], InitialValidatorSet: Node -> int, @@ -615,4 +613,31 @@ module ccv_model { VotingPowerChange("node1", 50) // action needs to be there but does not matter what it is } ) + + // check that when the running timestamp of a chain and the last timestamp of a counterparty differ by more than the trusting period, + // the client is expired + run ExpiredClientTest = + init.then( + EndAndBeginBlockForProvider(1 * Second, Set("consumer1"), Set()) + ).then( + 20.reps( + i => all { + { + // if the trusting period has passed + (currentState.consumerStates.get("consumer1").chainState.lastTimestamp + TrustingPeriodPerChain.get("provider") < currentState.providerState.chainState.runningTimestamp or + currentState.providerState.chainState.lastTimestamp + TrustingPeriodPerChain.get("consumer1") < currentState.consumerStates.get("consumer1").chainState.runningTimestamp) + implies + (currentState.consumerStates.get("consumer1").localClientExpired or + currentState.providerState.consumerStatus.get("consumer1") == EXPIRED or + currentState.providerState.consumerStatus.get("consumer1") == TIMEDOUT) + }, + any { + // advance time on the provider + EndAndBeginBlockForProvider(1 * Week, Set(), Set()), + // advance time on the consumer + EndAndBeginBlockForConsumer("consumer1", 1 * Week), + } + } + ) + ) } \ No newline at end of file diff --git a/tests/difference/core/quint_model/ccv_test.qnt b/tests/difference/core/quint_model/ccv_test.qnt index 56320b12f0..477d0dc419 100644 --- a/tests/difference/core/quint_model/ccv_test.qnt +++ b/tests/difference/core/quint_model/ccv_test.qnt @@ -10,6 +10,7 @@ module ccv_test { pure val chains = consumerChains.union(Set(PROVIDER_CHAIN)) pure val unbondingPeriods = chains.mapBy(chain => 2 * Week) pure val ccvTimeouts = chains.mapBy(chain => 3 * Week) + pure val trustingPeriods = chains.mapBy(chain => 2 * Week - 1 * Hour) import ccv(VscTimeout = 5 * Week, CcvTimeout = ccvTimeouts, UnbondingPeriodPerChain = unbondingPeriods, ConsumerChains = consumerChains).* from "./ccv" @@ -195,6 +196,7 @@ module ccv_test { currentConsumerStatusMap, Set("chain1"), Set("chain2"), + Set(), Set() ) res._2 == "" and @@ -214,6 +216,7 @@ module ccv_test { currentConsumerStatusMap, Set("chain2"), Set("chain3"), + Set(), Set() ) res._2 == "cannot start a consumer that is stopped or already a consumer" @@ -230,6 +233,7 @@ module ccv_test { currentConsumerStatusMap, Set("chain1"), Set("chain3"), + Set(), Set() ) res._2 == "Cannot stop a consumer that is not running" @@ -246,6 +250,7 @@ module ccv_test { currentConsumerStatusMap, Set("chain1"), Set("chain1"), + Set(), Set() ) res._2 == "Cannot start and stop a consumer at the same time" From 8681895bb224f431eac5bd20aafdfa8a35a5b1b5 Mon Sep 17 00:00:00 2001 From: Philip Offtermatt Date: Tue, 28 Nov 2023 09:25:41 +0100 Subject: [PATCH 038/111] Adjust tests for new timestamp handling --- tests/difference/core/quint_model/ccv_model.qnt | 15 +++++++++------ tests/difference/core/quint_model/ccv_test.qnt | 4 ++-- 2 files changed, 11 insertions(+), 8 deletions(-) diff --git a/tests/difference/core/quint_model/ccv_model.qnt b/tests/difference/core/quint_model/ccv_model.qnt index f0f200e7a8..5cea4644ff 100644 --- a/tests/difference/core/quint_model/ccv_model.qnt +++ b/tests/difference/core/quint_model/ccv_model.qnt @@ -500,14 +500,17 @@ module ccv_model { assert(currentState.consumerStates.get("consumer1").maturationTimes.length() == 1), // the validator set was put as the current validator set assert(currentState.consumerStates.get("consumer1").chainState.currentValidatorSet == InitialValidatorSet.put("node1", 200)), - // advance time on provider until the unbonding period is over - EndAndBeginBlockForProvider(UnbondingPeriodPerChain.get("consumer1"), Set(), Set()), + // advance time on provider and consumer until unbonding period is over - ensure that the consumer and provider + // stay in sync relative to each other + 4.reps( + i => + EndAndBeginBlockForProvider(UnbondingPeriodPerChain.get("consumer1")/4, Set(), Set()).then( + EndAndBeginBlockForConsumer("consumer1", UnbondingPeriodPerChain.get("consumer1")/4) + ) + + ) } ) - .then( - // advance time on consumer until the unbonding period is over - EndAndBeginBlockForConsumer("consumer1", UnbondingPeriodPerChain.get("consumer1")) - ) .then( all { // the packet has not matured yet - the timestamp for the current block is after the naturation time, diff --git a/tests/difference/core/quint_model/ccv_test.qnt b/tests/difference/core/quint_model/ccv_test.qnt index 477d0dc419..8152a6c29e 100644 --- a/tests/difference/core/quint_model/ccv_test.qnt +++ b/tests/difference/core/quint_model/ccv_test.qnt @@ -12,7 +12,7 @@ module ccv_test { pure val ccvTimeouts = chains.mapBy(chain => 3 * Week) pure val trustingPeriods = chains.mapBy(chain => 2 * Week - 1 * Hour) - import ccv(VscTimeout = 5 * Week, CcvTimeout = ccvTimeouts, UnbondingPeriodPerChain = unbondingPeriods, ConsumerChains = consumerChains).* from "./ccv" + import ccv(VscTimeout = 5 * Week, CcvTimeout = ccvTimeouts, UnbondingPeriodPerChain = unbondingPeriods, ConsumerChains = consumerChains, TrustingPeriodPerChain=trustingPeriods).* from "./ccv" // changing voting power by zero gives an error run VotingPowerZeroChangeTest = @@ -158,7 +158,7 @@ module ccv_test { "providerState", DeliverPacketToProviderHappyPathTest_testState.providerState.with( "chainState", DeliverPacketToProviderHappyPathTest_testState.providerState.chainState.with( // set the timestamp to be after the timeout - "lastTimestamp", CcvTimeout.get("sender") + 1 + "runningTimestamp", CcvTimeout.get("sender") + 1 ) ) ) From f229db7b690502208d98c625777555dc4625e8ea Mon Sep 17 00:00:00 2001 From: Philip Offtermatt Date: Tue, 28 Nov 2023 09:43:42 +0100 Subject: [PATCH 039/111] Use -1 as last timestamp when no block was comitted --- tests/difference/core/quint_model/ccv.qnt | 2 +- tests/difference/core/quint_model/ccv_model.qnt | 5 +++-- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/tests/difference/core/quint_model/ccv.qnt b/tests/difference/core/quint_model/ccv.qnt index c0f7137412..3902c5ed36 100644 --- a/tests/difference/core/quint_model/ccv.qnt +++ b/tests/difference/core/quint_model/ccv.qnt @@ -55,7 +55,7 @@ module ccv_types { { votingPowerHistory: List(), currentValidatorSet: Map(), - lastTimestamp: 0, + lastTimestamp: -1, // last timestamp -1 means that in the model, there was no block comitted on chain yet. runningTimestamp: 0, } diff --git a/tests/difference/core/quint_model/ccv_model.qnt b/tests/difference/core/quint_model/ccv_model.qnt index 5cea4644ff..46dfb9c493 100644 --- a/tests/difference/core/quint_model/ccv_model.qnt +++ b/tests/difference/core/quint_model/ccv_model.qnt @@ -464,7 +464,8 @@ module ccv_model { assert(currentState.consumerStates.keys() == consumerChains), assert(currentState.providerState.chainState.votingPowerHistory == List(InitialValidatorSet)), assert(currentState.providerState.chainState.currentValidatorSet == InitialValidatorSet), - assert(currentState.providerState.chainState.lastTimestamp == 0), + assert(currentState.providerState.chainState.lastTimestamp == -1), + assert(currentState.providerState.chainState.runningTimestamp == 0), VotingPowerChange("node1", 50) }) .then( @@ -623,7 +624,7 @@ module ccv_model { init.then( EndAndBeginBlockForProvider(1 * Second, Set("consumer1"), Set()) ).then( - 20.reps( + 8.reps( i => all { { // if the trusting period has passed From 8bbb86aa25c79eaa9b58969f50e57be39d2aa07d Mon Sep 17 00:00:00 2001 From: Philip Offtermatt Date: Tue, 28 Nov 2023 10:19:07 +0100 Subject: [PATCH 040/111] Fix client expiration conditions --- tests/difference/core/quint_model/ccv_model.qnt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/difference/core/quint_model/ccv_model.qnt b/tests/difference/core/quint_model/ccv_model.qnt index 46dfb9c493..98870e4e6b 100644 --- a/tests/difference/core/quint_model/ccv_model.qnt +++ b/tests/difference/core/quint_model/ccv_model.qnt @@ -628,8 +628,8 @@ module ccv_model { i => all { { // if the trusting period has passed - (currentState.consumerStates.get("consumer1").chainState.lastTimestamp + TrustingPeriodPerChain.get("provider") < currentState.providerState.chainState.runningTimestamp or - currentState.providerState.chainState.lastTimestamp + TrustingPeriodPerChain.get("consumer1") < currentState.consumerStates.get("consumer1").chainState.runningTimestamp) + (currentState.consumerStates.get("consumer1").chainState.runningTimestamp + TrustingPeriodPerChain.get("provider") < currentState.providerState.chainState.lastTimestamp or + currentState.providerState.chainState.runningTimestamp + TrustingPeriodPerChain.get("consumer1") < currentState.consumerStates.get("consumer1").chainState.lastTimestamp) implies (currentState.consumerStates.get("consumer1").localClientExpired or currentState.providerState.consumerStatus.get("consumer1") == EXPIRED or From 9237c346bb66219041bdf7ccf63215a51b00d9fc Mon Sep 17 00:00:00 2001 From: Philip Offtermatt Date: Tue, 28 Nov 2023 11:44:16 +0100 Subject: [PATCH 041/111] Start writing model with boundeddrift --- tests/difference/core/quint_model/ccv.qnt | 7 +-- .../core/quint_model/ccv_boundeddrift.qnt | 53 +++++++++++++++++++ .../difference/core/quint_model/ccv_model.qnt | 1 - .../{ccv_happy.qnt => ccv_sync.qnt} | 6 +-- 4 files changed, 60 insertions(+), 7 deletions(-) create mode 100644 tests/difference/core/quint_model/ccv_boundeddrift.qnt rename tests/difference/core/quint_model/{ccv_happy.qnt => ccv_sync.qnt} (92%) diff --git a/tests/difference/core/quint_model/ccv.qnt b/tests/difference/core/quint_model/ccv.qnt index 3902c5ed36..07bb6525e5 100644 --- a/tests/difference/core/quint_model/ccv.qnt +++ b/tests/difference/core/quint_model/ccv.qnt @@ -399,9 +399,10 @@ module ccv { res._1 ) + // check whether the local client for the provider has expired on any consumer val expiredConsumers = getRunningConsumers(providerStateAfterTimeAdvancement).filter( consumer => - providerStateAfterTimeAdvancement.chainState.runningTimestamp > tmpState.consumerStates.get(consumer).chainState.lastTimestamp + TrustingPeriodPerChain.get("provider") + providerStateAfterTimeAdvancement.chainState.lastTimestamp > tmpState.consumerStates.get(consumer).chainState.runningTimestamp + TrustingPeriodPerChain.get(consumer) ).exclude(timedOutConsumers) // send vsc packets @@ -507,9 +508,9 @@ module ccv { } ) ) - // checks whether the local client for the provider chain has expired on the consumer + // checks whether the local client for the consumer has expired on the provider val clientExpired = - if (newChainState.runningTimestamp > currentState.providerState.chainState.lastTimestamp + TrustingPeriodPerChain.get(chain)) { + if (newChainState.lastTimestamp > currentState.providerState.chainState.runningTimestamp + TrustingPeriodPerChain.get(chain)) { true } else { false diff --git a/tests/difference/core/quint_model/ccv_boundeddrift.qnt b/tests/difference/core/quint_model/ccv_boundeddrift.qnt new file mode 100644 index 0000000000..81dca41a56 --- /dev/null +++ b/tests/difference/core/quint_model/ccv_boundeddrift.qnt @@ -0,0 +1,53 @@ +module ccv_happy { + import ccv_model.* from "ccv_model" + import ccv_types as ccvt from "ccv" + import ccv from "ccv" + import Time.* from "./libraries/Time" + import extraSpells.* from "./libraries/extraSpells" + + + // The boundeddrift module has its own step function. + // They ensure that chains do not drift from each other in terms of time + // more than a given bound. + // It differs from the sync module in that it does not require + // the chains to produce blocks at the same time. + + // The maximal drift that this module will allow between chains. + // In particular, it will ensure that the lastTime of any chain + // does not differ from the runningTime of any other chain by more than + // this value. + pure val maxDrift = defUnbondingPeriod - 2 * Hour + + // Finds the maximal time advancement that can be done for a given chain + // without violating the maxDrift constraint. + pure def findMaxTimeAdvancement(advancingChain: ccvt::ChainState, otherChains: Set[ccvt::ChainState]): Time = + val otherChainsLastTimes = otherChains.map(c => c.lastTimestamp) + 0 + // // start with advancingChain.RunningTime - if this is the minimal element, we can advance by maxDrift anyways + // val otherChainsMinLastTime = otherChainsLastTimes.fold(advancingChain.runningTimestamp, (acc, t) => if (acc < t) acc else t) + // val maxTime = advancingChain.runningTimestamp - otherChainsMinLastTime + maxDrift + + // step will advance time for all chains at the same rate, + // thus the clock times are always in sync. + // This is useful to test happy paths. + action stepBoundedDrift = any { + step_common, // allow actions that do not influence time + + all { + // advance a block for a consumer + all { + runningConsumers.size() > 0, // ensure there is a running consumer, otherwise this action does not make sense + nondet chain = oneOf(runningConsumers) + nondet timeAdvancement = oneOf(timeAdvancements) + EndAndBeginBlockForConsumer(chain, timeAdvancement), + }, + + // advance a block for the provider + val consumerStatus = currentState.providerState.consumerStatus + nondet consumersToStart = oneOf(nonConsumers.powerset()) + nondet consumersToStop = oneOf(runningConsumers.powerset()) + nondet timeAdvancement = oneOf(timeAdvancements) + EndAndBeginBlockForProvider(timeAdvancement, consumersToStart, consumersToStop), + } + } +} \ No newline at end of file diff --git a/tests/difference/core/quint_model/ccv_model.qnt b/tests/difference/core/quint_model/ccv_model.qnt index 98870e4e6b..4f44322da7 100644 --- a/tests/difference/core/quint_model/ccv_model.qnt +++ b/tests/difference/core/quint_model/ccv_model.qnt @@ -170,7 +170,6 @@ module ccv_model { } // step_common is the core functionality of steps that does not have anything to do with time. - // Thus, it is part of both step and stepBoundedDrift. action step_common = any { nondet node = oneOf(nodes) // very restricted set of voting powers. exact values are not important, diff --git a/tests/difference/core/quint_model/ccv_happy.qnt b/tests/difference/core/quint_model/ccv_sync.qnt similarity index 92% rename from tests/difference/core/quint_model/ccv_happy.qnt rename to tests/difference/core/quint_model/ccv_sync.qnt index 60e2574422..99bbcdc720 100644 --- a/tests/difference/core/quint_model/ccv_happy.qnt +++ b/tests/difference/core/quint_model/ccv_sync.qnt @@ -1,4 +1,4 @@ -module ccv_happy { +module ccv_sync { import ccv_model.* from "ccv_model" import ccv_types as ccvt from "ccv" import ccv from "ccv" @@ -6,7 +6,7 @@ module ccv_happy { import extraSpells.* from "./libraries/extraSpells" - // The happy path module has its own init and step functions. + // The sync module has its own init and step functions. // They ensure that chains do not drift from each other in terms of time, // and all chains produce blocks synchronously. // To do so, it makes use of @@ -15,7 +15,7 @@ module ccv_happy { // QueuedEndBlocks contains a list of chains which will end their blocks next, // together with the time advancement they should advance by. - // When stepHappyPath selects an action, it checks if there are any chains in this list, + // When stepHappy selects an action, it checks if there are any chains in this list, // and if so, it will only select actions that end blocks on the head of the list. // QueuedEndBlocks is thus used to schedule actions. var QueuedEndBlocks: List[(ccvt::Chain, Time)] From 2b9873af7733a23b427e0336896fc98ba9851489 Mon Sep 17 00:00:00 2001 From: Philip Offtermatt Date: Tue, 28 Nov 2023 12:52:49 +0100 Subject: [PATCH 042/111] Add model with bounded drift --- .../core/quint_model/ccv_boundeddrift.qnt | 76 +++++++++++++------ 1 file changed, 53 insertions(+), 23 deletions(-) diff --git a/tests/difference/core/quint_model/ccv_boundeddrift.qnt b/tests/difference/core/quint_model/ccv_boundeddrift.qnt index 81dca41a56..23f74a2272 100644 --- a/tests/difference/core/quint_model/ccv_boundeddrift.qnt +++ b/tests/difference/core/quint_model/ccv_boundeddrift.qnt @@ -1,6 +1,6 @@ module ccv_happy { import ccv_model.* from "ccv_model" - import ccv_types as ccvt from "ccv" + import ccv_types as Ccvt from "ccv" import ccv from "ccv" import Time.* from "./libraries/Time" import extraSpells.* from "./libraries/extraSpells" @@ -18,14 +18,34 @@ module ccv_happy { // this value. pure val maxDrift = defUnbondingPeriod - 2 * Hour - // Finds the maximal time advancement that can be done for a given chain - // without violating the maxDrift constraint. - pure def findMaxTimeAdvancement(advancingChain: ccvt::ChainState, otherChains: Set[ccvt::ChainState]): Time = + pure def findMaxTimeAdvancement(advancingChain: Ccvt::ChainState, otherChains: Set[Ccvt::ChainState], maximalDrift: Time): Time = val otherChainsLastTimes = otherChains.map(c => c.lastTimestamp) - 0 - // // start with advancingChain.RunningTime - if this is the minimal element, we can advance by maxDrift anyways - // val otherChainsMinLastTime = otherChainsLastTimes.fold(advancingChain.runningTimestamp, (acc, t) => if (acc < t) acc else t) - // val maxTime = advancingChain.runningTimestamp - otherChainsMinLastTime + maxDrift + // start with advancingChain.RunningTime - if this is the minimal element, we can advance by maxDrift anyways + val otherChainsMinLastTime = otherChainsLastTimes.fold(advancingChain.runningTimestamp, (acc, t) => if (acc < t) acc else t) + val maxTime = advancingChain.runningTimestamp - otherChainsMinLastTime + maximalDrift + maxTime + + // Given the name of a chain, gets a set with the chain states of all other chains. + def GetOtherChainStates(advancingChain: Ccvt::Chain): Set[Ccvt::ChainState] = + val runCons = ccv::getRunningConsumers(currentState.providerState) + if (advancingChain == Ccvt::PROVIDER_CHAIN) { + runCons.map(c => currentState.consumerStates.get(c).chainState) + } else { + val consumerChainStates = runCons.filter(c => c != advancingChain).map(c => currentState.consumerStates.get(c).chainState) + consumerChainStates.union(Set(currentState.providerState.chainState)) + } + + def GetChainState(advancingChain: Ccvt::Chain): Ccvt::ChainState = + if (advancingChain == Ccvt::PROVIDER_CHAIN) { + currentState.providerState.chainState + } else { + currentState.consumerStates.get(advancingChain).chainState + } + + def GetChainStates(): Set[Ccvt::ChainState] = + val runCons = ccv::getRunningConsumers(currentState.providerState) + val consumerChainStates = runCons.map(c => currentState.consumerStates.get(c).chainState) + consumerChainStates.union(Set(currentState.providerState.chainState)) // step will advance time for all chains at the same rate, // thus the clock times are always in sync. @@ -33,21 +53,31 @@ module ccv_happy { action stepBoundedDrift = any { step_common, // allow actions that do not influence time + // advance a block for a consumer all { - // advance a block for a consumer - all { - runningConsumers.size() > 0, // ensure there is a running consumer, otherwise this action does not make sense - nondet chain = oneOf(runningConsumers) - nondet timeAdvancement = oneOf(timeAdvancements) - EndAndBeginBlockForConsumer(chain, timeAdvancement), - }, - - // advance a block for the provider - val consumerStatus = currentState.providerState.consumerStatus - nondet consumersToStart = oneOf(nonConsumers.powerset()) - nondet consumersToStop = oneOf(runningConsumers.powerset()) - nondet timeAdvancement = oneOf(timeAdvancements) - EndAndBeginBlockForProvider(timeAdvancement, consumersToStart, consumersToStop), - } + runningConsumers.size() > 0, // ensure there is a running consumer, otherwise this action does not make sense + nondet chain = oneOf(runningConsumers) + val maxTimeAdvancement = findMaxTimeAdvancement(GetChainState(chain), GetOtherChainStates(chain), maxDrift) + nondet timeAdvancement = oneOf(timeAdvancements.filter(t => t <= maxTimeAdvancement)) + EndAndBeginBlockForConsumer(chain, timeAdvancement), + }, + + // advance a block for the provider + val consumerStatus = currentState.providerState.consumerStatus + nondet consumersToStart = oneOf(nonConsumers.powerset()) + nondet consumersToStop = oneOf(runningConsumers.powerset()) + val maxTimeAdvancement = findMaxTimeAdvancement(GetChainState(Ccvt::PROVIDER_CHAIN), GetOtherChainStates(Ccvt::PROVIDER_CHAIN), maxDrift) + nondet timeAdvancement = oneOf(timeAdvancements.filter(t => t <= maxTimeAdvancement)) + EndAndBeginBlockForProvider(timeAdvancement, consumersToStart, consumersToStop), } + + // INVARIANT + // The maxDrift between chains is never exceeded. + // This *should* be ensured by the step function. + val BoundedDriftInv = + GetChainStates.forall( + chain1 => GetChainStates.forall( + chain2 => chain1.runningTimestamp - chain2.lastTimestamp <= maxDrift + ) + ) } \ No newline at end of file From dd2cd7c4faa64638e32f40de32c20f709aa51a92 Mon Sep 17 00:00:00 2001 From: Philip Offtermatt Date: Tue, 28 Nov 2023 14:01:06 +0100 Subject: [PATCH 043/111] Rename module to match filename --- .../difference/core/quint_model/ccv_boundeddrift.qnt | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/tests/difference/core/quint_model/ccv_boundeddrift.qnt b/tests/difference/core/quint_model/ccv_boundeddrift.qnt index 23f74a2272..ca1298cefe 100644 --- a/tests/difference/core/quint_model/ccv_boundeddrift.qnt +++ b/tests/difference/core/quint_model/ccv_boundeddrift.qnt @@ -1,4 +1,4 @@ -module ccv_happy { +module ccv_boundeddrift { import ccv_model.* from "ccv_model" import ccv_types as Ccvt from "ccv" import ccv from "ccv" @@ -22,7 +22,7 @@ module ccv_happy { val otherChainsLastTimes = otherChains.map(c => c.lastTimestamp) // start with advancingChain.RunningTime - if this is the minimal element, we can advance by maxDrift anyways val otherChainsMinLastTime = otherChainsLastTimes.fold(advancingChain.runningTimestamp, (acc, t) => if (acc < t) acc else t) - val maxTime = advancingChain.runningTimestamp - otherChainsMinLastTime + maximalDrift + val maxTime = otherChainsMinLastTime - advancingChain.runningTimestamp + maximalDrift maxTime // Given the name of a chain, gets a set with the chain states of all other chains. @@ -42,7 +42,7 @@ module ccv_happy { currentState.consumerStates.get(advancingChain).chainState } - def GetChainStates(): Set[Ccvt::ChainState] = + def GetRunningChainStates(): Set[Ccvt::ChainState] = val runCons = ccv::getRunningConsumers(currentState.providerState) val consumerChainStates = runCons.map(c => currentState.consumerStates.get(c).chainState) consumerChainStates.union(Set(currentState.providerState.chainState)) @@ -75,9 +75,9 @@ module ccv_happy { // The maxDrift between chains is never exceeded. // This *should* be ensured by the step function. val BoundedDriftInv = - GetChainStates.forall( - chain1 => GetChainStates.forall( - chain2 => chain1.runningTimestamp - chain2.lastTimestamp <= maxDrift + GetRunningChainStates.forall( + chain1 => GetRunningChainStates.forall( + chain2 => abs(chain1.runningTimestamp - chain2.lastTimestamp) <= maxDrift ) ) } \ No newline at end of file From 603a66844a66f77bf1174725dd92d5104810a162 Mon Sep 17 00:00:00 2001 From: Philip Offtermatt Date: Tue, 28 Nov 2023 14:01:49 +0100 Subject: [PATCH 044/111] Add extra log output and trace gen scripts --- .../core/quint_model/driver/core.go | 18 +++- .../driver/generate_boundeddrift_traces.sh | 1 + .../driver/generate_happy_traces.sh | 1 - .../core/quint_model/driver/mbt_test.go | 85 +++++++++++++++---- .../core/quint_model/driver/model_viewer.go | 6 +- 5 files changed, 87 insertions(+), 24 deletions(-) create mode 100755 tests/difference/core/quint_model/driver/generate_boundeddrift_traces.sh delete mode 100755 tests/difference/core/quint_model/driver/generate_happy_traces.sh diff --git a/tests/difference/core/quint_model/driver/core.go b/tests/difference/core/quint_model/driver/core.go index ac4eb9a4ee..fa75970ed1 100644 --- a/tests/difference/core/quint_model/driver/core.go +++ b/tests/difference/core/quint_model/driver/core.go @@ -98,12 +98,18 @@ func (s *Driver) height(chain ChainId) int64 { return s.chain(chain).CurrentHeader.GetHeight() } -// time returns the time of the current header of chain -func (s *Driver) time(chain ChainId) time.Time { +// runningTime returns the timestamp of the current header of chain +func (s *Driver) runningTime(chain ChainId) time.Time { testChain := s.chain(chain) return testChain.CurrentHeader.Time } +// lastTime returns the timestamp of the last header of chain +func (s *Driver) lastTime(chain ChainId) time.Time { + testChain := s.chain(chain) + return testChain.LastHeader.Header.Time +} + func (s *Driver) allTimes() map[ChainId]time.Time { chains := s.coordinator.Chains times := make(map[ChainId]time.Time, len(chains)) @@ -318,12 +324,16 @@ func (s *Driver) getChainStateString(chain ChainId) string { height := ctx.BlockHeight() // Get the current block time - blockTime := ctx.BlockTime() + runningTime := s.runningTime(chain) + + // get the time of the last block + lastTime := s.lastTime(chain) // Build the chain info string var chainInfo strings.Builder chainInfo.WriteString(fmt.Sprintf(" Height: %d\n", height)) - chainInfo.WriteString(fmt.Sprintf(" Time: %s\n", blockTime)) + chainInfo.WriteString(fmt.Sprintf(" Running Time: %s\n", runningTime)) + chainInfo.WriteString(fmt.Sprintf(" Last Time entered on chain: %s\n", lastTime)) if !s.isProviderChain(chain) { // Check whether the chain is in the consumer chains on the provider diff --git a/tests/difference/core/quint_model/driver/generate_boundeddrift_traces.sh b/tests/difference/core/quint_model/driver/generate_boundeddrift_traces.sh new file mode 100755 index 0000000000..4633a253b0 --- /dev/null +++ b/tests/difference/core/quint_model/driver/generate_boundeddrift_traces.sh @@ -0,0 +1 @@ +go run ./... -modelPath=../ccv_boundeddrift.qnt -step stepBoundedDrift -traceFolder traces -numTraces 100 \ No newline at end of file diff --git a/tests/difference/core/quint_model/driver/generate_happy_traces.sh b/tests/difference/core/quint_model/driver/generate_happy_traces.sh deleted file mode 100755 index fd1a45f589..0000000000 --- a/tests/difference/core/quint_model/driver/generate_happy_traces.sh +++ /dev/null @@ -1 +0,0 @@ -go run ./... -modelPath=../ccv_happy.qnt -init initHappy -step stepHappy -invariant CanReceiveMaturations -traceFolder traces -numTraces 5 \ No newline at end of file diff --git a/tests/difference/core/quint_model/driver/mbt_test.go b/tests/difference/core/quint_model/driver/mbt_test.go index 4d8c36304c..978c7026d6 100644 --- a/tests/difference/core/quint_model/driver/mbt_test.go +++ b/tests/difference/core/quint_model/driver/mbt_test.go @@ -21,6 +21,18 @@ import ( const verbose = true +// keep some interesting statistics +type Stats struct { + highestObservedValPower int64 + longestObservedPacketQueue int + + numStartedChains int + numStops int + numTimeouts int +} + +var stats = Stats{} + func TestMBT(t *testing.T) { dirEntries, err := os.ReadDir("traces") if err != nil { @@ -38,6 +50,12 @@ func TestMBT(t *testing.T) { t.Log("✅ Running traces from the traces folder done") t.Log(len(dirEntries), "traces run") + + // print some stats + t.Logf("Highest observed voting power: %v", stats.highestObservedValPower) + t.Logf("Longest observed packet queue: %v", stats.longestObservedPacketQueue) + t.Logf("Number of started chains: %v", stats.numStartedChains) + t.Logf("Number of stopped chains: %v", stats.numStops) } func RunItfTrace(t *testing.T, path string) { @@ -126,7 +144,7 @@ func RunItfTrace(t *testing.T, path string) { // this is necessary because the system needs to do many steps to initialize the chains, // which is abstracted away in the model timeOffsets := make(map[ChainId]time.Time, len(chains)) - timeOffsets[Provider] = driver.time(Provider) + timeOffsets[Provider] = driver.runningTime(Provider) t.Log("Started chains") @@ -167,6 +185,9 @@ func RunItfTrace(t *testing.T, path string) { consumersToStop := lastAction["consumersToStop"].Value.(itf.ListExprType) t.Log("EndAndBeginBlockForProvider", timeAdvancement, consumersToStart, consumersToStop) + stats.numStartedChains += len(consumersToStart) + stats.numStops += len(consumersToStop) + // we need 2 blocks, because for a packet sent at height H, the receiving chain // needs a header of height H+1 to accept the packet // so we do one time advancement with a very small increment, @@ -179,10 +200,10 @@ func RunItfTrace(t *testing.T, path string) { // when the coordinator is starting chains lastTimestamps := make(map[ChainId]time.Time, len(consumers)) for _, consumer := range driver.runningConsumers() { - lastTimestamps[ChainId(consumer.ChainId)] = driver.time(ChainId(consumer.ChainId)) + lastTimestamps[ChainId(consumer.ChainId)] = driver.runningTime(ChainId(consumer.ChainId)) } - driver.coordinator.CurrentTime = driver.time("provider") + driver.coordinator.CurrentTime = driver.runningTime("provider") // start consumers for _, consumer := range consumersToStart { driver.setupConsumer( @@ -256,11 +277,11 @@ func RunItfTrace(t *testing.T, path string) { consumerHeader := driver.chain(ChainId(consumerChain)).LastHeader driver.path(ChainId(consumerChain)).AddClientHeader(consumerChain, consumerHeader) var err error - if LocalClientExpired(currentModelState, consumerChain) { - err = driver.path(ChainId(consumerChain)).UpdateClient(Provider, true) - } else { - err = driver.path(ChainId(consumerChain)).UpdateClient(Provider, false) - } + // if LocalClientExpired(currentModelState, consumerChain) { + // err = driver.path(ChainId(consumerChain)).UpdateClient(Provider, true) + // } else { + err = driver.path(ChainId(consumerChain)).UpdateClient(Provider, false) + // } require.True(t, err == nil, "Error updating client from %v on provider: %v", consumerChain, err) case "DeliverVscPacket": @@ -323,6 +344,8 @@ func RunItfTrace(t *testing.T, path string) { ComparePacketQueues(t, driver, currentModelState, consumer) } t.Log("Packet queues match") + + stats.EnterStats(driver) } t.Log("🟢 Trace is ok!") } @@ -407,23 +430,27 @@ func CompareTimes( currentModelState map[string]itf.Expr, timeOffsets map[ChainId]time.Time, ) { - providerLastTimestamp := Time(currentModelState, "provider") - actualProviderTime := driver.time("provider") providerOffset := timeOffsets["provider"] + providerRunningTimestamp := RunningTime(currentModelState, "provider") + actualRunningProviderTime := driver.runningTime("provider") + require.Equal(t, - providerLastTimestamp, - actualProviderTime.Unix()-providerOffset.Unix(), - "Block times do not match for provider") + providerRunningTimestamp, + actualRunningProviderTime.Unix()-providerOffset.Unix(), + "Running times do not match for provider") for _, chain := range consumers { - modelLastTimestamp := Time(currentModelState, chain) - actualChainTime := driver.time(ChainId(chain)) + offset := timeOffsets[ChainId(chain)] + + modelRunningTimestamp := RunningTime(currentModelState, chain) + actualRunningChainTime := driver.runningTime(ChainId(chain)) require.Equal(t, - modelLastTimestamp, - actualChainTime.Unix()-timeOffsets[ChainId(chain)].Unix(), - "Block times do not match for chain %v", chain) + modelRunningTimestamp, + actualRunningChainTime.Unix()-offset.Unix(), + "Running times do not match for chain %v", chain) + } } @@ -454,3 +481,25 @@ func CompareValSet(modelValSet map[string]itf.Expr, systemValSet map[string]int6 } return nil } + +func (s *Stats) EnterStats(driver *Driver) { + // highest observed voting power + for _, val := range driver.providerValidatorSet() { + if val.Tokens.Int64() > s.highestObservedValPower { + s.highestObservedValPower = val.Tokens.Int64() + } + } + + // longest observed packet queue + for _, consumer := range driver.runningConsumers() { + queueToConsumer := driver.packetQueue(Provider, ChainId(consumer.ChainId)) + if len(queueToConsumer) > s.longestObservedPacketQueue { + s.longestObservedPacketQueue = len(queueToConsumer) + } + + queueFromConsumer := driver.packetQueue(ChainId(consumer.ChainId), Provider) + if len(queueFromConsumer) > s.longestObservedPacketQueue { + s.longestObservedPacketQueue = len(queueFromConsumer) + } + } +} diff --git a/tests/difference/core/quint_model/driver/model_viewer.go b/tests/difference/core/quint_model/driver/model_viewer.go index 309690bb7b..0b0c9d014d 100644 --- a/tests/difference/core/quint_model/driver/model_viewer.go +++ b/tests/difference/core/quint_model/driver/model_viewer.go @@ -36,10 +36,14 @@ func HistoricalValidatorSet(curStateExpr itf.MapExprType, chain string, index in return history[index].Value.(itf.MapExprType) } -func Time(curStateExpr itf.MapExprType, chain string) int64 { +func LastTime(curStateExpr itf.MapExprType, chain string) int64 { return ChainState(curStateExpr, chain)["lastTimestamp"].Value.(int64) } +func RunningTime(curStateExpr itf.MapExprType, chain string) int64 { + return ChainState(curStateExpr, chain)["runningTimestamp"].Value.(int64) +} + // PacketQueue returns the queued packets between sender and receiver. // Either sender or receiver need to be the provider. func PacketQueue(curStateExpr itf.MapExprType, sender string, receiver string) itf.ListExprType { From 719614c890ca0265bff3c7030693f05396f31f0a Mon Sep 17 00:00:00 2001 From: Philip Offtermatt Date: Tue, 28 Nov 2023 14:03:14 +0100 Subject: [PATCH 045/111] Add Apalache output folder to gitignore --- tests/difference/core/quint_model/.gitignore | 2 ++ 1 file changed, 2 insertions(+) create mode 100644 tests/difference/core/quint_model/.gitignore diff --git a/tests/difference/core/quint_model/.gitignore b/tests/difference/core/quint_model/.gitignore new file mode 100644 index 0000000000..cca2dcf61e --- /dev/null +++ b/tests/difference/core/quint_model/.gitignore @@ -0,0 +1,2 @@ +# Output generated by the Apalache model checker +_apalache-out \ No newline at end of file From 468dc7fbbcbef8d7fd05169d3ac5e3c95ab1d29d Mon Sep 17 00:00:00 2001 From: Philip Offtermatt Date: Tue, 28 Nov 2023 17:51:36 +0100 Subject: [PATCH 046/111] Remove expired clients --- tests/difference/core/quint_model/ccv.qnt | 41 ++++--------------- .../difference/core/quint_model/ccv_model.qnt | 35 ++++------------ .../difference/core/quint_model/ccv_test.qnt | 4 -- 3 files changed, 15 insertions(+), 65 deletions(-) diff --git a/tests/difference/core/quint_model/ccv.qnt b/tests/difference/core/quint_model/ccv.qnt index 07bb6525e5..879e2387a0 100644 --- a/tests/difference/core/quint_model/ccv.qnt +++ b/tests/difference/core/quint_model/ccv.qnt @@ -122,9 +122,6 @@ module ccv_types { // ordered by recency, so the head is the oldest packet. // In the implementation, essentially unacknowledged IBC packets. outstandingPacketsToProvider: List[VscMaturedPacket], - - // true if the local client of that chain has expired, false otherwise. - localClientExpired: bool, } // utility function: returns a consumer state that is initialized minimally. @@ -134,7 +131,6 @@ module ccv_types { maturationTimes: List(), outstandingPacketsToProvider: List(), receivedVscPackets: List(), - localClientExpired: false, } // the state of the protocol consists of the composition of the state of one provider chain with potentially many consumer chains. @@ -186,7 +182,6 @@ module ccv_types { pure val TIMEDOUT = "timedout" // the chain has timed out and was dropped by the provider. This is only used for involuntary drops. pure val RUNNING = "running" // the chain is currently a consumer chain. Running chains are those that get sent VscPackets. pure val NOT_CONSUMER = "not consumer" // the chain has never been a consumer chain, and is available to become one. - pure val EXPIRED = "expired" // The channel between the chains is expired. This is only used for involuntary drops. // When a chain is dropped, it cannot become a consumer again - we assume that would be done by another consumer becoming running. // the provider chain. @@ -250,6 +245,8 @@ module ccv { pure val oldVotingPower = if (currentValidatorSet.keys().contains(validator)) currentValidatorSet.get(validator) else 0 if (amount == 0) { Err("Voting power cannot change by zero!") + } else if (oldVotingPower == 0) { + Err("Voting power cannot be changed for a validator that is not in the current validator set!") } else { pure val newVotingPower = oldVotingPower + amount pure val newValidatorSet = currentValidatorSet.put(validator, if(newVotingPower >= 0) newVotingPower else 0) @@ -284,8 +281,7 @@ module ccv { val result = stopConsumers( currentState.providerState.consumerStatus, Set(), - Set(sender), - Set() + Set(sender) ) val newConsumerStatus = result._1 @@ -334,8 +330,7 @@ module ccv { val result = stopConsumers( currentState.providerState.consumerStatus, Set(), - Set(receiver), - Set() + Set(receiver) ) val newConsumerStatus = result._1 @@ -399,12 +394,6 @@ module ccv { res._1 ) - // check whether the local client for the provider has expired on any consumer - val expiredConsumers = getRunningConsumers(providerStateAfterTimeAdvancement).filter( - consumer => - providerStateAfterTimeAdvancement.chainState.lastTimestamp > tmpState.consumerStates.get(consumer).chainState.runningTimestamp + TrustingPeriodPerChain.get(consumer) - ).exclude(timedOutConsumers) - // send vsc packets val providerStateAfterSending = if (currentProviderState.providerValidatorSetChangedInThisBlock and @@ -420,8 +409,7 @@ module ccv { val res = providerStateAfterSending.consumerStatus.StartStopConsumers( consumersToStart, consumersToStop, - timedOutConsumers, - expiredConsumers + timedOutConsumers ) val newConsumerStatus = res._1 val err = res._2 @@ -508,19 +496,10 @@ module ccv { } ) ) - // checks whether the local client for the consumer has expired on the provider - val clientExpired = - if (newChainState.lastTimestamp > currentState.providerState.chainState.runningTimestamp + TrustingPeriodPerChain.get(chain)) { - true - } else { - false - } val newConsumerState2: ConsumerState = newConsumerState.with( "maturationTimes", newMaturationTimes ).with( "outstandingPacketsToProvider", newOutstandingPackets - ).with( - "localClientExpired", clientExpired ) val newConsumerStates = currentState.consumerStates.set(chain, newConsumerState2) val newState: ProtocolState = currentState.with( @@ -543,8 +522,7 @@ module ccv { pure def stopConsumers( currentConsumerStatusMap: Chain -> str, consumersToStop: Set[Chain], - consumersToTimeout: Set[Chain], - expiredConsumers: Set[Chain]): (Chain -> str, str) = { + consumersToTimeout: Set[Chain]): (Chain -> str, str) = { val runningConsumers = currentConsumerStatusMap.keys().filter( chain => currentConsumerStatusMap.get(chain) == RUNNING ) @@ -556,8 +534,6 @@ module ccv { (chain) => if (consumersToTimeout.contains(chain)) { TIMEDOUT - } else if (expiredConsumers.contains(chain)) { - EXPIRED } else if (consumersToStop.contains(chain)) { STOPPED } else { @@ -597,8 +573,7 @@ module ccv { currentConsumerStatusMap: Chain -> str, consumersToStart: Set[Chain], consumersToStop: Set[Chain], - consumersToTimeout: Set[Chain], - expiredConsumers: Set[Chain] + consumersToTimeout: Set[Chain] ): (Chain -> str, str) = { // check if any consumer is both started and stopped if (consumersToStart.intersect(consumersToStop).size() > 0) { @@ -607,7 +582,7 @@ module ccv { val res1 = currentConsumerStatusMap.startConsumers(consumersToStart) val newConsumerStatus = res1._1 val err1 = res1._2 - val res2 = newConsumerStatus.stopConsumers(consumersToStop, consumersToTimeout, expiredConsumers) + val res2 = newConsumerStatus.stopConsumers(consumersToStop, consumersToTimeout) val err2 = res2._2 if (err1 != "") { (currentConsumerStatusMap, err1) diff --git a/tests/difference/core/quint_model/ccv_model.qnt b/tests/difference/core/quint_model/ccv_model.qnt index 4f44322da7..0c21dffc86 100644 --- a/tests/difference/core/quint_model/ccv_model.qnt +++ b/tests/difference/core/quint_model/ccv_model.qnt @@ -16,7 +16,13 @@ module ccv_model { pure val nodes = Set("node1", "node2", "node3", "node4", "node5", "node6", "node7", "node8", "node9", "node10") pure val InitialValidatorSet = nodes.mapBy(node => 100) - import ccv(VscTimeout = 5 * Week, CcvTimeout = ccvTimeouts, UnbondingPeriodPerChain = unbondingPeriods, ConsumerChains = consumerChains, TrustingPeriodPerChain = trustingPeriods).* from "./ccv" + import ccv( + VscTimeout = 5 * Week, + CcvTimeout = ccvTimeouts, + UnbondingPeriodPerChain = unbondingPeriods, + ConsumerChains = consumerChains, + TrustingPeriodPerChain = trustingPeriods + ).* from "./ccv" type Parameters = { VscTimeout: Time, @@ -616,31 +622,4 @@ module ccv_model { VotingPowerChange("node1", 50) // action needs to be there but does not matter what it is } ) - - // check that when the running timestamp of a chain and the last timestamp of a counterparty differ by more than the trusting period, - // the client is expired - run ExpiredClientTest = - init.then( - EndAndBeginBlockForProvider(1 * Second, Set("consumer1"), Set()) - ).then( - 8.reps( - i => all { - { - // if the trusting period has passed - (currentState.consumerStates.get("consumer1").chainState.runningTimestamp + TrustingPeriodPerChain.get("provider") < currentState.providerState.chainState.lastTimestamp or - currentState.providerState.chainState.runningTimestamp + TrustingPeriodPerChain.get("consumer1") < currentState.consumerStates.get("consumer1").chainState.lastTimestamp) - implies - (currentState.consumerStates.get("consumer1").localClientExpired or - currentState.providerState.consumerStatus.get("consumer1") == EXPIRED or - currentState.providerState.consumerStatus.get("consumer1") == TIMEDOUT) - }, - any { - // advance time on the provider - EndAndBeginBlockForProvider(1 * Week, Set(), Set()), - // advance time on the consumer - EndAndBeginBlockForConsumer("consumer1", 1 * Week), - } - } - ) - ) } \ No newline at end of file diff --git a/tests/difference/core/quint_model/ccv_test.qnt b/tests/difference/core/quint_model/ccv_test.qnt index 8152a6c29e..6a270d0803 100644 --- a/tests/difference/core/quint_model/ccv_test.qnt +++ b/tests/difference/core/quint_model/ccv_test.qnt @@ -196,7 +196,6 @@ module ccv_test { currentConsumerStatusMap, Set("chain1"), Set("chain2"), - Set(), Set() ) res._2 == "" and @@ -216,7 +215,6 @@ module ccv_test { currentConsumerStatusMap, Set("chain2"), Set("chain3"), - Set(), Set() ) res._2 == "cannot start a consumer that is stopped or already a consumer" @@ -233,7 +231,6 @@ module ccv_test { currentConsumerStatusMap, Set("chain1"), Set("chain3"), - Set(), Set() ) res._2 == "Cannot stop a consumer that is not running" @@ -250,7 +247,6 @@ module ccv_test { currentConsumerStatusMap, Set("chain1"), Set("chain1"), - Set(), Set() ) res._2 == "Cannot start and stop a consumer at the same time" From 31bd231e9466b63e20102d22c26f6978837979b2 Mon Sep 17 00:00:00 2001 From: Philip Offtermatt Date: Wed, 29 Nov 2023 09:59:24 +0100 Subject: [PATCH 047/111] Remove different time offsets for different chains --- .../core/quint_model/driver/core.go | 32 ++++- .../driver/generate_boundeddrift_traces.sh | 2 +- .../core/quint_model/driver/mbt_test.go | 112 +++++++----------- .../core/quint_model/driver/setup.go | 9 +- .../core/quint_model/driver/stats.go | 19 +++ 5 files changed, 93 insertions(+), 81 deletions(-) create mode 100644 tests/difference/core/quint_model/driver/stats.go diff --git a/tests/difference/core/quint_model/driver/core.go b/tests/difference/core/quint_model/driver/core.go index fa75970ed1..0688fb4ad1 100644 --- a/tests/difference/core/quint_model/driver/core.go +++ b/tests/difference/core/quint_model/driver/core.go @@ -27,6 +27,8 @@ import ( abcitypes "github.com/cometbft/cometbft/abci/types" cmttypes "github.com/cometbft/cometbft/types" + + channeltypes "github.com/cosmos/ibc-go/v7/modules/core/04-channel/types" ) // Define a new type for ChainIds to be more explicit @@ -52,6 +54,8 @@ type Driver struct { // keep around validators for easy access validators []*cmttypes.Validator valNames []string + + DriverStats *Stats } // ctx returns the sdk.Context for the chain @@ -172,11 +176,14 @@ func (s *Driver) delegation(i int64) int64 { } // validatorStatus returns the validator status for validator with id (ix) i -// on the provider chain -func (s *Driver) validatorStatus(i int64) stakingtypes.BondStatus { +// on the provider chain, and also whether the validator was found. +// If the validator was not found, the status is returned as Unbonded. +func (s *Driver) validatorStatus(i int64) (stakingtypes.BondStatus, bool) { v, found := s.providerStakingKeeper().GetValidator(s.ctx(P), s.validator(i)) - require.True(s.t, found, "GetValidator(%v) -> !found", s.validator(i)) - return v.GetStatus() + if !found { + return stakingtypes.Unbonded, false + } + return v.GetStatus(), true } // providerTokens returns the number of tokens that the validator with @@ -417,6 +424,10 @@ func (s *Driver) endAndBeginBlock(chain ChainId, timeAdvancement time.Duration) header, packets := simibc.EndBlock(testChain, func() {}) + s.DriverStats.numSentPackets += len(packets) + s.DriverStats.numBlocks += 1 + s.DriverStats.totalBlockTimePassedPerTrace += timeAdvancement + // for each packet, find the path it should be sent on for _, p := range packets { found := false @@ -443,7 +454,18 @@ func (s *Driver) endAndBeginBlock(chain ChainId, timeAdvancement time.Duration) } func (s *Driver) runningConsumers() []providertypes.Chain { - return s.providerKeeper().GetAllConsumerChains(s.providerCtx()) + // consumers that are still consumers on the provider + consumersOnProvider := s.providerKeeper().GetAllConsumerChains(s.providerCtx()) + + consumersWithIntactChannel := make([]providertypes.Chain, 0) + for _, consumer := range consumersOnProvider { + if s.path(ChainId(consumer.ChainId)).Path.EndpointA.GetChannel().State == channeltypes.CLOSED || + s.path(ChainId(consumer.ChainId)).Path.EndpointB.GetChannel().State == channeltypes.CLOSED { + continue + } + consumersWithIntactChannel = append(consumersWithIntactChannel, consumer) + } + return consumersWithIntactChannel } func (s *Driver) setTime(chain ChainId, newTime time.Time) { diff --git a/tests/difference/core/quint_model/driver/generate_boundeddrift_traces.sh b/tests/difference/core/quint_model/driver/generate_boundeddrift_traces.sh index 4633a253b0..e61ea4c922 100755 --- a/tests/difference/core/quint_model/driver/generate_boundeddrift_traces.sh +++ b/tests/difference/core/quint_model/driver/generate_boundeddrift_traces.sh @@ -1 +1 @@ -go run ./... -modelPath=../ccv_boundeddrift.qnt -step stepBoundedDrift -traceFolder traces -numTraces 100 \ No newline at end of file +go run ./... -modelPath=../ccv_boundeddrift.qnt -step stepBoundedDrift --inv CanTimeoutConsumer -traceFolder traces -numTraces 100 \ No newline at end of file diff --git a/tests/difference/core/quint_model/driver/mbt_test.go b/tests/difference/core/quint_model/driver/mbt_test.go index 978c7026d6..7f996a9532 100644 --- a/tests/difference/core/quint_model/driver/mbt_test.go +++ b/tests/difference/core/quint_model/driver/mbt_test.go @@ -22,15 +22,6 @@ import ( const verbose = true // keep some interesting statistics -type Stats struct { - highestObservedValPower int64 - longestObservedPacketQueue int - - numStartedChains int - numStops int - numTimeouts int -} - var stats = Stats{} func TestMBT(t *testing.T) { @@ -53,9 +44,13 @@ func TestMBT(t *testing.T) { // print some stats t.Logf("Highest observed voting power: %v", stats.highestObservedValPower) - t.Logf("Longest observed packet queue: %v", stats.longestObservedPacketQueue) t.Logf("Number of started chains: %v", stats.numStartedChains) t.Logf("Number of stopped chains: %v", stats.numStops) + t.Logf("Number of timeouts: %v", stats.numTimeouts) + t.Logf("Number of sent packets: %v", stats.numSentPackets) + t.Logf("Number of blocks: %v", stats.numBlocks) + t.Logf("Number of transactions: %v", stats.numTxs) + t.Logf("Average summed block time delta passed per trace: %v", stats.totalBlockTimePassedPerTrace/time.Duration(len(dirEntries))) } func RunItfTrace(t *testing.T, path string) { @@ -127,7 +122,7 @@ func RunItfTrace(t *testing.T, path string) { valNames[i] = val.Value.(string) } - // dummyValSet is a valSet with the right validators, but not yet right powers + // initialValSet has the right vals, but not yet the right powers valSet, addressMap, signers := CreateValSet(t, initialValSet) // get a slice of validators in the right order @@ -137,14 +132,14 @@ func RunItfTrace(t *testing.T, path string) { } driver := newDriver(t, nodes, valNames) + driver.DriverStats = &stats driver.setupProvider(modelParams, valSet, signers, nodes, valNames) // remember the time offsets to be able to compare times to the model // this is necessary because the system needs to do many steps to initialize the chains, // which is abstracted away in the model - timeOffsets := make(map[ChainId]time.Time, len(chains)) - timeOffsets[Provider] = driver.runningTime(Provider) + timeOffset := driver.runningTime("provider") t.Log("Started chains") @@ -179,6 +174,8 @@ func RunItfTrace(t *testing.T, path string) { // undelegate from the validator driver.undelegate(int64(valIndex), -changeAmount) } + + stats.numTxs++ case "EndAndBeginBlockForProvider": timeAdvancement := lastAction["timeAdvancement"].Value.(int64) consumersToStart := lastAction["consumersToStart"].Value.(itf.ListExprType) @@ -217,31 +214,12 @@ func RunItfTrace(t *testing.T, path string) { ) } - // stop consumers - for _, consumer := range consumersToStop { - consumerChain := ChainId(consumer.Value.(string)) - driver.stopConsumer(consumerChain) - - // remove the consumer from timestamps map and time offsets - delete(timeOffsets, consumerChain) - delete(lastTimestamps, consumerChain) - } - // reset the times for the consumers that were not stopped or started just now // their times were messed up by the coordinator for consumer, timestamp := range lastTimestamps { driver.setTime(consumer, timestamp) } - // set the timeOffsets for the newly started chains - for _, consumer := range consumersToStart { - consumerChain := ChainId(consumer.Value.(string)) - // the time offset is the time of the provider, - // because the model sets the timestamp on the consumer to the provider time - // when the consumer is started - timeOffsets[consumerChain] = timeOffsets["provider"] - } - // for all connected consumers, update the clients... // unless it was the last consumer to be started, in which case it already has the header for _, consumer := range driver.runningConsumers() { @@ -251,12 +229,7 @@ func RunItfTrace(t *testing.T, path string) { consumerChainId := string(consumer.ChainId) driver.path(ChainId(consumerChainId)).AddClientHeader(Provider, driver.providerHeader()) - var err error - if ConsumerStatus(currentModelState, consumerChainId) == "expired" { - err = driver.path(ChainId(consumerChainId)).UpdateClient(consumerChainId, true) - } else { - err = driver.path(ChainId(consumerChainId)).UpdateClient(consumerChainId, false) - } + err := driver.path(ChainId(consumerChainId)).UpdateClient(consumerChainId, false) require.True(t, err == nil, "Error updating client from %v on provider: %v", consumerChainId, err) } @@ -276,12 +249,7 @@ func RunItfTrace(t *testing.T, path string) { // update the client on the provider consumerHeader := driver.chain(ChainId(consumerChain)).LastHeader driver.path(ChainId(consumerChain)).AddClientHeader(consumerChain, consumerHeader) - var err error - // if LocalClientExpired(currentModelState, consumerChain) { - // err = driver.path(ChainId(consumerChain)).UpdateClient(Provider, true) - // } else { - err = driver.path(ChainId(consumerChain)).UpdateClient(Provider, false) - // } + err := driver.path(ChainId(consumerChain)).UpdateClient(Provider, false) require.True(t, err == nil, "Error updating client from %v on provider: %v", consumerChain, err) case "DeliverVscPacket": @@ -335,13 +303,13 @@ func RunItfTrace(t *testing.T, path string) { // check times - sanity check that the block times match the ones from the model t.Log("Comparing timestamps") - CompareTimes(t, driver, actualRunningConsumers, currentModelState, timeOffsets) + CompareTimes(t, driver, actualRunningConsumers, currentModelState, timeOffset) t.Log("Timestamps match") // check sent packets: we check that the package queues in the model and the system have the same length. t.Log("Comparing packet queues") for _, consumer := range actualRunningConsumers { - ComparePacketQueues(t, driver, currentModelState, consumer) + ComparePacketQueues(t, driver, currentModelState, consumer, timeOffset) } t.Log("Packet queues match") @@ -401,21 +369,36 @@ func ComparePacketQueues( driver *Driver, currentModelState map[string]itf.Expr, consumer string, + timeOffset time.Time, ) { - ComparePacketQueue(t, driver, currentModelState, Provider, consumer) - ComparePacketQueue(t, driver, currentModelState, consumer, Provider) + ComparePacketQueue(t, driver, currentModelState, Provider, consumer, timeOffset) + ComparePacketQueue(t, driver, currentModelState, consumer, Provider, timeOffset) } -func ComparePacketQueue(t *testing.T, driver *Driver, currentModelState map[string]itf.Expr, sender string, receiver string) { +func ComparePacketQueue( + t *testing.T, + driver *Driver, + currentModelState map[string]itf.Expr, + sender string, + receiver string, + timeOffset time.Time, +) { modelSenderQueue := PacketQueue(currentModelState, sender, receiver) actualSenderQueue := driver.packetQueue(ChainId(sender), ChainId(receiver)) require.Equal(t, len(modelSenderQueue), len(actualSenderQueue), - "Packet queues do not match for sender %v, receiver %v", + "Packet queue sizes do not match for sender %v, receiver %v", sender, receiver) + + // for i := range modelSenderQueue { + // actualPacket := actualSenderQueue[i] + // modelPacket := modelSenderQueue[i] + + // actualPacket.Packet.TimeoutTimestamp - timeOffset + // } } // CompareTimes compares the block times in the model to the block times in the system. @@ -428,27 +411,23 @@ func CompareTimes( driver *Driver, consumers []string, currentModelState map[string]itf.Expr, - timeOffsets map[ChainId]time.Time, + timeOffset time.Time, ) { - providerOffset := timeOffsets["provider"] - providerRunningTimestamp := RunningTime(currentModelState, "provider") actualRunningProviderTime := driver.runningTime("provider") require.Equal(t, providerRunningTimestamp, - actualRunningProviderTime.Unix()-providerOffset.Unix(), + actualRunningProviderTime.Unix()-timeOffset.Unix(), "Running times do not match for provider") for _, chain := range consumers { - offset := timeOffsets[ChainId(chain)] - modelRunningTimestamp := RunningTime(currentModelState, chain) actualRunningChainTime := driver.runningTime(ChainId(chain)) require.Equal(t, modelRunningTimestamp, - actualRunningChainTime.Unix()-offset.Unix(), + actualRunningChainTime.Unix()-timeOffset.Unix(), "Running times do not match for chain %v", chain) } @@ -490,16 +469,15 @@ func (s *Stats) EnterStats(driver *Driver) { } } - // longest observed packet queue + // max number of in-flight packets + inFlightPackets := 0 for _, consumer := range driver.runningConsumers() { - queueToConsumer := driver.packetQueue(Provider, ChainId(consumer.ChainId)) - if len(queueToConsumer) > s.longestObservedPacketQueue { - s.longestObservedPacketQueue = len(queueToConsumer) - } - - queueFromConsumer := driver.packetQueue(ChainId(consumer.ChainId), Provider) - if len(queueFromConsumer) > s.longestObservedPacketQueue { - s.longestObservedPacketQueue = len(queueFromConsumer) - } + inFlightPackets += len(driver.packetQueue(Provider, ChainId(consumer.ChainId))) + inFlightPackets += len(driver.packetQueue(ChainId(consumer.ChainId), Provider)) + } + if inFlightPackets > s.maxNumInFlightPackets { + s.maxNumInFlightPackets = inFlightPackets } + + // number of sent packets } diff --git a/tests/difference/core/quint_model/driver/setup.go b/tests/difference/core/quint_model/driver/setup.go index 9a9263d376..fa84d70210 100644 --- a/tests/difference/core/quint_model/driver/setup.go +++ b/tests/difference/core/quint_model/driver/setup.go @@ -160,20 +160,13 @@ func getAppBytesAndSenders( log.Panicf("error getting pubkeyAny for val %v", val) } - var valStatus stakingtypes.BondStatus - if tokens.Int64() > 0 { - valStatus = stakingtypes.Bonded - } else { - valStatus = stakingtypes.Unbonded - } - delShares := sdk.NewDec(tokens.Int64()) // as many shares as tokens validator := stakingtypes.Validator{ OperatorAddress: sdk.ValAddress(val.Address).String(), ConsensusPubkey: pkAny, Jailed: false, - Status: valStatus, + Status: stakingtypes.Bonded, Tokens: tokens, DelegatorShares: delShares, Description: stakingtypes.Description{ diff --git a/tests/difference/core/quint_model/driver/stats.go b/tests/difference/core/quint_model/driver/stats.go new file mode 100644 index 0000000000..0d397571be --- /dev/null +++ b/tests/difference/core/quint_model/driver/stats.go @@ -0,0 +1,19 @@ +package main + +import "time" + +type Stats struct { + highestObservedValPower int64 + + maxNumInFlightPackets int + + numStartedChains int + numStops int + numTimeouts int + + numSentPackets int + numBlocks int + numTxs int + + totalBlockTimePassedPerTrace time.Duration +} From 76dcc15d79def3ac0bfd7158c4ccfda18de79bc2 Mon Sep 17 00:00:00 2001 From: Philip Offtermatt Date: Wed, 29 Nov 2023 09:59:53 +0100 Subject: [PATCH 048/111] Fix timestamp --- tests/difference/core/quint_model/ccv.qnt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/difference/core/quint_model/ccv.qnt b/tests/difference/core/quint_model/ccv.qnt index 879e2387a0..d0a3a525ef 100644 --- a/tests/difference/core/quint_model/ccv.qnt +++ b/tests/difference/core/quint_model/ccv.qnt @@ -796,7 +796,7 @@ module ccv { val sentVscPacketsToConsumer = providerState.sentVscPacketsToConsumer.get(consumer) if(sentVscPacketsToConsumer.length() > 0) { val oldestSentVscPacket = sentVscPacketsToConsumer.head() // if length is 0, this is undefined, but we check for this before we use it - if(oldestSentVscPacket.sendingTime + VscTimeout < providerState.chainState.runningTimestamp) { + if(oldestSentVscPacket.sendingTime + VscTimeout < providerState.chainState.lastTimestamp) { (true, "") } else { // no timeout yet, it has not been VscTimeout since that packet was sent From 3286e097e9abe4d0546e2225c0ed9e39943aac10 Mon Sep 17 00:00:00 2001 From: Philip Offtermatt Date: Wed, 29 Nov 2023 10:00:30 +0100 Subject: [PATCH 049/111] Fix error where we would choose nondet from empty sets --- .../core/quint_model/ccv_boundeddrift.qnt | 34 ++++++++++++------- 1 file changed, 22 insertions(+), 12 deletions(-) diff --git a/tests/difference/core/quint_model/ccv_boundeddrift.qnt b/tests/difference/core/quint_model/ccv_boundeddrift.qnt index ca1298cefe..ba258ea387 100644 --- a/tests/difference/core/quint_model/ccv_boundeddrift.qnt +++ b/tests/difference/core/quint_model/ccv_boundeddrift.qnt @@ -55,20 +55,30 @@ module ccv_boundeddrift { // advance a block for a consumer all { - runningConsumers.size() > 0, // ensure there is a running consumer, otherwise this action does not make sense - nondet chain = oneOf(runningConsumers) - val maxTimeAdvancement = findMaxTimeAdvancement(GetChainState(chain), GetOtherChainStates(chain), maxDrift) - nondet timeAdvancement = oneOf(timeAdvancements.filter(t => t <= maxTimeAdvancement)) - EndAndBeginBlockForConsumer(chain, timeAdvancement), + runningConsumers.size() > 0, // ensure there is a running consumer, otherwise this action does not make sense + nondet chain = runningConsumers.oneOf() + val maxAdv = findMaxTimeAdvancement(GetChainState(chain), GetOtherChainStates(chain), maxDrift) + val possibleAdvancements = timeAdvancements.filter(t => t <= maxAdv) + all { + possibleAdvancements.size() > 0, // ensure there is a possible advancement, otherwise this action does not make sense + nondet timeAdvancement = possibleAdvancements.oneOf() + EndAndBeginBlockForConsumer(chain, timeAdvancement), + } }, - + // advance a block for the provider - val consumerStatus = currentState.providerState.consumerStatus - nondet consumersToStart = oneOf(nonConsumers.powerset()) - nondet consumersToStop = oneOf(runningConsumers.powerset()) - val maxTimeAdvancement = findMaxTimeAdvancement(GetChainState(Ccvt::PROVIDER_CHAIN), GetOtherChainStates(Ccvt::PROVIDER_CHAIN), maxDrift) - nondet timeAdvancement = oneOf(timeAdvancements.filter(t => t <= maxTimeAdvancement)) - EndAndBeginBlockForProvider(timeAdvancement, consumersToStart, consumersToStop), + val maxAdv = findMaxTimeAdvancement(GetChainState(Ccvt::PROVIDER_CHAIN), GetOtherChainStates(Ccvt::PROVIDER_CHAIN), maxDrift) + val possibleAdvancements = timeAdvancements.filter(t => t <= maxAdv) + all { + possibleAdvancements.size() > 0, // ensure there is a possible advancement, otherwise this action does not make sense + // advance a block for the provider + val consumerStatus = currentState.providerState.consumerStatus + nondet consumersToStart = oneOf(nonConsumers.powerset()) + // nondet consumersToStop = oneOf(runningConsumers.powerset()) + nondet consumersToStop = Set() // never stop consumers + nondet timeAdvancement = oneOf(possibleAdvancements) + EndAndBeginBlockForProvider(timeAdvancement, consumersToStart, consumersToStop), + } } // INVARIANT From 1433ee4221d4be4f69bcf441802a0976bcc88c54 Mon Sep 17 00:00:00 2001 From: Philip Offtermatt Date: Wed, 29 Nov 2023 10:35:10 +0100 Subject: [PATCH 050/111] Add timeout timestamps to packets --- tests/difference/core/quint_model/ccv.qnt | 23 ++++++++++++------- .../difference/core/quint_model/ccv_model.qnt | 5 ++++ 2 files changed, 20 insertions(+), 8 deletions(-) diff --git a/tests/difference/core/quint_model/ccv.qnt b/tests/difference/core/quint_model/ccv.qnt index d0a3a525ef..d1727bb515 100644 --- a/tests/difference/core/quint_model/ccv.qnt +++ b/tests/difference/core/quint_model/ccv.qnt @@ -17,16 +17,21 @@ module ccv_types { id: VscId, // the new validator set. in the implementation, this would be a list of validator updates validatorSet: ValidatorSet, - // the time at which the packet was sent. used to check whether packets have timed out. - sendingTime: Time + // the time at which the packet was sent. + sendingTime: Time, + // the time (on the receiver) at which the packet will time out + timeoutTime: Time + } type VscMaturedPacket = { // the id of the VscPacket that matured id: VscId, - // the time at which the packet was sent. used to check whether packets have timed out. - sendingTime: Time + // the time at which the packet was sent. + sendingTime: Time, + // the time (on the receiver) at which the packet will time out + timeoutTime: Time } @@ -276,7 +281,7 @@ module ccv { (Err("No outstanding packets to deliver"), false) } else { val packet = currentState.consumerStates.get(sender).outstandingPacketsToProvider.head() - if(packet.sendingTime + CcvTimeout.get(sender) < currentState.providerState.chainState.runningTimestamp) { + if(packet.timeoutTime <= currentState.providerState.chainState.runningTimestamp) { // drop consumer val result = stopConsumers( currentState.providerState.consumerStatus, @@ -325,7 +330,7 @@ module ccv { } else { val packet = currentState.providerState.outstandingPacketsToConsumer.get(receiver).head() // check if the consumer timed out - if (packet.sendingTime + CcvTimeout.get(PROVIDER_CHAIN) < currentState.consumerStates.get(receiver).chainState.runningTimestamp) { + if (packet.timeoutTime <= currentState.consumerStates.get(receiver).chainState.runningTimestamp) { // drop consumer val result = stopConsumers( currentState.providerState.consumerStatus, @@ -492,7 +497,8 @@ module ccv { maturedPackets.transform( packet => { id: packet.id, - sendingTime: newChainState.runningTimestamp + sendingTime: newChainState.runningTimestamp, + timeoutTime: newChainState.runningTimestamp + CcvTimeout.get(chain) } ) ) @@ -632,7 +638,8 @@ module ccv { List({ id: providerState.runningVscId, validatorSet: providerState.chainState.currentValidatorSet, - sendingTime: providerState.chainState.runningTimestamp + sendingTime: providerState.chainState.runningTimestamp, + timeoutTime: providerState.chainState.runningTimestamp + CcvTimeout.get(PROVIDER_CHAIN) }) } else { List() diff --git a/tests/difference/core/quint_model/ccv_model.qnt b/tests/difference/core/quint_model/ccv_model.qnt index 0c21dffc86..4889fd5061 100644 --- a/tests/difference/core/quint_model/ccv_model.qnt +++ b/tests/difference/core/quint_model/ccv_model.qnt @@ -230,6 +230,7 @@ module ccv_model { id: 0, validatorSet: Map(), sendingTime: 9999999999999 * Second, + timeoutTime: 9999999999999 * Second, } packets.fold( latestPossiblePacket, @@ -241,6 +242,7 @@ module ccv_model { id: 0, validatorSet: Map(), sendingTime: -9999999999 * Second, + timeoutTime: -9999999999 * Second, } packets.fold( earliestPossiblePacket, @@ -257,18 +259,21 @@ module ccv_model { id: 1, validatorSet: Map(), sendingTime: 1 * Second, + timeoutTime: 1 * Second, } val packet2 = { id: 2, validatorSet: Map(), sendingTime: 2 * Second, + timeoutTime: 2 * Second, } val packet3 = { id: 3, validatorSet: Map(), sendingTime: 3 * Second, + timeoutTime: 3 * Second, } all { assert(earliest(Set(packet1, packet2, packet3)) == packet1), From 0f8228dd1e0c809cfe08b29f607b7726c3989831 Mon Sep 17 00:00:00 2001 From: Philip Offtermatt Date: Wed, 29 Nov 2023 10:50:51 +0100 Subject: [PATCH 051/111] Adapt tests to the empty-validator-power behaviour --- .../difference/core/quint_model/ccv_test.qnt | 57 ++++++++++++++----- 1 file changed, 43 insertions(+), 14 deletions(-) diff --git a/tests/difference/core/quint_model/ccv_test.qnt b/tests/difference/core/quint_model/ccv_test.qnt index 6a270d0803..0101460219 100644 --- a/tests/difference/core/quint_model/ccv_test.qnt +++ b/tests/difference/core/quint_model/ccv_test.qnt @@ -14,11 +14,22 @@ module ccv_test { import ccv(VscTimeout = 5 * Week, CcvTimeout = ccvTimeouts, UnbondingPeriodPerChain = unbondingPeriods, ConsumerChains = consumerChains, TrustingPeriodPerChain=trustingPeriods).* from "./ccv" + val votingPowerTestInitState = + GetEmptyProtocolState.with( + "providerState", GetEmptyProtocolState.providerState.with( + "chainState", GetEmptyProtocolState.providerState.chainState.with( + "currentValidatorSet", GetEmptyProtocolState.providerState.chainState.currentValidatorSet.put( + "validator", 5 + ) + ) + ) + ) + // changing voting power by zero gives an error run VotingPowerZeroChangeTest = { votingPowerChange( - GetEmptyProtocolState, + votingPowerTestInitState, "validator", 0 ).hasError() @@ -27,25 +38,20 @@ module ccv_test { run VotingPowerOkTest = { val result = votingPowerChange( - GetEmptyProtocolState, + votingPowerTestInitState, "validator", 5 ) not(result.hasError()) and result.newState.providerState.chainState.currentValidatorSet.keys().contains("validator") and - result.newState.providerState.chainState.currentValidatorSet.get("validator") == 5 + result.newState.providerState.chainState.currentValidatorSet.get("validator") == 10 } // voting power of 0 is allowed and applied as usual run VotingPowerZeroTest = { - val tmpResult = votingPowerChange( - GetEmptyProtocolState, - "validator", - 5 - ) val finalResult = votingPowerChange( - tmpResult.newState, + votingPowerTestInitState, "validator", -5 ) @@ -57,7 +63,7 @@ module ccv_test { { // change voting power val tmpResult = votingPowerChange( - GetEmptyProtocolState, + votingPowerTestInitState, "validator", 5 ) @@ -77,7 +83,7 @@ module ccv_test { run VotingPowerChangeDoesNotChangeHistoryTest = { val result = votingPowerChange( - GetEmptyProtocolState, + votingPowerTestInitState, "validator", 2 ) @@ -85,6 +91,26 @@ module ccv_test { result.newState.providerState.chainState.votingPowerHistory == List() } + // Changing the voting power to positive from zero is not possible, + // since the validator will be removed from the current validator set + run VotingPowerChangeFromZeroTest = + { + val result = votingPowerChange( + votingPowerTestInitState, + "validator", + -5 + ) + val result2 = votingPowerChange( + result.newState, + "validator", + 5 + ) + not(result.hasError()) and + result.newState.providerState.chainState.currentValidatorSet.get("validator") == 0 and + result2.hasError() + + } + // Defines a test state to test the deliverPacketToProvider function against. pure val _DeliverPacketToProvider_TestState = val currentState = GetEmptyProtocolState @@ -100,7 +126,8 @@ module ccv_test { "outstandingPacketsToConsumer", providerState2.outstandingPacketsToConsumer.put(sender, List({ id: 0, validatorSet: Map(), - sendingTime: 0 + sendingTime: 0, + timeoutTime: CcvTimeout.get(sender) })) ) currentState.with( @@ -115,7 +142,8 @@ module ccv_test { "sender", _DeliverPacketToProvider_TestState.consumerStates.get("sender").with( "outstandingPacketsToProvider", List({ id: 0, - sendingTime: 0 + sendingTime: 0, + timeoutTime: CcvTimeout.get("sender") }) ) ) @@ -126,7 +154,8 @@ module ccv_test { "sender", List({ id: 0, validatorSet: _DeliverPacketToProvider_TestState.providerState.chainState.currentValidatorSet, - sendingTime: 0 + sendingTime: 0, + timeoutTime: CcvTimeout.get("sender") }) ) ) From 688790681f692992496452686f330b34dc0db7ed Mon Sep 17 00:00:00 2001 From: Philip Offtermatt Date: Wed, 29 Nov 2023 11:05:03 +0100 Subject: [PATCH 052/111] Adjust timeout test --- tests/difference/core/quint_model/ccv_model.qnt | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/tests/difference/core/quint_model/ccv_model.qnt b/tests/difference/core/quint_model/ccv_model.qnt index 4889fd5061..444ecc0f3e 100644 --- a/tests/difference/core/quint_model/ccv_model.qnt +++ b/tests/difference/core/quint_model/ccv_model.qnt @@ -618,6 +618,10 @@ module ccv_model { // advance time on provider by VscTimeout + 1 Second EndAndBeginBlockForProvider(VscTimeout + 1 * Second, Set(), Set()) ) + .then( + // end a block with the advanced time + EndAndBeginBlockForProvider(1 * Second, Set(), Set()) + ) .then( all { // the consumer chains should have timed out From ab1430a0632553ee76b86496fd4606fe8db13204 Mon Sep 17 00:00:00 2001 From: Philip Offtermatt Date: Wed, 29 Nov 2023 11:10:51 +0100 Subject: [PATCH 053/111] Add logic for comparing timestamps of packets --- .../core/quint_model/driver/mbt_test.go | 19 ++++++++++++++----- .../core/quint_model/driver/model_viewer.go | 8 +++++++- 2 files changed, 21 insertions(+), 6 deletions(-) diff --git a/tests/difference/core/quint_model/driver/mbt_test.go b/tests/difference/core/quint_model/driver/mbt_test.go index 7f996a9532..ec61c51462 100644 --- a/tests/difference/core/quint_model/driver/mbt_test.go +++ b/tests/difference/core/quint_model/driver/mbt_test.go @@ -393,12 +393,21 @@ func ComparePacketQueue( sender, receiver) - // for i := range modelSenderQueue { - // actualPacket := actualSenderQueue[i] - // modelPacket := modelSenderQueue[i] + for i := range modelSenderQueue { + actualPacket := actualSenderQueue[i] + modelPacket := modelSenderQueue[i].Value.(itf.MapExprType) - // actualPacket.Packet.TimeoutTimestamp - timeOffset - // } + actualTimeout := int64(actualPacket.Packet.TimeoutTimestamp) - timeOffset.Unix() + modelTimeout := GetTimeoutForPacket(modelPacket) + + require.Equal(t, + modelTimeout, + actualTimeout, + "Timeouts do not match for packet %v, sender %v, receiver %v", + actualPacket, + sender, + receiver) + } } // CompareTimes compares the block times in the model to the block times in the system. diff --git a/tests/difference/core/quint_model/driver/model_viewer.go b/tests/difference/core/quint_model/driver/model_viewer.go index 0b0c9d014d..f274fb35e3 100644 --- a/tests/difference/core/quint_model/driver/model_viewer.go +++ b/tests/difference/core/quint_model/driver/model_viewer.go @@ -1,6 +1,8 @@ package main -import "github.com/informalsystems/itf-go/itf" +import ( + "github.com/informalsystems/itf-go/itf" +) // This file contains logic to process // and access parts of the current state of the Quint trace. @@ -81,3 +83,7 @@ func ConsumerStatus(curStateExpr itf.MapExprType, consumer string) string { func LocalClientExpired(curStateExpr itf.MapExprType, consumer string) bool { return ConsumerState(curStateExpr, consumer)["localClientExpired"].Value.(bool) } + +func GetTimeoutForPacket(packetExpr itf.MapExprType) int64 { + return packetExpr["timeoutTime"].Value.(int64) +} From dbbe2b0c3206510aaef46fe949360aec31bbb7e2 Mon Sep 17 00:00:00 2001 From: Philip Offtermatt Date: Wed, 29 Nov 2023 15:23:57 +0100 Subject: [PATCH 054/111] Fix: VSCTimeout is based on EndBlocj --- tests/difference/core/quint_model/ccv.qnt | 19 +++++++++++-------- 1 file changed, 11 insertions(+), 8 deletions(-) diff --git a/tests/difference/core/quint_model/ccv.qnt b/tests/difference/core/quint_model/ccv.qnt index d1727bb515..a3b33e78ff 100644 --- a/tests/difference/core/quint_model/ccv.qnt +++ b/tests/difference/core/quint_model/ccv.qnt @@ -393,7 +393,8 @@ module ccv { ) // check for Vsc timeouts - val timedOutConsumers = getRunningConsumers(providerStateAfterTimeAdvancement).filter( + // needs to be done with the old provider state, since this happens during EndBlock + val timedOutConsumers = getRunningConsumers(currentProviderState).filter( consumer => val res = TimeoutDueToVscTimeout(tmpState, consumer) res._1 @@ -404,7 +405,8 @@ module ccv { if (currentProviderState.providerValidatorSetChangedInThisBlock and // important: check this on the provider state after the consumer advancement, not on the current state. getRunningConsumers(providerStateAfterTimeAdvancement).size() > 0) { - providerStateAfterTimeAdvancement.sendVscPackets() + // need to use the old timestamp because this happens during EndBlock + providerStateAfterTimeAdvancement.sendVscPackets(currentProviderState.chainState.runningTimestamp) } else { providerStateAfterTimeAdvancement } @@ -497,8 +499,9 @@ module ccv { maturedPackets.transform( packet => { id: packet.id, - sendingTime: newChainState.runningTimestamp, - timeoutTime: newChainState.runningTimestamp + CcvTimeout.get(chain) + // it is important to use the oldChainState here, since this happens during EndBlock + sendingTime: oldChainState.runningTimestamp, + timeoutTime: oldChainState.runningTimestamp + CcvTimeout.get(chain) } ) ) @@ -624,12 +627,12 @@ module ccv { } // returns the providerState with the following modifications: - // * sends VscPackets to all running consumers + // * sends VscPackets to all running consumers, using the provided timestamp as sending time // * increments the runningVscId // This should only be called when the provider chain is ending a block, // and only when the running validator set is considered to have changed // and there is a consumer to send a packet to. - pure def sendVscPackets(providerState: ProviderState): ProviderState = { + pure def sendVscPackets(providerState: ProviderState, sendingTimestamp: Time): ProviderState = { val newSentPacketsPerConsumer = ConsumerChains.mapBy( (consumer) => // if validator set changed and the consumer is running, send a packet @@ -638,8 +641,8 @@ module ccv { List({ id: providerState.runningVscId, validatorSet: providerState.chainState.currentValidatorSet, - sendingTime: providerState.chainState.runningTimestamp, - timeoutTime: providerState.chainState.runningTimestamp + CcvTimeout.get(PROVIDER_CHAIN) + sendingTime: sendingTimestamp, + timeoutTime: sendingTimestamp + CcvTimeout.get(PROVIDER_CHAIN) }) } else { List() From 680f3c4c2c992dd227c0217c75d2f0d29bbc106f Mon Sep 17 00:00:00 2001 From: Philip Offtermatt Date: Wed, 29 Nov 2023 15:24:21 +0100 Subject: [PATCH 055/111] Add logic for timed out vsc packets --- .../core/quint_model/driver/core.go | 16 ++----- .../driver/generate_boundeddrift_traces.sh | 2 +- .../core/quint_model/driver/mbt_test.go | 48 +++++++++++++++++-- .../core/quint_model/driver/setup.go | 24 ++++++++-- .../core/quint_model/driver/trace.json | 1 - testutil/simibc/relay_util.go | 4 +- testutil/simibc/relayed_path.go | 13 +++-- 7 files changed, 79 insertions(+), 29 deletions(-) delete mode 100644 tests/difference/core/quint_model/driver/trace.json diff --git a/tests/difference/core/quint_model/driver/core.go b/tests/difference/core/quint_model/driver/core.go index 0688fb4ad1..6fcfc33c63 100644 --- a/tests/difference/core/quint_model/driver/core.go +++ b/tests/difference/core/quint_model/driver/core.go @@ -260,14 +260,6 @@ func (s *Driver) updateClient(chain ChainId) error { return s.path(chain).UpdateClient(string(chain), false) } -// deliver numPackets packets from the network to chain -func (s *Driver) deliver(chain ChainId, numPackets int) { - // Deliver any outstanding acks - s.path(chain).DeliverAcks(string(chain), 999999) - // Consume deliverable packets from the network - s.path(chain).DeliverPackets(string(chain), numPackets) -} - // packetQueue returns the queued packet sfrom sender to receiver, // where either sender or receiver must be the provider. func (s *Driver) packetQueue(sender ChainId, receiver ChainId) []simibc.Packet { @@ -485,15 +477,15 @@ func (s *Driver) setAllTimes(newTimes map[ChainId]time.Time) { // DeliverPacketToConsumer delivers a packet from the provider to the given consumer recipient. // It updates the client before delivering the packet. // Since the channel is ordered, the packet that is delivered is the first packet in the outbox. -func (s *Driver) DeliverPacketToConsumer(recipient ChainId) { - s.path(recipient).DeliverPackets(string(recipient), 1) +func (s *Driver) DeliverPacketToConsumer(recipient ChainId, expectError bool) { + s.path(recipient).DeliverPackets(string(recipient), 1, expectError) } // DeliverPacketFromConsumer delivers a packet from the given consumer sender to the provider. // It updates the client before delivering the packet. // Since the channel is ordered, the packet that is delivered is the first packet in the outbox. -func (s *Driver) DeliverPacketFromConsumer(sender ChainId) { - s.path(sender).DeliverPackets(P, 1) // deliver to the provider +func (s *Driver) DeliverPacketFromConsumer(sender ChainId, expectError bool) { + s.path(sender).DeliverPackets(P, 1, expectError) // deliver to the provider } // DeliverAcks delivers, for each path, diff --git a/tests/difference/core/quint_model/driver/generate_boundeddrift_traces.sh b/tests/difference/core/quint_model/driver/generate_boundeddrift_traces.sh index e61ea4c922..8d071d196b 100755 --- a/tests/difference/core/quint_model/driver/generate_boundeddrift_traces.sh +++ b/tests/difference/core/quint_model/driver/generate_boundeddrift_traces.sh @@ -1 +1 @@ -go run ./... -modelPath=../ccv_boundeddrift.qnt -step stepBoundedDrift --inv CanTimeoutConsumer -traceFolder traces -numTraces 100 \ No newline at end of file +go run ./... -modelPath=../ccv_boundeddrift.qnt -step stepBoundedDrift -invariant CanTimeoutConsumer -traceFolder traces -numTraces 150 -numSteps 200 -numSamples 200 \ No newline at end of file diff --git a/tests/difference/core/quint_model/driver/mbt_test.go b/tests/difference/core/quint_model/driver/mbt_test.go index ec61c51462..c1bae4b26e 100644 --- a/tests/difference/core/quint_model/driver/mbt_test.go +++ b/tests/difference/core/quint_model/driver/mbt_test.go @@ -98,7 +98,7 @@ func RunItfTrace(t *testing.T, path string) { t.Log("Chains are: ", chains) // create params struct - vscTimeout := time.Duration(params["VscTimeout"].Value.(int64)) + vscTimeout := time.Duration(params["VscTimeout"].Value.(int64)) * time.Second unbondingPeriodPerChain := make(map[ChainId]time.Duration, len(consumers)) trustingPeriodPerChain := make(map[ChainId]time.Duration, len(consumers)) @@ -189,8 +189,24 @@ func RunItfTrace(t *testing.T, path string) { // needs a header of height H+1 to accept the packet // so we do one time advancement with a very small increment, // and then increment the rest of the time] + runningConsumersBefore := driver.runningConsumers() driver.endAndBeginBlock("provider", 1*time.Nanosecond) driver.endAndBeginBlock("provider", time.Duration(timeAdvancement)*time.Second-1*time.Nanosecond) + runningConsumersAfter := driver.runningConsumers() + + // the consumers that were running before but not after must have timed out + for _, consumer := range runningConsumersBefore { + found := false + for _, consumerAfter := range runningConsumersAfter { + if consumerAfter.ChainId == consumer.ChainId { + found = true + break + } + } + if !found { + stats.numTimeouts++ + } + } // save the last timestamp for runningConsumers, // because setting up chains will modify timestamps @@ -256,12 +272,36 @@ func RunItfTrace(t *testing.T, path string) { consumerChain := lastAction["consumerChain"].Value.(string) t.Log("DeliverVscPacket", consumerChain) - driver.DeliverPacketToConsumer(ChainId(consumerChain)) + // delivering the packet should give an error + // if the consumer is timed out in the model + var expectError bool + if ConsumerStatus(currentModelState, consumerChain) == "timedout" { + expectError = true + driver.DeliverPacketToConsumer(ChainId(consumerChain), expectError) + + // stop the consumer chain + driver.providerKeeper().StopConsumerChain(driver.providerCtx(), consumerChain, true) + } else { + expectError = false + driver.DeliverPacketToConsumer(ChainId(consumerChain), expectError) + } case "DeliverVscMaturedPacket": consumerChain := lastAction["consumerChain"].Value.(string) t.Log("DeliverVscMaturedPacket", consumerChain) - driver.DeliverPacketFromConsumer(ChainId(consumerChain)) + var expectError bool + if ConsumerStatus(currentModelState, consumerChain) == "timedout" { + expectError = true + // expectError is true, because we expect the consumer to have timed out. + // the call will fail if there is no error + driver.DeliverPacketFromConsumer(ChainId(consumerChain), expectError) + + // stop the consumer chain on the provider + driver.providerKeeper().StopConsumerChain(driver.providerCtx(), consumerChain, true) + } else { + expectError = false + driver.DeliverPacketFromConsumer(ChainId(consumerChain), expectError) + } default: log.Fatalf("Error loading trace file %s, step %v: do not know action type %s", @@ -397,7 +437,7 @@ func ComparePacketQueue( actualPacket := actualSenderQueue[i] modelPacket := modelSenderQueue[i].Value.(itf.MapExprType) - actualTimeout := int64(actualPacket.Packet.TimeoutTimestamp) - timeOffset.Unix() + actualTimeout := time.Unix(0, int64(actualPacket.Packet.TimeoutTimestamp)).Unix() - timeOffset.Unix() modelTimeout := GetTimeoutForPacket(modelPacket) require.Equal(t, diff --git a/tests/difference/core/quint_model/driver/setup.go b/tests/difference/core/quint_model/driver/setup.go index fa84d70210..c72227801d 100644 --- a/tests/difference/core/quint_model/driver/setup.go +++ b/tests/difference/core/quint_model/driver/setup.go @@ -357,6 +357,17 @@ func (s *Driver) ConfigureNewPath(consumerChain *ibctesting.TestChain, providerC s.consumerKeeper(consumerChainId).InitGenesis(s.ctx(consumerChainId), consumerGenesis) + consumerGenesisForProvider := ccvtypes.ConsumerGenesisState{ + Params: consumerGenesis.Params, + Provider: consumerGenesis.Provider, + NewChain: consumerGenesis.NewChain, + } + + s.providerKeeper().SetConsumerGenesis( + providerChain.GetContext(), + string(consumerChainId), + consumerGenesisForProvider) + // Client ID is set in InitGenesis and we treat it as a block box. So // must query it to use it with the endpoint. clientID, _ := s.consumerKeeper(consumerChainId).GetProviderClientID(s.ctx(consumerChainId)) @@ -408,6 +419,13 @@ func (s *Driver) setupProvider( providerChain := newChain(s.t, params, s.coordinator, icstestingutils.ProviderAppIniter, "provider", valSet, signers, nodes, valNames) s.coordinator.Chains["provider"] = providerChain + // set the VscTimeout + s.providerKeeper().SetVscTimeoutPeriod(s.ctx("provider"), params.VscTimeout) + // set the CcvTimeoutPeriod + providerParams := s.providerKeeper().GetParams(s.ctx("provider")) + providerParams.CcvTimeoutPeriod = params.CcvTimeout[ChainId(providerChain.ChainID)] + s.providerKeeper().SetParams(s.ctx("provider"), providerParams) + // produce a first block simibc.EndBlock(providerChain, func() {}) simibc.BeginBlock(providerChain, 0) @@ -444,18 +462,16 @@ func createConsumerGenesis(modelParams ModelParams, providerChain *ibctesting.Te 1000, // ignore distribution "", // ignore distribution "", // ignore distribution - ccv.DefaultCCVTimeoutPeriod, + modelParams.CcvTimeout[ChainId(consumerClientState.ChainId)], ccv.DefaultTransferTimeoutPeriod, ccv.DefaultConsumerRedistributeFrac, ccv.DefaultHistoricalEntries, - consumerClientState.UnbondingPeriod, + modelParams.UnbondingPeriodPerChain[ChainId(consumerClientState.ChainId)], "0", // disable soft opt-out []string{}, []string{}, ccv.DefaultRetryDelayPeriod, ) - params.CcvTimeoutPeriod = modelParams.CcvTimeout[ChainId(consumerClientState.ChainId)] - params.UnbondingPeriod = modelParams.UnbondingPeriodPerChain[ChainId(consumerClientState.ChainId)] return consumertypes.NewInitialGenesisState(consumerClientState, providerConsState, valUpdates, params) } diff --git a/tests/difference/core/quint_model/driver/trace.json b/tests/difference/core/quint_model/driver/trace.json deleted file mode 100644 index 9f3c7c35c1..0000000000 --- a/tests/difference/core/quint_model/driver/trace.json +++ /dev/null @@ -1 +0,0 @@ -{"#meta":{"format":"ITF","format-description":"https://apalache.informal.systems/docs/adr/015adr-trace.html","source":"ccv_happy.qnt","status":"violation","description":"Created by Quint on Thu Nov 16 2023 12:49:55 GMT+0100 (GMT+01:00)","timestamp":1700135395077},"vars":["QueuedEndBlocks","currentState","trace","params"],"states":[{"#meta":{"index":0},"currentState":{"consumerStates":{"#map":[["consumer1",{"chainState":{"currentValidatorSet":{"#map":[]},"lastTimestamp":{"#bigint":"0"},"votingPowerHistory":[]},"maturationTimes":[],"outstandingPacketsToProvider":[],"receivedVscPackets":[]}],["consumer2",{"chainState":{"currentValidatorSet":{"#map":[]},"lastTimestamp":{"#bigint":"0"},"votingPowerHistory":[]},"maturationTimes":[],"outstandingPacketsToProvider":[],"receivedVscPackets":[]}],["consumer3",{"chainState":{"currentValidatorSet":{"#map":[]},"lastTimestamp":{"#bigint":"0"},"votingPowerHistory":[]},"maturationTimes":[],"outstandingPacketsToProvider":[],"receivedVscPackets":[]}]]},"providerState":{"chainState":{"currentValidatorSet":{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},"lastTimestamp":{"#bigint":"0"},"votingPowerHistory":[{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]}]},"consumerStatus":{"#map":[["consumer1","not consumer"],["consumer2","not consumer"],["consumer3","not consumer"]]},"outstandingPacketsToConsumer":{"#map":[["consumer1",[]],["consumer2",[]],["consumer3",[]]]},"providerValidatorSetChangedInThisBlock":false,"receivedMaturations":{"#set":[]},"runningVscId":{"#bigint":"0"},"sentVscPacketsToConsumer":{"#map":[["consumer1",[]],["consumer2",[]],["consumer3",[]]]}}},"params":{"CcvTimeout":{"#map":[["consumer1",{"#bigint":"1814400"}],["consumer2",{"#bigint":"1814400"}],["consumer3",{"#bigint":"1814400"}],["provider",{"#bigint":"1814400"}]]},"ConsumerChains":{"#set":["consumer1","consumer2","consumer3"]},"InitialValidatorSet":{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},"Nodes":{"#set":["node1","node10","node2","node3","node4","node5","node6","node7","node8","node9"]},"TrustingPeriodPerChain":{"#map":[["consumer1",{"#bigint":"1206000"}],["consumer2",{"#bigint":"1206000"}],["consumer3",{"#bigint":"1206000"}],["provider",{"#bigint":"1206000"}]]},"UnbondingPeriodPerChain":{"#map":[["consumer1",{"#bigint":"1209600"}],["consumer2",{"#bigint":"1209600"}],["consumer3",{"#bigint":"1209600"}],["provider",{"#bigint":"1209600"}]]},"VscTimeout":{"#bigint":"3024000"}},"trace":[{"changeAmount":{"#bigint":"0"},"consumerChain":"","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"init","timeAdvancement":{"#bigint":"0"},"validator":""}]},{"#meta":{"index":1},"QueuedEndBlocks":[{"#tup":["consumer1",{"#bigint":"1"}]},{"#tup":["consumer2",{"#bigint":"1"}]},{"#tup":["consumer3",{"#bigint":"1"}]}],"currentState":{"consumerStates":{"#map":[["consumer1",{"chainState":{"currentValidatorSet":{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},"lastTimestamp":{"#bigint":"0"},"votingPowerHistory":[{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]}]},"maturationTimes":[],"outstandingPacketsToProvider":[],"receivedVscPackets":[]}],["consumer2",{"chainState":{"currentValidatorSet":{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},"lastTimestamp":{"#bigint":"0"},"votingPowerHistory":[{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]}]},"maturationTimes":[],"outstandingPacketsToProvider":[],"receivedVscPackets":[]}],["consumer3",{"chainState":{"currentValidatorSet":{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},"lastTimestamp":{"#bigint":"0"},"votingPowerHistory":[{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]}]},"maturationTimes":[],"outstandingPacketsToProvider":[],"receivedVscPackets":[]}]]},"providerState":{"chainState":{"currentValidatorSet":{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},"lastTimestamp":{"#bigint":"1"},"votingPowerHistory":[{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]}]},"consumerStatus":{"#map":[["consumer1","running"],["consumer2","running"],["consumer3","running"]]},"outstandingPacketsToConsumer":{"#map":[["consumer1",[]],["consumer2",[]],["consumer3",[]]]},"providerValidatorSetChangedInThisBlock":false,"receivedMaturations":{"#set":[]},"runningVscId":{"#bigint":"0"},"sentVscPacketsToConsumer":{"#map":[["consumer1",[]],["consumer2",[]],["consumer3",[]]]}}},"params":{"CcvTimeout":{"#map":[["consumer1",{"#bigint":"1814400"}],["consumer2",{"#bigint":"1814400"}],["consumer3",{"#bigint":"1814400"}],["provider",{"#bigint":"1814400"}]]},"ConsumerChains":{"#set":["consumer1","consumer2","consumer3"]},"InitialValidatorSet":{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},"Nodes":{"#set":["node1","node10","node2","node3","node4","node5","node6","node7","node8","node9"]},"TrustingPeriodPerChain":{"#map":[["consumer1",{"#bigint":"1206000"}],["consumer2",{"#bigint":"1206000"}],["consumer3",{"#bigint":"1206000"}],["provider",{"#bigint":"1206000"}]]},"UnbondingPeriodPerChain":{"#map":[["consumer1",{"#bigint":"1209600"}],["consumer2",{"#bigint":"1209600"}],["consumer3",{"#bigint":"1209600"}],["provider",{"#bigint":"1209600"}]]},"VscTimeout":{"#bigint":"3024000"}},"trace":[{"changeAmount":{"#bigint":"0"},"consumerChain":"","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"init","timeAdvancement":{"#bigint":"0"},"validator":""},{"changeAmount":{"#bigint":"0"},"consumerChain":"","consumersToStart":{"#set":["consumer1","consumer2","consumer3"]},"consumersToStop":{"#set":[]},"kind":"EndAndBeginBlockForProvider","timeAdvancement":{"#bigint":"1"},"validator":""}]},{"#meta":{"index":2},"QueuedEndBlocks":[{"#tup":["consumer2",{"#bigint":"1"}]},{"#tup":["consumer3",{"#bigint":"1"}]}],"currentState":{"consumerStates":{"#map":[["consumer1",{"chainState":{"currentValidatorSet":{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},"lastTimestamp":{"#bigint":"1"},"votingPowerHistory":[{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]}]},"maturationTimes":[],"outstandingPacketsToProvider":[],"receivedVscPackets":[]}],["consumer2",{"chainState":{"currentValidatorSet":{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},"lastTimestamp":{"#bigint":"0"},"votingPowerHistory":[{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]}]},"maturationTimes":[],"outstandingPacketsToProvider":[],"receivedVscPackets":[]}],["consumer3",{"chainState":{"currentValidatorSet":{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},"lastTimestamp":{"#bigint":"0"},"votingPowerHistory":[{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]}]},"maturationTimes":[],"outstandingPacketsToProvider":[],"receivedVscPackets":[]}]]},"providerState":{"chainState":{"currentValidatorSet":{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},"lastTimestamp":{"#bigint":"1"},"votingPowerHistory":[{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]}]},"consumerStatus":{"#map":[["consumer1","running"],["consumer2","running"],["consumer3","running"]]},"outstandingPacketsToConsumer":{"#map":[["consumer1",[]],["consumer2",[]],["consumer3",[]]]},"providerValidatorSetChangedInThisBlock":false,"receivedMaturations":{"#set":[]},"runningVscId":{"#bigint":"0"},"sentVscPacketsToConsumer":{"#map":[["consumer1",[]],["consumer2",[]],["consumer3",[]]]}}},"params":{"CcvTimeout":{"#map":[["consumer1",{"#bigint":"1814400"}],["consumer2",{"#bigint":"1814400"}],["consumer3",{"#bigint":"1814400"}],["provider",{"#bigint":"1814400"}]]},"ConsumerChains":{"#set":["consumer1","consumer2","consumer3"]},"InitialValidatorSet":{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},"Nodes":{"#set":["node1","node10","node2","node3","node4","node5","node6","node7","node8","node9"]},"TrustingPeriodPerChain":{"#map":[["consumer1",{"#bigint":"1206000"}],["consumer2",{"#bigint":"1206000"}],["consumer3",{"#bigint":"1206000"}],["provider",{"#bigint":"1206000"}]]},"UnbondingPeriodPerChain":{"#map":[["consumer1",{"#bigint":"1209600"}],["consumer2",{"#bigint":"1209600"}],["consumer3",{"#bigint":"1209600"}],["provider",{"#bigint":"1209600"}]]},"VscTimeout":{"#bigint":"3024000"}},"trace":[{"changeAmount":{"#bigint":"0"},"consumerChain":"","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"init","timeAdvancement":{"#bigint":"0"},"validator":""},{"changeAmount":{"#bigint":"0"},"consumerChain":"","consumersToStart":{"#set":["consumer1","consumer2","consumer3"]},"consumersToStop":{"#set":[]},"kind":"EndAndBeginBlockForProvider","timeAdvancement":{"#bigint":"1"},"validator":""},{"changeAmount":{"#bigint":"0"},"consumerChain":"consumer1","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"EndAndBeginBlockForConsumer","timeAdvancement":{"#bigint":"1"},"validator":""}]},{"#meta":{"index":3},"QueuedEndBlocks":[{"#tup":["consumer3",{"#bigint":"1"}]}],"currentState":{"consumerStates":{"#map":[["consumer1",{"chainState":{"currentValidatorSet":{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},"lastTimestamp":{"#bigint":"1"},"votingPowerHistory":[{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]}]},"maturationTimes":[],"outstandingPacketsToProvider":[],"receivedVscPackets":[]}],["consumer2",{"chainState":{"currentValidatorSet":{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},"lastTimestamp":{"#bigint":"1"},"votingPowerHistory":[{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]}]},"maturationTimes":[],"outstandingPacketsToProvider":[],"receivedVscPackets":[]}],["consumer3",{"chainState":{"currentValidatorSet":{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},"lastTimestamp":{"#bigint":"0"},"votingPowerHistory":[{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]}]},"maturationTimes":[],"outstandingPacketsToProvider":[],"receivedVscPackets":[]}]]},"providerState":{"chainState":{"currentValidatorSet":{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},"lastTimestamp":{"#bigint":"1"},"votingPowerHistory":[{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]}]},"consumerStatus":{"#map":[["consumer1","running"],["consumer2","running"],["consumer3","running"]]},"outstandingPacketsToConsumer":{"#map":[["consumer1",[]],["consumer2",[]],["consumer3",[]]]},"providerValidatorSetChangedInThisBlock":false,"receivedMaturations":{"#set":[]},"runningVscId":{"#bigint":"0"},"sentVscPacketsToConsumer":{"#map":[["consumer1",[]],["consumer2",[]],["consumer3",[]]]}}},"params":{"CcvTimeout":{"#map":[["consumer1",{"#bigint":"1814400"}],["consumer2",{"#bigint":"1814400"}],["consumer3",{"#bigint":"1814400"}],["provider",{"#bigint":"1814400"}]]},"ConsumerChains":{"#set":["consumer1","consumer2","consumer3"]},"InitialValidatorSet":{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},"Nodes":{"#set":["node1","node10","node2","node3","node4","node5","node6","node7","node8","node9"]},"TrustingPeriodPerChain":{"#map":[["consumer1",{"#bigint":"1206000"}],["consumer2",{"#bigint":"1206000"}],["consumer3",{"#bigint":"1206000"}],["provider",{"#bigint":"1206000"}]]},"UnbondingPeriodPerChain":{"#map":[["consumer1",{"#bigint":"1209600"}],["consumer2",{"#bigint":"1209600"}],["consumer3",{"#bigint":"1209600"}],["provider",{"#bigint":"1209600"}]]},"VscTimeout":{"#bigint":"3024000"}},"trace":[{"changeAmount":{"#bigint":"0"},"consumerChain":"","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"init","timeAdvancement":{"#bigint":"0"},"validator":""},{"changeAmount":{"#bigint":"0"},"consumerChain":"","consumersToStart":{"#set":["consumer1","consumer2","consumer3"]},"consumersToStop":{"#set":[]},"kind":"EndAndBeginBlockForProvider","timeAdvancement":{"#bigint":"1"},"validator":""},{"changeAmount":{"#bigint":"0"},"consumerChain":"consumer1","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"EndAndBeginBlockForConsumer","timeAdvancement":{"#bigint":"1"},"validator":""},{"changeAmount":{"#bigint":"0"},"consumerChain":"consumer2","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"EndAndBeginBlockForConsumer","timeAdvancement":{"#bigint":"1"},"validator":""}]},{"#meta":{"index":4},"QueuedEndBlocks":[],"currentState":{"consumerStates":{"#map":[["consumer1",{"chainState":{"currentValidatorSet":{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},"lastTimestamp":{"#bigint":"1"},"votingPowerHistory":[{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]}]},"maturationTimes":[],"outstandingPacketsToProvider":[],"receivedVscPackets":[]}],["consumer2",{"chainState":{"currentValidatorSet":{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},"lastTimestamp":{"#bigint":"1"},"votingPowerHistory":[{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]}]},"maturationTimes":[],"outstandingPacketsToProvider":[],"receivedVscPackets":[]}],["consumer3",{"chainState":{"currentValidatorSet":{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},"lastTimestamp":{"#bigint":"1"},"votingPowerHistory":[{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]}]},"maturationTimes":[],"outstandingPacketsToProvider":[],"receivedVscPackets":[]}]]},"providerState":{"chainState":{"currentValidatorSet":{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},"lastTimestamp":{"#bigint":"1"},"votingPowerHistory":[{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]}]},"consumerStatus":{"#map":[["consumer1","running"],["consumer2","running"],["consumer3","running"]]},"outstandingPacketsToConsumer":{"#map":[["consumer1",[]],["consumer2",[]],["consumer3",[]]]},"providerValidatorSetChangedInThisBlock":false,"receivedMaturations":{"#set":[]},"runningVscId":{"#bigint":"0"},"sentVscPacketsToConsumer":{"#map":[["consumer1",[]],["consumer2",[]],["consumer3",[]]]}}},"params":{"CcvTimeout":{"#map":[["consumer1",{"#bigint":"1814400"}],["consumer2",{"#bigint":"1814400"}],["consumer3",{"#bigint":"1814400"}],["provider",{"#bigint":"1814400"}]]},"ConsumerChains":{"#set":["consumer1","consumer2","consumer3"]},"InitialValidatorSet":{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},"Nodes":{"#set":["node1","node10","node2","node3","node4","node5","node6","node7","node8","node9"]},"TrustingPeriodPerChain":{"#map":[["consumer1",{"#bigint":"1206000"}],["consumer2",{"#bigint":"1206000"}],["consumer3",{"#bigint":"1206000"}],["provider",{"#bigint":"1206000"}]]},"UnbondingPeriodPerChain":{"#map":[["consumer1",{"#bigint":"1209600"}],["consumer2",{"#bigint":"1209600"}],["consumer3",{"#bigint":"1209600"}],["provider",{"#bigint":"1209600"}]]},"VscTimeout":{"#bigint":"3024000"}},"trace":[{"changeAmount":{"#bigint":"0"},"consumerChain":"","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"init","timeAdvancement":{"#bigint":"0"},"validator":""},{"changeAmount":{"#bigint":"0"},"consumerChain":"","consumersToStart":{"#set":["consumer1","consumer2","consumer3"]},"consumersToStop":{"#set":[]},"kind":"EndAndBeginBlockForProvider","timeAdvancement":{"#bigint":"1"},"validator":""},{"changeAmount":{"#bigint":"0"},"consumerChain":"consumer1","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"EndAndBeginBlockForConsumer","timeAdvancement":{"#bigint":"1"},"validator":""},{"changeAmount":{"#bigint":"0"},"consumerChain":"consumer2","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"EndAndBeginBlockForConsumer","timeAdvancement":{"#bigint":"1"},"validator":""},{"changeAmount":{"#bigint":"0"},"consumerChain":"consumer3","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"EndAndBeginBlockForConsumer","timeAdvancement":{"#bigint":"1"},"validator":""}]},{"#meta":{"index":5},"QueuedEndBlocks":[],"currentState":{"consumerStates":{"#map":[["consumer1",{"chainState":{"currentValidatorSet":{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},"lastTimestamp":{"#bigint":"1"},"votingPowerHistory":[{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]}]},"maturationTimes":[],"outstandingPacketsToProvider":[],"receivedVscPackets":[]}],["consumer2",{"chainState":{"currentValidatorSet":{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},"lastTimestamp":{"#bigint":"1"},"votingPowerHistory":[{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]}]},"maturationTimes":[],"outstandingPacketsToProvider":[],"receivedVscPackets":[]}],["consumer3",{"chainState":{"currentValidatorSet":{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},"lastTimestamp":{"#bigint":"1"},"votingPowerHistory":[{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]}]},"maturationTimes":[],"outstandingPacketsToProvider":[],"receivedVscPackets":[]}]]},"providerState":{"chainState":{"currentValidatorSet":{"#map":[["node1",{"#bigint":"50"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},"lastTimestamp":{"#bigint":"1"},"votingPowerHistory":[{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]}]},"consumerStatus":{"#map":[["consumer1","running"],["consumer2","running"],["consumer3","running"]]},"outstandingPacketsToConsumer":{"#map":[["consumer1",[]],["consumer2",[]],["consumer3",[]]]},"providerValidatorSetChangedInThisBlock":true,"receivedMaturations":{"#set":[]},"runningVscId":{"#bigint":"0"},"sentVscPacketsToConsumer":{"#map":[["consumer1",[]],["consumer2",[]],["consumer3",[]]]}}},"params":{"CcvTimeout":{"#map":[["consumer1",{"#bigint":"1814400"}],["consumer2",{"#bigint":"1814400"}],["consumer3",{"#bigint":"1814400"}],["provider",{"#bigint":"1814400"}]]},"ConsumerChains":{"#set":["consumer1","consumer2","consumer3"]},"InitialValidatorSet":{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},"Nodes":{"#set":["node1","node10","node2","node3","node4","node5","node6","node7","node8","node9"]},"TrustingPeriodPerChain":{"#map":[["consumer1",{"#bigint":"1206000"}],["consumer2",{"#bigint":"1206000"}],["consumer3",{"#bigint":"1206000"}],["provider",{"#bigint":"1206000"}]]},"UnbondingPeriodPerChain":{"#map":[["consumer1",{"#bigint":"1209600"}],["consumer2",{"#bigint":"1209600"}],["consumer3",{"#bigint":"1209600"}],["provider",{"#bigint":"1209600"}]]},"VscTimeout":{"#bigint":"3024000"}},"trace":[{"changeAmount":{"#bigint":"0"},"consumerChain":"","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"init","timeAdvancement":{"#bigint":"0"},"validator":""},{"changeAmount":{"#bigint":"0"},"consumerChain":"","consumersToStart":{"#set":["consumer1","consumer2","consumer3"]},"consumersToStop":{"#set":[]},"kind":"EndAndBeginBlockForProvider","timeAdvancement":{"#bigint":"1"},"validator":""},{"changeAmount":{"#bigint":"0"},"consumerChain":"consumer1","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"EndAndBeginBlockForConsumer","timeAdvancement":{"#bigint":"1"},"validator":""},{"changeAmount":{"#bigint":"0"},"consumerChain":"consumer2","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"EndAndBeginBlockForConsumer","timeAdvancement":{"#bigint":"1"},"validator":""},{"changeAmount":{"#bigint":"0"},"consumerChain":"consumer3","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"EndAndBeginBlockForConsumer","timeAdvancement":{"#bigint":"1"},"validator":""},{"changeAmount":{"#bigint":"-50"},"consumerChain":"","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"VotingPowerChange","timeAdvancement":{"#bigint":"0"},"validator":"node1"}]},{"#meta":{"index":6},"QueuedEndBlocks":[{"#tup":["consumer1",{"#bigint":"1"}]},{"#tup":["consumer2",{"#bigint":"1"}]},{"#tup":["consumer3",{"#bigint":"1"}]}],"currentState":{"consumerStates":{"#map":[["consumer1",{"chainState":{"currentValidatorSet":{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},"lastTimestamp":{"#bigint":"1"},"votingPowerHistory":[{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]}]},"maturationTimes":[],"outstandingPacketsToProvider":[],"receivedVscPackets":[]}],["consumer2",{"chainState":{"currentValidatorSet":{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},"lastTimestamp":{"#bigint":"1"},"votingPowerHistory":[{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]}]},"maturationTimes":[],"outstandingPacketsToProvider":[],"receivedVscPackets":[]}],["consumer3",{"chainState":{"currentValidatorSet":{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},"lastTimestamp":{"#bigint":"1"},"votingPowerHistory":[{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]}]},"maturationTimes":[],"outstandingPacketsToProvider":[],"receivedVscPackets":[]}]]},"providerState":{"chainState":{"currentValidatorSet":{"#map":[["node1",{"#bigint":"50"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},"lastTimestamp":{"#bigint":"2"},"votingPowerHistory":[{"#map":[["node1",{"#bigint":"50"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]}]},"consumerStatus":{"#map":[["consumer1","running"],["consumer2","running"],["consumer3","running"]]},"outstandingPacketsToConsumer":{"#map":[["consumer1",[{"id":{"#bigint":"0"},"sendingTime":{"#bigint":"2"},"validatorSet":{"#map":[["node1",{"#bigint":"50"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]}}]],["consumer2",[{"id":{"#bigint":"0"},"sendingTime":{"#bigint":"2"},"validatorSet":{"#map":[["node1",{"#bigint":"50"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]}}]],["consumer3",[{"id":{"#bigint":"0"},"sendingTime":{"#bigint":"2"},"validatorSet":{"#map":[["node1",{"#bigint":"50"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]}}]]]},"providerValidatorSetChangedInThisBlock":false,"receivedMaturations":{"#set":[]},"runningVscId":{"#bigint":"1"},"sentVscPacketsToConsumer":{"#map":[["consumer1",[{"id":{"#bigint":"0"},"sendingTime":{"#bigint":"2"},"validatorSet":{"#map":[["node1",{"#bigint":"50"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]}}]],["consumer2",[{"id":{"#bigint":"0"},"sendingTime":{"#bigint":"2"},"validatorSet":{"#map":[["node1",{"#bigint":"50"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]}}]],["consumer3",[{"id":{"#bigint":"0"},"sendingTime":{"#bigint":"2"},"validatorSet":{"#map":[["node1",{"#bigint":"50"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]}}]]]}}},"params":{"CcvTimeout":{"#map":[["consumer1",{"#bigint":"1814400"}],["consumer2",{"#bigint":"1814400"}],["consumer3",{"#bigint":"1814400"}],["provider",{"#bigint":"1814400"}]]},"ConsumerChains":{"#set":["consumer1","consumer2","consumer3"]},"InitialValidatorSet":{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},"Nodes":{"#set":["node1","node10","node2","node3","node4","node5","node6","node7","node8","node9"]},"TrustingPeriodPerChain":{"#map":[["consumer1",{"#bigint":"1206000"}],["consumer2",{"#bigint":"1206000"}],["consumer3",{"#bigint":"1206000"}],["provider",{"#bigint":"1206000"}]]},"UnbondingPeriodPerChain":{"#map":[["consumer1",{"#bigint":"1209600"}],["consumer2",{"#bigint":"1209600"}],["consumer3",{"#bigint":"1209600"}],["provider",{"#bigint":"1209600"}]]},"VscTimeout":{"#bigint":"3024000"}},"trace":[{"changeAmount":{"#bigint":"0"},"consumerChain":"","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"init","timeAdvancement":{"#bigint":"0"},"validator":""},{"changeAmount":{"#bigint":"0"},"consumerChain":"","consumersToStart":{"#set":["consumer1","consumer2","consumer3"]},"consumersToStop":{"#set":[]},"kind":"EndAndBeginBlockForProvider","timeAdvancement":{"#bigint":"1"},"validator":""},{"changeAmount":{"#bigint":"0"},"consumerChain":"consumer1","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"EndAndBeginBlockForConsumer","timeAdvancement":{"#bigint":"1"},"validator":""},{"changeAmount":{"#bigint":"0"},"consumerChain":"consumer2","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"EndAndBeginBlockForConsumer","timeAdvancement":{"#bigint":"1"},"validator":""},{"changeAmount":{"#bigint":"0"},"consumerChain":"consumer3","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"EndAndBeginBlockForConsumer","timeAdvancement":{"#bigint":"1"},"validator":""},{"changeAmount":{"#bigint":"-50"},"consumerChain":"","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"VotingPowerChange","timeAdvancement":{"#bigint":"0"},"validator":"node1"},{"changeAmount":{"#bigint":"0"},"consumerChain":"","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"EndAndBeginBlockForProvider","timeAdvancement":{"#bigint":"1"},"validator":""}]},{"#meta":{"index":7},"QueuedEndBlocks":[{"#tup":["consumer2",{"#bigint":"1"}]},{"#tup":["consumer3",{"#bigint":"1"}]}],"currentState":{"consumerStates":{"#map":[["consumer1",{"chainState":{"currentValidatorSet":{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},"lastTimestamp":{"#bigint":"2"},"votingPowerHistory":[{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]}]},"maturationTimes":[],"outstandingPacketsToProvider":[],"receivedVscPackets":[]}],["consumer2",{"chainState":{"currentValidatorSet":{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},"lastTimestamp":{"#bigint":"1"},"votingPowerHistory":[{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]}]},"maturationTimes":[],"outstandingPacketsToProvider":[],"receivedVscPackets":[]}],["consumer3",{"chainState":{"currentValidatorSet":{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},"lastTimestamp":{"#bigint":"1"},"votingPowerHistory":[{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]}]},"maturationTimes":[],"outstandingPacketsToProvider":[],"receivedVscPackets":[]}]]},"providerState":{"chainState":{"currentValidatorSet":{"#map":[["node1",{"#bigint":"50"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},"lastTimestamp":{"#bigint":"2"},"votingPowerHistory":[{"#map":[["node1",{"#bigint":"50"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]}]},"consumerStatus":{"#map":[["consumer1","running"],["consumer2","running"],["consumer3","running"]]},"outstandingPacketsToConsumer":{"#map":[["consumer1",[{"id":{"#bigint":"0"},"sendingTime":{"#bigint":"2"},"validatorSet":{"#map":[["node1",{"#bigint":"50"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]}}]],["consumer2",[{"id":{"#bigint":"0"},"sendingTime":{"#bigint":"2"},"validatorSet":{"#map":[["node1",{"#bigint":"50"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]}}]],["consumer3",[{"id":{"#bigint":"0"},"sendingTime":{"#bigint":"2"},"validatorSet":{"#map":[["node1",{"#bigint":"50"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]}}]]]},"providerValidatorSetChangedInThisBlock":false,"receivedMaturations":{"#set":[]},"runningVscId":{"#bigint":"1"},"sentVscPacketsToConsumer":{"#map":[["consumer1",[{"id":{"#bigint":"0"},"sendingTime":{"#bigint":"2"},"validatorSet":{"#map":[["node1",{"#bigint":"50"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]}}]],["consumer2",[{"id":{"#bigint":"0"},"sendingTime":{"#bigint":"2"},"validatorSet":{"#map":[["node1",{"#bigint":"50"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]}}]],["consumer3",[{"id":{"#bigint":"0"},"sendingTime":{"#bigint":"2"},"validatorSet":{"#map":[["node1",{"#bigint":"50"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]}}]]]}}},"params":{"CcvTimeout":{"#map":[["consumer1",{"#bigint":"1814400"}],["consumer2",{"#bigint":"1814400"}],["consumer3",{"#bigint":"1814400"}],["provider",{"#bigint":"1814400"}]]},"ConsumerChains":{"#set":["consumer1","consumer2","consumer3"]},"InitialValidatorSet":{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},"Nodes":{"#set":["node1","node10","node2","node3","node4","node5","node6","node7","node8","node9"]},"TrustingPeriodPerChain":{"#map":[["consumer1",{"#bigint":"1206000"}],["consumer2",{"#bigint":"1206000"}],["consumer3",{"#bigint":"1206000"}],["provider",{"#bigint":"1206000"}]]},"UnbondingPeriodPerChain":{"#map":[["consumer1",{"#bigint":"1209600"}],["consumer2",{"#bigint":"1209600"}],["consumer3",{"#bigint":"1209600"}],["provider",{"#bigint":"1209600"}]]},"VscTimeout":{"#bigint":"3024000"}},"trace":[{"changeAmount":{"#bigint":"0"},"consumerChain":"","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"init","timeAdvancement":{"#bigint":"0"},"validator":""},{"changeAmount":{"#bigint":"0"},"consumerChain":"","consumersToStart":{"#set":["consumer1","consumer2","consumer3"]},"consumersToStop":{"#set":[]},"kind":"EndAndBeginBlockForProvider","timeAdvancement":{"#bigint":"1"},"validator":""},{"changeAmount":{"#bigint":"0"},"consumerChain":"consumer1","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"EndAndBeginBlockForConsumer","timeAdvancement":{"#bigint":"1"},"validator":""},{"changeAmount":{"#bigint":"0"},"consumerChain":"consumer2","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"EndAndBeginBlockForConsumer","timeAdvancement":{"#bigint":"1"},"validator":""},{"changeAmount":{"#bigint":"0"},"consumerChain":"consumer3","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"EndAndBeginBlockForConsumer","timeAdvancement":{"#bigint":"1"},"validator":""},{"changeAmount":{"#bigint":"-50"},"consumerChain":"","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"VotingPowerChange","timeAdvancement":{"#bigint":"0"},"validator":"node1"},{"changeAmount":{"#bigint":"0"},"consumerChain":"","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"EndAndBeginBlockForProvider","timeAdvancement":{"#bigint":"1"},"validator":""},{"changeAmount":{"#bigint":"0"},"consumerChain":"consumer1","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"EndAndBeginBlockForConsumer","timeAdvancement":{"#bigint":"1"},"validator":""}]},{"#meta":{"index":8},"QueuedEndBlocks":[{"#tup":["consumer3",{"#bigint":"1"}]}],"currentState":{"consumerStates":{"#map":[["consumer1",{"chainState":{"currentValidatorSet":{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},"lastTimestamp":{"#bigint":"2"},"votingPowerHistory":[{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]}]},"maturationTimes":[],"outstandingPacketsToProvider":[],"receivedVscPackets":[]}],["consumer2",{"chainState":{"currentValidatorSet":{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},"lastTimestamp":{"#bigint":"2"},"votingPowerHistory":[{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]}]},"maturationTimes":[],"outstandingPacketsToProvider":[],"receivedVscPackets":[]}],["consumer3",{"chainState":{"currentValidatorSet":{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},"lastTimestamp":{"#bigint":"1"},"votingPowerHistory":[{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]}]},"maturationTimes":[],"outstandingPacketsToProvider":[],"receivedVscPackets":[]}]]},"providerState":{"chainState":{"currentValidatorSet":{"#map":[["node1",{"#bigint":"50"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},"lastTimestamp":{"#bigint":"2"},"votingPowerHistory":[{"#map":[["node1",{"#bigint":"50"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]}]},"consumerStatus":{"#map":[["consumer1","running"],["consumer2","running"],["consumer3","running"]]},"outstandingPacketsToConsumer":{"#map":[["consumer1",[{"id":{"#bigint":"0"},"sendingTime":{"#bigint":"2"},"validatorSet":{"#map":[["node1",{"#bigint":"50"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]}}]],["consumer2",[{"id":{"#bigint":"0"},"sendingTime":{"#bigint":"2"},"validatorSet":{"#map":[["node1",{"#bigint":"50"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]}}]],["consumer3",[{"id":{"#bigint":"0"},"sendingTime":{"#bigint":"2"},"validatorSet":{"#map":[["node1",{"#bigint":"50"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]}}]]]},"providerValidatorSetChangedInThisBlock":false,"receivedMaturations":{"#set":[]},"runningVscId":{"#bigint":"1"},"sentVscPacketsToConsumer":{"#map":[["consumer1",[{"id":{"#bigint":"0"},"sendingTime":{"#bigint":"2"},"validatorSet":{"#map":[["node1",{"#bigint":"50"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]}}]],["consumer2",[{"id":{"#bigint":"0"},"sendingTime":{"#bigint":"2"},"validatorSet":{"#map":[["node1",{"#bigint":"50"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]}}]],["consumer3",[{"id":{"#bigint":"0"},"sendingTime":{"#bigint":"2"},"validatorSet":{"#map":[["node1",{"#bigint":"50"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]}}]]]}}},"params":{"CcvTimeout":{"#map":[["consumer1",{"#bigint":"1814400"}],["consumer2",{"#bigint":"1814400"}],["consumer3",{"#bigint":"1814400"}],["provider",{"#bigint":"1814400"}]]},"ConsumerChains":{"#set":["consumer1","consumer2","consumer3"]},"InitialValidatorSet":{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},"Nodes":{"#set":["node1","node10","node2","node3","node4","node5","node6","node7","node8","node9"]},"TrustingPeriodPerChain":{"#map":[["consumer1",{"#bigint":"1206000"}],["consumer2",{"#bigint":"1206000"}],["consumer3",{"#bigint":"1206000"}],["provider",{"#bigint":"1206000"}]]},"UnbondingPeriodPerChain":{"#map":[["consumer1",{"#bigint":"1209600"}],["consumer2",{"#bigint":"1209600"}],["consumer3",{"#bigint":"1209600"}],["provider",{"#bigint":"1209600"}]]},"VscTimeout":{"#bigint":"3024000"}},"trace":[{"changeAmount":{"#bigint":"0"},"consumerChain":"","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"init","timeAdvancement":{"#bigint":"0"},"validator":""},{"changeAmount":{"#bigint":"0"},"consumerChain":"","consumersToStart":{"#set":["consumer1","consumer2","consumer3"]},"consumersToStop":{"#set":[]},"kind":"EndAndBeginBlockForProvider","timeAdvancement":{"#bigint":"1"},"validator":""},{"changeAmount":{"#bigint":"0"},"consumerChain":"consumer1","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"EndAndBeginBlockForConsumer","timeAdvancement":{"#bigint":"1"},"validator":""},{"changeAmount":{"#bigint":"0"},"consumerChain":"consumer2","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"EndAndBeginBlockForConsumer","timeAdvancement":{"#bigint":"1"},"validator":""},{"changeAmount":{"#bigint":"0"},"consumerChain":"consumer3","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"EndAndBeginBlockForConsumer","timeAdvancement":{"#bigint":"1"},"validator":""},{"changeAmount":{"#bigint":"-50"},"consumerChain":"","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"VotingPowerChange","timeAdvancement":{"#bigint":"0"},"validator":"node1"},{"changeAmount":{"#bigint":"0"},"consumerChain":"","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"EndAndBeginBlockForProvider","timeAdvancement":{"#bigint":"1"},"validator":""},{"changeAmount":{"#bigint":"0"},"consumerChain":"consumer1","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"EndAndBeginBlockForConsumer","timeAdvancement":{"#bigint":"1"},"validator":""},{"changeAmount":{"#bigint":"0"},"consumerChain":"consumer2","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"EndAndBeginBlockForConsumer","timeAdvancement":{"#bigint":"1"},"validator":""}]},{"#meta":{"index":9},"QueuedEndBlocks":[],"currentState":{"consumerStates":{"#map":[["consumer1",{"chainState":{"currentValidatorSet":{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},"lastTimestamp":{"#bigint":"2"},"votingPowerHistory":[{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]}]},"maturationTimes":[],"outstandingPacketsToProvider":[],"receivedVscPackets":[]}],["consumer2",{"chainState":{"currentValidatorSet":{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},"lastTimestamp":{"#bigint":"2"},"votingPowerHistory":[{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]}]},"maturationTimes":[],"outstandingPacketsToProvider":[],"receivedVscPackets":[]}],["consumer3",{"chainState":{"currentValidatorSet":{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},"lastTimestamp":{"#bigint":"2"},"votingPowerHistory":[{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]}]},"maturationTimes":[],"outstandingPacketsToProvider":[],"receivedVscPackets":[]}]]},"providerState":{"chainState":{"currentValidatorSet":{"#map":[["node1",{"#bigint":"50"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},"lastTimestamp":{"#bigint":"2"},"votingPowerHistory":[{"#map":[["node1",{"#bigint":"50"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]}]},"consumerStatus":{"#map":[["consumer1","running"],["consumer2","running"],["consumer3","running"]]},"outstandingPacketsToConsumer":{"#map":[["consumer1",[{"id":{"#bigint":"0"},"sendingTime":{"#bigint":"2"},"validatorSet":{"#map":[["node1",{"#bigint":"50"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]}}]],["consumer2",[{"id":{"#bigint":"0"},"sendingTime":{"#bigint":"2"},"validatorSet":{"#map":[["node1",{"#bigint":"50"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]}}]],["consumer3",[{"id":{"#bigint":"0"},"sendingTime":{"#bigint":"2"},"validatorSet":{"#map":[["node1",{"#bigint":"50"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]}}]]]},"providerValidatorSetChangedInThisBlock":false,"receivedMaturations":{"#set":[]},"runningVscId":{"#bigint":"1"},"sentVscPacketsToConsumer":{"#map":[["consumer1",[{"id":{"#bigint":"0"},"sendingTime":{"#bigint":"2"},"validatorSet":{"#map":[["node1",{"#bigint":"50"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]}}]],["consumer2",[{"id":{"#bigint":"0"},"sendingTime":{"#bigint":"2"},"validatorSet":{"#map":[["node1",{"#bigint":"50"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]}}]],["consumer3",[{"id":{"#bigint":"0"},"sendingTime":{"#bigint":"2"},"validatorSet":{"#map":[["node1",{"#bigint":"50"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]}}]]]}}},"params":{"CcvTimeout":{"#map":[["consumer1",{"#bigint":"1814400"}],["consumer2",{"#bigint":"1814400"}],["consumer3",{"#bigint":"1814400"}],["provider",{"#bigint":"1814400"}]]},"ConsumerChains":{"#set":["consumer1","consumer2","consumer3"]},"InitialValidatorSet":{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},"Nodes":{"#set":["node1","node10","node2","node3","node4","node5","node6","node7","node8","node9"]},"TrustingPeriodPerChain":{"#map":[["consumer1",{"#bigint":"1206000"}],["consumer2",{"#bigint":"1206000"}],["consumer3",{"#bigint":"1206000"}],["provider",{"#bigint":"1206000"}]]},"UnbondingPeriodPerChain":{"#map":[["consumer1",{"#bigint":"1209600"}],["consumer2",{"#bigint":"1209600"}],["consumer3",{"#bigint":"1209600"}],["provider",{"#bigint":"1209600"}]]},"VscTimeout":{"#bigint":"3024000"}},"trace":[{"changeAmount":{"#bigint":"0"},"consumerChain":"","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"init","timeAdvancement":{"#bigint":"0"},"validator":""},{"changeAmount":{"#bigint":"0"},"consumerChain":"","consumersToStart":{"#set":["consumer1","consumer2","consumer3"]},"consumersToStop":{"#set":[]},"kind":"EndAndBeginBlockForProvider","timeAdvancement":{"#bigint":"1"},"validator":""},{"changeAmount":{"#bigint":"0"},"consumerChain":"consumer1","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"EndAndBeginBlockForConsumer","timeAdvancement":{"#bigint":"1"},"validator":""},{"changeAmount":{"#bigint":"0"},"consumerChain":"consumer2","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"EndAndBeginBlockForConsumer","timeAdvancement":{"#bigint":"1"},"validator":""},{"changeAmount":{"#bigint":"0"},"consumerChain":"consumer3","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"EndAndBeginBlockForConsumer","timeAdvancement":{"#bigint":"1"},"validator":""},{"changeAmount":{"#bigint":"-50"},"consumerChain":"","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"VotingPowerChange","timeAdvancement":{"#bigint":"0"},"validator":"node1"},{"changeAmount":{"#bigint":"0"},"consumerChain":"","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"EndAndBeginBlockForProvider","timeAdvancement":{"#bigint":"1"},"validator":""},{"changeAmount":{"#bigint":"0"},"consumerChain":"consumer1","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"EndAndBeginBlockForConsumer","timeAdvancement":{"#bigint":"1"},"validator":""},{"changeAmount":{"#bigint":"0"},"consumerChain":"consumer2","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"EndAndBeginBlockForConsumer","timeAdvancement":{"#bigint":"1"},"validator":""},{"changeAmount":{"#bigint":"0"},"consumerChain":"consumer3","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"EndAndBeginBlockForConsumer","timeAdvancement":{"#bigint":"1"},"validator":""}]},{"#meta":{"index":10},"QueuedEndBlocks":[],"currentState":{"consumerStates":{"#map":[["consumer1",{"chainState":{"currentValidatorSet":{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},"lastTimestamp":{"#bigint":"2"},"votingPowerHistory":[{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]}]},"maturationTimes":[],"outstandingPacketsToProvider":[],"receivedVscPackets":[]}],["consumer2",{"chainState":{"currentValidatorSet":{"#map":[["node1",{"#bigint":"50"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},"lastTimestamp":{"#bigint":"2"},"votingPowerHistory":[{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]}]},"maturationTimes":[{"#tup":[{"id":{"#bigint":"0"},"sendingTime":{"#bigint":"2"},"validatorSet":{"#map":[["node1",{"#bigint":"50"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]}},{"#bigint":"1209602"}]}],"outstandingPacketsToProvider":[],"receivedVscPackets":[{"id":{"#bigint":"0"},"sendingTime":{"#bigint":"2"},"validatorSet":{"#map":[["node1",{"#bigint":"50"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]}}]}],["consumer3",{"chainState":{"currentValidatorSet":{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},"lastTimestamp":{"#bigint":"2"},"votingPowerHistory":[{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]}]},"maturationTimes":[],"outstandingPacketsToProvider":[],"receivedVscPackets":[]}]]},"providerState":{"chainState":{"currentValidatorSet":{"#map":[["node1",{"#bigint":"50"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},"lastTimestamp":{"#bigint":"2"},"votingPowerHistory":[{"#map":[["node1",{"#bigint":"50"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]}]},"consumerStatus":{"#map":[["consumer1","running"],["consumer2","running"],["consumer3","running"]]},"outstandingPacketsToConsumer":{"#map":[["consumer1",[{"id":{"#bigint":"0"},"sendingTime":{"#bigint":"2"},"validatorSet":{"#map":[["node1",{"#bigint":"50"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]}}]],["consumer2",[]],["consumer3",[{"id":{"#bigint":"0"},"sendingTime":{"#bigint":"2"},"validatorSet":{"#map":[["node1",{"#bigint":"50"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]}}]]]},"providerValidatorSetChangedInThisBlock":false,"receivedMaturations":{"#set":[]},"runningVscId":{"#bigint":"1"},"sentVscPacketsToConsumer":{"#map":[["consumer1",[{"id":{"#bigint":"0"},"sendingTime":{"#bigint":"2"},"validatorSet":{"#map":[["node1",{"#bigint":"50"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]}}]],["consumer2",[{"id":{"#bigint":"0"},"sendingTime":{"#bigint":"2"},"validatorSet":{"#map":[["node1",{"#bigint":"50"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]}}]],["consumer3",[{"id":{"#bigint":"0"},"sendingTime":{"#bigint":"2"},"validatorSet":{"#map":[["node1",{"#bigint":"50"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]}}]]]}}},"params":{"CcvTimeout":{"#map":[["consumer1",{"#bigint":"1814400"}],["consumer2",{"#bigint":"1814400"}],["consumer3",{"#bigint":"1814400"}],["provider",{"#bigint":"1814400"}]]},"ConsumerChains":{"#set":["consumer1","consumer2","consumer3"]},"InitialValidatorSet":{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},"Nodes":{"#set":["node1","node10","node2","node3","node4","node5","node6","node7","node8","node9"]},"TrustingPeriodPerChain":{"#map":[["consumer1",{"#bigint":"1206000"}],["consumer2",{"#bigint":"1206000"}],["consumer3",{"#bigint":"1206000"}],["provider",{"#bigint":"1206000"}]]},"UnbondingPeriodPerChain":{"#map":[["consumer1",{"#bigint":"1209600"}],["consumer2",{"#bigint":"1209600"}],["consumer3",{"#bigint":"1209600"}],["provider",{"#bigint":"1209600"}]]},"VscTimeout":{"#bigint":"3024000"}},"trace":[{"changeAmount":{"#bigint":"0"},"consumerChain":"","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"init","timeAdvancement":{"#bigint":"0"},"validator":""},{"changeAmount":{"#bigint":"0"},"consumerChain":"","consumersToStart":{"#set":["consumer1","consumer2","consumer3"]},"consumersToStop":{"#set":[]},"kind":"EndAndBeginBlockForProvider","timeAdvancement":{"#bigint":"1"},"validator":""},{"changeAmount":{"#bigint":"0"},"consumerChain":"consumer1","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"EndAndBeginBlockForConsumer","timeAdvancement":{"#bigint":"1"},"validator":""},{"changeAmount":{"#bigint":"0"},"consumerChain":"consumer2","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"EndAndBeginBlockForConsumer","timeAdvancement":{"#bigint":"1"},"validator":""},{"changeAmount":{"#bigint":"0"},"consumerChain":"consumer3","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"EndAndBeginBlockForConsumer","timeAdvancement":{"#bigint":"1"},"validator":""},{"changeAmount":{"#bigint":"-50"},"consumerChain":"","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"VotingPowerChange","timeAdvancement":{"#bigint":"0"},"validator":"node1"},{"changeAmount":{"#bigint":"0"},"consumerChain":"","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"EndAndBeginBlockForProvider","timeAdvancement":{"#bigint":"1"},"validator":""},{"changeAmount":{"#bigint":"0"},"consumerChain":"consumer1","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"EndAndBeginBlockForConsumer","timeAdvancement":{"#bigint":"1"},"validator":""},{"changeAmount":{"#bigint":"0"},"consumerChain":"consumer2","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"EndAndBeginBlockForConsumer","timeAdvancement":{"#bigint":"1"},"validator":""},{"changeAmount":{"#bigint":"0"},"consumerChain":"consumer3","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"EndAndBeginBlockForConsumer","timeAdvancement":{"#bigint":"1"},"validator":""},{"changeAmount":{"#bigint":"0"},"consumerChain":"consumer2","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"DeliverVscPacket","timeAdvancement":{"#bigint":"0"},"validator":""}]},{"#meta":{"index":11},"QueuedEndBlocks":[],"currentState":{"consumerStates":{"#map":[["consumer1",{"chainState":{"currentValidatorSet":{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},"lastTimestamp":{"#bigint":"2"},"votingPowerHistory":[{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]}]},"maturationTimes":[],"outstandingPacketsToProvider":[],"receivedVscPackets":[]}],["consumer2",{"chainState":{"currentValidatorSet":{"#map":[["node1",{"#bigint":"50"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},"lastTimestamp":{"#bigint":"2"},"votingPowerHistory":[{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]}]},"maturationTimes":[{"#tup":[{"id":{"#bigint":"0"},"sendingTime":{"#bigint":"2"},"validatorSet":{"#map":[["node1",{"#bigint":"50"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]}},{"#bigint":"1209602"}]}],"outstandingPacketsToProvider":[],"receivedVscPackets":[{"id":{"#bigint":"0"},"sendingTime":{"#bigint":"2"},"validatorSet":{"#map":[["node1",{"#bigint":"50"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]}}]}],["consumer3",{"chainState":{"currentValidatorSet":{"#map":[["node1",{"#bigint":"50"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},"lastTimestamp":{"#bigint":"2"},"votingPowerHistory":[{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]}]},"maturationTimes":[{"#tup":[{"id":{"#bigint":"0"},"sendingTime":{"#bigint":"2"},"validatorSet":{"#map":[["node1",{"#bigint":"50"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]}},{"#bigint":"1209602"}]}],"outstandingPacketsToProvider":[],"receivedVscPackets":[{"id":{"#bigint":"0"},"sendingTime":{"#bigint":"2"},"validatorSet":{"#map":[["node1",{"#bigint":"50"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]}}]}]]},"providerState":{"chainState":{"currentValidatorSet":{"#map":[["node1",{"#bigint":"50"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},"lastTimestamp":{"#bigint":"2"},"votingPowerHistory":[{"#map":[["node1",{"#bigint":"50"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]}]},"consumerStatus":{"#map":[["consumer1","running"],["consumer2","running"],["consumer3","running"]]},"outstandingPacketsToConsumer":{"#map":[["consumer1",[{"id":{"#bigint":"0"},"sendingTime":{"#bigint":"2"},"validatorSet":{"#map":[["node1",{"#bigint":"50"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]}}]],["consumer2",[]],["consumer3",[]]]},"providerValidatorSetChangedInThisBlock":false,"receivedMaturations":{"#set":[]},"runningVscId":{"#bigint":"1"},"sentVscPacketsToConsumer":{"#map":[["consumer1",[{"id":{"#bigint":"0"},"sendingTime":{"#bigint":"2"},"validatorSet":{"#map":[["node1",{"#bigint":"50"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]}}]],["consumer2",[{"id":{"#bigint":"0"},"sendingTime":{"#bigint":"2"},"validatorSet":{"#map":[["node1",{"#bigint":"50"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]}}]],["consumer3",[{"id":{"#bigint":"0"},"sendingTime":{"#bigint":"2"},"validatorSet":{"#map":[["node1",{"#bigint":"50"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]}}]]]}}},"params":{"CcvTimeout":{"#map":[["consumer1",{"#bigint":"1814400"}],["consumer2",{"#bigint":"1814400"}],["consumer3",{"#bigint":"1814400"}],["provider",{"#bigint":"1814400"}]]},"ConsumerChains":{"#set":["consumer1","consumer2","consumer3"]},"InitialValidatorSet":{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},"Nodes":{"#set":["node1","node10","node2","node3","node4","node5","node6","node7","node8","node9"]},"TrustingPeriodPerChain":{"#map":[["consumer1",{"#bigint":"1206000"}],["consumer2",{"#bigint":"1206000"}],["consumer3",{"#bigint":"1206000"}],["provider",{"#bigint":"1206000"}]]},"UnbondingPeriodPerChain":{"#map":[["consumer1",{"#bigint":"1209600"}],["consumer2",{"#bigint":"1209600"}],["consumer3",{"#bigint":"1209600"}],["provider",{"#bigint":"1209600"}]]},"VscTimeout":{"#bigint":"3024000"}},"trace":[{"changeAmount":{"#bigint":"0"},"consumerChain":"","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"init","timeAdvancement":{"#bigint":"0"},"validator":""},{"changeAmount":{"#bigint":"0"},"consumerChain":"","consumersToStart":{"#set":["consumer1","consumer2","consumer3"]},"consumersToStop":{"#set":[]},"kind":"EndAndBeginBlockForProvider","timeAdvancement":{"#bigint":"1"},"validator":""},{"changeAmount":{"#bigint":"0"},"consumerChain":"consumer1","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"EndAndBeginBlockForConsumer","timeAdvancement":{"#bigint":"1"},"validator":""},{"changeAmount":{"#bigint":"0"},"consumerChain":"consumer2","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"EndAndBeginBlockForConsumer","timeAdvancement":{"#bigint":"1"},"validator":""},{"changeAmount":{"#bigint":"0"},"consumerChain":"consumer3","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"EndAndBeginBlockForConsumer","timeAdvancement":{"#bigint":"1"},"validator":""},{"changeAmount":{"#bigint":"-50"},"consumerChain":"","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"VotingPowerChange","timeAdvancement":{"#bigint":"0"},"validator":"node1"},{"changeAmount":{"#bigint":"0"},"consumerChain":"","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"EndAndBeginBlockForProvider","timeAdvancement":{"#bigint":"1"},"validator":""},{"changeAmount":{"#bigint":"0"},"consumerChain":"consumer1","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"EndAndBeginBlockForConsumer","timeAdvancement":{"#bigint":"1"},"validator":""},{"changeAmount":{"#bigint":"0"},"consumerChain":"consumer2","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"EndAndBeginBlockForConsumer","timeAdvancement":{"#bigint":"1"},"validator":""},{"changeAmount":{"#bigint":"0"},"consumerChain":"consumer3","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"EndAndBeginBlockForConsumer","timeAdvancement":{"#bigint":"1"},"validator":""},{"changeAmount":{"#bigint":"0"},"consumerChain":"consumer2","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"DeliverVscPacket","timeAdvancement":{"#bigint":"0"},"validator":""},{"changeAmount":{"#bigint":"0"},"consumerChain":"consumer3","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"DeliverVscPacket","timeAdvancement":{"#bigint":"0"},"validator":""}]},{"#meta":{"index":12},"QueuedEndBlocks":[{"#tup":["consumer1",{"#bigint":"601200"}]},{"#tup":["consumer2",{"#bigint":"601200"}]},{"#tup":["consumer3",{"#bigint":"601200"}]}],"currentState":{"consumerStates":{"#map":[["consumer1",{"chainState":{"currentValidatorSet":{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},"lastTimestamp":{"#bigint":"2"},"votingPowerHistory":[{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]}]},"maturationTimes":[],"outstandingPacketsToProvider":[],"receivedVscPackets":[]}],["consumer2",{"chainState":{"currentValidatorSet":{"#map":[["node1",{"#bigint":"50"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},"lastTimestamp":{"#bigint":"2"},"votingPowerHistory":[{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]}]},"maturationTimes":[{"#tup":[{"id":{"#bigint":"0"},"sendingTime":{"#bigint":"2"},"validatorSet":{"#map":[["node1",{"#bigint":"50"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]}},{"#bigint":"1209602"}]}],"outstandingPacketsToProvider":[],"receivedVscPackets":[{"id":{"#bigint":"0"},"sendingTime":{"#bigint":"2"},"validatorSet":{"#map":[["node1",{"#bigint":"50"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]}}]}],["consumer3",{"chainState":{"currentValidatorSet":{"#map":[["node1",{"#bigint":"50"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},"lastTimestamp":{"#bigint":"2"},"votingPowerHistory":[{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]}]},"maturationTimes":[{"#tup":[{"id":{"#bigint":"0"},"sendingTime":{"#bigint":"2"},"validatorSet":{"#map":[["node1",{"#bigint":"50"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]}},{"#bigint":"1209602"}]}],"outstandingPacketsToProvider":[],"receivedVscPackets":[{"id":{"#bigint":"0"},"sendingTime":{"#bigint":"2"},"validatorSet":{"#map":[["node1",{"#bigint":"50"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]}}]}]]},"providerState":{"chainState":{"currentValidatorSet":{"#map":[["node1",{"#bigint":"50"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},"lastTimestamp":{"#bigint":"601202"},"votingPowerHistory":[{"#map":[["node1",{"#bigint":"50"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},{"#map":[["node1",{"#bigint":"50"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]}]},"consumerStatus":{"#map":[["consumer1","running"],["consumer2","running"],["consumer3","running"]]},"outstandingPacketsToConsumer":{"#map":[["consumer1",[{"id":{"#bigint":"0"},"sendingTime":{"#bigint":"2"},"validatorSet":{"#map":[["node1",{"#bigint":"50"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]}}]],["consumer2",[]],["consumer3",[]]]},"providerValidatorSetChangedInThisBlock":false,"receivedMaturations":{"#set":[]},"runningVscId":{"#bigint":"1"},"sentVscPacketsToConsumer":{"#map":[["consumer1",[{"id":{"#bigint":"0"},"sendingTime":{"#bigint":"2"},"validatorSet":{"#map":[["node1",{"#bigint":"50"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]}}]],["consumer2",[{"id":{"#bigint":"0"},"sendingTime":{"#bigint":"2"},"validatorSet":{"#map":[["node1",{"#bigint":"50"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]}}]],["consumer3",[{"id":{"#bigint":"0"},"sendingTime":{"#bigint":"2"},"validatorSet":{"#map":[["node1",{"#bigint":"50"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]}}]]]}}},"params":{"CcvTimeout":{"#map":[["consumer1",{"#bigint":"1814400"}],["consumer2",{"#bigint":"1814400"}],["consumer3",{"#bigint":"1814400"}],["provider",{"#bigint":"1814400"}]]},"ConsumerChains":{"#set":["consumer1","consumer2","consumer3"]},"InitialValidatorSet":{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},"Nodes":{"#set":["node1","node10","node2","node3","node4","node5","node6","node7","node8","node9"]},"TrustingPeriodPerChain":{"#map":[["consumer1",{"#bigint":"1206000"}],["consumer2",{"#bigint":"1206000"}],["consumer3",{"#bigint":"1206000"}],["provider",{"#bigint":"1206000"}]]},"UnbondingPeriodPerChain":{"#map":[["consumer1",{"#bigint":"1209600"}],["consumer2",{"#bigint":"1209600"}],["consumer3",{"#bigint":"1209600"}],["provider",{"#bigint":"1209600"}]]},"VscTimeout":{"#bigint":"3024000"}},"trace":[{"changeAmount":{"#bigint":"0"},"consumerChain":"","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"init","timeAdvancement":{"#bigint":"0"},"validator":""},{"changeAmount":{"#bigint":"0"},"consumerChain":"","consumersToStart":{"#set":["consumer1","consumer2","consumer3"]},"consumersToStop":{"#set":[]},"kind":"EndAndBeginBlockForProvider","timeAdvancement":{"#bigint":"1"},"validator":""},{"changeAmount":{"#bigint":"0"},"consumerChain":"consumer1","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"EndAndBeginBlockForConsumer","timeAdvancement":{"#bigint":"1"},"validator":""},{"changeAmount":{"#bigint":"0"},"consumerChain":"consumer2","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"EndAndBeginBlockForConsumer","timeAdvancement":{"#bigint":"1"},"validator":""},{"changeAmount":{"#bigint":"0"},"consumerChain":"consumer3","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"EndAndBeginBlockForConsumer","timeAdvancement":{"#bigint":"1"},"validator":""},{"changeAmount":{"#bigint":"-50"},"consumerChain":"","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"VotingPowerChange","timeAdvancement":{"#bigint":"0"},"validator":"node1"},{"changeAmount":{"#bigint":"0"},"consumerChain":"","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"EndAndBeginBlockForProvider","timeAdvancement":{"#bigint":"1"},"validator":""},{"changeAmount":{"#bigint":"0"},"consumerChain":"consumer1","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"EndAndBeginBlockForConsumer","timeAdvancement":{"#bigint":"1"},"validator":""},{"changeAmount":{"#bigint":"0"},"consumerChain":"consumer2","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"EndAndBeginBlockForConsumer","timeAdvancement":{"#bigint":"1"},"validator":""},{"changeAmount":{"#bigint":"0"},"consumerChain":"consumer3","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"EndAndBeginBlockForConsumer","timeAdvancement":{"#bigint":"1"},"validator":""},{"changeAmount":{"#bigint":"0"},"consumerChain":"consumer2","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"DeliverVscPacket","timeAdvancement":{"#bigint":"0"},"validator":""},{"changeAmount":{"#bigint":"0"},"consumerChain":"consumer3","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"DeliverVscPacket","timeAdvancement":{"#bigint":"0"},"validator":""},{"changeAmount":{"#bigint":"0"},"consumerChain":"","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"EndAndBeginBlockForProvider","timeAdvancement":{"#bigint":"601200"},"validator":""}]},{"#meta":{"index":13},"QueuedEndBlocks":[{"#tup":["consumer2",{"#bigint":"601200"}]},{"#tup":["consumer3",{"#bigint":"601200"}]}],"currentState":{"consumerStates":{"#map":[["consumer1",{"chainState":{"currentValidatorSet":{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},"lastTimestamp":{"#bigint":"601202"},"votingPowerHistory":[{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]}]},"maturationTimes":[],"outstandingPacketsToProvider":[],"receivedVscPackets":[]}],["consumer2",{"chainState":{"currentValidatorSet":{"#map":[["node1",{"#bigint":"50"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},"lastTimestamp":{"#bigint":"2"},"votingPowerHistory":[{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]}]},"maturationTimes":[{"#tup":[{"id":{"#bigint":"0"},"sendingTime":{"#bigint":"2"},"validatorSet":{"#map":[["node1",{"#bigint":"50"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]}},{"#bigint":"1209602"}]}],"outstandingPacketsToProvider":[],"receivedVscPackets":[{"id":{"#bigint":"0"},"sendingTime":{"#bigint":"2"},"validatorSet":{"#map":[["node1",{"#bigint":"50"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]}}]}],["consumer3",{"chainState":{"currentValidatorSet":{"#map":[["node1",{"#bigint":"50"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},"lastTimestamp":{"#bigint":"2"},"votingPowerHistory":[{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]}]},"maturationTimes":[{"#tup":[{"id":{"#bigint":"0"},"sendingTime":{"#bigint":"2"},"validatorSet":{"#map":[["node1",{"#bigint":"50"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]}},{"#bigint":"1209602"}]}],"outstandingPacketsToProvider":[],"receivedVscPackets":[{"id":{"#bigint":"0"},"sendingTime":{"#bigint":"2"},"validatorSet":{"#map":[["node1",{"#bigint":"50"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]}}]}]]},"providerState":{"chainState":{"currentValidatorSet":{"#map":[["node1",{"#bigint":"50"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},"lastTimestamp":{"#bigint":"601202"},"votingPowerHistory":[{"#map":[["node1",{"#bigint":"50"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},{"#map":[["node1",{"#bigint":"50"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]}]},"consumerStatus":{"#map":[["consumer1","running"],["consumer2","running"],["consumer3","running"]]},"outstandingPacketsToConsumer":{"#map":[["consumer1",[{"id":{"#bigint":"0"},"sendingTime":{"#bigint":"2"},"validatorSet":{"#map":[["node1",{"#bigint":"50"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]}}]],["consumer2",[]],["consumer3",[]]]},"providerValidatorSetChangedInThisBlock":false,"receivedMaturations":{"#set":[]},"runningVscId":{"#bigint":"1"},"sentVscPacketsToConsumer":{"#map":[["consumer1",[{"id":{"#bigint":"0"},"sendingTime":{"#bigint":"2"},"validatorSet":{"#map":[["node1",{"#bigint":"50"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]}}]],["consumer2",[{"id":{"#bigint":"0"},"sendingTime":{"#bigint":"2"},"validatorSet":{"#map":[["node1",{"#bigint":"50"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]}}]],["consumer3",[{"id":{"#bigint":"0"},"sendingTime":{"#bigint":"2"},"validatorSet":{"#map":[["node1",{"#bigint":"50"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]}}]]]}}},"params":{"CcvTimeout":{"#map":[["consumer1",{"#bigint":"1814400"}],["consumer2",{"#bigint":"1814400"}],["consumer3",{"#bigint":"1814400"}],["provider",{"#bigint":"1814400"}]]},"ConsumerChains":{"#set":["consumer1","consumer2","consumer3"]},"InitialValidatorSet":{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},"Nodes":{"#set":["node1","node10","node2","node3","node4","node5","node6","node7","node8","node9"]},"TrustingPeriodPerChain":{"#map":[["consumer1",{"#bigint":"1206000"}],["consumer2",{"#bigint":"1206000"}],["consumer3",{"#bigint":"1206000"}],["provider",{"#bigint":"1206000"}]]},"UnbondingPeriodPerChain":{"#map":[["consumer1",{"#bigint":"1209600"}],["consumer2",{"#bigint":"1209600"}],["consumer3",{"#bigint":"1209600"}],["provider",{"#bigint":"1209600"}]]},"VscTimeout":{"#bigint":"3024000"}},"trace":[{"changeAmount":{"#bigint":"0"},"consumerChain":"","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"init","timeAdvancement":{"#bigint":"0"},"validator":""},{"changeAmount":{"#bigint":"0"},"consumerChain":"","consumersToStart":{"#set":["consumer1","consumer2","consumer3"]},"consumersToStop":{"#set":[]},"kind":"EndAndBeginBlockForProvider","timeAdvancement":{"#bigint":"1"},"validator":""},{"changeAmount":{"#bigint":"0"},"consumerChain":"consumer1","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"EndAndBeginBlockForConsumer","timeAdvancement":{"#bigint":"1"},"validator":""},{"changeAmount":{"#bigint":"0"},"consumerChain":"consumer2","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"EndAndBeginBlockForConsumer","timeAdvancement":{"#bigint":"1"},"validator":""},{"changeAmount":{"#bigint":"0"},"consumerChain":"consumer3","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"EndAndBeginBlockForConsumer","timeAdvancement":{"#bigint":"1"},"validator":""},{"changeAmount":{"#bigint":"-50"},"consumerChain":"","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"VotingPowerChange","timeAdvancement":{"#bigint":"0"},"validator":"node1"},{"changeAmount":{"#bigint":"0"},"consumerChain":"","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"EndAndBeginBlockForProvider","timeAdvancement":{"#bigint":"1"},"validator":""},{"changeAmount":{"#bigint":"0"},"consumerChain":"consumer1","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"EndAndBeginBlockForConsumer","timeAdvancement":{"#bigint":"1"},"validator":""},{"changeAmount":{"#bigint":"0"},"consumerChain":"consumer2","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"EndAndBeginBlockForConsumer","timeAdvancement":{"#bigint":"1"},"validator":""},{"changeAmount":{"#bigint":"0"},"consumerChain":"consumer3","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"EndAndBeginBlockForConsumer","timeAdvancement":{"#bigint":"1"},"validator":""},{"changeAmount":{"#bigint":"0"},"consumerChain":"consumer2","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"DeliverVscPacket","timeAdvancement":{"#bigint":"0"},"validator":""},{"changeAmount":{"#bigint":"0"},"consumerChain":"consumer3","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"DeliverVscPacket","timeAdvancement":{"#bigint":"0"},"validator":""},{"changeAmount":{"#bigint":"0"},"consumerChain":"","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"EndAndBeginBlockForProvider","timeAdvancement":{"#bigint":"601200"},"validator":""},{"changeAmount":{"#bigint":"0"},"consumerChain":"consumer1","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"EndAndBeginBlockForConsumer","timeAdvancement":{"#bigint":"601200"},"validator":""}]},{"#meta":{"index":14},"QueuedEndBlocks":[{"#tup":["consumer3",{"#bigint":"601200"}]}],"currentState":{"consumerStates":{"#map":[["consumer1",{"chainState":{"currentValidatorSet":{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},"lastTimestamp":{"#bigint":"601202"},"votingPowerHistory":[{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]}]},"maturationTimes":[],"outstandingPacketsToProvider":[],"receivedVscPackets":[]}],["consumer2",{"chainState":{"currentValidatorSet":{"#map":[["node1",{"#bigint":"50"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},"lastTimestamp":{"#bigint":"601202"},"votingPowerHistory":[{"#map":[["node1",{"#bigint":"50"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]}]},"maturationTimes":[{"#tup":[{"id":{"#bigint":"0"},"sendingTime":{"#bigint":"2"},"validatorSet":{"#map":[["node1",{"#bigint":"50"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]}},{"#bigint":"1209602"}]}],"outstandingPacketsToProvider":[],"receivedVscPackets":[{"id":{"#bigint":"0"},"sendingTime":{"#bigint":"2"},"validatorSet":{"#map":[["node1",{"#bigint":"50"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]}}]}],["consumer3",{"chainState":{"currentValidatorSet":{"#map":[["node1",{"#bigint":"50"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},"lastTimestamp":{"#bigint":"2"},"votingPowerHistory":[{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]}]},"maturationTimes":[{"#tup":[{"id":{"#bigint":"0"},"sendingTime":{"#bigint":"2"},"validatorSet":{"#map":[["node1",{"#bigint":"50"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]}},{"#bigint":"1209602"}]}],"outstandingPacketsToProvider":[],"receivedVscPackets":[{"id":{"#bigint":"0"},"sendingTime":{"#bigint":"2"},"validatorSet":{"#map":[["node1",{"#bigint":"50"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]}}]}]]},"providerState":{"chainState":{"currentValidatorSet":{"#map":[["node1",{"#bigint":"50"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},"lastTimestamp":{"#bigint":"601202"},"votingPowerHistory":[{"#map":[["node1",{"#bigint":"50"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},{"#map":[["node1",{"#bigint":"50"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]}]},"consumerStatus":{"#map":[["consumer1","running"],["consumer2","running"],["consumer3","running"]]},"outstandingPacketsToConsumer":{"#map":[["consumer1",[{"id":{"#bigint":"0"},"sendingTime":{"#bigint":"2"},"validatorSet":{"#map":[["node1",{"#bigint":"50"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]}}]],["consumer2",[]],["consumer3",[]]]},"providerValidatorSetChangedInThisBlock":false,"receivedMaturations":{"#set":[]},"runningVscId":{"#bigint":"1"},"sentVscPacketsToConsumer":{"#map":[["consumer1",[{"id":{"#bigint":"0"},"sendingTime":{"#bigint":"2"},"validatorSet":{"#map":[["node1",{"#bigint":"50"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]}}]],["consumer2",[{"id":{"#bigint":"0"},"sendingTime":{"#bigint":"2"},"validatorSet":{"#map":[["node1",{"#bigint":"50"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]}}]],["consumer3",[{"id":{"#bigint":"0"},"sendingTime":{"#bigint":"2"},"validatorSet":{"#map":[["node1",{"#bigint":"50"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]}}]]]}}},"params":{"CcvTimeout":{"#map":[["consumer1",{"#bigint":"1814400"}],["consumer2",{"#bigint":"1814400"}],["consumer3",{"#bigint":"1814400"}],["provider",{"#bigint":"1814400"}]]},"ConsumerChains":{"#set":["consumer1","consumer2","consumer3"]},"InitialValidatorSet":{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},"Nodes":{"#set":["node1","node10","node2","node3","node4","node5","node6","node7","node8","node9"]},"TrustingPeriodPerChain":{"#map":[["consumer1",{"#bigint":"1206000"}],["consumer2",{"#bigint":"1206000"}],["consumer3",{"#bigint":"1206000"}],["provider",{"#bigint":"1206000"}]]},"UnbondingPeriodPerChain":{"#map":[["consumer1",{"#bigint":"1209600"}],["consumer2",{"#bigint":"1209600"}],["consumer3",{"#bigint":"1209600"}],["provider",{"#bigint":"1209600"}]]},"VscTimeout":{"#bigint":"3024000"}},"trace":[{"changeAmount":{"#bigint":"0"},"consumerChain":"","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"init","timeAdvancement":{"#bigint":"0"},"validator":""},{"changeAmount":{"#bigint":"0"},"consumerChain":"","consumersToStart":{"#set":["consumer1","consumer2","consumer3"]},"consumersToStop":{"#set":[]},"kind":"EndAndBeginBlockForProvider","timeAdvancement":{"#bigint":"1"},"validator":""},{"changeAmount":{"#bigint":"0"},"consumerChain":"consumer1","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"EndAndBeginBlockForConsumer","timeAdvancement":{"#bigint":"1"},"validator":""},{"changeAmount":{"#bigint":"0"},"consumerChain":"consumer2","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"EndAndBeginBlockForConsumer","timeAdvancement":{"#bigint":"1"},"validator":""},{"changeAmount":{"#bigint":"0"},"consumerChain":"consumer3","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"EndAndBeginBlockForConsumer","timeAdvancement":{"#bigint":"1"},"validator":""},{"changeAmount":{"#bigint":"-50"},"consumerChain":"","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"VotingPowerChange","timeAdvancement":{"#bigint":"0"},"validator":"node1"},{"changeAmount":{"#bigint":"0"},"consumerChain":"","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"EndAndBeginBlockForProvider","timeAdvancement":{"#bigint":"1"},"validator":""},{"changeAmount":{"#bigint":"0"},"consumerChain":"consumer1","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"EndAndBeginBlockForConsumer","timeAdvancement":{"#bigint":"1"},"validator":""},{"changeAmount":{"#bigint":"0"},"consumerChain":"consumer2","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"EndAndBeginBlockForConsumer","timeAdvancement":{"#bigint":"1"},"validator":""},{"changeAmount":{"#bigint":"0"},"consumerChain":"consumer3","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"EndAndBeginBlockForConsumer","timeAdvancement":{"#bigint":"1"},"validator":""},{"changeAmount":{"#bigint":"0"},"consumerChain":"consumer2","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"DeliverVscPacket","timeAdvancement":{"#bigint":"0"},"validator":""},{"changeAmount":{"#bigint":"0"},"consumerChain":"consumer3","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"DeliverVscPacket","timeAdvancement":{"#bigint":"0"},"validator":""},{"changeAmount":{"#bigint":"0"},"consumerChain":"","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"EndAndBeginBlockForProvider","timeAdvancement":{"#bigint":"601200"},"validator":""},{"changeAmount":{"#bigint":"0"},"consumerChain":"consumer1","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"EndAndBeginBlockForConsumer","timeAdvancement":{"#bigint":"601200"},"validator":""},{"changeAmount":{"#bigint":"0"},"consumerChain":"consumer2","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"EndAndBeginBlockForConsumer","timeAdvancement":{"#bigint":"601200"},"validator":""}]},{"#meta":{"index":15},"QueuedEndBlocks":[],"currentState":{"consumerStates":{"#map":[["consumer1",{"chainState":{"currentValidatorSet":{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},"lastTimestamp":{"#bigint":"601202"},"votingPowerHistory":[{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]}]},"maturationTimes":[],"outstandingPacketsToProvider":[],"receivedVscPackets":[]}],["consumer2",{"chainState":{"currentValidatorSet":{"#map":[["node1",{"#bigint":"50"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},"lastTimestamp":{"#bigint":"601202"},"votingPowerHistory":[{"#map":[["node1",{"#bigint":"50"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]}]},"maturationTimes":[{"#tup":[{"id":{"#bigint":"0"},"sendingTime":{"#bigint":"2"},"validatorSet":{"#map":[["node1",{"#bigint":"50"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]}},{"#bigint":"1209602"}]}],"outstandingPacketsToProvider":[],"receivedVscPackets":[{"id":{"#bigint":"0"},"sendingTime":{"#bigint":"2"},"validatorSet":{"#map":[["node1",{"#bigint":"50"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]}}]}],["consumer3",{"chainState":{"currentValidatorSet":{"#map":[["node1",{"#bigint":"50"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},"lastTimestamp":{"#bigint":"601202"},"votingPowerHistory":[{"#map":[["node1",{"#bigint":"50"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]}]},"maturationTimes":[{"#tup":[{"id":{"#bigint":"0"},"sendingTime":{"#bigint":"2"},"validatorSet":{"#map":[["node1",{"#bigint":"50"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]}},{"#bigint":"1209602"}]}],"outstandingPacketsToProvider":[],"receivedVscPackets":[{"id":{"#bigint":"0"},"sendingTime":{"#bigint":"2"},"validatorSet":{"#map":[["node1",{"#bigint":"50"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]}}]}]]},"providerState":{"chainState":{"currentValidatorSet":{"#map":[["node1",{"#bigint":"50"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},"lastTimestamp":{"#bigint":"601202"},"votingPowerHistory":[{"#map":[["node1",{"#bigint":"50"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},{"#map":[["node1",{"#bigint":"50"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]}]},"consumerStatus":{"#map":[["consumer1","running"],["consumer2","running"],["consumer3","running"]]},"outstandingPacketsToConsumer":{"#map":[["consumer1",[{"id":{"#bigint":"0"},"sendingTime":{"#bigint":"2"},"validatorSet":{"#map":[["node1",{"#bigint":"50"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]}}]],["consumer2",[]],["consumer3",[]]]},"providerValidatorSetChangedInThisBlock":false,"receivedMaturations":{"#set":[]},"runningVscId":{"#bigint":"1"},"sentVscPacketsToConsumer":{"#map":[["consumer1",[{"id":{"#bigint":"0"},"sendingTime":{"#bigint":"2"},"validatorSet":{"#map":[["node1",{"#bigint":"50"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]}}]],["consumer2",[{"id":{"#bigint":"0"},"sendingTime":{"#bigint":"2"},"validatorSet":{"#map":[["node1",{"#bigint":"50"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]}}]],["consumer3",[{"id":{"#bigint":"0"},"sendingTime":{"#bigint":"2"},"validatorSet":{"#map":[["node1",{"#bigint":"50"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]}}]]]}}},"params":{"CcvTimeout":{"#map":[["consumer1",{"#bigint":"1814400"}],["consumer2",{"#bigint":"1814400"}],["consumer3",{"#bigint":"1814400"}],["provider",{"#bigint":"1814400"}]]},"ConsumerChains":{"#set":["consumer1","consumer2","consumer3"]},"InitialValidatorSet":{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},"Nodes":{"#set":["node1","node10","node2","node3","node4","node5","node6","node7","node8","node9"]},"TrustingPeriodPerChain":{"#map":[["consumer1",{"#bigint":"1206000"}],["consumer2",{"#bigint":"1206000"}],["consumer3",{"#bigint":"1206000"}],["provider",{"#bigint":"1206000"}]]},"UnbondingPeriodPerChain":{"#map":[["consumer1",{"#bigint":"1209600"}],["consumer2",{"#bigint":"1209600"}],["consumer3",{"#bigint":"1209600"}],["provider",{"#bigint":"1209600"}]]},"VscTimeout":{"#bigint":"3024000"}},"trace":[{"changeAmount":{"#bigint":"0"},"consumerChain":"","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"init","timeAdvancement":{"#bigint":"0"},"validator":""},{"changeAmount":{"#bigint":"0"},"consumerChain":"","consumersToStart":{"#set":["consumer1","consumer2","consumer3"]},"consumersToStop":{"#set":[]},"kind":"EndAndBeginBlockForProvider","timeAdvancement":{"#bigint":"1"},"validator":""},{"changeAmount":{"#bigint":"0"},"consumerChain":"consumer1","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"EndAndBeginBlockForConsumer","timeAdvancement":{"#bigint":"1"},"validator":""},{"changeAmount":{"#bigint":"0"},"consumerChain":"consumer2","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"EndAndBeginBlockForConsumer","timeAdvancement":{"#bigint":"1"},"validator":""},{"changeAmount":{"#bigint":"0"},"consumerChain":"consumer3","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"EndAndBeginBlockForConsumer","timeAdvancement":{"#bigint":"1"},"validator":""},{"changeAmount":{"#bigint":"-50"},"consumerChain":"","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"VotingPowerChange","timeAdvancement":{"#bigint":"0"},"validator":"node1"},{"changeAmount":{"#bigint":"0"},"consumerChain":"","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"EndAndBeginBlockForProvider","timeAdvancement":{"#bigint":"1"},"validator":""},{"changeAmount":{"#bigint":"0"},"consumerChain":"consumer1","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"EndAndBeginBlockForConsumer","timeAdvancement":{"#bigint":"1"},"validator":""},{"changeAmount":{"#bigint":"0"},"consumerChain":"consumer2","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"EndAndBeginBlockForConsumer","timeAdvancement":{"#bigint":"1"},"validator":""},{"changeAmount":{"#bigint":"0"},"consumerChain":"consumer3","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"EndAndBeginBlockForConsumer","timeAdvancement":{"#bigint":"1"},"validator":""},{"changeAmount":{"#bigint":"0"},"consumerChain":"consumer2","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"DeliverVscPacket","timeAdvancement":{"#bigint":"0"},"validator":""},{"changeAmount":{"#bigint":"0"},"consumerChain":"consumer3","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"DeliverVscPacket","timeAdvancement":{"#bigint":"0"},"validator":""},{"changeAmount":{"#bigint":"0"},"consumerChain":"","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"EndAndBeginBlockForProvider","timeAdvancement":{"#bigint":"601200"},"validator":""},{"changeAmount":{"#bigint":"0"},"consumerChain":"consumer1","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"EndAndBeginBlockForConsumer","timeAdvancement":{"#bigint":"601200"},"validator":""},{"changeAmount":{"#bigint":"0"},"consumerChain":"consumer2","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"EndAndBeginBlockForConsumer","timeAdvancement":{"#bigint":"601200"},"validator":""},{"changeAmount":{"#bigint":"0"},"consumerChain":"consumer3","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"EndAndBeginBlockForConsumer","timeAdvancement":{"#bigint":"601200"},"validator":""}]},{"#meta":{"index":16},"QueuedEndBlocks":[{"#tup":["consumer1",{"#bigint":"601200"}]},{"#tup":["consumer2",{"#bigint":"601200"}]},{"#tup":["consumer3",{"#bigint":"601200"}]}],"currentState":{"consumerStates":{"#map":[["consumer1",{"chainState":{"currentValidatorSet":{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},"lastTimestamp":{"#bigint":"601202"},"votingPowerHistory":[{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]}]},"maturationTimes":[],"outstandingPacketsToProvider":[],"receivedVscPackets":[]}],["consumer2",{"chainState":{"currentValidatorSet":{"#map":[["node1",{"#bigint":"50"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},"lastTimestamp":{"#bigint":"601202"},"votingPowerHistory":[{"#map":[["node1",{"#bigint":"50"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]}]},"maturationTimes":[{"#tup":[{"id":{"#bigint":"0"},"sendingTime":{"#bigint":"2"},"validatorSet":{"#map":[["node1",{"#bigint":"50"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]}},{"#bigint":"1209602"}]}],"outstandingPacketsToProvider":[],"receivedVscPackets":[{"id":{"#bigint":"0"},"sendingTime":{"#bigint":"2"},"validatorSet":{"#map":[["node1",{"#bigint":"50"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]}}]}],["consumer3",{"chainState":{"currentValidatorSet":{"#map":[["node1",{"#bigint":"50"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},"lastTimestamp":{"#bigint":"601202"},"votingPowerHistory":[{"#map":[["node1",{"#bigint":"50"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]}]},"maturationTimes":[{"#tup":[{"id":{"#bigint":"0"},"sendingTime":{"#bigint":"2"},"validatorSet":{"#map":[["node1",{"#bigint":"50"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]}},{"#bigint":"1209602"}]}],"outstandingPacketsToProvider":[],"receivedVscPackets":[{"id":{"#bigint":"0"},"sendingTime":{"#bigint":"2"},"validatorSet":{"#map":[["node1",{"#bigint":"50"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]}}]}]]},"providerState":{"chainState":{"currentValidatorSet":{"#map":[["node1",{"#bigint":"50"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},"lastTimestamp":{"#bigint":"1202402"},"votingPowerHistory":[{"#map":[["node1",{"#bigint":"50"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},{"#map":[["node1",{"#bigint":"50"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},{"#map":[["node1",{"#bigint":"50"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]}]},"consumerStatus":{"#map":[["consumer1","running"],["consumer2","running"],["consumer3","running"]]},"outstandingPacketsToConsumer":{"#map":[["consumer1",[{"id":{"#bigint":"0"},"sendingTime":{"#bigint":"2"},"validatorSet":{"#map":[["node1",{"#bigint":"50"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]}}]],["consumer2",[]],["consumer3",[]]]},"providerValidatorSetChangedInThisBlock":false,"receivedMaturations":{"#set":[]},"runningVscId":{"#bigint":"1"},"sentVscPacketsToConsumer":{"#map":[["consumer1",[{"id":{"#bigint":"0"},"sendingTime":{"#bigint":"2"},"validatorSet":{"#map":[["node1",{"#bigint":"50"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]}}]],["consumer2",[{"id":{"#bigint":"0"},"sendingTime":{"#bigint":"2"},"validatorSet":{"#map":[["node1",{"#bigint":"50"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]}}]],["consumer3",[{"id":{"#bigint":"0"},"sendingTime":{"#bigint":"2"},"validatorSet":{"#map":[["node1",{"#bigint":"50"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]}}]]]}}},"params":{"CcvTimeout":{"#map":[["consumer1",{"#bigint":"1814400"}],["consumer2",{"#bigint":"1814400"}],["consumer3",{"#bigint":"1814400"}],["provider",{"#bigint":"1814400"}]]},"ConsumerChains":{"#set":["consumer1","consumer2","consumer3"]},"InitialValidatorSet":{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},"Nodes":{"#set":["node1","node10","node2","node3","node4","node5","node6","node7","node8","node9"]},"TrustingPeriodPerChain":{"#map":[["consumer1",{"#bigint":"1206000"}],["consumer2",{"#bigint":"1206000"}],["consumer3",{"#bigint":"1206000"}],["provider",{"#bigint":"1206000"}]]},"UnbondingPeriodPerChain":{"#map":[["consumer1",{"#bigint":"1209600"}],["consumer2",{"#bigint":"1209600"}],["consumer3",{"#bigint":"1209600"}],["provider",{"#bigint":"1209600"}]]},"VscTimeout":{"#bigint":"3024000"}},"trace":[{"changeAmount":{"#bigint":"0"},"consumerChain":"","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"init","timeAdvancement":{"#bigint":"0"},"validator":""},{"changeAmount":{"#bigint":"0"},"consumerChain":"","consumersToStart":{"#set":["consumer1","consumer2","consumer3"]},"consumersToStop":{"#set":[]},"kind":"EndAndBeginBlockForProvider","timeAdvancement":{"#bigint":"1"},"validator":""},{"changeAmount":{"#bigint":"0"},"consumerChain":"consumer1","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"EndAndBeginBlockForConsumer","timeAdvancement":{"#bigint":"1"},"validator":""},{"changeAmount":{"#bigint":"0"},"consumerChain":"consumer2","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"EndAndBeginBlockForConsumer","timeAdvancement":{"#bigint":"1"},"validator":""},{"changeAmount":{"#bigint":"0"},"consumerChain":"consumer3","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"EndAndBeginBlockForConsumer","timeAdvancement":{"#bigint":"1"},"validator":""},{"changeAmount":{"#bigint":"-50"},"consumerChain":"","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"VotingPowerChange","timeAdvancement":{"#bigint":"0"},"validator":"node1"},{"changeAmount":{"#bigint":"0"},"consumerChain":"","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"EndAndBeginBlockForProvider","timeAdvancement":{"#bigint":"1"},"validator":""},{"changeAmount":{"#bigint":"0"},"consumerChain":"consumer1","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"EndAndBeginBlockForConsumer","timeAdvancement":{"#bigint":"1"},"validator":""},{"changeAmount":{"#bigint":"0"},"consumerChain":"consumer2","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"EndAndBeginBlockForConsumer","timeAdvancement":{"#bigint":"1"},"validator":""},{"changeAmount":{"#bigint":"0"},"consumerChain":"consumer3","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"EndAndBeginBlockForConsumer","timeAdvancement":{"#bigint":"1"},"validator":""},{"changeAmount":{"#bigint":"0"},"consumerChain":"consumer2","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"DeliverVscPacket","timeAdvancement":{"#bigint":"0"},"validator":""},{"changeAmount":{"#bigint":"0"},"consumerChain":"consumer3","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"DeliverVscPacket","timeAdvancement":{"#bigint":"0"},"validator":""},{"changeAmount":{"#bigint":"0"},"consumerChain":"","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"EndAndBeginBlockForProvider","timeAdvancement":{"#bigint":"601200"},"validator":""},{"changeAmount":{"#bigint":"0"},"consumerChain":"consumer1","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"EndAndBeginBlockForConsumer","timeAdvancement":{"#bigint":"601200"},"validator":""},{"changeAmount":{"#bigint":"0"},"consumerChain":"consumer2","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"EndAndBeginBlockForConsumer","timeAdvancement":{"#bigint":"601200"},"validator":""},{"changeAmount":{"#bigint":"0"},"consumerChain":"consumer3","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"EndAndBeginBlockForConsumer","timeAdvancement":{"#bigint":"601200"},"validator":""},{"changeAmount":{"#bigint":"0"},"consumerChain":"","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"EndAndBeginBlockForProvider","timeAdvancement":{"#bigint":"601200"},"validator":""}]},{"#meta":{"index":17},"QueuedEndBlocks":[{"#tup":["consumer2",{"#bigint":"601200"}]},{"#tup":["consumer3",{"#bigint":"601200"}]}],"currentState":{"consumerStates":{"#map":[["consumer1",{"chainState":{"currentValidatorSet":{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},"lastTimestamp":{"#bigint":"1202402"},"votingPowerHistory":[{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]}]},"maturationTimes":[],"outstandingPacketsToProvider":[],"receivedVscPackets":[]}],["consumer2",{"chainState":{"currentValidatorSet":{"#map":[["node1",{"#bigint":"50"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},"lastTimestamp":{"#bigint":"601202"},"votingPowerHistory":[{"#map":[["node1",{"#bigint":"50"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]}]},"maturationTimes":[{"#tup":[{"id":{"#bigint":"0"},"sendingTime":{"#bigint":"2"},"validatorSet":{"#map":[["node1",{"#bigint":"50"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]}},{"#bigint":"1209602"}]}],"outstandingPacketsToProvider":[],"receivedVscPackets":[{"id":{"#bigint":"0"},"sendingTime":{"#bigint":"2"},"validatorSet":{"#map":[["node1",{"#bigint":"50"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]}}]}],["consumer3",{"chainState":{"currentValidatorSet":{"#map":[["node1",{"#bigint":"50"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},"lastTimestamp":{"#bigint":"601202"},"votingPowerHistory":[{"#map":[["node1",{"#bigint":"50"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]}]},"maturationTimes":[{"#tup":[{"id":{"#bigint":"0"},"sendingTime":{"#bigint":"2"},"validatorSet":{"#map":[["node1",{"#bigint":"50"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]}},{"#bigint":"1209602"}]}],"outstandingPacketsToProvider":[],"receivedVscPackets":[{"id":{"#bigint":"0"},"sendingTime":{"#bigint":"2"},"validatorSet":{"#map":[["node1",{"#bigint":"50"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]}}]}]]},"providerState":{"chainState":{"currentValidatorSet":{"#map":[["node1",{"#bigint":"50"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},"lastTimestamp":{"#bigint":"1202402"},"votingPowerHistory":[{"#map":[["node1",{"#bigint":"50"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},{"#map":[["node1",{"#bigint":"50"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},{"#map":[["node1",{"#bigint":"50"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]}]},"consumerStatus":{"#map":[["consumer1","running"],["consumer2","running"],["consumer3","running"]]},"outstandingPacketsToConsumer":{"#map":[["consumer1",[{"id":{"#bigint":"0"},"sendingTime":{"#bigint":"2"},"validatorSet":{"#map":[["node1",{"#bigint":"50"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]}}]],["consumer2",[]],["consumer3",[]]]},"providerValidatorSetChangedInThisBlock":false,"receivedMaturations":{"#set":[]},"runningVscId":{"#bigint":"1"},"sentVscPacketsToConsumer":{"#map":[["consumer1",[{"id":{"#bigint":"0"},"sendingTime":{"#bigint":"2"},"validatorSet":{"#map":[["node1",{"#bigint":"50"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]}}]],["consumer2",[{"id":{"#bigint":"0"},"sendingTime":{"#bigint":"2"},"validatorSet":{"#map":[["node1",{"#bigint":"50"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]}}]],["consumer3",[{"id":{"#bigint":"0"},"sendingTime":{"#bigint":"2"},"validatorSet":{"#map":[["node1",{"#bigint":"50"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]}}]]]}}},"params":{"CcvTimeout":{"#map":[["consumer1",{"#bigint":"1814400"}],["consumer2",{"#bigint":"1814400"}],["consumer3",{"#bigint":"1814400"}],["provider",{"#bigint":"1814400"}]]},"ConsumerChains":{"#set":["consumer1","consumer2","consumer3"]},"InitialValidatorSet":{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},"Nodes":{"#set":["node1","node10","node2","node3","node4","node5","node6","node7","node8","node9"]},"TrustingPeriodPerChain":{"#map":[["consumer1",{"#bigint":"1206000"}],["consumer2",{"#bigint":"1206000"}],["consumer3",{"#bigint":"1206000"}],["provider",{"#bigint":"1206000"}]]},"UnbondingPeriodPerChain":{"#map":[["consumer1",{"#bigint":"1209600"}],["consumer2",{"#bigint":"1209600"}],["consumer3",{"#bigint":"1209600"}],["provider",{"#bigint":"1209600"}]]},"VscTimeout":{"#bigint":"3024000"}},"trace":[{"changeAmount":{"#bigint":"0"},"consumerChain":"","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"init","timeAdvancement":{"#bigint":"0"},"validator":""},{"changeAmount":{"#bigint":"0"},"consumerChain":"","consumersToStart":{"#set":["consumer1","consumer2","consumer3"]},"consumersToStop":{"#set":[]},"kind":"EndAndBeginBlockForProvider","timeAdvancement":{"#bigint":"1"},"validator":""},{"changeAmount":{"#bigint":"0"},"consumerChain":"consumer1","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"EndAndBeginBlockForConsumer","timeAdvancement":{"#bigint":"1"},"validator":""},{"changeAmount":{"#bigint":"0"},"consumerChain":"consumer2","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"EndAndBeginBlockForConsumer","timeAdvancement":{"#bigint":"1"},"validator":""},{"changeAmount":{"#bigint":"0"},"consumerChain":"consumer3","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"EndAndBeginBlockForConsumer","timeAdvancement":{"#bigint":"1"},"validator":""},{"changeAmount":{"#bigint":"-50"},"consumerChain":"","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"VotingPowerChange","timeAdvancement":{"#bigint":"0"},"validator":"node1"},{"changeAmount":{"#bigint":"0"},"consumerChain":"","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"EndAndBeginBlockForProvider","timeAdvancement":{"#bigint":"1"},"validator":""},{"changeAmount":{"#bigint":"0"},"consumerChain":"consumer1","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"EndAndBeginBlockForConsumer","timeAdvancement":{"#bigint":"1"},"validator":""},{"changeAmount":{"#bigint":"0"},"consumerChain":"consumer2","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"EndAndBeginBlockForConsumer","timeAdvancement":{"#bigint":"1"},"validator":""},{"changeAmount":{"#bigint":"0"},"consumerChain":"consumer3","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"EndAndBeginBlockForConsumer","timeAdvancement":{"#bigint":"1"},"validator":""},{"changeAmount":{"#bigint":"0"},"consumerChain":"consumer2","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"DeliverVscPacket","timeAdvancement":{"#bigint":"0"},"validator":""},{"changeAmount":{"#bigint":"0"},"consumerChain":"consumer3","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"DeliverVscPacket","timeAdvancement":{"#bigint":"0"},"validator":""},{"changeAmount":{"#bigint":"0"},"consumerChain":"","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"EndAndBeginBlockForProvider","timeAdvancement":{"#bigint":"601200"},"validator":""},{"changeAmount":{"#bigint":"0"},"consumerChain":"consumer1","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"EndAndBeginBlockForConsumer","timeAdvancement":{"#bigint":"601200"},"validator":""},{"changeAmount":{"#bigint":"0"},"consumerChain":"consumer2","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"EndAndBeginBlockForConsumer","timeAdvancement":{"#bigint":"601200"},"validator":""},{"changeAmount":{"#bigint":"0"},"consumerChain":"consumer3","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"EndAndBeginBlockForConsumer","timeAdvancement":{"#bigint":"601200"},"validator":""},{"changeAmount":{"#bigint":"0"},"consumerChain":"","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"EndAndBeginBlockForProvider","timeAdvancement":{"#bigint":"601200"},"validator":""},{"changeAmount":{"#bigint":"0"},"consumerChain":"consumer1","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"EndAndBeginBlockForConsumer","timeAdvancement":{"#bigint":"601200"},"validator":""}]},{"#meta":{"index":18},"QueuedEndBlocks":[{"#tup":["consumer3",{"#bigint":"601200"}]}],"currentState":{"consumerStates":{"#map":[["consumer1",{"chainState":{"currentValidatorSet":{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},"lastTimestamp":{"#bigint":"1202402"},"votingPowerHistory":[{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]}]},"maturationTimes":[],"outstandingPacketsToProvider":[],"receivedVscPackets":[]}],["consumer2",{"chainState":{"currentValidatorSet":{"#map":[["node1",{"#bigint":"50"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},"lastTimestamp":{"#bigint":"1202402"},"votingPowerHistory":[{"#map":[["node1",{"#bigint":"50"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},{"#map":[["node1",{"#bigint":"50"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]}]},"maturationTimes":[{"#tup":[{"id":{"#bigint":"0"},"sendingTime":{"#bigint":"2"},"validatorSet":{"#map":[["node1",{"#bigint":"50"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]}},{"#bigint":"1209602"}]}],"outstandingPacketsToProvider":[],"receivedVscPackets":[{"id":{"#bigint":"0"},"sendingTime":{"#bigint":"2"},"validatorSet":{"#map":[["node1",{"#bigint":"50"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]}}]}],["consumer3",{"chainState":{"currentValidatorSet":{"#map":[["node1",{"#bigint":"50"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},"lastTimestamp":{"#bigint":"601202"},"votingPowerHistory":[{"#map":[["node1",{"#bigint":"50"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]}]},"maturationTimes":[{"#tup":[{"id":{"#bigint":"0"},"sendingTime":{"#bigint":"2"},"validatorSet":{"#map":[["node1",{"#bigint":"50"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]}},{"#bigint":"1209602"}]}],"outstandingPacketsToProvider":[],"receivedVscPackets":[{"id":{"#bigint":"0"},"sendingTime":{"#bigint":"2"},"validatorSet":{"#map":[["node1",{"#bigint":"50"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]}}]}]]},"providerState":{"chainState":{"currentValidatorSet":{"#map":[["node1",{"#bigint":"50"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},"lastTimestamp":{"#bigint":"1202402"},"votingPowerHistory":[{"#map":[["node1",{"#bigint":"50"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},{"#map":[["node1",{"#bigint":"50"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},{"#map":[["node1",{"#bigint":"50"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]}]},"consumerStatus":{"#map":[["consumer1","running"],["consumer2","running"],["consumer3","running"]]},"outstandingPacketsToConsumer":{"#map":[["consumer1",[{"id":{"#bigint":"0"},"sendingTime":{"#bigint":"2"},"validatorSet":{"#map":[["node1",{"#bigint":"50"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]}}]],["consumer2",[]],["consumer3",[]]]},"providerValidatorSetChangedInThisBlock":false,"receivedMaturations":{"#set":[]},"runningVscId":{"#bigint":"1"},"sentVscPacketsToConsumer":{"#map":[["consumer1",[{"id":{"#bigint":"0"},"sendingTime":{"#bigint":"2"},"validatorSet":{"#map":[["node1",{"#bigint":"50"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]}}]],["consumer2",[{"id":{"#bigint":"0"},"sendingTime":{"#bigint":"2"},"validatorSet":{"#map":[["node1",{"#bigint":"50"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]}}]],["consumer3",[{"id":{"#bigint":"0"},"sendingTime":{"#bigint":"2"},"validatorSet":{"#map":[["node1",{"#bigint":"50"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]}}]]]}}},"params":{"CcvTimeout":{"#map":[["consumer1",{"#bigint":"1814400"}],["consumer2",{"#bigint":"1814400"}],["consumer3",{"#bigint":"1814400"}],["provider",{"#bigint":"1814400"}]]},"ConsumerChains":{"#set":["consumer1","consumer2","consumer3"]},"InitialValidatorSet":{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},"Nodes":{"#set":["node1","node10","node2","node3","node4","node5","node6","node7","node8","node9"]},"TrustingPeriodPerChain":{"#map":[["consumer1",{"#bigint":"1206000"}],["consumer2",{"#bigint":"1206000"}],["consumer3",{"#bigint":"1206000"}],["provider",{"#bigint":"1206000"}]]},"UnbondingPeriodPerChain":{"#map":[["consumer1",{"#bigint":"1209600"}],["consumer2",{"#bigint":"1209600"}],["consumer3",{"#bigint":"1209600"}],["provider",{"#bigint":"1209600"}]]},"VscTimeout":{"#bigint":"3024000"}},"trace":[{"changeAmount":{"#bigint":"0"},"consumerChain":"","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"init","timeAdvancement":{"#bigint":"0"},"validator":""},{"changeAmount":{"#bigint":"0"},"consumerChain":"","consumersToStart":{"#set":["consumer1","consumer2","consumer3"]},"consumersToStop":{"#set":[]},"kind":"EndAndBeginBlockForProvider","timeAdvancement":{"#bigint":"1"},"validator":""},{"changeAmount":{"#bigint":"0"},"consumerChain":"consumer1","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"EndAndBeginBlockForConsumer","timeAdvancement":{"#bigint":"1"},"validator":""},{"changeAmount":{"#bigint":"0"},"consumerChain":"consumer2","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"EndAndBeginBlockForConsumer","timeAdvancement":{"#bigint":"1"},"validator":""},{"changeAmount":{"#bigint":"0"},"consumerChain":"consumer3","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"EndAndBeginBlockForConsumer","timeAdvancement":{"#bigint":"1"},"validator":""},{"changeAmount":{"#bigint":"-50"},"consumerChain":"","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"VotingPowerChange","timeAdvancement":{"#bigint":"0"},"validator":"node1"},{"changeAmount":{"#bigint":"0"},"consumerChain":"","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"EndAndBeginBlockForProvider","timeAdvancement":{"#bigint":"1"},"validator":""},{"changeAmount":{"#bigint":"0"},"consumerChain":"consumer1","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"EndAndBeginBlockForConsumer","timeAdvancement":{"#bigint":"1"},"validator":""},{"changeAmount":{"#bigint":"0"},"consumerChain":"consumer2","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"EndAndBeginBlockForConsumer","timeAdvancement":{"#bigint":"1"},"validator":""},{"changeAmount":{"#bigint":"0"},"consumerChain":"consumer3","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"EndAndBeginBlockForConsumer","timeAdvancement":{"#bigint":"1"},"validator":""},{"changeAmount":{"#bigint":"0"},"consumerChain":"consumer2","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"DeliverVscPacket","timeAdvancement":{"#bigint":"0"},"validator":""},{"changeAmount":{"#bigint":"0"},"consumerChain":"consumer3","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"DeliverVscPacket","timeAdvancement":{"#bigint":"0"},"validator":""},{"changeAmount":{"#bigint":"0"},"consumerChain":"","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"EndAndBeginBlockForProvider","timeAdvancement":{"#bigint":"601200"},"validator":""},{"changeAmount":{"#bigint":"0"},"consumerChain":"consumer1","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"EndAndBeginBlockForConsumer","timeAdvancement":{"#bigint":"601200"},"validator":""},{"changeAmount":{"#bigint":"0"},"consumerChain":"consumer2","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"EndAndBeginBlockForConsumer","timeAdvancement":{"#bigint":"601200"},"validator":""},{"changeAmount":{"#bigint":"0"},"consumerChain":"consumer3","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"EndAndBeginBlockForConsumer","timeAdvancement":{"#bigint":"601200"},"validator":""},{"changeAmount":{"#bigint":"0"},"consumerChain":"","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"EndAndBeginBlockForProvider","timeAdvancement":{"#bigint":"601200"},"validator":""},{"changeAmount":{"#bigint":"0"},"consumerChain":"consumer1","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"EndAndBeginBlockForConsumer","timeAdvancement":{"#bigint":"601200"},"validator":""},{"changeAmount":{"#bigint":"0"},"consumerChain":"consumer2","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"EndAndBeginBlockForConsumer","timeAdvancement":{"#bigint":"601200"},"validator":""}]},{"#meta":{"index":19},"QueuedEndBlocks":[],"currentState":{"consumerStates":{"#map":[["consumer1",{"chainState":{"currentValidatorSet":{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},"lastTimestamp":{"#bigint":"1202402"},"votingPowerHistory":[{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]}]},"maturationTimes":[],"outstandingPacketsToProvider":[],"receivedVscPackets":[]}],["consumer2",{"chainState":{"currentValidatorSet":{"#map":[["node1",{"#bigint":"50"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},"lastTimestamp":{"#bigint":"1202402"},"votingPowerHistory":[{"#map":[["node1",{"#bigint":"50"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},{"#map":[["node1",{"#bigint":"50"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]}]},"maturationTimes":[{"#tup":[{"id":{"#bigint":"0"},"sendingTime":{"#bigint":"2"},"validatorSet":{"#map":[["node1",{"#bigint":"50"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]}},{"#bigint":"1209602"}]}],"outstandingPacketsToProvider":[],"receivedVscPackets":[{"id":{"#bigint":"0"},"sendingTime":{"#bigint":"2"},"validatorSet":{"#map":[["node1",{"#bigint":"50"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]}}]}],["consumer3",{"chainState":{"currentValidatorSet":{"#map":[["node1",{"#bigint":"50"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},"lastTimestamp":{"#bigint":"1202402"},"votingPowerHistory":[{"#map":[["node1",{"#bigint":"50"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},{"#map":[["node1",{"#bigint":"50"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]}]},"maturationTimes":[{"#tup":[{"id":{"#bigint":"0"},"sendingTime":{"#bigint":"2"},"validatorSet":{"#map":[["node1",{"#bigint":"50"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]}},{"#bigint":"1209602"}]}],"outstandingPacketsToProvider":[],"receivedVscPackets":[{"id":{"#bigint":"0"},"sendingTime":{"#bigint":"2"},"validatorSet":{"#map":[["node1",{"#bigint":"50"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]}}]}]]},"providerState":{"chainState":{"currentValidatorSet":{"#map":[["node1",{"#bigint":"50"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},"lastTimestamp":{"#bigint":"1202402"},"votingPowerHistory":[{"#map":[["node1",{"#bigint":"50"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},{"#map":[["node1",{"#bigint":"50"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},{"#map":[["node1",{"#bigint":"50"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]}]},"consumerStatus":{"#map":[["consumer1","running"],["consumer2","running"],["consumer3","running"]]},"outstandingPacketsToConsumer":{"#map":[["consumer1",[{"id":{"#bigint":"0"},"sendingTime":{"#bigint":"2"},"validatorSet":{"#map":[["node1",{"#bigint":"50"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]}}]],["consumer2",[]],["consumer3",[]]]},"providerValidatorSetChangedInThisBlock":false,"receivedMaturations":{"#set":[]},"runningVscId":{"#bigint":"1"},"sentVscPacketsToConsumer":{"#map":[["consumer1",[{"id":{"#bigint":"0"},"sendingTime":{"#bigint":"2"},"validatorSet":{"#map":[["node1",{"#bigint":"50"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]}}]],["consumer2",[{"id":{"#bigint":"0"},"sendingTime":{"#bigint":"2"},"validatorSet":{"#map":[["node1",{"#bigint":"50"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]}}]],["consumer3",[{"id":{"#bigint":"0"},"sendingTime":{"#bigint":"2"},"validatorSet":{"#map":[["node1",{"#bigint":"50"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]}}]]]}}},"params":{"CcvTimeout":{"#map":[["consumer1",{"#bigint":"1814400"}],["consumer2",{"#bigint":"1814400"}],["consumer3",{"#bigint":"1814400"}],["provider",{"#bigint":"1814400"}]]},"ConsumerChains":{"#set":["consumer1","consumer2","consumer3"]},"InitialValidatorSet":{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},"Nodes":{"#set":["node1","node10","node2","node3","node4","node5","node6","node7","node8","node9"]},"TrustingPeriodPerChain":{"#map":[["consumer1",{"#bigint":"1206000"}],["consumer2",{"#bigint":"1206000"}],["consumer3",{"#bigint":"1206000"}],["provider",{"#bigint":"1206000"}]]},"UnbondingPeriodPerChain":{"#map":[["consumer1",{"#bigint":"1209600"}],["consumer2",{"#bigint":"1209600"}],["consumer3",{"#bigint":"1209600"}],["provider",{"#bigint":"1209600"}]]},"VscTimeout":{"#bigint":"3024000"}},"trace":[{"changeAmount":{"#bigint":"0"},"consumerChain":"","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"init","timeAdvancement":{"#bigint":"0"},"validator":""},{"changeAmount":{"#bigint":"0"},"consumerChain":"","consumersToStart":{"#set":["consumer1","consumer2","consumer3"]},"consumersToStop":{"#set":[]},"kind":"EndAndBeginBlockForProvider","timeAdvancement":{"#bigint":"1"},"validator":""},{"changeAmount":{"#bigint":"0"},"consumerChain":"consumer1","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"EndAndBeginBlockForConsumer","timeAdvancement":{"#bigint":"1"},"validator":""},{"changeAmount":{"#bigint":"0"},"consumerChain":"consumer2","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"EndAndBeginBlockForConsumer","timeAdvancement":{"#bigint":"1"},"validator":""},{"changeAmount":{"#bigint":"0"},"consumerChain":"consumer3","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"EndAndBeginBlockForConsumer","timeAdvancement":{"#bigint":"1"},"validator":""},{"changeAmount":{"#bigint":"-50"},"consumerChain":"","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"VotingPowerChange","timeAdvancement":{"#bigint":"0"},"validator":"node1"},{"changeAmount":{"#bigint":"0"},"consumerChain":"","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"EndAndBeginBlockForProvider","timeAdvancement":{"#bigint":"1"},"validator":""},{"changeAmount":{"#bigint":"0"},"consumerChain":"consumer1","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"EndAndBeginBlockForConsumer","timeAdvancement":{"#bigint":"1"},"validator":""},{"changeAmount":{"#bigint":"0"},"consumerChain":"consumer2","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"EndAndBeginBlockForConsumer","timeAdvancement":{"#bigint":"1"},"validator":""},{"changeAmount":{"#bigint":"0"},"consumerChain":"consumer3","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"EndAndBeginBlockForConsumer","timeAdvancement":{"#bigint":"1"},"validator":""},{"changeAmount":{"#bigint":"0"},"consumerChain":"consumer2","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"DeliverVscPacket","timeAdvancement":{"#bigint":"0"},"validator":""},{"changeAmount":{"#bigint":"0"},"consumerChain":"consumer3","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"DeliverVscPacket","timeAdvancement":{"#bigint":"0"},"validator":""},{"changeAmount":{"#bigint":"0"},"consumerChain":"","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"EndAndBeginBlockForProvider","timeAdvancement":{"#bigint":"601200"},"validator":""},{"changeAmount":{"#bigint":"0"},"consumerChain":"consumer1","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"EndAndBeginBlockForConsumer","timeAdvancement":{"#bigint":"601200"},"validator":""},{"changeAmount":{"#bigint":"0"},"consumerChain":"consumer2","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"EndAndBeginBlockForConsumer","timeAdvancement":{"#bigint":"601200"},"validator":""},{"changeAmount":{"#bigint":"0"},"consumerChain":"consumer3","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"EndAndBeginBlockForConsumer","timeAdvancement":{"#bigint":"601200"},"validator":""},{"changeAmount":{"#bigint":"0"},"consumerChain":"","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"EndAndBeginBlockForProvider","timeAdvancement":{"#bigint":"601200"},"validator":""},{"changeAmount":{"#bigint":"0"},"consumerChain":"consumer1","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"EndAndBeginBlockForConsumer","timeAdvancement":{"#bigint":"601200"},"validator":""},{"changeAmount":{"#bigint":"0"},"consumerChain":"consumer2","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"EndAndBeginBlockForConsumer","timeAdvancement":{"#bigint":"601200"},"validator":""},{"changeAmount":{"#bigint":"0"},"consumerChain":"consumer3","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"EndAndBeginBlockForConsumer","timeAdvancement":{"#bigint":"601200"},"validator":""}]},{"#meta":{"index":20},"QueuedEndBlocks":[{"#tup":["consumer1",{"#bigint":"601200"}]},{"#tup":["consumer2",{"#bigint":"601200"}]},{"#tup":["consumer3",{"#bigint":"601200"}]}],"currentState":{"consumerStates":{"#map":[["consumer1",{"chainState":{"currentValidatorSet":{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},"lastTimestamp":{"#bigint":"1202402"},"votingPowerHistory":[{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]}]},"maturationTimes":[],"outstandingPacketsToProvider":[],"receivedVscPackets":[]}],["consumer2",{"chainState":{"currentValidatorSet":{"#map":[["node1",{"#bigint":"50"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},"lastTimestamp":{"#bigint":"1202402"},"votingPowerHistory":[{"#map":[["node1",{"#bigint":"50"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},{"#map":[["node1",{"#bigint":"50"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]}]},"maturationTimes":[{"#tup":[{"id":{"#bigint":"0"},"sendingTime":{"#bigint":"2"},"validatorSet":{"#map":[["node1",{"#bigint":"50"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]}},{"#bigint":"1209602"}]}],"outstandingPacketsToProvider":[],"receivedVscPackets":[{"id":{"#bigint":"0"},"sendingTime":{"#bigint":"2"},"validatorSet":{"#map":[["node1",{"#bigint":"50"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]}}]}],["consumer3",{"chainState":{"currentValidatorSet":{"#map":[["node1",{"#bigint":"50"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},"lastTimestamp":{"#bigint":"1202402"},"votingPowerHistory":[{"#map":[["node1",{"#bigint":"50"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},{"#map":[["node1",{"#bigint":"50"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]}]},"maturationTimes":[{"#tup":[{"id":{"#bigint":"0"},"sendingTime":{"#bigint":"2"},"validatorSet":{"#map":[["node1",{"#bigint":"50"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]}},{"#bigint":"1209602"}]}],"outstandingPacketsToProvider":[],"receivedVscPackets":[{"id":{"#bigint":"0"},"sendingTime":{"#bigint":"2"},"validatorSet":{"#map":[["node1",{"#bigint":"50"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]}}]}]]},"providerState":{"chainState":{"currentValidatorSet":{"#map":[["node1",{"#bigint":"50"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},"lastTimestamp":{"#bigint":"1803602"},"votingPowerHistory":[{"#map":[["node1",{"#bigint":"50"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},{"#map":[["node1",{"#bigint":"50"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},{"#map":[["node1",{"#bigint":"50"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},{"#map":[["node1",{"#bigint":"50"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]}]},"consumerStatus":{"#map":[["consumer1","running"],["consumer2","running"],["consumer3","running"]]},"outstandingPacketsToConsumer":{"#map":[["consumer1",[{"id":{"#bigint":"0"},"sendingTime":{"#bigint":"2"},"validatorSet":{"#map":[["node1",{"#bigint":"50"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]}}]],["consumer2",[]],["consumer3",[]]]},"providerValidatorSetChangedInThisBlock":false,"receivedMaturations":{"#set":[]},"runningVscId":{"#bigint":"1"},"sentVscPacketsToConsumer":{"#map":[["consumer1",[{"id":{"#bigint":"0"},"sendingTime":{"#bigint":"2"},"validatorSet":{"#map":[["node1",{"#bigint":"50"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]}}]],["consumer2",[{"id":{"#bigint":"0"},"sendingTime":{"#bigint":"2"},"validatorSet":{"#map":[["node1",{"#bigint":"50"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]}}]],["consumer3",[{"id":{"#bigint":"0"},"sendingTime":{"#bigint":"2"},"validatorSet":{"#map":[["node1",{"#bigint":"50"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]}}]]]}}},"params":{"CcvTimeout":{"#map":[["consumer1",{"#bigint":"1814400"}],["consumer2",{"#bigint":"1814400"}],["consumer3",{"#bigint":"1814400"}],["provider",{"#bigint":"1814400"}]]},"ConsumerChains":{"#set":["consumer1","consumer2","consumer3"]},"InitialValidatorSet":{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},"Nodes":{"#set":["node1","node10","node2","node3","node4","node5","node6","node7","node8","node9"]},"TrustingPeriodPerChain":{"#map":[["consumer1",{"#bigint":"1206000"}],["consumer2",{"#bigint":"1206000"}],["consumer3",{"#bigint":"1206000"}],["provider",{"#bigint":"1206000"}]]},"UnbondingPeriodPerChain":{"#map":[["consumer1",{"#bigint":"1209600"}],["consumer2",{"#bigint":"1209600"}],["consumer3",{"#bigint":"1209600"}],["provider",{"#bigint":"1209600"}]]},"VscTimeout":{"#bigint":"3024000"}},"trace":[{"changeAmount":{"#bigint":"0"},"consumerChain":"","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"init","timeAdvancement":{"#bigint":"0"},"validator":""},{"changeAmount":{"#bigint":"0"},"consumerChain":"","consumersToStart":{"#set":["consumer1","consumer2","consumer3"]},"consumersToStop":{"#set":[]},"kind":"EndAndBeginBlockForProvider","timeAdvancement":{"#bigint":"1"},"validator":""},{"changeAmount":{"#bigint":"0"},"consumerChain":"consumer1","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"EndAndBeginBlockForConsumer","timeAdvancement":{"#bigint":"1"},"validator":""},{"changeAmount":{"#bigint":"0"},"consumerChain":"consumer2","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"EndAndBeginBlockForConsumer","timeAdvancement":{"#bigint":"1"},"validator":""},{"changeAmount":{"#bigint":"0"},"consumerChain":"consumer3","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"EndAndBeginBlockForConsumer","timeAdvancement":{"#bigint":"1"},"validator":""},{"changeAmount":{"#bigint":"-50"},"consumerChain":"","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"VotingPowerChange","timeAdvancement":{"#bigint":"0"},"validator":"node1"},{"changeAmount":{"#bigint":"0"},"consumerChain":"","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"EndAndBeginBlockForProvider","timeAdvancement":{"#bigint":"1"},"validator":""},{"changeAmount":{"#bigint":"0"},"consumerChain":"consumer1","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"EndAndBeginBlockForConsumer","timeAdvancement":{"#bigint":"1"},"validator":""},{"changeAmount":{"#bigint":"0"},"consumerChain":"consumer2","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"EndAndBeginBlockForConsumer","timeAdvancement":{"#bigint":"1"},"validator":""},{"changeAmount":{"#bigint":"0"},"consumerChain":"consumer3","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"EndAndBeginBlockForConsumer","timeAdvancement":{"#bigint":"1"},"validator":""},{"changeAmount":{"#bigint":"0"},"consumerChain":"consumer2","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"DeliverVscPacket","timeAdvancement":{"#bigint":"0"},"validator":""},{"changeAmount":{"#bigint":"0"},"consumerChain":"consumer3","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"DeliverVscPacket","timeAdvancement":{"#bigint":"0"},"validator":""},{"changeAmount":{"#bigint":"0"},"consumerChain":"","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"EndAndBeginBlockForProvider","timeAdvancement":{"#bigint":"601200"},"validator":""},{"changeAmount":{"#bigint":"0"},"consumerChain":"consumer1","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"EndAndBeginBlockForConsumer","timeAdvancement":{"#bigint":"601200"},"validator":""},{"changeAmount":{"#bigint":"0"},"consumerChain":"consumer2","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"EndAndBeginBlockForConsumer","timeAdvancement":{"#bigint":"601200"},"validator":""},{"changeAmount":{"#bigint":"0"},"consumerChain":"consumer3","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"EndAndBeginBlockForConsumer","timeAdvancement":{"#bigint":"601200"},"validator":""},{"changeAmount":{"#bigint":"0"},"consumerChain":"","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"EndAndBeginBlockForProvider","timeAdvancement":{"#bigint":"601200"},"validator":""},{"changeAmount":{"#bigint":"0"},"consumerChain":"consumer1","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"EndAndBeginBlockForConsumer","timeAdvancement":{"#bigint":"601200"},"validator":""},{"changeAmount":{"#bigint":"0"},"consumerChain":"consumer2","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"EndAndBeginBlockForConsumer","timeAdvancement":{"#bigint":"601200"},"validator":""},{"changeAmount":{"#bigint":"0"},"consumerChain":"consumer3","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"EndAndBeginBlockForConsumer","timeAdvancement":{"#bigint":"601200"},"validator":""},{"changeAmount":{"#bigint":"0"},"consumerChain":"","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"EndAndBeginBlockForProvider","timeAdvancement":{"#bigint":"601200"},"validator":""}]},{"#meta":{"index":21},"QueuedEndBlocks":[{"#tup":["consumer2",{"#bigint":"601200"}]},{"#tup":["consumer3",{"#bigint":"601200"}]}],"currentState":{"consumerStates":{"#map":[["consumer1",{"chainState":{"currentValidatorSet":{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},"lastTimestamp":{"#bigint":"1803602"},"votingPowerHistory":[{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]}]},"maturationTimes":[],"outstandingPacketsToProvider":[],"receivedVscPackets":[]}],["consumer2",{"chainState":{"currentValidatorSet":{"#map":[["node1",{"#bigint":"50"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},"lastTimestamp":{"#bigint":"1202402"},"votingPowerHistory":[{"#map":[["node1",{"#bigint":"50"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},{"#map":[["node1",{"#bigint":"50"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]}]},"maturationTimes":[{"#tup":[{"id":{"#bigint":"0"},"sendingTime":{"#bigint":"2"},"validatorSet":{"#map":[["node1",{"#bigint":"50"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]}},{"#bigint":"1209602"}]}],"outstandingPacketsToProvider":[],"receivedVscPackets":[{"id":{"#bigint":"0"},"sendingTime":{"#bigint":"2"},"validatorSet":{"#map":[["node1",{"#bigint":"50"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]}}]}],["consumer3",{"chainState":{"currentValidatorSet":{"#map":[["node1",{"#bigint":"50"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},"lastTimestamp":{"#bigint":"1202402"},"votingPowerHistory":[{"#map":[["node1",{"#bigint":"50"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},{"#map":[["node1",{"#bigint":"50"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]}]},"maturationTimes":[{"#tup":[{"id":{"#bigint":"0"},"sendingTime":{"#bigint":"2"},"validatorSet":{"#map":[["node1",{"#bigint":"50"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]}},{"#bigint":"1209602"}]}],"outstandingPacketsToProvider":[],"receivedVscPackets":[{"id":{"#bigint":"0"},"sendingTime":{"#bigint":"2"},"validatorSet":{"#map":[["node1",{"#bigint":"50"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]}}]}]]},"providerState":{"chainState":{"currentValidatorSet":{"#map":[["node1",{"#bigint":"50"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},"lastTimestamp":{"#bigint":"1803602"},"votingPowerHistory":[{"#map":[["node1",{"#bigint":"50"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},{"#map":[["node1",{"#bigint":"50"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},{"#map":[["node1",{"#bigint":"50"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},{"#map":[["node1",{"#bigint":"50"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]}]},"consumerStatus":{"#map":[["consumer1","running"],["consumer2","running"],["consumer3","running"]]},"outstandingPacketsToConsumer":{"#map":[["consumer1",[{"id":{"#bigint":"0"},"sendingTime":{"#bigint":"2"},"validatorSet":{"#map":[["node1",{"#bigint":"50"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]}}]],["consumer2",[]],["consumer3",[]]]},"providerValidatorSetChangedInThisBlock":false,"receivedMaturations":{"#set":[]},"runningVscId":{"#bigint":"1"},"sentVscPacketsToConsumer":{"#map":[["consumer1",[{"id":{"#bigint":"0"},"sendingTime":{"#bigint":"2"},"validatorSet":{"#map":[["node1",{"#bigint":"50"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]}}]],["consumer2",[{"id":{"#bigint":"0"},"sendingTime":{"#bigint":"2"},"validatorSet":{"#map":[["node1",{"#bigint":"50"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]}}]],["consumer3",[{"id":{"#bigint":"0"},"sendingTime":{"#bigint":"2"},"validatorSet":{"#map":[["node1",{"#bigint":"50"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]}}]]]}}},"params":{"CcvTimeout":{"#map":[["consumer1",{"#bigint":"1814400"}],["consumer2",{"#bigint":"1814400"}],["consumer3",{"#bigint":"1814400"}],["provider",{"#bigint":"1814400"}]]},"ConsumerChains":{"#set":["consumer1","consumer2","consumer3"]},"InitialValidatorSet":{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},"Nodes":{"#set":["node1","node10","node2","node3","node4","node5","node6","node7","node8","node9"]},"TrustingPeriodPerChain":{"#map":[["consumer1",{"#bigint":"1206000"}],["consumer2",{"#bigint":"1206000"}],["consumer3",{"#bigint":"1206000"}],["provider",{"#bigint":"1206000"}]]},"UnbondingPeriodPerChain":{"#map":[["consumer1",{"#bigint":"1209600"}],["consumer2",{"#bigint":"1209600"}],["consumer3",{"#bigint":"1209600"}],["provider",{"#bigint":"1209600"}]]},"VscTimeout":{"#bigint":"3024000"}},"trace":[{"changeAmount":{"#bigint":"0"},"consumerChain":"","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"init","timeAdvancement":{"#bigint":"0"},"validator":""},{"changeAmount":{"#bigint":"0"},"consumerChain":"","consumersToStart":{"#set":["consumer1","consumer2","consumer3"]},"consumersToStop":{"#set":[]},"kind":"EndAndBeginBlockForProvider","timeAdvancement":{"#bigint":"1"},"validator":""},{"changeAmount":{"#bigint":"0"},"consumerChain":"consumer1","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"EndAndBeginBlockForConsumer","timeAdvancement":{"#bigint":"1"},"validator":""},{"changeAmount":{"#bigint":"0"},"consumerChain":"consumer2","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"EndAndBeginBlockForConsumer","timeAdvancement":{"#bigint":"1"},"validator":""},{"changeAmount":{"#bigint":"0"},"consumerChain":"consumer3","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"EndAndBeginBlockForConsumer","timeAdvancement":{"#bigint":"1"},"validator":""},{"changeAmount":{"#bigint":"-50"},"consumerChain":"","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"VotingPowerChange","timeAdvancement":{"#bigint":"0"},"validator":"node1"},{"changeAmount":{"#bigint":"0"},"consumerChain":"","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"EndAndBeginBlockForProvider","timeAdvancement":{"#bigint":"1"},"validator":""},{"changeAmount":{"#bigint":"0"},"consumerChain":"consumer1","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"EndAndBeginBlockForConsumer","timeAdvancement":{"#bigint":"1"},"validator":""},{"changeAmount":{"#bigint":"0"},"consumerChain":"consumer2","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"EndAndBeginBlockForConsumer","timeAdvancement":{"#bigint":"1"},"validator":""},{"changeAmount":{"#bigint":"0"},"consumerChain":"consumer3","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"EndAndBeginBlockForConsumer","timeAdvancement":{"#bigint":"1"},"validator":""},{"changeAmount":{"#bigint":"0"},"consumerChain":"consumer2","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"DeliverVscPacket","timeAdvancement":{"#bigint":"0"},"validator":""},{"changeAmount":{"#bigint":"0"},"consumerChain":"consumer3","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"DeliverVscPacket","timeAdvancement":{"#bigint":"0"},"validator":""},{"changeAmount":{"#bigint":"0"},"consumerChain":"","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"EndAndBeginBlockForProvider","timeAdvancement":{"#bigint":"601200"},"validator":""},{"changeAmount":{"#bigint":"0"},"consumerChain":"consumer1","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"EndAndBeginBlockForConsumer","timeAdvancement":{"#bigint":"601200"},"validator":""},{"changeAmount":{"#bigint":"0"},"consumerChain":"consumer2","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"EndAndBeginBlockForConsumer","timeAdvancement":{"#bigint":"601200"},"validator":""},{"changeAmount":{"#bigint":"0"},"consumerChain":"consumer3","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"EndAndBeginBlockForConsumer","timeAdvancement":{"#bigint":"601200"},"validator":""},{"changeAmount":{"#bigint":"0"},"consumerChain":"","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"EndAndBeginBlockForProvider","timeAdvancement":{"#bigint":"601200"},"validator":""},{"changeAmount":{"#bigint":"0"},"consumerChain":"consumer1","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"EndAndBeginBlockForConsumer","timeAdvancement":{"#bigint":"601200"},"validator":""},{"changeAmount":{"#bigint":"0"},"consumerChain":"consumer2","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"EndAndBeginBlockForConsumer","timeAdvancement":{"#bigint":"601200"},"validator":""},{"changeAmount":{"#bigint":"0"},"consumerChain":"consumer3","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"EndAndBeginBlockForConsumer","timeAdvancement":{"#bigint":"601200"},"validator":""},{"changeAmount":{"#bigint":"0"},"consumerChain":"","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"EndAndBeginBlockForProvider","timeAdvancement":{"#bigint":"601200"},"validator":""},{"changeAmount":{"#bigint":"0"},"consumerChain":"consumer1","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"EndAndBeginBlockForConsumer","timeAdvancement":{"#bigint":"601200"},"validator":""}]},{"#meta":{"index":22},"QueuedEndBlocks":[{"#tup":["consumer3",{"#bigint":"601200"}]}],"currentState":{"consumerStates":{"#map":[["consumer1",{"chainState":{"currentValidatorSet":{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},"lastTimestamp":{"#bigint":"1803602"},"votingPowerHistory":[{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]}]},"maturationTimes":[],"outstandingPacketsToProvider":[],"receivedVscPackets":[]}],["consumer2",{"chainState":{"currentValidatorSet":{"#map":[["node1",{"#bigint":"50"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},"lastTimestamp":{"#bigint":"1803602"},"votingPowerHistory":[{"#map":[["node1",{"#bigint":"50"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},{"#map":[["node1",{"#bigint":"50"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},{"#map":[["node1",{"#bigint":"50"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]}]},"maturationTimes":[{"#tup":[{"id":{"#bigint":"0"},"sendingTime":{"#bigint":"2"},"validatorSet":{"#map":[["node1",{"#bigint":"50"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]}},{"#bigint":"1209602"}]}],"outstandingPacketsToProvider":[],"receivedVscPackets":[{"id":{"#bigint":"0"},"sendingTime":{"#bigint":"2"},"validatorSet":{"#map":[["node1",{"#bigint":"50"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]}}]}],["consumer3",{"chainState":{"currentValidatorSet":{"#map":[["node1",{"#bigint":"50"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},"lastTimestamp":{"#bigint":"1202402"},"votingPowerHistory":[{"#map":[["node1",{"#bigint":"50"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},{"#map":[["node1",{"#bigint":"50"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]}]},"maturationTimes":[{"#tup":[{"id":{"#bigint":"0"},"sendingTime":{"#bigint":"2"},"validatorSet":{"#map":[["node1",{"#bigint":"50"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]}},{"#bigint":"1209602"}]}],"outstandingPacketsToProvider":[],"receivedVscPackets":[{"id":{"#bigint":"0"},"sendingTime":{"#bigint":"2"},"validatorSet":{"#map":[["node1",{"#bigint":"50"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]}}]}]]},"providerState":{"chainState":{"currentValidatorSet":{"#map":[["node1",{"#bigint":"50"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},"lastTimestamp":{"#bigint":"1803602"},"votingPowerHistory":[{"#map":[["node1",{"#bigint":"50"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},{"#map":[["node1",{"#bigint":"50"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},{"#map":[["node1",{"#bigint":"50"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},{"#map":[["node1",{"#bigint":"50"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]}]},"consumerStatus":{"#map":[["consumer1","running"],["consumer2","running"],["consumer3","running"]]},"outstandingPacketsToConsumer":{"#map":[["consumer1",[{"id":{"#bigint":"0"},"sendingTime":{"#bigint":"2"},"validatorSet":{"#map":[["node1",{"#bigint":"50"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]}}]],["consumer2",[]],["consumer3",[]]]},"providerValidatorSetChangedInThisBlock":false,"receivedMaturations":{"#set":[]},"runningVscId":{"#bigint":"1"},"sentVscPacketsToConsumer":{"#map":[["consumer1",[{"id":{"#bigint":"0"},"sendingTime":{"#bigint":"2"},"validatorSet":{"#map":[["node1",{"#bigint":"50"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]}}]],["consumer2",[{"id":{"#bigint":"0"},"sendingTime":{"#bigint":"2"},"validatorSet":{"#map":[["node1",{"#bigint":"50"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]}}]],["consumer3",[{"id":{"#bigint":"0"},"sendingTime":{"#bigint":"2"},"validatorSet":{"#map":[["node1",{"#bigint":"50"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]}}]]]}}},"params":{"CcvTimeout":{"#map":[["consumer1",{"#bigint":"1814400"}],["consumer2",{"#bigint":"1814400"}],["consumer3",{"#bigint":"1814400"}],["provider",{"#bigint":"1814400"}]]},"ConsumerChains":{"#set":["consumer1","consumer2","consumer3"]},"InitialValidatorSet":{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},"Nodes":{"#set":["node1","node10","node2","node3","node4","node5","node6","node7","node8","node9"]},"TrustingPeriodPerChain":{"#map":[["consumer1",{"#bigint":"1206000"}],["consumer2",{"#bigint":"1206000"}],["consumer3",{"#bigint":"1206000"}],["provider",{"#bigint":"1206000"}]]},"UnbondingPeriodPerChain":{"#map":[["consumer1",{"#bigint":"1209600"}],["consumer2",{"#bigint":"1209600"}],["consumer3",{"#bigint":"1209600"}],["provider",{"#bigint":"1209600"}]]},"VscTimeout":{"#bigint":"3024000"}},"trace":[{"changeAmount":{"#bigint":"0"},"consumerChain":"","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"init","timeAdvancement":{"#bigint":"0"},"validator":""},{"changeAmount":{"#bigint":"0"},"consumerChain":"","consumersToStart":{"#set":["consumer1","consumer2","consumer3"]},"consumersToStop":{"#set":[]},"kind":"EndAndBeginBlockForProvider","timeAdvancement":{"#bigint":"1"},"validator":""},{"changeAmount":{"#bigint":"0"},"consumerChain":"consumer1","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"EndAndBeginBlockForConsumer","timeAdvancement":{"#bigint":"1"},"validator":""},{"changeAmount":{"#bigint":"0"},"consumerChain":"consumer2","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"EndAndBeginBlockForConsumer","timeAdvancement":{"#bigint":"1"},"validator":""},{"changeAmount":{"#bigint":"0"},"consumerChain":"consumer3","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"EndAndBeginBlockForConsumer","timeAdvancement":{"#bigint":"1"},"validator":""},{"changeAmount":{"#bigint":"-50"},"consumerChain":"","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"VotingPowerChange","timeAdvancement":{"#bigint":"0"},"validator":"node1"},{"changeAmount":{"#bigint":"0"},"consumerChain":"","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"EndAndBeginBlockForProvider","timeAdvancement":{"#bigint":"1"},"validator":""},{"changeAmount":{"#bigint":"0"},"consumerChain":"consumer1","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"EndAndBeginBlockForConsumer","timeAdvancement":{"#bigint":"1"},"validator":""},{"changeAmount":{"#bigint":"0"},"consumerChain":"consumer2","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"EndAndBeginBlockForConsumer","timeAdvancement":{"#bigint":"1"},"validator":""},{"changeAmount":{"#bigint":"0"},"consumerChain":"consumer3","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"EndAndBeginBlockForConsumer","timeAdvancement":{"#bigint":"1"},"validator":""},{"changeAmount":{"#bigint":"0"},"consumerChain":"consumer2","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"DeliverVscPacket","timeAdvancement":{"#bigint":"0"},"validator":""},{"changeAmount":{"#bigint":"0"},"consumerChain":"consumer3","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"DeliverVscPacket","timeAdvancement":{"#bigint":"0"},"validator":""},{"changeAmount":{"#bigint":"0"},"consumerChain":"","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"EndAndBeginBlockForProvider","timeAdvancement":{"#bigint":"601200"},"validator":""},{"changeAmount":{"#bigint":"0"},"consumerChain":"consumer1","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"EndAndBeginBlockForConsumer","timeAdvancement":{"#bigint":"601200"},"validator":""},{"changeAmount":{"#bigint":"0"},"consumerChain":"consumer2","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"EndAndBeginBlockForConsumer","timeAdvancement":{"#bigint":"601200"},"validator":""},{"changeAmount":{"#bigint":"0"},"consumerChain":"consumer3","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"EndAndBeginBlockForConsumer","timeAdvancement":{"#bigint":"601200"},"validator":""},{"changeAmount":{"#bigint":"0"},"consumerChain":"","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"EndAndBeginBlockForProvider","timeAdvancement":{"#bigint":"601200"},"validator":""},{"changeAmount":{"#bigint":"0"},"consumerChain":"consumer1","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"EndAndBeginBlockForConsumer","timeAdvancement":{"#bigint":"601200"},"validator":""},{"changeAmount":{"#bigint":"0"},"consumerChain":"consumer2","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"EndAndBeginBlockForConsumer","timeAdvancement":{"#bigint":"601200"},"validator":""},{"changeAmount":{"#bigint":"0"},"consumerChain":"consumer3","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"EndAndBeginBlockForConsumer","timeAdvancement":{"#bigint":"601200"},"validator":""},{"changeAmount":{"#bigint":"0"},"consumerChain":"","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"EndAndBeginBlockForProvider","timeAdvancement":{"#bigint":"601200"},"validator":""},{"changeAmount":{"#bigint":"0"},"consumerChain":"consumer1","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"EndAndBeginBlockForConsumer","timeAdvancement":{"#bigint":"601200"},"validator":""},{"changeAmount":{"#bigint":"0"},"consumerChain":"consumer2","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"EndAndBeginBlockForConsumer","timeAdvancement":{"#bigint":"601200"},"validator":""}]},{"#meta":{"index":23},"QueuedEndBlocks":[],"currentState":{"consumerStates":{"#map":[["consumer1",{"chainState":{"currentValidatorSet":{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},"lastTimestamp":{"#bigint":"1803602"},"votingPowerHistory":[{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]}]},"maturationTimes":[],"outstandingPacketsToProvider":[],"receivedVscPackets":[]}],["consumer2",{"chainState":{"currentValidatorSet":{"#map":[["node1",{"#bigint":"50"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},"lastTimestamp":{"#bigint":"1803602"},"votingPowerHistory":[{"#map":[["node1",{"#bigint":"50"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},{"#map":[["node1",{"#bigint":"50"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},{"#map":[["node1",{"#bigint":"50"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]}]},"maturationTimes":[{"#tup":[{"id":{"#bigint":"0"},"sendingTime":{"#bigint":"2"},"validatorSet":{"#map":[["node1",{"#bigint":"50"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]}},{"#bigint":"1209602"}]}],"outstandingPacketsToProvider":[],"receivedVscPackets":[{"id":{"#bigint":"0"},"sendingTime":{"#bigint":"2"},"validatorSet":{"#map":[["node1",{"#bigint":"50"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]}}]}],["consumer3",{"chainState":{"currentValidatorSet":{"#map":[["node1",{"#bigint":"50"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},"lastTimestamp":{"#bigint":"1803602"},"votingPowerHistory":[{"#map":[["node1",{"#bigint":"50"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},{"#map":[["node1",{"#bigint":"50"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},{"#map":[["node1",{"#bigint":"50"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]}]},"maturationTimes":[{"#tup":[{"id":{"#bigint":"0"},"sendingTime":{"#bigint":"2"},"validatorSet":{"#map":[["node1",{"#bigint":"50"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]}},{"#bigint":"1209602"}]}],"outstandingPacketsToProvider":[],"receivedVscPackets":[{"id":{"#bigint":"0"},"sendingTime":{"#bigint":"2"},"validatorSet":{"#map":[["node1",{"#bigint":"50"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]}}]}]]},"providerState":{"chainState":{"currentValidatorSet":{"#map":[["node1",{"#bigint":"50"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},"lastTimestamp":{"#bigint":"1803602"},"votingPowerHistory":[{"#map":[["node1",{"#bigint":"50"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},{"#map":[["node1",{"#bigint":"50"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},{"#map":[["node1",{"#bigint":"50"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},{"#map":[["node1",{"#bigint":"50"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]}]},"consumerStatus":{"#map":[["consumer1","running"],["consumer2","running"],["consumer3","running"]]},"outstandingPacketsToConsumer":{"#map":[["consumer1",[{"id":{"#bigint":"0"},"sendingTime":{"#bigint":"2"},"validatorSet":{"#map":[["node1",{"#bigint":"50"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]}}]],["consumer2",[]],["consumer3",[]]]},"providerValidatorSetChangedInThisBlock":false,"receivedMaturations":{"#set":[]},"runningVscId":{"#bigint":"1"},"sentVscPacketsToConsumer":{"#map":[["consumer1",[{"id":{"#bigint":"0"},"sendingTime":{"#bigint":"2"},"validatorSet":{"#map":[["node1",{"#bigint":"50"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]}}]],["consumer2",[{"id":{"#bigint":"0"},"sendingTime":{"#bigint":"2"},"validatorSet":{"#map":[["node1",{"#bigint":"50"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]}}]],["consumer3",[{"id":{"#bigint":"0"},"sendingTime":{"#bigint":"2"},"validatorSet":{"#map":[["node1",{"#bigint":"50"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]}}]]]}}},"params":{"CcvTimeout":{"#map":[["consumer1",{"#bigint":"1814400"}],["consumer2",{"#bigint":"1814400"}],["consumer3",{"#bigint":"1814400"}],["provider",{"#bigint":"1814400"}]]},"ConsumerChains":{"#set":["consumer1","consumer2","consumer3"]},"InitialValidatorSet":{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},"Nodes":{"#set":["node1","node10","node2","node3","node4","node5","node6","node7","node8","node9"]},"TrustingPeriodPerChain":{"#map":[["consumer1",{"#bigint":"1206000"}],["consumer2",{"#bigint":"1206000"}],["consumer3",{"#bigint":"1206000"}],["provider",{"#bigint":"1206000"}]]},"UnbondingPeriodPerChain":{"#map":[["consumer1",{"#bigint":"1209600"}],["consumer2",{"#bigint":"1209600"}],["consumer3",{"#bigint":"1209600"}],["provider",{"#bigint":"1209600"}]]},"VscTimeout":{"#bigint":"3024000"}},"trace":[{"changeAmount":{"#bigint":"0"},"consumerChain":"","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"init","timeAdvancement":{"#bigint":"0"},"validator":""},{"changeAmount":{"#bigint":"0"},"consumerChain":"","consumersToStart":{"#set":["consumer1","consumer2","consumer3"]},"consumersToStop":{"#set":[]},"kind":"EndAndBeginBlockForProvider","timeAdvancement":{"#bigint":"1"},"validator":""},{"changeAmount":{"#bigint":"0"},"consumerChain":"consumer1","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"EndAndBeginBlockForConsumer","timeAdvancement":{"#bigint":"1"},"validator":""},{"changeAmount":{"#bigint":"0"},"consumerChain":"consumer2","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"EndAndBeginBlockForConsumer","timeAdvancement":{"#bigint":"1"},"validator":""},{"changeAmount":{"#bigint":"0"},"consumerChain":"consumer3","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"EndAndBeginBlockForConsumer","timeAdvancement":{"#bigint":"1"},"validator":""},{"changeAmount":{"#bigint":"-50"},"consumerChain":"","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"VotingPowerChange","timeAdvancement":{"#bigint":"0"},"validator":"node1"},{"changeAmount":{"#bigint":"0"},"consumerChain":"","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"EndAndBeginBlockForProvider","timeAdvancement":{"#bigint":"1"},"validator":""},{"changeAmount":{"#bigint":"0"},"consumerChain":"consumer1","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"EndAndBeginBlockForConsumer","timeAdvancement":{"#bigint":"1"},"validator":""},{"changeAmount":{"#bigint":"0"},"consumerChain":"consumer2","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"EndAndBeginBlockForConsumer","timeAdvancement":{"#bigint":"1"},"validator":""},{"changeAmount":{"#bigint":"0"},"consumerChain":"consumer3","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"EndAndBeginBlockForConsumer","timeAdvancement":{"#bigint":"1"},"validator":""},{"changeAmount":{"#bigint":"0"},"consumerChain":"consumer2","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"DeliverVscPacket","timeAdvancement":{"#bigint":"0"},"validator":""},{"changeAmount":{"#bigint":"0"},"consumerChain":"consumer3","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"DeliverVscPacket","timeAdvancement":{"#bigint":"0"},"validator":""},{"changeAmount":{"#bigint":"0"},"consumerChain":"","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"EndAndBeginBlockForProvider","timeAdvancement":{"#bigint":"601200"},"validator":""},{"changeAmount":{"#bigint":"0"},"consumerChain":"consumer1","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"EndAndBeginBlockForConsumer","timeAdvancement":{"#bigint":"601200"},"validator":""},{"changeAmount":{"#bigint":"0"},"consumerChain":"consumer2","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"EndAndBeginBlockForConsumer","timeAdvancement":{"#bigint":"601200"},"validator":""},{"changeAmount":{"#bigint":"0"},"consumerChain":"consumer3","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"EndAndBeginBlockForConsumer","timeAdvancement":{"#bigint":"601200"},"validator":""},{"changeAmount":{"#bigint":"0"},"consumerChain":"","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"EndAndBeginBlockForProvider","timeAdvancement":{"#bigint":"601200"},"validator":""},{"changeAmount":{"#bigint":"0"},"consumerChain":"consumer1","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"EndAndBeginBlockForConsumer","timeAdvancement":{"#bigint":"601200"},"validator":""},{"changeAmount":{"#bigint":"0"},"consumerChain":"consumer2","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"EndAndBeginBlockForConsumer","timeAdvancement":{"#bigint":"601200"},"validator":""},{"changeAmount":{"#bigint":"0"},"consumerChain":"consumer3","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"EndAndBeginBlockForConsumer","timeAdvancement":{"#bigint":"601200"},"validator":""},{"changeAmount":{"#bigint":"0"},"consumerChain":"","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"EndAndBeginBlockForProvider","timeAdvancement":{"#bigint":"601200"},"validator":""},{"changeAmount":{"#bigint":"0"},"consumerChain":"consumer1","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"EndAndBeginBlockForConsumer","timeAdvancement":{"#bigint":"601200"},"validator":""},{"changeAmount":{"#bigint":"0"},"consumerChain":"consumer2","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"EndAndBeginBlockForConsumer","timeAdvancement":{"#bigint":"601200"},"validator":""},{"changeAmount":{"#bigint":"0"},"consumerChain":"consumer3","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"EndAndBeginBlockForConsumer","timeAdvancement":{"#bigint":"601200"},"validator":""}]},{"#meta":{"index":24},"QueuedEndBlocks":[{"#tup":["consumer1",{"#bigint":"86400"}]},{"#tup":["consumer2",{"#bigint":"86400"}]},{"#tup":["consumer3",{"#bigint":"86400"}]}],"currentState":{"consumerStates":{"#map":[["consumer1",{"chainState":{"currentValidatorSet":{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},"lastTimestamp":{"#bigint":"1803602"},"votingPowerHistory":[{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]}]},"maturationTimes":[],"outstandingPacketsToProvider":[],"receivedVscPackets":[]}],["consumer2",{"chainState":{"currentValidatorSet":{"#map":[["node1",{"#bigint":"50"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},"lastTimestamp":{"#bigint":"1803602"},"votingPowerHistory":[{"#map":[["node1",{"#bigint":"50"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},{"#map":[["node1",{"#bigint":"50"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},{"#map":[["node1",{"#bigint":"50"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]}]},"maturationTimes":[{"#tup":[{"id":{"#bigint":"0"},"sendingTime":{"#bigint":"2"},"validatorSet":{"#map":[["node1",{"#bigint":"50"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]}},{"#bigint":"1209602"}]}],"outstandingPacketsToProvider":[],"receivedVscPackets":[{"id":{"#bigint":"0"},"sendingTime":{"#bigint":"2"},"validatorSet":{"#map":[["node1",{"#bigint":"50"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]}}]}],["consumer3",{"chainState":{"currentValidatorSet":{"#map":[["node1",{"#bigint":"50"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},"lastTimestamp":{"#bigint":"1803602"},"votingPowerHistory":[{"#map":[["node1",{"#bigint":"50"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},{"#map":[["node1",{"#bigint":"50"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},{"#map":[["node1",{"#bigint":"50"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]}]},"maturationTimes":[{"#tup":[{"id":{"#bigint":"0"},"sendingTime":{"#bigint":"2"},"validatorSet":{"#map":[["node1",{"#bigint":"50"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]}},{"#bigint":"1209602"}]}],"outstandingPacketsToProvider":[],"receivedVscPackets":[{"id":{"#bigint":"0"},"sendingTime":{"#bigint":"2"},"validatorSet":{"#map":[["node1",{"#bigint":"50"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]}}]}]]},"providerState":{"chainState":{"currentValidatorSet":{"#map":[["node1",{"#bigint":"50"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},"lastTimestamp":{"#bigint":"1890002"},"votingPowerHistory":[{"#map":[["node1",{"#bigint":"50"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},{"#map":[["node1",{"#bigint":"50"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},{"#map":[["node1",{"#bigint":"50"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},{"#map":[["node1",{"#bigint":"50"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},{"#map":[["node1",{"#bigint":"50"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]}]},"consumerStatus":{"#map":[["consumer1","running"],["consumer2","running"],["consumer3","running"]]},"outstandingPacketsToConsumer":{"#map":[["consumer1",[{"id":{"#bigint":"0"},"sendingTime":{"#bigint":"2"},"validatorSet":{"#map":[["node1",{"#bigint":"50"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]}}]],["consumer2",[]],["consumer3",[]]]},"providerValidatorSetChangedInThisBlock":false,"receivedMaturations":{"#set":[]},"runningVscId":{"#bigint":"1"},"sentVscPacketsToConsumer":{"#map":[["consumer1",[{"id":{"#bigint":"0"},"sendingTime":{"#bigint":"2"},"validatorSet":{"#map":[["node1",{"#bigint":"50"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]}}]],["consumer2",[{"id":{"#bigint":"0"},"sendingTime":{"#bigint":"2"},"validatorSet":{"#map":[["node1",{"#bigint":"50"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]}}]],["consumer3",[{"id":{"#bigint":"0"},"sendingTime":{"#bigint":"2"},"validatorSet":{"#map":[["node1",{"#bigint":"50"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]}}]]]}}},"params":{"CcvTimeout":{"#map":[["consumer1",{"#bigint":"1814400"}],["consumer2",{"#bigint":"1814400"}],["consumer3",{"#bigint":"1814400"}],["provider",{"#bigint":"1814400"}]]},"ConsumerChains":{"#set":["consumer1","consumer2","consumer3"]},"InitialValidatorSet":{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},"Nodes":{"#set":["node1","node10","node2","node3","node4","node5","node6","node7","node8","node9"]},"TrustingPeriodPerChain":{"#map":[["consumer1",{"#bigint":"1206000"}],["consumer2",{"#bigint":"1206000"}],["consumer3",{"#bigint":"1206000"}],["provider",{"#bigint":"1206000"}]]},"UnbondingPeriodPerChain":{"#map":[["consumer1",{"#bigint":"1209600"}],["consumer2",{"#bigint":"1209600"}],["consumer3",{"#bigint":"1209600"}],["provider",{"#bigint":"1209600"}]]},"VscTimeout":{"#bigint":"3024000"}},"trace":[{"changeAmount":{"#bigint":"0"},"consumerChain":"","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"init","timeAdvancement":{"#bigint":"0"},"validator":""},{"changeAmount":{"#bigint":"0"},"consumerChain":"","consumersToStart":{"#set":["consumer1","consumer2","consumer3"]},"consumersToStop":{"#set":[]},"kind":"EndAndBeginBlockForProvider","timeAdvancement":{"#bigint":"1"},"validator":""},{"changeAmount":{"#bigint":"0"},"consumerChain":"consumer1","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"EndAndBeginBlockForConsumer","timeAdvancement":{"#bigint":"1"},"validator":""},{"changeAmount":{"#bigint":"0"},"consumerChain":"consumer2","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"EndAndBeginBlockForConsumer","timeAdvancement":{"#bigint":"1"},"validator":""},{"changeAmount":{"#bigint":"0"},"consumerChain":"consumer3","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"EndAndBeginBlockForConsumer","timeAdvancement":{"#bigint":"1"},"validator":""},{"changeAmount":{"#bigint":"-50"},"consumerChain":"","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"VotingPowerChange","timeAdvancement":{"#bigint":"0"},"validator":"node1"},{"changeAmount":{"#bigint":"0"},"consumerChain":"","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"EndAndBeginBlockForProvider","timeAdvancement":{"#bigint":"1"},"validator":""},{"changeAmount":{"#bigint":"0"},"consumerChain":"consumer1","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"EndAndBeginBlockForConsumer","timeAdvancement":{"#bigint":"1"},"validator":""},{"changeAmount":{"#bigint":"0"},"consumerChain":"consumer2","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"EndAndBeginBlockForConsumer","timeAdvancement":{"#bigint":"1"},"validator":""},{"changeAmount":{"#bigint":"0"},"consumerChain":"consumer3","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"EndAndBeginBlockForConsumer","timeAdvancement":{"#bigint":"1"},"validator":""},{"changeAmount":{"#bigint":"0"},"consumerChain":"consumer2","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"DeliverVscPacket","timeAdvancement":{"#bigint":"0"},"validator":""},{"changeAmount":{"#bigint":"0"},"consumerChain":"consumer3","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"DeliverVscPacket","timeAdvancement":{"#bigint":"0"},"validator":""},{"changeAmount":{"#bigint":"0"},"consumerChain":"","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"EndAndBeginBlockForProvider","timeAdvancement":{"#bigint":"601200"},"validator":""},{"changeAmount":{"#bigint":"0"},"consumerChain":"consumer1","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"EndAndBeginBlockForConsumer","timeAdvancement":{"#bigint":"601200"},"validator":""},{"changeAmount":{"#bigint":"0"},"consumerChain":"consumer2","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"EndAndBeginBlockForConsumer","timeAdvancement":{"#bigint":"601200"},"validator":""},{"changeAmount":{"#bigint":"0"},"consumerChain":"consumer3","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"EndAndBeginBlockForConsumer","timeAdvancement":{"#bigint":"601200"},"validator":""},{"changeAmount":{"#bigint":"0"},"consumerChain":"","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"EndAndBeginBlockForProvider","timeAdvancement":{"#bigint":"601200"},"validator":""},{"changeAmount":{"#bigint":"0"},"consumerChain":"consumer1","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"EndAndBeginBlockForConsumer","timeAdvancement":{"#bigint":"601200"},"validator":""},{"changeAmount":{"#bigint":"0"},"consumerChain":"consumer2","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"EndAndBeginBlockForConsumer","timeAdvancement":{"#bigint":"601200"},"validator":""},{"changeAmount":{"#bigint":"0"},"consumerChain":"consumer3","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"EndAndBeginBlockForConsumer","timeAdvancement":{"#bigint":"601200"},"validator":""},{"changeAmount":{"#bigint":"0"},"consumerChain":"","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"EndAndBeginBlockForProvider","timeAdvancement":{"#bigint":"601200"},"validator":""},{"changeAmount":{"#bigint":"0"},"consumerChain":"consumer1","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"EndAndBeginBlockForConsumer","timeAdvancement":{"#bigint":"601200"},"validator":""},{"changeAmount":{"#bigint":"0"},"consumerChain":"consumer2","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"EndAndBeginBlockForConsumer","timeAdvancement":{"#bigint":"601200"},"validator":""},{"changeAmount":{"#bigint":"0"},"consumerChain":"consumer3","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"EndAndBeginBlockForConsumer","timeAdvancement":{"#bigint":"601200"},"validator":""},{"changeAmount":{"#bigint":"0"},"consumerChain":"","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"EndAndBeginBlockForProvider","timeAdvancement":{"#bigint":"86400"},"validator":""}]},{"#meta":{"index":25},"QueuedEndBlocks":[{"#tup":["consumer2",{"#bigint":"86400"}]},{"#tup":["consumer3",{"#bigint":"86400"}]}],"currentState":{"consumerStates":{"#map":[["consumer1",{"chainState":{"currentValidatorSet":{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},"lastTimestamp":{"#bigint":"1890002"},"votingPowerHistory":[{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]}]},"maturationTimes":[],"outstandingPacketsToProvider":[],"receivedVscPackets":[]}],["consumer2",{"chainState":{"currentValidatorSet":{"#map":[["node1",{"#bigint":"50"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},"lastTimestamp":{"#bigint":"1803602"},"votingPowerHistory":[{"#map":[["node1",{"#bigint":"50"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},{"#map":[["node1",{"#bigint":"50"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},{"#map":[["node1",{"#bigint":"50"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]}]},"maturationTimes":[{"#tup":[{"id":{"#bigint":"0"},"sendingTime":{"#bigint":"2"},"validatorSet":{"#map":[["node1",{"#bigint":"50"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]}},{"#bigint":"1209602"}]}],"outstandingPacketsToProvider":[],"receivedVscPackets":[{"id":{"#bigint":"0"},"sendingTime":{"#bigint":"2"},"validatorSet":{"#map":[["node1",{"#bigint":"50"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]}}]}],["consumer3",{"chainState":{"currentValidatorSet":{"#map":[["node1",{"#bigint":"50"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},"lastTimestamp":{"#bigint":"1803602"},"votingPowerHistory":[{"#map":[["node1",{"#bigint":"50"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},{"#map":[["node1",{"#bigint":"50"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},{"#map":[["node1",{"#bigint":"50"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]}]},"maturationTimes":[{"#tup":[{"id":{"#bigint":"0"},"sendingTime":{"#bigint":"2"},"validatorSet":{"#map":[["node1",{"#bigint":"50"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]}},{"#bigint":"1209602"}]}],"outstandingPacketsToProvider":[],"receivedVscPackets":[{"id":{"#bigint":"0"},"sendingTime":{"#bigint":"2"},"validatorSet":{"#map":[["node1",{"#bigint":"50"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]}}]}]]},"providerState":{"chainState":{"currentValidatorSet":{"#map":[["node1",{"#bigint":"50"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},"lastTimestamp":{"#bigint":"1890002"},"votingPowerHistory":[{"#map":[["node1",{"#bigint":"50"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},{"#map":[["node1",{"#bigint":"50"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},{"#map":[["node1",{"#bigint":"50"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},{"#map":[["node1",{"#bigint":"50"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},{"#map":[["node1",{"#bigint":"50"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]}]},"consumerStatus":{"#map":[["consumer1","running"],["consumer2","running"],["consumer3","running"]]},"outstandingPacketsToConsumer":{"#map":[["consumer1",[{"id":{"#bigint":"0"},"sendingTime":{"#bigint":"2"},"validatorSet":{"#map":[["node1",{"#bigint":"50"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]}}]],["consumer2",[]],["consumer3",[]]]},"providerValidatorSetChangedInThisBlock":false,"receivedMaturations":{"#set":[]},"runningVscId":{"#bigint":"1"},"sentVscPacketsToConsumer":{"#map":[["consumer1",[{"id":{"#bigint":"0"},"sendingTime":{"#bigint":"2"},"validatorSet":{"#map":[["node1",{"#bigint":"50"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]}}]],["consumer2",[{"id":{"#bigint":"0"},"sendingTime":{"#bigint":"2"},"validatorSet":{"#map":[["node1",{"#bigint":"50"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]}}]],["consumer3",[{"id":{"#bigint":"0"},"sendingTime":{"#bigint":"2"},"validatorSet":{"#map":[["node1",{"#bigint":"50"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]}}]]]}}},"params":{"CcvTimeout":{"#map":[["consumer1",{"#bigint":"1814400"}],["consumer2",{"#bigint":"1814400"}],["consumer3",{"#bigint":"1814400"}],["provider",{"#bigint":"1814400"}]]},"ConsumerChains":{"#set":["consumer1","consumer2","consumer3"]},"InitialValidatorSet":{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},"Nodes":{"#set":["node1","node10","node2","node3","node4","node5","node6","node7","node8","node9"]},"TrustingPeriodPerChain":{"#map":[["consumer1",{"#bigint":"1206000"}],["consumer2",{"#bigint":"1206000"}],["consumer3",{"#bigint":"1206000"}],["provider",{"#bigint":"1206000"}]]},"UnbondingPeriodPerChain":{"#map":[["consumer1",{"#bigint":"1209600"}],["consumer2",{"#bigint":"1209600"}],["consumer3",{"#bigint":"1209600"}],["provider",{"#bigint":"1209600"}]]},"VscTimeout":{"#bigint":"3024000"}},"trace":[{"changeAmount":{"#bigint":"0"},"consumerChain":"","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"init","timeAdvancement":{"#bigint":"0"},"validator":""},{"changeAmount":{"#bigint":"0"},"consumerChain":"","consumersToStart":{"#set":["consumer1","consumer2","consumer3"]},"consumersToStop":{"#set":[]},"kind":"EndAndBeginBlockForProvider","timeAdvancement":{"#bigint":"1"},"validator":""},{"changeAmount":{"#bigint":"0"},"consumerChain":"consumer1","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"EndAndBeginBlockForConsumer","timeAdvancement":{"#bigint":"1"},"validator":""},{"changeAmount":{"#bigint":"0"},"consumerChain":"consumer2","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"EndAndBeginBlockForConsumer","timeAdvancement":{"#bigint":"1"},"validator":""},{"changeAmount":{"#bigint":"0"},"consumerChain":"consumer3","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"EndAndBeginBlockForConsumer","timeAdvancement":{"#bigint":"1"},"validator":""},{"changeAmount":{"#bigint":"-50"},"consumerChain":"","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"VotingPowerChange","timeAdvancement":{"#bigint":"0"},"validator":"node1"},{"changeAmount":{"#bigint":"0"},"consumerChain":"","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"EndAndBeginBlockForProvider","timeAdvancement":{"#bigint":"1"},"validator":""},{"changeAmount":{"#bigint":"0"},"consumerChain":"consumer1","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"EndAndBeginBlockForConsumer","timeAdvancement":{"#bigint":"1"},"validator":""},{"changeAmount":{"#bigint":"0"},"consumerChain":"consumer2","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"EndAndBeginBlockForConsumer","timeAdvancement":{"#bigint":"1"},"validator":""},{"changeAmount":{"#bigint":"0"},"consumerChain":"consumer3","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"EndAndBeginBlockForConsumer","timeAdvancement":{"#bigint":"1"},"validator":""},{"changeAmount":{"#bigint":"0"},"consumerChain":"consumer2","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"DeliverVscPacket","timeAdvancement":{"#bigint":"0"},"validator":""},{"changeAmount":{"#bigint":"0"},"consumerChain":"consumer3","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"DeliverVscPacket","timeAdvancement":{"#bigint":"0"},"validator":""},{"changeAmount":{"#bigint":"0"},"consumerChain":"","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"EndAndBeginBlockForProvider","timeAdvancement":{"#bigint":"601200"},"validator":""},{"changeAmount":{"#bigint":"0"},"consumerChain":"consumer1","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"EndAndBeginBlockForConsumer","timeAdvancement":{"#bigint":"601200"},"validator":""},{"changeAmount":{"#bigint":"0"},"consumerChain":"consumer2","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"EndAndBeginBlockForConsumer","timeAdvancement":{"#bigint":"601200"},"validator":""},{"changeAmount":{"#bigint":"0"},"consumerChain":"consumer3","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"EndAndBeginBlockForConsumer","timeAdvancement":{"#bigint":"601200"},"validator":""},{"changeAmount":{"#bigint":"0"},"consumerChain":"","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"EndAndBeginBlockForProvider","timeAdvancement":{"#bigint":"601200"},"validator":""},{"changeAmount":{"#bigint":"0"},"consumerChain":"consumer1","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"EndAndBeginBlockForConsumer","timeAdvancement":{"#bigint":"601200"},"validator":""},{"changeAmount":{"#bigint":"0"},"consumerChain":"consumer2","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"EndAndBeginBlockForConsumer","timeAdvancement":{"#bigint":"601200"},"validator":""},{"changeAmount":{"#bigint":"0"},"consumerChain":"consumer3","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"EndAndBeginBlockForConsumer","timeAdvancement":{"#bigint":"601200"},"validator":""},{"changeAmount":{"#bigint":"0"},"consumerChain":"","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"EndAndBeginBlockForProvider","timeAdvancement":{"#bigint":"601200"},"validator":""},{"changeAmount":{"#bigint":"0"},"consumerChain":"consumer1","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"EndAndBeginBlockForConsumer","timeAdvancement":{"#bigint":"601200"},"validator":""},{"changeAmount":{"#bigint":"0"},"consumerChain":"consumer2","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"EndAndBeginBlockForConsumer","timeAdvancement":{"#bigint":"601200"},"validator":""},{"changeAmount":{"#bigint":"0"},"consumerChain":"consumer3","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"EndAndBeginBlockForConsumer","timeAdvancement":{"#bigint":"601200"},"validator":""},{"changeAmount":{"#bigint":"0"},"consumerChain":"","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"EndAndBeginBlockForProvider","timeAdvancement":{"#bigint":"86400"},"validator":""},{"changeAmount":{"#bigint":"0"},"consumerChain":"consumer1","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"EndAndBeginBlockForConsumer","timeAdvancement":{"#bigint":"86400"},"validator":""}]},{"#meta":{"index":26},"QueuedEndBlocks":[{"#tup":["consumer3",{"#bigint":"86400"}]}],"currentState":{"consumerStates":{"#map":[["consumer1",{"chainState":{"currentValidatorSet":{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},"lastTimestamp":{"#bigint":"1890002"},"votingPowerHistory":[{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]}]},"maturationTimes":[],"outstandingPacketsToProvider":[],"receivedVscPackets":[]}],["consumer2",{"chainState":{"currentValidatorSet":{"#map":[["node1",{"#bigint":"50"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},"lastTimestamp":{"#bigint":"1890002"},"votingPowerHistory":[{"#map":[["node1",{"#bigint":"50"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},{"#map":[["node1",{"#bigint":"50"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},{"#map":[["node1",{"#bigint":"50"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},{"#map":[["node1",{"#bigint":"50"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]}]},"maturationTimes":[],"outstandingPacketsToProvider":[{"id":{"#bigint":"0"},"sendingTime":{"#bigint":"1803602"}}],"receivedVscPackets":[{"id":{"#bigint":"0"},"sendingTime":{"#bigint":"2"},"validatorSet":{"#map":[["node1",{"#bigint":"50"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]}}]}],["consumer3",{"chainState":{"currentValidatorSet":{"#map":[["node1",{"#bigint":"50"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},"lastTimestamp":{"#bigint":"1803602"},"votingPowerHistory":[{"#map":[["node1",{"#bigint":"50"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},{"#map":[["node1",{"#bigint":"50"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},{"#map":[["node1",{"#bigint":"50"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]}]},"maturationTimes":[{"#tup":[{"id":{"#bigint":"0"},"sendingTime":{"#bigint":"2"},"validatorSet":{"#map":[["node1",{"#bigint":"50"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]}},{"#bigint":"1209602"}]}],"outstandingPacketsToProvider":[],"receivedVscPackets":[{"id":{"#bigint":"0"},"sendingTime":{"#bigint":"2"},"validatorSet":{"#map":[["node1",{"#bigint":"50"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]}}]}]]},"providerState":{"chainState":{"currentValidatorSet":{"#map":[["node1",{"#bigint":"50"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},"lastTimestamp":{"#bigint":"1890002"},"votingPowerHistory":[{"#map":[["node1",{"#bigint":"50"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},{"#map":[["node1",{"#bigint":"50"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},{"#map":[["node1",{"#bigint":"50"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},{"#map":[["node1",{"#bigint":"50"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},{"#map":[["node1",{"#bigint":"50"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]}]},"consumerStatus":{"#map":[["consumer1","running"],["consumer2","running"],["consumer3","running"]]},"outstandingPacketsToConsumer":{"#map":[["consumer1",[{"id":{"#bigint":"0"},"sendingTime":{"#bigint":"2"},"validatorSet":{"#map":[["node1",{"#bigint":"50"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]}}]],["consumer2",[]],["consumer3",[]]]},"providerValidatorSetChangedInThisBlock":false,"receivedMaturations":{"#set":[]},"runningVscId":{"#bigint":"1"},"sentVscPacketsToConsumer":{"#map":[["consumer1",[{"id":{"#bigint":"0"},"sendingTime":{"#bigint":"2"},"validatorSet":{"#map":[["node1",{"#bigint":"50"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]}}]],["consumer2",[{"id":{"#bigint":"0"},"sendingTime":{"#bigint":"2"},"validatorSet":{"#map":[["node1",{"#bigint":"50"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]}}]],["consumer3",[{"id":{"#bigint":"0"},"sendingTime":{"#bigint":"2"},"validatorSet":{"#map":[["node1",{"#bigint":"50"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]}}]]]}}},"params":{"CcvTimeout":{"#map":[["consumer1",{"#bigint":"1814400"}],["consumer2",{"#bigint":"1814400"}],["consumer3",{"#bigint":"1814400"}],["provider",{"#bigint":"1814400"}]]},"ConsumerChains":{"#set":["consumer1","consumer2","consumer3"]},"InitialValidatorSet":{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},"Nodes":{"#set":["node1","node10","node2","node3","node4","node5","node6","node7","node8","node9"]},"TrustingPeriodPerChain":{"#map":[["consumer1",{"#bigint":"1206000"}],["consumer2",{"#bigint":"1206000"}],["consumer3",{"#bigint":"1206000"}],["provider",{"#bigint":"1206000"}]]},"UnbondingPeriodPerChain":{"#map":[["consumer1",{"#bigint":"1209600"}],["consumer2",{"#bigint":"1209600"}],["consumer3",{"#bigint":"1209600"}],["provider",{"#bigint":"1209600"}]]},"VscTimeout":{"#bigint":"3024000"}},"trace":[{"changeAmount":{"#bigint":"0"},"consumerChain":"","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"init","timeAdvancement":{"#bigint":"0"},"validator":""},{"changeAmount":{"#bigint":"0"},"consumerChain":"","consumersToStart":{"#set":["consumer1","consumer2","consumer3"]},"consumersToStop":{"#set":[]},"kind":"EndAndBeginBlockForProvider","timeAdvancement":{"#bigint":"1"},"validator":""},{"changeAmount":{"#bigint":"0"},"consumerChain":"consumer1","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"EndAndBeginBlockForConsumer","timeAdvancement":{"#bigint":"1"},"validator":""},{"changeAmount":{"#bigint":"0"},"consumerChain":"consumer2","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"EndAndBeginBlockForConsumer","timeAdvancement":{"#bigint":"1"},"validator":""},{"changeAmount":{"#bigint":"0"},"consumerChain":"consumer3","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"EndAndBeginBlockForConsumer","timeAdvancement":{"#bigint":"1"},"validator":""},{"changeAmount":{"#bigint":"-50"},"consumerChain":"","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"VotingPowerChange","timeAdvancement":{"#bigint":"0"},"validator":"node1"},{"changeAmount":{"#bigint":"0"},"consumerChain":"","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"EndAndBeginBlockForProvider","timeAdvancement":{"#bigint":"1"},"validator":""},{"changeAmount":{"#bigint":"0"},"consumerChain":"consumer1","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"EndAndBeginBlockForConsumer","timeAdvancement":{"#bigint":"1"},"validator":""},{"changeAmount":{"#bigint":"0"},"consumerChain":"consumer2","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"EndAndBeginBlockForConsumer","timeAdvancement":{"#bigint":"1"},"validator":""},{"changeAmount":{"#bigint":"0"},"consumerChain":"consumer3","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"EndAndBeginBlockForConsumer","timeAdvancement":{"#bigint":"1"},"validator":""},{"changeAmount":{"#bigint":"0"},"consumerChain":"consumer2","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"DeliverVscPacket","timeAdvancement":{"#bigint":"0"},"validator":""},{"changeAmount":{"#bigint":"0"},"consumerChain":"consumer3","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"DeliverVscPacket","timeAdvancement":{"#bigint":"0"},"validator":""},{"changeAmount":{"#bigint":"0"},"consumerChain":"","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"EndAndBeginBlockForProvider","timeAdvancement":{"#bigint":"601200"},"validator":""},{"changeAmount":{"#bigint":"0"},"consumerChain":"consumer1","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"EndAndBeginBlockForConsumer","timeAdvancement":{"#bigint":"601200"},"validator":""},{"changeAmount":{"#bigint":"0"},"consumerChain":"consumer2","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"EndAndBeginBlockForConsumer","timeAdvancement":{"#bigint":"601200"},"validator":""},{"changeAmount":{"#bigint":"0"},"consumerChain":"consumer3","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"EndAndBeginBlockForConsumer","timeAdvancement":{"#bigint":"601200"},"validator":""},{"changeAmount":{"#bigint":"0"},"consumerChain":"","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"EndAndBeginBlockForProvider","timeAdvancement":{"#bigint":"601200"},"validator":""},{"changeAmount":{"#bigint":"0"},"consumerChain":"consumer1","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"EndAndBeginBlockForConsumer","timeAdvancement":{"#bigint":"601200"},"validator":""},{"changeAmount":{"#bigint":"0"},"consumerChain":"consumer2","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"EndAndBeginBlockForConsumer","timeAdvancement":{"#bigint":"601200"},"validator":""},{"changeAmount":{"#bigint":"0"},"consumerChain":"consumer3","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"EndAndBeginBlockForConsumer","timeAdvancement":{"#bigint":"601200"},"validator":""},{"changeAmount":{"#bigint":"0"},"consumerChain":"","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"EndAndBeginBlockForProvider","timeAdvancement":{"#bigint":"601200"},"validator":""},{"changeAmount":{"#bigint":"0"},"consumerChain":"consumer1","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"EndAndBeginBlockForConsumer","timeAdvancement":{"#bigint":"601200"},"validator":""},{"changeAmount":{"#bigint":"0"},"consumerChain":"consumer2","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"EndAndBeginBlockForConsumer","timeAdvancement":{"#bigint":"601200"},"validator":""},{"changeAmount":{"#bigint":"0"},"consumerChain":"consumer3","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"EndAndBeginBlockForConsumer","timeAdvancement":{"#bigint":"601200"},"validator":""},{"changeAmount":{"#bigint":"0"},"consumerChain":"","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"EndAndBeginBlockForProvider","timeAdvancement":{"#bigint":"86400"},"validator":""},{"changeAmount":{"#bigint":"0"},"consumerChain":"consumer1","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"EndAndBeginBlockForConsumer","timeAdvancement":{"#bigint":"86400"},"validator":""},{"changeAmount":{"#bigint":"0"},"consumerChain":"consumer2","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"EndAndBeginBlockForConsumer","timeAdvancement":{"#bigint":"86400"},"validator":""}]},{"#meta":{"index":27},"QueuedEndBlocks":[],"currentState":{"consumerStates":{"#map":[["consumer1",{"chainState":{"currentValidatorSet":{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},"lastTimestamp":{"#bigint":"1890002"},"votingPowerHistory":[{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]}]},"maturationTimes":[],"outstandingPacketsToProvider":[],"receivedVscPackets":[]}],["consumer2",{"chainState":{"currentValidatorSet":{"#map":[["node1",{"#bigint":"50"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},"lastTimestamp":{"#bigint":"1890002"},"votingPowerHistory":[{"#map":[["node1",{"#bigint":"50"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},{"#map":[["node1",{"#bigint":"50"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},{"#map":[["node1",{"#bigint":"50"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},{"#map":[["node1",{"#bigint":"50"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]}]},"maturationTimes":[],"outstandingPacketsToProvider":[{"id":{"#bigint":"0"},"sendingTime":{"#bigint":"1803602"}}],"receivedVscPackets":[{"id":{"#bigint":"0"},"sendingTime":{"#bigint":"2"},"validatorSet":{"#map":[["node1",{"#bigint":"50"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]}}]}],["consumer3",{"chainState":{"currentValidatorSet":{"#map":[["node1",{"#bigint":"50"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},"lastTimestamp":{"#bigint":"1890002"},"votingPowerHistory":[{"#map":[["node1",{"#bigint":"50"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},{"#map":[["node1",{"#bigint":"50"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},{"#map":[["node1",{"#bigint":"50"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},{"#map":[["node1",{"#bigint":"50"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]}]},"maturationTimes":[],"outstandingPacketsToProvider":[{"id":{"#bigint":"0"},"sendingTime":{"#bigint":"1803602"}}],"receivedVscPackets":[{"id":{"#bigint":"0"},"sendingTime":{"#bigint":"2"},"validatorSet":{"#map":[["node1",{"#bigint":"50"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]}}]}]]},"providerState":{"chainState":{"currentValidatorSet":{"#map":[["node1",{"#bigint":"50"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},"lastTimestamp":{"#bigint":"1890002"},"votingPowerHistory":[{"#map":[["node1",{"#bigint":"50"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},{"#map":[["node1",{"#bigint":"50"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},{"#map":[["node1",{"#bigint":"50"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},{"#map":[["node1",{"#bigint":"50"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},{"#map":[["node1",{"#bigint":"50"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]}]},"consumerStatus":{"#map":[["consumer1","running"],["consumer2","running"],["consumer3","running"]]},"outstandingPacketsToConsumer":{"#map":[["consumer1",[{"id":{"#bigint":"0"},"sendingTime":{"#bigint":"2"},"validatorSet":{"#map":[["node1",{"#bigint":"50"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]}}]],["consumer2",[]],["consumer3",[]]]},"providerValidatorSetChangedInThisBlock":false,"receivedMaturations":{"#set":[]},"runningVscId":{"#bigint":"1"},"sentVscPacketsToConsumer":{"#map":[["consumer1",[{"id":{"#bigint":"0"},"sendingTime":{"#bigint":"2"},"validatorSet":{"#map":[["node1",{"#bigint":"50"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]}}]],["consumer2",[{"id":{"#bigint":"0"},"sendingTime":{"#bigint":"2"},"validatorSet":{"#map":[["node1",{"#bigint":"50"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]}}]],["consumer3",[{"id":{"#bigint":"0"},"sendingTime":{"#bigint":"2"},"validatorSet":{"#map":[["node1",{"#bigint":"50"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]}}]]]}}},"params":{"CcvTimeout":{"#map":[["consumer1",{"#bigint":"1814400"}],["consumer2",{"#bigint":"1814400"}],["consumer3",{"#bigint":"1814400"}],["provider",{"#bigint":"1814400"}]]},"ConsumerChains":{"#set":["consumer1","consumer2","consumer3"]},"InitialValidatorSet":{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},"Nodes":{"#set":["node1","node10","node2","node3","node4","node5","node6","node7","node8","node9"]},"TrustingPeriodPerChain":{"#map":[["consumer1",{"#bigint":"1206000"}],["consumer2",{"#bigint":"1206000"}],["consumer3",{"#bigint":"1206000"}],["provider",{"#bigint":"1206000"}]]},"UnbondingPeriodPerChain":{"#map":[["consumer1",{"#bigint":"1209600"}],["consumer2",{"#bigint":"1209600"}],["consumer3",{"#bigint":"1209600"}],["provider",{"#bigint":"1209600"}]]},"VscTimeout":{"#bigint":"3024000"}},"trace":[{"changeAmount":{"#bigint":"0"},"consumerChain":"","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"init","timeAdvancement":{"#bigint":"0"},"validator":""},{"changeAmount":{"#bigint":"0"},"consumerChain":"","consumersToStart":{"#set":["consumer1","consumer2","consumer3"]},"consumersToStop":{"#set":[]},"kind":"EndAndBeginBlockForProvider","timeAdvancement":{"#bigint":"1"},"validator":""},{"changeAmount":{"#bigint":"0"},"consumerChain":"consumer1","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"EndAndBeginBlockForConsumer","timeAdvancement":{"#bigint":"1"},"validator":""},{"changeAmount":{"#bigint":"0"},"consumerChain":"consumer2","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"EndAndBeginBlockForConsumer","timeAdvancement":{"#bigint":"1"},"validator":""},{"changeAmount":{"#bigint":"0"},"consumerChain":"consumer3","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"EndAndBeginBlockForConsumer","timeAdvancement":{"#bigint":"1"},"validator":""},{"changeAmount":{"#bigint":"-50"},"consumerChain":"","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"VotingPowerChange","timeAdvancement":{"#bigint":"0"},"validator":"node1"},{"changeAmount":{"#bigint":"0"},"consumerChain":"","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"EndAndBeginBlockForProvider","timeAdvancement":{"#bigint":"1"},"validator":""},{"changeAmount":{"#bigint":"0"},"consumerChain":"consumer1","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"EndAndBeginBlockForConsumer","timeAdvancement":{"#bigint":"1"},"validator":""},{"changeAmount":{"#bigint":"0"},"consumerChain":"consumer2","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"EndAndBeginBlockForConsumer","timeAdvancement":{"#bigint":"1"},"validator":""},{"changeAmount":{"#bigint":"0"},"consumerChain":"consumer3","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"EndAndBeginBlockForConsumer","timeAdvancement":{"#bigint":"1"},"validator":""},{"changeAmount":{"#bigint":"0"},"consumerChain":"consumer2","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"DeliverVscPacket","timeAdvancement":{"#bigint":"0"},"validator":""},{"changeAmount":{"#bigint":"0"},"consumerChain":"consumer3","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"DeliverVscPacket","timeAdvancement":{"#bigint":"0"},"validator":""},{"changeAmount":{"#bigint":"0"},"consumerChain":"","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"EndAndBeginBlockForProvider","timeAdvancement":{"#bigint":"601200"},"validator":""},{"changeAmount":{"#bigint":"0"},"consumerChain":"consumer1","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"EndAndBeginBlockForConsumer","timeAdvancement":{"#bigint":"601200"},"validator":""},{"changeAmount":{"#bigint":"0"},"consumerChain":"consumer2","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"EndAndBeginBlockForConsumer","timeAdvancement":{"#bigint":"601200"},"validator":""},{"changeAmount":{"#bigint":"0"},"consumerChain":"consumer3","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"EndAndBeginBlockForConsumer","timeAdvancement":{"#bigint":"601200"},"validator":""},{"changeAmount":{"#bigint":"0"},"consumerChain":"","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"EndAndBeginBlockForProvider","timeAdvancement":{"#bigint":"601200"},"validator":""},{"changeAmount":{"#bigint":"0"},"consumerChain":"consumer1","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"EndAndBeginBlockForConsumer","timeAdvancement":{"#bigint":"601200"},"validator":""},{"changeAmount":{"#bigint":"0"},"consumerChain":"consumer2","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"EndAndBeginBlockForConsumer","timeAdvancement":{"#bigint":"601200"},"validator":""},{"changeAmount":{"#bigint":"0"},"consumerChain":"consumer3","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"EndAndBeginBlockForConsumer","timeAdvancement":{"#bigint":"601200"},"validator":""},{"changeAmount":{"#bigint":"0"},"consumerChain":"","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"EndAndBeginBlockForProvider","timeAdvancement":{"#bigint":"601200"},"validator":""},{"changeAmount":{"#bigint":"0"},"consumerChain":"consumer1","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"EndAndBeginBlockForConsumer","timeAdvancement":{"#bigint":"601200"},"validator":""},{"changeAmount":{"#bigint":"0"},"consumerChain":"consumer2","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"EndAndBeginBlockForConsumer","timeAdvancement":{"#bigint":"601200"},"validator":""},{"changeAmount":{"#bigint":"0"},"consumerChain":"consumer3","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"EndAndBeginBlockForConsumer","timeAdvancement":{"#bigint":"601200"},"validator":""},{"changeAmount":{"#bigint":"0"},"consumerChain":"","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"EndAndBeginBlockForProvider","timeAdvancement":{"#bigint":"86400"},"validator":""},{"changeAmount":{"#bigint":"0"},"consumerChain":"consumer1","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"EndAndBeginBlockForConsumer","timeAdvancement":{"#bigint":"86400"},"validator":""},{"changeAmount":{"#bigint":"0"},"consumerChain":"consumer2","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"EndAndBeginBlockForConsumer","timeAdvancement":{"#bigint":"86400"},"validator":""},{"changeAmount":{"#bigint":"0"},"consumerChain":"consumer3","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"EndAndBeginBlockForConsumer","timeAdvancement":{"#bigint":"86400"},"validator":""}]},{"#meta":{"index":28},"QueuedEndBlocks":[],"currentState":{"consumerStates":{"#map":[["consumer1",{"chainState":{"currentValidatorSet":{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},"lastTimestamp":{"#bigint":"1890002"},"votingPowerHistory":[{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]}]},"maturationTimes":[],"outstandingPacketsToProvider":[],"receivedVscPackets":[]}],["consumer2",{"chainState":{"currentValidatorSet":{"#map":[["node1",{"#bigint":"50"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},"lastTimestamp":{"#bigint":"1890002"},"votingPowerHistory":[{"#map":[["node1",{"#bigint":"50"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},{"#map":[["node1",{"#bigint":"50"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},{"#map":[["node1",{"#bigint":"50"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},{"#map":[["node1",{"#bigint":"50"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]}]},"maturationTimes":[],"outstandingPacketsToProvider":[],"receivedVscPackets":[{"id":{"#bigint":"0"},"sendingTime":{"#bigint":"2"},"validatorSet":{"#map":[["node1",{"#bigint":"50"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]}}]}],["consumer3",{"chainState":{"currentValidatorSet":{"#map":[["node1",{"#bigint":"50"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},"lastTimestamp":{"#bigint":"1890002"},"votingPowerHistory":[{"#map":[["node1",{"#bigint":"50"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},{"#map":[["node1",{"#bigint":"50"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},{"#map":[["node1",{"#bigint":"50"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},{"#map":[["node1",{"#bigint":"50"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]}]},"maturationTimes":[],"outstandingPacketsToProvider":[{"id":{"#bigint":"0"},"sendingTime":{"#bigint":"1803602"}}],"receivedVscPackets":[{"id":{"#bigint":"0"},"sendingTime":{"#bigint":"2"},"validatorSet":{"#map":[["node1",{"#bigint":"50"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]}}]}]]},"providerState":{"chainState":{"currentValidatorSet":{"#map":[["node1",{"#bigint":"50"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},"lastTimestamp":{"#bigint":"1890002"},"votingPowerHistory":[{"#map":[["node1",{"#bigint":"50"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},{"#map":[["node1",{"#bigint":"50"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},{"#map":[["node1",{"#bigint":"50"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},{"#map":[["node1",{"#bigint":"50"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},{"#map":[["node1",{"#bigint":"50"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]}]},"consumerStatus":{"#map":[["consumer1","running"],["consumer2","running"],["consumer3","running"]]},"outstandingPacketsToConsumer":{"#map":[["consumer1",[{"id":{"#bigint":"0"},"sendingTime":{"#bigint":"2"},"validatorSet":{"#map":[["node1",{"#bigint":"50"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]}}]],["consumer2",[]],["consumer3",[]]]},"providerValidatorSetChangedInThisBlock":false,"receivedMaturations":{"#set":[{"id":{"#bigint":"0"},"sendingTime":{"#bigint":"1803602"}}]},"runningVscId":{"#bigint":"1"},"sentVscPacketsToConsumer":{"#map":[["consumer1",[{"id":{"#bigint":"0"},"sendingTime":{"#bigint":"2"},"validatorSet":{"#map":[["node1",{"#bigint":"50"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]}}]],["consumer2",[{"id":{"#bigint":"0"},"sendingTime":{"#bigint":"2"},"validatorSet":{"#map":[["node1",{"#bigint":"50"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]}}]],["consumer3",[{"id":{"#bigint":"0"},"sendingTime":{"#bigint":"2"},"validatorSet":{"#map":[["node1",{"#bigint":"50"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]}}]]]}}},"params":{"CcvTimeout":{"#map":[["consumer1",{"#bigint":"1814400"}],["consumer2",{"#bigint":"1814400"}],["consumer3",{"#bigint":"1814400"}],["provider",{"#bigint":"1814400"}]]},"ConsumerChains":{"#set":["consumer1","consumer2","consumer3"]},"InitialValidatorSet":{"#map":[["node1",{"#bigint":"100"}],["node10",{"#bigint":"100"}],["node2",{"#bigint":"100"}],["node3",{"#bigint":"100"}],["node4",{"#bigint":"100"}],["node5",{"#bigint":"100"}],["node6",{"#bigint":"100"}],["node7",{"#bigint":"100"}],["node8",{"#bigint":"100"}],["node9",{"#bigint":"100"}]]},"Nodes":{"#set":["node1","node10","node2","node3","node4","node5","node6","node7","node8","node9"]},"TrustingPeriodPerChain":{"#map":[["consumer1",{"#bigint":"1206000"}],["consumer2",{"#bigint":"1206000"}],["consumer3",{"#bigint":"1206000"}],["provider",{"#bigint":"1206000"}]]},"UnbondingPeriodPerChain":{"#map":[["consumer1",{"#bigint":"1209600"}],["consumer2",{"#bigint":"1209600"}],["consumer3",{"#bigint":"1209600"}],["provider",{"#bigint":"1209600"}]]},"VscTimeout":{"#bigint":"3024000"}},"trace":[{"changeAmount":{"#bigint":"0"},"consumerChain":"","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"init","timeAdvancement":{"#bigint":"0"},"validator":""},{"changeAmount":{"#bigint":"0"},"consumerChain":"","consumersToStart":{"#set":["consumer1","consumer2","consumer3"]},"consumersToStop":{"#set":[]},"kind":"EndAndBeginBlockForProvider","timeAdvancement":{"#bigint":"1"},"validator":""},{"changeAmount":{"#bigint":"0"},"consumerChain":"consumer1","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"EndAndBeginBlockForConsumer","timeAdvancement":{"#bigint":"1"},"validator":""},{"changeAmount":{"#bigint":"0"},"consumerChain":"consumer2","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"EndAndBeginBlockForConsumer","timeAdvancement":{"#bigint":"1"},"validator":""},{"changeAmount":{"#bigint":"0"},"consumerChain":"consumer3","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"EndAndBeginBlockForConsumer","timeAdvancement":{"#bigint":"1"},"validator":""},{"changeAmount":{"#bigint":"-50"},"consumerChain":"","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"VotingPowerChange","timeAdvancement":{"#bigint":"0"},"validator":"node1"},{"changeAmount":{"#bigint":"0"},"consumerChain":"","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"EndAndBeginBlockForProvider","timeAdvancement":{"#bigint":"1"},"validator":""},{"changeAmount":{"#bigint":"0"},"consumerChain":"consumer1","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"EndAndBeginBlockForConsumer","timeAdvancement":{"#bigint":"1"},"validator":""},{"changeAmount":{"#bigint":"0"},"consumerChain":"consumer2","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"EndAndBeginBlockForConsumer","timeAdvancement":{"#bigint":"1"},"validator":""},{"changeAmount":{"#bigint":"0"},"consumerChain":"consumer3","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"EndAndBeginBlockForConsumer","timeAdvancement":{"#bigint":"1"},"validator":""},{"changeAmount":{"#bigint":"0"},"consumerChain":"consumer2","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"DeliverVscPacket","timeAdvancement":{"#bigint":"0"},"validator":""},{"changeAmount":{"#bigint":"0"},"consumerChain":"consumer3","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"DeliverVscPacket","timeAdvancement":{"#bigint":"0"},"validator":""},{"changeAmount":{"#bigint":"0"},"consumerChain":"","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"EndAndBeginBlockForProvider","timeAdvancement":{"#bigint":"601200"},"validator":""},{"changeAmount":{"#bigint":"0"},"consumerChain":"consumer1","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"EndAndBeginBlockForConsumer","timeAdvancement":{"#bigint":"601200"},"validator":""},{"changeAmount":{"#bigint":"0"},"consumerChain":"consumer2","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"EndAndBeginBlockForConsumer","timeAdvancement":{"#bigint":"601200"},"validator":""},{"changeAmount":{"#bigint":"0"},"consumerChain":"consumer3","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"EndAndBeginBlockForConsumer","timeAdvancement":{"#bigint":"601200"},"validator":""},{"changeAmount":{"#bigint":"0"},"consumerChain":"","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"EndAndBeginBlockForProvider","timeAdvancement":{"#bigint":"601200"},"validator":""},{"changeAmount":{"#bigint":"0"},"consumerChain":"consumer1","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"EndAndBeginBlockForConsumer","timeAdvancement":{"#bigint":"601200"},"validator":""},{"changeAmount":{"#bigint":"0"},"consumerChain":"consumer2","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"EndAndBeginBlockForConsumer","timeAdvancement":{"#bigint":"601200"},"validator":""},{"changeAmount":{"#bigint":"0"},"consumerChain":"consumer3","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"EndAndBeginBlockForConsumer","timeAdvancement":{"#bigint":"601200"},"validator":""},{"changeAmount":{"#bigint":"0"},"consumerChain":"","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"EndAndBeginBlockForProvider","timeAdvancement":{"#bigint":"601200"},"validator":""},{"changeAmount":{"#bigint":"0"},"consumerChain":"consumer1","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"EndAndBeginBlockForConsumer","timeAdvancement":{"#bigint":"601200"},"validator":""},{"changeAmount":{"#bigint":"0"},"consumerChain":"consumer2","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"EndAndBeginBlockForConsumer","timeAdvancement":{"#bigint":"601200"},"validator":""},{"changeAmount":{"#bigint":"0"},"consumerChain":"consumer3","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"EndAndBeginBlockForConsumer","timeAdvancement":{"#bigint":"601200"},"validator":""},{"changeAmount":{"#bigint":"0"},"consumerChain":"","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"EndAndBeginBlockForProvider","timeAdvancement":{"#bigint":"86400"},"validator":""},{"changeAmount":{"#bigint":"0"},"consumerChain":"consumer1","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"EndAndBeginBlockForConsumer","timeAdvancement":{"#bigint":"86400"},"validator":""},{"changeAmount":{"#bigint":"0"},"consumerChain":"consumer2","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"EndAndBeginBlockForConsumer","timeAdvancement":{"#bigint":"86400"},"validator":""},{"changeAmount":{"#bigint":"0"},"consumerChain":"consumer3","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"EndAndBeginBlockForConsumer","timeAdvancement":{"#bigint":"86400"},"validator":""},{"changeAmount":{"#bigint":"0"},"consumerChain":"consumer2","consumersToStart":{"#set":[]},"consumersToStop":{"#set":[]},"kind":"DeliverVscMaturedPacket","timeAdvancement":{"#bigint":"0"},"validator":""}]}]} \ No newline at end of file diff --git a/testutil/simibc/relay_util.go b/testutil/simibc/relay_util.go index edfbfddb35..f6be32cd60 100644 --- a/testutil/simibc/relay_util.go +++ b/testutil/simibc/relay_util.go @@ -68,7 +68,7 @@ func UpdateReceiverClient(sender, receiver *ibctesting.Endpoint, header *ibctmty // The packet must be sent from the sender chain to the receiver chain, and the // receiver chain must have a client for the sender chain which has been updated // to a recent height of the sender chain so that it can verify the packet. -func TryRecvPacket(sender, receiver *ibctesting.Endpoint, packet channeltypes.Packet) (ack []byte, err error) { +func TryRecvPacket(sender, receiver *ibctesting.Endpoint, packet channeltypes.Packet, expectError bool) (ack []byte, err error) { packetKey := host.PacketCommitmentKey(packet.GetSourcePort(), packet.GetSourceChannel(), packet.GetSequence()) proof, proofHeight := sender.Chain.QueryProof(packetKey) @@ -83,7 +83,7 @@ func TryRecvPacket(sender, receiver *ibctesting.Endpoint, packet channeltypes.Pa receiver.Chain.ChainID, []uint64{receiver.Chain.SenderAccount.GetAccountNumber()}, []uint64{receiver.Chain.SenderAccount.GetSequence()}, - true, true, receiver.Chain.SenderPrivKey, + true, !expectError, receiver.Chain.SenderPrivKey, ) if err != nil { return nil, err diff --git a/testutil/simibc/relayed_path.go b/testutil/simibc/relayed_path.go index bda1a50a10..4a5226e59a 100644 --- a/testutil/simibc/relayed_path.go +++ b/testutil/simibc/relayed_path.go @@ -132,13 +132,16 @@ func (f *RelayedPath) UpdateClient(chainID string, expectExpiration bool) error // // In order to deliver packets, the chain must have an up-to-date client // of the counterparty chain. Ie. UpdateClient should be called before this. -func (f *RelayedPath) DeliverPackets(chainID string, num int) { +// +// If expectError is true, we expect *each* packet to be delivered to cause an error. +func (f *RelayedPath) DeliverPackets(chainID string, num int, expectError bool) { for _, p := range f.Outboxes.ConsumePackets(f.Counterparty(chainID), num) { - ack, err := TryRecvPacket(f.endpoint(f.Counterparty(chainID)), f.endpoint(chainID), p.Packet) - if err != nil { - f.t.Fatal("deliver") + ack, err := TryRecvPacket(f.endpoint(f.Counterparty(chainID)), f.endpoint(chainID), p.Packet, expectError) + if err != nil && !expectError { + f.t.Fatal("Got an error from TryRecvPacket: ", err) + } else { + f.Outboxes.AddAck(chainID, ack, p.Packet) } - f.Outboxes.AddAck(chainID, ack, p.Packet) } } From 4238978c6c088b330c2956c7199c8be9842635f0 Mon Sep 17 00:00:00 2001 From: Philip Offtermatt Date: Wed, 29 Nov 2023 15:29:22 +0100 Subject: [PATCH 056/111] Fix vsc timeouts should happen during endblock --- tests/difference/core/quint_model/ccv.qnt | 18 ++++++++++-------- 1 file changed, 10 insertions(+), 8 deletions(-) diff --git a/tests/difference/core/quint_model/ccv.qnt b/tests/difference/core/quint_model/ccv.qnt index a3b33e78ff..c8b6db577a 100644 --- a/tests/difference/core/quint_model/ccv.qnt +++ b/tests/difference/core/quint_model/ccv.qnt @@ -381,8 +381,17 @@ module ccv { // forced stops, e.g. because a consumer timed out, // will be added automatically. consumersToStop: Set[Chain]): Result = { - // commit the current running validator set on chain val currentProviderState = currentState.providerState + + // check for Vsc timeouts + val timedOutConsumers = getRunningConsumers(currentProviderState).filter( + consumer => + val res = TimeoutDueToVscTimeout(currentState, consumer) + res._1 + ) + + + // run the shared core chainState logic val newChainState = currentProviderState.chainState.endAndBeginBlockShared(timeAdvancement) val providerStateAfterTimeAdvancement = currentProviderState.with( "chainState", newChainState @@ -392,13 +401,6 @@ module ccv { "providerState", providerStateAfterTimeAdvancement ) - // check for Vsc timeouts - // needs to be done with the old provider state, since this happens during EndBlock - val timedOutConsumers = getRunningConsumers(currentProviderState).filter( - consumer => - val res = TimeoutDueToVscTimeout(tmpState, consumer) - res._1 - ) // send vsc packets val providerStateAfterSending = From 2d1a874dc2d7d6381196d25870b6a827a8360bfd Mon Sep 17 00:00:00 2001 From: Philip Offtermatt Date: Wed, 29 Nov 2023 15:32:24 +0100 Subject: [PATCH 057/111] Revert the timestamp change --- tests/difference/core/quint_model/ccv.qnt | 2 +- tests/difference/core/quint_model/ccv_model.qnt | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/difference/core/quint_model/ccv.qnt b/tests/difference/core/quint_model/ccv.qnt index c8b6db577a..e324d734a1 100644 --- a/tests/difference/core/quint_model/ccv.qnt +++ b/tests/difference/core/quint_model/ccv.qnt @@ -808,7 +808,7 @@ module ccv { val sentVscPacketsToConsumer = providerState.sentVscPacketsToConsumer.get(consumer) if(sentVscPacketsToConsumer.length() > 0) { val oldestSentVscPacket = sentVscPacketsToConsumer.head() // if length is 0, this is undefined, but we check for this before we use it - if(oldestSentVscPacket.sendingTime + VscTimeout < providerState.chainState.lastTimestamp) { + if(oldestSentVscPacket.sendingTime + VscTimeout < providerState.chainState.runningTimestamp) { (true, "") } else { // no timeout yet, it has not been VscTimeout since that packet was sent diff --git a/tests/difference/core/quint_model/ccv_model.qnt b/tests/difference/core/quint_model/ccv_model.qnt index 444ecc0f3e..750ae20792 100644 --- a/tests/difference/core/quint_model/ccv_model.qnt +++ b/tests/difference/core/quint_model/ccv_model.qnt @@ -619,7 +619,7 @@ module ccv_model { EndAndBeginBlockForProvider(VscTimeout + 1 * Second, Set(), Set()) ) .then( - // end a block with the advanced time + // eenter the advanced time on chain EndAndBeginBlockForProvider(1 * Second, Set(), Set()) ) .then( From bcdd85c445fb9508c61cfcba4cd2cb9a3f04cd7f Mon Sep 17 00:00:00 2001 From: Philip Offtermatt Date: Wed, 29 Nov 2023 17:44:04 +0100 Subject: [PATCH 058/111] Add more diverse traces --- tests/difference/core/quint_model/ccv.qnt | 5 +- .../driver/generate_boundeddrift_traces.sh | 1 - .../quint_model/driver/generate_traces.sh | 11 ++- .../core/quint_model/driver/mbt_test.go | 69 +++++++++++++++---- .../core/quint_model/driver/model_viewer.go | 14 ++++ 5 files changed, 83 insertions(+), 17 deletions(-) delete mode 100755 tests/difference/core/quint_model/driver/generate_boundeddrift_traces.sh diff --git a/tests/difference/core/quint_model/ccv.qnt b/tests/difference/core/quint_model/ccv.qnt index e324d734a1..109a2e9ba4 100644 --- a/tests/difference/core/quint_model/ccv.qnt +++ b/tests/difference/core/quint_model/ccv.qnt @@ -721,7 +721,10 @@ module ccv { // prune the sentVscPacket val newSentVscPacket = currentState.providerState.sentVscPacketsToConsumer.get(sender).tail() val newState = currentState.with( - "providerState", newProviderState + "providerState", + {...newProviderState, + sentVscPacketsToConsumer: currentState.providerState.sentVscPacketsToConsumer.set(sender, newSentVscPacket) + } ) Ok(newState) } diff --git a/tests/difference/core/quint_model/driver/generate_boundeddrift_traces.sh b/tests/difference/core/quint_model/driver/generate_boundeddrift_traces.sh deleted file mode 100755 index 8d071d196b..0000000000 --- a/tests/difference/core/quint_model/driver/generate_boundeddrift_traces.sh +++ /dev/null @@ -1 +0,0 @@ -go run ./... -modelPath=../ccv_boundeddrift.qnt -step stepBoundedDrift -invariant CanTimeoutConsumer -traceFolder traces -numTraces 150 -numSteps 200 -numSamples 200 \ No newline at end of file diff --git a/tests/difference/core/quint_model/driver/generate_traces.sh b/tests/difference/core/quint_model/driver/generate_traces.sh index 2936b05455..0d08ea436b 100755 --- a/tests/difference/core/quint_model/driver/generate_traces.sh +++ b/tests/difference/core/quint_model/driver/generate_traces.sh @@ -1 +1,10 @@ -go run ./... -modelPath=../ccv_model.qnt -init init -step step -traceFolder traces -numTraces 100 --numSamples 1 \ No newline at end of file +echo "Generating bounded drift traces with timeouts" +go run ./... -modelPath=../ccv_boundeddrift.qnt -step stepBoundedDrift -invariant CanTimeoutConsumer -traceFolder traces/bound_timeout -numTraces 10 -numSteps 200 -numSamples 200 +echo "Generating long bounded drift traces without invariants" +go run ./... -modelPath=../ccv_boundeddrift.qnt -step stepBoundedDrift -traceFolder traces/bound_noinv -numTraces 10 -numSteps 500 -numSamples 1 +echo "Generating bounded drift traces with maturations" +go run ./... -modelPath=../ccv_boundeddrift.qnt -step stepBoundedDrift -invariant CanReceiveMaturations -traceFolder traces/bound_mat -numTraces 10 -numSteps 100 -numSamples 20 +echo "Generating synched traces with maturations" +go run ./... -modelPath=../ccv_sync.qnt -init initHappy -step stepHappy -invariant CanReceiveMaturations -traceFolder traces/sync_mat -numTraces 10 -numSteps 300 -numSamples 20 +echo "Generating long synched traces without invariants" +go run ./... -modelPath=../ccv_sync.qnt -init initHappy -step stepHappy -traceFolder traces/sync_noinv -numTraces 10 -numSteps 500 -numSamples 1 \ No newline at end of file diff --git a/tests/difference/core/quint_model/driver/mbt_test.go b/tests/difference/core/quint_model/driver/mbt_test.go index c1bae4b26e..7fe1ea3772 100644 --- a/tests/difference/core/quint_model/driver/mbt_test.go +++ b/tests/difference/core/quint_model/driver/mbt_test.go @@ -4,6 +4,7 @@ import ( "fmt" "log" "os" + "path/filepath" "reflect" "sort" "testing" @@ -11,36 +12,51 @@ import ( cmttypes "github.com/cometbft/cometbft/types" sdktypes "github.com/cosmos/cosmos-sdk/types" - ibctesting "github.com/cosmos/ibc-go/v7/testing" providertypes "github.com/cosmos/interchain-security/v3/x/ccv/provider/types" "github.com/kylelemons/godebug/pretty" "github.com/informalsystems/itf-go/itf" "github.com/stretchr/testify/require" + + ibctesting "github.com/cosmos/ibc-go/v7/testing" ) -const verbose = true +const verbose = false // keep some interesting statistics var stats = Stats{} func TestMBT(t *testing.T) { - dirEntries, err := os.ReadDir("traces") - if err != nil { - t.Fatal("Error:", err) - } + dir := "traces" - t.Log("Running traces from the traces folder") + numTraces := 0 ibctesting.TimeIncrement = 1 * time.Nanosecond - for _, dirEntry := range dirEntries { - t.Log("Running trace ", dirEntry.Name()) - RunItfTrace(t, "traces/"+dirEntry.Name()) + err := filepath.Walk(dir, func(path string, info os.FileInfo, err error) error { + if err != nil { + return err + } + + if info.IsDir() { + return nil + } + + ext := filepath.Ext(path) + if ext == ".json" || ext == ".itf" { + fmt.Println("Running trace:", path) + numTraces++ + RunItfTrace(t, path) + } + + return nil + }) + if err != nil { + t.Fatal("Error:", err) } t.Log("✅ Running traces from the traces folder done") - t.Log(len(dirEntries), "traces run") + t.Log(numTraces, "traces run") // print some stats t.Logf("Highest observed voting power: %v", stats.highestObservedValPower) @@ -50,7 +66,7 @@ func TestMBT(t *testing.T) { t.Logf("Number of sent packets: %v", stats.numSentPackets) t.Logf("Number of blocks: %v", stats.numBlocks) t.Logf("Number of transactions: %v", stats.numTxs) - t.Logf("Average summed block time delta passed per trace: %v", stats.totalBlockTimePassedPerTrace/time.Duration(len(dirEntries))) + t.Logf("Average summed block time delta passed per trace: %v", stats.totalBlockTimePassedPerTrace/time.Duration(numTraces)) } func RunItfTrace(t *testing.T, path string) { @@ -353,6 +369,9 @@ func RunItfTrace(t *testing.T, path string) { } t.Log("Packet queues match") + // compare that the sent packets on the proider match the model + CompareSentPacketsOnProvider(driver, currentModelState, timeOffset) + stats.EnterStats(driver) } t.Log("🟢 Trace is ok!") @@ -510,6 +529,30 @@ func CompareValSet(modelValSet map[string]itf.Expr, systemValSet map[string]int6 return nil } +func CompareSentPacketsOnProvider(driver *Driver, currentModelState map[string]itf.Expr, timeOffset time.Time) { + for _, consumer := range driver.runningConsumers() { + vscSendTimestamps := driver.providerKeeper().GetAllVscSendTimestamps(driver.providerCtx(), consumer.ChainId) + + actualVscSendTimestamps := make([]time.Time, 0) + for _, vscSendTimestamp := range vscSendTimestamps { + actualVscSendTimestamps = append(actualVscSendTimestamps, vscSendTimestamp.Timestamp) + } + + modelVscSendTimestamps := VscSendTimestamps(currentModelState, consumer.ChainId) + + for i, modelVscSendTimestamp := range modelVscSendTimestamps { + actualTimeWithOffset := actualVscSendTimestamps[i].Unix() - timeOffset.Unix() + require.Equal( + driver.t, + modelVscSendTimestamp, + actualTimeWithOffset, + "Vsc send timestamps do not match for consumer %v", + consumer.ChainId, + ) + } + } +} + func (s *Stats) EnterStats(driver *Driver) { // highest observed voting power for _, val := range driver.providerValidatorSet() { @@ -527,6 +570,4 @@ func (s *Stats) EnterStats(driver *Driver) { if inFlightPackets > s.maxNumInFlightPackets { s.maxNumInFlightPackets = inFlightPackets } - - // number of sent packets } diff --git a/tests/difference/core/quint_model/driver/model_viewer.go b/tests/difference/core/quint_model/driver/model_viewer.go index f274fb35e3..b2167febbb 100644 --- a/tests/difference/core/quint_model/driver/model_viewer.go +++ b/tests/difference/core/quint_model/driver/model_viewer.go @@ -87,3 +87,17 @@ func LocalClientExpired(curStateExpr itf.MapExprType, consumer string) bool { func GetTimeoutForPacket(packetExpr itf.MapExprType) int64 { return packetExpr["timeoutTime"].Value.(int64) } + +func GetSendingTimeForPacket(packetExpr itf.MapExprType) int64 { + return packetExpr["sendingTime"].Value.(int64) +} + +func VscSendTimestamps(curStateExpr itf.MapExprType, consumer string) []int64 { + sentVscPackets := ProviderState(curStateExpr)["sentVscPacketsToConsumer"].Value.(itf.MapExprType)[consumer].Value.(itf.ListExprType) + + res := make([]int64, 0) + for _, packetExpr := range sentVscPackets { + res = append(res, GetSendingTimeForPacket(packetExpr.Value.(itf.MapExprType))) + } + return res +} From eacfd870d5429b3c72d20c7467770d679f126176 Mon Sep 17 00:00:00 2001 From: Philip Offtermatt Date: Thu, 30 Nov 2023 09:49:26 +0100 Subject: [PATCH 059/111] Fix acct sequences not incrementing when messages error ot --- testutil/simibc/relay_util.go | 22 ++++++++++------------ 1 file changed, 10 insertions(+), 12 deletions(-) diff --git a/testutil/simibc/relay_util.go b/testutil/simibc/relay_util.go index f6be32cd60..e113c02fef 100644 --- a/testutil/simibc/relay_util.go +++ b/testutil/simibc/relay_util.go @@ -49,14 +49,13 @@ func UpdateReceiverClient(sender, receiver *ibctesting.Endpoint, header *ibctmty true, !expectExpiration, receiver.Chain.SenderPrivKey, ) + setSequenceErr := receiver.Chain.SenderAccount.SetSequence(receiver.Chain.SenderAccount.GetSequence() + 1) if err != nil { return err } - err = receiver.Chain.SenderAccount.SetSequence(receiver.Chain.SenderAccount.GetSequence() + 1) - - if err != nil { - return err + if setSequenceErr != nil { + return setSequenceErr } return nil @@ -85,14 +84,14 @@ func TryRecvPacket(sender, receiver *ibctesting.Endpoint, packet channeltypes.Pa []uint64{receiver.Chain.SenderAccount.GetSequence()}, true, !expectError, receiver.Chain.SenderPrivKey, ) + // need to set the sequence even if there was an error in delivery + setSequenceErr := receiver.Chain.SenderAccount.SetSequence(receiver.Chain.SenderAccount.GetSequence() + 1) if err != nil { return nil, err } - err = receiver.Chain.SenderAccount.SetSequence(receiver.Chain.SenderAccount.GetSequence() + 1) - - if err != nil { - return nil, err + if setSequenceErr != nil { + return nil, setSequenceErr } ack, err = ibctesting.ParseAckFromEvents(resWithAck.GetEvents()) @@ -129,14 +128,13 @@ func TryRecvAck(sender, receiver *ibctesting.Endpoint, packet channeltypes.Packe true, true, receiver.Chain.SenderPrivKey, ) + setSequenceErr := receiver.Chain.SenderAccount.SetSequence(receiver.Chain.SenderAccount.GetSequence() + 1) if err != nil { return err } - err = receiver.Chain.SenderAccount.SetSequence(receiver.Chain.SenderAccount.GetSequence() + 1) - - if err != nil { - return err + if setSequenceErr != nil { + return setSequenceErr } return nil From 33de97b84d00dbd96a125a11a8bb6b445f703d65 Mon Sep 17 00:00:00 2001 From: Philip Offtermatt Date: Thu, 30 Nov 2023 11:20:04 +0100 Subject: [PATCH 060/111] Move from difference folder to mbt folder --- tests/difference/core/README.md | 135 - tests/difference/core/docs/METHOD.md | 128 - .../core/docs/diagrams/diagram0.excalidraw | 1678 ---------- .../core/docs/diagrams/diagram0.png | Bin 174961 -> 0 bytes tests/difference/core/driver/.gitignore | 2 - tests/difference/core/driver/common.go | 96 - tests/difference/core/driver/core_test.go | 344 -- .../core/driver/seed_gen_fuzzy_test.go | 85 - tests/difference/core/driver/setup.go | 625 ---- tests/difference/core/driver/setup_test.go | 139 - tests/difference/core/driver/trace.go | 166 - tests/difference/core/driver/traces.json | 1 - tests/difference/core/model/.eslintignore | 1 - tests/difference/core/model/.eslintrc.json | 27 - tests/difference/core/model/.gitignore | 31 - tests/difference/core/model/.prettierrc | 17 - .../core/model/__tests__/gen.test.ts | 14 - .../core/model/__tests__/tsconfig.json | 30 - tests/difference/core/model/jest.config.js | 24 - tests/difference/core/model/package.json | 50 - tests/difference/core/model/src/common.ts | 244 -- tests/difference/core/model/src/constants.ts | 140 - tests/difference/core/model/src/main.ts | 533 --- tests/difference/core/model/src/model.ts | 794 ----- tests/difference/core/model/src/properties.ts | 359 --- tests/difference/core/model/src/traceUtil.ts | 233 -- tests/difference/core/model/tsconfig.json | 28 - .../core/model/tsconfig.release.json | 8 - tests/difference/core/model/yarn.lock | 2862 ----------------- .../quint_model/driver/generate_traces.sh | 10 - .../core/quint_model => mbt}/.gitignore | 0 tests/mbt/README.md | 68 + .../quint_model => mbt}/driver/.gitignore | 0 tests/mbt/driver/README.md | 5 + .../core/quint_model => mbt}/driver/common.go | 0 .../core/quint_model => mbt}/driver/core.go | 3 +- tests/mbt/driver/generate_traces.sh | 10 + .../core/quint_model => mbt}/driver/main.go | 0 .../quint_model => mbt}/driver/mbt_test.go | 10 +- .../driver/model_viewer.go | 0 .../core/quint_model => mbt}/driver/setup.go | 0 .../core/quint_model => mbt}/driver/stats.go | 0 .../quint_model => mbt}/driver/trace_gen.go | 0 .../core/quint_model => mbt/model}/README.md | 54 +- .../core/quint_model => mbt/model}/ccv.qnt | 0 .../model}/ccv_boundeddrift.qnt | 8 +- .../quint_model => mbt/model}/ccv_model.qnt | 0 .../quint_model => mbt/model}/ccv_sync.qnt | 0 .../quint_model => mbt/model}/ccv_test.qnt | 0 .../model}/libraries/Time.qnt | 0 .../model}/libraries/extraSpells.qnt | 0 .../quint_model => mbt}/run_invariants.sh | 0 52 files changed, 143 insertions(+), 8819 deletions(-) delete mode 100644 tests/difference/core/README.md delete mode 100644 tests/difference/core/docs/METHOD.md delete mode 100644 tests/difference/core/docs/diagrams/diagram0.excalidraw delete mode 100644 tests/difference/core/docs/diagrams/diagram0.png delete mode 100644 tests/difference/core/driver/.gitignore delete mode 100644 tests/difference/core/driver/common.go delete mode 100644 tests/difference/core/driver/core_test.go delete mode 100644 tests/difference/core/driver/seed_gen_fuzzy_test.go delete mode 100644 tests/difference/core/driver/setup.go delete mode 100644 tests/difference/core/driver/setup_test.go delete mode 100644 tests/difference/core/driver/trace.go delete mode 100644 tests/difference/core/driver/traces.json delete mode 100644 tests/difference/core/model/.eslintignore delete mode 100644 tests/difference/core/model/.eslintrc.json delete mode 100644 tests/difference/core/model/.gitignore delete mode 100644 tests/difference/core/model/.prettierrc delete mode 100644 tests/difference/core/model/__tests__/gen.test.ts delete mode 100644 tests/difference/core/model/__tests__/tsconfig.json delete mode 100644 tests/difference/core/model/jest.config.js delete mode 100644 tests/difference/core/model/package.json delete mode 100644 tests/difference/core/model/src/common.ts delete mode 100644 tests/difference/core/model/src/constants.ts delete mode 100644 tests/difference/core/model/src/main.ts delete mode 100644 tests/difference/core/model/src/model.ts delete mode 100644 tests/difference/core/model/src/properties.ts delete mode 100644 tests/difference/core/model/src/traceUtil.ts delete mode 100644 tests/difference/core/model/tsconfig.json delete mode 100644 tests/difference/core/model/tsconfig.release.json delete mode 100644 tests/difference/core/model/yarn.lock delete mode 100755 tests/difference/core/quint_model/driver/generate_traces.sh rename tests/{difference/core/quint_model => mbt}/.gitignore (100%) create mode 100644 tests/mbt/README.md rename tests/{difference/core/quint_model => mbt}/driver/.gitignore (100%) create mode 100644 tests/mbt/driver/README.md rename tests/{difference/core/quint_model => mbt}/driver/common.go (100%) rename tests/{difference/core/quint_model => mbt}/driver/core.go (99%) create mode 100755 tests/mbt/driver/generate_traces.sh rename tests/{difference/core/quint_model => mbt}/driver/main.go (100%) rename tests/{difference/core/quint_model => mbt}/driver/mbt_test.go (99%) rename tests/{difference/core/quint_model => mbt}/driver/model_viewer.go (100%) rename tests/{difference/core/quint_model => mbt}/driver/setup.go (100%) rename tests/{difference/core/quint_model => mbt}/driver/stats.go (100%) rename tests/{difference/core/quint_model => mbt}/driver/trace_gen.go (100%) rename tests/{difference/core/quint_model => mbt/model}/README.md (51%) rename tests/{difference/core/quint_model => mbt/model}/ccv.qnt (100%) rename tests/{difference/core/quint_model => mbt/model}/ccv_boundeddrift.qnt (91%) rename tests/{difference/core/quint_model => mbt/model}/ccv_model.qnt (100%) rename tests/{difference/core/quint_model => mbt/model}/ccv_sync.qnt (100%) rename tests/{difference/core/quint_model => mbt/model}/ccv_test.qnt (100%) rename tests/{difference/core/quint_model => mbt/model}/libraries/Time.qnt (100%) rename tests/{difference/core/quint_model => mbt/model}/libraries/extraSpells.qnt (100%) rename tests/{difference/core/quint_model => mbt}/run_invariants.sh (100%) diff --git a/tests/difference/core/README.md b/tests/difference/core/README.md deleted file mode 100644 index 1d9bbf04e2..0000000000 --- a/tests/difference/core/README.md +++ /dev/null @@ -1,135 +0,0 @@ -# Differential testing for Interchain Security 'core' protocol - -This directory contains model and trace generation code for the differential approach to testing Interchain Security. In particular, this work is used to test 'core' (normal operation) features of the protocol. - -At a high level, the model consists of one Provider chain and one Consumer chain. There is a single delegator account on the Provider, whose actions will change the delegation and thus the tokens and voting power of the validators. The voting power changes are relayed to the Consumer chain. The entire cycle of unbonding operation maturity is captured, because the Consumer will send unbonding maturity packets. Moreoever, slashing is modelled, as the Consumer can initiate slashing actions. - -## Scope - -### Tested (Unchecked means that work is in progress. Checked means the work is complete.) - -The following aspects of the system are tested - -- [x] Sending VSC packets from provider to one consumer -- [x] Sending VSC maturities from one consumer to provider -- [x] Slashing logic (not including actual token burning) -- [x] Validator power change -- [x] Validators leaving or joining the active validor set -- [x] Consumer initiated slashing -- [x] Delegation operations -- [x] Undelegation operations -- [x] Validator unbonding -- [x] Valiator jailing -- [x] Validator tombstoning -- [x] Packet acknowledgements -- [x] The 'Bond Based Consumer Voting Power' property ([link](https://github.com/cosmos/ibc/blob/main/spec/app/ics-028-cross-chain-validation/system_model_and_properties.md#system-properties)) -- [x] The 'Validator Set Replication' property ([link](https://github.com/cosmos/ibc/blob/main/spec/app/ics-028-cross-chain-validation/system_model_and_properties.md#system-properties)) -- [ ] The 'Slashable Consumer Misbehavior' property ([link](https://github.com/cosmos/ibc/blob/main/spec/app/ics-028-cross-chain-validation/system_model_and_properties.md#system-properties)) (_maybe_) -- [ ] PendingVSC when consumer start (_maybe_) -- [ ] Redelegation operations -- [ ] Unjailing operations - -### NOT Tested - -The following aspects of the system are not tested by this work. - -- Completing the IBC handshakes -- Repairing an expired IBC channel through governance -- Slashing with non-zero slash factors -- Submitting proposals -- Executing proposals -- Adding a new consumer chain -- Removing a consumer chain for any reason -- Distribution of rewards -- Provider Governance -- Consumer Governance/Democracy -- Anything to do with cosmwasm -- Client expiry -- Packet timeouts -- Restarting any chain from exported state -- Any logic that deals with having _more than one consumer chain_ -- Multiple delegator accounts - -## Usage - -### Overview - -This typescript project contains code for - -- Modelling the aspects of the system listed under TESTED above -- Generating and executing actions against a model system based on those aspects, in order to explore various behaviors. The actions are generated using heuristics and randomness. -- Recording traces of executions to file -- Choosing a set of traces in a manner convenient for testing the SUT. -- Replaying a given existing trace against a new model instance, for debugging purposes. - -### Usage prerequisities - -```bash -# nodejs version 16 is required. -node --version -# yarn package manager is required -yarn --version -# setup the project -yarn install -``` - -### Commands - -There are several top level yarn project scripts which can be run via - -```bash -yarn -``` - -as per the `scripts` entry in [package.json](./package.json). The most important of these are - -```bash -# install the project -yarn install; -# build in watch mode. Repeatedly build the project when the src changes -# recommended to run in background process -yarn build:watch -# start main.ts - the entry point to the program -yarn start -# test - run the tests in __tests__ -yarn test -``` - -The actual functionality has entrypoint in [src/main.ts](./src/main.ts). Please see the file for details. The available functionalities are - -```bash -# generate traces for x seconds -yarn start gen -# check properties for x seconds -yarn start properties -# create a subset of traces -yarn start subset -# replay a trace from a file (for debugging) -yarn start replay -``` - -### Workflow - -A workflow of updating the model and generating new traces for testing against the SUT might look like - -```bash -# Generate traces for 30 seconds -yarn start gen 30 -# Collect and compact a subset of these traces -yarn start subset 200 -``` - -### Extending the model - -All of the semantic logic of the model that relates to how the system is supposed to work is contained in [src/model.ts](./src/model.ts). All of the logic for generating actions (and thus traces) against the model is contained in [src/main.ts](./src/main.ts). The remaining files are less important. - -### Ensuring a consistent Trace format - -The golang test driver must be able to parse the traces output by this Typescript project. Several tools exist to generate golang type definitions from json files. I strongly suggest using [gojsonstruct](https://github.com/twpayne/go-jsonstruct) to generate a new golang definition whenever the json trace format changes. The steps to do this are - -```bash -# Pass the content of traces.json to gojsonstruct binary which will output a golang type definition -gojsonstruct < > trace.go -``` - -The `trace.go` file output from the above command should be reconciled with the content in `difftest/trace.go`. diff --git a/tests/difference/core/docs/METHOD.md b/tests/difference/core/docs/METHOD.md deleted file mode 100644 index 2e2efa613c..0000000000 --- a/tests/difference/core/docs/METHOD.md +++ /dev/null @@ -1,128 +0,0 @@ -# Method - -Contains information about the differential/difference testing method in general and how it impacts the project. - -## Motivation - -The goal is to find more, deeper, bugs in the long run life of the project in a more cost effective way than can be done by other testing methods (unit, full node, integration, model based testing). - -Each of the traditional methods has draw backs - -- unit\ -Finds shallow bugs. -- full node\ -Expensive to setup and run, hard to debug, slow. -- integration\ -Limited to isolated parts of system so cannot find logic bugs across systems. -- model based\ -Exhaustive model checkers do not scale well to large systems. Esoteric languages hard to onboard and maintain. - -Diff testing should be - -- Able to find deep bugs (and shallow ones)\ -Complicated systems *may* have tricky, deep bugs which are caused by specific interleavings of API calls with specific params. We want a way to try to find these. -- Maintainable\ -If the requirements change or a major piece of the system API changes it should be possible to modify existing test code to handle the new system, without having to scrap everything. -- Scalable\ -Everything should run in memory, cheaply. It should be possible to use the debugger to step through failed tests. - -Diff testing does not - -- Try to find every bug\ -Diff testing is based on randomness and heuristics and these can only get you so far in finding bugs. More on this in [Limitations](#limitations). - -## Concepts - -Here we use terminology as it is already used in the project, we do **not** use academic parlance. - -We have a system under test (SUT) and we want to test that it satisfies all our design properties (e.g. Validator Set Replication). Diff testing works by making a simplified implementation of the business logic of our system, observing executions of the simplified implementation, and then checking that those observations 'match' what is happening in the real system. - -![diagram0](./diagrams/diagram0.png) - -We have three major components, a model and driver, and the SUT. The creation of each part could go something like - -1. Figure out what parts of the system state you need to observe to know that your system is working. E.g. token balances, voting powers. -2. Figure out which API calls influence that state. -3. Create the simplest possible implementation of those API calls that results in the correct state. This is the raw model. -4. Randomly make API calls against your model. You might need some heuristics or bespoke logic to make sure these random calls result in good coverage (see [Limitations](#limitations)). -5. Record the random API calls made ('actions') and obervations of the state made at regular intervals. Together this data forms a trace. Repeated many times from the zero state you obtain *traces*. -6. Create a 'driver': some code that wraps the API of the SUT and can interpret traces and 'test' those traces against the SUT. For each tested trace, setup the SUT to a suitable zero state, and make each API call as in the trace. For each state observation in the trace, check that the SUT state corresponds. - -## Benefits - -- You know that the system behavior matches the model behavior. -- The model should be much simpler and easier to check properties for. It will have clear boundaries. -- A well written model can be the specification. -- You can instrument the model with arbitrary code to make sure that your random API calls get good coverage. This can go well beyond statement/branch coverage. -- Based on my anecdotal experience, the ratio of confidence gained per line of code written and maintained can be much much higher for this kind of testing than for unit tests, integration tests, full node tests. -- You can find deep bugs because the random exploration will find many cases that humans won't think of. - -## Limitations - -- You have to maintain a model and all the surrounding framework. -- If you want to make a major change to your system you will have to change the model and the SUT.\ -NOTE: Change the model first, and THEN change the SUT. This is TDD. - -and... - -The biggest limitation is that random exploration can be severely limited. This warrants more explanation: - -### Random exploration - -It's easy to find example programs where random exploration will have very poor results. Consider - -```go -func foo(x uint64) { - if x = 123456 { - // BUG - } else { - // NO BUG - } -} -``` - -By testing foo with uniformly randomly chosen x's 80 million times per second you will never find the bug. This is a contrived example, but it illustrates the point that you cannot rely on randomness. - -## Influences - -In creating diff testing I was influenced ideas from Model Based Testing (see [section](#comparison-to-model-based-testing)). Both methods share the notions of model, driver, and trace but the way the model is written and the traces are generated is different. - -## Other - -### Random exploration good or bad? - -While you shouldn't rely on random exploration for good coverage it proves to be practical and useful in many real life systems. You should definitely measure the coverage of your exploration. With measurements, you can freely experiment with adding heuristic rules to restrict the randomness in particular ways. You can also look at qualities of your particular system and try to make combinatorial or probabilistic arguments for coverage. - -### Usage of model as the spec - -The model could be the spec, if you want it to be. All the dependencies should be abstracted away behind contract satisfying interfaces, and any implementation detail related to performance or environment boilerplate can be omitted. - -### Creating many implementations from a single model - -The same model can be used to create drivers for, and test, many different implementations of the system in any language, environment ect - -## Comparison to Model Based Testing - -Informal Systems uses the term model based testing to refer to, essentially diff testing, with two major differences - -- The model is written in a formal specification language with semantics and properties that make it amenable to formal verification and automated reasoning techniques.\ -Example languages: [TLA+](https://en.wikipedia.org/wiki/TLA%2B), [Quint](https://github.com/informalsystems/quint). Example semantic: [Temporal Logic of Actions](https://en.wikipedia.org/wiki/Temporal_logic_of_actions). Example techniques: [SAT Solving](https://en.wikipedia.org/wiki/SAT_solver), [Symbolic Model Checking](https://blog.acolyer.org/2019/11/29/tla-model-checking-made-symbolic/), [State Enumerating Model Checking](https://en.wikipedia.org/wiki/State_space_enumeration). Example tools: [TLC](https://github.com/tlaplus/tlaplus), [Apalache](https://apalache.informal.systems/). -- The model is explored not by randomness and heuristics but by using a [*model checker*](https://en.wikipedia.org/wiki/Model_checking). Model checkers pull on a massive field of research and they're about applying efficient techniques for exploring program behaviors. While modern model checkers are highly optimized and capable, they are not silver bullets, as they all suffer from the [State Space Explosion Problem](https://en.wikipedia.org/wiki/Combinatorial_explosion). See [this wiki page](https://en.wikipedia.org/wiki/Model_checking#Techniques) for more info. - -Why not use model checking? They require expert knowledge which is hard to onboard, the State Space Explosion Problem can be very real in practice, and the tooling e.g TLA+ is generally not industrial strength in terms of maintainability ect. - -Note that the Apalache team at Informal is working hard to make MBT a powerful practical tool. They have made leaps and bounds in the last year since diff testing began in April 2022. In particular they have created a new programming language called Quint which should be an industrial strength formal specification language. They have also added powerful exploration capabilities (see [::simulate](https://apalache.informal.systems/docs/apalache/running.html?highlight=simulate#running-the-tool)) which combines random exploration with optimized model checker based exploration. - - I recommend checking out [Apalache](https://github.com/informalsystems/apalache) and [Quint](https://github.com/informalsystems/quint) and consulting with Igor. - -## Comparison to Property Based Testing - -Property Based Testing is a loose term for testing properties of your system. Generally the idea is to make API calls using random heuristics and known tricks, and check that the result satisfies properties. Please see [this page](https://github.com/cosmos/interchain-security/blob/danwt/pbt-prototype/tests/pbt/tutorial.md) for a full tutorial on using a golang PBT library. - -~~Why not use property based testing?~~ I suggest using it. See next section. - -## Recommendation going forward - -In the long run I suggest scrapping the existing model and trace, and using property based testing instead. The existing driver can easily be adapted to take input from a property based testing library like [golang's Rapid](https://github.com/flyingmutant/rapid). The properties from `properties.ts` can easily be written in go and tested in go. A model will not be needed at all, only the action generation heuristics. I think PBT will be able to achieve the same or better results without having to maintain the model. - -In the long run I **also** suggest incorporating Informals tools [Apalache](https://github.com/informalsystems/apalache) and [Quint](https://github.com/informalsystems/quint). Please consult with Igor on this. diff --git a/tests/difference/core/docs/diagrams/diagram0.excalidraw b/tests/difference/core/docs/diagrams/diagram0.excalidraw deleted file mode 100644 index 653d8474a5..0000000000 --- a/tests/difference/core/docs/diagrams/diagram0.excalidraw +++ /dev/null @@ -1,1678 +0,0 @@ -{ - "type": "excalidraw", - "version": 2, - "source": "https://excalidraw.com", - "elements": [ - { - "id": "k5Opuo0vnhzfvQCDA7hEW", - "type": "rectangle", - "x": 1172.5875054680155, - "y": 475.9900238546771, - "width": 403, - "height": 123, - "angle": 0, - "strokeColor": "#000000", - "backgroundColor": "#868e96", - "fillStyle": "hachure", - "strokeWidth": 1, - "strokeStyle": "solid", - "roughness": 0, - "opacity": 100, - "groupIds": [], - "roundness": { - "type": 3 - }, - "seed": 379527432, - "version": 420, - "versionNonce": 31190904, - "isDeleted": false, - "boundElements": [ - { - "type": "text", - "id": "onHYMBEaS5P9TDYDkO5F8" - } - ], - "updated": 1673531453480, - "link": null, - "locked": false - }, - { - "id": "onHYMBEaS5P9TDYDkO5F8", - "type": "text", - "x": 1195.5875054680155, - "y": 524.4900238546771, - "width": 357, - "height": 26, - "angle": 0, - "strokeColor": "#000000", - "backgroundColor": "transparent", - "fillStyle": "hachure", - "strokeWidth": 1, - "strokeStyle": "solid", - "roughness": 0, - "opacity": 100, - "groupIds": [], - "roundness": null, - "seed": 1721334024, - "version": 391, - "versionNonce": 571308040, - "isDeleted": false, - "boundElements": null, - "updated": 1673531210291, - "link": null, - "locked": false, - "text": "SYSTEM UNDER TEST (GREY BOX)", - "fontSize": 20, - "fontFamily": 1, - "textAlign": "center", - "verticalAlign": "middle", - "baseline": 18, - "containerId": "k5Opuo0vnhzfvQCDA7hEW", - "originalText": "SYSTEM UNDER TEST (GREY BOX)" - }, - { - "id": "qBGPpJloREzvIDbnzMUWx", - "type": "rectangle", - "x": 1271.5144674717449, - "y": 408.9291375704855, - "width": 204.5170049998253, - "height": 36, - "angle": 0, - "strokeColor": "#000000", - "backgroundColor": "transparent", - "fillStyle": "hachure", - "strokeWidth": 1, - "strokeStyle": "solid", - "roughness": 0, - "opacity": 100, - "groupIds": [], - "roundness": { - "type": 3 - }, - "seed": 337135224, - "version": 108, - "versionNonce": 1772874872, - "isDeleted": false, - "boundElements": [ - { - "type": "text", - "id": "gUECL3BTp3g7YrLYrPkqC" - }, - { - "id": "p9ZNntyhzd6GaA0V_wTxx", - "type": "arrow" - } - ], - "updated": 1673531210291, - "link": null, - "locked": false - }, - { - "id": "gUECL3BTp3g7YrLYrPkqC", - "type": "text", - "x": 1296.2729699716576, - "y": 413.9291375704855, - "width": 155, - "height": 26, - "angle": 0, - "strokeColor": "#000000", - "backgroundColor": "#ced4da", - "fillStyle": "hachure", - "strokeWidth": 1, - "strokeStyle": "solid", - "roughness": 0, - "opacity": 100, - "groupIds": [], - "roundness": null, - "seed": 1999511816, - "version": 95, - "versionNonce": 1219573512, - "isDeleted": false, - "boundElements": null, - "updated": 1673531210291, - "link": null, - "locked": false, - "text": "EXTERNAL API", - "fontSize": 20, - "fontFamily": 1, - "textAlign": "center", - "verticalAlign": "middle", - "baseline": 18, - "containerId": "qBGPpJloREzvIDbnzMUWx", - "originalText": "EXTERNAL API" - }, - { - "id": "t8QsaYO57uBp0_DAYlUrf", - "type": "line", - "x": 1373.3508734834734, - "y": 449.4573137925405, - "width": 0, - "height": 20.541009235790284, - "angle": 0, - "strokeColor": "#000000", - "backgroundColor": "transparent", - "fillStyle": "hachure", - "strokeWidth": 1, - "strokeStyle": "solid", - "roughness": 0, - "opacity": 100, - "groupIds": [], - "roundness": { - "type": 2 - }, - "seed": 971796232, - "version": 40, - "versionNonce": 1063755128, - "isDeleted": false, - "boundElements": null, - "updated": 1673531210291, - "link": null, - "locked": false, - "points": [ - [ - 0, - 0 - ], - [ - 0, - 20.541009235790284 - ] - ], - "lastCommittedPoint": null, - "startBinding": null, - "endBinding": null, - "startArrowhead": null, - "endArrowhead": null - }, - { - "id": "GXr0aNYMxQdaTOsI0A2xM", - "type": "rectangle", - "x": 1270.2982607337876, - "y": 324.20338320417034, - "width": 204.23651665328725, - "height": 57.531413141771054, - "angle": 0, - "strokeColor": "#000000", - "backgroundColor": "transparent", - "fillStyle": "hachure", - "strokeWidth": 1, - "strokeStyle": "solid", - "roughness": 0, - "opacity": 100, - "groupIds": [], - "roundness": { - "type": 3 - }, - "seed": 1833282168, - "version": 75, - "versionNonce": 42276360, - "isDeleted": false, - "boundElements": [ - { - "type": "text", - "id": "y0tiQMP00hlfk3LQsXLBt" - }, - { - "id": "p9ZNntyhzd6GaA0V_wTxx", - "type": "arrow" - } - ], - "updated": 1673531210291, - "link": null, - "locked": false - }, - { - "id": "y0tiQMP00hlfk3LQsXLBt", - "type": "text", - "x": 1291.9165190604313, - "y": 339.96908977505586, - "width": 161, - "height": 26, - "angle": 0, - "strokeColor": "#000000", - "backgroundColor": "transparent", - "fillStyle": "hachure", - "strokeWidth": 1, - "strokeStyle": "solid", - "roughness": 0, - "opacity": 100, - "groupIds": [], - "roundness": null, - "seed": 869844600, - "version": 46, - "versionNonce": 612707960, - "isDeleted": false, - "boundElements": null, - "updated": 1673531210291, - "link": null, - "locked": false, - "text": "CALLS TO API ", - "fontSize": 20, - "fontFamily": 1, - "textAlign": "center", - "verticalAlign": "middle", - "baseline": 18, - "containerId": "GXr0aNYMxQdaTOsI0A2xM", - "originalText": "CALLS TO API " - }, - { - "id": "p9ZNntyhzd6GaA0V_wTxx", - "type": "arrow", - "x": 1373.8548043889755, - "y": 383.6525101173337, - "width": 0, - "height": 22.053708371012135, - "angle": 0, - "strokeColor": "#000000", - "backgroundColor": "transparent", - "fillStyle": "hachure", - "strokeWidth": 1, - "strokeStyle": "solid", - "roughness": 0, - "opacity": 100, - "groupIds": [], - "roundness": { - "type": 2 - }, - "seed": 1519509000, - "version": 38, - "versionNonce": 218672648, - "isDeleted": false, - "boundElements": null, - "updated": 1673531317969, - "link": null, - "locked": false, - "points": [ - [ - 0, - 0 - ], - [ - 0, - 22.053708371012135 - ] - ], - "lastCommittedPoint": null, - "startBinding": { - "elementId": "GXr0aNYMxQdaTOsI0A2xM", - "focus": -0.01408450704225302, - "gap": 1.9177137713923003 - }, - "endBinding": { - "elementId": "qBGPpJloREzvIDbnzMUWx", - "focus": 0.0008002700540050205, - "gap": 3.222919082139697 - }, - "startArrowhead": null, - "endArrowhead": "arrow" - }, - { - "id": "-HbCtmQf8Aj24TNHueDwu", - "type": "rectangle", - "x": 1236.2645310665157, - "y": 94.80233350889259, - "width": 135, - "height": 115.09807478076164, - "angle": 0, - "strokeColor": "#000000", - "backgroundColor": "transparent", - "fillStyle": "hachure", - "strokeWidth": 1, - "strokeStyle": "solid", - "roughness": 0, - "opacity": 100, - "groupIds": [], - "roundness": { - "type": 3 - }, - "seed": 1995307896, - "version": 437, - "versionNonce": 1369426040, - "isDeleted": false, - "boundElements": [ - { - "type": "text", - "id": "zsdAicJ52CcIS31hQGVn_" - }, - { - "id": "bzLArg366Xt-0rpvTdufZ", - "type": "arrow" - } - ], - "updated": 1673531549065, - "link": null, - "locked": false - }, - { - "id": "zsdAicJ52CcIS31hQGVn_", - "type": "text", - "x": 1245.4050746886267, - "y": 100.3513708992734, - "width": 116, - "height": 104, - "angle": 0, - "strokeColor": "#000000", - "backgroundColor": "transparent", - "fillStyle": "hachure", - "strokeWidth": 1, - "strokeStyle": "solid", - "roughness": 0, - "opacity": 100, - "groupIds": [], - "roundness": null, - "seed": 969673592, - "version": 448, - "versionNonce": 1143813128, - "isDeleted": false, - "boundElements": null, - "updated": 1673531210291, - "link": null, - "locked": false, - "text": "TESTS IN \nTHE FORM \nOF DATA \n(.json)", - "fontSize": 20, - "fontFamily": 1, - "textAlign": "center", - "verticalAlign": "middle", - "baseline": 96, - "containerId": "-HbCtmQf8Aj24TNHueDwu", - "originalText": "TESTS IN THE FORM OF DATA (.json)" - }, - { - "id": "ZJZAeuIbhMfjdGpxX4rPC", - "type": "rectangle", - "x": 1383.056278612993, - "y": 142.34284265746803, - "width": 111.76189870015992, - "height": 67.5575656321862, - "angle": 0, - "strokeColor": "#000000", - "backgroundColor": "transparent", - "fillStyle": "hachure", - "strokeWidth": 1, - "strokeStyle": "solid", - "roughness": 0, - "opacity": 100, - "groupIds": [], - "roundness": { - "type": 3 - }, - "seed": 568412424, - "version": 92, - "versionNonce": 1198911608, - "isDeleted": false, - "boundElements": [ - { - "type": "text", - "id": "mdd_oX009zA9kuptW3--H" - } - ], - "updated": 1673531210291, - "link": null, - "locked": false - }, - { - "id": "mdd_oX009zA9kuptW3--H", - "type": "text", - "x": 1398.9372279630732, - "y": 150.12162547356112, - "width": 80, - "height": 52, - "angle": 0, - "strokeColor": "#000000", - "backgroundColor": "transparent", - "fillStyle": "hachure", - "strokeWidth": 1, - "strokeStyle": "solid", - "roughness": 0, - "opacity": 100, - "groupIds": [], - "roundness": null, - "seed": 940530440, - "version": 78, - "versionNonce": 125399816, - "isDeleted": false, - "boundElements": null, - "updated": 1673531210291, - "link": null, - "locked": false, - "text": "SETUP \nPHASE", - "fontSize": 20, - "fontFamily": 1, - "textAlign": "center", - "verticalAlign": "middle", - "baseline": 44, - "containerId": "ZJZAeuIbhMfjdGpxX4rPC", - "originalText": "SETUP PHASE" - }, - { - "id": "B2Nf4PTcwapGRWL49XyZF", - "type": "rectangle", - "x": 1248.775191368772, - "y": 227.41533271281358, - "width": 243.54085388393014, - "height": 73.39587377323923, - "angle": 0, - "strokeColor": "#000000", - "backgroundColor": "transparent", - "fillStyle": "hachure", - "strokeWidth": 1, - "strokeStyle": "solid", - "roughness": 0, - "opacity": 100, - "groupIds": [], - "roundness": { - "type": 3 - }, - "seed": 290936696, - "version": 142, - "versionNonce": 1565598072, - "isDeleted": false, - "boundElements": [ - { - "type": "text", - "id": "AZIp05QK1Bz48fAl94lUu" - }, - { - "id": "_seYJ75JXXzBcYutrUImY", - "type": "arrow" - }, - { - "id": "nXlRFPffRQQtKX3KznGLM", - "type": "arrow" - }, - { - "id": "fVLiQl7NuItylcV-txit7", - "type": "arrow" - } - ], - "updated": 1673531210291, - "link": null, - "locked": false - }, - { - "id": "AZIp05QK1Bz48fAl94lUu", - "type": "text", - "x": 1292.0456183107372, - "y": 251.11326959943318, - "width": 157, - "height": 26, - "angle": 0, - "strokeColor": "#000000", - "backgroundColor": "transparent", - "fillStyle": "hachure", - "strokeWidth": 1, - "strokeStyle": "solid", - "roughness": 0, - "opacity": 100, - "groupIds": [], - "roundness": null, - "seed": 1877243768, - "version": 25, - "versionNonce": 887476744, - "isDeleted": false, - "boundElements": null, - "updated": 1673531210291, - "link": null, - "locked": false, - "text": "BOOK-KEEPING", - "fontSize": 20, - "fontFamily": 1, - "textAlign": "center", - "verticalAlign": "middle", - "baseline": 18, - "containerId": "B2Nf4PTcwapGRWL49XyZF", - "originalText": "BOOK-KEEPING" - }, - { - "id": "7ROaGC1u41myy_RT3Jwuj", - "type": "rectangle", - "x": 1204.5708583007986, - "y": 55.6022645618217, - "width": 341.12400424153196, - "height": 333.61760806017855, - "angle": 0, - "strokeColor": "#000000", - "backgroundColor": "transparent", - "fillStyle": "hachure", - "strokeWidth": 1, - "strokeStyle": "dotted", - "roughness": 0, - "opacity": 100, - "groupIds": [], - "roundness": { - "type": 3 - }, - "seed": 1022420088, - "version": 210, - "versionNonce": 1386099320, - "isDeleted": false, - "boundElements": null, - "updated": 1673531210291, - "link": null, - "locked": false - }, - { - "id": "YgiyuG5WmnnlmzO3NRG86", - "type": "text", - "x": 1408.9116432376575, - "y": 77.46615742829087, - "width": 109, - "height": 36, - "angle": 0, - "strokeColor": "#000000", - "backgroundColor": "transparent", - "fillStyle": "hachure", - "strokeWidth": 1, - "strokeStyle": "dotted", - "roughness": 0, - "opacity": 100, - "groupIds": [], - "roundness": null, - "seed": 501709176, - "version": 56, - "versionNonce": 1399738632, - "isDeleted": false, - "boundElements": null, - "updated": 1673531210291, - "link": null, - "locked": false, - "text": "DRIVER", - "fontSize": 28, - "fontFamily": 1, - "textAlign": "left", - "verticalAlign": "top", - "baseline": 25, - "containerId": null, - "originalText": "DRIVER" - }, - { - "id": "_seYJ75JXXzBcYutrUImY", - "type": "arrow", - "x": 1436.1127099660748, - "y": 213.19567928615254, - "width": 4.826587183528318, - "height": 13.514444113879392, - "angle": 0, - "strokeColor": "#000000", - "backgroundColor": "transparent", - "fillStyle": "hachure", - "strokeWidth": 1, - "strokeStyle": "solid", - "roughness": 0, - "opacity": 100, - "groupIds": [], - "roundness": { - "type": 2 - }, - "seed": 794910840, - "version": 21, - "versionNonce": 505488248, - "isDeleted": false, - "boundElements": null, - "updated": 1673531210291, - "link": null, - "locked": false, - "points": [ - [ - 0, - 0 - ], - [ - -4.826587183528318, - 13.514444113879392 - ] - ], - "lastCommittedPoint": null, - "startBinding": { - "elementId": "B2Nf4PTcwapGRWL49XyZF", - "focus": -0.3513000485527661, - "gap": 14.219653426661026 - }, - "endBinding": null, - "startArrowhead": null, - "endArrowhead": "arrow" - }, - { - "id": "nXlRFPffRQQtKX3KznGLM", - "type": "arrow", - "x": 1308.690808320926, - "y": 212.23036184944687, - "width": 13.514444113879563, - "height": 14.479761550585067, - "angle": 0, - "strokeColor": "#000000", - "backgroundColor": "transparent", - "fillStyle": "hachure", - "strokeWidth": 1, - "strokeStyle": "solid", - "roughness": 0, - "opacity": 100, - "groupIds": [], - "roundness": { - "type": 2 - }, - "seed": 522065272, - "version": 26, - "versionNonce": 714010632, - "isDeleted": false, - "boundElements": null, - "updated": 1673531210291, - "link": null, - "locked": false, - "points": [ - [ - 0, - 0 - ], - [ - 13.514444113879563, - 14.479761550585067 - ] - ], - "lastCommittedPoint": null, - "startBinding": { - "elementId": "B2Nf4PTcwapGRWL49XyZF", - "focus": 0.08608258441565485, - "gap": 15.1849708633667 - }, - "endBinding": null, - "startArrowhead": null, - "endArrowhead": "arrow" - }, - { - "id": "fVLiQl7NuItylcV-txit7", - "type": "arrow", - "x": 1372.4017591435004, - "y": 302.00488346307435, - "width": 0, - "height": 23.1676184809362, - "angle": 0, - "strokeColor": "#000000", - "backgroundColor": "transparent", - "fillStyle": "hachure", - "strokeWidth": 1, - "strokeStyle": "solid", - "roughness": 0, - "opacity": 100, - "groupIds": [], - "roundness": { - "type": 2 - }, - "seed": 331986696, - "version": 32, - "versionNonce": 1042150520, - "isDeleted": false, - "boundElements": null, - "updated": 1673531210291, - "link": null, - "locked": false, - "points": [ - [ - 0, - 0 - ], - [ - 0, - 23.1676184809362 - ] - ], - "lastCommittedPoint": null, - "startBinding": { - "elementId": "B2Nf4PTcwapGRWL49XyZF", - "focus": -0.01524295249164113, - "gap": 1.1936769770215534 - }, - "endBinding": null, - "startArrowhead": null, - "endArrowhead": "arrow" - }, - { - "type": "rectangle", - "version": 553, - "versionNonce": 1388552968, - "isDeleted": false, - "id": "h67D6O3OQrdj_6H_3xSHp", - "fillStyle": "hachure", - "strokeWidth": 1, - "strokeStyle": "solid", - "roughness": 0, - "opacity": 100, - "angle": 0, - "x": 533.4015811461492, - "y": 475.0943809471652, - "strokeColor": "#000000", - "backgroundColor": "transparent", - "width": 450, - "height": 123, - "seed": 2145918728, - "groupIds": [], - "roundness": { - "type": 3 - }, - "boundElements": [ - { - "type": "text", - "id": "5ZufPgZNLw-TrslhHAH_x" - }, - { - "id": "IdnzBoqqwThnDtXCkKT8e", - "type": "arrow" - } - ], - "updated": 1673531472433, - "link": null, - "locked": false - }, - { - "type": "text", - "version": 588, - "versionNonce": 1884768264, - "isDeleted": false, - "id": "5ZufPgZNLw-TrslhHAH_x", - "fillStyle": "hachure", - "strokeWidth": 1, - "strokeStyle": "solid", - "roughness": 0, - "opacity": 100, - "angle": 0, - "x": 581.9015811461492, - "y": 497.5943809471652, - "strokeColor": "#000000", - "backgroundColor": "transparent", - "width": 353, - "height": 78, - "seed": 1769158008, - "groupIds": [], - "roundness": null, - "boundElements": null, - "updated": 1673531492663, - "link": null, - "locked": false, - "fontSize": 20, - "fontFamily": 1, - "text": "SIMPLIFIED VERSION/MODEL OF \nINTERESTING PARTS OF SYSTEM\n (WHITE BOX)", - "baseline": 70, - "textAlign": "center", - "verticalAlign": "middle", - "containerId": "h67D6O3OQrdj_6H_3xSHp", - "originalText": "SIMPLIFIED VERSION/MODEL OF INTERESTING PARTS OF SYSTEM\n (WHITE BOX)" - }, - { - "type": "rectangle", - "version": 410, - "versionNonce": 229966456, - "isDeleted": false, - "id": "hyxcc8qLdQnrGbS-0cCWA", - "fillStyle": "hachure", - "strokeWidth": 1, - "strokeStyle": "solid", - "roughness": 0, - "opacity": 100, - "angle": 0, - "x": 540.6026851973252, - "y": 406.617558289307, - "strokeColor": "#000000", - "backgroundColor": "transparent", - "width": 204.5170049998253, - "height": 36, - "seed": 17139064, - "groupIds": [], - "roundness": { - "type": 3 - }, - "boundElements": [ - { - "type": "text", - "id": "--EI82vnG9OCSBtica3B8" - } - ], - "updated": 1673531472433, - "link": null, - "locked": false - }, - { - "type": "text", - "version": 390, - "versionNonce": 367821064, - "isDeleted": false, - "id": "--EI82vnG9OCSBtica3B8", - "fillStyle": "hachure", - "strokeWidth": 1, - "strokeStyle": "solid", - "roughness": 0, - "opacity": 100, - "angle": 0, - "x": 565.3611876972382, - "y": 411.617558289307, - "strokeColor": "#000000", - "backgroundColor": "#ced4da", - "width": 155, - "height": 26, - "seed": 538553864, - "groupIds": [], - "roundness": null, - "boundElements": null, - "updated": 1673531472433, - "link": null, - "locked": false, - "fontSize": 20, - "fontFamily": 1, - "text": "EXTERNAL API", - "baseline": 18, - "textAlign": "center", - "verticalAlign": "middle", - "containerId": "hyxcc8qLdQnrGbS-0cCWA", - "originalText": "EXTERNAL API" - }, - { - "type": "rectangle", - "version": 253, - "versionNonce": 336961144, - "isDeleted": false, - "id": "Z4EQg3GjKtrv_7eP3xWg1", - "fillStyle": "hachure", - "strokeWidth": 1, - "strokeStyle": "solid", - "roughness": 0, - "opacity": 100, - "angle": 0, - "x": 538.8122944971826, - "y": 325.3836788389075, - "strokeColor": "#000000", - "backgroundColor": "transparent", - "width": 204.23651665328725, - "height": 57.531413141771054, - "seed": 665261688, - "groupIds": [], - "roundness": { - "type": 3 - }, - "boundElements": [ - { - "type": "text", - "id": "IE8eDUKRsLmHYrkzHtdgi" - }, - { - "id": "3x6LknplsBsxRgzRV8ihV", - "type": "arrow" - } - ], - "updated": 1673531603402, - "link": null, - "locked": false - }, - { - "type": "text", - "version": 220, - "versionNonce": 1573330952, - "isDeleted": false, - "id": "IE8eDUKRsLmHYrkzHtdgi", - "fillStyle": "hachure", - "strokeWidth": 1, - "strokeStyle": "solid", - "roughness": 0, - "opacity": 100, - "angle": 0, - "x": 560.4305528238262, - "y": 341.149385409793, - "strokeColor": "#000000", - "backgroundColor": "transparent", - "width": 161, - "height": 26, - "seed": 1523952904, - "groupIds": [], - "roundness": null, - "boundElements": null, - "updated": 1673531472433, - "link": null, - "locked": false, - "fontSize": 20, - "fontFamily": 1, - "text": "CALLS TO API ", - "baseline": 18, - "textAlign": "center", - "verticalAlign": "middle", - "containerId": "Z4EQg3GjKtrv_7eP3xWg1", - "originalText": "CALLS TO API " - }, - { - "id": "3x6LknplsBsxRgzRV8ihV", - "type": "arrow", - "x": 638.0346005137096, - "y": 385.0395433843745, - "width": 0.140803488130814, - "height": 22.343104532361394, - "angle": 0, - "strokeColor": "#000000", - "backgroundColor": "transparent", - "fillStyle": "hachure", - "strokeWidth": 1, - "strokeStyle": "solid", - "roughness": 0, - "opacity": 100, - "groupIds": [], - "roundness": { - "type": 2 - }, - "seed": 485247608, - "version": 402, - "versionNonce": 828307832, - "isDeleted": false, - "boundElements": null, - "updated": 1673531472879, - "link": null, - "locked": false, - "points": [ - [ - 0, - 0 - ], - [ - -0.140803488130814, - 22.343104532361394 - ] - ], - "lastCommittedPoint": null, - "startBinding": { - "elementId": "Z4EQg3GjKtrv_7eP3xWg1", - "focus": 0.026405655826522007, - "gap": 2.124451403695957 - }, - "endBinding": null, - "startArrowhead": null, - "endArrowhead": "arrow" - }, - { - "id": "C3_fEJgr-yG9jfhwIFUwH", - "type": "line", - "x": 638.5982593890814, - "y": 445.49608667251323, - "width": 0, - "height": 28.438712162777392, - "angle": 0, - "strokeColor": "#000000", - "backgroundColor": "transparent", - "fillStyle": "hachure", - "strokeWidth": 1, - "strokeStyle": "solid", - "roughness": 0, - "opacity": 100, - "groupIds": [], - "roundness": { - "type": 2 - }, - "seed": 730733176, - "version": 86, - "versionNonce": 1260483960, - "isDeleted": false, - "boundElements": null, - "updated": 1673531472433, - "link": null, - "locked": false, - "points": [ - [ - 0, - 0 - ], - [ - 0, - 28.438712162777392 - ] - ], - "lastCommittedPoint": null, - "startBinding": null, - "endBinding": null, - "startArrowhead": null, - "endArrowhead": null - }, - { - "id": "IdnzBoqqwThnDtXCkKT8e", - "type": "arrow", - "x": 984.6025907028747, - "y": 537.4479226654938, - "width": 77.31167135086946, - "height": 144.51028351879518, - "angle": 0, - "strokeColor": "#000000", - "backgroundColor": "transparent", - "fillStyle": "hachure", - "strokeWidth": 1, - "strokeStyle": "solid", - "roughness": 0, - "opacity": 100, - "groupIds": [], - "roundness": { - "type": 2 - }, - "seed": 91395448, - "version": 574, - "versionNonce": 151235704, - "isDeleted": false, - "boundElements": null, - "updated": 1673531524795, - "link": null, - "locked": false, - "points": [ - [ - 0, - 0 - ], - [ - 27.49075509068507, - -38.86623995579589 - ], - [ - -49.82091626018439, - -144.51028351879518 - ] - ], - "lastCommittedPoint": null, - "startBinding": { - "elementId": "h67D6O3OQrdj_6H_3xSHp", - "focus": 0.8447103694106621, - "gap": 1.2010095567255803 - }, - "endBinding": null, - "startArrowhead": null, - "endArrowhead": "arrow" - }, - { - "id": "hK0fQuBUry0b43u8nuCmg", - "type": "rectangle", - "x": 778.8762372595495, - "y": 324.2464192859718, - "width": 162, - "height": 69, - "angle": 0, - "strokeColor": "#000000", - "backgroundColor": "transparent", - "fillStyle": "hachure", - "strokeWidth": 1, - "strokeStyle": "solid", - "roughness": 0, - "opacity": 100, - "groupIds": [], - "roundness": { - "type": 3 - }, - "seed": 140688760, - "version": 142, - "versionNonce": 1380808568, - "isDeleted": false, - "boundElements": [ - { - "type": "text", - "id": "U8Sn0kgnUYHTD_HQk6w33" - }, - { - "id": "bzLArg366Xt-0rpvTdufZ", - "type": "arrow" - } - ], - "updated": 1673531549064, - "link": null, - "locked": false - }, - { - "id": "U8Sn0kgnUYHTD_HQk6w33", - "type": "text", - "x": 788.8762372595495, - "y": 332.7464192859718, - "width": 142, - "height": 52, - "angle": 0, - "strokeColor": "#000000", - "backgroundColor": "transparent", - "fillStyle": "hachure", - "strokeWidth": 1, - "strokeStyle": "solid", - "roughness": 0, - "opacity": 100, - "groupIds": [], - "roundness": null, - "seed": 77260296, - "version": 148, - "versionNonce": 975806728, - "isDeleted": false, - "boundElements": null, - "updated": 1673531522276, - "link": null, - "locked": false, - "text": "TRACES\n(Observations)", - "fontSize": 20, - "fontFamily": 1, - "textAlign": "center", - "verticalAlign": "middle", - "baseline": 44, - "containerId": "hK0fQuBUry0b43u8nuCmg", - "originalText": "TRACES\n(Observations)" - }, - { - "id": "bzLArg366Xt-0rpvTdufZ", - "type": "arrow", - "x": 933.5474910148937, - "y": 319.32462701484786, - "width": 299.881213440789, - "height": 167.85160069723347, - "angle": 0, - "strokeColor": "#000000", - "backgroundColor": "transparent", - "fillStyle": "hachure", - "strokeWidth": 1, - "strokeStyle": "solid", - "roughness": 0, - "opacity": 100, - "groupIds": [], - "roundness": { - "type": 2 - }, - "seed": 184636936, - "version": 64, - "versionNonce": 1869013512, - "isDeleted": false, - "boundElements": [ - { - "type": "text", - "id": "MgsSzrDuBqFp3U3ec_YJj" - } - ], - "updated": 1673531563107, - "link": null, - "locked": false, - "points": [ - [ - 0, - 0 - ], - [ - 299.881213440789, - -167.85160069723347 - ] - ], - "lastCommittedPoint": null, - "startBinding": { - "elementId": "hK0fQuBUry0b43u8nuCmg", - "focus": 0.02272097810995565, - "gap": 4.921792271123934 - }, - "endBinding": { - "elementId": "-HbCtmQf8Aj24TNHueDwu", - "focus": 0.42218553178899304, - "gap": 2.83582661083301 - }, - "startArrowhead": null, - "endArrowhead": "arrow" - }, - { - "id": "MgsSzrDuBqFp3U3ec_YJj", - "type": "text", - "x": 977.4880977352882, - "y": 222.39882666623112, - "width": 212, - "height": 26, - "angle": 0, - "strokeColor": "#000000", - "backgroundColor": "transparent", - "fillStyle": "hachure", - "strokeWidth": 1, - "strokeStyle": "solid", - "roughness": 0, - "opacity": 100, - "groupIds": [], - "roundness": null, - "seed": 2144311304, - "version": 33, - "versionNonce": 1088193288, - "isDeleted": false, - "boundElements": null, - "updated": 1673531562337, - "link": null, - "locked": false, - "text": "Traces become tests", - "fontSize": 20, - "fontFamily": 1, - "textAlign": "center", - "verticalAlign": "middle", - "baseline": 18, - "containerId": "bzLArg366Xt-0rpvTdufZ", - "originalText": "Traces become tests" - }, - { - "id": "RSIT7sKVQUCCGGl-hRXV9", - "type": "rectangle", - "x": 664.3708386772571, - "y": 89.0404187412044, - "width": 197.53267643028087, - "height": 65.50306368672523, - "angle": 0, - "strokeColor": "#000000", - "backgroundColor": "transparent", - "fillStyle": "hachure", - "strokeWidth": 1, - "strokeStyle": "solid", - "roughness": 0, - "opacity": 100, - "groupIds": [], - "roundness": { - "type": 3 - }, - "seed": 994926856, - "version": 175, - "versionNonce": 109423736, - "isDeleted": false, - "boundElements": [ - { - "type": "text", - "id": "IxABA5aH7LPWdgIte8p_P" - }, - { - "id": "ejAEQlJWnIDoK4M68qkoJ", - "type": "arrow" - } - ], - "updated": 1673531661867, - "link": null, - "locked": false - }, - { - "id": "IxABA5aH7LPWdgIte8p_P", - "type": "text", - "x": 684.6371768923975, - "y": 108.79195058456702, - "width": 157, - "height": 26, - "angle": 0, - "strokeColor": "#000000", - "backgroundColor": "transparent", - "fillStyle": "hachure", - "strokeWidth": 1, - "strokeStyle": "solid", - "roughness": 0, - "opacity": 100, - "groupIds": [], - "roundness": null, - "seed": 445244936, - "version": 99, - "versionNonce": 1962097272, - "isDeleted": false, - "boundElements": null, - "updated": 1673531629351, - "link": null, - "locked": false, - "text": "BOOK-KEEPING", - "fontSize": 20, - "fontFamily": 1, - "textAlign": "center", - "verticalAlign": "middle", - "baseline": 18, - "containerId": "RSIT7sKVQUCCGGl-hRXV9", - "originalText": "BOOK-KEEPING" - }, - { - "id": "dLwBYNVYvUT0APNzg3ik2", - "type": "rectangle", - "x": 545.6465357450675, - "y": 177.06016057024158, - "width": 196, - "height": 62, - "angle": 0, - "strokeColor": "#000000", - "backgroundColor": "transparent", - "fillStyle": "hachure", - "strokeWidth": 1, - "strokeStyle": "solid", - "roughness": 0, - "opacity": 100, - "groupIds": [], - "roundness": { - "type": 3 - }, - "seed": 365629304, - "version": 156, - "versionNonce": 453598584, - "isDeleted": false, - "boundElements": [ - { - "type": "text", - "id": "bmy1Rqd1O7JDWLQcFI1pD" - }, - { - "id": "-iLPkDvbonz4ylimJsPnA", - "type": "arrow" - }, - { - "id": "ejAEQlJWnIDoK4M68qkoJ", - "type": "arrow" - } - ], - "updated": 1673531661867, - "link": null, - "locked": false - }, - { - "id": "bmy1Rqd1O7JDWLQcFI1pD", - "type": "text", - "x": 580.1465357450675, - "y": 182.06016057024158, - "width": 127, - "height": 52, - "angle": 0, - "strokeColor": "#000000", - "backgroundColor": "transparent", - "fillStyle": "hachure", - "strokeWidth": 1, - "strokeStyle": "solid", - "roughness": 0, - "opacity": 100, - "groupIds": [], - "roundness": null, - "seed": 17189128, - "version": 111, - "versionNonce": 1899917064, - "isDeleted": false, - "boundElements": null, - "updated": 1673531635219, - "link": null, - "locked": false, - "text": "ACTION \nGENERATOR", - "fontSize": 20, - "fontFamily": 1, - "textAlign": "center", - "verticalAlign": "middle", - "baseline": 44, - "containerId": "dLwBYNVYvUT0APNzg3ik2", - "originalText": "ACTION GENERATOR" - }, - { - "type": "rectangle", - "version": 312, - "versionNonce": 1334207752, - "isDeleted": false, - "id": "AydwT6LZHEM9YSQu4JzKW", - "fillStyle": "hachure", - "strokeWidth": 1, - "strokeStyle": "solid", - "roughness": 0, - "opacity": 100, - "angle": 0, - "x": 543.1347160305022, - "y": 259.4666206960693, - "strokeColor": "#000000", - "backgroundColor": "transparent", - "width": 192, - "height": 45, - "seed": 472233480, - "groupIds": [], - "roundness": { - "type": 3 - }, - "boundElements": [ - { - "type": "text", - "id": "JRlP6WvBwXQOvvLRsQ6kl" - }, - { - "id": "KgIY2dz80eoo8h7Ma3gFD", - "type": "arrow" - }, - { - "id": "-iLPkDvbonz4ylimJsPnA", - "type": "arrow" - } - ], - "updated": 1673531659533, - "link": null, - "locked": false - }, - { - "type": "text", - "version": 284, - "versionNonce": 2192904, - "isDeleted": false, - "id": "JRlP6WvBwXQOvvLRsQ6kl", - "fillStyle": "hachure", - "strokeWidth": 1, - "strokeStyle": "solid", - "roughness": 0, - "opacity": 100, - "angle": 0, - "x": 592.1347160305022, - "y": 268.9666206960693, - "strokeColor": "#000000", - "backgroundColor": "transparent", - "width": 94, - "height": 26, - "seed": 1790873208, - "groupIds": [], - "roundness": null, - "boundElements": null, - "updated": 1673531651613, - "link": null, - "locked": false, - "fontSize": 20, - "fontFamily": 1, - "text": "ACTIONS", - "baseline": 18, - "textAlign": "center", - "verticalAlign": "middle", - "containerId": "AydwT6LZHEM9YSQu4JzKW", - "originalText": "ACTIONS" - }, - { - "id": "KgIY2dz80eoo8h7Ma3gFD", - "type": "arrow", - "x": 640.264793721534, - "y": 306.52232293086513, - "width": 0, - "height": 19.95272254244759, - "angle": 0, - "strokeColor": "#000000", - "backgroundColor": "transparent", - "fillStyle": "hachure", - "strokeWidth": 1, - "strokeStyle": "solid", - "roughness": 0, - "opacity": 100, - "groupIds": [], - "roundness": { - "type": 2 - }, - "seed": 238130184, - "version": 13, - "versionNonce": 1447357960, - "isDeleted": false, - "boundElements": null, - "updated": 1673531657530, - "link": null, - "locked": false, - "points": [ - [ - 0, - 0 - ], - [ - 0, - 19.95272254244759 - ] - ], - "lastCommittedPoint": null, - "startBinding": { - "elementId": "AydwT6LZHEM9YSQu4JzKW", - "focus": -0.011771642614914887, - "gap": 2.055702234795831 - }, - "endBinding": null, - "startArrowhead": null, - "endArrowhead": "arrow" - }, - { - "id": "-iLPkDvbonz4ylimJsPnA", - "type": "arrow", - "x": 641.0961571608027, - "y": 241.67597466791062, - "width": 0, - "height": 17.458632224641576, - "angle": 0, - "strokeColor": "#000000", - "backgroundColor": "transparent", - "fillStyle": "hachure", - "strokeWidth": 1, - "strokeStyle": "solid", - "roughness": 0, - "opacity": 100, - "groupIds": [], - "roundness": { - "type": 2 - }, - "seed": 85804920, - "version": 14, - "versionNonce": 45538936, - "isDeleted": false, - "boundElements": null, - "updated": 1673531659533, - "link": null, - "locked": false, - "points": [ - [ - 0, - 0 - ], - [ - 0, - 17.458632224641576 - ] - ], - "lastCommittedPoint": null, - "startBinding": { - "elementId": "dLwBYNVYvUT0APNzg3ik2", - "focus": 0.02602427126800779, - "gap": 2.6158140976690447 - }, - "endBinding": { - "elementId": "AydwT6LZHEM9YSQu4JzKW", - "focus": 0.020431678440630208, - "gap": 1 - }, - "startArrowhead": null, - "endArrowhead": "arrow" - }, - { - "id": "ejAEQlJWnIDoK4M68qkoJ", - "type": "arrow", - "x": 749.1734042657268, - "y": 155.21417698397124, - "width": 64.01498482368595, - "height": 20.784085981716203, - "angle": 0, - "strokeColor": "#000000", - "backgroundColor": "transparent", - "fillStyle": "hachure", - "strokeWidth": 1, - "strokeStyle": "solid", - "roughness": 0, - "opacity": 100, - "groupIds": [], - "roundness": { - "type": 2 - }, - "seed": 310674440, - "version": 26, - "versionNonce": 1330870024, - "isDeleted": false, - "boundElements": null, - "updated": 1673531661867, - "link": null, - "locked": false, - "points": [ - [ - 0, - 0 - ], - [ - -64.01498482368595, - 20.784085981716203 - ] - ], - "lastCommittedPoint": null, - "startBinding": { - "elementId": "RSIT7sKVQUCCGGl-hRXV9", - "focus": -0.4456832994964927, - "gap": 1 - }, - "endBinding": { - "elementId": "dLwBYNVYvUT0APNzg3ik2", - "focus": -0.2958381275845222, - "gap": 1.061897604554133 - }, - "startArrowhead": null, - "endArrowhead": "arrow" - }, - { - "id": "JTO7T_3Red5vVXUYFQW-W", - "type": "rectangle", - "x": 512.1844036993771, - "y": 23.613702058118605, - "width": 509.30217500639935, - "height": 601.7275224555757, - "angle": 0, - "strokeColor": "#000000", - "backgroundColor": "transparent", - "fillStyle": "hachure", - "strokeWidth": 1, - "strokeStyle": "dotted", - "roughness": 0, - "opacity": 100, - "groupIds": [], - "roundness": { - "type": 3 - }, - "seed": 636415608, - "version": 148, - "versionNonce": 1782794760, - "isDeleted": false, - "boundElements": null, - "updated": 1673531688457, - "link": null, - "locked": false - }, - { - "type": "text", - "version": 102, - "versionNonce": 1008735352, - "isDeleted": false, - "id": "4s20lalXvbr5hdmOsR3fy", - "fillStyle": "hachure", - "strokeWidth": 1, - "strokeStyle": "dotted", - "roughness": 0, - "opacity": 100, - "angle": 0, - "x": 898.630332154823, - "y": 35.45938717191518, - "strokeColor": "#000000", - "backgroundColor": "transparent", - "width": 100, - "height": 36, - "seed": 1851574536, - "groupIds": [], - "roundness": null, - "boundElements": null, - "updated": 1673531694821, - "link": null, - "locked": false, - "fontSize": 28, - "fontFamily": 1, - "text": "MODEL", - "baseline": 25, - "textAlign": "left", - "verticalAlign": "top", - "containerId": null, - "originalText": "MODEL" - } - ], - "appState": { - "gridSize": null, - "viewBackgroundColor": "#ffffff" - }, - "files": {} -} \ No newline at end of file diff --git a/tests/difference/core/docs/diagrams/diagram0.png b/tests/difference/core/docs/diagrams/diagram0.png deleted file mode 100644 index 67298b4d0510929d33020153d83e63af9c158649..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 174961 zcmbq*Wk8f$)GiDI4Ba6)bf}~vDZ?NsF_fUvAyU$vLx8Eggb% zqX>78=XlQf?*0DVpUlj=_kQsiF0v{cB5nTT<4aLCkDZ|LISKxJ@nAWkp> z@QGx#|1J&=97pYjg1(RG`ZJ;_gU@H3Po)g6H5BwD*WGww&96?)nHcThh*B>mCA!d% zSRuuumL%ZLDUh7OkrtsEj`5Av80|O@dU`JH{eI=^&&gKQ#4! zZM(I%S(9~enl*DL`1IOCBn*bj0f&Z%P*OsWi2wY-6WV--Q$~GJ%bxLneE#nrN(k#H zHt7HQFfylrl5$)}_l;f{)&Cs!&*L||zFqjgX8iM&Ix%h{E03qlRmT5)Y%p!s|Gwt` z&uP&{7}lAfpReZzB__7cuf*q5sI+Bc7+J%3mKjzJHUp&(*ip>b9m*JE)R6qo8xnmS5HuNp|yujsHbj zGy&JYM~Y^FqfnJ$5pH|S{bVFhYMmz2gMWQDdq=WdVb#UkosjXMq37wk3zRUJFp;&I zLILwg0xl5RO+HEyow;akxiPTdEMFOxEmO%gDPg1^)d7~h-=E03$>!UoI5RcaGWBR( zbyS&AHjgpx4Vk=#ud=vr=THq*_=`^69p=Q%+egz+jV+lx^*;t8PFQIVwnR6@-;+e=tS}|{_9XEfvd*d8Su%f@!yEChS)%k|w8`r@0=ym? z`f24Smm}kdH9c?rZLkP7%8*yf6xI*fKRu2T`bPc7lz>@BUxi5V$rNd4KOiErt`Aa= zGRn^%Ao|;W_>oZ5m)E9mCyKo6xpHC7ISrTo**EX7VH7?Yo-l}=duI6bue+5~KsEd8W^9~(3Qu6h zRmp$H!a-*~W<{F*=j#1uFiObD4Y*h(o-_H7LBV|Y%EsrK|M#k5e~-3?a&pM{9j@Db zs86^cuIzSO&g#!NmJe~h4Bjd=wqpxE-BB-`vYK-8)cntU7dR-1#^=<#kUsqX430kL z40)vTRLDeQW#E}Xt;D-GYH~D?KO>ezBe<&^T$7{NhW}7y+42Vy04Wz;y;c}9T)wuhg`4}W&b3}^XF!xvw(Sy z=%4lSJ3xK1%W6jM9DXhR&pHqSaE$0U+WqI7nIMO=gRc$efSZz1nB}c<|Rd!gZl+e&0AgztH2G zTsAxZVd&mYrIMPTAl*yN{-wkqZvT$G#($0&3C{x0N3R6xl>J_YQdsl*^Iy(;KfagU z{cJx>tJC#J{_OswS%b%m+i(49?7ozw*nP^2xb6MbGf?kPHb8NUgBEoK{UxVe@U@U;FYQVE>cKyV36-bHk**zpCoPC1f#=mwL%$ z7W}IwP24u&pvrGK&9;x(xyd4+w85(Y#7z5zAQ_1eh?4sgB0F{?-FQNMOS2rq+8yz=?E_B9gvOWRKOj=p+d8wKHb z-096%BrduV%2}lKOnUjT_VtSMNTW0<_j|p29CGj*p~L(IUok<7AqEF)Ulb2i2>-aQ z-zIv@MVY?d{DL*=u)NU?V*J;EtFz+Ml`sY&ClA1u0f5a`|~aDty?PZl53C7{jG_laWTgx`%B`>htDvyWCk zcLlvWS6li{W~p`_-g7p6uF`hyuiQU0ePaZR!Zpeqg>MuD`T#)4t2F+voh( zkwIc1<{Dy@{-3+gsQ|w+u2XeS^YdGO@9)F^Tr(U@KmY)&4j`FDUpwSA=fzuUwejj<~^vbA$^W)8h*)WP)-eL?rrSw3f z^?0R?gaLsWjjlb|m$&Lp!N+q^_g=oPt(2Glxn9-ZoybLU=<;^A_hOOn-tzL&Q?pvO zOaI0K1dR3~B)5m$E&VOcm?dlZkIR2~s81Y-JH$aW(_{WyZ~OJMOPwVOdu-!Mc&-EbE2 zr)Qn$S|IyZ?;Dr@HJS+Q5wtvbn~7yEa>@YpFZGnx`dOx zY2d*Z;_P5xrzsjrq7oZJg*WHx#0Ojsm{ZX@=- zY*~4#M z+;Mmm%WoRG+<$H6ip*x6)jUdg98D3mHyeUbXhFt&Rf?k@->oV|#ve&j$e)%=eai`> zmT%1t+pUKNargxP8=Y~%xs@b@bSIQp71RHA=r%FU(NtW0vn^p8V;p?^xZj^IsuHXe zJ~gf6O%-aQGg39XAm`_y?1L1Vr9qlg$5N=c`FyquI-Vokd;0#AXPXHi)k3NB)4h!q znT_hlJfa{bvHm;{K3!msIozQ^PXUa3W)-M-+8w_bXFl>{%6)L0T@ix`#p8emnFXB` zmR(a*HveXhHK>1Feq2a5xg6}TScsv6m_pF80;zXK%FJfGKWY1Qhf!R=U$)nbN1?CE zP(L4gu@A$cxNbXY7W`HUxFPX13W8$BTs`!l?Qsn1@Ci(PQtbhr4M{Ae#w|6^6W||SuPp$Bl%SM`@|HSHR9BpLE_$9G z?_7w#OZYzk2b7C4cD?!8v$1;_PT_@r@InUl{N+zSK&-wSYJR*ux11LzR1!jY{yerv zjqjOtaDv-B*aJ-#_YarfjEPm=C^A4aWie#F_gK|^*{Mn{JgzW75*w@UIum%5#`Q>c zh%J;IRzk;FoJX9UD~P7$(6sric}??Y^8Whx=P8fRnun4@rf^l-e}Dsa6Fna038Q*#R7g9k~aJsBlbfp6WYV%@0fIuNj2BPdv!^Mdw;BBcD@7CC-_$_s;WgPC1>je zI{nyRed4402Tg$slVgNMf3Li?e*KOBv@l%yXpsEIdUA)Cj%TbU=%5yx5@!D#g41KfE-T_^|YsL1O z1e&WT4wM%RL9hExN(!Zxzw9RJGK-km9SAt57c#!z^AX?x9#tK0Ho7e1v`vsJO^AK! zL0gixCgqUH+ekQlyoF*e*otSqR;un)@IA`=Qt|wNIf}eUx>-KJ~ELIn4Jz+ALCe#3to?eJGwsLtf0c^H}SIY8#|^ z?q*F+qyWv9=s#`?G&>gBAuaqdu#?%)PwH))8f3lqD$3XE!{$?$p%5jn3PIi$&h&L_X&NnA5!KtSt{@iP z-P3Y5mj;;KtZJu|Iiu{|k6!9a{8Ex5%=*r*McE1qzktJd?JKCTL^I4>FqOl}VT141 zahbfyN#w-*c~s6|!Ar`5TJw)<6S=JcUnD&eN-_;s(6FiY3#2D)g1p8;wllDlT!GWSN@SV;1ICU6?#kfD$Kna%Fxd zJ5IdGUohY-3MVf3>9u&xx3aX7CWO~e&-KL5zQbnIhchP3p{vta<4IDkegg)U1SfSgb6)fjZ||j5My0_$a8+#aOaV>#(lroeBxQCJ8-cE+2g%)6?XR{MGZtf%-PPW?{M zVoCY$ESy#bavJ1bpi=ROr~Vu;d>aY&ve>ADX5?yyyw`iKRU3sNE3miL>*xMLsTPyl zba}J{oSfZILCotRWCK|^QE+~p3&D%D=B35&l&Drdr z!cU)2^AciHA8+6Z9EtCyT>obLA83%w1aQ^AGpBOR3g#ocX4P~ID&fm*21noy@^eB} z4O+Sf%XHPL$P`WJAivjm&Izwne1!fhMlZ7Bs#oPTkGZsw?FBiRh+Ktq-!_Snv*3aD z65&QCcx_DF#%Dag_4@_@vnr{w=+lsLdY{zP5u(Xo8Ky>|6HETO!{za?%Acj3AQ6SO zdlA*8G}oXa?1dA=!Ha`bZyNK@z!(^3=u{`6-Fu&6I;(I_8RNGuK_?gg!8+(6r4V(R z^+gn`3dcVPC|MX%Jaw$t@x+oek+s8TblCRKL{i8QHL^7<^(LTVh^oTA8y3@n;kxA@ zx!vT~<^*mj^Bsw-5&!3_|3FiOF(pjNtG%#lE$RD7PTvAg{a08&$8BF{~ZQRjST7W3nL)Il0Zw^ddMRKMZo6* z`U_QK4Iq;~IPJ9K|7;}oo>IcVNgaOmHk-WW<^M0XLacH&6Q~Sk z$$>b!d3mJ!&uq!~z$|;`B^)q+Hu29lzX$ClM5C;`04wZFm5A0mk!56h@xN_8+ENKl z3xH3U-uwTM3E0C`L=ZIj{e{;*!9(Djo0hOd)=yIoHJtxr``n?{&CGku1)CskLtTNr z0-O|<9*$hQiSlE?dgB#MHIkT0FcLGtCZECg5nZUaE859XibUn_HCIj1`p!7 z2smZteGG^B{v0koG9+R)iRY%qWUUj)FrLXR*djS@mh)M=iQh9B=x`-=csLUj<$>_Y zNsV&=o9H7zNvixG%NBwFlIp5$mT!^z;FJGr4}twI3bX^F+>Acw{y$sUONZ;rl>GhK zXx;B!Nue^r0@d9fzJ5TQIe~!pp_}7Q)xCJ%r4++HHve^t5y0VePYTx($p6~ct8!aX zuUg6Sr@uRDH9iB50r+$WnMYwY{}wR#O`tA@eCHAamBT|yW?aA7%61Yo{pCBUPfh)L zyzH_5vy09D)#^}ToZVQtMT*Q1EQ>Jm`tGC`T<^aB`(KCRfYB*&o9q~C{`M)qf7~|P zsWAxTxOXm*OMim{-}uauMeEWJme_R{8aB-UOV`0+qCb23kI5hgsJ?xE{wPh%M!oR+ zI#_3s+4~@nnI?z=fNgQ>SKYU~xW4VVw!p!!cF&*nxjJmsVfjsS%4~5H9uT!xDgT zxa0J*I%TGB9UFDLRw95QlhctI{o_}#*P(zCbMip#s}>orHtZAtmF4QsS|qRPT9Bui z?gOG2&Kf{A6dP9iZ`6zy$q_2`2t3cUOpsnHMo{!TH47Slq9C{3jHmgv!INyUwS&RT z(Lf;h{O1hW!ZAoZ)@$Ip^p}hVYD=5K=Jb4X5&^-M?T0%iVVw4Zyi)j`+YBzdzVQ8QiuU> zGb;wjzx$g8M@V}$dTo%#yvH6Z;x)#k&KG()q%FK>ucQ(l(6n{WhxIA(Ch zcZIbIprYrE))9k)a!1DQz$(*w9`oI;yq6t#C<@5n#uqyI%Dr9**MEGwku8Opxmb_} zs0@lH!$#Hj6YH_CYEceKBgcUa z*zSS*r#dX8=!dyd+(VKC>C%!uU@>X)9}?E{IQU;u&WE}%rxzyb%( zGC7%!qr=ID=@^V%&<1Fqn6zBQsG|Lsq0!rZDULN?ZY_fxUDf~guyDZ-AGN%by_LJ# zwI4$-J4qKkEZ?0(j=VHeE|=AF`#n{ltk|7z4be&4vg6iu{?ezSjp8Z zQ(8+L*$fi*)F&~X&+aKO(5{y&hS!zedBt=fKUkTD4t8(!!2r zZ7dA6!K>vOM^dR!lkZ0}!PnM}t~{8M92PGM`^zuGk6`BS;!cgf;JZJnDMdAaw5~zv zM_-zFe^JH*dpdT;yZ+d8Yq{ZjDarl|gu}bxbnVu~9Tti%Y#&zmi3=P8dr~ z%K?SramQ!(;&&(m3JFkhPM2a7f}_FvcQQRf4r5F|H~G5%bf@K*mf~8F1%xr=r-EM} z4=9G|xf*};*1b1Xv%3QYDHCCDgYq~Wr|pAqsg(P&ksb5U3qVd?R=6Xn%Sj4PrT(=d ze@^6Hobs8<_@c(g+Basa13lpyuD^=3SAQ(X@qXP=oiWOxSxq>we7ZSS9=Khbwl*DJ zU;8vf^~)0(q5GtpD;5)~@48GmnZseAsVKUWX$(c zKMMYdcRo};!0lnf!^R___or^|;BY5{6|Z2(k%G}Ag0FIvxA%6Noh_%Ed=F9ja0^w{ zts1E<;7zZM8oS4Dk?kf4_}qu4)bMOXULj?8b?ubY@b)!xkF@}KM&Tv5ujf+d7)5f? zf?Y}Kwlb?esx?!%>$P@URX_r0|7Rhim5NM%e#=k3c3 z>f^cgmrnewJy_+T=9;1+dCONwR8j|losNxU7fl}l67F@wl%I!X434ly*5u&zpM6XQ zazDQ1OHicDO5J1NiXC#QU}=&zsD^D1M6JVK23?#$mn{6{T`;1MX}1bP6VH^ZlluhW zzBBIvY1n8AYFx+#*r%JnTda>&9I6x}P?57%Ety11s;C-TS{5xONWF;vq2r8bUH=Vz z`f6rcZ1KV1d7TfaJZOA)a`_@_5O5*f(cysIA2$yEbug0MPQ|02!f};%a?E$-SwFTq zq0MKo6i%a6e#VZ02mNxTx7}a+qXig6tGcZv0dF&YeMubE=Ty}%anfY1JW8zORoA5a z)G*}}okuxkF$5w~)ZJtrU=c}&%%P=h<~S{HBd>zO-kZG@Yu9DW?nF(&L}IMP1S<3E zw(|Xiv6!P9A7Wa`rHXF8M`5EozR00kfk>IV{5IAN*O?+TxGHhH!b;_5Ff5jeOPNta z+Ls}BxwGJLHDiFR@k2Jb2_|dasB3Z&x~~}{i-?!4DXt&q$hAKb$)RZ6sLe2WOj-8! zF#T(F1K_-!R!u^a**aNh3nl_~Iv8$s;8KNc#f(~~>@(XUi7Sw?XLN?f78zVNk?}C~ z0k`Wum`b-cvTOR=Tg@NBf&|Z^5d4*GU+YA6InfuPc?g_*Hd^NHUvGyh`6q5MBjH-G z?WDyH;B){{aWn9@b#hz@dveKH92p_{g_URCSzC-8 zvgC66AKN1n^c3sDfU9`6JPj! zC`U1~zykvX^{5oWUM4Ixxs-qqODb)&j2QyUrW|ghED_@2`RZf5MCU9`9LqSOV5&HhdrH|{z5ji0zeD#P$8NiuZ5Hs_b% zxdnH-7n}+=ZHK1xo^Ln@SB3CqJZLm=wVl{Bw0Y>8CT>s=e=u@)P<_?pI4zUUtZPtq zY7l2?uw1sAf6C?C>Xvriu`s9uivHanAQn3RO06Iv4TUChh|S5vS=k23kg z=h&z$JzGhuPaalBKXee?p!TaZ(%5%mjT%T9stkXs;kse@jZOJrF2R;n)Z-iK=ZtlV zGRlm@nB@~PmNZ2ZR#w6##Y0eO0TQ@(nn+c|H^j$q(fp%ZDFwUSD?6tOI8u&vl!Nfz z6n#3gp|6kl<)fNn#i{rKY-oI4TM~{_^U~Gx-Zdl#6l4&*o~g!Ck4xP;6c+v}E23jz zLkvq<5h##CsE2@@U7X1$(?T-(*H{JKz0|BJg-A2?aW27 z7s*ToZC*89I)8cVwOHBvGr!iCVcBy6-!A7jf-o~?+ro_DHO_X3B1_hrcEv*F7=4b3 zZNIQOiJhT>5JirBYxO~T>Ki7F0hG-tKC{i}` zFO)0aD>V?qd(_Fio1U(3zf5gi=Cfld@Tfz$;?^=dRqLqxm`onuM+}4$CCkvNxIjN# zu+6mSH{dXZy-#LcsZ#JGw-YGNHX5{MGM+5#bP=*~67@KUWXBDk4;y-KYM@#)TH3qQ zF&jp!K91|4cz<3mrAuL@2#G`RcuJZ(m6!vy34>GJd&58A`QgJawv^ptKuhp|ufj{XL-+X9z#4p|jGJo%%J9EewJ^Pkcmca~c zRh^tH_@T8D$rgp~Wh@+1C7d(Tl_}Ojx{wzRJPzLMAlZ%9L?zD%@vFo&5E!VT>Uwz# z2xVx7MULi%ZVHpVnhG5XqZMT+uuLRS^7(9fTG}S5${t2)k+AZ-d6y}fzyPzu72>!5 z&7ueOzT}EUr*Vqa7z;;A)KA7yDF+a6mhxJr`NI)Hl+9mGfNh9l69J)g!wh6jF>uf5 zXEJM}7sCbJ^sQ!8<87sx#f zjJO%bQ2~uI_dmkL?T7h)UI-_!xvO&nTiLpFyRu!7=J?Gu)$bwSTnw~TZ=yeP!G(+n zp-Pp~;mMaLTD5tknx}lN*FpAyB?M}jNH-R2!VIw(LlejvbhEzyasfQ&llEPL>q32_ zFjCbWXEe?{Q)<7vroPBNpVanO1Q}9o3XekeW6)HI!Nn?{9m}6v`lkFr*V*{3GC$b~ z$eQUSC|Ii`-!FOnimKS`{kxQsxyf8?+-Xi!VY7QS`>dpNYUkteUL4LK>l*o+g(ovF zzuP0>-mr3#o(Jx^dsBMxlrtgZtkR71!j~B7I^uEc2rjL?FdBLve4fWj8s}YtK`DiM zkThNN(ITSX)LNptg3uKcA$tw7>v>95>S5s<(v@LW@c81j`Q9*tvIx1{N~U||n#4PX;_IjSw6a_J z)*LA1CJ?gh$|~-E;;aIR(c}U)w`df-;iHEblGr_8L1tlelURDVA;hG^f;|dLvb}AQ zMBOYuJ}d(*gXilq!V+2-*U&Jm><+;Yrv@=?NeW0(KV${>3OqMTiO=K2a)W4Is9Oxq zG_<=16DR;MoJeiK45(b*%B{|J`AcnyF5#fG6_@i$8ZX33PhLu>K4ZNLHCjx1qVG6; zF-V{9i78192@n_ds@oI6JAnh&KD0iiT0*#XsZ=3?vq|Jsm1LCs z2C+5Cuduotw}hL8JB{>bXj6F%NIj=AgU?P<$U8(B&nZVlrxBNte%Dj()bUy?mz>qR z>v-xsc+%XS;`Y`8@}3;VGrTjNq-#;C_o@r1YDQ!Xk-wJlwS5J8i?J_pOoN+QBbqm~ znU(dMf<#<_VdS;_=t%}7@wrJ2xIq3sip6$4xDZEclu4KKPG;B#r6FzuWq#I1zXSWK zg#?-O<^GHeP~GVLVXz$)oNv_K38y(HQVj#bizLF(PkirmH`A+Z2W#!j_VGf|?{))` zQc0R6L@zRv{l5Yk&MQL|RQ=r%A^r;0Jr2(zPzdy@5}a(_Pd=Fe2_Z&@W?#|f`7aKd z@x)L01!3-J9HD{aOwFfTPvab3YI0B-LRB~NpqGX3{H-`k=7s3j7T>Na0;s_m!k}L$ zwL8yD7w16V0*ZBSh|!LC5ri+OohEDhYl)umK`qfZ*H!hMnWa7MyBb=>;HR(M=-~|E zpeVGp5T^s#$!QEuBP`Wd$4&EZlu#Ih!y_heHwJAp6=ve2UZQ(QS#in#>2XM9jvn|7|coVv|zxXv)1m6raQ~D2NyB zd$k?!Ov@)Ahj?zL_y*=kCOc$N;{DkVhdn?wTzI#DffcChT0p`S4bO(k*teSY66yiD z(%&9KLz5yRnehFRNyC-$@B1Wb*9GwRAHUx*L~yhW?l|mSWL1~ns$XHl3d$5aNSrZZ zA@x?NMzxM(MaRB;Dh$!h*gH-QT87|!x z{MKpcQGB-Asr#UuEfK`|g4RQ3HMveboO1%%QJBQ5Zwo-x^x#90xDYHtU*Rr566(i7 zIrJ^0yMUy4>B3~7A<`IL{%y3(?3+h6NXm;g+JI6}kW!9PnLlACm+`87GLMZh;t<7y zmlT^+X+Sp7S%x$vF;LQ7VW7tC{#-}RI!g_F9i9u%eG;PLQWHO{hV89?36%jW5Z@Ve zp)OlT;Yh8jb|`sSM`aICLo6t<%ttO%s2$;!V~VW@_5rHVrdT#HL8KTsWgbt+j8*TL z-?b#4vP_p&q9>9eux6Z$-6zR=9z3%3Bdrl6P6mX+FGADNL#dRw1G0(3)ar%#kh|{! ze0zg*b0Kb4Ad}NzQE6D7s&{|AhDVLoEfA7?Qd!8C9pE++`3S>})!$wHWK9-!jU_hL zDnY6f)bYP2T`gUI-Y6tUKMaZsI*)lZsRQ%4Pisa^9e$3#(0eZOMruiPid~fxcIo%= zC;-mg6)3kRUjlaVSN&?loy!hb{pi8Q=qw)Pn9oAI6ZtjYx5U^wPVt=zpoUxgS=o?9 z*)0H}Bms3macm6^D{FA`d+iag$T$UbTkqoT1&E+n>Ou-~xOw8-ON4R+XKgPf>lrxZ zc<^vT+i|xZV+Atr=){fh#586ZQhmx*By?}VXD~X5FfCA# zKR1q~Ua07EP*r4-`AMt5!WF@bQk4p@@<1yU5!NbRb*rz2ltYGWhBf2?$E5C`!}RPo zeXk8`@6dQeotDf_R)UPGB(@1yd4I8*<@P5@qJX3bBl+XIvh`h!i-2;=|>bWq>ohGbTcZTKWqm$%g=- zVoGViwLpvQ05GX}*WjTpVK~y<kyFD2%mbEEZhki^**Lb2IVB>K#$Zu5F` zkS#KO*g)!)VmwC2{8+^8c^*++PsVwhwc!_sZ`V~Behtv8SjS$l3R_n-R9XTO zj&f5rA;yLE@v4nrz`xsnc4cu*wqw_2)sCe|aotAgz|fY8@J+iiPMO$^7{Qja<=AyZ ziK^+vqPwPiuEOETnr$v|tdH!!loTpGt+Zng*hXJ1BX)0cz?d)vT@Yz$;lF57zBl_E zIrpQwjYP)a%)#xa!iMVex}21Up;@^n>s@A~>~ z_m#oy>`JF{mFYY0g905~o_xnta*e`X24Y!s#2JB~Aj>#3ve0oP+}D}MKiEYs znwoyoC#0^Plui{}biqrUV@Sr>;1NOEE@aK)A{#VOm`F8ZlC>lb#YpQb`T=SpauNG3 z1g}$L^XSzMiHJUn6p(R~JE49F^BddUK9bt9=+om+V4>OprK55EC;a)QZ~cm}6m;yx z(&)P1L8Ip&cYx`r0lRU{=@5Wc3zTjc?`*QP(-MmmTf7(^>$j! z=xK3Xcbt{p)U25+lmf~1MZNksdtS9Uh@{K_`c3o9r%)DT# zSSMfP{9Y9oLy6vbFs3^}+dW6G1 zKF56jOn9_8a?bjhd1t9wgZVlr%2WzF(jTrb*SU1sY@XMB1|_9uk*t}(zYoZQTke&# z$Uq5Yxhb-P93j$yazH;(SvM@FbWZ~!@Rkk@?Nr%ZTh!!NJ_ggS!<@Y_1xvmje3@JO z42oiXolUWfs+Zi{!bpdkSud0uUVswe5W5TJj!JE*NP%GTYg|I%-WA=WRO1Pu1kP$cj8A zeeO>Gt?8q2pr=0jwDj6y*KS^T=B#8lWcM18YU1=;|HdzPl3#a9 zi(~=G6g$Cr`?bP3>h|`vggIyl?enC$^M}mFP3SfJO30-|TOs4RkDL6yA8P8895SOy z2s&T|5Or#OexX#HimEW;$O=X4j||=LWQqNFf859^<}wF4C&?ARGtCL&pvyw31)@E( zKc@ZrSEhoy8HHUHiLTR!D%fWc!}WLMF#?RWG3&*g7-=~xXy*LQB}(x~Ej}2!8djcj zZ=l&Mn@ZZqKtVIvG-zDQm~;s20c&f45R12^h(Dyw{r1o&(HX+>#J-9f!pE| zZpTsuM0*Unl0Mn_6mZziF4@zN*mYoBCW->&@BRo=9Pk`0CRmBi(4# z#4lS@j#R_GNH`h{;eTL= z+gbr~ps47WHL>N~9Z4 zCRnSEYD?T3Bi*@)K9G4D&ncmzs^le59MmP%+AT1VIw~a=RX+(bsCB!7j}5*G4e##l zNii$-b%hRvR@&*UfDFuBtpT5wOW znbQ`83QNGKP1~m@cBc1y)sWZWE8GU5O2GiwZg5m9Fe!h8q_I+&PPaRhy}jpcpLr#D zpFWzxi!Kw{t{sTkG~G^Gw&}NyR-@Y0j>ZeEUFl2HYgs4Bi~3%FR^X65=o)6b(v>km zy)2u25py|cRdF`<;S;r|dhrNl-z~h8ssi5vcjYeqeQW{CgfqTFa~>XC?9(b2`EBmH zf=7t?tXqmN@eN!7HYoFjK0TDuu6GIiD!vka z5J&Y>K~#EqE^eBF`s@il`qgwk>Xs%+3JH67)B$%<6`>R1G&&kPG8b8TPd3=wbu}M0Fm`wLFY>3;)c&{?bLzV6UL-TZ?M!$hDJVS?UPdN_gGY@J>Js_>sD2fMEJ~p?Z|t!|A9mDwe2($M?tiHL8Tk2|uj56$kDy^4k(+j>$#^=b~ODydnW|(Ya zQ1)q8F{LBA_Zo9s>q6^5Qkyks8F@A=8%#gob#a1a5ZAzW0t zo{3Fb_Cr-ZUMUhoX-c9N;}04)9IN;ljhgcJVR}qYI<9EVTzazed|Rm2ME=DMWP^%Z z%$@69AH{Fu&J8G9podzWE41uy0wgY|ps*G_<0-<>Ch{;sPFG7`6oV+fZgec}dvm}l zf>Oa3ZHYGo@#RGmF|?C9`NYtPAk=$PF(Z{PlM<}moOqw}`Vuaye`v^7XmAPUP{{ny z^ca^*r$cfi!;JLS!+r;e3{n;+p*z+57K~4qMstSj)U9HO)oOk>8AlUB98I@PIbVbF zRTI#~I#z#DzC{Q6XgWf1pkmYEuL6_4%)4F)>rSYfiV@pXDeWQ8@m!@?U##*`u|TZB zd>fC&CGkEonEJFVyEeEv6+FNQuQBioU@(=Gk;w>1j6K?T#G_`+wm;p52-^DPMb{D6 z?W9;UXz*!(y!p9W2jWTWC*C!Jf|5%~I_}%<+!@oAFEEshn3EUM#$T9zwBKY<)N(Tj zQy-MlaJkm?@o@=%G3&AXf~w8(>gAnC>h_oKV0#8GD+|6!_Lj4xW*oVyhI4m7uXL52 zL_w#|)?>YIa8a-8N~OY?Dx1PbWCnzSY{Q~c&RKnIl&RtD2^5?cIHd5bN#N<*SJpOxN$`OM)9Wq2~@D!HvbJERKzIBJNs9>6?VerVeb zj?M-RyPeb$$EK27q-T#fBWbAwpTR%dAiI2TJd^fxOeZdMo&k9BhLiuqjfOO}x@4N@ zC^R17#P^Tnv2;Po(g_!Bqh<(+8HK5qHdzY;pII;mB5M>dy{+zQcW6@XpdO)O88o^N zluK0*wTL7gh&PZOrjc@NR21yyz!mKBu>IX3#0Ij1t3$`T<9sGJVaX5(h86Qm-AW*$ z@xlgUaZ=d4%Aj&}T}jOp7tUPE9`h)y5YT((BE%e&S0VLq8I(ggDgdY%)-73l>B4bG zIhR`T<4m#~N<0uyW1qQ*L)p;Eiexr2Vi+FFr#C=WM;w*&1Cfxb{-V{A^|6+7Nz`4* z&y4oeE7e+_)DTW6U37L?q#65+-}lSk-)Ui5aX%>r>j+a8l$76(n&mKFdLnYfz)6sV z`|5OOl(b)nw!I6Tyx=U!F97oDuYQ8BTr=2;VL;4Q^0AnrZom`Mjh4!8dVR!HWR3F^z8%sbLcbe zhS9#`jkxD`XdvW3zf36Radv+`pOB9Mwul@@`|`)R47034BJfgljK-e7#7QcBT@s*m zl{P@ws5+m;1^u2Ni?!fUj%;_qBT8uXcOJuSvKEI>eb#O|RW^pyand)uZp0T)0L5<36cxWmP(6M1(ixQCk=bBm78wVI846hY`ugfSbdX?93`u31 zMVuN>p|Z}ka`*}biI3nz)Z1`*i{7C%QzGzh5XM*w8Yu2PKTf>CT6`a_i%RDIjWdxs zYcR=5JWI3Qgp!39^m&RPX6xq_JN{)+pq27lx&F=DoFUI4UySr)FWQFUB0dZ(@r|!LL#%-X3A!m{5V`%OCWo6Ge>7;l(3CiswX@Hgje^s~2vK0FQYT&`= zI@g78?c1q)^Dd;k2mCVI(RzSXQ@~;89@-KeaRNE_rN+yZTuuRl zO24O&Ky)yysnPl7<~j*{f3q96Y9TR>wfYX@?bAo&jot^Lu^6Md*AyqKM=U zjC4rWH29b2&lS-4eGR~ln=;)3dPQUSuq`TGC2aFM=;VJYxrHWVE4SG+S@qDBN8Qc2 z-wbze3B`Xmig1mV=6Wm%2&LEO$t2z3zyAY-NOJAbt<>O~|1$5Knj{j6a?y@>-!r!y-K)zbq{>Cz%qi zO`|iE}xt2>| zW`6U&=j^lhbH4X16g2I^5FmDL@(IMd1~?yod-7a~RVk2wIC!+jw}^ONZLk422`#6v zrXYSp&(xAcC9}GLt63N5?w+40Bw&J{Ej(VK)|5@Az<6jtq$sM%A?fCuhIR59xUmX1 zhZ-hAIw5LcJlF@Gkw&v zC`G(}KSIqia8s#YUxEIG#ZUqU5yTAQ84MzAi~rq0T!?4t#y_%gaCC2Jq_WhA=NP`t zXNm&dZKGn(MlSuRZkn1x7YQ&4d2+B-*r%tikQ!5@)27n{DYpI3cT7rqD7@ww$aYEk zL2#PEhhIK#0l*oGGbR&tAMqq6G(B;;)ICCGfEi&|SZnHyM5ZG`5vCBNQpwO*YCqGn;z zt#))Wqu5Z9_Yk8ge?%MKP$@&SI%Dcy>3iWCZ!gVXSyR=8uD+~$01+6T@KliMJ!CZOcq=Bw&D(^h{^g5XN@YGTS@s(@VrJB zI#AJipK{(Qn#(K%0SHEbaVbZkjZlUZs zDp=5Qug2u+fFs1e8xV`URVMxy@=0Wm5XP_ER^LXaI&~+kpCCC{{AcZd4^t4@1|O;6 zQT6YZd4EtMFsVIOHn*VRIEz6t<@mhn{(Ida@i!U?WwvSR44uAV zt8p=fV)uC}zrS5eZQh}WQqsT-2ojmbJq$hqvsfd?vLSAMef!QU@7)d*t9J*t^DH|{ z)7+0z|4xjeq(Et>JVwS6`v^>;^&xqk$iSSDr2j}w;d>m`82Aag-9W=1lO^Fd(y}7b z`4CeL!_iV~x%aV;saV;oG#;eMz3|e~ULr1+sNXpeMEA;H?m2$ah=gVV9F3VFZ#K4o zww)vnY>=2SDigPS2Ez;yRv!EU8HCJOLrL@)Eq!E<(cEuDNqgU6lM9)P-=7!XU5t=| zu9FOFuo_f{KHJX%#n?6ljIjy#giG1^`_!UONHHnSK3>udV5o==Z|rcD9(ewBj>=S- zgC3fGKsHylB}D(d_PvifMNmp`xg!;*bF8YbrTxVX|ps8N#FLhzF2qlEFg;#F3GaN zrNoaY2SP+N*3y@^wYPgjP)+@$;l1EfnuZ?wY*h9WQ|4CysTYB>_ogvu;4$!+9;aY! zY}Uww=;RW5H?T5Qk;W;Go3{vu6WVv}YsB0T~lkaI!urPVEbz$l^ z?k7`YVFPuVNno-PmK@TpC4-Qi#ynyd_EK+MaI6nw+ipo$8h>wK+f2B&n71xFRby2e zx-#dzGU5AIU%t46kG+3#!SCIgmS5dzK=<0cxSu?o9}b@$sUPRb#QG6tT;(Ikqpaba zNAFf-Zs>Vp+NFc{Ak3|LZdUyYiqS)*zwCgQsSv4COUQ|2#13`qX+QBXg+};jECX+F zbCV@+!GHNU@%Y%mtVps3osv3F5AnM%XSHdFEj0Xrcd_4;laR>JrMk{%zin%t>dh_T zXjke_8LWce%m?C9B=67X0lAiIZ-sWs4E87SuUflTrFT?nIeF`XPtvR9Rh;@HU{aa6 zJ_YtQ5mIK!myd4K+G&PGEVlt4m?zQeyIRMiFiBC%;I;g>t||3#nZ9LpFvq*a$;H2mewlwufO5$M}1{_U3V#>?MB4>0VaS?b3pji zc6c4raB1w{s?Uk(DS`IPgM8YM%l<-Jq$(68hlA?q7bMjP_^(||HA=DUWURdUZ7&zw z22Qq)FdZoo8Y|w{P)V4<4?7`s2RjDe_m+Rnd3S3k+zA?H25t7xD?kI|A6@&x%T|3s zVXcy~Nrvvyy5Igg406Fj; zGgZwIEMpB`dn?rW@aV55t=*k$I+|OcZt$;gUxyWwet8VNH4U$3gkfQ2tn$PvFJiHx zXmMa!NcOT1Ajn%IF=0YO2ei$YLEF23!ytA?8DF+@BiRT!?e+#vFmR8z&HqhFgFtDX zV?(@auPxM>fY@RRYL@KEtS|Qq^+SP;d=5XFkhl>r*(N2iS0W|{K?L5;f5BU0DUoN+ zCg}ue(Lh{MWMP;s`DcQsGV*CiT{c|$R=yzNCwfB+j^W`u?elv$~>n{fSz z*Vut!g-3=aMkV~Hs}Vh*kaI7g zzH$Z}h3z*MB>`qzDhm6u*b|gW$A-Tvg ziHF}7Ohpns)advTP2JtM#R#D3V+l$$GPytpcmN$Ql$y+$z67_(*!}NJ50fbrO$P4h zHM_ibm=^F;gVHGAeORjYLMFGD9lW)322; zIbwR@G;=F(oB{J^R4xs-d9R^%dn!L3Yg_S0E4Fd=BvCxW<*!wS(hx-epkx7HL>X1O z68qskTFg`{g%i(b;;G>_L!B-?lbIw&7l0AVl<`%(6i)R6SY@ZfU}C^y@u+W&GRiZi z+MkEB`7q~;IniEyiTf06%gN0sSS*2X)f%NAeK(TtpJzLThzT-)n(h0eqhX;MRSz60$He zdc)hqoo2UdxI+0BRB|L?uozPyARY4UXmTQ*z@?_C^^Q@@C9gb9z8xJ{zn{Z}Bb!x? zn5_XW7enQ6Ycz)V`BD^zRu3~p$Fy*k5l#TTw+T|DP0k7c@$&T7ehB{}Zpt8ggs1kT zgR1t7WKCJpR!wAH-*V2VM&cC)?^EhT_HVv-9D^k>2~0j7W2I$3F{!Wc|}K%<=#!#^1YrHxDP86sQKtF565c%g3PaEn%wU^z<1CxPw7BL zk*fLA)cOMP;0z?V-*d*XI0!#j00r(i1|7G%?F|?cL@b=hN6^x5;j-#O<0Tln(E@0x z)uhP${^gC4$xtV4e~gZdnSgyZrZHRtjIhQq4uomF&3(>l(^mzYq~1UgZkE|)2?H0* ztat;)toi8R+ae~f8~Z5AldfejzWJg^24_x|SvJU%#D9N5=7e}BIg%3z7(bUm5j%p3 z3*6wEK4sV?qU7vxikLstmA?LS5LO7VbRX`Bo-w=a00tj(08gsDPbN#z!Fm`f#zBhL z zLVK&;wz3LRlJ2;%~Kv#x^ zlm4NTxg=;`=JGN>Of1(<1X6PZp31MM*hI-dFPbMsfzI;V1E#}?iWV>*lK8O&ld%#e zXO!`&c(RrvMS^&P!CV>VliuUDvU{@dXYsVR%j3qB?x5nT)| zfF-E;H6Okg`@!xbF5^cKmWR|ta6JUH;l^n7S~W`IYz&f1(4qyM$%$bOZykjlAAuk4 z1CqrjM8eLF%K79)bK-r-Y>^eYzD)xLcK&H03`xjZ@r~OjUZkEywg{$?mIWfC|DFC# zCHY9#m_$b7Nv*E9w)W5}RR%aG8cL&TfDh-JYA{PL_dmvm*aI6P{E8&f1q06m55${M zn5Mksd>s&$QHdT*N-?`ABN%JIwI-{hZ_*@E_XkME#Oet~9?%x5*A&0UT;ZYJoKmwt zeYOG-@6W3R%qrrZOq37gzUlD;rBSP+;BT**i1bHwfgTG(H=H#V_Tw*%XrRm7m{>aP z%lb6g6b$nP8>l_2sOYaJmUazXP_zr6v-DU}geS@gUY(tkkgriKIDZ3=mqxglIe zQ!FB{M;0~64AGbkC$T${d%SN|Sd5MYYU;Pe!f-(t}|)&I-5U7=-P@c`lKE z6pJxKyx(oUlhy3SsR7`7yV_RjK&VQ8VmrT)?_;9;XWk76I`4Q@tp&FmgFpHVei}3%*QEhIeEhZsCPmgQ}kghe4WagnrH-r`0yBs z8x6BjG|Q~xWX+b+C%!(129VO9P$K_4{=3972HA?mX^9TNl^gNivvH8lG<%tbSMV4^ z=Nvdf-K^|RmlTAV2e;Wp#9t}w^^qTBVE`9Ya^LK*bv{v<5O0Z z*-D+<`E$ySu|2`H_vvsm%{A`~cPqgU`iLLmU&leu>G4VAm@*%M(M%LY51DyqJausx{Br|LWAomcw@Zd6JZEhcE zhcdfUpz z^#1>NjxaZfRjACmYTi@LPC?CW2PM6EVrDi$;dfig(GA#rlXE2A9q3R+m-bT9c1BDD z{MU|;H_&^&5{U)GaV)t$|3=9?&ckur?871`RQ)p&n0h>lmdO>5{tG5jvF;bIzZ<$d^iMj%P1Si_Itchd|yYhNV zPH+7vV@2kW>9tC&O5JmAVJr2cS6lz{0&FlsiD?j_s>!;Z~8J$U@C7VT<~ z+HKlvR#}gQhw+4(G=};}#q%1s!^fO*ZYzB;5jD0}MO%5h$5+axczBcVb`QYCD!3g> zPFO2Y+yQ{hbCcVM==i(as)gyX-0I2bow<>pjDVEI?=Z*C4$vK4PoDBa66vu+BaB2* z^nB{p1_ZI1n!23Q98@FT8}y>8asO@cKsggnhiyzI=wblByuaM2$!(3pkFX)v950mc z*tBfKo*^LSHk9U&O&@)pq)Xot`lIcs-zG^iw`OIyJ-<8k(7=ATC5zbeG6%Kk6%=bV z()_HwM+5hO01CYb*Ya$iDq$i1E!f^ho*eNT+@QcAvBB09|9iiu<7bDbk$w?TL}=DT zgio|MF^$N1ylz56HGqssPDyJfasBDv{oB_`V@sz|r6gDudibr-DVT%q%tkRlQ4ta& z78%2$^SX^7K~0;QU#fx;FUH9GPzL0ay1P~oxp0XX87Ve|Y-_O8F)b|hkSqgKGD~Mu88T$Vb5p>?ln~oEXNM@f4M&czsx{nm;ubgThw5s)8aL5#W z1~Zyv9F8MDmsQfnf>1ypZtXA&Xc&_fO~48=I$ zMMez@Y|AYF0>{VKsb(1ERqa-KD7Fap5vr!1>5q!cA*c}M7ekDp)vQ)<)%HuO!7a?A zmc{yjB$)oKemYx#6Ge4Ij}&@1CMc1LpwA9KU|aCZQEASfC=74F4wIB3u=i`|{=lL& zUun5A>`pmwynsdN1dK2i-=Ee9w(U(jFsw!8!S+3n%#{^;Fv6%Qt8bpKZ$egMv7Usi zcOFmGyQlxvx=qwUvtDxi%;mUu9lh&iJ+u2g_DXLVT{y~{W0oII@*&gKs z?47%;+?E>z#E!Z*qO_x$`pKURxRASbR0!W7AihsGe&)N3P{t#B?qsi&?d}L&!ZQqf zoBIuw{D|R5#yuT_Oo9izmE?VT=C=^I`|9&^9`;^8jy{gXKFB0&sJ`OcIvn|?bd<9v z8?G?ni);7-aKmUrbKDd(1$q_mV^rYOmZ>XdLI%0PHybg zhMWkiZSyHK2V#xE(0|~lu38^Y1xxFO(5G5sHizfYnfLdsIJng&hS#w*4mjG}dhuTp z|GNt^DSDnKS(aj`ZM(0wvp0UNl&!u&t2P=So#nKXo4; zWL<{G;UT_nk3RHa+t{hOrPT1fKWrd_^_#zWOOx2-DXUsci96Rg_~}?|<4=&KXM+IO zVPCC@t29t$=wo-7_^c;`jG=DzQ$!PP7|OU91_pd|xz_&qjG|7OdAGhgvP2AYb9REB z6cO~$TsZ4`S(s$eE{DM7!c(_5XAbOhsamK)^Q31isW-v( zwwFJCr4{Z&hIqDziu3lH`a6`WY|&h9?i3z%MLxBU3Op}tW_-0{_Mp2_#wMM$KA2Np zG8?*PWt}|%(2GbIB>fSWy;E+i?Pfmy#D0-Zosbg&HLnfH9?5_F5kMqQBBf&mS$*Bd zdLg7qSWaw750c3;zGC3-x1MFRJ}0Kr7p$0ziQ_Z8ZNhf0a`YKSL>XQmj06= z0~9bfjw#qpoouQuzI5GXoP1#rjL|VPxF07@X=wRY2=$CD#JBrz~oe;B@ zMmrzk@<&g3X|oUTE1(}tK2PIpskKDJRhan|3$giSJS(a%gSBF~ zLZB?^IY}aWF?;uNU`4;QPn2U`Nykry&ApKs)Km&0wc$i|BIy8%^6T53-8OHVr_LcVue{#k3 zmok4yU@Y*NKyLV&B;k&7tx=p zK>UDCSr82?&rir_n=#MBJ(PlQ6qC*26I&Sa9S)30BC8v|Yw%Oj2yz`Y9FG2e=O$=y zPOr$MSf_~p2LStrZWjHyz{|%n7{I4=BZHh`M@IM~$SA8k%DlhyBCr_6YN955bzX)} zJ$%2d$w>i53K=6ts$|>Q=7B+El6)w0g@U@14@-`HkONPFo25X?RzE+)BC~~Qj7rpgLSg6>p5!v z>*OBR{PE-c>0c=Ca7vKMigP<;=cnAq-bu`nAAsEeD6$)qi zltIG)bLe5_RZDu4M~}SCwgiakCZto?nqTdT4dNBwhl^GM_)&&cvGq0at+zc)7W;qz z_PI1Y(SNTZYof;r4tuLW!O0N*49%g}Cj`KlP9w}{0{ANko=Y}`5e45ZwV?yE$2Sc# zpZ482mxljp7>OCZ@p9@}ZMcheG{`Q&S7YRWb@}>`elA1drC%iuch6Ybf=RsyLt80K zc6P)5lpxm^N_Hdl|NC67p&Tz<4aN~qW8jIAAoM>ONamFFd{Vh++9aNGitkx%UU&h@ z7;p3oypKD)bslts%-7M-)EhSmns{mLse7HN^nmGx>it=(2^{$5MPoMum|}h@j-D=p zGW_9y-@8t3aE|)p2}^Jt`1eH<`YWrZ@>4VMs;wV7q*wl@f5DWPi3HfS73mID8)1`9ZY?n01W zcG?LRS*&V?s)zRXfNwOrJ-MDBQJ*fWqStsZT%?UVzW{0K#&Nr?ngWg5<6tFJpf-F= zGZ+WFH&=_zNT;~5`y^RwdEIrp+L#EIe;_O^#_bDx*pNIjj5AMWJ#53a@3UBRqq)FSafsK2o2@D*ZY3;G3B|6MV8-DEqneMC`tl z38JPLk$YE5!NAk5XoFOEMJ#n~Y40;K=lw?HaT3AS{m=;!X3vHQz}1YEqmzJUv1vPc zvuufsaM9=a&YG->U8gAJj#2*ZNB>GN^w?8$Hhl16w(Ic@rb`8{LLLu8qeZ8#cKGou zI)2LsG=32v!R3}+!2t)2YRNg*I?-hTrdIv-XjGt{Mz3V%;}u6wvl5=7?0R1`aPh+i zPxA}`C^zZ2M2=X^KmD)fvKQ+qhiiPndkmo9)mu!@D=B04VU_K^k|vi_XUWl%RK&@SNWH19X9QgSzoo}3$x*w$RzSCZ59Ycq9upnMZrk%;w*K|tRvd@m zoVHvw<%AHWV12U)c!)vv=cF!zNY~5Y5)N{NpkHeha9W9EtYayUDvTX}S#` z8)MWsjAqE;&W24jT-7jn$n5uuiYD9q@2kvuok0L*8-Gf1y|)PRyd=&QW-psx+#yoI z?1{i2MRkysa1|4hH6wN%`UpUeXS!~9TRN}^P@eY)IiM8l>+gb2Z!PwEIQ_4c!=X3> z4#!vLuu#iAC$V~N>q^i@o7Pw$j7gn`sL z2BJC2npl+9{e6VYP(paS>?diHr7R`*fE>;jh&aaPD};6Z>gmhHefR

z_<+YW0QMj`)sK?}iU5^Ty$eltEF`(< zwqY;+&n05eBC}tp>G&%?I!wa8`v44u{UDmYZeXDP1dy@R0#Fz4Kc4~7fC9%k7K;`M zc*r6hPhytlF|=Td)(7{Of+m7HX*haa?ZL>=KiQkKb6PWn0n9ymg*Grtr1)0{>A-03 z&CXMx2X?@8J!`H{fWg$VGB6KKFxT50Ua*59%Poxn2A9QT5ojD^w;h&6(hF#?pek1B z^C=S8y;Zj0&NQ-NHiV>UO{_8HTKOdK+*zZmRQ4~;@c?*liO+)?{HX>lP8zrLc-8{S z0blwMEEM~iP*PI%;={j0jA{&4)_tdI@2787CGNa73V;aHV0Mg^;ZVdLW7Zz9BK%tp zZo`YSEik*ha>lKJ4DT6-*|B3zE=w1WI>YQ8^1Ljlb(Ga%_zGD1o3ZCcKvQ*)ON}DC zjedz)-S;4du+sy007{G|Q!%qS%oHxWy%`wO<`4KM@&EoNjwkH;1PldUF=?EW$OH_M z*|azNRxAml17>4c5W`Sk=+IpE)p1fj;&B~@Wt%VIVH(4WaX4C)k)C1?tJL{~&~0OQ z1vQqfbvGU5yq0?&StqXh!sVyp98ULOE#!uIg_MB1!qc=WdIaFoWfBhtW-I`+ju4x{ zT~{|((A@A&|7SDcHAHjcz~u@x8ph5H1q184F5GvuV)Cyr?nb2i;elZauo)GCU-m<0 zf_E|=G2JYlI5uGnp-bZs5aI1-lqhr-J043(Ej}`O8K=x6k0M)$63!rZCinx~Xb2K# z?hO|uvo3{B?XQF zclbGM6N6@b`OC^qK=1+5$My!n`hOzQ>yCYQn@*J-O?o=6th}+Z+4{0`yNiw?11!9zh zfa%LaJ=?>6%%d!Z+1zCE^Z_6|$An94NPKm?4Ohg7Ho@xffPttY3f@%7rVG=dTGKc-`Kzc1o)A3r~dv&0v@tAd` zy+y|>&CrQu8FNTU-Vnyg61CJ1m2O;7Ib_fFmvKXO~tN_=Pg)A(J~k!mgNu;QChp|QV?2ePG=)lKzb!_khW zUJ#OGxA8m*Uwm$k$V5#;5j$0yWQKGn7Ch=|bo??bk&zPH+F?l8g@zYZD-a7@2*HQw4-Lh~oxlO@}1dhoxORGm8)gAy7 zd#LY^aj{8~MLGW|EuNkz?BF%YzfQy7Xm)5Ms_WZa?%5^Erawvv{c|BBYt#o(wFhvg z9l9fXd81L09Dg6sod-#12qP`hWBtLKH_gu{ELIsw1tEY~R2fF1a>3x}L)a!*|A?OB z;f57RJ=~w9w!+2J(~-f3aMdPTISm5~@_zP>YE@*;0B6Ns^*0mHFB;b)&MkL7Jx{Y; zcDP}r(_66&+~mie2;znDGk{dTy2U~QHxwIxlJ3#l5SsuN*vZVAYf`OORzQy)GTdQv zTKDXeK2eOyz@X@_j)2kRwC&M4!?9O?3jK)rhhGf*%)0IQSa^){0A%un(Sl!y4NY|{ z%;*6^r+p-1Cd1*32%~cwni{4C{Qs_;O;8S(f%xK%-!d>pszq3Z&Ft6Xdf}NPe^G@N{ZWB11e3yQ{)$j>) z3J02b)uv2iU_00X*p#>Yh2zZ5>#readJvBoEAg-K?7KGG0b@ox{0%PMHr3~xk^zcGK7IV>`L4xBs@i3x?A7jhZ`YH6Z=eIy{IK^;;0bk& z%eF0VJqbAWdX6%2;W$uMmjnAlyK!kq1k~tVbGj(1ex3gTU&@_?n{3nnx76`g4p$>Y zv5+YrX(`Q~zD>a)&JVN#DXs~X zoN<^P1>O1d3f8v-#uaXw4JZdY6H6|_IEnbFTvU?%IWm1R?mb@cj@t!0jrpAWjIk0{ z+lA|$7f@rQ)H7TN;QlnuEy#RjYo!toX?Q&f~{1?^=|j zWVbMEB2tOJO}KmLdHdg1GEsC zL4#qGcEg3|Oy97*i3DaWJehRrM1=1;+84Gl#!=pMwwsfSgElK_jTfbUtlAS zfd}O<&WB}23O1J@id6|Ec9`$Q#Sw}hhZcA$4~Tq8F={ZFeRJRP6igLk_f21;$v)e7 zK8j@gg2RPViTA@%x!{%f&0Pv3YhRXZ??{MBT}v<+Io~l`YEbWS#f_xuOFCKR$r70D zWR(woYfC^06X%%w&b`w#{*wbu9UO&x(NHYx5Pg|*0IU6_t!{xPt0P}Bul*Lyvjb1? zc;m~LxVKC^nBw8wSW9a9`fJcRNUS(sN42@gQar)x?NgEN@ocgTFTk0KAjpz~1rQ!` zyk6#vl1*NdCLc1qN{*w<$`ZDZ)mP%tIP~ode)(IHoaI;{|0g8mw%v+-1gCSr_d_3I z(X-^-IJy#z1cwMlQ{Y3QHqaI%$*E+C%92|*sGBmcEHWzj54;lWJR!o_TNhO*&l~_= zm(`_@Up<@k7G+COzE!`(1gG*n%4|}MFv+A#KSgz6c47p3i-;nufjblgdM;&noKhKk zkHe;E19Z)t)0SuX^|b?4yi`*0V6?`b#ZiWNgMv!uBOL2m5g)>C9tY7~gnQ%x=$+OI`y_j@57`?_iayiz1F_cZ^vX z6uah^)fy;VE>z}z#=H$z9iu%%G`(3aZqRd(m7Be>{*6~I=C31(JN!u45q>J-#)%M= zNcY4!8RC~R{UvAn3{6HiYFt|Vh|MHK>E`ejCn$;Ut=LKj%N#vd{Ma`ZS-L>g<}SPU z#12AQW(HZ)B`G@st2S=?%pzUvZbgg6#zkk4Z8jC%RO4Ne9uI)FF}`$jF$=vx&NO>z z6>Gwf!*zdyGf_uIo{f&TX8o_}gT%0}#Ec}!uxST7szIkrt;&D38S)M!z~!Vayajl; zgP{%feYXUOQDE1@rM2z1OA1zRvD)OZ>}Uv<&`v! zY&WCUQ5AB7oOr@Bl%sctiGthHT`76_vQIY0+VSf^`NKU9UzS?V%@L(vigjxAiR7F4 zU<&jLap6s*ef`YLWlhx6SY-}-GaYVEe8X%h#ccI&MZ*tZDzG_!|9a)Z8U99w4A-%? zeVw@Yrss!e#;*47T^_uF=CJUl3`y!AZ3(Ldn-vN86`@nLIXl*$sARC3hTa+#eWY24 zu8f2z_NM<{=II}cq{sU^Boq}RM;zSeD+;#kjLDqw*hR@IuVjp^ zannzr-*Lduy<@1rUR`GFzOf>LfG)+I*!7$DSe*YfO>zn}Ul+=_EqGMjJ!W%0jmmXo z(VKwFJa}pehUKH&JsoUKDwDaRj!)O=0))hd8}z6RE#{IP?%vH{#x9&3I=XZ&)cV;q z>;Bl&CjY3q##?Wd%}SwR_l`vB^1iG*Q#!Ni8$5ny50~2@#W+4V^~@|jYbv>hCtAG@ z&i-cExjFuQw=~}Nrdf~c|GWT;FodQvA@d9e0+4}M{yC?4rY+};W#%qCXahyZ#tZ`s z9#sIy?76WgaUyBM1R;I}Lzw1M*H1ZiA=vz`!%f@6zHxpeaMBC(pNM%psvMfIDN9dW zIzNhC`gn61#Uk=bic@|iCWXSb3KhJho6+xh2U&9InxaI?_v2sGMqPuAGoDx^ytUz+ zo3UwYV`U3@%fh;3j7lTCyj0cV>G(~|cEz;8l;=&KH+m+dpg#QND> z>?hp@NM*VjdLh)X+IMENV?t>?}ouZS@AzTg^eGbY0{Ij<0^lD8Ayf!%vmOe);;y zqw}27?j(8;GRp4sL(qytCLmX!j}wdY5g_yh4JsGmyoT+NOeGO&LX-LWW8ZIShS_01 zR4NeXhpqp%v>+l5GDh#6ePZL^X$xi)maMcO0nQ6JC9!0fS^8IAMs1wnoyguQcDNgg z=sek=Kef4NScIIf5{K$#o}$d)rY#R`fD#oEj({f~D@qI#R@A3gO0c(g4v%sor~sXj z+!bdq-x(`&m6CH_lA4iG(RYH{ZIV?Ku%WVfo7)XF>sv0d zA}s+4H0`eGd*%rX%VQs>nf)Kw#0z&+1#os}EKFIXSe(mG@BEti&)y|(m2hp!&Jz)B zK3cjFnL=a$?+qSdm0@2J=X)rZK*8^`Wn`v&3BEm!Y4a>PJRKf5ePUnn!}i85aN!PY-7%C43BgZ97jY!OuHnt z+Mf5|oCX}Sl|dxdac#I^-ooNlFc#; z^9n1V8Z?&kfACqqqQ`5}Tfd>Jf*m#U%2d&xW-ZF_RcK}7Q;^AE!JkMOf3JCMV}a|- zXGk5;+Y@jS8Br5kCi&Q&!6P~FWiazj>_tPG=|`SibEM?Ulx?2(u?yql!oTo@Sa@mL zj{To}FC$wSOI`T@NPj={oj0pwlZDM=);XWX`Ojf5M_ht1(53`Tdsoh3tv2RBWxl>_ zhz|k;9Zeh@&90G%;oWdG{86J#_*o*)%~gl0xG#kGrQVA@j+CRkd6aBtHH{xg0zJ}G zBU{yl$5Awf$)qCMk-tHMnME_cCCJLSn!FemEH4OLJ8}Hl$Oq|Mtj4HM1o2d(@xUoP zcW|f@4bkI$FUzhRwHQXXX#CTzPRFc!_0f_KdxKWqSQyt`+taTP6-rW-YL>O}*Lg?d zeN2p%|ESbLPsvXHfbMr-$iSj8gs8D~?^=$MZ09kl; z{~cUqK3$_$@t^LyBgw|>qFAsyWWPdA7}*qoqU&m@=0298-s&K2-r0+kezt{Moa0Ytpt}<)|3#>7*FLk7{$hs|D|KVA-rc+56%Z1lLy? zs)c7MpTqH$E(ANa&qOHZz&;Dgbe0NEau#VX5ufNu;WSIf6bY6@@)w;B_~!wkiisc8 z8>Uz)h~U_0`gl@FxjBxgM`9B3E3QMRbn%LAOKs_HR~yDwpYA-LCU4F5z((wqD56ae z=Y;<*&tN0(jnP+c#KY$h+{t>wzFjKD$0)9QRwLI}}48oVP%TZ76 zTLo%jb&;$ixekanMUS8LEcKZ^Hl|D`NT=&ehppiWOeArXlu;ZDWf9{G6tB1c`Ys?O zYUqg`{0emJ&Z$UiBKMZU41*8rLXNo? z;viScdE8V!s$D0Xt(~46Agr^Z=))~0QIH~vqRZPC z>vqi0cUQexIG@>$T^2uDhDtXG;jbQC6U)QOf)DvhZbw+8ZZYs{y|i6pNZ>?F!N0b) zuP?By!(GPAx!K8|yKvoGaFU`qma6cAaiVS4)gtNfeT=58IiNmxL==vjPnI`t=U7>z zxbq{fDB?VgSv5(bGL_@Wj}bL5{s1d*5I*$=L6vqgwYq}X%V<`GxJ4;-_TTe9LV9vk z!$QWdFCaNqtqzMFFJ=@lG$utKO2w`_iQK#~iSvqBuVMU+s0}Aq76m*MOT|kVJPGTB z*VM$spS~iJXS~hpH`YeP32(m2eiW8Sswa7ZJVh}v#Ae=B)z09Ofg+#f z6Ny**X0mx7DUHTC0wCRjdY`+MhPVAxdsfN;-ex(2LfIyoE**b5GnPa|%dN`;>1o3( zBsedr%=5L)z`fyX|5zT18vfia6%u7Tp*Z&u?0~d2B}vHTLg2Xlk^deD3_BEZIOx%u zE{eM+1K%mN^~nQrv$PZG>8qXqt@l`4TT=KXj&h(n^JK;{k2mmINgKvxQdNkovB#~( zu`Y5LIL`dclX^yGD42k?B!s#d1E-_wOVv}6WSyfhzCnPER{Z=(tJW!-*jgHgCfwL9 zF_RDd_!lS>hvxCEGhT$~RGQ2gkff%wop}K>44P~a7d$P-MA$yZBJp%{2K>?G3PPh= zC=~j8{>x{hPUR8ZHB_b5w{Qe4YK$Y>c?o;_Fzfw}ta;uOHsKH60x9ZaSW3+h{g**~ z6vLWrq(uSEuM7OjyCU%H(bg_a(}NS({@nV|ZAAlC2$hTcuyN7|{%A4G|vT zw#F;LqAS}Q&+1E*(s-r1a58oz&n+j-PehL9)}}UU0V8x5ofBdGp7^99bMB;SNO>E#OfX?z^6zwT?d zJy8F?w-;RDZs!2|yAC$oE$hs&gPi`i02+cn7R20$RVx{+s3-nmBG2`;k#cEG%?!*B z0fJ1vlE=(Vh<~lxSb?9RNA51aE!|XU4}!3^RNKBN`h@pmvNYjax*bOcG}+C4B5UnG zT{#pVPRnxY-VDJp_cV+RJ3a-oH}X02;Y3fsBard^bwlG7lZK%iw67cx69#cD2K7rT zhGf}z!k;)AH$IUt;e~*>+Ri&K4sNi+*|4hFMS*l980=8n1$YgkkN%I2rzm;`a=~sP zFf;oBxiB8V9D~T3_nGyL@_EXTibvWjYBT@Yed?^d3>Ixa2D?{}c`J;^zkeu;IyFMy zP3+Ru+Z6|YnIiSgD~>I&T16savLE>R464L-#k19y!Hnmz2CE;coQw3E#@VVd_h)lg z)>bfrl1|p4JyOJyAXk5vCVx@Qt#|W2c0@7(;f)FR7q95XR(N9fKHTvaJYe^Ob3xYU zC@Bx!O)(!hg(Da{+i;EzZ5uC81LMC$~`@_H@ z0pSPmB{=^4sdNfFYuzoj_9^-pZ9I$K-@OIFuqXk0vjINx-bIj#lXoqNxdS%0hWOD= zvm`#^z@)H)#E`YyUMX5B-+_FkKVt5Z?>r@fj!ubO44g^{aG3x}$OF$)u-N{16o$zl zbbwr!6?kVC!2h?Um1a@>h9>Uo7Fh7}dmCOI^k&Y5`Cuk_|7B6W1wb zQ)|DO$fy-Ddm`+-riu?mvU}b?3(=?JD-72(?qcH%IoAH>tzh3tQNR_Lw{^9T0N2E> z7RfvY1GWI7s5@tiAj`A>$oz6`jUd?;)JMppw%~My%B#YmcC-hx6i+Zodys8ndc=P} zk6tBym9O_Tk%Pxy0^d5Fx+Pq$?zOz}-Q06Vgyabme%hF))EBj;(2d)!hrYdzQGdzU zvUY9WOU43_$k#|MWs(D`QW88@|w&?%$eV9UT8y!xcBiI0!_yeiJ|DV<{ z-BSU+KJ$Qu^1~@->Rq)EDx7V_aG#SrF7W+7_~oQD3i1P3bR8Hfmd8wOc72nf0QKIP z&C{LJycg#Pmokvhb4?ZZfYn;HTLn_u$D@v2X&3RD&bbe00=Rz z>M(VKcrO_b!woVxXMeT_MQ8EvFz#3e0o63TFQ4o1{%$_bzoCA}z|9z`Fy?>DL#SCH zU)opyFBr>T56?}EOr}&rGcDWV>#R=QH{Z$#*$Ae`U6uJzxkV!O-f%Q$oj%a9MbRJ)JTVzd#VHO%6d?(p(dkkq`O_gq+< zi;_;*i@&Hdxcqk{-lMRi9GkcX)7@Qqd(G*&SI(SO=rk-FUXp|()WkB0-x4CgOIQ_u=&5K?6DEUa0lm1f=8y1`JKo&4iK=} z?+0G*lHc!GM%90%^K!;iWnOI^6fS(Bu|F&SNp8L>lGmusc8~qP={ca2RMn<)sf@h? zzW;j}KR;9^eFhuRiP;l=E|}qfG@VlRO`hN24j=5+R;B+ZM_oaK&uo#AxPFT^xWztQ z7<1tkSb+~2)R+Izo0y1_=1H@$_M3w7;Op%!stj^XvvoF{>rI_6o>OQAkcTd#qTRqs zJ#we$Cn(Q;2Pk@6!8%L7+Gy$J`V7L8Zta8W%**dC$M!%gic)e?&g5)F>nuWxC$^Y* zmpqX4gkOYVH_<-=P;I{4;bJD!x(dS2uTHnDxbc>r_s$NfFc>-n%f+XY%>jYTn~*u` z^UaT@tZF@+u9D0|oP29}mF+7Z;}%FE zj=Hz=`zgnnY&hA<9fflwT{83mP)Zio{@O_8}Y5b9cc` zz@7STAKbLst8)veX>1*xQE=>aZ4C>+7Wgib$_VSlvwQ8RQI`&2zKsHQ`*KRDHgrOR zCa5F4eQ(T_7vkG_3Gbk|;r)J@7>~>8tUthrYF#9A`3#dQqkrTsdt)BG)!<0oY*n-M z`%q(<*TbAmp!w)&TLKV&JT{)gr$!#@VYVc}4-bO%O&k-H?Pfyv%s zse2J4^+*&jK_3ONlyC+`)=C>ZHZgu?!TQ(h2S3G$VDA? z9eMVZe{=R#e+>rEU3Fy0vijY5LYzkPBP=bfW(CTna(26S=Z~^JbaA9Mv04~c ze_-S~`a#7xNOA;hxkIl+y%r*;T$2t*o06-Czk;piO^-%bRsRs5=P5(K_dp_KymJJT z;Gj3c30}aLcw6Z^@b+yB5@S?eK5BS5^svuE-%Aat)b4?zaj}0wYW4{!h^Gj3T$XRr zvxz+-2}q1?{|*qxl`Nq$xNMnna8Uf+o}PuuOO&>3AR=KBuA=dGY9JLfe{UQAL-+9x z6ggE&mO$mLjaP+>X`~BXDyx^3qZp+Ro~X!pkrQRHRQU&@IdKys{Fttber1}_i(W_6 z$nwpH(N)yPCtnBPtRS_DPw{AKHmVp4qYjZUO_`N%`dF{CJFS`G?K%IRyDd8o;5>LhoH%&`8c{iJX|cx zJ6-YMbn@8`oIt-!#y-WnQDY!)T~a!J>>{2v)Q<}UENGg>%h{wyg6xme)gsQ7!8d0o zTSfOsR}inP@tD0k{*~Eidt!?ifXVnJ2og;GrUaM=GHIozCeoNXE_Fk+ZWImDh! zlPg_wZTK~h7ej3F-?Ut2t1z^9S^dHc!?^gvHx|I%UDFsn!wOr|BbwlWM=+?jj0G@H zsk_820#omwwZ~8r`mn*r0DpyyaK7lSg7fR(jP|LRd_~I1XF`ey*BJA?JB%J>%H`a_ ze8CQb6+#dz!>s@0)@Oq1iQFFe3*<#$e}wCjmlma7ER6~#B*>+OPZ^H0h>}X03Nk9S zvkbHez3Vc`#|d}3V7r7d3zP~z3*&>|B*dqE&5Cs+wxAa*#^zv7vaZ%c!~&gW%)AJUy*q!3 zz;Dw(Y%MP<*FvI2hq&v2d6l14aku$tu0wxCw92nxc?}g3f}696iDz7?XS(i%3O}A6dUuamR+aRft)fX z7uBg6-zy{b5&p~LTb^VF^PmAyp3>SzU02TWRrY>*aGX!R#6e|pR}6uJqZ!I}qy1>f z(!z6zs&32=x_Vx+U)I4Qx#H;U6(=bB(XsG%I)^4rl9Fczt>~9jw0)woC<##u12%SK zHMiA$2!}8SxC$k>n5VLCLV>==Tw3W46K*Iwtg)-_Qh(;Yw?frd_+Y++GqpTPYqO`? z2+PT_lu3ajxOBC+>opk=u+`rX@5c}e$;R&Q0 z6+&#^7C1*g=48PR4|Q&?CHzg^XUltsQ_>EAGiT&^zYZQ9dVQxZH{>P1Jwk@n^NR*J z$b9v;d?mAGF!u<{0|N)aN75zHZ%~DW4#ugZfUnd>53~vStRzA)6_hL?qAXB+Tg}TR zyH{*smSLneaVrd(J3WkFq+_3EI1m?X&jyYjj^~+dQQtP0LFjux2S5=Ff`_aIy`7JW zec<_+d&c)eg`VRO<>99y@(NU;c&xfhg9z1O(4^z!!!I(2+P^Wcki>XKY!2@64LTPe zA54nvvHI?V4V)@VY;*^v6W^yTrR>CknGJCD^dJ|{clde3Ip5oxZ%|<}mW*d9gc^$`AwEdSv*^aBgjYmfW)2h;3SkEEBa=Hmqxt9L20MaFE>e7wNZ5&Gud%UHz?jLp@MWgvV;}x+d zE+XQ#onzUzyV(p!%gvV^Kse)g6ubrA{oWzKQ9zAyWxK%Qs-}Pywgo!6GfLyxLW^#g z4*N2#%>o(fw?RI^Src7~0g;C5vjO1KGacXmPV{eMu1C(d(X3tXuo-3yJ-d9tB+cfb z)hG6UB{|9yKY2@en0sfnDVoWHcEsV1sl>OyyVsnz`fkS7@x5=oYO8d4gzHV#yCYbF z!VltcZeM^>MYkbArGLcAc5-QMmO|Jj)WhR`K8sJ2@jWT0iB77X z0Kr4*WkX;IpP{C_H;f2RUG|}hKt%_b?xh3!Y=64$lj67AF2~l!vZU$Ue}O9RkV#;B zF}#^7nj`)P837Y5^6dc&QUz}bk4Ln{A0FWlqXB1{*S;nNWSX!3>rYpa5?g1OEQe_= zJ?gzhPH}qo(zSxSe8OH_HO8`nlZ(o-_l9jp-AQP_p8qxnk0;Ngo5s2m(%mj*Ndi35 zlQ1I!nWAqJ4d*xJ^{VIKfl+~a$F36wln=yn8H*xT0oc^b(T0}g$8ynv!43fNg+DRF zrVqC?;o(r-Abc&I(a8$ikss$3l|ZTH>z4Z> z^l=L=-^!50NXe&!I8r@Cj+E2!F>fr<6SJuR>M?9TCMfIOC6eDH(%eiE@YZJ8lc#9< z?1Eig6|qwpLR>nZjF-aKY+t)VwVkEMLtAX za$3OH8PS~emBR0;uwjI#CiBImK)6`Lr*n6ob31Liu-^l#F#6vrjD*SRMu!NmTYqUi zxMZ(#z!q%d$N+2BjZTnR)(3ffbI`!Ws=k2gD@bU&efqEsCneo2^6xY^_2aTTrC}>1 z>v)+M4&rJ?d)6V+{88@UDMDc(J(3R+M4i!!8y=hi+}Mh0$R<}cyLs8(=G^BTHmqN* zq`Qq(OL4U2ld3kPz5~Rx%$m{Z9FL`2qOFdx%VSO^e>9f;^H@LlJuO{t1ZE~BFX>${ zmk$Sm1`+F$A0FRsZelM_B1BcImHSkW5SuMTOVH50I0n@H^hujFbWox9?+6U`CQ+DV z4N4>5w(_n%pJ^%;r`vD{^B^X=i^`YQDl3arzVJ0zYw&R1svc3b7su9|uFvNz=@xGo zzvt!Y0K(*_TeM~$L}f*%jgFE@nTel|xeJQJ-Dy$?%GZMuydXh-Rx>>#WFPUbyrnw#L$ zD);3_WenS=KN@QZ{2UnH>Qa!?mQcSHR>>Im5!HeO&Y+M{|7;?;j zr)BoiVeHZY$pTAKv}lEticRD{(P2ygfAkKohrw*sf;ClT_>|&j-zC&@$T>2u2&=ho z!Bi=wZ<;=4pG6JFi7d6oM)4H3r!Mn%UOd+zCRxUjx*=0dR%?_?Fw=5kfKtYD=R|A$ z#@QH!OSBt4Jt^n#wMj_-;S6A*26`Cp(U3Q$Apb~45L3#biC zNaXj~kN7|Q?I5Zib{SuCzhKDzv21@i-2}%~t{K8#qMWb}dEd}xSr{LB{c7{X3eGZ1 z+sPLn;FNll`%Z-EZ32HN7o~$@15TWk@j=EpU*5RL!AX{(b>DR|MUkE3+MBs!W*s}r zT_RJoHo;TqVO#E&sawf37ZrWFb)|-%MBe@T)_NOM3U&LA+8SR#Hf!v}x$Zr^eruK( z;Cv}C<@dWIC-Xw^aop2HP#tkr1^XKj3^@|lx6Y8A&l9Xg#_XZXD#%GJ{G^6u8`%|l z-w;^0xd~VJ|1jApVH%eQ7;QNb?H=R#b>E^ny9ws{ngcs z`7RrCUz*Y+>n~|M$8s{QJ{54%Zf8Qp?QEoW*l=AcBGvEV)UBHQAC|+-b}Vdd-QgMg za)oz}3rpoi3|hZdn-*&0e(cjj0I=jTXZu3k3PoU*ch=M8gZr=(Tb5!y`Tej^WJ&-3oDlQd;E z1@qUKZ$-YmxwZ&OIv#T$mv0$60%9;o*Cw7xq{p=VsO&wllV#OfPC{8S9V~@k4Fm(6 zdkzTX;qoR4$Qn;zanim3(Z*1x2=tAn0siM)jr{HR14wm+1MGuc;!cfndHNqcyxUFP zY&cjJ{|a<+L{+6a4&0pAxm%JgGjpG>I_c27ud{h{L!_?X!v8zToWV54M={=gERQ?4 z>^iUy>_^0z7*&)yYFrZoPWv8O;`G4Ur-n!Gz_QNz>U6><35-T=WXYga4(8+Btzb_t zT<5x@rV7X3SW-O&U_paPidIQ*g|7Sy*q&_heA}DR9}??hfqf@-E@KSh%ZSI~R51hgVNL-Xj0GbOuan_Xs+Apd>JxG`no z(Ggm@1EARNslBwGhOFU$ZTx8otuSc@8mpKCfll4%u}?J$+a@R>p({g)F$&dX5a~$d z7Zv0qUpNVu;ax5YMWVA&?v2-R&;Ei`sT&dvFDkZ-JB(Zp(#x#*NR!59C9#9W&kq3b zZ4RJaw!mZbZPdF~bzlSBxXp@J;lMZ1_EzfEaG`w2#+2;dYOPyh3)x5Y;NKR?9%)VP zBF{@ml~*fOO`f%UD_6U>gg!RJ`d2i9R?jU9armRqyJ0??c@Q<=p8M*><}jvqC&Chy z>xJ(#cW21c&)2?G0&#eyUp#ebdZ?+Aj9eVQUbXo-n#rs6r5N;>N|ddkae+BJ)L$heF$M@ympDm2 zi6)?pkf@Uu(5ba&y$Wm&AxJjR2g_CBf5!@7Oi!Gfye_FvrHNXD} z%J|O!)$*jIga!nO25(ID-Y!jx#?%>K3wVDO&VCZPKermvBI(B$DtCldkQ?BZ@OB5mxxKenJ(X3O_Rw_XnXcxkDzWJ zdlI({NKLb=YL-8U8}K$0HSaBc*j+u=F6%&Sx38SwztJ51uji1*zi6#7g=eRtf#&)cb_$fmgI6U7V4Ni9W9LpA9AAaI#U#iI677JT zz9S}jZ07J@0+dSoWkBZF>p|^fK-GHu=q8z%jtyIEuezEQhLmWX(wYUn>S6INECu4o zVT|T+*9jhUZdDx<1B%lgjLsd!{!fVdC`xZPBcEw~5`G{-r?w%JDbWlp8wWn*Cc}sk zlARot;IUND6XrDcg7;_eiN_}i>r%FMR>{pGtEifLj(Ofa~$vAVA1?5E^v3K)V7`HUM0#gP8J)9C!0%YzG z8=z-s*Tl4tUOTSOb0<@_N)A7((fiM-5Fs8 z2(BBQ#MgG02XB`{D7Y0kLYss?CP8rvoo;f@jwweR#@9)!nHH4GB1(TS4GzAWXK1rB zS}G}&N?$ImsN#0G%YI3)G9CPp7!sNW0<+f7!qvPYhD5V88o1V@M)DUdd{V*M869Er!XYK1!q{VZ4Np zw7!M67zTTan^nIhiv>9*oQd;5t(>gP9O=`>FX{Eb;j>Jn%P=|jO`PNY3l_FV4WOv+ zrB%u6*Ktt<9Cjd^cdz9tB@=>=r4or%SN$pXv9{)o>B;6+taZ6eCeQ$o`PRG|t)lR{ zXrfvP?AyW7$E1~@ZB{27kFH0egh+xCe;%){b9sQzIV+x_4!CQDkVGbZPyr`#!2#p|I~n%DICtX@z|6QkwR@zyt5|OjoP9R%lZ^WO z+t-83q+iU(zI>|2vMyOuu${LnNtMlwB$rHA5$PdWPH!FDWbjBJh110od*EvwQKl$H zx&CXVgacXS-~onY#F#dAV$j+SM+=2D+?I+>g}D)r@xLhSAC)BikX%KGBfs^4TvJd~ zMY5B*l$9y62e`U74eKmnXLO1QIAis*<6rjXm?IOmVM&{ZQ&%~w>27X-rFnl+F25xf zh}1+&qfG1^rV^@j1qF@9V9boEkIKH9kM)(EQpQ}=jb3G4H&A3?nt&!WG3OJ|)eQYE z3_4D7*%R7_HU1lKjs)Ry^ez@L^+k?a!Zo|!-)r#0$I{Ti`lN2y*`@em{vDSrqp&q2 zk^#wBK!EXRM<>Xp5>cP0cr@$MuY)W@N8dn)x%69{BQ>vg06-|}(hHrd_AfrJx}f`- z4)N?8Q#sFE#V95B4z;RGrQ(KtBV~dTY7Juh>svovEEyo;J*Ecd`5*7FhXq;kTyz)` zF^rLcth*9O)>T*s1B_Q7d4N?wEnoq$pcBM{l^WQ{5->Q5(h0>#?u5LjBCT&rEWGy8 z+t3+il?10?>>D|h34gtqDiJYb$~J8D8obp=b)_EKeJlJPnjKycUr{{{wNjonmw$IF zc^d*E#p2PsNVMsoLrF+Y#Y;pyzgper2V)nPNc+rKUNOR@cL3ofJS04rAhHg8J zfWOOod_5s!ut$~GES)dZR4$X|RP%FKiz|mZt)W8O_Qp6W!OPN2Q$gx%`9|eMw^#}1 z`(q^(N4ZEWC2V=GCE2UIWc0r}|MbgfLb>kEKt@iR!&Xwg;z#*eRB!Mzq2nzp+HKu^Xz-6YN|cr9)$LY5Vv!jjFt@FU)YX4Y0VVrqe<}2+NDtKg4`(ijS3U%mZ zX%~dN}8^D=;bSp}jgOBNjWRIk^kDpu!6C!&1@ zXgQe~OTl#PP)|VGR50zBnz6;fBQ{d;^CEkoY~bsWXE*37yx%0fcE7Cod8-8o9Wy!- zgw*QI507#leI=BV|8>(E?LmFEJK$oJ4^C_;7C3lP_M!Mh{j*BJi{m$E`)9kiHRLk~ zgJ0+0419e~uK(>>itpt4P|c%(-w4$b^3mSr`Ri{+kGV@*OG*0+@4Rrc?B^Bi*>K>` z(boj1VeK+SWK+WV2}_8jT@=^%BW9mdjJ8HnPC(vK=-?KXE+Ps$8l8{AQQy#HxxK-4 zsmY=fR+!6tYG-)qQ5RuVOr%gclzg|u#XmKh_zWokYS-wSs4nZW=3ta0wjXgpn_%8^ znt3tKNNkTTmShwu5FYS*A_7Nwr}&rs1Fi@yTxWD)STb5reSbDk(=qwYJ2XR_^#EOy zfjvf*yq`h;Df&kKMPdPS1U?|qk!mF6C_Y3?oR&%2y)WG#QfRnSrP+%?_v<@vt)VE} zHmNL$({0+Uq?d`N#O-!R`&-Toy2J9=k8;v4v&}45=(4&fiLI~DURt?Us{$&7RCM$> zuDx02(*pXoIKYK+&=hfI#uj+D~TV}h5H4joKSks!VMjeHg zu~OJdcX;3z$d_6{5~TN@ie#5aJK@wyEZ*>em-76ycmeZyHob+Im!$2=cYnal@Ipww0%C7ifphB8 z>w-Nh5CZdiy&7EPJo5@o^0LAtscx`jh8pBA#{SB&GD#(&grE9V!A}HM z2oXBUyp-@UIc!!ZNjwwcSQsImg%>BmkYMoaCP%0+yB_AH&x9~GUMj!fc0TeeT36Uo z*O8v2D^3)-0irf2Z8mv$+6k@u1R$P&dL&DAXRa?gJ6;Q~)z-kesxxPM#g{ATDDx)G zk*j!K;D}1UZBg88^gQ3W{(%Hb;kU^1q5{fVKAhA(uR^w*Rwpebz3{TVPM@_SiJbe4 z!ds(=8p`9+ZcxF zth=uscP*h?-b!&Z*!}C}pb=H9#FiNR=j>|Ya`a1{+pPNMn+ARYqMR8KN=4@N`5>6u zMZhWFwYjv7h>3RX@5oJ+bhQvsfajs#&&&OKB3Z-79PnEpaKrVp)Nkbh>Lz)9;a}=C z+EXjiK^4?lovi~l?<$#wQ(r$zIC61Mj3BVW84v+Uw-OnK2mx;&EEYW-mA%%kdho9s zf|Y_*sbtI9rQ6!f8WeK0km$&Eoo1+QuR8;C!98k~rv>qOZ%B(R{%07CCfW)g$cUhf zz20%ych9(3C9v9-3Mb4Ai)(q*HZEw9e&+; zE4-vSdOP_Eou#N}5|mxx!wAB7e15&WIu3P>cwo7O57&+OK7OCk(HCHWO&Ac3GK_U? zCs=@54DSG+qDH;`Af7E0A~?7n2DF>m9`LaXdVc(!tV{w*Mo0hkgZ^tX;?KitdbCyC z)V++(IbZrIyR;Sn^bcxvg3u3v%XHwEHDVZEQV|Yq!oDFQV$zB01Y5OphSL^mlNSX* zyxG5QC0-w%jdw0dQ4@Y{{k?pn1$ujy`H4QHvfj1MnRuNDz&`82hL3ycL1ut|yZCwz zG*$WcFOe+7x!hG=OG(+eH0teM+ZKeHfBSy`y)p>R;w~}CmzJo5xG3wc#ozDB=yyk4 zn|n1^^xA6u?>Cv{-dwtJ)8I z=FJhct(%a&QEk1Zauyh6?bTeaR6&N%06evuCH$mbU2!p{hRDMtPVQ^6Ue)YfKeFd2eJco|IK!NxYB3wrT%i%SE z%JT=QV5Rr^0F)v1Lv;Ct1auF`lB3@t#r@JQGeJ~kZHO|SXV$ngkdfL|c$}jI0(nk; zm7d)MpRh0lb_Qy(h|TYy%U^U%@P_~QOf|t_8{-iEdJ`C{YdBO(qfXm6&#p5(P70JV^F$@@XxEC4ir|NHuQ z_pJ!o^&o3VADqRVr>%Gf`OQqilmGnuZ1B;zm4h7yMabPVKLxTd%{wbVClqY!9N8+c zWdbGVK)1h46A=Nf<0goO3Ig=|BHQaOnlFJ$Xc`MuoUAvR%GW#Do&UejVGRdDTJrs^sI$+2;r{O5;&jg)jA}!2 zRcsM4MgT=-P$WSvSiFHIR=@HdwGYOcF92nyZ-J1*F45TD@?)~GR1FMrbqeMJN9Z&U zI!ASCd#p`xE#V_YDkZw-s$>qqGvpuzoBuuO90CCC5-%yO8v@6qbM@a9DuvX9)G><` z-^}Keb&FRD*951X*I&DUmhsZ#Z$D;KHk!I;0i1mn03f(|V%lKGn{Uo;lgnlpDomtg zbAZUTwgB)4LBry)A~>~eAB8mkHb$Mi+Y{?DiCzT`+}$y9i8T*m7M?Tdu?78^^$_ei%9wamr@4plxmBZn{vr5Vy#NOG?uVf;ykV%*?dyNa+fo#;TwRjKgs+O zxfatm1mYzl{^<0;m{%>vnZ@7m@ zBg(U}%WW!y_&*>D!OAh*V=C~wG9T^{Lh#)afzV>R`4%FBX+nq=n>}C?MwaGM*Xm zp*}KrYlHXjDMU`tD9{n}r)rRmr}xA2Fi|J-+MR_R zYF6JB-rHvzAj!AqpHz8rqJE&F`3hX*TN8Q>O-sM-ywkk;)3bz;f;-+orZLlfO-n5} zA(jjK_R?@j#P-p9r)HsRPZn$tyqYApU6Z+9k*B`)!bF5-;nME^Wn$+IFmy`%M-)JF zAzgO6++ae^k+BIBRFuLK>X&creP0k+HOyU_Bqxu&fEXty{&u4ZBWN)l10&YEckaEs zzl`=g$dU-STpV=wtTjw!`}#QN@nD1({>Y_PxI2k1&U3gz8$l6@?WCo=oR+4~TSGWajN<^A7(0p75}zY&LqsGg5md z>D*%2$bCx=?M1Kx|MJ5$Y@hk2DvcSU-XO3ZmX{F8WHP$4+3bYTsV$UDewwzM$B|$R z=^Bgr^Drl?NZDk*Dk?!{KTXgO3%l;eBsAX_L{Ysv3!+gw7Fo97V@Z-I+ZU$}#tjP~ zh`|wPrx!U3B9{sM-IBIbI|(c&7!%6kj~Nf3Mjijzi})G{3Q%{xjtS%574{yk%UwfM5QnmDdFg2<%Y;5TFcP|bfc z_i;Mnx8~A!eV<(jdnP;hFq?BL35r#fP{GE2r{}GH0e7;g4^kqTVPA)5ImHCiYLqUS<#^ z>0r70C5CkljBkF}aMq~fvh&a2RJV?@3#6>Ri);J7?}LUzC{2^zu2mck&MYdqyZ<%n z?Byww>hlwx3bH)X4t8izRg>wuHx2Tqqa-I|T0vr%*61|^YwT%dSu^?p>@beQ6987j zK6}J5?WPcg2>3ufJqfi80Q6~GMV#It79(gx#{|t-a(%=G-*}CxNAWTi_jR%6Mkl1J z%2X3Jk`wrbQR~#8XRZnpy^Ke+kaWHM9L$)lDFwNLVwU+j`}9jSBU3MYDi7^>kzpt? zq#w*~Z;kSl_A)phmR#GfT^4{4EZAr|&!T8*@A8CAdzz@$m6Dw0@VHdw0l-X0@a&SN zl0@*M)M|XSeaOA4s%p_v%T(=gcIJ5Tu8J9Tu>-ACBv3eZmU)PJ(i?D4oWvxf4ZCI% z5K`NZGpn-Zue-rvy7FJR@TeMd9FEPK$Q#a%38#Y7=+dmoRxL!6TvbRnHRO%GB9{kW zzX$rde=k3^(TZ`He~FGpV|PTpGj|=)G1G7kv3yHmuwL@$zE86@|4qJDqFPrr(9+T$ zr|Pad^fDtF8BIipW{FKXUkFKtC2$pzd6zP-zo0gH8{@XKip^~yVZoE@OIZ~!CN-La z!5<${O#j=NV5P-Lo!?k+t)2>Wnt4xAXfg&0KUO~drIcg2+gFggYAj)@mdN3Jj6~ZT zwo+_IrokG^HLb@-t5_q$Rmg+M4D?z;pr zq3fcs{CBN>dc0EG(C?Om%QU)cc0+$S%3&G!chj0l7km5S)@c>U(l#9kI}rw*6}R>` zjYTiY(CT4w8dE7(6YYpEQ5mzxMq_r|#W`{(M9)xfuzti;2vPAvIEe$w92M5d7Wczp zy}0JhleQW2M=b&kp_kqOjrP=&O46~o6z#Q;+{>+&&qV=&th46)M-*_Jr=1R?NQG=`tyz|llxO=< zXU}`Ii)bV*(Ji%%Y$U1KE@-lCb)h-Zgp^td9G0y)=chwxXO?9&N9=iqF>6#bE)tyz z<-mNg%k2oD7H2s{7omCZ7mB5Ed^%q|s)apo_ls9vb2j(-#|0 zLOsZHddUKoU7T*u9@PWwOD?x0{P5CH#?V(fud%@{76qaqk}*!4Nm)iyuOyJ{#ut`9 zD9HG>&bKPSoY1S5cFj^2MWU<)9{`nW;qOYe50#39RoE_Z>G^>wu)|(&PEerQT>JR& zvJGw1TIx&UIGm+{T`5`^-_qrFw@y~n>WT=Pb?`!Fo&(KkMxAJWzMFPhK+M^%L*M=x zkh?@hFhL)e-9$ILYQ0S;uJtoIx8zew{?=hFTX-J?V#`isMm=5@TWDg^IhTJ|oxHX#^_j zAD0D?kJ2`%56||(8BNf)i-qdr6Fa4}yxY{RB<#SYO{n9`?Gk#B=w6eq-Bc#*nb?Y*>NM!8Yb=u^P>}>A=&2FY z$Fi1(UGuQIyX=#8S%%roZh5JcUKmA>N(4z1{&97EeRkiuAo;WsjUIE3#BdHtcI;FB z0ak?M%rhVP2*vzxkJZI5^D`dub}MX~yy<@pV-`wcw~37{qmF+6u&w#qd>F|wnDJjD z$i)wlPw*jk9tM^%sXzGoVBYZ(WHKeO)4&GO?&nU;QF$-Qwp{Me?O-Mcqk zfF1M1|oEYv8&>kB!;M-4UZv3H}C-k713<2=NPi(xL)a*XX%2Q$*J<+#adm z;iYPq!G-3iUZ#xowM`gjF?uorS-YH8e5g1jz}clDOU)Z+|rbEGR|Q)m?Kus62j*_97&%~IuM z;EWZ-c&v;4xDbfBP9t!kQ?cGn)Al~yQcNg%EooY;rw@44wi;Op)x~0lSPhuY>9=qX zGI4q)iO{w(mKanQ9cchJDHZTEViR3GfaT(2(>3sCs4%MmC4nQtJyKn7o8WlrYs0jp)IeMMQn#(0NZ101?Ej@C^ z>(Gk{d?s^I!Oc0@eR3WHNN4{_+_nj!JzK?$&+47_YTee>&M!2EM=-#?W~mtyPTfOl zW7b8s+7$(piwfP)QQm{8$h+Zxx)6GjLP0ZQh_e9>_VyLxkHt-&h_PJB2GxLrK1BWsU& z_!zI~PMNH(vO(+qJNyw?-q#RJ4<^pdZ<{PXof!OewB_;q$R zv1M+X2VGLft2&dR(5nE0>Yply{aDV(*?RYeSsUetV4J329U?Bs7qOVmdiGa; zi5|9s27P1|oa8ANxTsKqhk3AzUCy8A$LAT#!F+r0H!v4(;Rio19muGJPxNhqH)n^; zswQAPC(S#kM^^K`qTj_4*J$o*qq(Bh)~pOl!^PP=tvAm^PA=A-X`>7g5uo$A36$bH zVJrD$yTd)yQequMhFupU@6f^W-L*q?%dMrD6RN_3b5+eE%@9@Gp!fK}VPPtV`-O;3 z@GNLnen46GUXYz3_~&;vv+b|CG?hKvW9$b&v4O&8mI9oYmt5a(`p-^^Uq6k_00{;!HcYQd{ElD{fgWX7Y#px$mYng_JtN3nK(trJEu4;D*P zG^R0;S3QnjY*lN-K6nVa(;rk9Z$V26T~6MrGd40Gem}Ucmv7 zHfglE=u))KU?G9|8sQ}meCgV_hzFePE_tfG$)_QPL6+4(?i8Lx93c()EQ4YS&H z&rs>J_=JNb8&45sExl+v4}+(Zn8#ExNBnqwPXjRbXPJyYar~O*IJ|l_VFMMl2Ry&^ zafvOukTCEpYJYPs@*xMY;B;Os&Eb_XS*U*;qYCdhT9+uz z9{3A)BU#}Y9Y-~n&`5pxjT}b`LCa``9@<;-!(!v71jx1`FiosjuLsZy-vbENe}2VV z1~*L!xm>T~2Jhzckc7+4rJr0TdAf-5NG;u&7?hXf#S(hZ3Ls>N?k-QI50%=@_y><6 za`mY?Sis6lr^w!6?r?Le^y8sF z1;})ppB`K$X}RyX09JrcJJ-sFjPlXbgr0=eejkD#$1iI_gV*mp$N858Za#{>5%h!k|Vn--;*DU~PgX@jjWt;UeTI5j91r4U6V2 zJ$63kv`JEbNgI@OLWw4nMC=+yO&uTpngcLW>wS6?J&O|LT^^m*JdkOcF`2EPtvt`z- zAl|!(a%Y;T{%Z!Zq?(K@jJNf`BS$E81x2t3z+K=9a(I4iuKginJQU&=vxkayX0II@ zCjVzSU?m=UT{(V__d-x3G|^uCd5P)*@8E>`gcX3)do`}hSbA(sH8%j;nb5v6R+0;h zZOTXDTH?`;S?6T9dP8%|Xw}tH3HeIbOZGWsd1(VCg1<(FL?OKDg`2-A4{#5S^H21o z=S6>)VZ1Oj&A%eJdhSX)hwtbB`$*h#gE1WsgR#c4BWd_h8j+9UKmgWtDA8ThXvn?E zBP8t7_%x`9lNpFRRzqJt5YtmKQlEGR6$15Cnup7bjXfsDWp@QU@7}owGzP+VyHho$ zW8QQFXUtED;3~eFhFBF*!9>!uTL>ac?Rs^|oM|ZG+twcQ2V6|iC}pjsGcNO&o>kNYdyXKv2c}H5kMP>llM}YibGC+%vP_G$A9I`Q z=6g)ZK<7OYcPnFQKF^0CTVH~Hb^wgSHE@vl(^paSb!c{mxF}PR^Zb?hC=W6D(79JkhE*+)Bv-{e?xRAU`waA|JM^R z;_=*~d}VfU{x^79H&#DUKn8JI;&0k)ojSha;5q?mgQyxxI_%yloa$bldR8UXS`L6S`cp-si@`lWi}!;O+BY!B;0l@cycgCU_4lXJSp_GEnmzM< zh9-7lwhwR=6i@@meVcomSwHO%tOIu=ocqe8`yhUIN|FPBs);8wlauVmjpu;EyD_6G zx~wT!R$uR@E3wmsyNX}$gzogR{;gB=Mnsrx*AtZVpe^+$U+1sVajkKGfWashdB&Fu zs>Z9&*Xtf#fFnyv+pnWOLo0-CTIc<%4QooNK;*^iXE6Q}tcJg}iB?EztAR(S^J$7qUfj=NAA4rqugw}mP0=lU`UUrZ8jK*Og4w9#y;n8gv zUJE?ZuJG;FWkQfD-D_o(Oz zeDfbndL2|R%5X4mwQ5|}7JCF$ZEXnrwNyDRJ43m)N<*_zck|#Xp*z6dCfGlKG*?}# z5@Oj2ehX>sI(#TJS>wp*MsA5TFFhZYdmG>JS@ZP3y;Le-F-7FtIRh;3_NVBkvacpB z5*QTD?N2O~)b`2^`}Y!eby21sr43LN%>ojoM?Wfz{rTqfccW%8JiGGZ1Ci-kg0z^) zOZOM_YodHeI(T+|MQHu$O^AOkmmJgc)LiC?XrL;vrepN}+q zE;?*58@pMbRMdc$11@bpYNFFdM;qmZ7%oo=Fqu3D6kT2wSX ztJEjbqZ#5*w}uwEDn{b5ovBtK(=1XNwKg{U9J2h!%OR>3?`xn29F~8YAYTrKYZnD= zPXFMjw9DKO^Fdg8a!CrnT|oWuNK&V&yQNdp8p?7_7k`ky6M+L~PP{st7T6DzqD~`}z#_67 zq`9Dx0cwLh`rv08PhwgYwMoEpnL95g|4%o!JX*M zv;Qy(D|*qp%|NX4$6Es6O^TErH&h>92{WjC0+f-sbMVvMdvBDnmUT=2)Kavt+>8#u z1&Zt)e46lp46M32BX!UF{L-6kgK;gnT7YKdI@@Fw6_4(vhw7bK=%w`D`~ zEhR{bgi;dv?&I(Iul0U$=~9GqX74+%Aa&KXW+JgdIABTu0eLTqOwlt9=0einzoBcv zk=5Aaz_)v1Eced$`-WB6mG5akqla;;%WEDuyLyRcCU>oAoz)&-uB5gJ??6x9$94b; zzjx3~xE<&X?Xmtni~A15&!pH=T8W>eqyUgr{4VdF_xHPO23~N8v}O%r-Evr6z#Uhp zXg>$6hsqn#ber2zZ4U3iR~c+%A-y;E+2qNwV!2IX*Ojd*#^8BLOj z5onJd_xB$zEP!1EV5j`M33!@;jr?>)F<+@NK=qSbo)-43Keng<3Sr{I?v?l141D1S z+awN#3Mb?P@_kWjCnB}G+43570!;{@@f>g+x<-|?wHFugWy!R=D8_ysg3z1I4F>qJ9H)&}=m zz4#F-Y0RB5hHGHR^W(`bnCARIEC6YyJ#fFg0H##y!azciEluNJXZM#`HE^oNT-+ZZ zYFfvnmKP-M&tFepGpqn%LPHV;@_--YiBNYL9>G_ASA+RaJ)%sEibVNT!Y0UC%q5%RMz-vCP>H`P7IsuC;8NB`4a#}Zui>f!#=xgi;;4#j`8iV!IAK5Fu z`x?u5etPqEyt8Mc%L(R4VU4m)e?r?an(;2rWgp zTvMkAP6Kno4SJ+6$s&+#TX@-iGGEk^9j1OQ?Dd44--HR6ac^29#U!-$eWwRAfFdCC z1YcFE$`RlfG9t=0H11e<4{^D7hGVl^eD<@IU;)VuoQrX*tae^}@Zl363|dl*--TU$ zw{AGb5UTp^f)L2!FxqU8K$^ln@|@c)RxZvp&%i5>T<5HH|!M7+Qg zlFdn74La%aNE=#;$338eY!CJYKuv!@m}r$^b(|4S0a&{f(_8j{>VVpVFs2vOMt?Kn z(W`@`I3Rv`_+4UrBcl=9SwmwCl5S=v_b^tp_l?<8V*i+wT0Ly|`9`GVB_zN`Vg3Oj zz(Mqdd%}CL-dnZhA}&gH^Ae!u+8xNZt-)PsE5*@lgZhvyauiQaA_-`&yg)8(kYau| z-v!Xb>j9+CWoD}afyvVXy>nsuhOMicL_8MZHDX+_vbBsVn@L+s#d^%6p31bXcy;u- z+5grRC2*SuA*!o9?(T9&h#bbMWivB$txG}t>PgAZF`upY{FZcVJ+&4W8 z`&2$3w2odcTnS3@G<-bk*@&i*eRNe6^Z+2uPQ2>?OIhYt%O6|Ok6ucs4+s<+G|_{Q za3LSOf$UsJ!T_k^gg-2rEQ6EC8y>!%Gcc#4Put)}p4M3ASJ$p)B?AqPAK$Zb)`P(y zISaW0S_@AM#k&`Z|Fpogl(1r$11o@`k3a942e?MFs+|GHjy3J7G5N??MU7q0Wm1(=z9bNW!Y4M1Kg*U4@I&Yx0=8u=LzMOyfu z!syKrsNk?xx(}uYFAY_$yRoI|!8Pn7J{l*Q$kusGsB<~~Yrk04fvIQjVRdhfKBT5p z_a#-c_}`c;jRt-&76?$SizHGDD+d!@0k3YoFe&%KPj>PY2TzzEPiL@PGSd7H3!rD*MFw0vQOzzg633a& z5V{eB=~u*>YY-?^jU3(OwdgzZ`&AnN3eWih^&v>bs_4Mrk`~+HPssVv;WIxdHbY}T zW;jIU+-qJVwf4lY!85`kR!^>4_a8mj*^d2hB=|go&31I4jwA|;$bU4u0(5L6S*Jku z3E1e2-UoQTPY-zeU;YG!mA4ai>_u7LyyJ%63=qiUlVgvuPRWVy1ef*uES>%XhNK}Q z8xN}25cYe%b%UV+sX+w$wK;wY$8UA~wK3-NWB#?zwL5PffN8hJ2y#S`ba>2uMI#YP z%g~#tj)FkrD>WvrL=grqf?ywYS}B5U1iF={;QKf{Q^(?cgP^o!sl-u3nsO#fWJM>%g*oyd?^ZGe!VTL<}oV} zDj0}6`2*B=GwXxrjZw=atcnW?K*j1cPNEt=d^j0AjTlaT|L25VjkQ}-xzXrz@UN3(tkT+EC6DjE5EBb_w<5|6tTjl>MOz@;h4c3pyl-*RAk3q zTh-?%I7I^ZUsbH$?D)L{f_R~E4}fIt)P1x6ct1)gbp9}a;xauO4?W-JnE~QGZy~iu z5JKb5UXlLKw*^T8YyI)2K)Q@)dRyI|K=% zyzElw=`NV_@~!s$a3M1L^p@&RR-UzZQiDne4jD!-j9 z1$n%mQcxgIxXUJFo(cz0nGUi5cD)Doq2%CCpqY3&KVLHd(6`m$+1?XU4bOqWdyf7`pr*A3 zl0*a4Z|~|xQU-fX`Ld;X!UK4Yf$`1DcRSUP^yCqr0HB^*b*obs?`2AT@c9FhXtI9A zBqccX(P%AlX@HGn9^MA2Z7P!)@-PL2<{t~dR3~GC{GOQ$rjy^|3X~UzQ+um)kcFQY zVwO?$2dciG;a)SCOpHU*Txe;rboL1U5WGzjIn+P)Krd+oNIjn*>CK{*Sx{fu&%7`9 z*ZAK|DjJ=EM2jv~-x8=>4d3k?SOb{+BQ00xG#)F1Aa!-1eOv+FYCv&ROgBy=PQ@13 zrc}dCs_Wk20m)MIOO9~w4S=FMpa5T^K?y6rs{kIP7OY}j7_$2_VDMR+1)#YYEFpSX z31~>`snV z7{a4N80IRLIy_Sa_(5n3C>YvteuL1x+HrMq=Y1LW(^%2f32>!VoK4IfspG7bMY{q; z=3`!s92J=R%{hk9J6^~IEV&JQ*{=%p*hraEWW1zbW;QmWnP&Y{{97)R=F;t{&*qN( zn_qYXG`q@gB&8*#`&SP0X2nH&%w8H4FyTAJ44e3*nA~>Znkm8HSZ_RpG7J<;0guoJ zLKceVSPlHky)??=yb5CI(fM-_I!Jw)>aV64CM7^( zwM7?NyuWC--x<7rZ%J-?Id}j!jP|*1KkG^G@6GPu7|J5%aZO*hag zc!R~a-jr7yai6;~xRV{eOv*xaX<1wU>+wa~Z`JqScpce^EC!)EmElmHx#k$c~{F1C| zoH}Sp={{Z&xzzf~jd`GDC3>oVz~uHE zz!;tXEd2qi!jMEo?s{b4!c0K<%HvWnB-NT4n8W8YbQpjJ{Q$PR2o`5oc0n&*zWJHN zp%Y?rntS;ZCFGyg?H#)vCHmBsMbY*Ht^D&s_%OI8`?RMJfP^{eiATlT*$(eETZ_G4 z45aJ5xr*NJsc*lcj>37&Rax~1v}(V9=@l!s*M5+Vz2#ysS?JkKkh*`c{O3gKufiS} zWQZcS&Dd5TUn9VT5%kC)-tPMQze0oso@?5a5T8N14!o=;31N^hq#P)3ukc0yVt*4T z;1~%g*Ud;@lSqrCF=>Bo#Z%K62Ow4@^Rr-Yy$BcuYmn^1z-sG4YX^0wq(nvZH}r?W z9BV^MctHHY0fZp8ge1!W4%cvzG^dsH z-H-Qw|GXwvog4Vz;|wfP_5cY;_@c#E3B;V$IIIr0(HD94e*tMJ*&2U}gALecnE8k~ ztH$Wi`>BS)jgvI(7_uGr+71__Tc!9>j_Z-s0T1Q^BTG!dq|?cc2|@{#f-(F%A%`LEq8t@h0CfZ7KBP{{E0*&1d(#!%y4M z=v^eVWs|yjJ|6amvb6(O?iJ`}ANqd>BF4S%igzqzk-Qbc`m)HXWnP0c!-p1Z@QLVf z&0103`W8&alJ5taX@40$#|G9zVo ztpK~tjH4caAX_0<;T+sl`;x)#^>e^NNwhzmte|4|1bOxyn9+7a9HyAE&yYwzFFqt* zEj%FIQ-tGl2Ih717pu^fHKT}tWGQo=KhDwh-cL2lVE%^z2gBVuwWpxOvC)KkYF6;~ z0m>bfb^!0!m=?C^WF>?#pagyh^tai7X4Ytg13Q|KccVXz<#p|DXZRr)M-AWEF!oPF zR)X?P~)xj<)x7O1HM64M*B)6(WTwLY~u%qVwOMP$Uq{@LMF(kl25%KSrIq9 z6O{Or2QB-7ak!`#cZYjv}KHL17Wfzx>F;|kr?#u zU@CCbZPk^WQ?X)x=NyB^hRZ(KS^;IjnpNoUbu-)7AZ-PeX}nmadhwx3yh^P${5KRKvAB3)@VbO@YNiQ7+m-A z?{9SA{s%Y0eI6? z=oLV6@ol38b9@?g6oH}!sD%W4TE-;57+*5{Ij(;he0SVJo$FlnhiZg$W z-Blzc!sQbczsUu^!W|*BFAEz|{9i4r2gHJ`*y;e;A~+8mc+L9K2K; z(2pKdv%lz~%<}dJlT9G)FC6ARTc9-{`@Lq3RvV10Y9HK`eUH?ThfQJ)AdY|2&1hF&<>I;s)cMgy+=Y(>}b>OP^1-DfX*cr^%S>HGX6CIP+i`ON%8##1M zZ`zZ?wAn?#Ufds)$gNP}cmOqxSlH9$0pGSSGDh!k`8nWMr-IC9_WRFJTk+&~evWWW zK1v#Su~npCwE58^MkyiEMZR}rH!csNl&^{V?^*mcTJtdG2R_Xee`SW7Vo4YuQjSXA zpLbBWQN#t22qCUrlGb|Q?%yVV?gLYuzkhG281l_)@+rBD8&Pp-Ck&blXY{_^pXu1Y zb8>ZWj3N~1K_h=?sm9PyUo$EVG0Zv{3@aM=8?5NFDemLEC+WY}zW-L8%y&PpsqMq) zf{)eaap?OvGE?ZA)%t*;6PH*bIu?vs4Gc+Dhk*FwB+%@tjOyxd0^7oBAeE$(!lH0n ze7`ra>u;8^E3ZbI8)#H_0Do|1P8YO(G&hr1n!s2Aou@ z{G}8B6l9f*<*#jpi`^_#rzg;TpUI1HLmo9(vyIVG!r>8T2zj8bxdS@Jse8f=3(6?u zTvsW+c7??kqH5rq{sJILFqXi)xFzoSkr@&}ACX8cPz@rUDR8P5{+7L1F!F3`ua}zb zog_b%L%^BcAJ92@d8zb?2A#MuR}wyhU|wZAGj(;A2?h#nAUwJ*wFRpBrsc(s8X>tt zfm^HT@lw$Kww-bu={0u6Gby+#*qBqf3;9Lu-fjzMSXC5}4E*VE3z#^Mfac1!i&0*pAYv z$VAHsh1o@hqmZoFqz6LHE3o!y$`J)PES=ewGzs@QBOcA4|NCpn7KncfOmdAmOV~fC z035`10;H<_ukk9D+8cgG-7o8!Co%3T{0_;dp8;s9+Hm0t zojXjlYyXDc8VOiw7sCuCL?b_HiVleiUO4P~J!ZSbo4pGQ61)~>spbRjAxKgr! zcx*>g10*pV)9(?LQ~rG;a6^X?Kt|&Yoj;nEZItNM;u1~zwK%0Q0|ea+A(JQu4W5P= z)_flw5dG9RRcuGePbJW=+`~{goNBE3kCtG4<(N+WAH*CvF%KUXLWLp%42NHUe5I!V zmSyQ%tc+`bWGg8qshV~2IcrqnRHPP-WMt3o~VbU!6 z{=s=Wqo{dHNwrj_Dgu#7ul=@PdMg)^fjzhS=&Dl20kgWaq$)xn5sleX-slq^ya#{B zZ;6D%u`#Fz@Uxf7b6p-O&~fcmM`tk~9%5{Di2s>jWW3EtV@@xm+0H^Ci6bic?7``t|~FmM>Zyh$+{5B71%T8pJ9HM^Py#dR-(anYf}L zq1`UhMJdvNRcl)}Qv;0Ka!q$>L>1C^)EhtjE8;M(vMDhYL^$t|)DOQ|B@ zzd>8(Yd+t1w;)$1jW;U@oTI60Zx@V=Y2l+_Nl;_Y+ft=mDm`$-w{vQ1?3Ecx0Ea+wVk<7nkKWZFOEpSDrBTDdZ&`QCsarvU@@*rzh+Uq8sleS?==jWmUx?1k87r8< z&5-|PV_8UcW6SE2h%uvgxW)E|5L<1C4oyt9a1W8Mg=zs80L~!jN=m~@_bus;r;*~o zv$z<7T7h13(SGONOZ2tgWnBgMZLVkcvT!o;{g)8K`z)_p3x9xeL6<`+How=l>OJParA1zVRmIIXY3Vn|Rfk%2V3DGE ze^h2mBAX+X2hEE7Y%!RKjP4Nw%@xJyvEm!nx2lab@!7bTuc@7zH9kEX`fc{AA%G(r zKN_Eik_L}gE?da5T3;=o7%hzyWqquQRDKe{(Blrj!*!2r+nY@{xiMxlS~5Vd5Rbm6 zHCHiTP$Z3)*QT&RKk`UmRIDYKH8vsB^v>mUnMOvkq+u?}b`&Zt6yD7#XBI|Y&iGbm z+NQTZvRD6l_$wLWmDA)JTR;1&l<(}WYQ`y{*>?kPT0g(pSZ3Argxa?kw4>E`$?RgY zDuUJK13c>)Imbb=sc5R36CXYd8jDEsiaGA#OyA!&T_1jY%*AVG9s1j`T~8V$Zf#>9 zusE#*xIy!Qp$2?ADcqJD@eNa8gruOB^?GvbUG!lI!`C9w;W?G_yxPXn-S|hG_?&Gw zOI;(fnANgjL76TiCgDa_BCmeD*?J`9#G+H%lU5)X((C-8uu5u)S<;QXHxGI#_3uU|OEVre4j~68;f!2=)Pbec16eW2c))5X-b3&( zv|YCA)!~scRX#l0dODKfMAID|lygDJg%=GE+k6svhp=4vWB5a)BvL9ZsBrJVV{i?% z?a^-Fz^1H5GpheP<6NiQ3MZg(%aNs*LLF;{TW=%4BMG{ve}Kzv_#KYwE**vf&#WZ9 zUp}CbBJ&@{?@4!lum~X<9vNIcH&=tth&jgi#3;$iLKW%B#DtERW{2L ztHelu+VI&p0OQ8VQHcUI4Ju-bruMwVd`4{{53#Y*(dMiG1@S^9w5JWS^Zu7N*Z8$S zthp^h@>xrXgCkXMB`B)j#qVeDM2i1k-{w=u^zEOFElR zd}%~G27|4AhqYAWc{{IMBjNk&LI@QaY>pNu-L;C2q+Qg+M^RXoH^n0c)J>;lq|eUC zZK8Ef#$df|wwvbSa8b$W$vCf0WnzB&noaYH!yrvpgZIRC30eC7T7J`G4pz!nE)$=F zQdpA>yh{S!GMXv*0e%tlJz}s7a||KsZ!V(1Vs4`3#2loW;$5POq<6c_d>AFRLCSo- ziH{@K$l9Q9S98)Hz8I3-xdpnEnYgF&#YjT9wR)aWM{wXvohpF4s9x0De&}VdNdPeH zO!2#jrW{+aWDbWLT%T|gSF{qWf13bb6=x*cS&5!TvR)SGit@aYe}#!JRT*hw+fcxTJs1dS_ZR#DWI{{Y$*pQ2vcB2 zlUcjRbBnBC540JIwi!ZI{VU^H zo+qjHYZH@Qv?H+Ni$!^uk*Hj{LFXxC*Gko@RNz7eHZ6~Re zz@Iu^owK6ti)Y-^zjSM*iy~PBSJF6UNM1R(8M{S=kn(fBHAe%kK%WluB>*jr)x(JH94~Db&5|6V*ou7*? zpk?A$ZB~GF?9UkC^q<>$L+%TXKb|-&hu?#mgd}5;%Z>b!Vs{+7CnNJk5?DdBgLvnz z)7%z4=h(hdwJ*)s@ll6pPF_AjQhUGEZim-vr~@!aOR2(Jm$}D8YAZS@aPB6B5H0%T zCLmL|Mk__LJitGJOPIQA*5s5T3)FzF%XDsptIEw$kB*?MHsG5&O8K*kVgV6GZ$+B| z8{coOEs`W;ZE|53xHj?|2p3$pLcL2MCB`9^$6*2B?Z(BhFF405$d6c#3 zFgkbjRX80UumxgvLu|jGCu{yie}lKuT#OlO*n?#bMcIU7J;iGVuJ7-zjX2s!NGiqa z>vbVEd2whloX}XvP|CYnv=$m?fL4egjJ_cFN#c#I)D_wovo9bjy1VTmqiXBb)jFiD zG}L}qtZ}8(F-*9Z5n<0P=X^oaZ`deSRyBO8QN7pwh+>p5Z-e z#U!`b1mwhY{SI0OZL#nX&Gz#o8BZik(q4Nc1Nv^*GLOECy3#D&-dbG3sr1sh zAGHhLt^ZQbe4&OBr9QiQ-i*UbL&r4T=h(|E6!O1MGZ8RlKj_ndZ8>i*HWp z;POfc+iWHXRGf=s$hQ@C;EC$pNH3#TCa^tK?z!d!m?`Jw(}PQEQ;e_Vd0w65V8QVz z-a9y26%xzgkVcXb3v@haD@0Lv{zhw3jGr#=6>Fl|=`1AI{F;j0@o%-Cjp3)a$Xu&; zepIjiUGfI%(k6c;is1W2WlKW|=StkTo@`8v zYW0s?L2e9{oS;eCJ@5U1Yhnf}o_071osZrdTGZ3^tdFMfitl5+RV7GbjYn#b=-ovD z7EHa_DznXH-VaxC5nDsmQPf`0l7~DIsDAh`VvX^(4T!u5BDz{vx_vyoT+gRpA34}- z9_wX($HfM%#vo8}qjVm#w;-RGW4vIXekSr>%5Tl)(Wn(KojFgxxP_^nSbbNS~frxXN ze$A$gV03*+7!#E^Ew?n+@*{e2wQ*CxNjb*mb!Ex=t`{S{SKt3*<|sje(`SfHzf_be zli4)wJ4$X#K+7EJ%)K4dxfji59SSOY>wDC+23}$6>ks=QRZ2E-qb^BJsNZD7QO*?+ z;0+TM?MG(tBxLa%@G=TEHEa%ae`C?#pmAt}|NN%@NS9JnVwX{xL%XS1vh}rcn2sca znRBGXLvjwk_llGn*Yi3G?rn)5nix2v@6O)Le7YfegGLblXd?Bk5Zn!F#w4x3D0X67+= zS#+j_DpB3CUnIK5b@60iEoCBa2PnlIVrD`Th=jB#Ekb_OYGygJ_8r%(i8D(}ecDvZ zVqS`Wn!ScjjyeRwO&chP#Og&*#7bScN?M~~&FM+J>x@l+RPdy_EQTG$@c ztvR|)QmcJM8{GJ|36-<)j1!jgi>ha~n4&lso1wj++pvz7*2QrlH;3V`Aj5oV+P2F0 z_#d?4lWmg;UTJqN$b*=`JQnwJpYd$^j}z_MwOienu4 zdf;ZP_lnk>F*R@KDOzlqXzpvuZJ}Nap^9Jbk&nZh!B>t(bG8oFZt-(zJoar{@d*)s z3x?)xzHP5K*aaMP{#?Pkb&d0OQOB^-fqa%rTu+Ngv_ z8RXz3oXnQ2b8f0PnVAw2Va@t8_*YcCMKQ_SMcR+ON{2f{j$U)vQlTYJgcSOvGWu?~ zJ;)Mtbr)`97!%DYp)wutF+a?Cnm%lxL=64m zlOw!rhTBRu$jM9`#mGmc3|$B{EzeNNDc(Rs^#ZJ4R=Gmf9TpzVQQ4;j1v=#pQUC<6 zQ#W~hG{VcfiYw;$zMD-bu9Vl#(@?jcWQxTtI|R$so6;xduTS$JhF!GX(_V9Wz2J&i z%kh1C>~fpKY7m=To1x?W$OT+DTqGdUVM7WG;#{QgKv%Nn*hf;Fkjvapn@Sm$*@F6X zm`l>0?$w}q1IR=k6EWYAw<>QlL!l$J8Yr&qPdk4LsWj2aH@Dhw`!LsA;mZB+dgDXM zKUQiY?D6CXviFo2BVF>dDll)8t#=Vqt0B*|KM?QD9LlmK6LT@jjv%Qc9@c1x#V~7OKdTCe=5w_7K{cfPV8k&LUhfZ zYg$7LWK#If3#kETxw8)shfDTsLXy5ziBrFv@pU_4(~ry^SJU!S_RGDBo-xyzrtoxP zdGg(C)jho^`;30qKb~(($CmLM3)czr9`_*yZT*|rl1|6$7NQ-aZ*Il2tZCd#(?9?6 z(hm_e&*%s?@gD1*uRcO!(wW_o32LI4l2Gai3=ttVnW7V;6grP{h>e7@aMKtspOolV zUPH0yBt8qck0ItXQna!h91QqWBHwj6`xQkeLb@OYVUc1U73Jg=?u260*=&jbH0PF7 zYCuBbWml4c>68c>7uE)}LAK3h30p&y88+E)Cj*Zw(!+vGJM|~8RzDf@S}zGdA$P$j z?`Y%^X0K;*4_m`N_>1nxmPyyl7q}5ys7^jk(b^2(y7&(oM&C8LA2S~%Q-)3J)ufo0 zHAwa=V5`E0m#76yw%nvE^HWB|wZup#2aW8c5R{S&y%ngaB$-h$e6P!bV;SGa0;YOD zW*d|}w7g86EHydvdmX1C0 zN=poXaFluPu;xjMXio3KN@q?x>G!})uejNW{>MwgOyNEjqY9_^LZZERY)xDZnr8k{ zI9+;8E~UGJ+~-wqnd5hDK1FdUBRS{$blx@04iN^SpP)j%_1$k|4tTs7GqO=Y%enrf z>TY|jcvW^Jr~p5V6tNPl-fiydL*+;aOAAuxFn_kD)bFk2Y3sLb%syyWkZt1AU+x=oq1Nc=7J zOR6<1R)>Y>qkv%HOCy!_x%pw{OVSyiwNO17$^zWgs3_|)#48@e!97aT2gYloTq-F! zeMGZ6GitIOw2d6hyiRqg0K1aAIKnxH?V~~E%xOd?Oz~%o2>T=lpJWC>XVY4cq;RXc z3&#EU`>fmQ+X3w-Ih4X0YsCRGmi~N`_>+CklVe2DZ_;89BRfgB(|?|cG4L_yNb&gu z(*LqYUun!}Y({^<6=qtvli@ojYA+!woc5O-K0MNy6TH=YWK($?WTkmLoY6<;_Y~C z{8dGzZu!!K$0_-YL;;@f2f4*9#RZQ!qr!RRGBCQe# zh(zz9r(c2z_2+vIjrk38KPIa(JK)~EW4HzPQj{WI)6Y?}-6Y1W`kywkaDNQ`__H$H zY$i4@W3iV8PBw^lgYiaao5|O&sl9A33^DaL!WRy;sa9^i*WBu~!tZfmfttIY%R zW_?bnTcwR0WQ7yYb=~Hw?mFs57vv(EA@gLOTg*(yU*^v+8!dgneE7``t@G)H@f53ui+5v|jOLC`tL`+D4`!k`G4CDQ`HEi;^XRq=~ zoC-)Sks+Z=c7!Kipif`(#*MQ@owawQ84@*8pofo%3-vP zQHnLbyTF)?UzpNrP-?Gf8mK3U`U+N-c@J*o87Tm&-hgxiIVHR?2J4iKh3YPfe- z2D5vCL&ZW;r*v;nIJT5v#g_-l(x@S2m+<{O(OCz{Es@7=owoV58n&-(Rel$xG$jzE z-~C;0MRioXQs%~FVCXPnFo(2cptoxi6z4ACA10l+PyQk*fU&%n&~=pWC)jSu8{lh1 zUTSc6-u!ryag9e*E<;tXHc1SY_NkXk%MY8&K|Raa^qd>2V$@JML!cbw`9aG9GW55T zLiN<$m2XA4#F$8!D#1f4+@bS+RTrk;6FEwGk3hGD-XbrQ{FKXl7QKq6)|TUdGbFoj z`7PbyF^c(>*&Ygg$)O>C8QPK)Ic)obgGwrUa)Xi8(?WqQw-4G~{6(U;ao)e>_5AlI zMObsgijpb}@!t+H;tu}Fw@iJf;OIPJgZ#q}+BlKuK|tx<)o{wxbfcGiL&qpcWwebV zCD@Bm0?_d}QclL7_tQU*r7O0A()%HC^Ifmf$bC=t?9q^1jjP{Q(<)QyF}%=Y{swkv zaz8!v998m^!NMf3M>07dC!P6h)#hx?VLp0y@OrmVm?B$v0g0%6{2B$W_Jhm>IoeMH z1ng=$Ot24lqO09t#jepx-_rN#DQRYRO1RNn>Prd-ojiVJEolwT)pz9rsrt{)U3a)T zNJS$>-d>*${lW8)^?b_o?sDdv95W*&KdSlBkpLoG5a|dVpF0+AqtSz@4@z>|Wuavv zzg+x|w#o)?zxv?Pbz{PFWmbo%^|34(mwUyH8ZbLZg{7h& zarZQT>C~IpyG6K`3^no_1Qs%;i7F!~znSzZxu zl{L~+8RhDr&d#$VzuD`6Vixt1YjXo0);n1@_4v;7?`hoEslKas=>aetPh#n#sJ`|l zN;9_wgK^p2C$}onNL2BMX%BV)=j(R8O~mb1zn9!m@nfD~^Fp)!>IPUuK6tnd_SkAL zu`Fg@`7?#^cmmgig*eRjEN>7A(pV7>wkK3GTZw3eMjv5wi4wBOWnk$F@tHwCc+o?u zt{PEueYGjDL5*+ZsD7JxB#?;sCN>u_k2Tc=c+REn&0q0M17xOd0MN)}2AB5H#wFO_ zOuLl)z*hHq-wcq=lMo=|J32p!h)9%mkPrmoea`E?`gW$h`IFbxy*Cihy_(FReaH{Zp1s*TUh}6ijV;4h$}`8 z=zblN2Y_ML)Gbp>F0UFUk*^eHU?E>__aY{6Ts3vqCi5qt^HzgZsDKVr`85oRhunr^ z0W4XbG_VuKvSayYxG%o@?H8vjNtgnbs~Qzge8t6@J~uuPlDz49^*LNKOb;-dF>*TnPiM8;r-HA_W+>g%(su)^sb{S*fu|C2aI`N-A6=KzW{)y5~$I=0NcCs zRTo0E4Mfi48vY#mZ=@SC(vD{ z3ONS2#ut!|dhOK7-r^ky(YymNc{6zrBXiT3F$Ni8;LsRUA}j!$R#vfymfoted9WE5 zTM8Z@(*HESyy#j2>9+(o50JBsQ z;NMVw7Qw(##7LBP8=;n1Fbt?TN*xipM>|)_EPs#M69&{@71moL!13qIP)dc`mQHONyMiX&j zo0SA$eFwqTN1n4n+N2I~qVb#>oD0?>@!au< zNz@AIQ_Q?I&8JFLh#!OdJ3@e>W#>n%7(q8_Bwpk2n5XqqcVo#)xk$QkTpy}$io{0N zPappVkd@<*O$nZu*tld<h|)~w zNz!zbYpMuw{&y-nslS3B{*+{io+dS+urdrV17$_H)pkjoZFD3@re2uNEPE`zyY*Pe zQg%-ynIaOGX_!FrtkP;WK$&z!@>9L7vM<=m@o~15*GL=+R?-O?+NCYVV&z!HQsBn2 z0^o-6N;I)@1bSFc18KBu=Qas8_wu@t$gppK%_;P-_@{dakY?556;0k*2SOOrT2dCb zJ#}qspY%Tx32SS7jBJY5y(e$v0@x(gKmaG73F8&H1M_`yHCYF6QH1P$xtat?Vle?I zUK`IbjD+3$)E1jHVsblTO*2F z!P}w(I;nBrk~Yc2<)R5-nyXISmHf*J7rRY_d?IR{atpW2RQsD6nkDf4Aft5UC8zaZip4lGtB+gYB~ z>1KbL3;gyQw<>_>)G<&4Y#f-gUlS5JdgAifIX>>lpQO5QLj8_59i*kq8>KPC> zZVG^X$v<<~(p5_9=#Whkry-COYKK^d@WY4;e0SMq&z0e?PTUGY`*M@y%?F3{du+Ur zvzR`eK47^?9B+9ClntsA%zmF(eKsR5doicsAUE(L4u_eR^3K7_wmPy(PZTkrIy z`0-cdl}J9Bjw7gGUP-}fpqibelosRfC%D0>%-%quVICt#ut98+_#G!vY(aH)t1Pyj zu?olQH=3`j{}QOK%(&u9&IztAtjd=#*>m7WpzC$)dC5KN!p}q+q!af1lPbin1gl}5kyzL^#xzJ`?gN3t>!{l( z)#SOy+$SgTPa}vDnUerIXq?Dcp$nn81~CkaU=Vi|~h1 zZTM$!ElR!saC)4Q*nMJe(o2_|071GC9Dj@WLNycm$!kX>cKq=aaPMy*LFsKNCJ&2q zUIFkGP8H_A$2bt1BkbpA(6wv^$72zN|CJ4-$9XQ`ke=9j~1L7|o{6 zU;^m;&sPrX62=HCD&Xyu09%6X0hgZQN#m;6GHh_rn@s;?1yEhG;zZL;&ic9{X+u4= zm*EE@jQ6szd07T0BOAzLnb2P&Fm!a?j$k+QkWyC;$s8xQrq|!svCv8peF-YvnCEGE93Xt9MT&+TdXtO>O{3?2+fY zH3KOJg0<2cquNOA4Uik^vdAHj4JJHFektPQ)Z|a{hcM1GrpuGn33e#%?;+}!>_{S4 z4R=}L$>%veuS8Y@pC<-=8zjYx)}e1fRwVvAi>X+DqS`zI$kqEG4V(~HR?g#^_Hnml z!@Hi>VuNrB+#KFOkP1J(L$OsiG~TSeOo^WiSYbZ6L?ovuI#Dq;htz*v2D|SE;RcOw z(x#~r*n6??lEQ#)&`#E?-fK#Zuus?x7?Z33Cs=Z62bz4<5sB5jG~1Mgu0aRWDPvZ% z6Y!FoQ!m2lSdJ(;R2f_>*ce1KaP_!E2H}%ZKnkkeZveym;Lq>P@B6!6q6TW=6>LGM zbkEnK0Y-lSnriZlE{A52a$}UmzmL~Pqn)Tqg?^BTDwzA3@Kw*_zRIAxl*f3{w4cUP zMu>Wg5=JO!gTHG>j(hK-oqmbt0IlGl4loBCb}A@6i2+k_hziD;p2Ll z0WO>#l4w@Bjvkc#(4gJ&>@OJ}hi1!?Y#YHtv69>q)Gd^_Cl{urvw0Vf4MyJ?IZ0=~ zB3{;9Vp%U1jo-KnxV2P|rS`;59TRlDkHsru#XW)WHp`VwW zcjiiMBsVhx5BSvWR)VeJLQM3W_@1YNE1j`KGcP@RqD{lXjSa;TrH!IMQrA%;Os(#8 zVabfD_>Gt;}iNY^i*7xR0fe~q56i+CozUBzS#UoXRSq*3yLQ=LmJcgoEgdIF>B3&;_kls*y5U#gEaFlnipKQKV zHR%Bpl?Jxt$!piC#G&g-^v3wj?E&-{HG+F`s{y=4+m z(PV}S?OuQ2a1;G5rN&$bASAN$sz0qUO1PFwy~M#M9sRy-*Q8gXSDu38I1{Fb zg1y!i+lgz#6ZqCO*t=IG21KVxc13+%hU1m*_ZS`txXv0v54xe4hdu{TjSpdS#8m6Mnx z^iHEfkqe7+yROs??!#WmwSA`#9^r;U3sQuNbC#G%e$0^sJ)K&355ynaHeTB(5q_(l zWwFnuFbMBwh+diKtzi$PoNEKZ3E7_V3U-cxEzg2NOu=6KNw+*X2Pt(>Ovz0D_naon z;Z=6ctL^J{x5>Zo-z|>HE_>ua@fB-$oY*~deK+8%pH{fH6w&QsQ<+V=sAQQz3koy~ zt*HnPLV@3Mvcw_?XbtXMpF|ef^&wWK=U$p{7P2M zfY@PLo)#Uk(a#nCM3ZrQdNY9RIp25^@pi4X`TKp{kmrTgfuG%xH9vfRTW-$OwzsS7 ztjoTCv$#Y0P?!DcIrFf%2gY$`Xi{I!O4x6+jqCOeL9souN=Y*$fYCqSQuF{mD5P7t zL=^&X8GBo*2P}~b`$lR&1{@pKy{dNv*d09Hd0EsD3>Qs#T$%3)0EId@c|~sk99z9k zbCx%f47-jX>q-1$zME>9T<#mkPuQ?2Tq@k=8f67;e;o5`3zhl8g-3NyZb!c&PZ2)% z@v}R7bGI#UU)$=j)ZGxLj=~?Z2}vk>Qn4HxOhI{r^H|D-7cj5zJ$NYU z51;kmco=>(cx!~Ou_s&y`3(3x-Kx+n1Qp*&9#0b1Xr*{-c!*tqVFP`V^9J@WdqmWv zs@(I!ZmHD0z!XGEHPwvId-1{E^#A zduYv*5aOQ`udRC?5tm#3{<(e(`woa0Cct8AY$%h91|!mWWUYflFk(-v{VZDmc<%aw z?2~^n1FCki$kA+HD)d=HN(7*+T*a1_=`b@VbMt>#0CiX8>=yt>fyzV_0)B<-&SX{M z^)kCibS^?3vdh}s z6jhSofUAHCE8$gXVI!!{ZQ1Gp8{)1eztAHn-=h%aL=m8~|NdYUF0{@JLbC$}HdSM@ zT?U02cnF*bkZ>(;)tDLXU;G>c1F*OBx@!ThQ`OHPo;P#e9UX8EB1oBKw`Q5=2we*` zte?4sqR<9LVlFF8C(5NhDYWRIxn!74>X zfqV}SzT{g6J{EqaLhk1SKT@cb3P`>TrT3gs@?#)SYl(~Rb7|M>#|r+%+>6yfNS)(H zwvbSjew7cLsydq zus+LFB65y~8cVZpC143nuf<0*h%=8-uq|0|VJIH zUbqSVn~xv1$>Doay~|Si%tK|x`)EC%3JiXHBd?3%ErThga7lvWJi6%GM{bE3rv@h*0YZ_55tm?yFNno{1 zN`^h<@Vg1aN54Ett5JhP4>I=}#3ni#Soj8}4>Eqsd`R%SHtiiV>uxW>{d(~PR&d)^hx$7KF?a3*D zgf>?3tU@&n8o#k{ihUV8Sz! zzyR6bUp~y1WWrO@eHsjUsBh&QK9t2b{WS$Vc6fk98js7W5}2@OtOZ#$=jS}NL9rI1 zF84Q>%!Ed)689L6SdAK7ZEAr6SltQ$|46Q`z_}IqjiV9rdDr8(I8^YIN;@E}D(;VW z#mDlflpQc3tvbGOM&)8BHtS&|HP^Jx5WNc&FpPgcde+i3RcRKu;bAiF&*SI5IibEN z=uO?43qVus#rGdQfn{ES;A*mk`E~*r8kPdyUHy~*cG+A210QNwDI2%sJ6i$N&j+DNhl1@@bYV2@*Kr0aIcTN2PqSQJ&--{pO-MZp4 z{$+qk?5CS88Eixrf2awz#{L83Y2C0Z4TJ`R+d?qOIw=+8VXxlMB24Wo6Jo7_kD;z& zm4~W<6Hsx7I3riThL4XqRrFsTA%WP4sU=UU|Oc+<#z z1~hP?$pZ@cxic^h-g}VGq>hKF-1l%E_<(cbbLDed*nM6Uv@cegxcc5e3>4A0-Jn>Q z%dj*Ae0H)kfmX^l4Ce5kE|thmmKs!y>cK{|(DH#U1rka}7A>;}C|fLgVt{0x9x(bd zga*d2Mi`~R3u%Re#lW+YHJj!DZ0Istks_>2xdF6*g!nV0;BFxFG76@LwMb2Sn4!GQ zgm(%i_uS?+0)9w#IG=YeI)a8hXdUPn#DzSl^SL+{;G|m1yIp_)@dcXJ^G2Y&w+>`k zwLy>?Mp$o*m6g1YM6gHhXx!}JAe>gU9$ZXRnfCN-$IEu$)*MB>y3xf|9f^JMN>D)w*crRVG)9K z0Bc|Tq~)<0rbm_oKN9~G1QB}w{_*};c0VvOY754jN3O`P~J|EVzi|#)H?VifNZ7>ZM9a7kCHA5pZ>pe@iBH@3*AdD4-`H7sA z-8+Mw2 zefH_Ovgchz#Q^b4T5v)jjR30ai7JbO`xsw%|Rqeq* z>HqLp7gWISVjlCDcZAuyN=)5H+sF1#2cEXfP!GevTyb8BcZC$$2MYR61i<+(xfb$$ z1%^?qYBbuC&%PYoeBU|aWAc4;u4L@sf#l5HS6^%P_*u3jdadu(dCog1^C&Y&6t*7E2YkrWr)|?-=ja&E=~lXmM9PByXWAtbvbZX(VIdAC*uUy>T136gHz+|tMudRN5&0W z+6WD4Aa$r^-DO56OMTmmfSi}1lIuIO72oi8X9XF!rkD^QD2{?%Sph`C1l%A+Vxpn` zokG>Da=37ZuJGeRT@2_*;>*6}IRXOWW#C{C?PV&Qp!xr$gChBzOm^c2%a>2lGA@8V z)(A)rwbYzXTl?NW)P@G7vZg^%z8@mz=+H2TG4f_xIz)}n3a*i!7epEL(K0mQz9Sve z-#bY-lMB*vYSwDifuehuGGxvLUI(iUVtYL?`z!q=Kt(FCPAo^xy@QT=x+~=o_}RQk ziT#Z`Ry0C&H~h6BZx>A}48N3DSg^{DgE&zzxgF)}C>=YP`=Ff0n z;z(vlKhIZq52lqqJ>k5)C;b;kpm1#nL!%X{7NFNc2K2s>Jeiy8E22UN^Aw;3@CQ`6 zI@akqXR^Z~w3`2vP0NDe5C`BcaK7P6YJUB>_ z={IK@zq|$k@933kcCj$_VnLh)HrTINXgZ~O*)u7z&cTaF&E?=eJ z9YA)@5+a~@M5(xqhF;OFKsRO-FkwCdgW?=`jME)UDck$qD!S&mDm-Z~3k^os_9KO8 z+{j&$_>O-6c5*o18n3L%FEz$eo>9@}OnZJkF;m>E)p#j7F_S+79#5eA&&uNFm}*7z z8{z79#k)r3MgpM5lNtBsjuRDlSV@R!g6&m-`E6)Mh)Tj@b*=(;%00=+#p9mFyLvvg z`9LesB|D_)_PajFYVuvZW9AsgC}cWO_p=;mPf8}=A?8A~hrAr&ZG;|RdMoNEU<(vwlpS>9l1-p4O<@2bCM-}Kw9j2%b7{P|EwP8ILe$KG zA3--!40OSL+Xn>h@7LXyQOurbF@Pb_8P3~>dkYN9AmtObnLBL|^edy$D!Myz$?kRn z!5smMjm2 z08wJ%wL%09YjLC|@S^#r%OFupSO19(msG-Ic144Ff1l*eI#$p z?CTLoWNymJ?4Uad@l0A9kUfaJA4Oi0Wkfy2lcPof3;pGozYeIg4eKIC?qh?-atu(4 zUi%(JDa4zof{&hJ$_1o$8UqfYBnFfaMoM&50ma5En;@Qx={Dro9f2fR!T$BqdB|a( zLaJ4`B5YTk>KWq&m`bidlvK1B++f`H4zFn)A=K51xo`|xt@-FysF$DVxrlWHs2(sS zfe=s@<^p2EYdtx`_R1{Zb9u<_xf)3sbpkAbCImOA(DbuBZ-^R1))$8~fhnsdpje(m z<#*|n(Gq2kHTmRAi+JT=hLA2Lkew3@)-5L^&(@&OVGnPo_YE6@Xm+FuF=0*HMCuiec$vOl%gGXBY5R2I+`!(s9|5{=^{+T> z&jBh%)E2)SqCn}@19Q%^FpW?MeZ+_Mcj+m&z7*pu7!KXy<$QhkV$K#WGogluWC!l) zoGbEsPe&}yKd4A{m1sKn(A16qFU5~lkQ5n@3aAeEDRs55H$iT+1^Gb}Xvl{te8{5? z5ZA#^7V-XUJ5m%E&~x~SO5}AB8Ta!d0QH{{z5jQk=(&TY=HOH*_tpj4uDi0PKpJg4 zLLIAW{+)KB0>I`^!NvGUW@>0okWf6nFTV&g~(0 z1*K{At$nYKbTj#|W4p1^l&KaU@2)sY)bAK^6L6Q+ zfuB!9KctfpV9a&FWwbUZUNx!5X?IyB`cKT)#O+m)J$F&M@Z|+AUp&CJK{@DS1iZ6| z#2*=X4-l6AvaX?~9VMs;%42>sm-?<4;tsAETRG45mzQ!no=-a1uOi-+qSt+#z`}P{ zUAp537-%X8yqaQYjC(4^^>h=u z4L!yse1UC_;k*Lq8@hlfETfdsLjp|9wJCoPIEV6jdA7|!wl9$|JYF2|x$NiL)&1<6 z;J9gKz1a_E)LKkoQ6z%}$I;0W6JaXKk;-AL0$=T6vW$ICAOB?Y7`S8d4!}Mn-@OwH zL6hi}ym9)1Ot_jPfGQ6Wzk{=WykwYQw+qN zswTia#E!ZxV3yfXI$Xd7FHHv{^kq&CZiuHSqDY|C-EisCoTTw!X4h7$3%D(=11qKx zg%fa}UlXB-I0pCLzkxWuB?6T%fmtSpnkI8_<0&weDj5B1ULPoK*&9)LJ$Q2NP_5B74h;?C6diU%dqG|jYA7YF(xY=zjnhu$xBHj+?fT~w;;%+fa z)Uf%rTbz08KelYVd2dN@zs#L;roWm~qVUdbZ43R$i*Ks*Gm$f&+LrXAJhK?j`M zX-_K2sOb1$NNl5ZEX8r=k(QFxbbvUx+azq_5!DW-9ZBk{U$ErR2+3{riS{OkBS?16 z>VfpA+oNcuwA))H_Yo$oPyr~G4ZCaUaoPt_=his(eLqz)=oPvUQoTw)P0vO#)r@M} zHFoMGGC(#TK3x2D1eB8Pf{_&7K{5!95*+MOsiZ4GX?CHXdQf=0eVr+C!GJu!_~Gg1qV zJmMQFVb4m&$kwC@IHxqQ~g9}5P@b(LFRM*$1cVjkS0es)3AT4UG8}^>>o>} z`;fV0gQSkW@|fvQ3a`3)WJIcW)D_`64$kNk%-?lugn_YhMiwI8$0IaIYTt8}LVLtJ zV{%YC8NDNbMyWEj3gNS%mM?wF&5yv`e5h_R zuevVRM-I>2!cpO?WiNqlaJvzAI zx_%2;|HNdsy(2t8)|a@%JvW06~17#hRx;t8k0yZ%z zO3^-ilQ0@HNa4;=61SrhO{=vLXYeL-&}0%PF)NBauK>~=x~6Tamo@ht20X~G7A0GrwZGr3bXqyD2f!jIP{u$sX#XwS5yZe}+pAroln8qbD zMPLlbBPH7`y95mH?#5*%eiWPls!_G?lCMHhtb!0jJG>kYM0?XpN|dp9l_^CmfV8-I zzJ%6@#c46zNM0R4f?3XbIcGD{{U;VV>oA( zxf)cuBqokM!|e6T1V=zlZ0)t0!aR9GSaH`q%`ZEFhv+;Q4y+~^pJNT{?)g7F37k>u zp4Wt7eT(F<2h8J%Fh%d+w@7(RtRl1Tf-N6O(u56w8Lw#LE>;*Q4b2*=!XgZ`Muc@` z&|l7JCjW_UH@lwqvzIa zU#8D+Eh=K-dRdn`KlGB1_cMr}<+x3~jKk^kOYO==n2nLBcg$4UICu}h=-u6Et3|PS z++QFam;Kn~GC}$dFG^%c<#hRW1mS5{w0{YU@5$kysJ2Cr^90k7C<&$ON!IWi^PbM4 zNpo4zsL4g&!GZwGt37ZVb`w&eV`Go!l7la0n!`dNz$mU49rc;$pOtPsE;ES>bCeHU zD!Uz4kz%n*O)s`O-WiH1zq!9{d|%v*LV~{Ev%~w3U@!B0u!Kl74@b(!E0TTtI?nj_VmIJe?HESkmJ`w++ZKHkkU#& znO0@3`w|0af=733<)0%-aeRCPx8-C-J4n$r#G~OjIiAn5?^35~O{%WyW>^6k__2B? z;KgQN{h1KXy`1lM1h#KeouMSL+{p+;E7cGh3aY)+IL&paQ*O4H+z&YVWxywlwx1bnV{U!*Y0GDOQye%&+>EegED3~~ zwkb24nh|NcaslWxpJ#!N$B#Y|7&4({;*ff{xF`Q0)t~l~S2e+kuxn2VBhO36!*kIW z&)}A(znwG#2578a<%BF^N^Qm8CFD!8|H%H57#rmjgYZ*N-beOCr+$72>-EEjaX$xd z6CD2pOOIYAfu}%6+bv3FY`%leRZ-c_4<&jS{cE@jN}Koq zUI5l&h?JvRvLT3+nQ>tZQzYxW3REKxnKC`iX$M)jmc@BV^Koo~l)K2gUa6|5sdZxA zcbKfs*I|U5Vz7)DAmAL%j3V6MmR22sXZ18t$d>@~+xnLZuyO9C@rQ zqRo}+R%BiaIZ)U6nfj(EFry++OTr~-mNo|)KQ@YvVMr@c_24SyRw)uHHw^z*G@ zc=J6*f*YW{mGcQ<%1D9Z$AniX@*S%KYtjHV8?kU6U>>YT!Z-$V;AZ@Fr;lJUINANm zQPxLFthon%anyU54>c1Nh*93hYcqt!5l8w$LbIRv{S(7B;%z{1EWl4XM@P<|v%%|q zH1!WGcd|RQB*kloW2)V4hh9* zZK@IDf4Kk-b1foA_~#?0CandePV|BR)S#B5Vx1-o>v^Rb*@ux-M+6Ns=%`E#=JBs^ zCw~R^=&4VbmM)xVp}Li-?3sdY#X9j5cSq6NlzTA(4@*Gfz9H+_6JI9V2{iV)q8}&; z-<|OJ6>8G_8UgxP%Ke{dI4c3idX1kZRtlgDZ*caIoFpFLM@5UVv#QW#qC2s1B;qx3 z$i>;g2)>2`4qg_~KBt&s!Q&!3oHgl?2bTwd$rS1sRUOTd*kKcFrx$SrQ!qm6=>M8jGTz zTV(J+VXI9M$3R)D-fVVn;`If*fT3vu0W<_(9M@u3Jj~!H3k3i;Dclp>=zq=J<9?3m zmEmM8;q}(JUB%Wjno#!+6~~g$^T(mp^AP3LU!n@MTUbzHUr&O*?_r>A7*d6E5e)Tk3!@Tlu- zTZv(e@(%0;bU9mHQNt?pU|bwI_e^+_{WJK4r&Eq8mTk|Zldj~LjHyP?y{}$41|B&p zjzl@sPZ7irQZhgzzU(>c(p0fOy4`Z&u(ir;DckbBGD;Co?RADitK3-9fAw0RVFD8T z#j4~n9M65NTy67#S?pg z)*Xb@I_S?&VSWQga>7q6>V5KDeO*c_{%XV z&!D5Utd>kgWpHW1yN`_f8EPe~ky%eYl`eDD`6j8O?vflXBxGwH;B(Q*vz%!JMA<~= z-N^gA&9Aca7`^XcMw@N2fi~)48trZEEoT-H=TCp7^sbULJpg6kcC@uc|rFm0QK6zf)Jp{KN9nh%`PbdZYc=uA9eGXJaV)s zH&UTWF1sDUW8h?3gNNZXlm*n+tUJ$jJ>7q zI^>Tf;qjK3&2+KK02OyLcm$z6U?^mbLpF*uTXW`ikgX0DtFjB=o}u4w^A~bh${^5> z6b4!Dtpn7G`W6HzK;!oZ%f^8~w0q)iQp>U^ z3NSn=Yyeo$DCp3}T?DcK*z?~#jm8G_d0+f!0^?l8KpTs;;?7+s8)jYnojhngUrE3@(cl8WmzUVB{VpFp06vJ(uyOoteib0V9n2`sSmx0e zys#&e$cdm)p#@n!tOHjH2bzb?L}-AIm=jp@f#5eIT4g?#1RMzkU`XnqhcaMe!|(72 z()nxvi-{Vg7XiWA<+P5VVa7bI58&_g5~*0U11_J3S@yt!DP}~T?J044uv}lKAr*b-3T(Gzh0XuE0AaESw5wPC!t#EDL#PIWRd$tw3%LQH4%0?|hE7i%of-fPAnmv!0FA?* z-h#4p*cJgkGUQFKk8DSqyj%d8L#NhxMIpE(@&k}sWG$bDJ(FIi8QcQg$v2@keQ5!g z9J^8rPpk#LM0iZuFm2tVta-VDP0=_`dV{1^eFxIt zm`mx_6}*cx_l`L+*OmZ!R$BB57&AIKxwU87Z6UW^uDY!a=bwwt0)vMx2I`$Y`zXD#50ISnZYBZxpP>L6#|rJc|T;2%i*8@5NZVOxYA7FsVG@L$YaK+xrEo z>HG>MWp1Mc2%E29AD2^k?2>E&T-0(`xeIEIcm*Np<2?p9KJ79Co-%q!I$#PMp-~{e zsSS$O1ag+p7(FftN-vL`x2vkO&qo08_p(WFGc;GCLh+E?y4iP&|DJsYrq%Ht|JO*} zFQ4q2UT^t?dAzl+Xy5rbnRrAYwsK1Nn8*2tcaW&MYLmCk!na^)g?)gl*{Y(5f@bVS z&|kS_s5d`XaPVu@)pL1$cW4LQ7pQmeu}n)7wtRSz8%&FFRAAt z8U~n91XpO0S^z6R{Y?bWOn!L(YcDCbF>i8R6q9XHic_0P;wFdf*$0(mZm6I1mJ0WOR*z^ z$TXHz{(zcO4CL8mMSD0fDaMUlq5<^vl_3xPcAJAB1{M;U2#f*I;V*kEx^$@{^c5Ue z4P>CNkRodeo~hWV-dR9`Rw+x=80afMI`}Ae=k~k9P^4iWuOT%d$ZP?P2>dZQROpXA zsiD(ehC?&*^Lg?gppt(WCJfw>)E*R-{9Y9Em zYK3HT{V3GNZ?n%j#E=pU@iGhq^X%@nR;EzxV1))!$N!Pw9-TZ*C4sUr$VAvEK(e$? zNlt7Z9i-xYD@JY(TpA%RB*5Z^*17dY))X)qZ>blc(^FykA5RDlD*~;4le=VGPk~XN z><@_O@dPSe$i)Z7SwXckp7P!aN{09GJONWg8!(ec0VOT>M@Eh)p6c?SEWaeA{J2!2 zwJ7ky?xTP&!5pNY#2FF}@tiEpIQ8|vZGNnIFM)(vredKG7pMfIJmkp3aG}Tj zZX~A)Wimf}5ZjXi4n2W~E-hyd#Ipbf%Q7e&YeC?HU??_{^C1)tYM`}-sH@7u zQbovsog%f3tO}TMv1wAb@5T|28E_xKh;ayLJE`;E?Xn4egal&9|MUnF;WW3q$wFOL?g(u8q;EA9oeu@j; z4lN(UaP|XPFgF*sWRbYd6b^Vo@+eFnZjVJQ8VckCmCE}vHI>6ml0dhg;lJ%#9|L}_ zUNms{rU+V^k>~W1S1C|L{FxIx1t9RC*9^x0YCfw~|oqfp5c`;Y5uHaiCIi)qR*AcGR&Q&N8jW(R@PqZqjF;&11>Dnsi7R(b{o zX4+@M6nuiA?-J~b*+KR-meSef_UZ6MQ2_5k146c@K(4$!4bU@#lmKx!OC=uP{lfws ztF?{-3m`a}hboQux9}bKe~0rUq51VxV5qT3Qs{|pvzqmKo#hDZi~_v`BX(#HgRcui z`7-SsNe--IW9DuLe-RK9qz)7nZi?|C>~5_th!Efo|yo zPf^58ASzN%e_a2^H-Kr?PD0D_Z<}@D^MjFWR|?P{cIx^ak8v9c@X)Fu4UFp0=9=^@ zD2QYoq$a5YTMU&TlkNAee{;4^CLy6Q z^c+nGq4jUWLk}k@0}krXa$}(xwm7X|VIh47l|)MYOeCAzJ}WW_8kN^FeiMuD3jAR7-PzYdJ*kD9BP+v^j!pvb!kuc2^_8JG|Jyfcbf zu|bF!fAz+}jlsZ=>*cBOlA8r%q&$~J^$BOn24Owpq&FW-CH%16Bx}wM)Yo<~fi+7f zOV;ahvc@$>U@?mo-m{+ZP#|_dxGJ$7FE0btN$jz2_UhA_JwRs2Z+1Ya{r{4n`B(m5 zWiDpi;EGl9O#aIOC@mqwEiSNu?H)t`g_q;(6}Q7y{&mwFc?48dYE^z;1WGOeM!P1IdJO8F^Ur}`z=(ENZ9Wx9Sk_k zHVMes7y`yRv#Wp_wfl^lZY`+K#H|Qf(AbO8HF+v8L0J${%%WKk1*Mka(WE+2&7*=l znAV}18GK*vx>RFQ`X5PHO$I5Nu8@ppKFXxKt)Z=SgUcJD@jQ{ag9m)Gw1tt z-(%Glq>^#(J!5yaGL`iS32I_WujRP4AVEiC0Y!J=y$-_l6zfcNj^iS7V5NOas2K&7 zUu)opfd5iofVdjkgfL_!4VC||xjSt*%Y7m8{+J3kL>B-?8e&kcz@Q9CBm|NM$kpgG zfZzkAaa+)akGLxVHsPoQCS_jnXc0n%zdQpXmIy)$i5`KWJ_RwtIrYWh<$QlV(6;mfdl z;2xWW?+G->MPJAtcfDaFy*hxNA&7l^Bk z5!Uml&a>4)!;zMY5$1FI$XYz=lTO{@cBk$RasF3rlC`SQ>&0*CtEIF2_%1MOmv$(N zZQ3!UvtCZsNV6H$$nli=sSO-u#gOKL^g!ft_3c?wQMHwa=4goy3v1(xUS}S^g`wiB zpH+of&y>$}D1YYI3?z@0-AHY<7^Wmoxb*9mYHaY?YhjL;7-})GdzFk|KCdNI+*e9F zYZh$P5Y;VJOaEzeMNLst;?ariecxDB$YqsHtqeC(SxWiY2|``lNz#7vLg3(#bYtY& znw^8=Y-VbCQ#029hmo!ucu%|<7ksXym{j)TYO+1a3OjwQ%&;PrM}Yph(!uIut)qK_ z@PhAE&wTUA`GobfKi{A3(kVB|b=PAW^8P(#yTLdU5S{IHRgD^`bcERJ-5Pp zQ{CkK=Y`9I9EPNll{wCn1Ky2ux36WNrXn)_gg;Z&WJ~4KXq+^^U#@?VMzuus`B>MG zpY5|;JFzl(XU)y8p-79V1;y=*W;S!DoptS(C%qW8y&7thV!v&p4bJb!aMeYXCpmTq-&(vp(>k$!_PhBrGY=kq4pnf=P-Kj9ZnU%2wiUPpF+ zbv?u0@G{7oqH=qxbfH=3SAqMISV-ku-+Qik)VDTb$9S8Pce_a_3e5K^-=!AOajROL zbl|og96j+tw=0j>xl$ezlI%P@xL4BRb>PSTQ}lGntFoWHbBAr4ayu^BBQd!5T#UCX zD&e^64JV?*JMj9$!^TF`LaTL;4KLf_%9gF!-`T|ap?nuRx|hDo{o!*;ns-aB?JGnc z62D(DHkZz+ky~0MwJu>}n8|z9qFtEj`UZzFP?RkDPfNfS<-uiSMG=jZsLq^W6+HZo zR}W2Sk>RUm?F;~@agG;UPzy-8M^THJWB?GwfU27XfCU*z4v+Fg|2MTFAAkATziOD=bT$I)kC}b5wQ{4}XzVjbEa=VnzIO-a9p!OA%q_o3F z_ttsjuKm2tWXxcf&rVB8p%QWZeJVZORkAU8V~*+&A-FLT!%1;ERHoc9OZ>AfJim&% zG@6%!MTn&>d?i#$2H{Yc^+5B_4|NMR$-I_g8#?WY5rENty55^7m4ztd8v2)4Wo=ggR_5ByfvI+47WFw(+f*I`fl z=lV3E*8dq|kGreOVRu)(*zUsw=iN_TBNOBaK7_|x9-r90WS6b?w5O3656N6bh9{Io zFJLjOB4&P;jhH0a)pLIFGN`dkNxf=+SG?p@W%0T@weXkf+KZPHk>N={mzavDcusUM zr{u8YiWwBkyaWq8m1YkP>uqgk=y*=p8NW`i+LZCAE)k>_&XjtwGTIWS|GRygg8L)9uGne-%;iMIq#(tY19{z!Ns6VGKwf9ThMzKd2N zVNA5m+{;X(9T7XtujZq+%CPepZz)+HhnFK19n;>wzNY0GkAi^gsdVm@YAT{ynD|Dv zZpM41l#{1cL^bndHdN~H%BV|*O5(}ey|$x>IsEV$Zwu`NDcsMQy^DI1a|Q<;zF*#N zc`2ODMjpgCwwxRa>+h5X+IOtoJMgQX^?pdX)4UaN;=tG4{O35v@jIcyW8*F_LT>`i`m) zSKw59!__@2XXtC%QJ}$>g?po2g6OpyvR^Qm#i{_jmU!&bmZV?Si zlpab|#YjiN7s*{E7?|Ul7n9vjyvwC+9n{JUiQZvJW30dDX3Obvpw?gR|0zpVz^Ypv zZL^NErTR*2(xk?4 zsd5^!CMP*n$C68bEneA;XpJR8#wdYz`ziClHm%s19>BG^6a?ciWB=eV>eRJTd5dNnZ z{G-9itV5?hH_c-;=E*FkFW!&050>jr)GRN}5ZMM_ghx&&+ma3R>D6mlJBu-{VkUZD z%RYJRE9*JyeNO3=&Qri8{j&bu8p%;)zOTUdg0MYuLROM(!;6DuUd9S9=SHy8(BH^5 zSx2u~ZjgN{aqUvRlo89C7VBzSU8CHfY!?bR!eG_EU#(fFqP)V?el#U+*$sxI$^vVw z=r$F9PF#ATD&>UWW;T$)0s!&8PuvqhbUXf+jQvm5wvu)6d@Q1>^Q)M9hF& z`s+P>dN)tjt)AKdabYz6=|!^FptCmuIebOpR;%C()rd{STaz>Fp?m9X-wL5WFx(BQKv(Cy(i}U@G z-m&o4=%W*YdpseR)F;t|WqZE|-IVIKH(%9nPvotA@~iB!JR9wfvH3)PKB?#C9?Pk} z+%}iQezQy5X^|tE$f$yKaS<4bh}n7rG`+9CbXlsUmB0j1wH8UE18Hi^96&ytC$2J^i`QaI!lp zI_oexpMI+UbtZ09{Ylem_+W9bXfJv>*oUrTdhB?|UQ;gyfBkrS@T9ZhWMcRC%o`p3 zlUd#JlUc`pqOBLTp)Zw8PE3CMS>v|LTsIhszncBE1AFL@=acEULdNwiwUE8);IMa> zbIj$J9-&&7QMY9?U5mRH6#kz1@<^9B1hmj8)ScANdLNYjvB}_3?F=F=e<39k&Em9k zbuep3z7$c|ZHfQljf4Gr9!8_R^c~n2&J2(1;Po=TXX72+(R{PXpQ(GqEoB?sw_F3$ zkArOTs@6tJKD-8+e(m-;|KJDc(yJkZ^!3FEewktS`J+OkDp_#rXMSB%-(S-QXxvJ>R6lW~ANnY%Ds%n;y0tv~j}5 zwEm!q!u1LC2POj9|H}n%r#|jXnoc_$pP#wl~jOYVZyvE&E~qD#|go0Rs!;AEU4S%rq}L{}`Q zgcT``N;9D{%||pi*(>RVe$z&eKE%p&veR_fB=d~7yLD^SPjnxq@DvD+36FjnN^s9Q z9d*uPRYSl|_KCQ^U4W#$NNe%f++e6|>GX?d|5h@@+Xf9{1y9+<}B& z43vTAE%K@`ut1hk{`7!rhIZ<*CvxP9XuMRgyk*S zS8+EjD%A}pl$7}MsOEmHoQ_iocavSLN%6eT$xib+)4aPwSozCh6n}Sz4Yx(kn}Os9 z>@){uUguU$r6v9!6k%<8SkG-euu{xA>n7^jQVWwhofu&cdYk_|AWZAzP5K=_Ly5)r z!PsM_bAh0GIJGd|;+t~k8bLsbM6|88`J&QC8U4IJh>6a=jadrOhCHEo5cotF9*%ZO zytqrnJLODigD=GR;ZJY>Ao_k$E|E)NX*)w+2+`>X75~`Q>;d^Nm|do0bCFeKhQtqp zOzK^})fL{=Rf7H6%tB-B$b#!3LUu|#KQsfjmXnsT154^(m%&YRNu3=zdzppt+dd8_ zvx5CR+n<~mX5t)o>@1q8w@#=m7Db->?R2^YZ@4z`Fm?-lTQgtTXMZ(aS7mFJU%YiQ ztjKb6A1J_RI54zfgKK&A>yzy={(MON2f}Xg(45JTRhAqdW6^bA(mtd>+s?}A>sb*h zaJ={~p_|*KJo1Aki`ajD)wVVKa@mHP?L+JYKjDs#{aLJ`KLM74EzXg6e)DnE9*t_p z=v!qxeZftAnU*j2(KkwgDa5#6dx)}5K}fs<`_%YNW|pM(=^%dzWww4{j)^r#>h4iy*JG+LPO+s<@Lvtn7Hug(ZZtS{MI`> z&wqPI3C!*(lUx%VzeJq6CXHpbb!n~qY;fz3a#oPSdw5JZ${gx0|6bMHZpX@u{X~ZI z1B`&6vun}r@hai_hc8jGinASQ8o1rl@k+{>Me{{FR}no-#e9ErEk;u!@E&rIy!O*8 zq1-8OM)xF zs-nc0b85x=$rubSIpa#`;*(IlMp zJ^anp$8;$5k(CZ-)4ZrH&*oQf{S%Va_~Y-MD(^|=QL>-1$@LJeBPze7a=dmq?V!m> zXperwpiy2jdar|#NR5lEpg8CU6RUy>!Rl}?v+aPVq%FIoM``MvD?F;KMsOr3&a=Jz+ zAM4}Q!J!jW#5`eO5M4f3R+T8>_d@M&MgvnNA#@q^Joh5?I91^~V}(4}_nA~OGc}9C z2MG@*HSF#Q7{8jAJ3I`d(fNp?<6Qrv5NT$z$;-}p=xVRlqnh(6A7P`~vJQGW@QxL}rDEotQ5&y0mdN0vsH5Q+2Vt(_*{?kiGL$BXVLvcsYO&*RC!mwmvfF=4wyXXpY#>N@K%%h=O%; z4~$`m)~}}8xlfXOGr&Y#);pv1;WNvAeBkel=5C25x*zwB9-!)O3T%zvm@8yctaj%& zl^4oAclJg4@L&9eHR%!rK@c7n0E!!)Nzc9?KD{%vmE|Qs&lZaPY{DZ;OU3O$1UcoD zRo_0sS+9B%9UUj+NLS58_Gv+ap%c0F6v1(KaF9JQfjI+Pq#9~0Uh28J#Nx}o_ILHz zgufGz*VNxMFvm9Mt1mN5nAMroV{&Htj_;Z#3>{V1sf8{$qUw|`y~W!d zyI8DRdW2qU>PIPR`vD=J-45toF+0g3w=0ju10)4TNeKwFMZ*(UzMc!3zt=75&BZ8f zRz{9FTogQe;#B;mFGt8Bb6L}l$FJ-F%WKhRbctTPH0NMB@68ZNs_Ak#opW(jt!|WF z=W)X8^rA^C8QRaLnSZ6FcvRBHFeoD7I?@OC4ZS(Z)*_zTR~`pNXLD)v3ln8K{=A~k zI`1tU<2emdvJ2DGeiOg>QY7qsS|QSocYa^JEQ2;iRVqW%tAt%q7n!Ez-4aJh5Wp$ z!oz=W9D4QhgHKRIULVSp*DXdYgL(G3HHV)}%b)|;WXU?db9ll!2Q~*KnSVF6pYR&! z8A{GCZ&`(^Dh(VxF6t4(#1d8PfG<_JS$mA6jCgN&p2&x|H zR>(h>+nNu6pSg7Js%wn=eR$S=f5t{mUldt(A~u2Gm=4u7G$Mdxv~*u7P!;|={Bngz zsv4VT`s1%BW8XEEh6x_9gs66Ke87$w8J5TKM#Z8*SZRBRpB7>F^b;x;Xf|^B zU+)!%dlb;W-kNHBoYSzhtmURTtFm7>J3ZyCs56)ktIEk_Y{Gw+Q>eE(*l>~pz3zSjR?>b#@j47;@-B4UU(qIZT-f@neX z(FLOn(V~|qiJEAmk3=t{*U=ITB3gv#K@c@+bfQP^-Ffn@bKdX$+gi$a?q~0PU)TO! zUBI(P$$j*t68Nhj@T)D41MW$~>h_Pt^;&luWt8GOo7+BDqF8#+i0iblIG{X^+*oW}XSSDHlfkAl@{>Tcy~6`eteO zyjghrscEvF+Qbj|c-5$|P}T7ES>N}_250TJIc)ZL-t$q8WUorcu~ycC-1Blf^lu6? zZ+)M+&)QeGQHoDnyQJCt06-HvuN%*Xc+3Bt|Nngvh)okb0G44Ft7AX?{njprI{-x5 zbVo=dX{hl)N-gfo%ki?EQ)^XK zB`tm1bF^9QJH8I_ znp}f7i_;?iu|@{-RbHi^Lm1wk0EpVXbFaa%B2ppj!>4#}7&7X7qw?@eiI8k}TIAHi z?AnbRH4*vCL2@5Q7FFBtwfkVXFb}}7Nu8$cK1*H+vb9aZk**M5p&<6(wbZ8$<*N?L zuXBKJpZ5^}H*R+pssPDRxEKCmKOO z?>-lEpvIj1nO-!t2S%K+1s#=>|174yX^)*^=`fY^f{iZ7C;NHnE_Gq+5%KXWv>)&< z{ARe1Bfap%)*+O|=+7KmacX&}pr$&kePi%W&?qVbEg1$UlQTxL@k`UC9+dxv=HU+t zm?R`K=?9WRtSaIeN=306v68FBWl0rCHXOTs&~k*eKc}ktk<5x>PYE3ZcVvBszE^8P zn%~1$jh%ZS?a(z*_><2HZ%2-8w9$ifgNg@hxmt{yH#B3(eCip~KE66*41Wrd?i;zm z>GNx%m)Ja;(!0i^*FLt}+ZcJ`$P+!!oWh0?wI;VJb=ZNLP_==3daVjBOW9ob`O#NI zG^}rh!;=5cn3RaApK1+yL8=vCs=jWyMzJ$ucrXvoJEj<=_Oc#4Sv^Svi>VknKg!qE zLjfgdL<8X^=hYWrwH@<3F3~k-Cg7>UWeES$vN`LOiQ{Kz;L7L$^XFU`}ykY$GKTxMnj z=VO|r@{5Cyij`niXNn03wz8Xr!@+^1&+sgv7aaTLxaTUp2dM-e8+vOOUtZlJcB9E9 z#xYe#1snoDW2(jWB93+MNhl0%zG_mRYy-E0Ptpo)AIz4lj?xkYPJx)4!G7v((oDO`6UB7rAL;3pK%#X8hqyrY_Dca48RUD$)cVkJeBRzguy z7vj3j*TU8zje7v?0@B);w;BTL7ep%_2y*DS2<;dU8O>lHr>KLqcw z1I?0zJ`X{=MO{ct_9F&vC0M@rFT#KQpSxxtBiKFVB=Lpc2*aF>f8-(sab}TtgF-=H zp8Uam3H^a^Uw`UYo z1(NC45XwRT%fTDkPO09ZJU)k)O%B*IdM&JpP+whlR@@5xl7f@}kf&0RQxd+3Vsk*=2865_kT3$19Qf zdR?Ul*x{RH(WaY)`ThB79al#GFvKN;ASY1E>|P8yacO4XDfQD>_qBd6@}{a zdBNDjGb)Zzj`6Uzim9FWTlj}VI^&b{YR@+G+X+MLLmhCWg*6FinAVcg5o>9^IAtv> zs6thVdx@h`by=dC#~E9X7|J$A<~weia;RA6;)XbnUyV~=% z%f9*|6v?&b)>LMZk8uHya3PF5bI{3QwBqLK87lZ3umLcU9 zZrC}L-Ah|JuJ0XOErP-;;r{Igtbf&4GClQtSrEuG51{jU-pgJsRz(;W#5tdb{O3*M z(m~GBBWT;3WOK6h``hw9;Gk!qo&ki>fYe6wbIuilQ6b#-4DPD#fTxvH_PhszhtZ#NrwUQB$op*9zB+f`&`wM>ptAg*B|dFk+&x?fLE|HW~9 z)~C8&sTE4c87WX;cbW7yG$|(b@xP%ZR}zA8Z0oYJR}=&bHH5Sqd8$PG_^3H*zx1_c zP;q!lVU~b{wKR4)o-9xCB-&eja#D!<^l`vkB+@F!dv{D1zvnbu-K<8) zslq+Qo}AY&C3F=qxeC$((Sv-TgG{9H;j~0e?>Na$mDn*oT_`^tA4Hb6f0t zGaiEyH7NQ|FKlOEzo-{m?~d5Hf7@*OdCINA!VtXjGZlJNk$1i*%oDRp)Ii)C1>vht zm)6BWFk!k=lmS3y6>`@5o$WbZD_3C+Io-mxCAZ^NLC{pMCs<1MiO1VdUiesiF5Ru7 z-SRmm#S;T?Wm2A>$=Me8Jzds_0C7kpGJhr$9S}vwQWVM7Ph0ewc~wZ0V@qUm>o>c; z*rP|5&-0h9MEPgu&rr@zmv^gG2@X59%Q~Ur-wE=81|Z;hJ4r*LfeYDH#dF#K%!uxB zgyZ3;${}96judIDqh79k0S)dZziK*N5hEylS%34PMM}nbWFudLLf<}oro@_6H ztP&S^^xxpm z(h4wecbM`V9yN~7(Y~oL5{K(xP&;K6uX3yiMJs*Up>+Q5)=8WMj<_QYCBo?9<7<2i zTxBI5@_#!4`slwRF4kc&odeQXsi}-wl`)El4&&8`Ue>FcHM7p5ttsoAoDnJF$A^lY zlsyHX+g>?u15eXlG>xdbbn@IjiKvv>3Z3CJ=eQE4=9~2IVGWMwB902yP5=Ew+%PH! z4K`!0x9mTCKl}6?g8gO?c4z1;U|Y){x7xFyDFH!&k{Vuq%sMh89j-Sz$YD&*r- zJyf-)Hn^4kSF+3SE!V`Uvf35GlAqO)EK#rgtPuQGbnNI|;R^1tEx`&ikw5wX&oEr9 zx5**N(H6MW5Vt}wfg*tO3^M?M((~;i1d(itUUZT0<%{6QaB>XH)4pKU!KO_rm@%QO z@~|Ti!-nXfN2lN+6&^a96y&V}|3t1|g-$LF-~7LX>nrSmd@HqAT#FH+jr}PaYZzja*WO*=11~*G`q5=2uKNI#&hG3SGa7wC zhnbn8FR!H*G5f%32j9+oVD(`+SfT8}6Z}}kD$DM$-#+eG$%CGO5mdOMvnY}+u6~)) zG2Yay+Q1&AgPh{RC@cHZWgdamZHE~L!i^`)9;)cRna1HWR?qtw&{(k^z5ekUb)Ypn zrML2f&XRi^iZ0dRp6`~DVAwD>YOD}~pVxZ%;jFp`VGCj>!r|r|7O$TL0MT@KQ7P{at0N z1_Z~@kAAaGl`=f%yiH*bn%M$&MbWoc6@zv*oU{)@+-;t=Q34^u^0c=bO}Y{`+M(}1 z<|Ey;o*3#I$xu?>uTlMZU=6NRTA4cM%5Ps6~hN@^@6EeR=3$d6|2%- zg~W>addjN*D!}(hxM&^ctAG?8tNYoDJQNLQWreHrEw+1Hu63c*-vd6&(w#whFOr=Z zHF@t%y?dgDB|P-(w_KQayu%bcn8$D^p~q+2^JJgil+Vu(OLW`ks&>+O4o4L?Dey7c zp~Jrk2ilwY1R*H9;um8CC$1c|jlrm)hokCoR0a48sy@I2w5F82G9tTV6;mSWTIjm1 znUdr@V#fvgAX9llkZ&DMDU>Oaa`bNbfVE93uXw*bGFbw{&_JQu(Qxev^D3ILJ{_Uz zcT(n1ymZjDkp*ftx4KMFeO9jMb~yok)S{|jay-qGlgN`R>C-q$P7iszEHx3-q@e~| zO5wc1=Kc1m!M;SWF@o7pLVwgWgD_08jm01;wK>*d!mtr~yT4Nicn^C3qiN25-umsO{Tl3ZD0!&-CeL z1^6rjw`&7AlcL^7(y4O1op_a(tf%xVe%dw)1yleCm;0x2Rm4%EuH4`8lB4zSaRZ*V z=g{nU_x+=$T&T*YN9GY|R$ZpwgQ{`L`=Ik0&)-DpEX6b)w7ZYP%5)W!biT8(>OY&j z3n?VPuo#gaZ?K))?19uLC2O44fbrvSOxtb$@MnmRujZkMkQjW1h1u_DF{22Phkp#h ziaOshTc+@5DrR~)(yQ9RCXKa+d_Fbc8Y%Ii#ev4LTnSw{F&#kM7z^Ze~FG!e8+ar&T zkf9_-f_+H_RH<9V7Pk}aIi`5bYOtW1D@g_7PHD-2S&>?}{@9I9=qzA_FA zPaepdAdVF9yzAEC5o37cA5k4|M`nEhH39~HgKrD5z?4SR>y$rk+IA4a!ZZsDg2-~bW z(D?w)x*ej^=I6)>G z2Ia;!1*<|&|IZ8X0ZjeBx2Z)RhAH1&nau{7C;0?Itm1S-e`)(B5u%%$h#j@Hcl!Gu z4QjRExCll}vH=r^wv5A+=WWBhN=dN03s`)PE~K7pk};3x{=X`qqlDAL6r$}yzpr+X zYI$epp(Es$Aal3hlK;XSA5`)bZiKW7$*}q25Ci}6h&e1{tx#Jp5aibf&G<6@6b{Tz z#0KTS2(4mV>G&q3!tyhn-fTJxLrFi*eH(BIBjjplE2#)}6#66?)GNI>LI#x?Xs=NMu~2}fD7i`X#0c;5#dpNkSGA3PE-VPW+V zP0g=8rQ%MQRP0gj*SqHddg#cO_Uu6=aP3d9@SU)Ha;gAkU;CK4wBdUIn;~gw9-y@8 zJj7_vg2+m_=BV2ey5K2_WxmtPgW*cB#i~enrB7tGU-cTHht9EX3*A7IYz z6E@4hG-7GpWOM%XzY7gHyIjcu1zakD!OL{2`<1=y8O{YvOG&NPj1@UP@A{pX5H7HcQJJ5=t>I>+2L?8NEda|NP=dw=Q+_ ze|&ii`@%APGu(_JHgi|^fDb=$TewmQo$@{DAt+HrFnu5rUeOC>_xlUsW7g!?`4CoX zXcX|kV^KNqwT3@T=0(CGw=A5Jfjf%MncPfds~H!9s*(|J0z37-C()XH~(mUWm%tqu%TJS>*;lf-DP2#Ny z2QtC+M?L4GuuG6AvrA`M)c9Py{3o@~Vs#iuo%0~UQ1%K8cJZvX+hjPP9g2NaEOXFR zU$;FrA;e{ByG?nXq~s-sG~S%4)@`P2+@*yUyebFkjDDGwQ-y2J&WO~#@UguK|Eloh z@20pml~pHI_INaV*9FQ@`%~G{InEEF9FqT%Vy{-d6bY6CBTEnS?b(mzcB1O3zL;~S z6{loCm~Cx2C1_*|IAdo%R~51!$g%=|OF>^&s zkY$HOia{b!#(}lXbF;}n1~j*r0a0RB z7>|rT(wH9;9bI!mq5pJ|wzA;xp3Yu}=DNCJs5qX5wP#z$D*=tll+zgY z&B5Ghlfe1@?M?9<=}-om5g=c^5%2`=LB=jah|h5{WdG$!s-^Nfa5l2GnBO@6)AIpg zf1W@iLxfx6uut7#3qaW>=17nHn!O09ySfCl-cc+9g+Zet`@ycYPDe!?uUhhHzEqt}NX@f#=z0m{Bsd@6uKLdh+Kz+(OP1(-y)=9*w zB_a%C{P|=kxkX*4`?dqWwHB>Qfk3njB8h;88=+5E?wgtG1EUkyOA)~2dO2%_;EPL#=iDCCuju_DTGOxY~vs)wH(Pj_fVn^djrmqeU{wt|rn5v4Ao) z7waxfb&_pgRb`%ps!jcN-AB|d4u>f=C^Xx1{3fxl=_>}4y|TLPT7g-55TXs@K3jB> z5Fjd+bR1rsY8s2cFN3u=W8J^+!!#SE>ugH2L&GFSg9>rW0+suf#MVXrNL>vnYz72= z8e&|gD_2+jfRfhT;gj{_2_mw6dLCVw_N)`y+f-eQBUXTy%a=j#se&UeWB2nw-U|g+ z^&O*=(FtjuFmo`H8N2^tdBn1-NTT9$)Ld+O?upB9^bGrXulOqZ*rBV>h{tkpNwx2C z`MoH-jreIAk&LLAzsZ?|cIclzsrsA;?e}01$P@TcdaeupwQ%G9H@sAXkJT@?6AIaf zc5+R;T}VU;RzaAL>qg&YD2`r9JU>&s4jq0^%gk5cEscw8FPA>T?JwSkzx|w|FQS#-a z{kmi7FP(*TmLChl7cb>8VVI`5M_N?Ipj~BUh=+i?@?&_eE0qU#MiI^28j^5`aUfN{ zbi(Fj#4dXU64-9{S@2=(^-%`0Vc*2uYu=g(FhKgsw*R~5yX2YP2T107K}3B>Hd{$E ztGF{ty0$zHcs*yteZ#TOm);5ti>+m%T+mGQ^rQALqFKIP71;|N>d88x*|()lVl8kv zwLM_}rT6)hWuK^klx6(v$s*0n)h+=41#s$L^W#{x;E8tmT~3^RXTFI?F5G2yy-l?^ z`onzdeZYLX&kWlARz%xBH>pPxLEnpt1ERC3Ehe7MkFP;7$X^_AAV??kXmjjma*f!# zroDEe*Mrsfx2W6RHJ<>qn?*>`OV9T$N+&>M28Rmsi}Qtl%IYGTeU7dwHPQ?tFc?L} z=k6zDkoP3;=4!c{eFXp6OmX$9maO!OF#V>VLO_81j^!l-z>EdoyJ3nMjD&sg>F2*Y8mNuErt9N}TzRi5y-sGHRlzi(cE%~}} zzf0PEruY3^wMq~kK*r0< zVTk-uCg(c?USwdt-LE1hDa^cR8Xj` zx4y>?1u={TaM!&qNz)-oX{Z>bIO8r$%nQQt6rd zc!(EUqhY9aD?Fmu!@C*g_8tvqm2s;;K3)7;AY4_K>@$V+QBQ`O=?eGVXO1l1392uK z!`|jto#FlS8r16@7WOhm83He9#Yb4lFOM(*cwRg@hp_};m{56jf@y&1uBPiV1$~!3 zJteI-a&}qr_5)83N28N=MUKmGK=N7>CahMJ*-%JoEoMtf0#oHwLHC4;ja4|TU?^#H zV8mDyN7L-4blRDbkZQyRm{TumPiFbYwo&YImAM~F zYey{deo+Rm)U)lZ?JqVz=5J2wmP47ZESf&l_${eC#le@q!rUAc%}~D$>H2?y8^Aez z@njR&diT<7Xuetz_;zOn%>{O1M~gSsmZtb{UeEu&gVxjZ<$|8X6N z2m&sr=bu7?Ef}mHRWu&-&N#iAZ4dYSUO-spzPed2mdgyf&Ayqa$5LI@$_q2TH{y-HXWcuK=zRfHzf85> zAUh!Th5bT&mtsWOLP0mzcqu%RuD7jNk-*#uh!^Uiv;7))m^uITO|Nj^ajE&6F(VNp zNZz}u4%wUixWf7#&uVJJ9|26>jL{g@T#oZP=^mPK(Ab@=P*#O^54FBe&)>W~)%f@M zXE&h4PH5Elz@N&vF>-}QkiVy!r4?`Mb_A{YWl!q|IjZdk2kUB`cva(c^EptzyuSo?_L1jZa35S(s_hr^NuLCdY z`!qX`{=7-@{gfyH7;(J9y^@z!=;{TE#<@zB54}(lQSa9guZQ%K$$FdAYEbIL-JVPw z8^fRO7rA5IMi*9=gZK3qQe9%`UqaNUzo-eO8XCzE6Bo(K@X|giYo)8}M=s9K=i)v5X-}?4r?q!xUuHvYbF>Js$E&*=Em9(9Bm;{6tj_u6M2_%mrVd=$>EwbU z3OW^YBIP!ZFE4{fB`Uq%{_S&-s^-3i^GU4ClJ*2-Vp`+8MqcK(aQpeg1ihF6 zJ@QpHr6gBb)>n)JdiOv*`L0Aclvb2|dgKjv!LYs86HH_DeTm6XGXadU3X)FnqHWoe zmDR#*j&L};7@pt(?}ZlEPuA9Hr#%a2r_3Qw@DTV2K`^S|?v{SCqTDIUeBIFFzk7WX z7s%bX`-sC_&l7s3G5xBC1eXU_6Zcpws*>#MD`)mNO#cE``gI{l%W*>w7GyEZ z+7)>KkIn@Khud$LE?{yzO&as8?ecwq!HG5nA_c+}`l_!_18==*)EI3l=H zYfmZvJAUfPsamV&ZjNJ0q74hnO`p9?q7Qw@^N@Ov!Tz@dF6+J=5(+^-JPsQ364D{- zU8+@NS3(nzzDO`l^mKXM+-AUguy;K3WFU{X>I0oACHL_2Q{|xTM6DCrGo#nu-z5qi z*#0P5g-USJ)XKkdW*}&nCwq*3b;Z;Z%2p7~BwH*_7$c!b83Iw7wEqr$MKBqOz6ZGr z`1H5ckK4?g!K?og`%DgVHKd@*`5||cFdqmxG?;>n<4rA_C~5UY|JhxH!|yn`0TDSp z)GcR9siReXL3k7IWsdS*c2W%n-9q?!%=GTr2F}aeJ^XQKQu>Be%u_S*$g12xxGTYf z^m5By_AfYbPW83xyGpxs_RJ*PCN~A6?a z7;sL+l4t$d1*4HJ6f5>>-vA(Y*-%2M|T7)VN zM&CEp7=m_8t0x&?b)RF>Z3O~3_=IfF2eH)MNPUY358~rZ^eN>) z-Ng3MMK-h3 z5PcVh+`;ypAAnhg4FgE&gySUJYz#dX{MG4246!vv;=e*A7)l60d8pZe5$qTY7KudX zqdHBQGT6B1Q~Ev9h{U=UrIZAzIp!Kbl~qmxn~D4%-~AY3yf%U#n-RDb4izOIl)TJ= zr4K~t)t(sFJe0AteVWRNxJ8Mr@B4ro*!ws_+3S74GI=~4E}4EenbC{&Ric9}T>N8+GWxfoGm z_3x0rzKL(~tAERSfE}o!>mCQP7Tfh4R%Uw*E>zU<<6BXNd+O*q0<9c}6jhm>=`Vyj} zV}tnII`2;Zlb8cXFaj5=scJ#y?EZIfp4`|>bXAD#=(ya>M=aD z$E%0D^(GGKd|bSGg0>-%_XSvn=>0!GpwWUaalGS1!4N6>L)d4n_;m^c2%2D~y|vC& zuFpLFvt#+Ymo&&K4D|Aw3@vPd;t7upLrLr6e6&CpGLd1=_67nWFeb1_BXVM4M^MF! zSUdnNfzs5Nw71)ZfAi2|oeZn-N{+NXD<9l-MkzA(YBVzS@OGu+F?|hZe2#m$>%Z&w zMnJyxr^jP+$cneiD$QL7LLKhcO$pGN2a*59*8@*61)h6AOv))~&Huba>9>fi(eCHWR4wA8Cn%LZw!hhphvP%u7|^b+lv zzwD12BOm|OF}k%LBm3-?xzJ7S*QzBmi=wY=say2^GR2ZuwJ~2TXWTmR=36gQo+TpC2Ol1-SJu;xjSV&$n?#nQ%eRH66gG z5|fv-Do$(vKvrt3^&3d8!*rJ*Q50wm&@S_+W}xlvNHr~XGrqy8-~9l6uO6#2fgDO z0(9|YSaWxoVD{q#xVnfhyY~G`!cz);*1Sy;eIW$9(L<7CvhkSY0}k>i_qc3m^C@dR zgEV`4EwqD>q32T*8wA2x&oB*th649f5mIxi=O02i^0XHGS7)LwYc#{h{3SYgVt4w~ zzBu064m1IBY-Ke=Cj$?<-N)T~z7z1ui2n)td zY7ks?m!n3ONoe;9QQ3B4D>0GS%z`2kr&69nj1BJ;uLUnPscOt>{$jiiUE#m&^r<22 zmLvv3(#A#*1V@e@G(dR13PS7U$>=gP&yYY%>j?^eJhbf9-P`4>q`i%!i$@}-glFE- zO?R=7TnPI6#*gm8Cy9+Ji-Igs)hbJeaQ`oXY@4ii&Jc`Ql|ZLW{*DnMg(L(Pg0e`$ zyGP0Nh3$Q7x*K~XSOL>+FAiL7zG(k$;691LVLS+bc&IV<0H>bO51ie|j3fJ}m+p%` zUBJwl|9F&GoLzjbLc>$LX5)7qcL+3JLdaAh-hb?}rL8EW5Gg}Mo%H%Lke83K39942 zTh<2E)`K%DF<0W#r<}jrWT1;`x`~QxI0DUwHxRHhDHx592(^?tBo>>A&t1@&&sf;4 z^CDHbe{?Ln{5zdA#3m;dMfJCPfZp#uFpxGBYcF}7`P}$aL%x>A=#>ZlNPkvEF7@j9 z6lvg@LTc_uAs)LAM_Zq=Vgf5p4=}_szjaV_Gh%NWhoaaKJFj{V>`Ncr+9t0MneTtm zvi~*dhSnRSwscycQ0@8Re_a*a5(UWfKmX|5I|==eV;Q5^6Hhdt?;bGUAp5bXHF$f< zCLum-kVAxr(ITD<+3;$z+fn2qG);H=uPF)MDFQiOW;@B!+%1UEkhb%8J$W)r0 zDH>C1L&*K&z?Ak``8W4;Tlb#yv$D2B9a~M~!x{6N`Hnv9Dc_lsr{wp+9ITTNidoK6 z)t#V(j36i`D82bWF9r2E0#zThWAj1fIVU6;sJy*W*@^WJAVV(mpUO>S=T=L9^jP(H z+N~hWJ+9^2KQ;+&4AaCSfFF9=E!f^wgAocJ)8LqG?b7YD4NF2X=?gDpCAr{%BFd$Q zB08TXBxqe`xD9)LBP;(rh&M^&k@Xu+?pZ_tay#_&9qgkepM~=->%{;iTjxdck1oK% zNZ>(x+^T@a8L;9P=BV#Wx1e+!C!%L(rQy`Gb|S^B<9Jr37j5zw7>#AG(~?V^Mvj^; z9X^z&+E@EEDN^=Dd8xu>*G$6G{+9wp;@}Ivn9}ajf7&3KjTN3)j4j^sj7Ej_VUqML z0S|#3QWh7NwOM2QS9lUj(w!)axI#5i_FyZQ8_>g&WtQ|sK8?4orJ6&X!aDtyG53Uk zblm5be@fYkdt0fSgY-U`BVx3VvYJg93nA|Y&us2{XXyFpatT4ccg3d6!#4vBR-kEP4%x{jf>cJ zGlLz6bbDTxuIkEr9Td0Czh?gQF3YIzp4zhvAEqgeZS%)|J6AR_{FP<8-@9Tm6BDev zR)!fDDY%B?@%E?^15G*Jq`eaYG{e*3^)IXK#EcgDwqjQz^T{_Kf|#!zOH z0~b?gsEjD3#g`<{lC=Y5H)bfhRCLRCW+>+FuUehzCBStUxP6rgDgg_!AjZnR-rP^1 zrDm%0%S|=VyG0ra@+LCI92pJ9@QYP^>BwHq!Lu7nqDICuK2x4lVYgNe)ePYe!Jm%{ zQB2Z=0WdyspS#qo;cV$J^ZQuFvk;<_g;M#eL3HsM=JuSKy2GcIC_eSwQQ4jlW@fdE zPU?as&7PBnZHRplb`aW{w2;z^OXnKG<9#TNTl{uGLP23TnEnmsf#tqlxjYzUpGVhm zf1q-Xvhg$mnq&CK3#h2@7#8zJqG+UE#|GzpD1slQN-4`{B1ODmjir_Vj+gF|N4|0+D6|> zFxUJsF+8^B&8G2?jH}#M){SY+f~4%;wbVzPF=C^T3TBvME_4Eij|zucLjHUISF$n? z#q}SH6e*3+!H%3Z|h2y*lCX(5%)Ptedvs zvhHohh|Uh9k%9#P3{5=<9t^cdaAVJ@0bCk}tFeIVywm zkq#dNL&`a`@(OVY8H!GyRt~t}0xVscRiWI9W#(hLIReMb64Y$3tN{XcurlX1Y7vQm zRc%rvyYD9RSi)U0qn4So3qK4IYtyzc*5?DPdhIOT^d><9KKPxChxkv#x8fdYqcQm{E5{I%Q z$UWazUEy3`bOR0tUd%eFmCjxD$qhaCo1jO31EY`)rZPsJYx2OjI#c5B?p^okjWujH zl-i(7Yv73^ze(8A%m?}_*s4>QL_vpL^#CZv*23cGOkhc=2xE1khZEaD{FIXN?RH+V{CAVm20h?_ zDU8vxXq~i2V}rEXUq6x&g#Rjl5SDLh)n4NfCM%U4T$a#Tg|$cO&&p@i*Mk$FG+}gD zHM?gVkbmwf$h|EuG|dyLX}E>O_nMQXL%`YqIB+faDe@;Lx$2nK$(M;Cg(U;hz|UIN zJBs!O76#Z1&JJafiUmChq z^Us!X#C|A&!nGwjpOZXn;%}o@!{wnXe%MBELGTEqMbQ42Xlu*q(&pVR6x>{K>t~i} z!9Tu-ZYdxPTRT{FNs1a3TNw0j33=RlTG57~umBIe>u2ykR?=Z6P~R<4T=dysU%Vt8 zt>QnUoeylsUuYgAn4}11T@6*ko#@XLQ^_m?pZP`ytt}bJWwa*9>7RMMY-9@5TH@W3 zZukBy!~LSpk^AaVPxa$U1z4Dk%CMmis*ujW8Z&tL0K2@F1tH-|62nNbi+{ux7K0!rMK^Y+B1h%WMGzO^BxKDR41Ia@Mg-dPspc6~Db75)}6eK~C+t^ZdBS#UkG zbHPw3K+dJFLAw_7M0w?~v0k|~K%Q7SvqjtXoN%ey_Ix_)02H%bMwz_Q(wJ~_&%vVZ z^>vp`R-uXj`KHA-f8~w;o6zZx$!$luk|vLst_g-Qty2C%YfhZ!R?xRc{!bU~Fu*#hpM{L@J8(cDII9#JwRI%r=x5G^i~ zpyFl4v8CDp_I&WTs!l15NR_~m;XO^C?Z=_)n9L`37aEO)yF%Ue@77~^EoBvCN>nn% zo~JMu*FPGuzb%u1mtL@Ca=E2NU3}asdL{x0Fe?3t$poAF#cWuwEU3wsLk3(fiXqpvQ#a>N1ss z6~@}=!+?!GXfACh1e9tlNFjbQ7)<`*Ltb1 zMu%JT^Cr^5yxJYPhL}SR{G*rMx5a-w$#eDTS)rLznU77?FSqowFB=J9``1o79Q-yB z>U#Bn@VSo4ulfmgza8n1%jP7Nk=sy?nwMme?FnLDDFVYrueHCvn%1tQ(;2B>L+U0^ zIW+xxH@rA?h~Yr=pzIaTe(UO0S=%E=cYu>5`8{>g$=wNV)cl-ffk-C!X%k7A8wF9d z%iYq+zvr#Nt?#?gc)b?)=d^8b=s|b2>7_z_hEhW;5^`~`Sg1aqS;U*Hrd_?N6+8-8 zCQsc>WIPciSZd550Nqpn^Zm~B=?AXOWBD)`4NAxWFRt;)pCwET4^D_hX325CdFi6! z&D)k@7u8y~yeS~+_l;ccPlgM-9K@G+f`KXsA-UX+2@t`*S!*%JWduJ6N=yV8 zohk0J+ARq(gC8S!JJF#K`u)sP0qmV6h5a<^ShuEUt%;KbM{HI4vMh2CZ;E} zQGLJ4`Q_tQmedI5B<)}%qPf3t`aZniN-oAun(0pMy;H}niVwYS$6>{N+N@nHuNPY1 zp?w$WYXFXaV!>r~y${k4RUlOx&Q>>SeoS3ZjB`l}PE2KD{EHP?S6c$S4i$Af$)FIP z^#KYUI>K6p9X@L{zFi|R;-H=$Gv8>1HVv`-nzuEhbW2p!9cAJ*pS^nIBo zj-CMur#K(N1hV%#S<~~g{C?Is>vui+bQ~=1Hz<&q{ghgy_*L+NRLu=C&ZMbSjvfMf z+nSTEwedOE@}?2gdQG)VzjncC9fWq&qLb&m&_>~b2WSn1%#Yavl{Va!(cyI@(*x(L zTlE7(quQct&)dle$8{h1)u4hF5}dEc-0#@+mApcPLsnalf-CLu)L}}5qIpTXG?x4b z;@>`w1gk<@b5{Yt#+j%;X^pCCtqh_+8Mtn9Yh8u6&(l>GW)4ga9u8E+h~ z{szBajPppw?@7kTv`V|AD~2&jv-Gf_C=*@!hvdud6gzG>=A2r4>wX-g6IY`H!K5Ou zc7u#pyIag_>HRTVdy(Lzc8cZEqP_*nXN@k4ho)Y$Z%F1@y_f7Tw}ZQ*rwuo6kfFLa zfjZ2D^N`w<8=l2OBYi5eARsiO!I5y({LH2A=7Cdi=u9_W_?Hj*4d z@jx#E7O$o^_-;Y91+b?7wNX&xHypiJ_-=ymc1AX_qM3!@z9{$RgnTP}sB;Qp6sAkE zNbHy| zyzhVAUVz1AhQB*?p49vZRMmRd%Y8)xB0%dzyIoTJlkyuaHnSSyVXV>Qqi z%kwh7ae@vsqsTfVRl)|Oq_zBU-QHZW>YY0A7i|f3qUuMw2MqXcDIt(Jcnz718!`wr zG{RmsxA0SRWy){+7yug537ZLJ6Cx6tkMU)K5&6UhI@dHGGiN`evMnev#dr3VW#eB} zG^f;e7P@rWSdyojrj@JKUz+9N+n;C|)2KZIDh&%Oa5eh%4)6jUCPgX78DTiTamG<$ z(hh4Nd||Z5yNNvel)x5_*Vhev92vgW1Wxq}QD^M>lOn~V z$E4m!7#<=>0R`pIGY%}hNK2kwl-_=62HI-|&@}n3Fjxi%v=N|@eM!ks^2H<0t{5=x zZ+8N8n|kVOsD7-gGN6E7L}^5_L?L>P{)eiw42UWU*R>J~NQZO}42^VmgD`X>DXG#T zFm!jPz|h?x(v37ocXxNk*`B!P+~5Agz4xs3eb4*6A{Xj2H+>5yFFzd5*DzY^&xqoW z!=qG*9tdMY251X45=(aP8LU$eCbXDRpOt0`%H_PtiX0z~ugx;K!d z(7v`f$f#6A-)F#B^;+G0wmmeDUoUbhYO32Y#UyZ7cBQ8Q zxm3SVkcpmd}VC`XnbIJ#Z@N{BatW7iOl8jZ#g8i zUPs)eaJmw?3`o)*R6HY2gNr$%3u~+EM-@=6?B!Ae>xZlA{>)MaxWzMkXja*3pBMO( zDKG`4N=fX{uf68(1MBf2G;$b^clAe8WFeYNLF8zgu9XYtw0I?@2ed|U;`G1Uu!@$p zgZYd1ilj={3w?5B<{)AllLV2I(RF{w^7cy8!S@H=_&QE+hY&$@hv_P3^zHh!Fn)ht zRa{tmfl5PQ8XGS9+(JYn-7kyo#w*sg$j&Vd@xoN=ugbh;whbS7_YnLdtd4}<>$umK zbRL+{3+oKg{JJ)I2;ra#yy4nh{K@&X@mk{7K2zwiB-BJii2e&x&8xEw__mejd$p;{k|o!*7QEiP;)lRg`1*5@&@Fp^ zk{6s5CXz4Mm)-EY(kszSxptXR#97ZzQL0Y9D9Si`+mJfA2!XJn8}H1Ux5(J6HUpy< zpNuO4XAiWuFzt}O8MWLaRdihV7-KHlGk&wjiGJm4}Y@B?8)7EaCMbRM$rToX;=8>#s#BcyjQ%`X5vS-c6On`OjoPP3MD`bZeT{na+&9n0@_x%vD3*W^YI z_SxV_jhLzd@+miKZC8_Gv>)YE7xEttDX+OabD}#rj6pQA>@h#gMwRonOX_9OV`M{( zC7M~avGJ%x9_B_#lqAGosrPZCUdw%0DG5YD#$=sFco`e?a~>wLIF$RPIxH4|Zv!)e zv)Lspw?$iEAYj!Ra<>m$Bi@Lrs+ToVS@QvApT&hF+|cNV=d#$jA4I8p!%iW&E9 zi@ZZD!=M?2R|cs}g_79l6q%u*RNx4Q?qQz{AxJF8*{V$eeUZ_xX;}L_?(zYdgC)dN~^W#y0yU zpkAsI{GJKUQ4Y^KG*5;)In1rM8L$g{6o81Mi6(W1Vh8zK9@W*@u(Cr|aVU`ZCPjr~ zEc+-l8?6fJBd(CUt$ncHeLq^WMTLpFUDC;Qo6jt(A)goZNz9Z91vPA*h3pb$ZDOoc zxn(3DgTVz1ur~_7W{57FvZl#~OzFJ5O=|AW@(-GkWETO*f2ps?fzb&a7GrlPf+4W>yX_`qGw%e^ z6uvd@of}r$TpTntE%A>S9x??`+1OXMz>o(kQgXe?Iqc~m)nMj^@0T81B2U<5sa9N} zZKa2IPtr%Tbj8iIpubh&W4?e05y?uHNtiq|F&7x57s)mFdj zc~-hhMioc{|Y2NHZr+q1f4bQy=`4kra%mM?o)cr*8)86^;6W9obGwZ+?yF zVR$;hcy!8t+o!v2(d_yn2UY1&o&4FYNt5ZTuBZ}Zu>q|PA;V5u6{yN@eAc-obvxCD zhPvjBBAbd=;F*033kRWu&_%iY$V=CqMlkKlpk$kk78>Fc!>-i4NZ^qYS*f=*tgrY2 z!Txzzc*RtF<$ApdGktM*ueqQWaYTOL&m}jW(^uGh-w*LzS55+0bIT#DN`gV0#-roR z-tU_G(dRcB^6R=ql3K@Q&+p>H^oWa!Uqxen>LM1Shwc30bel@8>&Gp^18@;_B20BX z5Q2u^`{AF(44Z|GGo`dIND|*h-F+!;&$`eRx75X0ci*Xm-Akgv?1WorVE~o>6^N=a zC<1$E;xBG8wPSg~^&zSre3?=T8UeX292t7moLQ((kB-%Vt-*Szp!|IAG#r8lFeya4 z7hiwdfuW5BRAavCUOL zhGI8}L{g_Uy}$zdUR-K_k~u^KO$fk{m1)$qNZ!^0|!F-_0w>=?%rR>#2gPryWygWTTI5Lgfx_Q zllsExnGB4!Q`2O4nt*M?goTY{&nn`rkmrctQ+(qL(s6TqE`c)+0V)I(< z0|c!@f7f1>?}ll)zLFgxJy0*}T!2JO{jGW*nB536$_YQ{bb1OKTBcWwCWff(q4=F9JkTa5l&E?>_R08{i| zjlgn3#jL!zYFdPl=n8Sq2;RN^r4dkg&EF?Eo>oPNW$Kj_7_m4X)LX{d!uvZSpWmPO zldm$I*uaxq?5ZhO7|n;<>=7GwC3U6jezFkM2FWXbP$4on1HNZ_`Wj&e+qtD)cnUA2Jb@J*U0S{j7M7~_WNp=S+IXv z^doGl@Epi-^bkdK!5V!aESxRj-J^u+>h@3DkxZdy!XhQ(jG}!b76Myal4b;rOfJr% zT!!EQjNZ6ziBg$}9+lhiRgpe9OH9!VTSKAFhg;Yma^UB7pYhpsx8OCugle>Wi1l`f zoh-ld+QtpKDZ+VY@&?Z5nNo@E2zjiP_=z^|2usrl*`wRDhj8QvN~q@wWA}@oXDrg^ zMPRAv+Uu6t*iY+9R2}qkKhxH@-HXOnY+p!}bsk`Uqal=LpkC(BOJ1)Xjuw(lm6spb z{PJ_l!sTj*VwR|oeAbNXq9u3VM)JWtC1^a#fCp}BQae%p^IHGRXT&2M6-|*JMlYh{ z4!Ywy<3JboRngrj?cn5FV3pgKsVs*OVrxL2``L4%e;w>KE_0LLnqmIqvC`T^7GMi+;|i{(Q&Am9#rQA-GiZFV=A(nfV1sGh2m0$A^FO+<%nZ zL3WbCt}1gf-a!kQeY(cMc7PTas(d{{OMn=$E%z!kz&C7CqaWzrSWsvx1ZW5Bjx5bb z8H?LY`r#N%#Ynl3&3Mk2n#H6SbOJKUT`AKobw*)iWaMcwUR_ifl&Y#(K@GcHe0ID~ zQn7<<(9XNu?oi;vKts7E3#9VX3w#|%`*BKa!=74CPFpdnLWkq7CyrvCa1Gt>TssTw zaq_mQzA(GLk8uCZ`&d1?NB#H#uV>zc05>u@ zWcD1L23_I{)1zbw{hZiXkp04h_OFt*O|EH2p56mxA+bzF3Mov)6{!yfuy|AElcOmH z=n5(kdn_m2{-E+@DnhFIE8r}AjGOUu6|2@i6#3f*vb0q`0mnTu zW+pc7lm#dfsrU!;GL8sT2YTBCN~2o=C$IB;QO())`0>6sEHkY=X2A|lZ8<1cylhzU z;G*kUsDrf+-luFu>-xl%_7wcB^DIXg5$~l*9d&Z1HWv0djfjfo&=6LP5UXych}?IV z?SpZ}1^L=Hds;KZk)W#n_5;rqVFEV=h5CCmg6OY;8Y?H75AM8npQ4Jfi)l<8TI*Vc z>u*}U(EDX#H6P)*)d%$}X=iOfSF+yI)@XBGb%HWwCwiBThwjrH+Im(AKvW9m2VyC* z4(-oe;G+ytOi)QVq|>rCjS^L zBv0n;zk*c0zbK-5p-WNPm^jB{41g5MIR_tm`_tW-vf&T3beKoaUtWg~oQu(k!wBM( z?+~CA@q3a~-@69sCUcWMWD3xQ0!TL}Cc+s&c8a4g>?#p?16H(b`2;{ebw(fP&kM`- zbSRIh{el#EnG4k|7*GMZwNzdI{u*_~+g~Px$q2Zvx-U(D?Izn$Pr_CZpd1YPqSIYm zef{3z6d7b9M;5?9S>;M~=Feo&3pQrKK;jB6Yr*6)5^2%cjl4qsf;t35GOWA6CKu{V z5Pco@_l_yRPTiS!+D0S~yNbB>de(hyzGM|gd@Y<`^)TEnIKi&k?&#@>1(fvGjK$wH zSOe9u=$2D|N?C&4T`<29CmmeY^0zn?sj8}JYl0Bi*+DC>*&p_<99cgyRQ~C3O{MF- z?Da&MS?17n5A$`bKyu9bBgYE?6&NOBaA)-hMlf_gR9{GrQnY%Rk2uJgs@-X<{G0zD zTDd3w5v~F7lJ*PJMHz>Y#{XdfHn|dyB746?TpikO&KSqALlAPM_E~HC=G*LFE+QC8G?;PDQhIrkoXkEjme+pm%AA^*`S1G27YIW*iLeIAw{UPA|yurFh zr8^G5l*RLJvP~c?27!x*G&(D)z)!+QtJMLYMl?FVk%Y>FQ8&5#xa}XyWE$t*@6f~i zy-hI@w(_t~;!@>SavNA&|KUXD<#$E(Z{&2PmHm<>zhDV>3?ItLlZ|~D{~70{ewEe( zJ`ItNqr^97eQk0cg;DeenP(pe69dS;JkuL~-Q5x6*cP;%km^TN>}-WNteihPsfNor zuGx>v|7=*Cuj*(HN5F_OS=oVIF(X*Q#$)LO+p1_XC~+u@ndA=21s`>U87L{YtL-~7+&Q$N)L>egMPq7BNOpC4S4jj8+N3Aff~WZF1H z0;u(sDSKvu|P zQx?}No?CSnJ_`D@R@$;#NJ=_eofjEp z$m)MSZJqrmxwrr|SGc|*9;|4wexSdkF9zlIju_EDp>C^kLaOR+3fh)qn_q-ZzBRwe zYi*!bJS7_ZzLnJ6>$ZLF{Qs2Bz;ojeLl5e^ui+-I|DIFH`SYF6Ir4apY{E77dAE%-z3;i4XNG#BmpPEv z+Jslc=HOMuvd-Kb-BM+#vWcpG^z$b&vjbhp=;RaI=p`EZLsoY}#Nn6#K-4aGSg+<5 z@R`NJz_}@1PwJcy^rgSNCpq%ewrtRK`kjf;A3bS{5%54S-?g(ub65%p)+Vr_9w}C$iS zCByxC-XG;rcos`4utD8adN@m%quXl!-!bpV_6&BoCV5{{5C%yx8!OXwJR1w_B7zGJ zBoO`TEnc@tY$7le5Vp_n0Mku?c`08T4JWvlOtz$}3pFbyS)i#K-@Z zZ2^CQ)Y$JEwkz6t$jZh@GHosYDP(F3QxVRx{qrUZQPZuq5A3@%;dUiEk5YHW{q-KF zf7y00TL9q$CoKsRBD_s}C58&J`>vY%UALpFM4oX>s?@wE#VStxl^UK=nJ>gC4)S*D z$^J{mv_k#_B_I@{+ye0Va%X-Bp3~0PlxipsgzFxcanPmEhXH4e2M%4 zfBMrbMt7D#!Of(g4vgv|H-ix&+;~eF6_$A-E5o%YbRX=LVIr&{f!0}9p94hY{41|z z8G1bUXRhW?x7Eexk%!;i2M@U*W z*;R^x)LUh+5K!#>H7~lPn}X-mLA3{gm{sJeG;@_5f9J}Secbs%k6eZx@Bb+ga??9T zdWUdte1^Oe_iTa3RlFukxs81R*gVi%sL^rQ&FyoOAyT{O8r&@)M0ca6`>HB}?RCtO z*H5wLfLDEVBG#<+TCH#!JFbPathXqLbe^l``gBi9<9?P5{F7VG*`ik6g{2=5FibB4 z3>rQ6^)60offsGclR6&pI}cT_bf7Acb}33ph4+4}^4dB^Kk}$xZXRMYU5DSoiJoNL2tj%vMPK*y`*;Tm~Uxm}@x>waKQijQ+`+-~~;TedBz|K2xS;r zhW}wU1T1uO-R!*%zc>QbtIDTxy1*{)Y%zo&zyn|gZ zq;S#Ql_Eh_=h*;jDB#s~H`yO^Hw(Lor~Q&kc)2{8FgEug zP=R0!Lz1 z=C<%r6BbhWmwM{s&ZR(?T&J6aa{>LXlDB_1CL@$;wl-pzaaOw^JoTLiPa<;F0G+kv z;$AwIX1{u66;q?c6gE=-UQ7648B|=Ja8JdC?aL7G$}2IMXecUi?Z;imX+TqXyu{8s zL#H|$luBGOlpWVvR2t5D1*@)=>Vv1kSml(i{_1;?@<3FL2hy-sWrzK5K3`9~L++1! z2k)FaAZQRD)8c#)e_>^OE*?z1M>sbMsQiHlff^ts;-@z0%kI)oMRLUA-bJH%4-HMn z>JvRFGrs`hYea()&7up<9vbqXQ*1|FW@U-vt}8CtAS zU~}LU_EH`iOBrjp2+!)mws5Cj8bGl6pfIe5t8_EVSJ3G`)_~!qM42 z(qDwKWVOV9l!MPWC{vv%OwE_~2C7>5d!@AqvO%k)$nV6fd<&T6Xbwk_xd{I8<|Y~C zNZ;B|)Qp0tIw{{emtTkaW9*?3@M zi~A{uQ4c3U!UB%RsC)HdCr)Y9j}--0Gv+j2G)bquo2 ze>oGa^Wz|uKt;f$g~_Lp0+dL9d0D_|`vHGvLiG-}ROs8P1W8EoE6fzX2nbpaxbtcA z{-fn0Gq)zG$}^Y1Sl6;) z!nJLBWtsJGQ7Yb`W62RDz&{sr=ownpqE+9LxafJ)m$t4p1P0n%hzN1NrB5$+3pR2b zUe(ReYP;h#vnn#Erx&~npq2}nAO;Bbr*1*}Z&17wBFGky?zAg=hc59r?_bz`rNrzaNcCQ)Ahw3c(#LQu-Ll|2Xyv77bxAKCuCSNDPNIXy|~` zz9u2EyzK?a}Bp*-N{L<{*Y2(CtK=ku1jY2j;OETpXc)v`YDy|MT2S=Ufw z7AaYz4u)ifUa(w;FZC6!=Gw4alsrH8mtq37!junN#)ukau^YIO?qPS`D_FAu@}jc2 z<4#v&ELKr*vw#oucM3YZ045DK)tu`9KxF}PJ2Zy~Dh;%rS)Q+{#|39`WGc4AWkMSh z**)Uo?>Fs1#c(Dev0Xr%V0Lz~z~8?V!!DN@x#NCIqWZ~M_BpLrkdUN*4TnAK7dPB4-zDu-O|K(q(2x>7i6Wr70wwm;8=*yrpa#F{0Dd|pF1uYa;_<-3f-ltB3x;K2X%aO1M^K`9+VJP7#G zO(XuVZp?ihiSv4Awbp7v|KiU-Q+7Y#oTyro=yY5HL}N-L)qn(*$PvM$AH5jPP1YmZ z^a1{0IaC;@qP3A(t+Q2LNSIEsO_C>aTHngatEhpq{_|aw9DkLZv{C~0cg*1Eu&Dkb z2R|j9XXAb3b!J*26m0g75ezo;H~IeQ14xV$ax2*CXe`JB=M5eCt~o~*z9)UF+16`i zNRE`R+QfNsG{v`uR&I#iCppWpceHUgMNLroQ6UByUg|IG zctu~YJ(I_ZosWdHRwtOzi3d$sOgSM2Qvx}y9NCn!+JHLMFfSzT!a@?7kuT6-QWEJ8 z=?aXJ74|wRz`6eJp{e#+CgrfumSC`r^?ya{na0#($^DU0z(dl1;(60#w$>TYFZMRC zJ_OA@djKNxZxHZLOXiOf^pn6R^@|)7iUGBs;{`OdE?+0!E z_6|c81Hl$TXOu}#kAk|~4vrp0{dvVFH^`wh!R#4I)ID%++-EWJ2DzUB#+x$I5gUw` zx*8!V2d4QJ$u5h8hL=Rgo2%u^7jLV{oUI>Fb6~xW;XzCM69@wQ>4Ow2dk7t3Z6RZIu0urB1#+g%1MPt zT_B)OR*V*vXO;1o+1}vs8>#q(LLAR+AQw(W+g32U41UXuNZFkts)BoQ^P{6e$N|b} z2qss1MfTHW?(}lN&eiCl#q_7$33z!1r{lsWvz;PJ8&=;2Z*i45yI!j`LN=~?m~3no z>gQ3U$rw==*>N|UUC;f(?uZ_J69AK?BMHWvGQM66J1&583X<;i*ldy!58XyawmeP2 z3EA~e=9XAfP z^p0gol(cC2J(sfqbJX34|IfX@iuM66f~I4+#sUInR>;l)z7@-T)JBW~zvuoH#RDZ; z^;?YU$IKd`(1x29ldT7^qQ9jpQ0T%xB=s_zD=q;r?mM!8`#Mpx$oOf{q>sFhW3vln zHAl=h^{Ys-G;UA*q8U}V%H%Wq)0qz6P(W{q>m&v1%Wu1w5BUAMff}#bG~nUhxT)I- z9F(n3xZTAkR^lgY;mrR1JyA^Ly}LTmFElQU!)lp9HYJFL4wOvMWl@^PJ>8VJzYthg ziV8EMLK$KKMeZwPAp3TE84Gyah}6YgCgVERWtE&|Vi#M~U#kFtG@_4hWmI9PHf*r8 zwBpT3X6%1g4I9?bW1#croL&+w+XlirsJ9X;RXPiq2)OiDlt<>?a|d+f{tybZFCKsk z+a6?=ZL^)y5kn;}PRuP2xNqs>!M)(k5DZSBrQt>suoxEq$g$p0IV$+@3T)3S+aE{! z2081@qC}H9_IN*LgPC?q?`wuQiB;klsT)H2+`=LFP7)|z;m&_@YP^mEmU<4wMl4lz zJ0I}n6nMCH$dcbV{8?zaZqJWIRsNm4juSkk-7kwl%K4#&9Qbs>)UV>tJa`lAn@eA9Z4>4=4Sd=H5Pk)#AuM4#H^RN2$b;le@-&c zys;3t7q-n`@sj%7HY#}WvD#@*wQ9m)@ z-*Rd}-cY|3j_($z2YPzuGQE%{p$||{_AP(cV2$oV+h&(Rp}uU)Ebd$|*GNWfd+C7c zv`&I|`;GnrHV()1XPjltLGZwl1mLY35!m^du*OsJFbA9=&!ZqBYB_1eaKyRlWvPQC z{Z8!V@41XJeiNcUr~`E%1lX$n#~+j|uK0QqN((MHg{=N&r$k5NF6rdD!r>#Sz{8zJ zUy(-$R&DpM%i>K^lqlC&)#S=Pt@W6(N|sq zdf--Zk}w*^5FeL&afj6?+?#ZSm#AUZfIWBF29PL(HT>;GTM} z9smPN<8n~^0t9f7sXPe^zub+2c~+o~4%d9}v7^xEFkKvTk%qdYKQSi38h__=@D;yh z@KR55{29Udp>ttA8~`EF;JGes$>yNyjv>L$Cd2tI;`3Ch&-|rS6BfT|HC63;USjwp zKi)qayUn}+O4n$Zy9rmUnq%@_L?t#hySP ze)eC@7{Z`OHiim?B=c3S47@km?&53h5727AO-OKO0L-t6d9EtQ@O*ifd{^Kc%3(3` z5qS7w(i}(l`e&<5T{iQ6J-GZ8xbe|-w6BDJi|&+u=YF-n75kxy;Z7|7blLqxkqmk& zmSFcyzV)A9RfaTyOmN}Ii28*J`uNZO{4x0h<=z5M$zQV8sm=a4oM+dYrj>N3!{kH} z?#mcDJ(<6|v!+pst+zd_w5#TC$B9jjXL0*b5Al==PvVE zu602?bXNs3a5jKq_+;owyZ+mfKAeB|pKIMOPcD1oJsx|%@=C6+_Ov7IakR{aF1kZ- zmX>v^%|a9`KiP@>;#;{EzKDD#8#Sjn`hIz}+}GAd4fC^rdHm9QN#o129w2s29JHvR zR#tR-4>Bu^#tb70$It)k15|Pyy1UDF2n--;zBW3T)=E$(*npF;QAdm(+s&Oh-8SQQ z4!q$$j{^E71h;+VWksSfsj(E4o7!;MqX#ZE{Tq1a7Q#kHp%!ojd$^fzZfidZr!yDH z*;b$|H3<10Q%r=!ABd%^f)Jc6IIyeoNBz}=RZK;3g-UzO_zPsSonD@4NNPCJMR6Y(uDqb z9pv^W59n5k)Rt2A1ODGoOadU94muYgSfqv&w*6?XT-+kfG8gQ@J0EC2lXR0!x!xM8B@>J8elH&=|Yg|X* zpiTn{Kpi$}YI?CV>at;srhb(hr{sXYu2)Y3m;lZ+=ofRR)a&lmb4@gYZ}t`il!`spBL} z>aI@OxFMn-d#-A%H4I!Orq+s%SQ`uqa)cw+ZnK}KDm=NYCh{ZRaTn?vi;aIMpEe4I zc>qSO5?PGQ z)ceF{y42oOyiyi(aD_`H>BjTvzJUVk1sOL|*<48U-a%tOC|=6@6UfGqo=1#F~3E}FBJw(f2CNo(J(~O(-c@+ zI4KFNEmijcJ&yuQbLIKxvwvY|hpQ>ArkDJWo=vNk1B-{ET@}HkK)UTyDtQaCjgm@PE zFueYe6SQr>=O;FSQER$Ebln=LwFyv&@$i2Ek)&{pynX(uCwu+A&Fgk8XvecH>j5^i zjhgMdTi^Ed)nMGuF?s-T+VsoUFDGR4OKpH!41FxA!t3ck$qM)j-VGjq&w{=Hw?fW; zi$3{(^J2TLWja_g_BDX)B1v|(qff4`U%aJj|DYOzLa|V9^OGcpVt}{><6F~Hq}g!j zXJ>r6v^j*t6VHb{LPO=Z*GtQ$s}s%* zej~x6!R3Yn_(OgxM*H*InFCNNdfh!HuD<$IsRspo*aA+1YVaFbmh= z(~GdP7hsS*4_OvemvnVM44LaE@{q|Utf)teRU_q6qFX!&g?K`wZ*b_+_^5A>A9`3l z_)>1iB>E>VwrPo-p8b38bE&p-$e%3PZ&IX=hq3@Fa}4|`?!+&S%v12L?_nj~m2U)T zv$ct!;RKwweXg3hy$&*ofB=eN);NggdE9XwZHajEjg^&DWY@#@)kXLKQ!icEF;Twc zd0rA{29d%yb>cOQUpoq)sGE;SQ3mnp2}SzZt)I^SmWe;U?lEh#Z6 zQ|$iv_z)0&Sx+&ztd6E~4KC3+{?sRjlRORhatiUfSHn*$#jlaW&Z4v2a{bnFrHS9Z z_+ulYoMdkT_FVhUi5^B}N66=3CY`V|z*ylVhD01;lprZ7u{@}RbfVyl&`*W^cDb+p zd`;R;8WAxFmwfZ~jqv$q9E6sF2jRI&qP_J`)ACjMCZH!&>OA`45lH?vxmN|~ShepD z{bynM_ObLXGp=2z)Tx~{mV2m(3*GsXt$PFt0K^Kg;?&O1m^`bfQ(%d8mFR|ZiB_YT zmfw9KU^DR_oIPK`H-uI_e8?hNr6g^xUvyAd8f0fx*8|M+1Jc#B$qLiVFM_~v8`(We znA-I=3&VrTmqYGoo?9y4D{ap_2Mq)g>mPD^4bM( z4j*ly*%`19z976=!4P?@T+jlEHdhG~@JzokWI2VWuIgxAZ#K4N8y(W~kUo!|Sy_G> zJyFh+1_{GXtUMEQYO%!&nFD#cB80!&k#vcQ-&MOC(k>jX-ZC zjB2EZFO3rGH5t88Q)hj=P8t~ih}kHRPd`@3BtI$~_1u+QUx;Yx0AlULs(i^ZxU z&y#fCT6$c8^WBEXppdmF<`GUG&&!sr+yZ)f+(kh5j}4BOcZQ9^u3zpa7hOuMCM;z0 zHgg+c=|Z-izSZI)a^3d`?D!lA`9ct0+BnfqRpt`x+6iyoJ7zI?m9-`{SDM8wdGsLu|)yC;s17ygLCCDS-sPyyI3`&DGf<4Ej> z?9b^-3b78}iW_y2keY8>g~qc6E^#p3O`{o>C@9&gN{E4&g(AD>dR&^!%jS{6`zH*d z&41l}{O^i{)SN8xwmmjIa^h~!IYd%)Q?00BmY2Oub373Q5_py(DyGzN2OQuG|1wRgNvVmpCtBU7cr@QJNG{>$zm>Q^SNn{bn>_7D7zQ4e$PxP>?6LngkP_hMq7A2Rp)qp==grC>D^TMBBX`r zcu~s;1NC2Tzu^x{jOgC}7-|8IL>&=7+>*V>Mh3NcmBs{Rb<^%!I363AN_FDrZ{FLC z+~`UNP-DI83FG5AI#o7ba0)w+tPkr~JUt!OWp&ElyvM}49LxWh zvJM!8rCkP@>u;l6*H$ryVIpn8s8t6x56n%Gzs_T;hC@f~OId%f!kx&PFoEvzyWd9s zNKT1-Kqv@~h!aL$d%WZbMk8?{v5#i`qEA5RS=~z^di%o0@CKm^xRxCwoi4hpc=W(P zL?eNT;_G&qtL~J;J{DAP@8t7ni^XUzfPcNYQeyRC%OD5$MZcXE5!7n)e6lX9WAnJb z{D_HU2IuH|=XWtktFRK(o9xHgZe_YWaUvb@N-SDj)PH5iO&R4nwx;c`1wwu%^BFce zJoY4=(Qs9{<|F|}tL@F_C&ANpc;O%I3Q71>K2)fjuaDlyb?E;=dc*EX`Nd8O7I31$ z{&Mt;@FTef!8lpQ+&I(wDTt5XVN=#ik)YH_SRZ=UBdlyH_F)@E2dlLUTHK%9rtD#o zOVoywW5ZzZa_xTjn!>u$PKeMUbkr*D^QABZR)Mlo#yQ*JsYnrX)xP+U9pRC92T^XZ zo+8su5yE^cfMR#T@9UnF`B(iUXhA7GVl28gS9wEsU^5ksgnxX3kM6gHITxX_V-d4Y zwN6gi5-Us7i4bbNsym1gJ1I)x+mW=mIw%=;@u8s}cY7eM$j8^vd9)aP`}5;~l? zk1t#!3jO29-}D-CbusgA&ht$Ab6&0GvXBn#N`tZei@!C`WZb2tEbPa{5g`gE$&qvv z(O%r^w7CyJDXM;WWM4|yjl{yQBPUHV)n@Q68n)Rl>a$`xD2+_5pr zd7MPTcvehY1B`(;WLeZc(k4P!zca;hygH`uVi$j{|XlU=Z&=kzJ!< zS12TT9(uL)C;psHT@-j005{f*2y3xV<~0aFEFQDO<9ejz8+OKf-Yq6*Jr1k|d3S$i zh4I=q3vAS?J#thXCwiWzSpSWm`HH+?b_6-vDlKrS&Cqr?CofWr+P$f_X?B&42xy^> zS~kFnKn%jsOJR4Cth3AQAMuI{FJ*k&L(q>^|99Wv^iBdpXwwhFe62(Hk?i!_F~l1V z1RoZCa>hQIgMq11--yYJ)a(@e>5sJL+~q7X!>NPW*#`8~M2?V^A~Thn2PhZ*z4gqj zmrJ2Plx&LtU4Mmzu7_&80*tet%nEF^zwmBR=7tLAE67({SBdV6&^ zH!C*SFz^yH zngD^{d(dx{;#_eI^x3QcDI7CC$E$SsJ97sOoMLzlrM@VE*x3MwXWR<+hO#92j3y-K zm+;1krfI;-@WrWN8hrulkZV0(&!Z`suUloi3{9KX1Xpt|L(0o{j87Sv+?}g9It+A- zL&n=A?(jb0n9kDQV?QpxeoLbK%TRO%8H=a+Hz5a{c(bTz@);pgjbQv(=pmPVoAz|4 zFt~Ey<2LOgN+~Yy?dokJ8*_E>=+d5s)a(1f&&aqW1j}8CqG#4D*+lvd zYluCs&Vh5!K|WoaYqTmr1P>w`QLu#p{R#;=2sa zAWVH1EO(uM;RUU7H@_XrhL`t#bhpUZ@N^nUNuhV&8}&Rce^|0*ht++niGtf_HYkWB z)sLf9gyxgr9`1?o{#p95biytt;<Ei>a@Z z=)QQQ0=0~^>?tJ?zm|KijtnwC>K!#Le0yk8W)BNn0f$UxnOfAhL^rq>+LhDb+u{)w z!!SQw?6f64Bq!>Zs<{~SSCw!0B@tM(hOs;q`M$E1Iq!zaJ2bdRyG>%dL)7uoU?QvDh2&jtyMy~EKQkf)B9 zmVtYmEzS}qxoHO+qND}~9g8GM1vn@E zMkRA6dL%&d!*%4YEVZ=ANqNJ5(sQ^xcI+J#mJ7X^_pqpMlE>2)wNSh2VD@^96F5%J zag1}Pa4BzleiPJuY4`$F$dA-*^O0CO&GLh0!gm!s)=b}u|BZ=0=MuSPSFxQZ8KeB0 z?=YXN1;ri?$R0N5n55ljbk^fmx^5_7vKCUD9fkQ8JJa z9!`dWRJ8VV9dx0z!m%uwnnI2{zU9cRgRV*8@#Ag-wBa8VO#N=Gn=|V+rPGMWi{o-& z2kpE6TkV|v&4{KBG}jIv6G|glVw-o9liVkrZCd;8@_;9~=m*x$e5zvZc8 zMb$tUfZI$Yz3j4hmDefe?d%t)fH|;TpEbtRrKz@{Y4#L!69(ThBtXYl`nASZwK6CF zhC)o=*E+l&?^!p)^~$yUGs_2XaYy9nMA+0xzMHp4x{IW&3{pkYP6v4LOsGZ*3#J=OgS4M{{z#pjqhl*I=x*wg4yi-la) zb}zAQB94~tCdpZ&hMpKbQb)#7JkG14L&od!Vh$=wP#)AK$>#Ev{< z+UH){(q;K3Sl}#~8p=-b@!o(c=xN@@Q>)pjbC3v}{&qfuA16aiN$BaV__JAzaN+bJ zb83*Bi8vT#RAMonW4$#SQrfybf85nWZibyQrjIU_uXe;qoPUo9^JtuOw$ws0v1e&G zU02Y5dh_$H0l$7P*VG+XWI%zcg*s)-WvAtYUQ=7KzlTOa#JMXF^|F>#0Rc!L3%}d> zlyON{`09Sy%vOTa^~W!k(t@HC`*j|r+vB31d18d$qN}AEF7QWKijq|fM_4%OwF&DL zU%8Y(c*)cR0nt$rq5at;JGuE zH^dBJPq2hA`(B@A^2D}3k=WirMM9w+o%6%9d{P`c_PFo3V~#!E9eq@(wjh*{TmJZG zca^AU7-Pzuvg9)NBp8WNJ7c5*j6c2fV*hV~4L9EO2RCoQqT(LGnUuC}prrXc`BZ5wYbI$SVLlU~itJ?>keEDjbLDqC>6k3MVFa#tVFwZQo(6^#C${x77BWfp<{ zQBknNvYR+gE6X@g1OEf&@=Y?^xKqw&*v^wrKG{2;7!IUSLJTE<^8!_bg`ML46Sd^SAM6$|D0!e9k72t&-6gGLsb z3<0oFoJEiwAWx`+!t>DYz%1DWjV@EkGv-}GK*3(

l%M5CFkJ;=gc=2)q!SO3ft# zIP?M614YFFV_w*1N>GCu8vF*=SWOR}i}?`#4lixcAJ98O7-8533w97quT6D>Lkqtf zQkHPS2;k7yD`NIC;2zXpsma((8AIC1_~C#uM_E7Z+qd^YCW1or7f2fVl0z>+p1k&_ zey`H`&v)~R2NQq-Ef-R27#r5F?KOO#_K+>(fNuTI0fRnHsRP;EXAadyYgp0sZ+n2P zF`HK$WXPn39o8D}LE30WmX*LB>y9AuS7ikEmbVVhSM{vb-~IaZ zKuu~aN%}-WePa4s@3={?y;0`a-Se>E-m0Ilbm@ng1WE@%<8S@TpNk2USbEePK+Z6r zBfz@4Lm%2zGQo>KG4s57k@Otd&?mOpriq(AeVQ-m zZArh=&p6Z9Z9(=nPWpvo#Jxc%HC8cBYZITnEZN(x2Y2>?CQD>CYP6+$L^K!rBur!; z(D7iO>24I%I3d$bn+SASa$(rh!`>(zZiO2|KN|F2ggG2>lx!b#tCZ_k{Y znR|K3MJOSSw`}Bod({=iywV{p*HUERQ^3U%K|dNOyPePNt}L3N~1RH8OdSKXD6 zK0(5kgdJ;~1P+NwlE2*J#qqC5;bU{RbjczgI3d_kuiknJDE4y$o_xZ8#@L>E>S@U~ z5#-xdb8L$(3T@&XXv&EABOvGTZ}`07=3BUD73c_+6CaY|5(QrCZ&0F*jT9oKo{%!3 z>@98T(7v6UGWm@Rx|sEJ)L~sblFSlcxBcr*1;h4tufIB}C_3=B+y3FU-*IO@&x_-v z_4JtL9>Je5x%bci-0gmO`K3jaHUW?W+IMoJo*C&;S{QrWPkwrt8~N;unYqV#vZ2tZ z?<$ZB<;IX@BZWLco_M!FMmlfb^D0)N?u3-Z!g^|?_0+`wzP(G3_&xA|QZdxb!d~`| zih>=fFMi(7zKO^V91EPu+Ei4CMu&8X(9t${J&P@b@W=g4AOtujix9*`O=eK`Fl!%Q zPlS<$XuMBzNO6*IUPEWezKes*GvJIGjb=rDE8NHkz_6%7h$xXmoVeNw@)1PfdjtVe zRGm~GS(cx6klD#I0zhF<34SCm8lxkH$Phz9;P{hqAOm44H{t!6C-fJ*ROSHLkxJA| z>>fBmcKAs>H_rr|jJ_Zc6lW9o4ip8G`m&&#y+C={QHREYNNl1|Rctd2f0Mbz=Rodj zD;{ZW3?uk8&0h`_yr_s&)8A&itO!;tPZ3bQYc)u$CP_`dZHHiU^sR3UwwWpt%-=v4 zRT^+xk@-(BC0zH=qoAA_8Y6BK2r&+97Mmq&@Pep6=y|C6y^pH$C-x zZgn}qAv8KKfZVC`!S4DSexIo)0?Gj{{y+X!Qi|jK*X7W|-5+ndp;#Y-_uIV>KIRVC zuT6#$GIspSZlaPbCmh?;qdy5Czb^=T{~;x%2J08(OrIM$R0*i7yaUFWaM;MvUXfwi zls7#31WI#=ily$7p#X4#E;#!P|MxI4(OUb=Xzej(XMF!mcl=4Gx=w*aEP;HAGRE?c zAkl zrJy$T_680b?4~Pwk1>{@0Ge#KgXe9f-fl70uN9?D~nJz6|x8GQmuh}qks z?w|(LR>eERL?%>&?h3xtQKH29^CComp!V3EJ2W+ctL1RM6IvB4p6%$32CBuyf%9qVCjL zufFTnxj+dqgKEGUU1uFtKV4>nhCSnJU+koDG6T6WQ2{X|r!nTVSFlvw7se^H^Del^ z{qg348l%;6BWbncj#6*A{Ad1r${A$75{`rQTVb6EL(_wpXFfvPG2_gNUl!Ugul%k1 z)h{md$zRU?tiRRkY#{1O2i47a-hnXXS^1Cs1LG{k`g>b}pQD5b89%OcUghtNHOGgm zaB28%PtnF+5_N}hf(~Y8>*+VY`k7Cz5hx?UIqj{PLM?pk25TR&+Kz4Z+1LH$uYdPJ zB}?v|e#ZA*k7K^$4lARCXzq!QQ>V__K6pSfjQ!&|A>SHqvXS>8?A+Z$fzwAGdcZ#t zJ|X)N;~b9@d->r0PYMlnwGW7}CdW>AS#+c&p5|f(b!VWcJ3Um0IW+b?5Jn9Y)HDm{ zo_*H)$$sweZe3UH0;M1l;6#Bo_@)>R1&$PjNh$u6XC^Ice`g~C%E)3fh&~7gHr+h4 z>>mr!3i_q4<%OHdo&$FWv4f*agb|n#1%%iv`CUV(P>}P)6HoM#Q2d9nPW|oOSoVoP3x^g^0mcc0U&w(2 z*en}3!3AD0AiTmFGi1SVgext!YQc`$&`+s;Adp2c%+MtS-1z;PC}Z(`EZD)JJJec_ zuOll)pokX>3MW>;HdZEKy_i}JFKPNdFX&L|*j6(C!@_x$1aA0kUdoIi!BV4S*<8+h zHUf6=X_;dLBlGO@tbZ~ea9Md-!+U4#lku}>WSl{+aOfZ)vOKcTmG=2paa|bfAkaar zq`bN~U&ZrPf3w;HE4v3$$PUm04WxXw^G+qH#E=qV&k)L~hR>Cf=^X#^E26omCWwmY z)s{d3!ai#F5civ_eqFrncTYLZoqOJoGAbbjSpHZqGs?T1Bn*@rSO7T%Vecn7)n?l@b=O@}$SQMh_Q}{OOGJW)d0E~A9-tP2&G>GRZ(GFU!yuXQW6Nws4zOJtsX?)mOdx0H~lvo!ap zQN!FbTb|?s=fQ^_(^+j9&Bc;PKmW!56$3romp<#>^Ed_gcFE9@SWoZGU*IVrm?aml z{N45L7eBoyGj~9Av*7*=)6G)Ur0&9N`>%@Zmj0-RY2-d-pyhG*r(* zZ9}8Z9Cy5&?R!g#fc%Z~*v6Y~rXXYC%tEa)&g2(edYSwEbyxd&Kr)K6a>|a=nY~@d zL)_WlFBI7%D8l-ys{jB+hY23V7ABI13?1$k3n8_xR8m0yn(fj;LIHiB)S0>z%pI!r zv~ffm%iH$|DuDd40Aupu^5Svw$Z!*-i*Lm}crI<=Rt5m2mXlY$hpXTI(IH3FP>-E+TtO{zO_!Rh3_H)xnI zB%GlvDi}t6C!2db7whSd3T9q@>4mFyu;ZJE?7$J=Wl|g3!g%yJkSuIAU5W$plHwqb zl0t2iA&XuE!LlGkYVwB}3miAHr8wTT)jcqWlwbhP2WAu-{x{AC8%9`1WJP}~Z_)BO zbP88Gw264KMpF4Hvu1BhE~HNgs+91 zI{RIlMD02N03ZNKL_t&z92{^kGVzQ9bt9}WC{zd#AC;JGddt(^@V;R+cAkM}Apn3A z&79;p_}^sNc|M#?qT?7e8D4fE8#sh9H!AIOn_D%FWo_-J7!&~)`o0pxL3lqaG+SFC zTLM@dJb01OUZUuR?BFHJi;T6*%Vc>FIkmMd{CiFF-?Cp^Uum$z?oD8mK$l5_)inQ& zyUR-pRe(JEJnJ6^pF;_TGep46c&~g$fQIY~W4FBHy*&N>WnXLWK@Rz>C$f4~tMt4L`ZIk9GQ1z~?i^p(Q`$Bw@}AZLvO^9Dg7ag-W1SifFY(o%5mmm>uL z0?0p7p~>D)JnDbO5-6XpzK&}mXfy}xFo680TW@n`FN14yJ?bovsrY8h^@lz&E5-Izs>^4=c$0E);{XZ)DeR3HZ*;5Uqj?-uvET3y%7&}45WV19EsG9sH=Ya4mNS%p;+8>}ctmkP# zmKeK%`XLt-YKWPNT{zcy*HH8xl*r`QU-Rb<_C*Y+I^%@&ttD2T8aP2m+3nx9tvmUo6N<^jHzrR}P+^?=&e7d7Nx!-q zY~r3DHB2;_tNnfH)9Y{igKMsH;cglyGvriXe)VQ+tm4``T+8}v z*P)}vepgYfdio?Gfk@T?>(Qt?q4LVlF8_HZnCkaEB|-@bnZ2uI)UXlHmC=z{PssCb zAbH|AKp3}|f8!J48)6ph7&U6N&aZ_)6=v&+eGel5*h*`UqMw%B^Ph|6(o;p7ZQo?i z!C&Ytb)-GDM{M4(l$2+W0I|njZUIITrhod|zsuT`qV9}PfEb!f%Ycr=dV->NuxMkU zv7WZudUNfg`&5G+sY&ofe#U_uN=Hhr)qa;~szD5il<{(f14N{6mb(P;ZfWA?4!)h_G;qh_~)mg%#R$<{;yDxvI&IZn@NoX3xl53E) zstLUkKA%yIER$17d+nM~4Jhw>yi^Ew;eY|*i)%LE+`>aN>0ah!2o21;uLTASIg+}L zLcO4u_)T6mDGLKf%Tq{^mm1teELF6Z`Nko`))g>UtBqp8juj0s#qIb!^FKW7PW)x36dsX7fdJ88Tcnmk1gSQlY&lB_E2HA0|+S3squD4>bjlDQbA6p!RF8 zU4rGK0MJN>eUrTfnQ6(PFzH2*;9)sY$H|GpEP%XI^PMH1**`T)OnylD`*R|f|PGv)m3Qd>ziS}y5iSvuYLA+yEWgw=)iLJ*|%Ls_k-`9 z?5}~+3PoX%q%&y~ln^th2Grl^sQM3PsOa#{p?*MECoQHUS>gC~*RAI%Ax3k(_S)-I zo9I&S;1c*C`Nw;={wABdpImsp-{(O*Qv>T6(I@D4Q);mDDJm=1{HBD);o0sLC8UE8 z70sG$?~^vraqqtGA$OTFz$7l3slX#==iPSS!_A&MKjVP&E+TlL-N8-0PsZ2hzvvnP;UEvd-FG`NWL%aD^Pz zzyI|w{>*8KOxgt0pX<#Y?bTP*kHXo=5}94Pc5@3BF3yY->nTMEq0nOs)lS%2wJOYR zSIv|kpMRbZp!14J1v2VL`Nr#Muhwnc^UD5*XQ7d56KX8bCyH&-ycws=d|ZnL>dq0O z?x2){(f6q1OcF(lvnL2`9Ayvz({+yr?!LnZ?oi~ThMWZ@_%7qjS(M-yX9N<7oLjh_ zgjk0IJGrBdJi^y{V_r>H(Ot%=!~T0`&amG-^>lah?{CPA6KnJpJrn1B&Oxldx~k{F zIz2R^?l4YAs!gH%>DG<6ac@cCB~-S2Rc(6v?V0YtfHp?p<3S-Mj*qB2jMJ`i{*l+l z%+ERggp(9t{fBQm=dzKarQPwLJKfk9U+~x2neG6|+YXl;ZJ69k&Al^Ky!AGn_rv5K z_W=>|i_0#_%;!J+`LC{v68o7w;*F^enwAB$>^#_X+wI)sH(t+tpFM)2t*j?As5=xT zMef_|eeLA~hDn)g8O6yyXN?{pDj0i@sj*CwL@j$nhzJRPv|6(xGXyLC51cJ13vAdF z{DC{hBI5|G#b{)=QZZriq3ziZss7TP%;+LXWTe|gPfr6*^~G# zdk+V4tR{sM9C1@|s;SP(imZS7kOPPXmTFT{vck#mWZ5si?zXBT9CYHw|)EX%4XGZXtjNe<6CuI^SG0i0} zf%2YcywGW|Fo4YAdf&bGl+!ZJBOP(LK3Kfet-i+Ul65S>@@LMTqrmJ%?w-5u@N)E= zU3{BV`{Gb3HLSZ#lG6gnsJTp;GP(HtuTPoorm9T`b=bf7nY}M*TZkYunoCn5ILyXL zA{I$l905Zn^0)uo{h%lrNBPS@MN&|HkG=PEorONwt;H_>EI{CY@kgI}Y#H{bn{m}*PmYZ%YUixI;r}W#Wx_5Mr<_tm7k260(g}5Lm z#VZMhHBq6`;y6uwRdpo<%ipK;4x>f`Nv~j~muA9z0J1-k2?)k>l>29+ATkVq%i|AutcSa6;T$2HH zq#LgNt?T<_AMf)pcH#p%< zTWXA0Ao7lT9&{%iS6C168J06U{uKd>@oG~WJ?CQ84YKvOP~-HZ#_8x~0kPuT6Ln`F zp)^b#iO-?#oO9Oqbxs}apPyvu%voAbQm%>D6LTk~?y&DM?%_C{q++uF{qLQ{^}+9i z^gioIqu0yr3JTvdBBlo0m9i-lRZ*_7G4YdT7tEqQ7O_zuM+O zZH|xyJD}+pJU?|$oIFqnY=|k|Cf~6j5{@DC1+GJ7g+AgXYsDwyC@A0Mg~AKSAg%E; za1R0rRv6L>ni@Q;wtnF6AwsCOdL!ZepyWWmpgqt52n?aX5oZ1gaDnD9Sz{bg98#;K zo_fBJ5<`Xcnu;sh0m6bQsrwO7Be+phjT64d@31+C5ZX%mFQiSRuIIjY-g#$+bIElU z>{y;YukCqObpC@50-2GAxG?T-ZNG1_gL&719NKl)!hyb~v0c&iZ^1*_frC*KV#D~e zwLNofZC+LWzN)?ltJ1Tp$_)ADJx5K!jwb|bCwQ=V!$JZCL(=lI|9zH`9-S))`|wdE zShyR80zoegKto#&o;7MjaJ z#kO0~dp;nkz!`++dgayE+#H`w`^YD(aLhK96Szx@mhO(*|LKD)7CbmyvbzsIaG!!0 zs~7M4lxQwUbV3Qi0RusI=}&*=x*gu5C_T!>^jASqqg!So+Bi+0Hl>)zL($`;lTJ~_ zw}W?tpe2yp!AMq+0J31s{SWt+v)aw~KYo%l^+@fAz0D z0-Ey)4%mZ_Jnjbd@8^*LX8-u-zuk5_>?DWpQJ-1ojK#a`B^68DT){KYr3C&tv*E;U zENNkox}52`uKCWpxJfTh^r&O2r#469H0t>m6@1wvg9`YyGT`S+UKgr?8MSCo*no~? zhN1>p=vX2a^$Ggw& zt(#^Nne#-Qs$XA{tg7RNzd$0-{J1cQ^xpdmL>qhFZMxC=nIzJWFa5de+)?z2fHnpa zYJIioH(1Lfjhloy#=ggVT3>UIBr5%bjT9}UN#jOEl|7Q$C!Tz&f`mJr@0;Btp!2k8vyYO;b9|y2-wb=<#qsV_1v*1{ z;@rI)>Wv7Z5+}V9csAJuULZ_3vYdGqYJl4{EE4#lpc*LbNM;#_o{iAV z!QDRUi31or4e+#zUD>yOy@IF$48wo*5dcHpLpNc3oR>T`Q_ZfH04u z!n1I&qfdwmGr#7{nd2W3h%R%17ZNYF+SFh2`V-zKhcWsOWC-KTSh8jr2hcdNfzpB6 zv%F}Un#OcR=f4$-4W+B&-(hc{4?%7aj3r2hQ3#U*1z9(f1G%oU07T1l1Lyq^Yk;%dr3<&k!G(-%>}8@Gfpd<8wnt9*07;_T*Wuz z4EP;)-S195@z~mauK0H{*f<~|RdcMI$K93%tGTeyCQ%Kp6pMK=Jbv>kbetmJ=%kD3K{-gWbt$+5n zAUl8eJ@>l7Pmd~6LU5W80U%I8w)?if<;!w|3OV7#licii3p}C*L;(A2B}P(*z{U>E zTe#CtJH@MKn6rm8@54e$7#)c~l_mW+lZ44zvdz?`2y4-heGc1X&*Nz>s_%kAjU_U- z+){-!C4IX4uFZ>&{Z>E;S&`&IcLlz>bnfWpFH;Z6>kraJ7A?OqGbg*}3~Z08kAj8O;YcfTnJC8P}BhI1(B zq}wF1d+wRv^Or#xUq|#BD@f0|o^vSX$4PZ5+O%q!3A9|Of~G${@9d03Y;E($)*o~v zXc-3yb;j>v_%(x7kK?GrMTHA|t&~Cyd&FC+vtqO{{7lY!tF5_?SF#~VVyd4;bJt)n*K>wuoZf5ZsHadv0zzw-KIPjkso;iC0q{rlvAp{j$kgK7qqC|2wd z%!iP&I8ZfvI(P20@@jTegB|%(9O)~ZADmZeC@>f}i+LP*UVv2Vrug3SC`iOl!0+$^ z!D+4SK4i&pzD)wPQq>H;Q;9Qyvt}={75%N+HjzsH&O#&7i9>3^gw*%Aj?I$|o%XRA z@p27$cJ@6EWE`B>#2B}gZ5(uL{7goz(%&HCj`ImJs1lBlLE;VW&3ouyD!%#PgAWPr|5_%2Qh&pZRQ#}e zCV_(dWAh!GxiQM_;xG|F{{C6#O8!ywi8gx`e`mo53*CPOf&bvWSw5Hn&6b44C!c&O zDsVmTOhIGiKM*Npln@~7f_v}TV#gx-k$3pu;m^A6hpJ7>93y@Z2>bf=)^&#-d{74A z*mCzh-H|=IdjtZgTIzBP()Uk0u~esw_bbV^vwnECid|k;e0~%)khu*dEvJb#(?kdl z49A4~VkxS@D2>yaYl`L))L402j@{)y|Al+#fqOGZ*;aeEaX@bt5Yip>Cw)e5AxZ2&fj%aAA};U zIF?vQr{UiOG(b);UZ1%&-4;^FXn(-IKEc75&73vYjZyahjY;GEGg;CPMU2A_?xciE zY3>oE`}?hbQmuqBzW=b-r%ZEGRTtu*_9Z$J$ubJ;#wZ!+NS@}RqMn!qpPH*y#Kb^0 znYjmj!~$Y9B^TCMyN)DY8@Uec_A4ebjcU+t-@P(PB%E;0?_munY_>q?jX}dksUAoP&17?L zqYc(|CmesAPtxEt|M#8;bY@-6t+VE89=X98fM8So4I8)v_Ai`kNmgRek)9hl#MgZ@ z^{N2r)^;Rai*J!J)U0Wr+zJJE)#pE7n79?RujTq`FU(_hMT=io@I+CeS za__6;BU~}Ko)fAgq`7bndpYVtb>)Yd#e2D*dkK0UZTj7H zH@pA)*~Kd_*kOo{u(m{IX0O0MR@Fn^3N)qqm1+;Ha1U6e@-VQl!Z%xqU#ui(u@Zl- zdaD)e0c!8?^8PlNA%3905bXInTlGEobsoLyv#&@GKu^G#Ab^fde5C-(2f}W)NXeYu zf_5Ks#G#p=c>GCGLiQBRWwR2^<#`>VK_G>amQW3zd47y{Ohd!jJh)>!x4r@sWV)0D7*2_Pt#>sjLj1=1>s=a0O zy(GuBWs9BN7J*U&!5_v62s@4$!G{0))fKMp`Wq>Dl^rKw`7wRsj5E)2bLBkl)oKr) zl_yEG+8S%Q`3eFYDzrjqDf-02PxMiZhjld0I~CuV6Eydr2845O@sbZcEZ%BwSklkS zbn4j~26N9-tmJgH7AnBbOes1N&*rHHnooIi&z^shlw6SB{rP1-$s{sqQ>YTc^+?G= zUD;TLPjM~@)P$4}yJy@c`@DBQDQYNiwRywR+zZFauA4pgT~VyYWGGgwm0w=@8+VOr zp@e-Bt|$BcR4Hme>xkDA$RYYULv!(SZ)?rHZB!`rJ)dL*o%GvlZpf$`QN*{8f|NZE z&(;I+6f4QwUh&KS^C%gVMGiXnP(Mz)3(drD(NA;cyz53jmu(Zz%O255K_d19j5$8! z>5*=c>Q)@y?T}*9kH8NIjGE+B`Arb?1pa>g>#L&mRHE*L;{<&q-uF&E?R0m?ziU@& z<2=-{^C9j!sn&!E_tbi#zRrgA*H@9+62&SUC!U=IIrOr)b_PMFc2fNrA=DFQVhfl2 zCorX`G%(j1z6zbfbDI z+T5WS?BJR6lDHMoSTeiFO8N&d91sz!8hm#pHLrS`Y7bQ014QVF5))akTD1qNJ@D=6 zfoibh+cVbHmKJ&-R%00_xOZ1k4ML-S0U7MIlzlZDAnDP@$`m)-wj^nZvoS+iLnr`d zAIa%{L^7Sn9ht2&0ezxni{@_2Ku#41JAs7Of&AkHWj0?`Ch^E_SzbMb9y=isD+j?0 z+1qv3t?PEzea%oUA&VWWPvp0$k=oRx`285d&L2J!%pNB$rn$iN$AJsmH0GrV9+n@f z8q9ldz6t|ATQ2{oHUTTA&IITMGQn%qsVAzzI=-*Ws53D^!H!g$j?y@-9gNe!p`s&6 zIl>fbxJLoPK3l)FPw}2Sj0VU*3sbP%QSSRP65FsJ0yC4y}g=-ejk(LLRA1iA3HjSI)K3w`?rcLij z&1INmhvVQ66f0CN%mL^7sks-@Tq;{n*||q8k#}a!mK1U@PFhco=B%f9oS1ve)qMg* zjl8)>n+`l+pUgOUnv1gh%xSZl+7!<{KTcZ}+5~b43U6-}lU@4BXAym3se3rlrqp^$ z(I?)0?|n(cjw+jbP@Fob?=})m*sM>#0luD2SjZTfOKRUk@rgEN_Pu3uj{p!z5t2O< zgwT5Pt+yThPf!DN7xg&$4jP_VPlJ5mF}p`h^y?|JN1(bRG+Df!*h>iphDt)iRSRTo zA-t};=C_Vw{h(kDXxAaxrsTe-Hlf54()$R8&6qh$b1zVQ63qq0skrDb$RXXlDBa66WC=_{xGE)k9w9-Cq4iwFjy_Q0;+g4}8mdp!y#CmJN8dxy4`y zl(dD57H0}N(mgo92Z%bd@y4Z^NvIdBBUwQX_hvKXl;K=;>vCYGR|_CZmiENwl=o2^$(0*_Z&BjfH=CVLkgOW-Jw3q%v zM4yN<=r}=b_tQ89wXG=JiK7NupfpaiG)@x}pDw5703(2=Mc5lX}|_g+++sBscnE^SP7q@4qGB-YcLGv4t53^V3lO3kIv zre?-sCi0Ak63yXlnvK~b1xnzP$A>SPjCyQnp8%g@arj}jV0F8 z8wz?(nKoV2osvoj zx9K5CTQhbcy>F;cYn!R)ZuuUOrC8CX2Olq|SV5aYUN+n#{M^&HAlD623v}`N8`O6L zwC^F!9a?%l71|V1;oece8iZclCg@1ryLQS@=)--_0_T%nd&5oF9ucmm%!BA3)nG^5 zBh`Obd!X6_)gGw!K(zA5#d6qhDaM=H%d))Q2? z483oWs5|`!yQ8B$;tB10dqq^Z{JEE2PnEO@sc+g8tL_lciV<3VkI;I`wCQE-5kh3O z%gjCP6w<)zp#BH*72{PF6ULL>nzOrD)l~-Qrt0PmOv1-*GsP;g$2dX_#?SXGw z4^)F4-?kC2wl^=>F+$L2ihPFXjcGz&y!`4LWwL^IKlr$ZHiyO52Z%mVfJQedcCv>? zD{B~Ln^DMkOvMW0LXjRCE#%0Sn{QV9zK7)t#=p;AdlWyzsTwhQOj#C^EM^B4xvVc$ z1T$dy>#11guDg_Y@zdUX%T0P!^$Q}Y#QPuZ?Wr?X?45gn5^1W!l{gJ%DXIa~0fHiN zRzHvCQcg7xggpVvr%eZ{O&bJl8ZqhxS8qL0LUyU0=E68pe}JN9IN{I_R-00Eq>ie|Kuwe4I4Ph~uWp^p z+?)Q^JEHEC(~<6%vwNfzYQk}XJ`uz6lavrY_mJt#)}kql6BMhG`ovhNPb?MsDGVyS ztGPE!iXJHBgjSe)`*@k#(%c*4gF(AC&&u9TeC0JCC<@Jwlb&f!)v_p!Q-Lci_j~pA(#`5G;mwx<7hHCJxC|1J~6ssh4Cui;vl!~QCK?NKsiPw0X zjOJp`&mJ*z_S{S@8tTvF(OmY>IE5-9Df+~_^VBBMk$MP?6&0ev(_XSkUO!C8dTunNG5J?e=RUv_***Pw_;G;l;3gYCXhtCQ@>$ zDN2a1ogr?0D0>Ud<-y0FOaw}Xh!WB)1NY{)K>>tRgZHG|GI-cCWpHntkanVuG-$A4 z##u$3CEKPPN(iugIly&9w=jb~LDAC~!v3b}Z-l(~nyEY4HofG>X>msWalQ~L1TbQ% z0kt!LZI|D@BIVz^^K(W#|Z4!(V$deeBPwjyebtl~>jZ;I> zkwh0Tdrg#(>8i;Pw&`Oj3_YkoOWdXu#p)&1B3Yz1g)*JcDX4oB2gC|=q`kA_q&BTB z+89o-88jFADh`yeo(TSgYKDG2sW@$>O^I>Jr-Y=|Q~4e-fBpw<$VjQVbj_-{cq$xo zFQ$z}ln|s)UmPzwQs;;Ymsn4O)TS-`I0aNV(OlkEjh^)J4V?Bj6 zPUgR_^(2L#cs;T2wN>qm%zA=iB{i5mT885^%gf%zBPwD&Q}m243rRL z=qsc~?AUoZRiQLC+jQgN_n&>?C9lvBs=1K8rcTJ=2WM423J~`8g0Pq96De5!WVH!d z%Sz}IedU1f7)X!uU@7X(BGqW1enDJ7(5r-~aA(7yO(~iS+3V*-tB85=={7wpN3p)B z20Ik{Db*&%iEMK@b!V7IZe-|46Gfj`Ao@g54HosHmq!UZm65Z5eCu_~v8EYCQBW|=onwHSw1CXpw^QpR+|LtDM8(t zHD|79V`Iyx1_TZdK2X%1h>k=cGn{*=J%VS;ql9d~ZL~)~b3yhtaKQ5^R^{s{wMXQ& z38X^T&Z1bY8&Ry(rWV0^S{~XMbR-HhQ>4^vyeJ_Q=?y6%xpS|=eQ&n*h*2-3$LSEM zSY`LU@;zd?+7wAH)2<0>(|iTx_K)heu=e8O%#ZaM;OeS=^&y9JS$Wd4COK;ov@7Gq zR}FToj9#qXquK-29;o&}wFkbgJ+P|22mk%=fBS0o)nLchb!M%)&yD)n{`>Fmkn|+m zOtC!_K|=FViE=cyUK%e2fGjM3uH;#Vk9tm7%q)Z*$F55UNsq2y;`%@R z%=50k+LWcas7-nIG{$oze;P{p=FySz z=o24{KG7ynYADbr%GF#LCkj$BE@r4ttS^Urw+g8{@i_HYJ&Y!zBZYI1d0QzZ1SOtU zss{qHz>IbC$;Y4ini^)*co?q!kLMo6D?4?NlF<5rl91X|PqeX?LD64ScTzML3UVHG z*ddv5qD=%HGZd?wHZdk~fm_zt?qw<=<+QQ9xtDHJnqrkl-HFF(h~`7%Mq9Y1LG27^ zbh8u$2=|B@sXJ1VX%r|vfm%YAxV36(m?7ajV)XN6h!o!@6->_1k+knY?+e${G>y~C z3F=OPHr7q!l-(mz>#3|wA1)Qe3gwfmij`kal~8wbC|1cfLGM$|lT4d(D2o*BJ-R!T z#ZsF<*?`V^|J^x7H5QOZ?Pd*c`6(UG&-)y;At+BqHVBYiRR)ZE!UBxrD{ExK~Vvge`pM0U&i$h zMZc zZ7NVgvMM2YZNgyy5fV~DQn36Kb*E6jpr5$@i8d*q5mG{+1T0yc9j82+O97VOMzH*F zoW@9cbe)X!C{zO|L9t2*GM%VDK({a(B>4Xps^t;VCkkzPM|7kT&Baqf6i|!D3913X zH0p1djTI$e(K7W3`>ZCaLA(81`{J)=1vyp869=-lv za}Vj0Hg}vv3F&dD z=H5D`ae~UVxq^me)EzmzA$@|HB~VhR`x078$~Q@|@@;}PmX(oaK6lXE3*}Vv_lQXq z&Am#ga0J~562^sylXFjd#3G$fGgLV35m3}pZE7FW`w~h*g*~FYP4{V>ju0Iw+#?A7 zK(X2}kX&Z&y`{Mq();o#R;cd8^uCw0mOl_mEu@X*?Ge5ni0Z?HlFNSXEu;4tN{}F3 zYL5u#Ohv(tFXFvjJ>-26y;{BJ%IE>InSc1hAKdlVU$3mqQV%g-ef3gQab^6*x8)wg zh7EHZZnxWRJ0F4FOnT$1nl)_LP+IRBdcE-7b}LmFU)7$o`aIvf9;m(tzj2vrSoVfiU&v>@y_r{UomNlSt%G1UNxSb`6m zZcKu2Ou#?&1Oaw3JBp}8ceJJ69(6AFV0j1wrE6m@5Zh+;*Xpc=Fd%{|r=ZHg&YPYIFIY`bk-ldWqWrv-Az zhbZ_Ht9%sNq`4PRccAD{EIFQg(3C1!PrglBpVX5vOYIT-Ev0;tKlie-x9oeVxyO2H z1HCWWBVu}=-}f{p*$+Z1tS9Xe>z4Ki=zY}U*f~($DYU74k05Xv2k9zllf6s$eyrva zzlEy7j_S#z+5=G!{Pd?kb=O>Tjo_y1yW4NS-5q)4k<~t0!5%pI-ReFcB!bA7Eb zK;smlY#675+U=iFs7Xj^sBV>#;y$zBR*nnB(9RK+sODORF{9GWds>f5BiTS$e=9jAmkQflt` z^#mO$P^g)xJz|dbsj~IduUtl&aYCLLv_!E@3ECLrl((KbcT}6!D^aYT77}d34L1-X zsYDy|t>f$)USN z7`jtBB!}(>k(QM1?v_TnM9$yuJm*|;!CcIdKs2A&Un(9lJf%P7>KJ$f z^w^VL;M3NRsdjLBX;}sJP55a^bo z+}g3Uru7{S6`OpY!pW{X807FPOR;92$kPrRB{>hg=5uS%1n75Q2-^j$e90peo8oZ( z9x&}*C_4DH!#3zWlV}{4?_LTaoWqZp$x18~#Wu<<%XB zD(`m*W!nRRx_V=H|DPZ|yuW+sSfL;ihw-WHVu_I7)FK5xf$2FdFE|=+6h$^Jy8LS@ zWyoGaV9gOO6*ylu+@{7siZ_j>3_p(Ml3>@(qO?Bg~WQ-Zxq{Bd9MxmKwE-AG& ziR6L?e(i*Q3Q+c1th@}yn7CL#fb_KILc&`JRIx6okC7STxJMQ4)p5))&AWp51}A+U zDI^wxNZI~baNRv^(;i|oCmKkBa*am3GYEA+THv-rmB24MrKpccChPFKrx`%Dbyfun zdJIHsB$I+1fnyN(EhUBAIhDlon;<=a)O09s3wbj44ZYf0T`(l(~) zm=YbQVdP1O*!7@D(rRJeI=-!*W}C0d!*UdY?TzGgebh9RSeI*Ak}L0&WMl!0i|Vv<(e zR$FuNv;WTAWWa7Dl=?`CbF% z_Eu$n&#Yd?|9Jzx$A0)~nSI|(86ar@7^)-3tn`XJ9@kSYEp__&QB44@?o*+|vA;ck zjb*Jm`d*UV*5^EpD5vubu6|m!cgXR%Iq!?{{d<}7c;@_?#_7jxu7SVkVEt_p5%ut8 z2VZ2f>#v9BaS5aW+8oz2O{d)${xv6v@OdzqsP}i+Zt@3jn&y-@A6tO)wq)OGA5q^X zoYmv=X~~)?Y-UeQmSWe?@5!A?spVHTY(w|vp28VTeuYyj@l z+ZN;5C)K$pmRas8&ucPd_6@?Z8lNh!#r)FVnMVSSGlRccjIM`)2C@LHtg)Q+pzx4) zy?`=2h{7`oS72u~xiTcj9+k&SW1k@RPrmWwbP?UOZkbUWlQk$<2xYif)uyE695A4R z;SkSKCr~m(Eux~ssI5VT#xcD0HGe!b*<-tdCosU5nn6L*yd@viXMRksdr!MW=+xDt zHF8esUog`k6UC*j%AjM{Bl^%T7okwGyFuh3mvrNL)ilcBxEz%~AUj=w7sb(ra2JRM@pmr!v^Qe#rPCc(6#U`@> ze4F&Pl(=a?zjY@c!{9DTLOa89wkE#%23rAXw0e>EDDS*mC6Lj*a$P{1ulf$XA`Od# zs|;xEONDFznKiN@-REM^QeE~?OU70HOQM;hHBw!V1(nt5HNg~}Aq1{@6AxA{`6883 zl3H(B(!#Ci3JItKWQDv_fU(6=+r+SEtz^o616+PF(~1O!@xolJG$t8Su;AkEMq(lk zxQ>M7IjpyeA!6aH&9p1ny_cCRvI~DAk5R!n6X;JfK-L@+k42cx#B*cDB5F+xGFAb4 z%O*lcY z*oz9bC>tf_BKLX9_*_ha~x5wou|0C%uWL}%P z4j&YlL1^fUEb-qjNc*EWJN8krNHvdcbL~~B(;n!NWr*2zHh|swT^0%!p_>KM)%M%9 zRI!gK%{3 zwt%_gt5uZQN55e&pgUqWY||NHk{pV|hTI7fwBGmBkc3$=G3=-o5!~Hzvv$9_JQVQ( zt3I-i7P>r0VVq*k`+Y3s5qIa3EV?upbo+*BCip7y2%^gHNt@~e-0Td!J3E0ArCa5E zQZoaJF4U(qI1`G&i%e+f*{(mzu*mrSrvY4)OO01$jfl1Aq=Vt-7e0|vcDs=% zKk(S0VV=BQhb|~3r=U3;3Kog`&KQ&$E+RLTuWs>HvFpNF6L?4Db$r1LW?Kb7KSG4V zoB!L?QB7}aE7dnsDrZ3$4k0Aug*PYJc#Udjpkuh7>4_s|1aycO5ujjk&*+PTj`5L+ z;5zL${WD6d#8r^@8$crz=c_3KKA2qLi(o`dX0_8$aA$HnCF+-VDMRRE6}bgIPQ$}# z(YyLEOI@WJO5{3r|Bn^fq^j&V+e-do(%oDiL&#rQ@jkI%_H*n#yAiDv= zN}81^nS-hkdSpVR7Nvdk3+{jfr%cqBhI2(Dl)26PoHiQR?bXyVtLnVI3T_26lnC~r zKAiF)Q8zC6IzDY?xsatTri~n$_ms3By3ec77XvPXyXuW}KlKrPxI4a&CgIkedsBW} zdh_GgVZifa=kw)2(8A`o3{fELstR^{`Zs5Sd+FQg1#u76&j`o4imx~VnNHoH)6VCo zY8-YR`=uE=e028UPdAH}t^bV8MRCQ&{oxp$wWEB?pV9sV;ShESZ=rhtM!QE0E!nd2 zH9tyOE`Immz%XQ#WyJkAWJ&}O+xO-^I=Z(Wt4H#=#!`G*=$dEQd?s+~Lhr^^+93JR z>jh+&U<)0;l@)phYV+jPKtBJw4H97MQ1^-Okv{;PyjO5YC7S&GR2J;CS=tQ!k+6#u zdm2ad4lZ<1kT|r|-)&T6;{Z7uSH+8g6nona*@=7@SG2Z&eJuXhbvs63h)CE!RU=u-t{!NGr9p%F%~uCTs-lZ7QU0Rm z3C8zS<|g+ulCSx;-b2>WMk zxF?3Xzi(-Ya+$0I*YN7cBpVB5zat9S7fgltfrO57t`c~N$#E7#uQRw*2q)~QkcmVe ztV-$p;}R}HpgkfZ{R$Ll=&*&NK&j(;b9+QJ#4JW3l?2Ml5A%&Lmyl0Tk)`#8wh@T5 zq;gTsf^}^&r!cEQ4A!3F z$#XpNf!rH&4;#`pXXXO%X%BR{mv{_I;?lnC91x_#Y|-qYr@Tv0?pz{pr)dOIET$V6+h5}KqqPRx+a*xxgM^@|?cI=^&KRNi^T5^_$i!6SHZtAF%x;Z+@ z(K=JLTVj!!oXMu6joVcl_275z9=;srVMo$<``*{^}jh;i!R8~`cTV62egb>dDX$&c4(d z4EL}R2{|bT_AIbpsLT)5X$=uJf$_uHLAVXO7pCvy2d@;yG z(a8MPwR;dc`!S{Kg#+Z=(QgmdR5>tgdmH(Z{rju|}~IFcY*5_%U=pn_^b#pw{ORyoszNdw6Q z?fT=|?Yr2i7I$07dp#1KqUv>w64CS2RV3sO@y0oP_DiWx)4YEv&n)rr&qW&*M9i*D zI#T|r9f|>>wc0YJ2-%{zH);5Yv+!0;1a$9=Li#sGIqYQt@JSkm9Sx%VoyXb-sWQeM zf%ik0(y9K$CaBWLOz&hIh4Z|~?L#imkpu{LKPn2}ihN>YASyw7NBpx&gZRCcl}7P9 zbfLG;arhTYJEeg&;{(h#J6-LG7qNN4@R7K9KTVN1&8I+c#*KQ00#B-1U`;hiDTG=i z^2)ABXXuq+0-}QZoM9`lzo1RVM>xt*KxdulU*myMB4nt-OM{n@2ca$|X)5h^Uiz>- z11Gei)A(|1A)qoWS*swwCHleX|5$+gK$)+9i3!W`4|yC<)jEw|$#d|pm1zo@>IdRq zbl@9NiwrSqgHcp53%~L0PR0Xm<)XIHHhrAFFH*XqRBfK}OrHGva$tU2sG7*Hf}$YD zrUq7UjScLZ(0_Miy+?kVXCqQDqrY{Xq>ir;Lm)?q2(49+E96PNmEI+ZgVPlPa(aw; zEV`BlI=X6HWAt7E{1)#IuyO?Js)}>!GyIStF12XraF!r+1}m`Rj5YcKv;;v*$UqW; z*zm?5qv0lx>)cK}5&!y_Y30gDLWVpD)!-0?UWqm(s*n>pv4R&{MNXHyK7`^6kTi3D z=1&Zlk%>0ka3r2EKF`C(C$&N$cO%d1kHN&%^R1VTA{G^pbcV#eg3F9B*U1}G7sV8y z4w3(H-tNDL`Qic9O)OD7kRuC#O=#hAY;?Ec#It2eZ?8R0z;&zL=CcZ{Dit@kgv;Y@qBohNlISxj(jg8&2fU~jsaB}@JB2$p$+^r zDTy>R##==q@`2?3CrcUEd3s$r(CU>b3rH-NDmQjrykd2_Far-Yy)ao{9iB;-$hiaT z1$Q2P0g~``Z~_*|wLy9+J=B^2Jz8K{|3DySekC7n{}Dxe1egMp@`)5XtB13Hmu5q8*K>P(A6jxI^4WRm)d*Wle++@s0lQV=5@W)j_ASct|DH455_)2U za2**z=^QyVkBcSXQnsdEdL801nqn(bN{MO%Az{r_#XpPWBb|y*VZWci`x6;ds_LOC z0GcP*4wh(tXDV{;NlqQw;`%lcg3xDUrI5XF2GeL4)NDJ$qsC4w_C1ZjKTz*EU#h$6wG8aa?zlF)sv|`d{x)nijTS{zFI=Y>lsF zj9Mw*f~JH?G5bVDH?e~#CODn)HowyqV`xDy&Eq;{seBsbd}?X4$ghByqXX!(Q(CD} zXNSj}1XZuf6Kde|Ie#5FO?1-u9fx0RjQG|;an7mrdqV!oLDd`t5|b`MjIV)P-HXM( zXaU5&QO4L;q=?DGw#3YNe&|->c$*&I`Oyiv53S(Q7ke3w#7IKO@NX-1n%-}Kpob_p z2?=e_(s(1XqH0U-8`W6xmYu=j(0#K0_#c}8HtMCX#Q~^Q`r7Wgqud6k21f(^51mB( zD27W}b*m(8fg~_sDA`!EC9GENx?qww{IqxcUY!h`g$Ct8DicBWKDfe(&b(q2PU`*V zoJm(6sCwh&mAfzKfMkyNBN{xi0kJ(b@Bs8eiDWksdG?2fN78DDx+yBf7D&VoQc4?~ zqL_ml>ysnylLshpd-xIyg;of8dA`&lf?$aduOm=*hhoHDf-Em{v<837^kJd%1@5Ow zCd70_lgvFYE%bWf_gc6tK)<#`>t7R_d^m>BOas7%;;ZsK7ebAz5X*A*S!0pGjZl{| z&+VjwVETVkozitGf+-qpkbLPW;bDN)DayO7;c3Rh0P5<VT$mM&z7-%M$ z#AVWmN>C>SBB0W^)D-~7xWzTeq;9`t+LYCpt)PiSpPFhTqV-NCc0Zf2pn__EV7lmf z{^JL?hBzp1kA{aj3|TJ3Nd!wX%JE(c5h+Xxzjj3AaNDeZ@C;Aa%cxA*b0%x1qH7?AzSw*)JWYdOK&16fXer>Y`cloYm zC<-5DQ+=+RwMQwx-)%+tv}4<7Z3I^nXa+Pf@m+P3fev18_%mVWIM9DDL zDP+HP7xWJ!Z94z%LTl~85nBmx`>|jLVpSav6n}w`ID!5ScSP=~vdFOQyq`?u1j(HM zqj1hl`(^Sk26&HSKPqV;T(WFUjv=3XC2I`suH_ z>YI5(nEkmeVD#Sfpq7dL=FUE3z2-TwDz4T&qJklI?8 z1Me}M{tb)f0(Hqjd>{<=5S+R3E9u%6i?t z8TK#UCouilc}yJnsnsv;tIxBKng_kB*Nn-cIHt+~!ec|3)>MKs`0wRJ_+G+%k&NL~ zUBO=&uJHp$%jG0l(78+5jG1cti+Y|>^W43)fp?b4=`S06wpDXwt}*9ynG{_IvtWj5 zk~3L?=K|&|G}LxQiWYoD&BEcCW#o4gz|hGYL(AheQ{=l)S58L}3EqY3(d@6+I}FhI z_~XhzA`4IT4wNzp&kR-)ra6NB*fhSBOjsV>8+>)%Pw>j5>#cJ8<)4gJ=v=H!C-hZA zmjsG}rLH>Kn$eU|yo_{&0GJS?Id91Xe%&m6)$D@@+?p5cX5F#;*3 zmevX_5REu^07h){McjPzIVgPdmSxChpswvq0#+*sY~M!rjK1cv(;4DZ?aYs%c5M7g z6x9x-L5W=duUO&be@ksej~MaK`KT%PpYxH^^EGASDFr>^$(=|?6yJhlg` z&VXH)vX%Once@!Vk)$kEZidRJIKyY`IzYJbs5(!o<`ZHSWRl702TRH8?h7DDDl_yd zLK@@Ul?wCBhJVl$y1Af+J>urYG3NG6aR`uqdRzYY#WfGJf{hH92Kj?3gP9AqJCii; zKHK5Ymu1Hcl4559BlpW!CCZOU%rp%Lg9vi>7Dx<)y>Htc7s-+0Sfm~h;uNC!@ z4!lJ&V-1&~z%>xxrF#;k3#p#o{$*q`Mq%h9Wq=%g@o<4R+bZ4Oi2JzhX&(Y~Ny>Q( zP_wN#cuVQDriwIIiB(U09-_X`ODO{3&&cjf3&W+$fj_!!ayYJ;B_g%xDo06iY@35` zOT+swq}%+K9t}7X%oRkrB|1hbN=Dn%d!JH^!FmQ5Llhr6}TMXev;KFQgQ~Q z=kw=`7Q&MH8MA+Re?Yi~;n!y5nV%A96qj3oRS!Zy|fKN#rh*VVOzrM zGN)@vB=*?$WWA173$;-pltwW?I1CY_8Cb=Ci>L;sM$t8#QQ!agS6OUt_DFmabp~_2 z9mwWgDNHpy^h=<|b{7IizU*S@=Li-mT9U=n>##(qOrAxXebj_ep9UPlY6O`&>_t>H z0@NQ6bw2y3F_v~a-W1iXqg+QI+Ke9?c3lL_TGGGS^-p-hp4B%b_JMv8SkEok#m{AZ zFGsaZS8gNzjU+kl4Qa}bCJW&mz;9rj8hEYKO@n+GQWSa-&SoU8K#g4^P4e!H;4*{( z%o5gIq_Jxj-dCB2j4@3~O27E}V0kld3ABRz_tfFRSDdy4xHlr!8gOsK*$q?k6%bz< zjkzGeW}Jps=}IXms3Ao{eA<83Uqv*n6wD9VTCQxH-0KSB+b=N!rwh0O4=aLgI7)nl z8PRpGVX;K}wNO1#u?_djZ3<`_k{ zA0!kI-8Kaz#%Xm3${_5z7xB#6Bkk;7JsMbBd<>dkps37*m1U{vBk*PO5%ryZ=^CR+gf_&}`sGP#Vh=Yz2tQe_9)#7 z>L3#K0U{ zkR)kigMJH6Nq%-{-c4Ci%ss-@q{j7keU{eM2}0_X*5@|uz~E8i4xvUvCy8U1;UCm+ z%B@1*7Wb3HIb3b^INy-y(q2-g4u*%RdHUWD8+jcp3De0TzKQr%L&|QXnWK635m*7J z$rnWX@5t6{OG~7&yd>$qxJ)9A3-4Q8Vg?8VU@DjIT8K}?d_benFBlk>Apr^~rc%&D zy!F+%iuh9YZ2Zj)*eBj(%69uXxQO+J0SN61-STEOPaAy|oE7vZ9*=<@WtfU3InIl< zru`#zae8ry8rP`w6$nv|0x21HhDn^ER~j#IhGJ4JWuO`BC}5&Um^bwkt037_JTPzh zXqgo)#eM}UVFXaScwl{}##<9y(u_Z)-S|&&#emzL8P@#vA^14hCu-g#KK^`KJW{x&WRd)s$Z-Y8sl;NN))`J{imFp5*KU zXav2?RXXuniPDH$^gTl~HIH|XhG2QCP+`A-x6?i~fl4DJ_ zD!yJx;CH#+^xEuDdNW6mpvDMKK79fByZihcWvy+ggJPTPLhFtL3MHsRoO`&wntdT4 zC=5x~0!V$N)JgVw@w3(E@kTmA9T-7z!D0SM{##HP3iKH5buq>nvV|`I);x%hUXYI4tym{+#hgj_quY=LfNWxdnaKjVO2&R?B7cQn zz1|HQ7vFqsj`9GKz&+kgHTooU(vawP`q8m{)=vgdcWTWaGHOG7dqwU!RGa_JpQ8@{ zky{ef=Rmu4WBacX0HVI)UID1*kQJf{^+F;^hYZCs{9(lf_+g-fnn4*Xw|$%f{Mn*XwT!#U0tGp+53M{%jktb&!{l_p z0T4YA)@uE`@xDcP=*aP=@!D1$zKVXOl_zPTlY8nmZK<0+T<;=YAW9>z$qiXOw`XMm z;vw3e<3%ZnaP@35)p0*TKx*Ga0Enzqh$vcvgF;@tL;SjjudqNCGbxT=8noDXcL%7y zni-6rcN0UtroUtcNhk_j)Yx$?0FzzWC3;2Ih+mWgpgps%7xH<^^3qt1Owy|XV}x`> z2}jmjZ0a+r%Ar1(GY)o};C(sCp%PS2dp!f)hqy0E#q^qKuoG@{!+p6cHD;0Yywe?d zj$#(=GVWY2L7;OtD}2PEsJc!fEw+l)k;y?{PJ)CSog7Wil!x&3w`JtrzdD5tbKhbd zu`Cw}yVFmQRen5SWLckD3F6x;fF`TCo-2SS;<4G60jP#bQ^3X<_Xk%7uuSE-Ed>uY z){)aKP@WO7DHo)&DA5rqw2f7Fw&aGTQcshqSG>b%Kc*r=5psH0lguL7R7QEBo~8M8 zygZLo;-OlNxPv6K@j_RF{QTcI*iWWb#l{BC1Dzof9WPHbDPyI^ZTa-(dT&6InmNn=2iOPlgQ=6{lmp{z z;vhL``l!IJs&A$h$0qEZJTGnqY3alb0=plVdc=;I43^(4cw`c)7 z2e4CNeg%^G1zl-c;>CF^#0VWL;v>wz6lK9cPWTd7p_FE}s3;E-?BodFGPlRKK@DSa zAV^55)TGOgZUG9-y~viJE8A!c=7F_u1TQ;(Q})Ay?P?@M=7I6;bSoenMJYqrCM<(YFcyG&{xQc0@pWPERx`>!m+Pv_TfOgRktQ3?Zzg2c)-6M@ zx1n9q5x7--9e_V88W+zo!GxNkh6V39u551d{I7|@76A7A*1uDR7t^`VP~ue-&rou? zKYa8(E!>INZbs`XE44B;x1UPKX3>tCW!%%%k78`jrf(kkD$*+3b|jwPrzx-$e9V@_ zT5p!oAlsHFvb7PMt|+W>3`;)7^W4_7&Ujsn2OjU$6u7zIps2Ga{rge@oEL+_lL}C9 zolo1JZhN>pn=UYtKJ8C*-SRJHCz}sIwtC~vD*-)GyN~k4toReEq`m*A4Zm$EQy{kc z)(R7zK+UNtju0Szg3Xpd@-1ou2^|?DH`I@xK5#Y@Jsz}qd%NNaF{&WcL<>kW@OVQM z8u@qzKw{Tpf&+<@`Le%0IqD?MatHzuwLX(Md!re!`wz@a8FqCMA8jk~g=-VeF)+hI z=Owo#(q9$4wBgHr7zPHuzwjt5+Q`udUXt<*!~pZH(JY~PIz7E6hZ7{`84?f{p+de) zh{FAZYC7K=39Q_y3BNy-64W*!6IF)oUPM8h-qqg(0qcWyFXcuw)&qn&(o07z7*2Yg zCcvQ$GHX}sX8&U%sNOs+h+IgmBQu!ArDl(aFQDA^Y_mArar$ee_uxa(lF26%`+ z=L?Sepj33twvp9W2L}=w*@ubZI1J%)FrDYP22B-B&AG+Hu zR6W+bgcNJ_PDN<*x+Op~cf@E4!hH%7%cxx)KfMB52!`b5fdHO-05Xqpvskay1q8N< zet?D`qkB!JN7){0tQN}GFJOJrZ^hjI_XpAqQDg^zL)51Kd9Xd*N$jY<2&6#0uTmy5 z@ihEw7UpaRPz5!@M&*V;<;U5Grqd=jlyEIOiu5x_kU~|kqNZ2`w**C0u{2}mYJwR* zK<4d%9xm2QC7hXQ<|W@Lhd~Sbhe_2A$w`Q&0=mwO8JtF36qlJAUG*cvxB}XXUes|c z_hLS}5-FefZ}!V`pR6nWEFlO7@isrh@#rEE@XIxzyxQI!`bZ02VtXi%D1}Cm<19bgeTPxDv65#RC`@zzws$$rif%>pJlq}vD??e z(+SAV)_f7>o$=r3H8=2CBdBl>Up&9L>BEfG8|j!Ar!n=B`QI#u4I(?mT<6GdyT605 z3nL}~^+n}t0cy>k(7@fWi`YbI(ATm+9~1b_G(^nRTP)>Z=eGFSr-K*39B|)fQ4(ZKu=5Ck;IK>S`mva`>W!@xA*|mBt^@FQDJ&PML-f zRSy7H8w7azJmO={_aC{%RDgeHrHNHw*m*Gv1~EW2hM2ekREK3<#|QDD*Tg{3VwqlE zF^LNNAoY(c$b7KP{I*^dF@ep%keiA;{48Gc=SfnhqyOM}S?JQLyo_y?6Bq9QPxXKd z1qJUr55fUnAs!)*Cn;O0rMHD<*`XGz#mwvLdBqt8t@nn9TGDLEnbbtKkGgk7jo zxCau*1!xD49cLf6A3NN2JjNSumTohVZijZ?eF*JAFJ8R-INA<7z0X*`(#5Put|4!3 zoJX?d{1J~xPmh^%NB1_B%W13h&5g#0mmA$YWf=t}?js8uBQ1@G$M>H4c7sOZ5(EQq z+>1ee2-ir+7}Fn$O4$#!IUA~%ix*c*QGLB+K2VN2M@8%qI{XA`?dXWX9H$f9)n+pO zGy7iQ%D~G(uB+#L&STA3S21bwoVD7UUJ-9Q_Q2-j)uwfJ87*0zczlstT1#Zpr4|Zo zUTAjRdB>G-AA4%Vt+QCjlPA=c(=x^Y>6hWFvz3p*tfgVH!CxQ?5IL)ROCWoFORk%O z<=f5Y6pchC%In9Y--1Ha%_FFz4g&L82FrYlLswwRA;REV&E8n8wUNm;VA0vi@UzKr zO_VAWlyGQ`UXSj&A?CdPKJUAGarW>*!X?FXDn>fe?N{=QVGEZ9ZTRdV`UK@tCGMiV z#c|_P^CgHM@?Mm;huhcERAFmvc&Yk7ReZj=c%_-r!f&HG4igur55Ceoqm5j3HEl$!MSc%$=dO67Yk6*RTxPxBeYnKhdrOJ&5{wc^Ry?WdG{w^b zx$|Ll(T*^1?qOfiXBRzZfF9~S_(C~y*cDovb?A}J53V_Kzj{lu7u6k8Nv7g5Duk=7 z1o*A!#E`X0hQ%%_#80KYi^Gi~O>#rQpDMU&RC7ZUKy`#_q@;vf)4xq^L39PGBk?*9$nr~E0Pev82yMwi>jkBR#lV8Ij{Tf;bB^{rgto$@S zRJ4~Q;+}&v*?{hY>%706e%{b7`!4P*5<280yS2p9JH&6B4Q19pjvnakSG_09#yi`N z-Vdq&Az2aL?E@lIq1Ils>?O>^(}7(?i(iBRl!p3Ie~P`p?OTXR$o$#Q&RC0@+$b$l zSDG(w=$2RFo-!LNkGRU(i#$4Cbd=n@q0msg`~%cC&_!{_lA7>Q z)?rHsYRWE*OL|2gTe7DaGiAfVJ*_DTx{vMndch+w=Lq#tX=2D@r>1M|(bW9j4Pxc{ zXdhl`e_-pG--qAJAGe5CjM^`CLdqwnuwcsNoc+0n z8yMU$+QP`jG)QIhh}g;*=@Fa5}3PrtX6utvSmW%*1e^rhooU6eX5OG;!#|A`}PI zkC_As>vGG;++4pBNq}{Te)Q`0pn~{_mm%hr?V3t+qlF|;g*n4H-}FC|FS)TD-nuA( z^KxMrvU>JoTYGn+0o~?Vc%M!-*%R)9`}&<^20Ur;>+o$kkE?quYAR|Ha4tW~Of*W- zYB#6dctV%qA_HM*2S%fS2!=HQyeK-9v`^X$W!cvIl-h)Gp+M{2MJWbBcp(=_df|fXuDoPbU%EE`RcC&?N*)Ue8c4k$e{M4)q`c&4- z)c-?75<8{lR~&8tgfN`cY?HulZvOnsO_BR>uNRN@X_h%`c#Q<<@j9^3Jby~jAQ=CK z%n6Bl_`>>mfULh}iYBsI9}E@*xmj-S*;_1+8DuLLH&XUZA3FLznLwCY%-lN4k)T7@ z6Xt>(Bh#q3q%4^GJ1v2NFx_dj4_F6P=;fr6{qYiE|EBoY`(nl-Z_fa z00_NyM??E=j7j)uFBBRZMc{-IzdzeTb=oDQWKN5TYBWTg+urs@4(9m&7~a?1LZwg%4^DDZe)#4j z_C^9lD!jQZ!u8DLSZ#?Ub&Q~*_C(k{=?jF5`~Z`hruGTB4d={0D74OD!4pGOKoHZ1 zhb`uI(G}-ZI7V6tbMv((om1@)xMEF4EH*3@=Nt-sm&~l+;mR4R)BgA2NPN80a?XBX zzmM?oz1M64g}M1{bt=^zX)!AtqXe<+$94G&vXeSai0&83`D#H@Pc1F~LF^khm#2cd z3VcrjsZ8k<*feXc-nC73;jZWgK@Nv*3P+5Lx-otB)qJH!tEK`iO^koD+d*a$%yG4r z;3ih6jj7zbhsvp*Of;lG`jEm2-Flv}OJ5r)N5Ji_BrJGBC0Pq={WHC@;kKpT2ujtP zCf@7#I8Lm$uhdSJ!?4%V!b%WwMyBqi^z`&n<7C3+b$aW9eUP%NhyzcRiXV};;`gyl zY4K^#BQ%^`O(dsk*q;rq#`c%XTP>eo_b}D%MPQ+OX1Pxkk6>wUui!7Ny<=R8#U_Zr z@90ovGrBP|u2#7>@fr zUJ^VdpzfBvkeKU}p{caFG~6AZXNjy@W^z4*J)nbSW(vCZd;gvsA%rGJvBboL*v0}6BG^Q!LXM_|_D!m(3fMf?DR=c& zb7VRzt@vhZg|4Ni?6vjoa2g|B5w6g%3CF51;TL(z8lfV~2ytT0#kKxguJ!YSN3pxy z`_ZFny;uF-+rWGB*~HA&DvE`I;KHEhZ~Olq2!B>pB0}SQ(|5)H<{hkB0^YA{-H){G zRrN|O3J>*Pt`4kuUn*bz?rAk$+PO&HdJCFu{B)ffSMe9qgkMK@8x zq#A-8<7SVKoJF{wEN$=Ka&p{G~x7Da+&M4ZZHs6fSfndtXih|`8!dzldby(mJndz7NJOEuA*)#6y6FBPNK zYD*g8=t3bQAJN&?TWT(d95}r5AQ|(xs}YN(E+^*)O~>34BfBpiDh8zFb-$2GVeJUl zp6_`I6b>|cyav_1=VM%VXX1xEO~4p+VZBU;v!$5)IrQ?WA*8(zN^f&#i->L$J8u@m zr+@ZyEO;vDax6d1kX-I8uZ3PFh0t*onIP5XOyvJ^xtS&-mi0on?8PcPvs9|&f+(eY z$E&{(Ne$51ouf2W7(>^)cc~1m64Hm6s0SotD7DpA_nP+wKlK*)_v%}W-1jzs`xdkI z$#(i5t}{jh=)&6jOLe)pJfZX1HB4V}V7-r`$|f8HOax>{v96r8?FRnA3KZX)

?n z)C88+P<`S`Km-kI!n$qM&0*c=?CViwDKv;@!%L9&gjJ^gI+c8!!q2AlF8A*;WC!>$ z6h76k3CVhTSU67Rh1>%?y1h)y1^4m`gjRY>7D8! zd2{v2HiBgYskA$Ll5?B^`Gw{-1Ge3%d zEj#zHl_Q1+|F(9&L(XdFULcH(0P$;gt8LR~r%f03#pF9VY{WS4dv~u91wGuzmC1|}Z$w!4Q)!H_Fh<8EY!jlKFDL}a@_39}Zj+vCj z;FJ!)8+WE0@QC~tQ?$=xn}CP34P<^($DSjA@A$gMGcN;E@!I<7sQ(znt;8CCWLkS< z+QBjV^>pv8C(`LU+i%8jA{5b<%jOdl=1T9_fa@GlOJA?-jVZ1gBdUt_g7IENo|yJ~ z#)VRh8Dpjj)en+vd|#4-1i3wFP4oVhp9lD0`e0CjiJb9wXN3K+V0o(apFyZinZ>YE zm2El8F}O#l+|;6Hx3byy8=ZEp7bOyOlR`n*yu1OYZm({7b<;4*zxLDIcYC^lQW<8}y`wUK8V%5BK%I8xKdvc(n`>zD?j|YZeeYshZR&qpSX*0%TRuT5^eQnnX0e`}D+b$i zNMP7h0Dt_#&-0vWBinW4Mr8QknR*Fe(Z1M^c1gdCLEHJUqBj4~fQvsmPwf8{E5NCO zPqF~FN4Pj5YKDOWc*x*QjCH2l0763D*FIvaA-r%!-!b+SCK=Z`}rLd;KgV#1cT z;3oJ{;vP9mJEF}bl8#2y2DeB5CNDTkgtwci{+OUE13e;mg7zE8PV5ZN{Jt*nIK9u=!wowX4m+_;wmVp(!HH5 zx|BuWaqN4sEP|D8djGil3*y; ziRA29aX7Dq_4|h|8be)C0tV%cJ;rm;5`p7V9TC@kmC$kg#ohPGY=E2ITrve8yVR2W`kvspJGT@=wA1a)BB-C9lksuxdT0cwi}i_uYf`faemjUD&?L$US`ssd4rK zT=TRzZP#UP3FgOY;1RBKzpvtMY&zxTMs+h?9RI}gx19wr?i}S<-4I?4T;ns?S&|fv zW{ZySVeO8@r*tpc86py!7iaMN1CmXU6XBa$86PRx6I{|Zz%C2$$A06}o* zn)#o986wvXr88+4Ol(SxX%NZ|g-2-d*%j$M?qwu;BJ#}%{OEUiWbu*dbuM`S%|;H& zQClyJscY6_O&isO(R#+Pz;D!@TlC=;*>%xxm}39F|v;GK#pBAnsQFpoZ$GX;!X1|~WHd3R^y4cW5Y5qe8M$M&v92<<^OvaZDp4<&Cf%duZ^^oS|1XR4#lK^6D)lk2Zv_Marcg(LIh1 z6I6=BlnX0N#AW5=b65&>_sY5byF$X%{}E=VxBN|On7XLqNpoQ-YEv%EUuRN<*Y4fW z&Nz|)9qA0_c=(by82@MSO0#V5P&Ikvrq48;YYxBmTq&i)YB#`xGAg~fy^|PYLR=N{db4Q`BRlkiAhiBP3{Q) z^YQXrcjm03Za&=XXKw_-$>Yx$vJX{am;aWR(v1FIq}J3dX;kHuQx*NIcm07XN7Dl3 z??KMr!9M_pjMmiB^v~UbWs}L;<4JoXN>ax6j1WzIA-BTUWH~bI@xWTw3k9 zB5rdSSyOmc_*2ps>r(egljq2(#;~*$*&70`R9RWE{Z*ZQTsFR+t6w}5_hHciK7*>Yz!lqos*E;51(vl_Cy>LC0)y4X%Aci1FwWev=Nji`5h9xsDsE` zg16CMZ=!z#Rn2cvGL4s@hz%dVG=FYrgP%-ICpJOulsxm%N=A6EWm-W-pbayh#LX{| zEzV;^m8=6{Qw~P#L2McmBloKASizy=`fEo8)foE8tOcBkzyyljzlo<)Xs0X9(+xJW z3X0}z3dT?R|NG1YD3rb!zFS1_J)9{`zIeFG(+r4IH@-fc{ZA1m5UWyQPzZ01_WkX< zLC~nME=Kl+R5_q|qI(i6#mg}OsShdWG4-#mwo+}~A97J3-K+zI-<_8BCxUlpCkCau z3+u-0J3(96vy;CmJDJMX6 zfh2h`uJO{9#pXo%H%JJAvgC$;0H+IyCBJ;~HV$gAmtt|LIfx{+1ES(J-0(sf>$0n5*_yCT$|JN+c6+1#G*l+u_wluNK`XVgZ$b~G&6Z^WM6~Vn=$lE*cwSdS`oGU*X~C< zC4pOxO}QN3hf)&Z&oy6>loYb@bj9kcZ0dquY2g%diajolk9c%Gu0}pIm*tfI|JA^X zlD2<0TkUJ!@pR(&q3mcXN)4q017(5T>CfG{#Yh_0H(ko%tfMFwM?Jl%U2682qE!=} z(^34JiNBLA%{A;s)HLiwmL%=$F``%_yH77i3N4#pBPZRn#)EZQ#6tP*6=Z+fP?(2t z-as*9B0iN>XrmioLAh!bf=>xN8kFrE?UkHBfS_T$L6A7%N7E1>8-toHObK;P`A*{XE!o^(dl(L!9s&-Lf}HKCe7qApb`nY6Or@%*BOLvL6?MisOO&D zOHpv4M78!wBxR%aC*+Y`Or96XT!3)4;G36-<&5DeqqF?6A8gHiyhzQ4fghPc$*Ly4EhQNyK*|jj22YCBKZAoEHOIbF=C!5 zdp9~_e&_v+6nPHi^IoFGY38EEZIuDa)AyFcL2N!T^X)sjPTORy`wNxr9+`aPIG!SA2<#5{l?q@v3=Fj(yJr|O^`}221vQv%#tlt&% zJ}}K9uWV~_vZtNl#~KOoD#!qgI1<8DiEM+**J-8{yBQjA%IPp7RVe97@33$@iM2*J zm26rPet>waW_pL5GqN^)z%l)<;UHN0*r%KJ2EEL|VoXxkmz}ZZujrSC8PVO;loZ`3 zOc&tEIN!4tbti=N`GaWL8{V`5|rK{^deo5-XW3R0|+Qc6@?&3 zkxuBn35E{Rdj}(Mhx2`&bH3-^%MbEAlg!MXJ$tXc_WQnTt(*3I;nAeAIc&ux3G<;V zBwU*X>0SPB%*;0iJFFmOn$+Yk-y;^lUaa^lh>aN;X%VR6y4MN=EIo2Pj6bb=z~a#^ zWzY$VijeCoD`C}j@X#yUd+C%tPkY0BG>>acA0^ulw6@Q&R@g)OZw(2o(jAZZXbi_d z)4*XXS<}$S7hn`4e*Cw?nw9LOZ=O34iRY-3)!an~t|;ktEvQEwAP-&!BJ21anDb=* zc0Sh$eK!ndA8~1y@N?;WE?IwX=UeLi(FNg(EPy*l1a5?D^A zJyR~Il_$>7ddJtz!fq)~$gGfS^O3~cvP>Di)=(+|pgKl{SaQji*0@h%Jk_`R7--4d z^xy@TLUyCO{8Y#Lx+rg>^&&}HxtLJZ0yM~ql;Ek7FKAxfd=IhpEpVIFj~%|f+vV`u z972?Qx6aG@dT;si+WkAX^9MpR?e1$>WKrs~qB{(c)p|j$0iwa3&GyXxO<51~4rG0E zIF^gdA3@vZ6iWzKuZ`0OY@xUrd6`=JmQD%g$OVQ^WgWMUD*B}y2cPG*6A6iP&DJ9e z+6o&8Tv*!=Z^4S$V6eq8b|lE_OS+8b*Gc&_$E3>ai37RX?GiN2e4Qft4H)dtK3Z2v zh2W??=6yUGdj1Nw+HW{@Z&unJGyq_1hMO1}l^OpQn#WIlrA^H{c-!u2i|VqnPC&u; zc*zM+A_=j&;5|hU1)|1cUQq=e_L`AAcJmvPIpBr%wB6{H6Uip=`e+>e+GH4?<6uf= ziG;j_fiMCI@9Xp`$9BQYyD*D29RlnsHf^v4%B1SayTs^Trq%dU1(cC>JP9Elk&4Ojyo)sZlFb3A2_h{V9aUaM^mmEFhM@%}Z zzJ;z9K3yTdsG$Ww03IHNmf`ZxWouCe`c~$=^Qwb_)iwNCVi(Auoy47ssTlD~9^HBq4; zZmjZz$aPh1VcC@o>_>v&uqIU&8@u6VregAY?RIIvQ}&q9(C^MuC1VF99|g(Ei5vl1 zr8UUBi`2x&?bCs5LuE&na3Wz8hm}MvBaL5haa0-SgQ{aZvn>KT0;RCazs9ddm#;V>$wRU_B~nH*3>L z?Wb2RMOfd+a2RZ%BvPjKT>?IpRPYB#Q`pLa3LcwjviP4CatR^gc+c!A$Cvsj! zLKS9xRtHT%{&LnZ6EK5_Kxu`C8Y3W6j%D19YFn7oDKxV%7rP|RB~S;TJh&|bB!Y4$xhn+D=s$SkS;&E9>}=+w zUFV38o4|PidsdwZzl!~Qj&H#<^!e#!s1rme8iz1y0y3tLAW*7e5KZ;`Zml4sg*N`lk zp)f4RMwDr?5=d}7+1}~Lo66;>n~VS?W*C!2`nEuH4LLDlZb33a3t!vN6@w5ua8r(W zPt|?-rKr!l!k>Cr)8WM&!)&e}<0a~|&FyWSl=QiPn-1}Mnxt1F7Y`9h@$y3}vRm{7 ze$sV*xcBxfU(0P)UNn3=388BieR^=if)tE8E2Q<1VmhPDBK>|$Ns#7fv?FBR5hHYk zmKyKI<^y||&5zB^1riiO6Q-8awXgDJB0h}R%lW1HfBpmBI}6>L({RYixFp=@>lOv1 zwps?ZMO`u7qB2^GwQ%s|k;!G{k1%$(3JTvFkfsW4cNRNarQVx;Tda~UdkfjU89OR( z9x#1T=bXV=n(0%P5(p0+B(M|(_&ncW#2f#5AAKrZh_07(WH*_aPsS2if(#J@u(V`o zK1q-{ws=t6nsN7s^#U^uWVoI=yaw=BDTPD`Mz1Nx(CUFvpq6+3^?f|i7AidsQo#&H z

9pX0PVQstggaUQ{{SqxfqrMkI0ntoMazQdgq?B{HG5K6l^=ohSb3mn0TR_i~5Q?Py7nj_VHG z2T@O!NHU?UF^7m~4qYG1ZO~g%n~6<4db{f551GYnSdUG?*3d-_NY8p^lZx z6VH}Ps`jL?8uamqLy1I=Gq8)Pv>uR%S6Qk#q3o|8luy6QBYS-#_p$57_fLI5TDQnw zOuFjj=2O)!$1-VtrG&@75zf9HH zQRSGF5NeX$OkY%*_q&dlW^%DWm16G6qMg#{B(=$CrbNSKW~~#Tmm-Bfc0HQ*tVAjk zD*Wz;`BS#dYSgz}3H1=+h694^*TnaZV}BrT(+PPuJ(n@%1&fWj@44;(&DY`+y2WD-%T6@QVZ0@kp(Sj# zMC{ZgW}1aTc)?U;JwI%yrDWRORlr>i&QOMwY{bYBS*S#qN~E`gTrJPgAYb>0XqG&z z?A>V&hb*fHLoJW(xV(qTx_-vLV^q{uL4&-L-S-CRkJH{!%hD+5r`Xj!^JT8gE<2tu z{2KX$2(T(I;1npZrgYbNg~z$PDQ|}=AZtneTz?1sW&@>j!kd+8=diUz@=;Mmu{_$_ z6ke5G9v8>$%S^BFD@wPX61(>BII*m~9|JY?@eA~yq7fy?JJ#^sB2|E~>1T>RG`zc` zY|b0-nijj}6*<8FM+*RMOyJ#!x^*&Aq|tMkBn9N?v6_35omU$iJ6Z+kM*cHC zlBI*b?KDjK?)c0KNd2BC=4v}yl>LbG)@gipQNt0yM8`=;mWqzkc+3Bd*;qp zArqbK11vuj{Hc))%dRAl!;0BE%DH+ik`AU)BiDMXX&?JCbDKqIF@NUT6fmO~!W|9N zVy=KMsaDh0p(Yy{J&Ie#0;A7n+lU4h7k|^n(Af=k!PxR3bF28S^TCWGOjCmbdL(uU z6dLv3uL3PuC8$p|lP%B8V##yxI5O1GXhLe@>8G>F^#I3cd1gJ3rJyqM0^Ig1NOmYQ z3aOg{O}&kPazBWAa zg?g1IO1=x+WvCO>F(57C&F{bYKwBYDmq+crn1f^&YqG2-KugJfsDSg_M!oq||5ew= zGrtUc8P%!pBMzy3wG~>NVvz+n+bU+|&Cxl>8tlsnU)%FDZll1qq!}{vzXcW!h%$P! z{O~1K$oofp6n*otK_AAA0kGrScA4u+Q1f+u=&K$>pGnW{X8&i4ekFt64!zC;%pRf+ zP6m|^2tjn&-<^c9gN^2KiX;am);ST_=XcpFR#{~g?gMTMx)=F+s>ZFLje)OVq2dLb z7`qD6G|P8i>6KLtrqOTpLJ*$jGnMaDx&PBfCKRCMLZO&r@fWDR0?SB zY(=ttKUuF?FLU#l6}&OoUP8j3g$1o<4ov{WIkJZrfV9nSO@nlcnk0$QuqpU^u?mKz zzW45hHE`sDqGBy~zz zE))hJ?Z_Cq5D75Z{n!`+L(iO5HSaCG2pUthlF_)3Fq>d7?Yxe=avuhUWP6m^cwSoGQ4+oWV6wH4u&Uh_u2E<9Y-usBN*yps8;frx2r+O5w z?|O~R5c3zy@e9q|PQw~cf8Q2nrY25?@UdJv6+-dD2i^5Uo5MuHNe;e6f|zqXN=Z_; z(bHR>@jSoU+he{eZEB8}$mmIOD&oNlkRY`zK@FgsPV7Ej9bfwXG)7i8R$l#jd&T_# zNjwR*-$?e!j9c38s++U!{M__%TW+_Sns_-+6ry;syHoxaDxIMg37uQk%n<`YvxFVW zX|!+Foy>RS^JOKC1P@1x)Vd9(ltp+Hqso2DFE-nl%rUrV%P-MulF&q56|l0haE=6S zYFrSmQ0E&21&3c?jUWY_0!)=7R$n`7@atSpQ6WK}rSd8^V1 ze}z0~yQF30gvG{&%RI*jyhu!2im8lXPbE`$W5(+f6umbfgXXNt4h)4?QpuDEyJR`H za?%TxU(q>SK)z3|*+jVQGuC`1#(w^KACF2url~Tp7JltwpN4q;gm~L`h7Z?F%XBt=5S3a@lH>l2F*@nrVrR53QlpN36DnE@gzUM zi$SmRBBI-1qArB?PQU0T0r{fzK)qj+A**nE_*&z&_187g(_BX7AvqQHb&jwBklo`(oD86sB+z^O&m^ABPc z+V07Cs!R6U0~!fgqVQ`%g{kkv>Ij&l;q2)2;HOWblq$sPYR^r2Zn@=n`rlO{jrr$mq9<8DbdPf#ar0+u5b z&7T?@xLxsbnz{6VfZonky)owP_TV0ItP24>-6c3#R4@XO6r8rrwafuzEL9 zYKr&*qs*dhAOCtPV9>$hws=XAw7N)Sv>qJ?3T_$JyFxpG-&F;-%n8LZQD``) zbo5Jzj_z`&j*s3-22Xx{DR6XiU#oYZ>RH;R=`|oS6p|_W>XE~0{@*BBH6?`&JUn=( z0sEO+u#=DFb1#ZcE~N64K@}#uRa7&m^cjx+BWQ+jp97|%%YO-XihJ7EjmN%u6>kVX z#V}%N=Bp>5Kb_y4Yws}aGzer`8PS4Fyh~DqqYcY<2{1+Fp3*(bN;^>xCF6r?%9vK> z{Qc&96DFj{2x_Q5GY;pwLE_@H?8ozH3KEX22_BP@L130=lmrB@ZasZ9xg8?L>3P)~ zTbi~rg*PfkEX4Hk_3eHkh=ZPF90@gfskJ4b2^NORN+YY|PeU^caKTjC zY3}kN8VDNhki_0JffWEq6V6QIWg?A8pTc~jwuk26arc;Hw8!&97x|%N(`h%i(s2ml z&u_y-UQoh>yf7*mDhJ;g8Zx4put!QX-d24Y4qJOx$&LyPWVpSSY`chf(w-%SAYCPQ zPz1{~9vw%sAxvcW=ArKW*q<7N3eqY@qO&itqSa3&Zbx&hvxXw!Ur_^aahBD>M}%V_ zS9BRFmQ>^RVSCL+|1}ih2{{aw!yc~Nc09871qm`M==Orij4A~GjID%+(IR9$VfIeM z0Gq$l$w}Q#83`CMcZK!)bADn$-2in7kQ`1ba9tEl;eiplJ=jY$8YwHF*N%RZ#sA(C zyK(0UAB`DHpTNSher4T_z5Zz*ZWu)?_9tfX_i#<597(Dep!N`qT3Zho<1K{q`LE@rI*^a`*xt}a zkFP3g1tsB1{Thnxy~-AQu>FA}oKBoaZn~2*nq6{;*zzoz7G&sqFM9%?)#68Y%Pzv} zb`bBNw;)O*Po^`U$H1jEUT|oDv!~#k#p&It`}gQ%dsEWeJ!qU&#^*HT-TQhi1MCH^ zgKCvhzn%jOJv5aY0(sY*U!eiOvKg>&qQ_?yXYc1_Hi^P%DTN-8;eJ$w2*1Qx4t{iu zAAZPp{)Jm??6r#R=-ep+z`^e`(r0dW@m~WgMNWv=1$yDe+=KBh&YqLF+}#J%^uUo+ zM*!F~#pisHfV3&-rfnT$_MnN2qpMAvDAMPeC2z)jlcwY7dB3cBXmOtil!bw1S;4kQ z!D~~``^mXswi1L93=lxbDobSJ#zoGiw|e*abxhGSI>Z6mj?mV}eh-k2FbPu{_|y$K zO`TE#D}I6M6T{UwK=kf{RJM@HZ1R_0(x}eXogbrBka|@wFsZx`3KcDW*Bn^8nrozeJoGQseXyBvLe!L!o+^^QPocD9ewR_1* zChfXqxdURH?n(y=qd9l57(SH$`B^A){ zNxklS`;|JVv(v78Q9q-m*rh&J;`o(-(~S5Rr&(jZce(^(PTD&*lid|gTyb%V1Xx>B zUX9(zL-VIEm{!P!+XQ7=r62&<^^0wHxigyEw1izZO)OnnP7TgniEg3)$&my65-SzfZ)k+`@aK1*oIRLaE?Aanu80G!If*r%p- z!C%yL&dQUzh`hbLHgYJAa^ai~0=(pp?@wo4rC!P`Sf9(YGx+%i`xy|nv|okAFvBRO zp@6CyjWHii!Xm!5Ins%`kM>3!s7x%f3Pat3c!WZ)Yo_+&DqtFVN)!?e(mpI&D@?~b zZ&$WayA(W`ho21XA(C|*-{QdJ#xtd1fY7W>E^3cR+Dz;a*0JM%BKEBSwlo9u zJ5)dKBTlBS_9s*_h372|j*FBs);HG3Ua;E*W>6qP%eoi1 zNfNN?whQg^EDA)lIpGr2>~&HUY@2>{WXDK=3eSA4C&^Ex2~`{o+$P{j7dq(Pchhdb zik~13R`_&Pvv1Ma!A@nl^XVkxJqXNHxRX=aHc`k`^)GjBwXV)LXj~u4bZLrrBy|3e z5|p>(-JAHzja2oSzz{ua%{EayiLQQ@G)yjKiBUdeK<^-E`vwJvtaSJx$SzJ7J*;-L ztS`Bo5Vrl(`9u5#M&?Bj{7uy{KlIy4vl@UIJ@wIKx0~>hiMbDxbC1x@^OM`TBg|u& zrwC90ZHBOk`_3^GuODU06EWNKk!kp5@xr!LIc&D{(1Zu9nW38)bCr2T@(!v9`lwI1#rWYs;oD(I~^@@#7G?+IOv}BXV=di<;-I;qAMZ1@GcB_L`sj` zqMyIYmv{6oAMScq@YMTf`M7V#+n1Igr9D|c*Sl>_GLxYrf?E6KkCg9gY))Zs0HQ~$ z+6D1*ApNkzRZj2>$js~3tn(%CXM_d*bxSu0UcJ+-( zalM!mUQGy^E&oUZOQiY{U@001r_cygN?LpG#r;D)}SiC#@rS-pRb+-Fx%g7%_ zZ}ah|E-F4!%dUK2XWNybpYrxw^EweTlf#>}_AKSERr5q5Mnv+heR*G<-RAo!jmSg^ zMgxU2eG|@_Oc9~JW;Tq}3xG<7 z05-n`tC-2K%JEV`k9PDkL|HSBdF^d5D!4V8ZrQa3kS=GDl4mR*vn?|pk4S5pl$of- zI-am%In1~8-0=@I4SEyhq|?dVl;Yy1#LvK%^W+*N8rCHSKdLM#_6QzmxdI|pX36-L z_D#&ez%A`0{ynB~An0bn|33MgBI^8}flt(0pC^04G6GDRn`j?f@AsPhFcr(u`U(`$ za)e6=+HJT`7~$sBMW}m*>ysFwWxwf@kPZ@2d~Od}SeeNlB(``~!FX%SvR+_e*xzpK zx3*F+g0Y@!E;e9`Z0{G@Q+1!$;AM(kFhWH(%a&? zz&*eAM=9{`+D$;MYS|hvF?i5`-4;k>SLK{DO1@+(ZTMCEDaXPPaBV*pU86p2Jl!6# z0#LeTR0o5=Vn=Kh!A(g7olC&5Sjc!MnFl)sz!7PCcWJnokKm~B4s*Kn)e?obEdwTo#SPF#KBrQ zJRuO@LeR<*T^xcYic(lTit%kO z;aPXg_CY;r$*PoWWB>v;dQ5pB3!);PKBLoaaPFdhzzzE{WjOIVS(TGb(#(bR_do{d z-IMHhoGfTV?Y7i^0JVC`Hqf*J8GLPpH zBjjv%KgJl}^|uSNISryc0g`k9rj7U-Odjb@U>5tv$l0fw@m3)1N}xew( zqK@G;p>Qo4q1T>-u-ekts%%$9_)biP--@GdtfPEFe=K55JvN$p`;$a17LdO=d|&|s zRL)eO=T1wd&at@V<7~8p(_`qSD$C0c)a2wM^VDYGROc+9Z}UG{5%Z@?FC(x;H-K`` z6VPm?wC+kymk-=%P7ithe2n5FbuKUY61m%pSQ&f`ojsv{cxgM*?!GxOq`x{O|7Lp6-t3F;wGlRAWv6_?-^7v@EwfN_>+^Huw9fBP(|+&FRPTxb6z6+2V9?|0S^8OhWu(e693WWSC}+I_+DI)K?q0EiS3{(|gV?e8+V=&*FB3>OPmJzhsc~onYsk zuwNW4(y&@=k6s3Ra>y0>=dLwR9w8HP_eVD4@3TjMyc>HX$7%LwYJZQ!<&htN6sjX} zsrW9s>W;rjA!8+9kL!(i5Cl&=xWG_}BdI=QM1o1JPKoht)}IwRE&lf?npI3g zp@X-1PG+JrtdC1?Wy3B=5eW(m-h&wL+Gc-BUuNiymT01C0!&O6b1NQOAravM8@aAePNJ8yXQZ?44APpOV8TEzUkiUgpOg zO>m0d0&+R9=2xlXGQxPlK%v%Jjb8CK7;GTQ=`>Go@Cuo1fo)p$iM{d5r~9I z(*n-vcwK@@Km6mwC!VKn;^EO0b;mLDQBU}?N2y7lmaN9e_R4L8*e7&xNJR-;q@tRq z#)7vhXay$3uB$>NdMpJGref^yrSeZPT=!^u(g7W9&2f6u`>trZm>c)*62(kU019FP zWSP_LkMFA)*a$l;Of^h-_oJMV%13GrP9eE~6UX?O!IEah2XZ2%ADv2m~#id+Gd|9{Z?M{ZG;AjU|_NS6Gi{!%9M=kJTH-e=1x2R2Dfn{|%beTQ*iuOUmv-%L7aH z9r|VETxIDSv7WJrTNSJ z9YC>D@xVuCR}3!d9(?qZ=ZVOa?(J04h6qUW_DNr>O>s4)Za8=3%7&NuSgGg0Fs)d7 zd+0NO3{wxz66xK1y4bx{cqfj6$yW+XJh&FP<2GAq(?y7WEtXEgepkTY>q|(-5LfPG zUO|1GWXh6&9{;`1gsx~<&d7CqACv0Yo^n`@G65I!g!7;gc_J|i39t}4qznDt?e}UO z27gsN&RXp$_+`Kkt=PBJ3I~K9r#F(B9T+$QJY-jFTjjA|)#wv0uJh*OoE+_MQ&{!N zsYoc-`9I*z7sGtz@O!CufJXil>hf|;cf{*Q&j>_y)gN=i(qob3-;EdLiIf`ycwjA1 z@lpk)H1PXwnVFK$P2ywC4ByBV<1@bLs?-VVvy-pHpJ-;owoo+BKG*l@`hcKs+ea=w z&~Q+aOC>^jj6`2GNm61tkf4SbEn(C-y0T*(M{!6|M3y3&1N@_@T;gL|H8OsI_H28C4M|bas0*I1EKwaeRyY)qCOs=vVPJN7YO zNz~r*&liVJc6FB$5T#tfV% zUe;`55Blg!^YFf7kWFyF@;y%~Q{R7cgOAqzoJH zcMIJ+cr}{XWjRb z>HLZF$>hk0%`<&PJ^wodsPo&7(wDe`ZSEoU0&vR@FGWFmlX}doj=Kcz0uxftd|@&l zLNg%;F08CulB9CdkGl6kEnXHRG!-+$550mN_YmpMqpRs6cAL18&5|q}k-86R^?deQ#mIG!T_aGPYRC!8ynkI(!TG;(0_Hm zrs~a!(4(S)tYLgQEjRB{Y#}_vVHP#wcJ}TeTH$9j!KDN5TMf)tM@w3+T9<2$QwLq; zzXdSR0fSRL!p4aTOEE`or^@<;DcvuQxkWK=@VY9$82av9gk;t8nhY?ooCnTyX5GQg ztv7K-;vH?I_%AnH#~-qAFMXvRXHL72Bpmx&Z2yEOKIxrb5v}`;$DZ54slQEgJM*}7 zaBeG-5&23uIj-lDI;ak*C$17JOnygfahE3Y@|oo-)H=D>uki9cZ=pSve@(+JWR~0I zHz<2S-53(hF2iNa{>Da+D^d$kkNZl5l_|KDDN;a!~z5zb;Nj#FKaP;bI9s-BXx} z`{)CI0Zl=*rIWpOUEv=;vxmyl;89azh9C#yA9$)(({ug{_N}t`8SlTg_kF8l7pAjP z88!>wnXNnt9G^?hR_$47u2!qbu6A<#{OU{9u`Rf#x@E&U1eVsjXw4gJPD<-7EOSW& zsow545!um`AzynyCh*Q_0o^+O#Z!q~^T}vQnxKMJ_U#45;iGW-lTH-*jQ3A$+Qaps z`p8t3JQ-EVD%mu2r$>Mg!M^*>up`}Lu{QA$0{v-N)L1&-3y%LjFd#|Mz@N99551n*Rnp{$C$KoOw@%x?&O%$n2kf{LHOoM{mRb z-<}vp;X0_)0-^k`OlxAs1H(W69rGe|^NreH5x5SMU;7+>l;;)OzTf-1S>t)Q6{!JR zmE*msCjMSV?WIrus|^8u@nlTn-Ks?gfX~0w!q2`2l&>vY=g1-b`?ZXx;f@t+2>>p8 zQf21Ym4f8YYk8uj4xFi=bxYs;pN9yN4N5ik?kcO5VT7#~|Lb^hP9VEjakq*c-JkRS z^>+Wds42yuMFj7SKbXwlqU--&r0}ZSbDyae;N||S5&v@$owu8&t;4`G{d}}|h{qtBrP%|f|b6eNlH!UXV>}qdqE{FcrMaddCnD#3BakZCLTq}pG zT7P$H@sr1#>bzYsu5}FO5C3`K!Y4O@+J;s@4VZs=8Q4lC10AEFm1PvI`u`r0)psch z2Q50T_!0nqvhv>zVYE3I-f(uY?fh?F>p+8m%>8{)^kUip7smA*gHGCiItBo?3ZI05 z#DF;Lo7l+j@hl3TVaQ)&e_m44(feyy*D@E8%k!%`j^aS2$8m)@n!JDapL7tRs>iO+ zX%8iB>N=l6?e?GH9`r^hP|EX6AoUUm4*#&wsNVSWUr!M9?5`Vlze!8+>`CRTiXJ{a zEP6TlHCdgxp7l?syxV`+gqO?L_`BQ>xjW@HU@M)wuM%yH_~-tb%r~z>!YCLkK1p~V z7M^<|H|O}=fptrp*R{hJDBS+#5em6`1m-e4CS}rZMY*pH+bH}33g-RTS@3L^Tm%w! zKe|%R2}p%B2JYAP{JO*LJ>#`PkEJ&F>Y&u7CUF%5fIZQ(>^zff)w?5l&Z|J&{v@NN z90rt@X)x~$x3=Y62|G6^G!Z$aubbiispQ|T0hO>ER~GrefU4nB0n zq##YYrcxpp+I;cM=S7zqmmadG?59so_;U!S+}8$4vDgo|m>j$cLni<%*Ve#8tAV9R zwhcNiE91|31DypO$-SR4sMeda5r#YSb7vjdmcHt97e)yG(m~~a8=H489y)6!(x2UP zRwB8`fRxwiy@Jqyx!HaFdi7&>JR#@5qjs00$I%%s{*}IkBU23os*%@)8 z6c=Ucy*VK?tm}mOQA)`M&_-WxeoFS+(yF)9sIL6SzJds#S)y--7VSD-z!`X-BP%68 zFr2 zf6u6Qg!euI*659vib?7J&z2=kfOy#!cp9%_UCVa@+u^8VXmO}m>HQtlHYi3O=y``3U! NB{? !found") - return val.IsJailed() -} - -// consumerPower returns the power on the consumer chain for -// validator with id (ix) i -func (s *CoreSuite) consumerPower(i int64) (int64, error) { - v, found := s.consumerKeeper().GetCCValidator(s.ctx(C), s.validator(i)) - if !found { - return 0, fmt.Errorf("GetCCValidator() -> !found") - } - return v.Power, nil -} - -// delegation returns the number of delegated tokens in the delegation from -// the delegator account to the validator with id (ix) i -func (s *CoreSuite) delegation(i int64) int64 { - d, found := s.providerStakingKeeper().GetDelegation(s.ctx(P), s.delegator(), s.validator(i)) - s.Require().Truef(found, "GetDelegation() -> !found") - return d.Shares.TruncateInt64() -} - -// validatorStatus returns the validator status for validator with id (ix) i -// on the provider chain -func (s *CoreSuite) validatorStatus(i int64) stakingtypes.BondStatus { - v, found := s.providerStakingKeeper().GetValidator(s.ctx(P), s.validator(i)) - s.Require().Truef(found, "GetValidator() -> !found") - return v.GetStatus() -} - -// providerTokens returns the number of tokens that the validator with -// id (ix) i has delegated to it in total on the provider chain -func (s *CoreSuite) providerTokens(i int64) int64 { - v, found := s.providerStakingKeeper().GetValidator(s.ctx(P), s.validator(i)) - s.Require().Truef(found, "GetValidator() -> !found") - return v.Tokens.Int64() -} - -// delegatorBalance returns the balance of the delegator account -func (s *CoreSuite) delegatorBalance() int64 { - d := s.delegator() - bal := s.providerChain().App.(*appProvider.App).BankKeeper.GetBalance(s.ctx(P), d, sdk.DefaultBondDenom) - return bal.Amount.Int64() -} - -// delegate delegates amt tokens to validator val -func (s *CoreSuite) delegate(val, amt int64) { - providerStaking := s.providerStakingKeeper() - server := stakingkeeper.NewMsgServerImpl(&providerStaking) - coin := sdk.NewCoin(sdk.DefaultBondDenom, sdk.NewInt(amt)) - d := s.delegator() - v := s.validator(val) - msg := stakingtypes.NewMsgDelegate(d, v, coin) - _, err := server.Delegate(sdk.WrapSDKContext(s.ctx(P)), msg) - // There may or may not be an error, depending on the trace - _ = err -} - -// undelegate undelegates amt tokens from validator val -func (s *CoreSuite) undelegate(val, amt int64) { - providerStaking := s.providerStakingKeeper() - server := stakingkeeper.NewMsgServerImpl(&providerStaking) - coin := sdk.NewCoin(sdk.DefaultBondDenom, sdk.NewInt(amt)) - d := s.delegator() - v := s.validator(val) - msg := stakingtypes.NewMsgUndelegate(d, v, coin) - _, err := server.Undelegate(sdk.WrapSDKContext(s.ctx(P)), msg) - // There may or may not be an error, depending on the trace - _ = err -} - -// consumerSlash simulates a slash event occurring on the consumer chain. -// It can be for a downtime or doublesign. -func (s *CoreSuite) consumerSlash(val sdk.ConsAddress, h int64, isDowntime bool) { - kind := stakingtypes.Infraction_INFRACTION_DOUBLE_SIGN - if isDowntime { - kind = stakingtypes.Infraction_INFRACTION_DOWNTIME - } - ctx := s.ctx(C) - before := len(ctx.EventManager().Events()) - s.consumerKeeper().SlashWithInfractionReason(ctx, val, h, 0, sdk.Dec{}, kind) - // consumer module emits packets on slash, so these must be collected. - evts := ctx.EventManager().Events() - packets := simibc.ParsePacketsFromEvents(evts[before:]) - if len(packets) > 0 { - s.simibc.Outboxes.AddPacket(s.chainID(C), packets[0]) - } -} - -func (s *CoreSuite) updateClient(chain string) { - s.simibc.UpdateClient(s.chainID(chain)) -} - -// deliver numPackets packets from the network to chain -func (s *CoreSuite) deliver(chain string, numPackets int) { - // Makes sure client is updated - s.updateClient(chain) - // Deliver any outstanding acks - s.simibc.DeliverAcks(s.chainID(chain), 999999) - // Consume deliverable packets from the network - s.simibc.DeliverPackets(s.chainID(chain), numPackets) -} - -func (s *CoreSuite) endAndBeginBlock(chain string) { - s.simibc.EndAndBeginBlock(s.chainID(chain), s.initState.BlockInterval, func() { - s.compareModelAndSystemState() - }) -} - -// compareModelAndSystemState compares the state in the SUT to the state in the -// the model. -func (s *CoreSuite) compareModelAndSystemState() { - // Get a diagnostic for debugging - diagnostic := s.traces.Diagnostic() - chain := s.traces.Action().Chain - - // Model time, height start at 0 so we need an offset for comparisons. - sutTimeOffset := time.Unix(s.offsetTimeUnix, 0).Add(-s.initState.BlockInterval).UTC() - modelTimeOffset := time.Duration(s.traces.Time()) * time.Second - sutHeightOffset := s.offsetHeight - 1 - modelHeightOffset := int64(s.traces.Height()) - s.Require().Equalf(sutTimeOffset.Add(modelTimeOffset), s.time(chain), diagnostic+"%s Time mismatch", chain) - s.Require().Equalf(sutHeightOffset+modelHeightOffset, s.height(chain), diagnostic+"%s Time mismatch", chain) - if chain == P { - for j := 0; j < s.initState.NumValidators; j++ { - have := s.validatorStatus(int64(j)) - s.Require().Equalf(s.traces.Status(j), have, diagnostic+"P bond status mismatch for val %d, expect %s, have %s", j, s.traces.Status(j).String(), have.String()) - } - for j := 0; j < s.initState.NumValidators; j++ { - s.Require().Equalf(int64(s.traces.Tokens(j)), s.providerTokens(int64(j)), diagnostic+"P tokens mismatch for val %d", j) - } - s.Require().Equalf(int64(s.traces.DelegatorTokens()), s.delegatorBalance(), diagnostic+"P del balance mismatch") - for j := 0; j < s.initState.NumValidators; j++ { - a := s.traces.Jailed(j) != nil - b := s.isJailed(int64(j)) - s.Require().Equalf(a, b, diagnostic+"P jail status mismatch for val %d", j) - } - } - if chain == C { - for j := 0; j < s.initState.NumValidators; j++ { - exp := s.traces.ConsumerPower(j) - actual, err := s.consumerPower(int64(j)) - if exp != nil { - s.Require().Nilf(err, diagnostic+" validator not found") - s.Require().Equalf(int64(*exp), actual, diagnostic+" power mismatch for val %d", j) - } else { - s.Require().Errorf(err, diagnostic+" power mismatch for val %d, expect 0 (nil), got %d", j, actual) - } - } - } -} - -func (s *CoreSuite) executeTrace() { - for i := range s.traces.Actions() { - s.traces.CurrentActionIx = i - - a := s.traces.Action() - - switch a.Kind { - case "Delegate": - s.delegate( - int64(a.Val), - int64(a.Amt), - ) - case "Undelegate": - s.undelegate( - int64(a.Val), - int64(a.Amt), - ) - case "ConsumerSlash": - s.consumerSlash( - s.consAddr(int64(a.Val)), - // The SUT height is greater than the model height - // because the SUT has to do initialization. - int64(a.InfractionHeight)+s.offsetHeight, - a.IsDowntime, - ) - case "UpdateClient": - s.updateClient(a.Chain) - case "Deliver": - s.deliver(a.Chain, a.NumPackets) - case "EndAndBeginBlock": - s.endAndBeginBlock(a.Chain) - default: - s.Require().FailNow("Failed to parse action") - } - } -} - -// Test a set of traces -func (s *CoreSuite) TestTraces() { - s.traces = Traces{ - Data: LoadTraces("traces.json"), - } - shortest := -1 - shortestLen := 10000000000 - for i := range s.traces.Data { - if !s.Run(fmt.Sprintf("Trace ix: %d", i), func() { - // Setup a new pair of chains for each trace - s.SetupTest() - - s.traces.CurrentTraceIx = i - defer func() { - // If a panic occurs, we trap it to print a diagnostic - // and improve debugging experience. - if r := recover(); r != nil { - fmt.Println(s.traces.Diagnostic()) - fmt.Println(r) - // Double panic to halt. - panic("Panic occurred during TestTraces") - } - }() - // Record information about the trace, for debugging - // diagnostics. - s.executeTrace() - }) { - if s.traces.CurrentActionIx < shortestLen { - shortest = s.traces.CurrentTraceIx - shortestLen = s.traces.CurrentActionIx - } - } - } - fmt.Println("Shortest [traceIx, actionIx]:", shortest, shortestLen) -} - -// TODO: diff tests will eventually be replaced by quint tests, and all this code could then be deleted. -// Until that decision is finalized, we'll just comment out the top-level test. - -// func TestCoreSuite(t *testing.T) { -// suite.Run(t, new(CoreSuite)) -// } - -// SetupTest sets up the test suite in a 'zero' state which matches -// the initial state in the model. -func (s *CoreSuite) SetupTest() { - path, valAddresses, offsetHeight, offsetTimeUnix := GetZeroState(&s.Suite, initStateVar) - s.initState = initStateVar - s.valAddresses = valAddresses - s.offsetHeight = offsetHeight - s.offsetTimeUnix = offsetTimeUnix - s.simibc = simibc.MakeRelayedPath(s.Suite.T(), path) -} diff --git a/tests/difference/core/driver/seed_gen_fuzzy_test.go b/tests/difference/core/driver/seed_gen_fuzzy_test.go deleted file mode 100644 index 610d31e40e..0000000000 --- a/tests/difference/core/driver/seed_gen_fuzzy_test.go +++ /dev/null @@ -1,85 +0,0 @@ -package core_test - -import ( - "bytes" - cryptoEd25519 "crypto/ed25519" - "testing" - - mock "github.com/cosmos/ibc-go/v7/testing/mock" - - cosmosEd25519 "github.com/cosmos/cosmos-sdk/crypto/keys/ed25519" - sdk "github.com/cosmos/cosmos-sdk/types" - stakingtypes "github.com/cosmos/cosmos-sdk/x/staking/types" - - tmtypes "github.com/cometbft/cometbft/types" -) - -func GetPV(seed []byte) mock.PV { - //lint:ignore SA1019 We don't care because this is only a test. - return mock.PV{PrivKey: &cosmosEd25519.PrivKey{Key: cryptoEd25519.NewKeyFromSeed(seed)}} //nolint:staticcheck // SA1019: cosmosEd25519.PrivKey is deprecated: PrivKey defines a ed25519 private key. NOTE: ed25519 keys must not be used in SDK apps except in a tendermint validator context. -} - -// getStakingKeyBytes takes seed bytes which can be be used to create -// a validator and returns the bytes that the staking module uses for -// lexicographic comparison using that validator -func getStakingKeyBytes(bz []byte) []byte { - pv := GetPV(bz) - pubKey, _ := pv.GetPubKey() - val := tmtypes.NewValidator(pubKey, 0) - addr, _ := sdk.ValAddressFromHex(val.Address.String()) - PK := pv.PrivKey.PubKey() - valAddr, _ := sdk.ValAddressFromBech32(addr.String()) - validator, _ := stakingtypes.NewValidator(valAddr, PK, stakingtypes.Description{}) - key := stakingtypes.GetValidatorsByPowerIndexKey(validator, sdk.DefaultPowerReduction) - return key -} - -// FuzzPrivateKeys will generate strings that can be used to seed -// new validator private keys, in a manner that ensures a strictly increasing -// order as per the lexicographic ordering of the staking module. -// This is needed to make sure that the lexicographic ordering is always -// consistent between the model and the SUT. -func FuzzPrivateKeys(f *testing.F) { - f.Fuzz(func(t *testing.T, bz []byte) { - k := cryptoEd25519.SeedSize - // Ensure 4 keys are generated - if len(bz) < 4*k { - t.Skip() - } - // Map each byte to 'a' or 'b' characters - for i, char := range bz { - bz[i] = byte(int(char)%2 + int('a')) - } - var keys [][]byte - // Get the staking module lexicographic bytes - for i := 0; i < 4; i++ { - keys = append(keys, getStakingKeyBytes(bz[i*k:i*k+k])) - } - good := true - // Check if the bytes are ordered strictly descending - for i := 0; i < 3; i++ { - // the execution is good if the keys are sorted in descending order - // Compare(a,b) === -1 IFF a > b - good = good && bytes.Compare(keys[i], keys[i+1]) == 1 - } - // If the bytes are ordered strictly descending - // we can use them as validator key seeds for diff testing. - if good { - strings := make([]string, 4) - for i := 0; i < 4; i++ { - strings[i] = string(bz[i*k : i*k+k]) - } - t.Errorf("[%s,\n%s,\n%s,\n%s]", strings[0], strings[1], strings[2], strings[3]) - } - }) - /* - Will output something like - [ - bbaaaababaabbaabababbaabbbbbbaaa, - abbbababbbabaaaaabaaabbbbababaab, - bbabaabaabbbbbabbbaababbbbabbbbb, - aabbbabaaaaababbbabaabaabbbbbbba - ] - which can be used to generate validator private keys. - */ -} diff --git a/tests/difference/core/driver/setup.go b/tests/difference/core/driver/setup.go deleted file mode 100644 index cf9d5e470d..0000000000 --- a/tests/difference/core/driver/setup.go +++ /dev/null @@ -1,625 +0,0 @@ -package core - -import ( - "bytes" - cryptoEd25519 "crypto/ed25519" - "encoding/json" - "time" - - clienttypes "github.com/cosmos/ibc-go/v7/modules/core/02-client/types" - channeltypes "github.com/cosmos/ibc-go/v7/modules/core/04-channel/types" - commitmenttypes "github.com/cosmos/ibc-go/v7/modules/core/23-commitment/types" - ibctmtypes "github.com/cosmos/ibc-go/v7/modules/light-clients/07-tendermint" - ibctesting "github.com/cosmos/ibc-go/v7/testing" - "github.com/cosmos/ibc-go/v7/testing/mock" - "github.com/stretchr/testify/require" - "github.com/stretchr/testify/suite" - - "github.com/cosmos/cosmos-sdk/baseapp" - codectypes "github.com/cosmos/cosmos-sdk/codec/types" - cryptocodec "github.com/cosmos/cosmos-sdk/crypto/codec" - cosmosEd25519 "github.com/cosmos/cosmos-sdk/crypto/keys/ed25519" - "github.com/cosmos/cosmos-sdk/crypto/keys/secp256k1" - sdk "github.com/cosmos/cosmos-sdk/types" - authtypes "github.com/cosmos/cosmos-sdk/x/auth/types" - banktypes "github.com/cosmos/cosmos-sdk/x/bank/types" - slashingkeeper "github.com/cosmos/cosmos-sdk/x/slashing/keeper" - slashingtypes "github.com/cosmos/cosmos-sdk/x/slashing/types" - stakingkeeper "github.com/cosmos/cosmos-sdk/x/staking/keeper" - stakingtypes "github.com/cosmos/cosmos-sdk/x/staking/types" - - abci "github.com/cometbft/cometbft/abci/types" - tmproto "github.com/cometbft/cometbft/proto/tendermint/types" - tmtypes "github.com/cometbft/cometbft/types" - - appConsumer "github.com/cosmos/interchain-security/v3/app/consumer" - appProvider "github.com/cosmos/interchain-security/v3/app/provider" - icstestingutils "github.com/cosmos/interchain-security/v3/testutil/ibc_testing" - testutil "github.com/cosmos/interchain-security/v3/testutil/integration" - simibc "github.com/cosmos/interchain-security/v3/testutil/simibc" - consumerkeeper "github.com/cosmos/interchain-security/v3/x/ccv/consumer/keeper" - consumertypes "github.com/cosmos/interchain-security/v3/x/ccv/consumer/types" - providerkeeper "github.com/cosmos/interchain-security/v3/x/ccv/provider/keeper" - ccv "github.com/cosmos/interchain-security/v3/x/ccv/types" -) - -type Builder struct { - suite *suite.Suite - path *ibctesting.Path - coordinator *ibctesting.Coordinator - valAddresses []sdk.ValAddress - initState InitState -} - -func (b *Builder) provider() *ibctesting.TestChain { - return b.coordinator.GetChain(ibctesting.GetChainID(0)) -} - -func (b *Builder) consumer() *ibctesting.TestChain { - return b.coordinator.GetChain(ibctesting.GetChainID(1)) -} - -func (b *Builder) providerCtx() sdk.Context { - return b.provider().GetContext() -} - -func (b *Builder) consumerCtx() sdk.Context { - return b.consumer().GetContext() -} - -func (b *Builder) providerStakingKeeper() stakingkeeper.Keeper { - return *b.provider().App.(*appProvider.App).StakingKeeper -} - -func (b *Builder) providerSlashingKeeper() slashingkeeper.Keeper { - return b.provider().App.(*appProvider.App).SlashingKeeper -} - -func (b *Builder) providerKeeper() providerkeeper.Keeper { - return b.provider().App.(*appProvider.App).ProviderKeeper -} - -func (b *Builder) consumerKeeper() consumerkeeper.Keeper { - return b.consumer().App.(*appConsumer.App).ConsumerKeeper -} - -func (b *Builder) providerEndpoint() *ibctesting.Endpoint { - return b.path.EndpointB -} - -func (b *Builder) consumerEndpoint() *ibctesting.Endpoint { - return b.path.EndpointA -} - -func (b *Builder) validator(i int64) sdk.ValAddress { - return b.valAddresses[i] -} - -func (b *Builder) consAddr(i int64) sdk.ConsAddress { - return sdk.ConsAddress(b.validator(i)) -} - -// getValidatorPK returns the validator private key using the given seed index -func (b *Builder) getValidatorPK(seedIx int) mock.PV { - seed := []byte(b.initState.PKSeeds[seedIx]) - return mock.PV{PrivKey: &cosmosEd25519.PrivKey{Key: cryptoEd25519.NewKeyFromSeed(seed)}} //nolint:staticcheck // SA1019: cosmosEd25519.PrivKey is deprecated: PrivKey defines a ed25519 private key. NOTE: ed25519 keys must not be used in SDK apps except in a tendermint validator context. -} - -func (b *Builder) getAppBytesAndSenders( - chainID string, - app ibctesting.TestingApp, - genesis map[string]json.RawMessage, - validators *tmtypes.ValidatorSet, -) ([]byte, []ibctesting.SenderAccount) { - accounts := []authtypes.GenesisAccount{} - balances := []banktypes.Balance{} - senderAccounts := []ibctesting.SenderAccount{} - - // Create genesis accounts. - for i := 0; i < b.initState.MaxValidators; i++ { - pk := secp256k1.GenPrivKey() - acc := authtypes.NewBaseAccount(pk.PubKey().Address().Bytes(), pk.PubKey(), uint64(i), 0) - - // Give enough funds for many delegations - // Extra units are to delegate to extra validators created later - // in order to bond them and still have INITIAL_DELEGATOR_TOKENS remaining - extra := 0 - for j := 0; j < b.initState.NumValidators; j++ { - if b.initState.ValStates.Status[j] != stakingtypes.Bonded { - extra += b.initState.ValStates.Delegation[j] - } - } - amt := uint64(b.initState.InitialDelegatorTokens + extra) - - bal := banktypes.Balance{ - Address: acc.GetAddress().String(), - Coins: sdk.NewCoins(sdk.NewCoin(sdk.DefaultBondDenom, sdk.NewIntFromUint64(amt))), - } - - accounts = append(accounts, acc) - balances = append(balances, bal) - - senderAccount := ibctesting.SenderAccount{ - SenderAccount: acc, - SenderPrivKey: pk, - } - - senderAccounts = append(senderAccounts, senderAccount) - } - - // set genesis accounts - genesisAuth := authtypes.NewGenesisState(authtypes.DefaultParams(), accounts) - genesis[authtypes.ModuleName] = app.AppCodec().MustMarshalJSON(genesisAuth) - - stakingValidators := make([]stakingtypes.Validator, 0, len(validators.Validators)) - delegations := make([]stakingtypes.Delegation, 0, len(validators.Validators)) - - // Sum bonded is needed for BondedPool account - sumBonded := sdk.NewInt(0) - initValPowers := []abci.ValidatorUpdate{} - - for i, val := range validators.Validators { - status := b.initState.ValStates.Status[i] - delegation := b.initState.ValStates.Delegation[i] - extra := b.initState.ValStates.ValidatorExtraTokens[i] - - tokens := sdk.NewInt(int64(delegation + extra)) - b.suite.Require().Equal(status, stakingtypes.Bonded, "All genesis validators should be bonded") - sumBonded = sumBonded.Add(tokens) - // delegator account receives delShares shares - delShares := sdk.NewDec(int64(delegation)) - // validator has additional sumShares due to extra units - sumShares := sdk.NewDec(int64(delegation + extra)) - - pk, err := cryptocodec.FromTmPubKeyInterface(val.PubKey) - require.NoError(b.suite.T(), err) - pkAny, err := codectypes.NewAnyWithValue(pk) - require.NoError(b.suite.T(), err) - - validator := stakingtypes.Validator{ - OperatorAddress: sdk.ValAddress(val.Address).String(), - ConsensusPubkey: pkAny, - Jailed: false, - Status: status, - Tokens: tokens, - DelegatorShares: sumShares, - Description: stakingtypes.Description{}, - UnbondingHeight: int64(0), - UnbondingTime: time.Unix(0, 0).UTC(), - Commission: stakingtypes.NewCommission(sdk.ZeroDec(), sdk.ZeroDec(), sdk.ZeroDec()), - MinSelfDelegation: sdk.ZeroInt(), - } - - stakingValidators = append(stakingValidators, validator) - - // Store delegation from the model delegator account - delegations = append(delegations, stakingtypes.NewDelegation(accounts[0].GetAddress(), val.Address.Bytes(), delShares)) - // Remaining delegation is from extra account - delegations = append(delegations, stakingtypes.NewDelegation(accounts[1].GetAddress(), val.Address.Bytes(), sumShares.Sub(delShares))) - - // add initial validator powers so consumer InitGenesis runs correctly - pub, _ := val.ToProto() - initValPowers = append(initValPowers, abci.ValidatorUpdate{ - Power: val.VotingPower, - PubKey: pub.PubKey, - }) - } - - bondDenom := sdk.DefaultBondDenom - genesisStaking := stakingtypes.GenesisState{} - genesisConsumer := consumertypes.GenesisState{} - - if genesis[stakingtypes.ModuleName] != nil { - // If staking module genesis already exists - app.AppCodec().MustUnmarshalJSON(genesis[stakingtypes.ModuleName], &genesisStaking) - bondDenom = genesisStaking.Params.BondDenom - } - - if genesis[consumertypes.ModuleName] != nil { - app.AppCodec().MustUnmarshalJSON(genesis[consumertypes.ModuleName], &genesisConsumer) - genesisConsumer.Provider.InitialValSet = initValPowers - genesisConsumer.Params.Enabled = true - genesis[consumertypes.ModuleName] = app.AppCodec().MustMarshalJSON(&genesisConsumer) - } - - // Set model parameters - genesisStaking.Params.MaxEntries = uint32(b.initState.MaxEntries) - genesisStaking.Params.MaxValidators = uint32(b.initState.MaxValidators) - genesisStaking.Params.UnbondingTime = b.initState.UnbondingP - genesisStaking = *stakingtypes.NewGenesisState(genesisStaking.Params, stakingValidators, delegations) - genesis[stakingtypes.ModuleName] = app.AppCodec().MustMarshalJSON(&genesisStaking) - - // add bonded amount to bonded pool module account - balances = append(balances, banktypes.Balance{ - Address: authtypes.NewModuleAddress(stakingtypes.BondedPoolName).String(), - Coins: sdk.Coins{sdk.NewCoin(bondDenom, sumBonded)}, - }) - - // add unbonded amount - balances = append(balances, banktypes.Balance{ - Address: authtypes.NewModuleAddress(stakingtypes.NotBondedPoolName).String(), - Coins: sdk.Coins{sdk.NewCoin(bondDenom, sdk.ZeroInt())}, - }) - - // update total funds supply - genesisBank := banktypes.NewGenesisState(banktypes.DefaultGenesisState().Params, balances, sdk.NewCoins(), []banktypes.Metadata{}, []banktypes.SendEnabled{}) - genesis[banktypes.ModuleName] = app.AppCodec().MustMarshalJSON(genesisBank) - - stateBytes, err := json.MarshalIndent(genesis, "", " ") - require.NoError(b.suite.T(), err) - - return stateBytes, senderAccounts -} - -func (b *Builder) newChain( - coord *ibctesting.Coordinator, - appInit icstestingutils.AppIniter, - chainID string, - validators *tmtypes.ValidatorSet, - signers map[string]tmtypes.PrivValidator, -) *ibctesting.TestChain { - app, genesis := appInit() - - baseapp.SetChainID(chainID)(app.GetBaseApp()) - - stateBytes, senderAccounts := b.getAppBytesAndSenders(chainID, app, genesis, validators) - - app.InitChain( - abci.RequestInitChain{ - ChainId: chainID, - Validators: []abci.ValidatorUpdate{}, - ConsensusParams: b.initState.ConsensusParams, - AppStateBytes: stateBytes, - }, - ) - - app.Commit() - - app.BeginBlock( - abci.RequestBeginBlock{ - Header: tmproto.Header{ - ChainID: chainID, - Height: app.LastBlockHeight() + 1, - AppHash: app.LastCommitID().Hash, - ValidatorsHash: validators.Hash(), - NextValidatorsHash: validators.Hash(), - }, - }, - ) - - chain := &ibctesting.TestChain{ - T: b.suite.T(), - Coordinator: coord, - ChainID: chainID, - App: app, - CurrentHeader: tmproto.Header{ - ChainID: chainID, - Height: 1, - Time: coord.CurrentTime.UTC(), - }, - QueryServer: app.GetIBCKeeper(), - TxConfig: app.GetTxConfig(), - Codec: app.AppCodec(), - Vals: validators, - NextVals: validators, - Signers: signers, - SenderPrivKey: senderAccounts[0].SenderPrivKey, - SenderAccount: senderAccounts[0].SenderAccount, - SenderAccounts: senderAccounts, - } - - coord.CommitBlock(chain) - - return chain -} - -func (b *Builder) createValidators() (*tmtypes.ValidatorSet, map[string]tmtypes.PrivValidator, []sdk.ValAddress) { - addresses := []sdk.ValAddress{} - signers := map[string]tmtypes.PrivValidator{} - validators := []*tmtypes.Validator{} - - for i, power := range b.initState.ValStates.Tokens { - if b.initState.ValStates.Status[i] != stakingtypes.Bonded { - continue - } - privVal := b.getValidatorPK(i) - - pubKey, err := privVal.GetPubKey() - require.NoError(b.suite.T(), err) - - // Compute address - addr, err := sdk.ValAddressFromHex(pubKey.Address().String()) - require.NoError(b.suite.T(), err) - addresses = append(addresses, addr) - - // Save signer - signers[pubKey.Address().String()] = privVal - - // Save validator with power - validators = append(validators, tmtypes.NewValidator(pubKey, int64(power))) - } - - return tmtypes.NewValidatorSet(validators), signers, addresses -} - -func (b *Builder) createProviderAndConsumer() { - coordinator := ibctesting.NewCoordinator(b.suite.T(), 0) - - // Create validators - validators, signers, addresses := b.createValidators() - // Create provider - coordinator.Chains[ibctesting.GetChainID(0)] = b.newChain(coordinator, icstestingutils.ProviderAppIniter, ibctesting.GetChainID(0), validators, signers) - // Create consumer, using the same validators. - valUpdates := testutil.ToValidatorUpdates(b.suite.T(), validators) - coordinator.Chains[ibctesting.GetChainID(1)] = b.newChain(coordinator, icstestingutils.ConsumerAppIniter(valUpdates), ibctesting.GetChainID(1), validators, signers) - - b.coordinator = coordinator - b.valAddresses = addresses -} - -// setSigningInfos sets the validator signing info in the provider Slashing module -func (b *Builder) setSigningInfos() { - for i := 0; i < b.initState.NumValidators; i++ { - info := slashingtypes.NewValidatorSigningInfo( - b.consAddr(int64(i)), - b.provider().CurrentHeader.GetHeight(), - 0, - time.Unix(0, 0), - false, - 0, - ) - b.providerSlashingKeeper().SetValidatorSigningInfo(b.providerCtx(), b.consAddr(int64(i)), info) - } -} - -// Checks that the lexicographic ordering of validator addresses as computed in -// the staking module match the ordering of validators in the model. -func (b *Builder) ensureValidatorLexicographicOrderingMatchesModel() { - check := func(lesser, greater sdk.ValAddress) { - lesserV, _ := b.providerStakingKeeper().GetValidator(b.providerCtx(), lesser) - greaterV, _ := b.providerStakingKeeper().GetValidator(b.providerCtx(), greater) - lesserKey := stakingtypes.GetValidatorsByPowerIndexKey(lesserV, sdk.DefaultPowerReduction) - greaterKey := stakingtypes.GetValidatorsByPowerIndexKey(greaterV, sdk.DefaultPowerReduction) - // The result will be 0 if a==b, -1 if a < b, and +1 if a > b. - res := bytes.Compare(lesserKey, greaterKey) - // Confirm that validator precedence is the same in code as in model - b.suite.Require().Equal(-1, res) - } - - // In order to match the model to the system under test it is necessary - // to enforce a strict lexicographic ordering on the validators. - // We must do this because the staking module will break ties when - // deciding the active validator set by comparing addresses lexicographically. - // Thus, we assert here that the ordering in the model matches the ordering - // in the SUT. - for i := range b.valAddresses[:len(b.valAddresses)-1] { - // validators are chosen sorted descending in the staking module - greater := b.valAddresses[i] - lesser := b.valAddresses[i+1] - check(lesser, greater) - } -} - -// delegate is used to delegate tokens to newly created -// validators in the setup process. -func (b *Builder) delegate(del int, val sdk.ValAddress, amt int64) { - d := b.provider().SenderAccounts[del].SenderAccount.GetAddress() - coins := sdk.NewCoin(sdk.DefaultBondDenom, sdk.NewInt(amt)) - msg := stakingtypes.NewMsgDelegate(d, val, coins) - providerStaking := b.providerStakingKeeper() - pskServer := stakingkeeper.NewMsgServerImpl(&providerStaking) - _, err := pskServer.Delegate(sdk.WrapSDKContext(b.providerCtx()), msg) - b.suite.Require().NoError(err) -} - -// addValidatorToStakingModule creates an additional validator with zero commission -// and zero tokens (zero voting power). -func (b *Builder) addValidatorToStakingModule(privVal mock.PV) { - coin := sdk.NewCoin(sdk.DefaultBondDenom, sdk.NewInt(0)) - - pubKey, err := privVal.GetPubKey() - require.NoError(b.suite.T(), err) - - // Compute address - addr, err := sdk.ValAddressFromHex(pubKey.Address().String()) - require.NoError(b.suite.T(), err) - - sdkPK, err := cryptocodec.FromTmPubKeyInterface(pubKey) - require.NoError(b.suite.T(), err) - - msg, err := stakingtypes.NewMsgCreateValidator( - addr, - sdkPK, - coin, - stakingtypes.Description{}, - stakingtypes.NewCommissionRates(sdk.ZeroDec(), sdk.ZeroDec(), sdk.ZeroDec()), - sdk.ZeroInt()) - b.suite.Require().NoError(err) - providerStaking := b.providerStakingKeeper() - pskServer := stakingkeeper.NewMsgServerImpl(&providerStaking) - _, _ = pskServer.CreateValidator(sdk.WrapSDKContext(b.providerCtx()), msg) -} - -func (b *Builder) addExtraProviderValidators() { - for i, status := range b.initState.ValStates.Status { - if status == stakingtypes.Unbonded { - privVal := b.getValidatorPK(i) - b.addValidatorToStakingModule(privVal) - pubKey, err := privVal.GetPubKey() - require.NoError(b.suite.T(), err) - - addr, err := sdk.ValAddressFromHex(pubKey.Address().String()) - require.NoError(b.suite.T(), err) - - b.valAddresses = append(b.valAddresses, addr) - b.provider().Signers[pubKey.Address().String()] = privVal - b.consumer().Signers[pubKey.Address().String()] = privVal - } - } - - b.setSigningInfos() - - b.ensureValidatorLexicographicOrderingMatchesModel() - - for i := range b.initState.ValStates.Status { - if b.initState.ValStates.Status[i] == stakingtypes.Unbonded { - del := b.initState.ValStates.Delegation[i] - extra := b.initState.ValStates.ValidatorExtraTokens[i] - b.delegate(0, b.validator(int64(i)), int64(del)) - b.delegate(1, b.validator(int64(i)), int64(extra)) - } - } -} - -func (b *Builder) setProviderParams() { - // Set the slash factors on the provider to match the model - slash := b.providerSlashingKeeper().GetParams(b.providerCtx()) - slash.SlashFractionDoubleSign = b.initState.SlashDoublesign - slash.SlashFractionDowntime = b.initState.SlashDowntime - err := b.providerSlashingKeeper().SetParams(b.providerCtx(), slash) - if err != nil { - panic(err) - } - // Set the throttle factors - throttle := b.providerKeeper().GetParams(b.providerCtx()) - throttle.SlashMeterReplenishFraction = "1.0" - throttle.SlashMeterReplenishPeriod = time.Second * 1 - b.providerKeeper().SetParams(b.providerCtx(), throttle) -} - -func (b *Builder) configurePath() { - b.path = ibctesting.NewPath(b.consumer(), b.provider()) - b.consumerEndpoint().ChannelConfig.PortID = ccv.ConsumerPortID - b.providerEndpoint().ChannelConfig.PortID = ccv.ProviderPortID - b.consumerEndpoint().ChannelConfig.Version = ccv.Version - b.providerEndpoint().ChannelConfig.Version = ccv.Version - b.consumerEndpoint().ChannelConfig.Order = channeltypes.ORDERED - b.providerEndpoint().ChannelConfig.Order = channeltypes.ORDERED -} - -func (b *Builder) createProvidersLocalClient() { - // Configure and create the consumer Client - tmCfg := b.providerEndpoint().ClientConfig.(*ibctesting.TendermintConfig) - tmCfg.UnbondingPeriod = b.initState.UnbondingC - tmCfg.TrustingPeriod = b.initState.Trusting - tmCfg.MaxClockDrift = b.initState.MaxClockDrift - err := b.providerEndpoint().CreateClient() - b.suite.Require().NoError(err) - // Create the Consumer chain ID mapping in the provider state - b.providerKeeper().SetConsumerClientId(b.providerCtx(), b.consumer().ChainID, b.providerEndpoint().ClientID) -} - -func (b *Builder) createConsumersLocalClientGenesis() *ibctmtypes.ClientState { - tmCfg := b.consumerEndpoint().ClientConfig.(*ibctesting.TendermintConfig) - tmCfg.UnbondingPeriod = b.initState.UnbondingP - tmCfg.TrustingPeriod = b.initState.Trusting - tmCfg.MaxClockDrift = b.initState.MaxClockDrift - - return ibctmtypes.NewClientState( - b.provider().ChainID, tmCfg.TrustLevel, tmCfg.TrustingPeriod, tmCfg.UnbondingPeriod, tmCfg.MaxClockDrift, - b.provider().LastHeader.GetHeight().(clienttypes.Height), commitmenttypes.GetSDKSpecs(), - []string{"upgrade", "upgradedIBCState"}, - ) -} - -func (b *Builder) createConsumerGenesis(client *ibctmtypes.ClientState) *consumertypes.GenesisState { - providerConsState := b.provider().LastHeader.ConsensusState() - - valUpdates := tmtypes.TM2PB.ValidatorUpdates(b.provider().Vals) - params := ccv.NewParams( - true, - 1000, // ignore distribution - "", // ignore distribution - "", // ignore distribution - ccv.DefaultCCVTimeoutPeriod, - ccv.DefaultTransferTimeoutPeriod, - ccv.DefaultConsumerRedistributeFrac, - ccv.DefaultHistoricalEntries, - b.initState.UnbondingC, - "0", // disable soft opt-out - []string{}, - []string{}, - ccv.DefaultRetryDelayPeriod, - ) - return consumertypes.NewInitialGenesisState(client, providerConsState, valUpdates, params) -} - -// The state of the data returned is equivalent to the state of two chains -// after a full handshake, but the precise order of steps used to reach the -// state does not necessarily mimic the order of steps that happen in a -// live scenario. -func GetZeroState( - suite *suite.Suite, - initState InitState, -) (path *ibctesting.Path, addrs []sdk.ValAddress, heightLastCommitted, timeLastCommitted int64) { - b := Builder{initState: initState, suite: suite} - - b.createProviderAndConsumer() - - b.setProviderParams() - - // This is the simplest way to initialize the slash meter - // after a change to the param value. - b.providerKeeper().InitializeSlashMeter(b.providerCtx()) - - b.addExtraProviderValidators() - - // Commit the additional validators - b.coordinator.CommitBlock(b.provider()) - - b.configurePath() - - // Create a client for the provider chain to use, using ibc go testing. - b.createProvidersLocalClient() - - // Manually create a client for the consumer chain to and bootstrap - // via genesis. - clientState := b.createConsumersLocalClientGenesis() - - consumerGenesis := b.createConsumerGenesis(clientState) - - b.consumerKeeper().InitGenesis(b.consumerCtx(), consumerGenesis) - - // Client ID is set in InitGenesis and we treat it as a block box. So - // must query it to use it with the endpoint. - clientID, _ := b.consumerKeeper().GetProviderClientID(b.consumerCtx()) - b.consumerEndpoint().ClientID = clientID - - // Handshake - b.coordinator.CreateConnections(b.path) - b.coordinator.CreateChannels(b.path) - - // Usually the consumer sets the channel ID when it receives a first VSC packet - // to the provider. For testing purposes, we can set it here. This is because - // we model a blank slate: a provider and consumer that have fully established - // their channel, and are ready for anything to happen. - b.consumerKeeper().SetProviderChannel(b.consumerCtx(), b.consumerEndpoint().ChannelID) - - // Catch up consumer height to provider height. The provider was one ahead - // from committing additional validators. - simibc.EndBlock(b.consumer(), func() {}) - - simibc.BeginBlock(b.consumer(), initState.BlockInterval) - simibc.BeginBlock(b.provider(), initState.BlockInterval) - - // Commit a block on both chains, giving us two committed headers from - // the same time and height. This is the starting point for all our - // data driven testing. - lastProviderHeader, _ := simibc.EndBlock(b.provider(), func() {}) - lastConsumerHeader, _ := simibc.EndBlock(b.consumer(), func() {}) - - // Want the height and time of last COMMITTED block - heightLastCommitted = b.provider().CurrentHeader.Height - timeLastCommitted = b.provider().CurrentHeader.Time.Unix() - - // Get ready to update clients. - simibc.BeginBlock(b.provider(), initState.BlockInterval) - simibc.BeginBlock(b.consumer(), initState.BlockInterval) - - // Update clients to the latest header. Now everything is ready to go! - // Ignore errors for brevity. Everything is checked in Assuptions test. - _ = simibc.UpdateReceiverClient(b.consumerEndpoint(), b.providerEndpoint(), lastConsumerHeader) - _ = simibc.UpdateReceiverClient(b.providerEndpoint(), b.consumerEndpoint(), lastProviderHeader) - - return b.path, b.valAddresses, heightLastCommitted, timeLastCommitted -} diff --git a/tests/difference/core/driver/setup_test.go b/tests/difference/core/driver/setup_test.go deleted file mode 100644 index 06e6a778ee..0000000000 --- a/tests/difference/core/driver/setup_test.go +++ /dev/null @@ -1,139 +0,0 @@ -package core - -import ( - "math" - "time" - - stakingtypes "github.com/cosmos/cosmos-sdk/x/staking/types" -) - -// TestAssumptionsSetup tests that the assumptions used to write the difftest -// driver hold. This test therefore does not test the system, but only that -// the driver is correctly setup. -func (s *CoreSuite) TestAssumptionsSetup() { - const FAIL_MSG = "Assumptions for core diff test failed: there is a problem with the driver or how the test is setup." - - // Staking module maxValidators param is correct - maxValsE := uint32(s.initState.MaxValidators) - maxVals := s.providerStakingKeeper().GetParams(s.ctx(P)).MaxValidators - - if maxValsE != maxVals { - s.T().Fatal(FAIL_MSG) - } - - // TODO: Write a check to make sure that the slash throttle params are set correctly. - // The params should be set such that the slash throttle never kicks in and stop a slash. - // This is because the model assumes that a slash will always be executed, no matter - // how many. This can be achieve by setting the slash factor to e.g. 1.0 and the refresh - // period to 1 block. - - // Delegator balance is correct - s.Require().Equal(int64(s.initState.InitialDelegatorTokens), s.delegatorBalance()) - - // Slash factors are correct - s.Require().Equal(s.initState.SlashDowntime, s.providerSlashingKeeper().SlashFractionDowntime(s.ctx(P))) - s.Require().Equal(s.initState.SlashDoublesign, s.providerSlashingKeeper().SlashFractionDoubleSign(s.ctx(P))) - - // Provider unbonding period is correct - stakeParams := s.providerStakingKeeper().GetParams(s.ctx(P)) - s.Require().Equal(stakeParams.UnbondingTime, s.initState.UnbondingP) - // Consumer unbonding period is correct - s.Require().Equal(s.consumerKeeper().UnbondingTime(s.ctx(C)), s.initState.UnbondingC) - - // Each validator has signing info - for i := 0; i < len(s.initState.ValStates.Tokens); i++ { - _, found := s.providerSlashingKeeper().GetValidatorSigningInfo(s.ctx(P), s.consAddr(int64(i))) - if !found { - s.Require().FailNow(FAIL_MSG) - } - } - - // Provider delegations are correct - for i := 0; i < len(s.initState.ValStates.Delegation); i++ { - E := int64(s.initState.ValStates.Delegation[i]) - A := s.delegation(int64(i)) - if E != A { - s.T().Fatal(FAIL_MSG) - } - } - - // Provider validator tokens are correct - for i := 0; i < len(s.initState.ValStates.Tokens); i++ { - E := int64(s.initState.ValStates.Tokens[i]) - A := s.providerTokens(int64(i)) - if E != A { - s.T().Fatal(FAIL_MSG) - } - } - - // Provider validator status is correct - for i := 0; i < len(s.initState.ValStates.Status); i++ { - E := s.initState.ValStates.Status[i] - A := s.validatorStatus(int64(i)) - if E != A { - s.T().Fatal(FAIL_MSG) - } - } - - // Staking module does not contain undelegations - s.providerStakingKeeper().IterateUnbondingDelegations(s.ctx(P), - func(index int64, ubd stakingtypes.UnbondingDelegation) bool { - s.T().Fatal(FAIL_MSG) - return false // Don't stop - }) - - // Staking module does contain redelegations - s.providerStakingKeeper().IterateRedelegations(s.ctx(P), - func(index int64, ubd stakingtypes.Redelegation) bool { - s.T().Fatal(FAIL_MSG) - return false // Don't stop - }) - - // Staking module does not contain unbonding validators - endTime := time.Unix(math.MaxInt64, 0) - endHeight := int64(math.MaxInt64) - unbondingValIterator := s.providerStakingKeeper().ValidatorQueueIterator(s.ctx(P), endTime, endHeight) - defer unbondingValIterator.Close() - for ; unbondingValIterator.Valid(); unbondingValIterator.Next() { - s.T().Fatal(FAIL_MSG) - } - - // Consumer has no pending data packets - s.Require().Empty(s.consumerKeeper().GetPendingPackets(s.ctx(C))) - - // Consumer has no maturities - for range s.consumerKeeper().GetAllPacketMaturityTimes(s.ctx(C)) { - s.T().Fatal(FAIL_MSG) - } - - // Consumer power - for i := 0; i < len(s.initState.ValStates.Status); i++ { - expectFound := s.initState.ValStates.Status[i] == stakingtypes.Bonded - expectPower := s.initState.ValStates.Tokens[i] - addr := s.validator(int64(i)) - val, found := s.consumerKeeper().GetCCValidator(s.ctx(C), addr) - s.Require().Equal(expectFound, found) - if expectFound { - if int64(expectPower) != val.Power { - s.T().Fatal(FAIL_MSG) - } - } - } - - // The offset time is the last committed time, but the SUT is +1 block ahead - // because the currentHeader time is ahead of the last committed. Therefore sub - // the difference (duration of 1 block). - s.Require().Equal(s.offsetTimeUnix, s.time(P).Add(-s.initState.BlockInterval).Unix()) - s.Require().Equal(s.offsetTimeUnix, s.time(C).Add(-s.initState.BlockInterval).Unix()) - - // The offset height is the last committed height, but the SUT is +1 because - // the currentHeader is +1 ahead of the last committed. Therefore sub 1. - s.Require().Equal(s.offsetHeight, s.height(P)-1) - s.Require().Equal(s.offsetHeight, s.height(C)-1) - - // Network is empty - s.Require().Empty(s.simibc.Outboxes.OutboxPackets[P]) - s.Require().Empty(s.simibc.Outboxes.OutboxPackets[C]) - s.Require().Empty(s.simibc.Outboxes.OutboxAcks[P]) - s.Require().Empty(s.simibc.Outboxes.OutboxAcks[C]) -} diff --git a/tests/difference/core/driver/trace.go b/tests/difference/core/driver/trace.go deleted file mode 100644 index 203a2adace..0000000000 --- a/tests/difference/core/driver/trace.go +++ /dev/null @@ -1,166 +0,0 @@ -package core - -import ( - "encoding/json" - "fmt" - "io" - "os" - - stakingtypes "github.com/cosmos/cosmos-sdk/x/staking/types" -) - -type Action struct { - Amt int `json:"amt,omitempty"` - Chain string `json:"chain,omitempty"` - InfractionHeight int `json:"infractionHeight,omitempty"` - IsDowntime bool `json:"isDowntime"` - Kind string `json:"kind"` - NumPackets int `json:"numPackets,omitempty"` - Val int `json:"val,omitempty"` -} - -type PartialState struct { - Delegation []int `json:"delegation,omitempty"` - DelegatorTokens int `json:"delegatorTokens,omitempty"` - Jailed []*int `json:"jailed,omitempty"` - OutstandingDowntime []bool `json:"outstandingDowntime,omitempty"` - ConsumerPower []*int `json:"consumerPower,omitempty"` - Status []string `json:"status,omitempty"` - Tokens []int `json:"tokens,omitempty"` - H int `json:"h,omitempty"` - T int `json:"t,omitempty"` -} - -type ActionAndPartialState struct { - Action Action `json:"action"` - PartialState PartialState `json:"partialState"` - Ix int `json:"ix"` -} - -type TraceData struct { - Actions []ActionAndPartialState `json:"actions"` - Constants struct { - BlockSeconds int `json:"BLOCK_SECONDS"` - C string `json:"C"` - DelegateAmtMax int `json:"DELEGATE_AMT_MAX"` - DelegateAmtMin int `json:"DELEGATE_AMT_MIN"` - InitialDelegatorTokens int `json:"INITIAL_DELEGATOR_TOKENS"` - IsDowntimeProbability float64 `json:"ISDOWNTIME_PROBABILITY"` - JailSeconds int `json:"JAIL_SECONDS"` - MaxNumPacketsForDeliver int `json:"MAX_NUM_PACKETS_FOR_DELIVER"` - MaxValidators int `json:"MAX_VALIDATORS"` - NumValidators int `json:"NUM_VALIDATORS"` - P string `json:"P"` - SlashDoublesign int `json:"SLASH_DOUBLESIGN"` - SlashDowntime int `json:"SLASH_DOWNTIME"` - TrustingSeconds int `json:"TRUSTING_SECONDS"` - UnbondingSecondsC int `json:"UNBONDING_SECONDS_C"` - UnbondingSecondsP int `json:"UNBONDING_SECONDS_P"` - UndelegateAmtMax int `json:"UNDELEGATE_AMT_MAX"` - UndelegateAmtMin int `json:"UNDELEGATE_AMT_MIN"` - } `json:"constants"` - Events []string `json:"events"` - Meta struct { - Commit string `json:"commit"` - Diff string `json:"diff"` - } `json:"meta"` -} - -func LoadTraces(fn string) []TraceData { - /* #nosec */ - fd, err := os.Open(fn) - if err != nil { - panic(err) - } - - /* #nosec */ - defer fd.Close() - - byteValue, _ := io.ReadAll(fd) - - var ret []TraceData - - err = json.Unmarshal(byteValue, &ret) - - if err != nil { - panic(err) - } - - return ret -} - -// Traces stores a list of traces -// and gives a diagnostic for debugging -// failed tests. -type Traces struct { - // index of trace in json - CurrentTraceIx int - // index of current action - CurrentActionIx int - // traces - Data []TraceData -} - -// diagnostic returns a string for diagnosing errors -func (t *Traces) Diagnostic() string { - return fmt.Sprintf("\n[diagnostic][trace %d, action %d, kind %s]", t.CurrentTraceIx, t.CurrentActionIx, t.Action().Kind) -} - -func (t *Traces) Trace() TraceData { - return t.Data[t.CurrentTraceIx] -} - -func (t *Traces) Actions() []ActionAndPartialState { - return t.Trace().Actions -} - -func (t *Traces) Action() Action { - return t.Data[t.CurrentTraceIx].Actions[t.CurrentActionIx].Action -} - -func (t *Traces) Consequence() PartialState { - return t.Data[t.CurrentTraceIx].Actions[t.CurrentActionIx].PartialState -} - -func (t *Traces) Delegation(i int) int { - return t.Consequence().Delegation[i] -} - -func (t *Traces) DelegatorTokens() int { - return t.Consequence().DelegatorTokens -} - -func (t *Traces) Jailed(i int) *int { - return t.Consequence().Jailed[i] -} - -func (t *Traces) OutstandingDowntime(i int) bool { - return t.Consequence().OutstandingDowntime[i] -} - -func (t *Traces) ConsumerPower(i int) *int { - return t.Consequence().ConsumerPower[i] -} - -func (t *Traces) Status(i int) stakingtypes.BondStatus { - s := t.Consequence().Status[i] - if s == "unbonding" { - return stakingtypes.Unbonding - } - if s == "unbonded" { - return stakingtypes.Unbonded - } - return stakingtypes.Bonded -} - -func (t *Traces) Tokens(i int) int { - return t.Consequence().Tokens[i] -} - -func (t *Traces) Time() int { - return t.Consequence().T -} - -func (t *Traces) Height() int { - return t.Consequence().H -} diff --git a/tests/difference/core/driver/traces.json b/tests/difference/core/driver/traces.json deleted file mode 100644 index 588d988cd0..0000000000 --- a/tests/difference/core/driver/traces.json +++ /dev/null @@ -1 +0,0 @@ -[{"meta":{"commit":"7ffd0c04e4205cbc9caf212abfe6c59ee43153bf"},"constants":{"P":"provider","C":"consumer","UNBONDING_SECONDS_P":70,"UNBONDING_SECONDS_C":50,"TRUSTING_SECONDS":49,"NUM_VALIDATORS":4,"MAX_VALIDATORS":2,"SLASH_DOUBLESIGN":0,"SLASH_DOWNTIME":0,"JAIL_SECONDS":999999999999999,"BLOCK_SECONDS":6,"INITIAL_DELEGATOR_TOKENS":10000000000000,"DELEGATE_AMT_MIN":1000,"DELEGATE_AMT_MAX":5000,"UNDELEGATE_AMT_MIN":1000,"UNDELEGATE_AMT_MAX":5000,"ISDOWNTIME_PROBABILITY":0.5,"MAX_NUM_PACKETS_FOR_DELIVER":6},"actions":[{"ix":0,"action":{"kind":"Undelegate","val":2,"amt":1428},"partialState":{"h":1,"t":6,"tokens":[5000,4000,1572,2000],"delegation":[4000,3000,572,1000],"delegatorTokens":10000000000000}},{"ix":1,"action":{"kind":"Deliver","chain":"consumer","numPackets":1},"partialState":{"h":1,"t":6,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":2,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":2,"t":12,"tokens":[5000,4000,1572,2000],"delegation":[4000,3000,572,1000],"delegatorTokens":10000000000000,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":3,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":4,"action":{"kind":"Deliver","chain":"consumer","numPackets":3},"partialState":{"h":1,"t":6,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":5,"action":{"kind":"Undelegate","val":1,"amt":4915},"partialState":{"h":2,"t":12,"tokens":[5000,4000,1572,2000],"delegation":[4000,3000,572,1000],"delegatorTokens":10000000000000}},{"ix":6,"action":{"kind":"Delegate","val":0,"amt":2733},"partialState":{"h":2,"t":12,"tokens":[7733,4000,1572,2000],"delegation":[6733,3000,572,1000],"delegatorTokens":9999999997267}},{"ix":7,"action":{"kind":"Deliver","chain":"consumer","numPackets":2},"partialState":{"h":1,"t":6,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":8,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":9,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":10,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":11,"action":{"kind":"Delegate","val":2,"amt":1883},"partialState":{"h":2,"t":12,"tokens":[7733,4000,3455,2000],"delegation":[6733,3000,2455,1000],"delegatorTokens":9999999995384}},{"ix":12,"action":{"kind":"Undelegate","val":1,"amt":1965},"partialState":{"h":2,"t":12,"tokens":[7733,2035,3455,2000],"delegation":[6733,1035,2455,1000],"delegatorTokens":9999999995384}},{"ix":13,"action":{"kind":"ConsumerSlash","val":3,"infractionHeight":0,"isDowntime":false},"partialState":{"h":1,"t":6,"outstandingDowntime":[false,false,false,false]}},{"ix":14,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":2,"t":12,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":15,"action":{"kind":"Undelegate","val":2,"amt":2436},"partialState":{"h":2,"t":12,"tokens":[7733,2035,1019,2000],"delegation":[6733,1035,19,1000],"delegatorTokens":9999999995384}},{"ix":16,"action":{"kind":"Undelegate","val":3,"amt":4153},"partialState":{"h":2,"t":12,"tokens":[7733,2035,1019,2000],"delegation":[6733,1035,19,1000],"delegatorTokens":9999999995384}},{"ix":17,"action":{"kind":"Undelegate","val":3,"amt":2160},"partialState":{"h":2,"t":12,"tokens":[7733,2035,1019,2000],"delegation":[6733,1035,19,1000],"delegatorTokens":9999999995384}},{"ix":18,"action":{"kind":"Delegate","val":1,"amt":2433},"partialState":{"h":2,"t":12,"tokens":[7733,4468,1019,2000],"delegation":[6733,3468,19,1000],"delegatorTokens":9999999992951}},{"ix":19,"action":{"kind":"Undelegate","val":3,"amt":4429},"partialState":{"h":2,"t":12,"tokens":[7733,4468,1019,2000],"delegation":[6733,3468,19,1000],"delegatorTokens":9999999992951}},{"ix":20,"action":{"kind":"Delegate","val":3,"amt":1384},"partialState":{"h":2,"t":12,"tokens":[7733,4468,1019,3384],"delegation":[6733,3468,19,2384],"delegatorTokens":9999999991567}},{"ix":21,"action":{"kind":"ConsumerSlash","val":0,"infractionHeight":0,"isDowntime":false},"partialState":{"h":2,"t":12,"outstandingDowntime":[false,false,false,false]}},{"ix":22,"action":{"kind":"ConsumerSlash","val":0,"infractionHeight":1,"isDowntime":true},"partialState":{"h":2,"t":12,"outstandingDowntime":[true,false,false,false]}},{"ix":23,"action":{"kind":"Undelegate","val":1,"amt":4385},"partialState":{"h":2,"t":12,"tokens":[7733,4468,1019,3384],"delegation":[6733,3468,19,2384],"delegatorTokens":9999999991567}},{"ix":24,"action":{"kind":"Delegate","val":0,"amt":4080},"partialState":{"h":2,"t":12,"tokens":[11813,4468,1019,3384],"delegation":[10813,3468,19,2384],"delegatorTokens":9999999987487}},{"ix":25,"action":{"kind":"Undelegate","val":1,"amt":3369},"partialState":{"h":2,"t":12,"tokens":[11813,1099,1019,3384],"delegation":[10813,99,19,2384],"delegatorTokens":9999999987487}},{"ix":26,"action":{"kind":"Delegate","val":3,"amt":3499},"partialState":{"h":2,"t":12,"tokens":[11813,1099,1019,6883],"delegation":[10813,99,19,5883],"delegatorTokens":9999999983988}},{"ix":27,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":3,"t":18,"tokens":[11813,1099,1019,6883],"delegation":[10813,99,19,5883],"delegatorTokens":9999999983988,"jailed":[null,null,null,null],"status":["bonded","unbonding","unbonded","bonded"]}},{"ix":28,"action":{"kind":"Undelegate","val":0,"amt":1757},"partialState":{"h":3,"t":18,"tokens":[10056,1099,1019,6883],"delegation":[9056,99,19,5883],"delegatorTokens":9999999983988}},{"ix":29,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":3,"t":18,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[true,false,false,false]}},{"ix":30,"action":{"kind":"ConsumerSlash","val":0,"infractionHeight":1,"isDowntime":false},"partialState":{"h":3,"t":18,"outstandingDowntime":[true,false,false,false]}},{"ix":31,"action":{"kind":"Undelegate","val":0,"amt":2387},"partialState":{"h":3,"t":18,"tokens":[7669,1099,1019,6883],"delegation":[6669,99,19,5883],"delegatorTokens":9999999983988}},{"ix":32,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":4,"t":24,"tokens":[7669,1099,1019,6883],"delegation":[6669,99,19,5883],"delegatorTokens":9999999983988,"jailed":[null,null,null,null],"status":["bonded","unbonding","unbonded","bonded"]}},{"ix":33,"action":{"kind":"Undelegate","val":3,"amt":4919},"partialState":{"h":4,"t":24,"tokens":[7669,1099,1019,1964],"delegation":[6669,99,19,964],"delegatorTokens":9999999983988}},{"ix":34,"action":{"kind":"ConsumerSlash","val":0,"infractionHeight":2,"isDowntime":false},"partialState":{"h":3,"t":18,"outstandingDowntime":[true,false,false,false]}},{"ix":35,"action":{"kind":"ConsumerSlash","val":3,"infractionHeight":1,"isDowntime":false},"partialState":{"h":3,"t":18,"outstandingDowntime":[true,false,false,false]}},{"ix":36,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":5,"t":30,"tokens":[7669,1099,1019,1964],"delegation":[6669,99,19,964],"delegatorTokens":9999999983988,"jailed":[null,null,null,null],"status":["bonded","unbonding","unbonded","bonded"]}},{"ix":37,"action":{"kind":"Delegate","val":3,"amt":3824},"partialState":{"h":5,"t":30,"tokens":[7669,1099,1019,5788],"delegation":[6669,99,19,4788],"delegatorTokens":9999999980164}},{"ix":38,"action":{"kind":"Delegate","val":3,"amt":4478},"partialState":{"h":5,"t":30,"tokens":[7669,1099,1019,10266],"delegation":[6669,99,19,9266],"delegatorTokens":9999999975686}},{"ix":39,"action":{"kind":"Deliver","chain":"provider","numPackets":5},"partialState":{"h":5,"t":30,"tokens":[7669,1099,1019,10266],"delegation":[6669,99,19,9266],"delegatorTokens":9999999975686,"jailed":[null,null,null,null],"status":["bonded","unbonding","unbonded","bonded"]}},{"ix":40,"action":{"kind":"ConsumerSlash","val":1,"infractionHeight":0,"isDowntime":false},"partialState":{"h":3,"t":18,"outstandingDowntime":[true,false,false,false]}},{"ix":41,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":6,"t":36,"tokens":[7669,1099,1019,10266],"delegation":[6669,99,19,9266],"delegatorTokens":9999999975686,"jailed":[null,null,null,null],"status":["bonded","unbonding","unbonded","bonded"]}},{"ix":42,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":43,"action":{"kind":"Delegate","val":0,"amt":4648},"partialState":{"h":6,"t":36,"tokens":[12317,1099,1019,10266],"delegation":[11317,99,19,9266],"delegatorTokens":9999999971038}},{"ix":44,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":4,"t":24,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[true,false,false,false]}},{"ix":45,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":46,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":5,"t":30,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[true,false,false,false]}},{"ix":47,"action":{"kind":"Delegate","val":3,"amt":2978},"partialState":{"h":6,"t":36,"tokens":[12317,1099,1019,13244],"delegation":[11317,99,19,12244],"delegatorTokens":9999999968060}},{"ix":48,"action":{"kind":"Undelegate","val":3,"amt":2710},"partialState":{"h":6,"t":36,"tokens":[12317,1099,1019,10534],"delegation":[11317,99,19,9534],"delegatorTokens":9999999968060}},{"ix":49,"action":{"kind":"Undelegate","val":0,"amt":1848},"partialState":{"h":6,"t":36,"tokens":[10469,1099,1019,10534],"delegation":[9469,99,19,9534],"delegatorTokens":9999999968060}},{"ix":50,"action":{"kind":"Deliver","chain":"provider","numPackets":5},"partialState":{"h":6,"t":36,"tokens":[10469,1099,1019,10534],"delegation":[9469,99,19,9534],"delegatorTokens":9999999968060,"jailed":[null,null,null,null],"status":["bonded","unbonding","unbonded","bonded"]}},{"ix":51,"action":{"kind":"Deliver","chain":"provider","numPackets":4},"partialState":{"h":6,"t":36,"tokens":[10469,1099,1019,10534],"delegation":[9469,99,19,9534],"delegatorTokens":9999999968060,"jailed":[null,null,null,null],"status":["bonded","unbonding","unbonded","bonded"]}},{"ix":52,"action":{"kind":"Deliver","chain":"consumer","numPackets":1},"partialState":{"h":5,"t":30,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[true,false,false,false]}},{"ix":53,"action":{"kind":"Deliver","chain":"provider","numPackets":4},"partialState":{"h":6,"t":36,"tokens":[10469,1099,1019,10534],"delegation":[9469,99,19,9534],"delegatorTokens":9999999968060,"jailed":[null,null,null,null],"status":["bonded","unbonding","unbonded","bonded"]}},{"ix":54,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":6,"t":36,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[true,false,false,false]}},{"ix":55,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":56,"action":{"kind":"Deliver","chain":"consumer","numPackets":3},"partialState":{"h":6,"t":36,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[true,false,false,false]}},{"ix":57,"action":{"kind":"Undelegate","val":0,"amt":2160},"partialState":{"h":6,"t":36,"tokens":[8309,1099,1019,10534],"delegation":[7309,99,19,9534],"delegatorTokens":9999999968060}},{"ix":58,"action":{"kind":"Deliver","chain":"provider","numPackets":2},"partialState":{"h":6,"t":36,"tokens":[8309,1099,1019,10534],"delegation":[7309,99,19,9534],"delegatorTokens":9999999968060,"jailed":[null,null,null,null],"status":["bonded","unbonding","unbonded","bonded"]}},{"ix":59,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":7,"t":42,"tokens":[8309,1099,1019,10534],"delegation":[7309,99,19,9534],"delegatorTokens":9999999968060,"jailed":[1000000000000035,null,null,null],"status":["bonded","unbonding","unbonded","bonded"]}},{"ix":60,"action":{"kind":"Delegate","val":2,"amt":1533},"partialState":{"h":7,"t":42,"tokens":[8309,1099,2552,10534],"delegation":[7309,99,1552,9534],"delegatorTokens":9999999966527}},{"ix":61,"action":{"kind":"Delegate","val":1,"amt":1066},"partialState":{"h":7,"t":42,"tokens":[8309,2165,2552,10534],"delegation":[7309,1165,1552,9534],"delegatorTokens":9999999965461}},{"ix":62,"action":{"kind":"Undelegate","val":2,"amt":3382},"partialState":{"h":7,"t":42,"tokens":[8309,2165,2552,10534],"delegation":[7309,1165,1552,9534],"delegatorTokens":9999999965461}},{"ix":63,"action":{"kind":"Deliver","chain":"consumer","numPackets":2},"partialState":{"h":6,"t":36,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[true,false,false,false]}},{"ix":64,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":7,"t":42,"consumerPower":[7669,null,null,10266],"outstandingDowntime":[true,false,false,false]}},{"ix":65,"action":{"kind":"Deliver","chain":"consumer","numPackets":5},"partialState":{"h":7,"t":42,"consumerPower":[7669,null,null,10266],"outstandingDowntime":[true,false,false,false]}},{"ix":66,"action":{"kind":"Deliver","chain":"consumer","numPackets":4},"partialState":{"h":7,"t":42,"consumerPower":[7669,null,null,10266],"outstandingDowntime":[true,false,false,false]}},{"ix":67,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":68,"action":{"kind":"Deliver","chain":"consumer","numPackets":6},"partialState":{"h":7,"t":42,"consumerPower":[7669,null,null,10266],"outstandingDowntime":[true,false,false,false]}},{"ix":69,"action":{"kind":"Undelegate","val":2,"amt":2242},"partialState":{"h":7,"t":42,"tokens":[8309,2165,2552,10534],"delegation":[7309,1165,1552,9534],"delegatorTokens":9999999965461}},{"ix":70,"action":{"kind":"Delegate","val":3,"amt":2905},"partialState":{"h":7,"t":42,"tokens":[8309,2165,2552,13439],"delegation":[7309,1165,1552,12439],"delegatorTokens":9999999962556}},{"ix":71,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":8,"t":48,"consumerPower":[7669,null,null,10266],"outstandingDowntime":[true,false,false,false]}},{"ix":72,"action":{"kind":"Deliver","chain":"consumer","numPackets":6},"partialState":{"h":8,"t":48,"consumerPower":[7669,null,null,10266],"outstandingDowntime":[true,false,false,false]}},{"ix":73,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":8,"t":48,"tokens":[8309,2165,2552,13439],"delegation":[7309,1165,1552,12439],"delegatorTokens":9999999962556,"jailed":[1000000000000035,null,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":74,"action":{"kind":"Delegate","val":1,"amt":3194},"partialState":{"h":8,"t":48,"tokens":[8309,5359,2552,13439],"delegation":[7309,4359,1552,12439],"delegatorTokens":9999999959362}},{"ix":75,"action":{"kind":"Undelegate","val":2,"amt":2169},"partialState":{"h":8,"t":48,"tokens":[8309,5359,2552,13439],"delegation":[7309,4359,1552,12439],"delegatorTokens":9999999959362}},{"ix":76,"action":{"kind":"Deliver","chain":"provider","numPackets":6},"partialState":{"h":8,"t":48,"tokens":[8309,5359,2552,13439],"delegation":[7309,4359,1552,12439],"delegatorTokens":9999999959362,"jailed":[1000000000000035,null,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":77,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":78,"action":{"kind":"Deliver","chain":"provider","numPackets":6},"partialState":{"h":8,"t":48,"tokens":[8309,5359,2552,13439],"delegation":[7309,4359,1552,12439],"delegatorTokens":9999999959362,"jailed":[1000000000000035,null,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":79,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":80,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":9,"t":54,"tokens":[8309,5359,2552,13439],"delegation":[7309,4359,1552,12439],"delegatorTokens":9999999959362,"jailed":[1000000000000035,null,null,null],"status":["unbonding","bonded","unbonding","bonded"]}},{"ix":81,"action":{"kind":"Deliver","chain":"consumer","numPackets":3},"partialState":{"h":8,"t":48,"consumerPower":[7669,null,null,10266],"outstandingDowntime":[false,false,false,false]}},{"ix":82,"action":{"kind":"Undelegate","val":2,"amt":1241},"partialState":{"h":9,"t":54,"tokens":[8309,5359,1311,13439],"delegation":[7309,4359,311,12439],"delegatorTokens":9999999959362}},{"ix":83,"action":{"kind":"Undelegate","val":2,"amt":4391},"partialState":{"h":9,"t":54,"tokens":[8309,5359,1311,13439],"delegation":[7309,4359,311,12439],"delegatorTokens":9999999959362}},{"ix":84,"action":{"kind":"Deliver","chain":"provider","numPackets":4},"partialState":{"h":9,"t":54,"tokens":[8309,5359,1311,13439],"delegation":[7309,4359,311,12439],"delegatorTokens":9999999959362,"jailed":[1000000000000035,null,null,null],"status":["unbonding","bonded","unbonding","bonded"]}},{"ix":85,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":10,"t":60,"tokens":[8309,5359,1311,13439],"delegation":[7309,4359,311,12439],"delegatorTokens":9999999959362,"jailed":[1000000000000035,null,null,null],"status":["unbonding","bonded","unbonding","bonded"]}},{"ix":86,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":9,"t":54,"consumerPower":[null,null,2552,13439],"outstandingDowntime":[false,false,false,false]}},{"ix":87,"action":{"kind":"Undelegate","val":3,"amt":4757},"partialState":{"h":10,"t":60,"tokens":[8309,5359,1311,8682],"delegation":[7309,4359,311,7682],"delegatorTokens":9999999959362}},{"ix":88,"action":{"kind":"Undelegate","val":3,"amt":4725},"partialState":{"h":10,"t":60,"tokens":[8309,5359,1311,3957],"delegation":[7309,4359,311,2957],"delegatorTokens":9999999959362}},{"ix":89,"action":{"kind":"Deliver","chain":"consumer","numPackets":6},"partialState":{"h":9,"t":54,"consumerPower":[null,null,2552,13439],"outstandingDowntime":[false,false,false,false]}},{"ix":90,"action":{"kind":"Delegate","val":3,"amt":3894},"partialState":{"h":10,"t":60,"tokens":[8309,5359,1311,7851],"delegation":[7309,4359,311,6851],"delegatorTokens":9999999955468}},{"ix":91,"action":{"kind":"Delegate","val":2,"amt":4230},"partialState":{"h":10,"t":60,"tokens":[8309,5359,5541,7851],"delegation":[7309,4359,4541,6851],"delegatorTokens":9999999951238}},{"ix":92,"action":{"kind":"Deliver","chain":"provider","numPackets":4},"partialState":{"h":10,"t":60,"tokens":[8309,5359,5541,7851],"delegation":[7309,4359,4541,6851],"delegatorTokens":9999999951238,"jailed":[1000000000000035,null,null,null],"status":["unbonding","bonded","unbonding","bonded"]}},{"ix":93,"action":{"kind":"Deliver","chain":"consumer","numPackets":1},"partialState":{"h":9,"t":54,"consumerPower":[null,null,2552,13439],"outstandingDowntime":[false,false,false,false]}},{"ix":94,"action":{"kind":"Undelegate","val":1,"amt":4798},"partialState":{"h":10,"t":60,"tokens":[8309,5359,5541,7851],"delegation":[7309,4359,4541,6851],"delegatorTokens":9999999951238}},{"ix":95,"action":{"kind":"Delegate","val":2,"amt":2898},"partialState":{"h":10,"t":60,"tokens":[8309,5359,8439,7851],"delegation":[7309,4359,7439,6851],"delegatorTokens":9999999948340}},{"ix":96,"action":{"kind":"Undelegate","val":3,"amt":3342},"partialState":{"h":10,"t":60,"tokens":[8309,5359,8439,4509],"delegation":[7309,4359,7439,3509],"delegatorTokens":9999999948340}},{"ix":97,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":98,"action":{"kind":"Undelegate","val":2,"amt":3066},"partialState":{"h":10,"t":60,"tokens":[8309,5359,5373,4509],"delegation":[7309,4359,4373,3509],"delegatorTokens":9999999948340}},{"ix":99,"action":{"kind":"Delegate","val":2,"amt":1465},"partialState":{"h":10,"t":60,"tokens":[8309,5359,6838,4509],"delegation":[7309,4359,5838,3509],"delegatorTokens":9999999946875}},{"ix":100,"action":{"kind":"Undelegate","val":3,"amt":1527},"partialState":{"h":10,"t":60,"tokens":[8309,5359,6838,2982],"delegation":[7309,4359,5838,1982],"delegatorTokens":9999999946875}},{"ix":101,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":102,"action":{"kind":"Delegate","val":0,"amt":2447},"partialState":{"h":10,"t":60,"tokens":[10756,5359,6838,2982],"delegation":[9756,4359,5838,1982],"delegatorTokens":9999999944428}},{"ix":103,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":10,"t":60,"consumerPower":[null,5359,null,13439],"outstandingDowntime":[false,false,false,false]}},{"ix":104,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":105,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":106,"action":{"kind":"Undelegate","val":3,"amt":4786},"partialState":{"h":10,"t":60,"tokens":[10756,5359,6838,2982],"delegation":[9756,4359,5838,1982],"delegatorTokens":9999999944428}},{"ix":107,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":108,"action":{"kind":"Undelegate","val":2,"amt":2238},"partialState":{"h":10,"t":60,"tokens":[10756,5359,4600,2982],"delegation":[9756,4359,3600,1982],"delegatorTokens":9999999944428}},{"ix":109,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":11,"t":66,"tokens":[10756,5359,4600,2982],"delegation":[9756,4359,3600,1982],"delegatorTokens":9999999944428,"jailed":[1000000000000035,null,null,null],"status":["unbonding","bonded","bonded","unbonding"]}},{"ix":110,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":11,"t":66,"consumerPower":[null,5359,null,13439],"outstandingDowntime":[false,false,false,false]}},{"ix":111,"action":{"kind":"Undelegate","val":2,"amt":2762},"partialState":{"h":11,"t":66,"tokens":[10756,5359,1838,2982],"delegation":[9756,4359,838,1982],"delegatorTokens":9999999944428}},{"ix":112,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":113,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":114,"action":{"kind":"Deliver","chain":"consumer","numPackets":5},"partialState":{"h":11,"t":66,"consumerPower":[null,5359,null,13439],"outstandingDowntime":[false,false,false,false]}},{"ix":115,"action":{"kind":"Undelegate","val":1,"amt":3513},"partialState":{"h":11,"t":66,"tokens":[10756,1846,1838,2982],"delegation":[9756,846,838,1982],"delegatorTokens":9999999944428}},{"ix":116,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":117,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":12,"t":72,"consumerPower":[null,5359,null,13439],"outstandingDowntime":[false,false,false,false]}},{"ix":118,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":13,"t":78,"consumerPower":[null,5359,null,13439],"outstandingDowntime":[false,false,false,false]}},{"ix":119,"action":{"kind":"Undelegate","val":3,"amt":1258},"partialState":{"h":11,"t":66,"tokens":[10756,1846,1838,1724],"delegation":[9756,846,838,724],"delegatorTokens":9999999944428}},{"ix":120,"action":{"kind":"Delegate","val":1,"amt":3415},"partialState":{"h":11,"t":66,"tokens":[10756,5261,1838,1724],"delegation":[9756,4261,838,724],"delegatorTokens":9999999941013}},{"ix":121,"action":{"kind":"Deliver","chain":"consumer","numPackets":2},"partialState":{"h":13,"t":78,"consumerPower":[null,5359,null,13439],"outstandingDowntime":[false,false,false,false]}},{"ix":122,"action":{"kind":"Undelegate","val":0,"amt":2437},"partialState":{"h":11,"t":66,"tokens":[8319,5261,1838,1724],"delegation":[7319,4261,838,724],"delegatorTokens":9999999941013}},{"ix":123,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":12,"t":72,"tokens":[8319,5261,1838,1724],"delegation":[7319,4261,838,724],"delegatorTokens":9999999941013,"jailed":[1000000000000035,null,null,null],"status":["unbonding","bonded","bonded","unbonding"]}},{"ix":124,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":14,"t":84,"consumerPower":[null,5359,null,13439],"outstandingDowntime":[false,false,false,false]}},{"ix":125,"action":{"kind":"Deliver","chain":"consumer","numPackets":3},"partialState":{"h":14,"t":84,"consumerPower":[null,5359,null,13439],"outstandingDowntime":[false,false,false,false]}},{"ix":126,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":13,"t":78,"tokens":[8319,5261,1838,1724],"delegation":[7319,4261,838,724],"delegatorTokens":9999999941013,"jailed":[1000000000000035,null,null,null],"status":["unbonding","bonded","bonded","unbonding"]}},{"ix":127,"action":{"kind":"Delegate","val":1,"amt":4594},"partialState":{"h":13,"t":78,"tokens":[8319,9855,1838,1724],"delegation":[7319,8855,838,724],"delegatorTokens":9999999936419}},{"ix":128,"action":{"kind":"Deliver","chain":"consumer","numPackets":3},"partialState":{"h":14,"t":84,"consumerPower":[null,5359,null,13439],"outstandingDowntime":[false,false,false,false]}},{"ix":129,"action":{"kind":"Deliver","chain":"consumer","numPackets":4},"partialState":{"h":14,"t":84,"consumerPower":[null,5359,null,13439],"outstandingDowntime":[false,false,false,false]}},{"ix":130,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":14,"t":84,"tokens":[8319,9855,1838,1724],"delegation":[7319,8855,838,724],"delegatorTokens":9999999936419,"jailed":[1000000000000035,null,null,null],"status":["unbonding","bonded","bonded","unbonding"]}},{"ix":131,"action":{"kind":"Deliver","chain":"consumer","numPackets":2},"partialState":{"h":14,"t":84,"consumerPower":[null,5359,null,13439],"outstandingDowntime":[false,false,false,false]}},{"ix":132,"action":{"kind":"Deliver","chain":"consumer","numPackets":5},"partialState":{"h":14,"t":84,"consumerPower":[null,5359,null,13439],"outstandingDowntime":[false,false,false,false]}},{"ix":133,"action":{"kind":"Undelegate","val":2,"amt":3962},"partialState":{"h":14,"t":84,"tokens":[8319,9855,1838,1724],"delegation":[7319,8855,838,724],"delegatorTokens":9999999936419}},{"ix":134,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":135,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":136,"action":{"kind":"Undelegate","val":1,"amt":1651},"partialState":{"h":14,"t":84,"tokens":[8319,8204,1838,1724],"delegation":[7319,7204,838,724],"delegatorTokens":9999999936419}},{"ix":137,"action":{"kind":"Delegate","val":3,"amt":3840},"partialState":{"h":14,"t":84,"tokens":[8319,8204,1838,5564],"delegation":[7319,7204,838,4564],"delegatorTokens":9999999932579}},{"ix":138,"action":{"kind":"Delegate","val":3,"amt":4816},"partialState":{"h":14,"t":84,"tokens":[8319,8204,1838,10380],"delegation":[7319,7204,838,9380],"delegatorTokens":9999999927763}},{"ix":139,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":140,"action":{"kind":"Deliver","chain":"provider","numPackets":5},"partialState":{"h":14,"t":84,"tokens":[8319,8204,1838,10380],"delegation":[7319,7204,838,9380],"delegatorTokens":9999999927763,"jailed":[1000000000000035,null,null,null],"status":["unbonding","bonded","bonded","unbonding"]}},{"ix":141,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":15,"t":90,"tokens":[8319,8204,1838,10380],"delegation":[7319,7204,838,9380],"delegatorTokens":9999999927763,"jailed":[1000000000000035,null,null,null],"status":["unbonding","bonded","unbonding","bonded"]}},{"ix":142,"action":{"kind":"Undelegate","val":2,"amt":3301},"partialState":{"h":15,"t":90,"tokens":[8319,8204,1838,10380],"delegation":[7319,7204,838,9380],"delegatorTokens":9999999927763}},{"ix":143,"action":{"kind":"Undelegate","val":3,"amt":4620},"partialState":{"h":15,"t":90,"tokens":[8319,8204,1838,5760],"delegation":[7319,7204,838,4760],"delegatorTokens":9999999927763}},{"ix":144,"action":{"kind":"Delegate","val":2,"amt":3922},"partialState":{"h":15,"t":90,"tokens":[8319,8204,5760,5760],"delegation":[7319,7204,4760,4760],"delegatorTokens":9999999923841}},{"ix":145,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":16,"t":96,"tokens":[8319,8204,5760,5760],"delegation":[7319,7204,4760,4760],"delegatorTokens":9999999923841,"jailed":[1000000000000035,null,null,null],"status":["unbonding","bonded","bonded","unbonding"]}},{"ix":146,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":147,"action":{"kind":"Deliver","chain":"consumer","numPackets":1},"partialState":{"h":14,"t":84,"consumerPower":[null,5359,null,13439],"outstandingDowntime":[false,false,false,false]}},{"ix":148,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":15,"t":90,"consumerPower":[null,9855,1838,null],"outstandingDowntime":[false,false,false,false]}},{"ix":149,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":16,"t":96,"consumerPower":[null,9855,1838,null],"outstandingDowntime":[false,false,false,false]}},{"ix":150,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":151,"action":{"kind":"Delegate","val":3,"amt":2767},"partialState":{"h":16,"t":96,"tokens":[8319,8204,5760,8527],"delegation":[7319,7204,4760,7527],"delegatorTokens":9999999921074}},{"ix":152,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":153,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":17,"t":102,"consumerPower":[null,9855,1838,null],"outstandingDowntime":[false,false,false,false]}},{"ix":154,"action":{"kind":"Deliver","chain":"provider","numPackets":6},"partialState":{"h":16,"t":96,"tokens":[8319,8204,5760,8527],"delegation":[7319,7204,4760,7527],"delegatorTokens":9999999921074,"jailed":[1000000000000035,null,null,null],"status":["unbonding","bonded","bonded","unbonding"]}},{"ix":155,"action":{"kind":"Undelegate","val":1,"amt":2301},"partialState":{"h":16,"t":96,"tokens":[8319,5903,5760,8527],"delegation":[7319,4903,4760,7527],"delegatorTokens":9999999921074}},{"ix":156,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":18,"t":108,"consumerPower":[null,9855,1838,null],"outstandingDowntime":[false,false,false,false]}},{"ix":157,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":158,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":17,"t":102,"tokens":[8319,5903,5760,8527],"delegation":[7319,4903,4760,7527],"delegatorTokens":9999999939335,"jailed":[1000000000000035,null,null,null],"status":["unbonding","bonded","unbonding","bonded"]}},{"ix":159,"action":{"kind":"Undelegate","val":3,"amt":4352},"partialState":{"h":17,"t":102,"tokens":[8319,5903,5760,4175],"delegation":[7319,4903,4760,3175],"delegatorTokens":9999999939335}},{"ix":160,"action":{"kind":"Delegate","val":0,"amt":4452},"partialState":{"h":17,"t":102,"tokens":[12771,5903,5760,4175],"delegation":[11771,4903,4760,3175],"delegatorTokens":9999999934883}},{"ix":161,"action":{"kind":"Undelegate","val":3,"amt":1210},"partialState":{"h":17,"t":102,"tokens":[12771,5903,5760,2965],"delegation":[11771,4903,4760,1965],"delegatorTokens":9999999934883}},{"ix":162,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":163,"action":{"kind":"Undelegate","val":1,"amt":1804},"partialState":{"h":17,"t":102,"tokens":[12771,4099,5760,2965],"delegation":[11771,3099,4760,1965],"delegatorTokens":9999999934883}},{"ix":164,"action":{"kind":"Deliver","chain":"consumer","numPackets":2},"partialState":{"h":18,"t":108,"consumerPower":[null,9855,1838,null],"outstandingDowntime":[false,false,false,false]}},{"ix":165,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":18,"t":108,"tokens":[12771,4099,5760,2965],"delegation":[11771,3099,4760,1965],"delegatorTokens":9999999934883,"jailed":[1000000000000035,null,null,null],"status":["unbonding","bonded","bonded","unbonding"]}},{"ix":166,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":167,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":19,"t":114,"consumerPower":[null,8204,5760,null],"outstandingDowntime":[false,false,false,false]}},{"ix":168,"action":{"kind":"Undelegate","val":1,"amt":3846},"partialState":{"h":18,"t":108,"tokens":[12771,4099,5760,2965],"delegation":[11771,3099,4760,1965],"delegatorTokens":9999999934883}},{"ix":169,"action":{"kind":"Deliver","chain":"provider","numPackets":3},"partialState":{"h":18,"t":108,"tokens":[12771,4099,5760,2965],"delegation":[11771,3099,4760,1965],"delegatorTokens":9999999934883,"jailed":[1000000000000035,null,null,null],"status":["unbonding","bonded","bonded","unbonding"]}},{"ix":170,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":19,"t":114,"tokens":[12771,4099,5760,2965],"delegation":[11771,3099,4760,1965],"delegatorTokens":9999999941601,"jailed":[1000000000000035,null,null,null],"status":["unbonding","bonded","bonded","unbonding"]}},{"ix":171,"action":{"kind":"Delegate","val":1,"amt":1777},"partialState":{"h":19,"t":114,"tokens":[12771,5876,5760,2965],"delegation":[11771,4876,4760,1965],"delegatorTokens":9999999939824}},{"ix":172,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":173,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":174,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":20,"t":120,"consumerPower":[null,8204,5760,null],"outstandingDowntime":[false,false,false,false]}},{"ix":175,"action":{"kind":"Undelegate","val":1,"amt":3718},"partialState":{"h":19,"t":114,"tokens":[12771,2158,5760,2965],"delegation":[11771,1158,4760,1965],"delegatorTokens":9999999939824}},{"ix":176,"action":{"kind":"Deliver","chain":"consumer","numPackets":4},"partialState":{"h":20,"t":120,"consumerPower":[null,8204,5760,null],"outstandingDowntime":[false,false,false,false]}},{"ix":177,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":178,"action":{"kind":"Undelegate","val":3,"amt":4090},"partialState":{"h":19,"t":114,"tokens":[12771,2158,5760,2965],"delegation":[11771,1158,4760,1965],"delegatorTokens":9999999939824}},{"ix":179,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":20,"t":120,"tokens":[12771,2158,5760,2965],"delegation":[11771,1158,4760,1965],"delegatorTokens":9999999939824,"jailed":[1000000000000035,null,null,null],"status":["unbonded","unbonding","bonded","bonded"]}},{"ix":180,"action":{"kind":"Delegate","val":1,"amt":1710},"partialState":{"h":20,"t":120,"tokens":[12771,3868,5760,2965],"delegation":[11771,2868,4760,1965],"delegatorTokens":9999999938114}},{"ix":181,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":182,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":21,"t":126,"consumerPower":[null,4099,5760,null],"outstandingDowntime":[false,false,false,false]}},{"ix":183,"action":{"kind":"Deliver","chain":"consumer","numPackets":2},"partialState":{"h":21,"t":126,"consumerPower":[null,4099,5760,null],"outstandingDowntime":[false,false,false,false]}},{"ix":184,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":22,"t":132,"consumerPower":[null,4099,5760,null],"outstandingDowntime":[false,false,false,false]}},{"ix":185,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":23,"t":138,"consumerPower":[null,4099,5760,null],"outstandingDowntime":[false,false,false,false]}},{"ix":186,"action":{"kind":"Deliver","chain":"provider","numPackets":6},"partialState":{"h":20,"t":120,"tokens":[12771,3868,5760,2965],"delegation":[11771,2868,4760,1965],"delegatorTokens":9999999938114,"jailed":[1000000000000035,null,null,null],"status":["unbonded","unbonding","bonded","bonded"]}},{"ix":187,"action":{"kind":"Deliver","chain":"provider","numPackets":4},"partialState":{"h":20,"t":120,"tokens":[12771,3868,5760,2965],"delegation":[11771,2868,4760,1965],"delegatorTokens":9999999938114,"jailed":[1000000000000035,null,null,null],"status":["unbonded","unbonding","bonded","bonded"]}},{"ix":188,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":189,"action":{"kind":"Delegate","val":1,"amt":2216},"partialState":{"h":20,"t":120,"tokens":[12771,6084,5760,2965],"delegation":[11771,5084,4760,1965],"delegatorTokens":9999999935898}},{"ix":190,"action":{"kind":"Delegate","val":3,"amt":1506},"partialState":{"h":20,"t":120,"tokens":[12771,6084,5760,4471],"delegation":[11771,5084,4760,3471],"delegatorTokens":9999999934392}},{"ix":191,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":24,"t":144,"consumerPower":[null,4099,5760,null],"outstandingDowntime":[false,false,false,false]}},{"ix":192,"action":{"kind":"Undelegate","val":0,"amt":2554},"partialState":{"h":20,"t":120,"tokens":[10217,6084,5760,4471],"delegation":[9217,5084,4760,3471],"delegatorTokens":9999999934392}},{"ix":193,"action":{"kind":"Delegate","val":0,"amt":1823},"partialState":{"h":20,"t":120,"tokens":[12040,6084,5760,4471],"delegation":[11040,5084,4760,3471],"delegatorTokens":9999999932569}},{"ix":194,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":25,"t":150,"consumerPower":[null,4099,5760,null],"outstandingDowntime":[false,false,false,false]}},{"ix":195,"action":{"kind":"Undelegate","val":1,"amt":2752},"partialState":{"h":20,"t":120,"tokens":[12040,3332,5760,4471],"delegation":[11040,2332,4760,3471],"delegatorTokens":9999999932569}},{"ix":196,"action":{"kind":"Deliver","chain":"provider","numPackets":5},"partialState":{"h":20,"t":120,"tokens":[12040,3332,5760,4471],"delegation":[11040,2332,4760,3471],"delegatorTokens":9999999932569,"jailed":[1000000000000035,null,null,null],"status":["unbonded","unbonding","bonded","bonded"]}},{"ix":197,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":26,"t":156,"consumerPower":[null,4099,5760,null],"outstandingDowntime":[false,false,false,false]}},{"ix":198,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":21,"t":126,"tokens":[12040,3332,5760,4471],"delegation":[11040,2332,4760,3471],"delegatorTokens":9999999932569,"jailed":[1000000000000035,null,null,null],"status":["unbonded","unbonding","bonded","bonded"]}},{"ix":199,"action":{"kind":"Undelegate","val":1,"amt":1808},"partialState":{"h":21,"t":126,"tokens":[12040,1524,5760,4471],"delegation":[11040,524,4760,3471],"delegatorTokens":9999999932569}}],"events":["send_vsc_not_because_change","send_vsc_without_downtime_ack","insufficient_shares","send_double_sign_slash_request","insufficient_shares","insufficient_shares","insufficient_shares","send_double_sign_slash_request","send_downtime_slash_request","insufficient_shares","more_than_one_third_val_power_change","send_vsc_without_downtime_ack","send_double_sign_slash_request","send_vsc_without_downtime_ack","send_double_sign_slash_request","send_double_sign_slash_request","send_vsc_without_downtime_ack","receive_double_sign_slash_request","send_double_sign_slash_request","send_vsc_without_downtime_ack","receive_double_sign_slash_request","receive_double_sign_slash_request","receive_double_sign_slash_request","receive_double_sign_slash_request","receive_double_sign_slash_request","receive_downtime_slash_request","jail","send_vsc_with_downtime_ack","insufficient_shares","consumer_update_val","consumer_del_val","consumer_add_val","insufficient_shares","send_vsc_without_downtime_ack","insufficient_shares","rebond_unval","send_vsc_without_downtime_ack","receive_downtime_slash_ack","insufficient_shares","send_vsc_not_because_change","send_vsc_without_downtime_ack","consumer_del_val","consumer_update_val","consumer_add_val","insufficient_shares","consumer_add_val","consumer_del_val","insufficient_shares","more_than_one_third_val_power_change","rebond_unval","send_vsc_without_downtime_ack","send_vsc_without_downtime_ack","some_undels_expired_but_not_completed","send_vsc_without_downtime_ack","insufficient_shares","more_than_one_third_val_power_change","rebond_unval","some_undels_expired_but_not_completed","send_vsc_without_downtime_ack","insufficient_shares","more_than_one_third_val_power_change","rebond_unval","some_undels_expired_but_not_completed","send_vsc_without_downtime_ack","consumer_send_maturation","consumer_add_val","consumer_del_val","consumer_update_val","consumer_send_maturation","consumer_send_maturation","consumer_send_maturation","consumer_send_maturation","consumer_send_maturation","consumer_send_maturation","more_than_one_third_val_power_change","rebond_unval","some_undels_expired_but_not_completed","complete_undel_immediate","complete_undel_immediate","complete_undel_immediate","complete_undel_immediate","complete_undel_immediate","complete_undel_immediate","complete_undel_immediate","send_vsc_without_downtime_ack","more_than_one_third_val_power_change","rebond_unval","send_vsc_without_downtime_ack","consumer_send_maturation","consumer_update_val","consumer_update_val","consumer_del_val","insufficient_shares","some_undels_expired_but_not_completed","complete_undel_immediate","complete_undel_immediate","complete_undel_immediate","set_unval_hold_false","insufficient_shares","more_than_one_third_val_power_change","rebond_unval","complete_unval_in_endblock","send_vsc_without_downtime_ack","consumer_send_maturation","consumer_update_val","consumer_update_val","consumer_del_val","consumer_send_maturation","consumer_send_maturation","consumer_send_maturation","set_undel_hold_false","set_undel_hold_false","set_undel_hold_false","set_undel_hold_false","set_undel_hold_false","set_undel_hold_false","set_undel_hold_false","set_undel_hold_false","set_undel_hold_false","set_undel_hold_false","set_undel_hold_false","send_vsc_without_downtime_ack"]},{"meta":{"commit":"7ffd0c04e4205cbc9caf212abfe6c59ee43153bf"},"constants":{"P":"provider","C":"consumer","UNBONDING_SECONDS_P":70,"UNBONDING_SECONDS_C":50,"TRUSTING_SECONDS":49,"NUM_VALIDATORS":4,"MAX_VALIDATORS":2,"SLASH_DOUBLESIGN":0,"SLASH_DOWNTIME":0,"JAIL_SECONDS":999999999999999,"BLOCK_SECONDS":6,"INITIAL_DELEGATOR_TOKENS":10000000000000,"DELEGATE_AMT_MIN":1000,"DELEGATE_AMT_MAX":5000,"UNDELEGATE_AMT_MIN":1000,"UNDELEGATE_AMT_MAX":5000,"ISDOWNTIME_PROBABILITY":0.5,"MAX_NUM_PACKETS_FOR_DELIVER":6},"actions":[{"ix":0,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":1,"action":{"kind":"Deliver","chain":"consumer","numPackets":1},"partialState":{"h":1,"t":6,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":2,"action":{"kind":"Deliver","chain":"provider","numPackets":1},"partialState":{"h":1,"t":6,"tokens":[5000,4000,3000,2000],"delegation":[4000,3000,2000,1000],"delegatorTokens":10000000000000,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":3,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":4,"action":{"kind":"Deliver","chain":"consumer","numPackets":4},"partialState":{"h":1,"t":6,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":5,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":6,"action":{"kind":"Deliver","chain":"consumer","numPackets":3},"partialState":{"h":1,"t":6,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":7,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":8,"action":{"kind":"Delegate","val":0,"amt":3863},"partialState":{"h":1,"t":6,"tokens":[8863,4000,3000,2000],"delegation":[7863,3000,2000,1000],"delegatorTokens":9999999996137}},{"ix":9,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":2,"t":12,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":10,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":2,"t":12,"tokens":[8863,4000,3000,2000],"delegation":[7863,3000,2000,1000],"delegatorTokens":9999999996137,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":11,"action":{"kind":"ConsumerSlash","val":3,"infractionHeight":0,"isDowntime":false},"partialState":{"h":2,"t":12,"outstandingDowntime":[false,false,false,false]}},{"ix":12,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":13,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":14,"action":{"kind":"ConsumerSlash","val":0,"infractionHeight":0,"isDowntime":true},"partialState":{"h":2,"t":12,"outstandingDowntime":[true,false,false,false]}},{"ix":15,"action":{"kind":"Deliver","chain":"provider","numPackets":6},"partialState":{"h":2,"t":12,"tokens":[8863,4000,3000,2000],"delegation":[7863,3000,2000,1000],"delegatorTokens":9999999996137,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":16,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":17,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":18,"action":{"kind":"ConsumerSlash","val":2,"infractionHeight":0,"isDowntime":false},"partialState":{"h":2,"t":12,"outstandingDowntime":[true,false,false,false]}},{"ix":19,"action":{"kind":"Delegate","val":0,"amt":2307},"partialState":{"h":2,"t":12,"tokens":[11170,4000,3000,2000],"delegation":[10170,3000,2000,1000],"delegatorTokens":9999999993830}},{"ix":20,"action":{"kind":"Undelegate","val":2,"amt":3515},"partialState":{"h":2,"t":12,"tokens":[11170,4000,3000,2000],"delegation":[10170,3000,2000,1000],"delegatorTokens":9999999993830}},{"ix":21,"action":{"kind":"Delegate","val":1,"amt":3228},"partialState":{"h":2,"t":12,"tokens":[11170,7228,3000,2000],"delegation":[10170,6228,2000,1000],"delegatorTokens":9999999990602}},{"ix":22,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":23,"action":{"kind":"Delegate","val":3,"amt":2249},"partialState":{"h":2,"t":12,"tokens":[11170,7228,3000,4249],"delegation":[10170,6228,2000,3249],"delegatorTokens":9999999988353}},{"ix":24,"action":{"kind":"Deliver","chain":"consumer","numPackets":4},"partialState":{"h":2,"t":12,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[true,false,false,false]}},{"ix":25,"action":{"kind":"Delegate","val":3,"amt":2666},"partialState":{"h":2,"t":12,"tokens":[11170,7228,3000,6915],"delegation":[10170,6228,2000,5915],"delegatorTokens":9999999985687}},{"ix":26,"action":{"kind":"Deliver","chain":"provider","numPackets":2},"partialState":{"h":2,"t":12,"tokens":[11170,7228,3000,6915],"delegation":[10170,6228,2000,5915],"delegatorTokens":9999999985687,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":27,"action":{"kind":"Undelegate","val":1,"amt":2594},"partialState":{"h":2,"t":12,"tokens":[11170,4634,3000,6915],"delegation":[10170,3634,2000,5915],"delegatorTokens":9999999985687}},{"ix":28,"action":{"kind":"Deliver","chain":"consumer","numPackets":4},"partialState":{"h":2,"t":12,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[true,false,false,false]}},{"ix":29,"action":{"kind":"Deliver","chain":"consumer","numPackets":1},"partialState":{"h":2,"t":12,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[true,false,false,false]}},{"ix":30,"action":{"kind":"Delegate","val":2,"amt":3605},"partialState":{"h":2,"t":12,"tokens":[11170,4634,6605,6915],"delegation":[10170,3634,5605,5915],"delegatorTokens":9999999982082}},{"ix":31,"action":{"kind":"Undelegate","val":0,"amt":4210},"partialState":{"h":2,"t":12,"tokens":[6960,4634,6605,6915],"delegation":[5960,3634,5605,5915],"delegatorTokens":9999999982082}},{"ix":32,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":3,"t":18,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[true,false,false,false]}},{"ix":33,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":3,"t":18,"tokens":[6960,4634,6605,6915],"delegation":[5960,3634,5605,5915],"delegatorTokens":9999999982082,"jailed":[null,null,null,null],"status":["bonded","unbonding","unbonded","bonded"]}},{"ix":34,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":4,"t":24,"tokens":[6960,4634,6605,6915],"delegation":[5960,3634,5605,5915],"delegatorTokens":9999999982082,"jailed":[null,null,null,null],"status":["bonded","unbonding","unbonded","bonded"]}},{"ix":35,"action":{"kind":"Deliver","chain":"provider","numPackets":3},"partialState":{"h":4,"t":24,"tokens":[6960,4634,6605,6915],"delegation":[5960,3634,5605,5915],"delegatorTokens":9999999982082,"jailed":[null,null,null,null],"status":["bonded","unbonding","unbonded","bonded"]}},{"ix":36,"action":{"kind":"Undelegate","val":1,"amt":2228},"partialState":{"h":4,"t":24,"tokens":[6960,2406,6605,6915],"delegation":[5960,1406,5605,5915],"delegatorTokens":9999999982082}},{"ix":37,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":4,"t":24,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[true,false,false,false]}},{"ix":38,"action":{"kind":"Deliver","chain":"consumer","numPackets":1},"partialState":{"h":4,"t":24,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[true,false,false,false]}},{"ix":39,"action":{"kind":"Deliver","chain":"provider","numPackets":2},"partialState":{"h":4,"t":24,"tokens":[6960,2406,6605,6915],"delegation":[5960,1406,5605,5915],"delegatorTokens":9999999982082,"jailed":[null,null,null,null],"status":["bonded","unbonding","unbonded","bonded"]}},{"ix":40,"action":{"kind":"Delegate","val":3,"amt":2615},"partialState":{"h":4,"t":24,"tokens":[6960,2406,6605,9530],"delegation":[5960,1406,5605,8530],"delegatorTokens":9999999979467}},{"ix":41,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":5,"t":30,"tokens":[6960,2406,6605,9530],"delegation":[5960,1406,5605,8530],"delegatorTokens":9999999979467,"jailed":[1000000000000023,null,null,null],"status":["bonded","unbonding","unbonded","bonded"]}},{"ix":42,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":43,"action":{"kind":"Deliver","chain":"consumer","numPackets":4},"partialState":{"h":4,"t":24,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[true,false,false,false]}},{"ix":44,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":6,"t":36,"tokens":[6960,2406,6605,9530],"delegation":[5960,1406,5605,8530],"delegatorTokens":9999999979467,"jailed":[1000000000000023,null,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":45,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":46,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":47,"action":{"kind":"Undelegate","val":3,"amt":4592},"partialState":{"h":6,"t":36,"tokens":[6960,2406,6605,4938],"delegation":[5960,1406,5605,3938],"delegatorTokens":9999999979467}},{"ix":48,"action":{"kind":"Delegate","val":0,"amt":4040},"partialState":{"h":6,"t":36,"tokens":[11000,2406,6605,4938],"delegation":[10000,1406,5605,3938],"delegatorTokens":9999999975427}},{"ix":49,"action":{"kind":"Deliver","chain":"consumer","numPackets":4},"partialState":{"h":4,"t":24,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":50,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":5,"t":30,"consumerPower":[6960,null,null,9530],"outstandingDowntime":[false,false,false,false]}},{"ix":51,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":52,"action":{"kind":"Undelegate","val":2,"amt":3602},"partialState":{"h":6,"t":36,"tokens":[11000,2406,3003,4938],"delegation":[10000,1406,2003,3938],"delegatorTokens":9999999975427}},{"ix":53,"action":{"kind":"Deliver","chain":"provider","numPackets":2},"partialState":{"h":6,"t":36,"tokens":[11000,2406,3003,4938],"delegation":[10000,1406,2003,3938],"delegatorTokens":9999999975427,"jailed":[1000000000000023,null,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":54,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":55,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":6,"t":36,"consumerPower":[6960,null,null,9530],"outstandingDowntime":[false,false,false,false]}},{"ix":56,"action":{"kind":"Deliver","chain":"provider","numPackets":1},"partialState":{"h":6,"t":36,"tokens":[11000,2406,3003,4938],"delegation":[10000,1406,2003,3938],"delegatorTokens":9999999975427,"jailed":[1000000000000023,null,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":57,"action":{"kind":"Undelegate","val":2,"amt":4034},"partialState":{"h":6,"t":36,"tokens":[11000,2406,3003,4938],"delegation":[10000,1406,2003,3938],"delegatorTokens":9999999975427}},{"ix":58,"action":{"kind":"Delegate","val":1,"amt":1229},"partialState":{"h":6,"t":36,"tokens":[11000,3635,3003,4938],"delegation":[10000,2635,2003,3938],"delegatorTokens":9999999974198}},{"ix":59,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":7,"t":42,"tokens":[11000,3635,3003,4938],"delegation":[10000,2635,2003,3938],"delegatorTokens":9999999974198,"jailed":[1000000000000023,null,null,null],"status":["unbonding","bonded","unbonding","bonded"]}},{"ix":60,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":7,"t":42,"consumerPower":[6960,null,null,9530],"outstandingDowntime":[false,false,false,false]}},{"ix":61,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":62,"action":{"kind":"Deliver","chain":"consumer","numPackets":3},"partialState":{"h":7,"t":42,"consumerPower":[6960,null,null,9530],"outstandingDowntime":[false,false,false,false]}},{"ix":63,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":64,"action":{"kind":"Undelegate","val":0,"amt":1315},"partialState":{"h":7,"t":42,"tokens":[9685,3635,3003,4938],"delegation":[8685,2635,2003,3938],"delegatorTokens":9999999974198}},{"ix":65,"action":{"kind":"Deliver","chain":"provider","numPackets":5},"partialState":{"h":7,"t":42,"tokens":[9685,3635,3003,4938],"delegation":[8685,2635,2003,3938],"delegatorTokens":9999999974198,"jailed":[1000000000000023,null,null,null],"status":["unbonding","bonded","unbonding","bonded"]}},{"ix":66,"action":{"kind":"Undelegate","val":0,"amt":1703},"partialState":{"h":7,"t":42,"tokens":[7982,3635,3003,4938],"delegation":[6982,2635,2003,3938],"delegatorTokens":9999999974198}},{"ix":67,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":8,"t":48,"tokens":[7982,3635,3003,4938],"delegation":[6982,2635,2003,3938],"delegatorTokens":9999999974198,"jailed":[1000000000000023,null,null,null],"status":["unbonding","bonded","unbonding","bonded"]}},{"ix":68,"action":{"kind":"Deliver","chain":"consumer","numPackets":5},"partialState":{"h":7,"t":42,"consumerPower":[6960,null,null,9530],"outstandingDowntime":[false,false,false,false]}},{"ix":69,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":9,"t":54,"tokens":[7982,3635,3003,4938],"delegation":[6982,2635,2003,3938],"delegatorTokens":9999999974198,"jailed":[1000000000000023,null,null,null],"status":["unbonding","bonded","unbonding","bonded"]}},{"ix":70,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":8,"t":48,"consumerPower":[null,3635,null,4938],"outstandingDowntime":[false,false,false,false]}},{"ix":71,"action":{"kind":"Undelegate","val":0,"amt":3779},"partialState":{"h":9,"t":54,"tokens":[4203,3635,3003,4938],"delegation":[3203,2635,2003,3938],"delegatorTokens":9999999974198}},{"ix":72,"action":{"kind":"Undelegate","val":3,"amt":4101},"partialState":{"h":9,"t":54,"tokens":[4203,3635,3003,4938],"delegation":[3203,2635,2003,3938],"delegatorTokens":9999999974198}},{"ix":73,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":10,"t":60,"tokens":[4203,3635,3003,4938],"delegation":[3203,2635,2003,3938],"delegatorTokens":9999999974198,"jailed":[1000000000000023,null,null,null],"status":["unbonding","bonded","unbonding","bonded"]}},{"ix":74,"action":{"kind":"Undelegate","val":3,"amt":1751},"partialState":{"h":10,"t":60,"tokens":[4203,3635,3003,3187],"delegation":[3203,2635,2003,2187],"delegatorTokens":9999999974198}},{"ix":75,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":9,"t":54,"consumerPower":[null,3635,null,4938],"outstandingDowntime":[false,false,false,false]}},{"ix":76,"action":{"kind":"Deliver","chain":"provider","numPackets":1},"partialState":{"h":10,"t":60,"tokens":[4203,3635,3003,3187],"delegation":[3203,2635,2003,2187],"delegatorTokens":9999999974198,"jailed":[1000000000000023,null,null,null],"status":["unbonding","bonded","unbonding","bonded"]}},{"ix":77,"action":{"kind":"Deliver","chain":"provider","numPackets":6},"partialState":{"h":10,"t":60,"tokens":[4203,3635,3003,3187],"delegation":[3203,2635,2003,2187],"delegatorTokens":9999999974198,"jailed":[1000000000000023,null,null,null],"status":["unbonding","bonded","unbonding","bonded"]}},{"ix":78,"action":{"kind":"Deliver","chain":"consumer","numPackets":5},"partialState":{"h":9,"t":54,"consumerPower":[null,3635,null,4938],"outstandingDowntime":[false,false,false,false]}},{"ix":79,"action":{"kind":"Delegate","val":2,"amt":3291},"partialState":{"h":10,"t":60,"tokens":[4203,3635,6294,3187],"delegation":[3203,2635,5294,2187],"delegatorTokens":9999999970907}},{"ix":80,"action":{"kind":"Undelegate","val":1,"amt":3178},"partialState":{"h":10,"t":60,"tokens":[4203,3635,6294,3187],"delegation":[3203,2635,5294,2187],"delegatorTokens":9999999970907}},{"ix":81,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":10,"t":60,"consumerPower":[null,3635,null,4938],"outstandingDowntime":[false,false,false,false]}},{"ix":82,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":83,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":84,"action":{"kind":"Delegate","val":3,"amt":3267},"partialState":{"h":10,"t":60,"tokens":[4203,3635,6294,6454],"delegation":[3203,2635,5294,5454],"delegatorTokens":9999999967640}},{"ix":85,"action":{"kind":"Deliver","chain":"consumer","numPackets":1},"partialState":{"h":10,"t":60,"consumerPower":[null,3635,null,4938],"outstandingDowntime":[false,false,false,false]}},{"ix":86,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":11,"t":66,"tokens":[4203,3635,6294,6454],"delegation":[3203,2635,5294,5454],"delegatorTokens":9999999967640,"jailed":[1000000000000023,null,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":87,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":12,"t":72,"tokens":[4203,3635,6294,6454],"delegation":[3203,2635,5294,5454],"delegatorTokens":9999999967640,"jailed":[1000000000000023,null,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":88,"action":{"kind":"Undelegate","val":0,"amt":2159},"partialState":{"h":12,"t":72,"tokens":[2044,3635,6294,6454],"delegation":[1044,2635,5294,5454],"delegatorTokens":9999999967640}},{"ix":89,"action":{"kind":"Undelegate","val":2,"amt":4209},"partialState":{"h":12,"t":72,"tokens":[2044,3635,2085,6454],"delegation":[1044,2635,1085,5454],"delegatorTokens":9999999967640}},{"ix":90,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":91,"action":{"kind":"Deliver","chain":"provider","numPackets":3},"partialState":{"h":12,"t":72,"tokens":[2044,3635,2085,6454],"delegation":[1044,2635,1085,5454],"delegatorTokens":9999999967640,"jailed":[1000000000000023,null,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":92,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":93,"action":{"kind":"Deliver","chain":"provider","numPackets":5},"partialState":{"h":12,"t":72,"tokens":[2044,3635,2085,6454],"delegation":[1044,2635,1085,5454],"delegatorTokens":9999999967640,"jailed":[1000000000000023,null,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":94,"action":{"kind":"Deliver","chain":"consumer","numPackets":2},"partialState":{"h":10,"t":60,"consumerPower":[null,3635,null,4938],"outstandingDowntime":[false,false,false,false]}},{"ix":95,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":11,"t":66,"consumerPower":[null,null,6294,6454],"outstandingDowntime":[false,false,false,false]}},{"ix":96,"action":{"kind":"Delegate","val":2,"amt":2455},"partialState":{"h":12,"t":72,"tokens":[2044,3635,4540,6454],"delegation":[1044,2635,3540,5454],"delegatorTokens":9999999965185}},{"ix":97,"action":{"kind":"Deliver","chain":"provider","numPackets":3},"partialState":{"h":12,"t":72,"tokens":[2044,3635,4540,6454],"delegation":[1044,2635,3540,5454],"delegatorTokens":9999999965185,"jailed":[1000000000000023,null,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":98,"action":{"kind":"Undelegate","val":0,"amt":1888},"partialState":{"h":12,"t":72,"tokens":[2044,3635,4540,6454],"delegation":[1044,2635,3540,5454],"delegatorTokens":9999999965185}},{"ix":99,"action":{"kind":"Undelegate","val":2,"amt":1106},"partialState":{"h":12,"t":72,"tokens":[2044,3635,3434,6454],"delegation":[1044,2635,2434,5454],"delegatorTokens":9999999965185}},{"ix":100,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":13,"t":78,"tokens":[2044,3635,3434,6454],"delegation":[1044,2635,2434,5454],"delegatorTokens":9999999965185,"jailed":[1000000000000023,null,null,null],"status":["unbonding","bonded","unbonding","bonded"]}},{"ix":101,"action":{"kind":"Undelegate","val":1,"amt":3849},"partialState":{"h":13,"t":78,"tokens":[2044,3635,3434,6454],"delegation":[1044,2635,2434,5454],"delegatorTokens":9999999965185}},{"ix":102,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":103,"action":{"kind":"Deliver","chain":"consumer","numPackets":4},"partialState":{"h":11,"t":66,"consumerPower":[null,null,6294,6454],"outstandingDowntime":[false,false,false,false]}},{"ix":104,"action":{"kind":"Deliver","chain":"provider","numPackets":4},"partialState":{"h":13,"t":78,"tokens":[2044,3635,3434,6454],"delegation":[1044,2635,2434,5454],"delegatorTokens":9999999965185,"jailed":[1000000000000023,null,null,null],"status":["unbonding","bonded","unbonding","bonded"]}},{"ix":105,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":106,"action":{"kind":"Undelegate","val":3,"amt":4709},"partialState":{"h":13,"t":78,"tokens":[2044,3635,3434,1745],"delegation":[1044,2635,2434,745],"delegatorTokens":9999999965185}},{"ix":107,"action":{"kind":"Undelegate","val":2,"amt":4374},"partialState":{"h":13,"t":78,"tokens":[2044,3635,3434,1745],"delegation":[1044,2635,2434,745],"delegatorTokens":9999999965185}},{"ix":108,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":14,"t":84,"tokens":[2044,3635,3434,1745],"delegation":[1044,2635,2434,745],"delegatorTokens":9999999965185,"jailed":[1000000000000023,null,null,null],"status":["unbonding","bonded","bonded","unbonding"]}},{"ix":109,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":110,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":111,"action":{"kind":"Delegate","val":0,"amt":3980},"partialState":{"h":14,"t":84,"tokens":[6024,3635,3434,1745],"delegation":[5024,2635,2434,745],"delegatorTokens":9999999961205}},{"ix":112,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":15,"t":90,"tokens":[6024,3635,3434,1745],"delegation":[5024,2635,2434,745],"delegatorTokens":9999999961205,"jailed":[1000000000000023,null,null,null],"status":["unbonding","bonded","bonded","unbonding"]}},{"ix":113,"action":{"kind":"Delegate","val":3,"amt":2826},"partialState":{"h":15,"t":90,"tokens":[6024,3635,3434,4571],"delegation":[5024,2635,2434,3571],"delegatorTokens":9999999958379}},{"ix":114,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":115,"action":{"kind":"Undelegate","val":0,"amt":4831},"partialState":{"h":15,"t":90,"tokens":[1193,3635,3434,4571],"delegation":[193,2635,2434,3571],"delegatorTokens":9999999958379}},{"ix":116,"action":{"kind":"Undelegate","val":2,"amt":1764},"partialState":{"h":15,"t":90,"tokens":[1193,3635,1670,4571],"delegation":[193,2635,670,3571],"delegatorTokens":9999999958379}},{"ix":117,"action":{"kind":"Delegate","val":0,"amt":1376},"partialState":{"h":15,"t":90,"tokens":[2569,3635,1670,4571],"delegation":[1569,2635,670,3571],"delegatorTokens":9999999957003}},{"ix":118,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":16,"t":96,"tokens":[2569,3635,1670,4571],"delegation":[1569,2635,670,3571],"delegatorTokens":9999999957003,"jailed":[1000000000000023,null,null,null],"status":["unbonding","bonded","unbonding","bonded"]}},{"ix":119,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":12,"t":72,"consumerPower":[null,null,6294,6454],"outstandingDowntime":[false,false,false,false]}},{"ix":120,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":17,"t":102,"tokens":[2569,3635,1670,4571],"delegation":[1569,2635,670,3571],"delegatorTokens":9999999957003,"jailed":[1000000000000023,null,null,null],"status":["unbonding","bonded","unbonding","bonded"]}},{"ix":121,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":122,"action":{"kind":"Delegate","val":2,"amt":3569},"partialState":{"h":17,"t":102,"tokens":[2569,3635,5239,4571],"delegation":[1569,2635,4239,3571],"delegatorTokens":9999999953434}},{"ix":123,"action":{"kind":"Deliver","chain":"consumer","numPackets":4},"partialState":{"h":12,"t":72,"consumerPower":[null,null,6294,6454],"outstandingDowntime":[false,false,false,false]}},{"ix":124,"action":{"kind":"Deliver","chain":"consumer","numPackets":3},"partialState":{"h":12,"t":72,"consumerPower":[null,null,6294,6454],"outstandingDowntime":[false,false,false,false]}},{"ix":125,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":126,"action":{"kind":"Deliver","chain":"provider","numPackets":1},"partialState":{"h":17,"t":102,"tokens":[2569,3635,5239,4571],"delegation":[1569,2635,4239,3571],"delegatorTokens":9999999953434,"jailed":[1000000000000023,null,null,null],"status":["unbonding","bonded","unbonding","bonded"]}},{"ix":127,"action":{"kind":"Deliver","chain":"provider","numPackets":1},"partialState":{"h":17,"t":102,"tokens":[2569,3635,5239,4571],"delegation":[1569,2635,4239,3571],"delegatorTokens":9999999953434,"jailed":[1000000000000023,null,null,null],"status":["unbonding","bonded","unbonding","bonded"]}},{"ix":128,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":18,"t":108,"tokens":[2569,3635,5239,4571],"delegation":[1569,2635,4239,3571],"delegatorTokens":9999999953434,"jailed":[1000000000000023,null,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":129,"action":{"kind":"Deliver","chain":"provider","numPackets":1},"partialState":{"h":18,"t":108,"tokens":[2569,3635,5239,4571],"delegation":[1569,2635,4239,3571],"delegatorTokens":9999999953434,"jailed":[1000000000000023,null,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":130,"action":{"kind":"Undelegate","val":2,"amt":2368},"partialState":{"h":18,"t":108,"tokens":[2569,3635,2871,4571],"delegation":[1569,2635,1871,3571],"delegatorTokens":9999999953434}},{"ix":131,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":19,"t":114,"tokens":[2569,3635,2871,4571],"delegation":[1569,2635,1871,3571],"delegatorTokens":9999999953434,"jailed":[1000000000000023,null,null,null],"status":["unbonding","bonded","unbonding","bonded"]}},{"ix":132,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":133,"action":{"kind":"Undelegate","val":2,"amt":2818},"partialState":{"h":19,"t":114,"tokens":[2569,3635,2871,4571],"delegation":[1569,2635,1871,3571],"delegatorTokens":9999999953434}},{"ix":134,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":13,"t":78,"consumerPower":[null,3635,null,4571],"outstandingDowntime":[false,false,false,false]}},{"ix":135,"action":{"kind":"Deliver","chain":"provider","numPackets":4},"partialState":{"h":19,"t":114,"tokens":[2569,3635,2871,4571],"delegation":[1569,2635,1871,3571],"delegatorTokens":9999999953434,"jailed":[1000000000000023,null,null,null],"status":["unbonding","bonded","unbonding","bonded"]}},{"ix":136,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":137,"action":{"kind":"Undelegate","val":2,"amt":2386},"partialState":{"h":19,"t":114,"tokens":[2569,3635,2871,4571],"delegation":[1569,2635,1871,3571],"delegatorTokens":9999999953434}},{"ix":138,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":14,"t":84,"consumerPower":[null,3635,null,4571],"outstandingDowntime":[false,false,false,false]}},{"ix":139,"action":{"kind":"Deliver","chain":"provider","numPackets":4},"partialState":{"h":19,"t":114,"tokens":[2569,3635,2871,4571],"delegation":[1569,2635,1871,3571],"delegatorTokens":9999999953434,"jailed":[1000000000000023,null,null,null],"status":["unbonding","bonded","unbonding","bonded"]}},{"ix":140,"action":{"kind":"Undelegate","val":0,"amt":3771},"partialState":{"h":19,"t":114,"tokens":[2569,3635,2871,4571],"delegation":[1569,2635,1871,3571],"delegatorTokens":9999999953434}},{"ix":141,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":15,"t":90,"consumerPower":[null,3635,null,4571],"outstandingDowntime":[false,false,false,false]}},{"ix":142,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":20,"t":120,"tokens":[2569,3635,2871,4571],"delegation":[1569,2635,1871,3571],"delegatorTokens":9999999953434,"jailed":[1000000000000023,null,null,null],"status":["unbonding","bonded","unbonding","bonded"]}},{"ix":143,"action":{"kind":"Deliver","chain":"provider","numPackets":5},"partialState":{"h":20,"t":120,"tokens":[2569,3635,2871,4571],"delegation":[1569,2635,1871,3571],"delegatorTokens":9999999953434,"jailed":[1000000000000023,null,null,null],"status":["unbonding","bonded","unbonding","bonded"]}},{"ix":144,"action":{"kind":"Deliver","chain":"provider","numPackets":1},"partialState":{"h":20,"t":120,"tokens":[2569,3635,2871,4571],"delegation":[1569,2635,1871,3571],"delegatorTokens":9999999953434,"jailed":[1000000000000023,null,null,null],"status":["unbonding","bonded","unbonding","bonded"]}},{"ix":145,"action":{"kind":"Undelegate","val":3,"amt":2476},"partialState":{"h":20,"t":120,"tokens":[2569,3635,2871,2095],"delegation":[1569,2635,1871,1095],"delegatorTokens":9999999953434}},{"ix":146,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":16,"t":96,"consumerPower":[null,3635,null,4571],"outstandingDowntime":[false,false,false,false]}},{"ix":147,"action":{"kind":"Undelegate","val":0,"amt":1464},"partialState":{"h":20,"t":120,"tokens":[1105,3635,2871,2095],"delegation":[105,2635,1871,1095],"delegatorTokens":9999999953434}},{"ix":148,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":17,"t":102,"consumerPower":[null,3635,null,4571],"outstandingDowntime":[false,false,false,false]}},{"ix":149,"action":{"kind":"Delegate","val":1,"amt":4311},"partialState":{"h":20,"t":120,"tokens":[1105,7946,2871,2095],"delegation":[105,6946,1871,1095],"delegatorTokens":9999999949123}},{"ix":150,"action":{"kind":"Deliver","chain":"provider","numPackets":4},"partialState":{"h":20,"t":120,"tokens":[1105,7946,2871,2095],"delegation":[105,6946,1871,1095],"delegatorTokens":9999999949123,"jailed":[1000000000000023,null,null,null],"status":["unbonding","bonded","unbonding","bonded"]}},{"ix":151,"action":{"kind":"Undelegate","val":2,"amt":4328},"partialState":{"h":20,"t":120,"tokens":[1105,7946,2871,2095],"delegation":[105,6946,1871,1095],"delegatorTokens":9999999949123}},{"ix":152,"action":{"kind":"Undelegate","val":1,"amt":4503},"partialState":{"h":20,"t":120,"tokens":[1105,3443,2871,2095],"delegation":[105,2443,1871,1095],"delegatorTokens":9999999949123}},{"ix":153,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":154,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":18,"t":108,"consumerPower":[null,3635,null,4571],"outstandingDowntime":[false,false,false,false]}},{"ix":155,"action":{"kind":"Delegate","val":0,"amt":4684},"partialState":{"h":20,"t":120,"tokens":[5789,3443,2871,2095],"delegation":[4789,2443,1871,1095],"delegatorTokens":9999999944439}},{"ix":156,"action":{"kind":"Deliver","chain":"consumer","numPackets":2},"partialState":{"h":18,"t":108,"consumerPower":[null,3635,null,4571],"outstandingDowntime":[false,false,false,false]}},{"ix":157,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":158,"action":{"kind":"Undelegate","val":0,"amt":4568},"partialState":{"h":20,"t":120,"tokens":[1221,3443,2871,2095],"delegation":[221,2443,1871,1095],"delegatorTokens":9999999944439}},{"ix":159,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":21,"t":126,"tokens":[1221,3443,2871,2095],"delegation":[221,2443,1871,1095],"delegatorTokens":9999999953471,"jailed":[1000000000000023,null,null,null],"status":["unbonding","bonded","bonded","unbonding"]}},{"ix":160,"action":{"kind":"Undelegate","val":2,"amt":2396},"partialState":{"h":21,"t":126,"tokens":[1221,3443,2871,2095],"delegation":[221,2443,1871,1095],"delegatorTokens":9999999953471}},{"ix":161,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":22,"t":132,"tokens":[1221,3443,2871,2095],"delegation":[221,2443,1871,1095],"delegatorTokens":9999999953471,"jailed":[1000000000000023,null,null,null],"status":["unbonding","bonded","bonded","unbonding"]}},{"ix":162,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":19,"t":114,"consumerPower":[null,3635,null,4571],"outstandingDowntime":[false,false,false,false]}},{"ix":163,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":164,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":165,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":166,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":20,"t":120,"consumerPower":[null,3635,null,4571],"outstandingDowntime":[false,false,false,false]}},{"ix":167,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":168,"action":{"kind":"Deliver","chain":"provider","numPackets":4},"partialState":{"h":22,"t":132,"tokens":[1221,3443,2871,2095],"delegation":[221,2443,1871,1095],"delegatorTokens":9999999953471,"jailed":[1000000000000023,null,null,null],"status":["unbonding","bonded","bonded","unbonding"]}},{"ix":169,"action":{"kind":"Deliver","chain":"provider","numPackets":6},"partialState":{"h":22,"t":132,"tokens":[1221,3443,2871,2095],"delegation":[221,2443,1871,1095],"delegatorTokens":9999999953471,"jailed":[1000000000000023,null,null,null],"status":["unbonding","bonded","bonded","unbonding"]}},{"ix":170,"action":{"kind":"Delegate","val":1,"amt":2469},"partialState":{"h":22,"t":132,"tokens":[1221,5912,2871,2095],"delegation":[221,4912,1871,1095],"delegatorTokens":9999999951002}},{"ix":171,"action":{"kind":"Undelegate","val":2,"amt":3731},"partialState":{"h":22,"t":132,"tokens":[1221,5912,2871,2095],"delegation":[221,4912,1871,1095],"delegatorTokens":9999999951002}},{"ix":172,"action":{"kind":"Deliver","chain":"consumer","numPackets":5},"partialState":{"h":20,"t":120,"consumerPower":[null,3635,null,4571],"outstandingDowntime":[false,false,false,false]}},{"ix":173,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":21,"t":126,"consumerPower":[null,3443,2871,null],"outstandingDowntime":[false,false,false,false]}},{"ix":174,"action":{"kind":"Deliver","chain":"provider","numPackets":5},"partialState":{"h":22,"t":132,"tokens":[1221,5912,2871,2095],"delegation":[221,4912,1871,1095],"delegatorTokens":9999999951002,"jailed":[1000000000000023,null,null,null],"status":["unbonding","bonded","bonded","unbonding"]}},{"ix":175,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":22,"t":132,"consumerPower":[null,3443,2871,null],"outstandingDowntime":[false,false,false,false]}},{"ix":176,"action":{"kind":"Deliver","chain":"provider","numPackets":3},"partialState":{"h":22,"t":132,"tokens":[1221,5912,2871,2095],"delegation":[221,4912,1871,1095],"delegatorTokens":9999999951002,"jailed":[1000000000000023,null,null,null],"status":["unbonding","bonded","bonded","unbonding"]}},{"ix":177,"action":{"kind":"Undelegate","val":2,"amt":2498},"partialState":{"h":22,"t":132,"tokens":[1221,5912,2871,2095],"delegation":[221,4912,1871,1095],"delegatorTokens":9999999951002}},{"ix":178,"action":{"kind":"Deliver","chain":"provider","numPackets":3},"partialState":{"h":22,"t":132,"tokens":[1221,5912,2871,2095],"delegation":[221,4912,1871,1095],"delegatorTokens":9999999951002,"jailed":[1000000000000023,null,null,null],"status":["unbonding","bonded","bonded","unbonding"]}},{"ix":179,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":23,"t":138,"consumerPower":[null,3443,2871,null],"outstandingDowntime":[false,false,false,false]}},{"ix":180,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":181,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":182,"action":{"kind":"Undelegate","val":2,"amt":1641},"partialState":{"h":22,"t":132,"tokens":[1221,5912,1230,2095],"delegation":[221,4912,230,1095],"delegatorTokens":9999999951002}},{"ix":183,"action":{"kind":"Undelegate","val":3,"amt":2130},"partialState":{"h":22,"t":132,"tokens":[1221,5912,1230,2095],"delegation":[221,4912,230,1095],"delegatorTokens":9999999951002}},{"ix":184,"action":{"kind":"Delegate","val":3,"amt":4189},"partialState":{"h":22,"t":132,"tokens":[1221,5912,1230,6284],"delegation":[221,4912,230,5284],"delegatorTokens":9999999946813}},{"ix":185,"action":{"kind":"Undelegate","val":2,"amt":2943},"partialState":{"h":22,"t":132,"tokens":[1221,5912,1230,6284],"delegation":[221,4912,230,5284],"delegatorTokens":9999999946813}},{"ix":186,"action":{"kind":"Undelegate","val":2,"amt":4693},"partialState":{"h":22,"t":132,"tokens":[1221,5912,1230,6284],"delegation":[221,4912,230,5284],"delegatorTokens":9999999946813}},{"ix":187,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":23,"t":138,"tokens":[1221,5912,1230,6284],"delegation":[221,4912,230,5284],"delegatorTokens":9999999963555,"jailed":[1000000000000023,null,null,null],"status":["unbonding","bonded","unbonding","bonded"]}},{"ix":188,"action":{"kind":"Delegate","val":1,"amt":2094},"partialState":{"h":23,"t":138,"tokens":[1221,8006,1230,6284],"delegation":[221,7006,230,5284],"delegatorTokens":9999999961461}},{"ix":189,"action":{"kind":"Deliver","chain":"provider","numPackets":5},"partialState":{"h":23,"t":138,"tokens":[1221,8006,1230,6284],"delegation":[221,7006,230,5284],"delegatorTokens":9999999961461,"jailed":[1000000000000023,null,null,null],"status":["unbonding","bonded","unbonding","bonded"]}},{"ix":190,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":24,"t":144,"tokens":[1221,8006,1230,6284],"delegation":[221,7006,230,5284],"delegatorTokens":9999999961461,"jailed":[1000000000000023,null,null,null],"status":["unbonded","bonded","unbonding","bonded"]}},{"ix":191,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":25,"t":150,"tokens":[1221,8006,1230,6284],"delegation":[221,7006,230,5284],"delegatorTokens":9999999968935,"jailed":[1000000000000023,null,null,null],"status":["unbonded","bonded","unbonding","bonded"]}},{"ix":192,"action":{"kind":"Undelegate","val":3,"amt":4978},"partialState":{"h":25,"t":150,"tokens":[1221,8006,1230,1306],"delegation":[221,7006,230,306],"delegatorTokens":9999999968935}},{"ix":193,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":194,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":26,"t":156,"tokens":[1221,8006,1230,1306],"delegation":[221,7006,230,306],"delegatorTokens":9999999973644,"jailed":[1000000000000023,null,null,null],"status":["unbonded","bonded","unbonding","bonded"]}},{"ix":195,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":27,"t":162,"tokens":[1221,8006,1230,1306],"delegation":[221,7006,230,306],"delegatorTokens":9999999973644,"jailed":[1000000000000023,null,null,null],"status":["unbonded","bonded","unbonding","bonded"]}},{"ix":196,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":197,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":28,"t":168,"tokens":[1221,8006,1230,1306],"delegation":[221,7006,230,306],"delegatorTokens":9999999980239,"jailed":[1000000000000023,null,null,null],"status":["unbonded","bonded","unbonding","bonded"]}},{"ix":198,"action":{"kind":"Undelegate","val":3,"amt":1786},"partialState":{"h":28,"t":168,"tokens":[1221,8006,1230,1306],"delegation":[221,7006,230,306],"delegatorTokens":9999999980239}},{"ix":199,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}}],"events":["send_vsc_without_downtime_ack","send_double_sign_slash_request","send_downtime_slash_request","send_double_sign_slash_request","insufficient_shares","more_than_one_third_val_power_change","send_vsc_without_downtime_ack","receive_double_sign_slash_request","receive_downtime_slash_request","jail","send_vsc_with_downtime_ack","more_than_one_third_val_power_change","send_vsc_without_downtime_ack","receive_downtime_slash_ack","consumer_update_val","consumer_del_val","consumer_add_val","receive_double_sign_slash_request","insufficient_shares","more_than_one_third_val_power_change","rebond_unval","send_vsc_without_downtime_ack","send_vsc_not_because_change","send_vsc_without_downtime_ack","consumer_del_val","consumer_del_val","consumer_add_val","consumer_update_val","insufficient_shares","send_vsc_not_because_change","send_vsc_without_downtime_ack","insufficient_shares","more_than_one_third_val_power_change","rebond_unval","send_vsc_without_downtime_ack","consumer_del_val","consumer_add_val","consumer_update_val","insufficient_shares","more_than_one_third_val_power_change","rebond_unval","send_vsc_without_downtime_ack","insufficient_shares","insufficient_shares","more_than_one_third_val_power_change","rebond_unval","send_vsc_without_downtime_ack","some_undels_expired_but_not_completed","more_than_one_third_val_power_change","rebond_unval","send_vsc_without_downtime_ack","some_undels_expired_but_not_completed","more_than_one_third_val_power_change","rebond_unval","send_vsc_without_downtime_ack","more_than_one_third_val_power_change","rebond_unval","some_undels_expired_but_not_completed","send_vsc_without_downtime_ack","insufficient_shares","consumer_add_val","consumer_del_val","consumer_update_val","insufficient_shares","consumer_send_maturation","consumer_send_maturation","consumer_send_maturation","insufficient_shares","some_undels_expired_but_not_completed","consumer_send_maturation","consumer_send_maturation","insufficient_shares","more_than_one_third_val_power_change","rebond_unval","complete_undel_immediate","complete_undel_immediate","complete_undel_immediate","send_vsc_without_downtime_ack","insufficient_shares","some_undels_expired_but_not_completed","consumer_send_maturation","consumer_update_val","consumer_del_val","consumer_send_maturation","consumer_send_maturation","insufficient_shares","consumer_update_val","consumer_add_val","consumer_del_val","consumer_send_maturation","consumer_send_maturation","consumer_send_maturation","insufficient_shares","insufficient_shares","insufficient_shares","insufficient_shares","more_than_one_third_val_power_change","rebond_unval","some_undels_expired_but_not_completed","set_unval_hold_false","complete_undel_immediate","complete_undel_immediate","complete_undel_immediate","complete_undel_immediate","complete_undel_immediate","complete_undel_immediate","send_vsc_without_downtime_ack","complete_unval_in_endblock","set_undel_hold_false","set_undel_hold_false","set_undel_hold_false","set_undel_hold_false","set_undel_hold_false","set_undel_hold_false","send_vsc_without_downtime_ack","complete_undel_in_endblock","complete_undel_in_endblock","send_vsc_without_downtime_ack","complete_undel_in_endblock","insufficient_shares"]},{"meta":{"commit":"7ffd0c04e4205cbc9caf212abfe6c59ee43153bf"},"constants":{"P":"provider","C":"consumer","UNBONDING_SECONDS_P":70,"UNBONDING_SECONDS_C":50,"TRUSTING_SECONDS":49,"NUM_VALIDATORS":4,"MAX_VALIDATORS":2,"SLASH_DOUBLESIGN":0,"SLASH_DOWNTIME":0,"JAIL_SECONDS":999999999999999,"BLOCK_SECONDS":6,"INITIAL_DELEGATOR_TOKENS":10000000000000,"DELEGATE_AMT_MIN":1000,"DELEGATE_AMT_MAX":5000,"UNDELEGATE_AMT_MIN":1000,"UNDELEGATE_AMT_MAX":5000,"ISDOWNTIME_PROBABILITY":0.5,"MAX_NUM_PACKETS_FOR_DELIVER":6},"actions":[{"ix":0,"action":{"kind":"Undelegate","val":3,"amt":4688},"partialState":{"h":1,"t":6,"tokens":[5000,4000,3000,2000],"delegation":[4000,3000,2000,1000],"delegatorTokens":10000000000000}},{"ix":1,"action":{"kind":"Delegate","val":3,"amt":3800},"partialState":{"h":1,"t":6,"tokens":[5000,4000,3000,5800],"delegation":[4000,3000,2000,4800],"delegatorTokens":9999999996200}},{"ix":2,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":3,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":2,"t":12,"tokens":[5000,4000,3000,5800],"delegation":[4000,3000,2000,4800],"delegatorTokens":9999999996200,"jailed":[null,null,null,null],"status":["bonded","unbonding","unbonded","bonded"]}},{"ix":4,"action":{"kind":"Deliver","chain":"consumer","numPackets":1},"partialState":{"h":1,"t":6,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":5,"action":{"kind":"ConsumerSlash","val":3,"infractionHeight":0,"isDowntime":true},"partialState":{"h":1,"t":6,"outstandingDowntime":[false,false,false,true]}},{"ix":6,"action":{"kind":"Deliver","chain":"consumer","numPackets":4},"partialState":{"h":1,"t":6,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,false,false,true]}},{"ix":7,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":8,"action":{"kind":"Deliver","chain":"consumer","numPackets":6},"partialState":{"h":1,"t":6,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,false,false,true]}},{"ix":9,"action":{"kind":"ConsumerSlash","val":2,"infractionHeight":0,"isDowntime":false},"partialState":{"h":1,"t":6,"outstandingDowntime":[false,false,false,true]}},{"ix":10,"action":{"kind":"Delegate","val":1,"amt":1519},"partialState":{"h":2,"t":12,"tokens":[5000,5519,3000,5800],"delegation":[4000,4519,2000,4800],"delegatorTokens":9999999994681}},{"ix":11,"action":{"kind":"ConsumerSlash","val":0,"infractionHeight":0,"isDowntime":false},"partialState":{"h":1,"t":6,"outstandingDowntime":[false,false,false,true]}},{"ix":12,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":3,"t":18,"tokens":[5000,5519,3000,5800],"delegation":[4000,4519,2000,4800],"delegatorTokens":9999999994681,"jailed":[null,null,null,null],"status":["unbonding","bonded","unbonded","bonded"]}},{"ix":13,"action":{"kind":"Delegate","val":0,"amt":2979},"partialState":{"h":3,"t":18,"tokens":[7979,5519,3000,5800],"delegation":[6979,4519,2000,4800],"delegatorTokens":9999999991702}},{"ix":14,"action":{"kind":"Delegate","val":0,"amt":1883},"partialState":{"h":3,"t":18,"tokens":[9862,5519,3000,5800],"delegation":[8862,4519,2000,4800],"delegatorTokens":9999999989819}},{"ix":15,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":4,"t":24,"tokens":[9862,5519,3000,5800],"delegation":[8862,4519,2000,4800],"delegatorTokens":9999999989819,"jailed":[null,null,null,null],"status":["bonded","unbonding","unbonded","bonded"]}},{"ix":16,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":17,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":5,"t":30,"tokens":[9862,5519,3000,5800],"delegation":[8862,4519,2000,4800],"delegatorTokens":9999999989819,"jailed":[null,null,null,null],"status":["bonded","unbonding","unbonded","bonded"]}},{"ix":18,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":6,"t":36,"tokens":[9862,5519,3000,5800],"delegation":[8862,4519,2000,4800],"delegatorTokens":9999999989819,"jailed":[null,null,null,null],"status":["bonded","unbonding","unbonded","bonded"]}},{"ix":19,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":20,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":21,"action":{"kind":"Deliver","chain":"consumer","numPackets":6},"partialState":{"h":1,"t":6,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,false,false,true]}},{"ix":22,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":2,"t":12,"consumerPower":[9862,null,null,5800],"outstandingDowntime":[false,false,false,true]}},{"ix":23,"action":{"kind":"Deliver","chain":"provider","numPackets":3},"partialState":{"h":6,"t":36,"tokens":[9862,5519,3000,5800],"delegation":[8862,4519,2000,4800],"delegatorTokens":9999999989819,"jailed":[null,null,null,null],"status":["bonded","unbonding","unbonded","bonded"]}},{"ix":24,"action":{"kind":"Delegate","val":3,"amt":3223},"partialState":{"h":6,"t":36,"tokens":[9862,5519,3000,9023],"delegation":[8862,4519,2000,8023],"delegatorTokens":9999999986596}},{"ix":25,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":26,"action":{"kind":"Delegate","val":2,"amt":4054},"partialState":{"h":6,"t":36,"tokens":[9862,5519,7054,9023],"delegation":[8862,4519,6054,8023],"delegatorTokens":9999999982542}},{"ix":27,"action":{"kind":"Deliver","chain":"provider","numPackets":5},"partialState":{"h":6,"t":36,"tokens":[9862,5519,7054,9023],"delegation":[8862,4519,6054,8023],"delegatorTokens":9999999982542,"jailed":[null,null,null,null],"status":["bonded","unbonding","unbonded","bonded"]}},{"ix":28,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":7,"t":42,"tokens":[9862,5519,7054,9023],"delegation":[8862,4519,6054,8023],"delegatorTokens":9999999982542,"jailed":[null,null,null,null],"status":["bonded","unbonding","unbonded","bonded"]}},{"ix":29,"action":{"kind":"Undelegate","val":1,"amt":3815},"partialState":{"h":7,"t":42,"tokens":[9862,1704,7054,9023],"delegation":[8862,704,6054,8023],"delegatorTokens":9999999982542}},{"ix":30,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":8,"t":48,"tokens":[9862,1704,7054,9023],"delegation":[8862,704,6054,8023],"delegatorTokens":9999999982542,"jailed":[null,null,null,null],"status":["bonded","unbonding","unbonded","bonded"]}},{"ix":31,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":32,"action":{"kind":"Deliver","chain":"consumer","numPackets":1},"partialState":{"h":2,"t":12,"consumerPower":[9862,null,null,5800],"outstandingDowntime":[false,false,false,true]}},{"ix":33,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":34,"action":{"kind":"Deliver","chain":"provider","numPackets":3},"partialState":{"h":8,"t":48,"tokens":[9862,1704,7054,9023],"delegation":[8862,704,6054,8023],"delegatorTokens":9999999982542,"jailed":[null,null,null,null],"status":["bonded","unbonding","unbonded","bonded"]}},{"ix":35,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":3,"t":18,"consumerPower":[9862,null,null,9023],"outstandingDowntime":[false,false,false,true]}},{"ix":36,"action":{"kind":"Undelegate","val":2,"amt":1530},"partialState":{"h":8,"t":48,"tokens":[9862,1704,5524,9023],"delegation":[8862,704,4524,8023],"delegatorTokens":9999999982542}},{"ix":37,"action":{"kind":"Undelegate","val":0,"amt":3827},"partialState":{"h":8,"t":48,"tokens":[6035,1704,5524,9023],"delegation":[5035,704,4524,8023],"delegatorTokens":9999999982542}},{"ix":38,"action":{"kind":"Delegate","val":2,"amt":3094},"partialState":{"h":8,"t":48,"tokens":[6035,1704,8618,9023],"delegation":[5035,704,7618,8023],"delegatorTokens":9999999979448}},{"ix":39,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":40,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":41,"action":{"kind":"Delegate","val":0,"amt":1902},"partialState":{"h":8,"t":48,"tokens":[7937,1704,8618,9023],"delegation":[6937,704,7618,8023],"delegatorTokens":9999999977546}},{"ix":42,"action":{"kind":"Delegate","val":0,"amt":4977},"partialState":{"h":8,"t":48,"tokens":[12914,1704,8618,9023],"delegation":[11914,704,7618,8023],"delegatorTokens":9999999972569}},{"ix":43,"action":{"kind":"Deliver","chain":"consumer","numPackets":5},"partialState":{"h":3,"t":18,"consumerPower":[9862,null,null,9023],"outstandingDowntime":[false,false,false,true]}},{"ix":44,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":45,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":4,"t":24,"consumerPower":[9862,null,null,9023],"outstandingDowntime":[false,false,false,true]}},{"ix":46,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":9,"t":54,"tokens":[12914,1704,8618,9023],"delegation":[11914,704,7618,8023],"delegatorTokens":9999999972569,"jailed":[null,null,null,null],"status":["bonded","unbonding","unbonded","bonded"]}},{"ix":47,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":5,"t":30,"consumerPower":[9862,null,null,9023],"outstandingDowntime":[false,false,false,true]}},{"ix":48,"action":{"kind":"Undelegate","val":1,"amt":2558},"partialState":{"h":9,"t":54,"tokens":[12914,1704,8618,9023],"delegation":[11914,704,7618,8023],"delegatorTokens":9999999972569}},{"ix":49,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":6,"t":36,"consumerPower":[9862,null,null,9023],"outstandingDowntime":[false,false,false,true]}},{"ix":50,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":7,"t":42,"consumerPower":[9862,null,null,9023],"outstandingDowntime":[false,false,false,true]}},{"ix":51,"action":{"kind":"Deliver","chain":"provider","numPackets":6},"partialState":{"h":9,"t":54,"tokens":[12914,1704,8618,9023],"delegation":[11914,704,7618,8023],"delegatorTokens":9999999972569,"jailed":[null,null,null,null],"status":["bonded","unbonding","unbonded","bonded"]}},{"ix":52,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":10,"t":60,"tokens":[12914,1704,8618,9023],"delegation":[11914,704,7618,8023],"delegatorTokens":9999999972569,"jailed":[null,null,null,1000000000000053],"status":["bonded","unbonding","unbonded","bonded"]}},{"ix":53,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":11,"t":66,"tokens":[12914,1704,8618,9023],"delegation":[11914,704,7618,8023],"delegatorTokens":9999999972569,"jailed":[null,null,null,1000000000000053],"status":["bonded","unbonding","bonded","unbonding"]}},{"ix":54,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":12,"t":72,"tokens":[12914,1704,8618,9023],"delegation":[11914,704,7618,8023],"delegatorTokens":9999999972569,"jailed":[null,null,null,1000000000000053],"status":["bonded","unbonding","bonded","unbonding"]}},{"ix":55,"action":{"kind":"Deliver","chain":"provider","numPackets":1},"partialState":{"h":12,"t":72,"tokens":[12914,1704,8618,9023],"delegation":[11914,704,7618,8023],"delegatorTokens":9999999972569,"jailed":[null,null,null,1000000000000053],"status":["bonded","unbonding","bonded","unbonding"]}},{"ix":56,"action":{"kind":"Deliver","chain":"provider","numPackets":4},"partialState":{"h":12,"t":72,"tokens":[12914,1704,8618,9023],"delegation":[11914,704,7618,8023],"delegatorTokens":9999999972569,"jailed":[null,null,null,1000000000000053],"status":["bonded","unbonding","bonded","unbonding"]}},{"ix":57,"action":{"kind":"Deliver","chain":"consumer","numPackets":1},"partialState":{"h":7,"t":42,"consumerPower":[9862,null,null,9023],"outstandingDowntime":[false,false,false,true]}},{"ix":58,"action":{"kind":"Deliver","chain":"provider","numPackets":6},"partialState":{"h":12,"t":72,"tokens":[12914,1704,8618,9023],"delegation":[11914,704,7618,8023],"delegatorTokens":9999999972569,"jailed":[null,null,null,1000000000000053],"status":["bonded","unbonding","bonded","unbonding"]}},{"ix":59,"action":{"kind":"Deliver","chain":"provider","numPackets":4},"partialState":{"h":12,"t":72,"tokens":[12914,1704,8618,9023],"delegation":[11914,704,7618,8023],"delegatorTokens":9999999972569,"jailed":[null,null,null,1000000000000053],"status":["bonded","unbonding","bonded","unbonding"]}},{"ix":60,"action":{"kind":"Undelegate","val":1,"amt":1376},"partialState":{"h":12,"t":72,"tokens":[12914,1704,8618,9023],"delegation":[11914,704,7618,8023],"delegatorTokens":9999999972569}},{"ix":61,"action":{"kind":"Undelegate","val":0,"amt":1234},"partialState":{"h":12,"t":72,"tokens":[11680,1704,8618,9023],"delegation":[10680,704,7618,8023],"delegatorTokens":9999999972569}},{"ix":62,"action":{"kind":"Delegate","val":0,"amt":3847},"partialState":{"h":12,"t":72,"tokens":[15527,1704,8618,9023],"delegation":[14527,704,7618,8023],"delegatorTokens":9999999968722}},{"ix":63,"action":{"kind":"Undelegate","val":2,"amt":2468},"partialState":{"h":12,"t":72,"tokens":[15527,1704,6150,9023],"delegation":[14527,704,5150,8023],"delegatorTokens":9999999968722}},{"ix":64,"action":{"kind":"Delegate","val":1,"amt":4302},"partialState":{"h":12,"t":72,"tokens":[15527,6006,6150,9023],"delegation":[14527,5006,5150,8023],"delegatorTokens":9999999964420}},{"ix":65,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":13,"t":78,"tokens":[15527,6006,6150,9023],"delegation":[14527,5006,5150,8023],"delegatorTokens":9999999964420,"jailed":[null,null,null,1000000000000053],"status":["bonded","unbonding","bonded","unbonding"]}},{"ix":66,"action":{"kind":"Undelegate","val":2,"amt":1604},"partialState":{"h":13,"t":78,"tokens":[15527,6006,4546,9023],"delegation":[14527,5006,3546,8023],"delegatorTokens":9999999964420}},{"ix":67,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":68,"action":{"kind":"Undelegate","val":2,"amt":3774},"partialState":{"h":13,"t":78,"tokens":[15527,6006,4546,9023],"delegation":[14527,5006,3546,8023],"delegatorTokens":9999999964420}},{"ix":69,"action":{"kind":"Delegate","val":3,"amt":1479},"partialState":{"h":13,"t":78,"tokens":[15527,6006,4546,10502],"delegation":[14527,5006,3546,9502],"delegatorTokens":9999999962941}},{"ix":70,"action":{"kind":"Delegate","val":3,"amt":2949},"partialState":{"h":13,"t":78,"tokens":[15527,6006,4546,13451],"delegation":[14527,5006,3546,12451],"delegatorTokens":9999999959992}},{"ix":71,"action":{"kind":"Delegate","val":0,"amt":4898},"partialState":{"h":13,"t":78,"tokens":[20425,6006,4546,13451],"delegation":[19425,5006,3546,12451],"delegatorTokens":9999999955094}},{"ix":72,"action":{"kind":"Deliver","chain":"provider","numPackets":5},"partialState":{"h":13,"t":78,"tokens":[20425,6006,4546,13451],"delegation":[19425,5006,3546,12451],"delegatorTokens":9999999955094,"jailed":[null,null,null,1000000000000053],"status":["bonded","unbonding","bonded","unbonding"]}},{"ix":73,"action":{"kind":"Deliver","chain":"consumer","numPackets":2},"partialState":{"h":7,"t":42,"consumerPower":[9862,null,null,9023],"outstandingDowntime":[false,false,false,false]}},{"ix":74,"action":{"kind":"Delegate","val":1,"amt":3826},"partialState":{"h":13,"t":78,"tokens":[20425,9832,4546,13451],"delegation":[19425,8832,3546,12451],"delegatorTokens":9999999951268}},{"ix":75,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":76,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":77,"action":{"kind":"Deliver","chain":"provider","numPackets":3},"partialState":{"h":13,"t":78,"tokens":[20425,9832,4546,13451],"delegation":[19425,8832,3546,12451],"delegatorTokens":9999999951268,"jailed":[null,null,null,1000000000000053],"status":["bonded","unbonding","bonded","unbonding"]}},{"ix":78,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":8,"t":48,"consumerPower":[12914,null,8618,null],"outstandingDowntime":[false,false,false,false]}},{"ix":79,"action":{"kind":"Undelegate","val":3,"amt":4575},"partialState":{"h":13,"t":78,"tokens":[20425,9832,4546,8876],"delegation":[19425,8832,3546,7876],"delegatorTokens":9999999951268}},{"ix":80,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":81,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":82,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":83,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":14,"t":84,"tokens":[20425,9832,4546,8876],"delegation":[19425,8832,3546,7876],"delegatorTokens":9999999951268,"jailed":[null,null,null,1000000000000053],"status":["bonded","bonded","unbonding","unbonding"]}},{"ix":84,"action":{"kind":"Undelegate","val":2,"amt":2865},"partialState":{"h":14,"t":84,"tokens":[20425,9832,1681,8876],"delegation":[19425,8832,681,7876],"delegatorTokens":9999999951268}},{"ix":85,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":86,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":9,"t":54,"consumerPower":[12914,null,8618,null],"outstandingDowntime":[false,false,false,false]}},{"ix":87,"action":{"kind":"Deliver","chain":"provider","numPackets":6},"partialState":{"h":14,"t":84,"tokens":[20425,9832,1681,8876],"delegation":[19425,8832,681,7876],"delegatorTokens":9999999951268,"jailed":[null,null,null,1000000000000053],"status":["bonded","bonded","unbonding","unbonding"]}},{"ix":88,"action":{"kind":"Delegate","val":2,"amt":1402},"partialState":{"h":14,"t":84,"tokens":[20425,9832,3083,8876],"delegation":[19425,8832,2083,7876],"delegatorTokens":9999999949866}},{"ix":89,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":90,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":15,"t":90,"tokens":[20425,9832,3083,8876],"delegation":[19425,8832,2083,7876],"delegatorTokens":9999999949866,"jailed":[null,null,null,1000000000000053],"status":["bonded","bonded","unbonding","unbonding"]}},{"ix":91,"action":{"kind":"Undelegate","val":0,"amt":4528},"partialState":{"h":15,"t":90,"tokens":[15897,9832,3083,8876],"delegation":[14897,8832,2083,7876],"delegatorTokens":9999999949866}},{"ix":92,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":93,"action":{"kind":"Delegate","val":3,"amt":1012},"partialState":{"h":15,"t":90,"tokens":[15897,9832,3083,9888],"delegation":[14897,8832,2083,8888],"delegatorTokens":9999999948854}},{"ix":94,"action":{"kind":"Delegate","val":2,"amt":2706},"partialState":{"h":15,"t":90,"tokens":[15897,9832,5789,9888],"delegation":[14897,8832,4789,8888],"delegatorTokens":9999999946148}},{"ix":95,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":10,"t":60,"consumerPower":[12914,null,8618,null],"outstandingDowntime":[false,false,false,false]}},{"ix":96,"action":{"kind":"Undelegate","val":3,"amt":3252},"partialState":{"h":15,"t":90,"tokens":[15897,9832,5789,6636],"delegation":[14897,8832,4789,5636],"delegatorTokens":9999999946148}},{"ix":97,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":11,"t":66,"consumerPower":[12914,null,8618,null],"outstandingDowntime":[false,false,false,false]}},{"ix":98,"action":{"kind":"Deliver","chain":"provider","numPackets":1},"partialState":{"h":15,"t":90,"tokens":[15897,9832,5789,6636],"delegation":[14897,8832,4789,5636],"delegatorTokens":9999999946148,"jailed":[null,null,null,1000000000000053],"status":["bonded","bonded","unbonding","unbonding"]}},{"ix":99,"action":{"kind":"Undelegate","val":0,"amt":3494},"partialState":{"h":15,"t":90,"tokens":[12403,9832,5789,6636],"delegation":[11403,8832,4789,5636],"delegatorTokens":9999999946148}},{"ix":100,"action":{"kind":"Undelegate","val":2,"amt":3687},"partialState":{"h":15,"t":90,"tokens":[12403,9832,2102,6636],"delegation":[11403,8832,1102,5636],"delegatorTokens":9999999946148}},{"ix":101,"action":{"kind":"Delegate","val":2,"amt":4987},"partialState":{"h":15,"t":90,"tokens":[12403,9832,7089,6636],"delegation":[11403,8832,6089,5636],"delegatorTokens":9999999941161}},{"ix":102,"action":{"kind":"Delegate","val":3,"amt":2470},"partialState":{"h":15,"t":90,"tokens":[12403,9832,7089,9106],"delegation":[11403,8832,6089,8106],"delegatorTokens":9999999938691}},{"ix":103,"action":{"kind":"Undelegate","val":2,"amt":1396},"partialState":{"h":15,"t":90,"tokens":[12403,9832,5693,9106],"delegation":[11403,8832,4693,8106],"delegatorTokens":9999999938691}},{"ix":104,"action":{"kind":"Delegate","val":2,"amt":3246},"partialState":{"h":15,"t":90,"tokens":[12403,9832,8939,9106],"delegation":[11403,8832,7939,8106],"delegatorTokens":9999999935445}},{"ix":105,"action":{"kind":"Undelegate","val":0,"amt":4156},"partialState":{"h":15,"t":90,"tokens":[8247,9832,8939,9106],"delegation":[7247,8832,7939,8106],"delegatorTokens":9999999935445}},{"ix":106,"action":{"kind":"Delegate","val":0,"amt":2325},"partialState":{"h":15,"t":90,"tokens":[10572,9832,8939,9106],"delegation":[9572,8832,7939,8106],"delegatorTokens":9999999933120}},{"ix":107,"action":{"kind":"Undelegate","val":2,"amt":1692},"partialState":{"h":15,"t":90,"tokens":[10572,9832,7247,9106],"delegation":[9572,8832,6247,8106],"delegatorTokens":9999999933120}},{"ix":108,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":16,"t":96,"tokens":[10572,9832,7247,9106],"delegation":[9572,8832,6247,8106],"delegatorTokens":9999999933120,"jailed":[null,null,null,1000000000000053],"status":["bonded","bonded","unbonding","unbonding"]}},{"ix":109,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":110,"action":{"kind":"Undelegate","val":2,"amt":1647},"partialState":{"h":16,"t":96,"tokens":[10572,9832,5600,9106],"delegation":[9572,8832,4600,8106],"delegatorTokens":9999999933120}},{"ix":111,"action":{"kind":"Undelegate","val":0,"amt":4881},"partialState":{"h":16,"t":96,"tokens":[5691,9832,5600,9106],"delegation":[4691,8832,4600,8106],"delegatorTokens":9999999933120}},{"ix":112,"action":{"kind":"Undelegate","val":0,"amt":1881},"partialState":{"h":16,"t":96,"tokens":[3810,9832,5600,9106],"delegation":[2810,8832,4600,8106],"delegatorTokens":9999999933120}},{"ix":113,"action":{"kind":"Undelegate","val":1,"amt":4146},"partialState":{"h":16,"t":96,"tokens":[3810,5686,5600,9106],"delegation":[2810,4686,4600,8106],"delegatorTokens":9999999933120}},{"ix":114,"action":{"kind":"Deliver","chain":"consumer","numPackets":2},"partialState":{"h":11,"t":66,"consumerPower":[12914,null,8618,null],"outstandingDowntime":[false,false,false,false]}},{"ix":115,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":17,"t":102,"tokens":[3810,5686,5600,9106],"delegation":[2810,4686,4600,8106],"delegatorTokens":9999999933120,"jailed":[null,null,null,1000000000000053],"status":["unbonding","bonded","bonded","unbonding"]}},{"ix":116,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":117,"action":{"kind":"Undelegate","val":3,"amt":2948},"partialState":{"h":17,"t":102,"tokens":[3810,5686,5600,6158],"delegation":[2810,4686,4600,5158],"delegatorTokens":9999999933120}},{"ix":118,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":12,"t":72,"consumerPower":[20425,9832,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":119,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":120,"action":{"kind":"Deliver","chain":"provider","numPackets":4},"partialState":{"h":17,"t":102,"tokens":[3810,5686,5600,6158],"delegation":[2810,4686,4600,5158],"delegatorTokens":9999999933120,"jailed":[null,null,null,1000000000000053],"status":["unbonding","bonded","bonded","unbonding"]}},{"ix":121,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":18,"t":108,"tokens":[3810,5686,5600,6158],"delegation":[2810,4686,4600,5158],"delegatorTokens":9999999933120,"jailed":[null,null,null,1000000000000053],"status":["unbonding","bonded","bonded","unbonding"]}},{"ix":122,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":123,"action":{"kind":"Deliver","chain":"consumer","numPackets":5},"partialState":{"h":12,"t":72,"consumerPower":[20425,9832,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":124,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":13,"t":78,"consumerPower":[null,5686,5600,null],"outstandingDowntime":[false,false,false,false]}},{"ix":125,"action":{"kind":"Undelegate","val":1,"amt":2940},"partialState":{"h":18,"t":108,"tokens":[3810,2746,5600,6158],"delegation":[2810,1746,4600,5158],"delegatorTokens":9999999933120}},{"ix":126,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":127,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":14,"t":84,"consumerPower":[null,5686,5600,null],"outstandingDowntime":[false,false,false,false]}},{"ix":128,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":129,"action":{"kind":"Undelegate","val":2,"amt":3261},"partialState":{"h":18,"t":108,"tokens":[3810,2746,2339,6158],"delegation":[2810,1746,1339,5158],"delegatorTokens":9999999933120}},{"ix":130,"action":{"kind":"Undelegate","val":2,"amt":3171},"partialState":{"h":18,"t":108,"tokens":[3810,2746,2339,6158],"delegation":[2810,1746,1339,5158],"delegatorTokens":9999999933120}},{"ix":131,"action":{"kind":"Delegate","val":1,"amt":4635},"partialState":{"h":18,"t":108,"tokens":[3810,7381,2339,6158],"delegation":[2810,6381,1339,5158],"delegatorTokens":9999999928485}},{"ix":132,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":15,"t":90,"consumerPower":[null,5686,5600,null],"outstandingDowntime":[false,false,false,false]}},{"ix":133,"action":{"kind":"Deliver","chain":"provider","numPackets":6},"partialState":{"h":18,"t":108,"tokens":[3810,7381,2339,6158],"delegation":[2810,6381,1339,5158],"delegatorTokens":9999999928485,"jailed":[null,null,null,1000000000000053],"status":["unbonding","bonded","bonded","unbonding"]}},{"ix":134,"action":{"kind":"Delegate","val":2,"amt":3693},"partialState":{"h":18,"t":108,"tokens":[3810,7381,6032,6158],"delegation":[2810,6381,5032,5158],"delegatorTokens":9999999924792}},{"ix":135,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":19,"t":114,"tokens":[3810,7381,6032,6158],"delegation":[2810,6381,5032,5158],"delegatorTokens":9999999924792,"jailed":[null,null,null,1000000000000053],"status":["unbonding","bonded","bonded","unbonding"]}},{"ix":136,"action":{"kind":"Deliver","chain":"consumer","numPackets":2},"partialState":{"h":15,"t":90,"consumerPower":[null,5686,5600,null],"outstandingDowntime":[false,false,false,false]}},{"ix":137,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":20,"t":120,"tokens":[3810,7381,6032,6158],"delegation":[2810,6381,5032,5158],"delegatorTokens":9999999924792,"jailed":[null,null,null,1000000000000053],"status":["unbonding","bonded","bonded","unbonding"]}},{"ix":138,"action":{"kind":"Undelegate","val":2,"amt":3130},"partialState":{"h":20,"t":120,"tokens":[3810,7381,2902,6158],"delegation":[2810,6381,1902,5158],"delegatorTokens":9999999924792}},{"ix":139,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":16,"t":96,"consumerPower":[null,5686,5600,null],"outstandingDowntime":[false,false,false,false]}},{"ix":140,"action":{"kind":"Deliver","chain":"consumer","numPackets":6},"partialState":{"h":16,"t":96,"consumerPower":[null,5686,5600,null],"outstandingDowntime":[false,false,false,false]}},{"ix":141,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":17,"t":102,"consumerPower":[null,7381,6032,null],"outstandingDowntime":[false,false,false,false]}},{"ix":142,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":21,"t":126,"tokens":[3810,7381,2902,6158],"delegation":[2810,6381,1902,5158],"delegatorTokens":9999999924792,"jailed":[null,null,null,1000000000000053],"status":["bonded","bonded","unbonding","unbonding"]}},{"ix":143,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":18,"t":108,"consumerPower":[null,7381,6032,null],"outstandingDowntime":[false,false,false,false]}},{"ix":144,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":19,"t":114,"consumerPower":[null,7381,6032,null],"outstandingDowntime":[false,false,false,false]}},{"ix":145,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":146,"action":{"kind":"Undelegate","val":3,"amt":1222},"partialState":{"h":21,"t":126,"tokens":[3810,7381,2902,4936],"delegation":[2810,6381,1902,3936],"delegatorTokens":9999999924792}},{"ix":147,"action":{"kind":"Undelegate","val":1,"amt":3398},"partialState":{"h":21,"t":126,"tokens":[3810,3983,2902,4936],"delegation":[2810,2983,1902,3936],"delegatorTokens":9999999924792}},{"ix":148,"action":{"kind":"Delegate","val":3,"amt":3120},"partialState":{"h":21,"t":126,"tokens":[3810,3983,2902,8056],"delegation":[2810,2983,1902,7056],"delegatorTokens":9999999921672}},{"ix":149,"action":{"kind":"Deliver","chain":"consumer","numPackets":4},"partialState":{"h":19,"t":114,"consumerPower":[null,7381,6032,null],"outstandingDowntime":[false,false,false,false]}},{"ix":150,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":22,"t":132,"tokens":[3810,3983,2902,8056],"delegation":[2810,2983,1902,7056],"delegatorTokens":9999999921672,"jailed":[null,null,null,1000000000000053],"status":["bonded","bonded","unbonding","unbonding"]}},{"ix":151,"action":{"kind":"Undelegate","val":3,"amt":3892},"partialState":{"h":22,"t":132,"tokens":[3810,3983,2902,4164],"delegation":[2810,2983,1902,3164],"delegatorTokens":9999999921672}},{"ix":152,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":153,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":154,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":23,"t":138,"tokens":[3810,3983,2902,4164],"delegation":[2810,2983,1902,3164],"delegatorTokens":9999999921672,"jailed":[null,null,null,1000000000000053],"status":["bonded","bonded","unbonding","unbonding"]}},{"ix":155,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":20,"t":120,"consumerPower":[null,7381,6032,null],"outstandingDowntime":[false,false,false,false]}},{"ix":156,"action":{"kind":"Delegate","val":3,"amt":2786},"partialState":{"h":23,"t":138,"tokens":[3810,3983,2902,6950],"delegation":[2810,2983,1902,5950],"delegatorTokens":9999999918886}},{"ix":157,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":158,"action":{"kind":"Undelegate","val":2,"amt":1313},"partialState":{"h":23,"t":138,"tokens":[3810,3983,1589,6950],"delegation":[2810,2983,589,5950],"delegatorTokens":9999999918886}},{"ix":159,"action":{"kind":"Delegate","val":0,"amt":3644},"partialState":{"h":23,"t":138,"tokens":[7454,3983,1589,6950],"delegation":[6454,2983,589,5950],"delegatorTokens":9999999915242}},{"ix":160,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":161,"action":{"kind":"Undelegate","val":1,"amt":2449},"partialState":{"h":23,"t":138,"tokens":[7454,1534,1589,6950],"delegation":[6454,534,589,5950],"delegatorTokens":9999999915242}},{"ix":162,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":24,"t":144,"tokens":[7454,1534,1589,6950],"delegation":[6454,534,589,5950],"delegatorTokens":9999999915242,"jailed":[null,null,null,1000000000000053],"status":["bonded","unbonding","bonded","unbonding"]}},{"ix":163,"action":{"kind":"Delegate","val":1,"amt":4994},"partialState":{"h":24,"t":144,"tokens":[7454,6528,1589,6950],"delegation":[6454,5528,589,5950],"delegatorTokens":9999999910248}},{"ix":164,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":165,"action":{"kind":"Delegate","val":1,"amt":3286},"partialState":{"h":24,"t":144,"tokens":[7454,9814,1589,6950],"delegation":[6454,8814,589,5950],"delegatorTokens":9999999906962}},{"ix":166,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":25,"t":150,"tokens":[7454,9814,1589,6950],"delegation":[6454,8814,589,5950],"delegatorTokens":9999999906962,"jailed":[null,null,null,1000000000000053],"status":["bonded","bonded","unbonding","unbonding"]}},{"ix":167,"action":{"kind":"Undelegate","val":3,"amt":1311},"partialState":{"h":25,"t":150,"tokens":[7454,9814,1589,5639],"delegation":[6454,8814,589,4639],"delegatorTokens":9999999906962}},{"ix":168,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":26,"t":156,"tokens":[7454,9814,1589,5639],"delegation":[6454,8814,589,4639],"delegatorTokens":9999999906962,"jailed":[null,null,null,1000000000000053],"status":["bonded","bonded","unbonding","unbonding"]}},{"ix":169,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":170,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":171,"action":{"kind":"Deliver","chain":"consumer","numPackets":2},"partialState":{"h":20,"t":120,"consumerPower":[null,7381,6032,null],"outstandingDowntime":[false,false,false,false]}},{"ix":172,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":21,"t":126,"consumerPower":[3810,3983,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":173,"action":{"kind":"Deliver","chain":"provider","numPackets":2},"partialState":{"h":26,"t":156,"tokens":[7454,9814,1589,5639],"delegation":[6454,8814,589,4639],"delegatorTokens":9999999906962,"jailed":[null,null,null,1000000000000053],"status":["bonded","bonded","unbonding","unbonding"]}},{"ix":174,"action":{"kind":"Deliver","chain":"consumer","numPackets":1},"partialState":{"h":21,"t":126,"consumerPower":[3810,3983,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":175,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":22,"t":132,"consumerPower":[3810,3983,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":176,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":177,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":178,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":27,"t":162,"tokens":[7454,9814,1589,5639],"delegation":[6454,8814,589,4639],"delegatorTokens":9999999916134,"jailed":[null,null,null,1000000000000053],"status":["bonded","bonded","unbonding","unbonding"]}},{"ix":179,"action":{"kind":"Deliver","chain":"provider","numPackets":5},"partialState":{"h":27,"t":162,"tokens":[7454,9814,1589,5639],"delegation":[6454,8814,589,4639],"delegatorTokens":9999999916134,"jailed":[null,null,null,1000000000000053],"status":["bonded","bonded","unbonding","unbonding"]}},{"ix":180,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":28,"t":168,"tokens":[7454,9814,1589,5639],"delegation":[6454,8814,589,4639],"delegatorTokens":9999999926015,"jailed":[null,null,null,1000000000000053],"status":["bonded","bonded","unbonding","unbonding"]}},{"ix":181,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":23,"t":138,"consumerPower":[3810,3983,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":182,"action":{"kind":"Deliver","chain":"provider","numPackets":3},"partialState":{"h":28,"t":168,"tokens":[7454,9814,1589,5639],"delegation":[6454,8814,589,4639],"delegatorTokens":9999999926015,"jailed":[null,null,null,1000000000000053],"status":["bonded","bonded","unbonding","unbonding"]}},{"ix":183,"action":{"kind":"Deliver","chain":"consumer","numPackets":4},"partialState":{"h":23,"t":138,"consumerPower":[3810,3983,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":184,"action":{"kind":"Undelegate","val":1,"amt":3809},"partialState":{"h":28,"t":168,"tokens":[7454,6005,1589,5639],"delegation":[6454,5005,589,4639],"delegatorTokens":9999999926015}},{"ix":185,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":24,"t":144,"consumerPower":[7454,9814,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":186,"action":{"kind":"Undelegate","val":0,"amt":2669},"partialState":{"h":28,"t":168,"tokens":[4785,6005,1589,5639],"delegation":[3785,5005,589,4639],"delegatorTokens":9999999926015}},{"ix":187,"action":{"kind":"Undelegate","val":2,"amt":4225},"partialState":{"h":28,"t":168,"tokens":[4785,6005,1589,5639],"delegation":[3785,5005,589,4639],"delegatorTokens":9999999926015}},{"ix":188,"action":{"kind":"Deliver","chain":"consumer","numPackets":6},"partialState":{"h":24,"t":144,"consumerPower":[7454,9814,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":189,"action":{"kind":"Deliver","chain":"consumer","numPackets":4},"partialState":{"h":24,"t":144,"consumerPower":[7454,9814,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":190,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":25,"t":150,"consumerPower":[7454,9814,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":191,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":26,"t":156,"consumerPower":[7454,9814,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":192,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":29,"t":174,"tokens":[4785,6005,1589,5639],"delegation":[3785,5005,589,4639],"delegatorTokens":9999999963640,"jailed":[null,null,null,1000000000000053],"status":["bonded","bonded","unbonding","unbonded"]}},{"ix":193,"action":{"kind":"Deliver","chain":"provider","numPackets":4},"partialState":{"h":29,"t":174,"tokens":[4785,6005,1589,5639],"delegation":[3785,5005,589,4639],"delegatorTokens":9999999963640,"jailed":[null,null,null,1000000000000053],"status":["bonded","bonded","unbonding","unbonded"]}},{"ix":194,"action":{"kind":"Delegate","val":2,"amt":2382},"partialState":{"h":29,"t":174,"tokens":[4785,6005,3971,5639],"delegation":[3785,5005,2971,4639],"delegatorTokens":9999999961258}},{"ix":195,"action":{"kind":"Delegate","val":0,"amt":4444},"partialState":{"h":29,"t":174,"tokens":[9229,6005,3971,5639],"delegation":[8229,5005,2971,4639],"delegatorTokens":9999999956814}},{"ix":196,"action":{"kind":"Deliver","chain":"provider","numPackets":6},"partialState":{"h":29,"t":174,"tokens":[9229,6005,3971,5639],"delegation":[8229,5005,2971,4639],"delegatorTokens":9999999956814,"jailed":[null,null,null,1000000000000053],"status":["bonded","bonded","unbonding","unbonded"]}},{"ix":197,"action":{"kind":"Undelegate","val":0,"amt":2950},"partialState":{"h":29,"t":174,"tokens":[6279,6005,3971,5639],"delegation":[5279,5005,2971,4639],"delegatorTokens":9999999956814}},{"ix":198,"action":{"kind":"Deliver","chain":"consumer","numPackets":1},"partialState":{"h":26,"t":156,"consumerPower":[7454,9814,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":199,"action":{"kind":"Delegate","val":3,"amt":2639},"partialState":{"h":29,"t":174,"tokens":[6279,6005,3971,8278],"delegation":[5279,5005,2971,7278],"delegatorTokens":9999999954175}}],"events":["insufficient_shares","more_than_one_third_val_power_change","send_vsc_without_downtime_ack","send_downtime_slash_request","send_double_sign_slash_request","send_double_sign_slash_request","more_than_one_third_val_power_change","rebond_unval","send_vsc_without_downtime_ack","more_than_one_third_val_power_change","rebond_unval","send_vsc_without_downtime_ack","consumer_del_val","consumer_add_val","consumer_update_val","send_vsc_without_downtime_ack","send_vsc_not_because_change","send_vsc_without_downtime_ack","consumer_update_val","send_vsc_without_downtime_ack","insufficient_shares","receive_double_sign_slash_request","receive_double_sign_slash_request","receive_downtime_slash_request","jail","more_than_one_third_val_power_change","send_vsc_with_downtime_ack","insufficient_shares","send_vsc_without_downtime_ack","insufficient_shares","receive_downtime_slash_ack","consumer_update_val","consumer_add_val","consumer_del_val","rebond_unval","send_vsc_without_downtime_ack","send_vsc_not_because_change","send_vsc_without_downtime_ack","consumer_send_maturation","consumer_send_maturation","consumer_send_maturation","send_vsc_without_downtime_ack","more_than_one_third_val_power_change","rebond_unval","send_vsc_without_downtime_ack","consumer_send_maturation","consumer_update_val","consumer_del_val","consumer_add_val","send_vsc_not_because_change","send_vsc_without_downtime_ack","consumer_del_val","consumer_update_val","consumer_add_val","insufficient_shares","send_vsc_without_downtime_ack","some_undels_expired_but_not_completed","consumer_send_maturation","consumer_send_maturation","consumer_send_maturation","consumer_update_val","consumer_update_val","more_than_one_third_val_power_change","rebond_unval","some_undels_expired_but_not_completed","send_vsc_without_downtime_ack","send_vsc_without_downtime_ack","send_vsc_not_because_change","send_vsc_without_downtime_ack","rebond_unval","send_vsc_without_downtime_ack","more_than_one_third_val_power_change","rebond_unval","some_undels_expired_but_not_completed","send_vsc_without_downtime_ack","some_undels_expired_but_not_completed","send_vsc_not_because_change","send_vsc_without_downtime_ack","consumer_send_maturation","consumer_send_maturation","consumer_add_val","consumer_del_val","consumer_update_val","consumer_send_maturation","consumer_send_maturation","consumer_send_maturation","some_undels_expired_but_not_completed","complete_undel_immediate","complete_undel_immediate","complete_undel_immediate","some_undels_expired_but_not_completed","set_unval_hold_false","complete_undel_immediate","complete_undel_immediate","complete_undel_immediate","complete_undel_immediate","consumer_update_val","consumer_update_val","consumer_del_val","insufficient_shares","consumer_send_maturation","consumer_send_maturation","complete_unval_in_endblock","some_undels_expired_but_not_completed","complete_undel_immediate","complete_undel_immediate","complete_undel_immediate","complete_undel_immediate","complete_undel_immediate","complete_undel_immediate","complete_undel_immediate","complete_undel_immediate","complete_undel_immediate","complete_undel_immediate","complete_undel_immediate","complete_undel_immediate","send_vsc_without_downtime_ack"]},{"meta":{"commit":"7ffd0c04e4205cbc9caf212abfe6c59ee43153bf"},"constants":{"P":"provider","C":"consumer","UNBONDING_SECONDS_P":70,"UNBONDING_SECONDS_C":50,"TRUSTING_SECONDS":49,"NUM_VALIDATORS":4,"MAX_VALIDATORS":2,"SLASH_DOUBLESIGN":0,"SLASH_DOWNTIME":0,"JAIL_SECONDS":999999999999999,"BLOCK_SECONDS":6,"INITIAL_DELEGATOR_TOKENS":10000000000000,"DELEGATE_AMT_MIN":1000,"DELEGATE_AMT_MAX":5000,"UNDELEGATE_AMT_MIN":1000,"UNDELEGATE_AMT_MAX":5000,"ISDOWNTIME_PROBABILITY":0.5,"MAX_NUM_PACKETS_FOR_DELIVER":6},"actions":[{"ix":0,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":2,"t":12,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":1,"action":{"kind":"Undelegate","val":0,"amt":4704},"partialState":{"h":1,"t":6,"tokens":[5000,4000,3000,2000],"delegation":[4000,3000,2000,1000],"delegatorTokens":10000000000000}},{"ix":2,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":3,"t":18,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":3,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":2,"t":12,"tokens":[5000,4000,3000,2000],"delegation":[4000,3000,2000,1000],"delegatorTokens":10000000000000,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":4,"action":{"kind":"Delegate","val":0,"amt":2951},"partialState":{"h":2,"t":12,"tokens":[7951,4000,3000,2000],"delegation":[6951,3000,2000,1000],"delegatorTokens":9999999997049}},{"ix":5,"action":{"kind":"Undelegate","val":1,"amt":2112},"partialState":{"h":2,"t":12,"tokens":[7951,1888,3000,2000],"delegation":[6951,888,2000,1000],"delegatorTokens":9999999997049}},{"ix":6,"action":{"kind":"ConsumerSlash","val":3,"infractionHeight":1,"isDowntime":false},"partialState":{"h":3,"t":18,"outstandingDowntime":[false,false,false,false]}},{"ix":7,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":3,"t":18,"tokens":[7951,1888,3000,2000],"delegation":[6951,888,2000,1000],"delegatorTokens":9999999997049,"jailed":[null,null,null,null],"status":["bonded","unbonding","bonded","unbonded"]}},{"ix":8,"action":{"kind":"Deliver","chain":"provider","numPackets":6},"partialState":{"h":3,"t":18,"tokens":[7951,1888,3000,2000],"delegation":[6951,888,2000,1000],"delegatorTokens":9999999997049,"jailed":[null,null,null,null],"status":["bonded","unbonding","bonded","unbonded"]}},{"ix":9,"action":{"kind":"Delegate","val":2,"amt":4301},"partialState":{"h":3,"t":18,"tokens":[7951,1888,7301,2000],"delegation":[6951,888,6301,1000],"delegatorTokens":9999999992748}},{"ix":10,"action":{"kind":"Deliver","chain":"provider","numPackets":5},"partialState":{"h":3,"t":18,"tokens":[7951,1888,7301,2000],"delegation":[6951,888,6301,1000],"delegatorTokens":9999999992748,"jailed":[null,null,null,null],"status":["bonded","unbonding","bonded","unbonded"]}},{"ix":11,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":4,"t":24,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":12,"action":{"kind":"Delegate","val":1,"amt":1611},"partialState":{"h":3,"t":18,"tokens":[7951,3499,7301,2000],"delegation":[6951,2499,6301,1000],"delegatorTokens":9999999991137}},{"ix":13,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":14,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":15,"action":{"kind":"Deliver","chain":"consumer","numPackets":3},"partialState":{"h":4,"t":24,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":16,"action":{"kind":"ConsumerSlash","val":3,"infractionHeight":0,"isDowntime":false},"partialState":{"h":4,"t":24,"outstandingDowntime":[false,false,false,false]}},{"ix":17,"action":{"kind":"Undelegate","val":2,"amt":4435},"partialState":{"h":3,"t":18,"tokens":[7951,3499,2866,2000],"delegation":[6951,2499,1866,1000],"delegatorTokens":9999999991137}},{"ix":18,"action":{"kind":"Undelegate","val":1,"amt":1200},"partialState":{"h":3,"t":18,"tokens":[7951,2299,2866,2000],"delegation":[6951,1299,1866,1000],"delegatorTokens":9999999991137}},{"ix":19,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":5,"t":30,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":20,"action":{"kind":"Undelegate","val":0,"amt":1331},"partialState":{"h":3,"t":18,"tokens":[6620,2299,2866,2000],"delegation":[5620,1299,1866,1000],"delegatorTokens":9999999991137}},{"ix":21,"action":{"kind":"Delegate","val":3,"amt":1365},"partialState":{"h":3,"t":18,"tokens":[6620,2299,2866,3365],"delegation":[5620,1299,1866,2365],"delegatorTokens":9999999989772}},{"ix":22,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":23,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":24,"action":{"kind":"ConsumerSlash","val":1,"infractionHeight":3,"isDowntime":false},"partialState":{"h":5,"t":30,"outstandingDowntime":[false,false,false,false]}},{"ix":25,"action":{"kind":"ConsumerSlash","val":1,"infractionHeight":1,"isDowntime":true},"partialState":{"h":5,"t":30,"outstandingDowntime":[false,true,false,false]}},{"ix":26,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":27,"action":{"kind":"Deliver","chain":"provider","numPackets":2},"partialState":{"h":3,"t":18,"tokens":[6620,2299,2866,3365],"delegation":[5620,1299,1866,2365],"delegatorTokens":9999999989772,"jailed":[null,null,null,null],"status":["bonded","unbonding","bonded","unbonded"]}},{"ix":28,"action":{"kind":"Undelegate","val":3,"amt":3435},"partialState":{"h":3,"t":18,"tokens":[6620,2299,2866,3365],"delegation":[5620,1299,1866,2365],"delegatorTokens":9999999989772}},{"ix":29,"action":{"kind":"Undelegate","val":0,"amt":1940},"partialState":{"h":3,"t":18,"tokens":[4680,2299,2866,3365],"delegation":[3680,1299,1866,2365],"delegatorTokens":9999999989772}},{"ix":30,"action":{"kind":"ConsumerSlash","val":2,"infractionHeight":3,"isDowntime":false},"partialState":{"h":5,"t":30,"outstandingDowntime":[false,true,false,false]}},{"ix":31,"action":{"kind":"Delegate","val":0,"amt":4555},"partialState":{"h":3,"t":18,"tokens":[9235,2299,2866,3365],"delegation":[8235,1299,1866,2365],"delegatorTokens":9999999985217}},{"ix":32,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":4,"t":24,"tokens":[9235,2299,2866,3365],"delegation":[8235,1299,1866,2365],"delegatorTokens":9999999985217,"jailed":[null,null,null,null],"status":["bonded","unbonding","unbonding","bonded"]}},{"ix":33,"action":{"kind":"Deliver","chain":"consumer","numPackets":1},"partialState":{"h":5,"t":30,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,true,false,false]}},{"ix":34,"action":{"kind":"Delegate","val":1,"amt":3871},"partialState":{"h":4,"t":24,"tokens":[9235,6170,2866,3365],"delegation":[8235,5170,1866,2365],"delegatorTokens":9999999981346}},{"ix":35,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":36,"action":{"kind":"Undelegate","val":3,"amt":3277},"partialState":{"h":4,"t":24,"tokens":[9235,6170,2866,3365],"delegation":[8235,5170,1866,2365],"delegatorTokens":9999999981346}},{"ix":37,"action":{"kind":"Delegate","val":0,"amt":2882},"partialState":{"h":4,"t":24,"tokens":[12117,6170,2866,3365],"delegation":[11117,5170,1866,2365],"delegatorTokens":9999999978464}},{"ix":38,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":39,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":5,"t":30,"tokens":[12117,6170,2866,3365],"delegation":[11117,5170,1866,2365],"delegatorTokens":9999999978464,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonding","unbonding"]}},{"ix":40,"action":{"kind":"Delegate","val":0,"amt":4981},"partialState":{"h":5,"t":30,"tokens":[17098,6170,2866,3365],"delegation":[16098,5170,1866,2365],"delegatorTokens":9999999973483}},{"ix":41,"action":{"kind":"Delegate","val":0,"amt":2455},"partialState":{"h":5,"t":30,"tokens":[19553,6170,2866,3365],"delegation":[18553,5170,1866,2365],"delegatorTokens":9999999971028}},{"ix":42,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":6,"t":36,"tokens":[19553,6170,2866,3365],"delegation":[18553,5170,1866,2365],"delegatorTokens":9999999971028,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonding","unbonding"]}},{"ix":43,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":6,"t":36,"consumerPower":[7951,null,3000,null],"outstandingDowntime":[false,true,false,false]}},{"ix":44,"action":{"kind":"Deliver","chain":"consumer","numPackets":5},"partialState":{"h":6,"t":36,"consumerPower":[7951,null,3000,null],"outstandingDowntime":[false,true,false,false]}},{"ix":45,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":46,"action":{"kind":"Deliver","chain":"consumer","numPackets":1},"partialState":{"h":6,"t":36,"consumerPower":[7951,null,3000,null],"outstandingDowntime":[false,true,false,false]}},{"ix":47,"action":{"kind":"Delegate","val":2,"amt":4223},"partialState":{"h":6,"t":36,"tokens":[19553,6170,7089,3365],"delegation":[18553,5170,6089,2365],"delegatorTokens":9999999966805}},{"ix":48,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":7,"t":42,"consumerPower":[12117,6170,null,null],"outstandingDowntime":[false,true,false,false]}},{"ix":49,"action":{"kind":"Undelegate","val":3,"amt":2025},"partialState":{"h":6,"t":36,"tokens":[19553,6170,7089,1340],"delegation":[18553,5170,6089,340],"delegatorTokens":9999999966805}},{"ix":50,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":7,"t":42,"tokens":[19553,6170,7089,1340],"delegation":[18553,5170,6089,340],"delegatorTokens":9999999966805,"jailed":[null,null,null,null],"status":["bonded","unbonding","bonded","unbonding"]}},{"ix":51,"action":{"kind":"Undelegate","val":2,"amt":1175},"partialState":{"h":7,"t":42,"tokens":[19553,6170,5914,1340],"delegation":[18553,5170,4914,340],"delegatorTokens":9999999966805}},{"ix":52,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":53,"action":{"kind":"Delegate","val":0,"amt":1010},"partialState":{"h":7,"t":42,"tokens":[20563,6170,5914,1340],"delegation":[19563,5170,4914,340],"delegatorTokens":9999999965795}},{"ix":54,"action":{"kind":"Undelegate","val":3,"amt":3620},"partialState":{"h":7,"t":42,"tokens":[20563,6170,5914,1340],"delegation":[19563,5170,4914,340],"delegatorTokens":9999999965795}},{"ix":55,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":8,"t":48,"consumerPower":[12117,6170,null,null],"outstandingDowntime":[false,true,false,false]}},{"ix":56,"action":{"kind":"Undelegate","val":0,"amt":2035},"partialState":{"h":7,"t":42,"tokens":[18528,6170,5914,1340],"delegation":[17528,5170,4914,340],"delegatorTokens":9999999965795}},{"ix":57,"action":{"kind":"Delegate","val":1,"amt":3491},"partialState":{"h":7,"t":42,"tokens":[18528,9661,5914,1340],"delegation":[17528,8661,4914,340],"delegatorTokens":9999999962304}},{"ix":58,"action":{"kind":"Delegate","val":2,"amt":4025},"partialState":{"h":7,"t":42,"tokens":[18528,9661,9939,1340],"delegation":[17528,8661,8939,340],"delegatorTokens":9999999958279}},{"ix":59,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":8,"t":48,"tokens":[18528,9661,9939,1340],"delegation":[17528,8661,8939,340],"delegatorTokens":9999999958279,"jailed":[null,null,null,null],"status":["bonded","unbonding","bonded","unbonding"]}},{"ix":60,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":9,"t":54,"tokens":[18528,9661,9939,1340],"delegation":[17528,8661,8939,340],"delegatorTokens":9999999958279,"jailed":[null,null,null,null],"status":["bonded","unbonding","bonded","unbonding"]}},{"ix":61,"action":{"kind":"Undelegate","val":3,"amt":3997},"partialState":{"h":9,"t":54,"tokens":[18528,9661,9939,1340],"delegation":[17528,8661,8939,340],"delegatorTokens":9999999958279}},{"ix":62,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":9,"t":54,"consumerPower":[12117,6170,null,null],"outstandingDowntime":[false,true,false,false]}},{"ix":63,"action":{"kind":"Deliver","chain":"consumer","numPackets":6},"partialState":{"h":9,"t":54,"consumerPower":[12117,6170,null,null],"outstandingDowntime":[false,true,false,false]}},{"ix":64,"action":{"kind":"Delegate","val":0,"amt":3526},"partialState":{"h":9,"t":54,"tokens":[22054,9661,9939,1340],"delegation":[21054,8661,8939,340],"delegatorTokens":9999999954753}},{"ix":65,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":10,"t":60,"tokens":[22054,9661,9939,1340],"delegation":[21054,8661,8939,340],"delegatorTokens":9999999954753,"jailed":[null,null,null,null],"status":["bonded","unbonding","bonded","unbonding"]}},{"ix":66,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":10,"t":60,"consumerPower":[18528,null,9939,null],"outstandingDowntime":[false,true,false,false]}},{"ix":67,"action":{"kind":"Delegate","val":3,"amt":4813},"partialState":{"h":10,"t":60,"tokens":[22054,9661,9939,6153],"delegation":[21054,8661,8939,5153],"delegatorTokens":9999999949940}},{"ix":68,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":11,"t":66,"consumerPower":[18528,null,9939,null],"outstandingDowntime":[false,true,false,false]}},{"ix":69,"action":{"kind":"Deliver","chain":"provider","numPackets":4},"partialState":{"h":10,"t":60,"tokens":[22054,9661,9939,6153],"delegation":[21054,8661,8939,5153],"delegatorTokens":9999999949940,"jailed":[null,null,null,null],"status":["bonded","unbonding","bonded","unbonding"]}},{"ix":70,"action":{"kind":"Deliver","chain":"provider","numPackets":3},"partialState":{"h":10,"t":60,"tokens":[22054,9661,9939,6153],"delegation":[21054,8661,8939,5153],"delegatorTokens":9999999949940,"jailed":[null,null,null,null],"status":["bonded","unbonding","bonded","unbonding"]}},{"ix":71,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":72,"action":{"kind":"Deliver","chain":"provider","numPackets":5},"partialState":{"h":10,"t":60,"tokens":[22054,9661,9939,6153],"delegation":[21054,8661,8939,5153],"delegatorTokens":9999999949940,"jailed":[null,null,null,null],"status":["bonded","unbonding","bonded","unbonding"]}},{"ix":73,"action":{"kind":"Deliver","chain":"provider","numPackets":3},"partialState":{"h":10,"t":60,"tokens":[22054,9661,9939,6153],"delegation":[21054,8661,8939,5153],"delegatorTokens":9999999949940,"jailed":[null,null,null,null],"status":["bonded","unbonding","bonded","unbonding"]}},{"ix":74,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":11,"t":66,"tokens":[22054,9661,9939,6153],"delegation":[21054,8661,8939,5153],"delegatorTokens":9999999949940,"jailed":[null,1000000000000059,null,null],"status":["bonded","unbonding","bonded","unbonding"]}},{"ix":75,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":12,"t":72,"consumerPower":[18528,null,9939,null],"outstandingDowntime":[false,true,false,false]}},{"ix":76,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":77,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":13,"t":78,"consumerPower":[18528,null,9939,null],"outstandingDowntime":[false,true,false,false]}},{"ix":78,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":79,"action":{"kind":"Undelegate","val":3,"amt":4170},"partialState":{"h":11,"t":66,"tokens":[22054,9661,9939,1983],"delegation":[21054,8661,8939,983],"delegatorTokens":9999999949940}},{"ix":80,"action":{"kind":"Deliver","chain":"provider","numPackets":1},"partialState":{"h":11,"t":66,"tokens":[22054,9661,9939,1983],"delegation":[21054,8661,8939,983],"delegatorTokens":9999999949940,"jailed":[null,1000000000000059,null,null],"status":["bonded","unbonding","bonded","unbonding"]}},{"ix":81,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":14,"t":84,"consumerPower":[18528,null,9939,null],"outstandingDowntime":[false,true,false,false]}},{"ix":82,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":83,"action":{"kind":"Delegate","val":2,"amt":3800},"partialState":{"h":11,"t":66,"tokens":[22054,9661,13739,1983],"delegation":[21054,8661,12739,983],"delegatorTokens":9999999946140}},{"ix":84,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":85,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":12,"t":72,"tokens":[22054,9661,13739,1983],"delegation":[21054,8661,12739,983],"delegatorTokens":9999999946140,"jailed":[null,1000000000000059,null,null],"status":["bonded","unbonding","bonded","unbonding"]}},{"ix":86,"action":{"kind":"Undelegate","val":2,"amt":4826},"partialState":{"h":12,"t":72,"tokens":[22054,9661,8913,1983],"delegation":[21054,8661,7913,983],"delegatorTokens":9999999946140}},{"ix":87,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":15,"t":90,"consumerPower":[18528,null,9939,null],"outstandingDowntime":[false,true,false,false]}},{"ix":88,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":89,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":13,"t":78,"tokens":[22054,9661,8913,1983],"delegation":[21054,8661,7913,983],"delegatorTokens":9999999946140,"jailed":[null,1000000000000059,null,null],"status":["bonded","unbonding","bonded","unbonding"]}},{"ix":90,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":16,"t":96,"consumerPower":[18528,null,9939,null],"outstandingDowntime":[false,true,false,false]}},{"ix":91,"action":{"kind":"Undelegate","val":0,"amt":2874},"partialState":{"h":13,"t":78,"tokens":[19180,9661,8913,1983],"delegation":[18180,8661,7913,983],"delegatorTokens":9999999946140}},{"ix":92,"action":{"kind":"Undelegate","val":0,"amt":2774},"partialState":{"h":13,"t":78,"tokens":[16406,9661,8913,1983],"delegation":[15406,8661,7913,983],"delegatorTokens":9999999946140}},{"ix":93,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":14,"t":84,"tokens":[16406,9661,8913,1983],"delegation":[15406,8661,7913,983],"delegatorTokens":9999999946140,"jailed":[null,1000000000000059,null,null],"status":["bonded","unbonding","bonded","unbonding"]}},{"ix":94,"action":{"kind":"Undelegate","val":0,"amt":4446},"partialState":{"h":14,"t":84,"tokens":[11960,9661,8913,1983],"delegation":[10960,8661,7913,983],"delegatorTokens":9999999946140}},{"ix":95,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":15,"t":90,"tokens":[11960,9661,8913,1983],"delegation":[10960,8661,7913,983],"delegatorTokens":9999999946140,"jailed":[null,1000000000000059,null,null],"status":["bonded","unbonding","bonded","unbonding"]}},{"ix":96,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":17,"t":102,"consumerPower":[18528,null,9939,null],"outstandingDowntime":[false,true,false,false]}},{"ix":97,"action":{"kind":"Deliver","chain":"consumer","numPackets":6},"partialState":{"h":17,"t":102,"consumerPower":[18528,null,9939,null],"outstandingDowntime":[false,false,false,false]}},{"ix":98,"action":{"kind":"Undelegate","val":2,"amt":3232},"partialState":{"h":15,"t":90,"tokens":[11960,9661,5681,1983],"delegation":[10960,8661,4681,983],"delegatorTokens":9999999946140}},{"ix":99,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":16,"t":96,"tokens":[11960,9661,5681,1983],"delegation":[10960,8661,4681,983],"delegatorTokens":9999999946140,"jailed":[null,1000000000000059,null,null],"status":["bonded","unbonding","bonded","unbonding"]}},{"ix":100,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":17,"t":102,"tokens":[11960,9661,5681,1983],"delegation":[10960,8661,4681,983],"delegatorTokens":9999999946140,"jailed":[null,1000000000000059,null,null],"status":["bonded","unbonding","bonded","unbonding"]}},{"ix":101,"action":{"kind":"Deliver","chain":"provider","numPackets":6},"partialState":{"h":17,"t":102,"tokens":[11960,9661,5681,1983],"delegation":[10960,8661,4681,983],"delegatorTokens":9999999946140,"jailed":[null,1000000000000059,null,null],"status":["bonded","unbonding","bonded","unbonding"]}},{"ix":102,"action":{"kind":"Undelegate","val":3,"amt":4403},"partialState":{"h":17,"t":102,"tokens":[11960,9661,5681,1983],"delegation":[10960,8661,4681,983],"delegatorTokens":9999999946140}},{"ix":103,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":104,"action":{"kind":"Delegate","val":1,"amt":3388},"partialState":{"h":17,"t":102,"tokens":[11960,13049,5681,1983],"delegation":[10960,12049,4681,983],"delegatorTokens":9999999942752}},{"ix":105,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":106,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":18,"t":108,"tokens":[11960,13049,5681,1983],"delegation":[10960,12049,4681,983],"delegatorTokens":9999999953770,"jailed":[null,1000000000000059,null,null],"status":["bonded","unbonding","bonded","unbonding"]}},{"ix":107,"action":{"kind":"Delegate","val":3,"amt":1079},"partialState":{"h":18,"t":108,"tokens":[11960,13049,5681,3062],"delegation":[10960,12049,4681,2062],"delegatorTokens":9999999952691}},{"ix":108,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":19,"t":114,"tokens":[11960,13049,5681,3062],"delegation":[10960,12049,4681,2062],"delegatorTokens":9999999952691,"jailed":[null,1000000000000059,null,null],"status":["bonded","unbonding","bonded","unbonded"]}},{"ix":109,"action":{"kind":"Undelegate","val":0,"amt":4762},"partialState":{"h":19,"t":114,"tokens":[7198,13049,5681,3062],"delegation":[6198,12049,4681,2062],"delegatorTokens":9999999952691}},{"ix":110,"action":{"kind":"Deliver","chain":"provider","numPackets":4},"partialState":{"h":19,"t":114,"tokens":[7198,13049,5681,3062],"delegation":[6198,12049,4681,2062],"delegatorTokens":9999999952691,"jailed":[null,1000000000000059,null,null],"status":["bonded","unbonding","bonded","unbonded"]}},{"ix":111,"action":{"kind":"Deliver","chain":"consumer","numPackets":4},"partialState":{"h":17,"t":102,"consumerPower":[18528,null,9939,null],"outstandingDowntime":[false,false,false,false]}},{"ix":112,"action":{"kind":"Deliver","chain":"provider","numPackets":4},"partialState":{"h":19,"t":114,"tokens":[7198,13049,5681,3062],"delegation":[6198,12049,4681,2062],"delegatorTokens":9999999952691,"jailed":[null,1000000000000059,null,null],"status":["bonded","unbonding","bonded","unbonded"]}},{"ix":113,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":18,"t":108,"consumerPower":[11960,null,5681,null],"outstandingDowntime":[false,false,false,false]}},{"ix":114,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":19,"t":114,"consumerPower":[11960,null,5681,null],"outstandingDowntime":[false,false,false,false]}},{"ix":115,"action":{"kind":"Undelegate","val":3,"amt":3053},"partialState":{"h":19,"t":114,"tokens":[7198,13049,5681,3062],"delegation":[6198,12049,4681,2062],"delegatorTokens":9999999952691}},{"ix":116,"action":{"kind":"Delegate","val":2,"amt":1167},"partialState":{"h":19,"t":114,"tokens":[7198,13049,6848,3062],"delegation":[6198,12049,5848,2062],"delegatorTokens":9999999951524}},{"ix":117,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":20,"t":120,"tokens":[7198,13049,6848,3062],"delegation":[6198,12049,5848,2062],"delegatorTokens":9999999951524,"jailed":[null,1000000000000059,null,null],"status":["bonded","unbonding","bonded","unbonded"]}},{"ix":118,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":20,"t":120,"consumerPower":[11960,null,5681,null],"outstandingDowntime":[false,false,false,false]}},{"ix":119,"action":{"kind":"Undelegate","val":0,"amt":3129},"partialState":{"h":20,"t":120,"tokens":[4069,13049,6848,3062],"delegation":[3069,12049,5848,2062],"delegatorTokens":9999999951524}},{"ix":120,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":121,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":21,"t":126,"tokens":[4069,13049,6848,3062],"delegation":[3069,12049,5848,2062],"delegatorTokens":9999999951524,"jailed":[null,1000000000000059,null,null],"status":["bonded","unbonding","bonded","unbonded"]}},{"ix":122,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":21,"t":126,"consumerPower":[11960,null,5681,null],"outstandingDowntime":[false,false,false,false]}},{"ix":123,"action":{"kind":"Deliver","chain":"provider","numPackets":4},"partialState":{"h":21,"t":126,"tokens":[4069,13049,6848,3062],"delegation":[3069,12049,5848,2062],"delegatorTokens":9999999951524,"jailed":[null,1000000000000059,null,null],"status":["bonded","unbonding","bonded","unbonded"]}},{"ix":124,"action":{"kind":"Undelegate","val":3,"amt":3835},"partialState":{"h":21,"t":126,"tokens":[4069,13049,6848,3062],"delegation":[3069,12049,5848,2062],"delegatorTokens":9999999951524}},{"ix":125,"action":{"kind":"Undelegate","val":0,"amt":4169},"partialState":{"h":21,"t":126,"tokens":[4069,13049,6848,3062],"delegation":[3069,12049,5848,2062],"delegatorTokens":9999999951524}},{"ix":126,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":127,"action":{"kind":"Delegate","val":1,"amt":1034},"partialState":{"h":21,"t":126,"tokens":[4069,14083,6848,3062],"delegation":[3069,13083,5848,2062],"delegatorTokens":9999999950490}},{"ix":128,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":129,"action":{"kind":"Deliver","chain":"consumer","numPackets":5},"partialState":{"h":21,"t":126,"consumerPower":[11960,null,5681,null],"outstandingDowntime":[false,false,false,false]}},{"ix":130,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":22,"t":132,"consumerPower":[7198,null,6848,null],"outstandingDowntime":[false,false,false,false]}},{"ix":131,"action":{"kind":"Deliver","chain":"consumer","numPackets":5},"partialState":{"h":22,"t":132,"consumerPower":[7198,null,6848,null],"outstandingDowntime":[false,false,false,false]}},{"ix":132,"action":{"kind":"Deliver","chain":"provider","numPackets":6},"partialState":{"h":21,"t":126,"tokens":[4069,14083,6848,3062],"delegation":[3069,13083,5848,2062],"delegatorTokens":9999999950490,"jailed":[null,1000000000000059,null,null],"status":["bonded","unbonding","bonded","unbonded"]}},{"ix":133,"action":{"kind":"Delegate","val":3,"amt":4254},"partialState":{"h":21,"t":126,"tokens":[4069,14083,6848,7316],"delegation":[3069,13083,5848,6316],"delegatorTokens":9999999946236}},{"ix":134,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":23,"t":138,"consumerPower":[7198,null,6848,null],"outstandingDowntime":[false,false,false,false]}},{"ix":135,"action":{"kind":"Deliver","chain":"consumer","numPackets":1},"partialState":{"h":23,"t":138,"consumerPower":[7198,null,6848,null],"outstandingDowntime":[false,false,false,false]}},{"ix":136,"action":{"kind":"Delegate","val":1,"amt":4464},"partialState":{"h":21,"t":126,"tokens":[4069,18547,6848,7316],"delegation":[3069,17547,5848,6316],"delegatorTokens":9999999941772}},{"ix":137,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":24,"t":144,"consumerPower":[7198,null,6848,null],"outstandingDowntime":[false,false,false,false]}},{"ix":138,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":139,"action":{"kind":"Deliver","chain":"consumer","numPackets":3},"partialState":{"h":24,"t":144,"consumerPower":[7198,null,6848,null],"outstandingDowntime":[false,false,false,false]}},{"ix":140,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":141,"action":{"kind":"Deliver","chain":"consumer","numPackets":3},"partialState":{"h":24,"t":144,"consumerPower":[7198,null,6848,null],"outstandingDowntime":[false,false,false,false]}},{"ix":142,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":25,"t":150,"consumerPower":[7198,null,6848,null],"outstandingDowntime":[false,false,false,false]}},{"ix":143,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":22,"t":132,"tokens":[4069,18547,6848,7316],"delegation":[3069,17547,5848,6316],"delegatorTokens":9999999947007,"jailed":[null,1000000000000059,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":144,"action":{"kind":"Delegate","val":1,"amt":2327},"partialState":{"h":22,"t":132,"tokens":[4069,20874,6848,7316],"delegation":[3069,19874,5848,6316],"delegatorTokens":9999999944680}},{"ix":145,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":23,"t":138,"tokens":[4069,20874,6848,7316],"delegation":[3069,19874,5848,6316],"delegatorTokens":9999999944680,"jailed":[null,1000000000000059,null,null],"status":["unbonding","unbonded","bonded","bonded"]}},{"ix":146,"action":{"kind":"Deliver","chain":"provider","numPackets":5},"partialState":{"h":23,"t":138,"tokens":[4069,20874,6848,7316],"delegation":[3069,19874,5848,6316],"delegatorTokens":9999999944680,"jailed":[null,1000000000000059,null,null],"status":["unbonding","unbonded","bonded","bonded"]}},{"ix":147,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":148,"action":{"kind":"Deliver","chain":"consumer","numPackets":6},"partialState":{"h":25,"t":150,"consumerPower":[7198,null,6848,null],"outstandingDowntime":[false,false,false,false]}},{"ix":149,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":150,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":151,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":24,"t":144,"tokens":[4069,20874,6848,7316],"delegation":[3069,19874,5848,6316],"delegatorTokens":9999999944680,"jailed":[null,1000000000000059,null,null],"status":["unbonding","unbonded","bonded","bonded"]}},{"ix":152,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":26,"t":156,"consumerPower":[null,null,6848,7316],"outstandingDowntime":[false,false,false,false]}},{"ix":153,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":25,"t":150,"tokens":[4069,20874,6848,7316],"delegation":[3069,19874,5848,6316],"delegatorTokens":9999999944680,"jailed":[null,1000000000000059,null,null],"status":["unbonding","unbonded","bonded","bonded"]}},{"ix":154,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":27,"t":162,"consumerPower":[null,null,6848,7316],"outstandingDowntime":[false,false,false,false]}},{"ix":155,"action":{"kind":"Undelegate","val":3,"amt":4279},"partialState":{"h":25,"t":150,"tokens":[4069,20874,6848,3037],"delegation":[3069,19874,5848,2037],"delegatorTokens":9999999944680}},{"ix":156,"action":{"kind":"Deliver","chain":"consumer","numPackets":2},"partialState":{"h":27,"t":162,"consumerPower":[null,null,6848,7316],"outstandingDowntime":[false,false,false,false]}},{"ix":157,"action":{"kind":"Undelegate","val":3,"amt":1922},"partialState":{"h":25,"t":150,"tokens":[4069,20874,6848,1115],"delegation":[3069,19874,5848,115],"delegatorTokens":9999999944680}},{"ix":158,"action":{"kind":"Deliver","chain":"provider","numPackets":5},"partialState":{"h":25,"t":150,"tokens":[4069,20874,6848,1115],"delegation":[3069,19874,5848,115],"delegatorTokens":9999999944680,"jailed":[null,1000000000000059,null,null],"status":["unbonding","unbonded","bonded","bonded"]}},{"ix":159,"action":{"kind":"Deliver","chain":"consumer","numPackets":2},"partialState":{"h":27,"t":162,"consumerPower":[null,null,6848,7316],"outstandingDowntime":[false,false,false,false]}},{"ix":160,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":26,"t":156,"tokens":[4069,20874,6848,1115],"delegation":[3069,19874,5848,115],"delegatorTokens":9999999944680,"jailed":[null,1000000000000059,null,null],"status":["bonded","unbonded","bonded","unbonding"]}},{"ix":161,"action":{"kind":"Delegate","val":2,"amt":4577},"partialState":{"h":26,"t":156,"tokens":[4069,20874,11425,1115],"delegation":[3069,19874,10425,115],"delegatorTokens":9999999940103}},{"ix":162,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":28,"t":168,"consumerPower":[null,null,6848,7316],"outstandingDowntime":[false,false,false,false]}},{"ix":163,"action":{"kind":"Undelegate","val":3,"amt":2988},"partialState":{"h":26,"t":156,"tokens":[4069,20874,11425,1115],"delegation":[3069,19874,10425,115],"delegatorTokens":9999999940103}},{"ix":164,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":29,"t":174,"consumerPower":[null,null,6848,7316],"outstandingDowntime":[false,false,false,false]}},{"ix":165,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":30,"t":180,"consumerPower":[null,null,6848,7316],"outstandingDowntime":[false,false,false,false]}},{"ix":166,"action":{"kind":"Deliver","chain":"consumer","numPackets":5},"partialState":{"h":30,"t":180,"consumerPower":[null,null,6848,7316],"outstandingDowntime":[false,false,false,false]}},{"ix":167,"action":{"kind":"Deliver","chain":"provider","numPackets":4},"partialState":{"h":26,"t":156,"tokens":[4069,20874,11425,1115],"delegation":[3069,19874,10425,115],"delegatorTokens":9999999940103,"jailed":[null,1000000000000059,null,null],"status":["bonded","unbonded","bonded","unbonding"]}},{"ix":168,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":27,"t":162,"tokens":[4069,20874,11425,1115],"delegation":[3069,19874,10425,115],"delegatorTokens":9999999954747,"jailed":[null,1000000000000059,null,null],"status":["bonded","unbonded","bonded","unbonding"]}},{"ix":169,"action":{"kind":"Deliver","chain":"consumer","numPackets":4},"partialState":{"h":30,"t":180,"consumerPower":[null,null,6848,7316],"outstandingDowntime":[false,false,false,false]}},{"ix":170,"action":{"kind":"Delegate","val":2,"amt":1489},"partialState":{"h":27,"t":162,"tokens":[4069,20874,12914,1115],"delegation":[3069,19874,11914,115],"delegatorTokens":9999999953258}},{"ix":171,"action":{"kind":"Deliver","chain":"provider","numPackets":3},"partialState":{"h":27,"t":162,"tokens":[4069,20874,12914,1115],"delegation":[3069,19874,11914,115],"delegatorTokens":9999999953258,"jailed":[null,1000000000000059,null,null],"status":["bonded","unbonded","bonded","unbonding"]}},{"ix":172,"action":{"kind":"Deliver","chain":"consumer","numPackets":2},"partialState":{"h":30,"t":180,"consumerPower":[null,null,6848,7316],"outstandingDowntime":[false,false,false,false]}},{"ix":173,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":28,"t":168,"tokens":[4069,20874,12914,1115],"delegation":[3069,19874,11914,115],"delegatorTokens":9999999960936,"jailed":[null,1000000000000059,null,null],"status":["bonded","unbonded","bonded","unbonding"]}},{"ix":174,"action":{"kind":"Deliver","chain":"consumer","numPackets":2},"partialState":{"h":30,"t":180,"consumerPower":[null,null,6848,7316],"outstandingDowntime":[false,false,false,false]}},{"ix":175,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":31,"t":186,"consumerPower":[4069,null,11425,null],"outstandingDowntime":[false,false,false,false]}},{"ix":176,"action":{"kind":"Undelegate","val":2,"amt":1087},"partialState":{"h":28,"t":168,"tokens":[4069,20874,11827,1115],"delegation":[3069,19874,10827,115],"delegatorTokens":9999999960936}},{"ix":177,"action":{"kind":"Undelegate","val":2,"amt":1346},"partialState":{"h":28,"t":168,"tokens":[4069,20874,10481,1115],"delegation":[3069,19874,9481,115],"delegatorTokens":9999999960936}},{"ix":178,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":32,"t":192,"consumerPower":[4069,null,11425,null],"outstandingDowntime":[false,false,false,false]}},{"ix":179,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":33,"t":198,"consumerPower":[4069,null,11425,null],"outstandingDowntime":[false,false,false,false]}},{"ix":180,"action":{"kind":"Deliver","chain":"consumer","numPackets":3},"partialState":{"h":33,"t":198,"consumerPower":[4069,null,11425,null],"outstandingDowntime":[false,false,false,false]}},{"ix":181,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":29,"t":174,"tokens":[4069,20874,10481,1115],"delegation":[3069,19874,9481,115],"delegatorTokens":9999999960936,"jailed":[null,1000000000000059,null,null],"status":["bonded","unbonded","bonded","unbonding"]}},{"ix":182,"action":{"kind":"Delegate","val":3,"amt":2935},"partialState":{"h":29,"t":174,"tokens":[4069,20874,10481,4050],"delegation":[3069,19874,9481,3050],"delegatorTokens":9999999958001}},{"ix":183,"action":{"kind":"Undelegate","val":0,"amt":2312},"partialState":{"h":29,"t":174,"tokens":[1757,20874,10481,4050],"delegation":[757,19874,9481,3050],"delegatorTokens":9999999958001}},{"ix":184,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":185,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":30,"t":180,"tokens":[1757,20874,10481,4050],"delegation":[757,19874,9481,3050],"delegatorTokens":9999999958001,"jailed":[null,1000000000000059,null,null],"status":["unbonding","unbonded","bonded","bonded"]}},{"ix":186,"action":{"kind":"Delegate","val":2,"amt":2633},"partialState":{"h":30,"t":180,"tokens":[1757,20874,13114,4050],"delegation":[757,19874,12114,3050],"delegatorTokens":9999999955368}},{"ix":187,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":188,"action":{"kind":"Undelegate","val":3,"amt":4124},"partialState":{"h":30,"t":180,"tokens":[1757,20874,13114,4050],"delegation":[757,19874,12114,3050],"delegatorTokens":9999999955368}},{"ix":189,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":190,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":31,"t":186,"tokens":[1757,20874,13114,4050],"delegation":[757,19874,12114,3050],"delegatorTokens":9999999955368,"jailed":[null,1000000000000059,null,null],"status":["unbonding","unbonded","bonded","bonded"]}},{"ix":191,"action":{"kind":"Undelegate","val":0,"amt":1367},"partialState":{"h":31,"t":186,"tokens":[1757,20874,13114,4050],"delegation":[757,19874,12114,3050],"delegatorTokens":9999999955368}},{"ix":192,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":32,"t":192,"tokens":[1757,20874,13114,4050],"delegation":[757,19874,12114,3050],"delegatorTokens":9999999955368,"jailed":[null,1000000000000059,null,null],"status":["unbonding","unbonded","bonded","bonded"]}},{"ix":193,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":194,"action":{"kind":"Delegate","val":0,"amt":3127},"partialState":{"h":32,"t":192,"tokens":[4884,20874,13114,4050],"delegation":[3884,19874,12114,3050],"delegatorTokens":9999999952241}},{"ix":195,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":34,"t":204,"consumerPower":[4069,null,11425,null],"outstandingDowntime":[false,false,false,false]}},{"ix":196,"action":{"kind":"Deliver","chain":"provider","numPackets":1},"partialState":{"h":32,"t":192,"tokens":[4884,20874,13114,4050],"delegation":[3884,19874,12114,3050],"delegatorTokens":9999999952241,"jailed":[null,1000000000000059,null,null],"status":["unbonding","unbonded","bonded","bonded"]}},{"ix":197,"action":{"kind":"Deliver","chain":"provider","numPackets":3},"partialState":{"h":32,"t":192,"tokens":[4884,20874,13114,4050],"delegation":[3884,19874,12114,3050],"delegatorTokens":9999999952241,"jailed":[null,1000000000000059,null,null],"status":["unbonding","unbonded","bonded","bonded"]}},{"ix":198,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":33,"t":198,"tokens":[4884,20874,13114,4050],"delegation":[3884,19874,12114,3050],"delegatorTokens":9999999957003,"jailed":[null,1000000000000059,null,null],"status":["bonded","unbonded","bonded","unbonding"]}},{"ix":199,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}}],"events":["insufficient_shares","send_double_sign_slash_request","send_vsc_without_downtime_ack","send_double_sign_slash_request","send_double_sign_slash_request","send_downtime_slash_request","receive_double_sign_slash_request","insufficient_shares","send_double_sign_slash_request","send_vsc_without_downtime_ack","insufficient_shares","more_than_one_third_val_power_change","rebond_unval","send_vsc_without_downtime_ack","send_vsc_without_downtime_ack","consumer_update_val","consumer_del_val","consumer_add_val","consumer_update_val","consumer_del_val","consumer_del_val","consumer_add_val","rebond_unval","send_vsc_without_downtime_ack","insufficient_shares","send_vsc_without_downtime_ack","insufficient_shares","send_vsc_without_downtime_ack","consumer_update_val","consumer_del_val","consumer_add_val","receive_double_sign_slash_request","receive_double_sign_slash_request","receive_double_sign_slash_request","receive_downtime_slash_request","jail","send_vsc_with_downtime_ack","consumer_send_maturation","send_vsc_without_downtime_ack","consumer_send_maturation","consumer_send_maturation","send_vsc_without_downtime_ack","some_undels_expired_but_not_completed","send_vsc_without_downtime_ack","receive_downtime_slash_ack","some_undels_expired_but_not_completed","send_vsc_without_downtime_ack","insufficient_shares","complete_undel_immediate","complete_undel_immediate","complete_undel_immediate","complete_undel_immediate","complete_undel_immediate","set_unval_hold_false","complete_unval_in_endblock","some_undels_expired_but_not_completed","consumer_update_val","consumer_update_val","consumer_send_maturation","consumer_send_maturation","consumer_send_maturation","insufficient_shares","some_undels_expired_but_not_completed","send_vsc_without_downtime_ack","send_vsc_without_downtime_ack","insufficient_shares","insufficient_shares","consumer_update_val","consumer_update_val","more_than_one_third_val_power_change","complete_undel_immediate","set_unval_hold_false","complete_undel_immediate","complete_undel_immediate","send_vsc_without_downtime_ack","complete_unval_in_endblock","some_undels_expired_but_not_completed","consumer_del_val","consumer_add_val","some_undels_expired_but_not_completed","consumer_send_maturation","consumer_send_maturation","consumer_send_maturation","consumer_send_maturation","consumer_send_maturation","consumer_send_maturation","more_than_one_third_val_power_change","rebond_unval","some_undels_expired_but_not_completed","send_vsc_without_downtime_ack","insufficient_shares","some_undels_expired_but_not_completed","complete_undel_immediate","complete_undel_immediate","complete_undel_immediate","complete_undel_immediate","send_vsc_without_downtime_ack","some_undels_expired_but_not_completed","complete_undel_immediate","complete_undel_immediate","send_vsc_without_downtime_ack","consumer_send_maturation","consumer_add_val","consumer_del_val","consumer_update_val","send_vsc_without_downtime_ack","rebond_unval","send_vsc_without_downtime_ack","insufficient_shares","send_vsc_without_downtime_ack","insufficient_shares","some_undels_expired_but_not_completed","rebond_unval","some_undels_expired_but_not_completed","complete_undel_immediate","send_vsc_without_downtime_ack"]},{"meta":{"commit":"7ffd0c04e4205cbc9caf212abfe6c59ee43153bf"},"constants":{"P":"provider","C":"consumer","UNBONDING_SECONDS_P":70,"UNBONDING_SECONDS_C":50,"TRUSTING_SECONDS":49,"NUM_VALIDATORS":4,"MAX_VALIDATORS":2,"SLASH_DOUBLESIGN":0,"SLASH_DOWNTIME":0,"JAIL_SECONDS":999999999999999,"BLOCK_SECONDS":6,"INITIAL_DELEGATOR_TOKENS":10000000000000,"DELEGATE_AMT_MIN":1000,"DELEGATE_AMT_MAX":5000,"UNDELEGATE_AMT_MIN":1000,"UNDELEGATE_AMT_MAX":5000,"ISDOWNTIME_PROBABILITY":0.5,"MAX_NUM_PACKETS_FOR_DELIVER":6},"actions":[{"ix":0,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":2,"t":12,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":1,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":3,"t":18,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":2,"action":{"kind":"Deliver","chain":"provider","numPackets":5},"partialState":{"h":1,"t":6,"tokens":[5000,4000,3000,2000],"delegation":[4000,3000,2000,1000],"delegatorTokens":10000000000000,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":3,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":4,"action":{"kind":"Undelegate","val":1,"amt":4988},"partialState":{"h":1,"t":6,"tokens":[5000,4000,3000,2000],"delegation":[4000,3000,2000,1000],"delegatorTokens":10000000000000}},{"ix":5,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":6,"action":{"kind":"Deliver","chain":"consumer","numPackets":5},"partialState":{"h":3,"t":18,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":7,"action":{"kind":"ConsumerSlash","val":3,"infractionHeight":0,"isDowntime":true},"partialState":{"h":3,"t":18,"outstandingDowntime":[false,false,false,true]}},{"ix":8,"action":{"kind":"Undelegate","val":0,"amt":4996},"partialState":{"h":1,"t":6,"tokens":[5000,4000,3000,2000],"delegation":[4000,3000,2000,1000],"delegatorTokens":10000000000000}},{"ix":9,"action":{"kind":"Undelegate","val":0,"amt":3516},"partialState":{"h":1,"t":6,"tokens":[1484,4000,3000,2000],"delegation":[484,3000,2000,1000],"delegatorTokens":10000000000000}},{"ix":10,"action":{"kind":"Delegate","val":2,"amt":4999},"partialState":{"h":1,"t":6,"tokens":[1484,4000,7999,2000],"delegation":[484,3000,6999,1000],"delegatorTokens":9999999995001}},{"ix":11,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":12,"action":{"kind":"ConsumerSlash","val":0,"infractionHeight":0,"isDowntime":true},"partialState":{"h":3,"t":18,"outstandingDowntime":[true,false,false,true]}},{"ix":13,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":2,"t":12,"tokens":[1484,4000,7999,2000],"delegation":[484,3000,6999,1000],"delegatorTokens":9999999995001,"jailed":[null,null,null,null],"status":["unbonding","bonded","bonded","unbonded"]}},{"ix":14,"action":{"kind":"Undelegate","val":2,"amt":2054},"partialState":{"h":2,"t":12,"tokens":[1484,4000,5945,2000],"delegation":[484,3000,4945,1000],"delegatorTokens":9999999995001}},{"ix":15,"action":{"kind":"Undelegate","val":3,"amt":3264},"partialState":{"h":2,"t":12,"tokens":[1484,4000,5945,2000],"delegation":[484,3000,4945,1000],"delegatorTokens":9999999995001}},{"ix":16,"action":{"kind":"Undelegate","val":3,"amt":4008},"partialState":{"h":2,"t":12,"tokens":[1484,4000,5945,2000],"delegation":[484,3000,4945,1000],"delegatorTokens":9999999995001}},{"ix":17,"action":{"kind":"Undelegate","val":2,"amt":3329},"partialState":{"h":2,"t":12,"tokens":[1484,4000,2616,2000],"delegation":[484,3000,1616,1000],"delegatorTokens":9999999995001}},{"ix":18,"action":{"kind":"ConsumerSlash","val":1,"infractionHeight":2,"isDowntime":false},"partialState":{"h":3,"t":18,"outstandingDowntime":[true,false,false,true]}},{"ix":19,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":20,"action":{"kind":"Deliver","chain":"consumer","numPackets":3},"partialState":{"h":3,"t":18,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[true,false,false,true]}},{"ix":21,"action":{"kind":"Delegate","val":2,"amt":1129},"partialState":{"h":2,"t":12,"tokens":[1484,4000,3745,2000],"delegation":[484,3000,2745,1000],"delegatorTokens":9999999993872}},{"ix":22,"action":{"kind":"Undelegate","val":3,"amt":4614},"partialState":{"h":2,"t":12,"tokens":[1484,4000,3745,2000],"delegation":[484,3000,2745,1000],"delegatorTokens":9999999993872}},{"ix":23,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":24,"action":{"kind":"Delegate","val":0,"amt":3845},"partialState":{"h":2,"t":12,"tokens":[5329,4000,3745,2000],"delegation":[4329,3000,2745,1000],"delegatorTokens":9999999990027}},{"ix":25,"action":{"kind":"Undelegate","val":3,"amt":2451},"partialState":{"h":2,"t":12,"tokens":[5329,4000,3745,2000],"delegation":[4329,3000,2745,1000],"delegatorTokens":9999999990027}},{"ix":26,"action":{"kind":"Delegate","val":2,"amt":4153},"partialState":{"h":2,"t":12,"tokens":[5329,4000,7898,2000],"delegation":[4329,3000,6898,1000],"delegatorTokens":9999999985874}},{"ix":27,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":3,"t":18,"tokens":[5329,4000,7898,2000],"delegation":[4329,3000,6898,1000],"delegatorTokens":9999999985874,"jailed":[null,null,null,null],"status":["bonded","unbonding","bonded","unbonded"]}},{"ix":28,"action":{"kind":"Deliver","chain":"provider","numPackets":5},"partialState":{"h":3,"t":18,"tokens":[5329,4000,7898,2000],"delegation":[4329,3000,6898,1000],"delegatorTokens":9999999985874,"jailed":[null,null,null,null],"status":["bonded","unbonding","bonded","unbonded"]}},{"ix":29,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":4,"t":24,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[true,false,false,true]}},{"ix":30,"action":{"kind":"Undelegate","val":1,"amt":1723},"partialState":{"h":3,"t":18,"tokens":[5329,2277,7898,2000],"delegation":[4329,1277,6898,1000],"delegatorTokens":9999999985874}},{"ix":31,"action":{"kind":"Deliver","chain":"provider","numPackets":6},"partialState":{"h":3,"t":18,"tokens":[5329,2277,7898,2000],"delegation":[4329,1277,6898,1000],"delegatorTokens":9999999985874,"jailed":[null,null,null,null],"status":["bonded","unbonding","bonded","unbonded"]}},{"ix":32,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":33,"action":{"kind":"Deliver","chain":"provider","numPackets":4},"partialState":{"h":3,"t":18,"tokens":[5329,2277,7898,2000],"delegation":[4329,1277,6898,1000],"delegatorTokens":9999999985874,"jailed":[null,null,null,null],"status":["bonded","unbonding","bonded","unbonded"]}},{"ix":34,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":5,"t":30,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[true,false,false,true]}},{"ix":35,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":4,"t":24,"tokens":[5329,2277,7898,2000],"delegation":[4329,1277,6898,1000],"delegatorTokens":9999999985874,"jailed":[null,null,null,null],"status":["bonded","unbonding","bonded","unbonded"]}},{"ix":36,"action":{"kind":"Deliver","chain":"provider","numPackets":5},"partialState":{"h":4,"t":24,"tokens":[5329,2277,7898,2000],"delegation":[4329,1277,6898,1000],"delegatorTokens":9999999985874,"jailed":[null,null,null,null],"status":["bonded","unbonding","bonded","unbonded"]}},{"ix":37,"action":{"kind":"Deliver","chain":"consumer","numPackets":6},"partialState":{"h":5,"t":30,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[true,false,false,true]}},{"ix":38,"action":{"kind":"Delegate","val":3,"amt":4354},"partialState":{"h":4,"t":24,"tokens":[5329,2277,7898,6354],"delegation":[4329,1277,6898,5354],"delegatorTokens":9999999981520}},{"ix":39,"action":{"kind":"Deliver","chain":"consumer","numPackets":6},"partialState":{"h":5,"t":30,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[true,false,false,true]}},{"ix":40,"action":{"kind":"Delegate","val":0,"amt":4882},"partialState":{"h":4,"t":24,"tokens":[10211,2277,7898,6354],"delegation":[9211,1277,6898,5354],"delegatorTokens":9999999976638}},{"ix":41,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":5,"t":30,"tokens":[10211,2277,7898,6354],"delegation":[9211,1277,6898,5354],"delegatorTokens":9999999976638,"jailed":[1000000000000023,null,null,null],"status":["bonded","unbonding","bonded","unbonded"]}},{"ix":42,"action":{"kind":"Undelegate","val":2,"amt":1609},"partialState":{"h":5,"t":30,"tokens":[10211,2277,6289,6354],"delegation":[9211,1277,5289,5354],"delegatorTokens":9999999976638}},{"ix":43,"action":{"kind":"Deliver","chain":"provider","numPackets":4},"partialState":{"h":5,"t":30,"tokens":[10211,2277,6289,6354],"delegation":[9211,1277,5289,5354],"delegatorTokens":9999999976638,"jailed":[1000000000000023,null,null,null],"status":["bonded","unbonding","bonded","unbonded"]}},{"ix":44,"action":{"kind":"Delegate","val":3,"amt":1471},"partialState":{"h":5,"t":30,"tokens":[10211,2277,6289,7825],"delegation":[9211,1277,5289,6825],"delegatorTokens":9999999975167}},{"ix":45,"action":{"kind":"Undelegate","val":0,"amt":2418},"partialState":{"h":5,"t":30,"tokens":[7793,2277,6289,7825],"delegation":[6793,1277,5289,6825],"delegatorTokens":9999999975167}},{"ix":46,"action":{"kind":"Deliver","chain":"consumer","numPackets":6},"partialState":{"h":5,"t":30,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[true,false,false,true]}},{"ix":47,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":6,"t":36,"consumerPower":[5329,null,7898,null],"outstandingDowntime":[true,false,false,true]}},{"ix":48,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":49,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":6,"t":36,"tokens":[7793,2277,6289,7825],"delegation":[6793,1277,5289,6825],"delegatorTokens":9999999975167,"jailed":[1000000000000023,null,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":50,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":51,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":52,"action":{"kind":"Deliver","chain":"provider","numPackets":6},"partialState":{"h":6,"t":36,"tokens":[7793,2277,6289,7825],"delegation":[6793,1277,5289,6825],"delegatorTokens":9999999975167,"jailed":[1000000000000023,null,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":53,"action":{"kind":"Undelegate","val":2,"amt":2651},"partialState":{"h":6,"t":36,"tokens":[7793,2277,3638,7825],"delegation":[6793,1277,2638,6825],"delegatorTokens":9999999975167}},{"ix":54,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":55,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":7,"t":42,"tokens":[7793,2277,3638,7825],"delegation":[6793,1277,2638,6825],"delegatorTokens":9999999975167,"jailed":[1000000000000023,null,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":56,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":8,"t":48,"tokens":[7793,2277,3638,7825],"delegation":[6793,1277,2638,6825],"delegatorTokens":9999999975167,"jailed":[1000000000000023,null,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":57,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":7,"t":42,"consumerPower":[5329,null,7898,null],"outstandingDowntime":[true,false,false,true]}},{"ix":58,"action":{"kind":"Delegate","val":1,"amt":3120},"partialState":{"h":8,"t":48,"tokens":[7793,5397,3638,7825],"delegation":[6793,4397,2638,6825],"delegatorTokens":9999999972047}},{"ix":59,"action":{"kind":"Deliver","chain":"consumer","numPackets":5},"partialState":{"h":7,"t":42,"consumerPower":[5329,null,7898,null],"outstandingDowntime":[false,false,false,true]}},{"ix":60,"action":{"kind":"Delegate","val":2,"amt":1099},"partialState":{"h":8,"t":48,"tokens":[7793,5397,4737,7825],"delegation":[6793,4397,3737,6825],"delegatorTokens":9999999970948}},{"ix":61,"action":{"kind":"Undelegate","val":3,"amt":4738},"partialState":{"h":8,"t":48,"tokens":[7793,5397,4737,3087],"delegation":[6793,4397,3737,2087],"delegatorTokens":9999999970948}},{"ix":62,"action":{"kind":"Delegate","val":2,"amt":2932},"partialState":{"h":8,"t":48,"tokens":[7793,5397,7669,3087],"delegation":[6793,4397,6669,2087],"delegatorTokens":9999999968016}},{"ix":63,"action":{"kind":"Delegate","val":2,"amt":3803},"partialState":{"h":8,"t":48,"tokens":[7793,5397,11472,3087],"delegation":[6793,4397,10472,2087],"delegatorTokens":9999999964213}},{"ix":64,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":65,"action":{"kind":"Deliver","chain":"consumer","numPackets":5},"partialState":{"h":7,"t":42,"consumerPower":[5329,null,7898,null],"outstandingDowntime":[false,false,false,true]}},{"ix":66,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":9,"t":54,"tokens":[7793,5397,11472,3087],"delegation":[6793,4397,10472,2087],"delegatorTokens":9999999964213,"jailed":[1000000000000023,null,null,null],"status":["unbonding","bonded","bonded","unbonding"]}},{"ix":67,"action":{"kind":"Undelegate","val":2,"amt":3071},"partialState":{"h":9,"t":54,"tokens":[7793,5397,8401,3087],"delegation":[6793,4397,7401,2087],"delegatorTokens":9999999964213}},{"ix":68,"action":{"kind":"Deliver","chain":"provider","numPackets":6},"partialState":{"h":9,"t":54,"tokens":[7793,5397,8401,3087],"delegation":[6793,4397,7401,2087],"delegatorTokens":9999999964213,"jailed":[1000000000000023,null,null,null],"status":["unbonding","bonded","bonded","unbonding"]}},{"ix":69,"action":{"kind":"Undelegate","val":0,"amt":1097},"partialState":{"h":9,"t":54,"tokens":[6696,5397,8401,3087],"delegation":[5696,4397,7401,2087],"delegatorTokens":9999999964213}},{"ix":70,"action":{"kind":"Undelegate","val":0,"amt":4863},"partialState":{"h":9,"t":54,"tokens":[1833,5397,8401,3087],"delegation":[833,4397,7401,2087],"delegatorTokens":9999999964213}},{"ix":71,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":72,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":8,"t":48,"consumerPower":[null,null,3638,7825],"outstandingDowntime":[false,false,false,true]}},{"ix":73,"action":{"kind":"Deliver","chain":"consumer","numPackets":2},"partialState":{"h":8,"t":48,"consumerPower":[null,null,3638,7825],"outstandingDowntime":[false,false,false,true]}},{"ix":74,"action":{"kind":"Deliver","chain":"provider","numPackets":1},"partialState":{"h":9,"t":54,"tokens":[1833,5397,8401,3087],"delegation":[833,4397,7401,2087],"delegatorTokens":9999999964213,"jailed":[1000000000000023,null,null,null],"status":["unbonding","bonded","bonded","unbonding"]}},{"ix":75,"action":{"kind":"Undelegate","val":1,"amt":3772},"partialState":{"h":9,"t":54,"tokens":[1833,1625,8401,3087],"delegation":[833,625,7401,2087],"delegatorTokens":9999999964213}},{"ix":76,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":9,"t":54,"consumerPower":[null,null,3638,7825],"outstandingDowntime":[false,false,false,true]}},{"ix":77,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":78,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":79,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":10,"t":60,"consumerPower":[null,null,3638,7825],"outstandingDowntime":[false,false,false,true]}},{"ix":80,"action":{"kind":"Deliver","chain":"consumer","numPackets":5},"partialState":{"h":10,"t":60,"consumerPower":[null,null,3638,7825],"outstandingDowntime":[false,false,false,true]}},{"ix":81,"action":{"kind":"Undelegate","val":3,"amt":4113},"partialState":{"h":9,"t":54,"tokens":[1833,1625,8401,3087],"delegation":[833,625,7401,2087],"delegatorTokens":9999999964213}},{"ix":82,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":83,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":10,"t":60,"tokens":[1833,1625,8401,3087],"delegation":[833,625,7401,2087],"delegatorTokens":9999999964213,"jailed":[1000000000000023,null,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":84,"action":{"kind":"Undelegate","val":3,"amt":2093},"partialState":{"h":10,"t":60,"tokens":[1833,1625,8401,3087],"delegation":[833,625,7401,2087],"delegatorTokens":9999999964213}},{"ix":85,"action":{"kind":"Deliver","chain":"consumer","numPackets":3},"partialState":{"h":10,"t":60,"consumerPower":[null,null,3638,7825],"outstandingDowntime":[false,false,false,true]}},{"ix":86,"action":{"kind":"Deliver","chain":"consumer","numPackets":2},"partialState":{"h":10,"t":60,"consumerPower":[null,null,3638,7825],"outstandingDowntime":[false,false,false,true]}},{"ix":87,"action":{"kind":"Delegate","val":0,"amt":3737},"partialState":{"h":10,"t":60,"tokens":[5570,1625,8401,3087],"delegation":[4570,625,7401,2087],"delegatorTokens":9999999960476}},{"ix":88,"action":{"kind":"Delegate","val":0,"amt":4733},"partialState":{"h":10,"t":60,"tokens":[10303,1625,8401,3087],"delegation":[9303,625,7401,2087],"delegatorTokens":9999999955743}},{"ix":89,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":90,"action":{"kind":"Delegate","val":1,"amt":3665},"partialState":{"h":10,"t":60,"tokens":[10303,5290,8401,3087],"delegation":[9303,4290,7401,2087],"delegatorTokens":9999999952078}},{"ix":91,"action":{"kind":"Undelegate","val":3,"amt":4201},"partialState":{"h":10,"t":60,"tokens":[10303,5290,8401,3087],"delegation":[9303,4290,7401,2087],"delegatorTokens":9999999952078}},{"ix":92,"action":{"kind":"Deliver","chain":"consumer","numPackets":5},"partialState":{"h":10,"t":60,"consumerPower":[null,null,3638,7825],"outstandingDowntime":[false,false,false,true]}},{"ix":93,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":11,"t":66,"consumerPower":[null,5397,11472,null],"outstandingDowntime":[false,false,false,true]}},{"ix":94,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":95,"action":{"kind":"Deliver","chain":"provider","numPackets":2},"partialState":{"h":10,"t":60,"tokens":[10303,5290,8401,3087],"delegation":[9303,4290,7401,2087],"delegatorTokens":9999999952078,"jailed":[1000000000000023,null,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":96,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":97,"action":{"kind":"Undelegate","val":0,"amt":4847},"partialState":{"h":10,"t":60,"tokens":[5456,5290,8401,3087],"delegation":[4456,4290,7401,2087],"delegatorTokens":9999999952078}},{"ix":98,"action":{"kind":"Undelegate","val":0,"amt":3047},"partialState":{"h":10,"t":60,"tokens":[2409,5290,8401,3087],"delegation":[1409,4290,7401,2087],"delegatorTokens":9999999952078}},{"ix":99,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":11,"t":66,"tokens":[2409,5290,8401,3087],"delegation":[1409,4290,7401,2087],"delegatorTokens":9999999952078,"jailed":[1000000000000023,null,null,null],"status":["unbonding","bonded","bonded","unbonding"]}},{"ix":100,"action":{"kind":"Deliver","chain":"consumer","numPackets":6},"partialState":{"h":11,"t":66,"consumerPower":[null,5397,11472,null],"outstandingDowntime":[false,false,false,true]}},{"ix":101,"action":{"kind":"Undelegate","val":1,"amt":2340},"partialState":{"h":11,"t":66,"tokens":[2409,2950,8401,3087],"delegation":[1409,1950,7401,2087],"delegatorTokens":9999999952078}},{"ix":102,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":103,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":12,"t":72,"consumerPower":[null,null,8401,3087],"outstandingDowntime":[false,false,false,true]}},{"ix":104,"action":{"kind":"Undelegate","val":0,"amt":2668},"partialState":{"h":11,"t":66,"tokens":[2409,2950,8401,3087],"delegation":[1409,1950,7401,2087],"delegatorTokens":9999999952078}},{"ix":105,"action":{"kind":"Delegate","val":3,"amt":1902},"partialState":{"h":11,"t":66,"tokens":[2409,2950,8401,4989],"delegation":[1409,1950,7401,3989],"delegatorTokens":9999999950176}},{"ix":106,"action":{"kind":"Undelegate","val":2,"amt":4295},"partialState":{"h":11,"t":66,"tokens":[2409,2950,4106,4989],"delegation":[1409,1950,3106,3989],"delegatorTokens":9999999950176}},{"ix":107,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":12,"t":72,"tokens":[2409,2950,4106,4989],"delegation":[1409,1950,3106,3989],"delegatorTokens":9999999950176,"jailed":[1000000000000023,null,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":108,"action":{"kind":"Deliver","chain":"provider","numPackets":3},"partialState":{"h":12,"t":72,"tokens":[2409,2950,4106,4989],"delegation":[1409,1950,3106,3989],"delegatorTokens":9999999950176,"jailed":[1000000000000023,null,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":109,"action":{"kind":"Delegate","val":0,"amt":1858},"partialState":{"h":12,"t":72,"tokens":[4267,2950,4106,4989],"delegation":[3267,1950,3106,3989],"delegatorTokens":9999999948318}},{"ix":110,"action":{"kind":"Undelegate","val":1,"amt":1247},"partialState":{"h":12,"t":72,"tokens":[4267,1703,4106,4989],"delegation":[3267,703,3106,3989],"delegatorTokens":9999999948318}},{"ix":111,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":13,"t":78,"tokens":[4267,1703,4106,4989],"delegation":[3267,703,3106,3989],"delegatorTokens":9999999948318,"jailed":[1000000000000023,null,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":112,"action":{"kind":"Delegate","val":1,"amt":1253},"partialState":{"h":13,"t":78,"tokens":[4267,2956,4106,4989],"delegation":[3267,1956,3106,3989],"delegatorTokens":9999999947065}},{"ix":113,"action":{"kind":"Delegate","val":2,"amt":3320},"partialState":{"h":13,"t":78,"tokens":[4267,2956,7426,4989],"delegation":[3267,1956,6426,3989],"delegatorTokens":9999999943745}},{"ix":114,"action":{"kind":"Deliver","chain":"consumer","numPackets":1},"partialState":{"h":12,"t":72,"consumerPower":[null,null,8401,3087],"outstandingDowntime":[false,false,false,true]}},{"ix":115,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":116,"action":{"kind":"Undelegate","val":3,"amt":1714},"partialState":{"h":13,"t":78,"tokens":[4267,2956,7426,3275],"delegation":[3267,1956,6426,2275],"delegatorTokens":9999999943745}},{"ix":117,"action":{"kind":"Undelegate","val":1,"amt":1395},"partialState":{"h":13,"t":78,"tokens":[4267,1561,7426,3275],"delegation":[3267,561,6426,2275],"delegatorTokens":9999999943745}},{"ix":118,"action":{"kind":"Deliver","chain":"provider","numPackets":3},"partialState":{"h":13,"t":78,"tokens":[4267,1561,7426,3275],"delegation":[3267,561,6426,2275],"delegatorTokens":9999999943745,"jailed":[1000000000000023,null,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":119,"action":{"kind":"Deliver","chain":"provider","numPackets":4},"partialState":{"h":13,"t":78,"tokens":[4267,1561,7426,3275],"delegation":[3267,561,6426,2275],"delegatorTokens":9999999943745,"jailed":[1000000000000023,null,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":120,"action":{"kind":"Deliver","chain":"consumer","numPackets":4},"partialState":{"h":12,"t":72,"consumerPower":[null,null,8401,3087],"outstandingDowntime":[false,false,false,true]}},{"ix":121,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":13,"t":78,"consumerPower":[null,null,4106,4989],"outstandingDowntime":[false,false,false,true]}},{"ix":122,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":123,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":14,"t":84,"tokens":[4267,1561,7426,3275],"delegation":[3267,561,6426,2275],"delegatorTokens":9999999943745,"jailed":[1000000000000023,null,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":124,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":125,"action":{"kind":"Delegate","val":1,"amt":4619},"partialState":{"h":14,"t":84,"tokens":[4267,6180,7426,3275],"delegation":[3267,5180,6426,2275],"delegatorTokens":9999999939126}},{"ix":126,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":14,"t":84,"consumerPower":[null,null,4106,4989],"outstandingDowntime":[false,false,false,true]}},{"ix":127,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":128,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":15,"t":90,"tokens":[4267,6180,7426,3275],"delegation":[3267,5180,6426,2275],"delegatorTokens":9999999939126,"jailed":[1000000000000023,null,null,null],"status":["unbonding","bonded","bonded","unbonding"]}},{"ix":129,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":16,"t":96,"tokens":[4267,6180,7426,3275],"delegation":[3267,5180,6426,2275],"delegatorTokens":9999999939126,"jailed":[1000000000000023,null,null,null],"status":["unbonding","bonded","bonded","unbonding"]}},{"ix":130,"action":{"kind":"Delegate","val":0,"amt":1238},"partialState":{"h":16,"t":96,"tokens":[5505,6180,7426,3275],"delegation":[4505,5180,6426,2275],"delegatorTokens":9999999937888}},{"ix":131,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":132,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":133,"action":{"kind":"Delegate","val":0,"amt":3106},"partialState":{"h":16,"t":96,"tokens":[8611,6180,7426,3275],"delegation":[7611,5180,6426,2275],"delegatorTokens":9999999934782}},{"ix":134,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":135,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":15,"t":90,"consumerPower":[null,null,4106,4989],"outstandingDowntime":[false,false,false,true]}},{"ix":136,"action":{"kind":"Delegate","val":1,"amt":1581},"partialState":{"h":16,"t":96,"tokens":[8611,7761,7426,3275],"delegation":[7611,6761,6426,2275],"delegatorTokens":9999999933201}},{"ix":137,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":16,"t":96,"consumerPower":[null,null,4106,4989],"outstandingDowntime":[false,false,false,true]}},{"ix":138,"action":{"kind":"Undelegate","val":0,"amt":4427},"partialState":{"h":16,"t":96,"tokens":[4184,7761,7426,3275],"delegation":[3184,6761,6426,2275],"delegatorTokens":9999999933201}},{"ix":139,"action":{"kind":"Undelegate","val":1,"amt":4260},"partialState":{"h":16,"t":96,"tokens":[4184,3501,7426,3275],"delegation":[3184,2501,6426,2275],"delegatorTokens":9999999933201}},{"ix":140,"action":{"kind":"Undelegate","val":2,"amt":4606},"partialState":{"h":16,"t":96,"tokens":[4184,3501,2820,3275],"delegation":[3184,2501,1820,2275],"delegatorTokens":9999999933201}},{"ix":141,"action":{"kind":"Delegate","val":2,"amt":3047},"partialState":{"h":16,"t":96,"tokens":[4184,3501,5867,3275],"delegation":[3184,2501,4867,2275],"delegatorTokens":9999999930154}},{"ix":142,"action":{"kind":"Delegate","val":0,"amt":2025},"partialState":{"h":16,"t":96,"tokens":[6209,3501,5867,3275],"delegation":[5209,2501,4867,2275],"delegatorTokens":9999999928129}},{"ix":143,"action":{"kind":"Deliver","chain":"consumer","numPackets":2},"partialState":{"h":16,"t":96,"consumerPower":[null,null,4106,4989],"outstandingDowntime":[false,false,false,true]}},{"ix":144,"action":{"kind":"Undelegate","val":1,"amt":1717},"partialState":{"h":16,"t":96,"tokens":[6209,1784,5867,3275],"delegation":[5209,784,4867,2275],"delegatorTokens":9999999928129}},{"ix":145,"action":{"kind":"Delegate","val":1,"amt":3656},"partialState":{"h":16,"t":96,"tokens":[6209,5440,5867,3275],"delegation":[5209,4440,4867,2275],"delegatorTokens":9999999924473}},{"ix":146,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":17,"t":102,"tokens":[6209,5440,5867,3275],"delegation":[5209,4440,4867,2275],"delegatorTokens":9999999924473,"jailed":[1000000000000023,null,null,null],"status":["unbonding","bonded","bonded","unbonding"]}},{"ix":147,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":17,"t":102,"consumerPower":[null,null,7426,3275],"outstandingDowntime":[false,false,false,true]}},{"ix":148,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":18,"t":108,"consumerPower":[null,null,7426,3275],"outstandingDowntime":[false,false,false,true]}},{"ix":149,"action":{"kind":"Delegate","val":2,"amt":2160},"partialState":{"h":17,"t":102,"tokens":[6209,5440,8027,3275],"delegation":[5209,4440,7027,2275],"delegatorTokens":9999999922313}},{"ix":150,"action":{"kind":"Undelegate","val":1,"amt":3274},"partialState":{"h":17,"t":102,"tokens":[6209,2166,8027,3275],"delegation":[5209,1166,7027,2275],"delegatorTokens":9999999922313}},{"ix":151,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":152,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":19,"t":114,"consumerPower":[null,null,7426,3275],"outstandingDowntime":[false,false,false,true]}},{"ix":153,"action":{"kind":"Undelegate","val":2,"amt":4839},"partialState":{"h":17,"t":102,"tokens":[6209,2166,3188,3275],"delegation":[5209,1166,2188,2275],"delegatorTokens":9999999922313}},{"ix":154,"action":{"kind":"Delegate","val":3,"amt":4269},"partialState":{"h":17,"t":102,"tokens":[6209,2166,3188,7544],"delegation":[5209,1166,2188,6544],"delegatorTokens":9999999918044}},{"ix":155,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":18,"t":108,"tokens":[6209,2166,3188,7544],"delegation":[5209,1166,2188,6544],"delegatorTokens":9999999918044,"jailed":[1000000000000023,null,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":156,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":157,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":158,"action":{"kind":"Delegate","val":3,"amt":2932},"partialState":{"h":18,"t":108,"tokens":[6209,2166,3188,10476],"delegation":[5209,1166,2188,9476],"delegatorTokens":9999999915112}},{"ix":159,"action":{"kind":"Undelegate","val":0,"amt":3586},"partialState":{"h":18,"t":108,"tokens":[2623,2166,3188,10476],"delegation":[1623,1166,2188,9476],"delegatorTokens":9999999915112}},{"ix":160,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":19,"t":114,"tokens":[2623,2166,3188,10476],"delegation":[1623,1166,2188,9476],"delegatorTokens":9999999915112,"jailed":[1000000000000023,null,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":161,"action":{"kind":"Undelegate","val":3,"amt":2410},"partialState":{"h":19,"t":114,"tokens":[2623,2166,3188,8066],"delegation":[1623,1166,2188,7066],"delegatorTokens":9999999915112}},{"ix":162,"action":{"kind":"Deliver","chain":"provider","numPackets":2},"partialState":{"h":19,"t":114,"tokens":[2623,2166,3188,8066],"delegation":[1623,1166,2188,7066],"delegatorTokens":9999999915112,"jailed":[1000000000000023,null,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":163,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":20,"t":120,"consumerPower":[null,null,7426,3275],"outstandingDowntime":[false,false,false,true]}},{"ix":164,"action":{"kind":"Undelegate","val":0,"amt":4996},"partialState":{"h":19,"t":114,"tokens":[2623,2166,3188,8066],"delegation":[1623,1166,2188,7066],"delegatorTokens":9999999915112}},{"ix":165,"action":{"kind":"Delegate","val":2,"amt":2160},"partialState":{"h":19,"t":114,"tokens":[2623,2166,5348,8066],"delegation":[1623,1166,4348,7066],"delegatorTokens":9999999912952}},{"ix":166,"action":{"kind":"Delegate","val":0,"amt":4491},"partialState":{"h":19,"t":114,"tokens":[7114,2166,5348,8066],"delegation":[6114,1166,4348,7066],"delegatorTokens":9999999908461}},{"ix":167,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":168,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":21,"t":126,"consumerPower":[null,null,7426,3275],"outstandingDowntime":[false,false,false,true]}},{"ix":169,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":22,"t":132,"consumerPower":[null,null,7426,3275],"outstandingDowntime":[false,false,false,true]}},{"ix":170,"action":{"kind":"Deliver","chain":"provider","numPackets":4},"partialState":{"h":19,"t":114,"tokens":[7114,2166,5348,8066],"delegation":[6114,1166,4348,7066],"delegatorTokens":9999999908461,"jailed":[1000000000000023,null,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":171,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":20,"t":120,"tokens":[7114,2166,5348,8066],"delegation":[6114,1166,4348,7066],"delegatorTokens":9999999925761,"jailed":[1000000000000023,null,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":172,"action":{"kind":"Delegate","val":1,"amt":2868},"partialState":{"h":20,"t":120,"tokens":[7114,5034,5348,8066],"delegation":[6114,4034,4348,7066],"delegatorTokens":9999999922893}},{"ix":173,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":23,"t":138,"consumerPower":[null,null,7426,3275],"outstandingDowntime":[false,false,false,true]}},{"ix":174,"action":{"kind":"Undelegate","val":0,"amt":2126},"partialState":{"h":20,"t":120,"tokens":[4988,5034,5348,8066],"delegation":[3988,4034,4348,7066],"delegatorTokens":9999999922893}},{"ix":175,"action":{"kind":"Deliver","chain":"provider","numPackets":4},"partialState":{"h":20,"t":120,"tokens":[4988,5034,5348,8066],"delegation":[3988,4034,4348,7066],"delegatorTokens":9999999922893,"jailed":[1000000000000023,null,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":176,"action":{"kind":"Undelegate","val":3,"amt":2916},"partialState":{"h":20,"t":120,"tokens":[4988,5034,5348,5150],"delegation":[3988,4034,4348,4150],"delegatorTokens":9999999922893}},{"ix":177,"action":{"kind":"Undelegate","val":3,"amt":3675},"partialState":{"h":20,"t":120,"tokens":[4988,5034,5348,1475],"delegation":[3988,4034,4348,475],"delegatorTokens":9999999922893}},{"ix":178,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":179,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":21,"t":126,"tokens":[4988,5034,5348,1475],"delegation":[3988,4034,4348,475],"delegatorTokens":9999999927631,"jailed":[1000000000000023,null,null,null],"status":["unbonded","bonded","bonded","unbonding"]}},{"ix":180,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":22,"t":132,"tokens":[4988,5034,5348,1475],"delegation":[3988,4034,4348,475],"delegatorTokens":9999999940434,"jailed":[1000000000000023,null,null,null],"status":["unbonded","bonded","bonded","unbonding"]}},{"ix":181,"action":{"kind":"Deliver","chain":"consumer","numPackets":3},"partialState":{"h":23,"t":138,"consumerPower":[null,null,7426,3275],"outstandingDowntime":[false,false,false,true]}},{"ix":182,"action":{"kind":"Deliver","chain":"consumer","numPackets":5},"partialState":{"h":23,"t":138,"consumerPower":[null,null,7426,3275],"outstandingDowntime":[false,false,false,true]}},{"ix":183,"action":{"kind":"Undelegate","val":3,"amt":3110},"partialState":{"h":22,"t":132,"tokens":[4988,5034,5348,1475],"delegation":[3988,4034,4348,475],"delegatorTokens":9999999940434}},{"ix":184,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":185,"action":{"kind":"Undelegate","val":3,"amt":1212},"partialState":{"h":22,"t":132,"tokens":[4988,5034,5348,1475],"delegation":[3988,4034,4348,475],"delegatorTokens":9999999940434}},{"ix":186,"action":{"kind":"Undelegate","val":2,"amt":4554},"partialState":{"h":22,"t":132,"tokens":[4988,5034,5348,1475],"delegation":[3988,4034,4348,475],"delegatorTokens":9999999940434}},{"ix":187,"action":{"kind":"Undelegate","val":1,"amt":2526},"partialState":{"h":22,"t":132,"tokens":[4988,2508,5348,1475],"delegation":[3988,1508,4348,475],"delegatorTokens":9999999940434}},{"ix":188,"action":{"kind":"Undelegate","val":0,"amt":1112},"partialState":{"h":22,"t":132,"tokens":[3876,2508,5348,1475],"delegation":[2876,1508,4348,475],"delegatorTokens":9999999940434}},{"ix":189,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":24,"t":144,"consumerPower":[null,5034,5348,null],"outstandingDowntime":[false,false,false,true]}},{"ix":190,"action":{"kind":"Deliver","chain":"consumer","numPackets":3},"partialState":{"h":24,"t":144,"consumerPower":[null,5034,5348,null],"outstandingDowntime":[false,false,false,true]}},{"ix":191,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":23,"t":138,"tokens":[3876,2508,5348,1475],"delegation":[2876,1508,4348,475],"delegatorTokens":9999999948328,"jailed":[1000000000000023,null,null,null],"status":["unbonded","bonded","bonded","unbonding"]}},{"ix":192,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":193,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":24,"t":144,"tokens":[3876,2508,5348,1475],"delegation":[2876,1508,4348,475],"delegatorTokens":9999999954963,"jailed":[1000000000000023,null,null,null],"status":["unbonded","bonded","bonded","unbonding"]}},{"ix":194,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":195,"action":{"kind":"Deliver","chain":"provider","numPackets":2},"partialState":{"h":24,"t":144,"tokens":[3876,2508,5348,1475],"delegation":[2876,1508,4348,475],"delegatorTokens":9999999954963,"jailed":[1000000000000023,null,null,null],"status":["unbonded","bonded","bonded","unbonding"]}},{"ix":196,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":197,"action":{"kind":"Delegate","val":2,"amt":4108},"partialState":{"h":24,"t":144,"tokens":[3876,2508,9456,1475],"delegation":[2876,1508,8456,475],"delegatorTokens":9999999950855}},{"ix":198,"action":{"kind":"Undelegate","val":2,"amt":3957},"partialState":{"h":24,"t":144,"tokens":[3876,2508,5499,1475],"delegation":[2876,1508,4499,475],"delegatorTokens":9999999950855}},{"ix":199,"action":{"kind":"Undelegate","val":2,"amt":3979},"partialState":{"h":24,"t":144,"tokens":[3876,2508,1520,1475],"delegation":[2876,1508,520,475],"delegatorTokens":9999999950855}}],"events":["insufficient_shares","send_downtime_slash_request","insufficient_shares","send_downtime_slash_request","more_than_one_third_val_power_change","send_vsc_without_downtime_ack","insufficient_shares","insufficient_shares","send_double_sign_slash_request","insufficient_shares","insufficient_shares","more_than_one_third_val_power_change","rebond_unval","send_vsc_without_downtime_ack","send_vsc_not_because_change","send_vsc_without_downtime_ack","receive_double_sign_slash_request","receive_slash_request_unbonded","receive_downtime_slash_request","jail","send_vsc_with_downtime_ack","consumer_update_val","consumer_add_val","consumer_del_val","more_than_one_third_val_power_change","send_vsc_without_downtime_ack","send_vsc_without_downtime_ack","receive_downtime_slash_ack","rebond_unval","send_vsc_without_downtime_ack","consumer_del_val","consumer_update_val","consumer_add_val","insufficient_shares","rebond_unval","send_vsc_without_downtime_ack","insufficient_shares","insufficient_shares","consumer_add_val","consumer_update_val","consumer_del_val","more_than_one_third_val_power_change","rebond_unval","send_vsc_without_downtime_ack","consumer_del_val","consumer_update_val","consumer_add_val","insufficient_shares","more_than_one_third_val_power_change","rebond_unval","send_vsc_without_downtime_ack","send_vsc_not_because_change","send_vsc_without_downtime_ack","consumer_del_val","consumer_update_val","consumer_update_val","some_undels_expired_but_not_completed","send_vsc_without_downtime_ack","more_than_one_third_val_power_change","rebond_unval","some_undels_expired_but_not_completed","send_vsc_without_downtime_ack","some_undels_expired_but_not_completed","consumer_send_maturation","consumer_send_maturation","consumer_send_maturation","send_vsc_without_downtime_ack","consumer_send_maturation","consumer_send_maturation","consumer_send_maturation","consumer_update_val","consumer_update_val","more_than_one_third_val_power_change","rebond_unval","some_undels_expired_but_not_completed","send_vsc_without_downtime_ack","some_undels_expired_but_not_completed","send_vsc_without_downtime_ack","consumer_send_maturation","insufficient_shares","consumer_send_maturation","consumer_send_maturation","consumer_send_maturation","complete_undel_immediate","complete_undel_immediate","complete_undel_immediate","complete_undel_immediate","complete_undel_immediate","complete_undel_immediate","set_unval_hold_false","complete_undel_immediate","send_vsc_without_downtime_ack","more_than_one_third_val_power_change","rebond_unval","complete_unval_in_endblock","some_undels_expired_but_not_completed","complete_undel_immediate","set_undel_hold_false","set_undel_hold_false","set_undel_hold_false","set_undel_hold_false","set_undel_hold_false","set_undel_hold_false","set_undel_hold_false","set_undel_hold_false","send_vsc_without_downtime_ack","complete_undel_in_endblock","insufficient_shares","insufficient_shares","insufficient_shares","consumer_add_val","consumer_del_val","consumer_update_val","complete_undel_in_endblock","send_vsc_without_downtime_ack","complete_undel_in_endblock"]},{"meta":{"commit":"7ffd0c04e4205cbc9caf212abfe6c59ee43153bf"},"constants":{"P":"provider","C":"consumer","UNBONDING_SECONDS_P":70,"UNBONDING_SECONDS_C":50,"TRUSTING_SECONDS":49,"NUM_VALIDATORS":4,"MAX_VALIDATORS":2,"SLASH_DOUBLESIGN":0,"SLASH_DOWNTIME":0,"JAIL_SECONDS":999999999999999,"BLOCK_SECONDS":6,"INITIAL_DELEGATOR_TOKENS":10000000000000,"DELEGATE_AMT_MIN":1000,"DELEGATE_AMT_MAX":5000,"UNDELEGATE_AMT_MIN":1000,"UNDELEGATE_AMT_MAX":5000,"ISDOWNTIME_PROBABILITY":0.5,"MAX_NUM_PACKETS_FOR_DELIVER":6},"actions":[{"ix":0,"action":{"kind":"Delegate","val":1,"amt":4918},"partialState":{"h":1,"t":6,"tokens":[5000,8918,3000,2000],"delegation":[4000,7918,2000,1000],"delegatorTokens":9999999995082}},{"ix":1,"action":{"kind":"Delegate","val":0,"amt":4403},"partialState":{"h":1,"t":6,"tokens":[9403,8918,3000,2000],"delegation":[8403,7918,2000,1000],"delegatorTokens":9999999990679}},{"ix":2,"action":{"kind":"Deliver","chain":"provider","numPackets":1},"partialState":{"h":1,"t":6,"tokens":[9403,8918,3000,2000],"delegation":[8403,7918,2000,1000],"delegatorTokens":9999999990679,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":3,"action":{"kind":"ConsumerSlash","val":2,"infractionHeight":0,"isDowntime":true},"partialState":{"h":1,"t":6,"outstandingDowntime":[false,false,true,false]}},{"ix":4,"action":{"kind":"Deliver","chain":"consumer","numPackets":2},"partialState":{"h":1,"t":6,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,false,true,false]}},{"ix":5,"action":{"kind":"ConsumerSlash","val":2,"infractionHeight":0,"isDowntime":false},"partialState":{"h":1,"t":6,"outstandingDowntime":[false,false,true,false]}},{"ix":6,"action":{"kind":"ConsumerSlash","val":3,"infractionHeight":0,"isDowntime":true},"partialState":{"h":1,"t":6,"outstandingDowntime":[false,false,true,true]}},{"ix":7,"action":{"kind":"Undelegate","val":3,"amt":4338},"partialState":{"h":1,"t":6,"tokens":[9403,8918,3000,2000],"delegation":[8403,7918,2000,1000],"delegatorTokens":9999999990679}},{"ix":8,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":9,"action":{"kind":"Delegate","val":0,"amt":2771},"partialState":{"h":1,"t":6,"tokens":[12174,8918,3000,2000],"delegation":[11174,7918,2000,1000],"delegatorTokens":9999999987908}},{"ix":10,"action":{"kind":"Deliver","chain":"provider","numPackets":4},"partialState":{"h":1,"t":6,"tokens":[12174,8918,3000,2000],"delegation":[11174,7918,2000,1000],"delegatorTokens":9999999987908,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":11,"action":{"kind":"Undelegate","val":1,"amt":1082},"partialState":{"h":1,"t":6,"tokens":[12174,7836,3000,2000],"delegation":[11174,6836,2000,1000],"delegatorTokens":9999999987908}},{"ix":12,"action":{"kind":"Undelegate","val":0,"amt":3053},"partialState":{"h":1,"t":6,"tokens":[9121,7836,3000,2000],"delegation":[8121,6836,2000,1000],"delegatorTokens":9999999987908}},{"ix":13,"action":{"kind":"Undelegate","val":0,"amt":4797},"partialState":{"h":1,"t":6,"tokens":[4324,7836,3000,2000],"delegation":[3324,6836,2000,1000],"delegatorTokens":9999999987908}},{"ix":14,"action":{"kind":"Delegate","val":1,"amt":1679},"partialState":{"h":1,"t":6,"tokens":[4324,9515,3000,2000],"delegation":[3324,8515,2000,1000],"delegatorTokens":9999999986229}},{"ix":15,"action":{"kind":"Delegate","val":1,"amt":3896},"partialState":{"h":1,"t":6,"tokens":[4324,13411,3000,2000],"delegation":[3324,12411,2000,1000],"delegatorTokens":9999999982333}},{"ix":16,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":2,"t":12,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,false,true,true]}},{"ix":17,"action":{"kind":"ConsumerSlash","val":3,"infractionHeight":1,"isDowntime":true},"partialState":{"h":2,"t":12,"outstandingDowntime":[false,false,true,true]}},{"ix":18,"action":{"kind":"Deliver","chain":"consumer","numPackets":6},"partialState":{"h":2,"t":12,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,false,true,true]}},{"ix":19,"action":{"kind":"Deliver","chain":"consumer","numPackets":1},"partialState":{"h":2,"t":12,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,false,true,true]}},{"ix":20,"action":{"kind":"Delegate","val":2,"amt":2829},"partialState":{"h":1,"t":6,"tokens":[4324,13411,5829,2000],"delegation":[3324,12411,4829,1000],"delegatorTokens":9999999979504}},{"ix":21,"action":{"kind":"ConsumerSlash","val":2,"infractionHeight":0,"isDowntime":false},"partialState":{"h":2,"t":12,"outstandingDowntime":[false,false,true,true]}},{"ix":22,"action":{"kind":"Delegate","val":3,"amt":2843},"partialState":{"h":1,"t":6,"tokens":[4324,13411,5829,4843],"delegation":[3324,12411,4829,3843],"delegatorTokens":9999999976661}},{"ix":23,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":24,"action":{"kind":"Delegate","val":1,"amt":1927},"partialState":{"h":1,"t":6,"tokens":[4324,15338,5829,4843],"delegation":[3324,14338,4829,3843],"delegatorTokens":9999999974734}},{"ix":25,"action":{"kind":"Delegate","val":1,"amt":3449},"partialState":{"h":1,"t":6,"tokens":[4324,18787,5829,4843],"delegation":[3324,17787,4829,3843],"delegatorTokens":9999999971285}},{"ix":26,"action":{"kind":"Delegate","val":1,"amt":4450},"partialState":{"h":1,"t":6,"tokens":[4324,23237,5829,4843],"delegation":[3324,22237,4829,3843],"delegatorTokens":9999999966835}},{"ix":27,"action":{"kind":"Deliver","chain":"consumer","numPackets":5},"partialState":{"h":2,"t":12,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,false,true,true]}},{"ix":28,"action":{"kind":"Undelegate","val":2,"amt":4135},"partialState":{"h":1,"t":6,"tokens":[4324,23237,1694,4843],"delegation":[3324,22237,694,3843],"delegatorTokens":9999999966835}},{"ix":29,"action":{"kind":"ConsumerSlash","val":2,"infractionHeight":0,"isDowntime":false},"partialState":{"h":2,"t":12,"outstandingDowntime":[false,false,true,true]}},{"ix":30,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":2,"t":12,"tokens":[4324,23237,1694,4843],"delegation":[3324,22237,694,3843],"delegatorTokens":9999999966835,"jailed":[null,null,null,null],"status":["unbonding","bonded","unbonded","bonded"]}},{"ix":31,"action":{"kind":"Delegate","val":1,"amt":2894},"partialState":{"h":2,"t":12,"tokens":[4324,26131,1694,4843],"delegation":[3324,25131,694,3843],"delegatorTokens":9999999963941}},{"ix":32,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":3,"t":18,"tokens":[4324,26131,1694,4843],"delegation":[3324,25131,694,3843],"delegatorTokens":9999999963941,"jailed":[null,null,null,null],"status":["unbonding","bonded","unbonded","bonded"]}},{"ix":33,"action":{"kind":"Delegate","val":0,"amt":2467},"partialState":{"h":3,"t":18,"tokens":[6791,26131,1694,4843],"delegation":[5791,25131,694,3843],"delegatorTokens":9999999961474}},{"ix":34,"action":{"kind":"Delegate","val":1,"amt":2589},"partialState":{"h":3,"t":18,"tokens":[6791,28720,1694,4843],"delegation":[5791,27720,694,3843],"delegatorTokens":9999999958885}},{"ix":35,"action":{"kind":"Deliver","chain":"consumer","numPackets":1},"partialState":{"h":2,"t":12,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,false,true,true]}},{"ix":36,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":4,"t":24,"tokens":[6791,28720,1694,4843],"delegation":[5791,27720,694,3843],"delegatorTokens":9999999958885,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonding"]}},{"ix":37,"action":{"kind":"Undelegate","val":2,"amt":1187},"partialState":{"h":4,"t":24,"tokens":[6791,28720,1694,4843],"delegation":[5791,27720,694,3843],"delegatorTokens":9999999958885}},{"ix":38,"action":{"kind":"Delegate","val":1,"amt":4548},"partialState":{"h":4,"t":24,"tokens":[6791,33268,1694,4843],"delegation":[5791,32268,694,3843],"delegatorTokens":9999999954337}},{"ix":39,"action":{"kind":"Delegate","val":3,"amt":1956},"partialState":{"h":4,"t":24,"tokens":[6791,33268,1694,6799],"delegation":[5791,32268,694,5799],"delegatorTokens":9999999952381}},{"ix":40,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":5,"t":30,"tokens":[6791,33268,1694,6799],"delegation":[5791,32268,694,5799],"delegatorTokens":9999999952381,"jailed":[null,null,null,null],"status":["unbonding","bonded","unbonded","bonded"]}},{"ix":41,"action":{"kind":"Delegate","val":2,"amt":1327},"partialState":{"h":5,"t":30,"tokens":[6791,33268,3021,6799],"delegation":[5791,32268,2021,5799],"delegatorTokens":9999999951054}},{"ix":42,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":43,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":3,"t":18,"consumerPower":[null,23237,null,4843],"outstandingDowntime":[false,false,true,true]}},{"ix":44,"action":{"kind":"Deliver","chain":"provider","numPackets":1},"partialState":{"h":5,"t":30,"tokens":[6791,33268,3021,6799],"delegation":[5791,32268,2021,5799],"delegatorTokens":9999999951054,"jailed":[null,null,null,null],"status":["unbonding","bonded","unbonded","bonded"]}},{"ix":45,"action":{"kind":"Deliver","chain":"provider","numPackets":1},"partialState":{"h":5,"t":30,"tokens":[6791,33268,3021,6799],"delegation":[5791,32268,2021,5799],"delegatorTokens":9999999951054,"jailed":[null,null,null,null],"status":["unbonding","bonded","unbonded","bonded"]}},{"ix":46,"action":{"kind":"ConsumerSlash","val":3,"infractionHeight":1,"isDowntime":false},"partialState":{"h":3,"t":18,"outstandingDowntime":[false,false,true,true]}},{"ix":47,"action":{"kind":"ConsumerSlash","val":2,"infractionHeight":2,"isDowntime":false},"partialState":{"h":3,"t":18,"outstandingDowntime":[false,false,true,true]}},{"ix":48,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":49,"action":{"kind":"Deliver","chain":"consumer","numPackets":5},"partialState":{"h":3,"t":18,"consumerPower":[null,23237,null,4843],"outstandingDowntime":[false,false,true,true]}},{"ix":50,"action":{"kind":"ConsumerSlash","val":2,"infractionHeight":1,"isDowntime":false},"partialState":{"h":3,"t":18,"outstandingDowntime":[false,false,true,true]}},{"ix":51,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":52,"action":{"kind":"Deliver","chain":"provider","numPackets":2},"partialState":{"h":5,"t":30,"tokens":[6791,33268,3021,6799],"delegation":[5791,32268,2021,5799],"delegatorTokens":9999999951054,"jailed":[null,null,null,null],"status":["unbonding","bonded","unbonded","bonded"]}},{"ix":53,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":54,"action":{"kind":"Undelegate","val":3,"amt":1266},"partialState":{"h":5,"t":30,"tokens":[6791,33268,3021,5533],"delegation":[5791,32268,2021,4533],"delegatorTokens":9999999951054}},{"ix":55,"action":{"kind":"ConsumerSlash","val":2,"infractionHeight":2,"isDowntime":false},"partialState":{"h":3,"t":18,"outstandingDowntime":[false,false,true,true]}},{"ix":56,"action":{"kind":"Deliver","chain":"consumer","numPackets":5},"partialState":{"h":3,"t":18,"consumerPower":[null,23237,null,4843],"outstandingDowntime":[false,false,true,true]}},{"ix":57,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":58,"action":{"kind":"Deliver","chain":"consumer","numPackets":4},"partialState":{"h":3,"t":18,"consumerPower":[null,23237,null,4843],"outstandingDowntime":[false,false,true,true]}},{"ix":59,"action":{"kind":"Delegate","val":3,"amt":1742},"partialState":{"h":5,"t":30,"tokens":[6791,33268,3021,7275],"delegation":[5791,32268,2021,6275],"delegatorTokens":9999999949312}},{"ix":60,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":61,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":6,"t":36,"tokens":[6791,33268,3021,7275],"delegation":[5791,32268,2021,6275],"delegatorTokens":9999999949312,"jailed":[null,null,null,1000000000000029],"status":["unbonding","bonded","unbonded","bonded"]}},{"ix":62,"action":{"kind":"ConsumerSlash","val":2,"infractionHeight":2,"isDowntime":false},"partialState":{"h":3,"t":18,"outstandingDowntime":[false,false,true,true]}},{"ix":63,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":64,"action":{"kind":"Undelegate","val":0,"amt":2189},"partialState":{"h":6,"t":36,"tokens":[4602,33268,3021,7275],"delegation":[3602,32268,2021,6275],"delegatorTokens":9999999949312}},{"ix":65,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":66,"action":{"kind":"Deliver","chain":"provider","numPackets":5},"partialState":{"h":6,"t":36,"tokens":[4602,33268,3021,7275],"delegation":[3602,32268,2021,6275],"delegatorTokens":9999999949312,"jailed":[null,null,null,1000000000000029],"status":["unbonding","bonded","unbonded","bonded"]}},{"ix":67,"action":{"kind":"Delegate","val":2,"amt":2357},"partialState":{"h":6,"t":36,"tokens":[4602,33268,5378,7275],"delegation":[3602,32268,4378,6275],"delegatorTokens":9999999946955}},{"ix":68,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":69,"action":{"kind":"Deliver","chain":"provider","numPackets":1},"partialState":{"h":6,"t":36,"tokens":[4602,33268,5378,7275],"delegation":[3602,32268,4378,6275],"delegatorTokens":9999999946955,"jailed":[null,null,null,1000000000000029],"status":["unbonding","bonded","unbonded","bonded"]}},{"ix":70,"action":{"kind":"Delegate","val":1,"amt":2324},"partialState":{"h":6,"t":36,"tokens":[4602,35592,5378,7275],"delegation":[3602,34592,4378,6275],"delegatorTokens":9999999944631}},{"ix":71,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":4,"t":24,"consumerPower":[6791,28720,null,null],"outstandingDowntime":[false,false,true,true]}},{"ix":72,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":5,"t":30,"consumerPower":[6791,28720,null,null],"outstandingDowntime":[false,false,true,true]}},{"ix":73,"action":{"kind":"Deliver","chain":"provider","numPackets":5},"partialState":{"h":6,"t":36,"tokens":[4602,35592,5378,7275],"delegation":[3602,34592,4378,6275],"delegatorTokens":9999999944631,"jailed":[null,null,null,1000000000000029],"status":["unbonding","bonded","unbonded","bonded"]}},{"ix":74,"action":{"kind":"Deliver","chain":"consumer","numPackets":3},"partialState":{"h":5,"t":30,"consumerPower":[6791,28720,null,null],"outstandingDowntime":[false,false,true,true]}},{"ix":75,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":76,"action":{"kind":"Undelegate","val":0,"amt":1612},"partialState":{"h":6,"t":36,"tokens":[2990,35592,5378,7275],"delegation":[1990,34592,4378,6275],"delegatorTokens":9999999944631}},{"ix":77,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":6,"t":36,"consumerPower":[null,33268,null,6799],"outstandingDowntime":[false,false,true,true]}},{"ix":78,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":7,"t":42,"consumerPower":[null,33268,null,6799],"outstandingDowntime":[false,false,true,true]}},{"ix":79,"action":{"kind":"Deliver","chain":"provider","numPackets":4},"partialState":{"h":6,"t":36,"tokens":[2990,35592,5378,7275],"delegation":[1990,34592,4378,6275],"delegatorTokens":9999999944631,"jailed":[null,null,null,1000000000000029],"status":["unbonding","bonded","unbonded","bonded"]}},{"ix":80,"action":{"kind":"ConsumerSlash","val":3,"infractionHeight":6,"isDowntime":false},"partialState":{"h":7,"t":42,"outstandingDowntime":[false,false,true,true]}},{"ix":81,"action":{"kind":"Undelegate","val":3,"amt":4078},"partialState":{"h":6,"t":36,"tokens":[2990,35592,5378,3197],"delegation":[1990,34592,4378,2197],"delegatorTokens":9999999944631}},{"ix":82,"action":{"kind":"Delegate","val":3,"amt":4818},"partialState":{"h":6,"t":36,"tokens":[2990,35592,5378,8015],"delegation":[1990,34592,4378,7015],"delegatorTokens":9999999939813}},{"ix":83,"action":{"kind":"Undelegate","val":2,"amt":3490},"partialState":{"h":6,"t":36,"tokens":[2990,35592,1888,8015],"delegation":[1990,34592,888,7015],"delegatorTokens":9999999939813}},{"ix":84,"action":{"kind":"Delegate","val":1,"amt":4414},"partialState":{"h":6,"t":36,"tokens":[2990,40006,1888,8015],"delegation":[1990,39006,888,7015],"delegatorTokens":9999999935399}},{"ix":85,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":7,"t":42,"tokens":[2990,40006,1888,8015],"delegation":[1990,39006,888,7015],"delegatorTokens":9999999935399,"jailed":[null,null,null,1000000000000029],"status":["bonded","bonded","unbonded","unbonding"]}},{"ix":86,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":8,"t":48,"tokens":[2990,40006,1888,8015],"delegation":[1990,39006,888,7015],"delegatorTokens":9999999935399,"jailed":[null,null,null,1000000000000029],"status":["bonded","bonded","unbonded","unbonding"]}},{"ix":87,"action":{"kind":"Deliver","chain":"provider","numPackets":2},"partialState":{"h":8,"t":48,"tokens":[2990,40006,1888,8015],"delegation":[1990,39006,888,7015],"delegatorTokens":9999999935399,"jailed":[null,null,null,1000000000000029],"status":["bonded","bonded","unbonded","unbonding"]}},{"ix":88,"action":{"kind":"ConsumerSlash","val":2,"infractionHeight":0,"isDowntime":false},"partialState":{"h":7,"t":42,"outstandingDowntime":[false,false,true,true]}},{"ix":89,"action":{"kind":"Undelegate","val":3,"amt":1485},"partialState":{"h":8,"t":48,"tokens":[2990,40006,1888,6530],"delegation":[1990,39006,888,5530],"delegatorTokens":9999999935399}},{"ix":90,"action":{"kind":"Deliver","chain":"consumer","numPackets":3},"partialState":{"h":7,"t":42,"consumerPower":[null,33268,null,6799],"outstandingDowntime":[false,false,true,false]}},{"ix":91,"action":{"kind":"Delegate","val":1,"amt":1458},"partialState":{"h":8,"t":48,"tokens":[2990,41464,1888,6530],"delegation":[1990,40464,888,5530],"delegatorTokens":9999999933941}},{"ix":92,"action":{"kind":"Deliver","chain":"provider","numPackets":6},"partialState":{"h":8,"t":48,"tokens":[2990,41464,1888,6530],"delegation":[1990,40464,888,5530],"delegatorTokens":9999999933941,"jailed":[null,null,null,1000000000000029],"status":["bonded","bonded","unbonded","unbonding"]}},{"ix":93,"action":{"kind":"Delegate","val":0,"amt":1557},"partialState":{"h":8,"t":48,"tokens":[4547,41464,1888,6530],"delegation":[3547,40464,888,5530],"delegatorTokens":9999999932384}},{"ix":94,"action":{"kind":"Undelegate","val":2,"amt":2147},"partialState":{"h":8,"t":48,"tokens":[4547,41464,1888,6530],"delegation":[3547,40464,888,5530],"delegatorTokens":9999999932384}},{"ix":95,"action":{"kind":"Delegate","val":2,"amt":3972},"partialState":{"h":8,"t":48,"tokens":[4547,41464,5860,6530],"delegation":[3547,40464,4860,5530],"delegatorTokens":9999999928412}},{"ix":96,"action":{"kind":"Delegate","val":2,"amt":4011},"partialState":{"h":8,"t":48,"tokens":[4547,41464,9871,6530],"delegation":[3547,40464,8871,5530],"delegatorTokens":9999999924401}},{"ix":97,"action":{"kind":"Deliver","chain":"consumer","numPackets":6},"partialState":{"h":7,"t":42,"consumerPower":[null,33268,null,6799],"outstandingDowntime":[false,false,true,false]}},{"ix":98,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":8,"t":48,"consumerPower":[2990,40006,null,null],"outstandingDowntime":[false,false,true,false]}},{"ix":99,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":9,"t":54,"tokens":[4547,41464,9871,6530],"delegation":[3547,40464,8871,5530],"delegatorTokens":9999999924401,"jailed":[null,null,null,1000000000000029],"status":["unbonding","bonded","bonded","unbonding"]}},{"ix":100,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":101,"action":{"kind":"Undelegate","val":2,"amt":3171},"partialState":{"h":9,"t":54,"tokens":[4547,41464,6700,6530],"delegation":[3547,40464,5700,5530],"delegatorTokens":9999999924401}},{"ix":102,"action":{"kind":"Undelegate","val":3,"amt":4262},"partialState":{"h":9,"t":54,"tokens":[4547,41464,6700,2268],"delegation":[3547,40464,5700,1268],"delegatorTokens":9999999924401}},{"ix":103,"action":{"kind":"Delegate","val":1,"amt":3063},"partialState":{"h":9,"t":54,"tokens":[4547,44527,6700,2268],"delegation":[3547,43527,5700,1268],"delegatorTokens":9999999921338}},{"ix":104,"action":{"kind":"ConsumerSlash","val":2,"infractionHeight":3,"isDowntime":false},"partialState":{"h":8,"t":48,"outstandingDowntime":[false,false,true,false]}},{"ix":105,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":9,"t":54,"consumerPower":[2990,40006,null,null],"outstandingDowntime":[false,false,true,false]}},{"ix":106,"action":{"kind":"ConsumerSlash","val":0,"infractionHeight":5,"isDowntime":true},"partialState":{"h":9,"t":54,"outstandingDowntime":[true,false,true,false]}},{"ix":107,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":108,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":109,"action":{"kind":"Undelegate","val":0,"amt":4740},"partialState":{"h":9,"t":54,"tokens":[4547,44527,6700,2268],"delegation":[3547,43527,5700,1268],"delegatorTokens":9999999921338}},{"ix":110,"action":{"kind":"Undelegate","val":3,"amt":2056},"partialState":{"h":9,"t":54,"tokens":[4547,44527,6700,2268],"delegation":[3547,43527,5700,1268],"delegatorTokens":9999999921338}},{"ix":111,"action":{"kind":"Deliver","chain":"consumer","numPackets":4},"partialState":{"h":9,"t":54,"consumerPower":[2990,40006,null,null],"outstandingDowntime":[true,false,true,false]}},{"ix":112,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":10,"t":60,"consumerPower":[2990,40006,null,null],"outstandingDowntime":[true,false,true,false]}},{"ix":113,"action":{"kind":"Undelegate","val":3,"amt":1457},"partialState":{"h":9,"t":54,"tokens":[4547,44527,6700,2268],"delegation":[3547,43527,5700,1268],"delegatorTokens":9999999921338}},{"ix":114,"action":{"kind":"Undelegate","val":2,"amt":1583},"partialState":{"h":9,"t":54,"tokens":[4547,44527,5117,2268],"delegation":[3547,43527,4117,1268],"delegatorTokens":9999999921338}},{"ix":115,"action":{"kind":"Delegate","val":1,"amt":3833},"partialState":{"h":9,"t":54,"tokens":[4547,48360,5117,2268],"delegation":[3547,47360,4117,1268],"delegatorTokens":9999999917505}},{"ix":116,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":10,"t":60,"tokens":[4547,48360,5117,2268],"delegation":[3547,47360,4117,1268],"delegatorTokens":9999999917505,"jailed":[null,null,null,1000000000000029],"status":["unbonding","bonded","bonded","unbonding"]}},{"ix":117,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":118,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":11,"t":66,"tokens":[4547,48360,5117,2268],"delegation":[3547,47360,4117,1268],"delegatorTokens":9999999917505,"jailed":[null,null,null,1000000000000029],"status":["unbonding","bonded","bonded","unbonding"]}},{"ix":119,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":120,"action":{"kind":"Deliver","chain":"provider","numPackets":6},"partialState":{"h":11,"t":66,"tokens":[4547,48360,5117,2268],"delegation":[3547,47360,4117,1268],"delegatorTokens":9999999917505,"jailed":[null,null,null,1000000000000029],"status":["unbonding","bonded","bonded","unbonding"]}},{"ix":121,"action":{"kind":"Undelegate","val":1,"amt":3969},"partialState":{"h":11,"t":66,"tokens":[4547,44391,5117,2268],"delegation":[3547,43391,4117,1268],"delegatorTokens":9999999917505}},{"ix":122,"action":{"kind":"Undelegate","val":3,"amt":4067},"partialState":{"h":11,"t":66,"tokens":[4547,44391,5117,2268],"delegation":[3547,43391,4117,1268],"delegatorTokens":9999999917505}},{"ix":123,"action":{"kind":"Undelegate","val":3,"amt":1043},"partialState":{"h":11,"t":66,"tokens":[4547,44391,5117,1225],"delegation":[3547,43391,4117,225],"delegatorTokens":9999999917505}},{"ix":124,"action":{"kind":"Deliver","chain":"consumer","numPackets":3},"partialState":{"h":10,"t":60,"consumerPower":[2990,40006,null,null],"outstandingDowntime":[true,false,true,false]}},{"ix":125,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":126,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":12,"t":72,"tokens":[4547,44391,5117,1225],"delegation":[3547,43391,4117,225],"delegatorTokens":9999999917505,"jailed":[null,null,null,1000000000000029],"status":["unbonding","bonded","bonded","unbonding"]}},{"ix":127,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":128,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":11,"t":66,"consumerPower":[null,48360,5117,null],"outstandingDowntime":[true,false,true,false]}},{"ix":129,"action":{"kind":"Deliver","chain":"provider","numPackets":1},"partialState":{"h":12,"t":72,"tokens":[4547,44391,5117,1225],"delegation":[3547,43391,4117,225],"delegatorTokens":9999999917505,"jailed":[null,null,null,1000000000000029],"status":["unbonding","bonded","bonded","unbonding"]}},{"ix":130,"action":{"kind":"Undelegate","val":3,"amt":2480},"partialState":{"h":12,"t":72,"tokens":[4547,44391,5117,1225],"delegation":[3547,43391,4117,225],"delegatorTokens":9999999917505}},{"ix":131,"action":{"kind":"Undelegate","val":2,"amt":2642},"partialState":{"h":12,"t":72,"tokens":[4547,44391,2475,1225],"delegation":[3547,43391,1475,225],"delegatorTokens":9999999917505}},{"ix":132,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":12,"t":72,"consumerPower":[null,48360,5117,null],"outstandingDowntime":[true,false,true,false]}},{"ix":133,"action":{"kind":"Undelegate","val":3,"amt":1137},"partialState":{"h":12,"t":72,"tokens":[4547,44391,2475,1225],"delegation":[3547,43391,1475,225],"delegatorTokens":9999999917505}},{"ix":134,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":13,"t":78,"tokens":[4547,44391,2475,1225],"delegation":[3547,43391,1475,225],"delegatorTokens":9999999917505,"jailed":[1000000000000071,null,null,1000000000000029],"status":["bonded","bonded","unbonding","unbonding"]}},{"ix":135,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":136,"action":{"kind":"Delegate","val":3,"amt":4734},"partialState":{"h":13,"t":78,"tokens":[4547,44391,2475,5959],"delegation":[3547,43391,1475,4959],"delegatorTokens":9999999912771}},{"ix":137,"action":{"kind":"Delegate","val":3,"amt":4059},"partialState":{"h":13,"t":78,"tokens":[4547,44391,2475,10018],"delegation":[3547,43391,1475,9018],"delegatorTokens":9999999908712}},{"ix":138,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":14,"t":84,"tokens":[4547,44391,2475,10018],"delegation":[3547,43391,1475,9018],"delegatorTokens":9999999908712,"jailed":[1000000000000071,null,null,1000000000000029],"status":["unbonding","bonded","bonded","unbonding"]}},{"ix":139,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":140,"action":{"kind":"Deliver","chain":"consumer","numPackets":3},"partialState":{"h":12,"t":72,"consumerPower":[null,48360,5117,null],"outstandingDowntime":[false,false,true,false]}},{"ix":141,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":13,"t":78,"consumerPower":[4547,44391,null,null],"outstandingDowntime":[false,false,true,false]}},{"ix":142,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":15,"t":90,"tokens":[4547,44391,2475,10018],"delegation":[3547,43391,1475,9018],"delegatorTokens":9999999908712,"jailed":[1000000000000071,null,null,1000000000000029],"status":["unbonding","bonded","bonded","unbonding"]}},{"ix":143,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":16,"t":96,"tokens":[4547,44391,2475,10018],"delegation":[3547,43391,1475,9018],"delegatorTokens":9999999908712,"jailed":[1000000000000071,null,null,1000000000000029],"status":["unbonding","bonded","bonded","unbonding"]}},{"ix":144,"action":{"kind":"Delegate","val":0,"amt":3990},"partialState":{"h":16,"t":96,"tokens":[8537,44391,2475,10018],"delegation":[7537,43391,1475,9018],"delegatorTokens":9999999904722}},{"ix":145,"action":{"kind":"Undelegate","val":2,"amt":3438},"partialState":{"h":16,"t":96,"tokens":[8537,44391,2475,10018],"delegation":[7537,43391,1475,9018],"delegatorTokens":9999999904722}},{"ix":146,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":14,"t":84,"consumerPower":[4547,44391,null,null],"outstandingDowntime":[false,false,true,false]}},{"ix":147,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":148,"action":{"kind":"Deliver","chain":"provider","numPackets":1},"partialState":{"h":16,"t":96,"tokens":[8537,44391,2475,10018],"delegation":[7537,43391,1475,9018],"delegatorTokens":9999999904722,"jailed":[1000000000000071,null,null,1000000000000029],"status":["unbonding","bonded","bonded","unbonding"]}},{"ix":149,"action":{"kind":"Delegate","val":0,"amt":1959},"partialState":{"h":16,"t":96,"tokens":[10496,44391,2475,10018],"delegation":[9496,43391,1475,9018],"delegatorTokens":9999999902763}},{"ix":150,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":15,"t":90,"consumerPower":[4547,44391,null,null],"outstandingDowntime":[false,false,true,false]}},{"ix":151,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":17,"t":102,"tokens":[10496,44391,2475,10018],"delegation":[9496,43391,1475,9018],"delegatorTokens":9999999915830,"jailed":[1000000000000071,null,null,1000000000000029],"status":["unbonding","bonded","bonded","unbonding"]}},{"ix":152,"action":{"kind":"Undelegate","val":1,"amt":1186},"partialState":{"h":17,"t":102,"tokens":[10496,43205,2475,10018],"delegation":[9496,42205,1475,9018],"delegatorTokens":9999999915830}},{"ix":153,"action":{"kind":"Delegate","val":3,"amt":4050},"partialState":{"h":17,"t":102,"tokens":[10496,43205,2475,14068],"delegation":[9496,42205,1475,13068],"delegatorTokens":9999999911780}},{"ix":154,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":16,"t":96,"consumerPower":[4547,44391,null,null],"outstandingDowntime":[false,false,true,false]}},{"ix":155,"action":{"kind":"Undelegate","val":0,"amt":1171},"partialState":{"h":17,"t":102,"tokens":[9325,43205,2475,14068],"delegation":[8325,42205,1475,13068],"delegatorTokens":9999999911780}},{"ix":156,"action":{"kind":"Deliver","chain":"consumer","numPackets":3},"partialState":{"h":16,"t":96,"consumerPower":[4547,44391,null,null],"outstandingDowntime":[false,false,true,false]}},{"ix":157,"action":{"kind":"Delegate","val":3,"amt":3231},"partialState":{"h":17,"t":102,"tokens":[9325,43205,2475,17299],"delegation":[8325,42205,1475,16299],"delegatorTokens":9999999908549}},{"ix":158,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":17,"t":102,"consumerPower":[null,44391,2475,null],"outstandingDowntime":[false,false,true,false]}},{"ix":159,"action":{"kind":"Delegate","val":1,"amt":2883},"partialState":{"h":17,"t":102,"tokens":[9325,46088,2475,17299],"delegation":[8325,45088,1475,16299],"delegatorTokens":9999999905666}},{"ix":160,"action":{"kind":"Deliver","chain":"provider","numPackets":4},"partialState":{"h":17,"t":102,"tokens":[9325,46088,2475,17299],"delegation":[8325,45088,1475,16299],"delegatorTokens":9999999905666,"jailed":[1000000000000071,null,null,1000000000000029],"status":["unbonding","bonded","bonded","unbonding"]}},{"ix":161,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":162,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":18,"t":108,"consumerPower":[null,44391,2475,null],"outstandingDowntime":[false,false,true,false]}},{"ix":163,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":164,"action":{"kind":"Deliver","chain":"consumer","numPackets":5},"partialState":{"h":18,"t":108,"consumerPower":[null,44391,2475,null],"outstandingDowntime":[false,false,true,false]}},{"ix":165,"action":{"kind":"Delegate","val":3,"amt":1938},"partialState":{"h":17,"t":102,"tokens":[9325,46088,2475,19237],"delegation":[8325,45088,1475,18237],"delegatorTokens":9999999903728}},{"ix":166,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":167,"action":{"kind":"Deliver","chain":"provider","numPackets":4},"partialState":{"h":17,"t":102,"tokens":[9325,46088,2475,19237],"delegation":[8325,45088,1475,18237],"delegatorTokens":9999999903728,"jailed":[1000000000000071,null,null,1000000000000029],"status":["unbonding","bonded","bonded","unbonding"]}},{"ix":168,"action":{"kind":"Deliver","chain":"provider","numPackets":1},"partialState":{"h":17,"t":102,"tokens":[9325,46088,2475,19237],"delegation":[8325,45088,1475,18237],"delegatorTokens":9999999903728,"jailed":[1000000000000071,null,null,1000000000000029],"status":["unbonding","bonded","bonded","unbonding"]}},{"ix":169,"action":{"kind":"Delegate","val":3,"amt":2269},"partialState":{"h":17,"t":102,"tokens":[9325,46088,2475,21506],"delegation":[8325,45088,1475,20506],"delegatorTokens":9999999901459}},{"ix":170,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":18,"t":108,"tokens":[9325,46088,2475,21506],"delegation":[8325,45088,1475,20506],"delegatorTokens":9999999902725,"jailed":[1000000000000071,null,null,1000000000000029],"status":["unbonding","bonded","bonded","unbonding"]}},{"ix":171,"action":{"kind":"Deliver","chain":"provider","numPackets":4},"partialState":{"h":18,"t":108,"tokens":[9325,46088,2475,21506],"delegation":[8325,45088,1475,20506],"delegatorTokens":9999999902725,"jailed":[1000000000000071,null,null,1000000000000029],"status":["unbonding","bonded","bonded","unbonding"]}},{"ix":172,"action":{"kind":"Undelegate","val":0,"amt":3247},"partialState":{"h":18,"t":108,"tokens":[6078,46088,2475,21506],"delegation":[5078,45088,1475,20506],"delegatorTokens":9999999902725}},{"ix":173,"action":{"kind":"Undelegate","val":2,"amt":4847},"partialState":{"h":18,"t":108,"tokens":[6078,46088,2475,21506],"delegation":[5078,45088,1475,20506],"delegatorTokens":9999999902725}},{"ix":174,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":19,"t":114,"consumerPower":[null,44391,2475,null],"outstandingDowntime":[false,false,true,false]}},{"ix":175,"action":{"kind":"Delegate","val":3,"amt":2345},"partialState":{"h":18,"t":108,"tokens":[6078,46088,2475,23851],"delegation":[5078,45088,1475,22851],"delegatorTokens":9999999900380}},{"ix":176,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":19,"t":114,"tokens":[6078,46088,2475,23851],"delegation":[5078,45088,1475,22851],"delegatorTokens":9999999911749,"jailed":[1000000000000071,null,null,1000000000000029],"status":["unbonding","bonded","bonded","unbonded"]}},{"ix":177,"action":{"kind":"Delegate","val":0,"amt":3395},"partialState":{"h":19,"t":114,"tokens":[9473,46088,2475,23851],"delegation":[8473,45088,1475,22851],"delegatorTokens":9999999908354}},{"ix":178,"action":{"kind":"Undelegate","val":3,"amt":1262},"partialState":{"h":19,"t":114,"tokens":[9473,46088,2475,22589],"delegation":[8473,45088,1475,21589],"delegatorTokens":9999999908354}},{"ix":179,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":20,"t":120,"tokens":[9473,46088,2475,22589],"delegation":[8473,45088,1475,21589],"delegatorTokens":9999999908354,"jailed":[1000000000000071,null,null,1000000000000029],"status":["unbonding","bonded","bonded","unbonded"]}},{"ix":180,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":20,"t":120,"consumerPower":[null,44391,2475,null],"outstandingDowntime":[false,false,true,false]}},{"ix":181,"action":{"kind":"Delegate","val":0,"amt":1333},"partialState":{"h":20,"t":120,"tokens":[10806,46088,2475,22589],"delegation":[9806,45088,1475,21589],"delegatorTokens":9999999907021}},{"ix":182,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":21,"t":126,"consumerPower":[null,44391,2475,null],"outstandingDowntime":[false,false,true,false]}},{"ix":183,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":184,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":22,"t":132,"consumerPower":[null,44391,2475,null],"outstandingDowntime":[false,false,true,false]}},{"ix":185,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":186,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":23,"t":138,"consumerPower":[null,44391,2475,null],"outstandingDowntime":[false,false,true,false]}},{"ix":187,"action":{"kind":"Undelegate","val":0,"amt":3652},"partialState":{"h":20,"t":120,"tokens":[7154,46088,2475,22589],"delegation":[6154,45088,1475,21589],"delegatorTokens":9999999907021}},{"ix":188,"action":{"kind":"Undelegate","val":2,"amt":3894},"partialState":{"h":20,"t":120,"tokens":[7154,46088,2475,22589],"delegation":[6154,45088,1475,21589],"delegatorTokens":9999999907021}},{"ix":189,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":190,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":191,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":24,"t":144,"consumerPower":[null,44391,2475,null],"outstandingDowntime":[false,false,true,false]}},{"ix":192,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":193,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":21,"t":126,"tokens":[7154,46088,2475,22589],"delegation":[6154,45088,1475,21589],"delegatorTokens":9999999907021,"jailed":[1000000000000071,null,null,1000000000000029],"status":["unbonding","bonded","bonded","unbonded"]}},{"ix":194,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":195,"action":{"kind":"Undelegate","val":3,"amt":4015},"partialState":{"h":21,"t":126,"tokens":[7154,46088,2475,18574],"delegation":[6154,45088,1475,17574],"delegatorTokens":9999999907021}},{"ix":196,"action":{"kind":"Undelegate","val":1,"amt":3093},"partialState":{"h":21,"t":126,"tokens":[7154,42995,2475,18574],"delegation":[6154,41995,1475,17574],"delegatorTokens":9999999907021}},{"ix":197,"action":{"kind":"Delegate","val":3,"amt":4097},"partialState":{"h":21,"t":126,"tokens":[7154,42995,2475,22671],"delegation":[6154,41995,1475,21671],"delegatorTokens":9999999902924}},{"ix":198,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":22,"t":132,"tokens":[7154,42995,2475,22671],"delegation":[6154,41995,1475,21671],"delegatorTokens":9999999902924,"jailed":[1000000000000071,null,null,1000000000000029],"status":["unbonding","bonded","bonded","unbonded"]}},{"ix":199,"action":{"kind":"Deliver","chain":"consumer","numPackets":1},"partialState":{"h":24,"t":144,"consumerPower":[null,44391,2475,null],"outstandingDowntime":[false,false,true,false]}}],"events":["send_downtime_slash_request","send_double_sign_slash_request","send_downtime_slash_request","insufficient_shares","downtime_slash_request_outstanding","send_double_sign_slash_request","send_double_sign_slash_request","send_vsc_without_downtime_ack","send_vsc_without_downtime_ack","rebond_unval","send_vsc_without_downtime_ack","insufficient_shares","rebond_unval","send_vsc_without_downtime_ack","consumer_del_val","consumer_update_val","consumer_add_val","receive_double_sign_slash_request","send_double_sign_slash_request","send_double_sign_slash_request","send_double_sign_slash_request","send_double_sign_slash_request","receive_slash_request_unbonded","receive_downtime_slash_request","jail","send_vsc_with_downtime_ack","send_double_sign_slash_request","consumer_update_val","consumer_add_val","consumer_del_val","receive_double_sign_slash_request","receive_double_sign_slash_request","receive_double_sign_slash_request","receive_double_sign_slash_request","receive_double_sign_slash_request","consumer_del_val","consumer_update_val","consumer_add_val","receive_double_sign_slash_request","receive_double_sign_slash_request","send_double_sign_slash_request","rebond_unval","send_vsc_without_downtime_ack","send_double_sign_slash_request","receive_downtime_slash_ack","insufficient_shares","consumer_del_val","consumer_add_val","consumer_update_val","send_vsc_without_downtime_ack","send_double_sign_slash_request","send_downtime_slash_request","insufficient_shares","insufficient_shares","insufficient_shares","send_vsc_without_downtime_ack","receive_double_sign_slash_request","receive_double_sign_slash_request","receive_double_sign_slash_request","insufficient_shares","send_vsc_without_downtime_ack","consumer_del_val","consumer_update_val","consumer_add_val","insufficient_shares","consumer_send_maturation","insufficient_shares","rebond_unval","receive_downtime_slash_request","jail","send_vsc_with_downtime_ack","rebond_unval","some_undels_expired_but_not_completed","send_vsc_without_downtime_ack","receive_downtime_slash_ack","consumer_send_maturation","consumer_send_maturation","consumer_update_val","consumer_add_val","consumer_del_val","insufficient_shares","consumer_send_maturation","complete_undel_immediate","complete_undel_immediate","complete_undel_immediate","complete_undel_immediate","consumer_send_maturation","consumer_send_maturation","consumer_del_val","consumer_add_val","some_undels_expired_but_not_completed","complete_undel_immediate","set_undel_hold_false","set_undel_hold_false","set_undel_hold_false","set_undel_hold_false","set_unval_hold_false","send_vsc_without_downtime_ack","insufficient_shares","complete_unval_in_endblock","complete_undel_in_endblock","send_vsc_not_because_change","send_vsc_without_downtime_ack","send_vsc_not_because_change","send_vsc_without_downtime_ack","consumer_send_maturation","consumer_send_maturation","consumer_send_maturation","consumer_send_maturation","insufficient_shares","some_undels_expired_but_not_completed","send_vsc_not_because_change","send_vsc_without_downtime_ack","some_undels_expired_but_not_completed","send_vsc_without_downtime_ack"]},{"meta":{"commit":"7ffd0c04e4205cbc9caf212abfe6c59ee43153bf"},"constants":{"P":"provider","C":"consumer","UNBONDING_SECONDS_P":70,"UNBONDING_SECONDS_C":50,"TRUSTING_SECONDS":49,"NUM_VALIDATORS":4,"MAX_VALIDATORS":2,"SLASH_DOUBLESIGN":0,"SLASH_DOWNTIME":0,"JAIL_SECONDS":999999999999999,"BLOCK_SECONDS":6,"INITIAL_DELEGATOR_TOKENS":10000000000000,"DELEGATE_AMT_MIN":1000,"DELEGATE_AMT_MAX":5000,"UNDELEGATE_AMT_MIN":1000,"UNDELEGATE_AMT_MAX":5000,"ISDOWNTIME_PROBABILITY":0.5,"MAX_NUM_PACKETS_FOR_DELIVER":6},"actions":[{"ix":0,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":1,"action":{"kind":"Delegate","val":2,"amt":2451},"partialState":{"h":1,"t":6,"tokens":[5000,4000,5451,2000],"delegation":[4000,3000,4451,1000],"delegatorTokens":9999999997549}},{"ix":2,"action":{"kind":"Deliver","chain":"provider","numPackets":1},"partialState":{"h":1,"t":6,"tokens":[5000,4000,5451,2000],"delegation":[4000,3000,4451,1000],"delegatorTokens":9999999997549,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":3,"action":{"kind":"Undelegate","val":0,"amt":3839},"partialState":{"h":1,"t":6,"tokens":[1161,4000,5451,2000],"delegation":[161,3000,4451,1000],"delegatorTokens":9999999997549}},{"ix":4,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":5,"action":{"kind":"Undelegate","val":3,"amt":3400},"partialState":{"h":1,"t":6,"tokens":[1161,4000,5451,2000],"delegation":[161,3000,4451,1000],"delegatorTokens":9999999997549}},{"ix":6,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":2,"t":12,"tokens":[1161,4000,5451,2000],"delegation":[161,3000,4451,1000],"delegatorTokens":9999999997549,"jailed":[null,null,null,null],"status":["unbonding","bonded","bonded","unbonded"]}},{"ix":7,"action":{"kind":"Deliver","chain":"consumer","numPackets":4},"partialState":{"h":1,"t":6,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":8,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":3,"t":18,"tokens":[1161,4000,5451,2000],"delegation":[161,3000,4451,1000],"delegatorTokens":9999999997549,"jailed":[null,null,null,null],"status":["unbonding","bonded","bonded","unbonded"]}},{"ix":9,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":2,"t":12,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":10,"action":{"kind":"ConsumerSlash","val":0,"infractionHeight":0,"isDowntime":false},"partialState":{"h":2,"t":12,"outstandingDowntime":[false,false,false,false]}},{"ix":11,"action":{"kind":"Undelegate","val":2,"amt":2831},"partialState":{"h":3,"t":18,"tokens":[1161,4000,2620,2000],"delegation":[161,3000,1620,1000],"delegatorTokens":9999999997549}},{"ix":12,"action":{"kind":"Deliver","chain":"provider","numPackets":3},"partialState":{"h":3,"t":18,"tokens":[1161,4000,2620,2000],"delegation":[161,3000,1620,1000],"delegatorTokens":9999999997549,"jailed":[null,null,null,null],"status":["unbonding","bonded","bonded","unbonded"]}},{"ix":13,"action":{"kind":"ConsumerSlash","val":2,"infractionHeight":1,"isDowntime":true},"partialState":{"h":2,"t":12,"outstandingDowntime":[false,false,true,false]}},{"ix":14,"action":{"kind":"Deliver","chain":"consumer","numPackets":4},"partialState":{"h":2,"t":12,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,false,true,false]}},{"ix":15,"action":{"kind":"Undelegate","val":3,"amt":4173},"partialState":{"h":3,"t":18,"tokens":[1161,4000,2620,2000],"delegation":[161,3000,1620,1000],"delegatorTokens":9999999997549}},{"ix":16,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":3,"t":18,"consumerPower":[null,4000,5451,null],"outstandingDowntime":[false,false,true,false]}},{"ix":17,"action":{"kind":"Deliver","chain":"provider","numPackets":5},"partialState":{"h":3,"t":18,"tokens":[1161,4000,2620,2000],"delegation":[161,3000,1620,1000],"delegatorTokens":9999999997549,"jailed":[null,null,null,null],"status":["unbonding","bonded","bonded","unbonded"]}},{"ix":18,"action":{"kind":"Delegate","val":3,"amt":3831},"partialState":{"h":3,"t":18,"tokens":[1161,4000,2620,5831],"delegation":[161,3000,1620,4831],"delegatorTokens":9999999993718}},{"ix":19,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":4,"t":24,"tokens":[1161,4000,2620,5831],"delegation":[161,3000,1620,4831],"delegatorTokens":9999999993718,"jailed":[null,null,null,null],"status":["unbonding","bonded","unbonding","bonded"]}},{"ix":20,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":21,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":5,"t":30,"tokens":[1161,4000,2620,5831],"delegation":[161,3000,1620,4831],"delegatorTokens":9999999993718,"jailed":[null,null,null,null],"status":["unbonding","bonded","unbonding","bonded"]}},{"ix":22,"action":{"kind":"Delegate","val":2,"amt":1049},"partialState":{"h":5,"t":30,"tokens":[1161,4000,3669,5831],"delegation":[161,3000,2669,4831],"delegatorTokens":9999999992669}},{"ix":23,"action":{"kind":"Delegate","val":2,"amt":1548},"partialState":{"h":5,"t":30,"tokens":[1161,4000,5217,5831],"delegation":[161,3000,4217,4831],"delegatorTokens":9999999991121}},{"ix":24,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":4,"t":24,"consumerPower":[null,4000,5451,null],"outstandingDowntime":[false,false,true,false]}},{"ix":25,"action":{"kind":"Delegate","val":2,"amt":2781},"partialState":{"h":5,"t":30,"tokens":[1161,4000,7998,5831],"delegation":[161,3000,6998,4831],"delegatorTokens":9999999988340}},{"ix":26,"action":{"kind":"ConsumerSlash","val":0,"infractionHeight":1,"isDowntime":false},"partialState":{"h":4,"t":24,"outstandingDowntime":[false,false,true,false]}},{"ix":27,"action":{"kind":"Deliver","chain":"provider","numPackets":4},"partialState":{"h":5,"t":30,"tokens":[1161,4000,7998,5831],"delegation":[161,3000,6998,4831],"delegatorTokens":9999999988340,"jailed":[null,null,null,null],"status":["unbonding","bonded","unbonding","bonded"]}},{"ix":28,"action":{"kind":"Undelegate","val":1,"amt":1262},"partialState":{"h":5,"t":30,"tokens":[1161,2738,7998,5831],"delegation":[161,1738,6998,4831],"delegatorTokens":9999999988340}},{"ix":29,"action":{"kind":"Undelegate","val":1,"amt":2705},"partialState":{"h":5,"t":30,"tokens":[1161,2738,7998,5831],"delegation":[161,1738,6998,4831],"delegatorTokens":9999999988340}},{"ix":30,"action":{"kind":"ConsumerSlash","val":0,"infractionHeight":0,"isDowntime":false},"partialState":{"h":4,"t":24,"outstandingDowntime":[false,false,true,false]}},{"ix":31,"action":{"kind":"Deliver","chain":"provider","numPackets":2},"partialState":{"h":5,"t":30,"tokens":[1161,2738,7998,5831],"delegation":[161,1738,6998,4831],"delegatorTokens":9999999988340,"jailed":[null,null,null,null],"status":["unbonding","bonded","unbonding","bonded"]}},{"ix":32,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":6,"t":36,"tokens":[1161,2738,7998,5831],"delegation":[161,1738,6998,4831],"delegatorTokens":9999999988340,"jailed":[null,null,1000000000000029,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":33,"action":{"kind":"Delegate","val":2,"amt":1294},"partialState":{"h":6,"t":36,"tokens":[1161,2738,9292,5831],"delegation":[161,1738,8292,4831],"delegatorTokens":9999999987046}},{"ix":34,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":7,"t":42,"tokens":[1161,2738,9292,5831],"delegation":[161,1738,8292,4831],"delegatorTokens":9999999987046,"jailed":[null,null,1000000000000029,null],"status":["unbonding","bonded","unbonding","bonded"]}},{"ix":35,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":5,"t":30,"consumerPower":[null,4000,5451,null],"outstandingDowntime":[false,false,true,false]}},{"ix":36,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":37,"action":{"kind":"Undelegate","val":1,"amt":1952},"partialState":{"h":7,"t":42,"tokens":[1161,2738,9292,5831],"delegation":[161,1738,8292,4831],"delegatorTokens":9999999987046}},{"ix":38,"action":{"kind":"Deliver","chain":"consumer","numPackets":6},"partialState":{"h":5,"t":30,"consumerPower":[null,4000,5451,null],"outstandingDowntime":[false,false,false,false]}},{"ix":39,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":40,"action":{"kind":"Undelegate","val":1,"amt":1703},"partialState":{"h":7,"t":42,"tokens":[1161,1035,9292,5831],"delegation":[161,35,8292,4831],"delegatorTokens":9999999987046}},{"ix":41,"action":{"kind":"ConsumerSlash","val":0,"infractionHeight":0,"isDowntime":false},"partialState":{"h":5,"t":30,"outstandingDowntime":[false,false,false,false]}},{"ix":42,"action":{"kind":"Delegate","val":2,"amt":4518},"partialState":{"h":7,"t":42,"tokens":[1161,1035,13810,5831],"delegation":[161,35,12810,4831],"delegatorTokens":9999999982528}},{"ix":43,"action":{"kind":"Deliver","chain":"consumer","numPackets":5},"partialState":{"h":5,"t":30,"consumerPower":[null,4000,5451,null],"outstandingDowntime":[false,false,false,false]}},{"ix":44,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":45,"action":{"kind":"ConsumerSlash","val":1,"infractionHeight":1,"isDowntime":false},"partialState":{"h":5,"t":30,"outstandingDowntime":[false,false,false,false]}},{"ix":46,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":47,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":48,"action":{"kind":"Deliver","chain":"provider","numPackets":2},"partialState":{"h":7,"t":42,"tokens":[1161,1035,13810,5831],"delegation":[161,35,12810,4831],"delegatorTokens":9999999982528,"jailed":[null,null,1000000000000029,null],"status":["unbonding","bonded","unbonding","bonded"]}},{"ix":49,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":50,"action":{"kind":"Deliver","chain":"provider","numPackets":6},"partialState":{"h":7,"t":42,"tokens":[1161,1035,13810,5831],"delegation":[161,35,12810,4831],"delegatorTokens":9999999982528,"jailed":[null,null,1000000000000029,null],"status":["unbonding","bonded","unbonding","bonded"]}},{"ix":51,"action":{"kind":"Delegate","val":2,"amt":3600},"partialState":{"h":7,"t":42,"tokens":[1161,1035,17410,5831],"delegation":[161,35,16410,4831],"delegatorTokens":9999999978928}},{"ix":52,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":8,"t":48,"tokens":[1161,1035,17410,5831],"delegation":[161,35,16410,4831],"delegatorTokens":9999999978928,"jailed":[null,null,1000000000000029,null],"status":["bonded","unbonding","unbonding","bonded"]}},{"ix":53,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":6,"t":36,"consumerPower":[null,null,7998,5831],"outstandingDowntime":[false,false,false,false]}},{"ix":54,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":55,"action":{"kind":"Undelegate","val":0,"amt":3482},"partialState":{"h":8,"t":48,"tokens":[1161,1035,17410,5831],"delegation":[161,35,16410,4831],"delegatorTokens":9999999978928}},{"ix":56,"action":{"kind":"Deliver","chain":"consumer","numPackets":3},"partialState":{"h":6,"t":36,"consumerPower":[null,null,7998,5831],"outstandingDowntime":[false,false,false,false]}},{"ix":57,"action":{"kind":"Deliver","chain":"provider","numPackets":2},"partialState":{"h":8,"t":48,"tokens":[1161,1035,17410,5831],"delegation":[161,35,16410,4831],"delegatorTokens":9999999978928,"jailed":[null,null,1000000000000029,null],"status":["bonded","unbonding","unbonding","bonded"]}},{"ix":58,"action":{"kind":"Undelegate","val":3,"amt":3882},"partialState":{"h":8,"t":48,"tokens":[1161,1035,17410,1949],"delegation":[161,35,16410,949],"delegatorTokens":9999999978928}},{"ix":59,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":60,"action":{"kind":"Delegate","val":2,"amt":1981},"partialState":{"h":8,"t":48,"tokens":[1161,1035,19391,1949],"delegation":[161,35,18391,949],"delegatorTokens":9999999976947}},{"ix":61,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":9,"t":54,"tokens":[1161,1035,19391,1949],"delegation":[161,35,18391,949],"delegatorTokens":9999999976947,"jailed":[null,null,1000000000000029,null],"status":["bonded","unbonding","unbonding","bonded"]}},{"ix":62,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":63,"action":{"kind":"Undelegate","val":0,"amt":1791},"partialState":{"h":9,"t":54,"tokens":[1161,1035,19391,1949],"delegation":[161,35,18391,949],"delegatorTokens":9999999976947}},{"ix":64,"action":{"kind":"Undelegate","val":3,"amt":4740},"partialState":{"h":9,"t":54,"tokens":[1161,1035,19391,1949],"delegation":[161,35,18391,949],"delegatorTokens":9999999976947}},{"ix":65,"action":{"kind":"Delegate","val":3,"amt":4970},"partialState":{"h":9,"t":54,"tokens":[1161,1035,19391,6919],"delegation":[161,35,18391,5919],"delegatorTokens":9999999971977}},{"ix":66,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":7,"t":42,"consumerPower":[null,2738,null,5831],"outstandingDowntime":[false,false,false,false]}},{"ix":67,"action":{"kind":"Undelegate","val":3,"amt":3602},"partialState":{"h":9,"t":54,"tokens":[1161,1035,19391,3317],"delegation":[161,35,18391,2317],"delegatorTokens":9999999971977}},{"ix":68,"action":{"kind":"Delegate","val":0,"amt":2411},"partialState":{"h":9,"t":54,"tokens":[3572,1035,19391,3317],"delegation":[2572,35,18391,2317],"delegatorTokens":9999999969566}},{"ix":69,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":8,"t":48,"consumerPower":[null,2738,null,5831],"outstandingDowntime":[false,false,false,false]}},{"ix":70,"action":{"kind":"Deliver","chain":"consumer","numPackets":5},"partialState":{"h":8,"t":48,"consumerPower":[null,2738,null,5831],"outstandingDowntime":[false,false,false,false]}},{"ix":71,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":10,"t":60,"tokens":[3572,1035,19391,3317],"delegation":[2572,35,18391,2317],"delegatorTokens":9999999969566,"jailed":[null,null,1000000000000029,null],"status":["bonded","unbonding","unbonding","bonded"]}},{"ix":72,"action":{"kind":"Undelegate","val":1,"amt":2040},"partialState":{"h":10,"t":60,"tokens":[3572,1035,19391,3317],"delegation":[2572,35,18391,2317],"delegatorTokens":9999999969566}},{"ix":73,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":74,"action":{"kind":"Undelegate","val":3,"amt":4606},"partialState":{"h":10,"t":60,"tokens":[3572,1035,19391,3317],"delegation":[2572,35,18391,2317],"delegatorTokens":9999999969566}},{"ix":75,"action":{"kind":"Delegate","val":3,"amt":1712},"partialState":{"h":10,"t":60,"tokens":[3572,1035,19391,5029],"delegation":[2572,35,18391,4029],"delegatorTokens":9999999967854}},{"ix":76,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":11,"t":66,"tokens":[3572,1035,19391,5029],"delegation":[2572,35,18391,4029],"delegatorTokens":9999999967854,"jailed":[null,null,1000000000000029,null],"status":["bonded","unbonding","unbonding","bonded"]}},{"ix":77,"action":{"kind":"Delegate","val":3,"amt":4889},"partialState":{"h":11,"t":66,"tokens":[3572,1035,19391,9918],"delegation":[2572,35,18391,8918],"delegatorTokens":9999999962965}},{"ix":78,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":9,"t":54,"consumerPower":[1161,null,null,5831],"outstandingDowntime":[false,false,false,false]}},{"ix":79,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":12,"t":72,"tokens":[3572,1035,19391,9918],"delegation":[2572,35,18391,8918],"delegatorTokens":9999999962965,"jailed":[null,null,1000000000000029,null],"status":["bonded","unbonding","unbonding","bonded"]}},{"ix":80,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":81,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":82,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":13,"t":78,"tokens":[3572,1035,19391,9918],"delegation":[2572,35,18391,8918],"delegatorTokens":9999999962965,"jailed":[null,null,1000000000000029,null],"status":["bonded","unbonding","unbonding","bonded"]}},{"ix":83,"action":{"kind":"Delegate","val":3,"amt":4562},"partialState":{"h":13,"t":78,"tokens":[3572,1035,19391,14480],"delegation":[2572,35,18391,13480],"delegatorTokens":9999999958403}},{"ix":84,"action":{"kind":"Undelegate","val":1,"amt":4778},"partialState":{"h":13,"t":78,"tokens":[3572,1035,19391,14480],"delegation":[2572,35,18391,13480],"delegatorTokens":9999999958403}},{"ix":85,"action":{"kind":"Undelegate","val":0,"amt":1780},"partialState":{"h":13,"t":78,"tokens":[1792,1035,19391,14480],"delegation":[792,35,18391,13480],"delegatorTokens":9999999958403}},{"ix":86,"action":{"kind":"Undelegate","val":3,"amt":3980},"partialState":{"h":13,"t":78,"tokens":[1792,1035,19391,10500],"delegation":[792,35,18391,9500],"delegatorTokens":9999999958403}},{"ix":87,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":14,"t":84,"tokens":[1792,1035,19391,10500],"delegation":[792,35,18391,9500],"delegatorTokens":9999999958403,"jailed":[null,null,1000000000000029,null],"status":["bonded","unbonding","unbonding","bonded"]}},{"ix":88,"action":{"kind":"Deliver","chain":"consumer","numPackets":6},"partialState":{"h":9,"t":54,"consumerPower":[1161,null,null,5831],"outstandingDowntime":[false,false,false,false]}},{"ix":89,"action":{"kind":"Delegate","val":1,"amt":4443},"partialState":{"h":14,"t":84,"tokens":[1792,5478,19391,10500],"delegation":[792,4478,18391,9500],"delegatorTokens":9999999953960}},{"ix":90,"action":{"kind":"Undelegate","val":3,"amt":3144},"partialState":{"h":14,"t":84,"tokens":[1792,5478,19391,7356],"delegation":[792,4478,18391,6356],"delegatorTokens":9999999953960}},{"ix":91,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":92,"action":{"kind":"Undelegate","val":2,"amt":2685},"partialState":{"h":14,"t":84,"tokens":[1792,5478,16706,7356],"delegation":[792,4478,15706,6356],"delegatorTokens":9999999953960}},{"ix":93,"action":{"kind":"Undelegate","val":3,"amt":4031},"partialState":{"h":14,"t":84,"tokens":[1792,5478,16706,3325],"delegation":[792,4478,15706,2325],"delegatorTokens":9999999953960}},{"ix":94,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":95,"action":{"kind":"Undelegate","val":1,"amt":1461},"partialState":{"h":14,"t":84,"tokens":[1792,4017,16706,3325],"delegation":[792,3017,15706,2325],"delegatorTokens":9999999953960}},{"ix":96,"action":{"kind":"Deliver","chain":"provider","numPackets":1},"partialState":{"h":14,"t":84,"tokens":[1792,4017,16706,3325],"delegation":[792,3017,15706,2325],"delegatorTokens":9999999953960,"jailed":[null,null,1000000000000029,null],"status":["bonded","unbonding","unbonding","bonded"]}},{"ix":97,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":98,"action":{"kind":"Delegate","val":2,"amt":1865},"partialState":{"h":14,"t":84,"tokens":[1792,4017,18571,3325],"delegation":[792,3017,17571,2325],"delegatorTokens":9999999952095}},{"ix":99,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":10,"t":60,"consumerPower":[3572,null,null,9918],"outstandingDowntime":[false,false,false,false]}},{"ix":100,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":15,"t":90,"tokens":[1792,4017,18571,3325],"delegation":[792,3017,17571,2325],"delegatorTokens":9999999952095,"jailed":[null,null,1000000000000029,null],"status":["unbonding","bonded","unbonding","bonded"]}},{"ix":101,"action":{"kind":"Delegate","val":0,"amt":4112},"partialState":{"h":15,"t":90,"tokens":[5904,4017,18571,3325],"delegation":[4904,3017,17571,2325],"delegatorTokens":9999999947983}},{"ix":102,"action":{"kind":"Delegate","val":0,"amt":2143},"partialState":{"h":15,"t":90,"tokens":[8047,4017,18571,3325],"delegation":[7047,3017,17571,2325],"delegatorTokens":9999999945840}},{"ix":103,"action":{"kind":"Delegate","val":2,"amt":2256},"partialState":{"h":15,"t":90,"tokens":[8047,4017,20827,3325],"delegation":[7047,3017,19827,2325],"delegatorTokens":9999999943584}},{"ix":104,"action":{"kind":"Undelegate","val":3,"amt":2713},"partialState":{"h":15,"t":90,"tokens":[8047,4017,20827,3325],"delegation":[7047,3017,19827,2325],"delegatorTokens":9999999943584}},{"ix":105,"action":{"kind":"Delegate","val":2,"amt":3680},"partialState":{"h":15,"t":90,"tokens":[8047,4017,24507,3325],"delegation":[7047,3017,23507,2325],"delegatorTokens":9999999939904}},{"ix":106,"action":{"kind":"Deliver","chain":"consumer","numPackets":3},"partialState":{"h":10,"t":60,"consumerPower":[3572,null,null,9918],"outstandingDowntime":[false,false,false,false]}},{"ix":107,"action":{"kind":"Deliver","chain":"consumer","numPackets":3},"partialState":{"h":10,"t":60,"consumerPower":[3572,null,null,9918],"outstandingDowntime":[false,false,false,false]}},{"ix":108,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":16,"t":96,"tokens":[8047,4017,24507,3325],"delegation":[7047,3017,23507,2325],"delegatorTokens":9999999939904,"jailed":[null,null,1000000000000029,null],"status":["bonded","bonded","unbonding","unbonding"]}},{"ix":109,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":110,"action":{"kind":"Undelegate","val":0,"amt":1135},"partialState":{"h":16,"t":96,"tokens":[6912,4017,24507,3325],"delegation":[5912,3017,23507,2325],"delegatorTokens":9999999939904}},{"ix":111,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":11,"t":66,"consumerPower":[1792,null,null,10500],"outstandingDowntime":[false,false,false,false]}},{"ix":112,"action":{"kind":"Undelegate","val":2,"amt":3387},"partialState":{"h":16,"t":96,"tokens":[6912,4017,21120,3325],"delegation":[5912,3017,20120,2325],"delegatorTokens":9999999939904}},{"ix":113,"action":{"kind":"Delegate","val":1,"amt":2028},"partialState":{"h":16,"t":96,"tokens":[6912,6045,21120,3325],"delegation":[5912,5045,20120,2325],"delegatorTokens":9999999937876}},{"ix":114,"action":{"kind":"Deliver","chain":"consumer","numPackets":1},"partialState":{"h":11,"t":66,"consumerPower":[1792,null,null,10500],"outstandingDowntime":[false,false,false,false]}},{"ix":115,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":116,"action":{"kind":"Deliver","chain":"consumer","numPackets":2},"partialState":{"h":11,"t":66,"consumerPower":[1792,null,null,10500],"outstandingDowntime":[false,false,false,false]}},{"ix":117,"action":{"kind":"Undelegate","val":3,"amt":4185},"partialState":{"h":16,"t":96,"tokens":[6912,6045,21120,3325],"delegation":[5912,5045,20120,2325],"delegatorTokens":9999999937876}},{"ix":118,"action":{"kind":"Undelegate","val":1,"amt":1298},"partialState":{"h":16,"t":96,"tokens":[6912,4747,21120,3325],"delegation":[5912,3747,20120,2325],"delegatorTokens":9999999937876}},{"ix":119,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":12,"t":72,"consumerPower":[null,4017,null,3325],"outstandingDowntime":[false,false,false,false]}},{"ix":120,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":121,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":13,"t":78,"consumerPower":[null,4017,null,3325],"outstandingDowntime":[false,false,false,false]}},{"ix":122,"action":{"kind":"Deliver","chain":"provider","numPackets":3},"partialState":{"h":16,"t":96,"tokens":[6912,4747,21120,3325],"delegation":[5912,3747,20120,2325],"delegatorTokens":9999999937876,"jailed":[null,null,1000000000000029,null],"status":["bonded","bonded","unbonding","unbonding"]}},{"ix":123,"action":{"kind":"Deliver","chain":"consumer","numPackets":2},"partialState":{"h":13,"t":78,"consumerPower":[null,4017,null,3325],"outstandingDowntime":[false,false,false,false]}},{"ix":124,"action":{"kind":"Deliver","chain":"provider","numPackets":1},"partialState":{"h":16,"t":96,"tokens":[6912,4747,21120,3325],"delegation":[5912,3747,20120,2325],"delegatorTokens":9999999937876,"jailed":[null,null,1000000000000029,null],"status":["bonded","bonded","unbonding","unbonding"]}},{"ix":125,"action":{"kind":"Undelegate","val":0,"amt":1920},"partialState":{"h":16,"t":96,"tokens":[4992,4747,21120,3325],"delegation":[3992,3747,20120,2325],"delegatorTokens":9999999937876}},{"ix":126,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":127,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":128,"action":{"kind":"Deliver","chain":"provider","numPackets":2},"partialState":{"h":16,"t":96,"tokens":[4992,4747,21120,3325],"delegation":[3992,3747,20120,2325],"delegatorTokens":9999999937876,"jailed":[null,null,1000000000000029,null],"status":["bonded","bonded","unbonding","unbonding"]}},{"ix":129,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":130,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":131,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":17,"t":102,"tokens":[4992,4747,21120,3325],"delegation":[3992,3747,20120,2325],"delegatorTokens":9999999941715,"jailed":[null,null,1000000000000029,null],"status":["bonded","bonded","unbonding","unbonding"]}},{"ix":132,"action":{"kind":"Undelegate","val":0,"amt":2216},"partialState":{"h":17,"t":102,"tokens":[2776,4747,21120,3325],"delegation":[1776,3747,20120,2325],"delegatorTokens":9999999941715}},{"ix":133,"action":{"kind":"Undelegate","val":0,"amt":3391},"partialState":{"h":17,"t":102,"tokens":[2776,4747,21120,3325],"delegation":[1776,3747,20120,2325],"delegatorTokens":9999999941715}},{"ix":134,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":14,"t":84,"consumerPower":[null,4017,null,3325],"outstandingDowntime":[false,false,false,false]}},{"ix":135,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":18,"t":108,"tokens":[2776,4747,21120,3325],"delegation":[1776,3747,20120,2325],"delegatorTokens":9999999941715,"jailed":[null,null,1000000000000029,null],"status":["unbonding","bonded","unbonding","bonded"]}},{"ix":136,"action":{"kind":"Delegate","val":2,"amt":4390},"partialState":{"h":18,"t":108,"tokens":[2776,4747,25510,3325],"delegation":[1776,3747,24510,2325],"delegatorTokens":9999999937325}},{"ix":137,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":15,"t":90,"consumerPower":[null,4017,null,3325],"outstandingDowntime":[false,false,false,false]}},{"ix":138,"action":{"kind":"Delegate","val":3,"amt":2330},"partialState":{"h":18,"t":108,"tokens":[2776,4747,25510,5655],"delegation":[1776,3747,24510,4655],"delegatorTokens":9999999934995}},{"ix":139,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":140,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":16,"t":96,"consumerPower":[null,4017,null,3325],"outstandingDowntime":[false,false,false,false]}},{"ix":141,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":17,"t":102,"consumerPower":[null,4017,null,3325],"outstandingDowntime":[false,false,false,false]}},{"ix":142,"action":{"kind":"Delegate","val":0,"amt":1390},"partialState":{"h":18,"t":108,"tokens":[4166,4747,25510,5655],"delegation":[3166,3747,24510,4655],"delegatorTokens":9999999933605}},{"ix":143,"action":{"kind":"Deliver","chain":"provider","numPackets":3},"partialState":{"h":18,"t":108,"tokens":[4166,4747,25510,5655],"delegation":[3166,3747,24510,4655],"delegatorTokens":9999999933605,"jailed":[null,null,1000000000000029,null],"status":["unbonding","bonded","unbonding","bonded"]}},{"ix":144,"action":{"kind":"Delegate","val":0,"amt":4761},"partialState":{"h":18,"t":108,"tokens":[8927,4747,25510,5655],"delegation":[7927,3747,24510,4655],"delegatorTokens":9999999928844}},{"ix":145,"action":{"kind":"Deliver","chain":"provider","numPackets":6},"partialState":{"h":18,"t":108,"tokens":[8927,4747,25510,5655],"delegation":[7927,3747,24510,4655],"delegatorTokens":9999999928844,"jailed":[null,null,1000000000000029,null],"status":["unbonding","bonded","unbonding","bonded"]}},{"ix":146,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":147,"action":{"kind":"Delegate","val":0,"amt":2265},"partialState":{"h":18,"t":108,"tokens":[11192,4747,25510,5655],"delegation":[10192,3747,24510,4655],"delegatorTokens":9999999926579}},{"ix":148,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":19,"t":114,"tokens":[11192,4747,25510,5655],"delegation":[10192,3747,24510,4655],"delegatorTokens":9999999930672,"jailed":[null,null,1000000000000029,null],"status":["bonded","unbonding","unbonding","bonded"]}},{"ix":149,"action":{"kind":"Deliver","chain":"provider","numPackets":2},"partialState":{"h":19,"t":114,"tokens":[11192,4747,25510,5655],"delegation":[10192,3747,24510,4655],"delegatorTokens":9999999930672,"jailed":[null,null,1000000000000029,null],"status":["bonded","unbonding","unbonding","bonded"]}},{"ix":150,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":20,"t":120,"tokens":[11192,4747,25510,5655],"delegation":[10192,3747,24510,4655],"delegatorTokens":9999999930672,"jailed":[null,null,1000000000000029,null],"status":["bonded","unbonding","unbonded","bonded"]}},{"ix":151,"action":{"kind":"Deliver","chain":"provider","numPackets":4},"partialState":{"h":20,"t":120,"tokens":[11192,4747,25510,5655],"delegation":[10192,3747,24510,4655],"delegatorTokens":9999999930672,"jailed":[null,null,1000000000000029,null],"status":["bonded","unbonding","unbonded","bonded"]}},{"ix":152,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":18,"t":108,"consumerPower":[null,4017,null,3325],"outstandingDowntime":[false,false,false,false]}},{"ix":153,"action":{"kind":"Delegate","val":2,"amt":3560},"partialState":{"h":20,"t":120,"tokens":[11192,4747,29070,5655],"delegation":[10192,3747,28070,4655],"delegatorTokens":9999999927112}},{"ix":154,"action":{"kind":"Delegate","val":0,"amt":4271},"partialState":{"h":20,"t":120,"tokens":[15463,4747,29070,5655],"delegation":[14463,3747,28070,4655],"delegatorTokens":9999999922841}},{"ix":155,"action":{"kind":"Delegate","val":0,"amt":2682},"partialState":{"h":20,"t":120,"tokens":[18145,4747,29070,5655],"delegation":[17145,3747,28070,4655],"delegatorTokens":9999999920159}},{"ix":156,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":21,"t":126,"tokens":[18145,4747,29070,5655],"delegation":[17145,3747,28070,4655],"delegatorTokens":9999999920159,"jailed":[null,null,1000000000000029,null],"status":["bonded","unbonding","unbonded","bonded"]}},{"ix":157,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":19,"t":114,"consumerPower":[null,4017,null,3325],"outstandingDowntime":[false,false,false,false]}},{"ix":158,"action":{"kind":"Undelegate","val":2,"amt":3095},"partialState":{"h":21,"t":126,"tokens":[18145,4747,25975,5655],"delegation":[17145,3747,24975,4655],"delegatorTokens":9999999920159}},{"ix":159,"action":{"kind":"Deliver","chain":"provider","numPackets":4},"partialState":{"h":21,"t":126,"tokens":[18145,4747,25975,5655],"delegation":[17145,3747,24975,4655],"delegatorTokens":9999999920159,"jailed":[null,null,1000000000000029,null],"status":["bonded","unbonding","unbonded","bonded"]}},{"ix":160,"action":{"kind":"Delegate","val":1,"amt":4749},"partialState":{"h":21,"t":126,"tokens":[18145,9496,25975,5655],"delegation":[17145,8496,24975,4655],"delegatorTokens":9999999915410}},{"ix":161,"action":{"kind":"Delegate","val":2,"amt":2731},"partialState":{"h":21,"t":126,"tokens":[18145,9496,28706,5655],"delegation":[17145,8496,27706,4655],"delegatorTokens":9999999912679}},{"ix":162,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":163,"action":{"kind":"Deliver","chain":"provider","numPackets":5},"partialState":{"h":21,"t":126,"tokens":[18145,9496,28706,5655],"delegation":[17145,8496,27706,4655],"delegatorTokens":9999999912679,"jailed":[null,null,1000000000000029,null],"status":["bonded","unbonding","unbonded","bonded"]}},{"ix":164,"action":{"kind":"Undelegate","val":3,"amt":3627},"partialState":{"h":21,"t":126,"tokens":[18145,9496,28706,2028],"delegation":[17145,8496,27706,1028],"delegatorTokens":9999999912679}},{"ix":165,"action":{"kind":"Undelegate","val":2,"amt":1703},"partialState":{"h":21,"t":126,"tokens":[18145,9496,27003,2028],"delegation":[17145,8496,26003,1028],"delegatorTokens":9999999912679}},{"ix":166,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":167,"action":{"kind":"Deliver","chain":"provider","numPackets":1},"partialState":{"h":21,"t":126,"tokens":[18145,9496,27003,2028],"delegation":[17145,8496,26003,1028],"delegatorTokens":9999999912679,"jailed":[null,null,1000000000000029,null],"status":["bonded","unbonding","unbonded","bonded"]}},{"ix":168,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":20,"t":120,"consumerPower":[null,4017,null,3325],"outstandingDowntime":[false,false,false,false]}},{"ix":169,"action":{"kind":"Delegate","val":0,"amt":1556},"partialState":{"h":21,"t":126,"tokens":[19701,9496,27003,2028],"delegation":[18701,8496,26003,1028],"delegatorTokens":9999999911123}},{"ix":170,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":22,"t":132,"tokens":[19701,9496,27003,2028],"delegation":[18701,8496,26003,1028],"delegatorTokens":9999999912826,"jailed":[null,null,1000000000000029,null],"status":["bonded","bonded","unbonded","unbonding"]}},{"ix":171,"action":{"kind":"Undelegate","val":3,"amt":3858},"partialState":{"h":22,"t":132,"tokens":[19701,9496,27003,2028],"delegation":[18701,8496,26003,1028],"delegatorTokens":9999999912826}},{"ix":172,"action":{"kind":"Delegate","val":3,"amt":1445},"partialState":{"h":22,"t":132,"tokens":[19701,9496,27003,3473],"delegation":[18701,8496,26003,2473],"delegatorTokens":9999999911381}},{"ix":173,"action":{"kind":"Undelegate","val":1,"amt":4598},"partialState":{"h":22,"t":132,"tokens":[19701,4898,27003,3473],"delegation":[18701,3898,26003,2473],"delegatorTokens":9999999911381}},{"ix":174,"action":{"kind":"Undelegate","val":3,"amt":3248},"partialState":{"h":22,"t":132,"tokens":[19701,4898,27003,3473],"delegation":[18701,3898,26003,2473],"delegatorTokens":9999999911381}},{"ix":175,"action":{"kind":"Undelegate","val":2,"amt":2017},"partialState":{"h":22,"t":132,"tokens":[19701,4898,24986,3473],"delegation":[18701,3898,23986,2473],"delegatorTokens":9999999911381}},{"ix":176,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":21,"t":126,"consumerPower":[null,4017,null,3325],"outstandingDowntime":[false,false,false,false]}},{"ix":177,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":22,"t":132,"consumerPower":[null,4017,null,3325],"outstandingDowntime":[false,false,false,false]}},{"ix":178,"action":{"kind":"Delegate","val":2,"amt":1302},"partialState":{"h":22,"t":132,"tokens":[19701,4898,26288,3473],"delegation":[18701,3898,25288,2473],"delegatorTokens":9999999910079}},{"ix":179,"action":{"kind":"Deliver","chain":"provider","numPackets":6},"partialState":{"h":22,"t":132,"tokens":[19701,4898,26288,3473],"delegation":[18701,3898,25288,2473],"delegatorTokens":9999999910079,"jailed":[null,null,1000000000000029,null],"status":["bonded","bonded","unbonded","unbonding"]}},{"ix":180,"action":{"kind":"Delegate","val":1,"amt":4484},"partialState":{"h":22,"t":132,"tokens":[19701,9382,26288,3473],"delegation":[18701,8382,25288,2473],"delegatorTokens":9999999905595}},{"ix":181,"action":{"kind":"Delegate","val":0,"amt":1841},"partialState":{"h":22,"t":132,"tokens":[21542,9382,26288,3473],"delegation":[20542,8382,25288,2473],"delegatorTokens":9999999903754}},{"ix":182,"action":{"kind":"Delegate","val":1,"amt":1486},"partialState":{"h":22,"t":132,"tokens":[21542,10868,26288,3473],"delegation":[20542,9868,25288,2473],"delegatorTokens":9999999902268}},{"ix":183,"action":{"kind":"Delegate","val":2,"amt":3344},"partialState":{"h":22,"t":132,"tokens":[21542,10868,29632,3473],"delegation":[20542,9868,28632,2473],"delegatorTokens":9999999898924}},{"ix":184,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":23,"t":138,"tokens":[21542,10868,29632,3473],"delegation":[20542,9868,28632,2473],"delegatorTokens":9999999906408,"jailed":[null,null,1000000000000029,null],"status":["bonded","bonded","unbonded","unbonding"]}},{"ix":185,"action":{"kind":"Deliver","chain":"consumer","numPackets":5},"partialState":{"h":22,"t":132,"consumerPower":[null,4017,null,3325],"outstandingDowntime":[false,false,false,false]}},{"ix":186,"action":{"kind":"Delegate","val":2,"amt":2286},"partialState":{"h":23,"t":138,"tokens":[21542,10868,31918,3473],"delegation":[20542,9868,30918,2473],"delegatorTokens":9999999904122}},{"ix":187,"action":{"kind":"Delegate","val":3,"amt":1075},"partialState":{"h":23,"t":138,"tokens":[21542,10868,31918,4548],"delegation":[20542,9868,30918,3548],"delegatorTokens":9999999903047}},{"ix":188,"action":{"kind":"Delegate","val":1,"amt":3726},"partialState":{"h":23,"t":138,"tokens":[21542,14594,31918,4548],"delegation":[20542,13594,30918,3548],"delegatorTokens":9999999899321}},{"ix":189,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":24,"t":144,"tokens":[21542,14594,31918,4548],"delegation":[20542,13594,30918,3548],"delegatorTokens":9999999899321,"jailed":[null,null,1000000000000029,null],"status":["bonded","bonded","unbonded","unbonding"]}},{"ix":190,"action":{"kind":"Delegate","val":3,"amt":3505},"partialState":{"h":24,"t":144,"tokens":[21542,14594,31918,8053],"delegation":[20542,13594,30918,7053],"delegatorTokens":9999999895816}},{"ix":191,"action":{"kind":"Deliver","chain":"provider","numPackets":2},"partialState":{"h":24,"t":144,"tokens":[21542,14594,31918,8053],"delegation":[20542,13594,30918,7053],"delegatorTokens":9999999895816,"jailed":[null,null,1000000000000029,null],"status":["bonded","bonded","unbonded","unbonding"]}},{"ix":192,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":25,"t":150,"tokens":[21542,14594,31918,8053],"delegation":[20542,13594,30918,7053],"delegatorTokens":9999999895816,"jailed":[null,null,1000000000000029,null],"status":["bonded","bonded","unbonded","unbonding"]}},{"ix":193,"action":{"kind":"Undelegate","val":1,"amt":3167},"partialState":{"h":25,"t":150,"tokens":[21542,11427,31918,8053],"delegation":[20542,10427,30918,7053],"delegatorTokens":9999999895816}},{"ix":194,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":23,"t":138,"consumerPower":[18145,null,null,5655],"outstandingDowntime":[false,false,false,false]}},{"ix":195,"action":{"kind":"Delegate","val":0,"amt":1078},"partialState":{"h":25,"t":150,"tokens":[22620,11427,31918,8053],"delegation":[21620,10427,30918,7053],"delegatorTokens":9999999894738}},{"ix":196,"action":{"kind":"Deliver","chain":"provider","numPackets":4},"partialState":{"h":25,"t":150,"tokens":[22620,11427,31918,8053],"delegation":[21620,10427,30918,7053],"delegatorTokens":9999999894738,"jailed":[null,null,1000000000000029,null],"status":["bonded","bonded","unbonded","unbonding"]}},{"ix":197,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":26,"t":156,"tokens":[22620,11427,31918,8053],"delegation":[21620,10427,30918,7053],"delegatorTokens":9999999900498,"jailed":[null,null,1000000000000029,null],"status":["bonded","bonded","unbonded","unbonding"]}},{"ix":198,"action":{"kind":"Deliver","chain":"provider","numPackets":6},"partialState":{"h":26,"t":156,"tokens":[22620,11427,31918,8053],"delegation":[21620,10427,30918,7053],"delegatorTokens":9999999900498,"jailed":[null,null,1000000000000029,null],"status":["bonded","bonded","unbonded","unbonding"]}},{"ix":199,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}}],"events":["insufficient_shares","more_than_one_third_val_power_change","send_vsc_without_downtime_ack","send_double_sign_slash_request","send_downtime_slash_request","insufficient_shares","consumer_del_val","consumer_add_val","more_than_one_third_val_power_change","send_vsc_without_downtime_ack","send_double_sign_slash_request","receive_double_sign_slash_request","insufficient_shares","send_double_sign_slash_request","more_than_one_third_val_power_change","rebond_unval","receive_downtime_slash_request","jail","send_vsc_with_downtime_ack","rebond_unval","send_vsc_without_downtime_ack","insufficient_shares","receive_downtime_slash_ack","send_double_sign_slash_request","send_double_sign_slash_request","rebond_unval","send_vsc_without_downtime_ack","consumer_update_val","consumer_add_val","consumer_del_val","insufficient_shares","receive_double_sign_slash_request","receive_double_sign_slash_request","send_vsc_without_downtime_ack","insufficient_shares","insufficient_shares","consumer_add_val","consumer_del_val","send_vsc_without_downtime_ack","insufficient_shares","insufficient_shares","send_vsc_without_downtime_ack","consumer_add_val","consumer_del_val","send_vsc_without_downtime_ack","insufficient_shares","some_undels_expired_but_not_completed","send_vsc_without_downtime_ack","receive_double_sign_slash_request","consumer_update_val","consumer_update_val","more_than_one_third_val_power_change","rebond_unval","send_vsc_without_downtime_ack","insufficient_shares","more_than_one_third_val_power_change","rebond_unval","some_undels_expired_but_not_completed","send_vsc_without_downtime_ack","consumer_update_val","consumer_update_val","insufficient_shares","consumer_send_maturation","consumer_del_val","consumer_add_val","consumer_update_val","receive_double_sign_slash_request","complete_undel_immediate","send_vsc_without_downtime_ack","insufficient_shares","more_than_one_third_val_power_change","rebond_unval","some_undels_expired_but_not_completed","send_vsc_without_downtime_ack","consumer_send_maturation","consumer_send_maturation","consumer_send_maturation","more_than_one_third_val_power_change","rebond_unval","complete_undel_immediate","complete_undel_immediate","set_unval_hold_false","send_vsc_without_downtime_ack","complete_unval_in_endblock","some_undels_expired_but_not_completed","consumer_send_maturation","some_undels_expired_but_not_completed","send_vsc_without_downtime_ack","consumer_send_maturation","consumer_send_maturation","consumer_send_maturation","consumer_send_maturation","consumer_send_maturation","rebond_unval","some_undels_expired_but_not_completed","complete_undel_immediate","send_vsc_without_downtime_ack","insufficient_shares","insufficient_shares","consumer_send_maturation","complete_undel_immediate","complete_undel_immediate","set_undel_hold_false","set_undel_hold_false","set_undel_hold_false","set_undel_hold_false","set_undel_hold_false","set_undel_hold_false","send_vsc_without_downtime_ack","send_vsc_without_downtime_ack","consumer_add_val","consumer_update_val","consumer_del_val","complete_undel_in_endblock","send_vsc_without_downtime_ack"]},{"meta":{"commit":"7ffd0c04e4205cbc9caf212abfe6c59ee43153bf"},"constants":{"P":"provider","C":"consumer","UNBONDING_SECONDS_P":70,"UNBONDING_SECONDS_C":50,"TRUSTING_SECONDS":49,"NUM_VALIDATORS":4,"MAX_VALIDATORS":2,"SLASH_DOUBLESIGN":0,"SLASH_DOWNTIME":0,"JAIL_SECONDS":999999999999999,"BLOCK_SECONDS":6,"INITIAL_DELEGATOR_TOKENS":10000000000000,"DELEGATE_AMT_MIN":1000,"DELEGATE_AMT_MAX":5000,"UNDELEGATE_AMT_MIN":1000,"UNDELEGATE_AMT_MAX":5000,"ISDOWNTIME_PROBABILITY":0.5,"MAX_NUM_PACKETS_FOR_DELIVER":6},"actions":[{"ix":0,"action":{"kind":"Undelegate","val":3,"amt":3475},"partialState":{"h":1,"t":6,"tokens":[5000,4000,3000,2000],"delegation":[4000,3000,2000,1000],"delegatorTokens":10000000000000}},{"ix":1,"action":{"kind":"Deliver","chain":"consumer","numPackets":4},"partialState":{"h":1,"t":6,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":2,"action":{"kind":"Delegate","val":2,"amt":2392},"partialState":{"h":1,"t":6,"tokens":[5000,4000,5392,2000],"delegation":[4000,3000,4392,1000],"delegatorTokens":9999999997608}},{"ix":3,"action":{"kind":"ConsumerSlash","val":0,"infractionHeight":0,"isDowntime":true},"partialState":{"h":1,"t":6,"outstandingDowntime":[true,false,false,false]}},{"ix":4,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":5,"action":{"kind":"ConsumerSlash","val":2,"infractionHeight":0,"isDowntime":true},"partialState":{"h":1,"t":6,"outstandingDowntime":[true,false,true,false]}},{"ix":6,"action":{"kind":"Deliver","chain":"provider","numPackets":6},"partialState":{"h":1,"t":6,"tokens":[5000,4000,5392,2000],"delegation":[4000,3000,4392,1000],"delegatorTokens":9999999997608,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":7,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":2,"t":12,"tokens":[5000,4000,5392,2000],"delegation":[4000,3000,4392,1000],"delegatorTokens":9999999997608,"jailed":[null,null,null,null],"status":["bonded","unbonding","bonded","unbonded"]}},{"ix":8,"action":{"kind":"Undelegate","val":2,"amt":2612},"partialState":{"h":2,"t":12,"tokens":[5000,4000,2780,2000],"delegation":[4000,3000,1780,1000],"delegatorTokens":9999999997608}},{"ix":9,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":10,"action":{"kind":"Delegate","val":1,"amt":4169},"partialState":{"h":2,"t":12,"tokens":[5000,8169,2780,2000],"delegation":[4000,7169,1780,1000],"delegatorTokens":9999999993439}},{"ix":11,"action":{"kind":"Deliver","chain":"provider","numPackets":6},"partialState":{"h":2,"t":12,"tokens":[5000,8169,2780,2000],"delegation":[4000,7169,1780,1000],"delegatorTokens":9999999993439,"jailed":[null,null,null,null],"status":["bonded","unbonding","bonded","unbonded"]}},{"ix":12,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":2,"t":12,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[true,false,true,false]}},{"ix":13,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":14,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":15,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":16,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":3,"t":18,"tokens":[5000,8169,2780,2000],"delegation":[4000,7169,1780,1000],"delegatorTokens":9999999993439,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonding","unbonded"]}},{"ix":17,"action":{"kind":"Deliver","chain":"consumer","numPackets":6},"partialState":{"h":2,"t":12,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[true,false,true,false]}},{"ix":18,"action":{"kind":"Undelegate","val":0,"amt":3231},"partialState":{"h":3,"t":18,"tokens":[1769,8169,2780,2000],"delegation":[769,7169,1780,1000],"delegatorTokens":9999999993439}},{"ix":19,"action":{"kind":"ConsumerSlash","val":2,"infractionHeight":1,"isDowntime":true},"partialState":{"h":2,"t":12,"outstandingDowntime":[true,false,true,false]}},{"ix":20,"action":{"kind":"Undelegate","val":2,"amt":1505},"partialState":{"h":3,"t":18,"tokens":[1769,8169,1275,2000],"delegation":[769,7169,275,1000],"delegatorTokens":9999999993439}},{"ix":21,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":4,"t":24,"tokens":[1769,8169,1275,2000],"delegation":[769,7169,275,1000],"delegatorTokens":9999999993439,"jailed":[null,null,null,null],"status":["unbonding","bonded","unbonding","bonded"]}},{"ix":22,"action":{"kind":"Undelegate","val":1,"amt":4857},"partialState":{"h":4,"t":24,"tokens":[1769,3312,1275,2000],"delegation":[769,2312,275,1000],"delegatorTokens":9999999993439}},{"ix":23,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":24,"action":{"kind":"Undelegate","val":0,"amt":2490},"partialState":{"h":4,"t":24,"tokens":[1769,3312,1275,2000],"delegation":[769,2312,275,1000],"delegatorTokens":9999999993439}},{"ix":25,"action":{"kind":"Undelegate","val":3,"amt":2974},"partialState":{"h":4,"t":24,"tokens":[1769,3312,1275,2000],"delegation":[769,2312,275,1000],"delegatorTokens":9999999993439}},{"ix":26,"action":{"kind":"ConsumerSlash","val":0,"infractionHeight":1,"isDowntime":false},"partialState":{"h":2,"t":12,"outstandingDowntime":[true,false,true,false]}},{"ix":27,"action":{"kind":"Delegate","val":1,"amt":1673},"partialState":{"h":4,"t":24,"tokens":[1769,4985,1275,2000],"delegation":[769,3985,275,1000],"delegatorTokens":9999999991766}},{"ix":28,"action":{"kind":"Undelegate","val":1,"amt":3657},"partialState":{"h":4,"t":24,"tokens":[1769,1328,1275,2000],"delegation":[769,328,275,1000],"delegatorTokens":9999999991766}},{"ix":29,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":3,"t":18,"consumerPower":[5000,null,5392,null],"outstandingDowntime":[true,false,true,false]}},{"ix":30,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":5,"t":30,"tokens":[1769,1328,1275,2000],"delegation":[769,328,275,1000],"delegatorTokens":9999999991766,"jailed":[null,null,null,null],"status":["bonded","unbonding","unbonding","bonded"]}},{"ix":31,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":32,"action":{"kind":"ConsumerSlash","val":0,"infractionHeight":2,"isDowntime":true},"partialState":{"h":3,"t":18,"outstandingDowntime":[true,false,true,false]}},{"ix":33,"action":{"kind":"Delegate","val":2,"amt":4259},"partialState":{"h":5,"t":30,"tokens":[1769,1328,5534,2000],"delegation":[769,328,4534,1000],"delegatorTokens":9999999987507}},{"ix":34,"action":{"kind":"Delegate","val":1,"amt":4779},"partialState":{"h":5,"t":30,"tokens":[1769,6107,5534,2000],"delegation":[769,5107,4534,1000],"delegatorTokens":9999999982728}},{"ix":35,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":36,"action":{"kind":"Delegate","val":0,"amt":1722},"partialState":{"h":5,"t":30,"tokens":[3491,6107,5534,2000],"delegation":[2491,5107,4534,1000],"delegatorTokens":9999999981006}},{"ix":37,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":4,"t":24,"consumerPower":[5000,null,5392,null],"outstandingDowntime":[true,false,true,false]}},{"ix":38,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":6,"t":36,"tokens":[3491,6107,5534,2000],"delegation":[2491,5107,4534,1000],"delegatorTokens":9999999981006,"jailed":[null,null,null,null],"status":["unbonding","bonded","bonded","unbonding"]}},{"ix":39,"action":{"kind":"Delegate","val":0,"amt":2848},"partialState":{"h":6,"t":36,"tokens":[6339,6107,5534,2000],"delegation":[5339,5107,4534,1000],"delegatorTokens":9999999978158}},{"ix":40,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":7,"t":42,"tokens":[6339,6107,5534,2000],"delegation":[5339,5107,4534,1000],"delegatorTokens":9999999978158,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonding","unbonding"]}},{"ix":41,"action":{"kind":"Delegate","val":1,"amt":2527},"partialState":{"h":7,"t":42,"tokens":[6339,8634,5534,2000],"delegation":[5339,7634,4534,1000],"delegatorTokens":9999999975631}},{"ix":42,"action":{"kind":"ConsumerSlash","val":3,"infractionHeight":0,"isDowntime":false},"partialState":{"h":4,"t":24,"outstandingDowntime":[true,false,true,false]}},{"ix":43,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":5,"t":30,"consumerPower":[5000,null,5392,null],"outstandingDowntime":[true,false,true,false]}},{"ix":44,"action":{"kind":"Delegate","val":2,"amt":1430},"partialState":{"h":7,"t":42,"tokens":[6339,8634,6964,2000],"delegation":[5339,7634,5964,1000],"delegatorTokens":9999999974201}},{"ix":45,"action":{"kind":"Undelegate","val":3,"amt":1293},"partialState":{"h":7,"t":42,"tokens":[6339,8634,6964,2000],"delegation":[5339,7634,5964,1000],"delegatorTokens":9999999974201}},{"ix":46,"action":{"kind":"Undelegate","val":1,"amt":4678},"partialState":{"h":7,"t":42,"tokens":[6339,3956,6964,2000],"delegation":[5339,2956,5964,1000],"delegatorTokens":9999999974201}},{"ix":47,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":48,"action":{"kind":"Deliver","chain":"consumer","numPackets":5},"partialState":{"h":5,"t":30,"consumerPower":[5000,null,5392,null],"outstandingDowntime":[true,false,true,false]}},{"ix":49,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":8,"t":48,"tokens":[6339,3956,6964,2000],"delegation":[5339,2956,5964,1000],"delegatorTokens":9999999974201,"jailed":[null,null,null,null],"status":["bonded","unbonding","bonded","unbonding"]}},{"ix":50,"action":{"kind":"Undelegate","val":0,"amt":4693},"partialState":{"h":8,"t":48,"tokens":[1646,3956,6964,2000],"delegation":[646,2956,5964,1000],"delegatorTokens":9999999974201}},{"ix":51,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":9,"t":54,"tokens":[1646,3956,6964,2000],"delegation":[646,2956,5964,1000],"delegatorTokens":9999999974201,"jailed":[null,null,null,null],"status":["unbonding","bonded","bonded","unbonding"]}},{"ix":52,"action":{"kind":"Undelegate","val":0,"amt":1854},"partialState":{"h":9,"t":54,"tokens":[1646,3956,6964,2000],"delegation":[646,2956,5964,1000],"delegatorTokens":9999999974201}},{"ix":53,"action":{"kind":"Undelegate","val":2,"amt":4287},"partialState":{"h":9,"t":54,"tokens":[1646,3956,2677,2000],"delegation":[646,2956,1677,1000],"delegatorTokens":9999999974201}},{"ix":54,"action":{"kind":"Delegate","val":1,"amt":4702},"partialState":{"h":9,"t":54,"tokens":[1646,8658,2677,2000],"delegation":[646,7658,1677,1000],"delegatorTokens":9999999969499}},{"ix":55,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":10,"t":60,"tokens":[1646,8658,2677,2000],"delegation":[646,7658,1677,1000],"delegatorTokens":9999999969499,"jailed":[null,null,null,null],"status":["unbonding","bonded","bonded","unbonding"]}},{"ix":56,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":57,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":58,"action":{"kind":"Undelegate","val":1,"amt":3238},"partialState":{"h":10,"t":60,"tokens":[1646,5420,2677,2000],"delegation":[646,4420,1677,1000],"delegatorTokens":9999999969499}},{"ix":59,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":11,"t":66,"tokens":[1646,5420,2677,2000],"delegation":[646,4420,1677,1000],"delegatorTokens":9999999969499,"jailed":[null,null,null,null],"status":["unbonding","bonded","bonded","unbonding"]}},{"ix":60,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":61,"action":{"kind":"Deliver","chain":"provider","numPackets":2},"partialState":{"h":11,"t":66,"tokens":[1646,5420,2677,2000],"delegation":[646,4420,1677,1000],"delegatorTokens":9999999969499,"jailed":[null,null,null,null],"status":["unbonding","bonded","bonded","unbonding"]}},{"ix":62,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":63,"action":{"kind":"Delegate","val":0,"amt":1625},"partialState":{"h":11,"t":66,"tokens":[3271,5420,2677,2000],"delegation":[2271,4420,1677,1000],"delegatorTokens":9999999967874}},{"ix":64,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":12,"t":72,"tokens":[3271,5420,2677,2000],"delegation":[2271,4420,1677,1000],"delegatorTokens":9999999967874,"jailed":[1000000000000065,null,1000000000000065,null],"status":["bonded","bonded","unbonding","unbonding"]}},{"ix":65,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":6,"t":36,"consumerPower":[null,6107,5534,null],"outstandingDowntime":[true,false,true,false]}},{"ix":66,"action":{"kind":"Undelegate","val":1,"amt":2904},"partialState":{"h":12,"t":72,"tokens":[3271,2516,2677,2000],"delegation":[2271,1516,1677,1000],"delegatorTokens":9999999967874}},{"ix":67,"action":{"kind":"Deliver","chain":"consumer","numPackets":4},"partialState":{"h":6,"t":36,"consumerPower":[null,6107,5534,null],"outstandingDowntime":[true,false,true,false]}},{"ix":68,"action":{"kind":"Undelegate","val":1,"amt":2404},"partialState":{"h":12,"t":72,"tokens":[3271,2516,2677,2000],"delegation":[2271,1516,1677,1000],"delegatorTokens":9999999967874}},{"ix":69,"action":{"kind":"Deliver","chain":"provider","numPackets":4},"partialState":{"h":12,"t":72,"tokens":[3271,2516,2677,2000],"delegation":[2271,1516,1677,1000],"delegatorTokens":9999999967874,"jailed":[1000000000000065,null,1000000000000065,null],"status":["bonded","bonded","unbonding","unbonding"]}},{"ix":70,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":7,"t":42,"consumerPower":[null,8658,2677,null],"outstandingDowntime":[true,false,true,false]}},{"ix":71,"action":{"kind":"Delegate","val":0,"amt":3524},"partialState":{"h":12,"t":72,"tokens":[6795,2516,2677,2000],"delegation":[5795,1516,1677,1000],"delegatorTokens":9999999964350}},{"ix":72,"action":{"kind":"Deliver","chain":"provider","numPackets":6},"partialState":{"h":12,"t":72,"tokens":[6795,2516,2677,2000],"delegation":[5795,1516,1677,1000],"delegatorTokens":9999999964350,"jailed":[1000000000000065,null,1000000000000065,null],"status":["bonded","bonded","unbonding","unbonding"]}},{"ix":73,"action":{"kind":"Deliver","chain":"consumer","numPackets":1},"partialState":{"h":7,"t":42,"consumerPower":[null,8658,2677,null],"outstandingDowntime":[true,false,true,false]}},{"ix":74,"action":{"kind":"Deliver","chain":"consumer","numPackets":3},"partialState":{"h":7,"t":42,"consumerPower":[null,8658,2677,null],"outstandingDowntime":[true,false,true,false]}},{"ix":75,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":8,"t":48,"consumerPower":[null,5420,2677,null],"outstandingDowntime":[true,false,true,false]}},{"ix":76,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":77,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":78,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":79,"action":{"kind":"Delegate","val":1,"amt":1423},"partialState":{"h":12,"t":72,"tokens":[6795,3939,2677,2000],"delegation":[5795,2939,1677,1000],"delegatorTokens":9999999962927}},{"ix":80,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":81,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":9,"t":54,"consumerPower":[null,5420,2677,null],"outstandingDowntime":[true,false,true,false]}},{"ix":82,"action":{"kind":"Delegate","val":3,"amt":1286},"partialState":{"h":12,"t":72,"tokens":[6795,3939,2677,3286],"delegation":[5795,2939,1677,2286],"delegatorTokens":9999999961641}},{"ix":83,"action":{"kind":"Undelegate","val":2,"amt":2874},"partialState":{"h":12,"t":72,"tokens":[6795,3939,2677,3286],"delegation":[5795,2939,1677,2286],"delegatorTokens":9999999961641}},{"ix":84,"action":{"kind":"Delegate","val":1,"amt":2170},"partialState":{"h":12,"t":72,"tokens":[6795,6109,2677,3286],"delegation":[5795,5109,1677,2286],"delegatorTokens":9999999959471}},{"ix":85,"action":{"kind":"Delegate","val":2,"amt":3395},"partialState":{"h":12,"t":72,"tokens":[6795,6109,6072,3286],"delegation":[5795,5109,5072,2286],"delegatorTokens":9999999956076}},{"ix":86,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":10,"t":60,"consumerPower":[null,5420,2677,null],"outstandingDowntime":[true,false,true,false]}},{"ix":87,"action":{"kind":"Delegate","val":2,"amt":3136},"partialState":{"h":12,"t":72,"tokens":[6795,6109,9208,3286],"delegation":[5795,5109,8208,2286],"delegatorTokens":9999999952940}},{"ix":88,"action":{"kind":"Undelegate","val":1,"amt":1242},"partialState":{"h":12,"t":72,"tokens":[6795,4867,9208,3286],"delegation":[5795,3867,8208,2286],"delegatorTokens":9999999952940}},{"ix":89,"action":{"kind":"Deliver","chain":"provider","numPackets":6},"partialState":{"h":12,"t":72,"tokens":[6795,4867,9208,3286],"delegation":[5795,3867,8208,2286],"delegatorTokens":9999999952940,"jailed":[1000000000000065,null,1000000000000065,null],"status":["bonded","bonded","unbonding","unbonding"]}},{"ix":90,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":11,"t":66,"consumerPower":[null,5420,2677,null],"outstandingDowntime":[true,false,true,false]}},{"ix":91,"action":{"kind":"Deliver","chain":"consumer","numPackets":4},"partialState":{"h":11,"t":66,"consumerPower":[null,5420,2677,null],"outstandingDowntime":[true,false,true,false]}},{"ix":92,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":13,"t":78,"tokens":[6795,4867,9208,3286],"delegation":[5795,3867,8208,2286],"delegatorTokens":9999999952940,"jailed":[1000000000000065,null,1000000000000065,null],"status":["unbonding","bonded","unbonding","bonded"]}},{"ix":93,"action":{"kind":"Deliver","chain":"consumer","numPackets":4},"partialState":{"h":11,"t":66,"consumerPower":[null,5420,2677,null],"outstandingDowntime":[false,false,false,false]}},{"ix":94,"action":{"kind":"Delegate","val":2,"amt":3933},"partialState":{"h":13,"t":78,"tokens":[6795,4867,13141,3286],"delegation":[5795,3867,12141,2286],"delegatorTokens":9999999949007}},{"ix":95,"action":{"kind":"Delegate","val":0,"amt":3353},"partialState":{"h":13,"t":78,"tokens":[10148,4867,13141,3286],"delegation":[9148,3867,12141,2286],"delegatorTokens":9999999945654}},{"ix":96,"action":{"kind":"Delegate","val":2,"amt":2641},"partialState":{"h":13,"t":78,"tokens":[10148,4867,15782,3286],"delegation":[9148,3867,14782,2286],"delegatorTokens":9999999943013}},{"ix":97,"action":{"kind":"Delegate","val":3,"amt":2710},"partialState":{"h":13,"t":78,"tokens":[10148,4867,15782,5996],"delegation":[9148,3867,14782,4996],"delegatorTokens":9999999940303}},{"ix":98,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":99,"action":{"kind":"Deliver","chain":"provider","numPackets":6},"partialState":{"h":13,"t":78,"tokens":[10148,4867,15782,5996],"delegation":[9148,3867,14782,4996],"delegatorTokens":9999999940303,"jailed":[1000000000000065,null,1000000000000065,null],"status":["unbonding","bonded","unbonding","bonded"]}},{"ix":100,"action":{"kind":"Deliver","chain":"provider","numPackets":6},"partialState":{"h":13,"t":78,"tokens":[10148,4867,15782,5996],"delegation":[9148,3867,14782,4996],"delegatorTokens":9999999940303,"jailed":[1000000000000065,null,1000000000000065,null],"status":["unbonding","bonded","unbonding","bonded"]}},{"ix":101,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":14,"t":84,"tokens":[10148,4867,15782,5996],"delegation":[9148,3867,14782,4996],"delegatorTokens":9999999940303,"jailed":[1000000000000065,null,1000000000000065,null],"status":["unbonding","bonded","unbonding","bonded"]}},{"ix":102,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":103,"action":{"kind":"Deliver","chain":"provider","numPackets":6},"partialState":{"h":14,"t":84,"tokens":[10148,4867,15782,5996],"delegation":[9148,3867,14782,4996],"delegatorTokens":9999999940303,"jailed":[1000000000000065,null,1000000000000065,null],"status":["unbonding","bonded","unbonding","bonded"]}},{"ix":104,"action":{"kind":"Deliver","chain":"consumer","numPackets":2},"partialState":{"h":11,"t":66,"consumerPower":[null,5420,2677,null],"outstandingDowntime":[false,false,false,false]}},{"ix":105,"action":{"kind":"Deliver","chain":"provider","numPackets":6},"partialState":{"h":14,"t":84,"tokens":[10148,4867,15782,5996],"delegation":[9148,3867,14782,4996],"delegatorTokens":9999999940303,"jailed":[1000000000000065,null,1000000000000065,null],"status":["unbonding","bonded","unbonding","bonded"]}},{"ix":106,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":107,"action":{"kind":"Deliver","chain":"provider","numPackets":3},"partialState":{"h":14,"t":84,"tokens":[10148,4867,15782,5996],"delegation":[9148,3867,14782,4996],"delegatorTokens":9999999940303,"jailed":[1000000000000065,null,1000000000000065,null],"status":["unbonding","bonded","unbonding","bonded"]}},{"ix":108,"action":{"kind":"Delegate","val":1,"amt":2410},"partialState":{"h":14,"t":84,"tokens":[10148,7277,15782,5996],"delegation":[9148,6277,14782,4996],"delegatorTokens":9999999937893}},{"ix":109,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":110,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":12,"t":72,"consumerPower":[null,4867,null,3286],"outstandingDowntime":[false,false,false,false]}},{"ix":111,"action":{"kind":"Delegate","val":3,"amt":4200},"partialState":{"h":14,"t":84,"tokens":[10148,7277,15782,10196],"delegation":[9148,6277,14782,9196],"delegatorTokens":9999999933693}},{"ix":112,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":13,"t":78,"consumerPower":[null,4867,null,3286],"outstandingDowntime":[false,false,false,false]}},{"ix":113,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":114,"action":{"kind":"Delegate","val":0,"amt":2024},"partialState":{"h":14,"t":84,"tokens":[12172,7277,15782,10196],"delegation":[11172,6277,14782,9196],"delegatorTokens":9999999931669}},{"ix":115,"action":{"kind":"Deliver","chain":"consumer","numPackets":3},"partialState":{"h":13,"t":78,"consumerPower":[null,4867,null,3286],"outstandingDowntime":[false,false,false,false]}},{"ix":116,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":15,"t":90,"tokens":[12172,7277,15782,10196],"delegation":[11172,6277,14782,9196],"delegatorTokens":9999999931669,"jailed":[1000000000000065,null,1000000000000065,null],"status":["unbonding","bonded","unbonding","bonded"]}},{"ix":117,"action":{"kind":"Undelegate","val":0,"amt":4956},"partialState":{"h":15,"t":90,"tokens":[7216,7277,15782,10196],"delegation":[6216,6277,14782,9196],"delegatorTokens":9999999931669}},{"ix":118,"action":{"kind":"Delegate","val":3,"amt":2333},"partialState":{"h":15,"t":90,"tokens":[7216,7277,15782,12529],"delegation":[6216,6277,14782,11529],"delegatorTokens":9999999929336}},{"ix":119,"action":{"kind":"Undelegate","val":3,"amt":1077},"partialState":{"h":15,"t":90,"tokens":[7216,7277,15782,11452],"delegation":[6216,6277,14782,10452],"delegatorTokens":9999999929336}},{"ix":120,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":16,"t":96,"tokens":[7216,7277,15782,11452],"delegation":[6216,6277,14782,10452],"delegatorTokens":9999999929336,"jailed":[1000000000000065,null,1000000000000065,null],"status":["unbonding","bonded","unbonding","bonded"]}},{"ix":121,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":122,"action":{"kind":"Deliver","chain":"consumer","numPackets":1},"partialState":{"h":13,"t":78,"consumerPower":[null,4867,null,3286],"outstandingDowntime":[false,false,false,false]}},{"ix":123,"action":{"kind":"Deliver","chain":"consumer","numPackets":6},"partialState":{"h":13,"t":78,"consumerPower":[null,4867,null,3286],"outstandingDowntime":[false,false,false,false]}},{"ix":124,"action":{"kind":"Undelegate","val":3,"amt":2010},"partialState":{"h":16,"t":96,"tokens":[7216,7277,15782,9442],"delegation":[6216,6277,14782,8442],"delegatorTokens":9999999929336}},{"ix":125,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":126,"action":{"kind":"Delegate","val":1,"amt":4573},"partialState":{"h":16,"t":96,"tokens":[7216,11850,15782,9442],"delegation":[6216,10850,14782,8442],"delegatorTokens":9999999924763}},{"ix":127,"action":{"kind":"Undelegate","val":1,"amt":3922},"partialState":{"h":16,"t":96,"tokens":[7216,7928,15782,9442],"delegation":[6216,6928,14782,8442],"delegatorTokens":9999999924763}},{"ix":128,"action":{"kind":"Deliver","chain":"provider","numPackets":4},"partialState":{"h":16,"t":96,"tokens":[7216,7928,15782,9442],"delegation":[6216,6928,14782,8442],"delegatorTokens":9999999924763,"jailed":[1000000000000065,null,1000000000000065,null],"status":["unbonding","bonded","unbonding","bonded"]}},{"ix":129,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":130,"action":{"kind":"Deliver","chain":"provider","numPackets":6},"partialState":{"h":16,"t":96,"tokens":[7216,7928,15782,9442],"delegation":[6216,6928,14782,8442],"delegatorTokens":9999999924763,"jailed":[1000000000000065,null,1000000000000065,null],"status":["unbonding","bonded","unbonding","bonded"]}},{"ix":131,"action":{"kind":"Deliver","chain":"provider","numPackets":4},"partialState":{"h":16,"t":96,"tokens":[7216,7928,15782,9442],"delegation":[6216,6928,14782,8442],"delegatorTokens":9999999924763,"jailed":[1000000000000065,null,1000000000000065,null],"status":["unbonding","bonded","unbonding","bonded"]}},{"ix":132,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":14,"t":84,"consumerPower":[null,7277,null,10196],"outstandingDowntime":[false,false,false,false]}},{"ix":133,"action":{"kind":"Undelegate","val":0,"amt":1228},"partialState":{"h":16,"t":96,"tokens":[5988,7928,15782,9442],"delegation":[4988,6928,14782,8442],"delegatorTokens":9999999924763}},{"ix":134,"action":{"kind":"Delegate","val":2,"amt":2118},"partialState":{"h":16,"t":96,"tokens":[5988,7928,17900,9442],"delegation":[4988,6928,16900,8442],"delegatorTokens":9999999922645}},{"ix":135,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":15,"t":90,"consumerPower":[null,7277,null,10196],"outstandingDowntime":[false,false,false,false]}},{"ix":136,"action":{"kind":"Delegate","val":0,"amt":2922},"partialState":{"h":16,"t":96,"tokens":[8910,7928,17900,9442],"delegation":[7910,6928,16900,8442],"delegatorTokens":9999999919723}},{"ix":137,"action":{"kind":"Delegate","val":0,"amt":1799},"partialState":{"h":16,"t":96,"tokens":[10709,7928,17900,9442],"delegation":[9709,6928,16900,8442],"delegatorTokens":9999999917924}},{"ix":138,"action":{"kind":"Undelegate","val":3,"amt":2921},"partialState":{"h":16,"t":96,"tokens":[10709,7928,17900,6521],"delegation":[9709,6928,16900,5521],"delegatorTokens":9999999917924}},{"ix":139,"action":{"kind":"Undelegate","val":0,"amt":1514},"partialState":{"h":16,"t":96,"tokens":[9195,7928,17900,6521],"delegation":[8195,6928,16900,5521],"delegatorTokens":9999999917924}},{"ix":140,"action":{"kind":"Undelegate","val":1,"amt":1091},"partialState":{"h":16,"t":96,"tokens":[9195,6837,17900,6521],"delegation":[8195,5837,16900,5521],"delegatorTokens":9999999917924}},{"ix":141,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":17,"t":102,"tokens":[9195,6837,17900,6521],"delegation":[8195,5837,16900,5521],"delegatorTokens":9999999917924,"jailed":[1000000000000065,null,1000000000000065,null],"status":["unbonding","bonded","unbonding","bonded"]}},{"ix":142,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":16,"t":96,"consumerPower":[null,7277,null,10196],"outstandingDowntime":[false,false,false,false]}},{"ix":143,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":144,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":145,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":17,"t":102,"consumerPower":[null,7277,null,10196],"outstandingDowntime":[false,false,false,false]}},{"ix":146,"action":{"kind":"Deliver","chain":"provider","numPackets":2},"partialState":{"h":17,"t":102,"tokens":[9195,6837,17900,6521],"delegation":[8195,5837,16900,5521],"delegatorTokens":9999999917924,"jailed":[1000000000000065,null,1000000000000065,null],"status":["unbonding","bonded","unbonding","bonded"]}},{"ix":147,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":18,"t":108,"tokens":[9195,6837,17900,6521],"delegation":[8195,5837,16900,5521],"delegatorTokens":9999999925272,"jailed":[1000000000000065,null,1000000000000065,null],"status":["unbonding","bonded","unbonding","bonded"]}},{"ix":148,"action":{"kind":"Delegate","val":1,"amt":2622},"partialState":{"h":18,"t":108,"tokens":[9195,9459,17900,6521],"delegation":[8195,8459,16900,5521],"delegatorTokens":9999999922650}},{"ix":149,"action":{"kind":"Delegate","val":1,"amt":1080},"partialState":{"h":18,"t":108,"tokens":[9195,10539,17900,6521],"delegation":[8195,9539,16900,5521],"delegatorTokens":9999999921570}},{"ix":150,"action":{"kind":"Deliver","chain":"consumer","numPackets":1},"partialState":{"h":17,"t":102,"consumerPower":[null,7277,null,10196],"outstandingDowntime":[false,false,false,false]}},{"ix":151,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":152,"action":{"kind":"Deliver","chain":"consumer","numPackets":3},"partialState":{"h":17,"t":102,"consumerPower":[null,7277,null,10196],"outstandingDowntime":[false,false,false,false]}},{"ix":153,"action":{"kind":"Undelegate","val":1,"amt":4235},"partialState":{"h":18,"t":108,"tokens":[9195,6304,17900,6521],"delegation":[8195,5304,16900,5521],"delegatorTokens":9999999921570}},{"ix":154,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":19,"t":114,"tokens":[9195,6304,17900,6521],"delegation":[8195,5304,16900,5521],"delegatorTokens":9999999921570,"jailed":[1000000000000065,null,1000000000000065,null],"status":["unbonding","bonded","unbonding","bonded"]}},{"ix":155,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":156,"action":{"kind":"Undelegate","val":1,"amt":3144},"partialState":{"h":19,"t":114,"tokens":[9195,3160,17900,6521],"delegation":[8195,2160,16900,5521],"delegatorTokens":9999999921570}},{"ix":157,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":18,"t":108,"consumerPower":[null,6837,null,6521],"outstandingDowntime":[false,false,false,false]}},{"ix":158,"action":{"kind":"Undelegate","val":2,"amt":1437},"partialState":{"h":19,"t":114,"tokens":[9195,3160,16463,6521],"delegation":[8195,2160,15463,5521],"delegatorTokens":9999999921570}},{"ix":159,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":20,"t":120,"tokens":[9195,3160,16463,6521],"delegation":[8195,2160,15463,5521],"delegatorTokens":9999999921570,"jailed":[1000000000000065,null,1000000000000065,null],"status":["unbonding","bonded","unbonding","bonded"]}},{"ix":160,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":161,"action":{"kind":"Deliver","chain":"consumer","numPackets":2},"partialState":{"h":18,"t":108,"consumerPower":[null,6837,null,6521],"outstandingDowntime":[false,false,false,false]}},{"ix":162,"action":{"kind":"Deliver","chain":"consumer","numPackets":1},"partialState":{"h":18,"t":108,"consumerPower":[null,6837,null,6521],"outstandingDowntime":[false,false,false,false]}},{"ix":163,"action":{"kind":"Delegate","val":3,"amt":2875},"partialState":{"h":20,"t":120,"tokens":[9195,3160,16463,9396],"delegation":[8195,2160,15463,8396],"delegatorTokens":9999999918695}},{"ix":164,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":19,"t":114,"consumerPower":[null,6304,null,6521],"outstandingDowntime":[false,false,false,false]}},{"ix":165,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":166,"action":{"kind":"Undelegate","val":2,"amt":2384},"partialState":{"h":20,"t":120,"tokens":[9195,3160,14079,9396],"delegation":[8195,2160,13079,8396],"delegatorTokens":9999999918695}},{"ix":167,"action":{"kind":"Deliver","chain":"provider","numPackets":3},"partialState":{"h":20,"t":120,"tokens":[9195,3160,14079,9396],"delegation":[8195,2160,13079,8396],"delegatorTokens":9999999918695,"jailed":[1000000000000065,null,1000000000000065,null],"status":["unbonding","bonded","unbonding","bonded"]}},{"ix":168,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":169,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":20,"t":120,"consumerPower":[null,6304,null,6521],"outstandingDowntime":[false,false,false,false]}},{"ix":170,"action":{"kind":"Undelegate","val":0,"amt":4088},"partialState":{"h":20,"t":120,"tokens":[5107,3160,14079,9396],"delegation":[4107,2160,13079,8396],"delegatorTokens":9999999918695}},{"ix":171,"action":{"kind":"Undelegate","val":1,"amt":4909},"partialState":{"h":20,"t":120,"tokens":[5107,3160,14079,9396],"delegation":[4107,2160,13079,8396],"delegatorTokens":9999999918695}},{"ix":172,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":173,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":174,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":175,"action":{"kind":"Delegate","val":2,"amt":1484},"partialState":{"h":20,"t":120,"tokens":[5107,3160,15563,9396],"delegation":[4107,2160,14563,8396],"delegatorTokens":9999999917211}},{"ix":176,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":177,"action":{"kind":"Undelegate","val":1,"amt":1855},"partialState":{"h":20,"t":120,"tokens":[5107,1305,15563,9396],"delegation":[4107,305,14563,8396],"delegatorTokens":9999999917211}},{"ix":178,"action":{"kind":"Deliver","chain":"consumer","numPackets":5},"partialState":{"h":20,"t":120,"consumerPower":[null,6304,null,6521],"outstandingDowntime":[false,false,false,false]}},{"ix":179,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":21,"t":126,"consumerPower":[null,6304,null,6521],"outstandingDowntime":[false,false,false,false]}},{"ix":180,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":22,"t":132,"consumerPower":[null,6304,null,6521],"outstandingDowntime":[false,false,false,false]}},{"ix":181,"action":{"kind":"Delegate","val":3,"amt":1066},"partialState":{"h":20,"t":120,"tokens":[5107,1305,15563,10462],"delegation":[4107,305,14563,9462],"delegatorTokens":9999999916145}},{"ix":182,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":21,"t":126,"tokens":[5107,1305,15563,10462],"delegation":[4107,305,14563,9462],"delegatorTokens":9999999924659,"jailed":[1000000000000065,null,1000000000000065,null],"status":["unbonding","bonded","unbonding","bonded"]}},{"ix":183,"action":{"kind":"Delegate","val":1,"amt":3195},"partialState":{"h":21,"t":126,"tokens":[5107,4500,15563,10462],"delegation":[4107,3500,14563,9462],"delegatorTokens":9999999921464}},{"ix":184,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":22,"t":132,"tokens":[5107,4500,15563,10462],"delegation":[4107,3500,14563,9462],"delegatorTokens":9999999921464,"jailed":[1000000000000065,null,1000000000000065,null],"status":["unbonding","bonded","unbonding","bonded"]}},{"ix":185,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":186,"action":{"kind":"Delegate","val":0,"amt":4397},"partialState":{"h":22,"t":132,"tokens":[9504,4500,15563,10462],"delegation":[8504,3500,14563,9462],"delegatorTokens":9999999917067}},{"ix":187,"action":{"kind":"Undelegate","val":1,"amt":3535},"partialState":{"h":22,"t":132,"tokens":[9504,4500,15563,10462],"delegation":[8504,3500,14563,9462],"delegatorTokens":9999999917067}},{"ix":188,"action":{"kind":"Deliver","chain":"provider","numPackets":6},"partialState":{"h":22,"t":132,"tokens":[9504,4500,15563,10462],"delegation":[8504,3500,14563,9462],"delegatorTokens":9999999917067,"jailed":[1000000000000065,null,1000000000000065,null],"status":["unbonding","bonded","unbonding","bonded"]}},{"ix":189,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":190,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":191,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":192,"action":{"kind":"Delegate","val":0,"amt":1941},"partialState":{"h":22,"t":132,"tokens":[11445,4500,15563,10462],"delegation":[10445,3500,14563,9462],"delegatorTokens":9999999915126}},{"ix":193,"action":{"kind":"Delegate","val":0,"amt":3314},"partialState":{"h":22,"t":132,"tokens":[14759,4500,15563,10462],"delegation":[13759,3500,14563,9462],"delegatorTokens":9999999911812}},{"ix":194,"action":{"kind":"Deliver","chain":"consumer","numPackets":4},"partialState":{"h":22,"t":132,"consumerPower":[null,6304,null,6521],"outstandingDowntime":[false,false,false,false]}},{"ix":195,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":23,"t":138,"tokens":[14759,4500,15563,10462],"delegation":[13759,3500,14563,9462],"delegatorTokens":9999999928708,"jailed":[1000000000000065,null,1000000000000065,null],"status":["unbonding","bonded","unbonding","bonded"]}},{"ix":196,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":24,"t":144,"tokens":[14759,4500,15563,10462],"delegation":[13759,3500,14563,9462],"delegatorTokens":9999999928708,"jailed":[1000000000000065,null,1000000000000065,null],"status":["unbonding","bonded","unbonded","bonded"]}},{"ix":197,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":25,"t":150,"tokens":[14759,4500,15563,10462],"delegation":[13759,3500,14563,9462],"delegatorTokens":9999999932854,"jailed":[1000000000000065,null,1000000000000065,null],"status":["unbonded","bonded","unbonded","bonded"]}},{"ix":198,"action":{"kind":"Undelegate","val":3,"amt":4955},"partialState":{"h":25,"t":150,"tokens":[14759,4500,15563,5507],"delegation":[13759,3500,14563,4507],"delegatorTokens":9999999932854}},{"ix":199,"action":{"kind":"Delegate","val":2,"amt":1471},"partialState":{"h":25,"t":150,"tokens":[14759,4500,17034,5507],"delegation":[13759,3500,16034,4507],"delegatorTokens":9999999931383}}],"events":["insufficient_shares","send_downtime_slash_request","send_downtime_slash_request","more_than_one_third_val_power_change","send_vsc_without_downtime_ack","more_than_one_third_val_power_change","rebond_unval","send_vsc_without_downtime_ack","downtime_slash_request_outstanding","send_vsc_without_downtime_ack","insufficient_shares","insufficient_shares","send_double_sign_slash_request","consumer_del_val","consumer_add_val","more_than_one_third_val_power_change","rebond_unval","send_vsc_without_downtime_ack","downtime_slash_request_outstanding","more_than_one_third_val_power_change","rebond_unval","rebond_unval","send_vsc_without_downtime_ack","more_than_one_third_val_power_change","rebond_unval","send_vsc_without_downtime_ack","send_double_sign_slash_request","insufficient_shares","more_than_one_third_val_power_change","rebond_unval","send_vsc_without_downtime_ack","more_than_one_third_val_power_change","rebond_unval","send_vsc_without_downtime_ack","insufficient_shares","send_vsc_without_downtime_ack","send_vsc_without_downtime_ack","more_than_one_third_val_power_change","rebond_unval","receive_downtime_slash_request","jail","receive_downtime_slash_request","jail","send_vsc_with_downtime_ack","consumer_add_val","consumer_update_val","consumer_del_val","consumer_del_val","insufficient_shares","receive_double_sign_slash_request","receive_double_sign_slash_request","consumer_del_val","consumer_update_val","consumer_update_val","consumer_update_val","insufficient_shares","more_than_one_third_val_power_change","rebond_unval","send_vsc_without_downtime_ack","receive_downtime_slash_ack","receive_downtime_slash_ack","send_vsc_without_downtime_ack","consumer_send_maturation","consumer_del_val","consumer_del_val","consumer_update_val","consumer_add_val","some_undels_expired_but_not_completed","send_vsc_without_downtime_ack","some_undels_expired_but_not_completed","send_vsc_without_downtime_ack","consumer_update_val","consumer_update_val","consumer_send_maturation","consumer_send_maturation","consumer_send_maturation","consumer_send_maturation","some_undels_expired_but_not_completed","send_vsc_without_downtime_ack","consumer_send_maturation","consumer_send_maturation","consumer_send_maturation","consumer_send_maturation","consumer_send_maturation","complete_undel_immediate","complete_undel_immediate","complete_undel_immediate","send_vsc_without_downtime_ack","consumer_update_val","consumer_update_val","some_undels_expired_but_not_completed","send_vsc_without_downtime_ack","consumer_update_val","insufficient_shares","consumer_send_maturation","consumer_send_maturation","some_undels_expired_but_not_completed","complete_undel_immediate","complete_undel_immediate","send_vsc_without_downtime_ack","some_undels_expired_but_not_completed","send_vsc_without_downtime_ack","insufficient_shares","some_undels_expired_but_not_completed","complete_undel_immediate","complete_undel_immediate","complete_undel_immediate","complete_undel_immediate","set_unval_hold_false","set_undel_hold_false","set_undel_hold_false","set_unval_hold_false","complete_unval_in_endblock","complete_unval_in_endblock","complete_undel_in_endblock"]},{"meta":{"commit":"7ffd0c04e4205cbc9caf212abfe6c59ee43153bf"},"constants":{"P":"provider","C":"consumer","UNBONDING_SECONDS_P":70,"UNBONDING_SECONDS_C":50,"TRUSTING_SECONDS":49,"NUM_VALIDATORS":4,"MAX_VALIDATORS":2,"SLASH_DOUBLESIGN":0,"SLASH_DOWNTIME":0,"JAIL_SECONDS":999999999999999,"BLOCK_SECONDS":6,"INITIAL_DELEGATOR_TOKENS":10000000000000,"DELEGATE_AMT_MIN":1000,"DELEGATE_AMT_MAX":5000,"UNDELEGATE_AMT_MIN":1000,"UNDELEGATE_AMT_MAX":5000,"ISDOWNTIME_PROBABILITY":0.5,"MAX_NUM_PACKETS_FOR_DELIVER":6},"actions":[{"ix":0,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":2,"t":12,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":1,"action":{"kind":"Undelegate","val":0,"amt":1954},"partialState":{"h":1,"t":6,"tokens":[3046,4000,3000,2000],"delegation":[2046,3000,2000,1000],"delegatorTokens":10000000000000}},{"ix":2,"action":{"kind":"Deliver","chain":"provider","numPackets":3},"partialState":{"h":1,"t":6,"tokens":[3046,4000,3000,2000],"delegation":[2046,3000,2000,1000],"delegatorTokens":10000000000000,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":3,"action":{"kind":"Delegate","val":0,"amt":4881},"partialState":{"h":1,"t":6,"tokens":[7927,4000,3000,2000],"delegation":[6927,3000,2000,1000],"delegatorTokens":9999999995119}},{"ix":4,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":5,"action":{"kind":"Delegate","val":0,"amt":1610},"partialState":{"h":1,"t":6,"tokens":[9537,4000,3000,2000],"delegation":[8537,3000,2000,1000],"delegatorTokens":9999999993509}},{"ix":6,"action":{"kind":"Undelegate","val":0,"amt":1232},"partialState":{"h":1,"t":6,"tokens":[8305,4000,3000,2000],"delegation":[7305,3000,2000,1000],"delegatorTokens":9999999993509}},{"ix":7,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":3,"t":18,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":8,"action":{"kind":"ConsumerSlash","val":1,"infractionHeight":1,"isDowntime":true},"partialState":{"h":3,"t":18,"outstandingDowntime":[false,true,false,false]}},{"ix":9,"action":{"kind":"Delegate","val":3,"amt":3924},"partialState":{"h":1,"t":6,"tokens":[8305,4000,3000,5924],"delegation":[7305,3000,2000,4924],"delegatorTokens":9999999989585}},{"ix":10,"action":{"kind":"Deliver","chain":"provider","numPackets":2},"partialState":{"h":1,"t":6,"tokens":[8305,4000,3000,5924],"delegation":[7305,3000,2000,4924],"delegatorTokens":9999999989585,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":11,"action":{"kind":"Deliver","chain":"provider","numPackets":6},"partialState":{"h":1,"t":6,"tokens":[8305,4000,3000,5924],"delegation":[7305,3000,2000,4924],"delegatorTokens":9999999989585,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":12,"action":{"kind":"Deliver","chain":"provider","numPackets":1},"partialState":{"h":1,"t":6,"tokens":[8305,4000,3000,5924],"delegation":[7305,3000,2000,4924],"delegatorTokens":9999999989585,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":13,"action":{"kind":"Delegate","val":0,"amt":1962},"partialState":{"h":1,"t":6,"tokens":[10267,4000,3000,5924],"delegation":[9267,3000,2000,4924],"delegatorTokens":9999999987623}},{"ix":14,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":2,"t":12,"tokens":[10267,4000,3000,5924],"delegation":[9267,3000,2000,4924],"delegatorTokens":9999999987623,"jailed":[null,null,null,null],"status":["bonded","unbonding","unbonded","bonded"]}},{"ix":15,"action":{"kind":"Delegate","val":1,"amt":1635},"partialState":{"h":2,"t":12,"tokens":[10267,5635,3000,5924],"delegation":[9267,4635,2000,4924],"delegatorTokens":9999999985988}},{"ix":16,"action":{"kind":"Undelegate","val":1,"amt":1788},"partialState":{"h":2,"t":12,"tokens":[10267,3847,3000,5924],"delegation":[9267,2847,2000,4924],"delegatorTokens":9999999985988}},{"ix":17,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":3,"t":18,"tokens":[10267,3847,3000,5924],"delegation":[9267,2847,2000,4924],"delegatorTokens":9999999985988,"jailed":[null,null,null,null],"status":["bonded","unbonding","unbonded","bonded"]}},{"ix":18,"action":{"kind":"ConsumerSlash","val":1,"infractionHeight":1,"isDowntime":true},"partialState":{"h":3,"t":18,"outstandingDowntime":[false,true,false,false]}},{"ix":19,"action":{"kind":"Deliver","chain":"provider","numPackets":6},"partialState":{"h":3,"t":18,"tokens":[10267,3847,3000,5924],"delegation":[9267,2847,2000,4924],"delegatorTokens":9999999985988,"jailed":[null,null,null,null],"status":["bonded","unbonding","unbonded","bonded"]}},{"ix":20,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":21,"action":{"kind":"Deliver","chain":"provider","numPackets":3},"partialState":{"h":3,"t":18,"tokens":[10267,3847,3000,5924],"delegation":[9267,2847,2000,4924],"delegatorTokens":9999999985988,"jailed":[null,null,null,null],"status":["bonded","unbonding","unbonded","bonded"]}},{"ix":22,"action":{"kind":"Undelegate","val":1,"amt":1541},"partialState":{"h":3,"t":18,"tokens":[10267,2306,3000,5924],"delegation":[9267,1306,2000,4924],"delegatorTokens":9999999985988}},{"ix":23,"action":{"kind":"Undelegate","val":2,"amt":3233},"partialState":{"h":3,"t":18,"tokens":[10267,2306,3000,5924],"delegation":[9267,1306,2000,4924],"delegatorTokens":9999999985988}},{"ix":24,"action":{"kind":"ConsumerSlash","val":2,"infractionHeight":0,"isDowntime":false},"partialState":{"h":3,"t":18,"outstandingDowntime":[false,true,false,false]}},{"ix":25,"action":{"kind":"ConsumerSlash","val":1,"infractionHeight":1,"isDowntime":false},"partialState":{"h":3,"t":18,"outstandingDowntime":[false,true,false,false]}},{"ix":26,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":27,"action":{"kind":"ConsumerSlash","val":3,"infractionHeight":0,"isDowntime":false},"partialState":{"h":3,"t":18,"outstandingDowntime":[false,true,false,false]}},{"ix":28,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":4,"t":24,"tokens":[10267,2306,3000,5924],"delegation":[9267,1306,2000,4924],"delegatorTokens":9999999985988,"jailed":[null,null,null,null],"status":["bonded","unbonding","unbonded","bonded"]}},{"ix":29,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":4,"t":24,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,true,false,false]}},{"ix":30,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":31,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":32,"action":{"kind":"Undelegate","val":3,"amt":2047},"partialState":{"h":4,"t":24,"tokens":[10267,2306,3000,3877],"delegation":[9267,1306,2000,2877],"delegatorTokens":9999999985988}},{"ix":33,"action":{"kind":"Delegate","val":0,"amt":1474},"partialState":{"h":4,"t":24,"tokens":[11741,2306,3000,3877],"delegation":[10741,1306,2000,2877],"delegatorTokens":9999999984514}},{"ix":34,"action":{"kind":"Undelegate","val":0,"amt":3044},"partialState":{"h":4,"t":24,"tokens":[8697,2306,3000,3877],"delegation":[7697,1306,2000,2877],"delegatorTokens":9999999984514}},{"ix":35,"action":{"kind":"Deliver","chain":"consumer","numPackets":4},"partialState":{"h":4,"t":24,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,true,false,false]}},{"ix":36,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":5,"t":30,"consumerPower":[10267,null,null,5924],"outstandingDowntime":[false,true,false,false]}},{"ix":37,"action":{"kind":"Delegate","val":3,"amt":1630},"partialState":{"h":4,"t":24,"tokens":[8697,2306,3000,5507],"delegation":[7697,1306,2000,4507],"delegatorTokens":9999999982884}},{"ix":38,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":6,"t":36,"consumerPower":[10267,null,null,5924],"outstandingDowntime":[false,true,false,false]}},{"ix":39,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":40,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":41,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":5,"t":30,"tokens":[8697,2306,3000,5507],"delegation":[7697,1306,2000,4507],"delegatorTokens":9999999982884,"jailed":[null,null,null,null],"status":["bonded","unbonding","unbonded","bonded"]}},{"ix":42,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":6,"t":36,"tokens":[8697,2306,3000,5507],"delegation":[7697,1306,2000,4507],"delegatorTokens":9999999982884,"jailed":[null,null,null,null],"status":["bonded","unbonding","unbonded","bonded"]}},{"ix":43,"action":{"kind":"Delegate","val":0,"amt":1204},"partialState":{"h":6,"t":36,"tokens":[9901,2306,3000,5507],"delegation":[8901,1306,2000,4507],"delegatorTokens":9999999981680}},{"ix":44,"action":{"kind":"Deliver","chain":"consumer","numPackets":5},"partialState":{"h":6,"t":36,"consumerPower":[10267,null,null,5924],"outstandingDowntime":[false,true,false,false]}},{"ix":45,"action":{"kind":"Deliver","chain":"provider","numPackets":4},"partialState":{"h":6,"t":36,"tokens":[9901,2306,3000,5507],"delegation":[8901,1306,2000,4507],"delegatorTokens":9999999981680,"jailed":[null,null,null,null],"status":["bonded","unbonding","unbonded","bonded"]}},{"ix":46,"action":{"kind":"Delegate","val":0,"amt":2819},"partialState":{"h":6,"t":36,"tokens":[12720,2306,3000,5507],"delegation":[11720,1306,2000,4507],"delegatorTokens":9999999978861}},{"ix":47,"action":{"kind":"Undelegate","val":1,"amt":2630},"partialState":{"h":6,"t":36,"tokens":[12720,2306,3000,5507],"delegation":[11720,1306,2000,4507],"delegatorTokens":9999999978861}},{"ix":48,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":49,"action":{"kind":"Delegate","val":3,"amt":3779},"partialState":{"h":6,"t":36,"tokens":[12720,2306,3000,9286],"delegation":[11720,1306,2000,8286],"delegatorTokens":9999999975082}},{"ix":50,"action":{"kind":"Deliver","chain":"consumer","numPackets":4},"partialState":{"h":6,"t":36,"consumerPower":[10267,null,null,5924],"outstandingDowntime":[false,true,false,false]}},{"ix":51,"action":{"kind":"Undelegate","val":2,"amt":2370},"partialState":{"h":6,"t":36,"tokens":[12720,2306,3000,9286],"delegation":[11720,1306,2000,8286],"delegatorTokens":9999999975082}},{"ix":52,"action":{"kind":"Undelegate","val":2,"amt":1684},"partialState":{"h":6,"t":36,"tokens":[12720,2306,1316,9286],"delegation":[11720,1306,316,8286],"delegatorTokens":9999999975082}},{"ix":53,"action":{"kind":"Deliver","chain":"consumer","numPackets":1},"partialState":{"h":6,"t":36,"consumerPower":[10267,null,null,5924],"outstandingDowntime":[false,true,false,false]}},{"ix":54,"action":{"kind":"Undelegate","val":3,"amt":3030},"partialState":{"h":6,"t":36,"tokens":[12720,2306,1316,6256],"delegation":[11720,1306,316,5256],"delegatorTokens":9999999975082}},{"ix":55,"action":{"kind":"Deliver","chain":"consumer","numPackets":1},"partialState":{"h":6,"t":36,"consumerPower":[10267,null,null,5924],"outstandingDowntime":[false,true,false,false]}},{"ix":56,"action":{"kind":"Deliver","chain":"provider","numPackets":1},"partialState":{"h":6,"t":36,"tokens":[12720,2306,1316,6256],"delegation":[11720,1306,316,5256],"delegatorTokens":9999999975082,"jailed":[null,null,null,null],"status":["bonded","unbonding","unbonded","bonded"]}},{"ix":57,"action":{"kind":"Deliver","chain":"provider","numPackets":3},"partialState":{"h":6,"t":36,"tokens":[12720,2306,1316,6256],"delegation":[11720,1306,316,5256],"delegatorTokens":9999999975082,"jailed":[null,null,null,null],"status":["bonded","unbonding","unbonded","bonded"]}},{"ix":58,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":59,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":7,"t":42,"consumerPower":[8697,null,null,5507],"outstandingDowntime":[false,true,false,false]}},{"ix":60,"action":{"kind":"Undelegate","val":3,"amt":3962},"partialState":{"h":6,"t":36,"tokens":[12720,2306,1316,2294],"delegation":[11720,1306,316,1294],"delegatorTokens":9999999975082}},{"ix":61,"action":{"kind":"Deliver","chain":"provider","numPackets":4},"partialState":{"h":6,"t":36,"tokens":[12720,2306,1316,2294],"delegation":[11720,1306,316,1294],"delegatorTokens":9999999975082,"jailed":[null,null,null,null],"status":["bonded","unbonding","unbonded","bonded"]}},{"ix":62,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":63,"action":{"kind":"Undelegate","val":0,"amt":3062},"partialState":{"h":6,"t":36,"tokens":[9658,2306,1316,2294],"delegation":[8658,1306,316,1294],"delegatorTokens":9999999975082}},{"ix":64,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":65,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":66,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":7,"t":42,"tokens":[9658,2306,1316,2294],"delegation":[8658,1306,316,1294],"delegatorTokens":9999999975082,"jailed":[null,1000000000000035,null,null],"status":["bonded","bonded","unbonded","unbonding"]}},{"ix":67,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":8,"t":48,"consumerPower":[8697,null,null,5507],"outstandingDowntime":[false,true,false,false]}},{"ix":68,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":8,"t":48,"tokens":[9658,2306,1316,2294],"delegation":[8658,1306,316,1294],"delegatorTokens":9999999975082,"jailed":[null,1000000000000035,null,null],"status":["bonded","unbonding","unbonded","bonded"]}},{"ix":69,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":9,"t":54,"tokens":[9658,2306,1316,2294],"delegation":[8658,1306,316,1294],"delegatorTokens":9999999975082,"jailed":[null,1000000000000035,null,null],"status":["bonded","unbonding","unbonded","bonded"]}},{"ix":70,"action":{"kind":"Delegate","val":1,"amt":2726},"partialState":{"h":9,"t":54,"tokens":[9658,5032,1316,2294],"delegation":[8658,4032,316,1294],"delegatorTokens":9999999972356}},{"ix":71,"action":{"kind":"Undelegate","val":0,"amt":1263},"partialState":{"h":9,"t":54,"tokens":[8395,5032,1316,2294],"delegation":[7395,4032,316,1294],"delegatorTokens":9999999972356}},{"ix":72,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":73,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":74,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":10,"t":60,"tokens":[8395,5032,1316,2294],"delegation":[7395,4032,316,1294],"delegatorTokens":9999999972356,"jailed":[null,1000000000000035,null,null],"status":["bonded","unbonding","unbonded","bonded"]}},{"ix":75,"action":{"kind":"Deliver","chain":"provider","numPackets":3},"partialState":{"h":10,"t":60,"tokens":[8395,5032,1316,2294],"delegation":[7395,4032,316,1294],"delegatorTokens":9999999972356,"jailed":[null,1000000000000035,null,null],"status":["bonded","unbonding","unbonded","bonded"]}},{"ix":76,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":11,"t":66,"tokens":[8395,5032,1316,2294],"delegation":[7395,4032,316,1294],"delegatorTokens":9999999972356,"jailed":[null,1000000000000035,null,null],"status":["bonded","unbonding","unbonded","bonded"]}},{"ix":77,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":78,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":79,"action":{"kind":"Delegate","val":2,"amt":3204},"partialState":{"h":11,"t":66,"tokens":[8395,5032,4520,2294],"delegation":[7395,4032,3520,1294],"delegatorTokens":9999999969152}},{"ix":80,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":12,"t":72,"tokens":[8395,5032,4520,2294],"delegation":[7395,4032,3520,1294],"delegatorTokens":9999999969152,"jailed":[null,1000000000000035,null,null],"status":["bonded","unbonding","bonded","unbonding"]}},{"ix":81,"action":{"kind":"Undelegate","val":0,"amt":1267},"partialState":{"h":12,"t":72,"tokens":[7128,5032,4520,2294],"delegation":[6128,4032,3520,1294],"delegatorTokens":9999999969152}},{"ix":82,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":83,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":9,"t":54,"consumerPower":[8697,null,null,5507],"outstandingDowntime":[false,true,false,false]}},{"ix":84,"action":{"kind":"Deliver","chain":"consumer","numPackets":4},"partialState":{"h":9,"t":54,"consumerPower":[8697,null,null,5507],"outstandingDowntime":[false,false,false,false]}},{"ix":85,"action":{"kind":"Undelegate","val":3,"amt":2207},"partialState":{"h":12,"t":72,"tokens":[7128,5032,4520,2294],"delegation":[6128,4032,3520,1294],"delegatorTokens":9999999969152}},{"ix":86,"action":{"kind":"Undelegate","val":0,"amt":4877},"partialState":{"h":12,"t":72,"tokens":[2251,5032,4520,2294],"delegation":[1251,4032,3520,1294],"delegatorTokens":9999999969152}},{"ix":87,"action":{"kind":"Delegate","val":3,"amt":4647},"partialState":{"h":12,"t":72,"tokens":[2251,5032,4520,6941],"delegation":[1251,4032,3520,5941],"delegatorTokens":9999999964505}},{"ix":88,"action":{"kind":"Delegate","val":2,"amt":3352},"partialState":{"h":12,"t":72,"tokens":[2251,5032,7872,6941],"delegation":[1251,4032,6872,5941],"delegatorTokens":9999999961153}},{"ix":89,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":13,"t":78,"tokens":[2251,5032,7872,6941],"delegation":[1251,4032,6872,5941],"delegatorTokens":9999999961153,"jailed":[null,1000000000000035,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":90,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":91,"action":{"kind":"Deliver","chain":"consumer","numPackets":3},"partialState":{"h":9,"t":54,"consumerPower":[8697,null,null,5507],"outstandingDowntime":[false,false,false,false]}},{"ix":92,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":93,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":94,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":95,"action":{"kind":"Undelegate","val":1,"amt":4596},"partialState":{"h":13,"t":78,"tokens":[2251,5032,7872,6941],"delegation":[1251,4032,6872,5941],"delegatorTokens":9999999961153}},{"ix":96,"action":{"kind":"Delegate","val":0,"amt":1204},"partialState":{"h":13,"t":78,"tokens":[3455,5032,7872,6941],"delegation":[2455,4032,6872,5941],"delegatorTokens":9999999959949}},{"ix":97,"action":{"kind":"Undelegate","val":2,"amt":3442},"partialState":{"h":13,"t":78,"tokens":[3455,5032,4430,6941],"delegation":[2455,4032,3430,5941],"delegatorTokens":9999999959949}},{"ix":98,"action":{"kind":"Undelegate","val":1,"amt":2488},"partialState":{"h":13,"t":78,"tokens":[3455,2544,4430,6941],"delegation":[2455,1544,3430,5941],"delegatorTokens":9999999959949}},{"ix":99,"action":{"kind":"Undelegate","val":2,"amt":1663},"partialState":{"h":13,"t":78,"tokens":[3455,2544,2767,6941],"delegation":[2455,1544,1767,5941],"delegatorTokens":9999999959949}},{"ix":100,"action":{"kind":"Undelegate","val":2,"amt":4401},"partialState":{"h":13,"t":78,"tokens":[3455,2544,2767,6941],"delegation":[2455,1544,1767,5941],"delegatorTokens":9999999959949}},{"ix":101,"action":{"kind":"Deliver","chain":"provider","numPackets":5},"partialState":{"h":13,"t":78,"tokens":[3455,2544,2767,6941],"delegation":[2455,1544,1767,5941],"delegatorTokens":9999999959949,"jailed":[null,1000000000000035,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":102,"action":{"kind":"Delegate","val":1,"amt":4005},"partialState":{"h":13,"t":78,"tokens":[3455,6549,2767,6941],"delegation":[2455,5549,1767,5941],"delegatorTokens":9999999955944}},{"ix":103,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":14,"t":84,"tokens":[3455,6549,2767,6941],"delegation":[2455,5549,1767,5941],"delegatorTokens":9999999955944,"jailed":[null,1000000000000035,null,null],"status":["bonded","unbonding","unbonding","bonded"]}},{"ix":104,"action":{"kind":"Undelegate","val":0,"amt":3490},"partialState":{"h":14,"t":84,"tokens":[3455,6549,2767,6941],"delegation":[2455,5549,1767,5941],"delegatorTokens":9999999955944}},{"ix":105,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":106,"action":{"kind":"Deliver","chain":"consumer","numPackets":2},"partialState":{"h":9,"t":54,"consumerPower":[8697,null,null,5507],"outstandingDowntime":[false,false,false,false]}},{"ix":107,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":10,"t":60,"consumerPower":[null,null,7872,6941],"outstandingDowntime":[false,false,false,false]}},{"ix":108,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":109,"action":{"kind":"Delegate","val":3,"amt":2287},"partialState":{"h":14,"t":84,"tokens":[3455,6549,2767,9228],"delegation":[2455,5549,1767,8228],"delegatorTokens":9999999953657}},{"ix":110,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":11,"t":66,"consumerPower":[null,null,7872,6941],"outstandingDowntime":[false,false,false,false]}},{"ix":111,"action":{"kind":"Deliver","chain":"consumer","numPackets":1},"partialState":{"h":11,"t":66,"consumerPower":[null,null,7872,6941],"outstandingDowntime":[false,false,false,false]}},{"ix":112,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":15,"t":90,"tokens":[3455,6549,2767,9228],"delegation":[2455,5549,1767,8228],"delegatorTokens":9999999953657,"jailed":[null,1000000000000035,null,null],"status":["bonded","unbonding","unbonding","bonded"]}},{"ix":113,"action":{"kind":"Deliver","chain":"consumer","numPackets":3},"partialState":{"h":11,"t":66,"consumerPower":[null,null,7872,6941],"outstandingDowntime":[false,false,false,false]}},{"ix":114,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":115,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":12,"t":72,"consumerPower":[3455,null,null,6941],"outstandingDowntime":[false,false,false,false]}},{"ix":116,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":117,"action":{"kind":"Undelegate","val":1,"amt":2449},"partialState":{"h":15,"t":90,"tokens":[3455,4100,2767,9228],"delegation":[2455,3100,1767,8228],"delegatorTokens":9999999953657}},{"ix":118,"action":{"kind":"Undelegate","val":3,"amt":1083},"partialState":{"h":15,"t":90,"tokens":[3455,4100,2767,8145],"delegation":[2455,3100,1767,7145],"delegatorTokens":9999999953657}},{"ix":119,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":16,"t":96,"tokens":[3455,4100,2767,8145],"delegation":[2455,3100,1767,7145],"delegatorTokens":9999999953657,"jailed":[null,1000000000000035,null,null],"status":["bonded","unbonding","unbonding","bonded"]}},{"ix":120,"action":{"kind":"Undelegate","val":3,"amt":3826},"partialState":{"h":16,"t":96,"tokens":[3455,4100,2767,4319],"delegation":[2455,3100,1767,3319],"delegatorTokens":9999999953657}},{"ix":121,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":13,"t":78,"consumerPower":[3455,null,null,6941],"outstandingDowntime":[false,false,false,false]}},{"ix":122,"action":{"kind":"Delegate","val":2,"amt":2711},"partialState":{"h":16,"t":96,"tokens":[3455,4100,5478,4319],"delegation":[2455,3100,4478,3319],"delegatorTokens":9999999950946}},{"ix":123,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":17,"t":102,"tokens":[3455,4100,5478,4319],"delegation":[2455,3100,4478,3319],"delegatorTokens":9999999950946,"jailed":[null,1000000000000035,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":124,"action":{"kind":"Delegate","val":2,"amt":2959},"partialState":{"h":17,"t":102,"tokens":[3455,4100,8437,4319],"delegation":[2455,3100,7437,3319],"delegatorTokens":9999999947987}},{"ix":125,"action":{"kind":"Undelegate","val":3,"amt":1941},"partialState":{"h":17,"t":102,"tokens":[3455,4100,8437,2378],"delegation":[2455,3100,7437,1378],"delegatorTokens":9999999947987}},{"ix":126,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":18,"t":108,"tokens":[3455,4100,8437,2378],"delegation":[2455,3100,7437,1378],"delegatorTokens":9999999947987,"jailed":[null,1000000000000035,null,null],"status":["bonded","unbonding","bonded","unbonding"]}},{"ix":127,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":128,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":14,"t":84,"consumerPower":[3455,null,null,6941],"outstandingDowntime":[false,false,false,false]}},{"ix":129,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":130,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":19,"t":114,"tokens":[3455,4100,8437,2378],"delegation":[2455,3100,7437,1378],"delegatorTokens":9999999947987,"jailed":[null,1000000000000035,null,null],"status":["bonded","unbonding","bonded","unbonding"]}},{"ix":131,"action":{"kind":"Delegate","val":0,"amt":1683},"partialState":{"h":19,"t":114,"tokens":[5138,4100,8437,2378],"delegation":[4138,3100,7437,1378],"delegatorTokens":9999999946304}},{"ix":132,"action":{"kind":"Deliver","chain":"consumer","numPackets":1},"partialState":{"h":14,"t":84,"consumerPower":[3455,null,null,6941],"outstandingDowntime":[false,false,false,false]}},{"ix":133,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":15,"t":90,"consumerPower":[3455,null,null,9228],"outstandingDowntime":[false,false,false,false]}},{"ix":134,"action":{"kind":"Undelegate","val":3,"amt":1858},"partialState":{"h":19,"t":114,"tokens":[5138,4100,8437,2378],"delegation":[4138,3100,7437,1378],"delegatorTokens":9999999946304}},{"ix":135,"action":{"kind":"Undelegate","val":1,"amt":2001},"partialState":{"h":19,"t":114,"tokens":[5138,2099,8437,2378],"delegation":[4138,1099,7437,1378],"delegatorTokens":9999999946304}},{"ix":136,"action":{"kind":"Deliver","chain":"provider","numPackets":1},"partialState":{"h":19,"t":114,"tokens":[5138,2099,8437,2378],"delegation":[4138,1099,7437,1378],"delegatorTokens":9999999946304,"jailed":[null,1000000000000035,null,null],"status":["bonded","unbonding","bonded","unbonding"]}},{"ix":137,"action":{"kind":"Deliver","chain":"consumer","numPackets":1},"partialState":{"h":15,"t":90,"consumerPower":[3455,null,null,9228],"outstandingDowntime":[false,false,false,false]}},{"ix":138,"action":{"kind":"Undelegate","val":3,"amt":1206},"partialState":{"h":19,"t":114,"tokens":[5138,2099,8437,1172],"delegation":[4138,1099,7437,172],"delegatorTokens":9999999946304}},{"ix":139,"action":{"kind":"Deliver","chain":"consumer","numPackets":2},"partialState":{"h":15,"t":90,"consumerPower":[3455,null,null,9228],"outstandingDowntime":[false,false,false,false]}},{"ix":140,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":16,"t":96,"consumerPower":[3455,null,8437,null],"outstandingDowntime":[false,false,false,false]}},{"ix":141,"action":{"kind":"Deliver","chain":"consumer","numPackets":5},"partialState":{"h":16,"t":96,"consumerPower":[3455,null,8437,null],"outstandingDowntime":[false,false,false,false]}},{"ix":142,"action":{"kind":"Undelegate","val":1,"amt":1315},"partialState":{"h":19,"t":114,"tokens":[5138,2099,8437,1172],"delegation":[4138,1099,7437,172],"delegatorTokens":9999999946304}},{"ix":143,"action":{"kind":"Delegate","val":3,"amt":4493},"partialState":{"h":19,"t":114,"tokens":[5138,2099,8437,5665],"delegation":[4138,1099,7437,4665],"delegatorTokens":9999999941811}},{"ix":144,"action":{"kind":"Deliver","chain":"consumer","numPackets":6},"partialState":{"h":16,"t":96,"consumerPower":[3455,null,8437,null],"outstandingDowntime":[false,false,false,false]}},{"ix":145,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":146,"action":{"kind":"Deliver","chain":"provider","numPackets":4},"partialState":{"h":19,"t":114,"tokens":[5138,2099,8437,5665],"delegation":[4138,1099,7437,4665],"delegatorTokens":9999999941811,"jailed":[null,1000000000000035,null,null],"status":["bonded","unbonding","bonded","unbonding"]}},{"ix":147,"action":{"kind":"Undelegate","val":0,"amt":2221},"partialState":{"h":19,"t":114,"tokens":[2917,2099,8437,5665],"delegation":[1917,1099,7437,4665],"delegatorTokens":9999999941811}},{"ix":148,"action":{"kind":"Deliver","chain":"consumer","numPackets":6},"partialState":{"h":16,"t":96,"consumerPower":[3455,null,8437,null],"outstandingDowntime":[false,false,false,false]}},{"ix":149,"action":{"kind":"Deliver","chain":"provider","numPackets":1},"partialState":{"h":19,"t":114,"tokens":[2917,2099,8437,5665],"delegation":[1917,1099,7437,4665],"delegatorTokens":9999999941811,"jailed":[null,1000000000000035,null,null],"status":["bonded","unbonding","bonded","unbonding"]}},{"ix":150,"action":{"kind":"Undelegate","val":0,"amt":3381},"partialState":{"h":19,"t":114,"tokens":[2917,2099,8437,5665],"delegation":[1917,1099,7437,4665],"delegatorTokens":9999999941811}},{"ix":151,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":20,"t":120,"tokens":[2917,2099,8437,5665],"delegation":[1917,1099,7437,4665],"delegatorTokens":9999999946785,"jailed":[null,1000000000000035,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":152,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":17,"t":102,"consumerPower":[3455,null,8437,null],"outstandingDowntime":[false,false,false,false]}},{"ix":153,"action":{"kind":"Deliver","chain":"provider","numPackets":3},"partialState":{"h":20,"t":120,"tokens":[2917,2099,8437,5665],"delegation":[1917,1099,7437,4665],"delegatorTokens":9999999946785,"jailed":[null,1000000000000035,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":154,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":155,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":156,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":157,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":158,"action":{"kind":"Deliver","chain":"provider","numPackets":6},"partialState":{"h":20,"t":120,"tokens":[2917,2099,8437,5665],"delegation":[1917,1099,7437,4665],"delegatorTokens":9999999946785,"jailed":[null,1000000000000035,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":159,"action":{"kind":"Undelegate","val":0,"amt":1796},"partialState":{"h":20,"t":120,"tokens":[1121,2099,8437,5665],"delegation":[121,1099,7437,4665],"delegatorTokens":9999999946785}},{"ix":160,"action":{"kind":"Delegate","val":1,"amt":2596},"partialState":{"h":20,"t":120,"tokens":[1121,4695,8437,5665],"delegation":[121,3695,7437,4665],"delegatorTokens":9999999944189}},{"ix":161,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":21,"t":126,"tokens":[1121,4695,8437,5665],"delegation":[121,3695,7437,4665],"delegatorTokens":9999999950821,"jailed":[null,1000000000000035,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":162,"action":{"kind":"Delegate","val":3,"amt":1506},"partialState":{"h":21,"t":126,"tokens":[1121,4695,8437,7171],"delegation":[121,3695,7437,6171],"delegatorTokens":9999999949315}},{"ix":163,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":18,"t":108,"consumerPower":[3455,null,8437,null],"outstandingDowntime":[false,false,false,false]}},{"ix":164,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":22,"t":132,"tokens":[1121,4695,8437,7171],"delegation":[121,3695,7437,6171],"delegatorTokens":9999999949315,"jailed":[null,1000000000000035,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":165,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":19,"t":114,"consumerPower":[3455,null,8437,null],"outstandingDowntime":[false,false,false,false]}},{"ix":166,"action":{"kind":"Deliver","chain":"provider","numPackets":2},"partialState":{"h":22,"t":132,"tokens":[1121,4695,8437,7171],"delegation":[121,3695,7437,6171],"delegatorTokens":9999999949315,"jailed":[null,1000000000000035,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":167,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":23,"t":138,"tokens":[1121,4695,8437,7171],"delegation":[121,3695,7437,6171],"delegatorTokens":9999999949315,"jailed":[null,1000000000000035,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":168,"action":{"kind":"Delegate","val":3,"amt":3181},"partialState":{"h":23,"t":138,"tokens":[1121,4695,8437,10352],"delegation":[121,3695,7437,9352],"delegatorTokens":9999999946134}},{"ix":169,"action":{"kind":"Undelegate","val":2,"amt":2467},"partialState":{"h":23,"t":138,"tokens":[1121,4695,5970,10352],"delegation":[121,3695,4970,9352],"delegatorTokens":9999999946134}},{"ix":170,"action":{"kind":"Undelegate","val":0,"amt":2369},"partialState":{"h":23,"t":138,"tokens":[1121,4695,5970,10352],"delegation":[121,3695,4970,9352],"delegatorTokens":9999999946134}},{"ix":171,"action":{"kind":"Delegate","val":0,"amt":1933},"partialState":{"h":23,"t":138,"tokens":[3054,4695,5970,10352],"delegation":[2054,3695,4970,9352],"delegatorTokens":9999999944201}},{"ix":172,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":20,"t":120,"consumerPower":[3455,null,8437,null],"outstandingDowntime":[false,false,false,false]}},{"ix":173,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":24,"t":144,"tokens":[3054,4695,5970,10352],"delegation":[2054,3695,4970,9352],"delegatorTokens":9999999944201,"jailed":[null,1000000000000035,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":174,"action":{"kind":"Deliver","chain":"provider","numPackets":1},"partialState":{"h":24,"t":144,"tokens":[3054,4695,5970,10352],"delegation":[2054,3695,4970,9352],"delegatorTokens":9999999944201,"jailed":[null,1000000000000035,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":175,"action":{"kind":"Undelegate","val":0,"amt":4200},"partialState":{"h":24,"t":144,"tokens":[3054,4695,5970,10352],"delegation":[2054,3695,4970,9352],"delegatorTokens":9999999944201}},{"ix":176,"action":{"kind":"Delegate","val":0,"amt":4862},"partialState":{"h":24,"t":144,"tokens":[7916,4695,5970,10352],"delegation":[6916,3695,4970,9352],"delegatorTokens":9999999939339}},{"ix":177,"action":{"kind":"Delegate","val":2,"amt":1252},"partialState":{"h":24,"t":144,"tokens":[7916,4695,7222,10352],"delegation":[6916,3695,6222,9352],"delegatorTokens":9999999938087}},{"ix":178,"action":{"kind":"Delegate","val":0,"amt":3843},"partialState":{"h":24,"t":144,"tokens":[11759,4695,7222,10352],"delegation":[10759,3695,6222,9352],"delegatorTokens":9999999934244}},{"ix":179,"action":{"kind":"Undelegate","val":3,"amt":3177},"partialState":{"h":24,"t":144,"tokens":[11759,4695,7222,7175],"delegation":[10759,3695,6222,6175],"delegatorTokens":9999999934244}},{"ix":180,"action":{"kind":"Delegate","val":2,"amt":4374},"partialState":{"h":24,"t":144,"tokens":[11759,4695,11596,7175],"delegation":[10759,3695,10596,6175],"delegatorTokens":9999999929870}},{"ix":181,"action":{"kind":"Undelegate","val":3,"amt":3092},"partialState":{"h":24,"t":144,"tokens":[11759,4695,11596,4083],"delegation":[10759,3695,10596,3083],"delegatorTokens":9999999929870}},{"ix":182,"action":{"kind":"Deliver","chain":"consumer","numPackets":2},"partialState":{"h":20,"t":120,"consumerPower":[3455,null,8437,null],"outstandingDowntime":[false,false,false,false]}},{"ix":183,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":25,"t":150,"tokens":[11759,4695,11596,4083],"delegation":[10759,3695,10596,3083],"delegatorTokens":9999999941608,"jailed":[null,1000000000000035,null,null],"status":["bonded","unbonding","bonded","unbonding"]}},{"ix":184,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":21,"t":126,"consumerPower":[null,null,8437,5665],"outstandingDowntime":[false,false,false,false]}},{"ix":185,"action":{"kind":"Undelegate","val":1,"amt":2597},"partialState":{"h":25,"t":150,"tokens":[11759,2098,11596,4083],"delegation":[10759,1098,10596,3083],"delegatorTokens":9999999941608}},{"ix":186,"action":{"kind":"Undelegate","val":0,"amt":4316},"partialState":{"h":25,"t":150,"tokens":[7443,2098,11596,4083],"delegation":[6443,1098,10596,3083],"delegatorTokens":9999999941608}},{"ix":187,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":26,"t":156,"tokens":[7443,2098,11596,4083],"delegation":[6443,1098,10596,3083],"delegatorTokens":9999999941608,"jailed":[null,1000000000000035,null,null],"status":["bonded","unbonding","bonded","unbonding"]}},{"ix":188,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":189,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":22,"t":132,"consumerPower":[null,null,8437,5665],"outstandingDowntime":[false,false,false,false]}},{"ix":190,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":191,"action":{"kind":"Deliver","chain":"provider","numPackets":5},"partialState":{"h":26,"t":156,"tokens":[7443,2098,11596,4083],"delegation":[6443,1098,10596,3083],"delegatorTokens":9999999941608,"jailed":[null,1000000000000035,null,null],"status":["bonded","unbonding","bonded","unbonding"]}},{"ix":192,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":193,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":23,"t":138,"consumerPower":[null,null,8437,5665],"outstandingDowntime":[false,false,false,false]}},{"ix":194,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":195,"action":{"kind":"Undelegate","val":2,"amt":4281},"partialState":{"h":26,"t":156,"tokens":[7443,2098,7315,4083],"delegation":[6443,1098,6315,3083],"delegatorTokens":9999999941608}},{"ix":196,"action":{"kind":"Deliver","chain":"consumer","numPackets":2},"partialState":{"h":23,"t":138,"consumerPower":[null,null,8437,5665],"outstandingDowntime":[false,false,false,false]}},{"ix":197,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":27,"t":162,"tokens":[7443,2098,7315,4083],"delegation":[6443,1098,6315,3083],"delegatorTokens":9999999956608,"jailed":[null,1000000000000035,null,null],"status":["bonded","unbonding","bonded","unbonding"]}},{"ix":198,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":28,"t":168,"tokens":[7443,2098,7315,4083],"delegation":[6443,1098,6315,3083],"delegatorTokens":9999999956608,"jailed":[null,1000000000000035,null,null],"status":["bonded","unbonded","bonded","unbonding"]}},{"ix":199,"action":{"kind":"Deliver","chain":"provider","numPackets":5},"partialState":{"h":28,"t":168,"tokens":[7443,2098,7315,4083],"delegation":[6443,1098,6315,3083],"delegatorTokens":9999999956608,"jailed":[null,1000000000000035,null,null],"status":["bonded","unbonded","bonded","unbonding"]}}],"events":["send_downtime_slash_request","more_than_one_third_val_power_change","send_vsc_without_downtime_ack","send_vsc_not_because_change","send_vsc_without_downtime_ack","downtime_slash_request_outstanding","insufficient_shares","send_double_sign_slash_request","send_double_sign_slash_request","send_double_sign_slash_request","send_vsc_not_because_change","send_vsc_without_downtime_ack","consumer_update_val","consumer_del_val","consumer_add_val","send_vsc_without_downtime_ack","receive_double_sign_slash_request","receive_double_sign_slash_request","receive_double_sign_slash_request","insufficient_shares","insufficient_shares","consumer_update_val","consumer_update_val","rebond_unval","receive_downtime_slash_request","jail","send_vsc_with_downtime_ack","rebond_unval","send_vsc_without_downtime_ack","send_vsc_without_downtime_ack","more_than_one_third_val_power_change","send_vsc_without_downtime_ack","receive_downtime_slash_ack","insufficient_shares","more_than_one_third_val_power_change","rebond_unval","send_vsc_without_downtime_ack","insufficient_shares","insufficient_shares","rebond_unval","some_undels_expired_but_not_completed","send_vsc_without_downtime_ack","insufficient_shares","consumer_del_val","consumer_del_val","consumer_update_val","consumer_add_val","some_undels_expired_but_not_completed","send_vsc_without_downtime_ack","consumer_add_val","consumer_del_val","some_undels_expired_but_not_completed","send_vsc_without_downtime_ack","more_than_one_third_val_power_change","rebond_unval","some_undels_expired_but_not_completed","send_vsc_without_downtime_ack","rebond_unval","send_vsc_without_downtime_ack","consumer_send_maturation","consumer_send_maturation","some_undels_expired_but_not_completed","consumer_update_val","insufficient_shares","consumer_send_maturation","consumer_send_maturation","consumer_del_val","consumer_update_val","consumer_add_val","insufficient_shares","insufficient_shares","more_than_one_third_val_power_change","rebond_unval","complete_undel_immediate","complete_undel_immediate","complete_undel_immediate","send_vsc_without_downtime_ack","complete_undel_immediate","complete_undel_immediate","complete_undel_immediate","send_vsc_not_because_change","send_vsc_without_downtime_ack","some_undels_expired_but_not_completed","send_vsc_without_downtime_ack","consumer_send_maturation","consumer_send_maturation","consumer_send_maturation","consumer_send_maturation","consumer_send_maturation","insufficient_shares","send_vsc_without_downtime_ack","insufficient_shares","more_than_one_third_val_power_change","rebond_unval","some_undels_expired_but_not_completed","complete_undel_immediate","complete_undel_immediate","complete_undel_immediate","complete_undel_immediate","send_vsc_without_downtime_ack","consumer_send_maturation","consumer_del_val","consumer_add_val","some_undels_expired_but_not_completed","send_vsc_without_downtime_ack","set_unval_hold_false","complete_undel_immediate","complete_undel_immediate","complete_undel_immediate","complete_undel_immediate","complete_undel_immediate","complete_undel_immediate","send_vsc_without_downtime_ack","complete_unval_in_endblock","some_undels_expired_but_not_completed"]},{"meta":{"commit":"7ffd0c04e4205cbc9caf212abfe6c59ee43153bf"},"constants":{"P":"provider","C":"consumer","UNBONDING_SECONDS_P":70,"UNBONDING_SECONDS_C":50,"TRUSTING_SECONDS":49,"NUM_VALIDATORS":4,"MAX_VALIDATORS":2,"SLASH_DOUBLESIGN":0,"SLASH_DOWNTIME":0,"JAIL_SECONDS":999999999999999,"BLOCK_SECONDS":6,"INITIAL_DELEGATOR_TOKENS":10000000000000,"DELEGATE_AMT_MIN":1000,"DELEGATE_AMT_MAX":5000,"UNDELEGATE_AMT_MIN":1000,"UNDELEGATE_AMT_MAX":5000,"ISDOWNTIME_PROBABILITY":0.5,"MAX_NUM_PACKETS_FOR_DELIVER":6},"actions":[{"ix":0,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":1,"action":{"kind":"Deliver","chain":"provider","numPackets":4},"partialState":{"h":1,"t":6,"tokens":[5000,4000,3000,2000],"delegation":[4000,3000,2000,1000],"delegatorTokens":10000000000000,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":2,"action":{"kind":"ConsumerSlash","val":1,"infractionHeight":0,"isDowntime":false},"partialState":{"h":1,"t":6,"outstandingDowntime":[false,false,false,false]}},{"ix":3,"action":{"kind":"Delegate","val":1,"amt":3649},"partialState":{"h":1,"t":6,"tokens":[5000,7649,3000,2000],"delegation":[4000,6649,2000,1000],"delegatorTokens":9999999996351}},{"ix":4,"action":{"kind":"Undelegate","val":3,"amt":1696},"partialState":{"h":1,"t":6,"tokens":[5000,7649,3000,2000],"delegation":[4000,6649,2000,1000],"delegatorTokens":9999999996351}},{"ix":5,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":6,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":2,"t":12,"tokens":[5000,7649,3000,2000],"delegation":[4000,6649,2000,1000],"delegatorTokens":9999999996351,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":7,"action":{"kind":"Deliver","chain":"provider","numPackets":5},"partialState":{"h":2,"t":12,"tokens":[5000,7649,3000,2000],"delegation":[4000,6649,2000,1000],"delegatorTokens":9999999996351,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":8,"action":{"kind":"Undelegate","val":2,"amt":2639},"partialState":{"h":2,"t":12,"tokens":[5000,7649,3000,2000],"delegation":[4000,6649,2000,1000],"delegatorTokens":9999999996351}},{"ix":9,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":10,"action":{"kind":"Undelegate","val":2,"amt":2747},"partialState":{"h":2,"t":12,"tokens":[5000,7649,3000,2000],"delegation":[4000,6649,2000,1000],"delegatorTokens":9999999996351}},{"ix":11,"action":{"kind":"Delegate","val":2,"amt":1801},"partialState":{"h":2,"t":12,"tokens":[5000,7649,4801,2000],"delegation":[4000,6649,3801,1000],"delegatorTokens":9999999994550}},{"ix":12,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":2,"t":12,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":13,"action":{"kind":"Delegate","val":3,"amt":3149},"partialState":{"h":2,"t":12,"tokens":[5000,7649,4801,5149],"delegation":[4000,6649,3801,4149],"delegatorTokens":9999999991401}},{"ix":14,"action":{"kind":"Delegate","val":3,"amt":4541},"partialState":{"h":2,"t":12,"tokens":[5000,7649,4801,9690],"delegation":[4000,6649,3801,8690],"delegatorTokens":9999999986860}},{"ix":15,"action":{"kind":"ConsumerSlash","val":2,"infractionHeight":1,"isDowntime":false},"partialState":{"h":2,"t":12,"outstandingDowntime":[false,false,false,false]}},{"ix":16,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":3,"t":18,"tokens":[5000,7649,4801,9690],"delegation":[4000,6649,3801,8690],"delegatorTokens":9999999986860,"jailed":[null,null,null,null],"status":["unbonding","bonded","unbonded","bonded"]}},{"ix":17,"action":{"kind":"Delegate","val":1,"amt":3189},"partialState":{"h":3,"t":18,"tokens":[5000,10838,4801,9690],"delegation":[4000,9838,3801,8690],"delegatorTokens":9999999983671}},{"ix":18,"action":{"kind":"Undelegate","val":3,"amt":2925},"partialState":{"h":3,"t":18,"tokens":[5000,10838,4801,6765],"delegation":[4000,9838,3801,5765],"delegatorTokens":9999999983671}},{"ix":19,"action":{"kind":"ConsumerSlash","val":0,"infractionHeight":1,"isDowntime":true},"partialState":{"h":2,"t":12,"outstandingDowntime":[true,false,false,false]}},{"ix":20,"action":{"kind":"Deliver","chain":"consumer","numPackets":2},"partialState":{"h":2,"t":12,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[true,false,false,false]}},{"ix":21,"action":{"kind":"Undelegate","val":0,"amt":3626},"partialState":{"h":3,"t":18,"tokens":[1374,10838,4801,6765],"delegation":[374,9838,3801,5765],"delegatorTokens":9999999983671}},{"ix":22,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":4,"t":24,"tokens":[1374,10838,4801,6765],"delegation":[374,9838,3801,5765],"delegatorTokens":9999999983671,"jailed":[null,null,null,null],"status":["unbonding","bonded","unbonded","bonded"]}},{"ix":23,"action":{"kind":"Undelegate","val":0,"amt":3551},"partialState":{"h":4,"t":24,"tokens":[1374,10838,4801,6765],"delegation":[374,9838,3801,5765],"delegatorTokens":9999999983671}},{"ix":24,"action":{"kind":"Deliver","chain":"provider","numPackets":1},"partialState":{"h":4,"t":24,"tokens":[1374,10838,4801,6765],"delegation":[374,9838,3801,5765],"delegatorTokens":9999999983671,"jailed":[null,null,null,null],"status":["unbonding","bonded","unbonded","bonded"]}},{"ix":25,"action":{"kind":"Deliver","chain":"consumer","numPackets":3},"partialState":{"h":2,"t":12,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[true,false,false,false]}},{"ix":26,"action":{"kind":"Undelegate","val":1,"amt":1377},"partialState":{"h":4,"t":24,"tokens":[1374,9461,4801,6765],"delegation":[374,8461,3801,5765],"delegatorTokens":9999999983671}},{"ix":27,"action":{"kind":"Delegate","val":2,"amt":1271},"partialState":{"h":4,"t":24,"tokens":[1374,9461,6072,6765],"delegation":[374,8461,5072,5765],"delegatorTokens":9999999982400}},{"ix":28,"action":{"kind":"Undelegate","val":3,"amt":2110},"partialState":{"h":4,"t":24,"tokens":[1374,9461,6072,4655],"delegation":[374,8461,5072,3655],"delegatorTokens":9999999982400}},{"ix":29,"action":{"kind":"Undelegate","val":2,"amt":3319},"partialState":{"h":4,"t":24,"tokens":[1374,9461,2753,4655],"delegation":[374,8461,1753,3655],"delegatorTokens":9999999982400}},{"ix":30,"action":{"kind":"Undelegate","val":1,"amt":3974},"partialState":{"h":4,"t":24,"tokens":[1374,5487,2753,4655],"delegation":[374,4487,1753,3655],"delegatorTokens":9999999982400}},{"ix":31,"action":{"kind":"Delegate","val":2,"amt":2353},"partialState":{"h":4,"t":24,"tokens":[1374,5487,5106,4655],"delegation":[374,4487,4106,3655],"delegatorTokens":9999999980047}},{"ix":32,"action":{"kind":"Delegate","val":0,"amt":1872},"partialState":{"h":4,"t":24,"tokens":[3246,5487,5106,4655],"delegation":[2246,4487,4106,3655],"delegatorTokens":9999999978175}},{"ix":33,"action":{"kind":"Delegate","val":2,"amt":3523},"partialState":{"h":4,"t":24,"tokens":[3246,5487,8629,4655],"delegation":[2246,4487,7629,3655],"delegatorTokens":9999999974652}},{"ix":34,"action":{"kind":"Delegate","val":2,"amt":1542},"partialState":{"h":4,"t":24,"tokens":[3246,5487,10171,4655],"delegation":[2246,4487,9171,3655],"delegatorTokens":9999999973110}},{"ix":35,"action":{"kind":"Deliver","chain":"provider","numPackets":6},"partialState":{"h":4,"t":24,"tokens":[3246,5487,10171,4655],"delegation":[2246,4487,9171,3655],"delegatorTokens":9999999973110,"jailed":[null,null,null,null],"status":["unbonding","bonded","unbonded","bonded"]}},{"ix":36,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":5,"t":30,"tokens":[3246,5487,10171,4655],"delegation":[2246,4487,9171,3655],"delegatorTokens":9999999973110,"jailed":[null,null,null,null],"status":["unbonding","bonded","bonded","unbonding"]}},{"ix":37,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":3,"t":18,"consumerPower":[null,7649,null,9690],"outstandingDowntime":[true,false,false,false]}},{"ix":38,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":39,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":6,"t":36,"tokens":[3246,5487,10171,4655],"delegation":[2246,4487,9171,3655],"delegatorTokens":9999999973110,"jailed":[null,null,null,null],"status":["unbonding","bonded","bonded","unbonding"]}},{"ix":40,"action":{"kind":"Deliver","chain":"provider","numPackets":2},"partialState":{"h":6,"t":36,"tokens":[3246,5487,10171,4655],"delegation":[2246,4487,9171,3655],"delegatorTokens":9999999973110,"jailed":[null,null,null,null],"status":["unbonding","bonded","bonded","unbonding"]}},{"ix":41,"action":{"kind":"Deliver","chain":"consumer","numPackets":3},"partialState":{"h":3,"t":18,"consumerPower":[null,7649,null,9690],"outstandingDowntime":[true,false,false,false]}},{"ix":42,"action":{"kind":"Delegate","val":3,"amt":3237},"partialState":{"h":6,"t":36,"tokens":[3246,5487,10171,7892],"delegation":[2246,4487,9171,6892],"delegatorTokens":9999999969873}},{"ix":43,"action":{"kind":"Undelegate","val":1,"amt":1698},"partialState":{"h":6,"t":36,"tokens":[3246,3789,10171,7892],"delegation":[2246,2789,9171,6892],"delegatorTokens":9999999969873}},{"ix":44,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":7,"t":42,"tokens":[3246,3789,10171,7892],"delegation":[2246,2789,9171,6892],"delegatorTokens":9999999969873,"jailed":[null,null,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":45,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":46,"action":{"kind":"Undelegate","val":3,"amt":3978},"partialState":{"h":7,"t":42,"tokens":[3246,3789,10171,3914],"delegation":[2246,2789,9171,2914],"delegatorTokens":9999999969873}},{"ix":47,"action":{"kind":"Deliver","chain":"provider","numPackets":1},"partialState":{"h":7,"t":42,"tokens":[3246,3789,10171,3914],"delegation":[2246,2789,9171,2914],"delegatorTokens":9999999969873,"jailed":[null,null,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":48,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":49,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":4,"t":24,"consumerPower":[null,5487,10171,null],"outstandingDowntime":[true,false,false,false]}},{"ix":50,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":5,"t":30,"consumerPower":[null,5487,10171,null],"outstandingDowntime":[true,false,false,false]}},{"ix":51,"action":{"kind":"Undelegate","val":2,"amt":1953},"partialState":{"h":7,"t":42,"tokens":[3246,3789,8218,3914],"delegation":[2246,2789,7218,2914],"delegatorTokens":9999999969873}},{"ix":52,"action":{"kind":"Undelegate","val":0,"amt":3263},"partialState":{"h":7,"t":42,"tokens":[3246,3789,8218,3914],"delegation":[2246,2789,7218,2914],"delegatorTokens":9999999969873}},{"ix":53,"action":{"kind":"Deliver","chain":"provider","numPackets":4},"partialState":{"h":7,"t":42,"tokens":[3246,3789,8218,3914],"delegation":[2246,2789,7218,2914],"delegatorTokens":9999999969873,"jailed":[null,null,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":54,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":55,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":56,"action":{"kind":"Delegate","val":3,"amt":1447},"partialState":{"h":7,"t":42,"tokens":[3246,3789,8218,5361],"delegation":[2246,2789,7218,4361],"delegatorTokens":9999999968426}},{"ix":57,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":8,"t":48,"tokens":[3246,3789,8218,5361],"delegation":[2246,2789,7218,4361],"delegatorTokens":9999999968426,"jailed":[1000000000000041,null,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":58,"action":{"kind":"Undelegate","val":3,"amt":1366},"partialState":{"h":8,"t":48,"tokens":[3246,3789,8218,3995],"delegation":[2246,2789,7218,2995],"delegatorTokens":9999999968426}},{"ix":59,"action":{"kind":"Delegate","val":3,"amt":3491},"partialState":{"h":8,"t":48,"tokens":[3246,3789,8218,7486],"delegation":[2246,2789,7218,6486],"delegatorTokens":9999999964935}},{"ix":60,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":9,"t":54,"tokens":[3246,3789,8218,7486],"delegation":[2246,2789,7218,6486],"delegatorTokens":9999999964935,"jailed":[1000000000000041,null,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":61,"action":{"kind":"Deliver","chain":"consumer","numPackets":4},"partialState":{"h":5,"t":30,"consumerPower":[null,5487,10171,null],"outstandingDowntime":[false,false,false,false]}},{"ix":62,"action":{"kind":"Delegate","val":3,"amt":3387},"partialState":{"h":9,"t":54,"tokens":[3246,3789,8218,10873],"delegation":[2246,2789,7218,9873],"delegatorTokens":9999999961548}},{"ix":63,"action":{"kind":"Delegate","val":2,"amt":3587},"partialState":{"h":9,"t":54,"tokens":[3246,3789,11805,10873],"delegation":[2246,2789,10805,9873],"delegatorTokens":9999999957961}},{"ix":64,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":65,"action":{"kind":"Deliver","chain":"provider","numPackets":4},"partialState":{"h":9,"t":54,"tokens":[3246,3789,11805,10873],"delegation":[2246,2789,10805,9873],"delegatorTokens":9999999957961,"jailed":[1000000000000041,null,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":66,"action":{"kind":"Deliver","chain":"consumer","numPackets":6},"partialState":{"h":5,"t":30,"consumerPower":[null,5487,10171,null],"outstandingDowntime":[false,false,false,false]}},{"ix":67,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":10,"t":60,"tokens":[3246,3789,11805,10873],"delegation":[2246,2789,10805,9873],"delegatorTokens":9999999957961,"jailed":[1000000000000041,null,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":68,"action":{"kind":"Undelegate","val":1,"amt":2471},"partialState":{"h":10,"t":60,"tokens":[3246,1318,11805,10873],"delegation":[2246,318,10805,9873],"delegatorTokens":9999999957961}},{"ix":69,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":11,"t":66,"tokens":[3246,1318,11805,10873],"delegation":[2246,318,10805,9873],"delegatorTokens":9999999957961,"jailed":[1000000000000041,null,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":70,"action":{"kind":"Undelegate","val":3,"amt":3693},"partialState":{"h":11,"t":66,"tokens":[3246,1318,11805,7180],"delegation":[2246,318,10805,6180],"delegatorTokens":9999999957961}},{"ix":71,"action":{"kind":"Delegate","val":0,"amt":3673},"partialState":{"h":11,"t":66,"tokens":[6919,1318,11805,7180],"delegation":[5919,318,10805,6180],"delegatorTokens":9999999954288}},{"ix":72,"action":{"kind":"Undelegate","val":2,"amt":4255},"partialState":{"h":11,"t":66,"tokens":[6919,1318,7550,7180],"delegation":[5919,318,6550,6180],"delegatorTokens":9999999954288}},{"ix":73,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":74,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":6,"t":36,"consumerPower":[null,null,8218,5361],"outstandingDowntime":[false,false,false,false]}},{"ix":75,"action":{"kind":"Undelegate","val":0,"amt":2448},"partialState":{"h":11,"t":66,"tokens":[4471,1318,7550,7180],"delegation":[3471,318,6550,6180],"delegatorTokens":9999999954288}},{"ix":76,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":12,"t":72,"tokens":[4471,1318,7550,7180],"delegation":[3471,318,6550,6180],"delegatorTokens":9999999954288,"jailed":[1000000000000041,null,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":77,"action":{"kind":"Delegate","val":1,"amt":2982},"partialState":{"h":12,"t":72,"tokens":[4471,4300,7550,7180],"delegation":[3471,3300,6550,6180],"delegatorTokens":9999999951306}},{"ix":78,"action":{"kind":"Undelegate","val":0,"amt":1596},"partialState":{"h":12,"t":72,"tokens":[2875,4300,7550,7180],"delegation":[1875,3300,6550,6180],"delegatorTokens":9999999951306}},{"ix":79,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":7,"t":42,"consumerPower":[null,null,8218,5361],"outstandingDowntime":[false,false,false,false]}},{"ix":80,"action":{"kind":"Undelegate","val":2,"amt":4875},"partialState":{"h":12,"t":72,"tokens":[2875,4300,2675,7180],"delegation":[1875,3300,1675,6180],"delegatorTokens":9999999951306}},{"ix":81,"action":{"kind":"Deliver","chain":"consumer","numPackets":5},"partialState":{"h":7,"t":42,"consumerPower":[null,null,8218,5361],"outstandingDowntime":[false,false,false,false]}},{"ix":82,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":83,"action":{"kind":"Deliver","chain":"provider","numPackets":6},"partialState":{"h":12,"t":72,"tokens":[2875,4300,2675,7180],"delegation":[1875,3300,1675,6180],"delegatorTokens":9999999951306,"jailed":[1000000000000041,null,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":84,"action":{"kind":"Undelegate","val":2,"amt":1780},"partialState":{"h":12,"t":72,"tokens":[2875,4300,2675,7180],"delegation":[1875,3300,1675,6180],"delegatorTokens":9999999951306}},{"ix":85,"action":{"kind":"Undelegate","val":0,"amt":2877},"partialState":{"h":12,"t":72,"tokens":[2875,4300,2675,7180],"delegation":[1875,3300,1675,6180],"delegatorTokens":9999999951306}},{"ix":86,"action":{"kind":"Undelegate","val":2,"amt":3297},"partialState":{"h":12,"t":72,"tokens":[2875,4300,2675,7180],"delegation":[1875,3300,1675,6180],"delegatorTokens":9999999951306}},{"ix":87,"action":{"kind":"Deliver","chain":"consumer","numPackets":2},"partialState":{"h":7,"t":42,"consumerPower":[null,null,8218,5361],"outstandingDowntime":[false,false,false,false]}},{"ix":88,"action":{"kind":"Undelegate","val":1,"amt":1221},"partialState":{"h":12,"t":72,"tokens":[2875,3079,2675,7180],"delegation":[1875,2079,1675,6180],"delegatorTokens":9999999951306}},{"ix":89,"action":{"kind":"Deliver","chain":"consumer","numPackets":1},"partialState":{"h":7,"t":42,"consumerPower":[null,null,8218,5361],"outstandingDowntime":[false,false,false,false]}},{"ix":90,"action":{"kind":"Delegate","val":2,"amt":2378},"partialState":{"h":12,"t":72,"tokens":[2875,3079,5053,7180],"delegation":[1875,2079,4053,6180],"delegatorTokens":9999999948928}},{"ix":91,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":92,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":8,"t":48,"consumerPower":[null,null,11805,10873],"outstandingDowntime":[false,false,false,false]}},{"ix":93,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":13,"t":78,"tokens":[2875,3079,5053,7180],"delegation":[1875,2079,4053,6180],"delegatorTokens":9999999948928,"jailed":[1000000000000041,null,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":94,"action":{"kind":"Undelegate","val":1,"amt":2042},"partialState":{"h":13,"t":78,"tokens":[2875,1037,5053,7180],"delegation":[1875,37,4053,6180],"delegatorTokens":9999999948928}},{"ix":95,"action":{"kind":"Deliver","chain":"provider","numPackets":5},"partialState":{"h":13,"t":78,"tokens":[2875,1037,5053,7180],"delegation":[1875,37,4053,6180],"delegatorTokens":9999999948928,"jailed":[1000000000000041,null,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":96,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":14,"t":84,"tokens":[2875,1037,5053,7180],"delegation":[1875,37,4053,6180],"delegatorTokens":9999999948928,"jailed":[1000000000000041,null,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":97,"action":{"kind":"Undelegate","val":0,"amt":4153},"partialState":{"h":14,"t":84,"tokens":[2875,1037,5053,7180],"delegation":[1875,37,4053,6180],"delegatorTokens":9999999948928}},{"ix":98,"action":{"kind":"Deliver","chain":"consumer","numPackets":1},"partialState":{"h":8,"t":48,"consumerPower":[null,null,11805,10873],"outstandingDowntime":[false,false,false,false]}},{"ix":99,"action":{"kind":"Undelegate","val":0,"amt":1653},"partialState":{"h":14,"t":84,"tokens":[1222,1037,5053,7180],"delegation":[222,37,4053,6180],"delegatorTokens":9999999948928}},{"ix":100,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":9,"t":54,"consumerPower":[null,null,7550,7180],"outstandingDowntime":[false,false,false,false]}},{"ix":101,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":10,"t":60,"consumerPower":[null,null,7550,7180],"outstandingDowntime":[false,false,false,false]}},{"ix":102,"action":{"kind":"Delegate","val":1,"amt":4094},"partialState":{"h":14,"t":84,"tokens":[1222,5131,5053,7180],"delegation":[222,4131,4053,6180],"delegatorTokens":9999999944834}},{"ix":103,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":104,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":15,"t":90,"tokens":[1222,5131,5053,7180],"delegation":[222,4131,4053,6180],"delegatorTokens":9999999944834,"jailed":[1000000000000041,null,null,null],"status":["unbonding","bonded","unbonding","bonded"]}},{"ix":105,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":106,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":11,"t":66,"consumerPower":[null,null,7550,7180],"outstandingDowntime":[false,false,false,false]}},{"ix":107,"action":{"kind":"Delegate","val":0,"amt":2646},"partialState":{"h":15,"t":90,"tokens":[3868,5131,5053,7180],"delegation":[2868,4131,4053,6180],"delegatorTokens":9999999942188}},{"ix":108,"action":{"kind":"Deliver","chain":"consumer","numPackets":3},"partialState":{"h":11,"t":66,"consumerPower":[null,null,7550,7180],"outstandingDowntime":[false,false,false,false]}},{"ix":109,"action":{"kind":"Deliver","chain":"consumer","numPackets":3},"partialState":{"h":11,"t":66,"consumerPower":[null,null,7550,7180],"outstandingDowntime":[false,false,false,false]}},{"ix":110,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":111,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":16,"t":96,"tokens":[3868,5131,5053,7180],"delegation":[2868,4131,4053,6180],"delegatorTokens":9999999942188,"jailed":[1000000000000041,null,null,null],"status":["unbonding","bonded","unbonding","bonded"]}},{"ix":112,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":113,"action":{"kind":"Deliver","chain":"consumer","numPackets":6},"partialState":{"h":11,"t":66,"consumerPower":[null,null,7550,7180],"outstandingDowntime":[false,false,false,false]}},{"ix":114,"action":{"kind":"Deliver","chain":"provider","numPackets":6},"partialState":{"h":16,"t":96,"tokens":[3868,5131,5053,7180],"delegation":[2868,4131,4053,6180],"delegatorTokens":9999999942188,"jailed":[1000000000000041,null,null,null],"status":["unbonding","bonded","unbonding","bonded"]}},{"ix":115,"action":{"kind":"Undelegate","val":3,"amt":2365},"partialState":{"h":16,"t":96,"tokens":[3868,5131,5053,4815],"delegation":[2868,4131,4053,3815],"delegatorTokens":9999999942188}},{"ix":116,"action":{"kind":"Deliver","chain":"provider","numPackets":6},"partialState":{"h":16,"t":96,"tokens":[3868,5131,5053,4815],"delegation":[2868,4131,4053,3815],"delegatorTokens":9999999942188,"jailed":[1000000000000041,null,null,null],"status":["unbonding","bonded","unbonding","bonded"]}},{"ix":117,"action":{"kind":"Undelegate","val":3,"amt":3099},"partialState":{"h":16,"t":96,"tokens":[3868,5131,5053,1716],"delegation":[2868,4131,4053,716],"delegatorTokens":9999999942188}},{"ix":118,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":119,"action":{"kind":"Undelegate","val":0,"amt":3795},"partialState":{"h":16,"t":96,"tokens":[3868,5131,5053,1716],"delegation":[2868,4131,4053,716],"delegatorTokens":9999999942188}},{"ix":120,"action":{"kind":"Deliver","chain":"provider","numPackets":4},"partialState":{"h":16,"t":96,"tokens":[3868,5131,5053,1716],"delegation":[2868,4131,4053,716],"delegatorTokens":9999999942188,"jailed":[1000000000000041,null,null,null],"status":["unbonding","bonded","unbonding","bonded"]}},{"ix":121,"action":{"kind":"Undelegate","val":3,"amt":3762},"partialState":{"h":16,"t":96,"tokens":[3868,5131,5053,1716],"delegation":[2868,4131,4053,716],"delegatorTokens":9999999942188}},{"ix":122,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":17,"t":102,"tokens":[3868,5131,5053,1716],"delegation":[2868,4131,4053,716],"delegatorTokens":9999999942188,"jailed":[1000000000000041,null,null,null],"status":["unbonding","bonded","bonded","unbonding"]}},{"ix":123,"action":{"kind":"Delegate","val":2,"amt":4992},"partialState":{"h":17,"t":102,"tokens":[3868,5131,10045,1716],"delegation":[2868,4131,9045,716],"delegatorTokens":9999999937196}},{"ix":124,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":18,"t":108,"tokens":[3868,5131,10045,1716],"delegation":[2868,4131,9045,716],"delegatorTokens":9999999937196,"jailed":[1000000000000041,null,null,null],"status":["unbonding","bonded","bonded","unbonding"]}},{"ix":125,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":12,"t":72,"consumerPower":[null,5131,null,7180],"outstandingDowntime":[false,false,false,false]}},{"ix":126,"action":{"kind":"Delegate","val":1,"amt":4189},"partialState":{"h":18,"t":108,"tokens":[3868,9320,10045,1716],"delegation":[2868,8320,9045,716],"delegatorTokens":9999999933007}},{"ix":127,"action":{"kind":"Undelegate","val":1,"amt":2403},"partialState":{"h":18,"t":108,"tokens":[3868,6917,10045,1716],"delegation":[2868,5917,9045,716],"delegatorTokens":9999999933007}},{"ix":128,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":13,"t":78,"consumerPower":[null,5131,null,7180],"outstandingDowntime":[false,false,false,false]}},{"ix":129,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":130,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":131,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":132,"action":{"kind":"Deliver","chain":"consumer","numPackets":5},"partialState":{"h":13,"t":78,"consumerPower":[null,5131,null,7180],"outstandingDowntime":[false,false,false,false]}},{"ix":133,"action":{"kind":"Undelegate","val":1,"amt":1349},"partialState":{"h":18,"t":108,"tokens":[3868,5568,10045,1716],"delegation":[2868,4568,9045,716],"delegatorTokens":9999999933007}},{"ix":134,"action":{"kind":"Deliver","chain":"consumer","numPackets":5},"partialState":{"h":13,"t":78,"consumerPower":[null,5131,null,7180],"outstandingDowntime":[false,false,false,false]}},{"ix":135,"action":{"kind":"Deliver","chain":"provider","numPackets":1},"partialState":{"h":18,"t":108,"tokens":[3868,5568,10045,1716],"delegation":[2868,4568,9045,716],"delegatorTokens":9999999933007,"jailed":[1000000000000041,null,null,null],"status":["unbonding","bonded","bonded","unbonding"]}},{"ix":136,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":14,"t":84,"consumerPower":[null,5131,5053,null],"outstandingDowntime":[false,false,false,false]}},{"ix":137,"action":{"kind":"Undelegate","val":3,"amt":4796},"partialState":{"h":18,"t":108,"tokens":[3868,5568,10045,1716],"delegation":[2868,4568,9045,716],"delegatorTokens":9999999933007}},{"ix":138,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":139,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":15,"t":90,"consumerPower":[null,5131,5053,null],"outstandingDowntime":[false,false,false,false]}},{"ix":140,"action":{"kind":"Deliver","chain":"provider","numPackets":2},"partialState":{"h":18,"t":108,"tokens":[3868,5568,10045,1716],"delegation":[2868,4568,9045,716],"delegatorTokens":9999999933007,"jailed":[1000000000000041,null,null,null],"status":["unbonding","bonded","bonded","unbonding"]}},{"ix":141,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":142,"action":{"kind":"Delegate","val":2,"amt":1978},"partialState":{"h":18,"t":108,"tokens":[3868,5568,12023,1716],"delegation":[2868,4568,11023,716],"delegatorTokens":9999999931029}},{"ix":143,"action":{"kind":"Delegate","val":1,"amt":2761},"partialState":{"h":18,"t":108,"tokens":[3868,8329,12023,1716],"delegation":[2868,7329,11023,716],"delegatorTokens":9999999928268}},{"ix":144,"action":{"kind":"Delegate","val":3,"amt":1162},"partialState":{"h":18,"t":108,"tokens":[3868,8329,12023,2878],"delegation":[2868,7329,11023,1878],"delegatorTokens":9999999927106}},{"ix":145,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":146,"action":{"kind":"Deliver","chain":"provider","numPackets":3},"partialState":{"h":18,"t":108,"tokens":[3868,8329,12023,2878],"delegation":[2868,7329,11023,1878],"delegatorTokens":9999999927106,"jailed":[1000000000000041,null,null,null],"status":["unbonding","bonded","bonded","unbonding"]}},{"ix":147,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":16,"t":96,"consumerPower":[null,5131,5053,null],"outstandingDowntime":[false,false,false,false]}},{"ix":148,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":17,"t":102,"consumerPower":[null,5131,5053,null],"outstandingDowntime":[false,false,false,false]}},{"ix":149,"action":{"kind":"Undelegate","val":2,"amt":1454},"partialState":{"h":18,"t":108,"tokens":[3868,8329,10569,2878],"delegation":[2868,7329,9569,1878],"delegatorTokens":9999999927106}},{"ix":150,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":151,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":18,"t":108,"consumerPower":[null,5131,5053,null],"outstandingDowntime":[false,false,false,false]}},{"ix":152,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":19,"t":114,"tokens":[3868,8329,10569,2878],"delegation":[2868,7329,9569,1878],"delegatorTokens":9999999944437,"jailed":[1000000000000041,null,null,null],"status":["unbonding","bonded","bonded","unbonding"]}},{"ix":153,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":19,"t":114,"consumerPower":[null,5131,5053,null],"outstandingDowntime":[false,false,false,false]}},{"ix":154,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":155,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":156,"action":{"kind":"Deliver","chain":"consumer","numPackets":5},"partialState":{"h":19,"t":114,"consumerPower":[null,5131,5053,null],"outstandingDowntime":[false,false,false,false]}},{"ix":157,"action":{"kind":"Undelegate","val":2,"amt":2806},"partialState":{"h":19,"t":114,"tokens":[3868,8329,7763,2878],"delegation":[2868,7329,6763,1878],"delegatorTokens":9999999944437}},{"ix":158,"action":{"kind":"Deliver","chain":"consumer","numPackets":6},"partialState":{"h":19,"t":114,"consumerPower":[null,5131,5053,null],"outstandingDowntime":[false,false,false,false]}},{"ix":159,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":20,"t":120,"consumerPower":[null,5131,10045,null],"outstandingDowntime":[false,false,false,false]}},{"ix":160,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":20,"t":120,"tokens":[3868,8329,7763,2878],"delegation":[2868,7329,6763,1878],"delegatorTokens":9999999944437,"jailed":[1000000000000041,null,null,null],"status":["unbonded","bonded","bonded","unbonding"]}},{"ix":161,"action":{"kind":"Delegate","val":3,"amt":2247},"partialState":{"h":20,"t":120,"tokens":[3868,8329,7763,5125],"delegation":[2868,7329,6763,4125],"delegatorTokens":9999999942190}},{"ix":162,"action":{"kind":"Deliver","chain":"provider","numPackets":2},"partialState":{"h":20,"t":120,"tokens":[3868,8329,7763,5125],"delegation":[2868,7329,6763,4125],"delegatorTokens":9999999942190,"jailed":[1000000000000041,null,null,null],"status":["unbonded","bonded","bonded","unbonding"]}},{"ix":163,"action":{"kind":"Delegate","val":1,"amt":1391},"partialState":{"h":20,"t":120,"tokens":[3868,9720,7763,5125],"delegation":[2868,8720,6763,4125],"delegatorTokens":9999999940799}},{"ix":164,"action":{"kind":"Delegate","val":0,"amt":3331},"partialState":{"h":20,"t":120,"tokens":[7199,9720,7763,5125],"delegation":[6199,8720,6763,4125],"delegatorTokens":9999999937468}},{"ix":165,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":21,"t":126,"tokens":[7199,9720,7763,5125],"delegation":[6199,8720,6763,4125],"delegatorTokens":9999999945097,"jailed":[1000000000000041,null,null,null],"status":["unbonded","bonded","bonded","unbonding"]}},{"ix":166,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":22,"t":132,"tokens":[7199,9720,7763,5125],"delegation":[6199,8720,6763,4125],"delegatorTokens":9999999945097,"jailed":[1000000000000041,null,null,null],"status":["unbonded","bonded","bonded","unbonding"]}},{"ix":167,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":21,"t":126,"consumerPower":[null,5131,10045,null],"outstandingDowntime":[false,false,false,false]}},{"ix":168,"action":{"kind":"Delegate","val":0,"amt":4598},"partialState":{"h":22,"t":132,"tokens":[11797,9720,7763,5125],"delegation":[10797,8720,6763,4125],"delegatorTokens":9999999940499}},{"ix":169,"action":{"kind":"Undelegate","val":3,"amt":3826},"partialState":{"h":22,"t":132,"tokens":[11797,9720,7763,1299],"delegation":[10797,8720,6763,299],"delegatorTokens":9999999940499}},{"ix":170,"action":{"kind":"Undelegate","val":0,"amt":3272},"partialState":{"h":22,"t":132,"tokens":[8525,9720,7763,1299],"delegation":[7525,8720,6763,299],"delegatorTokens":9999999940499}},{"ix":171,"action":{"kind":"Deliver","chain":"consumer","numPackets":4},"partialState":{"h":21,"t":126,"consumerPower":[null,5131,10045,null],"outstandingDowntime":[false,false,false,false]}},{"ix":172,"action":{"kind":"Deliver","chain":"provider","numPackets":5},"partialState":{"h":22,"t":132,"tokens":[8525,9720,7763,1299],"delegation":[7525,8720,6763,299],"delegatorTokens":9999999940499,"jailed":[1000000000000041,null,null,null],"status":["unbonded","bonded","bonded","unbonding"]}},{"ix":173,"action":{"kind":"Deliver","chain":"consumer","numPackets":6},"partialState":{"h":21,"t":126,"consumerPower":[null,5131,10045,null],"outstandingDowntime":[false,false,false,false]}},{"ix":174,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":22,"t":132,"consumerPower":[null,9720,7763,null],"outstandingDowntime":[false,false,false,false]}},{"ix":175,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":23,"t":138,"consumerPower":[null,9720,7763,null],"outstandingDowntime":[false,false,false,false]}},{"ix":176,"action":{"kind":"Deliver","chain":"consumer","numPackets":6},"partialState":{"h":23,"t":138,"consumerPower":[null,9720,7763,null],"outstandingDowntime":[false,false,false,false]}},{"ix":177,"action":{"kind":"Delegate","val":3,"amt":2466},"partialState":{"h":22,"t":132,"tokens":[8525,9720,7763,3765],"delegation":[7525,8720,6763,2765],"delegatorTokens":9999999938033}},{"ix":178,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":179,"action":{"kind":"Deliver","chain":"consumer","numPackets":3},"partialState":{"h":23,"t":138,"consumerPower":[null,9720,7763,null],"outstandingDowntime":[false,false,false,false]}},{"ix":180,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":24,"t":144,"consumerPower":[null,9720,7763,null],"outstandingDowntime":[false,false,false,false]}},{"ix":181,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":23,"t":138,"tokens":[8525,9720,7763,3765],"delegation":[7525,8720,6763,2765],"delegatorTokens":9999999941870,"jailed":[1000000000000041,null,null,null],"status":["unbonded","bonded","bonded","unbonding"]}},{"ix":182,"action":{"kind":"Delegate","val":1,"amt":3131},"partialState":{"h":23,"t":138,"tokens":[8525,12851,7763,3765],"delegation":[7525,11851,6763,2765],"delegatorTokens":9999999938739}},{"ix":183,"action":{"kind":"Undelegate","val":1,"amt":3904},"partialState":{"h":23,"t":138,"tokens":[8525,8947,7763,3765],"delegation":[7525,7947,6763,2765],"delegatorTokens":9999999938739}},{"ix":184,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":25,"t":150,"consumerPower":[null,9720,7763,null],"outstandingDowntime":[false,false,false,false]}},{"ix":185,"action":{"kind":"Deliver","chain":"consumer","numPackets":1},"partialState":{"h":25,"t":150,"consumerPower":[null,9720,7763,null],"outstandingDowntime":[false,false,false,false]}},{"ix":186,"action":{"kind":"Undelegate","val":3,"amt":3272},"partialState":{"h":23,"t":138,"tokens":[8525,8947,7763,3765],"delegation":[7525,7947,6763,2765],"delegatorTokens":9999999938739}},{"ix":187,"action":{"kind":"Delegate","val":0,"amt":1933},"partialState":{"h":23,"t":138,"tokens":[10458,8947,7763,3765],"delegation":[9458,7947,6763,2765],"delegatorTokens":9999999936806}},{"ix":188,"action":{"kind":"Undelegate","val":2,"amt":4090},"partialState":{"h":23,"t":138,"tokens":[10458,8947,3673,3765],"delegation":[9458,7947,2673,2765],"delegatorTokens":9999999936806}},{"ix":189,"action":{"kind":"Deliver","chain":"provider","numPackets":1},"partialState":{"h":23,"t":138,"tokens":[10458,8947,3673,3765],"delegation":[9458,7947,2673,2765],"delegatorTokens":9999999936806,"jailed":[1000000000000041,null,null,null],"status":["unbonded","bonded","bonded","unbonding"]}},{"ix":190,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":191,"action":{"kind":"Delegate","val":0,"amt":1988},"partialState":{"h":23,"t":138,"tokens":[12446,8947,3673,3765],"delegation":[11446,7947,2673,2765],"delegatorTokens":9999999934818}},{"ix":192,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":24,"t":144,"tokens":[12446,8947,3673,3765],"delegation":[11446,7947,2673,2765],"delegatorTokens":9999999945214,"jailed":[1000000000000041,null,null,null],"status":["unbonded","bonded","unbonding","bonded"]}},{"ix":193,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":194,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":195,"action":{"kind":"Delegate","val":0,"amt":1947},"partialState":{"h":24,"t":144,"tokens":[14393,8947,3673,3765],"delegation":[13393,7947,2673,2765],"delegatorTokens":9999999943267}},{"ix":196,"action":{"kind":"Undelegate","val":2,"amt":3787},"partialState":{"h":24,"t":144,"tokens":[14393,8947,3673,3765],"delegation":[13393,7947,2673,2765],"delegatorTokens":9999999943267}},{"ix":197,"action":{"kind":"Undelegate","val":3,"amt":2336},"partialState":{"h":24,"t":144,"tokens":[14393,8947,3673,1429],"delegation":[13393,7947,2673,429],"delegatorTokens":9999999943267}},{"ix":198,"action":{"kind":"Undelegate","val":1,"amt":2425},"partialState":{"h":24,"t":144,"tokens":[14393,6522,3673,1429],"delegation":[13393,5522,2673,429],"delegatorTokens":9999999943267}},{"ix":199,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":26,"t":156,"consumerPower":[null,9720,7763,null],"outstandingDowntime":[false,false,false,false]}}],"events":["send_double_sign_slash_request","insufficient_shares","send_vsc_without_downtime_ack","insufficient_shares","insufficient_shares","send_double_sign_slash_request","more_than_one_third_val_power_change","send_vsc_without_downtime_ack","send_downtime_slash_request","send_vsc_without_downtime_ack","insufficient_shares","more_than_one_third_val_power_change","send_vsc_without_downtime_ack","consumer_update_val","consumer_del_val","consumer_add_val","receive_double_sign_slash_request","more_than_one_third_val_power_change","rebond_unval","send_vsc_without_downtime_ack","consumer_update_val","consumer_del_val","consumer_add_val","insufficient_shares","receive_double_sign_slash_request","receive_downtime_slash_request","jail","send_vsc_with_downtime_ack","send_vsc_without_downtime_ack","receive_downtime_slash_ack","send_vsc_without_downtime_ack","send_vsc_not_because_change","send_vsc_without_downtime_ack","consumer_del_val","consumer_add_val","consumer_update_val","send_vsc_without_downtime_ack","insufficient_shares","insufficient_shares","insufficient_shares","consumer_update_val","consumer_update_val","send_vsc_without_downtime_ack","send_vsc_not_because_change","send_vsc_without_downtime_ack","insufficient_shares","consumer_update_val","consumer_update_val","more_than_one_third_val_power_change","rebond_unval","send_vsc_without_downtime_ack","some_undels_expired_but_not_completed","insufficient_shares","insufficient_shares","more_than_one_third_val_power_change","rebond_unval","some_undels_expired_but_not_completed","send_vsc_without_downtime_ack","send_vsc_without_downtime_ack","consumer_send_maturation","consumer_send_maturation","consumer_del_val","consumer_add_val","consumer_send_maturation","consumer_send_maturation","consumer_add_val","consumer_del_val","insufficient_shares","consumer_send_maturation","consumer_send_maturation","consumer_send_maturation","consumer_send_maturation","consumer_send_maturation","consumer_send_maturation","some_undels_expired_but_not_completed","set_unval_hold_false","complete_undel_immediate","complete_undel_immediate","complete_undel_immediate","complete_undel_immediate","complete_undel_immediate","complete_undel_immediate","send_vsc_without_downtime_ack","consumer_update_val","complete_unval_in_endblock","some_undels_expired_but_not_completed","send_vsc_without_downtime_ack","some_undels_expired_but_not_completed","complete_undel_immediate","complete_undel_immediate","complete_undel_immediate","send_vsc_without_downtime_ack","consumer_send_maturation","consumer_send_maturation","consumer_send_maturation","consumer_update_val","consumer_update_val","consumer_send_maturation","some_undels_expired_but_not_completed","complete_undel_immediate","complete_undel_immediate","set_undel_hold_false","set_undel_hold_false","set_undel_hold_false","send_vsc_not_because_change","send_vsc_without_downtime_ack","insufficient_shares","rebond_unval","complete_undel_in_endblock","set_undel_hold_false","set_undel_hold_false","set_undel_hold_false","send_vsc_without_downtime_ack","insufficient_shares"]},{"meta":{"commit":"7ffd0c04e4205cbc9caf212abfe6c59ee43153bf"},"constants":{"P":"provider","C":"consumer","UNBONDING_SECONDS_P":70,"UNBONDING_SECONDS_C":50,"TRUSTING_SECONDS":49,"NUM_VALIDATORS":4,"MAX_VALIDATORS":2,"SLASH_DOUBLESIGN":0,"SLASH_DOWNTIME":0,"JAIL_SECONDS":999999999999999,"BLOCK_SECONDS":6,"INITIAL_DELEGATOR_TOKENS":10000000000000,"DELEGATE_AMT_MIN":1000,"DELEGATE_AMT_MAX":5000,"UNDELEGATE_AMT_MIN":1000,"UNDELEGATE_AMT_MAX":5000,"ISDOWNTIME_PROBABILITY":0.5,"MAX_NUM_PACKETS_FOR_DELIVER":6},"actions":[{"ix":0,"action":{"kind":"ConsumerSlash","val":1,"infractionHeight":0,"isDowntime":true},"partialState":{"h":1,"t":6,"outstandingDowntime":[false,true,false,false]}},{"ix":1,"action":{"kind":"ConsumerSlash","val":0,"infractionHeight":0,"isDowntime":false},"partialState":{"h":1,"t":6,"outstandingDowntime":[false,true,false,false]}},{"ix":2,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":2,"t":12,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,true,false,false]}},{"ix":3,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":3,"t":18,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,true,false,false]}},{"ix":4,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":2,"t":12,"tokens":[5000,4000,3000,2000],"delegation":[4000,3000,2000,1000],"delegatorTokens":10000000000000,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":5,"action":{"kind":"Deliver","chain":"provider","numPackets":1},"partialState":{"h":2,"t":12,"tokens":[5000,4000,3000,2000],"delegation":[4000,3000,2000,1000],"delegatorTokens":10000000000000,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":6,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":4,"t":24,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,true,false,false]}},{"ix":7,"action":{"kind":"Undelegate","val":1,"amt":1882},"partialState":{"h":2,"t":12,"tokens":[5000,2118,3000,2000],"delegation":[4000,1118,2000,1000],"delegatorTokens":10000000000000}},{"ix":8,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":9,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":3,"t":18,"tokens":[5000,2118,3000,2000],"delegation":[4000,1118,2000,1000],"delegatorTokens":10000000000000,"jailed":[null,1000000000000011,null,null],"status":["bonded","unbonding","bonded","unbonded"]}},{"ix":10,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":11,"action":{"kind":"Undelegate","val":0,"amt":4007},"partialState":{"h":3,"t":18,"tokens":[5000,2118,3000,2000],"delegation":[4000,1118,2000,1000],"delegatorTokens":10000000000000}},{"ix":12,"action":{"kind":"Undelegate","val":0,"amt":2325},"partialState":{"h":3,"t":18,"tokens":[2675,2118,3000,2000],"delegation":[1675,1118,2000,1000],"delegatorTokens":10000000000000}},{"ix":13,"action":{"kind":"Undelegate","val":2,"amt":3106},"partialState":{"h":3,"t":18,"tokens":[2675,2118,3000,2000],"delegation":[1675,1118,2000,1000],"delegatorTokens":10000000000000}},{"ix":14,"action":{"kind":"Deliver","chain":"provider","numPackets":4},"partialState":{"h":3,"t":18,"tokens":[2675,2118,3000,2000],"delegation":[1675,1118,2000,1000],"delegatorTokens":10000000000000,"jailed":[null,1000000000000011,null,null],"status":["bonded","unbonding","bonded","unbonded"]}},{"ix":15,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":4,"t":24,"tokens":[2675,2118,3000,2000],"delegation":[1675,1118,2000,1000],"delegatorTokens":10000000000000,"jailed":[null,1000000000000011,null,null],"status":["bonded","unbonding","bonded","unbonded"]}},{"ix":16,"action":{"kind":"Undelegate","val":2,"amt":1097},"partialState":{"h":4,"t":24,"tokens":[2675,2118,1903,2000],"delegation":[1675,1118,903,1000],"delegatorTokens":10000000000000}},{"ix":17,"action":{"kind":"Deliver","chain":"consumer","numPackets":4},"partialState":{"h":4,"t":24,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":18,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":5,"t":30,"tokens":[2675,2118,1903,2000],"delegation":[1675,1118,903,1000],"delegatorTokens":10000000000000,"jailed":[null,1000000000000011,null,null],"status":["bonded","unbonding","unbonding","bonded"]}},{"ix":19,"action":{"kind":"Undelegate","val":3,"amt":3451},"partialState":{"h":5,"t":30,"tokens":[2675,2118,1903,2000],"delegation":[1675,1118,903,1000],"delegatorTokens":10000000000000}},{"ix":20,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":21,"action":{"kind":"ConsumerSlash","val":1,"infractionHeight":2,"isDowntime":true},"partialState":{"h":4,"t":24,"outstandingDowntime":[false,true,false,false]}},{"ix":22,"action":{"kind":"Deliver","chain":"provider","numPackets":1},"partialState":{"h":5,"t":30,"tokens":[2675,2118,1903,2000],"delegation":[1675,1118,903,1000],"delegatorTokens":10000000000000,"jailed":[null,1000000000000011,null,null],"status":["bonded","unbonding","unbonding","bonded"]}},{"ix":23,"action":{"kind":"Undelegate","val":3,"amt":2071},"partialState":{"h":5,"t":30,"tokens":[2675,2118,1903,2000],"delegation":[1675,1118,903,1000],"delegatorTokens":10000000000000}},{"ix":24,"action":{"kind":"Undelegate","val":2,"amt":2496},"partialState":{"h":5,"t":30,"tokens":[2675,2118,1903,2000],"delegation":[1675,1118,903,1000],"delegatorTokens":10000000000000}},{"ix":25,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":26,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":5,"t":30,"consumerPower":[5000,null,3000,null],"outstandingDowntime":[false,true,false,false]}},{"ix":27,"action":{"kind":"Undelegate","val":0,"amt":2909},"partialState":{"h":5,"t":30,"tokens":[2675,2118,1903,2000],"delegation":[1675,1118,903,1000],"delegatorTokens":10000000000000}},{"ix":28,"action":{"kind":"Delegate","val":2,"amt":3481},"partialState":{"h":5,"t":30,"tokens":[2675,2118,5384,2000],"delegation":[1675,1118,4384,1000],"delegatorTokens":9999999996519}},{"ix":29,"action":{"kind":"Deliver","chain":"provider","numPackets":3},"partialState":{"h":5,"t":30,"tokens":[2675,2118,5384,2000],"delegation":[1675,1118,4384,1000],"delegatorTokens":9999999996519,"jailed":[null,1000000000000011,null,null],"status":["bonded","unbonding","unbonding","bonded"]}},{"ix":30,"action":{"kind":"ConsumerSlash","val":3,"infractionHeight":1,"isDowntime":false},"partialState":{"h":5,"t":30,"outstandingDowntime":[false,true,false,false]}},{"ix":31,"action":{"kind":"Undelegate","val":1,"amt":2508},"partialState":{"h":5,"t":30,"tokens":[2675,2118,5384,2000],"delegation":[1675,1118,4384,1000],"delegatorTokens":9999999996519}},{"ix":32,"action":{"kind":"Deliver","chain":"provider","numPackets":4},"partialState":{"h":5,"t":30,"tokens":[2675,2118,5384,2000],"delegation":[1675,1118,4384,1000],"delegatorTokens":9999999996519,"jailed":[null,1000000000000011,null,null],"status":["bonded","unbonding","unbonding","bonded"]}},{"ix":33,"action":{"kind":"Deliver","chain":"consumer","numPackets":6},"partialState":{"h":5,"t":30,"consumerPower":[5000,null,3000,null],"outstandingDowntime":[false,true,false,false]}},{"ix":34,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":6,"t":36,"consumerPower":[2675,null,3000,null],"outstandingDowntime":[false,true,false,false]}},{"ix":35,"action":{"kind":"Undelegate","val":3,"amt":3031},"partialState":{"h":5,"t":30,"tokens":[2675,2118,5384,2000],"delegation":[1675,1118,4384,1000],"delegatorTokens":9999999996519}},{"ix":36,"action":{"kind":"Undelegate","val":0,"amt":4598},"partialState":{"h":5,"t":30,"tokens":[2675,2118,5384,2000],"delegation":[1675,1118,4384,1000],"delegatorTokens":9999999996519}},{"ix":37,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":7,"t":42,"consumerPower":[2675,null,3000,null],"outstandingDowntime":[false,true,false,false]}},{"ix":38,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":6,"t":36,"tokens":[2675,2118,5384,2000],"delegation":[1675,1118,4384,1000],"delegatorTokens":9999999996519,"jailed":[null,1000000000000011,null,null],"status":["bonded","unbonding","bonded","unbonding"]}},{"ix":39,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":40,"action":{"kind":"Deliver","chain":"provider","numPackets":6},"partialState":{"h":6,"t":36,"tokens":[2675,2118,5384,2000],"delegation":[1675,1118,4384,1000],"delegatorTokens":9999999996519,"jailed":[null,1000000000000011,null,null],"status":["bonded","unbonding","bonded","unbonding"]}},{"ix":41,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":42,"action":{"kind":"Delegate","val":0,"amt":2502},"partialState":{"h":6,"t":36,"tokens":[5177,2118,5384,2000],"delegation":[4177,1118,4384,1000],"delegatorTokens":9999999994017}},{"ix":43,"action":{"kind":"Deliver","chain":"consumer","numPackets":1},"partialState":{"h":7,"t":42,"consumerPower":[2675,null,3000,null],"outstandingDowntime":[false,true,false,false]}},{"ix":44,"action":{"kind":"Delegate","val":1,"amt":2662},"partialState":{"h":6,"t":36,"tokens":[5177,4780,5384,2000],"delegation":[4177,3780,4384,1000],"delegatorTokens":9999999991355}},{"ix":45,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":7,"t":42,"tokens":[5177,4780,5384,2000],"delegation":[4177,3780,4384,1000],"delegatorTokens":9999999991355,"jailed":[null,1000000000000035,null,null],"status":["bonded","unbonding","bonded","unbonding"]}},{"ix":46,"action":{"kind":"Undelegate","val":3,"amt":1533},"partialState":{"h":7,"t":42,"tokens":[5177,4780,5384,2000],"delegation":[4177,3780,4384,1000],"delegatorTokens":9999999991355}},{"ix":47,"action":{"kind":"Undelegate","val":1,"amt":4748},"partialState":{"h":7,"t":42,"tokens":[5177,4780,5384,2000],"delegation":[4177,3780,4384,1000],"delegatorTokens":9999999991355}},{"ix":48,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":49,"action":{"kind":"Delegate","val":1,"amt":4921},"partialState":{"h":7,"t":42,"tokens":[5177,9701,5384,2000],"delegation":[4177,8701,4384,1000],"delegatorTokens":9999999986434}},{"ix":50,"action":{"kind":"Undelegate","val":2,"amt":3824},"partialState":{"h":7,"t":42,"tokens":[5177,9701,1560,2000],"delegation":[4177,8701,560,1000],"delegatorTokens":9999999986434}},{"ix":51,"action":{"kind":"Undelegate","val":1,"amt":3628},"partialState":{"h":7,"t":42,"tokens":[5177,6073,1560,2000],"delegation":[4177,5073,560,1000],"delegatorTokens":9999999986434}},{"ix":52,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":8,"t":48,"tokens":[5177,6073,1560,2000],"delegation":[4177,5073,560,1000],"delegatorTokens":9999999986434,"jailed":[null,1000000000000035,null,null],"status":["bonded","unbonding","unbonding","bonded"]}},{"ix":53,"action":{"kind":"Delegate","val":2,"amt":4457},"partialState":{"h":8,"t":48,"tokens":[5177,6073,6017,2000],"delegation":[4177,5073,5017,1000],"delegatorTokens":9999999981977}},{"ix":54,"action":{"kind":"Undelegate","val":1,"amt":2630},"partialState":{"h":8,"t":48,"tokens":[5177,3443,6017,2000],"delegation":[4177,2443,5017,1000],"delegatorTokens":9999999981977}},{"ix":55,"action":{"kind":"Delegate","val":0,"amt":2096},"partialState":{"h":8,"t":48,"tokens":[7273,3443,6017,2000],"delegation":[6273,2443,5017,1000],"delegatorTokens":9999999979881}},{"ix":56,"action":{"kind":"Deliver","chain":"provider","numPackets":2},"partialState":{"h":8,"t":48,"tokens":[7273,3443,6017,2000],"delegation":[6273,2443,5017,1000],"delegatorTokens":9999999979881,"jailed":[null,1000000000000035,null,null],"status":["bonded","unbonding","unbonding","bonded"]}},{"ix":57,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":58,"action":{"kind":"Delegate","val":2,"amt":1481},"partialState":{"h":8,"t":48,"tokens":[7273,3443,7498,2000],"delegation":[6273,2443,6498,1000],"delegatorTokens":9999999978400}},{"ix":59,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":60,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":9,"t":54,"tokens":[7273,3443,7498,2000],"delegation":[6273,2443,6498,1000],"delegatorTokens":9999999978400,"jailed":[null,1000000000000035,null,null],"status":["bonded","unbonding","bonded","unbonding"]}},{"ix":61,"action":{"kind":"Deliver","chain":"consumer","numPackets":3},"partialState":{"h":7,"t":42,"consumerPower":[2675,null,3000,null],"outstandingDowntime":[false,false,false,false]}},{"ix":62,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":63,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":64,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":65,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":8,"t":48,"consumerPower":[5177,null,null,2000],"outstandingDowntime":[false,false,false,false]}},{"ix":66,"action":{"kind":"Deliver","chain":"consumer","numPackets":5},"partialState":{"h":8,"t":48,"consumerPower":[5177,null,null,2000],"outstandingDowntime":[false,false,false,false]}},{"ix":67,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":68,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":69,"action":{"kind":"Undelegate","val":0,"amt":3333},"partialState":{"h":9,"t":54,"tokens":[3940,3443,7498,2000],"delegation":[2940,2443,6498,1000],"delegatorTokens":9999999978400}},{"ix":70,"action":{"kind":"Undelegate","val":0,"amt":3865},"partialState":{"h":9,"t":54,"tokens":[3940,3443,7498,2000],"delegation":[2940,2443,6498,1000],"delegatorTokens":9999999978400}},{"ix":71,"action":{"kind":"Undelegate","val":0,"amt":1700},"partialState":{"h":9,"t":54,"tokens":[2240,3443,7498,2000],"delegation":[1240,2443,6498,1000],"delegatorTokens":9999999978400}},{"ix":72,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":73,"action":{"kind":"Deliver","chain":"consumer","numPackets":1},"partialState":{"h":8,"t":48,"consumerPower":[5177,null,null,2000],"outstandingDowntime":[false,false,false,false]}},{"ix":74,"action":{"kind":"Delegate","val":3,"amt":3781},"partialState":{"h":9,"t":54,"tokens":[2240,3443,7498,5781],"delegation":[1240,2443,6498,4781],"delegatorTokens":9999999974619}},{"ix":75,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":9,"t":54,"consumerPower":[5177,null,null,2000],"outstandingDowntime":[false,false,false,false]}},{"ix":76,"action":{"kind":"Undelegate","val":0,"amt":3238},"partialState":{"h":9,"t":54,"tokens":[2240,3443,7498,5781],"delegation":[1240,2443,6498,4781],"delegatorTokens":9999999974619}},{"ix":77,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":78,"action":{"kind":"Undelegate","val":0,"amt":4295},"partialState":{"h":9,"t":54,"tokens":[2240,3443,7498,5781],"delegation":[1240,2443,6498,4781],"delegatorTokens":9999999974619}},{"ix":79,"action":{"kind":"Delegate","val":2,"amt":1562},"partialState":{"h":9,"t":54,"tokens":[2240,3443,9060,5781],"delegation":[1240,2443,8060,4781],"delegatorTokens":9999999973057}},{"ix":80,"action":{"kind":"Undelegate","val":0,"amt":3991},"partialState":{"h":9,"t":54,"tokens":[2240,3443,9060,5781],"delegation":[1240,2443,8060,4781],"delegatorTokens":9999999973057}},{"ix":81,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":10,"t":60,"tokens":[2240,3443,9060,5781],"delegation":[1240,2443,8060,4781],"delegatorTokens":9999999973057,"jailed":[null,1000000000000035,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":82,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":11,"t":66,"tokens":[2240,3443,9060,5781],"delegation":[1240,2443,8060,4781],"delegatorTokens":9999999973057,"jailed":[null,1000000000000035,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":83,"action":{"kind":"Deliver","chain":"provider","numPackets":1},"partialState":{"h":11,"t":66,"tokens":[2240,3443,9060,5781],"delegation":[1240,2443,8060,4781],"delegatorTokens":9999999973057,"jailed":[null,1000000000000035,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":84,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":85,"action":{"kind":"Delegate","val":2,"amt":2381},"partialState":{"h":11,"t":66,"tokens":[2240,3443,11441,5781],"delegation":[1240,2443,10441,4781],"delegatorTokens":9999999970676}},{"ix":86,"action":{"kind":"Undelegate","val":3,"amt":2433},"partialState":{"h":11,"t":66,"tokens":[2240,3443,11441,3348],"delegation":[1240,2443,10441,2348],"delegatorTokens":9999999970676}},{"ix":87,"action":{"kind":"Delegate","val":0,"amt":2143},"partialState":{"h":11,"t":66,"tokens":[4383,3443,11441,3348],"delegation":[3383,2443,10441,2348],"delegatorTokens":9999999968533}},{"ix":88,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":12,"t":72,"tokens":[4383,3443,11441,3348],"delegation":[3383,2443,10441,2348],"delegatorTokens":9999999968533,"jailed":[null,1000000000000035,null,null],"status":["bonded","unbonding","bonded","unbonding"]}},{"ix":89,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":90,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":91,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":92,"action":{"kind":"Undelegate","val":2,"amt":2774},"partialState":{"h":12,"t":72,"tokens":[4383,3443,8667,3348],"delegation":[3383,2443,7667,2348],"delegatorTokens":9999999968533}},{"ix":93,"action":{"kind":"Delegate","val":3,"amt":2025},"partialState":{"h":12,"t":72,"tokens":[4383,3443,8667,5373],"delegation":[3383,2443,7667,4373],"delegatorTokens":9999999966508}},{"ix":94,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":95,"action":{"kind":"Delegate","val":0,"amt":1354},"partialState":{"h":12,"t":72,"tokens":[5737,3443,8667,5373],"delegation":[4737,2443,7667,4373],"delegatorTokens":9999999965154}},{"ix":96,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":97,"action":{"kind":"Delegate","val":2,"amt":1824},"partialState":{"h":12,"t":72,"tokens":[5737,3443,10491,5373],"delegation":[4737,2443,9491,4373],"delegatorTokens":9999999963330}},{"ix":98,"action":{"kind":"Deliver","chain":"consumer","numPackets":2},"partialState":{"h":9,"t":54,"consumerPower":[5177,null,null,2000],"outstandingDowntime":[false,false,false,false]}},{"ix":99,"action":{"kind":"Undelegate","val":1,"amt":1376},"partialState":{"h":12,"t":72,"tokens":[5737,2067,10491,5373],"delegation":[4737,1067,9491,4373],"delegatorTokens":9999999963330}},{"ix":100,"action":{"kind":"Undelegate","val":0,"amt":1763},"partialState":{"h":12,"t":72,"tokens":[3974,2067,10491,5373],"delegation":[2974,1067,9491,4373],"delegatorTokens":9999999963330}},{"ix":101,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":10,"t":60,"consumerPower":[null,null,9060,5781],"outstandingDowntime":[false,false,false,false]}},{"ix":102,"action":{"kind":"Undelegate","val":3,"amt":2881},"partialState":{"h":12,"t":72,"tokens":[3974,2067,10491,2492],"delegation":[2974,1067,9491,1492],"delegatorTokens":9999999963330}},{"ix":103,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":11,"t":66,"consumerPower":[null,null,9060,5781],"outstandingDowntime":[false,false,false,false]}},{"ix":104,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":13,"t":78,"tokens":[3974,2067,10491,2492],"delegation":[2974,1067,9491,1492],"delegatorTokens":9999999963330,"jailed":[null,1000000000000035,null,null],"status":["bonded","unbonding","bonded","unbonding"]}},{"ix":105,"action":{"kind":"Deliver","chain":"provider","numPackets":4},"partialState":{"h":13,"t":78,"tokens":[3974,2067,10491,2492],"delegation":[2974,1067,9491,1492],"delegatorTokens":9999999963330,"jailed":[null,1000000000000035,null,null],"status":["bonded","unbonding","bonded","unbonding"]}},{"ix":106,"action":{"kind":"Delegate","val":2,"amt":1059},"partialState":{"h":13,"t":78,"tokens":[3974,2067,11550,2492],"delegation":[2974,1067,10550,1492],"delegatorTokens":9999999962271}},{"ix":107,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":108,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":14,"t":84,"tokens":[3974,2067,11550,2492],"delegation":[2974,1067,10550,1492],"delegatorTokens":9999999962271,"jailed":[null,1000000000000035,null,null],"status":["bonded","unbonding","bonded","unbonding"]}},{"ix":109,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":12,"t":72,"consumerPower":[null,null,9060,5781],"outstandingDowntime":[false,false,false,false]}},{"ix":110,"action":{"kind":"Undelegate","val":1,"amt":2519},"partialState":{"h":14,"t":84,"tokens":[3974,2067,11550,2492],"delegation":[2974,1067,10550,1492],"delegatorTokens":9999999962271}},{"ix":111,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":112,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":13,"t":78,"consumerPower":[null,null,9060,5781],"outstandingDowntime":[false,false,false,false]}},{"ix":113,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":15,"t":90,"tokens":[3974,2067,11550,2492],"delegation":[2974,1067,10550,1492],"delegatorTokens":9999999962271,"jailed":[null,1000000000000035,null,null],"status":["bonded","unbonding","bonded","unbonding"]}},{"ix":114,"action":{"kind":"Undelegate","val":0,"amt":3794},"partialState":{"h":15,"t":90,"tokens":[3974,2067,11550,2492],"delegation":[2974,1067,10550,1492],"delegatorTokens":9999999962271}},{"ix":115,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":16,"t":96,"tokens":[3974,2067,11550,2492],"delegation":[2974,1067,10550,1492],"delegatorTokens":9999999962271,"jailed":[null,1000000000000035,null,null],"status":["bonded","unbonding","bonded","unbonding"]}},{"ix":116,"action":{"kind":"Undelegate","val":0,"amt":4282},"partialState":{"h":16,"t":96,"tokens":[3974,2067,11550,2492],"delegation":[2974,1067,10550,1492],"delegatorTokens":9999999962271}},{"ix":117,"action":{"kind":"Deliver","chain":"provider","numPackets":1},"partialState":{"h":16,"t":96,"tokens":[3974,2067,11550,2492],"delegation":[2974,1067,10550,1492],"delegatorTokens":9999999962271,"jailed":[null,1000000000000035,null,null],"status":["bonded","unbonding","bonded","unbonding"]}},{"ix":118,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":17,"t":102,"tokens":[3974,2067,11550,2492],"delegation":[2974,1067,10550,1492],"delegatorTokens":9999999962271,"jailed":[null,1000000000000035,null,null],"status":["bonded","unbonding","bonded","unbonding"]}},{"ix":119,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":14,"t":84,"consumerPower":[null,null,9060,5781],"outstandingDowntime":[false,false,false,false]}},{"ix":120,"action":{"kind":"Deliver","chain":"provider","numPackets":6},"partialState":{"h":17,"t":102,"tokens":[3974,2067,11550,2492],"delegation":[2974,1067,10550,1492],"delegatorTokens":9999999962271,"jailed":[null,1000000000000035,null,null],"status":["bonded","unbonding","bonded","unbonding"]}},{"ix":121,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":18,"t":108,"tokens":[3974,2067,11550,2492],"delegation":[2974,1067,10550,1492],"delegatorTokens":9999999962271,"jailed":[null,1000000000000035,null,null],"status":["bonded","unbonding","bonded","unbonding"]}},{"ix":122,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":19,"t":114,"tokens":[3974,2067,11550,2492],"delegation":[2974,1067,10550,1492],"delegatorTokens":9999999962271,"jailed":[null,1000000000000035,null,null],"status":["bonded","unbonding","bonded","unbonding"]}},{"ix":123,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":124,"action":{"kind":"Deliver","chain":"provider","numPackets":3},"partialState":{"h":19,"t":114,"tokens":[3974,2067,11550,2492],"delegation":[2974,1067,10550,1492],"delegatorTokens":9999999962271,"jailed":[null,1000000000000035,null,null],"status":["bonded","unbonding","bonded","unbonding"]}},{"ix":125,"action":{"kind":"Deliver","chain":"consumer","numPackets":2},"partialState":{"h":14,"t":84,"consumerPower":[null,null,9060,5781],"outstandingDowntime":[false,false,false,false]}},{"ix":126,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":15,"t":90,"consumerPower":[3974,null,10491,null],"outstandingDowntime":[false,false,false,false]}},{"ix":127,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":128,"action":{"kind":"Undelegate","val":1,"amt":2463},"partialState":{"h":19,"t":114,"tokens":[3974,2067,11550,2492],"delegation":[2974,1067,10550,1492],"delegatorTokens":9999999962271}},{"ix":129,"action":{"kind":"Deliver","chain":"consumer","numPackets":2},"partialState":{"h":15,"t":90,"consumerPower":[3974,null,10491,null],"outstandingDowntime":[false,false,false,false]}},{"ix":130,"action":{"kind":"Delegate","val":3,"amt":3782},"partialState":{"h":19,"t":114,"tokens":[3974,2067,11550,6274],"delegation":[2974,1067,10550,5274],"delegatorTokens":9999999958489}},{"ix":131,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":16,"t":96,"consumerPower":[3974,null,11550,null],"outstandingDowntime":[false,false,false,false]}},{"ix":132,"action":{"kind":"Delegate","val":2,"amt":3383},"partialState":{"h":19,"t":114,"tokens":[3974,2067,14933,6274],"delegation":[2974,1067,13933,5274],"delegatorTokens":9999999955106}},{"ix":133,"action":{"kind":"Deliver","chain":"provider","numPackets":3},"partialState":{"h":19,"t":114,"tokens":[3974,2067,14933,6274],"delegation":[2974,1067,13933,5274],"delegatorTokens":9999999955106,"jailed":[null,1000000000000035,null,null],"status":["bonded","unbonding","bonded","unbonding"]}},{"ix":134,"action":{"kind":"Deliver","chain":"consumer","numPackets":5},"partialState":{"h":16,"t":96,"consumerPower":[3974,null,11550,null],"outstandingDowntime":[false,false,false,false]}},{"ix":135,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":136,"action":{"kind":"Undelegate","val":0,"amt":4199},"partialState":{"h":19,"t":114,"tokens":[3974,2067,14933,6274],"delegation":[2974,1067,13933,5274],"delegatorTokens":9999999955106}},{"ix":137,"action":{"kind":"Delegate","val":0,"amt":4875},"partialState":{"h":19,"t":114,"tokens":[8849,2067,14933,6274],"delegation":[7849,1067,13933,5274],"delegatorTokens":9999999950231}},{"ix":138,"action":{"kind":"Delegate","val":2,"amt":4216},"partialState":{"h":19,"t":114,"tokens":[8849,2067,19149,6274],"delegation":[7849,1067,18149,5274],"delegatorTokens":9999999946015}},{"ix":139,"action":{"kind":"Deliver","chain":"provider","numPackets":6},"partialState":{"h":19,"t":114,"tokens":[8849,2067,19149,6274],"delegation":[7849,1067,18149,5274],"delegatorTokens":9999999946015,"jailed":[null,1000000000000035,null,null],"status":["bonded","unbonding","bonded","unbonding"]}},{"ix":140,"action":{"kind":"Undelegate","val":2,"amt":4640},"partialState":{"h":19,"t":114,"tokens":[8849,2067,14509,6274],"delegation":[7849,1067,13509,5274],"delegatorTokens":9999999946015}},{"ix":141,"action":{"kind":"Delegate","val":1,"amt":1716},"partialState":{"h":19,"t":114,"tokens":[8849,3783,14509,6274],"delegation":[7849,2783,13509,5274],"delegatorTokens":9999999944299}},{"ix":142,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":17,"t":102,"consumerPower":[3974,null,11550,null],"outstandingDowntime":[false,false,false,false]}},{"ix":143,"action":{"kind":"Undelegate","val":0,"amt":2298},"partialState":{"h":19,"t":114,"tokens":[6551,3783,14509,6274],"delegation":[5551,2783,13509,5274],"delegatorTokens":9999999944299}},{"ix":144,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":145,"action":{"kind":"Undelegate","val":0,"amt":4413},"partialState":{"h":19,"t":114,"tokens":[2138,3783,14509,6274],"delegation":[1138,2783,13509,5274],"delegatorTokens":9999999944299}},{"ix":146,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":20,"t":120,"tokens":[2138,3783,14509,6274],"delegation":[1138,2783,13509,5274],"delegatorTokens":9999999948506,"jailed":[null,1000000000000035,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":147,"action":{"kind":"Deliver","chain":"consumer","numPackets":4},"partialState":{"h":17,"t":102,"consumerPower":[3974,null,11550,null],"outstandingDowntime":[false,false,false,false]}},{"ix":148,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":18,"t":108,"consumerPower":[3974,null,11550,null],"outstandingDowntime":[false,false,false,false]}},{"ix":149,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":150,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":21,"t":126,"tokens":[2138,3783,14509,6274],"delegation":[1138,2783,13509,5274],"delegatorTokens":9999999948506,"jailed":[null,1000000000000035,null,null],"status":["unbonding","unbonded","bonded","bonded"]}},{"ix":151,"action":{"kind":"Undelegate","val":1,"amt":4332},"partialState":{"h":21,"t":126,"tokens":[2138,3783,14509,6274],"delegation":[1138,2783,13509,5274],"delegatorTokens":9999999948506}},{"ix":152,"action":{"kind":"Undelegate","val":3,"amt":4093},"partialState":{"h":21,"t":126,"tokens":[2138,3783,14509,2181],"delegation":[1138,2783,13509,1181],"delegatorTokens":9999999948506}},{"ix":153,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":22,"t":132,"tokens":[2138,3783,14509,2181],"delegation":[1138,2783,13509,1181],"delegatorTokens":9999999948506,"jailed":[null,1000000000000035,null,null],"status":["unbonding","unbonded","bonded","bonded"]}},{"ix":154,"action":{"kind":"Delegate","val":1,"amt":4399},"partialState":{"h":22,"t":132,"tokens":[2138,8182,14509,2181],"delegation":[1138,7182,13509,1181],"delegatorTokens":9999999944107}},{"ix":155,"action":{"kind":"Delegate","val":1,"amt":4996},"partialState":{"h":22,"t":132,"tokens":[2138,13178,14509,2181],"delegation":[1138,12178,13509,1181],"delegatorTokens":9999999939111}},{"ix":156,"action":{"kind":"Deliver","chain":"consumer","numPackets":4},"partialState":{"h":18,"t":108,"consumerPower":[3974,null,11550,null],"outstandingDowntime":[false,false,false,false]}},{"ix":157,"action":{"kind":"Deliver","chain":"consumer","numPackets":6},"partialState":{"h":18,"t":108,"consumerPower":[3974,null,11550,null],"outstandingDowntime":[false,false,false,false]}},{"ix":158,"action":{"kind":"Deliver","chain":"consumer","numPackets":3},"partialState":{"h":18,"t":108,"consumerPower":[3974,null,11550,null],"outstandingDowntime":[false,false,false,false]}},{"ix":159,"action":{"kind":"Deliver","chain":"consumer","numPackets":1},"partialState":{"h":18,"t":108,"consumerPower":[3974,null,11550,null],"outstandingDowntime":[false,false,false,false]}},{"ix":160,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":19,"t":114,"consumerPower":[null,null,14509,6274],"outstandingDowntime":[false,false,false,false]}},{"ix":161,"action":{"kind":"Delegate","val":0,"amt":4370},"partialState":{"h":22,"t":132,"tokens":[6508,13178,14509,2181],"delegation":[5508,12178,13509,1181],"delegatorTokens":9999999934741}},{"ix":162,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":163,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":20,"t":120,"consumerPower":[null,null,14509,6274],"outstandingDowntime":[false,false,false,false]}},{"ix":164,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":165,"action":{"kind":"Deliver","chain":"provider","numPackets":1},"partialState":{"h":22,"t":132,"tokens":[6508,13178,14509,2181],"delegation":[5508,12178,13509,1181],"delegatorTokens":9999999934741,"jailed":[null,1000000000000035,null,null],"status":["unbonding","unbonded","bonded","bonded"]}},{"ix":166,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":21,"t":126,"consumerPower":[null,null,14509,6274],"outstandingDowntime":[false,false,false,false]}},{"ix":167,"action":{"kind":"Delegate","val":3,"amt":1203},"partialState":{"h":22,"t":132,"tokens":[6508,13178,14509,3384],"delegation":[5508,12178,13509,2384],"delegatorTokens":9999999933538}},{"ix":168,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":23,"t":138,"tokens":[6508,13178,14509,3384],"delegation":[5508,12178,13509,2384],"delegatorTokens":9999999934635,"jailed":[null,1000000000000035,null,null],"status":["bonded","unbonded","bonded","unbonding"]}},{"ix":169,"action":{"kind":"Undelegate","val":3,"amt":2488},"partialState":{"h":23,"t":138,"tokens":[6508,13178,14509,3384],"delegation":[5508,12178,13509,2384],"delegatorTokens":9999999934635}},{"ix":170,"action":{"kind":"Delegate","val":3,"amt":2608},"partialState":{"h":23,"t":138,"tokens":[6508,13178,14509,5992],"delegation":[5508,12178,13509,4992],"delegatorTokens":9999999932027}},{"ix":171,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":24,"t":144,"tokens":[6508,13178,14509,5992],"delegation":[5508,12178,13509,4992],"delegatorTokens":9999999932027,"jailed":[null,1000000000000035,null,null],"status":["bonded","unbonded","bonded","unbonding"]}},{"ix":172,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":173,"action":{"kind":"Deliver","chain":"consumer","numPackets":4},"partialState":{"h":21,"t":126,"consumerPower":[null,null,14509,6274],"outstandingDowntime":[false,false,false,false]}},{"ix":174,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":175,"action":{"kind":"Delegate","val":2,"amt":1803},"partialState":{"h":24,"t":144,"tokens":[6508,13178,16312,5992],"delegation":[5508,12178,15312,4992],"delegatorTokens":9999999930224}},{"ix":176,"action":{"kind":"Deliver","chain":"consumer","numPackets":6},"partialState":{"h":21,"t":126,"consumerPower":[null,null,14509,6274],"outstandingDowntime":[false,false,false,false]}},{"ix":177,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":25,"t":150,"tokens":[6508,13178,16312,5992],"delegation":[5508,12178,15312,4992],"delegatorTokens":9999999930224,"jailed":[null,1000000000000035,null,null],"status":["bonded","unbonded","bonded","unbonding"]}},{"ix":178,"action":{"kind":"Undelegate","val":3,"amt":2511},"partialState":{"h":25,"t":150,"tokens":[6508,13178,16312,3481],"delegation":[5508,12178,15312,2481],"delegatorTokens":9999999930224}},{"ix":179,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":26,"t":156,"tokens":[6508,13178,16312,3481],"delegation":[5508,12178,15312,2481],"delegatorTokens":9999999930224,"jailed":[null,1000000000000035,null,null],"status":["bonded","unbonded","bonded","unbonding"]}},{"ix":180,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":22,"t":132,"consumerPower":[6508,null,14509,null],"outstandingDowntime":[false,false,false,false]}},{"ix":181,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":23,"t":138,"consumerPower":[6508,null,14509,null],"outstandingDowntime":[false,false,false,false]}},{"ix":182,"action":{"kind":"Deliver","chain":"provider","numPackets":5},"partialState":{"h":26,"t":156,"tokens":[6508,13178,16312,3481],"delegation":[5508,12178,15312,2481],"delegatorTokens":9999999930224,"jailed":[null,1000000000000035,null,null],"status":["bonded","unbonded","bonded","unbonding"]}},{"ix":183,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":184,"action":{"kind":"Delegate","val":3,"amt":3822},"partialState":{"h":26,"t":156,"tokens":[6508,13178,16312,7303],"delegation":[5508,12178,15312,6303],"delegatorTokens":9999999926402}},{"ix":185,"action":{"kind":"Undelegate","val":1,"amt":4360},"partialState":{"h":26,"t":156,"tokens":[6508,8818,16312,7303],"delegation":[5508,7818,15312,6303],"delegatorTokens":9999999926402}},{"ix":186,"action":{"kind":"Delegate","val":2,"amt":2792},"partialState":{"h":26,"t":156,"tokens":[6508,8818,19104,7303],"delegation":[5508,7818,18104,6303],"delegatorTokens":9999999923610}},{"ix":187,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":24,"t":144,"consumerPower":[6508,null,14509,null],"outstandingDowntime":[false,false,false,false]}},{"ix":188,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":27,"t":162,"tokens":[6508,8818,19104,7303],"delegation":[5508,7818,18104,6303],"delegatorTokens":9999999938725,"jailed":[null,1000000000000035,null,null],"status":["unbonding","unbonded","bonded","bonded"]}},{"ix":189,"action":{"kind":"Undelegate","val":1,"amt":2702},"partialState":{"h":27,"t":162,"tokens":[6508,6116,19104,7303],"delegation":[5508,5116,18104,6303],"delegatorTokens":9999999938725}},{"ix":190,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":191,"action":{"kind":"Deliver","chain":"provider","numPackets":4},"partialState":{"h":27,"t":162,"tokens":[6508,6116,19104,7303],"delegation":[5508,5116,18104,6303],"delegatorTokens":9999999938725,"jailed":[null,1000000000000035,null,null],"status":["unbonding","unbonded","bonded","bonded"]}},{"ix":192,"action":{"kind":"Deliver","chain":"consumer","numPackets":2},"partialState":{"h":24,"t":144,"consumerPower":[6508,null,14509,null],"outstandingDowntime":[false,false,false,false]}},{"ix":193,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":194,"action":{"kind":"Delegate","val":3,"amt":3627},"partialState":{"h":27,"t":162,"tokens":[6508,6116,19104,10930],"delegation":[5508,5116,18104,9930],"delegatorTokens":9999999935098}},{"ix":195,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":196,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":28,"t":168,"tokens":[6508,6116,19104,10930],"delegation":[5508,5116,18104,9930],"delegatorTokens":9999999935098,"jailed":[null,1000000000000035,null,null],"status":["unbonding","unbonded","bonded","bonded"]}},{"ix":197,"action":{"kind":"Undelegate","val":0,"amt":3766},"partialState":{"h":28,"t":168,"tokens":[2742,6116,19104,10930],"delegation":[1742,5116,18104,9930],"delegatorTokens":9999999935098}},{"ix":198,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":29,"t":174,"tokens":[2742,6116,19104,10930],"delegation":[1742,5116,18104,9930],"delegatorTokens":9999999935098,"jailed":[null,1000000000000035,null,null],"status":["unbonding","unbonded","bonded","bonded"]}},{"ix":199,"action":{"kind":"Delegate","val":0,"amt":2324},"partialState":{"h":29,"t":174,"tokens":[5066,6116,19104,10930],"delegation":[4066,5116,18104,9930],"delegatorTokens":9999999932774}}],"events":["send_downtime_slash_request","send_double_sign_slash_request","more_than_one_third_val_power_change","receive_downtime_slash_request","jail","send_vsc_with_downtime_ack","insufficient_shares","insufficient_shares","receive_double_sign_slash_request","send_vsc_without_downtime_ack","receive_downtime_slash_ack","more_than_one_third_val_power_change","send_vsc_without_downtime_ack","insufficient_shares","send_downtime_slash_request","insufficient_shares","insufficient_shares","consumer_del_val","consumer_add_val","insufficient_shares","send_double_sign_slash_request","insufficient_shares","consumer_update_val","insufficient_shares","insufficient_shares","more_than_one_third_val_power_change","rebond_unval","send_vsc_without_downtime_ack","receive_double_sign_slash_request","receive_downtime_slash_request","jail","send_vsc_with_downtime_ack","insufficient_shares","insufficient_shares","rebond_unval","send_vsc_without_downtime_ack","more_than_one_third_val_power_change","rebond_unval","send_vsc_without_downtime_ack","receive_downtime_slash_ack","consumer_del_val","consumer_add_val","consumer_update_val","insufficient_shares","insufficient_shares","insufficient_shares","insufficient_shares","more_than_one_third_val_power_change","rebond_unval","send_vsc_without_downtime_ack","rebond_unval","send_vsc_without_downtime_ack","consumer_del_val","consumer_add_val","consumer_update_val","send_vsc_without_downtime_ack","send_vsc_without_downtime_ack","insufficient_shares","some_undels_expired_but_not_completed","insufficient_shares","some_undels_expired_but_not_completed","insufficient_shares","some_undels_expired_but_not_completed","consumer_send_maturation","consumer_send_maturation","consumer_add_val","consumer_update_val","consumer_del_val","insufficient_shares","consumer_update_val","insufficient_shares","consumer_send_maturation","consumer_send_maturation","consumer_send_maturation","consumer_send_maturation","rebond_unval","some_undels_expired_but_not_completed","complete_undel_immediate","set_unval_hold_false","complete_undel_immediate","send_vsc_without_downtime_ack","complete_unval_in_endblock","some_undels_expired_but_not_completed","insufficient_shares","some_undels_expired_but_not_completed","send_vsc_without_downtime_ack","consumer_send_maturation","consumer_send_maturation","consumer_del_val","consumer_update_val","consumer_add_val","rebond_unval","complete_undel_immediate","send_vsc_without_downtime_ack","insufficient_shares","some_undels_expired_but_not_completed","some_undels_expired_but_not_completed","send_vsc_without_downtime_ack","send_vsc_not_because_change","send_vsc_without_downtime_ack","consumer_del_val","consumer_add_val","consumer_send_maturation","consumer_send_maturation","rebond_unval","complete_undel_immediate","complete_undel_immediate","complete_undel_immediate","complete_undel_immediate","complete_undel_immediate","send_vsc_without_downtime_ack","send_vsc_without_downtime_ack","send_vsc_not_because_change","send_vsc_without_downtime_ack"]},{"meta":{"commit":"7ffd0c04e4205cbc9caf212abfe6c59ee43153bf"},"constants":{"P":"provider","C":"consumer","UNBONDING_SECONDS_P":70,"UNBONDING_SECONDS_C":50,"TRUSTING_SECONDS":49,"NUM_VALIDATORS":4,"MAX_VALIDATORS":2,"SLASH_DOUBLESIGN":0,"SLASH_DOWNTIME":0,"JAIL_SECONDS":999999999999999,"BLOCK_SECONDS":6,"INITIAL_DELEGATOR_TOKENS":10000000000000,"DELEGATE_AMT_MIN":1000,"DELEGATE_AMT_MAX":5000,"UNDELEGATE_AMT_MIN":1000,"UNDELEGATE_AMT_MAX":5000,"ISDOWNTIME_PROBABILITY":0.5,"MAX_NUM_PACKETS_FOR_DELIVER":6},"actions":[{"ix":0,"action":{"kind":"Delegate","val":0,"amt":2556},"partialState":{"h":1,"t":6,"tokens":[7556,4000,3000,2000],"delegation":[6556,3000,2000,1000],"delegatorTokens":9999999997444}},{"ix":1,"action":{"kind":"Deliver","chain":"consumer","numPackets":6},"partialState":{"h":1,"t":6,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":2,"action":{"kind":"ConsumerSlash","val":3,"infractionHeight":0,"isDowntime":false},"partialState":{"h":1,"t":6,"outstandingDowntime":[false,false,false,false]}},{"ix":3,"action":{"kind":"ConsumerSlash","val":1,"infractionHeight":0,"isDowntime":true},"partialState":{"h":1,"t":6,"outstandingDowntime":[false,true,false,false]}},{"ix":4,"action":{"kind":"Delegate","val":3,"amt":2219},"partialState":{"h":1,"t":6,"tokens":[7556,4000,3000,4219],"delegation":[6556,3000,2000,3219],"delegatorTokens":9999999995225}},{"ix":5,"action":{"kind":"ConsumerSlash","val":3,"infractionHeight":0,"isDowntime":false},"partialState":{"h":1,"t":6,"outstandingDowntime":[false,true,false,false]}},{"ix":6,"action":{"kind":"Undelegate","val":2,"amt":4605},"partialState":{"h":1,"t":6,"tokens":[7556,4000,3000,4219],"delegation":[6556,3000,2000,3219],"delegatorTokens":9999999995225}},{"ix":7,"action":{"kind":"Undelegate","val":1,"amt":2806},"partialState":{"h":1,"t":6,"tokens":[7556,1194,3000,4219],"delegation":[6556,194,2000,3219],"delegatorTokens":9999999995225}},{"ix":8,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":9,"action":{"kind":"Undelegate","val":2,"amt":1834},"partialState":{"h":1,"t":6,"tokens":[7556,1194,1166,4219],"delegation":[6556,194,166,3219],"delegatorTokens":9999999995225}},{"ix":10,"action":{"kind":"Delegate","val":3,"amt":3361},"partialState":{"h":1,"t":6,"tokens":[7556,1194,1166,7580],"delegation":[6556,194,166,6580],"delegatorTokens":9999999991864}},{"ix":11,"action":{"kind":"Undelegate","val":2,"amt":1852},"partialState":{"h":1,"t":6,"tokens":[7556,1194,1166,7580],"delegation":[6556,194,166,6580],"delegatorTokens":9999999991864}},{"ix":12,"action":{"kind":"Deliver","chain":"consumer","numPackets":3},"partialState":{"h":1,"t":6,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,true,false,false]}},{"ix":13,"action":{"kind":"Delegate","val":0,"amt":2092},"partialState":{"h":1,"t":6,"tokens":[9648,1194,1166,7580],"delegation":[8648,194,166,6580],"delegatorTokens":9999999989772}},{"ix":14,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":2,"t":12,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,true,false,false]}},{"ix":15,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":2,"t":12,"tokens":[9648,1194,1166,7580],"delegation":[8648,194,166,6580],"delegatorTokens":9999999989772,"jailed":[null,null,null,null],"status":["bonded","unbonding","unbonded","bonded"]}},{"ix":16,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":17,"action":{"kind":"Undelegate","val":0,"amt":4842},"partialState":{"h":2,"t":12,"tokens":[4806,1194,1166,7580],"delegation":[3806,194,166,6580],"delegatorTokens":9999999989772}},{"ix":18,"action":{"kind":"ConsumerSlash","val":3,"infractionHeight":0,"isDowntime":true},"partialState":{"h":2,"t":12,"outstandingDowntime":[false,true,false,true]}},{"ix":19,"action":{"kind":"Delegate","val":2,"amt":3862},"partialState":{"h":2,"t":12,"tokens":[4806,1194,5028,7580],"delegation":[3806,194,4028,6580],"delegatorTokens":9999999985910}},{"ix":20,"action":{"kind":"ConsumerSlash","val":3,"infractionHeight":1,"isDowntime":true},"partialState":{"h":2,"t":12,"outstandingDowntime":[false,true,false,true]}},{"ix":21,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":22,"action":{"kind":"Undelegate","val":2,"amt":1234},"partialState":{"h":2,"t":12,"tokens":[4806,1194,3794,7580],"delegation":[3806,194,2794,6580],"delegatorTokens":9999999985910}},{"ix":23,"action":{"kind":"Undelegate","val":3,"amt":4047},"partialState":{"h":2,"t":12,"tokens":[4806,1194,3794,3533],"delegation":[3806,194,2794,2533],"delegatorTokens":9999999985910}},{"ix":24,"action":{"kind":"Delegate","val":2,"amt":3180},"partialState":{"h":2,"t":12,"tokens":[4806,1194,6974,3533],"delegation":[3806,194,5974,2533],"delegatorTokens":9999999982730}},{"ix":25,"action":{"kind":"Undelegate","val":2,"amt":3963},"partialState":{"h":2,"t":12,"tokens":[4806,1194,3011,3533],"delegation":[3806,194,2011,2533],"delegatorTokens":9999999982730}},{"ix":26,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":27,"action":{"kind":"Undelegate","val":1,"amt":1352},"partialState":{"h":2,"t":12,"tokens":[4806,1194,3011,3533],"delegation":[3806,194,2011,2533],"delegatorTokens":9999999982730}},{"ix":28,"action":{"kind":"ConsumerSlash","val":1,"infractionHeight":0,"isDowntime":false},"partialState":{"h":2,"t":12,"outstandingDowntime":[false,true,false,true]}},{"ix":29,"action":{"kind":"Undelegate","val":3,"amt":4886},"partialState":{"h":2,"t":12,"tokens":[4806,1194,3011,3533],"delegation":[3806,194,2011,2533],"delegatorTokens":9999999982730}},{"ix":30,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":31,"action":{"kind":"ConsumerSlash","val":0,"infractionHeight":0,"isDowntime":true},"partialState":{"h":2,"t":12,"outstandingDowntime":[true,true,false,true]}},{"ix":32,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":33,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":3,"t":18,"tokens":[4806,1194,3011,3533],"delegation":[3806,194,2011,2533],"delegatorTokens":9999999982730,"jailed":[null,null,null,null],"status":["bonded","unbonding","unbonded","bonded"]}},{"ix":34,"action":{"kind":"Undelegate","val":3,"amt":4444},"partialState":{"h":3,"t":18,"tokens":[4806,1194,3011,3533],"delegation":[3806,194,2011,2533],"delegatorTokens":9999999982730}},{"ix":35,"action":{"kind":"Undelegate","val":0,"amt":4531},"partialState":{"h":3,"t":18,"tokens":[4806,1194,3011,3533],"delegation":[3806,194,2011,2533],"delegatorTokens":9999999982730}},{"ix":36,"action":{"kind":"Undelegate","val":2,"amt":1227},"partialState":{"h":3,"t":18,"tokens":[4806,1194,1784,3533],"delegation":[3806,194,784,2533],"delegatorTokens":9999999982730}},{"ix":37,"action":{"kind":"Undelegate","val":3,"amt":3101},"partialState":{"h":3,"t":18,"tokens":[4806,1194,1784,3533],"delegation":[3806,194,784,2533],"delegatorTokens":9999999982730}},{"ix":38,"action":{"kind":"Delegate","val":0,"amt":2209},"partialState":{"h":3,"t":18,"tokens":[7015,1194,1784,3533],"delegation":[6015,194,784,2533],"delegatorTokens":9999999980521}},{"ix":39,"action":{"kind":"Delegate","val":1,"amt":3459},"partialState":{"h":3,"t":18,"tokens":[7015,4653,1784,3533],"delegation":[6015,3653,784,2533],"delegatorTokens":9999999977062}},{"ix":40,"action":{"kind":"Undelegate","val":2,"amt":4190},"partialState":{"h":3,"t":18,"tokens":[7015,4653,1784,3533],"delegation":[6015,3653,784,2533],"delegatorTokens":9999999977062}},{"ix":41,"action":{"kind":"Delegate","val":0,"amt":4438},"partialState":{"h":3,"t":18,"tokens":[11453,4653,1784,3533],"delegation":[10453,3653,784,2533],"delegatorTokens":9999999972624}},{"ix":42,"action":{"kind":"Deliver","chain":"provider","numPackets":1},"partialState":{"h":3,"t":18,"tokens":[11453,4653,1784,3533],"delegation":[10453,3653,784,2533],"delegatorTokens":9999999972624,"jailed":[null,null,null,null],"status":["bonded","unbonding","unbonded","bonded"]}},{"ix":43,"action":{"kind":"Delegate","val":0,"amt":1416},"partialState":{"h":3,"t":18,"tokens":[12869,4653,1784,3533],"delegation":[11869,3653,784,2533],"delegatorTokens":9999999971208}},{"ix":44,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":4,"t":24,"tokens":[12869,4653,1784,3533],"delegation":[11869,3653,784,2533],"delegatorTokens":9999999971208,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonding"]}},{"ix":45,"action":{"kind":"Undelegate","val":2,"amt":4492},"partialState":{"h":4,"t":24,"tokens":[12869,4653,1784,3533],"delegation":[11869,3653,784,2533],"delegatorTokens":9999999971208}},{"ix":46,"action":{"kind":"Undelegate","val":0,"amt":4435},"partialState":{"h":4,"t":24,"tokens":[8434,4653,1784,3533],"delegation":[7434,3653,784,2533],"delegatorTokens":9999999971208}},{"ix":47,"action":{"kind":"Delegate","val":2,"amt":2864},"partialState":{"h":4,"t":24,"tokens":[8434,4653,4648,3533],"delegation":[7434,3653,3648,2533],"delegatorTokens":9999999968344}},{"ix":48,"action":{"kind":"Deliver","chain":"provider","numPackets":1},"partialState":{"h":4,"t":24,"tokens":[8434,4653,4648,3533],"delegation":[7434,3653,3648,2533],"delegatorTokens":9999999968344,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonding"]}},{"ix":49,"action":{"kind":"Undelegate","val":3,"amt":3119},"partialState":{"h":4,"t":24,"tokens":[8434,4653,4648,3533],"delegation":[7434,3653,3648,2533],"delegatorTokens":9999999968344}},{"ix":50,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":51,"action":{"kind":"Delegate","val":2,"amt":2692},"partialState":{"h":4,"t":24,"tokens":[8434,4653,7340,3533],"delegation":[7434,3653,6340,2533],"delegatorTokens":9999999965652}},{"ix":52,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":53,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":5,"t":30,"tokens":[8434,4653,7340,3533],"delegation":[7434,3653,6340,2533],"delegatorTokens":9999999965652,"jailed":[null,null,null,null],"status":["bonded","unbonding","bonded","unbonding"]}},{"ix":54,"action":{"kind":"Deliver","chain":"provider","numPackets":6},"partialState":{"h":5,"t":30,"tokens":[8434,4653,7340,3533],"delegation":[7434,3653,6340,2533],"delegatorTokens":9999999965652,"jailed":[null,null,null,null],"status":["bonded","unbonding","bonded","unbonding"]}},{"ix":55,"action":{"kind":"Undelegate","val":1,"amt":4233},"partialState":{"h":5,"t":30,"tokens":[8434,4653,7340,3533],"delegation":[7434,3653,6340,2533],"delegatorTokens":9999999965652}},{"ix":56,"action":{"kind":"Undelegate","val":2,"amt":3546},"partialState":{"h":5,"t":30,"tokens":[8434,4653,3794,3533],"delegation":[7434,3653,2794,2533],"delegatorTokens":9999999965652}},{"ix":57,"action":{"kind":"Delegate","val":1,"amt":3088},"partialState":{"h":5,"t":30,"tokens":[8434,7741,3794,3533],"delegation":[7434,6741,2794,2533],"delegatorTokens":9999999962564}},{"ix":58,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":6,"t":36,"tokens":[8434,7741,3794,3533],"delegation":[7434,6741,2794,2533],"delegatorTokens":9999999962564,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonding","unbonding"]}},{"ix":59,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":7,"t":42,"tokens":[8434,7741,3794,3533],"delegation":[7434,6741,2794,2533],"delegatorTokens":9999999962564,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonding","unbonding"]}},{"ix":60,"action":{"kind":"Deliver","chain":"consumer","numPackets":5},"partialState":{"h":2,"t":12,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[true,true,false,true]}},{"ix":61,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":8,"t":48,"tokens":[8434,7741,3794,3533],"delegation":[7434,6741,2794,2533],"delegatorTokens":9999999962564,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonding","unbonding"]}},{"ix":62,"action":{"kind":"Deliver","chain":"consumer","numPackets":4},"partialState":{"h":2,"t":12,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[true,true,false,true]}},{"ix":63,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":3,"t":18,"consumerPower":[8434,7741,null,null],"outstandingDowntime":[true,true,false,true]}},{"ix":64,"action":{"kind":"Deliver","chain":"consumer","numPackets":3},"partialState":{"h":3,"t":18,"consumerPower":[8434,7741,null,null],"outstandingDowntime":[true,true,false,true]}},{"ix":65,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":4,"t":24,"consumerPower":[8434,7741,null,null],"outstandingDowntime":[true,true,false,true]}},{"ix":66,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":5,"t":30,"consumerPower":[8434,7741,null,null],"outstandingDowntime":[true,true,false,true]}},{"ix":67,"action":{"kind":"Deliver","chain":"consumer","numPackets":3},"partialState":{"h":5,"t":30,"consumerPower":[8434,7741,null,null],"outstandingDowntime":[true,true,false,true]}},{"ix":68,"action":{"kind":"Deliver","chain":"consumer","numPackets":2},"partialState":{"h":5,"t":30,"consumerPower":[8434,7741,null,null],"outstandingDowntime":[true,true,false,true]}},{"ix":69,"action":{"kind":"Undelegate","val":1,"amt":4420},"partialState":{"h":8,"t":48,"tokens":[8434,3321,3794,3533],"delegation":[7434,2321,2794,2533],"delegatorTokens":9999999962564}},{"ix":70,"action":{"kind":"Delegate","val":2,"amt":3548},"partialState":{"h":8,"t":48,"tokens":[8434,3321,7342,3533],"delegation":[7434,2321,6342,2533],"delegatorTokens":9999999959016}},{"ix":71,"action":{"kind":"Undelegate","val":1,"amt":4400},"partialState":{"h":8,"t":48,"tokens":[8434,3321,7342,3533],"delegation":[7434,2321,6342,2533],"delegatorTokens":9999999959016}},{"ix":72,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":73,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":9,"t":54,"tokens":[8434,3321,7342,3533],"delegation":[7434,2321,6342,2533],"delegatorTokens":9999999959016,"jailed":[null,null,null,null],"status":["bonded","unbonding","bonded","unbonding"]}},{"ix":74,"action":{"kind":"Delegate","val":1,"amt":1030},"partialState":{"h":9,"t":54,"tokens":[8434,4351,7342,3533],"delegation":[7434,3351,6342,2533],"delegatorTokens":9999999957986}},{"ix":75,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":76,"action":{"kind":"Undelegate","val":2,"amt":1099},"partialState":{"h":9,"t":54,"tokens":[8434,4351,6243,3533],"delegation":[7434,3351,5243,2533],"delegatorTokens":9999999957986}},{"ix":77,"action":{"kind":"Deliver","chain":"consumer","numPackets":3},"partialState":{"h":5,"t":30,"consumerPower":[8434,7741,null,null],"outstandingDowntime":[true,true,false,true]}},{"ix":78,"action":{"kind":"Delegate","val":2,"amt":3227},"partialState":{"h":9,"t":54,"tokens":[8434,4351,9470,3533],"delegation":[7434,3351,8470,2533],"delegatorTokens":9999999954759}},{"ix":79,"action":{"kind":"Undelegate","val":3,"amt":2371},"partialState":{"h":9,"t":54,"tokens":[8434,4351,9470,1162],"delegation":[7434,3351,8470,162],"delegatorTokens":9999999954759}},{"ix":80,"action":{"kind":"Delegate","val":1,"amt":1605},"partialState":{"h":9,"t":54,"tokens":[8434,5956,9470,1162],"delegation":[7434,4956,8470,162],"delegatorTokens":9999999953154}},{"ix":81,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":6,"t":36,"consumerPower":[8434,7741,null,null],"outstandingDowntime":[true,true,false,true]}},{"ix":82,"action":{"kind":"Delegate","val":3,"amt":1011},"partialState":{"h":9,"t":54,"tokens":[8434,5956,9470,2173],"delegation":[7434,4956,8470,1173],"delegatorTokens":9999999952143}},{"ix":83,"action":{"kind":"Delegate","val":1,"amt":2684},"partialState":{"h":9,"t":54,"tokens":[8434,8640,9470,2173],"delegation":[7434,7640,8470,1173],"delegatorTokens":9999999949459}},{"ix":84,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":85,"action":{"kind":"Delegate","val":2,"amt":3377},"partialState":{"h":9,"t":54,"tokens":[8434,8640,12847,2173],"delegation":[7434,7640,11847,1173],"delegatorTokens":9999999946082}},{"ix":86,"action":{"kind":"Deliver","chain":"provider","numPackets":2},"partialState":{"h":9,"t":54,"tokens":[8434,8640,12847,2173],"delegation":[7434,7640,11847,1173],"delegatorTokens":9999999946082,"jailed":[null,null,null,null],"status":["bonded","unbonding","bonded","unbonding"]}},{"ix":87,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":88,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":10,"t":60,"tokens":[8434,8640,12847,2173],"delegation":[7434,7640,11847,1173],"delegatorTokens":9999999946082,"jailed":[null,1000000000000053,null,null],"status":["unbonding","bonded","bonded","unbonding"]}},{"ix":89,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":11,"t":66,"tokens":[8434,8640,12847,2173],"delegation":[7434,7640,11847,1173],"delegatorTokens":9999999946082,"jailed":[null,1000000000000053,null,null],"status":["bonded","unbonding","bonded","unbonding"]}},{"ix":90,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":91,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":92,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":93,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":94,"action":{"kind":"Deliver","chain":"consumer","numPackets":5},"partialState":{"h":6,"t":36,"consumerPower":[8434,7741,null,null],"outstandingDowntime":[true,false,false,true]}},{"ix":95,"action":{"kind":"Deliver","chain":"consumer","numPackets":3},"partialState":{"h":6,"t":36,"consumerPower":[8434,7741,null,null],"outstandingDowntime":[true,false,false,true]}},{"ix":96,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":97,"action":{"kind":"Undelegate","val":0,"amt":1561},"partialState":{"h":11,"t":66,"tokens":[6873,8640,12847,2173],"delegation":[5873,7640,11847,1173],"delegatorTokens":9999999946082}},{"ix":98,"action":{"kind":"Delegate","val":3,"amt":1365},"partialState":{"h":11,"t":66,"tokens":[6873,8640,12847,3538],"delegation":[5873,7640,11847,2538],"delegatorTokens":9999999944717}},{"ix":99,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":100,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":12,"t":72,"tokens":[6873,8640,12847,3538],"delegation":[5873,7640,11847,2538],"delegatorTokens":9999999944717,"jailed":[null,1000000000000053,null,null],"status":["bonded","unbonding","bonded","unbonding"]}},{"ix":101,"action":{"kind":"Deliver","chain":"provider","numPackets":4},"partialState":{"h":12,"t":72,"tokens":[6873,8640,12847,3538],"delegation":[5873,7640,11847,2538],"delegatorTokens":9999999944717,"jailed":[null,1000000000000053,null,null],"status":["bonded","unbonding","bonded","unbonding"]}},{"ix":102,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":7,"t":42,"consumerPower":[null,8640,12847,null],"outstandingDowntime":[true,false,false,true]}},{"ix":103,"action":{"kind":"Deliver","chain":"consumer","numPackets":5},"partialState":{"h":7,"t":42,"consumerPower":[null,8640,12847,null],"outstandingDowntime":[true,false,false,true]}},{"ix":104,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":8,"t":48,"consumerPower":[8434,null,12847,null],"outstandingDowntime":[true,false,false,true]}},{"ix":105,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":106,"action":{"kind":"Undelegate","val":3,"amt":1396},"partialState":{"h":12,"t":72,"tokens":[6873,8640,12847,2142],"delegation":[5873,7640,11847,1142],"delegatorTokens":9999999944717}},{"ix":107,"action":{"kind":"Delegate","val":1,"amt":3944},"partialState":{"h":12,"t":72,"tokens":[6873,12584,12847,2142],"delegation":[5873,11584,11847,1142],"delegatorTokens":9999999940773}},{"ix":108,"action":{"kind":"Undelegate","val":3,"amt":2954},"partialState":{"h":12,"t":72,"tokens":[6873,12584,12847,2142],"delegation":[5873,11584,11847,1142],"delegatorTokens":9999999940773}},{"ix":109,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":110,"action":{"kind":"Undelegate","val":1,"amt":4055},"partialState":{"h":12,"t":72,"tokens":[6873,8529,12847,2142],"delegation":[5873,7529,11847,1142],"delegatorTokens":9999999940773}},{"ix":111,"action":{"kind":"Deliver","chain":"consumer","numPackets":4},"partialState":{"h":8,"t":48,"consumerPower":[8434,null,12847,null],"outstandingDowntime":[true,false,false,true]}},{"ix":112,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":113,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":13,"t":78,"tokens":[6873,8529,12847,2142],"delegation":[5873,7529,11847,1142],"delegatorTokens":9999999940773,"jailed":[1000000000000071,1000000000000053,null,1000000000000071],"status":["bonded","unbonding","bonded","unbonding"]}},{"ix":114,"action":{"kind":"Delegate","val":0,"amt":1421},"partialState":{"h":13,"t":78,"tokens":[8294,8529,12847,2142],"delegation":[7294,7529,11847,1142],"delegatorTokens":9999999939352}},{"ix":115,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":14,"t":84,"tokens":[8294,8529,12847,2142],"delegation":[7294,7529,11847,1142],"delegatorTokens":9999999939352,"jailed":[1000000000000071,1000000000000053,null,1000000000000071],"status":["unbonding","unbonding","bonded","unbonding"]}},{"ix":116,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":117,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":15,"t":90,"tokens":[8294,8529,12847,2142],"delegation":[7294,7529,11847,1142],"delegatorTokens":9999999939352,"jailed":[1000000000000071,1000000000000053,null,1000000000000071],"status":["unbonding","unbonding","bonded","unbonding"]}},{"ix":118,"action":{"kind":"Delegate","val":2,"amt":1230},"partialState":{"h":15,"t":90,"tokens":[8294,8529,14077,2142],"delegation":[7294,7529,13077,1142],"delegatorTokens":9999999938122}},{"ix":119,"action":{"kind":"Delegate","val":1,"amt":1126},"partialState":{"h":15,"t":90,"tokens":[8294,9655,14077,2142],"delegation":[7294,8655,13077,1142],"delegatorTokens":9999999936996}},{"ix":120,"action":{"kind":"Deliver","chain":"consumer","numPackets":2},"partialState":{"h":8,"t":48,"consumerPower":[8434,null,12847,null],"outstandingDowntime":[false,false,false,false]}},{"ix":121,"action":{"kind":"Delegate","val":1,"amt":3349},"partialState":{"h":15,"t":90,"tokens":[8294,13004,14077,2142],"delegation":[7294,12004,13077,1142],"delegatorTokens":9999999933647}},{"ix":122,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":9,"t":54,"consumerPower":[6873,null,12847,null],"outstandingDowntime":[false,false,false,false]}},{"ix":123,"action":{"kind":"Deliver","chain":"consumer","numPackets":5},"partialState":{"h":9,"t":54,"consumerPower":[6873,null,12847,null],"outstandingDowntime":[false,false,false,false]}},{"ix":124,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":10,"t":60,"consumerPower":[null,null,12847,null],"outstandingDowntime":[false,false,false,false]}},{"ix":125,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":126,"action":{"kind":"Undelegate","val":3,"amt":3545},"partialState":{"h":15,"t":90,"tokens":[8294,13004,14077,2142],"delegation":[7294,12004,13077,1142],"delegatorTokens":9999999933647}},{"ix":127,"action":{"kind":"Delegate","val":0,"amt":2274},"partialState":{"h":15,"t":90,"tokens":[10568,13004,14077,2142],"delegation":[9568,12004,13077,1142],"delegatorTokens":9999999931373}},{"ix":128,"action":{"kind":"Undelegate","val":2,"amt":4054},"partialState":{"h":15,"t":90,"tokens":[10568,13004,10023,2142],"delegation":[9568,12004,9023,1142],"delegatorTokens":9999999931373}},{"ix":129,"action":{"kind":"Delegate","val":2,"amt":2106},"partialState":{"h":15,"t":90,"tokens":[10568,13004,12129,2142],"delegation":[9568,12004,11129,1142],"delegatorTokens":9999999929267}},{"ix":130,"action":{"kind":"Undelegate","val":0,"amt":1828},"partialState":{"h":15,"t":90,"tokens":[8740,13004,12129,2142],"delegation":[7740,12004,11129,1142],"delegatorTokens":9999999929267}},{"ix":131,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":11,"t":66,"consumerPower":[null,null,12847,null],"outstandingDowntime":[false,false,false,false]}},{"ix":132,"action":{"kind":"Deliver","chain":"provider","numPackets":6},"partialState":{"h":15,"t":90,"tokens":[8740,13004,12129,2142],"delegation":[7740,12004,11129,1142],"delegatorTokens":9999999929267,"jailed":[1000000000000071,1000000000000053,null,1000000000000071],"status":["unbonding","unbonding","bonded","unbonding"]}},{"ix":133,"action":{"kind":"Delegate","val":0,"amt":3270},"partialState":{"h":15,"t":90,"tokens":[12010,13004,12129,2142],"delegation":[11010,12004,11129,1142],"delegatorTokens":9999999925997}},{"ix":134,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":135,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":16,"t":96,"tokens":[12010,13004,12129,2142],"delegation":[11010,12004,11129,1142],"delegatorTokens":9999999925997,"jailed":[1000000000000071,1000000000000053,null,1000000000000071],"status":["unbonding","unbonding","bonded","unbonding"]}},{"ix":136,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":12,"t":72,"consumerPower":[null,null,12847,null],"outstandingDowntime":[false,false,false,false]}},{"ix":137,"action":{"kind":"Deliver","chain":"provider","numPackets":6},"partialState":{"h":16,"t":96,"tokens":[12010,13004,12129,2142],"delegation":[11010,12004,11129,1142],"delegatorTokens":9999999925997,"jailed":[1000000000000071,1000000000000053,null,1000000000000071],"status":["unbonding","unbonding","bonded","unbonding"]}},{"ix":138,"action":{"kind":"Undelegate","val":1,"amt":4457},"partialState":{"h":16,"t":96,"tokens":[12010,8547,12129,2142],"delegation":[11010,7547,11129,1142],"delegatorTokens":9999999925997}},{"ix":139,"action":{"kind":"Deliver","chain":"consumer","numPackets":6},"partialState":{"h":12,"t":72,"consumerPower":[null,null,12847,null],"outstandingDowntime":[false,false,false,false]}},{"ix":140,"action":{"kind":"Deliver","chain":"consumer","numPackets":3},"partialState":{"h":12,"t":72,"consumerPower":[null,null,12847,null],"outstandingDowntime":[false,false,false,false]}},{"ix":141,"action":{"kind":"Undelegate","val":2,"amt":2312},"partialState":{"h":16,"t":96,"tokens":[12010,8547,9817,2142],"delegation":[11010,7547,8817,1142],"delegatorTokens":9999999925997}},{"ix":142,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":17,"t":102,"tokens":[12010,8547,9817,2142],"delegation":[11010,7547,8817,1142],"delegatorTokens":9999999925997,"jailed":[1000000000000071,1000000000000053,null,1000000000000071],"status":["unbonding","unbonding","bonded","unbonding"]}},{"ix":143,"action":{"kind":"Delegate","val":3,"amt":1490},"partialState":{"h":17,"t":102,"tokens":[12010,8547,9817,3632],"delegation":[11010,7547,8817,2632],"delegatorTokens":9999999924507}},{"ix":144,"action":{"kind":"Delegate","val":1,"amt":1883},"partialState":{"h":17,"t":102,"tokens":[12010,10430,9817,3632],"delegation":[11010,9430,8817,2632],"delegatorTokens":9999999922624}},{"ix":145,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":18,"t":108,"tokens":[12010,10430,9817,3632],"delegation":[11010,9430,8817,2632],"delegatorTokens":9999999922624,"jailed":[1000000000000071,1000000000000053,null,1000000000000071],"status":["unbonding","unbonding","bonded","unbonding"]}},{"ix":146,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":147,"action":{"kind":"Undelegate","val":3,"amt":2966},"partialState":{"h":18,"t":108,"tokens":[12010,10430,9817,3632],"delegation":[11010,9430,8817,2632],"delegatorTokens":9999999922624}},{"ix":148,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":19,"t":114,"tokens":[12010,10430,9817,3632],"delegation":[11010,9430,8817,2632],"delegatorTokens":9999999922624,"jailed":[1000000000000071,1000000000000053,null,1000000000000071],"status":["unbonding","unbonding","bonded","unbonding"]}},{"ix":149,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":150,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":13,"t":78,"consumerPower":[null,null,12847,null],"outstandingDowntime":[false,false,false,false]}},{"ix":151,"action":{"kind":"Delegate","val":3,"amt":2551},"partialState":{"h":19,"t":114,"tokens":[12010,10430,9817,6183],"delegation":[11010,9430,8817,5183],"delegatorTokens":9999999920073}},{"ix":152,"action":{"kind":"Undelegate","val":1,"amt":2424},"partialState":{"h":19,"t":114,"tokens":[12010,8006,9817,6183],"delegation":[11010,7006,8817,5183],"delegatorTokens":9999999920073}},{"ix":153,"action":{"kind":"Delegate","val":3,"amt":4984},"partialState":{"h":19,"t":114,"tokens":[12010,8006,9817,11167],"delegation":[11010,7006,8817,10167],"delegatorTokens":9999999915089}},{"ix":154,"action":{"kind":"Delegate","val":2,"amt":4117},"partialState":{"h":19,"t":114,"tokens":[12010,8006,13934,11167],"delegation":[11010,7006,12934,10167],"delegatorTokens":9999999910972}},{"ix":155,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":14,"t":84,"consumerPower":[null,null,12847,null],"outstandingDowntime":[false,false,false,false]}},{"ix":156,"action":{"kind":"Delegate","val":1,"amt":3377},"partialState":{"h":19,"t":114,"tokens":[12010,11383,13934,11167],"delegation":[11010,10383,12934,10167],"delegatorTokens":9999999907595}},{"ix":157,"action":{"kind":"Deliver","chain":"provider","numPackets":4},"partialState":{"h":19,"t":114,"tokens":[12010,11383,13934,11167],"delegation":[11010,10383,12934,10167],"delegatorTokens":9999999907595,"jailed":[1000000000000071,1000000000000053,null,1000000000000071],"status":["unbonding","unbonding","bonded","unbonding"]}},{"ix":158,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":159,"action":{"kind":"Deliver","chain":"provider","numPackets":5},"partialState":{"h":19,"t":114,"tokens":[12010,11383,13934,11167],"delegation":[11010,10383,12934,10167],"delegatorTokens":9999999907595,"jailed":[1000000000000071,1000000000000053,null,1000000000000071],"status":["unbonding","unbonding","bonded","unbonding"]}},{"ix":160,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":15,"t":90,"consumerPower":[null,null,12847,null],"outstandingDowntime":[false,false,false,false]}},{"ix":161,"action":{"kind":"Delegate","val":1,"amt":4058},"partialState":{"h":19,"t":114,"tokens":[12010,15441,13934,11167],"delegation":[11010,14441,12934,10167],"delegatorTokens":9999999903537}},{"ix":162,"action":{"kind":"Deliver","chain":"provider","numPackets":6},"partialState":{"h":19,"t":114,"tokens":[12010,15441,13934,11167],"delegation":[11010,14441,12934,10167],"delegatorTokens":9999999903537,"jailed":[1000000000000071,1000000000000053,null,1000000000000071],"status":["unbonding","unbonding","bonded","unbonding"]}},{"ix":163,"action":{"kind":"Undelegate","val":1,"amt":4079},"partialState":{"h":19,"t":114,"tokens":[12010,11362,13934,11167],"delegation":[11010,10362,12934,10167],"delegatorTokens":9999999903537}},{"ix":164,"action":{"kind":"Deliver","chain":"consumer","numPackets":4},"partialState":{"h":15,"t":90,"consumerPower":[null,null,12847,null],"outstandingDowntime":[false,false,false,false]}},{"ix":165,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":166,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":16,"t":96,"consumerPower":[null,null,9817,null],"outstandingDowntime":[false,false,false,false]}},{"ix":167,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":168,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":17,"t":102,"consumerPower":[null,null,9817,null],"outstandingDowntime":[false,false,false,false]}},{"ix":169,"action":{"kind":"Deliver","chain":"provider","numPackets":1},"partialState":{"h":19,"t":114,"tokens":[12010,11362,13934,11167],"delegation":[11010,10362,12934,10167],"delegatorTokens":9999999903537,"jailed":[1000000000000071,1000000000000053,null,1000000000000071],"status":["unbonding","unbonding","bonded","unbonding"]}},{"ix":170,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":18,"t":108,"consumerPower":[null,null,9817,null],"outstandingDowntime":[false,false,false,false]}},{"ix":171,"action":{"kind":"Deliver","chain":"provider","numPackets":6},"partialState":{"h":19,"t":114,"tokens":[12010,11362,13934,11167],"delegation":[11010,10362,12934,10167],"delegatorTokens":9999999903537,"jailed":[1000000000000071,1000000000000053,null,1000000000000071],"status":["unbonding","unbonding","bonded","unbonding"]}},{"ix":172,"action":{"kind":"Delegate","val":1,"amt":3052},"partialState":{"h":19,"t":114,"tokens":[12010,14414,13934,11167],"delegation":[11010,13414,12934,10167],"delegatorTokens":9999999900485}},{"ix":173,"action":{"kind":"Deliver","chain":"provider","numPackets":4},"partialState":{"h":19,"t":114,"tokens":[12010,14414,13934,11167],"delegation":[11010,13414,12934,10167],"delegatorTokens":9999999900485,"jailed":[1000000000000071,1000000000000053,null,1000000000000071],"status":["unbonding","unbonding","bonded","unbonding"]}},{"ix":174,"action":{"kind":"Delegate","val":2,"amt":4563},"partialState":{"h":19,"t":114,"tokens":[12010,14414,18497,11167],"delegation":[11010,13414,17497,10167],"delegatorTokens":9999999895922}},{"ix":175,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":176,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":19,"t":114,"consumerPower":[null,null,9817,null],"outstandingDowntime":[false,false,false,false]}},{"ix":177,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":20,"t":120,"tokens":[12010,14414,18497,11167],"delegation":[11010,13414,17497,10167],"delegatorTokens":9999999923856,"jailed":[1000000000000071,1000000000000053,null,1000000000000071],"status":["unbonding","unbonding","bonded","unbonding"]}},{"ix":178,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":179,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":21,"t":126,"tokens":[12010,14414,18497,11167],"delegation":[11010,13414,17497,10167],"delegatorTokens":9999999928276,"jailed":[1000000000000071,1000000000000053,null,1000000000000071],"status":["unbonding","unbonding","bonded","unbonded"]}},{"ix":180,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":22,"t":132,"tokens":[12010,14414,18497,11167],"delegation":[11010,13414,17497,10167],"delegatorTokens":9999999931746,"jailed":[1000000000000071,1000000000000053,null,1000000000000071],"status":["unbonding","unbonding","bonded","unbonded"]}},{"ix":181,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":182,"action":{"kind":"Undelegate","val":3,"amt":1096},"partialState":{"h":22,"t":132,"tokens":[12010,14414,18497,10071],"delegation":[11010,13414,17497,9071],"delegatorTokens":9999999931746}},{"ix":183,"action":{"kind":"Deliver","chain":"provider","numPackets":4},"partialState":{"h":22,"t":132,"tokens":[12010,14414,18497,10071],"delegation":[11010,13414,17497,9071],"delegatorTokens":9999999931746,"jailed":[1000000000000071,1000000000000053,null,1000000000000071],"status":["unbonding","unbonding","bonded","unbonded"]}},{"ix":184,"action":{"kind":"Undelegate","val":3,"amt":3608},"partialState":{"h":22,"t":132,"tokens":[12010,14414,18497,6463],"delegation":[11010,13414,17497,5463],"delegatorTokens":9999999931746}},{"ix":185,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":186,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":187,"action":{"kind":"Undelegate","val":0,"amt":3007},"partialState":{"h":22,"t":132,"tokens":[9003,14414,18497,6463],"delegation":[8003,13414,17497,5463],"delegatorTokens":9999999931746}},{"ix":188,"action":{"kind":"Deliver","chain":"consumer","numPackets":2},"partialState":{"h":19,"t":114,"consumerPower":[null,null,9817,null],"outstandingDowntime":[false,false,false,false]}},{"ix":189,"action":{"kind":"Undelegate","val":2,"amt":4479},"partialState":{"h":22,"t":132,"tokens":[9003,14414,14018,6463],"delegation":[8003,13414,13018,5463],"delegatorTokens":9999999931746}},{"ix":190,"action":{"kind":"Delegate","val":2,"amt":1844},"partialState":{"h":22,"t":132,"tokens":[9003,14414,15862,6463],"delegation":[8003,13414,14862,5463],"delegatorTokens":9999999929902}},{"ix":191,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":23,"t":138,"tokens":[9003,14414,15862,6463],"delegation":[8003,13414,14862,5463],"delegatorTokens":9999999929902,"jailed":[1000000000000071,1000000000000053,null,1000000000000071],"status":["unbonding","unbonded","bonded","unbonded"]}},{"ix":192,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":193,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":194,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":24,"t":144,"tokens":[9003,14414,15862,6463],"delegation":[8003,13414,14862,5463],"delegatorTokens":9999999931463,"jailed":[1000000000000071,1000000000000053,null,1000000000000071],"status":["unbonding","unbonded","bonded","unbonded"]}},{"ix":195,"action":{"kind":"Deliver","chain":"consumer","numPackets":6},"partialState":{"h":19,"t":114,"consumerPower":[null,null,9817,null],"outstandingDowntime":[false,false,false,false]}},{"ix":196,"action":{"kind":"Deliver","chain":"consumer","numPackets":6},"partialState":{"h":19,"t":114,"consumerPower":[null,null,9817,null],"outstandingDowntime":[false,false,false,false]}},{"ix":197,"action":{"kind":"Undelegate","val":1,"amt":2401},"partialState":{"h":24,"t":144,"tokens":[9003,12013,15862,6463],"delegation":[8003,11013,14862,5463],"delegatorTokens":9999999931463}},{"ix":198,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":25,"t":150,"tokens":[9003,12013,15862,6463],"delegation":[8003,11013,14862,5463],"delegatorTokens":9999999936914,"jailed":[1000000000000071,1000000000000053,null,1000000000000071],"status":["unbonding","unbonded","bonded","unbonded"]}},{"ix":199,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}}],"events":["send_double_sign_slash_request","send_downtime_slash_request","send_double_sign_slash_request","insufficient_shares","insufficient_shares","more_than_one_third_val_power_change","send_vsc_without_downtime_ack","send_downtime_slash_request","downtime_slash_request_outstanding","insufficient_shares","send_double_sign_slash_request","insufficient_shares","send_downtime_slash_request","send_vsc_without_downtime_ack","insufficient_shares","insufficient_shares","insufficient_shares","insufficient_shares","rebond_unval","send_vsc_without_downtime_ack","insufficient_shares","insufficient_shares","more_than_one_third_val_power_change","send_vsc_without_downtime_ack","insufficient_shares","more_than_one_third_val_power_change","rebond_unval","send_vsc_without_downtime_ack","consumer_update_val","consumer_update_val","consumer_del_val","consumer_del_val","insufficient_shares","more_than_one_third_val_power_change","rebond_unval","send_vsc_without_downtime_ack","receive_double_sign_slash_request","more_than_one_third_val_power_change","rebond_unval","receive_downtime_slash_request","jail","send_vsc_with_downtime_ack","more_than_one_third_val_power_change","rebond_unval","send_vsc_without_downtime_ack","receive_downtime_slash_ack","send_vsc_without_downtime_ack","receive_double_sign_slash_request","receive_double_sign_slash_request","consumer_update_val","consumer_add_val","consumer_del_val","consumer_add_val","consumer_del_val","insufficient_shares","receive_downtime_slash_request","jail","receive_downtime_slash_request","jail","send_vsc_not_because_change","send_vsc_with_downtime_ack","some_undels_expired_but_not_completed","send_vsc_without_downtime_ack","some_undels_expired_but_not_completed","receive_downtime_slash_ack","receive_downtime_slash_ack","consumer_update_val","consumer_del_val","insufficient_shares","some_undels_expired_but_not_completed","send_vsc_without_downtime_ack","consumer_send_maturation","consumer_send_maturation","consumer_send_maturation","consumer_send_maturation","consumer_send_maturation","some_undels_expired_but_not_completed","send_vsc_without_downtime_ack","some_undels_expired_but_not_completed","insufficient_shares","consumer_send_maturation","consumer_send_maturation","consumer_update_val","consumer_send_maturation","consumer_send_maturation","consumer_send_maturation","consumer_send_maturation","complete_undel_immediate","complete_undel_immediate","complete_undel_immediate","complete_undel_immediate","complete_undel_immediate","complete_undel_immediate","complete_undel_immediate","set_unval_hold_false","complete_undel_immediate","complete_undel_immediate","set_undel_hold_false","set_undel_hold_false","set_undel_hold_false","set_unval_hold_false","send_vsc_without_downtime_ack","complete_unval_in_endblock","complete_undel_in_endblock","complete_undel_in_endblock","complete_unval_in_endblock","set_undel_hold_false","set_undel_hold_false","set_undel_hold_false","send_vsc_without_downtime_ack","complete_undel_in_endblock","complete_undel_in_endblock","send_vsc_not_because_change","send_vsc_without_downtime_ack"]},{"meta":{"commit":"7ffd0c04e4205cbc9caf212abfe6c59ee43153bf"},"constants":{"P":"provider","C":"consumer","UNBONDING_SECONDS_P":70,"UNBONDING_SECONDS_C":50,"TRUSTING_SECONDS":49,"NUM_VALIDATORS":4,"MAX_VALIDATORS":2,"SLASH_DOUBLESIGN":0,"SLASH_DOWNTIME":0,"JAIL_SECONDS":999999999999999,"BLOCK_SECONDS":6,"INITIAL_DELEGATOR_TOKENS":10000000000000,"DELEGATE_AMT_MIN":1000,"DELEGATE_AMT_MAX":5000,"UNDELEGATE_AMT_MIN":1000,"UNDELEGATE_AMT_MAX":5000,"ISDOWNTIME_PROBABILITY":0.5,"MAX_NUM_PACKETS_FOR_DELIVER":6},"actions":[{"ix":0,"action":{"kind":"Undelegate","val":0,"amt":4041},"partialState":{"h":1,"t":6,"tokens":[5000,4000,3000,2000],"delegation":[4000,3000,2000,1000],"delegatorTokens":10000000000000}},{"ix":1,"action":{"kind":"Deliver","chain":"consumer","numPackets":4},"partialState":{"h":1,"t":6,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":2,"action":{"kind":"Undelegate","val":0,"amt":3894},"partialState":{"h":1,"t":6,"tokens":[1106,4000,3000,2000],"delegation":[106,3000,2000,1000],"delegatorTokens":10000000000000}},{"ix":3,"action":{"kind":"Undelegate","val":2,"amt":4052},"partialState":{"h":1,"t":6,"tokens":[1106,4000,3000,2000],"delegation":[106,3000,2000,1000],"delegatorTokens":10000000000000}},{"ix":4,"action":{"kind":"Undelegate","val":1,"amt":1419},"partialState":{"h":1,"t":6,"tokens":[1106,2581,3000,2000],"delegation":[106,1581,2000,1000],"delegatorTokens":10000000000000}},{"ix":5,"action":{"kind":"Deliver","chain":"provider","numPackets":6},"partialState":{"h":1,"t":6,"tokens":[1106,2581,3000,2000],"delegation":[106,1581,2000,1000],"delegatorTokens":10000000000000,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":6,"action":{"kind":"Undelegate","val":2,"amt":4122},"partialState":{"h":1,"t":6,"tokens":[1106,2581,3000,2000],"delegation":[106,1581,2000,1000],"delegatorTokens":10000000000000}},{"ix":7,"action":{"kind":"Deliver","chain":"provider","numPackets":5},"partialState":{"h":1,"t":6,"tokens":[1106,2581,3000,2000],"delegation":[106,1581,2000,1000],"delegatorTokens":10000000000000,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":8,"action":{"kind":"Delegate","val":3,"amt":3952},"partialState":{"h":1,"t":6,"tokens":[1106,2581,3000,5952],"delegation":[106,1581,2000,4952],"delegatorTokens":9999999996048}},{"ix":9,"action":{"kind":"Delegate","val":2,"amt":4537},"partialState":{"h":1,"t":6,"tokens":[1106,2581,7537,5952],"delegation":[106,1581,6537,4952],"delegatorTokens":9999999991511}},{"ix":10,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":11,"action":{"kind":"Undelegate","val":0,"amt":1710},"partialState":{"h":1,"t":6,"tokens":[1106,2581,7537,5952],"delegation":[106,1581,6537,4952],"delegatorTokens":9999999991511}},{"ix":12,"action":{"kind":"Undelegate","val":1,"amt":1534},"partialState":{"h":1,"t":6,"tokens":[1106,1047,7537,5952],"delegation":[106,47,6537,4952],"delegatorTokens":9999999991511}},{"ix":13,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":14,"action":{"kind":"Undelegate","val":3,"amt":4450},"partialState":{"h":1,"t":6,"tokens":[1106,1047,7537,1502],"delegation":[106,47,6537,502],"delegatorTokens":9999999991511}},{"ix":15,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":2,"t":12,"tokens":[1106,1047,7537,1502],"delegation":[106,47,6537,502],"delegatorTokens":9999999991511,"jailed":[null,null,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":16,"action":{"kind":"Delegate","val":1,"amt":4096},"partialState":{"h":2,"t":12,"tokens":[1106,5143,7537,1502],"delegation":[106,4143,6537,502],"delegatorTokens":9999999987415}},{"ix":17,"action":{"kind":"Undelegate","val":2,"amt":1826},"partialState":{"h":2,"t":12,"tokens":[1106,5143,5711,1502],"delegation":[106,4143,4711,502],"delegatorTokens":9999999987415}},{"ix":18,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":2,"t":12,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":19,"action":{"kind":"Delegate","val":0,"amt":1898},"partialState":{"h":2,"t":12,"tokens":[3004,5143,5711,1502],"delegation":[2004,4143,4711,502],"delegatorTokens":9999999985517}},{"ix":20,"action":{"kind":"Deliver","chain":"provider","numPackets":5},"partialState":{"h":2,"t":12,"tokens":[3004,5143,5711,1502],"delegation":[2004,4143,4711,502],"delegatorTokens":9999999985517,"jailed":[null,null,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":21,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":3,"t":18,"tokens":[3004,5143,5711,1502],"delegation":[2004,4143,4711,502],"delegatorTokens":9999999985517,"jailed":[null,null,null,null],"status":["unbonding","bonded","bonded","unbonding"]}},{"ix":22,"action":{"kind":"Undelegate","val":2,"amt":1751},"partialState":{"h":3,"t":18,"tokens":[3004,5143,3960,1502],"delegation":[2004,4143,2960,502],"delegatorTokens":9999999985517}},{"ix":23,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":3,"t":18,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":24,"action":{"kind":"Deliver","chain":"consumer","numPackets":2},"partialState":{"h":3,"t":18,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":25,"action":{"kind":"Deliver","chain":"provider","numPackets":3},"partialState":{"h":3,"t":18,"tokens":[3004,5143,3960,1502],"delegation":[2004,4143,2960,502],"delegatorTokens":9999999985517,"jailed":[null,null,null,null],"status":["unbonding","bonded","bonded","unbonding"]}},{"ix":26,"action":{"kind":"Deliver","chain":"provider","numPackets":6},"partialState":{"h":3,"t":18,"tokens":[3004,5143,3960,1502],"delegation":[2004,4143,2960,502],"delegatorTokens":9999999985517,"jailed":[null,null,null,null],"status":["unbonding","bonded","bonded","unbonding"]}},{"ix":27,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":4,"t":24,"consumerPower":[null,null,7537,1502],"outstandingDowntime":[false,false,false,false]}},{"ix":28,"action":{"kind":"Undelegate","val":0,"amt":3274},"partialState":{"h":3,"t":18,"tokens":[3004,5143,3960,1502],"delegation":[2004,4143,2960,502],"delegatorTokens":9999999985517}},{"ix":29,"action":{"kind":"Undelegate","val":2,"amt":2175},"partialState":{"h":3,"t":18,"tokens":[3004,5143,1785,1502],"delegation":[2004,4143,785,502],"delegatorTokens":9999999985517}},{"ix":30,"action":{"kind":"Deliver","chain":"consumer","numPackets":5},"partialState":{"h":4,"t":24,"consumerPower":[null,null,7537,1502],"outstandingDowntime":[false,false,false,false]}},{"ix":31,"action":{"kind":"Undelegate","val":1,"amt":1794},"partialState":{"h":3,"t":18,"tokens":[3004,3349,1785,1502],"delegation":[2004,2349,785,502],"delegatorTokens":9999999985517}},{"ix":32,"action":{"kind":"ConsumerSlash","val":3,"infractionHeight":1,"isDowntime":false},"partialState":{"h":4,"t":24,"outstandingDowntime":[false,false,false,false]}},{"ix":33,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":34,"action":{"kind":"Delegate","val":2,"amt":4825},"partialState":{"h":3,"t":18,"tokens":[3004,3349,6610,1502],"delegation":[2004,2349,5610,502],"delegatorTokens":9999999980692}},{"ix":35,"action":{"kind":"Delegate","val":1,"amt":2960},"partialState":{"h":3,"t":18,"tokens":[3004,6309,6610,1502],"delegation":[2004,5309,5610,502],"delegatorTokens":9999999977732}},{"ix":36,"action":{"kind":"Deliver","chain":"provider","numPackets":3},"partialState":{"h":3,"t":18,"tokens":[3004,6309,6610,1502],"delegation":[2004,5309,5610,502],"delegatorTokens":9999999977732,"jailed":[null,null,null,null],"status":["unbonding","bonded","bonded","unbonding"]}},{"ix":37,"action":{"kind":"ConsumerSlash","val":1,"infractionHeight":1,"isDowntime":false},"partialState":{"h":4,"t":24,"outstandingDowntime":[false,false,false,false]}},{"ix":38,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":4,"t":24,"tokens":[3004,6309,6610,1502],"delegation":[2004,5309,5610,502],"delegatorTokens":9999999977732,"jailed":[null,null,null,null],"status":["unbonding","bonded","bonded","unbonding"]}},{"ix":39,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":40,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":5,"t":30,"tokens":[3004,6309,6610,1502],"delegation":[2004,5309,5610,502],"delegatorTokens":9999999977732,"jailed":[null,null,null,null],"status":["unbonding","bonded","bonded","unbonding"]}},{"ix":41,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":6,"t":36,"tokens":[3004,6309,6610,1502],"delegation":[2004,5309,5610,502],"delegatorTokens":9999999977732,"jailed":[null,null,null,null],"status":["unbonding","bonded","bonded","unbonding"]}},{"ix":42,"action":{"kind":"Delegate","val":1,"amt":4968},"partialState":{"h":6,"t":36,"tokens":[3004,11277,6610,1502],"delegation":[2004,10277,5610,502],"delegatorTokens":9999999972764}},{"ix":43,"action":{"kind":"Undelegate","val":1,"amt":3949},"partialState":{"h":6,"t":36,"tokens":[3004,7328,6610,1502],"delegation":[2004,6328,5610,502],"delegatorTokens":9999999972764}},{"ix":44,"action":{"kind":"Delegate","val":0,"amt":1667},"partialState":{"h":6,"t":36,"tokens":[4671,7328,6610,1502],"delegation":[3671,6328,5610,502],"delegatorTokens":9999999971097}},{"ix":45,"action":{"kind":"Undelegate","val":3,"amt":2796},"partialState":{"h":6,"t":36,"tokens":[4671,7328,6610,1502],"delegation":[3671,6328,5610,502],"delegatorTokens":9999999971097}},{"ix":46,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":5,"t":30,"consumerPower":[null,null,7537,1502],"outstandingDowntime":[false,false,false,false]}},{"ix":47,"action":{"kind":"Undelegate","val":3,"amt":3076},"partialState":{"h":6,"t":36,"tokens":[4671,7328,6610,1502],"delegation":[3671,6328,5610,502],"delegatorTokens":9999999971097}},{"ix":48,"action":{"kind":"ConsumerSlash","val":2,"infractionHeight":4,"isDowntime":true},"partialState":{"h":5,"t":30,"outstandingDowntime":[false,false,true,false]}},{"ix":49,"action":{"kind":"Undelegate","val":1,"amt":4324},"partialState":{"h":6,"t":36,"tokens":[4671,3004,6610,1502],"delegation":[3671,2004,5610,502],"delegatorTokens":9999999971097}},{"ix":50,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":6,"t":36,"consumerPower":[null,null,7537,1502],"outstandingDowntime":[false,false,true,false]}},{"ix":51,"action":{"kind":"Undelegate","val":2,"amt":4170},"partialState":{"h":6,"t":36,"tokens":[4671,3004,2440,1502],"delegation":[3671,2004,1440,502],"delegatorTokens":9999999971097}},{"ix":52,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":53,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":54,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":55,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":7,"t":42,"tokens":[4671,3004,2440,1502],"delegation":[3671,2004,1440,502],"delegatorTokens":9999999971097,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonding","unbonding"]}},{"ix":56,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":7,"t":42,"consumerPower":[null,null,7537,1502],"outstandingDowntime":[false,false,true,false]}},{"ix":57,"action":{"kind":"Undelegate","val":3,"amt":4914},"partialState":{"h":7,"t":42,"tokens":[4671,3004,2440,1502],"delegation":[3671,2004,1440,502],"delegatorTokens":9999999971097}},{"ix":58,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":8,"t":48,"tokens":[4671,3004,2440,1502],"delegation":[3671,2004,1440,502],"delegatorTokens":9999999971097,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonding","unbonding"]}},{"ix":59,"action":{"kind":"Delegate","val":2,"amt":2700},"partialState":{"h":8,"t":48,"tokens":[4671,3004,5140,1502],"delegation":[3671,2004,4140,502],"delegatorTokens":9999999968397}},{"ix":60,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":61,"action":{"kind":"Undelegate","val":0,"amt":2881},"partialState":{"h":8,"t":48,"tokens":[1790,3004,5140,1502],"delegation":[790,2004,4140,502],"delegatorTokens":9999999968397}},{"ix":62,"action":{"kind":"Undelegate","val":0,"amt":2666},"partialState":{"h":8,"t":48,"tokens":[1790,3004,5140,1502],"delegation":[790,2004,4140,502],"delegatorTokens":9999999968397}},{"ix":63,"action":{"kind":"Undelegate","val":3,"amt":2127},"partialState":{"h":8,"t":48,"tokens":[1790,3004,5140,1502],"delegation":[790,2004,4140,502],"delegatorTokens":9999999968397}},{"ix":64,"action":{"kind":"Delegate","val":3,"amt":3187},"partialState":{"h":8,"t":48,"tokens":[1790,3004,5140,4689],"delegation":[790,2004,4140,3689],"delegatorTokens":9999999965210}},{"ix":65,"action":{"kind":"Undelegate","val":1,"amt":2177},"partialState":{"h":8,"t":48,"tokens":[1790,3004,5140,4689],"delegation":[790,2004,4140,3689],"delegatorTokens":9999999965210}},{"ix":66,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":8,"t":48,"consumerPower":[null,null,7537,1502],"outstandingDowntime":[false,false,true,false]}},{"ix":67,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":9,"t":54,"consumerPower":[null,null,7537,1502],"outstandingDowntime":[false,false,true,false]}},{"ix":68,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":10,"t":60,"consumerPower":[null,null,7537,1502],"outstandingDowntime":[false,false,true,false]}},{"ix":69,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":70,"action":{"kind":"Delegate","val":0,"amt":1597},"partialState":{"h":8,"t":48,"tokens":[3387,3004,5140,4689],"delegation":[2387,2004,4140,3689],"delegatorTokens":9999999963613}},{"ix":71,"action":{"kind":"Delegate","val":2,"amt":4529},"partialState":{"h":8,"t":48,"tokens":[3387,3004,9669,4689],"delegation":[2387,2004,8669,3689],"delegatorTokens":9999999959084}},{"ix":72,"action":{"kind":"Undelegate","val":2,"amt":3569},"partialState":{"h":8,"t":48,"tokens":[3387,3004,6100,4689],"delegation":[2387,2004,5100,3689],"delegatorTokens":9999999959084}},{"ix":73,"action":{"kind":"Undelegate","val":2,"amt":4471},"partialState":{"h":8,"t":48,"tokens":[3387,3004,1629,4689],"delegation":[2387,2004,629,3689],"delegatorTokens":9999999959084}},{"ix":74,"action":{"kind":"Deliver","chain":"consumer","numPackets":3},"partialState":{"h":10,"t":60,"consumerPower":[null,null,7537,1502],"outstandingDowntime":[false,false,true,false]}},{"ix":75,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":9,"t":54,"tokens":[3387,3004,1629,4689],"delegation":[2387,2004,629,3689],"delegatorTokens":9999999959084,"jailed":[null,null,null,null],"status":["bonded","unbonding","unbonding","bonded"]}},{"ix":76,"action":{"kind":"Deliver","chain":"consumer","numPackets":5},"partialState":{"h":10,"t":60,"consumerPower":[null,null,7537,1502],"outstandingDowntime":[false,false,true,false]}},{"ix":77,"action":{"kind":"Undelegate","val":3,"amt":1717},"partialState":{"h":9,"t":54,"tokens":[3387,3004,1629,2972],"delegation":[2387,2004,629,1972],"delegatorTokens":9999999959084}},{"ix":78,"action":{"kind":"Deliver","chain":"provider","numPackets":2},"partialState":{"h":9,"t":54,"tokens":[3387,3004,1629,2972],"delegation":[2387,2004,629,1972],"delegatorTokens":9999999959084,"jailed":[null,null,null,null],"status":["bonded","unbonding","unbonding","bonded"]}},{"ix":79,"action":{"kind":"Undelegate","val":0,"amt":1461},"partialState":{"h":9,"t":54,"tokens":[1926,3004,1629,2972],"delegation":[926,2004,629,1972],"delegatorTokens":9999999959084}},{"ix":80,"action":{"kind":"Delegate","val":3,"amt":1655},"partialState":{"h":9,"t":54,"tokens":[1926,3004,1629,4627],"delegation":[926,2004,629,3627],"delegatorTokens":9999999957429}},{"ix":81,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":10,"t":60,"tokens":[1926,3004,1629,4627],"delegation":[926,2004,629,3627],"delegatorTokens":9999999957429,"jailed":[null,null,null,null],"status":["unbonding","bonded","unbonding","bonded"]}},{"ix":82,"action":{"kind":"Undelegate","val":3,"amt":1181},"partialState":{"h":10,"t":60,"tokens":[1926,3004,1629,3446],"delegation":[926,2004,629,2446],"delegatorTokens":9999999957429}},{"ix":83,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":11,"t":66,"consumerPower":[4671,3004,null,null],"outstandingDowntime":[false,false,true,false]}},{"ix":84,"action":{"kind":"Undelegate","val":3,"amt":4041},"partialState":{"h":10,"t":60,"tokens":[1926,3004,1629,3446],"delegation":[926,2004,629,2446],"delegatorTokens":9999999957429}},{"ix":85,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":12,"t":72,"consumerPower":[4671,3004,null,null],"outstandingDowntime":[false,false,true,false]}},{"ix":86,"action":{"kind":"Undelegate","val":0,"amt":2294},"partialState":{"h":10,"t":60,"tokens":[1926,3004,1629,3446],"delegation":[926,2004,629,2446],"delegatorTokens":9999999957429}},{"ix":87,"action":{"kind":"Undelegate","val":2,"amt":4980},"partialState":{"h":10,"t":60,"tokens":[1926,3004,1629,3446],"delegation":[926,2004,629,2446],"delegatorTokens":9999999957429}},{"ix":88,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":13,"t":78,"consumerPower":[4671,3004,null,null],"outstandingDowntime":[false,false,true,false]}},{"ix":89,"action":{"kind":"Deliver","chain":"consumer","numPackets":1},"partialState":{"h":13,"t":78,"consumerPower":[4671,3004,null,null],"outstandingDowntime":[false,false,true,false]}},{"ix":90,"action":{"kind":"Delegate","val":2,"amt":1407},"partialState":{"h":10,"t":60,"tokens":[1926,3004,3036,3446],"delegation":[926,2004,2036,2446],"delegatorTokens":9999999956022}},{"ix":91,"action":{"kind":"Delegate","val":1,"amt":3561},"partialState":{"h":10,"t":60,"tokens":[1926,6565,3036,3446],"delegation":[926,5565,2036,2446],"delegatorTokens":9999999952461}},{"ix":92,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":14,"t":84,"consumerPower":[3387,null,null,4689],"outstandingDowntime":[false,false,true,false]}},{"ix":93,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":11,"t":66,"tokens":[1926,6565,3036,3446],"delegation":[926,5565,2036,2446],"delegatorTokens":9999999952461,"jailed":[null,null,null,null],"status":["unbonding","bonded","unbonding","bonded"]}},{"ix":94,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":12,"t":72,"tokens":[1926,6565,3036,3446],"delegation":[926,5565,2036,2446],"delegatorTokens":9999999952461,"jailed":[null,null,null,null],"status":["unbonding","bonded","unbonding","bonded"]}},{"ix":95,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":15,"t":90,"consumerPower":[3387,null,null,4689],"outstandingDowntime":[false,false,true,false]}},{"ix":96,"action":{"kind":"Undelegate","val":2,"amt":1691},"partialState":{"h":12,"t":72,"tokens":[1926,6565,1345,3446],"delegation":[926,5565,345,2446],"delegatorTokens":9999999952461}},{"ix":97,"action":{"kind":"Deliver","chain":"consumer","numPackets":4},"partialState":{"h":15,"t":90,"consumerPower":[3387,null,null,4689],"outstandingDowntime":[false,false,true,false]}},{"ix":98,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":99,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":13,"t":78,"tokens":[1926,6565,1345,3446],"delegation":[926,5565,345,2446],"delegatorTokens":9999999952461,"jailed":[null,null,null,null],"status":["unbonding","bonded","unbonding","bonded"]}},{"ix":100,"action":{"kind":"Undelegate","val":0,"amt":3510},"partialState":{"h":13,"t":78,"tokens":[1926,6565,1345,3446],"delegation":[926,5565,345,2446],"delegatorTokens":9999999952461}},{"ix":101,"action":{"kind":"Delegate","val":3,"amt":2768},"partialState":{"h":13,"t":78,"tokens":[1926,6565,1345,6214],"delegation":[926,5565,345,5214],"delegatorTokens":9999999949693}},{"ix":102,"action":{"kind":"Deliver","chain":"consumer","numPackets":6},"partialState":{"h":15,"t":90,"consumerPower":[3387,null,null,4689],"outstandingDowntime":[false,false,true,false]}},{"ix":103,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":104,"action":{"kind":"Delegate","val":3,"amt":2084},"partialState":{"h":13,"t":78,"tokens":[1926,6565,1345,8298],"delegation":[926,5565,345,7298],"delegatorTokens":9999999947609}},{"ix":105,"action":{"kind":"Undelegate","val":3,"amt":4412},"partialState":{"h":13,"t":78,"tokens":[1926,6565,1345,3886],"delegation":[926,5565,345,2886],"delegatorTokens":9999999947609}},{"ix":106,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":14,"t":84,"tokens":[1926,6565,1345,3886],"delegation":[926,5565,345,2886],"delegatorTokens":9999999947609,"jailed":[null,null,null,null],"status":["unbonding","bonded","unbonding","bonded"]}},{"ix":107,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":108,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":16,"t":96,"consumerPower":[null,6565,null,3446],"outstandingDowntime":[false,false,true,false]}},{"ix":109,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":110,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":111,"action":{"kind":"Deliver","chain":"provider","numPackets":3},"partialState":{"h":14,"t":84,"tokens":[1926,6565,1345,3886],"delegation":[926,5565,345,2886],"delegatorTokens":9999999947609,"jailed":[null,null,null,null],"status":["unbonding","bonded","unbonding","bonded"]}},{"ix":112,"action":{"kind":"Deliver","chain":"provider","numPackets":4},"partialState":{"h":14,"t":84,"tokens":[1926,6565,1345,3886],"delegation":[926,5565,345,2886],"delegatorTokens":9999999947609,"jailed":[null,null,null,null],"status":["unbonding","bonded","unbonding","bonded"]}},{"ix":113,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":114,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":15,"t":90,"tokens":[1926,6565,1345,3886],"delegation":[926,5565,345,2886],"delegatorTokens":9999999958906,"jailed":[null,null,1000000000000083,null],"status":["unbonding","bonded","unbonding","bonded"]}},{"ix":115,"action":{"kind":"Deliver","chain":"provider","numPackets":3},"partialState":{"h":15,"t":90,"tokens":[1926,6565,1345,3886],"delegation":[926,5565,345,2886],"delegatorTokens":9999999958906,"jailed":[null,null,1000000000000083,null],"status":["unbonding","bonded","unbonding","bonded"]}},{"ix":116,"action":{"kind":"Undelegate","val":2,"amt":2887},"partialState":{"h":15,"t":90,"tokens":[1926,6565,1345,3886],"delegation":[926,5565,345,2886],"delegatorTokens":9999999958906}},{"ix":117,"action":{"kind":"Deliver","chain":"provider","numPackets":6},"partialState":{"h":15,"t":90,"tokens":[1926,6565,1345,3886],"delegation":[926,5565,345,2886],"delegatorTokens":9999999958906,"jailed":[null,null,1000000000000083,null],"status":["unbonding","bonded","unbonding","bonded"]}},{"ix":118,"action":{"kind":"Delegate","val":0,"amt":2444},"partialState":{"h":15,"t":90,"tokens":[4370,6565,1345,3886],"delegation":[3370,5565,345,2886],"delegatorTokens":9999999956462}},{"ix":119,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":120,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":121,"action":{"kind":"Deliver","chain":"provider","numPackets":5},"partialState":{"h":15,"t":90,"tokens":[4370,6565,1345,3886],"delegation":[3370,5565,345,2886],"delegatorTokens":9999999956462,"jailed":[null,null,1000000000000083,null],"status":["unbonding","bonded","unbonding","bonded"]}},{"ix":122,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":123,"action":{"kind":"Undelegate","val":0,"amt":3141},"partialState":{"h":15,"t":90,"tokens":[1229,6565,1345,3886],"delegation":[229,5565,345,2886],"delegatorTokens":9999999956462}},{"ix":124,"action":{"kind":"Undelegate","val":0,"amt":2666},"partialState":{"h":15,"t":90,"tokens":[1229,6565,1345,3886],"delegation":[229,5565,345,2886],"delegatorTokens":9999999956462}},{"ix":125,"action":{"kind":"Delegate","val":1,"amt":3946},"partialState":{"h":15,"t":90,"tokens":[1229,10511,1345,3886],"delegation":[229,9511,345,2886],"delegatorTokens":9999999952516}},{"ix":126,"action":{"kind":"Delegate","val":0,"amt":1452},"partialState":{"h":15,"t":90,"tokens":[2681,10511,1345,3886],"delegation":[1681,9511,345,2886],"delegatorTokens":9999999951064}},{"ix":127,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":16,"t":96,"tokens":[2681,10511,1345,3886],"delegation":[1681,9511,345,2886],"delegatorTokens":9999999951064,"jailed":[null,null,1000000000000083,null],"status":["unbonding","bonded","unbonding","bonded"]}},{"ix":128,"action":{"kind":"Deliver","chain":"provider","numPackets":5},"partialState":{"h":16,"t":96,"tokens":[2681,10511,1345,3886],"delegation":[1681,9511,345,2886],"delegatorTokens":9999999951064,"jailed":[null,null,1000000000000083,null],"status":["unbonding","bonded","unbonding","bonded"]}},{"ix":129,"action":{"kind":"Deliver","chain":"consumer","numPackets":2},"partialState":{"h":16,"t":96,"consumerPower":[null,6565,null,3446],"outstandingDowntime":[false,false,true,false]}},{"ix":130,"action":{"kind":"Delegate","val":3,"amt":2848},"partialState":{"h":16,"t":96,"tokens":[2681,10511,1345,6734],"delegation":[1681,9511,345,5734],"delegatorTokens":9999999948216}},{"ix":131,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":17,"t":102,"consumerPower":[null,6565,null,3886],"outstandingDowntime":[false,false,true,false]}},{"ix":132,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":17,"t":102,"tokens":[2681,10511,1345,6734],"delegation":[1681,9511,345,5734],"delegatorTokens":9999999948216,"jailed":[null,null,1000000000000083,null],"status":["unbonding","bonded","unbonding","bonded"]}},{"ix":133,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":18,"t":108,"consumerPower":[null,6565,null,3886],"outstandingDowntime":[false,false,true,false]}},{"ix":134,"action":{"kind":"Deliver","chain":"provider","numPackets":4},"partialState":{"h":17,"t":102,"tokens":[2681,10511,1345,6734],"delegation":[1681,9511,345,5734],"delegatorTokens":9999999948216,"jailed":[null,null,1000000000000083,null],"status":["unbonding","bonded","unbonding","bonded"]}},{"ix":135,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":136,"action":{"kind":"Undelegate","val":3,"amt":2044},"partialState":{"h":17,"t":102,"tokens":[2681,10511,1345,4690],"delegation":[1681,9511,345,3690],"delegatorTokens":9999999948216}},{"ix":137,"action":{"kind":"Undelegate","val":3,"amt":3522},"partialState":{"h":17,"t":102,"tokens":[2681,10511,1345,1168],"delegation":[1681,9511,345,168],"delegatorTokens":9999999948216}},{"ix":138,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":18,"t":108,"tokens":[2681,10511,1345,1168],"delegation":[1681,9511,345,168],"delegatorTokens":9999999948216,"jailed":[null,null,1000000000000083,null],"status":["bonded","bonded","unbonding","unbonding"]}},{"ix":139,"action":{"kind":"Undelegate","val":3,"amt":2084},"partialState":{"h":18,"t":108,"tokens":[2681,10511,1345,1168],"delegation":[1681,9511,345,168],"delegatorTokens":9999999948216}},{"ix":140,"action":{"kind":"Undelegate","val":2,"amt":3418},"partialState":{"h":18,"t":108,"tokens":[2681,10511,1345,1168],"delegation":[1681,9511,345,168],"delegatorTokens":9999999948216}},{"ix":141,"action":{"kind":"Undelegate","val":3,"amt":1202},"partialState":{"h":18,"t":108,"tokens":[2681,10511,1345,1168],"delegation":[1681,9511,345,168],"delegatorTokens":9999999948216}},{"ix":142,"action":{"kind":"Deliver","chain":"consumer","numPackets":4},"partialState":{"h":18,"t":108,"consumerPower":[null,6565,null,3886],"outstandingDowntime":[false,false,false,false]}},{"ix":143,"action":{"kind":"Deliver","chain":"consumer","numPackets":6},"partialState":{"h":18,"t":108,"consumerPower":[null,6565,null,3886],"outstandingDowntime":[false,false,false,false]}},{"ix":144,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":19,"t":114,"tokens":[2681,10511,1345,1168],"delegation":[1681,9511,345,168],"delegatorTokens":9999999948216,"jailed":[null,null,1000000000000083,null],"status":["bonded","bonded","unbonding","unbonding"]}},{"ix":145,"action":{"kind":"Deliver","chain":"consumer","numPackets":1},"partialState":{"h":18,"t":108,"consumerPower":[null,6565,null,3886],"outstandingDowntime":[false,false,false,false]}},{"ix":146,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":147,"action":{"kind":"Deliver","chain":"consumer","numPackets":2},"partialState":{"h":18,"t":108,"consumerPower":[null,6565,null,3886],"outstandingDowntime":[false,false,false,false]}},{"ix":148,"action":{"kind":"Deliver","chain":"provider","numPackets":4},"partialState":{"h":19,"t":114,"tokens":[2681,10511,1345,1168],"delegation":[1681,9511,345,168],"delegatorTokens":9999999948216,"jailed":[null,null,1000000000000083,null],"status":["bonded","bonded","unbonding","unbonding"]}},{"ix":149,"action":{"kind":"Deliver","chain":"provider","numPackets":6},"partialState":{"h":19,"t":114,"tokens":[2681,10511,1345,1168],"delegation":[1681,9511,345,168],"delegatorTokens":9999999948216,"jailed":[null,null,1000000000000083,null],"status":["bonded","bonded","unbonding","unbonding"]}},{"ix":150,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":20,"t":120,"tokens":[2681,10511,1345,1168],"delegation":[1681,9511,345,168],"delegatorTokens":9999999948216,"jailed":[null,null,1000000000000083,null],"status":["bonded","bonded","unbonding","unbonding"]}},{"ix":151,"action":{"kind":"Undelegate","val":0,"amt":1466},"partialState":{"h":20,"t":120,"tokens":[1215,10511,1345,1168],"delegation":[215,9511,345,168],"delegatorTokens":9999999948216}},{"ix":152,"action":{"kind":"Delegate","val":0,"amt":2838},"partialState":{"h":20,"t":120,"tokens":[4053,10511,1345,1168],"delegation":[3053,9511,345,168],"delegatorTokens":9999999945378}},{"ix":153,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":19,"t":114,"consumerPower":[2681,10511,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":154,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":21,"t":126,"tokens":[4053,10511,1345,1168],"delegation":[3053,9511,345,168],"delegatorTokens":9999999945378,"jailed":[null,null,1000000000000083,null],"status":["bonded","bonded","unbonding","unbonding"]}},{"ix":155,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":20,"t":120,"consumerPower":[2681,10511,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":156,"action":{"kind":"Delegate","val":0,"amt":1670},"partialState":{"h":21,"t":126,"tokens":[5723,10511,1345,1168],"delegation":[4723,9511,345,168],"delegatorTokens":9999999943708}},{"ix":157,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":21,"t":126,"consumerPower":[2681,10511,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":158,"action":{"kind":"Undelegate","val":1,"amt":4849},"partialState":{"h":21,"t":126,"tokens":[5723,5662,1345,1168],"delegation":[4723,4662,345,168],"delegatorTokens":9999999943708}},{"ix":159,"action":{"kind":"Delegate","val":3,"amt":1692},"partialState":{"h":21,"t":126,"tokens":[5723,5662,1345,2860],"delegation":[4723,4662,345,1860],"delegatorTokens":9999999942016}},{"ix":160,"action":{"kind":"Undelegate","val":3,"amt":3275},"partialState":{"h":21,"t":126,"tokens":[5723,5662,1345,2860],"delegation":[4723,4662,345,1860],"delegatorTokens":9999999942016}},{"ix":161,"action":{"kind":"Undelegate","val":0,"amt":1227},"partialState":{"h":21,"t":126,"tokens":[4496,5662,1345,2860],"delegation":[3496,4662,345,1860],"delegatorTokens":9999999942016}},{"ix":162,"action":{"kind":"Deliver","chain":"consumer","numPackets":2},"partialState":{"h":21,"t":126,"consumerPower":[2681,10511,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":163,"action":{"kind":"Deliver","chain":"provider","numPackets":5},"partialState":{"h":21,"t":126,"tokens":[4496,5662,1345,2860],"delegation":[3496,4662,345,1860],"delegatorTokens":9999999942016,"jailed":[null,null,1000000000000083,null],"status":["bonded","bonded","unbonding","unbonding"]}},{"ix":164,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":165,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":22,"t":132,"tokens":[4496,5662,1345,2860],"delegation":[3496,4662,345,1860],"delegatorTokens":9999999962005,"jailed":[null,null,1000000000000083,null],"status":["bonded","bonded","unbonding","unbonding"]}},{"ix":166,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":22,"t":132,"consumerPower":[2681,10511,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":167,"action":{"kind":"Delegate","val":2,"amt":3363},"partialState":{"h":22,"t":132,"tokens":[4496,5662,4708,2860],"delegation":[3496,4662,3708,1860],"delegatorTokens":9999999958642}},{"ix":168,"action":{"kind":"Undelegate","val":1,"amt":3456},"partialState":{"h":22,"t":132,"tokens":[4496,2206,4708,2860],"delegation":[3496,1206,3708,1860],"delegatorTokens":9999999958642}},{"ix":169,"action":{"kind":"Undelegate","val":1,"amt":4934},"partialState":{"h":22,"t":132,"tokens":[4496,2206,4708,2860],"delegation":[3496,1206,3708,1860],"delegatorTokens":9999999958642}},{"ix":170,"action":{"kind":"Undelegate","val":3,"amt":1362},"partialState":{"h":22,"t":132,"tokens":[4496,2206,4708,1498],"delegation":[3496,1206,3708,498],"delegatorTokens":9999999958642}},{"ix":171,"action":{"kind":"Undelegate","val":1,"amt":4775},"partialState":{"h":22,"t":132,"tokens":[4496,2206,4708,1498],"delegation":[3496,1206,3708,498],"delegatorTokens":9999999958642}},{"ix":172,"action":{"kind":"Undelegate","val":3,"amt":2043},"partialState":{"h":22,"t":132,"tokens":[4496,2206,4708,1498],"delegation":[3496,1206,3708,498],"delegatorTokens":9999999958642}},{"ix":173,"action":{"kind":"Undelegate","val":1,"amt":4399},"partialState":{"h":22,"t":132,"tokens":[4496,2206,4708,1498],"delegation":[3496,1206,3708,498],"delegatorTokens":9999999958642}},{"ix":174,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":23,"t":138,"consumerPower":[2681,10511,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":175,"action":{"kind":"Delegate","val":1,"amt":4399},"partialState":{"h":22,"t":132,"tokens":[4496,6605,4708,1498],"delegation":[3496,5605,3708,498],"delegatorTokens":9999999954243}},{"ix":176,"action":{"kind":"Undelegate","val":1,"amt":3187},"partialState":{"h":22,"t":132,"tokens":[4496,3418,4708,1498],"delegation":[3496,2418,3708,498],"delegatorTokens":9999999954243}},{"ix":177,"action":{"kind":"Delegate","val":2,"amt":1901},"partialState":{"h":22,"t":132,"tokens":[4496,3418,6609,1498],"delegation":[3496,2418,5609,498],"delegatorTokens":9999999952342}},{"ix":178,"action":{"kind":"Undelegate","val":3,"amt":4981},"partialState":{"h":22,"t":132,"tokens":[4496,3418,6609,1498],"delegation":[3496,2418,5609,498],"delegatorTokens":9999999952342}},{"ix":179,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":180,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":181,"action":{"kind":"Delegate","val":2,"amt":4814},"partialState":{"h":22,"t":132,"tokens":[4496,3418,11423,1498],"delegation":[3496,2418,10423,498],"delegatorTokens":9999999947528}},{"ix":182,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":24,"t":144,"consumerPower":[2681,10511,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":183,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":25,"t":150,"consumerPower":[2681,10511,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":184,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":23,"t":138,"tokens":[4496,3418,11423,1498],"delegation":[3496,2418,10423,498],"delegatorTokens":9999999947528,"jailed":[null,null,1000000000000083,null],"status":["bonded","bonded","unbonded","unbonding"]}},{"ix":185,"action":{"kind":"Undelegate","val":3,"amt":4846},"partialState":{"h":23,"t":138,"tokens":[4496,3418,11423,1498],"delegation":[3496,2418,10423,498],"delegatorTokens":9999999947528}},{"ix":186,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":26,"t":156,"consumerPower":[2681,10511,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":187,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":188,"action":{"kind":"Undelegate","val":3,"amt":3396},"partialState":{"h":23,"t":138,"tokens":[4496,3418,11423,1498],"delegation":[3496,2418,10423,498],"delegatorTokens":9999999947528}},{"ix":189,"action":{"kind":"Deliver","chain":"consumer","numPackets":2},"partialState":{"h":26,"t":156,"consumerPower":[2681,10511,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":190,"action":{"kind":"Undelegate","val":3,"amt":2234},"partialState":{"h":23,"t":138,"tokens":[4496,3418,11423,1498],"delegation":[3496,2418,10423,498],"delegatorTokens":9999999947528}},{"ix":191,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":192,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":27,"t":162,"consumerPower":[4496,5662,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":193,"action":{"kind":"Deliver","chain":"consumer","numPackets":5},"partialState":{"h":27,"t":162,"consumerPower":[4496,5662,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":194,"action":{"kind":"Undelegate","val":1,"amt":2464},"partialState":{"h":23,"t":138,"tokens":[4496,3418,11423,1498],"delegation":[3496,2418,10423,498],"delegatorTokens":9999999947528}},{"ix":195,"action":{"kind":"Delegate","val":1,"amt":1978},"partialState":{"h":23,"t":138,"tokens":[4496,5396,11423,1498],"delegation":[3496,4396,10423,498],"delegatorTokens":9999999945550}},{"ix":196,"action":{"kind":"Delegate","val":2,"amt":1558},"partialState":{"h":23,"t":138,"tokens":[4496,5396,12981,1498],"delegation":[3496,4396,11981,498],"delegatorTokens":9999999943992}},{"ix":197,"action":{"kind":"Undelegate","val":2,"amt":4921},"partialState":{"h":23,"t":138,"tokens":[4496,5396,8060,1498],"delegation":[3496,4396,7060,498],"delegatorTokens":9999999943992}},{"ix":198,"action":{"kind":"Delegate","val":1,"amt":1851},"partialState":{"h":23,"t":138,"tokens":[4496,7247,8060,1498],"delegation":[3496,6247,7060,498],"delegatorTokens":9999999942141}},{"ix":199,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":24,"t":144,"tokens":[4496,7247,8060,1498],"delegation":[3496,6247,7060,498],"delegatorTokens":9999999942141,"jailed":[null,null,1000000000000083,null],"status":["bonded","bonded","unbonded","unbonding"]}}],"events":["insufficient_shares","insufficient_shares","insufficient_shares","insufficient_shares","more_than_one_third_val_power_change","send_vsc_without_downtime_ack","more_than_one_third_val_power_change","rebond_unval","send_vsc_without_downtime_ack","consumer_del_val","consumer_del_val","consumer_add_val","consumer_add_val","insufficient_shares","send_double_sign_slash_request","send_double_sign_slash_request","send_vsc_without_downtime_ack","insufficient_shares","insufficient_shares","send_downtime_slash_request","more_than_one_third_val_power_change","rebond_unval","send_vsc_without_downtime_ack","insufficient_shares","insufficient_shares","insufficient_shares","insufficient_shares","more_than_one_third_val_power_change","rebond_unval","send_vsc_without_downtime_ack","receive_double_sign_slash_request","receive_double_sign_slash_request","more_than_one_third_val_power_change","rebond_unval","send_vsc_without_downtime_ack","consumer_add_val","consumer_del_val","consumer_del_val","consumer_add_val","insufficient_shares","insufficient_shares","insufficient_shares","consumer_send_maturation","consumer_update_val","consumer_del_val","consumer_add_val","send_vsc_without_downtime_ack","send_vsc_not_because_change","send_vsc_without_downtime_ack","insufficient_shares","some_undels_expired_but_not_completed","send_vsc_without_downtime_ack","consumer_del_val","consumer_add_val","consumer_update_val","some_undels_expired_but_not_completed","receive_downtime_slash_request","jail","complete_undel_immediate","complete_undel_immediate","complete_undel_immediate","complete_undel_immediate","insufficient_shares","insufficient_shares","some_undels_expired_but_not_completed","send_vsc_with_downtime_ack","consumer_update_val","send_vsc_without_downtime_ack","rebond_unval","send_vsc_without_downtime_ack","insufficient_shares","insufficient_shares","insufficient_shares","receive_downtime_slash_ack","some_undels_expired_but_not_completed","consumer_update_val","consumer_del_val","consumer_add_val","some_undels_expired_but_not_completed","send_vsc_without_downtime_ack","consumer_send_maturation","consumer_send_maturation","consumer_send_maturation","insufficient_shares","some_undels_expired_but_not_completed","complete_undel_immediate","complete_undel_immediate","complete_undel_immediate","complete_undel_immediate","complete_undel_immediate","complete_undel_immediate","complete_undel_immediate","set_unval_hold_false","send_vsc_without_downtime_ack","insufficient_shares","insufficient_shares","insufficient_shares","insufficient_shares","consumer_send_maturation","insufficient_shares","consumer_send_maturation","consumer_send_maturation","complete_unval_in_endblock","some_undels_expired_but_not_completed","send_vsc_without_downtime_ack","insufficient_shares","consumer_send_maturation","consumer_send_maturation","insufficient_shares","insufficient_shares","consumer_update_val","consumer_update_val","insufficient_shares","send_vsc_without_downtime_ack"]},{"meta":{"commit":"7ffd0c04e4205cbc9caf212abfe6c59ee43153bf"},"constants":{"P":"provider","C":"consumer","UNBONDING_SECONDS_P":70,"UNBONDING_SECONDS_C":50,"TRUSTING_SECONDS":49,"NUM_VALIDATORS":4,"MAX_VALIDATORS":2,"SLASH_DOUBLESIGN":0,"SLASH_DOWNTIME":0,"JAIL_SECONDS":999999999999999,"BLOCK_SECONDS":6,"INITIAL_DELEGATOR_TOKENS":10000000000000,"DELEGATE_AMT_MIN":1000,"DELEGATE_AMT_MAX":5000,"UNDELEGATE_AMT_MIN":1000,"UNDELEGATE_AMT_MAX":5000,"ISDOWNTIME_PROBABILITY":0.5,"MAX_NUM_PACKETS_FOR_DELIVER":6},"actions":[{"ix":0,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":1,"action":{"kind":"ConsumerSlash","val":3,"infractionHeight":0,"isDowntime":true},"partialState":{"h":1,"t":6,"outstandingDowntime":[false,false,false,true]}},{"ix":2,"action":{"kind":"Delegate","val":3,"amt":4652},"partialState":{"h":1,"t":6,"tokens":[5000,4000,3000,6652],"delegation":[4000,3000,2000,5652],"delegatorTokens":9999999995348}},{"ix":3,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":4,"action":{"kind":"ConsumerSlash","val":3,"infractionHeight":0,"isDowntime":false},"partialState":{"h":1,"t":6,"outstandingDowntime":[false,false,false,true]}},{"ix":5,"action":{"kind":"Delegate","val":1,"amt":2394},"partialState":{"h":1,"t":6,"tokens":[5000,6394,3000,6652],"delegation":[4000,5394,2000,5652],"delegatorTokens":9999999992954}},{"ix":6,"action":{"kind":"ConsumerSlash","val":1,"infractionHeight":0,"isDowntime":false},"partialState":{"h":1,"t":6,"outstandingDowntime":[false,false,false,true]}},{"ix":7,"action":{"kind":"Deliver","chain":"consumer","numPackets":6},"partialState":{"h":1,"t":6,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,false,false,true]}},{"ix":8,"action":{"kind":"Delegate","val":1,"amt":4504},"partialState":{"h":1,"t":6,"tokens":[5000,10898,3000,6652],"delegation":[4000,9898,2000,5652],"delegatorTokens":9999999988450}},{"ix":9,"action":{"kind":"ConsumerSlash","val":0,"infractionHeight":0,"isDowntime":false},"partialState":{"h":1,"t":6,"outstandingDowntime":[false,false,false,true]}},{"ix":10,"action":{"kind":"Undelegate","val":1,"amt":4212},"partialState":{"h":1,"t":6,"tokens":[5000,6686,3000,6652],"delegation":[4000,5686,2000,5652],"delegatorTokens":9999999988450}},{"ix":11,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":2,"t":12,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,false,false,true]}},{"ix":12,"action":{"kind":"Undelegate","val":2,"amt":4898},"partialState":{"h":1,"t":6,"tokens":[5000,6686,3000,6652],"delegation":[4000,5686,2000,5652],"delegatorTokens":9999999988450}},{"ix":13,"action":{"kind":"Undelegate","val":0,"amt":2416},"partialState":{"h":1,"t":6,"tokens":[2584,6686,3000,6652],"delegation":[1584,5686,2000,5652],"delegatorTokens":9999999988450}},{"ix":14,"action":{"kind":"Delegate","val":1,"amt":4815},"partialState":{"h":1,"t":6,"tokens":[2584,11501,3000,6652],"delegation":[1584,10501,2000,5652],"delegatorTokens":9999999983635}},{"ix":15,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":2,"t":12,"tokens":[2584,11501,3000,6652],"delegation":[1584,10501,2000,5652],"delegatorTokens":9999999983635,"jailed":[null,null,null,null],"status":["unbonding","bonded","unbonded","bonded"]}},{"ix":16,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":17,"action":{"kind":"Undelegate","val":2,"amt":4105},"partialState":{"h":2,"t":12,"tokens":[2584,11501,3000,6652],"delegation":[1584,10501,2000,5652],"delegatorTokens":9999999983635}},{"ix":18,"action":{"kind":"Delegate","val":1,"amt":3594},"partialState":{"h":2,"t":12,"tokens":[2584,15095,3000,6652],"delegation":[1584,14095,2000,5652],"delegatorTokens":9999999980041}},{"ix":19,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":3,"t":18,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,false,false,true]}},{"ix":20,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":3,"t":18,"tokens":[2584,15095,3000,6652],"delegation":[1584,14095,2000,5652],"delegatorTokens":9999999980041,"jailed":[null,null,null,null],"status":["unbonding","bonded","unbonded","bonded"]}},{"ix":21,"action":{"kind":"Undelegate","val":1,"amt":3150},"partialState":{"h":3,"t":18,"tokens":[2584,11945,3000,6652],"delegation":[1584,10945,2000,5652],"delegatorTokens":9999999980041}},{"ix":22,"action":{"kind":"Undelegate","val":2,"amt":1104},"partialState":{"h":3,"t":18,"tokens":[2584,11945,1896,6652],"delegation":[1584,10945,896,5652],"delegatorTokens":9999999980041}},{"ix":23,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":24,"action":{"kind":"Undelegate","val":2,"amt":4439},"partialState":{"h":3,"t":18,"tokens":[2584,11945,1896,6652],"delegation":[1584,10945,896,5652],"delegatorTokens":9999999980041}},{"ix":25,"action":{"kind":"Delegate","val":0,"amt":3034},"partialState":{"h":3,"t":18,"tokens":[5618,11945,1896,6652],"delegation":[4618,10945,896,5652],"delegatorTokens":9999999977007}},{"ix":26,"action":{"kind":"Undelegate","val":1,"amt":2039},"partialState":{"h":3,"t":18,"tokens":[5618,9906,1896,6652],"delegation":[4618,8906,896,5652],"delegatorTokens":9999999977007}},{"ix":27,"action":{"kind":"Delegate","val":3,"amt":3564},"partialState":{"h":3,"t":18,"tokens":[5618,9906,1896,10216],"delegation":[4618,8906,896,9216],"delegatorTokens":9999999973443}},{"ix":28,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":29,"action":{"kind":"Undelegate","val":1,"amt":3404},"partialState":{"h":3,"t":18,"tokens":[5618,6502,1896,10216],"delegation":[4618,5502,896,9216],"delegatorTokens":9999999973443}},{"ix":30,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":4,"t":24,"tokens":[5618,6502,1896,10216],"delegation":[4618,5502,896,9216],"delegatorTokens":9999999973443,"jailed":[null,null,null,null],"status":["unbonding","bonded","unbonded","bonded"]}},{"ix":31,"action":{"kind":"Delegate","val":1,"amt":2733},"partialState":{"h":4,"t":24,"tokens":[5618,9235,1896,10216],"delegation":[4618,8235,896,9216],"delegatorTokens":9999999970710}},{"ix":32,"action":{"kind":"Undelegate","val":3,"amt":2451},"partialState":{"h":4,"t":24,"tokens":[5618,9235,1896,7765],"delegation":[4618,8235,896,6765],"delegatorTokens":9999999970710}},{"ix":33,"action":{"kind":"Deliver","chain":"consumer","numPackets":4},"partialState":{"h":3,"t":18,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,false,false,true]}},{"ix":34,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":5,"t":30,"tokens":[5618,9235,1896,7765],"delegation":[4618,8235,896,6765],"delegatorTokens":9999999970710,"jailed":[null,null,null,null],"status":["unbonding","bonded","unbonded","bonded"]}},{"ix":35,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":6,"t":36,"tokens":[5618,9235,1896,7765],"delegation":[4618,8235,896,6765],"delegatorTokens":9999999970710,"jailed":[null,null,null,null],"status":["unbonding","bonded","unbonded","bonded"]}},{"ix":36,"action":{"kind":"Deliver","chain":"provider","numPackets":1},"partialState":{"h":6,"t":36,"tokens":[5618,9235,1896,7765],"delegation":[4618,8235,896,6765],"delegatorTokens":9999999970710,"jailed":[null,null,null,null],"status":["unbonding","bonded","unbonded","bonded"]}},{"ix":37,"action":{"kind":"Deliver","chain":"provider","numPackets":3},"partialState":{"h":6,"t":36,"tokens":[5618,9235,1896,7765],"delegation":[4618,8235,896,6765],"delegatorTokens":9999999970710,"jailed":[null,null,null,null],"status":["unbonding","bonded","unbonded","bonded"]}},{"ix":38,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":39,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":40,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":41,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":42,"action":{"kind":"Deliver","chain":"consumer","numPackets":3},"partialState":{"h":3,"t":18,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,false,false,true]}},{"ix":43,"action":{"kind":"Undelegate","val":3,"amt":4993},"partialState":{"h":6,"t":36,"tokens":[5618,9235,1896,2772],"delegation":[4618,8235,896,1772],"delegatorTokens":9999999970710}},{"ix":44,"action":{"kind":"Delegate","val":2,"amt":4851},"partialState":{"h":6,"t":36,"tokens":[5618,9235,6747,2772],"delegation":[4618,8235,5747,1772],"delegatorTokens":9999999965859}},{"ix":45,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":4,"t":24,"consumerPower":[null,9235,null,7765],"outstandingDowntime":[false,false,false,true]}},{"ix":46,"action":{"kind":"Deliver","chain":"provider","numPackets":2},"partialState":{"h":6,"t":36,"tokens":[5618,9235,6747,2772],"delegation":[4618,8235,5747,1772],"delegatorTokens":9999999965859,"jailed":[null,null,null,null],"status":["unbonding","bonded","unbonded","bonded"]}},{"ix":47,"action":{"kind":"Delegate","val":2,"amt":2383},"partialState":{"h":6,"t":36,"tokens":[5618,9235,9130,2772],"delegation":[4618,8235,8130,1772],"delegatorTokens":9999999963476}},{"ix":48,"action":{"kind":"Delegate","val":2,"amt":1159},"partialState":{"h":6,"t":36,"tokens":[5618,9235,10289,2772],"delegation":[4618,8235,9289,1772],"delegatorTokens":9999999962317}},{"ix":49,"action":{"kind":"Delegate","val":2,"amt":1097},"partialState":{"h":6,"t":36,"tokens":[5618,9235,11386,2772],"delegation":[4618,8235,10386,1772],"delegatorTokens":9999999961220}},{"ix":50,"action":{"kind":"Deliver","chain":"provider","numPackets":5},"partialState":{"h":6,"t":36,"tokens":[5618,9235,11386,2772],"delegation":[4618,8235,10386,1772],"delegatorTokens":9999999961220,"jailed":[null,null,null,null],"status":["unbonding","bonded","unbonded","bonded"]}},{"ix":51,"action":{"kind":"Deliver","chain":"consumer","numPackets":3},"partialState":{"h":4,"t":24,"consumerPower":[null,9235,null,7765],"outstandingDowntime":[false,false,false,true]}},{"ix":52,"action":{"kind":"Delegate","val":1,"amt":2833},"partialState":{"h":6,"t":36,"tokens":[5618,12068,11386,2772],"delegation":[4618,11068,10386,1772],"delegatorTokens":9999999958387}},{"ix":53,"action":{"kind":"Undelegate","val":1,"amt":4159},"partialState":{"h":6,"t":36,"tokens":[5618,7909,11386,2772],"delegation":[4618,6909,10386,1772],"delegatorTokens":9999999958387}},{"ix":54,"action":{"kind":"Undelegate","val":3,"amt":4460},"partialState":{"h":6,"t":36,"tokens":[5618,7909,11386,2772],"delegation":[4618,6909,10386,1772],"delegatorTokens":9999999958387}},{"ix":55,"action":{"kind":"Delegate","val":0,"amt":1004},"partialState":{"h":6,"t":36,"tokens":[6622,7909,11386,2772],"delegation":[5622,6909,10386,1772],"delegatorTokens":9999999957383}},{"ix":56,"action":{"kind":"Undelegate","val":3,"amt":1338},"partialState":{"h":6,"t":36,"tokens":[6622,7909,11386,1434],"delegation":[5622,6909,10386,434],"delegatorTokens":9999999957383}},{"ix":57,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":5,"t":30,"consumerPower":[null,9235,null,7765],"outstandingDowntime":[false,false,false,true]}},{"ix":58,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":7,"t":42,"tokens":[6622,7909,11386,1434],"delegation":[5622,6909,10386,434],"delegatorTokens":9999999957383,"jailed":[null,null,null,1000000000000035],"status":["unbonding","bonded","bonded","unbonding"]}},{"ix":59,"action":{"kind":"Deliver","chain":"consumer","numPackets":6},"partialState":{"h":5,"t":30,"consumerPower":[null,9235,null,7765],"outstandingDowntime":[false,false,false,true]}},{"ix":60,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":6,"t":36,"consumerPower":[null,9235,null,7765],"outstandingDowntime":[false,false,false,true]}},{"ix":61,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":7,"t":42,"consumerPower":[null,9235,null,7765],"outstandingDowntime":[false,false,false,true]}},{"ix":62,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":63,"action":{"kind":"Undelegate","val":2,"amt":4997},"partialState":{"h":7,"t":42,"tokens":[6622,7909,6389,1434],"delegation":[5622,6909,5389,434],"delegatorTokens":9999999957383}},{"ix":64,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":8,"t":48,"tokens":[6622,7909,6389,1434],"delegation":[5622,6909,5389,434],"delegatorTokens":9999999957383,"jailed":[null,null,null,1000000000000035],"status":["bonded","bonded","unbonding","unbonding"]}},{"ix":65,"action":{"kind":"Delegate","val":2,"amt":4095},"partialState":{"h":8,"t":48,"tokens":[6622,7909,10484,1434],"delegation":[5622,6909,9484,434],"delegatorTokens":9999999953288}},{"ix":66,"action":{"kind":"Deliver","chain":"provider","numPackets":5},"partialState":{"h":8,"t":48,"tokens":[6622,7909,10484,1434],"delegation":[5622,6909,9484,434],"delegatorTokens":9999999953288,"jailed":[null,null,null,1000000000000035],"status":["bonded","bonded","unbonding","unbonding"]}},{"ix":67,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":68,"action":{"kind":"Undelegate","val":3,"amt":1572},"partialState":{"h":8,"t":48,"tokens":[6622,7909,10484,1434],"delegation":[5622,6909,9484,434],"delegatorTokens":9999999953288}},{"ix":69,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":70,"action":{"kind":"Delegate","val":3,"amt":2484},"partialState":{"h":8,"t":48,"tokens":[6622,7909,10484,3918],"delegation":[5622,6909,9484,2918],"delegatorTokens":9999999950804}},{"ix":71,"action":{"kind":"Undelegate","val":1,"amt":2982},"partialState":{"h":8,"t":48,"tokens":[6622,4927,10484,3918],"delegation":[5622,3927,9484,2918],"delegatorTokens":9999999950804}},{"ix":72,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":8,"t":48,"consumerPower":[null,9235,null,7765],"outstandingDowntime":[false,false,false,true]}},{"ix":73,"action":{"kind":"Undelegate","val":0,"amt":4588},"partialState":{"h":8,"t":48,"tokens":[2034,4927,10484,3918],"delegation":[1034,3927,9484,2918],"delegatorTokens":9999999950804}},{"ix":74,"action":{"kind":"Deliver","chain":"consumer","numPackets":2},"partialState":{"h":8,"t":48,"consumerPower":[null,9235,null,7765],"outstandingDowntime":[false,false,false,false]}},{"ix":75,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":9,"t":54,"tokens":[2034,4927,10484,3918],"delegation":[1034,3927,9484,2918],"delegatorTokens":9999999950804,"jailed":[null,null,null,1000000000000035],"status":["unbonding","bonded","bonded","unbonding"]}},{"ix":76,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":9,"t":54,"consumerPower":[null,7909,11386,null],"outstandingDowntime":[false,false,false,false]}},{"ix":77,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":78,"action":{"kind":"Deliver","chain":"consumer","numPackets":2},"partialState":{"h":9,"t":54,"consumerPower":[null,7909,11386,null],"outstandingDowntime":[false,false,false,false]}},{"ix":79,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":80,"action":{"kind":"Undelegate","val":0,"amt":4727},"partialState":{"h":9,"t":54,"tokens":[2034,4927,10484,3918],"delegation":[1034,3927,9484,2918],"delegatorTokens":9999999950804}},{"ix":81,"action":{"kind":"Delegate","val":1,"amt":3612},"partialState":{"h":9,"t":54,"tokens":[2034,8539,10484,3918],"delegation":[1034,7539,9484,2918],"delegatorTokens":9999999947192}},{"ix":82,"action":{"kind":"Delegate","val":0,"amt":3751},"partialState":{"h":9,"t":54,"tokens":[5785,8539,10484,3918],"delegation":[4785,7539,9484,2918],"delegatorTokens":9999999943441}},{"ix":83,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":10,"t":60,"consumerPower":[6622,7909,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":84,"action":{"kind":"Delegate","val":3,"amt":4019},"partialState":{"h":9,"t":54,"tokens":[5785,8539,10484,7937],"delegation":[4785,7539,9484,6937],"delegatorTokens":9999999939422}},{"ix":85,"action":{"kind":"Delegate","val":0,"amt":4246},"partialState":{"h":9,"t":54,"tokens":[10031,8539,10484,7937],"delegation":[9031,7539,9484,6937],"delegatorTokens":9999999935176}},{"ix":86,"action":{"kind":"Undelegate","val":1,"amt":1801},"partialState":{"h":9,"t":54,"tokens":[10031,6738,10484,7937],"delegation":[9031,5738,9484,6937],"delegatorTokens":9999999935176}},{"ix":87,"action":{"kind":"Deliver","chain":"consumer","numPackets":5},"partialState":{"h":10,"t":60,"consumerPower":[6622,7909,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":88,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":89,"action":{"kind":"Undelegate","val":0,"amt":4548},"partialState":{"h":9,"t":54,"tokens":[5483,6738,10484,7937],"delegation":[4483,5738,9484,6937],"delegatorTokens":9999999935176}},{"ix":90,"action":{"kind":"Deliver","chain":"consumer","numPackets":3},"partialState":{"h":10,"t":60,"consumerPower":[6622,7909,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":91,"action":{"kind":"Delegate","val":1,"amt":4753},"partialState":{"h":9,"t":54,"tokens":[5483,11491,10484,7937],"delegation":[4483,10491,9484,6937],"delegatorTokens":9999999930423}},{"ix":92,"action":{"kind":"Delegate","val":0,"amt":2118},"partialState":{"h":9,"t":54,"tokens":[7601,11491,10484,7937],"delegation":[6601,10491,9484,6937],"delegatorTokens":9999999928305}},{"ix":93,"action":{"kind":"Undelegate","val":1,"amt":2134},"partialState":{"h":9,"t":54,"tokens":[7601,9357,10484,7937],"delegation":[6601,8357,9484,6937],"delegatorTokens":9999999928305}},{"ix":94,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":10,"t":60,"tokens":[7601,9357,10484,7937],"delegation":[6601,8357,9484,6937],"delegatorTokens":9999999928305,"jailed":[null,null,null,1000000000000035],"status":["unbonding","bonded","bonded","unbonding"]}},{"ix":95,"action":{"kind":"Deliver","chain":"consumer","numPackets":3},"partialState":{"h":10,"t":60,"consumerPower":[6622,7909,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":96,"action":{"kind":"Deliver","chain":"consumer","numPackets":2},"partialState":{"h":10,"t":60,"consumerPower":[6622,7909,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":97,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":11,"t":66,"consumerPower":[null,4927,10484,null],"outstandingDowntime":[false,false,false,false]}},{"ix":98,"action":{"kind":"Delegate","val":0,"amt":2200},"partialState":{"h":10,"t":60,"tokens":[9801,9357,10484,7937],"delegation":[8801,8357,9484,6937],"delegatorTokens":9999999926105}},{"ix":99,"action":{"kind":"Undelegate","val":2,"amt":3317},"partialState":{"h":10,"t":60,"tokens":[9801,9357,7167,7937],"delegation":[8801,8357,6167,6937],"delegatorTokens":9999999926105}},{"ix":100,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":101,"action":{"kind":"Delegate","val":0,"amt":3131},"partialState":{"h":10,"t":60,"tokens":[12932,9357,7167,7937],"delegation":[11932,8357,6167,6937],"delegatorTokens":9999999922974}},{"ix":102,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":103,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":11,"t":66,"tokens":[12932,9357,7167,7937],"delegation":[11932,8357,6167,6937],"delegatorTokens":9999999922974,"jailed":[null,null,null,1000000000000035],"status":["bonded","bonded","unbonding","unbonding"]}},{"ix":104,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":12,"t":72,"tokens":[12932,9357,7167,7937],"delegation":[11932,8357,6167,6937],"delegatorTokens":9999999922974,"jailed":[null,null,null,1000000000000035],"status":["bonded","bonded","unbonding","unbonding"]}},{"ix":105,"action":{"kind":"Delegate","val":1,"amt":2357},"partialState":{"h":12,"t":72,"tokens":[12932,11714,7167,7937],"delegation":[11932,10714,6167,6937],"delegatorTokens":9999999920617}},{"ix":106,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":13,"t":78,"tokens":[12932,11714,7167,7937],"delegation":[11932,10714,6167,6937],"delegatorTokens":9999999920617,"jailed":[null,null,null,1000000000000035],"status":["bonded","bonded","unbonding","unbonding"]}},{"ix":107,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":14,"t":84,"tokens":[12932,11714,7167,7937],"delegation":[11932,10714,6167,6937],"delegatorTokens":9999999920617,"jailed":[null,null,null,1000000000000035],"status":["bonded","bonded","unbonding","unbonding"]}},{"ix":108,"action":{"kind":"Deliver","chain":"consumer","numPackets":2},"partialState":{"h":11,"t":66,"consumerPower":[null,4927,10484,null],"outstandingDowntime":[false,false,false,false]}},{"ix":109,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":12,"t":72,"consumerPower":[12932,9357,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":110,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":15,"t":90,"tokens":[12932,11714,7167,7937],"delegation":[11932,10714,6167,6937],"delegatorTokens":9999999920617,"jailed":[null,null,null,1000000000000035],"status":["bonded","bonded","unbonding","unbonding"]}},{"ix":111,"action":{"kind":"Undelegate","val":1,"amt":4752},"partialState":{"h":15,"t":90,"tokens":[12932,6962,7167,7937],"delegation":[11932,5962,6167,6937],"delegatorTokens":9999999920617}},{"ix":112,"action":{"kind":"Undelegate","val":1,"amt":3936},"partialState":{"h":15,"t":90,"tokens":[12932,3026,7167,7937],"delegation":[11932,2026,6167,6937],"delegatorTokens":9999999920617}},{"ix":113,"action":{"kind":"Deliver","chain":"provider","numPackets":6},"partialState":{"h":15,"t":90,"tokens":[12932,3026,7167,7937],"delegation":[11932,2026,6167,6937],"delegatorTokens":9999999920617,"jailed":[null,null,null,1000000000000035],"status":["bonded","bonded","unbonding","unbonding"]}},{"ix":114,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":115,"action":{"kind":"Deliver","chain":"consumer","numPackets":6},"partialState":{"h":12,"t":72,"consumerPower":[12932,9357,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":116,"action":{"kind":"Deliver","chain":"provider","numPackets":3},"partialState":{"h":15,"t":90,"tokens":[12932,3026,7167,7937],"delegation":[11932,2026,6167,6937],"delegatorTokens":9999999920617,"jailed":[null,null,null,1000000000000035],"status":["bonded","bonded","unbonding","unbonding"]}},{"ix":117,"action":{"kind":"Delegate","val":0,"amt":2664},"partialState":{"h":15,"t":90,"tokens":[15596,3026,7167,7937],"delegation":[14596,2026,6167,6937],"delegatorTokens":9999999917953}},{"ix":118,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":13,"t":78,"consumerPower":[12932,11714,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":119,"action":{"kind":"Undelegate","val":1,"amt":3848},"partialState":{"h":15,"t":90,"tokens":[15596,3026,7167,7937],"delegation":[14596,2026,6167,6937],"delegatorTokens":9999999917953}},{"ix":120,"action":{"kind":"Undelegate","val":0,"amt":4674},"partialState":{"h":15,"t":90,"tokens":[10922,3026,7167,7937],"delegation":[9922,2026,6167,6937],"delegatorTokens":9999999917953}},{"ix":121,"action":{"kind":"Deliver","chain":"provider","numPackets":2},"partialState":{"h":15,"t":90,"tokens":[10922,3026,7167,7937],"delegation":[9922,2026,6167,6937],"delegatorTokens":9999999917953,"jailed":[null,null,null,1000000000000035],"status":["bonded","bonded","unbonding","unbonding"]}},{"ix":122,"action":{"kind":"Delegate","val":0,"amt":4286},"partialState":{"h":15,"t":90,"tokens":[15208,3026,7167,7937],"delegation":[14208,2026,6167,6937],"delegatorTokens":9999999913667}},{"ix":123,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":124,"action":{"kind":"Undelegate","val":3,"amt":2322},"partialState":{"h":15,"t":90,"tokens":[15208,3026,7167,5615],"delegation":[14208,2026,6167,4615],"delegatorTokens":9999999913667}},{"ix":125,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":16,"t":96,"tokens":[15208,3026,7167,5615],"delegation":[14208,2026,6167,4615],"delegatorTokens":9999999913667,"jailed":[null,null,null,1000000000000035],"status":["bonded","unbonding","bonded","unbonding"]}},{"ix":126,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":14,"t":84,"consumerPower":[12932,11714,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":127,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":17,"t":102,"tokens":[15208,3026,7167,5615],"delegation":[14208,2026,6167,4615],"delegatorTokens":9999999913667,"jailed":[null,null,null,1000000000000035],"status":["bonded","unbonding","bonded","unbonding"]}},{"ix":128,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":15,"t":90,"consumerPower":[12932,11714,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":129,"action":{"kind":"Deliver","chain":"provider","numPackets":4},"partialState":{"h":17,"t":102,"tokens":[15208,3026,7167,5615],"delegation":[14208,2026,6167,4615],"delegatorTokens":9999999913667,"jailed":[null,null,null,1000000000000035],"status":["bonded","unbonding","bonded","unbonding"]}},{"ix":130,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":131,"action":{"kind":"Deliver","chain":"consumer","numPackets":2},"partialState":{"h":15,"t":90,"consumerPower":[12932,11714,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":132,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":133,"action":{"kind":"Delegate","val":0,"amt":1895},"partialState":{"h":17,"t":102,"tokens":[17103,3026,7167,5615],"delegation":[16103,2026,6167,4615],"delegatorTokens":9999999911772}},{"ix":134,"action":{"kind":"Deliver","chain":"consumer","numPackets":3},"partialState":{"h":15,"t":90,"consumerPower":[12932,11714,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":135,"action":{"kind":"Undelegate","val":0,"amt":3137},"partialState":{"h":17,"t":102,"tokens":[13966,3026,7167,5615],"delegation":[12966,2026,6167,4615],"delegatorTokens":9999999911772}},{"ix":136,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":18,"t":108,"tokens":[13966,3026,7167,5615],"delegation":[12966,2026,6167,4615],"delegatorTokens":9999999930548,"jailed":[null,null,null,1000000000000035],"status":["bonded","unbonding","bonded","unbonding"]}},{"ix":137,"action":{"kind":"Deliver","chain":"provider","numPackets":1},"partialState":{"h":18,"t":108,"tokens":[13966,3026,7167,5615],"delegation":[12966,2026,6167,4615],"delegatorTokens":9999999930548,"jailed":[null,null,null,1000000000000035],"status":["bonded","unbonding","bonded","unbonding"]}},{"ix":138,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":19,"t":114,"tokens":[13966,3026,7167,5615],"delegation":[12966,2026,6167,4615],"delegatorTokens":9999999930548,"jailed":[null,null,null,1000000000000035],"status":["bonded","unbonding","bonded","unbonding"]}},{"ix":139,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":140,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":141,"action":{"kind":"Deliver","chain":"provider","numPackets":3},"partialState":{"h":19,"t":114,"tokens":[13966,3026,7167,5615],"delegation":[12966,2026,6167,4615],"delegatorTokens":9999999930548,"jailed":[null,null,null,1000000000000035],"status":["bonded","unbonding","bonded","unbonding"]}},{"ix":142,"action":{"kind":"Delegate","val":1,"amt":3776},"partialState":{"h":19,"t":114,"tokens":[13966,6802,7167,5615],"delegation":[12966,5802,6167,4615],"delegatorTokens":9999999926772}},{"ix":143,"action":{"kind":"Deliver","chain":"consumer","numPackets":6},"partialState":{"h":15,"t":90,"consumerPower":[12932,11714,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":144,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":20,"t":120,"tokens":[13966,6802,7167,5615],"delegation":[12966,5802,6167,4615],"delegatorTokens":9999999926772,"jailed":[null,null,null,1000000000000035],"status":["bonded","unbonding","bonded","unbonding"]}},{"ix":145,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":146,"action":{"kind":"Deliver","chain":"consumer","numPackets":4},"partialState":{"h":15,"t":90,"consumerPower":[12932,11714,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":147,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":148,"action":{"kind":"Delegate","val":1,"amt":3050},"partialState":{"h":20,"t":120,"tokens":[13966,9852,7167,5615],"delegation":[12966,8852,6167,4615],"delegatorTokens":9999999923722}},{"ix":149,"action":{"kind":"Undelegate","val":2,"amt":1205},"partialState":{"h":20,"t":120,"tokens":[13966,9852,5962,5615],"delegation":[12966,8852,4962,4615],"delegatorTokens":9999999923722}},{"ix":150,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":16,"t":96,"consumerPower":[13966,null,7167,null],"outstandingDowntime":[false,false,false,false]}},{"ix":151,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":17,"t":102,"consumerPower":[13966,null,7167,null],"outstandingDowntime":[false,false,false,false]}},{"ix":152,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":18,"t":108,"consumerPower":[13966,null,7167,null],"outstandingDowntime":[false,false,false,false]}},{"ix":153,"action":{"kind":"Undelegate","val":3,"amt":2321},"partialState":{"h":20,"t":120,"tokens":[13966,9852,5962,3294],"delegation":[12966,8852,4962,2294],"delegatorTokens":9999999923722}},{"ix":154,"action":{"kind":"Delegate","val":1,"amt":4739},"partialState":{"h":20,"t":120,"tokens":[13966,14591,5962,3294],"delegation":[12966,13591,4962,2294],"delegatorTokens":9999999918983}},{"ix":155,"action":{"kind":"Delegate","val":1,"amt":2031},"partialState":{"h":20,"t":120,"tokens":[13966,16622,5962,3294],"delegation":[12966,15622,4962,2294],"delegatorTokens":9999999916952}},{"ix":156,"action":{"kind":"Undelegate","val":0,"amt":4858},"partialState":{"h":20,"t":120,"tokens":[9108,16622,5962,3294],"delegation":[8108,15622,4962,2294],"delegatorTokens":9999999916952}},{"ix":157,"action":{"kind":"Deliver","chain":"consumer","numPackets":4},"partialState":{"h":18,"t":108,"consumerPower":[13966,null,7167,null],"outstandingDowntime":[false,false,false,false]}},{"ix":158,"action":{"kind":"Deliver","chain":"consumer","numPackets":6},"partialState":{"h":18,"t":108,"consumerPower":[13966,null,7167,null],"outstandingDowntime":[false,false,false,false]}},{"ix":159,"action":{"kind":"Undelegate","val":3,"amt":4532},"partialState":{"h":20,"t":120,"tokens":[9108,16622,5962,3294],"delegation":[8108,15622,4962,2294],"delegatorTokens":9999999916952}},{"ix":160,"action":{"kind":"Deliver","chain":"provider","numPackets":3},"partialState":{"h":20,"t":120,"tokens":[9108,16622,5962,3294],"delegation":[8108,15622,4962,2294],"delegatorTokens":9999999916952,"jailed":[null,null,null,1000000000000035],"status":["bonded","unbonding","bonded","unbonding"]}},{"ix":161,"action":{"kind":"Deliver","chain":"consumer","numPackets":1},"partialState":{"h":18,"t":108,"consumerPower":[13966,null,7167,null],"outstandingDowntime":[false,false,false,false]}},{"ix":162,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":163,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":164,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":165,"action":{"kind":"Delegate","val":3,"amt":2203},"partialState":{"h":20,"t":120,"tokens":[9108,16622,5962,5497],"delegation":[8108,15622,4962,4497],"delegatorTokens":9999999914749}},{"ix":166,"action":{"kind":"Delegate","val":3,"amt":3997},"partialState":{"h":20,"t":120,"tokens":[9108,16622,5962,9494],"delegation":[8108,15622,4962,8494],"delegatorTokens":9999999910752}},{"ix":167,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":168,"action":{"kind":"Deliver","chain":"provider","numPackets":6},"partialState":{"h":20,"t":120,"tokens":[9108,16622,5962,9494],"delegation":[8108,15622,4962,8494],"delegatorTokens":9999999910752,"jailed":[null,null,null,1000000000000035],"status":["bonded","unbonding","bonded","unbonding"]}},{"ix":169,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":21,"t":126,"tokens":[9108,16622,5962,9494],"delegation":[8108,15622,4962,8494],"delegatorTokens":9999999910752,"jailed":[null,null,null,1000000000000035],"status":["bonded","bonded","unbonding","unbonding"]}},{"ix":170,"action":{"kind":"Deliver","chain":"consumer","numPackets":6},"partialState":{"h":18,"t":108,"consumerPower":[13966,null,7167,null],"outstandingDowntime":[false,false,false,false]}},{"ix":171,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":172,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":22,"t":132,"tokens":[9108,16622,5962,9494],"delegation":[8108,15622,4962,8494],"delegatorTokens":9999999910752,"jailed":[null,null,null,1000000000000035],"status":["bonded","bonded","unbonding","unbonding"]}},{"ix":173,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":19,"t":114,"consumerPower":[13966,null,7167,null],"outstandingDowntime":[false,false,false,false]}},{"ix":174,"action":{"kind":"Deliver","chain":"consumer","numPackets":6},"partialState":{"h":19,"t":114,"consumerPower":[13966,null,7167,null],"outstandingDowntime":[false,false,false,false]}},{"ix":175,"action":{"kind":"Delegate","val":3,"amt":2432},"partialState":{"h":22,"t":132,"tokens":[9108,16622,5962,11926],"delegation":[8108,15622,4962,10926],"delegatorTokens":9999999908320}},{"ix":176,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":20,"t":120,"consumerPower":[9108,16622,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":177,"action":{"kind":"Deliver","chain":"provider","numPackets":3},"partialState":{"h":22,"t":132,"tokens":[9108,16622,5962,11926],"delegation":[8108,15622,4962,10926],"delegatorTokens":9999999908320,"jailed":[null,null,null,1000000000000035],"status":["bonded","bonded","unbonding","unbonding"]}},{"ix":178,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":21,"t":126,"consumerPower":[9108,16622,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":179,"action":{"kind":"Undelegate","val":3,"amt":3061},"partialState":{"h":22,"t":132,"tokens":[9108,16622,5962,8865],"delegation":[8108,15622,4962,7865],"delegatorTokens":9999999908320}},{"ix":180,"action":{"kind":"Delegate","val":2,"amt":1900},"partialState":{"h":22,"t":132,"tokens":[9108,16622,7862,8865],"delegation":[8108,15622,6862,7865],"delegatorTokens":9999999906420}},{"ix":181,"action":{"kind":"Delegate","val":3,"amt":4271},"partialState":{"h":22,"t":132,"tokens":[9108,16622,7862,13136],"delegation":[8108,15622,6862,12136],"delegatorTokens":9999999902149}},{"ix":182,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":22,"t":132,"consumerPower":[9108,16622,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":183,"action":{"kind":"Undelegate","val":0,"amt":3068},"partialState":{"h":22,"t":132,"tokens":[6040,16622,7862,13136],"delegation":[5040,15622,6862,12136],"delegatorTokens":9999999902149}},{"ix":184,"action":{"kind":"Undelegate","val":2,"amt":3550},"partialState":{"h":22,"t":132,"tokens":[6040,16622,4312,13136],"delegation":[5040,15622,3312,12136],"delegatorTokens":9999999902149}},{"ix":185,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":23,"t":138,"consumerPower":[9108,16622,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":186,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":24,"t":144,"consumerPower":[9108,16622,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":187,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":25,"t":150,"consumerPower":[9108,16622,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":188,"action":{"kind":"Deliver","chain":"provider","numPackets":2},"partialState":{"h":22,"t":132,"tokens":[6040,16622,4312,13136],"delegation":[5040,15622,3312,12136],"delegatorTokens":9999999902149,"jailed":[null,null,null,1000000000000035],"status":["bonded","bonded","unbonding","unbonding"]}},{"ix":189,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":190,"action":{"kind":"Deliver","chain":"consumer","numPackets":1},"partialState":{"h":25,"t":150,"consumerPower":[9108,16622,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":191,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":23,"t":138,"tokens":[6040,16622,4312,13136],"delegation":[5040,15622,3312,12136],"delegatorTokens":9999999933689,"jailed":[null,null,null,1000000000000035],"status":["bonded","bonded","unbonding","unbonding"]}},{"ix":192,"action":{"kind":"Undelegate","val":3,"amt":2328},"partialState":{"h":23,"t":138,"tokens":[6040,16622,4312,10808],"delegation":[5040,15622,3312,9808],"delegatorTokens":9999999933689}},{"ix":193,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":26,"t":156,"consumerPower":[9108,16622,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":194,"action":{"kind":"Deliver","chain":"provider","numPackets":4},"partialState":{"h":23,"t":138,"tokens":[6040,16622,4312,10808],"delegation":[5040,15622,3312,9808],"delegatorTokens":9999999933689,"jailed":[null,null,null,1000000000000035],"status":["bonded","bonded","unbonding","unbonding"]}},{"ix":195,"action":{"kind":"Deliver","chain":"consumer","numPackets":2},"partialState":{"h":26,"t":156,"consumerPower":[9108,16622,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":196,"action":{"kind":"Deliver","chain":"provider","numPackets":1},"partialState":{"h":23,"t":138,"tokens":[6040,16622,4312,10808],"delegation":[5040,15622,3312,9808],"delegatorTokens":9999999933689,"jailed":[null,null,null,1000000000000035],"status":["bonded","bonded","unbonding","unbonding"]}},{"ix":197,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":24,"t":144,"tokens":[6040,16622,4312,10808],"delegation":[5040,15622,3312,9808],"delegatorTokens":9999999937006,"jailed":[null,null,null,1000000000000035],"status":["bonded","bonded","unbonding","unbonded"]}},{"ix":198,"action":{"kind":"Undelegate","val":1,"amt":2696},"partialState":{"h":24,"t":144,"tokens":[6040,13926,4312,10808],"delegation":[5040,12926,3312,9808],"delegatorTokens":9999999937006}},{"ix":199,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}}],"events":["send_downtime_slash_request","send_double_sign_slash_request","send_double_sign_slash_request","send_double_sign_slash_request","insufficient_shares","more_than_one_third_val_power_change","send_vsc_without_downtime_ack","insufficient_shares","send_vsc_without_downtime_ack","insufficient_shares","send_vsc_without_downtime_ack","send_vsc_without_downtime_ack","receive_double_sign_slash_request","receive_double_sign_slash_request","receive_double_sign_slash_request","consumer_del_val","consumer_update_val","consumer_add_val","insufficient_shares","more_than_one_third_val_power_change","receive_downtime_slash_request","jail","send_vsc_with_downtime_ack","more_than_one_third_val_power_change","rebond_unval","send_vsc_without_downtime_ack","insufficient_shares","receive_downtime_slash_ack","more_than_one_third_val_power_change","rebond_unval","send_vsc_without_downtime_ack","consumer_update_val","consumer_add_val","consumer_del_val","insufficient_shares","consumer_add_val","consumer_del_val","send_vsc_without_downtime_ack","consumer_del_val","consumer_update_val","consumer_add_val","more_than_one_third_val_power_change","rebond_unval","send_vsc_without_downtime_ack","send_vsc_without_downtime_ack","some_undels_expired_but_not_completed","consumer_update_val","consumer_add_val","consumer_del_val","consumer_send_maturation","consumer_send_maturation","consumer_send_maturation","consumer_send_maturation","consumer_update_val","insufficient_shares","rebond_unval","some_undels_expired_but_not_completed","send_vsc_without_downtime_ack","some_undels_expired_but_not_completed","complete_undel_immediate","complete_undel_immediate","complete_undel_immediate","complete_undel_immediate","complete_undel_immediate","complete_undel_immediate","complete_undel_immediate","send_vsc_without_downtime_ack","some_undels_expired_but_not_completed","some_undels_expired_but_not_completed","consumer_update_val","consumer_del_val","consumer_add_val","consumer_send_maturation","insufficient_shares","more_than_one_third_val_power_change","rebond_unval","some_undels_expired_but_not_completed","send_vsc_without_downtime_ack","some_undels_expired_but_not_completed","consumer_send_maturation","consumer_send_maturation","consumer_update_val","consumer_add_val","consumer_del_val","consumer_send_maturation","consumer_send_maturation","consumer_send_maturation","consumer_send_maturation","consumer_send_maturation","some_undels_expired_but_not_completed","complete_undel_immediate","complete_undel_immediate","complete_undel_immediate","set_unval_hold_false","complete_undel_immediate","complete_undel_immediate","complete_undel_immediate","complete_undel_immediate","complete_undel_immediate","complete_undel_immediate","send_vsc_without_downtime_ack","complete_unval_in_endblock","complete_undel_immediate","set_undel_hold_false","set_undel_hold_false","set_undel_hold_false","set_undel_hold_false","set_undel_hold_false","send_vsc_not_because_change","send_vsc_without_downtime_ack"]},{"meta":{"commit":"7ffd0c04e4205cbc9caf212abfe6c59ee43153bf"},"constants":{"P":"provider","C":"consumer","UNBONDING_SECONDS_P":70,"UNBONDING_SECONDS_C":50,"TRUSTING_SECONDS":49,"NUM_VALIDATORS":4,"MAX_VALIDATORS":2,"SLASH_DOUBLESIGN":0,"SLASH_DOWNTIME":0,"JAIL_SECONDS":999999999999999,"BLOCK_SECONDS":6,"INITIAL_DELEGATOR_TOKENS":10000000000000,"DELEGATE_AMT_MIN":1000,"DELEGATE_AMT_MAX":5000,"UNDELEGATE_AMT_MIN":1000,"UNDELEGATE_AMT_MAX":5000,"ISDOWNTIME_PROBABILITY":0.5,"MAX_NUM_PACKETS_FOR_DELIVER":6},"actions":[{"ix":0,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":2,"t":12,"tokens":[5000,4000,3000,2000],"delegation":[4000,3000,2000,1000],"delegatorTokens":10000000000000,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":1,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":2,"t":12,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":2,"action":{"kind":"Undelegate","val":0,"amt":1095},"partialState":{"h":2,"t":12,"tokens":[3905,4000,3000,2000],"delegation":[2905,3000,2000,1000],"delegatorTokens":10000000000000}},{"ix":3,"action":{"kind":"Undelegate","val":3,"amt":4371},"partialState":{"h":2,"t":12,"tokens":[3905,4000,3000,2000],"delegation":[2905,3000,2000,1000],"delegatorTokens":10000000000000}},{"ix":4,"action":{"kind":"Deliver","chain":"provider","numPackets":2},"partialState":{"h":2,"t":12,"tokens":[3905,4000,3000,2000],"delegation":[2905,3000,2000,1000],"delegatorTokens":10000000000000,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":5,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":3,"t":18,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":6,"action":{"kind":"Delegate","val":3,"amt":3648},"partialState":{"h":2,"t":12,"tokens":[3905,4000,3000,5648],"delegation":[2905,3000,2000,4648],"delegatorTokens":9999999996352}},{"ix":7,"action":{"kind":"Delegate","val":2,"amt":2528},"partialState":{"h":2,"t":12,"tokens":[3905,4000,5528,5648],"delegation":[2905,3000,4528,4648],"delegatorTokens":9999999993824}},{"ix":8,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":9,"action":{"kind":"ConsumerSlash","val":3,"infractionHeight":1,"isDowntime":true},"partialState":{"h":3,"t":18,"outstandingDowntime":[false,false,false,true]}},{"ix":10,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":3,"t":18,"tokens":[3905,4000,5528,5648],"delegation":[2905,3000,4528,4648],"delegatorTokens":9999999993824,"jailed":[null,null,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":11,"action":{"kind":"Undelegate","val":2,"amt":3323},"partialState":{"h":3,"t":18,"tokens":[3905,4000,2205,5648],"delegation":[2905,3000,1205,4648],"delegatorTokens":9999999993824}},{"ix":12,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":4,"t":24,"tokens":[3905,4000,2205,5648],"delegation":[2905,3000,1205,4648],"delegatorTokens":9999999993824,"jailed":[null,null,null,null],"status":["unbonding","bonded","unbonding","bonded"]}},{"ix":13,"action":{"kind":"ConsumerSlash","val":1,"infractionHeight":2,"isDowntime":false},"partialState":{"h":3,"t":18,"outstandingDowntime":[false,false,false,true]}},{"ix":14,"action":{"kind":"Undelegate","val":0,"amt":2860},"partialState":{"h":4,"t":24,"tokens":[1045,4000,2205,5648],"delegation":[45,3000,1205,4648],"delegatorTokens":9999999993824}},{"ix":15,"action":{"kind":"Delegate","val":0,"amt":2691},"partialState":{"h":4,"t":24,"tokens":[3736,4000,2205,5648],"delegation":[2736,3000,1205,4648],"delegatorTokens":9999999991133}},{"ix":16,"action":{"kind":"Undelegate","val":1,"amt":3778},"partialState":{"h":4,"t":24,"tokens":[3736,4000,2205,5648],"delegation":[2736,3000,1205,4648],"delegatorTokens":9999999991133}},{"ix":17,"action":{"kind":"ConsumerSlash","val":0,"infractionHeight":2,"isDowntime":false},"partialState":{"h":3,"t":18,"outstandingDowntime":[false,false,false,true]}},{"ix":18,"action":{"kind":"Undelegate","val":1,"amt":4158},"partialState":{"h":4,"t":24,"tokens":[3736,4000,2205,5648],"delegation":[2736,3000,1205,4648],"delegatorTokens":9999999991133}},{"ix":19,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":20,"action":{"kind":"Deliver","chain":"consumer","numPackets":5},"partialState":{"h":3,"t":18,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,false,false,true]}},{"ix":21,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":22,"action":{"kind":"Deliver","chain":"consumer","numPackets":1},"partialState":{"h":3,"t":18,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,false,false,true]}},{"ix":23,"action":{"kind":"Delegate","val":3,"amt":1840},"partialState":{"h":4,"t":24,"tokens":[3736,4000,2205,7488],"delegation":[2736,3000,1205,6488],"delegatorTokens":9999999989293}},{"ix":24,"action":{"kind":"Deliver","chain":"consumer","numPackets":2},"partialState":{"h":3,"t":18,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,false,false,true]}},{"ix":25,"action":{"kind":"Deliver","chain":"provider","numPackets":2},"partialState":{"h":4,"t":24,"tokens":[3736,4000,2205,7488],"delegation":[2736,3000,1205,6488],"delegatorTokens":9999999989293,"jailed":[null,null,null,null],"status":["unbonding","bonded","unbonding","bonded"]}},{"ix":26,"action":{"kind":"Deliver","chain":"consumer","numPackets":5},"partialState":{"h":3,"t":18,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,false,false,true]}},{"ix":27,"action":{"kind":"Delegate","val":2,"amt":1200},"partialState":{"h":4,"t":24,"tokens":[3736,4000,3405,7488],"delegation":[2736,3000,2405,6488],"delegatorTokens":9999999988093}},{"ix":28,"action":{"kind":"Deliver","chain":"consumer","numPackets":3},"partialState":{"h":3,"t":18,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,false,false,true]}},{"ix":29,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":5,"t":30,"tokens":[3736,4000,3405,7488],"delegation":[2736,3000,2405,6488],"delegatorTokens":9999999988093,"jailed":[null,null,null,null],"status":["unbonding","bonded","unbonding","bonded"]}},{"ix":30,"action":{"kind":"Delegate","val":3,"amt":3916},"partialState":{"h":5,"t":30,"tokens":[3736,4000,3405,11404],"delegation":[2736,3000,2405,10404],"delegatorTokens":9999999984177}},{"ix":31,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":6,"t":36,"tokens":[3736,4000,3405,11404],"delegation":[2736,3000,2405,10404],"delegatorTokens":9999999984177,"jailed":[null,null,null,null],"status":["unbonding","bonded","unbonding","bonded"]}},{"ix":32,"action":{"kind":"Delegate","val":2,"amt":4211},"partialState":{"h":6,"t":36,"tokens":[3736,4000,7616,11404],"delegation":[2736,3000,6616,10404],"delegatorTokens":9999999979966}},{"ix":33,"action":{"kind":"Undelegate","val":3,"amt":1606},"partialState":{"h":6,"t":36,"tokens":[3736,4000,7616,9798],"delegation":[2736,3000,6616,8798],"delegatorTokens":9999999979966}},{"ix":34,"action":{"kind":"Deliver","chain":"consumer","numPackets":5},"partialState":{"h":3,"t":18,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,false,false,true]}},{"ix":35,"action":{"kind":"Delegate","val":0,"amt":3479},"partialState":{"h":6,"t":36,"tokens":[7215,4000,7616,9798],"delegation":[6215,3000,6616,8798],"delegatorTokens":9999999976487}},{"ix":36,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":4,"t":24,"consumerPower":[null,4000,null,7488],"outstandingDowntime":[false,false,false,true]}},{"ix":37,"action":{"kind":"Delegate","val":0,"amt":1520},"partialState":{"h":6,"t":36,"tokens":[8735,4000,7616,9798],"delegation":[7735,3000,6616,8798],"delegatorTokens":9999999974967}},{"ix":38,"action":{"kind":"Undelegate","val":0,"amt":2541},"partialState":{"h":6,"t":36,"tokens":[6194,4000,7616,9798],"delegation":[5194,3000,6616,8798],"delegatorTokens":9999999974967}},{"ix":39,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":40,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":7,"t":42,"tokens":[6194,4000,7616,9798],"delegation":[5194,3000,6616,8798],"delegatorTokens":9999999974967,"jailed":[null,null,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":41,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":5,"t":30,"consumerPower":[null,4000,null,7488],"outstandingDowntime":[false,false,false,true]}},{"ix":42,"action":{"kind":"Deliver","chain":"consumer","numPackets":6},"partialState":{"h":5,"t":30,"consumerPower":[null,4000,null,7488],"outstandingDowntime":[false,false,false,true]}},{"ix":43,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":8,"t":48,"tokens":[6194,4000,7616,9798],"delegation":[5194,3000,6616,8798],"delegatorTokens":9999999974967,"jailed":[null,null,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":44,"action":{"kind":"Undelegate","val":3,"amt":2450},"partialState":{"h":8,"t":48,"tokens":[6194,4000,7616,7348],"delegation":[5194,3000,6616,6348],"delegatorTokens":9999999974967}},{"ix":45,"action":{"kind":"Delegate","val":0,"amt":3529},"partialState":{"h":8,"t":48,"tokens":[9723,4000,7616,7348],"delegation":[8723,3000,6616,6348],"delegatorTokens":9999999971438}},{"ix":46,"action":{"kind":"Undelegate","val":2,"amt":4774},"partialState":{"h":8,"t":48,"tokens":[9723,4000,2842,7348],"delegation":[8723,3000,1842,6348],"delegatorTokens":9999999971438}},{"ix":47,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":9,"t":54,"tokens":[9723,4000,2842,7348],"delegation":[8723,3000,1842,6348],"delegatorTokens":9999999971438,"jailed":[null,null,null,null],"status":["bonded","unbonding","unbonding","bonded"]}},{"ix":48,"action":{"kind":"Undelegate","val":3,"amt":3875},"partialState":{"h":9,"t":54,"tokens":[9723,4000,2842,3473],"delegation":[8723,3000,1842,2473],"delegatorTokens":9999999971438}},{"ix":49,"action":{"kind":"Delegate","val":0,"amt":1663},"partialState":{"h":9,"t":54,"tokens":[11386,4000,2842,3473],"delegation":[10386,3000,1842,2473],"delegatorTokens":9999999969775}},{"ix":50,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":51,"action":{"kind":"Delegate","val":1,"amt":1703},"partialState":{"h":9,"t":54,"tokens":[11386,5703,2842,3473],"delegation":[10386,4703,1842,2473],"delegatorTokens":9999999968072}},{"ix":52,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":53,"action":{"kind":"Undelegate","val":2,"amt":1677},"partialState":{"h":9,"t":54,"tokens":[11386,5703,1165,3473],"delegation":[10386,4703,165,2473],"delegatorTokens":9999999968072}},{"ix":54,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":55,"action":{"kind":"Delegate","val":1,"amt":4587},"partialState":{"h":9,"t":54,"tokens":[11386,10290,1165,3473],"delegation":[10386,9290,165,2473],"delegatorTokens":9999999963485}},{"ix":56,"action":{"kind":"Deliver","chain":"consumer","numPackets":4},"partialState":{"h":5,"t":30,"consumerPower":[null,4000,null,7488],"outstandingDowntime":[false,false,false,true]}},{"ix":57,"action":{"kind":"Delegate","val":2,"amt":3132},"partialState":{"h":9,"t":54,"tokens":[11386,10290,4297,3473],"delegation":[10386,9290,3297,2473],"delegatorTokens":9999999960353}},{"ix":58,"action":{"kind":"Undelegate","val":1,"amt":1169},"partialState":{"h":9,"t":54,"tokens":[11386,9121,4297,3473],"delegation":[10386,8121,3297,2473],"delegatorTokens":9999999960353}},{"ix":59,"action":{"kind":"Deliver","chain":"consumer","numPackets":3},"partialState":{"h":5,"t":30,"consumerPower":[null,4000,null,7488],"outstandingDowntime":[false,false,false,true]}},{"ix":60,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":10,"t":60,"tokens":[11386,9121,4297,3473],"delegation":[10386,8121,3297,2473],"delegatorTokens":9999999960353,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonding","unbonding"]}},{"ix":61,"action":{"kind":"Delegate","val":3,"amt":3733},"partialState":{"h":10,"t":60,"tokens":[11386,9121,4297,7206],"delegation":[10386,8121,3297,6206],"delegatorTokens":9999999956620}},{"ix":62,"action":{"kind":"Deliver","chain":"provider","numPackets":3},"partialState":{"h":10,"t":60,"tokens":[11386,9121,4297,7206],"delegation":[10386,8121,3297,6206],"delegatorTokens":9999999956620,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonding","unbonding"]}},{"ix":63,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":64,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":65,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":6,"t":36,"consumerPower":[null,null,7616,9798],"outstandingDowntime":[false,false,false,true]}},{"ix":66,"action":{"kind":"Deliver","chain":"consumer","numPackets":6},"partialState":{"h":6,"t":36,"consumerPower":[null,null,7616,9798],"outstandingDowntime":[false,false,false,true]}},{"ix":67,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":68,"action":{"kind":"Delegate","val":2,"amt":1709},"partialState":{"h":10,"t":60,"tokens":[11386,9121,6006,7206],"delegation":[10386,8121,5006,6206],"delegatorTokens":9999999954911}},{"ix":69,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":7,"t":42,"consumerPower":[9723,null,null,7348],"outstandingDowntime":[false,false,false,true]}},{"ix":70,"action":{"kind":"Undelegate","val":0,"amt":4289},"partialState":{"h":10,"t":60,"tokens":[7097,9121,6006,7206],"delegation":[6097,8121,5006,6206],"delegatorTokens":9999999954911}},{"ix":71,"action":{"kind":"Undelegate","val":1,"amt":4504},"partialState":{"h":10,"t":60,"tokens":[7097,4617,6006,7206],"delegation":[6097,3617,5006,6206],"delegatorTokens":9999999954911}},{"ix":72,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":8,"t":48,"consumerPower":[9723,null,null,7348],"outstandingDowntime":[false,false,false,true]}},{"ix":73,"action":{"kind":"Undelegate","val":2,"amt":1786},"partialState":{"h":10,"t":60,"tokens":[7097,4617,4220,7206],"delegation":[6097,3617,3220,6206],"delegatorTokens":9999999954911}},{"ix":74,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":9,"t":54,"consumerPower":[9723,null,null,7348],"outstandingDowntime":[false,false,false,true]}},{"ix":75,"action":{"kind":"Delegate","val":1,"amt":2189},"partialState":{"h":10,"t":60,"tokens":[7097,6806,4220,7206],"delegation":[6097,5806,3220,6206],"delegatorTokens":9999999952722}},{"ix":76,"action":{"kind":"Deliver","chain":"provider","numPackets":5},"partialState":{"h":10,"t":60,"tokens":[7097,6806,4220,7206],"delegation":[6097,5806,3220,6206],"delegatorTokens":9999999952722,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonding","unbonding"]}},{"ix":77,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":11,"t":66,"tokens":[7097,6806,4220,7206],"delegation":[6097,5806,3220,6206],"delegatorTokens":9999999952722,"jailed":[null,null,null,1000000000000059],"status":["bonded","unbonding","unbonding","bonded"]}},{"ix":78,"action":{"kind":"Deliver","chain":"consumer","numPackets":2},"partialState":{"h":9,"t":54,"consumerPower":[9723,null,null,7348],"outstandingDowntime":[false,false,false,true]}},{"ix":79,"action":{"kind":"Undelegate","val":3,"amt":2178},"partialState":{"h":11,"t":66,"tokens":[7097,6806,4220,5028],"delegation":[6097,5806,3220,4028],"delegatorTokens":9999999952722}},{"ix":80,"action":{"kind":"Undelegate","val":3,"amt":4601},"partialState":{"h":11,"t":66,"tokens":[7097,6806,4220,5028],"delegation":[6097,5806,3220,4028],"delegatorTokens":9999999952722}},{"ix":81,"action":{"kind":"Deliver","chain":"consumer","numPackets":1},"partialState":{"h":9,"t":54,"consumerPower":[9723,null,null,7348],"outstandingDowntime":[false,false,false,true]}},{"ix":82,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":12,"t":72,"tokens":[7097,6806,4220,5028],"delegation":[6097,5806,3220,4028],"delegatorTokens":9999999952722,"jailed":[null,null,null,1000000000000059],"status":["bonded","bonded","unbonding","unbonding"]}},{"ix":83,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":84,"action":{"kind":"Deliver","chain":"consumer","numPackets":6},"partialState":{"h":9,"t":54,"consumerPower":[9723,null,null,7348],"outstandingDowntime":[false,false,false,false]}},{"ix":85,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":10,"t":60,"consumerPower":[7097,null,null,7206],"outstandingDowntime":[false,false,false,false]}},{"ix":86,"action":{"kind":"Delegate","val":1,"amt":3371},"partialState":{"h":12,"t":72,"tokens":[7097,10177,4220,5028],"delegation":[6097,9177,3220,4028],"delegatorTokens":9999999949351}},{"ix":87,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":13,"t":78,"tokens":[7097,10177,4220,5028],"delegation":[6097,9177,3220,4028],"delegatorTokens":9999999949351,"jailed":[null,null,null,1000000000000059],"status":["bonded","bonded","unbonding","unbonding"]}},{"ix":88,"action":{"kind":"Delegate","val":1,"amt":3657},"partialState":{"h":13,"t":78,"tokens":[7097,13834,4220,5028],"delegation":[6097,12834,3220,4028],"delegatorTokens":9999999945694}},{"ix":89,"action":{"kind":"Delegate","val":0,"amt":1234},"partialState":{"h":13,"t":78,"tokens":[8331,13834,4220,5028],"delegation":[7331,12834,3220,4028],"delegatorTokens":9999999944460}},{"ix":90,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":11,"t":66,"consumerPower":[7097,null,null,7206],"outstandingDowntime":[false,false,false,false]}},{"ix":91,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":92,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":93,"action":{"kind":"Deliver","chain":"provider","numPackets":4},"partialState":{"h":13,"t":78,"tokens":[8331,13834,4220,5028],"delegation":[7331,12834,3220,4028],"delegatorTokens":9999999944460,"jailed":[null,null,null,1000000000000059],"status":["bonded","bonded","unbonding","unbonding"]}},{"ix":94,"action":{"kind":"Delegate","val":0,"amt":2632},"partialState":{"h":13,"t":78,"tokens":[10963,13834,4220,5028],"delegation":[9963,12834,3220,4028],"delegatorTokens":9999999941828}},{"ix":95,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":12,"t":72,"consumerPower":[7097,null,null,7206],"outstandingDowntime":[false,false,false,false]}},{"ix":96,"action":{"kind":"Undelegate","val":1,"amt":3389},"partialState":{"h":13,"t":78,"tokens":[10963,10445,4220,5028],"delegation":[9963,9445,3220,4028],"delegatorTokens":9999999941828}},{"ix":97,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":98,"action":{"kind":"Deliver","chain":"provider","numPackets":6},"partialState":{"h":13,"t":78,"tokens":[10963,10445,4220,5028],"delegation":[9963,9445,3220,4028],"delegatorTokens":9999999941828,"jailed":[null,null,null,1000000000000059],"status":["bonded","bonded","unbonding","unbonding"]}},{"ix":99,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":100,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":101,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":14,"t":84,"tokens":[10963,10445,4220,5028],"delegation":[9963,9445,3220,4028],"delegatorTokens":9999999941828,"jailed":[null,null,null,1000000000000059],"status":["bonded","bonded","unbonding","unbonding"]}},{"ix":102,"action":{"kind":"Delegate","val":2,"amt":1848},"partialState":{"h":14,"t":84,"tokens":[10963,10445,6068,5028],"delegation":[9963,9445,5068,4028],"delegatorTokens":9999999939980}},{"ix":103,"action":{"kind":"Deliver","chain":"provider","numPackets":6},"partialState":{"h":14,"t":84,"tokens":[10963,10445,6068,5028],"delegation":[9963,9445,5068,4028],"delegatorTokens":9999999939980,"jailed":[null,null,null,1000000000000059],"status":["bonded","bonded","unbonding","unbonding"]}},{"ix":104,"action":{"kind":"Undelegate","val":3,"amt":3308},"partialState":{"h":14,"t":84,"tokens":[10963,10445,6068,1720],"delegation":[9963,9445,5068,720],"delegatorTokens":9999999939980}},{"ix":105,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":15,"t":90,"tokens":[10963,10445,6068,1720],"delegation":[9963,9445,5068,720],"delegatorTokens":9999999939980,"jailed":[null,null,null,1000000000000059],"status":["bonded","bonded","unbonding","unbonding"]}},{"ix":106,"action":{"kind":"Delegate","val":1,"amt":1710},"partialState":{"h":15,"t":90,"tokens":[10963,12155,6068,1720],"delegation":[9963,11155,5068,720],"delegatorTokens":9999999938270}},{"ix":107,"action":{"kind":"Undelegate","val":0,"amt":2608},"partialState":{"h":15,"t":90,"tokens":[8355,12155,6068,1720],"delegation":[7355,11155,5068,720],"delegatorTokens":9999999938270}},{"ix":108,"action":{"kind":"Deliver","chain":"consumer","numPackets":5},"partialState":{"h":12,"t":72,"consumerPower":[7097,null,null,7206],"outstandingDowntime":[false,false,false,false]}},{"ix":109,"action":{"kind":"Undelegate","val":2,"amt":4405},"partialState":{"h":15,"t":90,"tokens":[8355,12155,1663,1720],"delegation":[7355,11155,663,720],"delegatorTokens":9999999938270}},{"ix":110,"action":{"kind":"Delegate","val":3,"amt":2580},"partialState":{"h":15,"t":90,"tokens":[8355,12155,1663,4300],"delegation":[7355,11155,663,3300],"delegatorTokens":9999999935690}},{"ix":111,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":16,"t":96,"tokens":[8355,12155,1663,4300],"delegation":[7355,11155,663,3300],"delegatorTokens":9999999935690,"jailed":[null,null,null,1000000000000059],"status":["bonded","bonded","unbonding","unbonding"]}},{"ix":112,"action":{"kind":"Deliver","chain":"consumer","numPackets":6},"partialState":{"h":12,"t":72,"consumerPower":[7097,null,null,7206],"outstandingDowntime":[false,false,false,false]}},{"ix":113,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":17,"t":102,"tokens":[8355,12155,1663,4300],"delegation":[7355,11155,663,3300],"delegatorTokens":9999999935690,"jailed":[null,null,null,1000000000000059],"status":["bonded","bonded","unbonding","unbonding"]}},{"ix":114,"action":{"kind":"Undelegate","val":1,"amt":1948},"partialState":{"h":17,"t":102,"tokens":[8355,10207,1663,4300],"delegation":[7355,9207,663,3300],"delegatorTokens":9999999935690}},{"ix":115,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":116,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":117,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":13,"t":78,"consumerPower":[10963,10445,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":118,"action":{"kind":"Undelegate","val":1,"amt":2934},"partialState":{"h":17,"t":102,"tokens":[8355,7273,1663,4300],"delegation":[7355,6273,663,3300],"delegatorTokens":9999999935690}},{"ix":119,"action":{"kind":"Delegate","val":2,"amt":2641},"partialState":{"h":17,"t":102,"tokens":[8355,7273,4304,4300],"delegation":[7355,6273,3304,3300],"delegatorTokens":9999999933049}},{"ix":120,"action":{"kind":"Delegate","val":0,"amt":3083},"partialState":{"h":17,"t":102,"tokens":[11438,7273,4304,4300],"delegation":[10438,6273,3304,3300],"delegatorTokens":9999999929966}},{"ix":121,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":122,"action":{"kind":"Delegate","val":1,"amt":3088},"partialState":{"h":17,"t":102,"tokens":[11438,10361,4304,4300],"delegation":[10438,9361,3304,3300],"delegatorTokens":9999999926878}},{"ix":123,"action":{"kind":"Delegate","val":3,"amt":2232},"partialState":{"h":17,"t":102,"tokens":[11438,10361,4304,6532],"delegation":[10438,9361,3304,5532],"delegatorTokens":9999999924646}},{"ix":124,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":14,"t":84,"consumerPower":[10963,10445,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":125,"action":{"kind":"Deliver","chain":"provider","numPackets":6},"partialState":{"h":17,"t":102,"tokens":[11438,10361,4304,6532],"delegation":[10438,9361,3304,5532],"delegatorTokens":9999999924646,"jailed":[null,null,null,1000000000000059],"status":["bonded","bonded","unbonding","unbonding"]}},{"ix":126,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":15,"t":90,"consumerPower":[10963,10445,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":127,"action":{"kind":"Delegate","val":2,"amt":3587},"partialState":{"h":17,"t":102,"tokens":[11438,10361,7891,6532],"delegation":[10438,9361,6891,5532],"delegatorTokens":9999999921059}},{"ix":128,"action":{"kind":"Deliver","chain":"provider","numPackets":6},"partialState":{"h":17,"t":102,"tokens":[11438,10361,7891,6532],"delegation":[10438,9361,6891,5532],"delegatorTokens":9999999921059,"jailed":[null,null,null,1000000000000059],"status":["bonded","bonded","unbonding","unbonding"]}},{"ix":129,"action":{"kind":"Delegate","val":2,"amt":4104},"partialState":{"h":17,"t":102,"tokens":[11438,10361,11995,6532],"delegation":[10438,9361,10995,5532],"delegatorTokens":9999999916955}},{"ix":130,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":16,"t":96,"consumerPower":[10963,10445,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":131,"action":{"kind":"Deliver","chain":"provider","numPackets":3},"partialState":{"h":17,"t":102,"tokens":[11438,10361,11995,6532],"delegation":[10438,9361,10995,5532],"delegatorTokens":9999999916955,"jailed":[null,null,null,1000000000000059],"status":["bonded","bonded","unbonding","unbonding"]}},{"ix":132,"action":{"kind":"Delegate","val":1,"amt":3757},"partialState":{"h":17,"t":102,"tokens":[11438,14118,11995,6532],"delegation":[10438,13118,10995,5532],"delegatorTokens":9999999913198}},{"ix":133,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":18,"t":108,"tokens":[11438,14118,11995,6532],"delegation":[10438,13118,10995,5532],"delegatorTokens":9999999920476,"jailed":[null,null,null,1000000000000059],"status":["unbonding","bonded","bonded","unbonding"]}},{"ix":134,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":135,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":136,"action":{"kind":"Delegate","val":3,"amt":1830},"partialState":{"h":18,"t":108,"tokens":[11438,14118,11995,8362],"delegation":[10438,13118,10995,7362],"delegatorTokens":9999999918646}},{"ix":137,"action":{"kind":"Delegate","val":2,"amt":3069},"partialState":{"h":18,"t":108,"tokens":[11438,14118,15064,8362],"delegation":[10438,13118,14064,7362],"delegatorTokens":9999999915577}},{"ix":138,"action":{"kind":"Undelegate","val":0,"amt":1103},"partialState":{"h":18,"t":108,"tokens":[10335,14118,15064,8362],"delegation":[9335,13118,14064,7362],"delegatorTokens":9999999915577}},{"ix":139,"action":{"kind":"Deliver","chain":"consumer","numPackets":4},"partialState":{"h":16,"t":96,"consumerPower":[10963,10445,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":140,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":19,"t":114,"tokens":[10335,14118,15064,8362],"delegation":[9335,13118,14064,7362],"delegatorTokens":9999999919724,"jailed":[null,null,null,1000000000000059],"status":["unbonding","bonded","bonded","unbonding"]}},{"ix":141,"action":{"kind":"Delegate","val":0,"amt":3055},"partialState":{"h":19,"t":114,"tokens":[13390,14118,15064,8362],"delegation":[12390,13118,14064,7362],"delegatorTokens":9999999916669}},{"ix":142,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":143,"action":{"kind":"Undelegate","val":1,"amt":3373},"partialState":{"h":19,"t":114,"tokens":[13390,10745,15064,8362],"delegation":[12390,9745,14064,7362],"delegatorTokens":9999999916669}},{"ix":144,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":20,"t":120,"tokens":[13390,10745,15064,8362],"delegation":[12390,9745,14064,7362],"delegatorTokens":9999999916669,"jailed":[null,null,null,1000000000000059],"status":["bonded","unbonding","bonded","unbonding"]}},{"ix":145,"action":{"kind":"Undelegate","val":2,"amt":2840},"partialState":{"h":20,"t":120,"tokens":[13390,10745,12224,8362],"delegation":[12390,9745,11224,7362],"delegatorTokens":9999999916669}},{"ix":146,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":147,"action":{"kind":"Delegate","val":1,"amt":4293},"partialState":{"h":20,"t":120,"tokens":[13390,15038,12224,8362],"delegation":[12390,14038,11224,7362],"delegatorTokens":9999999912376}},{"ix":148,"action":{"kind":"Delegate","val":0,"amt":3846},"partialState":{"h":20,"t":120,"tokens":[17236,15038,12224,8362],"delegation":[16236,14038,11224,7362],"delegatorTokens":9999999908530}},{"ix":149,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":21,"t":126,"tokens":[17236,15038,12224,8362],"delegation":[16236,14038,11224,7362],"delegatorTokens":9999999908530,"jailed":[null,null,null,1000000000000059],"status":["bonded","bonded","unbonding","unbonding"]}},{"ix":150,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":22,"t":132,"tokens":[17236,15038,12224,8362],"delegation":[16236,14038,11224,7362],"delegatorTokens":9999999908530,"jailed":[null,null,null,1000000000000059],"status":["bonded","bonded","unbonding","unbonding"]}},{"ix":151,"action":{"kind":"Undelegate","val":2,"amt":2464},"partialState":{"h":22,"t":132,"tokens":[17236,15038,9760,8362],"delegation":[16236,14038,8760,7362],"delegatorTokens":9999999908530}},{"ix":152,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":17,"t":102,"consumerPower":[8355,12155,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":153,"action":{"kind":"Deliver","chain":"consumer","numPackets":4},"partialState":{"h":17,"t":102,"consumerPower":[8355,12155,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":154,"action":{"kind":"Undelegate","val":2,"amt":1214},"partialState":{"h":22,"t":132,"tokens":[17236,15038,8546,8362],"delegation":[16236,14038,7546,7362],"delegatorTokens":9999999908530}},{"ix":155,"action":{"kind":"Delegate","val":0,"amt":2020},"partialState":{"h":22,"t":132,"tokens":[19256,15038,8546,8362],"delegation":[18256,14038,7546,7362],"delegatorTokens":9999999906510}},{"ix":156,"action":{"kind":"Delegate","val":3,"amt":3862},"partialState":{"h":22,"t":132,"tokens":[19256,15038,8546,12224],"delegation":[18256,14038,7546,11224],"delegatorTokens":9999999902648}},{"ix":157,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":18,"t":108,"consumerPower":[17236,15038,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":158,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":23,"t":138,"tokens":[19256,15038,8546,12224],"delegation":[18256,14038,7546,11224],"delegatorTokens":9999999902648,"jailed":[null,null,null,1000000000000059],"status":["bonded","bonded","unbonding","unbonding"]}},{"ix":159,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":160,"action":{"kind":"Delegate","val":3,"amt":3550},"partialState":{"h":23,"t":138,"tokens":[19256,15038,8546,15774],"delegation":[18256,14038,7546,14774],"delegatorTokens":9999999899098}},{"ix":161,"action":{"kind":"Undelegate","val":3,"amt":2160},"partialState":{"h":23,"t":138,"tokens":[19256,15038,8546,13614],"delegation":[18256,14038,7546,12614],"delegatorTokens":9999999899098}},{"ix":162,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":163,"action":{"kind":"Undelegate","val":0,"amt":4678},"partialState":{"h":23,"t":138,"tokens":[14578,15038,8546,13614],"delegation":[13578,14038,7546,12614],"delegatorTokens":9999999899098}},{"ix":164,"action":{"kind":"Deliver","chain":"consumer","numPackets":1},"partialState":{"h":18,"t":108,"consumerPower":[17236,15038,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":165,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":166,"action":{"kind":"Delegate","val":1,"amt":2463},"partialState":{"h":23,"t":138,"tokens":[14578,17501,8546,13614],"delegation":[13578,16501,7546,12614],"delegatorTokens":9999999896635}},{"ix":167,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":168,"action":{"kind":"Delegate","val":3,"amt":4098},"partialState":{"h":23,"t":138,"tokens":[14578,17501,8546,17712],"delegation":[13578,16501,7546,16712],"delegatorTokens":9999999892537}},{"ix":169,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":19,"t":114,"consumerPower":[17236,15038,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":170,"action":{"kind":"Undelegate","val":1,"amt":3429},"partialState":{"h":23,"t":138,"tokens":[14578,14072,8546,17712],"delegation":[13578,13072,7546,16712],"delegatorTokens":9999999892537}},{"ix":171,"action":{"kind":"Deliver","chain":"provider","numPackets":6},"partialState":{"h":23,"t":138,"tokens":[14578,14072,8546,17712],"delegation":[13578,13072,7546,16712],"delegatorTokens":9999999892537,"jailed":[null,null,null,1000000000000059],"status":["bonded","bonded","unbonding","unbonding"]}},{"ix":172,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":173,"action":{"kind":"Deliver","chain":"consumer","numPackets":3},"partialState":{"h":19,"t":114,"consumerPower":[17236,15038,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":174,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":175,"action":{"kind":"Delegate","val":0,"amt":4946},"partialState":{"h":23,"t":138,"tokens":[19524,14072,8546,17712],"delegation":[18524,13072,7546,16712],"delegatorTokens":9999999887591}},{"ix":176,"action":{"kind":"Undelegate","val":1,"amt":4834},"partialState":{"h":23,"t":138,"tokens":[19524,9238,8546,17712],"delegation":[18524,8238,7546,16712],"delegatorTokens":9999999887591}},{"ix":177,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":178,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":24,"t":144,"tokens":[19524,9238,8546,17712],"delegation":[18524,8238,7546,16712],"delegatorTokens":9999999894815,"jailed":[null,null,null,1000000000000059],"status":["bonded","bonded","unbonding","unbonding"]}},{"ix":179,"action":{"kind":"Undelegate","val":3,"amt":1471},"partialState":{"h":24,"t":144,"tokens":[19524,9238,8546,16241],"delegation":[18524,8238,7546,15241],"delegatorTokens":9999999894815}},{"ix":180,"action":{"kind":"Deliver","chain":"provider","numPackets":5},"partialState":{"h":24,"t":144,"tokens":[19524,9238,8546,16241],"delegation":[18524,8238,7546,15241],"delegatorTokens":9999999894815,"jailed":[null,null,null,1000000000000059],"status":["bonded","bonded","unbonding","unbonding"]}},{"ix":181,"action":{"kind":"Undelegate","val":1,"amt":1135},"partialState":{"h":24,"t":144,"tokens":[19524,8103,8546,16241],"delegation":[18524,7103,7546,15241],"delegatorTokens":9999999894815}},{"ix":182,"action":{"kind":"Delegate","val":3,"amt":3904},"partialState":{"h":24,"t":144,"tokens":[19524,8103,8546,20145],"delegation":[18524,7103,7546,19145],"delegatorTokens":9999999890911}},{"ix":183,"action":{"kind":"Undelegate","val":0,"amt":4742},"partialState":{"h":24,"t":144,"tokens":[14782,8103,8546,20145],"delegation":[13782,7103,7546,19145],"delegatorTokens":9999999890911}},{"ix":184,"action":{"kind":"Undelegate","val":0,"amt":4367},"partialState":{"h":24,"t":144,"tokens":[10415,8103,8546,20145],"delegation":[9415,7103,7546,19145],"delegatorTokens":9999999890911}},{"ix":185,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":20,"t":120,"consumerPower":[17236,15038,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":186,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":25,"t":150,"tokens":[10415,8103,8546,20145],"delegation":[9415,7103,7546,19145],"delegatorTokens":9999999890911,"jailed":[null,null,null,1000000000000059],"status":["bonded","unbonding","bonded","unbonding"]}},{"ix":187,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":188,"action":{"kind":"Undelegate","val":3,"amt":4105},"partialState":{"h":25,"t":150,"tokens":[10415,8103,8546,16040],"delegation":[9415,7103,7546,15040],"delegatorTokens":9999999890911}},{"ix":189,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":190,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":21,"t":126,"consumerPower":[17236,15038,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":191,"action":{"kind":"Deliver","chain":"provider","numPackets":2},"partialState":{"h":25,"t":150,"tokens":[10415,8103,8546,16040],"delegation":[9415,7103,7546,15040],"delegatorTokens":9999999890911,"jailed":[null,null,null,1000000000000059],"status":["bonded","unbonding","bonded","unbonding"]}},{"ix":192,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":193,"action":{"kind":"Delegate","val":3,"amt":3019},"partialState":{"h":25,"t":150,"tokens":[10415,8103,8546,19059],"delegation":[9415,7103,7546,18059],"delegatorTokens":9999999887892}},{"ix":194,"action":{"kind":"Deliver","chain":"consumer","numPackets":3},"partialState":{"h":21,"t":126,"consumerPower":[17236,15038,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":195,"action":{"kind":"Delegate","val":0,"amt":3387},"partialState":{"h":25,"t":150,"tokens":[13802,8103,8546,19059],"delegation":[12802,7103,7546,18059],"delegatorTokens":9999999884505}},{"ix":196,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":26,"t":156,"tokens":[13802,8103,8546,19059],"delegation":[12802,7103,7546,18059],"delegatorTokens":9999999901805,"jailed":[null,null,null,1000000000000059],"status":["bonded","unbonding","bonded","unbonding"]}},{"ix":197,"action":{"kind":"Undelegate","val":2,"amt":2064},"partialState":{"h":26,"t":156,"tokens":[13802,8103,6482,19059],"delegation":[12802,7103,5482,18059],"delegatorTokens":9999999901805}},{"ix":198,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":22,"t":132,"consumerPower":[19524,9238,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":199,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}}],"events":["insufficient_shares","send_downtime_slash_request","more_than_one_third_val_power_change","send_vsc_without_downtime_ack","more_than_one_third_val_power_change","rebond_unval","send_vsc_without_downtime_ack","send_double_sign_slash_request","insufficient_shares","send_double_sign_slash_request","insufficient_shares","send_vsc_without_downtime_ack","send_vsc_without_downtime_ack","consumer_del_val","consumer_update_val","consumer_del_val","consumer_add_val","more_than_one_third_val_power_change","rebond_unval","send_vsc_without_downtime_ack","more_than_one_third_val_power_change","rebond_unval","send_vsc_without_downtime_ack","more_than_one_third_val_power_change","rebond_unval","send_vsc_without_downtime_ack","receive_double_sign_slash_request","receive_double_sign_slash_request","consumer_update_val","consumer_del_val","consumer_add_val","consumer_add_val","consumer_del_val","consumer_update_val","more_than_one_third_val_power_change","rebond_unval","receive_downtime_slash_request","jail","send_vsc_with_downtime_ack","insufficient_shares","more_than_one_third_val_power_change","rebond_unval","send_vsc_without_downtime_ack","receive_downtime_slash_ack","consumer_update_val","consumer_del_val","consumer_update_val","send_vsc_without_downtime_ack","send_vsc_without_downtime_ack","some_undels_expired_but_not_completed","send_vsc_not_because_change","send_vsc_without_downtime_ack","some_undels_expired_but_not_completed","send_vsc_without_downtime_ack","some_undels_expired_but_not_completed","consumer_send_maturation","consumer_send_maturation","consumer_send_maturation","consumer_add_val","consumer_del_val","consumer_update_val","consumer_send_maturation","consumer_send_maturation","consumer_send_maturation","more_than_one_third_val_power_change","rebond_unval","complete_undel_immediate","complete_undel_immediate","complete_undel_immediate","set_undel_hold_false","set_undel_hold_false","send_vsc_without_downtime_ack","complete_undel_in_endblock","send_vsc_without_downtime_ack","more_than_one_third_val_power_change","rebond_unval","send_vsc_without_downtime_ack","more_than_one_third_val_power_change","rebond_unval","some_undels_expired_but_not_completed","send_vsc_without_downtime_ack","some_undels_expired_but_not_completed","consumer_update_val","consumer_update_val","consumer_update_val","consumer_update_val","consumer_del_val","some_undels_expired_but_not_completed","send_vsc_without_downtime_ack","consumer_send_maturation","consumer_send_maturation","some_undels_expired_but_not_completed","complete_undel_immediate","complete_undel_immediate","send_vsc_without_downtime_ack","more_than_one_third_val_power_change","rebond_unval","send_vsc_without_downtime_ack","some_undels_expired_but_not_completed","complete_undel_immediate","complete_undel_immediate","complete_undel_immediate","complete_undel_immediate","complete_undel_immediate","complete_undel_immediate","send_vsc_without_downtime_ack","consumer_send_maturation","consumer_send_maturation","consumer_send_maturation","consumer_send_maturation","consumer_update_val","consumer_update_val"]},{"meta":{"commit":"7ffd0c04e4205cbc9caf212abfe6c59ee43153bf"},"constants":{"P":"provider","C":"consumer","UNBONDING_SECONDS_P":70,"UNBONDING_SECONDS_C":50,"TRUSTING_SECONDS":49,"NUM_VALIDATORS":4,"MAX_VALIDATORS":2,"SLASH_DOUBLESIGN":0,"SLASH_DOWNTIME":0,"JAIL_SECONDS":999999999999999,"BLOCK_SECONDS":6,"INITIAL_DELEGATOR_TOKENS":10000000000000,"DELEGATE_AMT_MIN":1000,"DELEGATE_AMT_MAX":5000,"UNDELEGATE_AMT_MIN":1000,"UNDELEGATE_AMT_MAX":5000,"ISDOWNTIME_PROBABILITY":0.5,"MAX_NUM_PACKETS_FOR_DELIVER":6},"actions":[{"ix":0,"action":{"kind":"ConsumerSlash","val":1,"infractionHeight":0,"isDowntime":false},"partialState":{"h":1,"t":6,"outstandingDowntime":[false,false,false,false]}},{"ix":1,"action":{"kind":"Delegate","val":3,"amt":4700},"partialState":{"h":1,"t":6,"tokens":[5000,4000,3000,6700],"delegation":[4000,3000,2000,5700],"delegatorTokens":9999999995300}},{"ix":2,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":2,"t":12,"tokens":[5000,4000,3000,6700],"delegation":[4000,3000,2000,5700],"delegatorTokens":9999999995300,"jailed":[null,null,null,null],"status":["bonded","unbonding","unbonded","bonded"]}},{"ix":3,"action":{"kind":"Delegate","val":2,"amt":1779},"partialState":{"h":2,"t":12,"tokens":[5000,4000,4779,6700],"delegation":[4000,3000,3779,5700],"delegatorTokens":9999999993521}},{"ix":4,"action":{"kind":"Deliver","chain":"consumer","numPackets":1},"partialState":{"h":1,"t":6,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":5,"action":{"kind":"Undelegate","val":0,"amt":2911},"partialState":{"h":2,"t":12,"tokens":[2089,4000,4779,6700],"delegation":[1089,3000,3779,5700],"delegatorTokens":9999999993521}},{"ix":6,"action":{"kind":"Undelegate","val":1,"amt":4608},"partialState":{"h":2,"t":12,"tokens":[2089,4000,4779,6700],"delegation":[1089,3000,3779,5700],"delegatorTokens":9999999993521}},{"ix":7,"action":{"kind":"Delegate","val":1,"amt":2313},"partialState":{"h":2,"t":12,"tokens":[2089,6313,4779,6700],"delegation":[1089,5313,3779,5700],"delegatorTokens":9999999991208}},{"ix":8,"action":{"kind":"Deliver","chain":"consumer","numPackets":6},"partialState":{"h":1,"t":6,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":9,"action":{"kind":"Undelegate","val":1,"amt":1683},"partialState":{"h":2,"t":12,"tokens":[2089,4630,4779,6700],"delegation":[1089,3630,3779,5700],"delegatorTokens":9999999991208}},{"ix":10,"action":{"kind":"ConsumerSlash","val":3,"infractionHeight":0,"isDowntime":false},"partialState":{"h":1,"t":6,"outstandingDowntime":[false,false,false,false]}},{"ix":11,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":12,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":3,"t":18,"tokens":[2089,4630,4779,6700],"delegation":[1089,3630,3779,5700],"delegatorTokens":9999999991208,"jailed":[null,null,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":13,"action":{"kind":"ConsumerSlash","val":0,"infractionHeight":0,"isDowntime":false},"partialState":{"h":1,"t":6,"outstandingDowntime":[false,false,false,false]}},{"ix":14,"action":{"kind":"Undelegate","val":1,"amt":3932},"partialState":{"h":3,"t":18,"tokens":[2089,4630,4779,6700],"delegation":[1089,3630,3779,5700],"delegatorTokens":9999999991208}},{"ix":15,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":2,"t":12,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":16,"action":{"kind":"Undelegate","val":3,"amt":2023},"partialState":{"h":3,"t":18,"tokens":[2089,4630,4779,4677],"delegation":[1089,3630,3779,3677],"delegatorTokens":9999999991208}},{"ix":17,"action":{"kind":"Delegate","val":1,"amt":4571},"partialState":{"h":3,"t":18,"tokens":[2089,9201,4779,4677],"delegation":[1089,8201,3779,3677],"delegatorTokens":9999999986637}},{"ix":18,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":19,"action":{"kind":"Deliver","chain":"consumer","numPackets":1},"partialState":{"h":2,"t":12,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":20,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":21,"action":{"kind":"Delegate","val":0,"amt":1772},"partialState":{"h":3,"t":18,"tokens":[3861,9201,4779,4677],"delegation":[2861,8201,3779,3677],"delegatorTokens":9999999984865}},{"ix":22,"action":{"kind":"Delegate","val":0,"amt":1778},"partialState":{"h":3,"t":18,"tokens":[5639,9201,4779,4677],"delegation":[4639,8201,3779,3677],"delegatorTokens":9999999983087}},{"ix":23,"action":{"kind":"Undelegate","val":3,"amt":4611},"partialState":{"h":3,"t":18,"tokens":[5639,9201,4779,4677],"delegation":[4639,8201,3779,3677],"delegatorTokens":9999999983087}},{"ix":24,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":3,"t":18,"consumerPower":[5000,null,null,6700],"outstandingDowntime":[false,false,false,false]}},{"ix":25,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":4,"t":24,"tokens":[5639,9201,4779,4677],"delegation":[4639,8201,3779,3677],"delegatorTokens":9999999983087,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonding","unbonding"]}},{"ix":26,"action":{"kind":"Deliver","chain":"consumer","numPackets":4},"partialState":{"h":3,"t":18,"consumerPower":[5000,null,null,6700],"outstandingDowntime":[false,false,false,false]}},{"ix":27,"action":{"kind":"Deliver","chain":"consumer","numPackets":5},"partialState":{"h":3,"t":18,"consumerPower":[5000,null,null,6700],"outstandingDowntime":[false,false,false,false]}},{"ix":28,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":4,"t":24,"consumerPower":[null,null,4779,6700],"outstandingDowntime":[false,false,false,false]}},{"ix":29,"action":{"kind":"Undelegate","val":3,"amt":4832},"partialState":{"h":4,"t":24,"tokens":[5639,9201,4779,4677],"delegation":[4639,8201,3779,3677],"delegatorTokens":9999999983087}},{"ix":30,"action":{"kind":"Deliver","chain":"provider","numPackets":6},"partialState":{"h":4,"t":24,"tokens":[5639,9201,4779,4677],"delegation":[4639,8201,3779,3677],"delegatorTokens":9999999983087,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonding","unbonding"]}},{"ix":31,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":5,"t":30,"consumerPower":[null,null,4779,6700],"outstandingDowntime":[false,false,false,false]}},{"ix":32,"action":{"kind":"Delegate","val":3,"amt":1215},"partialState":{"h":4,"t":24,"tokens":[5639,9201,4779,5892],"delegation":[4639,8201,3779,4892],"delegatorTokens":9999999981872}},{"ix":33,"action":{"kind":"Deliver","chain":"consumer","numPackets":1},"partialState":{"h":5,"t":30,"consumerPower":[null,null,4779,6700],"outstandingDowntime":[false,false,false,false]}},{"ix":34,"action":{"kind":"Undelegate","val":1,"amt":1667},"partialState":{"h":4,"t":24,"tokens":[5639,7534,4779,5892],"delegation":[4639,6534,3779,4892],"delegatorTokens":9999999981872}},{"ix":35,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":6,"t":36,"consumerPower":[null,null,4779,6700],"outstandingDowntime":[false,false,false,false]}},{"ix":36,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":37,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":38,"action":{"kind":"Delegate","val":3,"amt":2617},"partialState":{"h":4,"t":24,"tokens":[5639,7534,4779,8509],"delegation":[4639,6534,3779,7509],"delegatorTokens":9999999979255}},{"ix":39,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":40,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":41,"action":{"kind":"Undelegate","val":2,"amt":2303},"partialState":{"h":4,"t":24,"tokens":[5639,7534,2476,8509],"delegation":[4639,6534,1476,7509],"delegatorTokens":9999999979255}},{"ix":42,"action":{"kind":"Delegate","val":1,"amt":2977},"partialState":{"h":4,"t":24,"tokens":[5639,10511,2476,8509],"delegation":[4639,9511,1476,7509],"delegatorTokens":9999999976278}},{"ix":43,"action":{"kind":"Deliver","chain":"consumer","numPackets":4},"partialState":{"h":6,"t":36,"consumerPower":[null,null,4779,6700],"outstandingDowntime":[false,false,false,false]}},{"ix":44,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":5,"t":30,"tokens":[5639,10511,2476,8509],"delegation":[4639,9511,1476,7509],"delegatorTokens":9999999976278,"jailed":[null,null,null,null],"status":["unbonding","bonded","unbonding","bonded"]}},{"ix":45,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":6,"t":36,"tokens":[5639,10511,2476,8509],"delegation":[4639,9511,1476,7509],"delegatorTokens":9999999976278,"jailed":[null,null,null,null],"status":["unbonding","bonded","unbonding","bonded"]}},{"ix":46,"action":{"kind":"Delegate","val":3,"amt":1780},"partialState":{"h":6,"t":36,"tokens":[5639,10511,2476,10289],"delegation":[4639,9511,1476,9289],"delegatorTokens":9999999974498}},{"ix":47,"action":{"kind":"Undelegate","val":0,"amt":1897},"partialState":{"h":6,"t":36,"tokens":[3742,10511,2476,10289],"delegation":[2742,9511,1476,9289],"delegatorTokens":9999999974498}},{"ix":48,"action":{"kind":"Delegate","val":0,"amt":2882},"partialState":{"h":6,"t":36,"tokens":[6624,10511,2476,10289],"delegation":[5624,9511,1476,9289],"delegatorTokens":9999999971616}},{"ix":49,"action":{"kind":"Undelegate","val":3,"amt":3652},"partialState":{"h":6,"t":36,"tokens":[6624,10511,2476,6637],"delegation":[5624,9511,1476,5637],"delegatorTokens":9999999971616}},{"ix":50,"action":{"kind":"Deliver","chain":"consumer","numPackets":3},"partialState":{"h":6,"t":36,"consumerPower":[null,null,4779,6700],"outstandingDowntime":[false,false,false,false]}},{"ix":51,"action":{"kind":"Deliver","chain":"consumer","numPackets":4},"partialState":{"h":6,"t":36,"consumerPower":[null,null,4779,6700],"outstandingDowntime":[false,false,false,false]}},{"ix":52,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":7,"t":42,"consumerPower":[null,10511,null,8509],"outstandingDowntime":[false,false,false,false]}},{"ix":53,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":54,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":55,"action":{"kind":"Undelegate","val":3,"amt":2866},"partialState":{"h":6,"t":36,"tokens":[6624,10511,2476,3771],"delegation":[5624,9511,1476,2771],"delegatorTokens":9999999971616}},{"ix":56,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":7,"t":42,"tokens":[6624,10511,2476,3771],"delegation":[5624,9511,1476,2771],"delegatorTokens":9999999971616,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonding","unbonding"]}},{"ix":57,"action":{"kind":"Delegate","val":3,"amt":2650},"partialState":{"h":7,"t":42,"tokens":[6624,10511,2476,6421],"delegation":[5624,9511,1476,5421],"delegatorTokens":9999999968966}},{"ix":58,"action":{"kind":"Undelegate","val":3,"amt":4970},"partialState":{"h":7,"t":42,"tokens":[6624,10511,2476,1451],"delegation":[5624,9511,1476,451],"delegatorTokens":9999999968966}},{"ix":59,"action":{"kind":"Undelegate","val":0,"amt":3488},"partialState":{"h":7,"t":42,"tokens":[3136,10511,2476,1451],"delegation":[2136,9511,1476,451],"delegatorTokens":9999999968966}},{"ix":60,"action":{"kind":"Delegate","val":3,"amt":3232},"partialState":{"h":7,"t":42,"tokens":[3136,10511,2476,4683],"delegation":[2136,9511,1476,3683],"delegatorTokens":9999999965734}},{"ix":61,"action":{"kind":"Deliver","chain":"provider","numPackets":4},"partialState":{"h":7,"t":42,"tokens":[3136,10511,2476,4683],"delegation":[2136,9511,1476,3683],"delegatorTokens":9999999965734,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonding","unbonding"]}},{"ix":62,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":8,"t":48,"tokens":[3136,10511,2476,4683],"delegation":[2136,9511,1476,3683],"delegatorTokens":9999999965734,"jailed":[null,null,null,null],"status":["unbonding","bonded","unbonding","bonded"]}},{"ix":63,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":64,"action":{"kind":"Undelegate","val":3,"amt":1803},"partialState":{"h":8,"t":48,"tokens":[3136,10511,2476,2880],"delegation":[2136,9511,1476,1880],"delegatorTokens":9999999965734}},{"ix":65,"action":{"kind":"Delegate","val":3,"amt":3105},"partialState":{"h":8,"t":48,"tokens":[3136,10511,2476,5985],"delegation":[2136,9511,1476,4985],"delegatorTokens":9999999962629}},{"ix":66,"action":{"kind":"Deliver","chain":"provider","numPackets":6},"partialState":{"h":8,"t":48,"tokens":[3136,10511,2476,5985],"delegation":[2136,9511,1476,4985],"delegatorTokens":9999999962629,"jailed":[null,null,null,null],"status":["unbonding","bonded","unbonding","bonded"]}},{"ix":67,"action":{"kind":"Undelegate","val":3,"amt":3493},"partialState":{"h":8,"t":48,"tokens":[3136,10511,2476,2492],"delegation":[2136,9511,1476,1492],"delegatorTokens":9999999962629}},{"ix":68,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":69,"action":{"kind":"Deliver","chain":"provider","numPackets":5},"partialState":{"h":8,"t":48,"tokens":[3136,10511,2476,2492],"delegation":[2136,9511,1476,1492],"delegatorTokens":9999999962629,"jailed":[null,null,null,null],"status":["unbonding","bonded","unbonding","bonded"]}},{"ix":70,"action":{"kind":"Delegate","val":2,"amt":1940},"partialState":{"h":8,"t":48,"tokens":[3136,10511,4416,2492],"delegation":[2136,9511,3416,1492],"delegatorTokens":9999999960689}},{"ix":71,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":9,"t":54,"tokens":[3136,10511,4416,2492],"delegation":[2136,9511,3416,1492],"delegatorTokens":9999999960689,"jailed":[null,null,null,null],"status":["unbonding","bonded","bonded","unbonding"]}},{"ix":72,"action":{"kind":"Delegate","val":2,"amt":1686},"partialState":{"h":9,"t":54,"tokens":[3136,10511,6102,2492],"delegation":[2136,9511,5102,1492],"delegatorTokens":9999999959003}},{"ix":73,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":8,"t":48,"consumerPower":[null,10511,null,8509],"outstandingDowntime":[false,false,false,false]}},{"ix":74,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":75,"action":{"kind":"Delegate","val":1,"amt":1066},"partialState":{"h":9,"t":54,"tokens":[3136,11577,6102,2492],"delegation":[2136,10577,5102,1492],"delegatorTokens":9999999957937}},{"ix":76,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":77,"action":{"kind":"Delegate","val":3,"amt":3653},"partialState":{"h":9,"t":54,"tokens":[3136,11577,6102,6145],"delegation":[2136,10577,5102,5145],"delegatorTokens":9999999954284}},{"ix":78,"action":{"kind":"Delegate","val":1,"amt":1477},"partialState":{"h":9,"t":54,"tokens":[3136,13054,6102,6145],"delegation":[2136,12054,5102,5145],"delegatorTokens":9999999952807}},{"ix":79,"action":{"kind":"Undelegate","val":1,"amt":4579},"partialState":{"h":9,"t":54,"tokens":[3136,8475,6102,6145],"delegation":[2136,7475,5102,5145],"delegatorTokens":9999999952807}},{"ix":80,"action":{"kind":"Undelegate","val":1,"amt":2530},"partialState":{"h":9,"t":54,"tokens":[3136,5945,6102,6145],"delegation":[2136,4945,5102,5145],"delegatorTokens":9999999952807}},{"ix":81,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":10,"t":60,"tokens":[3136,5945,6102,6145],"delegation":[2136,4945,5102,5145],"delegatorTokens":9999999952807,"jailed":[null,null,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":82,"action":{"kind":"Undelegate","val":3,"amt":1746},"partialState":{"h":10,"t":60,"tokens":[3136,5945,6102,4399],"delegation":[2136,4945,5102,3399],"delegatorTokens":9999999952807}},{"ix":83,"action":{"kind":"Deliver","chain":"consumer","numPackets":4},"partialState":{"h":8,"t":48,"consumerPower":[null,10511,null,8509],"outstandingDowntime":[false,false,false,false]}},{"ix":84,"action":{"kind":"Deliver","chain":"provider","numPackets":5},"partialState":{"h":10,"t":60,"tokens":[3136,5945,6102,4399],"delegation":[2136,4945,5102,3399],"delegatorTokens":9999999952807,"jailed":[null,null,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":85,"action":{"kind":"Delegate","val":1,"amt":1756},"partialState":{"h":10,"t":60,"tokens":[3136,7701,6102,4399],"delegation":[2136,6701,5102,3399],"delegatorTokens":9999999951051}},{"ix":86,"action":{"kind":"Delegate","val":0,"amt":4192},"partialState":{"h":10,"t":60,"tokens":[7328,7701,6102,4399],"delegation":[6328,6701,5102,3399],"delegatorTokens":9999999946859}},{"ix":87,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":9,"t":54,"consumerPower":[null,10511,4416,null],"outstandingDowntime":[false,false,false,false]}},{"ix":88,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":89,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":90,"action":{"kind":"Delegate","val":1,"amt":1592},"partialState":{"h":10,"t":60,"tokens":[7328,9293,6102,4399],"delegation":[6328,8293,5102,3399],"delegatorTokens":9999999945267}},{"ix":91,"action":{"kind":"Undelegate","val":2,"amt":2853},"partialState":{"h":10,"t":60,"tokens":[7328,9293,3249,4399],"delegation":[6328,8293,2249,3399],"delegatorTokens":9999999945267}},{"ix":92,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":10,"t":60,"consumerPower":[null,10511,4416,null],"outstandingDowntime":[false,false,false,false]}},{"ix":93,"action":{"kind":"Undelegate","val":1,"amt":1244},"partialState":{"h":10,"t":60,"tokens":[7328,8049,3249,4399],"delegation":[6328,7049,2249,3399],"delegatorTokens":9999999945267}},{"ix":94,"action":{"kind":"Delegate","val":0,"amt":4696},"partialState":{"h":10,"t":60,"tokens":[12024,8049,3249,4399],"delegation":[11024,7049,2249,3399],"delegatorTokens":9999999940571}},{"ix":95,"action":{"kind":"Deliver","chain":"provider","numPackets":5},"partialState":{"h":10,"t":60,"tokens":[12024,8049,3249,4399],"delegation":[11024,7049,2249,3399],"delegatorTokens":9999999940571,"jailed":[null,null,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":96,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":97,"action":{"kind":"Undelegate","val":1,"amt":1583},"partialState":{"h":10,"t":60,"tokens":[12024,6466,3249,4399],"delegation":[11024,5466,2249,3399],"delegatorTokens":9999999940571}},{"ix":98,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":11,"t":66,"tokens":[12024,6466,3249,4399],"delegation":[11024,5466,2249,3399],"delegatorTokens":9999999940571,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonding","unbonding"]}},{"ix":99,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":12,"t":72,"tokens":[12024,6466,3249,4399],"delegation":[11024,5466,2249,3399],"delegatorTokens":9999999940571,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonding","unbonding"]}},{"ix":100,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":13,"t":78,"tokens":[12024,6466,3249,4399],"delegation":[11024,5466,2249,3399],"delegatorTokens":9999999940571,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonding","unbonding"]}},{"ix":101,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":11,"t":66,"consumerPower":[null,10511,4416,null],"outstandingDowntime":[false,false,false,false]}},{"ix":102,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":103,"action":{"kind":"Delegate","val":2,"amt":4854},"partialState":{"h":13,"t":78,"tokens":[12024,6466,8103,4399],"delegation":[11024,5466,7103,3399],"delegatorTokens":9999999935717}},{"ix":104,"action":{"kind":"Deliver","chain":"provider","numPackets":4},"partialState":{"h":13,"t":78,"tokens":[12024,6466,8103,4399],"delegation":[11024,5466,7103,3399],"delegatorTokens":9999999935717,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonding","unbonding"]}},{"ix":105,"action":{"kind":"Deliver","chain":"provider","numPackets":3},"partialState":{"h":13,"t":78,"tokens":[12024,6466,8103,4399],"delegation":[11024,5466,7103,3399],"delegatorTokens":9999999935717,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonding","unbonding"]}},{"ix":106,"action":{"kind":"Delegate","val":2,"amt":3741},"partialState":{"h":13,"t":78,"tokens":[12024,6466,11844,4399],"delegation":[11024,5466,10844,3399],"delegatorTokens":9999999931976}},{"ix":107,"action":{"kind":"Undelegate","val":2,"amt":1409},"partialState":{"h":13,"t":78,"tokens":[12024,6466,10435,4399],"delegation":[11024,5466,9435,3399],"delegatorTokens":9999999931976}},{"ix":108,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":109,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":14,"t":84,"tokens":[12024,6466,10435,4399],"delegation":[11024,5466,9435,3399],"delegatorTokens":9999999931976,"jailed":[null,null,null,null],"status":["bonded","unbonding","bonded","unbonding"]}},{"ix":110,"action":{"kind":"Deliver","chain":"consumer","numPackets":2},"partialState":{"h":11,"t":66,"consumerPower":[null,10511,4416,null],"outstandingDowntime":[false,false,false,false]}},{"ix":111,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":112,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":113,"action":{"kind":"Undelegate","val":3,"amt":2371},"partialState":{"h":14,"t":84,"tokens":[12024,6466,10435,2028],"delegation":[11024,5466,9435,1028],"delegatorTokens":9999999931976}},{"ix":114,"action":{"kind":"Deliver","chain":"provider","numPackets":6},"partialState":{"h":14,"t":84,"tokens":[12024,6466,10435,2028],"delegation":[11024,5466,9435,1028],"delegatorTokens":9999999931976,"jailed":[null,null,null,null],"status":["bonded","unbonding","bonded","unbonding"]}},{"ix":115,"action":{"kind":"Undelegate","val":2,"amt":3918},"partialState":{"h":14,"t":84,"tokens":[12024,6466,6517,2028],"delegation":[11024,5466,5517,1028],"delegatorTokens":9999999931976}},{"ix":116,"action":{"kind":"Deliver","chain":"provider","numPackets":6},"partialState":{"h":14,"t":84,"tokens":[12024,6466,6517,2028],"delegation":[11024,5466,5517,1028],"delegatorTokens":9999999931976,"jailed":[null,null,null,null],"status":["bonded","unbonding","bonded","unbonding"]}},{"ix":117,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":118,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":119,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":12,"t":72,"consumerPower":[12024,6466,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":120,"action":{"kind":"Deliver","chain":"consumer","numPackets":2},"partialState":{"h":12,"t":72,"consumerPower":[12024,6466,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":121,"action":{"kind":"Undelegate","val":2,"amt":1101},"partialState":{"h":14,"t":84,"tokens":[12024,6466,5416,2028],"delegation":[11024,5466,4416,1028],"delegatorTokens":9999999931976}},{"ix":122,"action":{"kind":"Deliver","chain":"provider","numPackets":1},"partialState":{"h":14,"t":84,"tokens":[12024,6466,5416,2028],"delegation":[11024,5466,4416,1028],"delegatorTokens":9999999931976,"jailed":[null,null,null,null],"status":["bonded","unbonding","bonded","unbonding"]}},{"ix":123,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":124,"action":{"kind":"Deliver","chain":"provider","numPackets":6},"partialState":{"h":14,"t":84,"tokens":[12024,6466,5416,2028],"delegation":[11024,5466,4416,1028],"delegatorTokens":9999999931976,"jailed":[null,null,null,null],"status":["bonded","unbonding","bonded","unbonding"]}},{"ix":125,"action":{"kind":"Delegate","val":0,"amt":2833},"partialState":{"h":14,"t":84,"tokens":[14857,6466,5416,2028],"delegation":[13857,5466,4416,1028],"delegatorTokens":9999999929143}},{"ix":126,"action":{"kind":"Delegate","val":2,"amt":1087},"partialState":{"h":14,"t":84,"tokens":[14857,6466,6503,2028],"delegation":[13857,5466,5503,1028],"delegatorTokens":9999999928056}},{"ix":127,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":128,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":13,"t":78,"consumerPower":[12024,6466,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":129,"action":{"kind":"Undelegate","val":0,"amt":1853},"partialState":{"h":14,"t":84,"tokens":[13004,6466,6503,2028],"delegation":[12004,5466,5503,1028],"delegatorTokens":9999999928056}},{"ix":130,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":131,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":14,"t":84,"consumerPower":[12024,6466,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":132,"action":{"kind":"Delegate","val":0,"amt":4339},"partialState":{"h":14,"t":84,"tokens":[17343,6466,6503,2028],"delegation":[16343,5466,5503,1028],"delegatorTokens":9999999923717}},{"ix":133,"action":{"kind":"Delegate","val":3,"amt":3918},"partialState":{"h":14,"t":84,"tokens":[17343,6466,6503,5946],"delegation":[16343,5466,5503,4946],"delegatorTokens":9999999919799}},{"ix":134,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":15,"t":90,"tokens":[17343,6466,6503,5946],"delegation":[16343,5466,5503,4946],"delegatorTokens":9999999919799,"jailed":[null,null,null,null],"status":["bonded","unbonding","bonded","unbonding"]}},{"ix":135,"action":{"kind":"Delegate","val":0,"amt":4994},"partialState":{"h":15,"t":90,"tokens":[22337,6466,6503,5946],"delegation":[21337,5466,5503,4946],"delegatorTokens":9999999914805}},{"ix":136,"action":{"kind":"Deliver","chain":"provider","numPackets":4},"partialState":{"h":15,"t":90,"tokens":[22337,6466,6503,5946],"delegation":[21337,5466,5503,4946],"delegatorTokens":9999999914805,"jailed":[null,null,null,null],"status":["bonded","unbonding","bonded","unbonding"]}},{"ix":137,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":16,"t":96,"tokens":[22337,6466,6503,5946],"delegation":[21337,5466,5503,4946],"delegatorTokens":9999999919399,"jailed":[null,null,null,null],"status":["bonded","unbonding","bonded","unbonding"]}},{"ix":138,"action":{"kind":"Deliver","chain":"provider","numPackets":2},"partialState":{"h":16,"t":96,"tokens":[22337,6466,6503,5946],"delegation":[21337,5466,5503,4946],"delegatorTokens":9999999919399,"jailed":[null,null,null,null],"status":["bonded","unbonding","bonded","unbonding"]}},{"ix":139,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":17,"t":102,"tokens":[22337,6466,6503,5946],"delegation":[21337,5466,5503,4946],"delegatorTokens":9999999919399,"jailed":[null,null,null,null],"status":["bonded","unbonding","bonded","unbonding"]}},{"ix":140,"action":{"kind":"Deliver","chain":"consumer","numPackets":6},"partialState":{"h":14,"t":84,"consumerPower":[12024,6466,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":141,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":15,"t":90,"consumerPower":[22337,null,6503,null],"outstandingDowntime":[false,false,false,false]}},{"ix":142,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":18,"t":108,"tokens":[22337,6466,6503,5946],"delegation":[21337,5466,5503,4946],"delegatorTokens":9999999919399,"jailed":[null,null,null,null],"status":["bonded","unbonding","bonded","unbonding"]}},{"ix":143,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":144,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":145,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":16,"t":96,"consumerPower":[22337,null,6503,null],"outstandingDowntime":[false,false,false,false]}},{"ix":146,"action":{"kind":"Delegate","val":3,"amt":1296},"partialState":{"h":18,"t":108,"tokens":[22337,6466,6503,7242],"delegation":[21337,5466,5503,6242],"delegatorTokens":9999999918103}},{"ix":147,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":148,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":19,"t":114,"tokens":[22337,6466,6503,7242],"delegation":[21337,5466,5503,6242],"delegatorTokens":9999999918103,"jailed":[null,null,null,null],"status":["bonded","unbonding","unbonding","bonded"]}},{"ix":149,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":20,"t":120,"tokens":[22337,6466,6503,7242],"delegation":[21337,5466,5503,6242],"delegatorTokens":9999999918103,"jailed":[null,null,null,null],"status":["bonded","unbonding","unbonding","bonded"]}},{"ix":150,"action":{"kind":"Undelegate","val":0,"amt":4400},"partialState":{"h":20,"t":120,"tokens":[17937,6466,6503,7242],"delegation":[16937,5466,5503,6242],"delegatorTokens":9999999918103}},{"ix":151,"action":{"kind":"Delegate","val":0,"amt":1573},"partialState":{"h":20,"t":120,"tokens":[19510,6466,6503,7242],"delegation":[18510,5466,5503,6242],"delegatorTokens":9999999916530}},{"ix":152,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":17,"t":102,"consumerPower":[22337,null,6503,null],"outstandingDowntime":[false,false,false,false]}},{"ix":153,"action":{"kind":"Undelegate","val":0,"amt":4307},"partialState":{"h":20,"t":120,"tokens":[15203,6466,6503,7242],"delegation":[14203,5466,5503,6242],"delegatorTokens":9999999916530}},{"ix":154,"action":{"kind":"Undelegate","val":3,"amt":3921},"partialState":{"h":20,"t":120,"tokens":[15203,6466,6503,3321],"delegation":[14203,5466,5503,2321],"delegatorTokens":9999999916530}},{"ix":155,"action":{"kind":"Delegate","val":3,"amt":1523},"partialState":{"h":20,"t":120,"tokens":[15203,6466,6503,4844],"delegation":[14203,5466,5503,3844],"delegatorTokens":9999999915007}},{"ix":156,"action":{"kind":"Deliver","chain":"provider","numPackets":5},"partialState":{"h":20,"t":120,"tokens":[15203,6466,6503,4844],"delegation":[14203,5466,5503,3844],"delegatorTokens":9999999915007,"jailed":[null,null,null,null],"status":["bonded","unbonding","unbonding","bonded"]}},{"ix":157,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":18,"t":108,"consumerPower":[22337,null,6503,null],"outstandingDowntime":[false,false,false,false]}},{"ix":158,"action":{"kind":"Delegate","val":0,"amt":3974},"partialState":{"h":20,"t":120,"tokens":[19177,6466,6503,4844],"delegation":[18177,5466,5503,3844],"delegatorTokens":9999999911033}},{"ix":159,"action":{"kind":"Delegate","val":1,"amt":2162},"partialState":{"h":20,"t":120,"tokens":[19177,8628,6503,4844],"delegation":[18177,7628,5503,3844],"delegatorTokens":9999999908871}},{"ix":160,"action":{"kind":"Delegate","val":2,"amt":4880},"partialState":{"h":20,"t":120,"tokens":[19177,8628,11383,4844],"delegation":[18177,7628,10383,3844],"delegatorTokens":9999999903991}},{"ix":161,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":162,"action":{"kind":"Delegate","val":1,"amt":4585},"partialState":{"h":20,"t":120,"tokens":[19177,13213,11383,4844],"delegation":[18177,12213,10383,3844],"delegatorTokens":9999999899406}},{"ix":163,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":19,"t":114,"consumerPower":[22337,null,6503,null],"outstandingDowntime":[false,false,false,false]}},{"ix":164,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":165,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":20,"t":120,"consumerPower":[22337,null,6503,null],"outstandingDowntime":[false,false,false,false]}},{"ix":166,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":21,"t":126,"tokens":[19177,13213,11383,4844],"delegation":[18177,12213,10383,3844],"delegatorTokens":9999999905399,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonding","unbonding"]}},{"ix":167,"action":{"kind":"Deliver","chain":"provider","numPackets":1},"partialState":{"h":21,"t":126,"tokens":[19177,13213,11383,4844],"delegation":[18177,12213,10383,3844],"delegatorTokens":9999999905399,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonding","unbonding"]}},{"ix":168,"action":{"kind":"Undelegate","val":3,"amt":1129},"partialState":{"h":21,"t":126,"tokens":[19177,13213,11383,3715],"delegation":[18177,12213,10383,2715],"delegatorTokens":9999999905399}},{"ix":169,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":22,"t":132,"tokens":[19177,13213,11383,3715],"delegation":[18177,12213,10383,2715],"delegatorTokens":9999999913814,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonding","unbonding"]}},{"ix":170,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":171,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":172,"action":{"kind":"Delegate","val":3,"amt":4964},"partialState":{"h":22,"t":132,"tokens":[19177,13213,11383,8679],"delegation":[18177,12213,10383,7679],"delegatorTokens":9999999908850}},{"ix":173,"action":{"kind":"Delegate","val":1,"amt":1799},"partialState":{"h":22,"t":132,"tokens":[19177,15012,11383,8679],"delegation":[18177,14012,10383,7679],"delegatorTokens":9999999907051}},{"ix":174,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":21,"t":126,"consumerPower":[22337,null,6503,null],"outstandingDowntime":[false,false,false,false]}},{"ix":175,"action":{"kind":"Deliver","chain":"provider","numPackets":3},"partialState":{"h":22,"t":132,"tokens":[19177,15012,11383,8679],"delegation":[18177,14012,10383,7679],"delegatorTokens":9999999907051,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonding","unbonding"]}},{"ix":176,"action":{"kind":"Delegate","val":0,"amt":1096},"partialState":{"h":22,"t":132,"tokens":[20273,15012,11383,8679],"delegation":[19273,14012,10383,7679],"delegatorTokens":9999999905955}},{"ix":177,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":23,"t":138,"tokens":[20273,15012,11383,8679],"delegation":[19273,14012,10383,7679],"delegatorTokens":9999999919709,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonding","unbonding"]}},{"ix":178,"action":{"kind":"Deliver","chain":"provider","numPackets":5},"partialState":{"h":23,"t":138,"tokens":[20273,15012,11383,8679],"delegation":[19273,14012,10383,7679],"delegatorTokens":9999999919709,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonding","unbonding"]}},{"ix":179,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":180,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":181,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":182,"action":{"kind":"Undelegate","val":3,"amt":1837},"partialState":{"h":23,"t":138,"tokens":[20273,15012,11383,6842],"delegation":[19273,14012,10383,5842],"delegatorTokens":9999999919709}},{"ix":183,"action":{"kind":"Deliver","chain":"consumer","numPackets":2},"partialState":{"h":21,"t":126,"consumerPower":[22337,null,6503,null],"outstandingDowntime":[false,false,false,false]}},{"ix":184,"action":{"kind":"Delegate","val":2,"amt":1952},"partialState":{"h":23,"t":138,"tokens":[20273,15012,13335,6842],"delegation":[19273,14012,12335,5842],"delegatorTokens":9999999917757}},{"ix":185,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":186,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":187,"action":{"kind":"Delegate","val":0,"amt":3594},"partialState":{"h":23,"t":138,"tokens":[23867,15012,13335,6842],"delegation":[22867,14012,12335,5842],"delegatorTokens":9999999914163}},{"ix":188,"action":{"kind":"Undelegate","val":0,"amt":2773},"partialState":{"h":23,"t":138,"tokens":[21094,15012,13335,6842],"delegation":[20094,14012,12335,5842],"delegatorTokens":9999999914163}},{"ix":189,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":190,"action":{"kind":"Undelegate","val":0,"amt":4864},"partialState":{"h":23,"t":138,"tokens":[16230,15012,13335,6842],"delegation":[15230,14012,12335,5842],"delegatorTokens":9999999914163}},{"ix":191,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":22,"t":132,"consumerPower":[19177,13213,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":192,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":23,"t":138,"consumerPower":[19177,13213,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":193,"action":{"kind":"Undelegate","val":1,"amt":1961},"partialState":{"h":23,"t":138,"tokens":[16230,13051,13335,6842],"delegation":[15230,12051,12335,5842],"delegatorTokens":9999999914163}},{"ix":194,"action":{"kind":"Undelegate","val":2,"amt":2612},"partialState":{"h":23,"t":138,"tokens":[16230,13051,10723,6842],"delegation":[15230,12051,9723,5842],"delegatorTokens":9999999914163}},{"ix":195,"action":{"kind":"Delegate","val":2,"amt":4235},"partialState":{"h":23,"t":138,"tokens":[16230,13051,14958,6842],"delegation":[15230,12051,13958,5842],"delegatorTokens":9999999909928}},{"ix":196,"action":{"kind":"Deliver","chain":"provider","numPackets":3},"partialState":{"h":23,"t":138,"tokens":[16230,13051,14958,6842],"delegation":[15230,12051,13958,5842],"delegatorTokens":9999999909928,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonding","unbonding"]}},{"ix":197,"action":{"kind":"Deliver","chain":"consumer","numPackets":4},"partialState":{"h":23,"t":138,"consumerPower":[19177,13213,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":198,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":24,"t":144,"tokens":[16230,13051,14958,6842],"delegation":[15230,12051,13958,5842],"delegatorTokens":9999999924463,"jailed":[null,null,null,null],"status":["bonded","unbonding","bonded","unbonding"]}},{"ix":199,"action":{"kind":"Undelegate","val":2,"amt":3183},"partialState":{"h":24,"t":144,"tokens":[16230,13051,11775,6842],"delegation":[15230,12051,10775,5842],"delegatorTokens":9999999924463}}],"events":["send_double_sign_slash_request","more_than_one_third_val_power_change","send_vsc_without_downtime_ack","insufficient_shares","send_double_sign_slash_request","more_than_one_third_val_power_change","send_vsc_without_downtime_ack","send_double_sign_slash_request","insufficient_shares","insufficient_shares","consumer_del_val","consumer_add_val","more_than_one_third_val_power_change","rebond_unval","rebond_unval","send_vsc_without_downtime_ack","consumer_del_val","consumer_add_val","insufficient_shares","receive_double_sign_slash_request","receive_double_sign_slash_request","receive_double_sign_slash_request","more_than_one_third_val_power_change","rebond_unval","send_vsc_without_downtime_ack","consumer_del_val","consumer_add_val","consumer_del_val","consumer_update_val","more_than_one_third_val_power_change","rebond_unval","send_vsc_without_downtime_ack","rebond_unval","send_vsc_without_downtime_ack","rebond_unval","send_vsc_without_downtime_ack","more_than_one_third_val_power_change","rebond_unval","send_vsc_without_downtime_ack","consumer_del_val","consumer_del_val","consumer_add_val","more_than_one_third_val_power_change","rebond_unval","rebond_unval","send_vsc_without_downtime_ack","more_than_one_third_val_power_change","rebond_unval","send_vsc_without_downtime_ack","consumer_send_maturation","consumer_update_val","consumer_del_val","consumer_del_val","consumer_add_val","consumer_send_maturation","some_undels_expired_but_not_completed","send_vsc_without_downtime_ack","some_undels_expired_but_not_completed","complete_undel_immediate","complete_undel_immediate","send_vsc_without_downtime_ack","some_undels_expired_but_not_completed","consumer_del_val","consumer_add_val","consumer_update_val","consumer_send_maturation","consumer_send_maturation","rebond_unval","some_undels_expired_but_not_completed","send_vsc_without_downtime_ack","some_undels_expired_but_not_completed","consumer_send_maturation","consumer_send_maturation","consumer_send_maturation","more_than_one_third_val_power_change","rebond_unval","some_undels_expired_but_not_completed","complete_undel_immediate","complete_undel_immediate","complete_undel_immediate","send_vsc_without_downtime_ack","some_undels_expired_but_not_completed","complete_undel_immediate","complete_undel_immediate","complete_undel_immediate","send_vsc_not_because_change","send_vsc_without_downtime_ack","consumer_send_maturation","consumer_send_maturation","some_undels_expired_but_not_completed","complete_undel_immediate","complete_undel_immediate","complete_undel_immediate","complete_undel_immediate","send_vsc_without_downtime_ack","consumer_del_val","consumer_del_val","consumer_update_val","consumer_add_val","more_than_one_third_val_power_change","rebond_unval","complete_undel_immediate","complete_undel_immediate","complete_undel_immediate","complete_undel_immediate","complete_undel_immediate","complete_undel_immediate","send_vsc_without_downtime_ack"]},{"meta":{"commit":"7ffd0c04e4205cbc9caf212abfe6c59ee43153bf"},"constants":{"P":"provider","C":"consumer","UNBONDING_SECONDS_P":70,"UNBONDING_SECONDS_C":50,"TRUSTING_SECONDS":49,"NUM_VALIDATORS":4,"MAX_VALIDATORS":2,"SLASH_DOUBLESIGN":0,"SLASH_DOWNTIME":0,"JAIL_SECONDS":999999999999999,"BLOCK_SECONDS":6,"INITIAL_DELEGATOR_TOKENS":10000000000000,"DELEGATE_AMT_MIN":1000,"DELEGATE_AMT_MAX":5000,"UNDELEGATE_AMT_MIN":1000,"UNDELEGATE_AMT_MAX":5000,"ISDOWNTIME_PROBABILITY":0.5,"MAX_NUM_PACKETS_FOR_DELIVER":6},"actions":[{"ix":0,"action":{"kind":"ConsumerSlash","val":0,"infractionHeight":0,"isDowntime":false},"partialState":{"h":1,"t":6,"outstandingDowntime":[false,false,false,false]}},{"ix":1,"action":{"kind":"ConsumerSlash","val":0,"infractionHeight":0,"isDowntime":false},"partialState":{"h":1,"t":6,"outstandingDowntime":[false,false,false,false]}},{"ix":2,"action":{"kind":"Undelegate","val":2,"amt":3908},"partialState":{"h":1,"t":6,"tokens":[5000,4000,3000,2000],"delegation":[4000,3000,2000,1000],"delegatorTokens":10000000000000}},{"ix":3,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":2,"t":12,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":4,"action":{"kind":"ConsumerSlash","val":1,"infractionHeight":1,"isDowntime":false},"partialState":{"h":2,"t":12,"outstandingDowntime":[false,false,false,false]}},{"ix":5,"action":{"kind":"Undelegate","val":1,"amt":1397},"partialState":{"h":1,"t":6,"tokens":[5000,2603,3000,2000],"delegation":[4000,1603,2000,1000],"delegatorTokens":10000000000000}},{"ix":6,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":3,"t":18,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":7,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":4,"t":24,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":8,"action":{"kind":"Deliver","chain":"provider","numPackets":2},"partialState":{"h":1,"t":6,"tokens":[5000,2603,3000,2000],"delegation":[4000,1603,2000,1000],"delegatorTokens":10000000000000,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":9,"action":{"kind":"ConsumerSlash","val":1,"infractionHeight":3,"isDowntime":true},"partialState":{"h":4,"t":24,"outstandingDowntime":[false,true,false,false]}},{"ix":10,"action":{"kind":"Delegate","val":3,"amt":1227},"partialState":{"h":1,"t":6,"tokens":[5000,2603,3000,3227],"delegation":[4000,1603,2000,2227],"delegatorTokens":9999999998773}},{"ix":11,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":12,"action":{"kind":"Undelegate","val":1,"amt":3165},"partialState":{"h":1,"t":6,"tokens":[5000,2603,3000,3227],"delegation":[4000,1603,2000,2227],"delegatorTokens":9999999998773}},{"ix":13,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":2,"t":12,"tokens":[5000,2603,3000,3227],"delegation":[4000,1603,2000,2227],"delegatorTokens":9999999998773,"jailed":[null,null,null,null],"status":["bonded","unbonding","unbonded","bonded"]}},{"ix":14,"action":{"kind":"Undelegate","val":2,"amt":4010},"partialState":{"h":2,"t":12,"tokens":[5000,2603,3000,3227],"delegation":[4000,1603,2000,2227],"delegatorTokens":9999999998773}},{"ix":15,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":16,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":3,"t":18,"tokens":[5000,2603,3000,3227],"delegation":[4000,1603,2000,2227],"delegatorTokens":9999999998773,"jailed":[null,null,null,null],"status":["bonded","unbonding","unbonded","bonded"]}},{"ix":17,"action":{"kind":"Deliver","chain":"consumer","numPackets":4},"partialState":{"h":4,"t":24,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,true,false,false]}},{"ix":18,"action":{"kind":"Undelegate","val":3,"amt":3731},"partialState":{"h":3,"t":18,"tokens":[5000,2603,3000,3227],"delegation":[4000,1603,2000,2227],"delegatorTokens":9999999998773}},{"ix":19,"action":{"kind":"Delegate","val":1,"amt":1753},"partialState":{"h":3,"t":18,"tokens":[5000,4356,3000,3227],"delegation":[4000,3356,2000,2227],"delegatorTokens":9999999997020}},{"ix":20,"action":{"kind":"Delegate","val":1,"amt":4559},"partialState":{"h":3,"t":18,"tokens":[5000,8915,3000,3227],"delegation":[4000,7915,2000,2227],"delegatorTokens":9999999992461}},{"ix":21,"action":{"kind":"Undelegate","val":2,"amt":2259},"partialState":{"h":3,"t":18,"tokens":[5000,8915,3000,3227],"delegation":[4000,7915,2000,2227],"delegatorTokens":9999999992461}},{"ix":22,"action":{"kind":"Delegate","val":1,"amt":2959},"partialState":{"h":3,"t":18,"tokens":[5000,11874,3000,3227],"delegation":[4000,10874,2000,2227],"delegatorTokens":9999999989502}},{"ix":23,"action":{"kind":"Undelegate","val":0,"amt":3969},"partialState":{"h":3,"t":18,"tokens":[1031,11874,3000,3227],"delegation":[31,10874,2000,2227],"delegatorTokens":9999999989502}},{"ix":24,"action":{"kind":"Deliver","chain":"provider","numPackets":6},"partialState":{"h":3,"t":18,"tokens":[1031,11874,3000,3227],"delegation":[31,10874,2000,2227],"delegatorTokens":9999999989502,"jailed":[null,null,null,null],"status":["bonded","unbonding","unbonded","bonded"]}},{"ix":25,"action":{"kind":"Deliver","chain":"provider","numPackets":4},"partialState":{"h":3,"t":18,"tokens":[1031,11874,3000,3227],"delegation":[31,10874,2000,2227],"delegatorTokens":9999999989502,"jailed":[null,null,null,null],"status":["bonded","unbonding","unbonded","bonded"]}},{"ix":26,"action":{"kind":"Delegate","val":2,"amt":2498},"partialState":{"h":3,"t":18,"tokens":[1031,11874,5498,3227],"delegation":[31,10874,4498,2227],"delegatorTokens":9999999987004}},{"ix":27,"action":{"kind":"Deliver","chain":"consumer","numPackets":2},"partialState":{"h":4,"t":24,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,true,false,false]}},{"ix":28,"action":{"kind":"Deliver","chain":"provider","numPackets":1},"partialState":{"h":3,"t":18,"tokens":[1031,11874,5498,3227],"delegation":[31,10874,4498,2227],"delegatorTokens":9999999987004,"jailed":[null,null,null,null],"status":["bonded","unbonding","unbonded","bonded"]}},{"ix":29,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":30,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":5,"t":30,"consumerPower":[5000,null,null,3227],"outstandingDowntime":[false,true,false,false]}},{"ix":31,"action":{"kind":"ConsumerSlash","val":0,"infractionHeight":2,"isDowntime":true},"partialState":{"h":5,"t":30,"outstandingDowntime":[true,true,false,false]}},{"ix":32,"action":{"kind":"ConsumerSlash","val":1,"infractionHeight":3,"isDowntime":true},"partialState":{"h":5,"t":30,"outstandingDowntime":[true,true,false,false]}},{"ix":33,"action":{"kind":"Undelegate","val":2,"amt":2863},"partialState":{"h":3,"t":18,"tokens":[1031,11874,2635,3227],"delegation":[31,10874,1635,2227],"delegatorTokens":9999999987004}},{"ix":34,"action":{"kind":"ConsumerSlash","val":0,"infractionHeight":1,"isDowntime":true},"partialState":{"h":5,"t":30,"outstandingDowntime":[true,true,false,false]}},{"ix":35,"action":{"kind":"ConsumerSlash","val":1,"infractionHeight":0,"isDowntime":false},"partialState":{"h":5,"t":30,"outstandingDowntime":[true,true,false,false]}},{"ix":36,"action":{"kind":"Deliver","chain":"consumer","numPackets":4},"partialState":{"h":5,"t":30,"consumerPower":[5000,null,null,3227],"outstandingDowntime":[true,true,false,false]}},{"ix":37,"action":{"kind":"Deliver","chain":"consumer","numPackets":5},"partialState":{"h":5,"t":30,"consumerPower":[5000,null,null,3227],"outstandingDowntime":[true,true,false,false]}},{"ix":38,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":39,"action":{"kind":"ConsumerSlash","val":1,"infractionHeight":2,"isDowntime":false},"partialState":{"h":5,"t":30,"outstandingDowntime":[true,true,false,false]}},{"ix":40,"action":{"kind":"ConsumerSlash","val":1,"infractionHeight":2,"isDowntime":true},"partialState":{"h":5,"t":30,"outstandingDowntime":[true,true,false,false]}},{"ix":41,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":42,"action":{"kind":"ConsumerSlash","val":2,"infractionHeight":2,"isDowntime":true},"partialState":{"h":5,"t":30,"outstandingDowntime":[true,true,true,false]}},{"ix":43,"action":{"kind":"Delegate","val":0,"amt":1486},"partialState":{"h":3,"t":18,"tokens":[2517,11874,2635,3227],"delegation":[1517,10874,1635,2227],"delegatorTokens":9999999985518}},{"ix":44,"action":{"kind":"Delegate","val":2,"amt":1756},"partialState":{"h":3,"t":18,"tokens":[2517,11874,4391,3227],"delegation":[1517,10874,3391,2227],"delegatorTokens":9999999983762}},{"ix":45,"action":{"kind":"Deliver","chain":"consumer","numPackets":3},"partialState":{"h":5,"t":30,"consumerPower":[5000,null,null,3227],"outstandingDowntime":[true,true,true,false]}},{"ix":46,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":47,"action":{"kind":"Undelegate","val":1,"amt":4459},"partialState":{"h":3,"t":18,"tokens":[2517,7415,4391,3227],"delegation":[1517,6415,3391,2227],"delegatorTokens":9999999983762}},{"ix":48,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":4,"t":24,"tokens":[2517,7415,4391,3227],"delegation":[1517,6415,3391,2227],"delegatorTokens":9999999983762,"jailed":[null,null,null,null],"status":["unbonding","bonded","bonded","unbonding"]}},{"ix":49,"action":{"kind":"Delegate","val":2,"amt":2805},"partialState":{"h":4,"t":24,"tokens":[2517,7415,7196,3227],"delegation":[1517,6415,6196,2227],"delegatorTokens":9999999980957}},{"ix":50,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":5,"t":30,"tokens":[2517,7415,7196,3227],"delegation":[1517,6415,6196,2227],"delegatorTokens":9999999980957,"jailed":[null,null,null,null],"status":["unbonding","bonded","bonded","unbonding"]}},{"ix":51,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":52,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":6,"t":36,"consumerPower":[5000,null,null,3227],"outstandingDowntime":[true,true,true,false]}},{"ix":53,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":54,"action":{"kind":"Delegate","val":1,"amt":4404},"partialState":{"h":5,"t":30,"tokens":[2517,11819,7196,3227],"delegation":[1517,10819,6196,2227],"delegatorTokens":9999999976553}},{"ix":55,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":7,"t":42,"consumerPower":[5000,null,null,3227],"outstandingDowntime":[true,true,true,false]}},{"ix":56,"action":{"kind":"Deliver","chain":"consumer","numPackets":1},"partialState":{"h":7,"t":42,"consumerPower":[5000,null,null,3227],"outstandingDowntime":[true,true,true,false]}},{"ix":57,"action":{"kind":"Delegate","val":3,"amt":4281},"partialState":{"h":5,"t":30,"tokens":[2517,11819,7196,7508],"delegation":[1517,10819,6196,6508],"delegatorTokens":9999999972272}},{"ix":58,"action":{"kind":"Delegate","val":0,"amt":4870},"partialState":{"h":5,"t":30,"tokens":[7387,11819,7196,7508],"delegation":[6387,10819,6196,6508],"delegatorTokens":9999999967402}},{"ix":59,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":6,"t":36,"tokens":[7387,11819,7196,7508],"delegation":[6387,10819,6196,6508],"delegatorTokens":9999999967402,"jailed":[null,null,null,null],"status":["unbonding","bonded","unbonding","bonded"]}},{"ix":60,"action":{"kind":"Deliver","chain":"provider","numPackets":2},"partialState":{"h":6,"t":36,"tokens":[7387,11819,7196,7508],"delegation":[6387,10819,6196,6508],"delegatorTokens":9999999967402,"jailed":[null,null,null,null],"status":["unbonding","bonded","unbonding","bonded"]}},{"ix":61,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":62,"action":{"kind":"Delegate","val":3,"amt":4915},"partialState":{"h":6,"t":36,"tokens":[7387,11819,7196,12423],"delegation":[6387,10819,6196,11423],"delegatorTokens":9999999962487}},{"ix":63,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":64,"action":{"kind":"Undelegate","val":1,"amt":2003},"partialState":{"h":6,"t":36,"tokens":[7387,9816,7196,12423],"delegation":[6387,8816,6196,11423],"delegatorTokens":9999999962487}},{"ix":65,"action":{"kind":"Delegate","val":0,"amt":4060},"partialState":{"h":6,"t":36,"tokens":[11447,9816,7196,12423],"delegation":[10447,8816,6196,11423],"delegatorTokens":9999999958427}},{"ix":66,"action":{"kind":"Delegate","val":2,"amt":2301},"partialState":{"h":6,"t":36,"tokens":[11447,9816,9497,12423],"delegation":[10447,8816,8497,11423],"delegatorTokens":9999999956126}},{"ix":67,"action":{"kind":"Delegate","val":2,"amt":1103},"partialState":{"h":6,"t":36,"tokens":[11447,9816,10600,12423],"delegation":[10447,8816,9600,11423],"delegatorTokens":9999999955023}},{"ix":68,"action":{"kind":"Delegate","val":2,"amt":4557},"partialState":{"h":6,"t":36,"tokens":[11447,9816,15157,12423],"delegation":[10447,8816,14157,11423],"delegatorTokens":9999999950466}},{"ix":69,"action":{"kind":"Undelegate","val":2,"amt":4780},"partialState":{"h":6,"t":36,"tokens":[11447,9816,10377,12423],"delegation":[10447,8816,9377,11423],"delegatorTokens":9999999950466}},{"ix":70,"action":{"kind":"Deliver","chain":"consumer","numPackets":5},"partialState":{"h":7,"t":42,"consumerPower":[5000,null,null,3227],"outstandingDowntime":[true,true,true,false]}},{"ix":71,"action":{"kind":"Deliver","chain":"consumer","numPackets":1},"partialState":{"h":7,"t":42,"consumerPower":[5000,null,null,3227],"outstandingDowntime":[true,true,true,false]}},{"ix":72,"action":{"kind":"Undelegate","val":2,"amt":3397},"partialState":{"h":6,"t":36,"tokens":[11447,9816,6980,12423],"delegation":[10447,8816,5980,11423],"delegatorTokens":9999999950466}},{"ix":73,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":8,"t":48,"consumerPower":[null,7415,7196,null],"outstandingDowntime":[true,true,true,false]}},{"ix":74,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":7,"t":42,"tokens":[11447,9816,6980,12423],"delegation":[10447,8816,5980,11423],"delegatorTokens":9999999950466,"jailed":[1000000000000035,1000000000000035,null,null],"status":["bonded","unbonding","unbonding","bonded"]}},{"ix":75,"action":{"kind":"Deliver","chain":"consumer","numPackets":5},"partialState":{"h":8,"t":48,"consumerPower":[null,7415,7196,null],"outstandingDowntime":[true,true,true,false]}},{"ix":76,"action":{"kind":"Undelegate","val":3,"amt":2223},"partialState":{"h":7,"t":42,"tokens":[11447,9816,6980,10200],"delegation":[10447,8816,5980,9200],"delegatorTokens":9999999950466}},{"ix":77,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":9,"t":54,"consumerPower":[null,11819,null,7508],"outstandingDowntime":[true,true,true,false]}},{"ix":78,"action":{"kind":"Undelegate","val":1,"amt":3238},"partialState":{"h":7,"t":42,"tokens":[11447,6578,6980,10200],"delegation":[10447,5578,5980,9200],"delegatorTokens":9999999950466}},{"ix":79,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":10,"t":60,"consumerPower":[null,11819,null,7508],"outstandingDowntime":[true,true,true,false]}},{"ix":80,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":8,"t":48,"tokens":[11447,6578,6980,10200],"delegation":[10447,5578,5980,9200],"delegatorTokens":9999999950466,"jailed":[1000000000000035,1000000000000035,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":81,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":82,"action":{"kind":"Undelegate","val":3,"amt":4477},"partialState":{"h":8,"t":48,"tokens":[11447,6578,6980,5723],"delegation":[10447,5578,5980,4723],"delegatorTokens":9999999950466}},{"ix":83,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":9,"t":54,"tokens":[11447,6578,6980,5723],"delegation":[10447,5578,5980,4723],"delegatorTokens":9999999950466,"jailed":[1000000000000035,1000000000000035,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":84,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":85,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":10,"t":60,"tokens":[11447,6578,6980,5723],"delegation":[10447,5578,5980,4723],"delegatorTokens":9999999950466,"jailed":[1000000000000035,1000000000000035,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":86,"action":{"kind":"Undelegate","val":2,"amt":4912},"partialState":{"h":10,"t":60,"tokens":[11447,6578,2068,5723],"delegation":[10447,5578,1068,4723],"delegatorTokens":9999999950466}},{"ix":87,"action":{"kind":"Deliver","chain":"provider","numPackets":2},"partialState":{"h":10,"t":60,"tokens":[11447,6578,2068,5723],"delegation":[10447,5578,1068,4723],"delegatorTokens":9999999950466,"jailed":[1000000000000035,1000000000000035,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":88,"action":{"kind":"Undelegate","val":2,"amt":2846},"partialState":{"h":10,"t":60,"tokens":[11447,6578,2068,5723],"delegation":[10447,5578,1068,4723],"delegatorTokens":9999999950466}},{"ix":89,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":11,"t":66,"consumerPower":[null,11819,null,7508],"outstandingDowntime":[true,true,true,false]}},{"ix":90,"action":{"kind":"Deliver","chain":"consumer","numPackets":1},"partialState":{"h":11,"t":66,"consumerPower":[null,11819,null,7508],"outstandingDowntime":[false,false,true,false]}},{"ix":91,"action":{"kind":"Deliver","chain":"provider","numPackets":6},"partialState":{"h":10,"t":60,"tokens":[11447,6578,2068,5723],"delegation":[10447,5578,1068,4723],"delegatorTokens":9999999950466,"jailed":[1000000000000035,1000000000000035,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":92,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":12,"t":72,"consumerPower":[11447,null,null,12423],"outstandingDowntime":[false,false,true,false]}},{"ix":93,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":94,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":95,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":96,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":13,"t":78,"consumerPower":[11447,null,null,12423],"outstandingDowntime":[false,false,true,false]}},{"ix":97,"action":{"kind":"Undelegate","val":0,"amt":4850},"partialState":{"h":10,"t":60,"tokens":[6597,6578,2068,5723],"delegation":[5597,5578,1068,4723],"delegatorTokens":9999999950466}},{"ix":98,"action":{"kind":"Deliver","chain":"provider","numPackets":1},"partialState":{"h":10,"t":60,"tokens":[6597,6578,2068,5723],"delegation":[5597,5578,1068,4723],"delegatorTokens":9999999950466,"jailed":[1000000000000035,1000000000000035,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":99,"action":{"kind":"Undelegate","val":3,"amt":1200},"partialState":{"h":10,"t":60,"tokens":[6597,6578,2068,4523],"delegation":[5597,5578,1068,3523],"delegatorTokens":9999999950466}},{"ix":100,"action":{"kind":"Delegate","val":0,"amt":2476},"partialState":{"h":10,"t":60,"tokens":[9073,6578,2068,4523],"delegation":[8073,5578,1068,3523],"delegatorTokens":9999999947990}},{"ix":101,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":102,"action":{"kind":"Delegate","val":0,"amt":3708},"partialState":{"h":10,"t":60,"tokens":[12781,6578,2068,4523],"delegation":[11781,5578,1068,3523],"delegatorTokens":9999999944282}},{"ix":103,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":104,"action":{"kind":"Deliver","chain":"provider","numPackets":3},"partialState":{"h":10,"t":60,"tokens":[12781,6578,2068,4523],"delegation":[11781,5578,1068,3523],"delegatorTokens":9999999944282,"jailed":[1000000000000035,1000000000000035,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":105,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":106,"action":{"kind":"Delegate","val":1,"amt":2755},"partialState":{"h":10,"t":60,"tokens":[12781,9333,2068,4523],"delegation":[11781,8333,1068,3523],"delegatorTokens":9999999941527}},{"ix":107,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":108,"action":{"kind":"Deliver","chain":"consumer","numPackets":2},"partialState":{"h":13,"t":78,"consumerPower":[11447,null,null,12423],"outstandingDowntime":[false,false,true,false]}},{"ix":109,"action":{"kind":"Undelegate","val":2,"amt":2362},"partialState":{"h":10,"t":60,"tokens":[12781,9333,2068,4523],"delegation":[11781,8333,1068,3523],"delegatorTokens":9999999941527}},{"ix":110,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":111,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":112,"action":{"kind":"Undelegate","val":2,"amt":4439},"partialState":{"h":10,"t":60,"tokens":[12781,9333,2068,4523],"delegation":[11781,8333,1068,3523],"delegatorTokens":9999999941527}},{"ix":113,"action":{"kind":"Undelegate","val":3,"amt":4292},"partialState":{"h":10,"t":60,"tokens":[12781,9333,2068,4523],"delegation":[11781,8333,1068,3523],"delegatorTokens":9999999941527}},{"ix":114,"action":{"kind":"Undelegate","val":2,"amt":3467},"partialState":{"h":10,"t":60,"tokens":[12781,9333,2068,4523],"delegation":[11781,8333,1068,3523],"delegatorTokens":9999999941527}},{"ix":115,"action":{"kind":"Undelegate","val":1,"amt":4070},"partialState":{"h":10,"t":60,"tokens":[12781,5263,2068,4523],"delegation":[11781,4263,1068,3523],"delegatorTokens":9999999941527}},{"ix":116,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":117,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":11,"t":66,"tokens":[12781,5263,2068,4523],"delegation":[11781,4263,1068,3523],"delegatorTokens":9999999941527,"jailed":[1000000000000035,1000000000000035,1000000000000059,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":118,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":12,"t":72,"tokens":[12781,5263,2068,4523],"delegation":[11781,4263,1068,3523],"delegatorTokens":9999999941527,"jailed":[1000000000000035,1000000000000035,1000000000000059,null],"status":["unbonding","unbonding","unbonding","bonded"]}},{"ix":119,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":13,"t":78,"tokens":[12781,5263,2068,4523],"delegation":[11781,4263,1068,3523],"delegatorTokens":9999999941527,"jailed":[1000000000000035,1000000000000035,1000000000000059,null],"status":["unbonding","unbonding","unbonding","bonded"]}},{"ix":120,"action":{"kind":"Deliver","chain":"provider","numPackets":1},"partialState":{"h":13,"t":78,"tokens":[12781,5263,2068,4523],"delegation":[11781,4263,1068,3523],"delegatorTokens":9999999941527,"jailed":[1000000000000035,1000000000000035,1000000000000059,null],"status":["unbonding","unbonding","unbonding","bonded"]}},{"ix":121,"action":{"kind":"Delegate","val":1,"amt":3909},"partialState":{"h":13,"t":78,"tokens":[12781,9172,2068,4523],"delegation":[11781,8172,1068,3523],"delegatorTokens":9999999937618}},{"ix":122,"action":{"kind":"Delegate","val":2,"amt":1868},"partialState":{"h":13,"t":78,"tokens":[12781,9172,3936,4523],"delegation":[11781,8172,2936,3523],"delegatorTokens":9999999935750}},{"ix":123,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":124,"action":{"kind":"Delegate","val":2,"amt":3291},"partialState":{"h":13,"t":78,"tokens":[12781,9172,7227,4523],"delegation":[11781,8172,6227,3523],"delegatorTokens":9999999932459}},{"ix":125,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":126,"action":{"kind":"Delegate","val":0,"amt":4575},"partialState":{"h":13,"t":78,"tokens":[17356,9172,7227,4523],"delegation":[16356,8172,6227,3523],"delegatorTokens":9999999927884}},{"ix":127,"action":{"kind":"Deliver","chain":"provider","numPackets":6},"partialState":{"h":13,"t":78,"tokens":[17356,9172,7227,4523],"delegation":[16356,8172,6227,3523],"delegatorTokens":9999999927884,"jailed":[1000000000000035,1000000000000035,1000000000000059,null],"status":["unbonding","unbonding","unbonding","bonded"]}},{"ix":128,"action":{"kind":"Undelegate","val":0,"amt":2481},"partialState":{"h":13,"t":78,"tokens":[14875,9172,7227,4523],"delegation":[13875,8172,6227,3523],"delegatorTokens":9999999927884}},{"ix":129,"action":{"kind":"Undelegate","val":1,"amt":4523},"partialState":{"h":13,"t":78,"tokens":[14875,4649,7227,4523],"delegation":[13875,3649,6227,3523],"delegatorTokens":9999999927884}},{"ix":130,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":14,"t":84,"tokens":[14875,4649,7227,4523],"delegation":[13875,3649,6227,3523],"delegatorTokens":9999999927884,"jailed":[1000000000000035,1000000000000035,1000000000000059,null],"status":["unbonding","unbonding","unbonding","bonded"]}},{"ix":131,"action":{"kind":"Delegate","val":0,"amt":2386},"partialState":{"h":14,"t":84,"tokens":[17261,4649,7227,4523],"delegation":[16261,3649,6227,3523],"delegatorTokens":9999999925498}},{"ix":132,"action":{"kind":"Delegate","val":3,"amt":3019},"partialState":{"h":14,"t":84,"tokens":[17261,4649,7227,7542],"delegation":[16261,3649,6227,6542],"delegatorTokens":9999999922479}},{"ix":133,"action":{"kind":"Undelegate","val":3,"amt":2160},"partialState":{"h":14,"t":84,"tokens":[17261,4649,7227,5382],"delegation":[16261,3649,6227,4382],"delegatorTokens":9999999922479}},{"ix":134,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":135,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":14,"t":84,"consumerPower":[null,null,6980,5723],"outstandingDowntime":[false,false,true,false]}},{"ix":136,"action":{"kind":"Delegate","val":2,"amt":4117},"partialState":{"h":14,"t":84,"tokens":[17261,4649,11344,5382],"delegation":[16261,3649,10344,4382],"delegatorTokens":9999999918362}},{"ix":137,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":138,"action":{"kind":"Deliver","chain":"consumer","numPackets":4},"partialState":{"h":14,"t":84,"consumerPower":[null,null,6980,5723],"outstandingDowntime":[false,false,false,false]}},{"ix":139,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":15,"t":90,"consumerPower":[null,null,null,4523],"outstandingDowntime":[false,false,false,false]}},{"ix":140,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":15,"t":90,"tokens":[17261,4649,11344,5382],"delegation":[16261,3649,10344,4382],"delegatorTokens":9999999918362,"jailed":[1000000000000035,1000000000000035,1000000000000059,null],"status":["unbonding","unbonding","unbonding","bonded"]}},{"ix":141,"action":{"kind":"Delegate","val":1,"amt":3207},"partialState":{"h":15,"t":90,"tokens":[17261,7856,11344,5382],"delegation":[16261,6856,10344,4382],"delegatorTokens":9999999915155}},{"ix":142,"action":{"kind":"Deliver","chain":"provider","numPackets":4},"partialState":{"h":15,"t":90,"tokens":[17261,7856,11344,5382],"delegation":[16261,6856,10344,4382],"delegatorTokens":9999999915155,"jailed":[1000000000000035,1000000000000035,1000000000000059,null],"status":["unbonding","unbonding","unbonding","bonded"]}},{"ix":143,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":144,"action":{"kind":"Undelegate","val":2,"amt":2901},"partialState":{"h":15,"t":90,"tokens":[17261,7856,8443,5382],"delegation":[16261,6856,7443,4382],"delegatorTokens":9999999915155}},{"ix":145,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":16,"t":96,"tokens":[17261,7856,8443,5382],"delegation":[16261,6856,7443,4382],"delegatorTokens":9999999916552,"jailed":[1000000000000035,1000000000000035,1000000000000059,null],"status":["unbonding","unbonding","unbonding","bonded"]}},{"ix":146,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":147,"action":{"kind":"Deliver","chain":"provider","numPackets":2},"partialState":{"h":16,"t":96,"tokens":[17261,7856,8443,5382],"delegation":[16261,6856,7443,4382],"delegatorTokens":9999999916552,"jailed":[1000000000000035,1000000000000035,1000000000000059,null],"status":["unbonding","unbonding","unbonding","bonded"]}},{"ix":148,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":17,"t":102,"tokens":[17261,7856,8443,5382],"delegation":[16261,6856,7443,4382],"delegatorTokens":9999999916552,"jailed":[1000000000000035,1000000000000035,1000000000000059,null],"status":["unbonding","unbonding","unbonding","bonded"]}},{"ix":149,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":18,"t":108,"tokens":[17261,7856,8443,5382],"delegation":[16261,6856,7443,4382],"delegatorTokens":9999999916552,"jailed":[1000000000000035,1000000000000035,1000000000000059,null],"status":["unbonding","unbonding","unbonding","bonded"]}},{"ix":150,"action":{"kind":"Delegate","val":0,"amt":3637},"partialState":{"h":18,"t":108,"tokens":[20898,7856,8443,5382],"delegation":[19898,6856,7443,4382],"delegatorTokens":9999999912915}},{"ix":151,"action":{"kind":"Deliver","chain":"provider","numPackets":6},"partialState":{"h":18,"t":108,"tokens":[20898,7856,8443,5382],"delegation":[19898,6856,7443,4382],"delegatorTokens":9999999912915,"jailed":[1000000000000035,1000000000000035,1000000000000059,null],"status":["unbonding","unbonding","unbonding","bonded"]}},{"ix":152,"action":{"kind":"Delegate","val":3,"amt":4882},"partialState":{"h":18,"t":108,"tokens":[20898,7856,8443,10264],"delegation":[19898,6856,7443,9264],"delegatorTokens":9999999908033}},{"ix":153,"action":{"kind":"Delegate","val":0,"amt":4144},"partialState":{"h":18,"t":108,"tokens":[25042,7856,8443,10264],"delegation":[24042,6856,7443,9264],"delegatorTokens":9999999903889}},{"ix":154,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":155,"action":{"kind":"Undelegate","val":1,"amt":2837},"partialState":{"h":18,"t":108,"tokens":[25042,5019,8443,10264],"delegation":[24042,4019,7443,9264],"delegatorTokens":9999999903889}},{"ix":156,"action":{"kind":"Delegate","val":3,"amt":4271},"partialState":{"h":18,"t":108,"tokens":[25042,5019,8443,14535],"delegation":[24042,4019,7443,13535],"delegatorTokens":9999999899618}},{"ix":157,"action":{"kind":"Delegate","val":1,"amt":2713},"partialState":{"h":18,"t":108,"tokens":[25042,7732,8443,14535],"delegation":[24042,6732,7443,13535],"delegatorTokens":9999999896905}},{"ix":158,"action":{"kind":"Delegate","val":0,"amt":4646},"partialState":{"h":18,"t":108,"tokens":[29688,7732,8443,14535],"delegation":[28688,6732,7443,13535],"delegatorTokens":9999999892259}},{"ix":159,"action":{"kind":"Undelegate","val":1,"amt":4934},"partialState":{"h":18,"t":108,"tokens":[29688,2798,8443,14535],"delegation":[28688,1798,7443,13535],"delegatorTokens":9999999892259}},{"ix":160,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":16,"t":96,"consumerPower":[null,null,null,4523],"outstandingDowntime":[false,false,false,false]}},{"ix":161,"action":{"kind":"Delegate","val":0,"amt":4354},"partialState":{"h":18,"t":108,"tokens":[34042,2798,8443,14535],"delegation":[33042,1798,7443,13535],"delegatorTokens":9999999887905}},{"ix":162,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":17,"t":102,"consumerPower":[null,null,null,4523],"outstandingDowntime":[false,false,false,false]}},{"ix":163,"action":{"kind":"Delegate","val":3,"amt":4719},"partialState":{"h":18,"t":108,"tokens":[34042,2798,8443,19254],"delegation":[33042,1798,7443,18254],"delegatorTokens":9999999883186}},{"ix":164,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":18,"t":108,"consumerPower":[null,null,null,4523],"outstandingDowntime":[false,false,false,false]}},{"ix":165,"action":{"kind":"Undelegate","val":2,"amt":3641},"partialState":{"h":18,"t":108,"tokens":[34042,2798,4802,19254],"delegation":[33042,1798,3802,18254],"delegatorTokens":9999999883186}},{"ix":166,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":19,"t":114,"consumerPower":[null,null,null,4523],"outstandingDowntime":[false,false,false,false]}},{"ix":167,"action":{"kind":"Undelegate","val":1,"amt":1482},"partialState":{"h":18,"t":108,"tokens":[34042,1316,4802,19254],"delegation":[33042,316,3802,18254],"delegatorTokens":9999999883186}},{"ix":168,"action":{"kind":"Delegate","val":1,"amt":2052},"partialState":{"h":18,"t":108,"tokens":[34042,3368,4802,19254],"delegation":[33042,2368,3802,18254],"delegatorTokens":9999999881134}},{"ix":169,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":170,"action":{"kind":"Deliver","chain":"consumer","numPackets":4},"partialState":{"h":19,"t":114,"consumerPower":[null,null,null,4523],"outstandingDowntime":[false,false,false,false]}},{"ix":171,"action":{"kind":"Undelegate","val":0,"amt":1573},"partialState":{"h":18,"t":108,"tokens":[32469,3368,4802,19254],"delegation":[31469,2368,3802,18254],"delegatorTokens":9999999881134}},{"ix":172,"action":{"kind":"Deliver","chain":"consumer","numPackets":3},"partialState":{"h":19,"t":114,"consumerPower":[null,null,null,4523],"outstandingDowntime":[false,false,false,false]}},{"ix":173,"action":{"kind":"Deliver","chain":"consumer","numPackets":1},"partialState":{"h":19,"t":114,"consumerPower":[null,null,null,4523],"outstandingDowntime":[false,false,false,false]}},{"ix":174,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":20,"t":120,"consumerPower":[null,null,null,5382],"outstandingDowntime":[false,false,false,false]}},{"ix":175,"action":{"kind":"Undelegate","val":2,"amt":3526},"partialState":{"h":18,"t":108,"tokens":[32469,3368,1276,19254],"delegation":[31469,2368,276,18254],"delegatorTokens":9999999881134}},{"ix":176,"action":{"kind":"Undelegate","val":1,"amt":1596},"partialState":{"h":18,"t":108,"tokens":[32469,1772,1276,19254],"delegation":[31469,772,276,18254],"delegatorTokens":9999999881134}},{"ix":177,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":19,"t":114,"tokens":[32469,1772,1276,19254],"delegation":[31469,772,276,18254],"delegatorTokens":9999999881134,"jailed":[1000000000000035,1000000000000035,1000000000000059,null],"status":["unbonding","unbonding","unbonding","bonded"]}},{"ix":178,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":21,"t":126,"consumerPower":[null,null,null,5382],"outstandingDowntime":[false,false,false,false]}},{"ix":179,"action":{"kind":"Deliver","chain":"consumer","numPackets":5},"partialState":{"h":21,"t":126,"consumerPower":[null,null,null,5382],"outstandingDowntime":[false,false,false,false]}},{"ix":180,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":20,"t":120,"tokens":[32469,1772,1276,19254],"delegation":[31469,772,276,18254],"delegatorTokens":9999999881134,"jailed":[1000000000000035,1000000000000035,1000000000000059,null],"status":["unbonding","unbonding","unbonding","bonded"]}},{"ix":181,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":22,"t":132,"consumerPower":[null,null,null,5382],"outstandingDowntime":[false,false,false,false]}},{"ix":182,"action":{"kind":"Undelegate","val":2,"amt":4498},"partialState":{"h":20,"t":120,"tokens":[32469,1772,1276,19254],"delegation":[31469,772,276,18254],"delegatorTokens":9999999881134}},{"ix":183,"action":{"kind":"Undelegate","val":1,"amt":4301},"partialState":{"h":20,"t":120,"tokens":[32469,1772,1276,19254],"delegation":[31469,772,276,18254],"delegatorTokens":9999999881134}},{"ix":184,"action":{"kind":"Deliver","chain":"consumer","numPackets":5},"partialState":{"h":22,"t":132,"consumerPower":[null,null,null,5382],"outstandingDowntime":[false,false,false,false]}},{"ix":185,"action":{"kind":"Undelegate","val":2,"amt":3958},"partialState":{"h":20,"t":120,"tokens":[32469,1772,1276,19254],"delegation":[31469,772,276,18254],"delegatorTokens":9999999881134}},{"ix":186,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":23,"t":138,"consumerPower":[null,null,null,19254],"outstandingDowntime":[false,false,false,false]}},{"ix":187,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":24,"t":144,"consumerPower":[null,null,null,19254],"outstandingDowntime":[false,false,false,false]}},{"ix":188,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":25,"t":150,"consumerPower":[null,null,null,19254],"outstandingDowntime":[false,false,false,false]}},{"ix":189,"action":{"kind":"Undelegate","val":0,"amt":3330},"partialState":{"h":20,"t":120,"tokens":[29139,1772,1276,19254],"delegation":[28139,772,276,18254],"delegatorTokens":9999999881134}},{"ix":190,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":26,"t":156,"consumerPower":[null,null,null,19254],"outstandingDowntime":[false,false,false,false]}},{"ix":191,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":27,"t":162,"consumerPower":[null,null,null,19254],"outstandingDowntime":[false,false,false,false]}},{"ix":192,"action":{"kind":"Deliver","chain":"provider","numPackets":6},"partialState":{"h":20,"t":120,"tokens":[29139,1772,1276,19254],"delegation":[28139,772,276,18254],"delegatorTokens":9999999881134,"jailed":[1000000000000035,1000000000000035,1000000000000059,null],"status":["unbonding","unbonding","unbonding","bonded"]}},{"ix":193,"action":{"kind":"Delegate","val":3,"amt":2064},"partialState":{"h":20,"t":120,"tokens":[29139,1772,1276,21318],"delegation":[28139,772,276,20318],"delegatorTokens":9999999879070}},{"ix":194,"action":{"kind":"Deliver","chain":"consumer","numPackets":2},"partialState":{"h":27,"t":162,"consumerPower":[null,null,null,19254],"outstandingDowntime":[false,false,false,false]}},{"ix":195,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":21,"t":126,"tokens":[29139,1772,1276,21318],"delegation":[28139,772,276,20318],"delegatorTokens":9999999910479,"jailed":[1000000000000035,1000000000000035,1000000000000059,null],"status":["unbonding","unbonding","unbonding","bonded"]}},{"ix":196,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":22,"t":132,"tokens":[29139,1772,1276,21318],"delegation":[28139,772,276,20318],"delegatorTokens":9999999910479,"jailed":[1000000000000035,1000000000000035,1000000000000059,null],"status":["unbonded","unbonded","unbonding","bonded"]}},{"ix":197,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":23,"t":138,"tokens":[29139,1772,1276,21318],"delegation":[28139,772,276,20318],"delegatorTokens":9999999910479,"jailed":[1000000000000035,1000000000000035,1000000000000059,null],"status":["unbonded","unbonded","unbonding","bonded"]}},{"ix":198,"action":{"kind":"Undelegate","val":3,"amt":2727},"partialState":{"h":23,"t":138,"tokens":[29139,1772,1276,18591],"delegation":[28139,772,276,17591],"delegatorTokens":9999999910479}},{"ix":199,"action":{"kind":"Undelegate","val":3,"amt":1594},"partialState":{"h":23,"t":138,"tokens":[29139,1772,1276,16997],"delegation":[28139,772,276,15997],"delegatorTokens":9999999910479}}],"events":["send_double_sign_slash_request","send_double_sign_slash_request","insufficient_shares","send_double_sign_slash_request","receive_double_sign_slash_request","receive_double_sign_slash_request","send_downtime_slash_request","insufficient_shares","more_than_one_third_val_power_change","send_vsc_without_downtime_ack","insufficient_shares","insufficient_shares","insufficient_shares","receive_double_sign_slash_request","consumer_del_val","consumer_add_val","send_downtime_slash_request","downtime_slash_request_outstanding","downtime_slash_request_outstanding","send_double_sign_slash_request","send_double_sign_slash_request","downtime_slash_request_outstanding","send_downtime_slash_request","more_than_one_third_val_power_change","rebond_unval","send_vsc_without_downtime_ack","send_vsc_without_downtime_ack","more_than_one_third_val_power_change","rebond_unval","send_vsc_without_downtime_ack","consumer_del_val","consumer_add_val","consumer_add_val","consumer_del_val","more_than_one_third_val_power_change","rebond_unval","receive_downtime_slash_request","jail","receive_downtime_slash_request","jail","send_vsc_with_downtime_ack","consumer_update_val","consumer_del_val","consumer_add_val","more_than_one_third_val_power_change","rebond_unval","send_vsc_without_downtime_ack","send_vsc_without_downtime_ack","receive_double_sign_slash_request","receive_double_sign_slash_request","insufficient_shares","receive_downtime_slash_ack","receive_downtime_slash_ack","consumer_add_val","consumer_del_val","consumer_update_val","insufficient_shares","insufficient_shares","insufficient_shares","insufficient_shares","receive_downtime_slash_request","jail","send_vsc_with_downtime_ack","send_vsc_without_downtime_ack","some_undels_expired_but_not_completed","send_vsc_not_because_change","send_vsc_without_downtime_ack","consumer_send_maturation","consumer_del_val","consumer_add_val","consumer_update_val","receive_downtime_slash_ack","consumer_del_val","consumer_update_val","send_vsc_without_downtime_ack","some_undels_expired_but_not_completed","complete_undel_immediate","send_vsc_not_because_change","send_vsc_without_downtime_ack","consumer_send_maturation","consumer_send_maturation","consumer_send_maturation","consumer_update_val","some_undels_expired_but_not_completed","send_vsc_without_downtime_ack","consumer_send_maturation","some_undels_expired_but_not_completed","insufficient_shares","insufficient_shares","insufficient_shares","consumer_send_maturation","consumer_send_maturation","consumer_update_val","consumer_send_maturation","consumer_send_maturation","some_undels_expired_but_not_completed","complete_undel_immediate","complete_undel_immediate","complete_undel_immediate","complete_undel_immediate","complete_undel_immediate","complete_undel_immediate","set_unval_hold_false","complete_undel_immediate","complete_undel_immediate","set_unval_hold_false","complete_undel_immediate","send_vsc_without_downtime_ack","complete_unval_in_endblock","complete_unval_in_endblock","some_undels_expired_but_not_completed"]},{"meta":{"commit":"7ffd0c04e4205cbc9caf212abfe6c59ee43153bf"},"constants":{"P":"provider","C":"consumer","UNBONDING_SECONDS_P":70,"UNBONDING_SECONDS_C":50,"TRUSTING_SECONDS":49,"NUM_VALIDATORS":4,"MAX_VALIDATORS":2,"SLASH_DOUBLESIGN":0,"SLASH_DOWNTIME":0,"JAIL_SECONDS":999999999999999,"BLOCK_SECONDS":6,"INITIAL_DELEGATOR_TOKENS":10000000000000,"DELEGATE_AMT_MIN":1000,"DELEGATE_AMT_MAX":5000,"UNDELEGATE_AMT_MIN":1000,"UNDELEGATE_AMT_MAX":5000,"ISDOWNTIME_PROBABILITY":0.5,"MAX_NUM_PACKETS_FOR_DELIVER":6},"actions":[{"ix":0,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":2,"t":12,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":1,"action":{"kind":"Delegate","val":2,"amt":2525},"partialState":{"h":1,"t":6,"tokens":[5000,4000,5525,2000],"delegation":[4000,3000,4525,1000],"delegatorTokens":9999999997475}},{"ix":2,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":3,"action":{"kind":"Delegate","val":3,"amt":1550},"partialState":{"h":1,"t":6,"tokens":[5000,4000,5525,3550],"delegation":[4000,3000,4525,2550],"delegatorTokens":9999999995925}},{"ix":4,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":5,"action":{"kind":"Deliver","chain":"consumer","numPackets":3},"partialState":{"h":2,"t":12,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":6,"action":{"kind":"Undelegate","val":0,"amt":2811},"partialState":{"h":1,"t":6,"tokens":[2189,4000,5525,3550],"delegation":[1189,3000,4525,2550],"delegatorTokens":9999999995925}},{"ix":7,"action":{"kind":"ConsumerSlash","val":2,"infractionHeight":0,"isDowntime":true},"partialState":{"h":2,"t":12,"outstandingDowntime":[false,false,true,false]}},{"ix":8,"action":{"kind":"Undelegate","val":1,"amt":2574},"partialState":{"h":1,"t":6,"tokens":[2189,1426,5525,3550],"delegation":[1189,426,4525,2550],"delegatorTokens":9999999995925}},{"ix":9,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":10,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":2,"t":12,"tokens":[2189,1426,5525,3550],"delegation":[1189,426,4525,2550],"delegatorTokens":9999999995925,"jailed":[null,null,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":11,"action":{"kind":"Delegate","val":0,"amt":3733},"partialState":{"h":2,"t":12,"tokens":[5922,1426,5525,3550],"delegation":[4922,426,4525,2550],"delegatorTokens":9999999992192}},{"ix":12,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":3,"t":18,"tokens":[5922,1426,5525,3550],"delegation":[4922,426,4525,2550],"delegatorTokens":9999999992192,"jailed":[null,null,null,null],"status":["bonded","unbonding","bonded","unbonding"]}},{"ix":13,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":4,"t":24,"tokens":[5922,1426,5525,3550],"delegation":[4922,426,4525,2550],"delegatorTokens":9999999992192,"jailed":[null,null,null,null],"status":["bonded","unbonding","bonded","unbonding"]}},{"ix":14,"action":{"kind":"ConsumerSlash","val":0,"infractionHeight":0,"isDowntime":true},"partialState":{"h":2,"t":12,"outstandingDowntime":[true,false,true,false]}},{"ix":15,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":16,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":5,"t":30,"tokens":[5922,1426,5525,3550],"delegation":[4922,426,4525,2550],"delegatorTokens":9999999992192,"jailed":[null,null,null,null],"status":["bonded","unbonding","bonded","unbonding"]}},{"ix":17,"action":{"kind":"Deliver","chain":"consumer","numPackets":6},"partialState":{"h":2,"t":12,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[true,false,true,false]}},{"ix":18,"action":{"kind":"Undelegate","val":3,"amt":2357},"partialState":{"h":5,"t":30,"tokens":[5922,1426,5525,1193],"delegation":[4922,426,4525,193],"delegatorTokens":9999999992192}},{"ix":19,"action":{"kind":"Undelegate","val":0,"amt":1128},"partialState":{"h":5,"t":30,"tokens":[4794,1426,5525,1193],"delegation":[3794,426,4525,193],"delegatorTokens":9999999992192}},{"ix":20,"action":{"kind":"Delegate","val":3,"amt":4882},"partialState":{"h":5,"t":30,"tokens":[4794,1426,5525,6075],"delegation":[3794,426,4525,5075],"delegatorTokens":9999999987310}},{"ix":21,"action":{"kind":"ConsumerSlash","val":2,"infractionHeight":0,"isDowntime":true},"partialState":{"h":2,"t":12,"outstandingDowntime":[true,false,true,false]}},{"ix":22,"action":{"kind":"Undelegate","val":0,"amt":1308},"partialState":{"h":5,"t":30,"tokens":[3486,1426,5525,6075],"delegation":[2486,426,4525,5075],"delegatorTokens":9999999987310}},{"ix":23,"action":{"kind":"Undelegate","val":2,"amt":3546},"partialState":{"h":5,"t":30,"tokens":[3486,1426,1979,6075],"delegation":[2486,426,979,5075],"delegatorTokens":9999999987310}},{"ix":24,"action":{"kind":"Delegate","val":3,"amt":3998},"partialState":{"h":5,"t":30,"tokens":[3486,1426,1979,10073],"delegation":[2486,426,979,9073],"delegatorTokens":9999999983312}},{"ix":25,"action":{"kind":"Deliver","chain":"consumer","numPackets":5},"partialState":{"h":2,"t":12,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[true,false,true,false]}},{"ix":26,"action":{"kind":"Deliver","chain":"provider","numPackets":1},"partialState":{"h":5,"t":30,"tokens":[3486,1426,1979,10073],"delegation":[2486,426,979,9073],"delegatorTokens":9999999983312,"jailed":[null,null,null,null],"status":["bonded","unbonding","bonded","unbonding"]}},{"ix":27,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":28,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":29,"action":{"kind":"Undelegate","val":2,"amt":4142},"partialState":{"h":5,"t":30,"tokens":[3486,1426,1979,10073],"delegation":[2486,426,979,9073],"delegatorTokens":9999999983312}},{"ix":30,"action":{"kind":"Undelegate","val":1,"amt":3982},"partialState":{"h":5,"t":30,"tokens":[3486,1426,1979,10073],"delegation":[2486,426,979,9073],"delegatorTokens":9999999983312}},{"ix":31,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":3,"t":18,"consumerPower":[5922,null,5525,null],"outstandingDowntime":[true,false,true,false]}},{"ix":32,"action":{"kind":"ConsumerSlash","val":0,"infractionHeight":0,"isDowntime":true},"partialState":{"h":3,"t":18,"outstandingDowntime":[true,false,true,false]}},{"ix":33,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":34,"action":{"kind":"ConsumerSlash","val":0,"infractionHeight":2,"isDowntime":false},"partialState":{"h":3,"t":18,"outstandingDowntime":[true,false,true,false]}},{"ix":35,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":4,"t":24,"consumerPower":[5922,null,5525,null],"outstandingDowntime":[true,false,true,false]}},{"ix":36,"action":{"kind":"Delegate","val":2,"amt":1227},"partialState":{"h":5,"t":30,"tokens":[3486,1426,3206,10073],"delegation":[2486,426,2206,9073],"delegatorTokens":9999999982085}},{"ix":37,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":6,"t":36,"tokens":[3486,1426,3206,10073],"delegation":[2486,426,2206,9073],"delegatorTokens":9999999982085,"jailed":[null,null,null,null],"status":["bonded","unbonding","unbonding","bonded"]}},{"ix":38,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":39,"action":{"kind":"Deliver","chain":"provider","numPackets":1},"partialState":{"h":6,"t":36,"tokens":[3486,1426,3206,10073],"delegation":[2486,426,2206,9073],"delegatorTokens":9999999982085,"jailed":[null,null,null,null],"status":["bonded","unbonding","unbonding","bonded"]}},{"ix":40,"action":{"kind":"Deliver","chain":"consumer","numPackets":4},"partialState":{"h":4,"t":24,"consumerPower":[5922,null,5525,null],"outstandingDowntime":[true,false,true,false]}},{"ix":41,"action":{"kind":"Undelegate","val":0,"amt":1968},"partialState":{"h":6,"t":36,"tokens":[1518,1426,3206,10073],"delegation":[518,426,2206,9073],"delegatorTokens":9999999982085}},{"ix":42,"action":{"kind":"Undelegate","val":2,"amt":3328},"partialState":{"h":6,"t":36,"tokens":[1518,1426,3206,10073],"delegation":[518,426,2206,9073],"delegatorTokens":9999999982085}},{"ix":43,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":44,"action":{"kind":"Undelegate","val":0,"amt":2420},"partialState":{"h":6,"t":36,"tokens":[1518,1426,3206,10073],"delegation":[518,426,2206,9073],"delegatorTokens":9999999982085}},{"ix":45,"action":{"kind":"Delegate","val":2,"amt":3109},"partialState":{"h":6,"t":36,"tokens":[1518,1426,6315,10073],"delegation":[518,426,5315,9073],"delegatorTokens":9999999978976}},{"ix":46,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":7,"t":42,"tokens":[1518,1426,6315,10073],"delegation":[518,426,5315,9073],"delegatorTokens":9999999978976,"jailed":[null,null,1000000000000035,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":47,"action":{"kind":"Delegate","val":0,"amt":4429},"partialState":{"h":7,"t":42,"tokens":[5947,1426,6315,10073],"delegation":[4947,426,5315,9073],"delegatorTokens":9999999974547}},{"ix":48,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":5,"t":30,"consumerPower":[5922,null,5525,null],"outstandingDowntime":[true,false,true,false]}},{"ix":49,"action":{"kind":"Delegate","val":0,"amt":1150},"partialState":{"h":7,"t":42,"tokens":[7097,1426,6315,10073],"delegation":[6097,426,5315,9073],"delegatorTokens":9999999973397}},{"ix":50,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":51,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":52,"action":{"kind":"ConsumerSlash","val":2,"infractionHeight":0,"isDowntime":false},"partialState":{"h":5,"t":30,"outstandingDowntime":[true,false,true,false]}},{"ix":53,"action":{"kind":"Deliver","chain":"provider","numPackets":4},"partialState":{"h":7,"t":42,"tokens":[7097,1426,6315,10073],"delegation":[6097,426,5315,9073],"delegatorTokens":9999999973397,"jailed":[null,null,1000000000000035,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":54,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":8,"t":48,"tokens":[7097,1426,6315,10073],"delegation":[6097,426,5315,9073],"delegatorTokens":9999999973397,"jailed":[1000000000000041,null,1000000000000035,null],"status":["bonded","unbonding","unbonding","bonded"]}},{"ix":55,"action":{"kind":"Deliver","chain":"provider","numPackets":5},"partialState":{"h":8,"t":48,"tokens":[7097,1426,6315,10073],"delegation":[6097,426,5315,9073],"delegatorTokens":9999999973397,"jailed":[1000000000000041,null,1000000000000035,null],"status":["bonded","unbonding","unbonding","bonded"]}},{"ix":56,"action":{"kind":"Delegate","val":0,"amt":1446},"partialState":{"h":8,"t":48,"tokens":[8543,1426,6315,10073],"delegation":[7543,426,5315,9073],"delegatorTokens":9999999971951}},{"ix":57,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":6,"t":36,"consumerPower":[5922,null,5525,null],"outstandingDowntime":[true,false,true,false]}},{"ix":58,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":9,"t":54,"tokens":[8543,1426,6315,10073],"delegation":[7543,426,5315,9073],"delegatorTokens":9999999971951,"jailed":[1000000000000041,null,1000000000000035,null],"status":["unbonding","bonded","unbonding","bonded"]}},{"ix":59,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":7,"t":42,"consumerPower":[5922,null,5525,null],"outstandingDowntime":[true,false,true,false]}},{"ix":60,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":61,"action":{"kind":"Undelegate","val":1,"amt":3710},"partialState":{"h":9,"t":54,"tokens":[8543,1426,6315,10073],"delegation":[7543,426,5315,9073],"delegatorTokens":9999999971951}},{"ix":62,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":63,"action":{"kind":"Deliver","chain":"consumer","numPackets":4},"partialState":{"h":7,"t":42,"consumerPower":[5922,null,5525,null],"outstandingDowntime":[false,false,false,false]}},{"ix":64,"action":{"kind":"ConsumerSlash","val":0,"infractionHeight":1,"isDowntime":true},"partialState":{"h":7,"t":42,"outstandingDowntime":[true,false,false,false]}},{"ix":65,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":66,"action":{"kind":"Delegate","val":2,"amt":3750},"partialState":{"h":9,"t":54,"tokens":[8543,1426,10065,10073],"delegation":[7543,426,9065,9073],"delegatorTokens":9999999968201}},{"ix":67,"action":{"kind":"Delegate","val":2,"amt":4356},"partialState":{"h":9,"t":54,"tokens":[8543,1426,14421,10073],"delegation":[7543,426,13421,9073],"delegatorTokens":9999999963845}},{"ix":68,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":8,"t":48,"consumerPower":[7097,null,null,10073],"outstandingDowntime":[true,false,false,false]}},{"ix":69,"action":{"kind":"Deliver","chain":"provider","numPackets":5},"partialState":{"h":9,"t":54,"tokens":[8543,1426,14421,10073],"delegation":[7543,426,13421,9073],"delegatorTokens":9999999963845,"jailed":[1000000000000041,null,1000000000000035,null],"status":["unbonding","bonded","unbonding","bonded"]}},{"ix":70,"action":{"kind":"ConsumerSlash","val":1,"infractionHeight":2,"isDowntime":true},"partialState":{"h":8,"t":48,"outstandingDowntime":[true,true,false,false]}},{"ix":71,"action":{"kind":"Delegate","val":3,"amt":3851},"partialState":{"h":9,"t":54,"tokens":[8543,1426,14421,13924],"delegation":[7543,426,13421,12924],"delegatorTokens":9999999959994}},{"ix":72,"action":{"kind":"Undelegate","val":2,"amt":3610},"partialState":{"h":9,"t":54,"tokens":[8543,1426,10811,13924],"delegation":[7543,426,9811,12924],"delegatorTokens":9999999959994}},{"ix":73,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":74,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":10,"t":60,"tokens":[8543,1426,10811,13924],"delegation":[7543,426,9811,12924],"delegatorTokens":9999999959994,"jailed":[1000000000000041,null,1000000000000035,null],"status":["unbonding","bonded","unbonding","bonded"]}},{"ix":75,"action":{"kind":"Deliver","chain":"provider","numPackets":6},"partialState":{"h":10,"t":60,"tokens":[8543,1426,10811,13924],"delegation":[7543,426,9811,12924],"delegatorTokens":9999999959994,"jailed":[1000000000000041,null,1000000000000035,null],"status":["unbonding","bonded","unbonding","bonded"]}},{"ix":76,"action":{"kind":"Delegate","val":0,"amt":1711},"partialState":{"h":10,"t":60,"tokens":[10254,1426,10811,13924],"delegation":[9254,426,9811,12924],"delegatorTokens":9999999958283}},{"ix":77,"action":{"kind":"Undelegate","val":2,"amt":4115},"partialState":{"h":10,"t":60,"tokens":[10254,1426,6696,13924],"delegation":[9254,426,5696,12924],"delegatorTokens":9999999958283}},{"ix":78,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":79,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":80,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":81,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":11,"t":66,"tokens":[10254,1426,6696,13924],"delegation":[9254,426,5696,12924],"delegatorTokens":9999999958283,"jailed":[1000000000000041,null,1000000000000035,null],"status":["unbonding","bonded","unbonding","bonded"]}},{"ix":82,"action":{"kind":"Deliver","chain":"consumer","numPackets":3},"partialState":{"h":8,"t":48,"consumerPower":[7097,null,null,10073],"outstandingDowntime":[true,true,false,false]}},{"ix":83,"action":{"kind":"Undelegate","val":0,"amt":3241},"partialState":{"h":11,"t":66,"tokens":[7013,1426,6696,13924],"delegation":[6013,426,5696,12924],"delegatorTokens":9999999958283}},{"ix":84,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":85,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":12,"t":72,"tokens":[7013,1426,6696,13924],"delegation":[6013,426,5696,12924],"delegatorTokens":9999999958283,"jailed":[1000000000000041,null,1000000000000035,null],"status":["unbonding","bonded","unbonding","bonded"]}},{"ix":86,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":87,"action":{"kind":"Delegate","val":1,"amt":4117},"partialState":{"h":12,"t":72,"tokens":[7013,5543,6696,13924],"delegation":[6013,4543,5696,12924],"delegatorTokens":9999999954166}},{"ix":88,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":89,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":9,"t":54,"consumerPower":[null,1426,null,13924],"outstandingDowntime":[true,true,false,false]}},{"ix":90,"action":{"kind":"Deliver","chain":"provider","numPackets":4},"partialState":{"h":12,"t":72,"tokens":[7013,5543,6696,13924],"delegation":[6013,4543,5696,12924],"delegatorTokens":9999999954166,"jailed":[1000000000000041,null,1000000000000035,null],"status":["unbonding","bonded","unbonding","bonded"]}},{"ix":91,"action":{"kind":"Delegate","val":3,"amt":2694},"partialState":{"h":12,"t":72,"tokens":[7013,5543,6696,16618],"delegation":[6013,4543,5696,15618],"delegatorTokens":9999999951472}},{"ix":92,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":10,"t":60,"consumerPower":[null,1426,null,13924],"outstandingDowntime":[true,true,false,false]}},{"ix":93,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":13,"t":78,"tokens":[7013,5543,6696,16618],"delegation":[6013,4543,5696,15618],"delegatorTokens":9999999951472,"jailed":[1000000000000071,null,1000000000000035,null],"status":["unbonding","bonded","unbonding","bonded"]}},{"ix":94,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":14,"t":84,"tokens":[7013,5543,6696,16618],"delegation":[6013,4543,5696,15618],"delegatorTokens":9999999951472,"jailed":[1000000000000071,null,1000000000000035,null],"status":["unbonding","bonded","unbonding","bonded"]}},{"ix":95,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":11,"t":66,"consumerPower":[null,1426,null,13924],"outstandingDowntime":[true,true,false,false]}},{"ix":96,"action":{"kind":"Deliver","chain":"consumer","numPackets":1},"partialState":{"h":11,"t":66,"consumerPower":[null,1426,null,13924],"outstandingDowntime":[true,true,false,false]}},{"ix":97,"action":{"kind":"Undelegate","val":2,"amt":1085},"partialState":{"h":14,"t":84,"tokens":[7013,5543,5611,16618],"delegation":[6013,4543,4611,15618],"delegatorTokens":9999999951472}},{"ix":98,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":99,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":100,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":12,"t":72,"consumerPower":[null,1426,null,13924],"outstandingDowntime":[true,true,false,false]}},{"ix":101,"action":{"kind":"Deliver","chain":"provider","numPackets":3},"partialState":{"h":14,"t":84,"tokens":[7013,5543,5611,16618],"delegation":[6013,4543,4611,15618],"delegatorTokens":9999999951472,"jailed":[1000000000000071,null,1000000000000035,null],"status":["unbonding","bonded","unbonding","bonded"]}},{"ix":102,"action":{"kind":"Deliver","chain":"consumer","numPackets":2},"partialState":{"h":12,"t":72,"consumerPower":[null,1426,null,13924],"outstandingDowntime":[false,true,false,false]}},{"ix":103,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":104,"action":{"kind":"Delegate","val":0,"amt":3596},"partialState":{"h":14,"t":84,"tokens":[10609,5543,5611,16618],"delegation":[9609,4543,4611,15618],"delegatorTokens":9999999947876}},{"ix":105,"action":{"kind":"Undelegate","val":3,"amt":1726},"partialState":{"h":14,"t":84,"tokens":[10609,5543,5611,14892],"delegation":[9609,4543,4611,13892],"delegatorTokens":9999999947876}},{"ix":106,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":107,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":108,"action":{"kind":"Undelegate","val":3,"amt":4136},"partialState":{"h":14,"t":84,"tokens":[10609,5543,5611,10756],"delegation":[9609,4543,4611,9756],"delegatorTokens":9999999947876}},{"ix":109,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":110,"action":{"kind":"Undelegate","val":3,"amt":2224},"partialState":{"h":14,"t":84,"tokens":[10609,5543,5611,8532],"delegation":[9609,4543,4611,7532],"delegatorTokens":9999999947876}},{"ix":111,"action":{"kind":"Undelegate","val":1,"amt":3065},"partialState":{"h":14,"t":84,"tokens":[10609,2478,5611,8532],"delegation":[9609,1478,4611,7532],"delegatorTokens":9999999947876}},{"ix":112,"action":{"kind":"Delegate","val":3,"amt":4818},"partialState":{"h":14,"t":84,"tokens":[10609,2478,5611,13350],"delegation":[9609,1478,4611,12350],"delegatorTokens":9999999943058}},{"ix":113,"action":{"kind":"Delegate","val":3,"amt":4889},"partialState":{"h":14,"t":84,"tokens":[10609,2478,5611,18239],"delegation":[9609,1478,4611,17239],"delegatorTokens":9999999938169}},{"ix":114,"action":{"kind":"Deliver","chain":"provider","numPackets":6},"partialState":{"h":14,"t":84,"tokens":[10609,2478,5611,18239],"delegation":[9609,1478,4611,17239],"delegatorTokens":9999999938169,"jailed":[1000000000000071,null,1000000000000035,null],"status":["unbonding","bonded","unbonding","bonded"]}},{"ix":115,"action":{"kind":"Undelegate","val":3,"amt":3434},"partialState":{"h":14,"t":84,"tokens":[10609,2478,5611,14805],"delegation":[9609,1478,4611,13805],"delegatorTokens":9999999938169}},{"ix":116,"action":{"kind":"Deliver","chain":"provider","numPackets":1},"partialState":{"h":14,"t":84,"tokens":[10609,2478,5611,14805],"delegation":[9609,1478,4611,13805],"delegatorTokens":9999999938169,"jailed":[1000000000000071,null,1000000000000035,null],"status":["unbonding","bonded","unbonding","bonded"]}},{"ix":117,"action":{"kind":"Deliver","chain":"provider","numPackets":1},"partialState":{"h":14,"t":84,"tokens":[10609,2478,5611,14805],"delegation":[9609,1478,4611,13805],"delegatorTokens":9999999938169,"jailed":[1000000000000071,null,1000000000000035,null],"status":["unbonding","bonded","unbonding","bonded"]}},{"ix":118,"action":{"kind":"Deliver","chain":"consumer","numPackets":6},"partialState":{"h":12,"t":72,"consumerPower":[null,1426,null,13924],"outstandingDowntime":[false,true,false,false]}},{"ix":119,"action":{"kind":"Delegate","val":1,"amt":2000},"partialState":{"h":14,"t":84,"tokens":[10609,4478,5611,14805],"delegation":[9609,3478,4611,13805],"delegatorTokens":9999999936169}},{"ix":120,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":13,"t":78,"consumerPower":[null,5543,null,16618],"outstandingDowntime":[false,true,false,false]}},{"ix":121,"action":{"kind":"Deliver","chain":"provider","numPackets":3},"partialState":{"h":14,"t":84,"tokens":[10609,4478,5611,14805],"delegation":[9609,3478,4611,13805],"delegatorTokens":9999999936169,"jailed":[1000000000000071,null,1000000000000035,null],"status":["unbonding","bonded","unbonding","bonded"]}},{"ix":122,"action":{"kind":"Deliver","chain":"consumer","numPackets":5},"partialState":{"h":13,"t":78,"consumerPower":[null,5543,null,16618],"outstandingDowntime":[false,true,false,false]}},{"ix":123,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":14,"t":84,"consumerPower":[null,5543,null,16618],"outstandingDowntime":[false,true,false,false]}},{"ix":124,"action":{"kind":"Deliver","chain":"provider","numPackets":4},"partialState":{"h":14,"t":84,"tokens":[10609,4478,5611,14805],"delegation":[9609,3478,4611,13805],"delegatorTokens":9999999936169,"jailed":[1000000000000071,null,1000000000000035,null],"status":["unbonding","bonded","unbonding","bonded"]}},{"ix":125,"action":{"kind":"Undelegate","val":2,"amt":1433},"partialState":{"h":14,"t":84,"tokens":[10609,4478,4178,14805],"delegation":[9609,3478,3178,13805],"delegatorTokens":9999999936169}},{"ix":126,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":15,"t":90,"consumerPower":[null,5543,null,16618],"outstandingDowntime":[false,true,false,false]}},{"ix":127,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":15,"t":90,"tokens":[10609,4478,4178,14805],"delegation":[9609,3478,3178,13805],"delegatorTokens":9999999941554,"jailed":[1000000000000071,1000000000000083,1000000000000035,null],"status":["unbonding","bonded","unbonding","bonded"]}},{"ix":128,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":129,"action":{"kind":"Deliver","chain":"provider","numPackets":6},"partialState":{"h":15,"t":90,"tokens":[10609,4478,4178,14805],"delegation":[9609,3478,3178,13805],"delegatorTokens":9999999941554,"jailed":[1000000000000071,1000000000000083,1000000000000035,null],"status":["unbonding","bonded","unbonding","bonded"]}},{"ix":130,"action":{"kind":"Delegate","val":2,"amt":3128},"partialState":{"h":15,"t":90,"tokens":[10609,4478,7306,14805],"delegation":[9609,3478,6306,13805],"delegatorTokens":9999999938426}},{"ix":131,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":16,"t":96,"consumerPower":[null,5543,null,16618],"outstandingDowntime":[false,true,false,false]}},{"ix":132,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":17,"t":102,"consumerPower":[null,5543,null,16618],"outstandingDowntime":[false,true,false,false]}},{"ix":133,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":134,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":16,"t":96,"tokens":[10609,4478,7306,14805],"delegation":[9609,3478,6306,13805],"delegatorTokens":9999999938426,"jailed":[1000000000000071,1000000000000083,1000000000000035,null],"status":["unbonding","unbonding","unbonding","bonded"]}},{"ix":135,"action":{"kind":"Undelegate","val":1,"amt":2326},"partialState":{"h":16,"t":96,"tokens":[10609,2152,7306,14805],"delegation":[9609,1152,6306,13805],"delegatorTokens":9999999938426}},{"ix":136,"action":{"kind":"Deliver","chain":"provider","numPackets":4},"partialState":{"h":16,"t":96,"tokens":[10609,2152,7306,14805],"delegation":[9609,1152,6306,13805],"delegatorTokens":9999999938426,"jailed":[1000000000000071,1000000000000083,1000000000000035,null],"status":["unbonding","unbonding","unbonding","bonded"]}},{"ix":137,"action":{"kind":"Deliver","chain":"consumer","numPackets":2},"partialState":{"h":17,"t":102,"consumerPower":[null,5543,null,16618],"outstandingDowntime":[false,false,false,false]}},{"ix":138,"action":{"kind":"Deliver","chain":"consumer","numPackets":5},"partialState":{"h":17,"t":102,"consumerPower":[null,5543,null,16618],"outstandingDowntime":[false,false,false,false]}},{"ix":139,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":18,"t":108,"consumerPower":[null,4478,null,14805],"outstandingDowntime":[false,false,false,false]}},{"ix":140,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":19,"t":114,"consumerPower":[null,4478,null,14805],"outstandingDowntime":[false,false,false,false]}},{"ix":141,"action":{"kind":"Deliver","chain":"provider","numPackets":4},"partialState":{"h":16,"t":96,"tokens":[10609,2152,7306,14805],"delegation":[9609,1152,6306,13805],"delegatorTokens":9999999938426,"jailed":[1000000000000071,1000000000000083,1000000000000035,null],"status":["unbonding","unbonding","unbonding","bonded"]}},{"ix":142,"action":{"kind":"Undelegate","val":2,"amt":1297},"partialState":{"h":16,"t":96,"tokens":[10609,2152,6009,14805],"delegation":[9609,1152,5009,13805],"delegatorTokens":9999999938426}},{"ix":143,"action":{"kind":"Delegate","val":0,"amt":2381},"partialState":{"h":16,"t":96,"tokens":[12990,2152,6009,14805],"delegation":[11990,1152,5009,13805],"delegatorTokens":9999999936045}},{"ix":144,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":145,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":20,"t":120,"consumerPower":[null,4478,null,14805],"outstandingDowntime":[false,false,false,false]}},{"ix":146,"action":{"kind":"Undelegate","val":0,"amt":4038},"partialState":{"h":16,"t":96,"tokens":[8952,2152,6009,14805],"delegation":[7952,1152,5009,13805],"delegatorTokens":9999999936045}},{"ix":147,"action":{"kind":"Deliver","chain":"provider","numPackets":3},"partialState":{"h":16,"t":96,"tokens":[8952,2152,6009,14805],"delegation":[7952,1152,5009,13805],"delegatorTokens":9999999936045,"jailed":[1000000000000071,1000000000000083,1000000000000035,null],"status":["unbonding","unbonding","unbonding","bonded"]}},{"ix":148,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":17,"t":102,"tokens":[8952,2152,6009,14805],"delegation":[7952,1152,5009,13805],"delegatorTokens":9999999936045,"jailed":[1000000000000071,1000000000000083,1000000000000035,null],"status":["unbonding","unbonding","unbonding","bonded"]}},{"ix":149,"action":{"kind":"Delegate","val":1,"amt":4535},"partialState":{"h":17,"t":102,"tokens":[8952,6687,6009,14805],"delegation":[7952,5687,5009,13805],"delegatorTokens":9999999931510}},{"ix":150,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":151,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":152,"action":{"kind":"Undelegate","val":0,"amt":2774},"partialState":{"h":17,"t":102,"tokens":[6178,6687,6009,14805],"delegation":[5178,5687,5009,13805],"delegatorTokens":9999999931510}},{"ix":153,"action":{"kind":"Delegate","val":0,"amt":4033},"partialState":{"h":17,"t":102,"tokens":[10211,6687,6009,14805],"delegation":[9211,5687,5009,13805],"delegatorTokens":9999999927477}},{"ix":154,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":21,"t":126,"consumerPower":[null,4478,null,14805],"outstandingDowntime":[false,false,false,false]}},{"ix":155,"action":{"kind":"Deliver","chain":"consumer","numPackets":6},"partialState":{"h":21,"t":126,"consumerPower":[null,4478,null,14805],"outstandingDowntime":[false,false,false,false]}},{"ix":156,"action":{"kind":"Undelegate","val":2,"amt":1289},"partialState":{"h":17,"t":102,"tokens":[10211,6687,4720,14805],"delegation":[9211,5687,3720,13805],"delegatorTokens":9999999927477}},{"ix":157,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":22,"t":132,"consumerPower":[null,null,null,14805],"outstandingDowntime":[false,false,false,false]}},{"ix":158,"action":{"kind":"Deliver","chain":"consumer","numPackets":1},"partialState":{"h":22,"t":132,"consumerPower":[null,null,null,14805],"outstandingDowntime":[false,false,false,false]}},{"ix":159,"action":{"kind":"Delegate","val":0,"amt":4688},"partialState":{"h":17,"t":102,"tokens":[14899,6687,4720,14805],"delegation":[13899,5687,3720,13805],"delegatorTokens":9999999922789}},{"ix":160,"action":{"kind":"Deliver","chain":"consumer","numPackets":1},"partialState":{"h":22,"t":132,"consumerPower":[null,null,null,14805],"outstandingDowntime":[false,false,false,false]}},{"ix":161,"action":{"kind":"Undelegate","val":2,"amt":1908},"partialState":{"h":17,"t":102,"tokens":[14899,6687,2812,14805],"delegation":[13899,5687,1812,13805],"delegatorTokens":9999999922789}},{"ix":162,"action":{"kind":"Delegate","val":3,"amt":3490},"partialState":{"h":17,"t":102,"tokens":[14899,6687,2812,18295],"delegation":[13899,5687,1812,17295],"delegatorTokens":9999999919299}},{"ix":163,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":23,"t":138,"consumerPower":[null,null,null,14805],"outstandingDowntime":[false,false,false,false]}},{"ix":164,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":24,"t":144,"consumerPower":[null,null,null,14805],"outstandingDowntime":[false,false,false,false]}},{"ix":165,"action":{"kind":"Deliver","chain":"consumer","numPackets":6},"partialState":{"h":24,"t":144,"consumerPower":[null,null,null,14805],"outstandingDowntime":[false,false,false,false]}},{"ix":166,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":167,"action":{"kind":"Delegate","val":2,"amt":3245},"partialState":{"h":17,"t":102,"tokens":[14899,6687,6057,18295],"delegation":[13899,5687,5057,17295],"delegatorTokens":9999999916054}},{"ix":168,"action":{"kind":"Delegate","val":1,"amt":3313},"partialState":{"h":17,"t":102,"tokens":[14899,10000,6057,18295],"delegation":[13899,9000,5057,17295],"delegatorTokens":9999999912741}},{"ix":169,"action":{"kind":"Delegate","val":0,"amt":3804},"partialState":{"h":17,"t":102,"tokens":[18703,10000,6057,18295],"delegation":[17703,9000,5057,17295],"delegatorTokens":9999999908937}},{"ix":170,"action":{"kind":"Deliver","chain":"consumer","numPackets":5},"partialState":{"h":24,"t":144,"consumerPower":[null,null,null,14805],"outstandingDowntime":[false,false,false,false]}},{"ix":171,"action":{"kind":"Deliver","chain":"provider","numPackets":2},"partialState":{"h":17,"t":102,"tokens":[18703,10000,6057,18295],"delegation":[17703,9000,5057,17295],"delegatorTokens":9999999908937,"jailed":[1000000000000071,1000000000000083,1000000000000035,null],"status":["unbonding","unbonding","unbonding","bonded"]}},{"ix":172,"action":{"kind":"Delegate","val":3,"amt":3371},"partialState":{"h":17,"t":102,"tokens":[18703,10000,6057,21666],"delegation":[17703,9000,5057,20666],"delegatorTokens":9999999905566}},{"ix":173,"action":{"kind":"Undelegate","val":1,"amt":3742},"partialState":{"h":17,"t":102,"tokens":[18703,6258,6057,21666],"delegation":[17703,5258,5057,20666],"delegatorTokens":9999999905566}},{"ix":174,"action":{"kind":"Delegate","val":2,"amt":4526},"partialState":{"h":17,"t":102,"tokens":[18703,6258,10583,21666],"delegation":[17703,5258,9583,20666],"delegatorTokens":9999999901040}},{"ix":175,"action":{"kind":"Undelegate","val":0,"amt":4432},"partialState":{"h":17,"t":102,"tokens":[14271,6258,10583,21666],"delegation":[13271,5258,9583,20666],"delegatorTokens":9999999901040}},{"ix":176,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":177,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":18,"t":108,"tokens":[14271,6258,10583,21666],"delegation":[13271,5258,9583,20666],"delegatorTokens":9999999909379,"jailed":[1000000000000071,1000000000000083,1000000000000035,null],"status":["unbonding","unbonding","unbonding","bonded"]}},{"ix":178,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":19,"t":114,"tokens":[14271,6258,10583,21666],"delegation":[13271,5258,9583,20666],"delegatorTokens":9999999911347,"jailed":[1000000000000071,1000000000000083,1000000000000035,null],"status":["unbonding","unbonding","unbonding","bonded"]}},{"ix":179,"action":{"kind":"Undelegate","val":0,"amt":1306},"partialState":{"h":19,"t":114,"tokens":[12965,6258,10583,21666],"delegation":[11965,5258,9583,20666],"delegatorTokens":9999999911347}},{"ix":180,"action":{"kind":"Deliver","chain":"consumer","numPackets":1},"partialState":{"h":24,"t":144,"consumerPower":[null,null,null,14805],"outstandingDowntime":[false,false,false,false]}},{"ix":181,"action":{"kind":"Delegate","val":2,"amt":4584},"partialState":{"h":19,"t":114,"tokens":[12965,6258,15167,21666],"delegation":[11965,5258,14167,20666],"delegatorTokens":9999999906763}},{"ix":182,"action":{"kind":"Deliver","chain":"consumer","numPackets":1},"partialState":{"h":24,"t":144,"consumerPower":[null,null,null,14805],"outstandingDowntime":[false,false,false,false]}},{"ix":183,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":25,"t":150,"consumerPower":[null,null,null,21666],"outstandingDowntime":[false,false,false,false]}},{"ix":184,"action":{"kind":"Delegate","val":0,"amt":2016},"partialState":{"h":19,"t":114,"tokens":[14981,6258,15167,21666],"delegation":[13981,5258,14167,20666],"delegatorTokens":9999999904747}},{"ix":185,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":20,"t":120,"tokens":[14981,6258,15167,21666],"delegation":[13981,5258,14167,20666],"delegatorTokens":9999999904747,"jailed":[1000000000000071,1000000000000083,1000000000000035,null],"status":["unbonding","unbonding","unbonded","bonded"]}},{"ix":186,"action":{"kind":"Delegate","val":1,"amt":1459},"partialState":{"h":20,"t":120,"tokens":[14981,7717,15167,21666],"delegation":[13981,6717,14167,20666],"delegatorTokens":9999999903288}},{"ix":187,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":21,"t":126,"tokens":[14981,7717,15167,21666],"delegation":[13981,6717,14167,20666],"delegatorTokens":9999999903288,"jailed":[1000000000000071,1000000000000083,1000000000000035,null],"status":["unbonded","unbonding","unbonded","bonded"]}},{"ix":188,"action":{"kind":"Delegate","val":1,"amt":4804},"partialState":{"h":21,"t":126,"tokens":[14981,12521,15167,21666],"delegation":[13981,11521,14167,20666],"delegatorTokens":9999999898484}},{"ix":189,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":26,"t":156,"consumerPower":[null,null,null,21666],"outstandingDowntime":[false,false,false,false]}},{"ix":190,"action":{"kind":"Undelegate","val":2,"amt":3036},"partialState":{"h":21,"t":126,"tokens":[14981,12521,12131,21666],"delegation":[13981,11521,11131,20666],"delegatorTokens":9999999898484}},{"ix":191,"action":{"kind":"Delegate","val":3,"amt":3222},"partialState":{"h":21,"t":126,"tokens":[14981,12521,12131,24888],"delegation":[13981,11521,11131,23888],"delegatorTokens":9999999895262}},{"ix":192,"action":{"kind":"Deliver","chain":"provider","numPackets":6},"partialState":{"h":21,"t":126,"tokens":[14981,12521,12131,24888],"delegation":[13981,11521,11131,23888],"delegatorTokens":9999999895262,"jailed":[1000000000000071,1000000000000083,1000000000000035,null],"status":["unbonded","unbonding","unbonded","bonded"]}},{"ix":193,"action":{"kind":"Undelegate","val":3,"amt":3305},"partialState":{"h":21,"t":126,"tokens":[14981,12521,12131,21583],"delegation":[13981,11521,11131,20583],"delegatorTokens":9999999895262}},{"ix":194,"action":{"kind":"Delegate","val":0,"amt":3310},"partialState":{"h":21,"t":126,"tokens":[18291,12521,12131,21583],"delegation":[17291,11521,11131,20583],"delegatorTokens":9999999891952}},{"ix":195,"action":{"kind":"Delegate","val":2,"amt":4370},"partialState":{"h":21,"t":126,"tokens":[18291,12521,16501,21583],"delegation":[17291,11521,15501,20583],"delegatorTokens":9999999887582}},{"ix":196,"action":{"kind":"Delegate","val":2,"amt":1599},"partialState":{"h":21,"t":126,"tokens":[18291,12521,18100,21583],"delegation":[17291,11521,17100,20583],"delegatorTokens":9999999885983}},{"ix":197,"action":{"kind":"Deliver","chain":"provider","numPackets":5},"partialState":{"h":21,"t":126,"tokens":[18291,12521,18100,21583],"delegation":[17291,11521,17100,20583],"delegatorTokens":9999999885983,"jailed":[1000000000000071,1000000000000083,1000000000000035,null],"status":["unbonded","unbonding","unbonded","bonded"]}},{"ix":198,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":22,"t":132,"tokens":[18291,12521,18100,21583],"delegation":[17291,11521,17100,20583],"delegatorTokens":9999999889593,"jailed":[1000000000000071,1000000000000083,1000000000000035,null],"status":["unbonded","unbonding","unbonded","bonded"]}},{"ix":199,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":23,"t":138,"tokens":[18291,12521,18100,21583],"delegation":[17291,11521,17100,20583],"delegatorTokens":9999999893708,"jailed":[1000000000000071,1000000000000083,1000000000000035,null],"status":["unbonded","unbonding","unbonded","bonded"]}}],"events":["send_downtime_slash_request","more_than_one_third_val_power_change","send_vsc_without_downtime_ack","more_than_one_third_val_power_change","rebond_unval","send_vsc_without_downtime_ack","send_downtime_slash_request","downtime_slash_request_outstanding","insufficient_shares","insufficient_shares","consumer_update_val","consumer_del_val","consumer_add_val","consumer_del_val","downtime_slash_request_outstanding","send_double_sign_slash_request","more_than_one_third_val_power_change","rebond_unval","send_vsc_without_downtime_ack","insufficient_shares","insufficient_shares","more_than_one_third_val_power_change","rebond_unval","receive_downtime_slash_request","jail","send_vsc_with_downtime_ack","send_double_sign_slash_request","receive_double_sign_slash_request","more_than_one_third_val_power_change","rebond_unval","receive_downtime_slash_request","jail","send_vsc_with_downtime_ack","rebond_unval","send_vsc_without_downtime_ack","insufficient_shares","receive_downtime_slash_ack","receive_downtime_slash_ack","send_downtime_slash_request","consumer_update_val","consumer_del_val","consumer_add_val","receive_double_sign_slash_request","send_downtime_slash_request","send_vsc_without_downtime_ack","send_vsc_not_because_change","send_vsc_without_downtime_ack","send_vsc_not_because_change","send_vsc_without_downtime_ack","consumer_del_val","consumer_add_val","consumer_update_val","receive_downtime_slash_request","jail","send_vsc_with_downtime_ack","some_undels_expired_but_not_completed","consumer_send_maturation","consumer_send_maturation","receive_downtime_slash_ack","consumer_update_val","consumer_update_val","receive_downtime_slash_request","jail","complete_undel_immediate","complete_undel_immediate","send_vsc_with_downtime_ack","consumer_send_maturation","consumer_send_maturation","consumer_send_maturation","send_vsc_without_downtime_ack","receive_downtime_slash_ack","consumer_send_maturation","consumer_send_maturation","consumer_update_val","consumer_update_val","set_undel_hold_false","set_undel_hold_false","set_undel_hold_false","set_undel_hold_false","set_undel_hold_false","set_unval_hold_false","set_unval_hold_false","set_undel_hold_false","send_vsc_not_because_change","send_vsc_without_downtime_ack","consumer_send_maturation","consumer_send_maturation","consumer_send_maturation","consumer_del_val","complete_undel_in_endblock","set_undel_hold_false","set_undel_hold_false","send_vsc_without_downtime_ack","complete_undel_in_endblock","consumer_update_val","complete_unval_in_endblock","send_vsc_not_because_change","send_vsc_without_downtime_ack","complete_unval_in_endblock","complete_undel_in_endblock","send_vsc_without_downtime_ack","complete_undel_in_endblock"]},{"meta":{"commit":"7ffd0c04e4205cbc9caf212abfe6c59ee43153bf"},"constants":{"P":"provider","C":"consumer","UNBONDING_SECONDS_P":70,"UNBONDING_SECONDS_C":50,"TRUSTING_SECONDS":49,"NUM_VALIDATORS":4,"MAX_VALIDATORS":2,"SLASH_DOUBLESIGN":0,"SLASH_DOWNTIME":0,"JAIL_SECONDS":999999999999999,"BLOCK_SECONDS":6,"INITIAL_DELEGATOR_TOKENS":10000000000000,"DELEGATE_AMT_MIN":1000,"DELEGATE_AMT_MAX":5000,"UNDELEGATE_AMT_MIN":1000,"UNDELEGATE_AMT_MAX":5000,"ISDOWNTIME_PROBABILITY":0.5,"MAX_NUM_PACKETS_FOR_DELIVER":6},"actions":[{"ix":0,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":1,"action":{"kind":"Delegate","val":1,"amt":4556},"partialState":{"h":1,"t":6,"tokens":[5000,8556,3000,2000],"delegation":[4000,7556,2000,1000],"delegatorTokens":9999999995444}},{"ix":2,"action":{"kind":"Undelegate","val":2,"amt":4334},"partialState":{"h":1,"t":6,"tokens":[5000,8556,3000,2000],"delegation":[4000,7556,2000,1000],"delegatorTokens":9999999995444}},{"ix":3,"action":{"kind":"Undelegate","val":2,"amt":2574},"partialState":{"h":1,"t":6,"tokens":[5000,8556,3000,2000],"delegation":[4000,7556,2000,1000],"delegatorTokens":9999999995444}},{"ix":4,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":5,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":6,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":7,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":8,"action":{"kind":"ConsumerSlash","val":1,"infractionHeight":0,"isDowntime":true},"partialState":{"h":1,"t":6,"outstandingDowntime":[false,true,false,false]}},{"ix":9,"action":{"kind":"Undelegate","val":0,"amt":3576},"partialState":{"h":1,"t":6,"tokens":[1424,8556,3000,2000],"delegation":[424,7556,2000,1000],"delegatorTokens":9999999995444}},{"ix":10,"action":{"kind":"Delegate","val":2,"amt":1938},"partialState":{"h":1,"t":6,"tokens":[1424,8556,4938,2000],"delegation":[424,7556,3938,1000],"delegatorTokens":9999999993506}},{"ix":11,"action":{"kind":"ConsumerSlash","val":0,"infractionHeight":0,"isDowntime":false},"partialState":{"h":1,"t":6,"outstandingDowntime":[false,true,false,false]}},{"ix":12,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":13,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":2,"t":12,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,true,false,false]}},{"ix":14,"action":{"kind":"Delegate","val":1,"amt":1215},"partialState":{"h":1,"t":6,"tokens":[1424,9771,4938,2000],"delegation":[424,8771,3938,1000],"delegatorTokens":9999999992291}},{"ix":15,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":3,"t":18,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,true,false,false]}},{"ix":16,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":17,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":4,"t":24,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,true,false,false]}},{"ix":18,"action":{"kind":"Deliver","chain":"consumer","numPackets":1},"partialState":{"h":4,"t":24,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,true,false,false]}},{"ix":19,"action":{"kind":"Undelegate","val":2,"amt":4735},"partialState":{"h":1,"t":6,"tokens":[1424,9771,4938,2000],"delegation":[424,8771,3938,1000],"delegatorTokens":9999999992291}},{"ix":20,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":2,"t":12,"tokens":[1424,9771,4938,2000],"delegation":[424,8771,3938,1000],"delegatorTokens":9999999992291,"jailed":[null,null,null,null],"status":["unbonding","bonded","bonded","unbonded"]}},{"ix":21,"action":{"kind":"Delegate","val":0,"amt":3703},"partialState":{"h":2,"t":12,"tokens":[5127,9771,4938,2000],"delegation":[4127,8771,3938,1000],"delegatorTokens":9999999988588}},{"ix":22,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":3,"t":18,"tokens":[5127,9771,4938,2000],"delegation":[4127,8771,3938,1000],"delegatorTokens":9999999988588,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonding","unbonded"]}},{"ix":23,"action":{"kind":"Deliver","chain":"consumer","numPackets":1},"partialState":{"h":4,"t":24,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,true,false,false]}},{"ix":24,"action":{"kind":"Deliver","chain":"provider","numPackets":4},"partialState":{"h":3,"t":18,"tokens":[5127,9771,4938,2000],"delegation":[4127,8771,3938,1000],"delegatorTokens":9999999988588,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonding","unbonded"]}},{"ix":25,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":26,"action":{"kind":"Undelegate","val":1,"amt":1272},"partialState":{"h":3,"t":18,"tokens":[5127,8499,4938,2000],"delegation":[4127,7499,3938,1000],"delegatorTokens":9999999988588}},{"ix":27,"action":{"kind":"Delegate","val":0,"amt":1357},"partialState":{"h":3,"t":18,"tokens":[6484,8499,4938,2000],"delegation":[5484,7499,3938,1000],"delegatorTokens":9999999987231}},{"ix":28,"action":{"kind":"Delegate","val":3,"amt":4845},"partialState":{"h":3,"t":18,"tokens":[6484,8499,4938,6845],"delegation":[5484,7499,3938,5845],"delegatorTokens":9999999982386}},{"ix":29,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":30,"action":{"kind":"ConsumerSlash","val":0,"infractionHeight":1,"isDowntime":false},"partialState":{"h":4,"t":24,"outstandingDowntime":[false,true,false,false]}},{"ix":31,"action":{"kind":"Undelegate","val":2,"amt":3852},"partialState":{"h":3,"t":18,"tokens":[6484,8499,1086,6845],"delegation":[5484,7499,86,5845],"delegatorTokens":9999999982386}},{"ix":32,"action":{"kind":"Deliver","chain":"consumer","numPackets":3},"partialState":{"h":4,"t":24,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,true,false,false]}},{"ix":33,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":4,"t":24,"tokens":[6484,8499,1086,6845],"delegation":[5484,7499,86,5845],"delegatorTokens":9999999982386,"jailed":[null,1000000000000017,null,null],"status":["unbonding","bonded","unbonding","bonded"]}},{"ix":34,"action":{"kind":"Undelegate","val":3,"amt":3978},"partialState":{"h":4,"t":24,"tokens":[6484,8499,1086,2867],"delegation":[5484,7499,86,1867],"delegatorTokens":9999999982386}},{"ix":35,"action":{"kind":"Deliver","chain":"provider","numPackets":6},"partialState":{"h":4,"t":24,"tokens":[6484,8499,1086,2867],"delegation":[5484,7499,86,1867],"delegatorTokens":9999999982386,"jailed":[null,1000000000000017,null,null],"status":["unbonding","bonded","unbonding","bonded"]}},{"ix":36,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":37,"action":{"kind":"Undelegate","val":1,"amt":2152},"partialState":{"h":4,"t":24,"tokens":[6484,6347,1086,2867],"delegation":[5484,5347,86,1867],"delegatorTokens":9999999982386}},{"ix":38,"action":{"kind":"Delegate","val":0,"amt":3942},"partialState":{"h":4,"t":24,"tokens":[10426,6347,1086,2867],"delegation":[9426,5347,86,1867],"delegatorTokens":9999999978444}},{"ix":39,"action":{"kind":"Undelegate","val":1,"amt":3288},"partialState":{"h":4,"t":24,"tokens":[10426,3059,1086,2867],"delegation":[9426,2059,86,1867],"delegatorTokens":9999999978444}},{"ix":40,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":41,"action":{"kind":"Undelegate","val":3,"amt":4940},"partialState":{"h":4,"t":24,"tokens":[10426,3059,1086,2867],"delegation":[9426,2059,86,1867],"delegatorTokens":9999999978444}},{"ix":42,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":43,"action":{"kind":"Undelegate","val":2,"amt":4356},"partialState":{"h":4,"t":24,"tokens":[10426,3059,1086,2867],"delegation":[9426,2059,86,1867],"delegatorTokens":9999999978444}},{"ix":44,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":5,"t":30,"consumerPower":[null,9771,4938,null],"outstandingDowntime":[false,true,false,false]}},{"ix":45,"action":{"kind":"Delegate","val":3,"amt":4980},"partialState":{"h":4,"t":24,"tokens":[10426,3059,1086,7847],"delegation":[9426,2059,86,6847],"delegatorTokens":9999999973464}},{"ix":46,"action":{"kind":"ConsumerSlash","val":1,"infractionHeight":1,"isDowntime":false},"partialState":{"h":5,"t":30,"outstandingDowntime":[false,true,false,false]}},{"ix":47,"action":{"kind":"Deliver","chain":"provider","numPackets":4},"partialState":{"h":4,"t":24,"tokens":[10426,3059,1086,7847],"delegation":[9426,2059,86,6847],"delegatorTokens":9999999973464,"jailed":[null,1000000000000017,null,null],"status":["unbonding","bonded","unbonding","bonded"]}},{"ix":48,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":49,"action":{"kind":"Delegate","val":0,"amt":2697},"partialState":{"h":4,"t":24,"tokens":[13123,3059,1086,7847],"delegation":[12123,2059,86,6847],"delegatorTokens":9999999970767}},{"ix":50,"action":{"kind":"Undelegate","val":0,"amt":1623},"partialState":{"h":4,"t":24,"tokens":[11500,3059,1086,7847],"delegation":[10500,2059,86,6847],"delegatorTokens":9999999970767}},{"ix":51,"action":{"kind":"Deliver","chain":"provider","numPackets":1},"partialState":{"h":4,"t":24,"tokens":[11500,3059,1086,7847],"delegation":[10500,2059,86,6847],"delegatorTokens":9999999970767,"jailed":[null,1000000000000017,null,null],"status":["unbonding","bonded","unbonding","bonded"]}},{"ix":52,"action":{"kind":"Undelegate","val":2,"amt":2965},"partialState":{"h":4,"t":24,"tokens":[11500,3059,1086,7847],"delegation":[10500,2059,86,6847],"delegatorTokens":9999999970767}},{"ix":53,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":5,"t":30,"tokens":[11500,3059,1086,7847],"delegation":[10500,2059,86,6847],"delegatorTokens":9999999970767,"jailed":[null,1000000000000017,null,null],"status":["bonded","unbonding","unbonding","bonded"]}},{"ix":54,"action":{"kind":"Deliver","chain":"consumer","numPackets":2},"partialState":{"h":5,"t":30,"consumerPower":[null,9771,4938,null],"outstandingDowntime":[false,false,false,false]}},{"ix":55,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":56,"action":{"kind":"Delegate","val":2,"amt":2979},"partialState":{"h":5,"t":30,"tokens":[11500,3059,4065,7847],"delegation":[10500,2059,3065,6847],"delegatorTokens":9999999967788}},{"ix":57,"action":{"kind":"Undelegate","val":1,"amt":4837},"partialState":{"h":5,"t":30,"tokens":[11500,3059,4065,7847],"delegation":[10500,2059,3065,6847],"delegatorTokens":9999999967788}},{"ix":58,"action":{"kind":"Undelegate","val":0,"amt":2536},"partialState":{"h":5,"t":30,"tokens":[8964,3059,4065,7847],"delegation":[7964,2059,3065,6847],"delegatorTokens":9999999967788}},{"ix":59,"action":{"kind":"Delegate","val":2,"amt":3942},"partialState":{"h":5,"t":30,"tokens":[8964,3059,8007,7847],"delegation":[7964,2059,7007,6847],"delegatorTokens":9999999963846}},{"ix":60,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":61,"action":{"kind":"Deliver","chain":"consumer","numPackets":4},"partialState":{"h":5,"t":30,"consumerPower":[null,9771,4938,null],"outstandingDowntime":[false,false,false,false]}},{"ix":62,"action":{"kind":"ConsumerSlash","val":0,"infractionHeight":4,"isDowntime":false},"partialState":{"h":5,"t":30,"outstandingDowntime":[false,false,false,false]}},{"ix":63,"action":{"kind":"Delegate","val":2,"amt":1054},"partialState":{"h":5,"t":30,"tokens":[8964,3059,9061,7847],"delegation":[7964,2059,8061,6847],"delegatorTokens":9999999962792}},{"ix":64,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":65,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":66,"action":{"kind":"Deliver","chain":"provider","numPackets":4},"partialState":{"h":5,"t":30,"tokens":[8964,3059,9061,7847],"delegation":[7964,2059,8061,6847],"delegatorTokens":9999999962792,"jailed":[null,1000000000000017,null,null],"status":["bonded","unbonding","unbonding","bonded"]}},{"ix":67,"action":{"kind":"Delegate","val":1,"amt":2473},"partialState":{"h":5,"t":30,"tokens":[8964,5532,9061,7847],"delegation":[7964,4532,8061,6847],"delegatorTokens":9999999960319}},{"ix":68,"action":{"kind":"ConsumerSlash","val":0,"infractionHeight":1,"isDowntime":true},"partialState":{"h":5,"t":30,"outstandingDowntime":[true,false,false,false]}},{"ix":69,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":6,"t":36,"tokens":[8964,5532,9061,7847],"delegation":[7964,4532,8061,6847],"delegatorTokens":9999999960319,"jailed":[null,1000000000000017,null,null],"status":["bonded","unbonding","bonded","unbonding"]}},{"ix":70,"action":{"kind":"Deliver","chain":"provider","numPackets":6},"partialState":{"h":6,"t":36,"tokens":[8964,5532,9061,7847],"delegation":[7964,4532,8061,6847],"delegatorTokens":9999999960319,"jailed":[null,1000000000000017,null,null],"status":["bonded","unbonding","bonded","unbonding"]}},{"ix":71,"action":{"kind":"ConsumerSlash","val":1,"infractionHeight":0,"isDowntime":false},"partialState":{"h":5,"t":30,"outstandingDowntime":[true,false,false,false]}},{"ix":72,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":73,"action":{"kind":"Delegate","val":1,"amt":4740},"partialState":{"h":6,"t":36,"tokens":[8964,10272,9061,7847],"delegation":[7964,9272,8061,6847],"delegatorTokens":9999999955579}},{"ix":74,"action":{"kind":"Deliver","chain":"consumer","numPackets":5},"partialState":{"h":5,"t":30,"consumerPower":[null,9771,4938,null],"outstandingDowntime":[true,false,false,false]}},{"ix":75,"action":{"kind":"Undelegate","val":1,"amt":1840},"partialState":{"h":6,"t":36,"tokens":[8964,8432,9061,7847],"delegation":[7964,7432,8061,6847],"delegatorTokens":9999999955579}},{"ix":76,"action":{"kind":"Undelegate","val":2,"amt":2520},"partialState":{"h":6,"t":36,"tokens":[8964,8432,6541,7847],"delegation":[7964,7432,5541,6847],"delegatorTokens":9999999955579}},{"ix":77,"action":{"kind":"Deliver","chain":"consumer","numPackets":3},"partialState":{"h":5,"t":30,"consumerPower":[null,9771,4938,null],"outstandingDowntime":[true,false,false,false]}},{"ix":78,"action":{"kind":"Deliver","chain":"consumer","numPackets":6},"partialState":{"h":5,"t":30,"consumerPower":[null,9771,4938,null],"outstandingDowntime":[true,false,false,false]}},{"ix":79,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":6,"t":36,"consumerPower":[11500,null,null,7847],"outstandingDowntime":[true,false,false,false]}},{"ix":80,"action":{"kind":"ConsumerSlash","val":0,"infractionHeight":0,"isDowntime":true},"partialState":{"h":6,"t":36,"outstandingDowntime":[true,false,false,false]}},{"ix":81,"action":{"kind":"Delegate","val":2,"amt":3522},"partialState":{"h":6,"t":36,"tokens":[8964,8432,10063,7847],"delegation":[7964,7432,9063,6847],"delegatorTokens":9999999952057}},{"ix":82,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":7,"t":42,"tokens":[8964,8432,10063,7847],"delegation":[7964,7432,9063,6847],"delegatorTokens":9999999952057,"jailed":[null,1000000000000017,null,null],"status":["bonded","unbonding","bonded","unbonding"]}},{"ix":83,"action":{"kind":"Deliver","chain":"consumer","numPackets":4},"partialState":{"h":6,"t":36,"consumerPower":[11500,null,null,7847],"outstandingDowntime":[true,false,false,false]}},{"ix":84,"action":{"kind":"ConsumerSlash","val":0,"infractionHeight":5,"isDowntime":true},"partialState":{"h":6,"t":36,"outstandingDowntime":[true,false,false,false]}},{"ix":85,"action":{"kind":"ConsumerSlash","val":3,"infractionHeight":5,"isDowntime":true},"partialState":{"h":6,"t":36,"outstandingDowntime":[true,false,false,true]}},{"ix":86,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":8,"t":48,"tokens":[8964,8432,10063,7847],"delegation":[7964,7432,9063,6847],"delegatorTokens":9999999952057,"jailed":[null,1000000000000017,null,null],"status":["bonded","unbonding","bonded","unbonding"]}},{"ix":87,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":7,"t":42,"consumerPower":[8964,null,9061,null],"outstandingDowntime":[true,false,false,true]}},{"ix":88,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":89,"action":{"kind":"Deliver","chain":"consumer","numPackets":6},"partialState":{"h":7,"t":42,"consumerPower":[8964,null,9061,null],"outstandingDowntime":[true,false,false,true]}},{"ix":90,"action":{"kind":"Delegate","val":2,"amt":2340},"partialState":{"h":8,"t":48,"tokens":[8964,8432,12403,7847],"delegation":[7964,7432,11403,6847],"delegatorTokens":9999999949717}},{"ix":91,"action":{"kind":"Delegate","val":3,"amt":2539},"partialState":{"h":8,"t":48,"tokens":[8964,8432,12403,10386],"delegation":[7964,7432,11403,9386],"delegatorTokens":9999999947178}},{"ix":92,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":93,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":8,"t":48,"consumerPower":[8964,null,10063,null],"outstandingDowntime":[true,false,false,true]}},{"ix":94,"action":{"kind":"Delegate","val":1,"amt":1193},"partialState":{"h":8,"t":48,"tokens":[8964,9625,12403,10386],"delegation":[7964,8625,11403,9386],"delegatorTokens":9999999945985}},{"ix":95,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":96,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":97,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":9,"t":54,"consumerPower":[8964,null,10063,null],"outstandingDowntime":[true,false,false,true]}},{"ix":98,"action":{"kind":"Undelegate","val":0,"amt":2875},"partialState":{"h":8,"t":48,"tokens":[6089,9625,12403,10386],"delegation":[5089,8625,11403,9386],"delegatorTokens":9999999945985}},{"ix":99,"action":{"kind":"Deliver","chain":"consumer","numPackets":6},"partialState":{"h":9,"t":54,"consumerPower":[8964,null,10063,null],"outstandingDowntime":[true,false,false,true]}},{"ix":100,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":9,"t":54,"tokens":[6089,9625,12403,10386],"delegation":[5089,8625,11403,9386],"delegatorTokens":9999999945985,"jailed":[null,1000000000000017,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":101,"action":{"kind":"Deliver","chain":"provider","numPackets":4},"partialState":{"h":9,"t":54,"tokens":[6089,9625,12403,10386],"delegation":[5089,8625,11403,9386],"delegatorTokens":9999999945985,"jailed":[null,1000000000000017,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":102,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":103,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":104,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":10,"t":60,"consumerPower":[8964,null,10063,null],"outstandingDowntime":[true,false,false,true]}},{"ix":105,"action":{"kind":"Deliver","chain":"consumer","numPackets":2},"partialState":{"h":10,"t":60,"consumerPower":[8964,null,10063,null],"outstandingDowntime":[true,false,false,true]}},{"ix":106,"action":{"kind":"Undelegate","val":1,"amt":1781},"partialState":{"h":9,"t":54,"tokens":[6089,7844,12403,10386],"delegation":[5089,6844,11403,9386],"delegatorTokens":9999999945985}},{"ix":107,"action":{"kind":"Undelegate","val":1,"amt":2046},"partialState":{"h":9,"t":54,"tokens":[6089,5798,12403,10386],"delegation":[5089,4798,11403,9386],"delegatorTokens":9999999945985}},{"ix":108,"action":{"kind":"Deliver","chain":"provider","numPackets":1},"partialState":{"h":9,"t":54,"tokens":[6089,5798,12403,10386],"delegation":[5089,4798,11403,9386],"delegatorTokens":9999999945985,"jailed":[null,1000000000000017,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":109,"action":{"kind":"Delegate","val":0,"amt":3613},"partialState":{"h":9,"t":54,"tokens":[9702,5798,12403,10386],"delegation":[8702,4798,11403,9386],"delegatorTokens":9999999942372}},{"ix":110,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":111,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":11,"t":66,"consumerPower":[8964,null,10063,null],"outstandingDowntime":[true,false,false,true]}},{"ix":112,"action":{"kind":"Deliver","chain":"provider","numPackets":5},"partialState":{"h":9,"t":54,"tokens":[9702,5798,12403,10386],"delegation":[8702,4798,11403,9386],"delegatorTokens":9999999942372,"jailed":[null,1000000000000017,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":113,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":114,"action":{"kind":"Undelegate","val":1,"amt":4417},"partialState":{"h":9,"t":54,"tokens":[9702,1381,12403,10386],"delegation":[8702,381,11403,9386],"delegatorTokens":9999999942372}},{"ix":115,"action":{"kind":"Undelegate","val":1,"amt":1122},"partialState":{"h":9,"t":54,"tokens":[9702,1381,12403,10386],"delegation":[8702,381,11403,9386],"delegatorTokens":9999999942372}},{"ix":116,"action":{"kind":"Undelegate","val":2,"amt":2029},"partialState":{"h":9,"t":54,"tokens":[9702,1381,10374,10386],"delegation":[8702,381,9374,9386],"delegatorTokens":9999999942372}},{"ix":117,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":118,"action":{"kind":"Undelegate","val":3,"amt":2289},"partialState":{"h":9,"t":54,"tokens":[9702,1381,10374,8097],"delegation":[8702,381,9374,7097],"delegatorTokens":9999999942372}},{"ix":119,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":120,"action":{"kind":"Undelegate","val":1,"amt":3344},"partialState":{"h":9,"t":54,"tokens":[9702,1381,10374,8097],"delegation":[8702,381,9374,7097],"delegatorTokens":9999999942372}},{"ix":121,"action":{"kind":"Undelegate","val":3,"amt":4292},"partialState":{"h":9,"t":54,"tokens":[9702,1381,10374,3805],"delegation":[8702,381,9374,2805],"delegatorTokens":9999999942372}},{"ix":122,"action":{"kind":"Deliver","chain":"provider","numPackets":6},"partialState":{"h":9,"t":54,"tokens":[9702,1381,10374,3805],"delegation":[8702,381,9374,2805],"delegatorTokens":9999999942372,"jailed":[null,1000000000000017,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":123,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":10,"t":60,"tokens":[9702,1381,10374,3805],"delegation":[8702,381,9374,2805],"delegatorTokens":9999999942372,"jailed":[1000000000000053,1000000000000017,null,1000000000000053],"status":["bonded","unbonding","bonded","unbonding"]}},{"ix":124,"action":{"kind":"Deliver","chain":"provider","numPackets":1},"partialState":{"h":10,"t":60,"tokens":[9702,1381,10374,3805],"delegation":[8702,381,9374,2805],"delegatorTokens":9999999942372,"jailed":[1000000000000053,1000000000000017,null,1000000000000053],"status":["bonded","unbonding","bonded","unbonding"]}},{"ix":125,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":126,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":127,"action":{"kind":"Deliver","chain":"consumer","numPackets":2},"partialState":{"h":11,"t":66,"consumerPower":[8964,null,10063,null],"outstandingDowntime":[true,false,false,true]}},{"ix":128,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":11,"t":66,"tokens":[9702,1381,10374,3805],"delegation":[8702,381,9374,2805],"delegatorTokens":9999999942372,"jailed":[1000000000000053,1000000000000017,null,1000000000000053],"status":["unbonding","unbonding","bonded","unbonding"]}},{"ix":129,"action":{"kind":"Delegate","val":3,"amt":3331},"partialState":{"h":11,"t":66,"tokens":[9702,1381,10374,7136],"delegation":[8702,381,9374,6136],"delegatorTokens":9999999939041}},{"ix":130,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":12,"t":72,"consumerPower":[null,null,12403,10386],"outstandingDowntime":[true,false,false,true]}},{"ix":131,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":132,"action":{"kind":"Undelegate","val":3,"amt":3404},"partialState":{"h":11,"t":66,"tokens":[9702,1381,10374,3732],"delegation":[8702,381,9374,2732],"delegatorTokens":9999999939041}},{"ix":133,"action":{"kind":"Undelegate","val":2,"amt":4412},"partialState":{"h":11,"t":66,"tokens":[9702,1381,5962,3732],"delegation":[8702,381,4962,2732],"delegatorTokens":9999999939041}},{"ix":134,"action":{"kind":"Delegate","val":1,"amt":3110},"partialState":{"h":11,"t":66,"tokens":[9702,4491,5962,3732],"delegation":[8702,3491,4962,2732],"delegatorTokens":9999999935931}},{"ix":135,"action":{"kind":"Undelegate","val":1,"amt":2951},"partialState":{"h":11,"t":66,"tokens":[9702,1540,5962,3732],"delegation":[8702,540,4962,2732],"delegatorTokens":9999999935931}},{"ix":136,"action":{"kind":"Delegate","val":0,"amt":3488},"partialState":{"h":11,"t":66,"tokens":[13190,1540,5962,3732],"delegation":[12190,540,4962,2732],"delegatorTokens":9999999932443}},{"ix":137,"action":{"kind":"Undelegate","val":1,"amt":2938},"partialState":{"h":11,"t":66,"tokens":[13190,1540,5962,3732],"delegation":[12190,540,4962,2732],"delegatorTokens":9999999932443}},{"ix":138,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":139,"action":{"kind":"Undelegate","val":0,"amt":4534},"partialState":{"h":11,"t":66,"tokens":[8656,1540,5962,3732],"delegation":[7656,540,4962,2732],"delegatorTokens":9999999932443}},{"ix":140,"action":{"kind":"Deliver","chain":"consumer","numPackets":6},"partialState":{"h":12,"t":72,"consumerPower":[null,null,12403,10386],"outstandingDowntime":[false,false,false,false]}},{"ix":141,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":142,"action":{"kind":"Undelegate","val":2,"amt":1501},"partialState":{"h":11,"t":66,"tokens":[8656,1540,4461,3732],"delegation":[7656,540,3461,2732],"delegatorTokens":9999999932443}},{"ix":143,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":13,"t":78,"consumerPower":[9702,null,10374,null],"outstandingDowntime":[false,false,false,false]}},{"ix":144,"action":{"kind":"Delegate","val":1,"amt":1548},"partialState":{"h":11,"t":66,"tokens":[8656,3088,4461,3732],"delegation":[7656,2088,3461,2732],"delegatorTokens":9999999930895}},{"ix":145,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":12,"t":72,"tokens":[8656,3088,4461,3732],"delegation":[7656,2088,3461,2732],"delegatorTokens":9999999930895,"jailed":[1000000000000053,1000000000000017,null,1000000000000053],"status":["unbonding","unbonding","bonded","unbonding"]}},{"ix":146,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":13,"t":78,"tokens":[8656,3088,4461,3732],"delegation":[7656,2088,3461,2732],"delegatorTokens":9999999930895,"jailed":[1000000000000053,1000000000000017,null,1000000000000053],"status":["unbonding","unbonding","bonded","unbonding"]}},{"ix":147,"action":{"kind":"Undelegate","val":2,"amt":3819},"partialState":{"h":13,"t":78,"tokens":[8656,3088,4461,3732],"delegation":[7656,2088,3461,2732],"delegatorTokens":9999999930895}},{"ix":148,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":14,"t":84,"tokens":[8656,3088,4461,3732],"delegation":[7656,2088,3461,2732],"delegatorTokens":9999999930895,"jailed":[1000000000000053,1000000000000017,null,1000000000000053],"status":["unbonding","unbonding","bonded","unbonding"]}},{"ix":149,"action":{"kind":"Delegate","val":0,"amt":2637},"partialState":{"h":14,"t":84,"tokens":[11293,3088,4461,3732],"delegation":[10293,2088,3461,2732],"delegatorTokens":9999999928258}},{"ix":150,"action":{"kind":"Delegate","val":3,"amt":2314},"partialState":{"h":14,"t":84,"tokens":[11293,3088,4461,6046],"delegation":[10293,2088,3461,5046],"delegatorTokens":9999999925944}},{"ix":151,"action":{"kind":"Undelegate","val":3,"amt":1001},"partialState":{"h":14,"t":84,"tokens":[11293,3088,4461,5045],"delegation":[10293,2088,3461,4045],"delegatorTokens":9999999925944}},{"ix":152,"action":{"kind":"Delegate","val":3,"amt":1459},"partialState":{"h":14,"t":84,"tokens":[11293,3088,4461,6504],"delegation":[10293,2088,3461,5504],"delegatorTokens":9999999924485}},{"ix":153,"action":{"kind":"Deliver","chain":"provider","numPackets":3},"partialState":{"h":14,"t":84,"tokens":[11293,3088,4461,6504],"delegation":[10293,2088,3461,5504],"delegatorTokens":9999999924485,"jailed":[1000000000000053,1000000000000017,null,1000000000000053],"status":["unbonding","unbonding","bonded","unbonding"]}},{"ix":154,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":155,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":14,"t":84,"consumerPower":[9702,null,10374,null],"outstandingDowntime":[false,false,false,false]}},{"ix":156,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":157,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":158,"action":{"kind":"Deliver","chain":"consumer","numPackets":2},"partialState":{"h":14,"t":84,"consumerPower":[9702,null,10374,null],"outstandingDowntime":[false,false,false,false]}},{"ix":159,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":15,"t":90,"consumerPower":[null,null,4461,null],"outstandingDowntime":[false,false,false,false]}},{"ix":160,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":161,"action":{"kind":"Deliver","chain":"provider","numPackets":2},"partialState":{"h":14,"t":84,"tokens":[11293,3088,4461,6504],"delegation":[10293,2088,3461,5504],"delegatorTokens":9999999924485,"jailed":[1000000000000053,1000000000000017,null,1000000000000053],"status":["unbonding","unbonding","bonded","unbonding"]}},{"ix":162,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":15,"t":90,"tokens":[11293,3088,4461,6504],"delegation":[10293,2088,3461,5504],"delegatorTokens":9999999928061,"jailed":[1000000000000053,1000000000000017,null,1000000000000053],"status":["unbonding","unbonding","bonded","unbonding"]}},{"ix":163,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":16,"t":96,"consumerPower":[null,null,4461,null],"outstandingDowntime":[false,false,false,false]}},{"ix":164,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":165,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":16,"t":96,"tokens":[11293,3088,4461,6504],"delegation":[10293,2088,3461,5504],"delegatorTokens":9999999928061,"jailed":[1000000000000053,1000000000000017,null,1000000000000053],"status":["unbonding","unbonding","bonded","unbonding"]}},{"ix":166,"action":{"kind":"Delegate","val":2,"amt":1726},"partialState":{"h":16,"t":96,"tokens":[11293,3088,6187,6504],"delegation":[10293,2088,5187,5504],"delegatorTokens":9999999926335}},{"ix":167,"action":{"kind":"Deliver","chain":"consumer","numPackets":2},"partialState":{"h":16,"t":96,"consumerPower":[null,null,4461,null],"outstandingDowntime":[false,false,false,false]}},{"ix":168,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":169,"action":{"kind":"Delegate","val":2,"amt":4057},"partialState":{"h":16,"t":96,"tokens":[11293,3088,10244,6504],"delegation":[10293,2088,9244,5504],"delegatorTokens":9999999922278}},{"ix":170,"action":{"kind":"Deliver","chain":"consumer","numPackets":5},"partialState":{"h":16,"t":96,"consumerPower":[null,null,4461,null],"outstandingDowntime":[false,false,false,false]}},{"ix":171,"action":{"kind":"Deliver","chain":"consumer","numPackets":1},"partialState":{"h":16,"t":96,"consumerPower":[null,null,4461,null],"outstandingDowntime":[false,false,false,false]}},{"ix":172,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":173,"action":{"kind":"Undelegate","val":0,"amt":4435},"partialState":{"h":16,"t":96,"tokens":[6858,3088,10244,6504],"delegation":[5858,2088,9244,5504],"delegatorTokens":9999999922278}},{"ix":174,"action":{"kind":"Delegate","val":0,"amt":2931},"partialState":{"h":16,"t":96,"tokens":[9789,3088,10244,6504],"delegation":[8789,2088,9244,5504],"delegatorTokens":9999999919347}},{"ix":175,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":17,"t":102,"consumerPower":[null,null,4461,null],"outstandingDowntime":[false,false,false,false]}},{"ix":176,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":18,"t":108,"consumerPower":[null,null,4461,null],"outstandingDowntime":[false,false,false,false]}},{"ix":177,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":178,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":19,"t":114,"consumerPower":[null,null,4461,null],"outstandingDowntime":[false,false,false,false]}},{"ix":179,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":180,"action":{"kind":"Delegate","val":0,"amt":3659},"partialState":{"h":16,"t":96,"tokens":[13448,3088,10244,6504],"delegation":[12448,2088,9244,5504],"delegatorTokens":9999999915688}},{"ix":181,"action":{"kind":"Undelegate","val":1,"amt":4569},"partialState":{"h":16,"t":96,"tokens":[13448,3088,10244,6504],"delegation":[12448,2088,9244,5504],"delegatorTokens":9999999915688}},{"ix":182,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":17,"t":102,"tokens":[13448,3088,10244,6504],"delegation":[12448,2088,9244,5504],"delegatorTokens":9999999915688,"jailed":[1000000000000053,1000000000000017,null,1000000000000053],"status":["unbonding","unbonding","bonded","unbonding"]}},{"ix":183,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":184,"action":{"kind":"Deliver","chain":"provider","numPackets":6},"partialState":{"h":17,"t":102,"tokens":[13448,3088,10244,6504],"delegation":[12448,2088,9244,5504],"delegatorTokens":9999999915688,"jailed":[1000000000000053,1000000000000017,null,1000000000000053],"status":["unbonding","unbonding","bonded","unbonding"]}},{"ix":185,"action":{"kind":"Undelegate","val":0,"amt":2382},"partialState":{"h":17,"t":102,"tokens":[11066,3088,10244,6504],"delegation":[10066,2088,9244,5504],"delegatorTokens":9999999915688}},{"ix":186,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":20,"t":120,"consumerPower":[null,null,4461,null],"outstandingDowntime":[false,false,false,false]}},{"ix":187,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":21,"t":126,"consumerPower":[null,null,4461,null],"outstandingDowntime":[false,false,false,false]}},{"ix":188,"action":{"kind":"Undelegate","val":0,"amt":2431},"partialState":{"h":17,"t":102,"tokens":[8635,3088,10244,6504],"delegation":[7635,2088,9244,5504],"delegatorTokens":9999999915688}},{"ix":189,"action":{"kind":"Deliver","chain":"consumer","numPackets":4},"partialState":{"h":21,"t":126,"consumerPower":[null,null,4461,null],"outstandingDowntime":[false,false,false,false]}},{"ix":190,"action":{"kind":"Deliver","chain":"consumer","numPackets":6},"partialState":{"h":21,"t":126,"consumerPower":[null,null,4461,null],"outstandingDowntime":[false,false,false,false]}},{"ix":191,"action":{"kind":"Delegate","val":1,"amt":2431},"partialState":{"h":17,"t":102,"tokens":[8635,5519,10244,6504],"delegation":[7635,4519,9244,5504],"delegatorTokens":9999999913257}},{"ix":192,"action":{"kind":"Delegate","val":2,"amt":1643},"partialState":{"h":17,"t":102,"tokens":[8635,5519,11887,6504],"delegation":[7635,4519,10887,5504],"delegatorTokens":9999999911614}},{"ix":193,"action":{"kind":"Delegate","val":0,"amt":4001},"partialState":{"h":17,"t":102,"tokens":[12636,5519,11887,6504],"delegation":[11636,4519,10887,5504],"delegatorTokens":9999999907613}},{"ix":194,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":18,"t":108,"tokens":[12636,5519,11887,6504],"delegation":[11636,4519,10887,5504],"delegatorTokens":9999999926314,"jailed":[1000000000000053,1000000000000017,null,1000000000000053],"status":["unbonding","unbonding","bonded","unbonding"]}},{"ix":195,"action":{"kind":"Deliver","chain":"consumer","numPackets":2},"partialState":{"h":21,"t":126,"consumerPower":[null,null,4461,null],"outstandingDowntime":[false,false,false,false]}},{"ix":196,"action":{"kind":"Undelegate","val":1,"amt":3432},"partialState":{"h":18,"t":108,"tokens":[12636,2087,11887,6504],"delegation":[11636,1087,10887,5504],"delegatorTokens":9999999926314}},{"ix":197,"action":{"kind":"Deliver","chain":"provider","numPackets":4},"partialState":{"h":18,"t":108,"tokens":[12636,2087,11887,6504],"delegation":[11636,1087,10887,5504],"delegatorTokens":9999999926314,"jailed":[1000000000000053,1000000000000017,null,1000000000000053],"status":["unbonding","unbonding","bonded","unbonding"]}},{"ix":198,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":19,"t":114,"tokens":[12636,2087,11887,6504],"delegation":[11636,1087,10887,5504],"delegatorTokens":9999999930674,"jailed":[1000000000000053,1000000000000017,null,1000000000000053],"status":["unbonding","unbonded","bonded","unbonding"]}},{"ix":199,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":20,"t":120,"tokens":[12636,2087,11887,6504],"delegation":[11636,1087,10887,5504],"delegatorTokens":9999999930674,"jailed":[1000000000000053,1000000000000017,null,1000000000000053],"status":["unbonding","unbonded","bonded","unbonding"]}}],"events":["insufficient_shares","insufficient_shares","send_downtime_slash_request","send_double_sign_slash_request","insufficient_shares","more_than_one_third_val_power_change","send_vsc_without_downtime_ack","more_than_one_third_val_power_change","rebond_unval","send_vsc_without_downtime_ack","receive_double_sign_slash_request","send_double_sign_slash_request","more_than_one_third_val_power_change","receive_downtime_slash_request","jail","send_vsc_with_downtime_ack","insufficient_shares","insufficient_shares","consumer_del_val","consumer_update_val","consumer_add_val","send_double_sign_slash_request","insufficient_shares","more_than_one_third_val_power_change","rebond_unval","send_vsc_without_downtime_ack","receive_downtime_slash_ack","insufficient_shares","send_double_sign_slash_request","send_downtime_slash_request","more_than_one_third_val_power_change","rebond_unval","send_vsc_without_downtime_ack","send_double_sign_slash_request","consumer_add_val","consumer_del_val","consumer_del_val","consumer_add_val","downtime_slash_request_outstanding","send_vsc_without_downtime_ack","downtime_slash_request_outstanding","send_downtime_slash_request","consumer_update_val","consumer_add_val","consumer_del_val","consumer_update_val","more_than_one_third_val_power_change","rebond_unval","send_vsc_without_downtime_ack","receive_double_sign_slash_request","receive_double_sign_slash_request","receive_double_sign_slash_request","receive_double_sign_slash_request","insufficient_shares","insufficient_shares","more_than_one_third_val_power_change","rebond_unval","receive_downtime_slash_request","jail","receive_downtime_slash_request","jail","send_vsc_with_downtime_ack","send_vsc_without_downtime_ack","consumer_del_val","consumer_update_val","consumer_add_val","insufficient_shares","receive_downtime_slash_ack","receive_downtime_slash_ack","consumer_add_val","consumer_update_val","consumer_del_val","send_vsc_without_downtime_ack","insufficient_shares","some_undels_expired_but_not_completed","consumer_send_maturation","consumer_send_maturation","consumer_send_maturation","consumer_send_maturation","consumer_del_val","consumer_update_val","complete_undel_immediate","send_vsc_not_because_change","send_vsc_without_downtime_ack","consumer_send_maturation","some_undels_expired_but_not_completed","consumer_send_maturation","insufficient_shares","some_undels_expired_but_not_completed","send_vsc_without_downtime_ack","consumer_send_maturation","some_undels_expired_but_not_completed","complete_undel_immediate","complete_undel_immediate","complete_undel_immediate","complete_undel_immediate","complete_undel_immediate","complete_undel_immediate","set_unval_hold_false","complete_undel_immediate","set_undel_hold_false","set_undel_hold_false","send_vsc_without_downtime_ack","complete_unval_in_endblock","complete_undel_in_endblock","send_vsc_not_because_change","send_vsc_without_downtime_ack"]},{"meta":{"commit":"7ffd0c04e4205cbc9caf212abfe6c59ee43153bf"},"constants":{"P":"provider","C":"consumer","UNBONDING_SECONDS_P":70,"UNBONDING_SECONDS_C":50,"TRUSTING_SECONDS":49,"NUM_VALIDATORS":4,"MAX_VALIDATORS":2,"SLASH_DOUBLESIGN":0,"SLASH_DOWNTIME":0,"JAIL_SECONDS":999999999999999,"BLOCK_SECONDS":6,"INITIAL_DELEGATOR_TOKENS":10000000000000,"DELEGATE_AMT_MIN":1000,"DELEGATE_AMT_MAX":5000,"UNDELEGATE_AMT_MIN":1000,"UNDELEGATE_AMT_MAX":5000,"ISDOWNTIME_PROBABILITY":0.5,"MAX_NUM_PACKETS_FOR_DELIVER":6},"actions":[{"ix":0,"action":{"kind":"Delegate","val":2,"amt":3521},"partialState":{"h":1,"t":6,"tokens":[5000,4000,6521,2000],"delegation":[4000,3000,5521,1000],"delegatorTokens":9999999996479}},{"ix":1,"action":{"kind":"Deliver","chain":"provider","numPackets":1},"partialState":{"h":1,"t":6,"tokens":[5000,4000,6521,2000],"delegation":[4000,3000,5521,1000],"delegatorTokens":9999999996479,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":2,"action":{"kind":"Delegate","val":1,"amt":2108},"partialState":{"h":1,"t":6,"tokens":[5000,6108,6521,2000],"delegation":[4000,5108,5521,1000],"delegatorTokens":9999999994371}},{"ix":3,"action":{"kind":"Deliver","chain":"consumer","numPackets":3},"partialState":{"h":1,"t":6,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":4,"action":{"kind":"Undelegate","val":3,"amt":1406},"partialState":{"h":1,"t":6,"tokens":[5000,6108,6521,2000],"delegation":[4000,5108,5521,1000],"delegatorTokens":9999999994371}},{"ix":5,"action":{"kind":"Undelegate","val":0,"amt":1349},"partialState":{"h":1,"t":6,"tokens":[3651,6108,6521,2000],"delegation":[2651,5108,5521,1000],"delegatorTokens":9999999994371}},{"ix":6,"action":{"kind":"Delegate","val":1,"amt":1126},"partialState":{"h":1,"t":6,"tokens":[3651,7234,6521,2000],"delegation":[2651,6234,5521,1000],"delegatorTokens":9999999993245}},{"ix":7,"action":{"kind":"Delegate","val":0,"amt":3638},"partialState":{"h":1,"t":6,"tokens":[7289,7234,6521,2000],"delegation":[6289,6234,5521,1000],"delegatorTokens":9999999989607}},{"ix":8,"action":{"kind":"Delegate","val":2,"amt":2183},"partialState":{"h":1,"t":6,"tokens":[7289,7234,8704,2000],"delegation":[6289,6234,7704,1000],"delegatorTokens":9999999987424}},{"ix":9,"action":{"kind":"Delegate","val":3,"amt":3378},"partialState":{"h":1,"t":6,"tokens":[7289,7234,8704,5378],"delegation":[6289,6234,7704,4378],"delegatorTokens":9999999984046}},{"ix":10,"action":{"kind":"Undelegate","val":3,"amt":2105},"partialState":{"h":1,"t":6,"tokens":[7289,7234,8704,3273],"delegation":[6289,6234,7704,2273],"delegatorTokens":9999999984046}},{"ix":11,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":2,"t":12,"tokens":[7289,7234,8704,3273],"delegation":[6289,6234,7704,2273],"delegatorTokens":9999999984046,"jailed":[null,null,null,null],"status":["bonded","unbonding","bonded","unbonded"]}},{"ix":12,"action":{"kind":"Delegate","val":2,"amt":4380},"partialState":{"h":2,"t":12,"tokens":[7289,7234,13084,3273],"delegation":[6289,6234,12084,2273],"delegatorTokens":9999999979666}},{"ix":13,"action":{"kind":"Undelegate","val":0,"amt":4401},"partialState":{"h":2,"t":12,"tokens":[2888,7234,13084,3273],"delegation":[1888,6234,12084,2273],"delegatorTokens":9999999979666}},{"ix":14,"action":{"kind":"Deliver","chain":"consumer","numPackets":4},"partialState":{"h":1,"t":6,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":15,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":3,"t":18,"tokens":[2888,7234,13084,3273],"delegation":[1888,6234,12084,2273],"delegatorTokens":9999999979666,"jailed":[null,null,null,null],"status":["unbonding","bonded","bonded","unbonded"]}},{"ix":16,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":17,"action":{"kind":"ConsumerSlash","val":2,"infractionHeight":0,"isDowntime":true},"partialState":{"h":1,"t":6,"outstandingDowntime":[false,false,true,false]}},{"ix":18,"action":{"kind":"Deliver","chain":"consumer","numPackets":3},"partialState":{"h":1,"t":6,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,false,true,false]}},{"ix":19,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":20,"action":{"kind":"Undelegate","val":0,"amt":3835},"partialState":{"h":3,"t":18,"tokens":[2888,7234,13084,3273],"delegation":[1888,6234,12084,2273],"delegatorTokens":9999999979666}},{"ix":21,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":2,"t":12,"consumerPower":[7289,null,8704,null],"outstandingDowntime":[false,false,true,false]}},{"ix":22,"action":{"kind":"Deliver","chain":"consumer","numPackets":6},"partialState":{"h":2,"t":12,"consumerPower":[7289,null,8704,null],"outstandingDowntime":[false,false,true,false]}},{"ix":23,"action":{"kind":"ConsumerSlash","val":2,"infractionHeight":1,"isDowntime":true},"partialState":{"h":2,"t":12,"outstandingDowntime":[false,false,true,false]}},{"ix":24,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":25,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":4,"t":24,"tokens":[2888,7234,13084,3273],"delegation":[1888,6234,12084,2273],"delegatorTokens":9999999979666,"jailed":[null,null,null,null],"status":["unbonding","bonded","bonded","unbonded"]}},{"ix":26,"action":{"kind":"Deliver","chain":"consumer","numPackets":5},"partialState":{"h":2,"t":12,"consumerPower":[7289,null,8704,null],"outstandingDowntime":[false,false,true,false]}},{"ix":27,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":28,"action":{"kind":"ConsumerSlash","val":2,"infractionHeight":0,"isDowntime":true},"partialState":{"h":2,"t":12,"outstandingDowntime":[false,false,true,false]}},{"ix":29,"action":{"kind":"Deliver","chain":"consumer","numPackets":5},"partialState":{"h":2,"t":12,"consumerPower":[7289,null,8704,null],"outstandingDowntime":[false,false,true,false]}},{"ix":30,"action":{"kind":"Deliver","chain":"consumer","numPackets":1},"partialState":{"h":2,"t":12,"consumerPower":[7289,null,8704,null],"outstandingDowntime":[false,false,true,false]}},{"ix":31,"action":{"kind":"Deliver","chain":"consumer","numPackets":1},"partialState":{"h":2,"t":12,"consumerPower":[7289,null,8704,null],"outstandingDowntime":[false,false,true,false]}},{"ix":32,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":33,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":34,"action":{"kind":"Undelegate","val":1,"amt":4960},"partialState":{"h":4,"t":24,"tokens":[2888,2274,13084,3273],"delegation":[1888,1274,12084,2273],"delegatorTokens":9999999979666}},{"ix":35,"action":{"kind":"Delegate","val":3,"amt":3721},"partialState":{"h":4,"t":24,"tokens":[2888,2274,13084,6994],"delegation":[1888,1274,12084,5994],"delegatorTokens":9999999975945}},{"ix":36,"action":{"kind":"Deliver","chain":"consumer","numPackets":2},"partialState":{"h":2,"t":12,"consumerPower":[7289,null,8704,null],"outstandingDowntime":[false,false,true,false]}},{"ix":37,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":38,"action":{"kind":"Delegate","val":1,"amt":3347},"partialState":{"h":4,"t":24,"tokens":[2888,5621,13084,6994],"delegation":[1888,4621,12084,5994],"delegatorTokens":9999999972598}},{"ix":39,"action":{"kind":"Deliver","chain":"provider","numPackets":1},"partialState":{"h":4,"t":24,"tokens":[2888,5621,13084,6994],"delegation":[1888,4621,12084,5994],"delegatorTokens":9999999972598,"jailed":[null,null,null,null],"status":["unbonding","bonded","bonded","unbonded"]}},{"ix":40,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":3,"t":18,"consumerPower":[null,7234,13084,null],"outstandingDowntime":[false,false,true,false]}},{"ix":41,"action":{"kind":"Delegate","val":1,"amt":4590},"partialState":{"h":4,"t":24,"tokens":[2888,10211,13084,6994],"delegation":[1888,9211,12084,5994],"delegatorTokens":9999999968008}},{"ix":42,"action":{"kind":"Deliver","chain":"provider","numPackets":4},"partialState":{"h":4,"t":24,"tokens":[2888,10211,13084,6994],"delegation":[1888,9211,12084,5994],"delegatorTokens":9999999968008,"jailed":[null,null,null,null],"status":["unbonding","bonded","bonded","unbonded"]}},{"ix":43,"action":{"kind":"Deliver","chain":"provider","numPackets":3},"partialState":{"h":4,"t":24,"tokens":[2888,10211,13084,6994],"delegation":[1888,9211,12084,5994],"delegatorTokens":9999999968008,"jailed":[null,null,null,null],"status":["unbonding","bonded","bonded","unbonded"]}},{"ix":44,"action":{"kind":"Undelegate","val":2,"amt":3266},"partialState":{"h":4,"t":24,"tokens":[2888,10211,9818,6994],"delegation":[1888,9211,8818,5994],"delegatorTokens":9999999968008}},{"ix":45,"action":{"kind":"ConsumerSlash","val":0,"infractionHeight":2,"isDowntime":false},"partialState":{"h":3,"t":18,"outstandingDowntime":[false,false,true,false]}},{"ix":46,"action":{"kind":"ConsumerSlash","val":0,"infractionHeight":2,"isDowntime":false},"partialState":{"h":3,"t":18,"outstandingDowntime":[false,false,true,false]}},{"ix":47,"action":{"kind":"Undelegate","val":1,"amt":3272},"partialState":{"h":4,"t":24,"tokens":[2888,6939,9818,6994],"delegation":[1888,5939,8818,5994],"delegatorTokens":9999999968008}},{"ix":48,"action":{"kind":"ConsumerSlash","val":0,"infractionHeight":2,"isDowntime":false},"partialState":{"h":3,"t":18,"outstandingDowntime":[false,false,true,false]}},{"ix":49,"action":{"kind":"ConsumerSlash","val":2,"infractionHeight":2,"isDowntime":false},"partialState":{"h":3,"t":18,"outstandingDowntime":[false,false,true,false]}},{"ix":50,"action":{"kind":"ConsumerSlash","val":2,"infractionHeight":0,"isDowntime":true},"partialState":{"h":3,"t":18,"outstandingDowntime":[false,false,true,false]}},{"ix":51,"action":{"kind":"Undelegate","val":1,"amt":4109},"partialState":{"h":4,"t":24,"tokens":[2888,2830,9818,6994],"delegation":[1888,1830,8818,5994],"delegatorTokens":9999999968008}},{"ix":52,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":5,"t":30,"tokens":[2888,2830,9818,6994],"delegation":[1888,1830,8818,5994],"delegatorTokens":9999999968008,"jailed":[null,null,1000000000000023,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":53,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":54,"action":{"kind":"Deliver","chain":"consumer","numPackets":6},"partialState":{"h":3,"t":18,"consumerPower":[null,7234,13084,null],"outstandingDowntime":[false,false,true,false]}},{"ix":55,"action":{"kind":"Deliver","chain":"provider","numPackets":5},"partialState":{"h":5,"t":30,"tokens":[2888,2830,9818,6994],"delegation":[1888,1830,8818,5994],"delegatorTokens":9999999968008,"jailed":[null,null,1000000000000023,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":56,"action":{"kind":"Undelegate","val":0,"amt":3703},"partialState":{"h":5,"t":30,"tokens":[2888,2830,9818,6994],"delegation":[1888,1830,8818,5994],"delegatorTokens":9999999968008}},{"ix":57,"action":{"kind":"Undelegate","val":3,"amt":2242},"partialState":{"h":5,"t":30,"tokens":[2888,2830,9818,4752],"delegation":[1888,1830,8818,3752],"delegatorTokens":9999999968008}},{"ix":58,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":4,"t":24,"consumerPower":[null,7234,13084,null],"outstandingDowntime":[false,false,true,false]}},{"ix":59,"action":{"kind":"Delegate","val":0,"amt":1717},"partialState":{"h":5,"t":30,"tokens":[4605,2830,9818,4752],"delegation":[3605,1830,8818,3752],"delegatorTokens":9999999966291}},{"ix":60,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":61,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":5,"t":30,"consumerPower":[null,7234,13084,null],"outstandingDowntime":[false,false,true,false]}},{"ix":62,"action":{"kind":"Undelegate","val":0,"amt":1351},"partialState":{"h":5,"t":30,"tokens":[3254,2830,9818,4752],"delegation":[2254,1830,8818,3752],"delegatorTokens":9999999966291}},{"ix":63,"action":{"kind":"Delegate","val":2,"amt":3881},"partialState":{"h":5,"t":30,"tokens":[3254,2830,13699,4752],"delegation":[2254,1830,12699,3752],"delegatorTokens":9999999962410}},{"ix":64,"action":{"kind":"Undelegate","val":2,"amt":1515},"partialState":{"h":5,"t":30,"tokens":[3254,2830,12184,4752],"delegation":[2254,1830,11184,3752],"delegatorTokens":9999999962410}},{"ix":65,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":66,"action":{"kind":"Deliver","chain":"consumer","numPackets":6},"partialState":{"h":5,"t":30,"consumerPower":[null,7234,13084,null],"outstandingDowntime":[false,false,true,false]}},{"ix":67,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":6,"t":36,"consumerPower":[null,7234,13084,null],"outstandingDowntime":[false,false,true,false]}},{"ix":68,"action":{"kind":"ConsumerSlash","val":0,"infractionHeight":4,"isDowntime":true},"partialState":{"h":6,"t":36,"outstandingDowntime":[true,false,true,false]}},{"ix":69,"action":{"kind":"Deliver","chain":"provider","numPackets":1},"partialState":{"h":5,"t":30,"tokens":[3254,2830,12184,4752],"delegation":[2254,1830,11184,3752],"delegatorTokens":9999999962410,"jailed":[null,null,1000000000000023,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":70,"action":{"kind":"Undelegate","val":3,"amt":4983},"partialState":{"h":5,"t":30,"tokens":[3254,2830,12184,4752],"delegation":[2254,1830,11184,3752],"delegatorTokens":9999999962410}},{"ix":71,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":7,"t":42,"consumerPower":[null,7234,13084,null],"outstandingDowntime":[true,false,true,false]}},{"ix":72,"action":{"kind":"Delegate","val":0,"amt":1131},"partialState":{"h":5,"t":30,"tokens":[4385,2830,12184,4752],"delegation":[3385,1830,11184,3752],"delegatorTokens":9999999961279}},{"ix":73,"action":{"kind":"Undelegate","val":3,"amt":2310},"partialState":{"h":5,"t":30,"tokens":[4385,2830,12184,2442],"delegation":[3385,1830,11184,1442],"delegatorTokens":9999999961279}},{"ix":74,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":6,"t":36,"tokens":[4385,2830,12184,2442],"delegation":[3385,1830,11184,1442],"delegatorTokens":9999999961279,"jailed":[null,null,1000000000000023,null],"status":["bonded","bonded","unbonding","unbonding"]}},{"ix":75,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":7,"t":42,"tokens":[4385,2830,12184,2442],"delegation":[3385,1830,11184,1442],"delegatorTokens":9999999961279,"jailed":[null,null,1000000000000023,null],"status":["bonded","bonded","unbonding","unbonding"]}},{"ix":76,"action":{"kind":"Deliver","chain":"consumer","numPackets":4},"partialState":{"h":7,"t":42,"consumerPower":[null,7234,13084,null],"outstandingDowntime":[true,false,false,false]}},{"ix":77,"action":{"kind":"Delegate","val":3,"amt":4787},"partialState":{"h":7,"t":42,"tokens":[4385,2830,12184,7229],"delegation":[3385,1830,11184,6229],"delegatorTokens":9999999956492}},{"ix":78,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":79,"action":{"kind":"Undelegate","val":0,"amt":2168},"partialState":{"h":7,"t":42,"tokens":[2217,2830,12184,7229],"delegation":[1217,1830,11184,6229],"delegatorTokens":9999999956492}},{"ix":80,"action":{"kind":"Undelegate","val":3,"amt":2348},"partialState":{"h":7,"t":42,"tokens":[2217,2830,12184,4881],"delegation":[1217,1830,11184,3881],"delegatorTokens":9999999956492}},{"ix":81,"action":{"kind":"Delegate","val":2,"amt":3060},"partialState":{"h":7,"t":42,"tokens":[2217,2830,15244,4881],"delegation":[1217,1830,14244,3881],"delegatorTokens":9999999953432}},{"ix":82,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":83,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":84,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":85,"action":{"kind":"Deliver","chain":"provider","numPackets":1},"partialState":{"h":7,"t":42,"tokens":[2217,2830,15244,4881],"delegation":[1217,1830,14244,3881],"delegatorTokens":9999999953432,"jailed":[null,null,1000000000000023,null],"status":["bonded","bonded","unbonding","unbonding"]}},{"ix":86,"action":{"kind":"Delegate","val":2,"amt":2227},"partialState":{"h":7,"t":42,"tokens":[2217,2830,17471,4881],"delegation":[1217,1830,16471,3881],"delegatorTokens":9999999951205}},{"ix":87,"action":{"kind":"Delegate","val":2,"amt":4436},"partialState":{"h":7,"t":42,"tokens":[2217,2830,21907,4881],"delegation":[1217,1830,20907,3881],"delegatorTokens":9999999946769}},{"ix":88,"action":{"kind":"ConsumerSlash","val":1,"infractionHeight":6,"isDowntime":false},"partialState":{"h":7,"t":42,"outstandingDowntime":[true,false,false,false]}},{"ix":89,"action":{"kind":"Delegate","val":1,"amt":3478},"partialState":{"h":7,"t":42,"tokens":[2217,6308,21907,4881],"delegation":[1217,5308,20907,3881],"delegatorTokens":9999999943291}},{"ix":90,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":91,"action":{"kind":"Deliver","chain":"provider","numPackets":1},"partialState":{"h":7,"t":42,"tokens":[2217,6308,21907,4881],"delegation":[1217,5308,20907,3881],"delegatorTokens":9999999943291,"jailed":[null,null,1000000000000023,null],"status":["bonded","bonded","unbonding","unbonding"]}},{"ix":92,"action":{"kind":"Deliver","chain":"consumer","numPackets":3},"partialState":{"h":7,"t":42,"consumerPower":[null,7234,13084,null],"outstandingDowntime":[true,false,false,false]}},{"ix":93,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":8,"t":48,"tokens":[2217,6308,21907,4881],"delegation":[1217,5308,20907,3881],"delegatorTokens":9999999943291,"jailed":[null,null,1000000000000023,null],"status":["unbonding","bonded","unbonding","bonded"]}},{"ix":94,"action":{"kind":"Undelegate","val":3,"amt":1742},"partialState":{"h":8,"t":48,"tokens":[2217,6308,21907,3139],"delegation":[1217,5308,20907,2139],"delegatorTokens":9999999943291}},{"ix":95,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":9,"t":54,"tokens":[2217,6308,21907,3139],"delegation":[1217,5308,20907,2139],"delegatorTokens":9999999943291,"jailed":[null,null,1000000000000023,null],"status":["unbonding","bonded","unbonding","bonded"]}},{"ix":96,"action":{"kind":"Undelegate","val":3,"amt":1391},"partialState":{"h":9,"t":54,"tokens":[2217,6308,21907,1748],"delegation":[1217,5308,20907,748],"delegatorTokens":9999999943291}},{"ix":97,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":8,"t":48,"consumerPower":[4385,2830,null,null],"outstandingDowntime":[true,false,false,false]}},{"ix":98,"action":{"kind":"Undelegate","val":0,"amt":4310},"partialState":{"h":9,"t":54,"tokens":[2217,6308,21907,1748],"delegation":[1217,5308,20907,748],"delegatorTokens":9999999943291}},{"ix":99,"action":{"kind":"Undelegate","val":1,"amt":4169},"partialState":{"h":9,"t":54,"tokens":[2217,2139,21907,1748],"delegation":[1217,1139,20907,748],"delegatorTokens":9999999943291}},{"ix":100,"action":{"kind":"Undelegate","val":1,"amt":1752},"partialState":{"h":9,"t":54,"tokens":[2217,2139,21907,1748],"delegation":[1217,1139,20907,748],"delegatorTokens":9999999943291}},{"ix":101,"action":{"kind":"Delegate","val":0,"amt":4536},"partialState":{"h":9,"t":54,"tokens":[6753,2139,21907,1748],"delegation":[5753,1139,20907,748],"delegatorTokens":9999999938755}},{"ix":102,"action":{"kind":"Deliver","chain":"provider","numPackets":4},"partialState":{"h":9,"t":54,"tokens":[6753,2139,21907,1748],"delegation":[5753,1139,20907,748],"delegatorTokens":9999999938755,"jailed":[null,null,1000000000000023,null],"status":["unbonding","bonded","unbonding","bonded"]}},{"ix":103,"action":{"kind":"Deliver","chain":"consumer","numPackets":3},"partialState":{"h":8,"t":48,"consumerPower":[4385,2830,null,null],"outstandingDowntime":[true,false,false,false]}},{"ix":104,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":105,"action":{"kind":"Deliver","chain":"consumer","numPackets":2},"partialState":{"h":8,"t":48,"consumerPower":[4385,2830,null,null],"outstandingDowntime":[true,false,false,false]}},{"ix":106,"action":{"kind":"Undelegate","val":0,"amt":3310},"partialState":{"h":9,"t":54,"tokens":[3443,2139,21907,1748],"delegation":[2443,1139,20907,748],"delegatorTokens":9999999938755}},{"ix":107,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":108,"action":{"kind":"Undelegate","val":3,"amt":4143},"partialState":{"h":9,"t":54,"tokens":[3443,2139,21907,1748],"delegation":[2443,1139,20907,748],"delegatorTokens":9999999938755}},{"ix":109,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":110,"action":{"kind":"Delegate","val":0,"amt":2549},"partialState":{"h":9,"t":54,"tokens":[5992,2139,21907,1748],"delegation":[4992,1139,20907,748],"delegatorTokens":9999999936206}},{"ix":111,"action":{"kind":"Deliver","chain":"consumer","numPackets":4},"partialState":{"h":8,"t":48,"consumerPower":[4385,2830,null,null],"outstandingDowntime":[true,false,false,false]}},{"ix":112,"action":{"kind":"Undelegate","val":1,"amt":1051},"partialState":{"h":9,"t":54,"tokens":[5992,1088,21907,1748],"delegation":[4992,88,20907,748],"delegatorTokens":9999999936206}},{"ix":113,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":114,"action":{"kind":"Undelegate","val":3,"amt":3464},"partialState":{"h":9,"t":54,"tokens":[5992,1088,21907,1748],"delegation":[4992,88,20907,748],"delegatorTokens":9999999936206}},{"ix":115,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":116,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":10,"t":60,"tokens":[5992,1088,21907,1748],"delegation":[4992,88,20907,748],"delegatorTokens":9999999936206,"jailed":[1000000000000053,null,1000000000000023,null],"status":["bonded","unbonding","unbonding","bonded"]}},{"ix":117,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":9,"t":54,"consumerPower":[null,6308,null,4881],"outstandingDowntime":[true,false,false,false]}},{"ix":118,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":119,"action":{"kind":"Deliver","chain":"consumer","numPackets":5},"partialState":{"h":9,"t":54,"consumerPower":[null,6308,null,4881],"outstandingDowntime":[true,false,false,false]}},{"ix":120,"action":{"kind":"Deliver","chain":"consumer","numPackets":4},"partialState":{"h":9,"t":54,"consumerPower":[null,6308,null,4881],"outstandingDowntime":[true,false,false,false]}},{"ix":121,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":122,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":123,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":124,"action":{"kind":"Deliver","chain":"provider","numPackets":2},"partialState":{"h":10,"t":60,"tokens":[5992,1088,21907,1748],"delegation":[4992,88,20907,748],"delegatorTokens":9999999936206,"jailed":[1000000000000053,null,1000000000000023,null],"status":["bonded","unbonding","unbonding","bonded"]}},{"ix":125,"action":{"kind":"Undelegate","val":3,"amt":4088},"partialState":{"h":10,"t":60,"tokens":[5992,1088,21907,1748],"delegation":[4992,88,20907,748],"delegatorTokens":9999999936206}},{"ix":126,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":127,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":10,"t":60,"consumerPower":[null,6308,null,3139],"outstandingDowntime":[true,false,false,false]}},{"ix":128,"action":{"kind":"Undelegate","val":3,"amt":1077},"partialState":{"h":10,"t":60,"tokens":[5992,1088,21907,1748],"delegation":[4992,88,20907,748],"delegatorTokens":9999999936206}},{"ix":129,"action":{"kind":"Delegate","val":1,"amt":3383},"partialState":{"h":10,"t":60,"tokens":[5992,4471,21907,1748],"delegation":[4992,3471,20907,748],"delegatorTokens":9999999932823}},{"ix":130,"action":{"kind":"Undelegate","val":1,"amt":2633},"partialState":{"h":10,"t":60,"tokens":[5992,1838,21907,1748],"delegation":[4992,838,20907,748],"delegatorTokens":9999999932823}},{"ix":131,"action":{"kind":"Deliver","chain":"consumer","numPackets":2},"partialState":{"h":10,"t":60,"consumerPower":[null,6308,null,3139],"outstandingDowntime":[true,false,false,false]}},{"ix":132,"action":{"kind":"Undelegate","val":0,"amt":1525},"partialState":{"h":10,"t":60,"tokens":[4467,1838,21907,1748],"delegation":[3467,838,20907,748],"delegatorTokens":9999999932823}},{"ix":133,"action":{"kind":"Delegate","val":1,"amt":2608},"partialState":{"h":10,"t":60,"tokens":[4467,4446,21907,1748],"delegation":[3467,3446,20907,748],"delegatorTokens":9999999930215}},{"ix":134,"action":{"kind":"Deliver","chain":"provider","numPackets":3},"partialState":{"h":10,"t":60,"tokens":[4467,4446,21907,1748],"delegation":[3467,3446,20907,748],"delegatorTokens":9999999930215,"jailed":[1000000000000053,null,1000000000000023,null],"status":["bonded","unbonding","unbonding","bonded"]}},{"ix":135,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":11,"t":66,"consumerPower":[null,6308,null,3139],"outstandingDowntime":[true,false,false,false]}},{"ix":136,"action":{"kind":"Undelegate","val":2,"amt":2797},"partialState":{"h":10,"t":60,"tokens":[4467,4446,19110,1748],"delegation":[3467,3446,18110,748],"delegatorTokens":9999999930215}},{"ix":137,"action":{"kind":"Undelegate","val":0,"amt":4342},"partialState":{"h":10,"t":60,"tokens":[4467,4446,19110,1748],"delegation":[3467,3446,18110,748],"delegatorTokens":9999999930215}},{"ix":138,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":139,"action":{"kind":"Deliver","chain":"consumer","numPackets":5},"partialState":{"h":11,"t":66,"consumerPower":[null,6308,null,3139],"outstandingDowntime":[true,false,false,false]}},{"ix":140,"action":{"kind":"Delegate","val":1,"amt":1036},"partialState":{"h":10,"t":60,"tokens":[4467,5482,19110,1748],"delegation":[3467,4482,18110,748],"delegatorTokens":9999999929179}},{"ix":141,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":12,"t":72,"consumerPower":[null,6308,null,3139],"outstandingDowntime":[true,false,false,false]}},{"ix":142,"action":{"kind":"Delegate","val":2,"amt":4107},"partialState":{"h":10,"t":60,"tokens":[4467,5482,23217,1748],"delegation":[3467,4482,22217,748],"delegatorTokens":9999999925072}},{"ix":143,"action":{"kind":"Deliver","chain":"consumer","numPackets":1},"partialState":{"h":12,"t":72,"consumerPower":[null,6308,null,3139],"outstandingDowntime":[true,false,false,false]}},{"ix":144,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":11,"t":66,"tokens":[4467,5482,23217,1748],"delegation":[3467,4482,22217,748],"delegatorTokens":9999999925072,"jailed":[1000000000000053,null,1000000000000023,null],"status":["unbonding","bonded","unbonding","bonded"]}},{"ix":145,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":146,"action":{"kind":"Undelegate","val":2,"amt":2034},"partialState":{"h":11,"t":66,"tokens":[4467,5482,21183,1748],"delegation":[3467,4482,20183,748],"delegatorTokens":9999999925072}},{"ix":147,"action":{"kind":"Deliver","chain":"provider","numPackets":2},"partialState":{"h":11,"t":66,"tokens":[4467,5482,21183,1748],"delegation":[3467,4482,20183,748],"delegatorTokens":9999999925072,"jailed":[1000000000000053,null,1000000000000023,null],"status":["unbonding","bonded","unbonding","bonded"]}},{"ix":148,"action":{"kind":"Undelegate","val":0,"amt":4424},"partialState":{"h":11,"t":66,"tokens":[4467,5482,21183,1748],"delegation":[3467,4482,20183,748],"delegatorTokens":9999999925072}},{"ix":149,"action":{"kind":"Undelegate","val":3,"amt":4697},"partialState":{"h":11,"t":66,"tokens":[4467,5482,21183,1748],"delegation":[3467,4482,20183,748],"delegatorTokens":9999999925072}},{"ix":150,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":12,"t":72,"tokens":[4467,5482,21183,1748],"delegation":[3467,4482,20183,748],"delegatorTokens":9999999925072,"jailed":[1000000000000053,null,1000000000000023,null],"status":["unbonding","bonded","unbonding","bonded"]}},{"ix":151,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":13,"t":78,"consumerPower":[null,6308,null,3139],"outstandingDowntime":[true,false,false,false]}},{"ix":152,"action":{"kind":"Undelegate","val":1,"amt":1207},"partialState":{"h":12,"t":72,"tokens":[4467,4275,21183,1748],"delegation":[3467,3275,20183,748],"delegatorTokens":9999999925072}},{"ix":153,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":154,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":155,"action":{"kind":"Delegate","val":0,"amt":3085},"partialState":{"h":12,"t":72,"tokens":[7552,4275,21183,1748],"delegation":[6552,3275,20183,748],"delegatorTokens":9999999921987}},{"ix":156,"action":{"kind":"Delegate","val":3,"amt":4892},"partialState":{"h":12,"t":72,"tokens":[7552,4275,21183,6640],"delegation":[6552,3275,20183,5640],"delegatorTokens":9999999917095}},{"ix":157,"action":{"kind":"Undelegate","val":1,"amt":2659},"partialState":{"h":12,"t":72,"tokens":[7552,1616,21183,6640],"delegation":[6552,616,20183,5640],"delegatorTokens":9999999917095}},{"ix":158,"action":{"kind":"Delegate","val":3,"amt":1224},"partialState":{"h":12,"t":72,"tokens":[7552,1616,21183,7864],"delegation":[6552,616,20183,6864],"delegatorTokens":9999999915871}},{"ix":159,"action":{"kind":"Undelegate","val":0,"amt":1484},"partialState":{"h":12,"t":72,"tokens":[6068,1616,21183,7864],"delegation":[5068,616,20183,6864],"delegatorTokens":9999999915871}},{"ix":160,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":13,"t":78,"tokens":[6068,1616,21183,7864],"delegation":[5068,616,20183,6864],"delegatorTokens":9999999915871,"jailed":[1000000000000053,null,1000000000000023,null],"status":["unbonding","bonded","unbonding","bonded"]}},{"ix":161,"action":{"kind":"Undelegate","val":0,"amt":4782},"partialState":{"h":13,"t":78,"tokens":[1286,1616,21183,7864],"delegation":[286,616,20183,6864],"delegatorTokens":9999999915871}},{"ix":162,"action":{"kind":"Delegate","val":3,"amt":2438},"partialState":{"h":13,"t":78,"tokens":[1286,1616,21183,10302],"delegation":[286,616,20183,9302],"delegatorTokens":9999999913433}},{"ix":163,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":14,"t":84,"consumerPower":[null,6308,null,3139],"outstandingDowntime":[true,false,false,false]}},{"ix":164,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":15,"t":90,"consumerPower":[null,6308,null,3139],"outstandingDowntime":[true,false,false,false]}},{"ix":165,"action":{"kind":"Undelegate","val":1,"amt":1104},"partialState":{"h":13,"t":78,"tokens":[1286,1616,21183,10302],"delegation":[286,616,20183,9302],"delegatorTokens":9999999913433}},{"ix":166,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":167,"action":{"kind":"Undelegate","val":2,"amt":3599},"partialState":{"h":13,"t":78,"tokens":[1286,1616,17584,10302],"delegation":[286,616,16584,9302],"delegatorTokens":9999999913433}},{"ix":168,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":169,"action":{"kind":"Undelegate","val":2,"amt":2467},"partialState":{"h":13,"t":78,"tokens":[1286,1616,15117,10302],"delegation":[286,616,14117,9302],"delegatorTokens":9999999913433}},{"ix":170,"action":{"kind":"Deliver","chain":"consumer","numPackets":4},"partialState":{"h":15,"t":90,"consumerPower":[null,6308,null,3139],"outstandingDowntime":[false,false,false,false]}},{"ix":171,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":16,"t":96,"consumerPower":[null,5482,null,1748],"outstandingDowntime":[false,false,false,false]}},{"ix":172,"action":{"kind":"Deliver","chain":"consumer","numPackets":6},"partialState":{"h":16,"t":96,"consumerPower":[null,5482,null,1748],"outstandingDowntime":[false,false,false,false]}},{"ix":173,"action":{"kind":"Delegate","val":2,"amt":1362},"partialState":{"h":13,"t":78,"tokens":[1286,1616,16479,10302],"delegation":[286,616,15479,9302],"delegatorTokens":9999999912071}},{"ix":174,"action":{"kind":"Undelegate","val":1,"amt":1758},"partialState":{"h":13,"t":78,"tokens":[1286,1616,16479,10302],"delegation":[286,616,15479,9302],"delegatorTokens":9999999912071}},{"ix":175,"action":{"kind":"Deliver","chain":"provider","numPackets":3},"partialState":{"h":13,"t":78,"tokens":[1286,1616,16479,10302],"delegation":[286,616,15479,9302],"delegatorTokens":9999999912071,"jailed":[1000000000000053,null,1000000000000023,null],"status":["unbonding","bonded","unbonding","bonded"]}},{"ix":176,"action":{"kind":"Deliver","chain":"consumer","numPackets":6},"partialState":{"h":16,"t":96,"consumerPower":[null,5482,null,1748],"outstandingDowntime":[false,false,false,false]}},{"ix":177,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":17,"t":102,"consumerPower":[null,5482,null,1748],"outstandingDowntime":[false,false,false,false]}},{"ix":178,"action":{"kind":"Deliver","chain":"consumer","numPackets":3},"partialState":{"h":17,"t":102,"consumerPower":[null,5482,null,1748],"outstandingDowntime":[false,false,false,false]}},{"ix":179,"action":{"kind":"Deliver","chain":"consumer","numPackets":6},"partialState":{"h":17,"t":102,"consumerPower":[null,5482,null,1748],"outstandingDowntime":[false,false,false,false]}},{"ix":180,"action":{"kind":"Undelegate","val":2,"amt":4855},"partialState":{"h":13,"t":78,"tokens":[1286,1616,11624,10302],"delegation":[286,616,10624,9302],"delegatorTokens":9999999912071}},{"ix":181,"action":{"kind":"Deliver","chain":"consumer","numPackets":1},"partialState":{"h":17,"t":102,"consumerPower":[null,5482,null,1748],"outstandingDowntime":[false,false,false,false]}},{"ix":182,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":14,"t":84,"tokens":[1286,1616,11624,10302],"delegation":[286,616,10624,9302],"delegatorTokens":9999999915525,"jailed":[1000000000000053,null,1000000000000023,null],"status":["unbonding","bonded","unbonding","bonded"]}},{"ix":183,"action":{"kind":"Deliver","chain":"provider","numPackets":1},"partialState":{"h":14,"t":84,"tokens":[1286,1616,11624,10302],"delegation":[286,616,10624,9302],"delegatorTokens":9999999915525,"jailed":[1000000000000053,null,1000000000000023,null],"status":["unbonding","bonded","unbonding","bonded"]}},{"ix":184,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":18,"t":108,"consumerPower":[null,5482,null,1748],"outstandingDowntime":[false,false,false,false]}},{"ix":185,"action":{"kind":"Delegate","val":1,"amt":2889},"partialState":{"h":14,"t":84,"tokens":[1286,4505,11624,10302],"delegation":[286,3505,10624,9302],"delegatorTokens":9999999912636}},{"ix":186,"action":{"kind":"Deliver","chain":"provider","numPackets":4},"partialState":{"h":14,"t":84,"tokens":[1286,4505,11624,10302],"delegation":[286,3505,10624,9302],"delegatorTokens":9999999912636,"jailed":[1000000000000053,null,1000000000000023,null],"status":["unbonding","bonded","unbonding","bonded"]}},{"ix":187,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":188,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":19,"t":114,"consumerPower":[null,5482,null,1748],"outstandingDowntime":[false,false,false,false]}},{"ix":189,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":190,"action":{"kind":"Deliver","chain":"provider","numPackets":1},"partialState":{"h":14,"t":84,"tokens":[1286,4505,11624,10302],"delegation":[286,3505,10624,9302],"delegatorTokens":9999999912636,"jailed":[1000000000000053,null,1000000000000023,null],"status":["unbonding","bonded","unbonding","bonded"]}},{"ix":191,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":192,"action":{"kind":"Delegate","val":0,"amt":4972},"partialState":{"h":14,"t":84,"tokens":[6258,4505,11624,10302],"delegation":[5258,3505,10624,9302],"delegatorTokens":9999999907664}},{"ix":193,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":15,"t":90,"tokens":[6258,4505,11624,10302],"delegation":[5258,3505,10624,9302],"delegatorTokens":9999999912065,"jailed":[1000000000000053,null,1000000000000023,null],"status":["unbonding","bonded","unbonding","bonded"]}},{"ix":194,"action":{"kind":"Deliver","chain":"provider","numPackets":6},"partialState":{"h":15,"t":90,"tokens":[6258,4505,11624,10302],"delegation":[5258,3505,10624,9302],"delegatorTokens":9999999912065,"jailed":[1000000000000053,null,1000000000000023,null],"status":["unbonding","bonded","unbonding","bonded"]}},{"ix":195,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":16,"t":96,"tokens":[6258,4505,11624,10302],"delegation":[5258,3505,10624,9302],"delegatorTokens":9999999912065,"jailed":[1000000000000053,null,1000000000000023,null],"status":["unbonding","bonded","unbonding","bonded"]}},{"ix":196,"action":{"kind":"Undelegate","val":2,"amt":3453},"partialState":{"h":16,"t":96,"tokens":[6258,4505,8171,10302],"delegation":[5258,3505,7171,9302],"delegatorTokens":9999999912065}},{"ix":197,"action":{"kind":"Delegate","val":2,"amt":3925},"partialState":{"h":16,"t":96,"tokens":[6258,4505,12096,10302],"delegation":[5258,3505,11096,9302],"delegatorTokens":9999999908140}},{"ix":198,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":17,"t":102,"tokens":[6258,4505,12096,10302],"delegation":[5258,3505,11096,9302],"delegatorTokens":9999999923747,"jailed":[1000000000000053,null,1000000000000023,null],"status":["unbonding","bonded","unbonding","bonded"]}},{"ix":199,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":18,"t":108,"tokens":[6258,4505,12096,10302],"delegation":[5258,3505,11096,9302],"delegatorTokens":9999999931165,"jailed":[1000000000000053,null,1000000000000023,null],"status":["unbonding","bonded","unbonded","bonded"]}}],"events":["insufficient_shares","more_than_one_third_val_power_change","send_vsc_without_downtime_ack","more_than_one_third_val_power_change","rebond_unval","send_vsc_without_downtime_ack","send_downtime_slash_request","insufficient_shares","consumer_update_val","consumer_del_val","consumer_add_val","downtime_slash_request_outstanding","downtime_slash_request_outstanding","consumer_del_val","consumer_add_val","consumer_update_val","send_double_sign_slash_request","send_double_sign_slash_request","send_double_sign_slash_request","send_double_sign_slash_request","downtime_slash_request_outstanding","more_than_one_third_val_power_change","receive_downtime_slash_request","jail","send_vsc_with_downtime_ack","insufficient_shares","send_downtime_slash_request","receive_double_sign_slash_request","insufficient_shares","more_than_one_third_val_power_change","rebond_unval","rebond_unval","send_vsc_without_downtime_ack","receive_downtime_slash_ack","receive_double_sign_slash_request","send_double_sign_slash_request","receive_double_sign_slash_request","more_than_one_third_val_power_change","rebond_unval","send_vsc_without_downtime_ack","send_vsc_without_downtime_ack","consumer_update_val","consumer_del_val","consumer_del_val","consumer_add_val","insufficient_shares","insufficient_shares","receive_double_sign_slash_request","insufficient_shares","insufficient_shares","more_than_one_third_val_power_change","rebond_unval","receive_downtime_slash_request","jail","send_vsc_with_downtime_ack","consumer_del_val","consumer_update_val","consumer_add_val","receive_double_sign_slash_request","insufficient_shares","consumer_update_val","insufficient_shares","consumer_send_maturation","insufficient_shares","consumer_send_maturation","more_than_one_third_val_power_change","rebond_unval","send_vsc_without_downtime_ack","insufficient_shares","insufficient_shares","set_undel_hold_false","set_undel_hold_false","send_vsc_not_because_change","send_vsc_without_downtime_ack","send_vsc_without_downtime_ack","insufficient_shares","receive_downtime_slash_ack","consumer_del_val","consumer_update_val","consumer_update_val","insufficient_shares","consumer_send_maturation","consumer_send_maturation","complete_undel_in_endblock","set_undel_hold_false","send_vsc_without_downtime_ack","consumer_send_maturation","consumer_send_maturation","complete_undel_in_endblock","set_undel_hold_false","set_undel_hold_false","set_undel_hold_false","set_undel_hold_false","set_undel_hold_false","set_undel_hold_false","set_undel_hold_false","set_undel_hold_false","set_unval_hold_false","set_undel_hold_false","set_undel_hold_false","send_vsc_without_downtime_ack","complete_undel_in_endblock","send_vsc_not_because_change","send_vsc_without_downtime_ack","complete_unval_in_endblock","complete_undel_in_endblock"]},{"meta":{"commit":"7ffd0c04e4205cbc9caf212abfe6c59ee43153bf"},"constants":{"P":"provider","C":"consumer","UNBONDING_SECONDS_P":70,"UNBONDING_SECONDS_C":50,"TRUSTING_SECONDS":49,"NUM_VALIDATORS":4,"MAX_VALIDATORS":2,"SLASH_DOUBLESIGN":0,"SLASH_DOWNTIME":0,"JAIL_SECONDS":999999999999999,"BLOCK_SECONDS":6,"INITIAL_DELEGATOR_TOKENS":10000000000000,"DELEGATE_AMT_MIN":1000,"DELEGATE_AMT_MAX":5000,"UNDELEGATE_AMT_MIN":1000,"UNDELEGATE_AMT_MAX":5000,"ISDOWNTIME_PROBABILITY":0.5,"MAX_NUM_PACKETS_FOR_DELIVER":6},"actions":[{"ix":0,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":2,"t":12,"tokens":[5000,4000,3000,2000],"delegation":[4000,3000,2000,1000],"delegatorTokens":10000000000000,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":1,"action":{"kind":"Delegate","val":3,"amt":2379},"partialState":{"h":2,"t":12,"tokens":[5000,4000,3000,4379],"delegation":[4000,3000,2000,3379],"delegatorTokens":9999999997621}},{"ix":2,"action":{"kind":"Delegate","val":2,"amt":3100},"partialState":{"h":2,"t":12,"tokens":[5000,4000,6100,4379],"delegation":[4000,3000,5100,3379],"delegatorTokens":9999999994521}},{"ix":3,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":3,"t":18,"tokens":[5000,4000,6100,4379],"delegation":[4000,3000,5100,3379],"delegatorTokens":9999999994521,"jailed":[null,null,null,null],"status":["bonded","unbonding","bonded","unbonded"]}},{"ix":4,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":5,"action":{"kind":"Undelegate","val":0,"amt":1308},"partialState":{"h":3,"t":18,"tokens":[3692,4000,6100,4379],"delegation":[2692,3000,5100,3379],"delegatorTokens":9999999994521}},{"ix":6,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":4,"t":24,"tokens":[3692,4000,6100,4379],"delegation":[2692,3000,5100,3379],"delegatorTokens":9999999994521,"jailed":[null,null,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":7,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":8,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":2,"t":12,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":9,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":10,"action":{"kind":"ConsumerSlash","val":3,"infractionHeight":0,"isDowntime":false},"partialState":{"h":2,"t":12,"outstandingDowntime":[false,false,false,false]}},{"ix":11,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":5,"t":30,"tokens":[3692,4000,6100,4379],"delegation":[2692,3000,5100,3379],"delegatorTokens":9999999994521,"jailed":[null,null,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":12,"action":{"kind":"Delegate","val":0,"amt":1797},"partialState":{"h":5,"t":30,"tokens":[5489,4000,6100,4379],"delegation":[4489,3000,5100,3379],"delegatorTokens":9999999992724}},{"ix":13,"action":{"kind":"Deliver","chain":"consumer","numPackets":1},"partialState":{"h":2,"t":12,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":14,"action":{"kind":"Undelegate","val":0,"amt":4672},"partialState":{"h":5,"t":30,"tokens":[5489,4000,6100,4379],"delegation":[4489,3000,5100,3379],"delegatorTokens":9999999992724}},{"ix":15,"action":{"kind":"Delegate","val":3,"amt":1805},"partialState":{"h":5,"t":30,"tokens":[5489,4000,6100,6184],"delegation":[4489,3000,5100,5184],"delegatorTokens":9999999990919}},{"ix":16,"action":{"kind":"ConsumerSlash","val":3,"infractionHeight":1,"isDowntime":false},"partialState":{"h":2,"t":12,"outstandingDowntime":[false,false,false,false]}},{"ix":17,"action":{"kind":"ConsumerSlash","val":0,"infractionHeight":1,"isDowntime":true},"partialState":{"h":2,"t":12,"outstandingDowntime":[true,false,false,false]}},{"ix":18,"action":{"kind":"Delegate","val":0,"amt":3819},"partialState":{"h":5,"t":30,"tokens":[9308,4000,6100,6184],"delegation":[8308,3000,5100,5184],"delegatorTokens":9999999987100}},{"ix":19,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":6,"t":36,"tokens":[9308,4000,6100,6184],"delegation":[8308,3000,5100,5184],"delegatorTokens":9999999987100,"jailed":[null,null,null,null],"status":["bonded","unbonding","unbonding","bonded"]}},{"ix":20,"action":{"kind":"Undelegate","val":3,"amt":1126},"partialState":{"h":6,"t":36,"tokens":[9308,4000,6100,5058],"delegation":[8308,3000,5100,4058],"delegatorTokens":9999999987100}},{"ix":21,"action":{"kind":"ConsumerSlash","val":3,"infractionHeight":0,"isDowntime":true},"partialState":{"h":2,"t":12,"outstandingDowntime":[true,false,false,true]}},{"ix":22,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":7,"t":42,"tokens":[9308,4000,6100,5058],"delegation":[8308,3000,5100,4058],"delegatorTokens":9999999987100,"jailed":[null,null,null,null],"status":["bonded","unbonding","bonded","unbonding"]}},{"ix":23,"action":{"kind":"Undelegate","val":0,"amt":4262},"partialState":{"h":7,"t":42,"tokens":[5046,4000,6100,5058],"delegation":[4046,3000,5100,4058],"delegatorTokens":9999999987100}},{"ix":24,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":8,"t":48,"tokens":[5046,4000,6100,5058],"delegation":[4046,3000,5100,4058],"delegatorTokens":9999999987100,"jailed":[null,null,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":25,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":26,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":9,"t":54,"tokens":[5046,4000,6100,5058],"delegation":[4046,3000,5100,4058],"delegatorTokens":9999999987100,"jailed":[null,null,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":27,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":28,"action":{"kind":"ConsumerSlash","val":3,"infractionHeight":0,"isDowntime":true},"partialState":{"h":2,"t":12,"outstandingDowntime":[true,false,false,true]}},{"ix":29,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":3,"t":18,"consumerPower":[5000,null,6100,null],"outstandingDowntime":[true,false,false,true]}},{"ix":30,"action":{"kind":"Undelegate","val":1,"amt":1052},"partialState":{"h":9,"t":54,"tokens":[5046,2948,6100,5058],"delegation":[4046,1948,5100,4058],"delegatorTokens":9999999987100}},{"ix":31,"action":{"kind":"Deliver","chain":"provider","numPackets":4},"partialState":{"h":9,"t":54,"tokens":[5046,2948,6100,5058],"delegation":[4046,1948,5100,4058],"delegatorTokens":9999999987100,"jailed":[null,null,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":32,"action":{"kind":"Delegate","val":1,"amt":2170},"partialState":{"h":9,"t":54,"tokens":[5046,5118,6100,5058],"delegation":[4046,4118,5100,4058],"delegatorTokens":9999999984930}},{"ix":33,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":10,"t":60,"tokens":[5046,5118,6100,5058],"delegation":[4046,4118,5100,4058],"delegatorTokens":9999999984930,"jailed":[null,null,null,null],"status":["unbonding","bonded","bonded","unbonding"]}},{"ix":34,"action":{"kind":"Undelegate","val":3,"amt":2271},"partialState":{"h":10,"t":60,"tokens":[5046,5118,6100,2787],"delegation":[4046,4118,5100,1787],"delegatorTokens":9999999984930}},{"ix":35,"action":{"kind":"Delegate","val":0,"amt":1349},"partialState":{"h":10,"t":60,"tokens":[6395,5118,6100,2787],"delegation":[5395,4118,5100,1787],"delegatorTokens":9999999983581}},{"ix":36,"action":{"kind":"Deliver","chain":"consumer","numPackets":6},"partialState":{"h":3,"t":18,"consumerPower":[5000,null,6100,null],"outstandingDowntime":[true,false,false,true]}},{"ix":37,"action":{"kind":"ConsumerSlash","val":3,"infractionHeight":0,"isDowntime":true},"partialState":{"h":3,"t":18,"outstandingDowntime":[true,false,false,true]}},{"ix":38,"action":{"kind":"Delegate","val":3,"amt":2139},"partialState":{"h":10,"t":60,"tokens":[6395,5118,6100,4926],"delegation":[5395,4118,5100,3926],"delegatorTokens":9999999981442}},{"ix":39,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":40,"action":{"kind":"Undelegate","val":2,"amt":3945},"partialState":{"h":10,"t":60,"tokens":[6395,5118,2155,4926],"delegation":[5395,4118,1155,3926],"delegatorTokens":9999999981442}},{"ix":41,"action":{"kind":"Delegate","val":3,"amt":4017},"partialState":{"h":10,"t":60,"tokens":[6395,5118,2155,8943],"delegation":[5395,4118,1155,7943],"delegatorTokens":9999999977425}},{"ix":42,"action":{"kind":"Delegate","val":2,"amt":1970},"partialState":{"h":10,"t":60,"tokens":[6395,5118,4125,8943],"delegation":[5395,4118,3125,7943],"delegatorTokens":9999999975455}},{"ix":43,"action":{"kind":"ConsumerSlash","val":2,"infractionHeight":1,"isDowntime":true},"partialState":{"h":3,"t":18,"outstandingDowntime":[true,false,true,true]}},{"ix":44,"action":{"kind":"Deliver","chain":"consumer","numPackets":5},"partialState":{"h":3,"t":18,"consumerPower":[5000,null,6100,null],"outstandingDowntime":[true,false,true,true]}},{"ix":45,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":4,"t":24,"consumerPower":[null,null,6100,5058],"outstandingDowntime":[true,false,true,true]}},{"ix":46,"action":{"kind":"Delegate","val":2,"amt":3706},"partialState":{"h":10,"t":60,"tokens":[6395,5118,7831,8943],"delegation":[5395,4118,6831,7943],"delegatorTokens":9999999971749}},{"ix":47,"action":{"kind":"Delegate","val":0,"amt":3607},"partialState":{"h":10,"t":60,"tokens":[10002,5118,7831,8943],"delegation":[9002,4118,6831,7943],"delegatorTokens":9999999968142}},{"ix":48,"action":{"kind":"Delegate","val":3,"amt":2714},"partialState":{"h":10,"t":60,"tokens":[10002,5118,7831,11657],"delegation":[9002,4118,6831,10657],"delegatorTokens":9999999965428}},{"ix":49,"action":{"kind":"Delegate","val":1,"amt":2236},"partialState":{"h":10,"t":60,"tokens":[10002,7354,7831,11657],"delegation":[9002,6354,6831,10657],"delegatorTokens":9999999963192}},{"ix":50,"action":{"kind":"Undelegate","val":1,"amt":4565},"partialState":{"h":10,"t":60,"tokens":[10002,2789,7831,11657],"delegation":[9002,1789,6831,10657],"delegatorTokens":9999999963192}},{"ix":51,"action":{"kind":"Deliver","chain":"consumer","numPackets":6},"partialState":{"h":4,"t":24,"consumerPower":[null,null,6100,5058],"outstandingDowntime":[true,false,true,true]}},{"ix":52,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":53,"action":{"kind":"Delegate","val":2,"amt":1949},"partialState":{"h":10,"t":60,"tokens":[10002,2789,9780,11657],"delegation":[9002,1789,8780,10657],"delegatorTokens":9999999961243}},{"ix":54,"action":{"kind":"Undelegate","val":3,"amt":1676},"partialState":{"h":10,"t":60,"tokens":[10002,2789,9780,9981],"delegation":[9002,1789,8780,8981],"delegatorTokens":9999999961243}},{"ix":55,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":5,"t":30,"consumerPower":[null,null,6100,5058],"outstandingDowntime":[true,false,true,true]}},{"ix":56,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":57,"action":{"kind":"Deliver","chain":"consumer","numPackets":3},"partialState":{"h":5,"t":30,"consumerPower":[null,null,6100,5058],"outstandingDowntime":[true,false,true,true]}},{"ix":58,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":6,"t":36,"consumerPower":[null,null,6100,5058],"outstandingDowntime":[true,false,true,true]}},{"ix":59,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":11,"t":66,"tokens":[10002,2789,9780,9981],"delegation":[9002,1789,8780,8981],"delegatorTokens":9999999961243,"jailed":[null,null,null,null],"status":["bonded","unbonding","unbonding","bonded"]}},{"ix":60,"action":{"kind":"Undelegate","val":1,"amt":2307},"partialState":{"h":11,"t":66,"tokens":[10002,2789,9780,9981],"delegation":[9002,1789,8780,8981],"delegatorTokens":9999999961243}},{"ix":61,"action":{"kind":"Undelegate","val":0,"amt":1245},"partialState":{"h":11,"t":66,"tokens":[8757,2789,9780,9981],"delegation":[7757,1789,8780,8981],"delegatorTokens":9999999961243}},{"ix":62,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":7,"t":42,"consumerPower":[null,null,6100,5058],"outstandingDowntime":[true,false,true,true]}},{"ix":63,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":64,"action":{"kind":"Deliver","chain":"consumer","numPackets":6},"partialState":{"h":7,"t":42,"consumerPower":[null,null,6100,5058],"outstandingDowntime":[true,false,true,true]}},{"ix":65,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":66,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":67,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":68,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":12,"t":72,"tokens":[8757,2789,9780,9981],"delegation":[7757,1789,8780,8981],"delegatorTokens":9999999961243,"jailed":[null,null,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":69,"action":{"kind":"Undelegate","val":3,"amt":4150},"partialState":{"h":12,"t":72,"tokens":[8757,2789,9780,5831],"delegation":[7757,1789,8780,4831],"delegatorTokens":9999999961243}},{"ix":70,"action":{"kind":"Deliver","chain":"provider","numPackets":2},"partialState":{"h":12,"t":72,"tokens":[8757,2789,9780,5831],"delegation":[7757,1789,8780,4831],"delegatorTokens":9999999961243,"jailed":[null,null,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":71,"action":{"kind":"Undelegate","val":0,"amt":3782},"partialState":{"h":12,"t":72,"tokens":[4975,2789,9780,5831],"delegation":[3975,1789,8780,4831],"delegatorTokens":9999999961243}},{"ix":72,"action":{"kind":"Deliver","chain":"consumer","numPackets":6},"partialState":{"h":7,"t":42,"consumerPower":[null,null,6100,5058],"outstandingDowntime":[true,false,true,true]}},{"ix":73,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":74,"action":{"kind":"Deliver","chain":"consumer","numPackets":4},"partialState":{"h":7,"t":42,"consumerPower":[null,null,6100,5058],"outstandingDowntime":[true,false,true,true]}},{"ix":75,"action":{"kind":"Delegate","val":2,"amt":3714},"partialState":{"h":12,"t":72,"tokens":[4975,2789,13494,5831],"delegation":[3975,1789,12494,4831],"delegatorTokens":9999999957529}},{"ix":76,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":13,"t":78,"tokens":[4975,2789,13494,5831],"delegation":[3975,1789,12494,4831],"delegatorTokens":9999999957529,"jailed":[null,null,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":77,"action":{"kind":"Deliver","chain":"consumer","numPackets":1},"partialState":{"h":7,"t":42,"consumerPower":[null,null,6100,5058],"outstandingDowntime":[true,false,true,true]}},{"ix":78,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":14,"t":84,"tokens":[4975,2789,13494,5831],"delegation":[3975,1789,12494,4831],"delegatorTokens":9999999957529,"jailed":[null,null,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":79,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":8,"t":48,"consumerPower":[null,null,9780,9981],"outstandingDowntime":[true,false,true,true]}},{"ix":80,"action":{"kind":"Deliver","chain":"provider","numPackets":4},"partialState":{"h":14,"t":84,"tokens":[4975,2789,13494,5831],"delegation":[3975,1789,12494,4831],"delegatorTokens":9999999957529,"jailed":[null,null,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":81,"action":{"kind":"Undelegate","val":2,"amt":1073},"partialState":{"h":14,"t":84,"tokens":[4975,2789,12421,5831],"delegation":[3975,1789,11421,4831],"delegatorTokens":9999999957529}},{"ix":82,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":83,"action":{"kind":"Delegate","val":3,"amt":1911},"partialState":{"h":14,"t":84,"tokens":[4975,2789,12421,7742],"delegation":[3975,1789,11421,6742],"delegatorTokens":9999999955618}},{"ix":84,"action":{"kind":"Delegate","val":0,"amt":2485},"partialState":{"h":14,"t":84,"tokens":[7460,2789,12421,7742],"delegation":[6460,1789,11421,6742],"delegatorTokens":9999999953133}},{"ix":85,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":86,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":87,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":88,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":89,"action":{"kind":"Delegate","val":0,"amt":4133},"partialState":{"h":14,"t":84,"tokens":[11593,2789,12421,7742],"delegation":[10593,1789,11421,6742],"delegatorTokens":9999999949000}},{"ix":90,"action":{"kind":"Delegate","val":1,"amt":4888},"partialState":{"h":14,"t":84,"tokens":[11593,7677,12421,7742],"delegation":[10593,6677,11421,6742],"delegatorTokens":9999999944112}},{"ix":91,"action":{"kind":"Deliver","chain":"consumer","numPackets":1},"partialState":{"h":8,"t":48,"consumerPower":[null,null,9780,9981],"outstandingDowntime":[true,false,true,true]}},{"ix":92,"action":{"kind":"Delegate","val":3,"amt":4506},"partialState":{"h":14,"t":84,"tokens":[11593,7677,12421,12248],"delegation":[10593,6677,11421,11248],"delegatorTokens":9999999939606}},{"ix":93,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":94,"action":{"kind":"Delegate","val":2,"amt":2177},"partialState":{"h":14,"t":84,"tokens":[11593,7677,14598,12248],"delegation":[10593,6677,13598,11248],"delegatorTokens":9999999937429}},{"ix":95,"action":{"kind":"Deliver","chain":"provider","numPackets":6},"partialState":{"h":14,"t":84,"tokens":[11593,7677,14598,12248],"delegation":[10593,6677,13598,11248],"delegatorTokens":9999999937429,"jailed":[null,null,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":96,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":15,"t":90,"tokens":[11593,7677,14598,12248],"delegation":[10593,6677,13598,11248],"delegatorTokens":9999999937429,"jailed":[1000000000000083,null,1000000000000083,1000000000000083],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":97,"action":{"kind":"Delegate","val":3,"amt":4267},"partialState":{"h":15,"t":90,"tokens":[11593,7677,14598,16515],"delegation":[10593,6677,13598,15515],"delegatorTokens":9999999933162}},{"ix":98,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":99,"action":{"kind":"Delegate","val":2,"amt":1711},"partialState":{"h":15,"t":90,"tokens":[11593,7677,16309,16515],"delegation":[10593,6677,15309,15515],"delegatorTokens":9999999931451}},{"ix":100,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":101,"action":{"kind":"Undelegate","val":3,"amt":3325},"partialState":{"h":15,"t":90,"tokens":[11593,7677,16309,13190],"delegation":[10593,6677,15309,12190],"delegatorTokens":9999999931451}},{"ix":102,"action":{"kind":"Delegate","val":1,"amt":1871},"partialState":{"h":15,"t":90,"tokens":[11593,9548,16309,13190],"delegation":[10593,8548,15309,12190],"delegatorTokens":9999999929580}},{"ix":103,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":104,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":9,"t":54,"consumerPower":[null,null,13494,5831],"outstandingDowntime":[true,false,true,true]}},{"ix":105,"action":{"kind":"Delegate","val":3,"amt":4353},"partialState":{"h":15,"t":90,"tokens":[11593,9548,16309,17543],"delegation":[10593,8548,15309,16543],"delegatorTokens":9999999925227}},{"ix":106,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":10,"t":60,"consumerPower":[null,null,13494,5831],"outstandingDowntime":[true,false,true,true]}},{"ix":107,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":108,"action":{"kind":"Deliver","chain":"provider","numPackets":5},"partialState":{"h":15,"t":90,"tokens":[11593,9548,16309,17543],"delegation":[10593,8548,15309,16543],"delegatorTokens":9999999925227,"jailed":[1000000000000083,null,1000000000000083,1000000000000083],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":109,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":110,"action":{"kind":"Undelegate","val":1,"amt":2839},"partialState":{"h":15,"t":90,"tokens":[11593,6709,16309,17543],"delegation":[10593,5709,15309,16543],"delegatorTokens":9999999925227}},{"ix":111,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":11,"t":66,"consumerPower":[null,null,13494,5831],"outstandingDowntime":[true,false,true,true]}},{"ix":112,"action":{"kind":"Deliver","chain":"consumer","numPackets":4},"partialState":{"h":11,"t":66,"consumerPower":[null,null,13494,5831],"outstandingDowntime":[true,false,true,true]}},{"ix":113,"action":{"kind":"Deliver","chain":"provider","numPackets":3},"partialState":{"h":15,"t":90,"tokens":[11593,6709,16309,17543],"delegation":[10593,5709,15309,16543],"delegatorTokens":9999999925227,"jailed":[1000000000000083,null,1000000000000083,1000000000000083],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":114,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":12,"t":72,"consumerPower":[null,null,13494,5831],"outstandingDowntime":[true,false,true,true]}},{"ix":115,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":16,"t":96,"tokens":[11593,6709,16309,17543],"delegation":[10593,5709,15309,16543],"delegatorTokens":9999999925227,"jailed":[1000000000000083,null,1000000000000083,1000000000000083],"status":["unbonding","bonded","unbonding","unbonding"]}},{"ix":116,"action":{"kind":"Undelegate","val":2,"amt":4022},"partialState":{"h":16,"t":96,"tokens":[11593,6709,12287,17543],"delegation":[10593,5709,11287,16543],"delegatorTokens":9999999925227}},{"ix":117,"action":{"kind":"Undelegate","val":3,"amt":4406},"partialState":{"h":16,"t":96,"tokens":[11593,6709,12287,13137],"delegation":[10593,5709,11287,12137],"delegatorTokens":9999999925227}},{"ix":118,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":119,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":13,"t":78,"consumerPower":[null,null,13494,5831],"outstandingDowntime":[true,false,true,true]}},{"ix":120,"action":{"kind":"Deliver","chain":"consumer","numPackets":4},"partialState":{"h":13,"t":78,"consumerPower":[null,null,13494,5831],"outstandingDowntime":[false,false,false,false]}},{"ix":121,"action":{"kind":"Deliver","chain":"consumer","numPackets":6},"partialState":{"h":13,"t":78,"consumerPower":[null,null,13494,5831],"outstandingDowntime":[false,false,false,false]}},{"ix":122,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":17,"t":102,"tokens":[11593,6709,12287,13137],"delegation":[10593,5709,11287,12137],"delegatorTokens":9999999925227,"jailed":[1000000000000083,null,1000000000000083,1000000000000083],"status":["unbonding","bonded","unbonding","unbonding"]}},{"ix":123,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":14,"t":84,"consumerPower":[null,null,14598,12248],"outstandingDowntime":[false,false,false,false]}},{"ix":124,"action":{"kind":"Undelegate","val":1,"amt":4088},"partialState":{"h":17,"t":102,"tokens":[11593,2621,12287,13137],"delegation":[10593,1621,11287,12137],"delegatorTokens":9999999925227}},{"ix":125,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":15,"t":90,"consumerPower":[null,null,14598,12248],"outstandingDowntime":[false,false,false,false]}},{"ix":126,"action":{"kind":"Delegate","val":3,"amt":4578},"partialState":{"h":17,"t":102,"tokens":[11593,2621,12287,17715],"delegation":[10593,1621,11287,16715],"delegatorTokens":9999999920649}},{"ix":127,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":128,"action":{"kind":"Delegate","val":3,"amt":2520},"partialState":{"h":17,"t":102,"tokens":[11593,2621,12287,20235],"delegation":[10593,1621,11287,19235],"delegatorTokens":9999999918129}},{"ix":129,"action":{"kind":"Undelegate","val":1,"amt":3886},"partialState":{"h":17,"t":102,"tokens":[11593,2621,12287,20235],"delegation":[10593,1621,11287,19235],"delegatorTokens":9999999918129}},{"ix":130,"action":{"kind":"Deliver","chain":"consumer","numPackets":1},"partialState":{"h":15,"t":90,"consumerPower":[null,null,14598,12248],"outstandingDowntime":[false,false,false,false]}},{"ix":131,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":132,"action":{"kind":"Deliver","chain":"provider","numPackets":4},"partialState":{"h":17,"t":102,"tokens":[11593,2621,12287,20235],"delegation":[10593,1621,11287,19235],"delegatorTokens":9999999918129,"jailed":[1000000000000083,null,1000000000000083,1000000000000083],"status":["unbonding","bonded","unbonding","unbonding"]}},{"ix":133,"action":{"kind":"Undelegate","val":0,"amt":4555},"partialState":{"h":17,"t":102,"tokens":[7038,2621,12287,20235],"delegation":[6038,1621,11287,19235],"delegatorTokens":9999999918129}},{"ix":134,"action":{"kind":"Undelegate","val":2,"amt":3754},"partialState":{"h":17,"t":102,"tokens":[7038,2621,8533,20235],"delegation":[6038,1621,7533,19235],"delegatorTokens":9999999918129}},{"ix":135,"action":{"kind":"Undelegate","val":3,"amt":4279},"partialState":{"h":17,"t":102,"tokens":[7038,2621,8533,15956],"delegation":[6038,1621,7533,14956],"delegatorTokens":9999999918129}},{"ix":136,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":137,"action":{"kind":"Undelegate","val":2,"amt":2653},"partialState":{"h":17,"t":102,"tokens":[7038,2621,5880,15956],"delegation":[6038,1621,4880,14956],"delegatorTokens":9999999918129}},{"ix":138,"action":{"kind":"Deliver","chain":"consumer","numPackets":4},"partialState":{"h":15,"t":90,"consumerPower":[null,null,14598,12248],"outstandingDowntime":[false,false,false,false]}},{"ix":139,"action":{"kind":"Delegate","val":0,"amt":3332},"partialState":{"h":17,"t":102,"tokens":[10370,2621,5880,15956],"delegation":[9370,1621,4880,14956],"delegatorTokens":9999999914797}},{"ix":140,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":18,"t":108,"tokens":[10370,2621,5880,15956],"delegation":[9370,1621,4880,14956],"delegatorTokens":9999999916105,"jailed":[1000000000000083,null,1000000000000083,1000000000000083],"status":["unbonding","bonded","unbonding","unbonding"]}},{"ix":141,"action":{"kind":"Delegate","val":3,"amt":2772},"partialState":{"h":18,"t":108,"tokens":[10370,2621,5880,18728],"delegation":[9370,1621,4880,17728],"delegatorTokens":9999999913333}},{"ix":142,"action":{"kind":"Deliver","chain":"consumer","numPackets":5},"partialState":{"h":15,"t":90,"consumerPower":[null,null,14598,12248],"outstandingDowntime":[false,false,false,false]}},{"ix":143,"action":{"kind":"Delegate","val":3,"amt":3400},"partialState":{"h":18,"t":108,"tokens":[10370,2621,5880,22128],"delegation":[9370,1621,4880,21128],"delegatorTokens":9999999909933}},{"ix":144,"action":{"kind":"Undelegate","val":1,"amt":3465},"partialState":{"h":18,"t":108,"tokens":[10370,2621,5880,22128],"delegation":[9370,1621,4880,21128],"delegatorTokens":9999999909933}},{"ix":145,"action":{"kind":"Delegate","val":0,"amt":2222},"partialState":{"h":18,"t":108,"tokens":[12592,2621,5880,22128],"delegation":[11592,1621,4880,21128],"delegatorTokens":9999999907711}},{"ix":146,"action":{"kind":"Delegate","val":2,"amt":2239},"partialState":{"h":18,"t":108,"tokens":[12592,2621,8119,22128],"delegation":[11592,1621,7119,21128],"delegatorTokens":9999999905472}},{"ix":147,"action":{"kind":"Deliver","chain":"provider","numPackets":2},"partialState":{"h":18,"t":108,"tokens":[12592,2621,8119,22128],"delegation":[11592,1621,7119,21128],"delegatorTokens":9999999905472,"jailed":[1000000000000083,null,1000000000000083,1000000000000083],"status":["unbonding","bonded","unbonding","unbonding"]}},{"ix":148,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":149,"action":{"kind":"Undelegate","val":1,"amt":2028},"partialState":{"h":18,"t":108,"tokens":[12592,2621,8119,22128],"delegation":[11592,1621,7119,21128],"delegatorTokens":9999999905472}},{"ix":150,"action":{"kind":"Delegate","val":2,"amt":4183},"partialState":{"h":18,"t":108,"tokens":[12592,2621,12302,22128],"delegation":[11592,1621,11302,21128],"delegatorTokens":9999999901289}},{"ix":151,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":19,"t":114,"tokens":[12592,2621,12302,22128],"delegation":[11592,1621,11302,21128],"delegatorTokens":9999999902415,"jailed":[1000000000000083,null,1000000000000083,1000000000000083],"status":["unbonding","bonded","unbonding","unbonding"]}},{"ix":152,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":16,"t":96,"consumerPower":[null,6709,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":153,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":17,"t":102,"consumerPower":[null,6709,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":154,"action":{"kind":"Delegate","val":3,"amt":1260},"partialState":{"h":19,"t":114,"tokens":[12592,2621,12302,23388],"delegation":[11592,1621,11302,22388],"delegatorTokens":9999999901155}},{"ix":155,"action":{"kind":"Undelegate","val":0,"amt":3350},"partialState":{"h":19,"t":114,"tokens":[9242,2621,12302,23388],"delegation":[8242,1621,11302,22388],"delegatorTokens":9999999901155}},{"ix":156,"action":{"kind":"Undelegate","val":2,"amt":4810},"partialState":{"h":19,"t":114,"tokens":[9242,2621,7492,23388],"delegation":[8242,1621,6492,22388],"delegatorTokens":9999999901155}},{"ix":157,"action":{"kind":"Deliver","chain":"provider","numPackets":4},"partialState":{"h":19,"t":114,"tokens":[9242,2621,7492,23388],"delegation":[8242,1621,6492,22388],"delegatorTokens":9999999901155,"jailed":[1000000000000083,null,1000000000000083,1000000000000083],"status":["unbonding","bonded","unbonding","unbonding"]}},{"ix":158,"action":{"kind":"Deliver","chain":"consumer","numPackets":4},"partialState":{"h":17,"t":102,"consumerPower":[null,6709,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":159,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":160,"action":{"kind":"Deliver","chain":"provider","numPackets":1},"partialState":{"h":19,"t":114,"tokens":[9242,2621,7492,23388],"delegation":[8242,1621,6492,22388],"delegatorTokens":9999999901155,"jailed":[1000000000000083,null,1000000000000083,1000000000000083],"status":["unbonding","bonded","unbonding","unbonding"]}},{"ix":161,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":18,"t":108,"consumerPower":[null,2621,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":162,"action":{"kind":"Delegate","val":3,"amt":1845},"partialState":{"h":19,"t":114,"tokens":[9242,2621,7492,25233],"delegation":[8242,1621,6492,24233],"delegatorTokens":9999999899310}},{"ix":163,"action":{"kind":"Deliver","chain":"consumer","numPackets":3},"partialState":{"h":18,"t":108,"consumerPower":[null,2621,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":164,"action":{"kind":"Delegate","val":2,"amt":2934},"partialState":{"h":19,"t":114,"tokens":[9242,2621,10426,25233],"delegation":[8242,1621,9426,24233],"delegatorTokens":9999999896376}},{"ix":165,"action":{"kind":"Delegate","val":2,"amt":2987},"partialState":{"h":19,"t":114,"tokens":[9242,2621,13413,25233],"delegation":[8242,1621,12413,24233],"delegatorTokens":9999999893389}},{"ix":166,"action":{"kind":"Deliver","chain":"consumer","numPackets":2},"partialState":{"h":18,"t":108,"consumerPower":[null,2621,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":167,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":19,"t":114,"consumerPower":[null,2621,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":168,"action":{"kind":"Delegate","val":1,"amt":3882},"partialState":{"h":19,"t":114,"tokens":[9242,6503,13413,25233],"delegation":[8242,5503,12413,24233],"delegatorTokens":9999999889507}},{"ix":169,"action":{"kind":"Deliver","chain":"consumer","numPackets":2},"partialState":{"h":19,"t":114,"consumerPower":[null,2621,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":170,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":171,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":20,"t":120,"consumerPower":[null,2621,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":172,"action":{"kind":"Delegate","val":2,"amt":2038},"partialState":{"h":19,"t":114,"tokens":[9242,6503,15451,25233],"delegation":[8242,5503,14451,24233],"delegatorTokens":9999999887469}},{"ix":173,"action":{"kind":"Deliver","chain":"provider","numPackets":4},"partialState":{"h":19,"t":114,"tokens":[9242,6503,15451,25233],"delegation":[8242,5503,14451,24233],"delegatorTokens":9999999887469,"jailed":[1000000000000083,null,1000000000000083,1000000000000083],"status":["unbonding","bonded","unbonding","unbonding"]}},{"ix":174,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":175,"action":{"kind":"Delegate","val":1,"amt":2165},"partialState":{"h":19,"t":114,"tokens":[9242,8668,15451,25233],"delegation":[8242,7668,14451,24233],"delegatorTokens":9999999885304}},{"ix":176,"action":{"kind":"Delegate","val":3,"amt":1751},"partialState":{"h":19,"t":114,"tokens":[9242,8668,15451,26984],"delegation":[8242,7668,14451,25984],"delegatorTokens":9999999883553}},{"ix":177,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":21,"t":126,"consumerPower":[null,2621,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":178,"action":{"kind":"Undelegate","val":0,"amt":4444},"partialState":{"h":19,"t":114,"tokens":[4798,8668,15451,26984],"delegation":[3798,7668,14451,25984],"delegatorTokens":9999999883553}},{"ix":179,"action":{"kind":"Deliver","chain":"consumer","numPackets":6},"partialState":{"h":21,"t":126,"consumerPower":[null,2621,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":180,"action":{"kind":"Delegate","val":0,"amt":3490},"partialState":{"h":19,"t":114,"tokens":[8288,8668,15451,26984],"delegation":[7288,7668,14451,25984],"delegatorTokens":9999999880063}},{"ix":181,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":20,"t":120,"tokens":[8288,8668,15451,26984],"delegation":[7288,7668,14451,25984],"delegatorTokens":9999999884325,"jailed":[1000000000000083,null,1000000000000083,1000000000000083],"status":["unbonding","bonded","unbonding","unbonding"]}},{"ix":182,"action":{"kind":"Undelegate","val":1,"amt":3348},"partialState":{"h":20,"t":120,"tokens":[8288,5320,15451,26984],"delegation":[7288,4320,14451,25984],"delegatorTokens":9999999884325}},{"ix":183,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":22,"t":132,"consumerPower":[null,2621,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":184,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":21,"t":126,"tokens":[8288,5320,15451,26984],"delegation":[7288,4320,14451,25984],"delegatorTokens":9999999884325,"jailed":[1000000000000083,null,1000000000000083,1000000000000083],"status":["unbonding","bonded","unbonding","unbonding"]}},{"ix":185,"action":{"kind":"Delegate","val":0,"amt":4105},"partialState":{"h":21,"t":126,"tokens":[12393,5320,15451,26984],"delegation":[11393,4320,14451,25984],"delegatorTokens":9999999880220}},{"ix":186,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":187,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":22,"t":132,"tokens":[12393,5320,15451,26984],"delegation":[11393,4320,14451,25984],"delegatorTokens":9999999881272,"jailed":[1000000000000083,null,1000000000000083,1000000000000083],"status":["unbonding","bonded","unbonding","unbonding"]}},{"ix":188,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":23,"t":138,"tokens":[12393,5320,15451,26984],"delegation":[11393,4320,14451,25984],"delegatorTokens":9999999893729,"jailed":[1000000000000083,null,1000000000000083,1000000000000083],"status":["unbonding","bonded","unbonding","unbonding"]}},{"ix":189,"action":{"kind":"Undelegate","val":2,"amt":1766},"partialState":{"h":23,"t":138,"tokens":[12393,5320,13685,26984],"delegation":[11393,4320,12685,25984],"delegatorTokens":9999999893729}},{"ix":190,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":24,"t":144,"tokens":[12393,5320,13685,26984],"delegation":[11393,4320,12685,25984],"delegatorTokens":9999999894974,"jailed":[1000000000000083,null,1000000000000083,1000000000000083],"status":["unbonded","bonded","unbonding","unbonding"]}},{"ix":191,"action":{"kind":"Deliver","chain":"consumer","numPackets":5},"partialState":{"h":22,"t":132,"consumerPower":[null,2621,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":192,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":193,"action":{"kind":"Deliver","chain":"consumer","numPackets":5},"partialState":{"h":22,"t":132,"consumerPower":[null,2621,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":194,"action":{"kind":"Undelegate","val":3,"amt":4015},"partialState":{"h":24,"t":144,"tokens":[12393,5320,13685,22969],"delegation":[11393,4320,12685,21969],"delegatorTokens":9999999894974}},{"ix":195,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":196,"action":{"kind":"Delegate","val":2,"amt":2108},"partialState":{"h":24,"t":144,"tokens":[12393,5320,15793,22969],"delegation":[11393,4320,14793,21969],"delegatorTokens":9999999892866}},{"ix":197,"action":{"kind":"Delegate","val":2,"amt":2163},"partialState":{"h":24,"t":144,"tokens":[12393,5320,17956,22969],"delegation":[11393,4320,16956,21969],"delegatorTokens":9999999890703}},{"ix":198,"action":{"kind":"Deliver","chain":"provider","numPackets":5},"partialState":{"h":24,"t":144,"tokens":[12393,5320,17956,22969],"delegation":[11393,4320,16956,21969],"delegatorTokens":9999999890703,"jailed":[1000000000000083,null,1000000000000083,1000000000000083],"status":["unbonded","bonded","unbonding","unbonding"]}},{"ix":199,"action":{"kind":"Delegate","val":2,"amt":1969},"partialState":{"h":24,"t":144,"tokens":[12393,5320,19925,22969],"delegation":[11393,4320,18925,21969],"delegatorTokens":9999999888734}}],"events":["more_than_one_third_val_power_change","send_vsc_without_downtime_ack","more_than_one_third_val_power_change","send_vsc_without_downtime_ack","send_double_sign_slash_request","insufficient_shares","send_double_sign_slash_request","send_downtime_slash_request","more_than_one_third_val_power_change","rebond_unval","send_vsc_without_downtime_ack","send_downtime_slash_request","more_than_one_third_val_power_change","rebond_unval","send_vsc_without_downtime_ack","more_than_one_third_val_power_change","rebond_unval","send_vsc_without_downtime_ack","downtime_slash_request_outstanding","consumer_del_val","consumer_add_val","more_than_one_third_val_power_change","rebond_unval","send_vsc_without_downtime_ack","downtime_slash_request_outstanding","send_downtime_slash_request","consumer_del_val","consumer_add_val","consumer_update_val","more_than_one_third_val_power_change","rebond_unval","rebond_unval","send_vsc_without_downtime_ack","insufficient_shares","more_than_one_third_val_power_change","rebond_unval","send_vsc_without_downtime_ack","receive_double_sign_slash_request","receive_double_sign_slash_request","send_vsc_without_downtime_ack","consumer_del_val","consumer_update_val","consumer_del_val","consumer_update_val","receive_downtime_slash_request","jail","receive_downtime_slash_request","jail","receive_downtime_slash_request","jail","send_vsc_with_downtime_ack","consumer_update_val","consumer_update_val","consumer_send_maturation","more_than_one_third_val_power_change","rebond_unval","some_undels_expired_but_not_completed","send_vsc_without_downtime_ack","consumer_send_maturation","consumer_send_maturation","consumer_send_maturation","consumer_send_maturation","receive_downtime_slash_ack","receive_downtime_slash_ack","receive_downtime_slash_ack","send_vsc_not_because_change","send_vsc_without_downtime_ack","consumer_update_val","consumer_update_val","insufficient_shares","complete_undel_immediate","set_undel_hold_false","send_vsc_without_downtime_ack","insufficient_shares","insufficient_shares","complete_undel_in_endblock","set_undel_hold_false","consumer_add_val","consumer_del_val","consumer_del_val","consumer_send_maturation","consumer_send_maturation","consumer_send_maturation","consumer_send_maturation","consumer_update_val","complete_undel_in_endblock","set_undel_hold_false","set_undel_hold_false","set_undel_hold_false","set_undel_hold_false","set_undel_hold_false","set_undel_hold_false","set_unval_hold_false","set_undel_hold_false","set_undel_hold_false","send_vsc_without_downtime_ack","send_vsc_without_downtime_ack","complete_undel_in_endblock","complete_undel_in_endblock","complete_unval_in_endblock","complete_undel_in_endblock","send_vsc_not_because_change","send_vsc_without_downtime_ack"]},{"meta":{"commit":"7ffd0c04e4205cbc9caf212abfe6c59ee43153bf"},"constants":{"P":"provider","C":"consumer","UNBONDING_SECONDS_P":70,"UNBONDING_SECONDS_C":50,"TRUSTING_SECONDS":49,"NUM_VALIDATORS":4,"MAX_VALIDATORS":2,"SLASH_DOUBLESIGN":0,"SLASH_DOWNTIME":0,"JAIL_SECONDS":999999999999999,"BLOCK_SECONDS":6,"INITIAL_DELEGATOR_TOKENS":10000000000000,"DELEGATE_AMT_MIN":1000,"DELEGATE_AMT_MAX":5000,"UNDELEGATE_AMT_MIN":1000,"UNDELEGATE_AMT_MAX":5000,"ISDOWNTIME_PROBABILITY":0.5,"MAX_NUM_PACKETS_FOR_DELIVER":6},"actions":[{"ix":0,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":1,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":2,"t":12,"tokens":[5000,4000,3000,2000],"delegation":[4000,3000,2000,1000],"delegatorTokens":10000000000000,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":2,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":3,"action":{"kind":"Undelegate","val":0,"amt":2471},"partialState":{"h":2,"t":12,"tokens":[2529,4000,3000,2000],"delegation":[1529,3000,2000,1000],"delegatorTokens":10000000000000}},{"ix":4,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":3,"t":18,"tokens":[2529,4000,3000,2000],"delegation":[1529,3000,2000,1000],"delegatorTokens":10000000000000,"jailed":[null,null,null,null],"status":["unbonding","bonded","bonded","unbonded"]}},{"ix":5,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":6,"action":{"kind":"Undelegate","val":2,"amt":2533},"partialState":{"h":3,"t":18,"tokens":[2529,4000,3000,2000],"delegation":[1529,3000,2000,1000],"delegatorTokens":10000000000000}},{"ix":7,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":4,"t":24,"tokens":[2529,4000,3000,2000],"delegation":[1529,3000,2000,1000],"delegatorTokens":10000000000000,"jailed":[null,null,null,null],"status":["unbonding","bonded","bonded","unbonded"]}},{"ix":8,"action":{"kind":"Delegate","val":1,"amt":3172},"partialState":{"h":4,"t":24,"tokens":[2529,7172,3000,2000],"delegation":[1529,6172,2000,1000],"delegatorTokens":9999999996828}},{"ix":9,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":5,"t":30,"tokens":[2529,7172,3000,2000],"delegation":[1529,6172,2000,1000],"delegatorTokens":9999999996828,"jailed":[null,null,null,null],"status":["unbonding","bonded","bonded","unbonded"]}},{"ix":10,"action":{"kind":"Undelegate","val":2,"amt":4851},"partialState":{"h":5,"t":30,"tokens":[2529,7172,3000,2000],"delegation":[1529,6172,2000,1000],"delegatorTokens":9999999996828}},{"ix":11,"action":{"kind":"Deliver","chain":"provider","numPackets":4},"partialState":{"h":5,"t":30,"tokens":[2529,7172,3000,2000],"delegation":[1529,6172,2000,1000],"delegatorTokens":9999999996828,"jailed":[null,null,null,null],"status":["unbonding","bonded","bonded","unbonded"]}},{"ix":12,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":2,"t":12,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":13,"action":{"kind":"Delegate","val":2,"amt":2962},"partialState":{"h":5,"t":30,"tokens":[2529,7172,5962,2000],"delegation":[1529,6172,4962,1000],"delegatorTokens":9999999993866}},{"ix":14,"action":{"kind":"Undelegate","val":1,"amt":2688},"partialState":{"h":5,"t":30,"tokens":[2529,4484,5962,2000],"delegation":[1529,3484,4962,1000],"delegatorTokens":9999999993866}},{"ix":15,"action":{"kind":"Delegate","val":2,"amt":3395},"partialState":{"h":5,"t":30,"tokens":[2529,4484,9357,2000],"delegation":[1529,3484,8357,1000],"delegatorTokens":9999999990471}},{"ix":16,"action":{"kind":"ConsumerSlash","val":1,"infractionHeight":1,"isDowntime":true},"partialState":{"h":2,"t":12,"outstandingDowntime":[false,true,false,false]}},{"ix":17,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":3,"t":18,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,true,false,false]}},{"ix":18,"action":{"kind":"Undelegate","val":2,"amt":1816},"partialState":{"h":5,"t":30,"tokens":[2529,4484,7541,2000],"delegation":[1529,3484,6541,1000],"delegatorTokens":9999999990471}},{"ix":19,"action":{"kind":"ConsumerSlash","val":1,"infractionHeight":1,"isDowntime":true},"partialState":{"h":3,"t":18,"outstandingDowntime":[false,true,false,false]}},{"ix":20,"action":{"kind":"Deliver","chain":"provider","numPackets":6},"partialState":{"h":5,"t":30,"tokens":[2529,4484,7541,2000],"delegation":[1529,3484,6541,1000],"delegatorTokens":9999999990471,"jailed":[null,null,null,null],"status":["unbonding","bonded","bonded","unbonded"]}},{"ix":21,"action":{"kind":"Deliver","chain":"provider","numPackets":2},"partialState":{"h":5,"t":30,"tokens":[2529,4484,7541,2000],"delegation":[1529,3484,6541,1000],"delegatorTokens":9999999990471,"jailed":[null,null,null,null],"status":["unbonding","bonded","bonded","unbonded"]}},{"ix":22,"action":{"kind":"Deliver","chain":"provider","numPackets":4},"partialState":{"h":5,"t":30,"tokens":[2529,4484,7541,2000],"delegation":[1529,3484,6541,1000],"delegatorTokens":9999999990471,"jailed":[null,null,null,null],"status":["unbonding","bonded","bonded","unbonded"]}},{"ix":23,"action":{"kind":"Undelegate","val":1,"amt":4204},"partialState":{"h":5,"t":30,"tokens":[2529,4484,7541,2000],"delegation":[1529,3484,6541,1000],"delegatorTokens":9999999990471}},{"ix":24,"action":{"kind":"Deliver","chain":"provider","numPackets":6},"partialState":{"h":5,"t":30,"tokens":[2529,4484,7541,2000],"delegation":[1529,3484,6541,1000],"delegatorTokens":9999999990471,"jailed":[null,null,null,null],"status":["unbonding","bonded","bonded","unbonded"]}},{"ix":25,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":4,"t":24,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,true,false,false]}},{"ix":26,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":27,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":28,"action":{"kind":"Deliver","chain":"provider","numPackets":3},"partialState":{"h":5,"t":30,"tokens":[2529,4484,7541,2000],"delegation":[1529,3484,6541,1000],"delegatorTokens":9999999990471,"jailed":[null,null,null,null],"status":["unbonding","bonded","bonded","unbonded"]}},{"ix":29,"action":{"kind":"Delegate","val":3,"amt":3920},"partialState":{"h":5,"t":30,"tokens":[2529,4484,7541,5920],"delegation":[1529,3484,6541,4920],"delegatorTokens":9999999986551}},{"ix":30,"action":{"kind":"Delegate","val":0,"amt":4355},"partialState":{"h":5,"t":30,"tokens":[6884,4484,7541,5920],"delegation":[5884,3484,6541,4920],"delegatorTokens":9999999982196}},{"ix":31,"action":{"kind":"Delegate","val":2,"amt":1926},"partialState":{"h":5,"t":30,"tokens":[6884,4484,9467,5920],"delegation":[5884,3484,8467,4920],"delegatorTokens":9999999980270}},{"ix":32,"action":{"kind":"Undelegate","val":1,"amt":2806},"partialState":{"h":5,"t":30,"tokens":[6884,1678,9467,5920],"delegation":[5884,678,8467,4920],"delegatorTokens":9999999980270}},{"ix":33,"action":{"kind":"Undelegate","val":1,"amt":1663},"partialState":{"h":5,"t":30,"tokens":[6884,1678,9467,5920],"delegation":[5884,678,8467,4920],"delegatorTokens":9999999980270}},{"ix":34,"action":{"kind":"Undelegate","val":1,"amt":1340},"partialState":{"h":5,"t":30,"tokens":[6884,1678,9467,5920],"delegation":[5884,678,8467,4920],"delegatorTokens":9999999980270}},{"ix":35,"action":{"kind":"ConsumerSlash","val":1,"infractionHeight":1,"isDowntime":true},"partialState":{"h":4,"t":24,"outstandingDowntime":[false,true,false,false]}},{"ix":36,"action":{"kind":"Undelegate","val":1,"amt":3831},"partialState":{"h":5,"t":30,"tokens":[6884,1678,9467,5920],"delegation":[5884,678,8467,4920],"delegatorTokens":9999999980270}},{"ix":37,"action":{"kind":"ConsumerSlash","val":0,"infractionHeight":1,"isDowntime":false},"partialState":{"h":4,"t":24,"outstandingDowntime":[false,true,false,false]}},{"ix":38,"action":{"kind":"Undelegate","val":1,"amt":2138},"partialState":{"h":5,"t":30,"tokens":[6884,1678,9467,5920],"delegation":[5884,678,8467,4920],"delegatorTokens":9999999980270}},{"ix":39,"action":{"kind":"Delegate","val":3,"amt":3732},"partialState":{"h":5,"t":30,"tokens":[6884,1678,9467,9652],"delegation":[5884,678,8467,8652],"delegatorTokens":9999999976538}},{"ix":40,"action":{"kind":"Deliver","chain":"provider","numPackets":4},"partialState":{"h":5,"t":30,"tokens":[6884,1678,9467,9652],"delegation":[5884,678,8467,8652],"delegatorTokens":9999999976538,"jailed":[null,null,null,null],"status":["unbonding","bonded","bonded","unbonded"]}},{"ix":41,"action":{"kind":"ConsumerSlash","val":1,"infractionHeight":2,"isDowntime":false},"partialState":{"h":4,"t":24,"outstandingDowntime":[false,true,false,false]}},{"ix":42,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":43,"action":{"kind":"Undelegate","val":0,"amt":1445},"partialState":{"h":5,"t":30,"tokens":[5439,1678,9467,9652],"delegation":[4439,678,8467,8652],"delegatorTokens":9999999976538}},{"ix":44,"action":{"kind":"Undelegate","val":1,"amt":3099},"partialState":{"h":5,"t":30,"tokens":[5439,1678,9467,9652],"delegation":[4439,678,8467,8652],"delegatorTokens":9999999976538}},{"ix":45,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":6,"t":36,"tokens":[5439,1678,9467,9652],"delegation":[4439,678,8467,8652],"delegatorTokens":9999999976538,"jailed":[null,1000000000000029,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":46,"action":{"kind":"Delegate","val":1,"amt":4406},"partialState":{"h":6,"t":36,"tokens":[5439,6084,9467,9652],"delegation":[4439,5084,8467,8652],"delegatorTokens":9999999972132}},{"ix":47,"action":{"kind":"Undelegate","val":1,"amt":2290},"partialState":{"h":6,"t":36,"tokens":[5439,3794,9467,9652],"delegation":[4439,2794,8467,8652],"delegatorTokens":9999999972132}},{"ix":48,"action":{"kind":"Undelegate","val":3,"amt":4896},"partialState":{"h":6,"t":36,"tokens":[5439,3794,9467,4756],"delegation":[4439,2794,8467,3756],"delegatorTokens":9999999972132}},{"ix":49,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":7,"t":42,"tokens":[5439,3794,9467,4756],"delegation":[4439,2794,8467,3756],"delegatorTokens":9999999972132,"jailed":[null,1000000000000029,null,null],"status":["bonded","unbonding","bonded","unbonding"]}},{"ix":50,"action":{"kind":"Undelegate","val":2,"amt":1592},"partialState":{"h":7,"t":42,"tokens":[5439,3794,7875,4756],"delegation":[4439,2794,6875,3756],"delegatorTokens":9999999972132}},{"ix":51,"action":{"kind":"ConsumerSlash","val":0,"infractionHeight":0,"isDowntime":false},"partialState":{"h":4,"t":24,"outstandingDowntime":[false,true,false,false]}},{"ix":52,"action":{"kind":"Deliver","chain":"consumer","numPackets":3},"partialState":{"h":4,"t":24,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":53,"action":{"kind":"Undelegate","val":1,"amt":1927},"partialState":{"h":7,"t":42,"tokens":[5439,1867,7875,4756],"delegation":[4439,867,6875,3756],"delegatorTokens":9999999972132}},{"ix":54,"action":{"kind":"Delegate","val":0,"amt":1889},"partialState":{"h":7,"t":42,"tokens":[7328,1867,7875,4756],"delegation":[6328,867,6875,3756],"delegatorTokens":9999999970243}},{"ix":55,"action":{"kind":"ConsumerSlash","val":1,"infractionHeight":0,"isDowntime":true},"partialState":{"h":4,"t":24,"outstandingDowntime":[false,true,false,false]}},{"ix":56,"action":{"kind":"Delegate","val":0,"amt":4839},"partialState":{"h":7,"t":42,"tokens":[12167,1867,7875,4756],"delegation":[11167,867,6875,3756],"delegatorTokens":9999999965404}},{"ix":57,"action":{"kind":"Delegate","val":3,"amt":3329},"partialState":{"h":7,"t":42,"tokens":[12167,1867,7875,8085],"delegation":[11167,867,6875,7085],"delegatorTokens":9999999962075}},{"ix":58,"action":{"kind":"Undelegate","val":0,"amt":4883},"partialState":{"h":7,"t":42,"tokens":[7284,1867,7875,8085],"delegation":[6284,867,6875,7085],"delegatorTokens":9999999962075}},{"ix":59,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":8,"t":48,"tokens":[7284,1867,7875,8085],"delegation":[6284,867,6875,7085],"delegatorTokens":9999999962075,"jailed":[null,1000000000000029,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":60,"action":{"kind":"Undelegate","val":1,"amt":4102},"partialState":{"h":8,"t":48,"tokens":[7284,1867,7875,8085],"delegation":[6284,867,6875,7085],"delegatorTokens":9999999962075}},{"ix":61,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":62,"action":{"kind":"Delegate","val":3,"amt":2491},"partialState":{"h":8,"t":48,"tokens":[7284,1867,7875,10576],"delegation":[6284,867,6875,9576],"delegatorTokens":9999999959584}},{"ix":63,"action":{"kind":"ConsumerSlash","val":1,"infractionHeight":0,"isDowntime":false},"partialState":{"h":4,"t":24,"outstandingDowntime":[false,true,false,false]}},{"ix":64,"action":{"kind":"Undelegate","val":1,"amt":1649},"partialState":{"h":8,"t":48,"tokens":[7284,1867,7875,10576],"delegation":[6284,867,6875,9576],"delegatorTokens":9999999959584}},{"ix":65,"action":{"kind":"Deliver","chain":"provider","numPackets":5},"partialState":{"h":8,"t":48,"tokens":[7284,1867,7875,10576],"delegation":[6284,867,6875,9576],"delegatorTokens":9999999959584,"jailed":[null,1000000000000029,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":66,"action":{"kind":"Undelegate","val":2,"amt":2193},"partialState":{"h":8,"t":48,"tokens":[7284,1867,5682,10576],"delegation":[6284,867,4682,9576],"delegatorTokens":9999999959584}},{"ix":67,"action":{"kind":"Delegate","val":2,"amt":4118},"partialState":{"h":8,"t":48,"tokens":[7284,1867,9800,10576],"delegation":[6284,867,8800,9576],"delegatorTokens":9999999955466}},{"ix":68,"action":{"kind":"Delegate","val":0,"amt":4914},"partialState":{"h":8,"t":48,"tokens":[12198,1867,9800,10576],"delegation":[11198,867,8800,9576],"delegatorTokens":9999999950552}},{"ix":69,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":70,"action":{"kind":"Delegate","val":0,"amt":1610},"partialState":{"h":8,"t":48,"tokens":[13808,1867,9800,10576],"delegation":[12808,867,8800,9576],"delegatorTokens":9999999948942}},{"ix":71,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":72,"action":{"kind":"Deliver","chain":"provider","numPackets":6},"partialState":{"h":8,"t":48,"tokens":[13808,1867,9800,10576],"delegation":[12808,867,8800,9576],"delegatorTokens":9999999948942,"jailed":[null,1000000000000029,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":73,"action":{"kind":"Delegate","val":3,"amt":1725},"partialState":{"h":8,"t":48,"tokens":[13808,1867,9800,12301],"delegation":[12808,867,8800,11301],"delegatorTokens":9999999947217}},{"ix":74,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":75,"action":{"kind":"Undelegate","val":0,"amt":1483},"partialState":{"h":8,"t":48,"tokens":[12325,1867,9800,12301],"delegation":[11325,867,8800,11301],"delegatorTokens":9999999947217}},{"ix":76,"action":{"kind":"Undelegate","val":0,"amt":4358},"partialState":{"h":8,"t":48,"tokens":[7967,1867,9800,12301],"delegation":[6967,867,8800,11301],"delegatorTokens":9999999947217}},{"ix":77,"action":{"kind":"ConsumerSlash","val":3,"infractionHeight":1,"isDowntime":false},"partialState":{"h":4,"t":24,"outstandingDowntime":[false,true,false,false]}},{"ix":78,"action":{"kind":"Delegate","val":3,"amt":1752},"partialState":{"h":8,"t":48,"tokens":[7967,1867,9800,14053],"delegation":[6967,867,8800,13053],"delegatorTokens":9999999945465}},{"ix":79,"action":{"kind":"Deliver","chain":"provider","numPackets":3},"partialState":{"h":8,"t":48,"tokens":[7967,1867,9800,14053],"delegation":[6967,867,8800,13053],"delegatorTokens":9999999945465,"jailed":[null,1000000000000029,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":80,"action":{"kind":"Delegate","val":3,"amt":4527},"partialState":{"h":8,"t":48,"tokens":[7967,1867,9800,18580],"delegation":[6967,867,8800,17580],"delegatorTokens":9999999940938}},{"ix":81,"action":{"kind":"Delegate","val":0,"amt":3015},"partialState":{"h":8,"t":48,"tokens":[10982,1867,9800,18580],"delegation":[9982,867,8800,17580],"delegatorTokens":9999999937923}},{"ix":82,"action":{"kind":"Undelegate","val":3,"amt":1036},"partialState":{"h":8,"t":48,"tokens":[10982,1867,9800,17544],"delegation":[9982,867,8800,16544],"delegatorTokens":9999999937923}},{"ix":83,"action":{"kind":"Undelegate","val":1,"amt":2867},"partialState":{"h":8,"t":48,"tokens":[10982,1867,9800,17544],"delegation":[9982,867,8800,16544],"delegatorTokens":9999999937923}},{"ix":84,"action":{"kind":"Delegate","val":1,"amt":1679},"partialState":{"h":8,"t":48,"tokens":[10982,3546,9800,17544],"delegation":[9982,2546,8800,16544],"delegatorTokens":9999999936244}},{"ix":85,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":86,"action":{"kind":"Delegate","val":1,"amt":2858},"partialState":{"h":8,"t":48,"tokens":[10982,6404,9800,17544],"delegation":[9982,5404,8800,16544],"delegatorTokens":9999999933386}},{"ix":87,"action":{"kind":"Deliver","chain":"provider","numPackets":5},"partialState":{"h":8,"t":48,"tokens":[10982,6404,9800,17544],"delegation":[9982,5404,8800,16544],"delegatorTokens":9999999933386,"jailed":[null,1000000000000029,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":88,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":89,"action":{"kind":"Undelegate","val":0,"amt":3955},"partialState":{"h":8,"t":48,"tokens":[7027,6404,9800,17544],"delegation":[6027,5404,8800,16544],"delegatorTokens":9999999933386}},{"ix":90,"action":{"kind":"Delegate","val":2,"amt":2968},"partialState":{"h":8,"t":48,"tokens":[7027,6404,12768,17544],"delegation":[6027,5404,11768,16544],"delegatorTokens":9999999930418}},{"ix":91,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":92,"action":{"kind":"Deliver","chain":"provider","numPackets":3},"partialState":{"h":8,"t":48,"tokens":[7027,6404,12768,17544],"delegation":[6027,5404,11768,16544],"delegatorTokens":9999999930418,"jailed":[null,1000000000000029,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":93,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":5,"t":30,"consumerPower":[null,null,9467,9652],"outstandingDowntime":[false,true,false,false]}},{"ix":94,"action":{"kind":"Undelegate","val":1,"amt":2537},"partialState":{"h":8,"t":48,"tokens":[7027,3867,12768,17544],"delegation":[6027,2867,11768,16544],"delegatorTokens":9999999930418}},{"ix":95,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":96,"action":{"kind":"Undelegate","val":2,"amt":4192},"partialState":{"h":8,"t":48,"tokens":[7027,3867,8576,17544],"delegation":[6027,2867,7576,16544],"delegatorTokens":9999999930418}},{"ix":97,"action":{"kind":"Deliver","chain":"consumer","numPackets":3},"partialState":{"h":5,"t":30,"consumerPower":[null,null,9467,9652],"outstandingDowntime":[false,true,false,false]}},{"ix":98,"action":{"kind":"Deliver","chain":"provider","numPackets":6},"partialState":{"h":8,"t":48,"tokens":[7027,3867,8576,17544],"delegation":[6027,2867,7576,16544],"delegatorTokens":9999999930418,"jailed":[null,1000000000000029,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":99,"action":{"kind":"Undelegate","val":3,"amt":4090},"partialState":{"h":8,"t":48,"tokens":[7027,3867,8576,13454],"delegation":[6027,2867,7576,12454],"delegatorTokens":9999999930418}},{"ix":100,"action":{"kind":"Deliver","chain":"consumer","numPackets":3},"partialState":{"h":5,"t":30,"consumerPower":[null,null,9467,9652],"outstandingDowntime":[false,true,false,false]}},{"ix":101,"action":{"kind":"Delegate","val":3,"amt":4810},"partialState":{"h":8,"t":48,"tokens":[7027,3867,8576,18264],"delegation":[6027,2867,7576,17264],"delegatorTokens":9999999925608}},{"ix":102,"action":{"kind":"Deliver","chain":"consumer","numPackets":2},"partialState":{"h":5,"t":30,"consumerPower":[null,null,9467,9652],"outstandingDowntime":[false,true,false,false]}},{"ix":103,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":6,"t":36,"consumerPower":[5439,null,9467,null],"outstandingDowntime":[false,true,false,false]}},{"ix":104,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":9,"t":54,"tokens":[7027,3867,8576,18264],"delegation":[6027,2867,7576,17264],"delegatorTokens":9999999925608,"jailed":[null,1000000000000029,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":105,"action":{"kind":"Undelegate","val":1,"amt":4965},"partialState":{"h":9,"t":54,"tokens":[7027,3867,8576,18264],"delegation":[6027,2867,7576,17264],"delegatorTokens":9999999925608}},{"ix":106,"action":{"kind":"Delegate","val":0,"amt":3309},"partialState":{"h":9,"t":54,"tokens":[10336,3867,8576,18264],"delegation":[9336,2867,7576,17264],"delegatorTokens":9999999922299}},{"ix":107,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":108,"action":{"kind":"Undelegate","val":1,"amt":2896},"partialState":{"h":9,"t":54,"tokens":[10336,3867,8576,18264],"delegation":[9336,2867,7576,17264],"delegatorTokens":9999999922299}},{"ix":109,"action":{"kind":"Deliver","chain":"provider","numPackets":4},"partialState":{"h":9,"t":54,"tokens":[10336,3867,8576,18264],"delegation":[9336,2867,7576,17264],"delegatorTokens":9999999922299,"jailed":[null,1000000000000029,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":110,"action":{"kind":"Delegate","val":0,"amt":1770},"partialState":{"h":9,"t":54,"tokens":[12106,3867,8576,18264],"delegation":[11106,2867,7576,17264],"delegatorTokens":9999999920529}},{"ix":111,"action":{"kind":"Undelegate","val":3,"amt":3806},"partialState":{"h":9,"t":54,"tokens":[12106,3867,8576,14458],"delegation":[11106,2867,7576,13458],"delegatorTokens":9999999920529}},{"ix":112,"action":{"kind":"Undelegate","val":3,"amt":1670},"partialState":{"h":9,"t":54,"tokens":[12106,3867,8576,12788],"delegation":[11106,2867,7576,11788],"delegatorTokens":9999999920529}},{"ix":113,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":114,"action":{"kind":"Deliver","chain":"consumer","numPackets":4},"partialState":{"h":6,"t":36,"consumerPower":[5439,null,9467,null],"outstandingDowntime":[false,true,false,false]}},{"ix":115,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":10,"t":60,"tokens":[12106,3867,8576,12788],"delegation":[11106,2867,7576,11788],"delegatorTokens":9999999920529,"jailed":[null,1000000000000053,null,null],"status":["bonded","unbonding","unbonding","bonded"]}},{"ix":116,"action":{"kind":"Undelegate","val":1,"amt":2577},"partialState":{"h":10,"t":60,"tokens":[12106,1290,8576,12788],"delegation":[11106,290,7576,11788],"delegatorTokens":9999999920529}},{"ix":117,"action":{"kind":"Deliver","chain":"consumer","numPackets":6},"partialState":{"h":6,"t":36,"consumerPower":[5439,null,9467,null],"outstandingDowntime":[false,true,false,false]}},{"ix":118,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":7,"t":42,"consumerPower":[null,null,8576,18264],"outstandingDowntime":[false,true,false,false]}},{"ix":119,"action":{"kind":"Deliver","chain":"provider","numPackets":3},"partialState":{"h":10,"t":60,"tokens":[12106,1290,8576,12788],"delegation":[11106,290,7576,11788],"delegatorTokens":9999999920529,"jailed":[null,1000000000000053,null,null],"status":["bonded","unbonding","unbonding","bonded"]}},{"ix":120,"action":{"kind":"Undelegate","val":3,"amt":3015},"partialState":{"h":10,"t":60,"tokens":[12106,1290,8576,9773],"delegation":[11106,290,7576,8773],"delegatorTokens":9999999920529}},{"ix":121,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":11,"t":66,"tokens":[12106,1290,8576,9773],"delegation":[11106,290,7576,8773],"delegatorTokens":9999999920529,"jailed":[null,1000000000000053,null,null],"status":["bonded","unbonding","unbonding","bonded"]}},{"ix":122,"action":{"kind":"Undelegate","val":0,"amt":1702},"partialState":{"h":11,"t":66,"tokens":[10404,1290,8576,9773],"delegation":[9404,290,7576,8773],"delegatorTokens":9999999920529}},{"ix":123,"action":{"kind":"Deliver","chain":"consumer","numPackets":6},"partialState":{"h":7,"t":42,"consumerPower":[null,null,8576,18264],"outstandingDowntime":[false,false,false,false]}},{"ix":124,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":8,"t":48,"consumerPower":[12106,null,null,12788],"outstandingDowntime":[false,false,false,false]}},{"ix":125,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":9,"t":54,"consumerPower":[12106,null,null,12788],"outstandingDowntime":[false,false,false,false]}},{"ix":126,"action":{"kind":"Delegate","val":3,"amt":3633},"partialState":{"h":11,"t":66,"tokens":[10404,1290,8576,13406],"delegation":[9404,290,7576,12406],"delegatorTokens":9999999916896}},{"ix":127,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":128,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":129,"action":{"kind":"Delegate","val":2,"amt":1218},"partialState":{"h":11,"t":66,"tokens":[10404,1290,9794,13406],"delegation":[9404,290,8794,12406],"delegatorTokens":9999999915678}},{"ix":130,"action":{"kind":"Delegate","val":3,"amt":3321},"partialState":{"h":11,"t":66,"tokens":[10404,1290,9794,16727],"delegation":[9404,290,8794,15727],"delegatorTokens":9999999912357}},{"ix":131,"action":{"kind":"Delegate","val":2,"amt":3132},"partialState":{"h":11,"t":66,"tokens":[10404,1290,12926,16727],"delegation":[9404,290,11926,15727],"delegatorTokens":9999999909225}},{"ix":132,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":133,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":134,"action":{"kind":"Delegate","val":0,"amt":3102},"partialState":{"h":11,"t":66,"tokens":[13506,1290,12926,16727],"delegation":[12506,290,11926,15727],"delegatorTokens":9999999906123}},{"ix":135,"action":{"kind":"Undelegate","val":0,"amt":4128},"partialState":{"h":11,"t":66,"tokens":[9378,1290,12926,16727],"delegation":[8378,290,11926,15727],"delegatorTokens":9999999906123}},{"ix":136,"action":{"kind":"Delegate","val":1,"amt":3930},"partialState":{"h":11,"t":66,"tokens":[9378,5220,12926,16727],"delegation":[8378,4220,11926,15727],"delegatorTokens":9999999902193}},{"ix":137,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":138,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":12,"t":72,"tokens":[9378,5220,12926,16727],"delegation":[8378,4220,11926,15727],"delegatorTokens":9999999902193,"jailed":[null,1000000000000053,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":139,"action":{"kind":"Delegate","val":1,"amt":3115},"partialState":{"h":12,"t":72,"tokens":[9378,8335,12926,16727],"delegation":[8378,7335,11926,15727],"delegatorTokens":9999999899078}},{"ix":140,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":10,"t":60,"consumerPower":[12106,null,null,12788],"outstandingDowntime":[false,false,false,false]}},{"ix":141,"action":{"kind":"Undelegate","val":0,"amt":1634},"partialState":{"h":12,"t":72,"tokens":[7744,8335,12926,16727],"delegation":[6744,7335,11926,15727],"delegatorTokens":9999999899078}},{"ix":142,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":11,"t":66,"consumerPower":[12106,null,null,12788],"outstandingDowntime":[false,false,false,false]}},{"ix":143,"action":{"kind":"Delegate","val":2,"amt":3401},"partialState":{"h":12,"t":72,"tokens":[7744,8335,16327,16727],"delegation":[6744,7335,15327,15727],"delegatorTokens":9999999895677}},{"ix":144,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":145,"action":{"kind":"Undelegate","val":0,"amt":2737},"partialState":{"h":12,"t":72,"tokens":[5007,8335,16327,16727],"delegation":[4007,7335,15327,15727],"delegatorTokens":9999999895677}},{"ix":146,"action":{"kind":"Undelegate","val":2,"amt":4029},"partialState":{"h":12,"t":72,"tokens":[5007,8335,12298,16727],"delegation":[4007,7335,11298,15727],"delegatorTokens":9999999895677}},{"ix":147,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":148,"action":{"kind":"Delegate","val":0,"amt":2670},"partialState":{"h":12,"t":72,"tokens":[7677,8335,12298,16727],"delegation":[6677,7335,11298,15727],"delegatorTokens":9999999893007}},{"ix":149,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":12,"t":72,"consumerPower":[12106,null,null,12788],"outstandingDowntime":[false,false,false,false]}},{"ix":150,"action":{"kind":"Delegate","val":2,"amt":3587},"partialState":{"h":12,"t":72,"tokens":[7677,8335,15885,16727],"delegation":[6677,7335,14885,15727],"delegatorTokens":9999999889420}},{"ix":151,"action":{"kind":"Undelegate","val":0,"amt":2139},"partialState":{"h":12,"t":72,"tokens":[5538,8335,15885,16727],"delegation":[4538,7335,14885,15727],"delegatorTokens":9999999889420}},{"ix":152,"action":{"kind":"Deliver","chain":"provider","numPackets":4},"partialState":{"h":12,"t":72,"tokens":[5538,8335,15885,16727],"delegation":[4538,7335,14885,15727],"delegatorTokens":9999999889420,"jailed":[null,1000000000000053,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":153,"action":{"kind":"Deliver","chain":"consumer","numPackets":5},"partialState":{"h":12,"t":72,"consumerPower":[12106,null,null,12788],"outstandingDowntime":[false,false,false,false]}},{"ix":154,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":13,"t":78,"consumerPower":[12106,null,null,9773],"outstandingDowntime":[false,false,false,false]}},{"ix":155,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":14,"t":84,"consumerPower":[12106,null,null,9773],"outstandingDowntime":[false,false,false,false]}},{"ix":156,"action":{"kind":"Delegate","val":3,"amt":4789},"partialState":{"h":12,"t":72,"tokens":[5538,8335,15885,21516],"delegation":[4538,7335,14885,20516],"delegatorTokens":9999999884631}},{"ix":157,"action":{"kind":"Undelegate","val":2,"amt":4693},"partialState":{"h":12,"t":72,"tokens":[5538,8335,11192,21516],"delegation":[4538,7335,10192,20516],"delegatorTokens":9999999884631}},{"ix":158,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":159,"action":{"kind":"Undelegate","val":3,"amt":2568},"partialState":{"h":12,"t":72,"tokens":[5538,8335,11192,18948],"delegation":[4538,7335,10192,17948],"delegatorTokens":9999999884631}},{"ix":160,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":13,"t":78,"tokens":[5538,8335,11192,18948],"delegation":[4538,7335,10192,17948],"delegatorTokens":9999999884631,"jailed":[null,1000000000000053,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":161,"action":{"kind":"Deliver","chain":"consumer","numPackets":3},"partialState":{"h":14,"t":84,"consumerPower":[12106,null,null,9773],"outstandingDowntime":[false,false,false,false]}},{"ix":162,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":14,"t":84,"tokens":[5538,8335,11192,18948],"delegation":[4538,7335,10192,17948],"delegatorTokens":9999999884631,"jailed":[null,1000000000000053,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":163,"action":{"kind":"Undelegate","val":1,"amt":2907},"partialState":{"h":14,"t":84,"tokens":[5538,5428,11192,18948],"delegation":[4538,4428,10192,17948],"delegatorTokens":9999999884631}},{"ix":164,"action":{"kind":"Deliver","chain":"consumer","numPackets":3},"partialState":{"h":14,"t":84,"consumerPower":[12106,null,null,9773],"outstandingDowntime":[false,false,false,false]}},{"ix":165,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":15,"t":90,"consumerPower":[null,null,11192,18948],"outstandingDowntime":[false,false,false,false]}},{"ix":166,"action":{"kind":"Undelegate","val":0,"amt":2673},"partialState":{"h":14,"t":84,"tokens":[2865,5428,11192,18948],"delegation":[1865,4428,10192,17948],"delegatorTokens":9999999884631}},{"ix":167,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":168,"action":{"kind":"Deliver","chain":"provider","numPackets":4},"partialState":{"h":14,"t":84,"tokens":[2865,5428,11192,18948],"delegation":[1865,4428,10192,17948],"delegatorTokens":9999999884631,"jailed":[null,1000000000000053,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":169,"action":{"kind":"Undelegate","val":1,"amt":4163},"partialState":{"h":14,"t":84,"tokens":[2865,1265,11192,18948],"delegation":[1865,265,10192,17948],"delegatorTokens":9999999884631}},{"ix":170,"action":{"kind":"Undelegate","val":2,"amt":2241},"partialState":{"h":14,"t":84,"tokens":[2865,1265,8951,18948],"delegation":[1865,265,7951,17948],"delegatorTokens":9999999884631}},{"ix":171,"action":{"kind":"Delegate","val":0,"amt":2859},"partialState":{"h":14,"t":84,"tokens":[5724,1265,8951,18948],"delegation":[4724,265,7951,17948],"delegatorTokens":9999999881772}},{"ix":172,"action":{"kind":"Delegate","val":2,"amt":4551},"partialState":{"h":14,"t":84,"tokens":[5724,1265,13502,18948],"delegation":[4724,265,12502,17948],"delegatorTokens":9999999877221}},{"ix":173,"action":{"kind":"Deliver","chain":"consumer","numPackets":5},"partialState":{"h":15,"t":90,"consumerPower":[null,null,11192,18948],"outstandingDowntime":[false,false,false,false]}},{"ix":174,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":15,"t":90,"tokens":[5724,1265,13502,18948],"delegation":[4724,265,12502,17948],"delegatorTokens":9999999879692,"jailed":[null,1000000000000053,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":175,"action":{"kind":"Undelegate","val":0,"amt":1649},"partialState":{"h":15,"t":90,"tokens":[4075,1265,13502,18948],"delegation":[3075,265,12502,17948],"delegatorTokens":9999999879692}},{"ix":176,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":177,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":178,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":179,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":16,"t":96,"tokens":[4075,1265,13502,18948],"delegation":[3075,265,12502,17948],"delegatorTokens":9999999879692,"jailed":[null,1000000000000053,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":180,"action":{"kind":"Undelegate","val":0,"amt":2995},"partialState":{"h":16,"t":96,"tokens":[1080,1265,13502,18948],"delegation":[80,265,12502,17948],"delegatorTokens":9999999879692}},{"ix":181,"action":{"kind":"Deliver","chain":"consumer","numPackets":3},"partialState":{"h":15,"t":90,"consumerPower":[null,null,11192,18948],"outstandingDowntime":[false,false,false,false]}},{"ix":182,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":183,"action":{"kind":"Deliver","chain":"provider","numPackets":2},"partialState":{"h":16,"t":96,"tokens":[1080,1265,13502,18948],"delegation":[80,265,12502,17948],"delegatorTokens":9999999879692,"jailed":[null,1000000000000053,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":184,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":16,"t":96,"consumerPower":[null,null,13502,18948],"outstandingDowntime":[false,false,false,false]}},{"ix":185,"action":{"kind":"Deliver","chain":"consumer","numPackets":1},"partialState":{"h":16,"t":96,"consumerPower":[null,null,13502,18948],"outstandingDowntime":[false,false,false,false]}},{"ix":186,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":17,"t":102,"tokens":[1080,1265,13502,18948],"delegation":[80,265,12502,17948],"delegatorTokens":9999999879692,"jailed":[null,1000000000000053,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":187,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":188,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":189,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":17,"t":102,"consumerPower":[null,null,13502,18948],"outstandingDowntime":[false,false,false,false]}},{"ix":190,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":18,"t":108,"tokens":[1080,1265,13502,18948],"delegation":[80,265,12502,17948],"delegatorTokens":9999999888447,"jailed":[null,1000000000000053,null,null],"status":["unbonding","unbonded","bonded","bonded"]}},{"ix":191,"action":{"kind":"Deliver","chain":"provider","numPackets":6},"partialState":{"h":18,"t":108,"tokens":[1080,1265,13502,18948],"delegation":[80,265,12502,17948],"delegatorTokens":9999999888447,"jailed":[null,1000000000000053,null,null],"status":["unbonding","unbonded","bonded","bonded"]}},{"ix":192,"action":{"kind":"Delegate","val":2,"amt":4482},"partialState":{"h":18,"t":108,"tokens":[1080,1265,17984,18948],"delegation":[80,265,16984,17948],"delegatorTokens":9999999883965}},{"ix":193,"action":{"kind":"Delegate","val":3,"amt":3301},"partialState":{"h":18,"t":108,"tokens":[1080,1265,17984,22249],"delegation":[80,265,16984,21249],"delegatorTokens":9999999880664}},{"ix":194,"action":{"kind":"Delegate","val":1,"amt":2304},"partialState":{"h":18,"t":108,"tokens":[1080,3569,17984,22249],"delegation":[80,2569,16984,21249],"delegatorTokens":9999999878360}},{"ix":195,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":196,"action":{"kind":"Deliver","chain":"consumer","numPackets":4},"partialState":{"h":17,"t":102,"consumerPower":[null,null,13502,18948],"outstandingDowntime":[false,false,false,false]}},{"ix":197,"action":{"kind":"Undelegate","val":1,"amt":4738},"partialState":{"h":18,"t":108,"tokens":[1080,3569,17984,22249],"delegation":[80,2569,16984,21249],"delegatorTokens":9999999878360}},{"ix":198,"action":{"kind":"Deliver","chain":"consumer","numPackets":2},"partialState":{"h":17,"t":102,"consumerPower":[null,null,13502,18948],"outstandingDowntime":[false,false,false,false]}},{"ix":199,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":19,"t":114,"tokens":[1080,3569,17984,22249],"delegation":[80,2569,16984,21249],"delegatorTokens":9999999885546,"jailed":[null,1000000000000053,null,null],"status":["unbonding","unbonded","bonded","bonded"]}}],"events":["more_than_one_third_val_power_change","send_vsc_without_downtime_ack","insufficient_shares","send_vsc_without_downtime_ack","insufficient_shares","send_downtime_slash_request","downtime_slash_request_outstanding","insufficient_shares","insufficient_shares","insufficient_shares","downtime_slash_request_outstanding","insufficient_shares","send_double_sign_slash_request","insufficient_shares","send_double_sign_slash_request","insufficient_shares","more_than_one_third_val_power_change","receive_downtime_slash_request","jail","send_vsc_with_downtime_ack","more_than_one_third_val_power_change","rebond_unval","send_vsc_without_downtime_ack","send_double_sign_slash_request","receive_downtime_slash_ack","send_downtime_slash_request","more_than_one_third_val_power_change","rebond_unval","send_vsc_without_downtime_ack","insufficient_shares","send_double_sign_slash_request","insufficient_shares","send_double_sign_slash_request","insufficient_shares","consumer_del_val","consumer_add_val","consumer_del_val","consumer_add_val","consumer_add_val","consumer_del_val","send_vsc_without_downtime_ack","insufficient_shares","insufficient_shares","receive_double_sign_slash_request","receive_double_sign_slash_request","receive_double_sign_slash_request","more_than_one_third_val_power_change","rebond_unval","receive_downtime_slash_request","jail","send_vsc_with_downtime_ack","consumer_del_val","consumer_update_val","consumer_add_val","receive_double_sign_slash_request","receive_double_sign_slash_request","send_vsc_without_downtime_ack","receive_downtime_slash_ack","consumer_add_val","consumer_del_val","consumer_update_val","more_than_one_third_val_power_change","rebond_unval","send_vsc_without_downtime_ack","consumer_update_val","consumer_send_maturation","consumer_send_maturation","consumer_send_maturation","send_vsc_without_downtime_ack","consumer_send_maturation","consumer_del_val","consumer_add_val","consumer_update_val","some_undels_expired_but_not_completed","complete_undel_immediate","set_undel_hold_false","set_undel_hold_false","set_undel_hold_false","set_undel_hold_false","set_unval_hold_false","send_vsc_without_downtime_ack","send_vsc_not_because_change","send_vsc_without_downtime_ack","consumer_send_maturation","consumer_send_maturation","consumer_update_val","send_vsc_not_because_change","send_vsc_without_downtime_ack","consumer_send_maturation","complete_unval_in_endblock","complete_undel_in_endblock","insufficient_shares","some_undels_expired_but_not_completed","complete_undel_immediate","complete_undel_immediate","set_undel_hold_false","set_undel_hold_false","set_undel_hold_false","set_undel_hold_false","set_undel_hold_false","set_undel_hold_false","set_undel_hold_false","set_undel_hold_false","set_undel_hold_false","set_undel_hold_false","set_undel_hold_false","send_vsc_without_downtime_ack"]},{"meta":{"commit":"7ffd0c04e4205cbc9caf212abfe6c59ee43153bf"},"constants":{"P":"provider","C":"consumer","UNBONDING_SECONDS_P":70,"UNBONDING_SECONDS_C":50,"TRUSTING_SECONDS":49,"NUM_VALIDATORS":4,"MAX_VALIDATORS":2,"SLASH_DOUBLESIGN":0,"SLASH_DOWNTIME":0,"JAIL_SECONDS":999999999999999,"BLOCK_SECONDS":6,"INITIAL_DELEGATOR_TOKENS":10000000000000,"DELEGATE_AMT_MIN":1000,"DELEGATE_AMT_MAX":5000,"UNDELEGATE_AMT_MIN":1000,"UNDELEGATE_AMT_MAX":5000,"ISDOWNTIME_PROBABILITY":0.5,"MAX_NUM_PACKETS_FOR_DELIVER":6},"actions":[{"ix":0,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":2,"t":12,"tokens":[5000,4000,3000,2000],"delegation":[4000,3000,2000,1000],"delegatorTokens":10000000000000,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":1,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":2,"t":12,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":2,"action":{"kind":"Undelegate","val":1,"amt":2173},"partialState":{"h":2,"t":12,"tokens":[5000,1827,3000,2000],"delegation":[4000,827,2000,1000],"delegatorTokens":10000000000000}},{"ix":3,"action":{"kind":"Undelegate","val":0,"amt":3178},"partialState":{"h":2,"t":12,"tokens":[1822,1827,3000,2000],"delegation":[822,827,2000,1000],"delegatorTokens":10000000000000}},{"ix":4,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":5,"action":{"kind":"Deliver","chain":"consumer","numPackets":4},"partialState":{"h":2,"t":12,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":6,"action":{"kind":"Deliver","chain":"consumer","numPackets":1},"partialState":{"h":2,"t":12,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":7,"action":{"kind":"ConsumerSlash","val":2,"infractionHeight":0,"isDowntime":false},"partialState":{"h":2,"t":12,"outstandingDowntime":[false,false,false,false]}},{"ix":8,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":3,"t":18,"tokens":[1822,1827,3000,2000],"delegation":[822,827,2000,1000],"delegatorTokens":10000000000000,"jailed":[null,null,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":9,"action":{"kind":"ConsumerSlash","val":2,"infractionHeight":1,"isDowntime":false},"partialState":{"h":2,"t":12,"outstandingDowntime":[false,false,false,false]}},{"ix":10,"action":{"kind":"ConsumerSlash","val":1,"infractionHeight":1,"isDowntime":true},"partialState":{"h":2,"t":12,"outstandingDowntime":[false,true,false,false]}},{"ix":11,"action":{"kind":"Delegate","val":0,"amt":3183},"partialState":{"h":3,"t":18,"tokens":[5005,1827,3000,2000],"delegation":[4005,827,2000,1000],"delegatorTokens":9999999996817}},{"ix":12,"action":{"kind":"Deliver","chain":"consumer","numPackets":2},"partialState":{"h":2,"t":12,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,true,false,false]}},{"ix":13,"action":{"kind":"Delegate","val":1,"amt":1170},"partialState":{"h":3,"t":18,"tokens":[5005,2997,3000,2000],"delegation":[4005,1997,2000,1000],"delegatorTokens":9999999995647}},{"ix":14,"action":{"kind":"Delegate","val":3,"amt":2522},"partialState":{"h":3,"t":18,"tokens":[5005,2997,3000,4522],"delegation":[4005,1997,2000,3522],"delegatorTokens":9999999993125}},{"ix":15,"action":{"kind":"Deliver","chain":"consumer","numPackets":4},"partialState":{"h":2,"t":12,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,true,false,false]}},{"ix":16,"action":{"kind":"Deliver","chain":"consumer","numPackets":2},"partialState":{"h":2,"t":12,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,true,false,false]}},{"ix":17,"action":{"kind":"Undelegate","val":1,"amt":1876},"partialState":{"h":3,"t":18,"tokens":[5005,1121,3000,4522],"delegation":[4005,121,2000,3522],"delegatorTokens":9999999993125}},{"ix":18,"action":{"kind":"ConsumerSlash","val":0,"infractionHeight":1,"isDowntime":true},"partialState":{"h":2,"t":12,"outstandingDowntime":[true,true,false,false]}},{"ix":19,"action":{"kind":"Delegate","val":2,"amt":3830},"partialState":{"h":3,"t":18,"tokens":[5005,1121,6830,4522],"delegation":[4005,121,5830,3522],"delegatorTokens":9999999989295}},{"ix":20,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":21,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":4,"t":24,"tokens":[5005,1121,6830,4522],"delegation":[4005,121,5830,3522],"delegatorTokens":9999999989295,"jailed":[null,null,null,null],"status":["bonded","unbonding","bonded","unbonding"]}},{"ix":22,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":23,"action":{"kind":"Undelegate","val":2,"amt":2481},"partialState":{"h":4,"t":24,"tokens":[5005,1121,4349,4522],"delegation":[4005,121,3349,3522],"delegatorTokens":9999999989295}},{"ix":24,"action":{"kind":"Undelegate","val":2,"amt":1041},"partialState":{"h":4,"t":24,"tokens":[5005,1121,3308,4522],"delegation":[4005,121,2308,3522],"delegatorTokens":9999999989295}},{"ix":25,"action":{"kind":"Delegate","val":1,"amt":2567},"partialState":{"h":4,"t":24,"tokens":[5005,3688,3308,4522],"delegation":[4005,2688,2308,3522],"delegatorTokens":9999999986728}},{"ix":26,"action":{"kind":"Undelegate","val":2,"amt":3937},"partialState":{"h":4,"t":24,"tokens":[5005,3688,3308,4522],"delegation":[4005,2688,2308,3522],"delegatorTokens":9999999986728}},{"ix":27,"action":{"kind":"Deliver","chain":"consumer","numPackets":2},"partialState":{"h":2,"t":12,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[true,true,false,false]}},{"ix":28,"action":{"kind":"Deliver","chain":"consumer","numPackets":3},"partialState":{"h":2,"t":12,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[true,true,false,false]}},{"ix":29,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":5,"t":30,"tokens":[5005,3688,3308,4522],"delegation":[4005,2688,2308,3522],"delegatorTokens":9999999986728,"jailed":[null,null,null,null],"status":["bonded","unbonding","unbonding","bonded"]}},{"ix":30,"action":{"kind":"Deliver","chain":"consumer","numPackets":1},"partialState":{"h":2,"t":12,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[true,true,false,false]}},{"ix":31,"action":{"kind":"Delegate","val":2,"amt":3883},"partialState":{"h":5,"t":30,"tokens":[5005,3688,7191,4522],"delegation":[4005,2688,6191,3522],"delegatorTokens":9999999982845}},{"ix":32,"action":{"kind":"Delegate","val":0,"amt":1038},"partialState":{"h":5,"t":30,"tokens":[6043,3688,7191,4522],"delegation":[5043,2688,6191,3522],"delegatorTokens":9999999981807}},{"ix":33,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":3,"t":18,"consumerPower":[5005,null,6830,null],"outstandingDowntime":[true,true,false,false]}},{"ix":34,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":4,"t":24,"consumerPower":[5005,null,6830,null],"outstandingDowntime":[true,true,false,false]}},{"ix":35,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":6,"t":36,"tokens":[6043,3688,7191,4522],"delegation":[5043,2688,6191,3522],"delegatorTokens":9999999981807,"jailed":[null,null,null,null],"status":["bonded","unbonding","bonded","unbonding"]}},{"ix":36,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":5,"t":30,"consumerPower":[5005,null,6830,null],"outstandingDowntime":[true,true,false,false]}},{"ix":37,"action":{"kind":"Undelegate","val":2,"amt":1556},"partialState":{"h":6,"t":36,"tokens":[6043,3688,5635,4522],"delegation":[5043,2688,4635,3522],"delegatorTokens":9999999981807}},{"ix":38,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":39,"action":{"kind":"Undelegate","val":1,"amt":4100},"partialState":{"h":6,"t":36,"tokens":[6043,3688,5635,4522],"delegation":[5043,2688,4635,3522],"delegatorTokens":9999999981807}},{"ix":40,"action":{"kind":"Undelegate","val":1,"amt":3747},"partialState":{"h":6,"t":36,"tokens":[6043,3688,5635,4522],"delegation":[5043,2688,4635,3522],"delegatorTokens":9999999981807}},{"ix":41,"action":{"kind":"Deliver","chain":"consumer","numPackets":3},"partialState":{"h":5,"t":30,"consumerPower":[5005,null,6830,null],"outstandingDowntime":[true,true,false,false]}},{"ix":42,"action":{"kind":"Undelegate","val":0,"amt":2095},"partialState":{"h":6,"t":36,"tokens":[3948,3688,5635,4522],"delegation":[2948,2688,4635,3522],"delegatorTokens":9999999981807}},{"ix":43,"action":{"kind":"Delegate","val":1,"amt":4446},"partialState":{"h":6,"t":36,"tokens":[3948,8134,5635,4522],"delegation":[2948,7134,4635,3522],"delegatorTokens":9999999977361}},{"ix":44,"action":{"kind":"Delegate","val":3,"amt":2834},"partialState":{"h":6,"t":36,"tokens":[3948,8134,5635,7356],"delegation":[2948,7134,4635,6356],"delegatorTokens":9999999974527}},{"ix":45,"action":{"kind":"Delegate","val":0,"amt":4054},"partialState":{"h":6,"t":36,"tokens":[8002,8134,5635,7356],"delegation":[7002,7134,4635,6356],"delegatorTokens":9999999970473}},{"ix":46,"action":{"kind":"Delegate","val":3,"amt":4579},"partialState":{"h":6,"t":36,"tokens":[8002,8134,5635,11935],"delegation":[7002,7134,4635,10935],"delegatorTokens":9999999965894}},{"ix":47,"action":{"kind":"Undelegate","val":2,"amt":2845},"partialState":{"h":6,"t":36,"tokens":[8002,8134,2790,11935],"delegation":[7002,7134,1790,10935],"delegatorTokens":9999999965894}},{"ix":48,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":7,"t":42,"tokens":[8002,8134,2790,11935],"delegation":[7002,7134,1790,10935],"delegatorTokens":9999999965894,"jailed":[null,null,null,null],"status":["unbonding","bonded","unbonding","bonded"]}},{"ix":49,"action":{"kind":"Delegate","val":2,"amt":4258},"partialState":{"h":7,"t":42,"tokens":[8002,8134,7048,11935],"delegation":[7002,7134,6048,10935],"delegatorTokens":9999999961636}},{"ix":50,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":51,"action":{"kind":"Deliver","chain":"consumer","numPackets":5},"partialState":{"h":5,"t":30,"consumerPower":[5005,null,6830,null],"outstandingDowntime":[true,true,false,false]}},{"ix":52,"action":{"kind":"Deliver","chain":"provider","numPackets":3},"partialState":{"h":7,"t":42,"tokens":[8002,8134,7048,11935],"delegation":[7002,7134,6048,10935],"delegatorTokens":9999999961636,"jailed":[null,null,null,null],"status":["unbonding","bonded","unbonding","bonded"]}},{"ix":53,"action":{"kind":"Undelegate","val":3,"amt":1161},"partialState":{"h":7,"t":42,"tokens":[8002,8134,7048,10774],"delegation":[7002,7134,6048,9774],"delegatorTokens":9999999961636}},{"ix":54,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":6,"t":36,"consumerPower":[6043,null,7191,null],"outstandingDowntime":[true,true,false,false]}},{"ix":55,"action":{"kind":"Deliver","chain":"consumer","numPackets":2},"partialState":{"h":6,"t":36,"consumerPower":[6043,null,7191,null],"outstandingDowntime":[true,true,false,false]}},{"ix":56,"action":{"kind":"Delegate","val":3,"amt":1899},"partialState":{"h":7,"t":42,"tokens":[8002,8134,7048,12673],"delegation":[7002,7134,6048,11673],"delegatorTokens":9999999959737}},{"ix":57,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":8,"t":48,"tokens":[8002,8134,7048,12673],"delegation":[7002,7134,6048,11673],"delegatorTokens":9999999959737,"jailed":[null,1000000000000041,null,null],"status":["unbonding","bonded","unbonding","bonded"]}},{"ix":58,"action":{"kind":"Deliver","chain":"consumer","numPackets":4},"partialState":{"h":6,"t":36,"consumerPower":[6043,null,7191,null],"outstandingDowntime":[true,true,false,false]}},{"ix":59,"action":{"kind":"Undelegate","val":0,"amt":4097},"partialState":{"h":8,"t":48,"tokens":[3905,8134,7048,12673],"delegation":[2905,7134,6048,11673],"delegatorTokens":9999999959737}},{"ix":60,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":9,"t":54,"tokens":[3905,8134,7048,12673],"delegation":[2905,7134,6048,11673],"delegatorTokens":9999999959737,"jailed":[null,1000000000000041,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":61,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":10,"t":60,"tokens":[3905,8134,7048,12673],"delegation":[2905,7134,6048,11673],"delegatorTokens":9999999959737,"jailed":[null,1000000000000041,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":62,"action":{"kind":"Delegate","val":1,"amt":3858},"partialState":{"h":10,"t":60,"tokens":[3905,11992,7048,12673],"delegation":[2905,10992,6048,11673],"delegatorTokens":9999999955879}},{"ix":63,"action":{"kind":"Undelegate","val":1,"amt":1515},"partialState":{"h":10,"t":60,"tokens":[3905,10477,7048,12673],"delegation":[2905,9477,6048,11673],"delegatorTokens":9999999955879}},{"ix":64,"action":{"kind":"Undelegate","val":2,"amt":3280},"partialState":{"h":10,"t":60,"tokens":[3905,10477,3768,12673],"delegation":[2905,9477,2768,11673],"delegatorTokens":9999999955879}},{"ix":65,"action":{"kind":"Deliver","chain":"consumer","numPackets":4},"partialState":{"h":6,"t":36,"consumerPower":[6043,null,7191,null],"outstandingDowntime":[true,false,false,false]}},{"ix":66,"action":{"kind":"Deliver","chain":"consumer","numPackets":4},"partialState":{"h":6,"t":36,"consumerPower":[6043,null,7191,null],"outstandingDowntime":[true,false,false,false]}},{"ix":67,"action":{"kind":"Undelegate","val":2,"amt":4244},"partialState":{"h":10,"t":60,"tokens":[3905,10477,3768,12673],"delegation":[2905,9477,2768,11673],"delegatorTokens":9999999955879}},{"ix":68,"action":{"kind":"Deliver","chain":"consumer","numPackets":6},"partialState":{"h":6,"t":36,"consumerPower":[6043,null,7191,null],"outstandingDowntime":[true,false,false,false]}},{"ix":69,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":70,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":11,"t":66,"tokens":[3905,10477,3768,12673],"delegation":[2905,9477,2768,11673],"delegatorTokens":9999999955879,"jailed":[null,1000000000000041,null,null],"status":["bonded","unbonding","unbonding","bonded"]}},{"ix":71,"action":{"kind":"Delegate","val":1,"amt":1677},"partialState":{"h":11,"t":66,"tokens":[3905,12154,3768,12673],"delegation":[2905,11154,2768,11673],"delegatorTokens":9999999954202}},{"ix":72,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":73,"action":{"kind":"Delegate","val":1,"amt":4562},"partialState":{"h":11,"t":66,"tokens":[3905,16716,3768,12673],"delegation":[2905,15716,2768,11673],"delegatorTokens":9999999949640}},{"ix":74,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":7,"t":42,"consumerPower":[null,null,7048,12673],"outstandingDowntime":[true,false,false,false]}},{"ix":75,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":76,"action":{"kind":"Undelegate","val":1,"amt":3531},"partialState":{"h":11,"t":66,"tokens":[3905,13185,3768,12673],"delegation":[2905,12185,2768,11673],"delegatorTokens":9999999949640}},{"ix":77,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":12,"t":72,"tokens":[3905,13185,3768,12673],"delegation":[2905,12185,2768,11673],"delegatorTokens":9999999949640,"jailed":[null,1000000000000041,null,null],"status":["bonded","unbonding","unbonding","bonded"]}},{"ix":78,"action":{"kind":"Delegate","val":2,"amt":3686},"partialState":{"h":12,"t":72,"tokens":[3905,13185,7454,12673],"delegation":[2905,12185,6454,11673],"delegatorTokens":9999999945954}},{"ix":79,"action":{"kind":"Deliver","chain":"consumer","numPackets":5},"partialState":{"h":7,"t":42,"consumerPower":[null,null,7048,12673],"outstandingDowntime":[true,false,false,false]}},{"ix":80,"action":{"kind":"Undelegate","val":3,"amt":1816},"partialState":{"h":12,"t":72,"tokens":[3905,13185,7454,10857],"delegation":[2905,12185,6454,9857],"delegatorTokens":9999999945954}},{"ix":81,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":8,"t":48,"consumerPower":[3905,null,null,12673],"outstandingDowntime":[true,false,false,false]}},{"ix":82,"action":{"kind":"Deliver","chain":"provider","numPackets":1},"partialState":{"h":12,"t":72,"tokens":[3905,13185,7454,10857],"delegation":[2905,12185,6454,9857],"delegatorTokens":9999999945954,"jailed":[null,1000000000000041,null,null],"status":["bonded","unbonding","unbonding","bonded"]}},{"ix":83,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":84,"action":{"kind":"Delegate","val":0,"amt":3440},"partialState":{"h":12,"t":72,"tokens":[7345,13185,7454,10857],"delegation":[6345,12185,6454,9857],"delegatorTokens":9999999942514}},{"ix":85,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":86,"action":{"kind":"Delegate","val":0,"amt":3168},"partialState":{"h":12,"t":72,"tokens":[10513,13185,7454,10857],"delegation":[9513,12185,6454,9857],"delegatorTokens":9999999939346}},{"ix":87,"action":{"kind":"Undelegate","val":0,"amt":2779},"partialState":{"h":12,"t":72,"tokens":[7734,13185,7454,10857],"delegation":[6734,12185,6454,9857],"delegatorTokens":9999999939346}},{"ix":88,"action":{"kind":"Deliver","chain":"provider","numPackets":2},"partialState":{"h":12,"t":72,"tokens":[7734,13185,7454,10857],"delegation":[6734,12185,6454,9857],"delegatorTokens":9999999939346,"jailed":[null,1000000000000041,null,null],"status":["bonded","unbonding","unbonding","bonded"]}},{"ix":89,"action":{"kind":"Undelegate","val":1,"amt":3229},"partialState":{"h":12,"t":72,"tokens":[7734,9956,7454,10857],"delegation":[6734,8956,6454,9857],"delegatorTokens":9999999939346}},{"ix":90,"action":{"kind":"Deliver","chain":"provider","numPackets":2},"partialState":{"h":12,"t":72,"tokens":[7734,9956,7454,10857],"delegation":[6734,8956,6454,9857],"delegatorTokens":9999999939346,"jailed":[null,1000000000000041,null,null],"status":["bonded","unbonding","unbonding","bonded"]}},{"ix":91,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":13,"t":78,"tokens":[7734,9956,7454,10857],"delegation":[6734,8956,6454,9857],"delegatorTokens":9999999939346,"jailed":[1000000000000071,1000000000000041,null,null],"status":["bonded","unbonding","unbonding","bonded"]}},{"ix":92,"action":{"kind":"Deliver","chain":"consumer","numPackets":3},"partialState":{"h":8,"t":48,"consumerPower":[3905,null,null,12673],"outstandingDowntime":[true,false,false,false]}},{"ix":93,"action":{"kind":"Deliver","chain":"provider","numPackets":6},"partialState":{"h":13,"t":78,"tokens":[7734,9956,7454,10857],"delegation":[6734,8956,6454,9857],"delegatorTokens":9999999939346,"jailed":[1000000000000071,1000000000000041,null,null],"status":["bonded","unbonding","unbonding","bonded"]}},{"ix":94,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":95,"action":{"kind":"Delegate","val":0,"amt":1464},"partialState":{"h":13,"t":78,"tokens":[9198,9956,7454,10857],"delegation":[8198,8956,6454,9857],"delegatorTokens":9999999937882}},{"ix":96,"action":{"kind":"Deliver","chain":"provider","numPackets":2},"partialState":{"h":13,"t":78,"tokens":[9198,9956,7454,10857],"delegation":[8198,8956,6454,9857],"delegatorTokens":9999999937882,"jailed":[1000000000000071,1000000000000041,null,null],"status":["bonded","unbonding","unbonding","bonded"]}},{"ix":97,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":98,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":9,"t":54,"consumerPower":[3905,null,null,12673],"outstandingDowntime":[true,false,false,false]}},{"ix":99,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":10,"t":60,"consumerPower":[3905,null,null,12673],"outstandingDowntime":[true,false,false,false]}},{"ix":100,"action":{"kind":"Delegate","val":3,"amt":4585},"partialState":{"h":13,"t":78,"tokens":[9198,9956,7454,15442],"delegation":[8198,8956,6454,14442],"delegatorTokens":9999999933297}},{"ix":101,"action":{"kind":"Delegate","val":0,"amt":2057},"partialState":{"h":13,"t":78,"tokens":[11255,9956,7454,15442],"delegation":[10255,8956,6454,14442],"delegatorTokens":9999999931240}},{"ix":102,"action":{"kind":"Undelegate","val":1,"amt":1868},"partialState":{"h":13,"t":78,"tokens":[11255,8088,7454,15442],"delegation":[10255,7088,6454,14442],"delegatorTokens":9999999931240}},{"ix":103,"action":{"kind":"Delegate","val":2,"amt":2046},"partialState":{"h":13,"t":78,"tokens":[11255,8088,9500,15442],"delegation":[10255,7088,8500,14442],"delegatorTokens":9999999929194}},{"ix":104,"action":{"kind":"Deliver","chain":"consumer","numPackets":6},"partialState":{"h":10,"t":60,"consumerPower":[3905,null,null,12673],"outstandingDowntime":[true,false,false,false]}},{"ix":105,"action":{"kind":"Delegate","val":1,"amt":4491},"partialState":{"h":13,"t":78,"tokens":[11255,12579,9500,15442],"delegation":[10255,11579,8500,14442],"delegatorTokens":9999999924703}},{"ix":106,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":11,"t":66,"consumerPower":[3905,null,null,12673],"outstandingDowntime":[true,false,false,false]}},{"ix":107,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":108,"action":{"kind":"Deliver","chain":"provider","numPackets":1},"partialState":{"h":13,"t":78,"tokens":[11255,12579,9500,15442],"delegation":[10255,11579,8500,14442],"delegatorTokens":9999999924703,"jailed":[1000000000000071,1000000000000041,null,null],"status":["bonded","unbonding","unbonding","bonded"]}},{"ix":109,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":12,"t":72,"consumerPower":[3905,null,null,12673],"outstandingDowntime":[true,false,false,false]}},{"ix":110,"action":{"kind":"Delegate","val":3,"amt":4132},"partialState":{"h":13,"t":78,"tokens":[11255,12579,9500,19574],"delegation":[10255,11579,8500,18574],"delegatorTokens":9999999920571}},{"ix":111,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":112,"action":{"kind":"Undelegate","val":2,"amt":3053},"partialState":{"h":13,"t":78,"tokens":[11255,12579,6447,19574],"delegation":[10255,11579,5447,18574],"delegatorTokens":9999999920571}},{"ix":113,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":13,"t":78,"consumerPower":[3905,null,null,12673],"outstandingDowntime":[true,false,false,false]}},{"ix":114,"action":{"kind":"Deliver","chain":"provider","numPackets":5},"partialState":{"h":13,"t":78,"tokens":[11255,12579,6447,19574],"delegation":[10255,11579,5447,18574],"delegatorTokens":9999999920571,"jailed":[1000000000000071,1000000000000041,null,null],"status":["bonded","unbonding","unbonding","bonded"]}},{"ix":115,"action":{"kind":"Undelegate","val":3,"amt":4481},"partialState":{"h":13,"t":78,"tokens":[11255,12579,6447,15093],"delegation":[10255,11579,5447,14093],"delegatorTokens":9999999920571}},{"ix":116,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":14,"t":84,"consumerPower":[3905,null,null,12673],"outstandingDowntime":[true,false,false,false]}},{"ix":117,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":15,"t":90,"consumerPower":[3905,null,null,12673],"outstandingDowntime":[true,false,false,false]}},{"ix":118,"action":{"kind":"Undelegate","val":3,"amt":3087},"partialState":{"h":13,"t":78,"tokens":[11255,12579,6447,12006],"delegation":[10255,11579,5447,11006],"delegatorTokens":9999999920571}},{"ix":119,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":120,"action":{"kind":"Undelegate","val":0,"amt":1569},"partialState":{"h":13,"t":78,"tokens":[9686,12579,6447,12006],"delegation":[8686,11579,5447,11006],"delegatorTokens":9999999920571}},{"ix":121,"action":{"kind":"Delegate","val":0,"amt":2596},"partialState":{"h":13,"t":78,"tokens":[12282,12579,6447,12006],"delegation":[11282,11579,5447,11006],"delegatorTokens":9999999917975}},{"ix":122,"action":{"kind":"Delegate","val":3,"amt":1200},"partialState":{"h":13,"t":78,"tokens":[12282,12579,6447,13206],"delegation":[11282,11579,5447,12206],"delegatorTokens":9999999916775}},{"ix":123,"action":{"kind":"Undelegate","val":1,"amt":1309},"partialState":{"h":13,"t":78,"tokens":[12282,11270,6447,13206],"delegation":[11282,10270,5447,12206],"delegatorTokens":9999999916775}},{"ix":124,"action":{"kind":"Deliver","chain":"consumer","numPackets":2},"partialState":{"h":15,"t":90,"consumerPower":[3905,null,null,12673],"outstandingDowntime":[true,false,false,false]}},{"ix":125,"action":{"kind":"Deliver","chain":"provider","numPackets":3},"partialState":{"h":13,"t":78,"tokens":[12282,11270,6447,13206],"delegation":[11282,10270,5447,12206],"delegatorTokens":9999999916775,"jailed":[1000000000000071,1000000000000041,null,null],"status":["bonded","unbonding","unbonding","bonded"]}},{"ix":126,"action":{"kind":"Delegate","val":0,"amt":1418},"partialState":{"h":13,"t":78,"tokens":[13700,11270,6447,13206],"delegation":[12700,10270,5447,12206],"delegatorTokens":9999999915357}},{"ix":127,"action":{"kind":"Undelegate","val":3,"amt":3428},"partialState":{"h":13,"t":78,"tokens":[13700,11270,6447,9778],"delegation":[12700,10270,5447,8778],"delegatorTokens":9999999915357}},{"ix":128,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":16,"t":96,"consumerPower":[3905,null,null,12673],"outstandingDowntime":[true,false,false,false]}},{"ix":129,"action":{"kind":"Delegate","val":1,"amt":1860},"partialState":{"h":13,"t":78,"tokens":[13700,13130,6447,9778],"delegation":[12700,12130,5447,8778],"delegatorTokens":9999999913497}},{"ix":130,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":17,"t":102,"consumerPower":[3905,null,null,12673],"outstandingDowntime":[true,false,false,false]}},{"ix":131,"action":{"kind":"Undelegate","val":3,"amt":2532},"partialState":{"h":13,"t":78,"tokens":[13700,13130,6447,7246],"delegation":[12700,12130,5447,6246],"delegatorTokens":9999999913497}},{"ix":132,"action":{"kind":"Delegate","val":1,"amt":4295},"partialState":{"h":13,"t":78,"tokens":[13700,17425,6447,7246],"delegation":[12700,16425,5447,6246],"delegatorTokens":9999999909202}},{"ix":133,"action":{"kind":"Delegate","val":1,"amt":3483},"partialState":{"h":13,"t":78,"tokens":[13700,20908,6447,7246],"delegation":[12700,19908,5447,6246],"delegatorTokens":9999999905719}},{"ix":134,"action":{"kind":"Deliver","chain":"provider","numPackets":2},"partialState":{"h":13,"t":78,"tokens":[13700,20908,6447,7246],"delegation":[12700,19908,5447,6246],"delegatorTokens":9999999905719,"jailed":[1000000000000071,1000000000000041,null,null],"status":["bonded","unbonding","unbonding","bonded"]}},{"ix":135,"action":{"kind":"Delegate","val":1,"amt":1591},"partialState":{"h":13,"t":78,"tokens":[13700,22499,6447,7246],"delegation":[12700,21499,5447,6246],"delegatorTokens":9999999904128}},{"ix":136,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":137,"action":{"kind":"Delegate","val":1,"amt":1441},"partialState":{"h":13,"t":78,"tokens":[13700,23940,6447,7246],"delegation":[12700,22940,5447,6246],"delegatorTokens":9999999902687}},{"ix":138,"action":{"kind":"Deliver","chain":"consumer","numPackets":1},"partialState":{"h":17,"t":102,"consumerPower":[3905,null,null,12673],"outstandingDowntime":[true,false,false,false]}},{"ix":139,"action":{"kind":"Delegate","val":3,"amt":1658},"partialState":{"h":13,"t":78,"tokens":[13700,23940,6447,8904],"delegation":[12700,22940,5447,7904],"delegatorTokens":9999999901029}},{"ix":140,"action":{"kind":"Delegate","val":1,"amt":3354},"partialState":{"h":13,"t":78,"tokens":[13700,27294,6447,8904],"delegation":[12700,26294,5447,7904],"delegatorTokens":9999999897675}},{"ix":141,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":142,"action":{"kind":"Undelegate","val":0,"amt":1696},"partialState":{"h":13,"t":78,"tokens":[12004,27294,6447,8904],"delegation":[11004,26294,5447,7904],"delegatorTokens":9999999897675}},{"ix":143,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":14,"t":84,"tokens":[12004,27294,6447,8904],"delegation":[11004,26294,5447,7904],"delegatorTokens":9999999897675,"jailed":[1000000000000071,1000000000000041,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":144,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":145,"action":{"kind":"Deliver","chain":"consumer","numPackets":4},"partialState":{"h":17,"t":102,"consumerPower":[3905,null,null,12673],"outstandingDowntime":[false,false,false,false]}},{"ix":146,"action":{"kind":"Undelegate","val":2,"amt":2944},"partialState":{"h":14,"t":84,"tokens":[12004,27294,3503,8904],"delegation":[11004,26294,2503,7904],"delegatorTokens":9999999897675}},{"ix":147,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":18,"t":108,"consumerPower":[7734,null,null,10857],"outstandingDowntime":[false,false,false,false]}},{"ix":148,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":19,"t":114,"consumerPower":[7734,null,null,10857],"outstandingDowntime":[false,false,false,false]}},{"ix":149,"action":{"kind":"Undelegate","val":0,"amt":4951},"partialState":{"h":14,"t":84,"tokens":[7053,27294,3503,8904],"delegation":[6053,26294,2503,7904],"delegatorTokens":9999999897675}},{"ix":150,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":151,"action":{"kind":"Deliver","chain":"consumer","numPackets":6},"partialState":{"h":19,"t":114,"consumerPower":[7734,null,null,10857],"outstandingDowntime":[false,false,false,false]}},{"ix":152,"action":{"kind":"Delegate","val":2,"amt":4007},"partialState":{"h":14,"t":84,"tokens":[7053,27294,7510,8904],"delegation":[6053,26294,6510,7904],"delegatorTokens":9999999893668}},{"ix":153,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":15,"t":90,"tokens":[7053,27294,7510,8904],"delegation":[6053,26294,6510,7904],"delegatorTokens":9999999899019,"jailed":[1000000000000071,1000000000000041,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":154,"action":{"kind":"Undelegate","val":1,"amt":3017},"partialState":{"h":15,"t":90,"tokens":[7053,24277,7510,8904],"delegation":[6053,23277,6510,7904],"delegatorTokens":9999999899019}},{"ix":155,"action":{"kind":"Deliver","chain":"consumer","numPackets":4},"partialState":{"h":19,"t":114,"consumerPower":[7734,null,null,10857],"outstandingDowntime":[false,false,false,false]}},{"ix":156,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":157,"action":{"kind":"Deliver","chain":"provider","numPackets":2},"partialState":{"h":15,"t":90,"tokens":[7053,24277,7510,8904],"delegation":[6053,23277,6510,7904],"delegatorTokens":9999999899019,"jailed":[1000000000000071,1000000000000041,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":158,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":16,"t":96,"tokens":[7053,24277,7510,8904],"delegation":[6053,23277,6510,7904],"delegatorTokens":9999999900895,"jailed":[1000000000000071,1000000000000041,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":159,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":160,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":20,"t":120,"consumerPower":[null,null,6447,8904],"outstandingDowntime":[false,false,false,false]}},{"ix":161,"action":{"kind":"Undelegate","val":2,"amt":1132},"partialState":{"h":16,"t":96,"tokens":[7053,24277,6378,8904],"delegation":[6053,23277,5378,7904],"delegatorTokens":9999999900895}},{"ix":162,"action":{"kind":"Delegate","val":2,"amt":2467},"partialState":{"h":16,"t":96,"tokens":[7053,24277,8845,8904],"delegation":[6053,23277,7845,7904],"delegatorTokens":9999999898428}},{"ix":163,"action":{"kind":"Undelegate","val":2,"amt":3754},"partialState":{"h":16,"t":96,"tokens":[7053,24277,5091,8904],"delegation":[6053,23277,4091,7904],"delegatorTokens":9999999898428}},{"ix":164,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":165,"action":{"kind":"Deliver","chain":"consumer","numPackets":5},"partialState":{"h":20,"t":120,"consumerPower":[null,null,6447,8904],"outstandingDowntime":[false,false,false,false]}},{"ix":166,"action":{"kind":"Undelegate","val":2,"amt":4053},"partialState":{"h":16,"t":96,"tokens":[7053,24277,1038,8904],"delegation":[6053,23277,38,7904],"delegatorTokens":9999999898428}},{"ix":167,"action":{"kind":"Delegate","val":0,"amt":1758},"partialState":{"h":16,"t":96,"tokens":[8811,24277,1038,8904],"delegation":[7811,23277,38,7904],"delegatorTokens":9999999896670}},{"ix":168,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":21,"t":126,"consumerPower":[null,null,7510,8904],"outstandingDowntime":[false,false,false,false]}},{"ix":169,"action":{"kind":"Delegate","val":2,"amt":4016},"partialState":{"h":16,"t":96,"tokens":[8811,24277,5054,8904],"delegation":[7811,23277,4054,7904],"delegatorTokens":9999999892654}},{"ix":170,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":17,"t":102,"tokens":[8811,24277,5054,8904],"delegation":[7811,23277,4054,7904],"delegatorTokens":9999999896176,"jailed":[1000000000000071,1000000000000041,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":171,"action":{"kind":"Undelegate","val":3,"amt":2485},"partialState":{"h":17,"t":102,"tokens":[8811,24277,5054,6419],"delegation":[7811,23277,4054,5419],"delegatorTokens":9999999896176}},{"ix":172,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":173,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":174,"action":{"kind":"Undelegate","val":2,"amt":3069},"partialState":{"h":17,"t":102,"tokens":[8811,24277,1985,6419],"delegation":[7811,23277,985,5419],"delegatorTokens":9999999896176}},{"ix":175,"action":{"kind":"Delegate","val":1,"amt":1426},"partialState":{"h":17,"t":102,"tokens":[8811,25703,1985,6419],"delegation":[7811,24703,985,5419],"delegatorTokens":9999999894750}},{"ix":176,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":177,"action":{"kind":"Delegate","val":3,"amt":2908},"partialState":{"h":17,"t":102,"tokens":[8811,25703,1985,9327],"delegation":[7811,24703,985,8327],"delegatorTokens":9999999891842}},{"ix":178,"action":{"kind":"Undelegate","val":3,"amt":3011},"partialState":{"h":17,"t":102,"tokens":[8811,25703,1985,6316],"delegation":[7811,24703,985,5316],"delegatorTokens":9999999891842}},{"ix":179,"action":{"kind":"Undelegate","val":3,"amt":3243},"partialState":{"h":17,"t":102,"tokens":[8811,25703,1985,3073],"delegation":[7811,24703,985,2073],"delegatorTokens":9999999891842}},{"ix":180,"action":{"kind":"Delegate","val":3,"amt":3639},"partialState":{"h":17,"t":102,"tokens":[8811,25703,1985,6712],"delegation":[7811,24703,985,5712],"delegatorTokens":9999999888203}},{"ix":181,"action":{"kind":"Undelegate","val":0,"amt":3241},"partialState":{"h":17,"t":102,"tokens":[5570,25703,1985,6712],"delegation":[4570,24703,985,5712],"delegatorTokens":9999999888203}},{"ix":182,"action":{"kind":"Deliver","chain":"provider","numPackets":5},"partialState":{"h":17,"t":102,"tokens":[5570,25703,1985,6712],"delegation":[4570,24703,985,5712],"delegatorTokens":9999999888203,"jailed":[1000000000000071,1000000000000041,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":183,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":18,"t":108,"tokens":[5570,25703,1985,6712],"delegation":[4570,24703,985,5712],"delegatorTokens":9999999888203,"jailed":[1000000000000071,1000000000000041,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":184,"action":{"kind":"Deliver","chain":"consumer","numPackets":5},"partialState":{"h":21,"t":126,"consumerPower":[null,null,7510,8904],"outstandingDowntime":[false,false,false,false]}},{"ix":185,"action":{"kind":"Deliver","chain":"consumer","numPackets":3},"partialState":{"h":21,"t":126,"consumerPower":[null,null,7510,8904],"outstandingDowntime":[false,false,false,false]}},{"ix":186,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":187,"action":{"kind":"Undelegate","val":0,"amt":4826},"partialState":{"h":18,"t":108,"tokens":[5570,25703,1985,6712],"delegation":[4570,24703,985,5712],"delegatorTokens":9999999888203}},{"ix":188,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":19,"t":114,"tokens":[5570,25703,1985,6712],"delegation":[4570,24703,985,5712],"delegatorTokens":9999999894699,"jailed":[1000000000000071,1000000000000041,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":189,"action":{"kind":"Deliver","chain":"consumer","numPackets":1},"partialState":{"h":21,"t":126,"consumerPower":[null,null,7510,8904],"outstandingDowntime":[false,false,false,false]}},{"ix":190,"action":{"kind":"Delegate","val":2,"amt":2750},"partialState":{"h":19,"t":114,"tokens":[5570,25703,4735,6712],"delegation":[4570,24703,3735,5712],"delegatorTokens":9999999891949}},{"ix":191,"action":{"kind":"Deliver","chain":"provider","numPackets":5},"partialState":{"h":19,"t":114,"tokens":[5570,25703,4735,6712],"delegation":[4570,24703,3735,5712],"delegatorTokens":9999999891949,"jailed":[1000000000000071,1000000000000041,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":192,"action":{"kind":"Delegate","val":0,"amt":3692},"partialState":{"h":19,"t":114,"tokens":[9262,25703,4735,6712],"delegation":[8262,24703,3735,5712],"delegatorTokens":9999999888257}},{"ix":193,"action":{"kind":"Deliver","chain":"provider","numPackets":1},"partialState":{"h":19,"t":114,"tokens":[9262,25703,4735,6712],"delegation":[8262,24703,3735,5712],"delegatorTokens":9999999888257,"jailed":[1000000000000071,1000000000000041,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":194,"action":{"kind":"Undelegate","val":3,"amt":3903},"partialState":{"h":19,"t":114,"tokens":[9262,25703,4735,2809],"delegation":[8262,24703,3735,1809],"delegatorTokens":9999999888257}},{"ix":195,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":22,"t":132,"consumerPower":[null,null,1985,6712],"outstandingDowntime":[false,false,false,false]}},{"ix":196,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":197,"action":{"kind":"Delegate","val":1,"amt":4090},"partialState":{"h":19,"t":114,"tokens":[9262,29793,4735,2809],"delegation":[8262,28793,3735,1809],"delegatorTokens":9999999884167}},{"ix":198,"action":{"kind":"Undelegate","val":3,"amt":2073},"partialState":{"h":19,"t":114,"tokens":[9262,29793,4735,2809],"delegation":[8262,28793,3735,1809],"delegatorTokens":9999999884167}},{"ix":199,"action":{"kind":"Delegate","val":1,"amt":4677},"partialState":{"h":19,"t":114,"tokens":[9262,34470,4735,2809],"delegation":[8262,33470,3735,1809],"delegatorTokens":9999999879490}}],"events":["send_double_sign_slash_request","more_than_one_third_val_power_change","send_vsc_without_downtime_ack","send_double_sign_slash_request","send_downtime_slash_request","send_downtime_slash_request","more_than_one_third_val_power_change","rebond_unval","send_vsc_without_downtime_ack","insufficient_shares","more_than_one_third_val_power_change","rebond_unval","send_vsc_without_downtime_ack","consumer_update_val","consumer_del_val","consumer_add_val","consumer_del_val","more_than_one_third_val_power_change","rebond_unval","send_vsc_without_downtime_ack","insufficient_shares","insufficient_shares","more_than_one_third_val_power_change","rebond_unval","rebond_unval","send_vsc_without_downtime_ack","receive_double_sign_slash_request","receive_double_sign_slash_request","consumer_update_val","consumer_del_val","consumer_update_val","receive_downtime_slash_request","jail","send_vsc_with_downtime_ack","more_than_one_third_val_power_change","rebond_unval","send_vsc_without_downtime_ack","receive_downtime_slash_ack","insufficient_shares","rebond_unval","send_vsc_without_downtime_ack","consumer_del_val","consumer_del_val","consumer_update_val","consumer_add_val","send_vsc_not_because_change","send_vsc_without_downtime_ack","consumer_add_val","consumer_del_val","receive_downtime_slash_request","jail","send_vsc_with_downtime_ack","consumer_send_maturation","consumer_send_maturation","consumer_send_maturation","consumer_send_maturation","consumer_send_maturation","consumer_send_maturation","consumer_send_maturation","consumer_send_maturation","more_than_one_third_val_power_change","rebond_unval","set_undel_hold_false","set_undel_hold_false","set_undel_hold_false","set_undel_hold_false","set_undel_hold_false","send_vsc_without_downtime_ack","receive_downtime_slash_ack","consumer_send_maturation","consumer_update_val","consumer_update_val","complete_undel_in_endblock","send_vsc_without_downtime_ack","complete_undel_in_endblock","set_undel_hold_false","set_undel_hold_false","set_undel_hold_false","set_undel_hold_false","send_vsc_not_because_change","send_vsc_without_downtime_ack","consumer_del_val","consumer_add_val","consumer_update_val","consumer_update_val","complete_undel_in_endblock","send_vsc_without_downtime_ack","set_undel_hold_false","set_unval_hold_false","set_undel_hold_false","set_undel_hold_false","set_undel_hold_false","send_vsc_without_downtime_ack","insufficient_shares","complete_undel_in_endblock","consumer_update_val","consumer_update_val","insufficient_shares"]},{"meta":{"commit":"7ffd0c04e4205cbc9caf212abfe6c59ee43153bf"},"constants":{"P":"provider","C":"consumer","UNBONDING_SECONDS_P":70,"UNBONDING_SECONDS_C":50,"TRUSTING_SECONDS":49,"NUM_VALIDATORS":4,"MAX_VALIDATORS":2,"SLASH_DOUBLESIGN":0,"SLASH_DOWNTIME":0,"JAIL_SECONDS":999999999999999,"BLOCK_SECONDS":6,"INITIAL_DELEGATOR_TOKENS":10000000000000,"DELEGATE_AMT_MIN":1000,"DELEGATE_AMT_MAX":5000,"UNDELEGATE_AMT_MIN":1000,"UNDELEGATE_AMT_MAX":5000,"ISDOWNTIME_PROBABILITY":0.5,"MAX_NUM_PACKETS_FOR_DELIVER":6},"actions":[{"ix":0,"action":{"kind":"Undelegate","val":3,"amt":4548},"partialState":{"h":1,"t":6,"tokens":[5000,4000,3000,2000],"delegation":[4000,3000,2000,1000],"delegatorTokens":10000000000000}},{"ix":1,"action":{"kind":"Deliver","chain":"provider","numPackets":1},"partialState":{"h":1,"t":6,"tokens":[5000,4000,3000,2000],"delegation":[4000,3000,2000,1000],"delegatorTokens":10000000000000,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":2,"action":{"kind":"ConsumerSlash","val":1,"infractionHeight":0,"isDowntime":true},"partialState":{"h":1,"t":6,"outstandingDowntime":[false,true,false,false]}},{"ix":3,"action":{"kind":"ConsumerSlash","val":1,"infractionHeight":0,"isDowntime":true},"partialState":{"h":1,"t":6,"outstandingDowntime":[false,true,false,false]}},{"ix":4,"action":{"kind":"ConsumerSlash","val":1,"infractionHeight":0,"isDowntime":false},"partialState":{"h":1,"t":6,"outstandingDowntime":[false,true,false,false]}},{"ix":5,"action":{"kind":"Undelegate","val":1,"amt":1459},"partialState":{"h":1,"t":6,"tokens":[5000,2541,3000,2000],"delegation":[4000,1541,2000,1000],"delegatorTokens":10000000000000}},{"ix":6,"action":{"kind":"Undelegate","val":1,"amt":4014},"partialState":{"h":1,"t":6,"tokens":[5000,2541,3000,2000],"delegation":[4000,1541,2000,1000],"delegatorTokens":10000000000000}},{"ix":7,"action":{"kind":"ConsumerSlash","val":1,"infractionHeight":0,"isDowntime":false},"partialState":{"h":1,"t":6,"outstandingDowntime":[false,true,false,false]}},{"ix":8,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":2,"t":12,"tokens":[5000,2541,3000,2000],"delegation":[4000,1541,2000,1000],"delegatorTokens":10000000000000,"jailed":[null,null,null,null],"status":["bonded","unbonding","bonded","unbonded"]}},{"ix":9,"action":{"kind":"Undelegate","val":3,"amt":4878},"partialState":{"h":2,"t":12,"tokens":[5000,2541,3000,2000],"delegation":[4000,1541,2000,1000],"delegatorTokens":10000000000000}},{"ix":10,"action":{"kind":"Delegate","val":1,"amt":3719},"partialState":{"h":2,"t":12,"tokens":[5000,6260,3000,2000],"delegation":[4000,5260,2000,1000],"delegatorTokens":9999999996281}},{"ix":11,"action":{"kind":"Delegate","val":0,"amt":4198},"partialState":{"h":2,"t":12,"tokens":[9198,6260,3000,2000],"delegation":[8198,5260,2000,1000],"delegatorTokens":9999999992083}},{"ix":12,"action":{"kind":"Undelegate","val":0,"amt":4747},"partialState":{"h":2,"t":12,"tokens":[4451,6260,3000,2000],"delegation":[3451,5260,2000,1000],"delegatorTokens":9999999992083}},{"ix":13,"action":{"kind":"Deliver","chain":"consumer","numPackets":4},"partialState":{"h":1,"t":6,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,true,false,false]}},{"ix":14,"action":{"kind":"ConsumerSlash","val":2,"infractionHeight":0,"isDowntime":false},"partialState":{"h":1,"t":6,"outstandingDowntime":[false,true,false,false]}},{"ix":15,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":3,"t":18,"tokens":[4451,6260,3000,2000],"delegation":[3451,5260,2000,1000],"delegatorTokens":9999999992083,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonding","unbonded"]}},{"ix":16,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":2,"t":12,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,true,false,false]}},{"ix":17,"action":{"kind":"Deliver","chain":"provider","numPackets":2},"partialState":{"h":3,"t":18,"tokens":[4451,6260,3000,2000],"delegation":[3451,5260,2000,1000],"delegatorTokens":9999999992083,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonding","unbonded"]}},{"ix":18,"action":{"kind":"ConsumerSlash","val":1,"infractionHeight":1,"isDowntime":true},"partialState":{"h":2,"t":12,"outstandingDowntime":[false,true,false,false]}},{"ix":19,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":20,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":21,"action":{"kind":"Delegate","val":3,"amt":4103},"partialState":{"h":3,"t":18,"tokens":[4451,6260,3000,6103],"delegation":[3451,5260,2000,5103],"delegatorTokens":9999999987980}},{"ix":22,"action":{"kind":"Delegate","val":0,"amt":3913},"partialState":{"h":3,"t":18,"tokens":[8364,6260,3000,6103],"delegation":[7364,5260,2000,5103],"delegatorTokens":9999999984067}},{"ix":23,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":3,"t":18,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,true,false,false]}},{"ix":24,"action":{"kind":"ConsumerSlash","val":2,"infractionHeight":0,"isDowntime":false},"partialState":{"h":3,"t":18,"outstandingDowntime":[false,true,false,false]}},{"ix":25,"action":{"kind":"Undelegate","val":0,"amt":2812},"partialState":{"h":3,"t":18,"tokens":[5552,6260,3000,6103],"delegation":[4552,5260,2000,5103],"delegatorTokens":9999999984067}},{"ix":26,"action":{"kind":"Delegate","val":3,"amt":2289},"partialState":{"h":3,"t":18,"tokens":[5552,6260,3000,8392],"delegation":[4552,5260,2000,7392],"delegatorTokens":9999999981778}},{"ix":27,"action":{"kind":"Delegate","val":1,"amt":3976},"partialState":{"h":3,"t":18,"tokens":[5552,10236,3000,8392],"delegation":[4552,9236,2000,7392],"delegatorTokens":9999999977802}},{"ix":28,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":4,"t":24,"tokens":[5552,10236,3000,8392],"delegation":[4552,9236,2000,7392],"delegatorTokens":9999999977802,"jailed":[null,null,null,null],"status":["unbonding","bonded","unbonding","bonded"]}},{"ix":29,"action":{"kind":"Deliver","chain":"consumer","numPackets":1},"partialState":{"h":3,"t":18,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,true,false,false]}},{"ix":30,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":5,"t":30,"tokens":[5552,10236,3000,8392],"delegation":[4552,9236,2000,7392],"delegatorTokens":9999999977802,"jailed":[null,null,null,null],"status":["unbonding","bonded","unbonding","bonded"]}},{"ix":31,"action":{"kind":"Undelegate","val":1,"amt":1031},"partialState":{"h":5,"t":30,"tokens":[5552,9205,3000,8392],"delegation":[4552,8205,2000,7392],"delegatorTokens":9999999977802}},{"ix":32,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":6,"t":36,"tokens":[5552,9205,3000,8392],"delegation":[4552,8205,2000,7392],"delegatorTokens":9999999977802,"jailed":[null,null,null,null],"status":["unbonding","bonded","unbonding","bonded"]}},{"ix":33,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":7,"t":42,"tokens":[5552,9205,3000,8392],"delegation":[4552,8205,2000,7392],"delegatorTokens":9999999977802,"jailed":[null,null,null,null],"status":["unbonding","bonded","unbonding","bonded"]}},{"ix":34,"action":{"kind":"Deliver","chain":"consumer","numPackets":3},"partialState":{"h":3,"t":18,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,true,false,false]}},{"ix":35,"action":{"kind":"Delegate","val":1,"amt":4892},"partialState":{"h":7,"t":42,"tokens":[5552,14097,3000,8392],"delegation":[4552,13097,2000,7392],"delegatorTokens":9999999972910}},{"ix":36,"action":{"kind":"ConsumerSlash","val":2,"infractionHeight":2,"isDowntime":false},"partialState":{"h":3,"t":18,"outstandingDowntime":[false,true,false,false]}},{"ix":37,"action":{"kind":"Delegate","val":0,"amt":2463},"partialState":{"h":7,"t":42,"tokens":[8015,14097,3000,8392],"delegation":[7015,13097,2000,7392],"delegatorTokens":9999999970447}},{"ix":38,"action":{"kind":"Undelegate","val":0,"amt":1286},"partialState":{"h":7,"t":42,"tokens":[6729,14097,3000,8392],"delegation":[5729,13097,2000,7392],"delegatorTokens":9999999970447}},{"ix":39,"action":{"kind":"Delegate","val":1,"amt":1390},"partialState":{"h":7,"t":42,"tokens":[6729,15487,3000,8392],"delegation":[5729,14487,2000,7392],"delegatorTokens":9999999969057}},{"ix":40,"action":{"kind":"Deliver","chain":"provider","numPackets":2},"partialState":{"h":7,"t":42,"tokens":[6729,15487,3000,8392],"delegation":[5729,14487,2000,7392],"delegatorTokens":9999999969057,"jailed":[null,null,null,null],"status":["unbonding","bonded","unbonding","bonded"]}},{"ix":41,"action":{"kind":"Undelegate","val":1,"amt":3501},"partialState":{"h":7,"t":42,"tokens":[6729,11986,3000,8392],"delegation":[5729,10986,2000,7392],"delegatorTokens":9999999969057}},{"ix":42,"action":{"kind":"Deliver","chain":"provider","numPackets":2},"partialState":{"h":7,"t":42,"tokens":[6729,11986,3000,8392],"delegation":[5729,10986,2000,7392],"delegatorTokens":9999999969057,"jailed":[null,null,null,null],"status":["unbonding","bonded","unbonding","bonded"]}},{"ix":43,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":4,"t":24,"consumerPower":[null,9205,null,8392],"outstandingDowntime":[false,true,false,false]}},{"ix":44,"action":{"kind":"ConsumerSlash","val":0,"infractionHeight":2,"isDowntime":true},"partialState":{"h":4,"t":24,"outstandingDowntime":[true,true,false,false]}},{"ix":45,"action":{"kind":"Undelegate","val":1,"amt":4264},"partialState":{"h":7,"t":42,"tokens":[6729,7722,3000,8392],"delegation":[5729,6722,2000,7392],"delegatorTokens":9999999969057}},{"ix":46,"action":{"kind":"Undelegate","val":1,"amt":4855},"partialState":{"h":7,"t":42,"tokens":[6729,2867,3000,8392],"delegation":[5729,1867,2000,7392],"delegatorTokens":9999999969057}},{"ix":47,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":48,"action":{"kind":"Undelegate","val":2,"amt":1250},"partialState":{"h":7,"t":42,"tokens":[6729,2867,1750,8392],"delegation":[5729,1867,750,7392],"delegatorTokens":9999999969057}},{"ix":49,"action":{"kind":"Undelegate","val":0,"amt":2339},"partialState":{"h":7,"t":42,"tokens":[4390,2867,1750,8392],"delegation":[3390,1867,750,7392],"delegatorTokens":9999999969057}},{"ix":50,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":51,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":5,"t":30,"consumerPower":[null,9205,null,8392],"outstandingDowntime":[true,true,false,false]}},{"ix":52,"action":{"kind":"Undelegate","val":0,"amt":2207},"partialState":{"h":7,"t":42,"tokens":[2183,2867,1750,8392],"delegation":[1183,1867,750,7392],"delegatorTokens":9999999969057}},{"ix":53,"action":{"kind":"Deliver","chain":"provider","numPackets":2},"partialState":{"h":7,"t":42,"tokens":[2183,2867,1750,8392],"delegation":[1183,1867,750,7392],"delegatorTokens":9999999969057,"jailed":[null,null,null,null],"status":["unbonding","bonded","unbonding","bonded"]}},{"ix":54,"action":{"kind":"Undelegate","val":1,"amt":1530},"partialState":{"h":7,"t":42,"tokens":[2183,1337,1750,8392],"delegation":[1183,337,750,7392],"delegatorTokens":9999999969057}},{"ix":55,"action":{"kind":"Delegate","val":0,"amt":3561},"partialState":{"h":7,"t":42,"tokens":[5744,1337,1750,8392],"delegation":[4744,337,750,7392],"delegatorTokens":9999999965496}},{"ix":56,"action":{"kind":"Delegate","val":0,"amt":2420},"partialState":{"h":7,"t":42,"tokens":[8164,1337,1750,8392],"delegation":[7164,337,750,7392],"delegatorTokens":9999999963076}},{"ix":57,"action":{"kind":"Delegate","val":3,"amt":2554},"partialState":{"h":7,"t":42,"tokens":[8164,1337,1750,10946],"delegation":[7164,337,750,9946],"delegatorTokens":9999999960522}},{"ix":58,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":59,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":60,"action":{"kind":"Undelegate","val":0,"amt":1075},"partialState":{"h":7,"t":42,"tokens":[7089,1337,1750,10946],"delegation":[6089,337,750,9946],"delegatorTokens":9999999960522}},{"ix":61,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":62,"action":{"kind":"Undelegate","val":2,"amt":2813},"partialState":{"h":7,"t":42,"tokens":[7089,1337,1750,10946],"delegation":[6089,337,750,9946],"delegatorTokens":9999999960522}},{"ix":63,"action":{"kind":"Undelegate","val":2,"amt":3580},"partialState":{"h":7,"t":42,"tokens":[7089,1337,1750,10946],"delegation":[6089,337,750,9946],"delegatorTokens":9999999960522}},{"ix":64,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":65,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":66,"action":{"kind":"Undelegate","val":1,"amt":4988},"partialState":{"h":7,"t":42,"tokens":[7089,1337,1750,10946],"delegation":[6089,337,750,9946],"delegatorTokens":9999999960522}},{"ix":67,"action":{"kind":"Deliver","chain":"provider","numPackets":2},"partialState":{"h":7,"t":42,"tokens":[7089,1337,1750,10946],"delegation":[6089,337,750,9946],"delegatorTokens":9999999960522,"jailed":[null,null,null,null],"status":["unbonding","bonded","unbonding","bonded"]}},{"ix":68,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":8,"t":48,"tokens":[7089,1337,1750,10946],"delegation":[6089,337,750,9946],"delegatorTokens":9999999960522,"jailed":[null,1000000000000041,null,null],"status":["bonded","unbonding","unbonding","bonded"]}},{"ix":69,"action":{"kind":"Undelegate","val":3,"amt":3867},"partialState":{"h":8,"t":48,"tokens":[7089,1337,1750,7079],"delegation":[6089,337,750,6079],"delegatorTokens":9999999960522}},{"ix":70,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":6,"t":36,"consumerPower":[null,9205,null,8392],"outstandingDowntime":[true,true,false,false]}},{"ix":71,"action":{"kind":"Undelegate","val":2,"amt":3178},"partialState":{"h":8,"t":48,"tokens":[7089,1337,1750,7079],"delegation":[6089,337,750,6079],"delegatorTokens":9999999960522}},{"ix":72,"action":{"kind":"Delegate","val":3,"amt":3060},"partialState":{"h":8,"t":48,"tokens":[7089,1337,1750,10139],"delegation":[6089,337,750,9139],"delegatorTokens":9999999957462}},{"ix":73,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":74,"action":{"kind":"Delegate","val":1,"amt":4653},"partialState":{"h":8,"t":48,"tokens":[7089,5990,1750,10139],"delegation":[6089,4990,750,9139],"delegatorTokens":9999999952809}},{"ix":75,"action":{"kind":"Deliver","chain":"consumer","numPackets":6},"partialState":{"h":6,"t":36,"consumerPower":[null,9205,null,8392],"outstandingDowntime":[true,true,false,false]}},{"ix":76,"action":{"kind":"Deliver","chain":"provider","numPackets":2},"partialState":{"h":8,"t":48,"tokens":[7089,5990,1750,10139],"delegation":[6089,4990,750,9139],"delegatorTokens":9999999952809,"jailed":[null,1000000000000041,null,null],"status":["bonded","unbonding","unbonding","bonded"]}},{"ix":77,"action":{"kind":"Undelegate","val":1,"amt":3755},"partialState":{"h":8,"t":48,"tokens":[7089,2235,1750,10139],"delegation":[6089,1235,750,9139],"delegatorTokens":9999999952809}},{"ix":78,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":79,"action":{"kind":"Delegate","val":0,"amt":2155},"partialState":{"h":8,"t":48,"tokens":[9244,2235,1750,10139],"delegation":[8244,1235,750,9139],"delegatorTokens":9999999950654}},{"ix":80,"action":{"kind":"Delegate","val":3,"amt":4193},"partialState":{"h":8,"t":48,"tokens":[9244,2235,1750,14332],"delegation":[8244,1235,750,13332],"delegatorTokens":9999999946461}},{"ix":81,"action":{"kind":"Undelegate","val":2,"amt":1829},"partialState":{"h":8,"t":48,"tokens":[9244,2235,1750,14332],"delegation":[8244,1235,750,13332],"delegatorTokens":9999999946461}},{"ix":82,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":83,"action":{"kind":"Delegate","val":0,"amt":3289},"partialState":{"h":8,"t":48,"tokens":[12533,2235,1750,14332],"delegation":[11533,1235,750,13332],"delegatorTokens":9999999943172}},{"ix":84,"action":{"kind":"Delegate","val":1,"amt":3995},"partialState":{"h":8,"t":48,"tokens":[12533,6230,1750,14332],"delegation":[11533,5230,750,13332],"delegatorTokens":9999999939177}},{"ix":85,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":86,"action":{"kind":"Delegate","val":1,"amt":2926},"partialState":{"h":8,"t":48,"tokens":[12533,9156,1750,14332],"delegation":[11533,8156,750,13332],"delegatorTokens":9999999936251}},{"ix":87,"action":{"kind":"Deliver","chain":"consumer","numPackets":3},"partialState":{"h":6,"t":36,"consumerPower":[null,9205,null,8392],"outstandingDowntime":[true,true,false,false]}},{"ix":88,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":89,"action":{"kind":"Undelegate","val":3,"amt":3162},"partialState":{"h":8,"t":48,"tokens":[12533,9156,1750,11170],"delegation":[11533,8156,750,10170],"delegatorTokens":9999999936251}},{"ix":90,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":91,"action":{"kind":"Deliver","chain":"provider","numPackets":6},"partialState":{"h":8,"t":48,"tokens":[12533,9156,1750,11170],"delegation":[11533,8156,750,10170],"delegatorTokens":9999999936251,"jailed":[null,1000000000000041,null,null],"status":["bonded","unbonding","unbonding","bonded"]}},{"ix":92,"action":{"kind":"Undelegate","val":3,"amt":1602},"partialState":{"h":8,"t":48,"tokens":[12533,9156,1750,9568],"delegation":[11533,8156,750,8568],"delegatorTokens":9999999936251}},{"ix":93,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":94,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":9,"t":54,"tokens":[12533,9156,1750,9568],"delegation":[11533,8156,750,8568],"delegatorTokens":9999999936251,"jailed":[1000000000000047,1000000000000041,null,null],"status":["bonded","unbonding","unbonding","bonded"]}},{"ix":95,"action":{"kind":"Delegate","val":1,"amt":3929},"partialState":{"h":9,"t":54,"tokens":[12533,13085,1750,9568],"delegation":[11533,12085,750,8568],"delegatorTokens":9999999932322}},{"ix":96,"action":{"kind":"Delegate","val":0,"amt":2146},"partialState":{"h":9,"t":54,"tokens":[14679,13085,1750,9568],"delegation":[13679,12085,750,8568],"delegatorTokens":9999999930176}},{"ix":97,"action":{"kind":"Delegate","val":3,"amt":3116},"partialState":{"h":9,"t":54,"tokens":[14679,13085,1750,12684],"delegation":[13679,12085,750,11684],"delegatorTokens":9999999927060}},{"ix":98,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":99,"action":{"kind":"Undelegate","val":2,"amt":2399},"partialState":{"h":9,"t":54,"tokens":[14679,13085,1750,12684],"delegation":[13679,12085,750,11684],"delegatorTokens":9999999927060}},{"ix":100,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":101,"action":{"kind":"Delegate","val":1,"amt":1937},"partialState":{"h":9,"t":54,"tokens":[14679,15022,1750,12684],"delegation":[13679,14022,750,11684],"delegatorTokens":9999999925123}},{"ix":102,"action":{"kind":"Deliver","chain":"consumer","numPackets":6},"partialState":{"h":6,"t":36,"consumerPower":[null,9205,null,8392],"outstandingDowntime":[true,false,false,false]}},{"ix":103,"action":{"kind":"Undelegate","val":0,"amt":1537},"partialState":{"h":9,"t":54,"tokens":[13142,15022,1750,12684],"delegation":[12142,14022,750,11684],"delegatorTokens":9999999925123}},{"ix":104,"action":{"kind":"Deliver","chain":"consumer","numPackets":1},"partialState":{"h":6,"t":36,"consumerPower":[null,9205,null,8392],"outstandingDowntime":[true,false,false,false]}},{"ix":105,"action":{"kind":"Deliver","chain":"provider","numPackets":6},"partialState":{"h":9,"t":54,"tokens":[13142,15022,1750,12684],"delegation":[12142,14022,750,11684],"delegatorTokens":9999999925123,"jailed":[1000000000000047,1000000000000041,null,null],"status":["bonded","unbonding","unbonding","bonded"]}},{"ix":106,"action":{"kind":"Undelegate","val":3,"amt":2559},"partialState":{"h":9,"t":54,"tokens":[13142,15022,1750,10125],"delegation":[12142,14022,750,9125],"delegatorTokens":9999999925123}},{"ix":107,"action":{"kind":"Undelegate","val":3,"amt":2281},"partialState":{"h":9,"t":54,"tokens":[13142,15022,1750,7844],"delegation":[12142,14022,750,6844],"delegatorTokens":9999999925123}},{"ix":108,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":10,"t":60,"tokens":[13142,15022,1750,7844],"delegation":[12142,14022,750,6844],"delegatorTokens":9999999925123,"jailed":[1000000000000047,1000000000000041,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":109,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":7,"t":42,"consumerPower":[7089,null,null,10946],"outstandingDowntime":[true,false,false,false]}},{"ix":110,"action":{"kind":"Undelegate","val":1,"amt":4282},"partialState":{"h":10,"t":60,"tokens":[13142,10740,1750,7844],"delegation":[12142,9740,750,6844],"delegatorTokens":9999999925123}},{"ix":111,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":112,"action":{"kind":"Delegate","val":3,"amt":3824},"partialState":{"h":10,"t":60,"tokens":[13142,10740,1750,11668],"delegation":[12142,9740,750,10668],"delegatorTokens":9999999921299}},{"ix":113,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":11,"t":66,"tokens":[13142,10740,1750,11668],"delegation":[12142,9740,750,10668],"delegatorTokens":9999999921299,"jailed":[1000000000000047,1000000000000041,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":114,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":8,"t":48,"consumerPower":[7089,null,null,10946],"outstandingDowntime":[true,false,false,false]}},{"ix":115,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":116,"action":{"kind":"Undelegate","val":3,"amt":3912},"partialState":{"h":11,"t":66,"tokens":[13142,10740,1750,7756],"delegation":[12142,9740,750,6756],"delegatorTokens":9999999921299}},{"ix":117,"action":{"kind":"Undelegate","val":2,"amt":2119},"partialState":{"h":11,"t":66,"tokens":[13142,10740,1750,7756],"delegation":[12142,9740,750,6756],"delegatorTokens":9999999921299}},{"ix":118,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":119,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":120,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":121,"action":{"kind":"Undelegate","val":0,"amt":3278},"partialState":{"h":11,"t":66,"tokens":[9864,10740,1750,7756],"delegation":[8864,9740,750,6756],"delegatorTokens":9999999921299}},{"ix":122,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":12,"t":72,"tokens":[9864,10740,1750,7756],"delegation":[8864,9740,750,6756],"delegatorTokens":9999999921299,"jailed":[1000000000000047,1000000000000041,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":123,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":124,"action":{"kind":"Deliver","chain":"consumer","numPackets":6},"partialState":{"h":8,"t":48,"consumerPower":[7089,null,null,10946],"outstandingDowntime":[false,false,false,false]}},{"ix":125,"action":{"kind":"Deliver","chain":"provider","numPackets":1},"partialState":{"h":12,"t":72,"tokens":[9864,10740,1750,7756],"delegation":[8864,9740,750,6756],"delegatorTokens":9999999921299,"jailed":[1000000000000047,1000000000000041,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":126,"action":{"kind":"Deliver","chain":"consumer","numPackets":2},"partialState":{"h":8,"t":48,"consumerPower":[7089,null,null,10946],"outstandingDowntime":[false,false,false,false]}},{"ix":127,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":9,"t":54,"consumerPower":[null,null,1750,11668],"outstandingDowntime":[false,false,false,false]}},{"ix":128,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":10,"t":60,"consumerPower":[null,null,1750,11668],"outstandingDowntime":[false,false,false,false]}},{"ix":129,"action":{"kind":"Deliver","chain":"consumer","numPackets":3},"partialState":{"h":10,"t":60,"consumerPower":[null,null,1750,11668],"outstandingDowntime":[false,false,false,false]}},{"ix":130,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":131,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":132,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":133,"action":{"kind":"Deliver","chain":"consumer","numPackets":3},"partialState":{"h":10,"t":60,"consumerPower":[null,null,1750,11668],"outstandingDowntime":[false,false,false,false]}},{"ix":134,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":11,"t":66,"consumerPower":[null,null,1750,11668],"outstandingDowntime":[false,false,false,false]}},{"ix":135,"action":{"kind":"Delegate","val":3,"amt":3063},"partialState":{"h":12,"t":72,"tokens":[9864,10740,1750,10819],"delegation":[8864,9740,750,9819],"delegatorTokens":9999999918236}},{"ix":136,"action":{"kind":"Undelegate","val":1,"amt":4374},"partialState":{"h":12,"t":72,"tokens":[9864,6366,1750,10819],"delegation":[8864,5366,750,9819],"delegatorTokens":9999999918236}},{"ix":137,"action":{"kind":"Deliver","chain":"consumer","numPackets":5},"partialState":{"h":11,"t":66,"consumerPower":[null,null,1750,11668],"outstandingDowntime":[false,false,false,false]}},{"ix":138,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":12,"t":72,"consumerPower":[null,null,1750,11668],"outstandingDowntime":[false,false,false,false]}},{"ix":139,"action":{"kind":"Deliver","chain":"provider","numPackets":6},"partialState":{"h":12,"t":72,"tokens":[9864,6366,1750,10819],"delegation":[8864,5366,750,9819],"delegatorTokens":9999999918236,"jailed":[1000000000000047,1000000000000041,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":140,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":141,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":13,"t":78,"consumerPower":[null,null,1750,11668],"outstandingDowntime":[false,false,false,false]}},{"ix":142,"action":{"kind":"Deliver","chain":"provider","numPackets":1},"partialState":{"h":12,"t":72,"tokens":[9864,6366,1750,10819],"delegation":[8864,5366,750,9819],"delegatorTokens":9999999918236,"jailed":[1000000000000047,1000000000000041,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":143,"action":{"kind":"Undelegate","val":1,"amt":4232},"partialState":{"h":12,"t":72,"tokens":[9864,2134,1750,10819],"delegation":[8864,1134,750,9819],"delegatorTokens":9999999918236}},{"ix":144,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":145,"action":{"kind":"Undelegate","val":3,"amt":3881},"partialState":{"h":12,"t":72,"tokens":[9864,2134,1750,6938],"delegation":[8864,1134,750,5938],"delegatorTokens":9999999918236}},{"ix":146,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":14,"t":84,"consumerPower":[null,null,1750,11668],"outstandingDowntime":[false,false,false,false]}},{"ix":147,"action":{"kind":"Deliver","chain":"consumer","numPackets":6},"partialState":{"h":14,"t":84,"consumerPower":[null,null,1750,11668],"outstandingDowntime":[false,false,false,false]}},{"ix":148,"action":{"kind":"Delegate","val":1,"amt":3515},"partialState":{"h":12,"t":72,"tokens":[9864,5649,1750,6938],"delegation":[8864,4649,750,5938],"delegatorTokens":9999999914721}},{"ix":149,"action":{"kind":"Undelegate","val":1,"amt":3852},"partialState":{"h":12,"t":72,"tokens":[9864,1797,1750,6938],"delegation":[8864,797,750,5938],"delegatorTokens":9999999914721}},{"ix":150,"action":{"kind":"Deliver","chain":"provider","numPackets":5},"partialState":{"h":12,"t":72,"tokens":[9864,1797,1750,6938],"delegation":[8864,797,750,5938],"delegatorTokens":9999999914721,"jailed":[1000000000000047,1000000000000041,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":151,"action":{"kind":"Delegate","val":1,"amt":3321},"partialState":{"h":12,"t":72,"tokens":[9864,5118,1750,6938],"delegation":[8864,4118,750,5938],"delegatorTokens":9999999911400}},{"ix":152,"action":{"kind":"Undelegate","val":0,"amt":3630},"partialState":{"h":12,"t":72,"tokens":[6234,5118,1750,6938],"delegation":[5234,4118,750,5938],"delegatorTokens":9999999911400}},{"ix":153,"action":{"kind":"Delegate","val":3,"amt":1082},"partialState":{"h":12,"t":72,"tokens":[6234,5118,1750,8020],"delegation":[5234,4118,750,7020],"delegatorTokens":9999999910318}},{"ix":154,"action":{"kind":"Deliver","chain":"provider","numPackets":1},"partialState":{"h":12,"t":72,"tokens":[6234,5118,1750,8020],"delegation":[5234,4118,750,7020],"delegatorTokens":9999999910318,"jailed":[1000000000000047,1000000000000041,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":155,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":156,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":15,"t":90,"consumerPower":[null,null,1750,11668],"outstandingDowntime":[false,false,false,false]}},{"ix":157,"action":{"kind":"Delegate","val":1,"amt":1767},"partialState":{"h":12,"t":72,"tokens":[6234,6885,1750,8020],"delegation":[5234,5885,750,7020],"delegatorTokens":9999999908551}},{"ix":158,"action":{"kind":"Deliver","chain":"provider","numPackets":2},"partialState":{"h":12,"t":72,"tokens":[6234,6885,1750,8020],"delegation":[5234,5885,750,7020],"delegatorTokens":9999999908551,"jailed":[1000000000000047,1000000000000041,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":159,"action":{"kind":"Undelegate","val":3,"amt":4109},"partialState":{"h":12,"t":72,"tokens":[6234,6885,1750,3911],"delegation":[5234,5885,750,2911],"delegatorTokens":9999999908551}},{"ix":160,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":13,"t":78,"tokens":[6234,6885,1750,3911],"delegation":[5234,5885,750,2911],"delegatorTokens":9999999908551,"jailed":[1000000000000047,1000000000000041,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":161,"action":{"kind":"Deliver","chain":"consumer","numPackets":4},"partialState":{"h":15,"t":90,"consumerPower":[null,null,1750,11668],"outstandingDowntime":[false,false,false,false]}},{"ix":162,"action":{"kind":"Undelegate","val":0,"amt":2346},"partialState":{"h":13,"t":78,"tokens":[3888,6885,1750,3911],"delegation":[2888,5885,750,2911],"delegatorTokens":9999999908551}},{"ix":163,"action":{"kind":"Deliver","chain":"consumer","numPackets":1},"partialState":{"h":15,"t":90,"consumerPower":[null,null,1750,11668],"outstandingDowntime":[false,false,false,false]}},{"ix":164,"action":{"kind":"Undelegate","val":1,"amt":4963},"partialState":{"h":13,"t":78,"tokens":[3888,1922,1750,3911],"delegation":[2888,922,750,2911],"delegatorTokens":9999999908551}},{"ix":165,"action":{"kind":"Delegate","val":1,"amt":1607},"partialState":{"h":13,"t":78,"tokens":[3888,3529,1750,3911],"delegation":[2888,2529,750,2911],"delegatorTokens":9999999906944}},{"ix":166,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":167,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":16,"t":96,"consumerPower":[null,null,1750,7756],"outstandingDowntime":[false,false,false,false]}},{"ix":168,"action":{"kind":"Delegate","val":1,"amt":4354},"partialState":{"h":13,"t":78,"tokens":[3888,7883,1750,3911],"delegation":[2888,6883,750,2911],"delegatorTokens":9999999902590}},{"ix":169,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":14,"t":84,"tokens":[3888,7883,1750,3911],"delegation":[2888,6883,750,2911],"delegatorTokens":9999999904049,"jailed":[1000000000000047,1000000000000041,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":170,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":15,"t":90,"tokens":[3888,7883,1750,3911],"delegation":[2888,6883,750,2911],"delegatorTokens":9999999908796,"jailed":[1000000000000047,1000000000000041,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":171,"action":{"kind":"Undelegate","val":1,"amt":2211},"partialState":{"h":15,"t":90,"tokens":[3888,5672,1750,3911],"delegation":[2888,4672,750,2911],"delegatorTokens":9999999908796}},{"ix":172,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":16,"t":96,"tokens":[3888,5672,1750,3911],"delegation":[2888,4672,750,2911],"delegatorTokens":9999999911608,"jailed":[1000000000000047,1000000000000041,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":173,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":17,"t":102,"consumerPower":[null,null,1750,7756],"outstandingDowntime":[false,false,false,false]}},{"ix":174,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":17,"t":102,"tokens":[3888,5672,1750,3911],"delegation":[2888,4672,750,2911],"delegatorTokens":9999999911608,"jailed":[1000000000000047,1000000000000041,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":175,"action":{"kind":"Deliver","chain":"consumer","numPackets":4},"partialState":{"h":17,"t":102,"consumerPower":[null,null,1750,7756],"outstandingDowntime":[false,false,false,false]}},{"ix":176,"action":{"kind":"Deliver","chain":"consumer","numPackets":3},"partialState":{"h":17,"t":102,"consumerPower":[null,null,1750,7756],"outstandingDowntime":[false,false,false,false]}},{"ix":177,"action":{"kind":"Undelegate","val":3,"amt":3039},"partialState":{"h":17,"t":102,"tokens":[3888,5672,1750,3911],"delegation":[2888,4672,750,2911],"delegatorTokens":9999999911608}},{"ix":178,"action":{"kind":"Undelegate","val":2,"amt":4524},"partialState":{"h":17,"t":102,"tokens":[3888,5672,1750,3911],"delegation":[2888,4672,750,2911],"delegatorTokens":9999999911608}},{"ix":179,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":18,"t":108,"consumerPower":[null,null,1750,3911],"outstandingDowntime":[false,false,false,false]}},{"ix":180,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":19,"t":114,"consumerPower":[null,null,1750,3911],"outstandingDowntime":[false,false,false,false]}},{"ix":181,"action":{"kind":"Undelegate","val":3,"amt":4524},"partialState":{"h":17,"t":102,"tokens":[3888,5672,1750,3911],"delegation":[2888,4672,750,2911],"delegatorTokens":9999999911608}},{"ix":182,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":183,"action":{"kind":"Undelegate","val":1,"amt":1191},"partialState":{"h":17,"t":102,"tokens":[3888,4481,1750,3911],"delegation":[2888,3481,750,2911],"delegatorTokens":9999999911608}},{"ix":184,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":185,"action":{"kind":"Undelegate","val":2,"amt":2852},"partialState":{"h":17,"t":102,"tokens":[3888,4481,1750,3911],"delegation":[2888,3481,750,2911],"delegatorTokens":9999999911608}},{"ix":186,"action":{"kind":"Undelegate","val":0,"amt":1998},"partialState":{"h":17,"t":102,"tokens":[1890,4481,1750,3911],"delegation":[890,3481,750,2911],"delegatorTokens":9999999911608}},{"ix":187,"action":{"kind":"Deliver","chain":"consumer","numPackets":3},"partialState":{"h":19,"t":114,"consumerPower":[null,null,1750,3911],"outstandingDowntime":[false,false,false,false]}},{"ix":188,"action":{"kind":"Deliver","chain":"provider","numPackets":5},"partialState":{"h":17,"t":102,"tokens":[1890,4481,1750,3911],"delegation":[890,3481,750,2911],"delegatorTokens":9999999911608,"jailed":[1000000000000047,1000000000000041,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":189,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":190,"action":{"kind":"Delegate","val":3,"amt":1870},"partialState":{"h":17,"t":102,"tokens":[1890,4481,1750,5781],"delegation":[890,3481,750,4781],"delegatorTokens":9999999909738}},{"ix":191,"action":{"kind":"Undelegate","val":2,"amt":3740},"partialState":{"h":17,"t":102,"tokens":[1890,4481,1750,5781],"delegation":[890,3481,750,4781],"delegatorTokens":9999999909738}},{"ix":192,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":193,"action":{"kind":"Delegate","val":1,"amt":1164},"partialState":{"h":17,"t":102,"tokens":[1890,5645,1750,5781],"delegation":[890,4645,750,4781],"delegatorTokens":9999999908574}},{"ix":194,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":20,"t":120,"consumerPower":[null,null,1750,3911],"outstandingDowntime":[false,false,false,false]}},{"ix":195,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":18,"t":108,"tokens":[1890,5645,1750,5781],"delegation":[890,4645,750,4781],"delegatorTokens":9999999909605,"jailed":[1000000000000047,1000000000000041,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":196,"action":{"kind":"Deliver","chain":"consumer","numPackets":4},"partialState":{"h":20,"t":120,"consumerPower":[null,null,1750,3911],"outstandingDowntime":[false,false,false,false]}},{"ix":197,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":198,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":19,"t":114,"tokens":[1890,5645,1750,5781],"delegation":[890,4645,750,4781],"delegatorTokens":9999999909605,"jailed":[1000000000000047,1000000000000041,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":199,"action":{"kind":"Delegate","val":0,"amt":1228},"partialState":{"h":19,"t":114,"tokens":[3118,5645,1750,5781],"delegation":[2118,4645,750,4781],"delegatorTokens":9999999908377}}],"events":["insufficient_shares","send_downtime_slash_request","downtime_slash_request_outstanding","send_double_sign_slash_request","insufficient_shares","send_double_sign_slash_request","more_than_one_third_val_power_change","send_vsc_without_downtime_ack","insufficient_shares","send_double_sign_slash_request","more_than_one_third_val_power_change","rebond_unval","send_vsc_without_downtime_ack","downtime_slash_request_outstanding","send_double_sign_slash_request","more_than_one_third_val_power_change","send_vsc_without_downtime_ack","send_vsc_without_downtime_ack","send_double_sign_slash_request","receive_double_sign_slash_request","receive_double_sign_slash_request","receive_double_sign_slash_request","consumer_update_val","consumer_del_val","consumer_del_val","consumer_add_val","send_downtime_slash_request","receive_double_sign_slash_request","receive_double_sign_slash_request","insufficient_shares","insufficient_shares","insufficient_shares","more_than_one_third_val_power_change","rebond_unval","receive_downtime_slash_request","jail","send_vsc_with_downtime_ack","insufficient_shares","insufficient_shares","receive_downtime_slash_request","jail","send_vsc_with_downtime_ack","insufficient_shares","receive_downtime_slash_ack","rebond_unval","send_vsc_without_downtime_ack","consumer_add_val","consumer_del_val","consumer_update_val","send_vsc_without_downtime_ack","insufficient_shares","send_vsc_without_downtime_ack","receive_downtime_slash_ack","consumer_del_val","consumer_update_val","consumer_add_val","consumer_send_maturation","consumer_send_maturation","consumer_send_maturation","consumer_send_maturation","set_undel_hold_false","set_undel_hold_false","set_undel_hold_false","set_undel_hold_false","send_vsc_without_downtime_ack","consumer_send_maturation","consumer_update_val","complete_undel_in_endblock","send_vsc_not_because_change","send_vsc_without_downtime_ack","complete_undel_in_endblock","complete_undel_in_endblock","send_vsc_not_because_change","send_vsc_without_downtime_ack","insufficient_shares","insufficient_shares","consumer_send_maturation","consumer_send_maturation","consumer_send_maturation","consumer_update_val","insufficient_shares","insufficient_shares","insufficient_shares","complete_undel_in_endblock","set_undel_hold_false","set_undel_hold_false","set_undel_hold_false","set_undel_hold_false","set_undel_hold_false","set_undel_hold_false","set_undel_hold_false","set_undel_hold_false","set_undel_hold_false","set_unval_hold_false","set_undel_hold_false","set_undel_hold_false","set_undel_hold_false","set_undel_hold_false","set_undel_hold_false","set_undel_hold_false","set_undel_hold_false","set_unval_hold_false","set_undel_hold_false","send_vsc_without_downtime_ack"]},{"meta":{"commit":"7ffd0c04e4205cbc9caf212abfe6c59ee43153bf"},"constants":{"P":"provider","C":"consumer","UNBONDING_SECONDS_P":70,"UNBONDING_SECONDS_C":50,"TRUSTING_SECONDS":49,"NUM_VALIDATORS":4,"MAX_VALIDATORS":2,"SLASH_DOUBLESIGN":0,"SLASH_DOWNTIME":0,"JAIL_SECONDS":999999999999999,"BLOCK_SECONDS":6,"INITIAL_DELEGATOR_TOKENS":10000000000000,"DELEGATE_AMT_MIN":1000,"DELEGATE_AMT_MAX":5000,"UNDELEGATE_AMT_MIN":1000,"UNDELEGATE_AMT_MAX":5000,"ISDOWNTIME_PROBABILITY":0.5,"MAX_NUM_PACKETS_FOR_DELIVER":6},"actions":[{"ix":0,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":1,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":2,"action":{"kind":"ConsumerSlash","val":1,"infractionHeight":0,"isDowntime":true},"partialState":{"h":1,"t":6,"outstandingDowntime":[false,true,false,false]}},{"ix":3,"action":{"kind":"ConsumerSlash","val":0,"infractionHeight":0,"isDowntime":true},"partialState":{"h":1,"t":6,"outstandingDowntime":[true,true,false,false]}},{"ix":4,"action":{"kind":"Undelegate","val":2,"amt":3533},"partialState":{"h":1,"t":6,"tokens":[5000,4000,3000,2000],"delegation":[4000,3000,2000,1000],"delegatorTokens":10000000000000}},{"ix":5,"action":{"kind":"Delegate","val":1,"amt":4122},"partialState":{"h":1,"t":6,"tokens":[5000,8122,3000,2000],"delegation":[4000,7122,2000,1000],"delegatorTokens":9999999995878}},{"ix":6,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":2,"t":12,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[true,true,false,false]}},{"ix":7,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":3,"t":18,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[true,true,false,false]}},{"ix":8,"action":{"kind":"Delegate","val":3,"amt":3125},"partialState":{"h":1,"t":6,"tokens":[5000,8122,3000,5125],"delegation":[4000,7122,2000,4125],"delegatorTokens":9999999992753}},{"ix":9,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":10,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":2,"t":12,"tokens":[5000,8122,3000,5125],"delegation":[4000,7122,2000,4125],"delegatorTokens":9999999992753,"jailed":[null,null,null,null],"status":["unbonding","bonded","unbonded","bonded"]}},{"ix":11,"action":{"kind":"ConsumerSlash","val":0,"infractionHeight":0,"isDowntime":false},"partialState":{"h":3,"t":18,"outstandingDowntime":[true,true,false,false]}},{"ix":12,"action":{"kind":"Deliver","chain":"consumer","numPackets":1},"partialState":{"h":3,"t":18,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[true,true,false,false]}},{"ix":13,"action":{"kind":"Deliver","chain":"consumer","numPackets":1},"partialState":{"h":3,"t":18,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[true,true,false,false]}},{"ix":14,"action":{"kind":"ConsumerSlash","val":1,"infractionHeight":0,"isDowntime":false},"partialState":{"h":3,"t":18,"outstandingDowntime":[true,true,false,false]}},{"ix":15,"action":{"kind":"Undelegate","val":1,"amt":1775},"partialState":{"h":2,"t":12,"tokens":[5000,6347,3000,5125],"delegation":[4000,5347,2000,4125],"delegatorTokens":9999999992753}},{"ix":16,"action":{"kind":"ConsumerSlash","val":1,"infractionHeight":0,"isDowntime":true},"partialState":{"h":3,"t":18,"outstandingDowntime":[true,true,false,false]}},{"ix":17,"action":{"kind":"ConsumerSlash","val":1,"infractionHeight":2,"isDowntime":false},"partialState":{"h":3,"t":18,"outstandingDowntime":[true,true,false,false]}},{"ix":18,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":3,"t":18,"tokens":[5000,6347,3000,5125],"delegation":[4000,5347,2000,4125],"delegatorTokens":9999999992753,"jailed":[null,null,null,null],"status":["unbonding","bonded","unbonded","bonded"]}},{"ix":19,"action":{"kind":"Delegate","val":0,"amt":3844},"partialState":{"h":3,"t":18,"tokens":[8844,6347,3000,5125],"delegation":[7844,5347,2000,4125],"delegatorTokens":9999999988909}},{"ix":20,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":21,"action":{"kind":"Deliver","chain":"provider","numPackets":5},"partialState":{"h":3,"t":18,"tokens":[8844,6347,3000,5125],"delegation":[7844,5347,2000,4125],"delegatorTokens":9999999988909,"jailed":[null,null,null,null],"status":["unbonding","bonded","unbonded","bonded"]}},{"ix":22,"action":{"kind":"ConsumerSlash","val":1,"infractionHeight":2,"isDowntime":true},"partialState":{"h":3,"t":18,"outstandingDowntime":[true,true,false,false]}},{"ix":23,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":24,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":4,"t":24,"tokens":[8844,6347,3000,5125],"delegation":[7844,5347,2000,4125],"delegatorTokens":9999999988909,"jailed":[1000000000000017,1000000000000017,null,null],"status":["bonded","bonded","unbonded","unbonding"]}},{"ix":25,"action":{"kind":"Deliver","chain":"consumer","numPackets":4},"partialState":{"h":3,"t":18,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[true,true,false,false]}},{"ix":26,"action":{"kind":"Deliver","chain":"provider","numPackets":4},"partialState":{"h":4,"t":24,"tokens":[8844,6347,3000,5125],"delegation":[7844,5347,2000,4125],"delegatorTokens":9999999988909,"jailed":[1000000000000017,1000000000000017,null,null],"status":["bonded","bonded","unbonded","unbonding"]}},{"ix":27,"action":{"kind":"ConsumerSlash","val":2,"infractionHeight":2,"isDowntime":true},"partialState":{"h":3,"t":18,"outstandingDowntime":[true,true,true,false]}},{"ix":28,"action":{"kind":"Delegate","val":2,"amt":4615},"partialState":{"h":4,"t":24,"tokens":[8844,6347,7615,5125],"delegation":[7844,5347,6615,4125],"delegatorTokens":9999999984294}},{"ix":29,"action":{"kind":"Undelegate","val":1,"amt":2663},"partialState":{"h":4,"t":24,"tokens":[8844,3684,7615,5125],"delegation":[7844,2684,6615,4125],"delegatorTokens":9999999984294}},{"ix":30,"action":{"kind":"Deliver","chain":"provider","numPackets":3},"partialState":{"h":4,"t":24,"tokens":[8844,3684,7615,5125],"delegation":[7844,2684,6615,4125],"delegatorTokens":9999999984294,"jailed":[1000000000000017,1000000000000017,null,null],"status":["bonded","bonded","unbonded","unbonding"]}},{"ix":31,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":32,"action":{"kind":"Deliver","chain":"provider","numPackets":6},"partialState":{"h":4,"t":24,"tokens":[8844,3684,7615,5125],"delegation":[7844,2684,6615,4125],"delegatorTokens":9999999984294,"jailed":[1000000000000017,1000000000000017,null,null],"status":["bonded","bonded","unbonded","unbonding"]}},{"ix":33,"action":{"kind":"Delegate","val":1,"amt":1412},"partialState":{"h":4,"t":24,"tokens":[8844,5096,7615,5125],"delegation":[7844,4096,6615,4125],"delegatorTokens":9999999982882}},{"ix":34,"action":{"kind":"Deliver","chain":"provider","numPackets":5},"partialState":{"h":4,"t":24,"tokens":[8844,5096,7615,5125],"delegation":[7844,4096,6615,4125],"delegatorTokens":9999999982882,"jailed":[1000000000000017,1000000000000017,null,null],"status":["bonded","bonded","unbonded","unbonding"]}},{"ix":35,"action":{"kind":"Delegate","val":0,"amt":1114},"partialState":{"h":4,"t":24,"tokens":[9958,5096,7615,5125],"delegation":[8958,4096,6615,4125],"delegatorTokens":9999999981768}},{"ix":36,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":5,"t":30,"tokens":[9958,5096,7615,5125],"delegation":[8958,4096,6615,4125],"delegatorTokens":9999999981768,"jailed":[1000000000000017,1000000000000017,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":37,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":4,"t":24,"consumerPower":[null,6347,null,5125],"outstandingDowntime":[true,true,true,false]}},{"ix":38,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":39,"action":{"kind":"Delegate","val":3,"amt":2359},"partialState":{"h":5,"t":30,"tokens":[9958,5096,7615,7484],"delegation":[8958,4096,6615,6484],"delegatorTokens":9999999979409}},{"ix":40,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":5,"t":30,"consumerPower":[null,6347,null,5125],"outstandingDowntime":[true,true,true,false]}},{"ix":41,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":6,"t":36,"tokens":[9958,5096,7615,7484],"delegation":[8958,4096,6615,6484],"delegatorTokens":9999999979409,"jailed":[1000000000000017,1000000000000017,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":42,"action":{"kind":"Undelegate","val":0,"amt":4815},"partialState":{"h":6,"t":36,"tokens":[5143,5096,7615,7484],"delegation":[4143,4096,6615,6484],"delegatorTokens":9999999979409}},{"ix":43,"action":{"kind":"Undelegate","val":2,"amt":2483},"partialState":{"h":6,"t":36,"tokens":[5143,5096,5132,7484],"delegation":[4143,4096,4132,6484],"delegatorTokens":9999999979409}},{"ix":44,"action":{"kind":"Delegate","val":1,"amt":1933},"partialState":{"h":6,"t":36,"tokens":[5143,7029,5132,7484],"delegation":[4143,6029,4132,6484],"delegatorTokens":9999999977476}},{"ix":45,"action":{"kind":"Delegate","val":0,"amt":2336},"partialState":{"h":6,"t":36,"tokens":[7479,7029,5132,7484],"delegation":[6479,6029,4132,6484],"delegatorTokens":9999999975140}},{"ix":46,"action":{"kind":"Deliver","chain":"provider","numPackets":4},"partialState":{"h":6,"t":36,"tokens":[7479,7029,5132,7484],"delegation":[6479,6029,4132,6484],"delegatorTokens":9999999975140,"jailed":[1000000000000017,1000000000000017,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":47,"action":{"kind":"Undelegate","val":3,"amt":3852},"partialState":{"h":6,"t":36,"tokens":[7479,7029,5132,3632],"delegation":[6479,6029,4132,2632],"delegatorTokens":9999999975140}},{"ix":48,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":49,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":6,"t":36,"consumerPower":[null,6347,null,5125],"outstandingDowntime":[true,true,true,false]}},{"ix":50,"action":{"kind":"Deliver","chain":"consumer","numPackets":4},"partialState":{"h":6,"t":36,"consumerPower":[null,6347,null,5125],"outstandingDowntime":[false,false,true,false]}},{"ix":51,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":7,"t":42,"consumerPower":[null,null,7615,5125],"outstandingDowntime":[false,false,true,false]}},{"ix":52,"action":{"kind":"Deliver","chain":"consumer","numPackets":4},"partialState":{"h":7,"t":42,"consumerPower":[null,null,7615,5125],"outstandingDowntime":[false,false,true,false]}},{"ix":53,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":54,"action":{"kind":"Delegate","val":1,"amt":4326},"partialState":{"h":6,"t":36,"tokens":[7479,11355,5132,3632],"delegation":[6479,10355,4132,2632],"delegatorTokens":9999999970814}},{"ix":55,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":7,"t":42,"tokens":[7479,11355,5132,3632],"delegation":[6479,10355,4132,2632],"delegatorTokens":9999999970814,"jailed":[1000000000000017,1000000000000017,1000000000000035,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":56,"action":{"kind":"Undelegate","val":1,"amt":1212},"partialState":{"h":7,"t":42,"tokens":[7479,10143,5132,3632],"delegation":[6479,9143,4132,2632],"delegatorTokens":9999999970814}},{"ix":57,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":8,"t":48,"consumerPower":[null,null,7615,5125],"outstandingDowntime":[false,false,true,false]}},{"ix":58,"action":{"kind":"Deliver","chain":"consumer","numPackets":5},"partialState":{"h":8,"t":48,"consumerPower":[null,null,7615,5125],"outstandingDowntime":[false,false,true,false]}},{"ix":59,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":8,"t":48,"tokens":[7479,10143,5132,3632],"delegation":[6479,9143,4132,2632],"delegatorTokens":9999999970814,"jailed":[1000000000000017,1000000000000017,1000000000000035,null],"status":["unbonding","unbonding","unbonding","bonded"]}},{"ix":60,"action":{"kind":"Delegate","val":3,"amt":3906},"partialState":{"h":8,"t":48,"tokens":[7479,10143,5132,7538],"delegation":[6479,9143,4132,6538],"delegatorTokens":9999999966908}},{"ix":61,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":9,"t":54,"consumerPower":[null,null,7615,7484],"outstandingDowntime":[false,false,true,false]}},{"ix":62,"action":{"kind":"Deliver","chain":"provider","numPackets":6},"partialState":{"h":8,"t":48,"tokens":[7479,10143,5132,7538],"delegation":[6479,9143,4132,6538],"delegatorTokens":9999999966908,"jailed":[1000000000000017,1000000000000017,1000000000000035,null],"status":["unbonding","unbonding","unbonding","bonded"]}},{"ix":63,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":64,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":10,"t":60,"consumerPower":[null,null,7615,7484],"outstandingDowntime":[false,false,true,false]}},{"ix":65,"action":{"kind":"Undelegate","val":1,"amt":1277},"partialState":{"h":8,"t":48,"tokens":[7479,8866,5132,7538],"delegation":[6479,7866,4132,6538],"delegatorTokens":9999999966908}},{"ix":66,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":67,"action":{"kind":"Undelegate","val":3,"amt":4456},"partialState":{"h":8,"t":48,"tokens":[7479,8866,5132,3082],"delegation":[6479,7866,4132,2082],"delegatorTokens":9999999966908}},{"ix":68,"action":{"kind":"Undelegate","val":0,"amt":1508},"partialState":{"h":8,"t":48,"tokens":[5971,8866,5132,3082],"delegation":[4971,7866,4132,2082],"delegatorTokens":9999999966908}},{"ix":69,"action":{"kind":"Delegate","val":0,"amt":2285},"partialState":{"h":8,"t":48,"tokens":[8256,8866,5132,3082],"delegation":[7256,7866,4132,2082],"delegatorTokens":9999999964623}},{"ix":70,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":11,"t":66,"consumerPower":[null,null,7615,7484],"outstandingDowntime":[false,false,true,false]}},{"ix":71,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":9,"t":54,"tokens":[8256,8866,5132,3082],"delegation":[7256,7866,4132,2082],"delegatorTokens":9999999964623,"jailed":[1000000000000017,1000000000000017,1000000000000035,null],"status":["unbonding","unbonding","unbonding","bonded"]}},{"ix":72,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":73,"action":{"kind":"Deliver","chain":"provider","numPackets":1},"partialState":{"h":9,"t":54,"tokens":[8256,8866,5132,3082],"delegation":[7256,7866,4132,2082],"delegatorTokens":9999999964623,"jailed":[1000000000000017,1000000000000017,1000000000000035,null],"status":["unbonding","unbonding","unbonding","bonded"]}},{"ix":74,"action":{"kind":"Deliver","chain":"consumer","numPackets":3},"partialState":{"h":11,"t":66,"consumerPower":[null,null,7615,7484],"outstandingDowntime":[false,false,false,false]}},{"ix":75,"action":{"kind":"Undelegate","val":2,"amt":2963},"partialState":{"h":9,"t":54,"tokens":[8256,8866,2169,3082],"delegation":[7256,7866,1169,2082],"delegatorTokens":9999999964623}},{"ix":76,"action":{"kind":"Delegate","val":2,"amt":1872},"partialState":{"h":9,"t":54,"tokens":[8256,8866,4041,3082],"delegation":[7256,7866,3041,2082],"delegatorTokens":9999999962751}},{"ix":77,"action":{"kind":"Delegate","val":2,"amt":1021},"partialState":{"h":9,"t":54,"tokens":[8256,8866,5062,3082],"delegation":[7256,7866,4062,2082],"delegatorTokens":9999999961730}},{"ix":78,"action":{"kind":"Delegate","val":2,"amt":3112},"partialState":{"h":9,"t":54,"tokens":[8256,8866,8174,3082],"delegation":[7256,7866,7174,2082],"delegatorTokens":9999999958618}},{"ix":79,"action":{"kind":"Undelegate","val":3,"amt":3508},"partialState":{"h":9,"t":54,"tokens":[8256,8866,8174,3082],"delegation":[7256,7866,7174,2082],"delegatorTokens":9999999958618}},{"ix":80,"action":{"kind":"Delegate","val":0,"amt":3056},"partialState":{"h":9,"t":54,"tokens":[11312,8866,8174,3082],"delegation":[10312,7866,7174,2082],"delegatorTokens":9999999955562}},{"ix":81,"action":{"kind":"Undelegate","val":2,"amt":4766},"partialState":{"h":9,"t":54,"tokens":[11312,8866,3408,3082],"delegation":[10312,7866,2408,2082],"delegatorTokens":9999999955562}},{"ix":82,"action":{"kind":"Deliver","chain":"consumer","numPackets":6},"partialState":{"h":11,"t":66,"consumerPower":[null,null,7615,7484],"outstandingDowntime":[false,false,false,false]}},{"ix":83,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":84,"action":{"kind":"Delegate","val":0,"amt":2869},"partialState":{"h":9,"t":54,"tokens":[14181,8866,3408,3082],"delegation":[13181,7866,2408,2082],"delegatorTokens":9999999952693}},{"ix":85,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":86,"action":{"kind":"Delegate","val":2,"amt":3390},"partialState":{"h":9,"t":54,"tokens":[14181,8866,6798,3082],"delegation":[13181,7866,5798,2082],"delegatorTokens":9999999949303}},{"ix":87,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":12,"t":72,"consumerPower":[null,null,null,3632],"outstandingDowntime":[false,false,false,false]}},{"ix":88,"action":{"kind":"Deliver","chain":"consumer","numPackets":3},"partialState":{"h":12,"t":72,"consumerPower":[null,null,null,3632],"outstandingDowntime":[false,false,false,false]}},{"ix":89,"action":{"kind":"Delegate","val":0,"amt":1078},"partialState":{"h":9,"t":54,"tokens":[15259,8866,6798,3082],"delegation":[14259,7866,5798,2082],"delegatorTokens":9999999948225}},{"ix":90,"action":{"kind":"Delegate","val":1,"amt":2959},"partialState":{"h":9,"t":54,"tokens":[15259,11825,6798,3082],"delegation":[14259,10825,5798,2082],"delegatorTokens":9999999945266}},{"ix":91,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":10,"t":60,"tokens":[15259,11825,6798,3082],"delegation":[14259,10825,5798,2082],"delegatorTokens":9999999945266,"jailed":[1000000000000017,1000000000000017,1000000000000035,null],"status":["unbonding","unbonding","unbonding","bonded"]}},{"ix":92,"action":{"kind":"Delegate","val":0,"amt":2279},"partialState":{"h":10,"t":60,"tokens":[17538,11825,6798,3082],"delegation":[16538,10825,5798,2082],"delegatorTokens":9999999942987}},{"ix":93,"action":{"kind":"Undelegate","val":1,"amt":2450},"partialState":{"h":10,"t":60,"tokens":[17538,9375,6798,3082],"delegation":[16538,8375,5798,2082],"delegatorTokens":9999999942987}},{"ix":94,"action":{"kind":"Deliver","chain":"provider","numPackets":5},"partialState":{"h":10,"t":60,"tokens":[17538,9375,6798,3082],"delegation":[16538,8375,5798,2082],"delegatorTokens":9999999942987,"jailed":[1000000000000017,1000000000000017,1000000000000035,null],"status":["unbonding","unbonding","unbonding","bonded"]}},{"ix":95,"action":{"kind":"Undelegate","val":0,"amt":4146},"partialState":{"h":10,"t":60,"tokens":[13392,9375,6798,3082],"delegation":[12392,8375,5798,2082],"delegatorTokens":9999999942987}},{"ix":96,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":97,"action":{"kind":"Undelegate","val":3,"amt":1944},"partialState":{"h":10,"t":60,"tokens":[13392,9375,6798,1138],"delegation":[12392,8375,5798,138],"delegatorTokens":9999999942987}},{"ix":98,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":99,"action":{"kind":"Delegate","val":0,"amt":2855},"partialState":{"h":10,"t":60,"tokens":[16247,9375,6798,1138],"delegation":[15247,8375,5798,138],"delegatorTokens":9999999940132}},{"ix":100,"action":{"kind":"Deliver","chain":"consumer","numPackets":2},"partialState":{"h":12,"t":72,"consumerPower":[null,null,null,3632],"outstandingDowntime":[false,false,false,false]}},{"ix":101,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":102,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":103,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":11,"t":66,"tokens":[16247,9375,6798,1138],"delegation":[15247,8375,5798,138],"delegatorTokens":9999999940132,"jailed":[1000000000000017,1000000000000017,1000000000000035,null],"status":["unbonding","unbonding","unbonding","bonded"]}},{"ix":104,"action":{"kind":"Undelegate","val":1,"amt":2169},"partialState":{"h":11,"t":66,"tokens":[16247,7206,6798,1138],"delegation":[15247,6206,5798,138],"delegatorTokens":9999999940132}},{"ix":105,"action":{"kind":"Delegate","val":2,"amt":3019},"partialState":{"h":11,"t":66,"tokens":[16247,7206,9817,1138],"delegation":[15247,6206,8817,138],"delegatorTokens":9999999937113}},{"ix":106,"action":{"kind":"Delegate","val":0,"amt":3209},"partialState":{"h":11,"t":66,"tokens":[19456,7206,9817,1138],"delegation":[18456,6206,8817,138],"delegatorTokens":9999999933904}},{"ix":107,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":108,"action":{"kind":"Undelegate","val":2,"amt":3037},"partialState":{"h":11,"t":66,"tokens":[19456,7206,6780,1138],"delegation":[18456,6206,5780,138],"delegatorTokens":9999999933904}},{"ix":109,"action":{"kind":"Deliver","chain":"consumer","numPackets":4},"partialState":{"h":12,"t":72,"consumerPower":[null,null,null,3632],"outstandingDowntime":[false,false,false,false]}},{"ix":110,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":111,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":112,"action":{"kind":"Deliver","chain":"consumer","numPackets":4},"partialState":{"h":12,"t":72,"consumerPower":[null,null,null,3632],"outstandingDowntime":[false,false,false,false]}},{"ix":113,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":114,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":115,"action":{"kind":"Delegate","val":0,"amt":2367},"partialState":{"h":11,"t":66,"tokens":[21823,7206,6780,1138],"delegation":[20823,6206,5780,138],"delegatorTokens":9999999931537}},{"ix":116,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":12,"t":72,"tokens":[21823,7206,6780,1138],"delegation":[20823,6206,5780,138],"delegatorTokens":9999999931537,"jailed":[1000000000000017,1000000000000017,1000000000000035,null],"status":["unbonding","unbonding","unbonding","bonded"]}},{"ix":117,"action":{"kind":"Deliver","chain":"consumer","numPackets":4},"partialState":{"h":12,"t":72,"consumerPower":[null,null,null,3632],"outstandingDowntime":[false,false,false,false]}},{"ix":118,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":119,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":120,"action":{"kind":"Delegate","val":3,"amt":4499},"partialState":{"h":12,"t":72,"tokens":[21823,7206,6780,5637],"delegation":[20823,6206,5780,4637],"delegatorTokens":9999999927038}},{"ix":121,"action":{"kind":"Undelegate","val":3,"amt":3932},"partialState":{"h":12,"t":72,"tokens":[21823,7206,6780,1705],"delegation":[20823,6206,5780,705],"delegatorTokens":9999999927038}},{"ix":122,"action":{"kind":"Delegate","val":2,"amt":2237},"partialState":{"h":12,"t":72,"tokens":[21823,7206,9017,1705],"delegation":[20823,6206,8017,705],"delegatorTokens":9999999924801}},{"ix":123,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":13,"t":78,"consumerPower":[null,null,null,1138],"outstandingDowntime":[false,false,false,false]}},{"ix":124,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":14,"t":84,"consumerPower":[null,null,null,1138],"outstandingDowntime":[false,false,false,false]}},{"ix":125,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":13,"t":78,"tokens":[21823,7206,9017,1705],"delegation":[20823,6206,8017,705],"delegatorTokens":9999999924801,"jailed":[1000000000000017,1000000000000017,1000000000000035,null],"status":["unbonding","unbonding","unbonding","bonded"]}},{"ix":126,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":14,"t":84,"tokens":[21823,7206,9017,1705],"delegation":[20823,6206,8017,705],"delegatorTokens":9999999924801,"jailed":[1000000000000017,1000000000000017,1000000000000035,null],"status":["unbonding","unbonding","unbonding","bonded"]}},{"ix":127,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":128,"action":{"kind":"Undelegate","val":3,"amt":4397},"partialState":{"h":14,"t":84,"tokens":[21823,7206,9017,1705],"delegation":[20823,6206,8017,705],"delegatorTokens":9999999924801}},{"ix":129,"action":{"kind":"Delegate","val":2,"amt":2851},"partialState":{"h":14,"t":84,"tokens":[21823,7206,11868,1705],"delegation":[20823,6206,10868,705],"delegatorTokens":9999999921950}},{"ix":130,"action":{"kind":"Deliver","chain":"provider","numPackets":4},"partialState":{"h":14,"t":84,"tokens":[21823,7206,11868,1705],"delegation":[20823,6206,10868,705],"delegatorTokens":9999999921950,"jailed":[1000000000000017,1000000000000017,1000000000000035,null],"status":["unbonding","unbonding","unbonding","bonded"]}},{"ix":131,"action":{"kind":"Undelegate","val":3,"amt":4816},"partialState":{"h":14,"t":84,"tokens":[21823,7206,11868,1705],"delegation":[20823,6206,10868,705],"delegatorTokens":9999999921950}},{"ix":132,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":133,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":15,"t":90,"consumerPower":[null,null,null,1138],"outstandingDowntime":[false,false,false,false]}},{"ix":134,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":135,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":16,"t":96,"consumerPower":[null,null,null,1138],"outstandingDowntime":[false,false,false,false]}},{"ix":136,"action":{"kind":"Deliver","chain":"provider","numPackets":2},"partialState":{"h":14,"t":84,"tokens":[21823,7206,11868,1705],"delegation":[20823,6206,10868,705],"delegatorTokens":9999999921950,"jailed":[1000000000000017,1000000000000017,1000000000000035,null],"status":["unbonding","unbonding","unbonding","bonded"]}},{"ix":137,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":17,"t":102,"consumerPower":[null,null,null,1138],"outstandingDowntime":[false,false,false,false]}},{"ix":138,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":18,"t":108,"consumerPower":[null,null,null,1138],"outstandingDowntime":[false,false,false,false]}},{"ix":139,"action":{"kind":"Undelegate","val":1,"amt":3311},"partialState":{"h":14,"t":84,"tokens":[21823,3895,11868,1705],"delegation":[20823,2895,10868,705],"delegatorTokens":9999999921950}},{"ix":140,"action":{"kind":"Deliver","chain":"consumer","numPackets":2},"partialState":{"h":18,"t":108,"consumerPower":[null,null,null,1138],"outstandingDowntime":[false,false,false,false]}},{"ix":141,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":142,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":15,"t":90,"tokens":[21823,3895,11868,1705],"delegation":[20823,2895,10868,705],"delegatorTokens":9999999923725,"jailed":[1000000000000017,1000000000000017,1000000000000035,null],"status":["unbonding","unbonding","unbonding","bonded"]}},{"ix":143,"action":{"kind":"Deliver","chain":"provider","numPackets":6},"partialState":{"h":15,"t":90,"tokens":[21823,3895,11868,1705],"delegation":[20823,2895,10868,705],"delegatorTokens":9999999923725,"jailed":[1000000000000017,1000000000000017,1000000000000035,null],"status":["unbonding","unbonding","unbonding","bonded"]}},{"ix":144,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":19,"t":114,"consumerPower":[null,null,null,1705],"outstandingDowntime":[false,false,false,false]}},{"ix":145,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":146,"action":{"kind":"Undelegate","val":2,"amt":3732},"partialState":{"h":15,"t":90,"tokens":[21823,3895,8136,1705],"delegation":[20823,2895,7136,705],"delegatorTokens":9999999923725}},{"ix":147,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":16,"t":96,"tokens":[21823,3895,8136,1705],"delegation":[20823,2895,7136,705],"delegatorTokens":9999999923725,"jailed":[1000000000000017,1000000000000017,1000000000000035,null],"status":["unbonding","unbonding","unbonding","bonded"]}},{"ix":148,"action":{"kind":"Delegate","val":0,"amt":4112},"partialState":{"h":16,"t":96,"tokens":[25935,3895,8136,1705],"delegation":[24935,2895,7136,705],"delegatorTokens":9999999919613}},{"ix":149,"action":{"kind":"Undelegate","val":0,"amt":4767},"partialState":{"h":16,"t":96,"tokens":[21168,3895,8136,1705],"delegation":[20168,2895,7136,705],"delegatorTokens":9999999919613}},{"ix":150,"action":{"kind":"Delegate","val":1,"amt":4383},"partialState":{"h":16,"t":96,"tokens":[21168,8278,8136,1705],"delegation":[20168,7278,7136,705],"delegatorTokens":9999999915230}},{"ix":151,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":20,"t":120,"consumerPower":[null,null,null,1705],"outstandingDowntime":[false,false,false,false]}},{"ix":152,"action":{"kind":"Deliver","chain":"provider","numPackets":2},"partialState":{"h":16,"t":96,"tokens":[21168,8278,8136,1705],"delegation":[20168,7278,7136,705],"delegatorTokens":9999999915230,"jailed":[1000000000000017,1000000000000017,1000000000000035,null],"status":["unbonding","unbonding","unbonding","bonded"]}},{"ix":153,"action":{"kind":"Delegate","val":3,"amt":3024},"partialState":{"h":16,"t":96,"tokens":[21168,8278,8136,4729],"delegation":[20168,7278,7136,3729],"delegatorTokens":9999999912206}},{"ix":154,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":21,"t":126,"consumerPower":[null,null,null,1705],"outstandingDowntime":[false,false,false,false]}},{"ix":155,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":156,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":17,"t":102,"tokens":[21168,8278,8136,4729],"delegation":[20168,7278,7136,3729],"delegatorTokens":9999999914869,"jailed":[1000000000000017,1000000000000017,1000000000000035,null],"status":["unbonded","unbonded","unbonding","bonded"]}},{"ix":157,"action":{"kind":"Delegate","val":2,"amt":4390},"partialState":{"h":17,"t":102,"tokens":[21168,8278,12526,4729],"delegation":[20168,7278,11526,3729],"delegatorTokens":9999999910479}},{"ix":158,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":159,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":160,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":161,"action":{"kind":"Deliver","chain":"provider","numPackets":4},"partialState":{"h":17,"t":102,"tokens":[21168,8278,12526,4729],"delegation":[20168,7278,11526,3729],"delegatorTokens":9999999910479,"jailed":[1000000000000017,1000000000000017,1000000000000035,null],"status":["unbonded","unbonded","unbonding","bonded"]}},{"ix":162,"action":{"kind":"Deliver","chain":"provider","numPackets":5},"partialState":{"h":17,"t":102,"tokens":[21168,8278,12526,4729],"delegation":[20168,7278,11526,3729],"delegatorTokens":9999999910479,"jailed":[1000000000000017,1000000000000017,1000000000000035,null],"status":["unbonded","unbonded","unbonding","bonded"]}},{"ix":163,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":164,"action":{"kind":"Deliver","chain":"consumer","numPackets":1},"partialState":{"h":21,"t":126,"consumerPower":[null,null,null,1705],"outstandingDowntime":[false,false,false,false]}},{"ix":165,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":22,"t":132,"consumerPower":[null,null,null,1705],"outstandingDowntime":[false,false,false,false]}},{"ix":166,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":167,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":23,"t":138,"consumerPower":[null,null,null,1705],"outstandingDowntime":[false,false,false,false]}},{"ix":168,"action":{"kind":"Delegate","val":1,"amt":1081},"partialState":{"h":17,"t":102,"tokens":[21168,9359,12526,4729],"delegation":[20168,8359,11526,3729],"delegatorTokens":9999999909398}},{"ix":169,"action":{"kind":"Undelegate","val":1,"amt":3271},"partialState":{"h":17,"t":102,"tokens":[21168,6088,12526,4729],"delegation":[20168,5088,11526,3729],"delegatorTokens":9999999909398}},{"ix":170,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":171,"action":{"kind":"Delegate","val":3,"amt":2614},"partialState":{"h":17,"t":102,"tokens":[21168,6088,12526,7343],"delegation":[20168,5088,11526,6343],"delegatorTokens":9999999906784}},{"ix":172,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":173,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":18,"t":108,"tokens":[21168,6088,12526,7343],"delegation":[20168,5088,11526,6343],"delegatorTokens":9999999906784,"jailed":[1000000000000017,1000000000000017,1000000000000035,null],"status":["unbonded","unbonded","unbonding","bonded"]}},{"ix":174,"action":{"kind":"Delegate","val":2,"amt":1343},"partialState":{"h":18,"t":108,"tokens":[21168,6088,13869,7343],"delegation":[20168,5088,12869,6343],"delegatorTokens":9999999905441}},{"ix":175,"action":{"kind":"Deliver","chain":"provider","numPackets":5},"partialState":{"h":18,"t":108,"tokens":[21168,6088,13869,7343],"delegation":[20168,5088,12869,6343],"delegatorTokens":9999999905441,"jailed":[1000000000000017,1000000000000017,1000000000000035,null],"status":["unbonded","unbonded","unbonding","bonded"]}},{"ix":176,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":177,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":19,"t":114,"tokens":[21168,6088,13869,7343],"delegation":[20168,5088,12869,6343],"delegatorTokens":9999999916591,"jailed":[1000000000000017,1000000000000017,1000000000000035,null],"status":["unbonded","unbonded","unbonding","bonded"]}},{"ix":178,"action":{"kind":"Deliver","chain":"consumer","numPackets":3},"partialState":{"h":23,"t":138,"consumerPower":[null,null,null,1705],"outstandingDowntime":[false,false,false,false]}},{"ix":179,"action":{"kind":"Delegate","val":1,"amt":3612},"partialState":{"h":19,"t":114,"tokens":[21168,9700,13869,7343],"delegation":[20168,8700,12869,6343],"delegatorTokens":9999999912979}},{"ix":180,"action":{"kind":"Deliver","chain":"provider","numPackets":5},"partialState":{"h":19,"t":114,"tokens":[21168,9700,13869,7343],"delegation":[20168,8700,12869,6343],"delegatorTokens":9999999912979,"jailed":[1000000000000017,1000000000000017,1000000000000035,null],"status":["unbonded","unbonded","unbonding","bonded"]}},{"ix":181,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":20,"t":120,"tokens":[21168,9700,13869,7343],"delegation":[20168,8700,12869,6343],"delegatorTokens":9999999914191,"jailed":[1000000000000017,1000000000000017,1000000000000035,null],"status":["unbonded","unbonded","unbonded","bonded"]}},{"ix":182,"action":{"kind":"Undelegate","val":3,"amt":2170},"partialState":{"h":20,"t":120,"tokens":[21168,9700,13869,5173],"delegation":[20168,8700,12869,4173],"delegatorTokens":9999999914191}},{"ix":183,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":184,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":24,"t":144,"consumerPower":[null,null,null,7343],"outstandingDowntime":[false,false,false,false]}},{"ix":185,"action":{"kind":"Deliver","chain":"provider","numPackets":6},"partialState":{"h":20,"t":120,"tokens":[21168,9700,13869,5173],"delegation":[20168,8700,12869,4173],"delegatorTokens":9999999914191,"jailed":[1000000000000017,1000000000000017,1000000000000035,null],"status":["unbonded","unbonded","unbonded","bonded"]}},{"ix":186,"action":{"kind":"Deliver","chain":"provider","numPackets":6},"partialState":{"h":20,"t":120,"tokens":[21168,9700,13869,5173],"delegation":[20168,8700,12869,4173],"delegatorTokens":9999999914191,"jailed":[1000000000000017,1000000000000017,1000000000000035,null],"status":["unbonded","unbonded","unbonded","bonded"]}},{"ix":187,"action":{"kind":"Undelegate","val":3,"amt":4437},"partialState":{"h":20,"t":120,"tokens":[21168,9700,13869,5173],"delegation":[20168,8700,12869,4173],"delegatorTokens":9999999914191}},{"ix":188,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":21,"t":126,"tokens":[21168,9700,13869,5173],"delegation":[20168,8700,12869,4173],"delegatorTokens":9999999921432,"jailed":[1000000000000017,1000000000000017,1000000000000035,null],"status":["unbonded","unbonded","unbonded","bonded"]}},{"ix":189,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":22,"t":132,"tokens":[21168,9700,13869,5173],"delegation":[20168,8700,12869,4173],"delegatorTokens":9999999929161,"jailed":[1000000000000017,1000000000000017,1000000000000035,null],"status":["unbonded","unbonded","unbonded","bonded"]}},{"ix":190,"action":{"kind":"Deliver","chain":"provider","numPackets":1},"partialState":{"h":22,"t":132,"tokens":[21168,9700,13869,5173],"delegation":[20168,8700,12869,4173],"delegatorTokens":9999999929161,"jailed":[1000000000000017,1000000000000017,1000000000000035,null],"status":["unbonded","unbonded","unbonded","bonded"]}},{"ix":191,"action":{"kind":"Undelegate","val":1,"amt":1404},"partialState":{"h":22,"t":132,"tokens":[21168,8296,13869,5173],"delegation":[20168,7296,12869,4173],"delegatorTokens":9999999929161}},{"ix":192,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":25,"t":150,"consumerPower":[null,null,null,7343],"outstandingDowntime":[false,false,false,false]}},{"ix":193,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":23,"t":138,"tokens":[21168,8296,13869,5173],"delegation":[20168,7296,12869,4173],"delegatorTokens":9999999937701,"jailed":[1000000000000017,1000000000000017,1000000000000035,null],"status":["unbonded","unbonded","unbonded","bonded"]}},{"ix":194,"action":{"kind":"Undelegate","val":2,"amt":1492},"partialState":{"h":23,"t":138,"tokens":[21168,8296,12377,5173],"delegation":[20168,7296,11377,4173],"delegatorTokens":9999999937701}},{"ix":195,"action":{"kind":"Deliver","chain":"consumer","numPackets":4},"partialState":{"h":25,"t":150,"consumerPower":[null,null,null,7343],"outstandingDowntime":[false,false,false,false]}},{"ix":196,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":197,"action":{"kind":"Undelegate","val":3,"amt":2123},"partialState":{"h":23,"t":138,"tokens":[21168,8296,12377,3050],"delegation":[20168,7296,11377,2050],"delegatorTokens":9999999937701}},{"ix":198,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":26,"t":156,"consumerPower":[null,null,null,5173],"outstandingDowntime":[false,false,false,false]}},{"ix":199,"action":{"kind":"Delegate","val":3,"amt":1551},"partialState":{"h":23,"t":138,"tokens":[21168,8296,12377,4601],"delegation":[20168,7296,11377,3601],"delegatorTokens":9999999936150}}],"events":["send_downtime_slash_request","send_downtime_slash_request","insufficient_shares","more_than_one_third_val_power_change","send_vsc_without_downtime_ack","send_double_sign_slash_request","send_double_sign_slash_request","downtime_slash_request_outstanding","send_double_sign_slash_request","send_vsc_without_downtime_ack","downtime_slash_request_outstanding","more_than_one_third_val_power_change","rebond_unval","receive_downtime_slash_request","jail","receive_downtime_slash_request","jail","send_vsc_with_downtime_ack","send_downtime_slash_request","more_than_one_third_val_power_change","rebond_unval","send_vsc_without_downtime_ack","consumer_del_val","consumer_update_val","consumer_add_val","send_vsc_without_downtime_ack","receive_double_sign_slash_request","receive_double_sign_slash_request","receive_double_sign_slash_request","receive_downtime_slash_ack","receive_downtime_slash_ack","consumer_del_val","consumer_update_val","consumer_del_val","consumer_add_val","receive_downtime_slash_request","jail","send_vsc_with_downtime_ack","send_vsc_without_downtime_ack","consumer_update_val","send_vsc_without_downtime_ack","receive_downtime_slash_ack","insufficient_shares","consumer_del_val","consumer_update_val","send_vsc_not_because_change","send_vsc_without_downtime_ack","send_vsc_without_downtime_ack","send_vsc_not_because_change","send_vsc_without_downtime_ack","consumer_send_maturation","consumer_send_maturation","consumer_update_val","send_vsc_without_downtime_ack","insufficient_shares","insufficient_shares","consumer_send_maturation","consumer_send_maturation","consumer_send_maturation","some_undels_expired_but_not_completed","complete_undel_immediate","send_vsc_not_because_change","send_vsc_without_downtime_ack","consumer_update_val","set_undel_hold_false","set_unval_hold_false","set_unval_hold_false","send_vsc_not_because_change","send_vsc_without_downtime_ack","consumer_send_maturation","consumer_send_maturation","complete_unval_in_endblock","complete_unval_in_endblock","complete_undel_in_endblock","send_vsc_without_downtime_ack","consumer_send_maturation","consumer_send_maturation","consumer_send_maturation","send_vsc_without_downtime_ack","some_undels_expired_but_not_completed","complete_undel_immediate","complete_undel_immediate","complete_undel_immediate","set_undel_hold_false","set_unval_hold_false","set_undel_hold_false","set_undel_hold_false","set_undel_hold_false","set_undel_hold_false","set_undel_hold_false","set_undel_hold_false","set_undel_hold_false","set_undel_hold_false","complete_unval_in_endblock","complete_undel_in_endblock","consumer_update_val","insufficient_shares","complete_undel_in_endblock","send_vsc_without_downtime_ack","complete_undel_in_endblock","complete_undel_in_endblock","send_vsc_not_because_change","send_vsc_without_downtime_ack","consumer_update_val"]},{"meta":{"commit":"7ffd0c04e4205cbc9caf212abfe6c59ee43153bf"},"constants":{"P":"provider","C":"consumer","UNBONDING_SECONDS_P":70,"UNBONDING_SECONDS_C":50,"TRUSTING_SECONDS":49,"NUM_VALIDATORS":4,"MAX_VALIDATORS":2,"SLASH_DOUBLESIGN":0,"SLASH_DOWNTIME":0,"JAIL_SECONDS":999999999999999,"BLOCK_SECONDS":6,"INITIAL_DELEGATOR_TOKENS":10000000000000,"DELEGATE_AMT_MIN":1000,"DELEGATE_AMT_MAX":5000,"UNDELEGATE_AMT_MIN":1000,"UNDELEGATE_AMT_MAX":5000,"ISDOWNTIME_PROBABILITY":0.5,"MAX_NUM_PACKETS_FOR_DELIVER":6},"actions":[{"ix":0,"action":{"kind":"Undelegate","val":1,"amt":1928},"partialState":{"h":1,"t":6,"tokens":[5000,2072,3000,2000],"delegation":[4000,1072,2000,1000],"delegatorTokens":10000000000000}},{"ix":1,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":2,"t":12,"tokens":[5000,2072,3000,2000],"delegation":[4000,1072,2000,1000],"delegatorTokens":10000000000000,"jailed":[null,null,null,null],"status":["bonded","unbonding","bonded","unbonded"]}},{"ix":2,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":3,"action":{"kind":"Delegate","val":3,"amt":4989},"partialState":{"h":2,"t":12,"tokens":[5000,2072,3000,6989],"delegation":[4000,1072,2000,5989],"delegatorTokens":9999999995011}},{"ix":4,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":2,"t":12,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":5,"action":{"kind":"Delegate","val":1,"amt":3122},"partialState":{"h":2,"t":12,"tokens":[5000,5194,3000,6989],"delegation":[4000,4194,2000,5989],"delegatorTokens":9999999991889}},{"ix":6,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":3,"t":18,"tokens":[5000,5194,3000,6989],"delegation":[4000,4194,2000,5989],"delegatorTokens":9999999991889,"jailed":[null,null,null,null],"status":["unbonding","bonded","unbonding","bonded"]}},{"ix":7,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":3,"t":18,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":8,"action":{"kind":"Undelegate","val":2,"amt":2341},"partialState":{"h":3,"t":18,"tokens":[5000,5194,3000,6989],"delegation":[4000,4194,2000,5989],"delegatorTokens":9999999991889}},{"ix":9,"action":{"kind":"Delegate","val":0,"amt":3442},"partialState":{"h":3,"t":18,"tokens":[8442,5194,3000,6989],"delegation":[7442,4194,2000,5989],"delegatorTokens":9999999988447}},{"ix":10,"action":{"kind":"ConsumerSlash","val":3,"infractionHeight":1,"isDowntime":true},"partialState":{"h":3,"t":18,"outstandingDowntime":[false,false,false,true]}},{"ix":11,"action":{"kind":"Deliver","chain":"consumer","numPackets":2},"partialState":{"h":3,"t":18,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,false,false,true]}},{"ix":12,"action":{"kind":"Deliver","chain":"provider","numPackets":5},"partialState":{"h":3,"t":18,"tokens":[8442,5194,3000,6989],"delegation":[7442,4194,2000,5989],"delegatorTokens":9999999988447,"jailed":[null,null,null,null],"status":["unbonding","bonded","unbonding","bonded"]}},{"ix":13,"action":{"kind":"Undelegate","val":3,"amt":3589},"partialState":{"h":3,"t":18,"tokens":[8442,5194,3000,3400],"delegation":[7442,4194,2000,2400],"delegatorTokens":9999999988447}},{"ix":14,"action":{"kind":"Deliver","chain":"consumer","numPackets":4},"partialState":{"h":3,"t":18,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,false,false,true]}},{"ix":15,"action":{"kind":"ConsumerSlash","val":3,"infractionHeight":1,"isDowntime":true},"partialState":{"h":3,"t":18,"outstandingDowntime":[false,false,false,true]}},{"ix":16,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":17,"action":{"kind":"Undelegate","val":2,"amt":4921},"partialState":{"h":3,"t":18,"tokens":[8442,5194,3000,3400],"delegation":[7442,4194,2000,2400],"delegatorTokens":9999999988447}},{"ix":18,"action":{"kind":"Deliver","chain":"provider","numPackets":2},"partialState":{"h":3,"t":18,"tokens":[8442,5194,3000,3400],"delegation":[7442,4194,2000,2400],"delegatorTokens":9999999988447,"jailed":[null,null,null,null],"status":["unbonding","bonded","unbonding","bonded"]}},{"ix":19,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":20,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":4,"t":24,"tokens":[8442,5194,3000,3400],"delegation":[7442,4194,2000,2400],"delegatorTokens":9999999988447,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonding","unbonding"]}},{"ix":21,"action":{"kind":"Undelegate","val":0,"amt":4134},"partialState":{"h":4,"t":24,"tokens":[4308,5194,3000,3400],"delegation":[3308,4194,2000,2400],"delegatorTokens":9999999988447}},{"ix":22,"action":{"kind":"Delegate","val":2,"amt":1169},"partialState":{"h":4,"t":24,"tokens":[4308,5194,4169,3400],"delegation":[3308,4194,3169,2400],"delegatorTokens":9999999987278}},{"ix":23,"action":{"kind":"ConsumerSlash","val":0,"infractionHeight":2,"isDowntime":true},"partialState":{"h":3,"t":18,"outstandingDowntime":[true,false,false,true]}},{"ix":24,"action":{"kind":"ConsumerSlash","val":2,"infractionHeight":2,"isDowntime":true},"partialState":{"h":3,"t":18,"outstandingDowntime":[true,false,true,true]}},{"ix":25,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":4,"t":24,"consumerPower":[5000,null,3000,null],"outstandingDowntime":[true,false,true,true]}},{"ix":26,"action":{"kind":"Deliver","chain":"consumer","numPackets":2},"partialState":{"h":4,"t":24,"consumerPower":[5000,null,3000,null],"outstandingDowntime":[true,false,true,true]}},{"ix":27,"action":{"kind":"Delegate","val":3,"amt":1193},"partialState":{"h":4,"t":24,"tokens":[4308,5194,4169,4593],"delegation":[3308,4194,3169,3593],"delegatorTokens":9999999986085}},{"ix":28,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":29,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":30,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":5,"t":30,"tokens":[4308,5194,4169,4593],"delegation":[3308,4194,3169,3593],"delegatorTokens":9999999986085,"jailed":[null,null,null,null],"status":["unbonding","bonded","unbonding","bonded"]}},{"ix":31,"action":{"kind":"Delegate","val":0,"amt":1650},"partialState":{"h":5,"t":30,"tokens":[5958,5194,4169,4593],"delegation":[4958,4194,3169,3593],"delegatorTokens":9999999984435}},{"ix":32,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":33,"action":{"kind":"Deliver","chain":"consumer","numPackets":3},"partialState":{"h":4,"t":24,"consumerPower":[5000,null,3000,null],"outstandingDowntime":[true,false,true,true]}},{"ix":34,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":35,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":36,"action":{"kind":"Undelegate","val":1,"amt":1439},"partialState":{"h":5,"t":30,"tokens":[5958,3755,4169,4593],"delegation":[4958,2755,3169,3593],"delegatorTokens":9999999984435}},{"ix":37,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":6,"t":36,"tokens":[5958,3755,4169,4593],"delegation":[4958,2755,3169,3593],"delegatorTokens":9999999984435,"jailed":[null,null,null,null],"status":["bonded","unbonding","unbonding","bonded"]}},{"ix":38,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":39,"action":{"kind":"Deliver","chain":"provider","numPackets":5},"partialState":{"h":6,"t":36,"tokens":[5958,3755,4169,4593],"delegation":[4958,2755,3169,3593],"delegatorTokens":9999999984435,"jailed":[null,null,null,null],"status":["bonded","unbonding","unbonding","bonded"]}},{"ix":40,"action":{"kind":"Deliver","chain":"provider","numPackets":6},"partialState":{"h":6,"t":36,"tokens":[5958,3755,4169,4593],"delegation":[4958,2755,3169,3593],"delegatorTokens":9999999984435,"jailed":[null,null,null,null],"status":["bonded","unbonding","unbonding","bonded"]}},{"ix":41,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":42,"action":{"kind":"Delegate","val":2,"amt":2627},"partialState":{"h":6,"t":36,"tokens":[5958,3755,6796,4593],"delegation":[4958,2755,5796,3593],"delegatorTokens":9999999981808}},{"ix":43,"action":{"kind":"Undelegate","val":0,"amt":1874},"partialState":{"h":6,"t":36,"tokens":[4084,3755,6796,4593],"delegation":[3084,2755,5796,3593],"delegatorTokens":9999999981808}},{"ix":44,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":45,"action":{"kind":"Delegate","val":1,"amt":1974},"partialState":{"h":6,"t":36,"tokens":[4084,5729,6796,4593],"delegation":[3084,4729,5796,3593],"delegatorTokens":9999999979834}},{"ix":46,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":5,"t":30,"consumerPower":[8442,5194,null,null],"outstandingDowntime":[true,false,true,true]}},{"ix":47,"action":{"kind":"Deliver","chain":"consumer","numPackets":3},"partialState":{"h":5,"t":30,"consumerPower":[8442,5194,null,null],"outstandingDowntime":[true,false,true,true]}},{"ix":48,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":6,"t":36,"consumerPower":[null,5194,null,4593],"outstandingDowntime":[true,false,true,true]}},{"ix":49,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":7,"t":42,"consumerPower":[null,5194,null,4593],"outstandingDowntime":[true,false,true,true]}},{"ix":50,"action":{"kind":"Delegate","val":3,"amt":4990},"partialState":{"h":6,"t":36,"tokens":[4084,5729,6796,9583],"delegation":[3084,4729,5796,8583],"delegatorTokens":9999999974844}},{"ix":51,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":52,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":7,"t":42,"tokens":[4084,5729,6796,9583],"delegation":[3084,4729,5796,8583],"delegatorTokens":9999999974844,"jailed":[null,null,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":53,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":8,"t":48,"tokens":[4084,5729,6796,9583],"delegation":[3084,4729,5796,8583],"delegatorTokens":9999999974844,"jailed":[null,null,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":54,"action":{"kind":"Undelegate","val":1,"amt":1503},"partialState":{"h":8,"t":48,"tokens":[4084,4226,6796,9583],"delegation":[3084,3226,5796,8583],"delegatorTokens":9999999974844}},{"ix":55,"action":{"kind":"Undelegate","val":0,"amt":2502},"partialState":{"h":8,"t":48,"tokens":[1582,4226,6796,9583],"delegation":[582,3226,5796,8583],"delegatorTokens":9999999974844}},{"ix":56,"action":{"kind":"Deliver","chain":"consumer","numPackets":3},"partialState":{"h":7,"t":42,"consumerPower":[null,5194,null,4593],"outstandingDowntime":[true,false,true,true]}},{"ix":57,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":58,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":9,"t":54,"tokens":[1582,4226,6796,9583],"delegation":[582,3226,5796,8583],"delegatorTokens":9999999974844,"jailed":[null,null,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":59,"action":{"kind":"Undelegate","val":2,"amt":4451},"partialState":{"h":9,"t":54,"tokens":[1582,4226,2345,9583],"delegation":[582,3226,1345,8583],"delegatorTokens":9999999974844}},{"ix":60,"action":{"kind":"Undelegate","val":3,"amt":1866},"partialState":{"h":9,"t":54,"tokens":[1582,4226,2345,7717],"delegation":[582,3226,1345,6717],"delegatorTokens":9999999974844}},{"ix":61,"action":{"kind":"Deliver","chain":"provider","numPackets":6},"partialState":{"h":9,"t":54,"tokens":[1582,4226,2345,7717],"delegation":[582,3226,1345,6717],"delegatorTokens":9999999974844,"jailed":[null,null,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":62,"action":{"kind":"Deliver","chain":"consumer","numPackets":6},"partialState":{"h":7,"t":42,"consumerPower":[null,5194,null,4593],"outstandingDowntime":[true,false,true,true]}},{"ix":63,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":64,"action":{"kind":"Deliver","chain":"consumer","numPackets":1},"partialState":{"h":7,"t":42,"consumerPower":[null,5194,null,4593],"outstandingDowntime":[true,false,true,true]}},{"ix":65,"action":{"kind":"Deliver","chain":"consumer","numPackets":5},"partialState":{"h":7,"t":42,"consumerPower":[null,5194,null,4593],"outstandingDowntime":[true,false,true,true]}},{"ix":66,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":8,"t":48,"consumerPower":[null,null,6796,9583],"outstandingDowntime":[true,false,true,true]}},{"ix":67,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":68,"action":{"kind":"Deliver","chain":"provider","numPackets":1},"partialState":{"h":9,"t":54,"tokens":[1582,4226,2345,7717],"delegation":[582,3226,1345,6717],"delegatorTokens":9999999974844,"jailed":[null,null,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":69,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":10,"t":60,"tokens":[1582,4226,2345,7717],"delegation":[582,3226,1345,6717],"delegatorTokens":9999999974844,"jailed":[1000000000000053,null,1000000000000053,1000000000000053],"status":["unbonding","bonded","unbonding","bonded"]}},{"ix":70,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":71,"action":{"kind":"Deliver","chain":"consumer","numPackets":4},"partialState":{"h":8,"t":48,"consumerPower":[null,null,6796,9583],"outstandingDowntime":[true,false,true,true]}},{"ix":72,"action":{"kind":"Deliver","chain":"consumer","numPackets":4},"partialState":{"h":8,"t":48,"consumerPower":[null,null,6796,9583],"outstandingDowntime":[true,false,true,true]}},{"ix":73,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":74,"action":{"kind":"Undelegate","val":3,"amt":1252},"partialState":{"h":10,"t":60,"tokens":[1582,4226,2345,6465],"delegation":[582,3226,1345,5465],"delegatorTokens":9999999974844}},{"ix":75,"action":{"kind":"Delegate","val":2,"amt":3312},"partialState":{"h":10,"t":60,"tokens":[1582,4226,5657,6465],"delegation":[582,3226,4657,5465],"delegatorTokens":9999999971532}},{"ix":76,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":9,"t":54,"consumerPower":[null,null,6796,9583],"outstandingDowntime":[true,false,true,true]}},{"ix":77,"action":{"kind":"Deliver","chain":"provider","numPackets":3},"partialState":{"h":10,"t":60,"tokens":[1582,4226,5657,6465],"delegation":[582,3226,4657,5465],"delegatorTokens":9999999971532,"jailed":[1000000000000053,null,1000000000000053,1000000000000053],"status":["unbonding","bonded","unbonding","bonded"]}},{"ix":78,"action":{"kind":"Undelegate","val":2,"amt":2169},"partialState":{"h":10,"t":60,"tokens":[1582,4226,3488,6465],"delegation":[582,3226,2488,5465],"delegatorTokens":9999999971532}},{"ix":79,"action":{"kind":"Undelegate","val":0,"amt":1445},"partialState":{"h":10,"t":60,"tokens":[1582,4226,3488,6465],"delegation":[582,3226,2488,5465],"delegatorTokens":9999999971532}},{"ix":80,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":81,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":10,"t":60,"consumerPower":[null,null,6796,9583],"outstandingDowntime":[true,false,true,true]}},{"ix":82,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":83,"action":{"kind":"Undelegate","val":1,"amt":3586},"partialState":{"h":10,"t":60,"tokens":[1582,4226,3488,6465],"delegation":[582,3226,2488,5465],"delegatorTokens":9999999971532}},{"ix":84,"action":{"kind":"Deliver","chain":"provider","numPackets":6},"partialState":{"h":10,"t":60,"tokens":[1582,4226,3488,6465],"delegation":[582,3226,2488,5465],"delegatorTokens":9999999971532,"jailed":[1000000000000053,null,1000000000000053,1000000000000053],"status":["unbonding","bonded","unbonding","bonded"]}},{"ix":85,"action":{"kind":"Undelegate","val":0,"amt":4713},"partialState":{"h":10,"t":60,"tokens":[1582,4226,3488,6465],"delegation":[582,3226,2488,5465],"delegatorTokens":9999999971532}},{"ix":86,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":87,"action":{"kind":"Deliver","chain":"provider","numPackets":5},"partialState":{"h":10,"t":60,"tokens":[1582,4226,3488,6465],"delegation":[582,3226,2488,5465],"delegatorTokens":9999999971532,"jailed":[1000000000000053,null,1000000000000053,1000000000000053],"status":["unbonding","bonded","unbonding","bonded"]}},{"ix":88,"action":{"kind":"Delegate","val":0,"amt":3023},"partialState":{"h":10,"t":60,"tokens":[4605,4226,3488,6465],"delegation":[3605,3226,2488,5465],"delegatorTokens":9999999968509}},{"ix":89,"action":{"kind":"Delegate","val":0,"amt":3043},"partialState":{"h":10,"t":60,"tokens":[7648,4226,3488,6465],"delegation":[6648,3226,2488,5465],"delegatorTokens":9999999965466}},{"ix":90,"action":{"kind":"Delegate","val":1,"amt":1273},"partialState":{"h":10,"t":60,"tokens":[7648,5499,3488,6465],"delegation":[6648,4499,2488,5465],"delegatorTokens":9999999964193}},{"ix":91,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":11,"t":66,"tokens":[7648,5499,3488,6465],"delegation":[6648,4499,2488,5465],"delegatorTokens":9999999964193,"jailed":[1000000000000053,null,1000000000000053,1000000000000053],"status":["unbonding","bonded","unbonding","unbonding"]}},{"ix":92,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":11,"t":66,"consumerPower":[null,null,6796,9583],"outstandingDowntime":[true,false,true,true]}},{"ix":93,"action":{"kind":"Undelegate","val":3,"amt":1663},"partialState":{"h":11,"t":66,"tokens":[7648,5499,3488,4802],"delegation":[6648,4499,2488,3802],"delegatorTokens":9999999964193}},{"ix":94,"action":{"kind":"Undelegate","val":0,"amt":3971},"partialState":{"h":11,"t":66,"tokens":[3677,5499,3488,4802],"delegation":[2677,4499,2488,3802],"delegatorTokens":9999999964193}},{"ix":95,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":96,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":97,"action":{"kind":"Undelegate","val":0,"amt":3622},"partialState":{"h":11,"t":66,"tokens":[3677,5499,3488,4802],"delegation":[2677,4499,2488,3802],"delegatorTokens":9999999964193}},{"ix":98,"action":{"kind":"Delegate","val":0,"amt":1883},"partialState":{"h":11,"t":66,"tokens":[5560,5499,3488,4802],"delegation":[4560,4499,2488,3802],"delegatorTokens":9999999962310}},{"ix":99,"action":{"kind":"Deliver","chain":"consumer","numPackets":4},"partialState":{"h":11,"t":66,"consumerPower":[null,null,6796,9583],"outstandingDowntime":[false,false,false,false]}},{"ix":100,"action":{"kind":"Delegate","val":0,"amt":2446},"partialState":{"h":11,"t":66,"tokens":[8006,5499,3488,4802],"delegation":[7006,4499,2488,3802],"delegatorTokens":9999999959864}},{"ix":101,"action":{"kind":"Deliver","chain":"provider","numPackets":2},"partialState":{"h":11,"t":66,"tokens":[8006,5499,3488,4802],"delegation":[7006,4499,2488,3802],"delegatorTokens":9999999959864,"jailed":[1000000000000053,null,1000000000000053,1000000000000053],"status":["unbonding","bonded","unbonding","unbonding"]}},{"ix":102,"action":{"kind":"Undelegate","val":3,"amt":1370},"partialState":{"h":11,"t":66,"tokens":[8006,5499,3488,3432],"delegation":[7006,4499,2488,2432],"delegatorTokens":9999999959864}},{"ix":103,"action":{"kind":"Deliver","chain":"provider","numPackets":1},"partialState":{"h":11,"t":66,"tokens":[8006,5499,3488,3432],"delegation":[7006,4499,2488,2432],"delegatorTokens":9999999959864,"jailed":[1000000000000053,null,1000000000000053,1000000000000053],"status":["unbonding","bonded","unbonding","unbonding"]}},{"ix":104,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":105,"action":{"kind":"Undelegate","val":3,"amt":1470},"partialState":{"h":11,"t":66,"tokens":[8006,5499,3488,1962],"delegation":[7006,4499,2488,962],"delegatorTokens":9999999959864}},{"ix":106,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":107,"action":{"kind":"Undelegate","val":0,"amt":1379},"partialState":{"h":11,"t":66,"tokens":[6627,5499,3488,1962],"delegation":[5627,4499,2488,962],"delegatorTokens":9999999959864}},{"ix":108,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":12,"t":72,"tokens":[6627,5499,3488,1962],"delegation":[5627,4499,2488,962],"delegatorTokens":9999999959864,"jailed":[1000000000000053,null,1000000000000053,1000000000000053],"status":["unbonding","bonded","unbonding","unbonding"]}},{"ix":109,"action":{"kind":"Deliver","chain":"provider","numPackets":6},"partialState":{"h":12,"t":72,"tokens":[6627,5499,3488,1962],"delegation":[5627,4499,2488,962],"delegatorTokens":9999999959864,"jailed":[1000000000000053,null,1000000000000053,1000000000000053],"status":["unbonding","bonded","unbonding","unbonding"]}},{"ix":110,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":111,"action":{"kind":"Deliver","chain":"consumer","numPackets":3},"partialState":{"h":11,"t":66,"consumerPower":[null,null,6796,9583],"outstandingDowntime":[false,false,false,false]}},{"ix":112,"action":{"kind":"Deliver","chain":"provider","numPackets":4},"partialState":{"h":12,"t":72,"tokens":[6627,5499,3488,1962],"delegation":[5627,4499,2488,962],"delegatorTokens":9999999959864,"jailed":[1000000000000053,null,1000000000000053,1000000000000053],"status":["unbonding","bonded","unbonding","unbonding"]}},{"ix":113,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":114,"action":{"kind":"Deliver","chain":"provider","numPackets":1},"partialState":{"h":12,"t":72,"tokens":[6627,5499,3488,1962],"delegation":[5627,4499,2488,962],"delegatorTokens":9999999959864,"jailed":[1000000000000053,null,1000000000000053,1000000000000053],"status":["unbonding","bonded","unbonding","unbonding"]}},{"ix":115,"action":{"kind":"Deliver","chain":"consumer","numPackets":5},"partialState":{"h":11,"t":66,"consumerPower":[null,null,6796,9583],"outstandingDowntime":[false,false,false,false]}},{"ix":116,"action":{"kind":"Deliver","chain":"provider","numPackets":4},"partialState":{"h":12,"t":72,"tokens":[6627,5499,3488,1962],"delegation":[5627,4499,2488,962],"delegatorTokens":9999999959864,"jailed":[1000000000000053,null,1000000000000053,1000000000000053],"status":["unbonding","bonded","unbonding","unbonding"]}},{"ix":117,"action":{"kind":"Undelegate","val":1,"amt":4932},"partialState":{"h":12,"t":72,"tokens":[6627,5499,3488,1962],"delegation":[5627,4499,2488,962],"delegatorTokens":9999999959864}},{"ix":118,"action":{"kind":"Delegate","val":0,"amt":3885},"partialState":{"h":12,"t":72,"tokens":[10512,5499,3488,1962],"delegation":[9512,4499,2488,962],"delegatorTokens":9999999955979}},{"ix":119,"action":{"kind":"Delegate","val":2,"amt":1727},"partialState":{"h":12,"t":72,"tokens":[10512,5499,5215,1962],"delegation":[9512,4499,4215,962],"delegatorTokens":9999999954252}},{"ix":120,"action":{"kind":"Delegate","val":1,"amt":4170},"partialState":{"h":12,"t":72,"tokens":[10512,9669,5215,1962],"delegation":[9512,8669,4215,962],"delegatorTokens":9999999950082}},{"ix":121,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":12,"t":72,"consumerPower":[null,5499,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":122,"action":{"kind":"Undelegate","val":0,"amt":3630},"partialState":{"h":12,"t":72,"tokens":[6882,9669,5215,1962],"delegation":[5882,8669,4215,962],"delegatorTokens":9999999950082}},{"ix":123,"action":{"kind":"Deliver","chain":"consumer","numPackets":1},"partialState":{"h":12,"t":72,"consumerPower":[null,5499,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":124,"action":{"kind":"Undelegate","val":1,"amt":2389},"partialState":{"h":12,"t":72,"tokens":[6882,7280,5215,1962],"delegation":[5882,6280,4215,962],"delegatorTokens":9999999950082}},{"ix":125,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":126,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":13,"t":78,"consumerPower":[null,5499,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":127,"action":{"kind":"Delegate","val":3,"amt":2576},"partialState":{"h":12,"t":72,"tokens":[6882,7280,5215,4538],"delegation":[5882,6280,4215,3538],"delegatorTokens":9999999947506}},{"ix":128,"action":{"kind":"Delegate","val":2,"amt":4023},"partialState":{"h":12,"t":72,"tokens":[6882,7280,9238,4538],"delegation":[5882,6280,8238,3538],"delegatorTokens":9999999943483}},{"ix":129,"action":{"kind":"Undelegate","val":2,"amt":1826},"partialState":{"h":12,"t":72,"tokens":[6882,7280,7412,4538],"delegation":[5882,6280,6412,3538],"delegatorTokens":9999999943483}},{"ix":130,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":14,"t":84,"consumerPower":[null,5499,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":131,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":15,"t":90,"consumerPower":[null,5499,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":132,"action":{"kind":"Undelegate","val":0,"amt":4828},"partialState":{"h":12,"t":72,"tokens":[2054,7280,7412,4538],"delegation":[1054,6280,6412,3538],"delegatorTokens":9999999943483}},{"ix":133,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":134,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":16,"t":96,"consumerPower":[null,5499,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":135,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":13,"t":78,"tokens":[2054,7280,7412,4538],"delegation":[1054,6280,6412,3538],"delegatorTokens":9999999943483,"jailed":[1000000000000053,null,1000000000000053,1000000000000053],"status":["unbonding","bonded","unbonding","unbonding"]}},{"ix":136,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":14,"t":84,"tokens":[2054,7280,7412,4538],"delegation":[1054,6280,6412,3538],"delegatorTokens":9999999943483,"jailed":[1000000000000053,null,1000000000000053,1000000000000053],"status":["unbonding","bonded","unbonding","unbonding"]}},{"ix":137,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":17,"t":102,"consumerPower":[null,5499,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":138,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":139,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":140,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":15,"t":90,"tokens":[2054,7280,7412,4538],"delegation":[1054,6280,6412,3538],"delegatorTokens":9999999943483,"jailed":[1000000000000053,null,1000000000000053,1000000000000053],"status":["unbonding","bonded","unbonding","unbonding"]}},{"ix":141,"action":{"kind":"Delegate","val":0,"amt":2366},"partialState":{"h":15,"t":90,"tokens":[4420,7280,7412,4538],"delegation":[3420,6280,6412,3538],"delegatorTokens":9999999941117}},{"ix":142,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":18,"t":108,"consumerPower":[null,5499,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":143,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":19,"t":114,"consumerPower":[null,5499,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":144,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":16,"t":96,"tokens":[4420,7280,7412,4538],"delegation":[3420,6280,6412,3538],"delegatorTokens":9999999941117,"jailed":[1000000000000053,null,1000000000000053,1000000000000053],"status":["unbonding","bonded","unbonding","unbonding"]}},{"ix":145,"action":{"kind":"Delegate","val":0,"amt":4639},"partialState":{"h":16,"t":96,"tokens":[9059,7280,7412,4538],"delegation":[8059,6280,6412,3538],"delegatorTokens":9999999936478}},{"ix":146,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":147,"action":{"kind":"Undelegate","val":1,"amt":1535},"partialState":{"h":16,"t":96,"tokens":[9059,5745,7412,4538],"delegation":[8059,4745,6412,3538],"delegatorTokens":9999999936478}},{"ix":148,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":149,"action":{"kind":"Delegate","val":3,"amt":1721},"partialState":{"h":16,"t":96,"tokens":[9059,5745,7412,6259],"delegation":[8059,4745,6412,5259],"delegatorTokens":9999999934757}},{"ix":150,"action":{"kind":"Delegate","val":0,"amt":1876},"partialState":{"h":16,"t":96,"tokens":[10935,5745,7412,6259],"delegation":[9935,4745,6412,5259],"delegatorTokens":9999999932881}},{"ix":151,"action":{"kind":"Undelegate","val":2,"amt":4547},"partialState":{"h":16,"t":96,"tokens":[10935,5745,2865,6259],"delegation":[9935,4745,1865,5259],"delegatorTokens":9999999932881}},{"ix":152,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":17,"t":102,"tokens":[10935,5745,2865,6259],"delegation":[9935,4745,1865,5259],"delegatorTokens":9999999932881,"jailed":[1000000000000053,null,1000000000000053,1000000000000053],"status":["unbonding","bonded","unbonding","unbonding"]}},{"ix":153,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":20,"t":120,"consumerPower":[null,5499,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":154,"action":{"kind":"Deliver","chain":"consumer","numPackets":4},"partialState":{"h":20,"t":120,"consumerPower":[null,5499,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":155,"action":{"kind":"Undelegate","val":1,"amt":1464},"partialState":{"h":17,"t":102,"tokens":[10935,4281,2865,6259],"delegation":[9935,3281,1865,5259],"delegatorTokens":9999999932881}},{"ix":156,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":157,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":158,"action":{"kind":"Deliver","chain":"provider","numPackets":2},"partialState":{"h":17,"t":102,"tokens":[10935,4281,2865,6259],"delegation":[9935,3281,1865,5259],"delegatorTokens":9999999932881,"jailed":[1000000000000053,null,1000000000000053,1000000000000053],"status":["unbonding","bonded","unbonding","unbonding"]}},{"ix":159,"action":{"kind":"Undelegate","val":3,"amt":1122},"partialState":{"h":17,"t":102,"tokens":[10935,4281,2865,5137],"delegation":[9935,3281,1865,4137],"delegatorTokens":9999999932881}},{"ix":160,"action":{"kind":"Delegate","val":2,"amt":1371},"partialState":{"h":17,"t":102,"tokens":[10935,4281,4236,5137],"delegation":[9935,3281,3236,4137],"delegatorTokens":9999999931510}},{"ix":161,"action":{"kind":"Delegate","val":2,"amt":1581},"partialState":{"h":17,"t":102,"tokens":[10935,4281,5817,5137],"delegation":[9935,3281,4817,4137],"delegatorTokens":9999999929929}},{"ix":162,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":21,"t":126,"consumerPower":[null,7280,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":163,"action":{"kind":"Deliver","chain":"provider","numPackets":5},"partialState":{"h":17,"t":102,"tokens":[10935,4281,5817,5137],"delegation":[9935,3281,4817,4137],"delegatorTokens":9999999929929,"jailed":[1000000000000053,null,1000000000000053,1000000000000053],"status":["unbonding","bonded","unbonding","unbonding"]}},{"ix":164,"action":{"kind":"Delegate","val":0,"amt":2985},"partialState":{"h":17,"t":102,"tokens":[13920,4281,5817,5137],"delegation":[12920,3281,4817,4137],"delegatorTokens":9999999926944}},{"ix":165,"action":{"kind":"Delegate","val":0,"amt":3654},"partialState":{"h":17,"t":102,"tokens":[17574,4281,5817,5137],"delegation":[16574,3281,4817,4137],"delegatorTokens":9999999923290}},{"ix":166,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":22,"t":132,"consumerPower":[null,7280,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":167,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":18,"t":108,"tokens":[17574,4281,5817,5137],"delegation":[16574,3281,4817,4137],"delegatorTokens":9999999934380,"jailed":[1000000000000053,null,1000000000000053,1000000000000053],"status":["unbonding","bonded","unbonding","unbonding"]}},{"ix":168,"action":{"kind":"Delegate","val":2,"amt":2704},"partialState":{"h":18,"t":108,"tokens":[17574,4281,8521,5137],"delegation":[16574,3281,7521,4137],"delegatorTokens":9999999931676}},{"ix":169,"action":{"kind":"Deliver","chain":"provider","numPackets":6},"partialState":{"h":18,"t":108,"tokens":[17574,4281,8521,5137],"delegation":[16574,3281,7521,4137],"delegatorTokens":9999999931676,"jailed":[1000000000000053,null,1000000000000053,1000000000000053],"status":["unbonding","bonded","unbonding","unbonding"]}},{"ix":170,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":19,"t":114,"tokens":[17574,4281,8521,5137],"delegation":[16574,3281,7521,4137],"delegatorTokens":9999999933550,"jailed":[1000000000000053,null,1000000000000053,1000000000000053],"status":["unbonded","bonded","unbonding","unbonding"]}},{"ix":171,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":20,"t":120,"tokens":[17574,4281,8521,5137],"delegation":[16574,3281,7521,4137],"delegatorTokens":9999999933550,"jailed":[1000000000000053,null,1000000000000053,1000000000000053],"status":["unbonded","bonded","unbonding","unbonding"]}},{"ix":172,"action":{"kind":"Delegate","val":2,"amt":1385},"partialState":{"h":20,"t":120,"tokens":[17574,4281,9906,5137],"delegation":[16574,3281,8906,4137],"delegatorTokens":9999999932165}},{"ix":173,"action":{"kind":"Deliver","chain":"consumer","numPackets":3},"partialState":{"h":22,"t":132,"consumerPower":[null,7280,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":174,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":175,"action":{"kind":"Deliver","chain":"provider","numPackets":4},"partialState":{"h":20,"t":120,"tokens":[17574,4281,9906,5137],"delegation":[16574,3281,8906,4137],"delegatorTokens":9999999932165,"jailed":[1000000000000053,null,1000000000000053,1000000000000053],"status":["unbonded","bonded","unbonding","unbonding"]}},{"ix":176,"action":{"kind":"Deliver","chain":"provider","numPackets":3},"partialState":{"h":20,"t":120,"tokens":[17574,4281,9906,5137],"delegation":[16574,3281,8906,4137],"delegatorTokens":9999999932165,"jailed":[1000000000000053,null,1000000000000053,1000000000000053],"status":["unbonded","bonded","unbonding","unbonding"]}},{"ix":177,"action":{"kind":"Undelegate","val":2,"amt":3812},"partialState":{"h":20,"t":120,"tokens":[17574,4281,6094,5137],"delegation":[16574,3281,5094,4137],"delegatorTokens":9999999932165}},{"ix":178,"action":{"kind":"Undelegate","val":0,"amt":3710},"partialState":{"h":20,"t":120,"tokens":[13864,4281,6094,5137],"delegation":[12864,3281,5094,4137],"delegatorTokens":9999999932165}},{"ix":179,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":21,"t":126,"tokens":[13864,4281,6094,5137],"delegation":[12864,3281,5094,4137],"delegatorTokens":9999999936170,"jailed":[1000000000000053,null,1000000000000053,1000000000000053],"status":["unbonded","bonded","unbonding","unbonding"]}},{"ix":180,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":181,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":182,"action":{"kind":"Undelegate","val":0,"amt":2211},"partialState":{"h":21,"t":126,"tokens":[11653,4281,6094,5137],"delegation":[10653,3281,5094,4137],"delegatorTokens":9999999936170}},{"ix":183,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":22,"t":132,"tokens":[11653,4281,6094,5137],"delegation":[10653,3281,5094,4137],"delegatorTokens":9999999942487,"jailed":[1000000000000053,null,1000000000000053,1000000000000053],"status":["unbonded","bonded","unbonded","unbonding"]}},{"ix":184,"action":{"kind":"Deliver","chain":"consumer","numPackets":4},"partialState":{"h":22,"t":132,"consumerPower":[null,7280,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":185,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":186,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":187,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":188,"action":{"kind":"Deliver","chain":"provider","numPackets":2},"partialState":{"h":22,"t":132,"tokens":[11653,4281,6094,5137],"delegation":[10653,3281,5094,4137],"delegatorTokens":9999999942487,"jailed":[1000000000000053,null,1000000000000053,1000000000000053],"status":["unbonded","bonded","unbonded","unbonding"]}},{"ix":189,"action":{"kind":"Delegate","val":1,"amt":4700},"partialState":{"h":22,"t":132,"tokens":[11653,8981,6094,5137],"delegation":[10653,7981,5094,4137],"delegatorTokens":9999999937787}},{"ix":190,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":191,"action":{"kind":"Deliver","chain":"provider","numPackets":3},"partialState":{"h":22,"t":132,"tokens":[11653,8981,6094,5137],"delegation":[10653,7981,5094,4137],"delegatorTokens":9999999937787,"jailed":[1000000000000053,null,1000000000000053,1000000000000053],"status":["unbonded","bonded","unbonded","unbonding"]}},{"ix":192,"action":{"kind":"Undelegate","val":2,"amt":4751},"partialState":{"h":22,"t":132,"tokens":[11653,8981,1343,5137],"delegation":[10653,7981,343,4137],"delegatorTokens":9999999937787}},{"ix":193,"action":{"kind":"Delegate","val":2,"amt":3171},"partialState":{"h":22,"t":132,"tokens":[11653,8981,4514,5137],"delegation":[10653,7981,3514,4137],"delegatorTokens":9999999934616}},{"ix":194,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":23,"t":138,"tokens":[11653,8981,4514,5137],"delegation":[10653,7981,3514,4137],"delegatorTokens":9999999938037,"jailed":[1000000000000053,null,1000000000000053,1000000000000053],"status":["unbonded","bonded","unbonded","unbonded"]}},{"ix":195,"action":{"kind":"Undelegate","val":3,"amt":2535},"partialState":{"h":23,"t":138,"tokens":[11653,8981,4514,2602],"delegation":[10653,7981,3514,1602],"delegatorTokens":9999999938037}},{"ix":196,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":197,"action":{"kind":"Undelegate","val":1,"amt":4391},"partialState":{"h":23,"t":138,"tokens":[11653,4590,4514,2602],"delegation":[10653,3590,3514,1602],"delegatorTokens":9999999938037}},{"ix":198,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":23,"t":138,"consumerPower":[null,4281,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":199,"action":{"kind":"Delegate","val":1,"amt":4334},"partialState":{"h":23,"t":138,"tokens":[11653,8924,4514,2602],"delegation":[10653,7924,3514,1602],"delegatorTokens":9999999933703}}],"events":["more_than_one_third_val_power_change","send_vsc_without_downtime_ack","more_than_one_third_val_power_change","rebond_unval","send_vsc_without_downtime_ack","insufficient_shares","send_downtime_slash_request","downtime_slash_request_outstanding","insufficient_shares","more_than_one_third_val_power_change","rebond_unval","send_vsc_without_downtime_ack","send_downtime_slash_request","send_downtime_slash_request","consumer_del_val","consumer_add_val","more_than_one_third_val_power_change","rebond_unval","send_vsc_without_downtime_ack","more_than_one_third_val_power_change","rebond_unval","send_vsc_without_downtime_ack","consumer_update_val","consumer_add_val","consumer_del_val","consumer_del_val","consumer_del_val","consumer_add_val","more_than_one_third_val_power_change","rebond_unval","send_vsc_without_downtime_ack","send_vsc_not_because_change","send_vsc_without_downtime_ack","consumer_del_val","consumer_del_val","consumer_add_val","consumer_update_val","more_than_one_third_val_power_change","rebond_unval","receive_downtime_slash_request","jail","receive_downtime_slash_request","jail","receive_downtime_slash_request","jail","send_vsc_with_downtime_ack","insufficient_shares","insufficient_shares","insufficient_shares","send_vsc_without_downtime_ack","insufficient_shares","receive_downtime_slash_ack","receive_downtime_slash_ack","receive_downtime_slash_ack","send_vsc_not_because_change","send_vsc_without_downtime_ack","insufficient_shares","consumer_add_val","consumer_del_val","consumer_del_val","consumer_send_maturation","consumer_send_maturation","consumer_send_maturation","consumer_send_maturation","send_vsc_without_downtime_ack","some_undels_expired_but_not_completed","consumer_send_maturation","consumer_send_maturation","consumer_send_maturation","some_undels_expired_but_not_completed","some_undels_expired_but_not_completed","send_vsc_without_downtime_ack","consumer_send_maturation","consumer_send_maturation","consumer_update_val","some_undels_expired_but_not_completed","complete_undel_immediate","complete_undel_immediate","complete_undel_immediate","complete_undel_immediate","set_undel_hold_false","set_unval_hold_false","set_undel_hold_false","set_undel_hold_false","send_vsc_without_downtime_ack","complete_unval_in_endblock","complete_undel_in_endblock","set_undel_hold_false","set_undel_hold_false","set_unval_hold_false","set_undel_hold_false","set_undel_hold_false","set_unval_hold_false","complete_undel_in_endblock","send_vsc_not_because_change","send_vsc_without_downtime_ack","complete_unval_in_endblock","complete_undel_in_endblock","send_vsc_not_because_change","send_vsc_without_downtime_ack","complete_unval_in_endblock","complete_undel_in_endblock","send_vsc_without_downtime_ack","consumer_update_val"]},{"meta":{"commit":"7ffd0c04e4205cbc9caf212abfe6c59ee43153bf"},"constants":{"P":"provider","C":"consumer","UNBONDING_SECONDS_P":70,"UNBONDING_SECONDS_C":50,"TRUSTING_SECONDS":49,"NUM_VALIDATORS":4,"MAX_VALIDATORS":2,"SLASH_DOUBLESIGN":0,"SLASH_DOWNTIME":0,"JAIL_SECONDS":999999999999999,"BLOCK_SECONDS":6,"INITIAL_DELEGATOR_TOKENS":10000000000000,"DELEGATE_AMT_MIN":1000,"DELEGATE_AMT_MAX":5000,"UNDELEGATE_AMT_MIN":1000,"UNDELEGATE_AMT_MAX":5000,"ISDOWNTIME_PROBABILITY":0.5,"MAX_NUM_PACKETS_FOR_DELIVER":6},"actions":[{"ix":0,"action":{"kind":"Undelegate","val":3,"amt":4343},"partialState":{"h":1,"t":6,"tokens":[5000,4000,3000,2000],"delegation":[4000,3000,2000,1000],"delegatorTokens":10000000000000}},{"ix":1,"action":{"kind":"Deliver","chain":"consumer","numPackets":3},"partialState":{"h":1,"t":6,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":2,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":3,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":2,"t":12,"tokens":[5000,4000,3000,2000],"delegation":[4000,3000,2000,1000],"delegatorTokens":10000000000000,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":4,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":5,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":6,"action":{"kind":"Delegate","val":3,"amt":4050},"partialState":{"h":2,"t":12,"tokens":[5000,4000,3000,6050],"delegation":[4000,3000,2000,5050],"delegatorTokens":9999999995950}},{"ix":7,"action":{"kind":"Deliver","chain":"provider","numPackets":6},"partialState":{"h":2,"t":12,"tokens":[5000,4000,3000,6050],"delegation":[4000,3000,2000,5050],"delegatorTokens":9999999995950,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":8,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":3,"t":18,"tokens":[5000,4000,3000,6050],"delegation":[4000,3000,2000,5050],"delegatorTokens":9999999995950,"jailed":[null,null,null,null],"status":["bonded","unbonding","unbonded","bonded"]}},{"ix":9,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":2,"t":12,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":10,"action":{"kind":"ConsumerSlash","val":2,"infractionHeight":0,"isDowntime":false},"partialState":{"h":2,"t":12,"outstandingDowntime":[false,false,false,false]}},{"ix":11,"action":{"kind":"ConsumerSlash","val":2,"infractionHeight":1,"isDowntime":true},"partialState":{"h":2,"t":12,"outstandingDowntime":[false,false,true,false]}},{"ix":12,"action":{"kind":"Undelegate","val":1,"amt":3067},"partialState":{"h":3,"t":18,"tokens":[5000,4000,3000,6050],"delegation":[4000,3000,2000,5050],"delegatorTokens":9999999995950}},{"ix":13,"action":{"kind":"Undelegate","val":1,"amt":3698},"partialState":{"h":3,"t":18,"tokens":[5000,4000,3000,6050],"delegation":[4000,3000,2000,5050],"delegatorTokens":9999999995950}},{"ix":14,"action":{"kind":"Delegate","val":1,"amt":4494},"partialState":{"h":3,"t":18,"tokens":[5000,8494,3000,6050],"delegation":[4000,7494,2000,5050],"delegatorTokens":9999999991456}},{"ix":15,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":4,"t":24,"tokens":[5000,8494,3000,6050],"delegation":[4000,7494,2000,5050],"delegatorTokens":9999999991456,"jailed":[null,null,null,null],"status":["unbonding","bonded","unbonded","bonded"]}},{"ix":16,"action":{"kind":"Undelegate","val":2,"amt":1569},"partialState":{"h":4,"t":24,"tokens":[5000,8494,1431,6050],"delegation":[4000,7494,431,5050],"delegatorTokens":9999999991456}},{"ix":17,"action":{"kind":"Undelegate","val":2,"amt":4247},"partialState":{"h":4,"t":24,"tokens":[5000,8494,1431,6050],"delegation":[4000,7494,431,5050],"delegatorTokens":9999999991456}},{"ix":18,"action":{"kind":"ConsumerSlash","val":2,"infractionHeight":0,"isDowntime":true},"partialState":{"h":2,"t":12,"outstandingDowntime":[false,false,true,false]}},{"ix":19,"action":{"kind":"Deliver","chain":"provider","numPackets":4},"partialState":{"h":4,"t":24,"tokens":[5000,8494,1431,6050],"delegation":[4000,7494,431,5050],"delegatorTokens":9999999991456,"jailed":[null,null,null,null],"status":["unbonding","bonded","unbonded","bonded"]}},{"ix":20,"action":{"kind":"ConsumerSlash","val":1,"infractionHeight":1,"isDowntime":false},"partialState":{"h":2,"t":12,"outstandingDowntime":[false,false,true,false]}},{"ix":21,"action":{"kind":"ConsumerSlash","val":3,"infractionHeight":0,"isDowntime":false},"partialState":{"h":2,"t":12,"outstandingDowntime":[false,false,true,false]}},{"ix":22,"action":{"kind":"Undelegate","val":2,"amt":2054},"partialState":{"h":4,"t":24,"tokens":[5000,8494,1431,6050],"delegation":[4000,7494,431,5050],"delegatorTokens":9999999991456}},{"ix":23,"action":{"kind":"Deliver","chain":"consumer","numPackets":2},"partialState":{"h":2,"t":12,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,false,true,false]}},{"ix":24,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":25,"action":{"kind":"Deliver","chain":"consumer","numPackets":2},"partialState":{"h":2,"t":12,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,false,true,false]}},{"ix":26,"action":{"kind":"Delegate","val":1,"amt":3746},"partialState":{"h":4,"t":24,"tokens":[5000,12240,1431,6050],"delegation":[4000,11240,431,5050],"delegatorTokens":9999999987710}},{"ix":27,"action":{"kind":"Deliver","chain":"consumer","numPackets":4},"partialState":{"h":2,"t":12,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,false,true,false]}},{"ix":28,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":29,"action":{"kind":"Delegate","val":0,"amt":2442},"partialState":{"h":4,"t":24,"tokens":[7442,12240,1431,6050],"delegation":[6442,11240,431,5050],"delegatorTokens":9999999985268}},{"ix":30,"action":{"kind":"Deliver","chain":"consumer","numPackets":2},"partialState":{"h":2,"t":12,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,false,true,false]}},{"ix":31,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":32,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":5,"t":30,"tokens":[7442,12240,1431,6050],"delegation":[6442,11240,431,5050],"delegatorTokens":9999999985268,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonding"]}},{"ix":33,"action":{"kind":"Undelegate","val":1,"amt":4082},"partialState":{"h":5,"t":30,"tokens":[7442,8158,1431,6050],"delegation":[6442,7158,431,5050],"delegatorTokens":9999999985268}},{"ix":34,"action":{"kind":"Delegate","val":0,"amt":2325},"partialState":{"h":5,"t":30,"tokens":[9767,8158,1431,6050],"delegation":[8767,7158,431,5050],"delegatorTokens":9999999982943}},{"ix":35,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":3,"t":18,"consumerPower":[5000,null,null,6050],"outstandingDowntime":[false,false,true,false]}},{"ix":36,"action":{"kind":"Delegate","val":2,"amt":3635},"partialState":{"h":5,"t":30,"tokens":[9767,8158,5066,6050],"delegation":[8767,7158,4066,5050],"delegatorTokens":9999999979308}},{"ix":37,"action":{"kind":"Undelegate","val":2,"amt":4236},"partialState":{"h":5,"t":30,"tokens":[9767,8158,5066,6050],"delegation":[8767,7158,4066,5050],"delegatorTokens":9999999979308}},{"ix":38,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":6,"t":36,"tokens":[9767,8158,5066,6050],"delegation":[8767,7158,4066,5050],"delegatorTokens":9999999979308,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonding"]}},{"ix":39,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":40,"action":{"kind":"Delegate","val":2,"amt":3122},"partialState":{"h":6,"t":36,"tokens":[9767,8158,8188,6050],"delegation":[8767,7158,7188,5050],"delegatorTokens":9999999976186}},{"ix":41,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":7,"t":42,"tokens":[9767,8158,8188,6050],"delegation":[8767,7158,7188,5050],"delegatorTokens":9999999976186,"jailed":[null,null,null,null],"status":["bonded","unbonding","bonded","unbonding"]}},{"ix":42,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":4,"t":24,"consumerPower":[5000,null,null,6050],"outstandingDowntime":[false,false,true,false]}},{"ix":43,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":5,"t":30,"consumerPower":[5000,null,null,6050],"outstandingDowntime":[false,false,true,false]}},{"ix":44,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":8,"t":48,"tokens":[9767,8158,8188,6050],"delegation":[8767,7158,7188,5050],"delegatorTokens":9999999976186,"jailed":[null,null,null,null],"status":["bonded","unbonding","bonded","unbonding"]}},{"ix":45,"action":{"kind":"Deliver","chain":"provider","numPackets":6},"partialState":{"h":8,"t":48,"tokens":[9767,8158,8188,6050],"delegation":[8767,7158,7188,5050],"delegatorTokens":9999999976186,"jailed":[null,null,null,null],"status":["bonded","unbonding","bonded","unbonding"]}},{"ix":46,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":9,"t":54,"tokens":[9767,8158,8188,6050],"delegation":[8767,7158,7188,5050],"delegatorTokens":9999999976186,"jailed":[null,null,1000000000000047,null],"status":["bonded","unbonding","bonded","unbonding"]}},{"ix":47,"action":{"kind":"Delegate","val":2,"amt":1905},"partialState":{"h":9,"t":54,"tokens":[9767,8158,10093,6050],"delegation":[8767,7158,9093,5050],"delegatorTokens":9999999974281}},{"ix":48,"action":{"kind":"Deliver","chain":"provider","numPackets":1},"partialState":{"h":9,"t":54,"tokens":[9767,8158,10093,6050],"delegation":[8767,7158,9093,5050],"delegatorTokens":9999999974281,"jailed":[null,null,1000000000000047,null],"status":["bonded","unbonding","bonded","unbonding"]}},{"ix":49,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":6,"t":36,"consumerPower":[5000,null,null,6050],"outstandingDowntime":[false,false,true,false]}},{"ix":50,"action":{"kind":"Undelegate","val":3,"amt":2014},"partialState":{"h":9,"t":54,"tokens":[9767,8158,10093,4036],"delegation":[8767,7158,9093,3036],"delegatorTokens":9999999974281}},{"ix":51,"action":{"kind":"Deliver","chain":"consumer","numPackets":4},"partialState":{"h":6,"t":36,"consumerPower":[5000,null,null,6050],"outstandingDowntime":[false,false,true,false]}},{"ix":52,"action":{"kind":"Deliver","chain":"consumer","numPackets":6},"partialState":{"h":6,"t":36,"consumerPower":[5000,null,null,6050],"outstandingDowntime":[false,false,true,false]}},{"ix":53,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":10,"t":60,"tokens":[9767,8158,10093,4036],"delegation":[8767,7158,9093,3036],"delegatorTokens":9999999974281,"jailed":[null,null,1000000000000047,null],"status":["bonded","bonded","unbonding","unbonding"]}},{"ix":54,"action":{"kind":"Undelegate","val":0,"amt":3788},"partialState":{"h":10,"t":60,"tokens":[5979,8158,10093,4036],"delegation":[4979,7158,9093,3036],"delegatorTokens":9999999974281}},{"ix":55,"action":{"kind":"Deliver","chain":"consumer","numPackets":1},"partialState":{"h":6,"t":36,"consumerPower":[5000,null,null,6050],"outstandingDowntime":[false,false,true,false]}},{"ix":56,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":57,"action":{"kind":"Undelegate","val":1,"amt":1555},"partialState":{"h":10,"t":60,"tokens":[5979,6603,10093,4036],"delegation":[4979,5603,9093,3036],"delegatorTokens":9999999974281}},{"ix":58,"action":{"kind":"Undelegate","val":0,"amt":4473},"partialState":{"h":10,"t":60,"tokens":[1506,6603,10093,4036],"delegation":[506,5603,9093,3036],"delegatorTokens":9999999974281}},{"ix":59,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":7,"t":42,"consumerPower":[9767,null,8188,null],"outstandingDowntime":[false,false,true,false]}},{"ix":60,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":11,"t":66,"tokens":[1506,6603,10093,4036],"delegation":[506,5603,9093,3036],"delegatorTokens":9999999974281,"jailed":[null,null,1000000000000047,null],"status":["unbonding","bonded","unbonding","bonded"]}},{"ix":61,"action":{"kind":"Delegate","val":0,"amt":1833},"partialState":{"h":11,"t":66,"tokens":[3339,6603,10093,4036],"delegation":[2339,5603,9093,3036],"delegatorTokens":9999999972448}},{"ix":62,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":8,"t":48,"consumerPower":[9767,null,8188,null],"outstandingDowntime":[false,false,true,false]}},{"ix":63,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":64,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":9,"t":54,"consumerPower":[9767,null,8188,null],"outstandingDowntime":[false,false,true,false]}},{"ix":65,"action":{"kind":"Delegate","val":3,"amt":4502},"partialState":{"h":11,"t":66,"tokens":[3339,6603,10093,8538],"delegation":[2339,5603,9093,7538],"delegatorTokens":9999999967946}},{"ix":66,"action":{"kind":"Delegate","val":0,"amt":3885},"partialState":{"h":11,"t":66,"tokens":[7224,6603,10093,8538],"delegation":[6224,5603,9093,7538],"delegatorTokens":9999999964061}},{"ix":67,"action":{"kind":"Undelegate","val":0,"amt":1865},"partialState":{"h":11,"t":66,"tokens":[5359,6603,10093,8538],"delegation":[4359,5603,9093,7538],"delegatorTokens":9999999964061}},{"ix":68,"action":{"kind":"Undelegate","val":0,"amt":1728},"partialState":{"h":11,"t":66,"tokens":[3631,6603,10093,8538],"delegation":[2631,5603,9093,7538],"delegatorTokens":9999999964061}},{"ix":69,"action":{"kind":"Undelegate","val":1,"amt":4201},"partialState":{"h":11,"t":66,"tokens":[3631,2402,10093,8538],"delegation":[2631,1402,9093,7538],"delegatorTokens":9999999964061}},{"ix":70,"action":{"kind":"Undelegate","val":1,"amt":3554},"partialState":{"h":11,"t":66,"tokens":[3631,2402,10093,8538],"delegation":[2631,1402,9093,7538],"delegatorTokens":9999999964061}},{"ix":71,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":10,"t":60,"consumerPower":[9767,null,8188,null],"outstandingDowntime":[false,false,true,false]}},{"ix":72,"action":{"kind":"Delegate","val":2,"amt":1115},"partialState":{"h":11,"t":66,"tokens":[3631,2402,11208,8538],"delegation":[2631,1402,10208,7538],"delegatorTokens":9999999962946}},{"ix":73,"action":{"kind":"Undelegate","val":2,"amt":3730},"partialState":{"h":11,"t":66,"tokens":[3631,2402,7478,8538],"delegation":[2631,1402,6478,7538],"delegatorTokens":9999999962946}},{"ix":74,"action":{"kind":"Deliver","chain":"consumer","numPackets":5},"partialState":{"h":10,"t":60,"consumerPower":[9767,null,8188,null],"outstandingDowntime":[false,false,false,false]}},{"ix":75,"action":{"kind":"Delegate","val":1,"amt":4624},"partialState":{"h":11,"t":66,"tokens":[3631,7026,7478,8538],"delegation":[2631,6026,6478,7538],"delegatorTokens":9999999958322}},{"ix":76,"action":{"kind":"Undelegate","val":2,"amt":3629},"partialState":{"h":11,"t":66,"tokens":[3631,7026,3849,8538],"delegation":[2631,6026,2849,7538],"delegatorTokens":9999999958322}},{"ix":77,"action":{"kind":"Undelegate","val":2,"amt":2368},"partialState":{"h":11,"t":66,"tokens":[3631,7026,1481,8538],"delegation":[2631,6026,481,7538],"delegatorTokens":9999999958322}},{"ix":78,"action":{"kind":"Undelegate","val":0,"amt":2181},"partialState":{"h":11,"t":66,"tokens":[1450,7026,1481,8538],"delegation":[450,6026,481,7538],"delegatorTokens":9999999958322}},{"ix":79,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":80,"action":{"kind":"Undelegate","val":0,"amt":2813},"partialState":{"h":11,"t":66,"tokens":[1450,7026,1481,8538],"delegation":[450,6026,481,7538],"delegatorTokens":9999999958322}},{"ix":81,"action":{"kind":"Delegate","val":1,"amt":1956},"partialState":{"h":11,"t":66,"tokens":[1450,8982,1481,8538],"delegation":[450,7982,481,7538],"delegatorTokens":9999999956366}},{"ix":82,"action":{"kind":"Delegate","val":2,"amt":2852},"partialState":{"h":11,"t":66,"tokens":[1450,8982,4333,8538],"delegation":[450,7982,3333,7538],"delegatorTokens":9999999953514}},{"ix":83,"action":{"kind":"Delegate","val":2,"amt":2173},"partialState":{"h":11,"t":66,"tokens":[1450,8982,6506,8538],"delegation":[450,7982,5506,7538],"delegatorTokens":9999999951341}},{"ix":84,"action":{"kind":"Delegate","val":0,"amt":4394},"partialState":{"h":11,"t":66,"tokens":[5844,8982,6506,8538],"delegation":[4844,7982,5506,7538],"delegatorTokens":9999999946947}},{"ix":85,"action":{"kind":"Undelegate","val":2,"amt":3085},"partialState":{"h":11,"t":66,"tokens":[5844,8982,3421,8538],"delegation":[4844,7982,2421,7538],"delegatorTokens":9999999946947}},{"ix":86,"action":{"kind":"Delegate","val":3,"amt":2152},"partialState":{"h":11,"t":66,"tokens":[5844,8982,3421,10690],"delegation":[4844,7982,2421,9690],"delegatorTokens":9999999944795}},{"ix":87,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":12,"t":72,"tokens":[5844,8982,3421,10690],"delegation":[4844,7982,2421,9690],"delegatorTokens":9999999944795,"jailed":[null,null,1000000000000047,null],"status":["unbonding","bonded","unbonding","bonded"]}},{"ix":88,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":89,"action":{"kind":"Deliver","chain":"consumer","numPackets":1},"partialState":{"h":10,"t":60,"consumerPower":[9767,null,8188,null],"outstandingDowntime":[false,false,false,false]}},{"ix":90,"action":{"kind":"Deliver","chain":"consumer","numPackets":4},"partialState":{"h":10,"t":60,"consumerPower":[9767,null,8188,null],"outstandingDowntime":[false,false,false,false]}},{"ix":91,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":92,"action":{"kind":"Deliver","chain":"consumer","numPackets":4},"partialState":{"h":10,"t":60,"consumerPower":[9767,null,8188,null],"outstandingDowntime":[false,false,false,false]}},{"ix":93,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":11,"t":66,"consumerPower":[null,6603,null,4036],"outstandingDowntime":[false,false,false,false]}},{"ix":94,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":13,"t":78,"tokens":[5844,8982,3421,10690],"delegation":[4844,7982,2421,9690],"delegatorTokens":9999999944795,"jailed":[null,null,1000000000000047,null],"status":["unbonding","bonded","unbonding","bonded"]}},{"ix":95,"action":{"kind":"Deliver","chain":"consumer","numPackets":5},"partialState":{"h":11,"t":66,"consumerPower":[null,6603,null,4036],"outstandingDowntime":[false,false,false,false]}},{"ix":96,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":12,"t":72,"consumerPower":[null,8982,null,10690],"outstandingDowntime":[false,false,false,false]}},{"ix":97,"action":{"kind":"Deliver","chain":"provider","numPackets":1},"partialState":{"h":13,"t":78,"tokens":[5844,8982,3421,10690],"delegation":[4844,7982,2421,9690],"delegatorTokens":9999999944795,"jailed":[null,null,1000000000000047,null],"status":["unbonding","bonded","unbonding","bonded"]}},{"ix":98,"action":{"kind":"Undelegate","val":1,"amt":1246},"partialState":{"h":13,"t":78,"tokens":[5844,7736,3421,10690],"delegation":[4844,6736,2421,9690],"delegatorTokens":9999999944795}},{"ix":99,"action":{"kind":"Deliver","chain":"provider","numPackets":1},"partialState":{"h":13,"t":78,"tokens":[5844,7736,3421,10690],"delegation":[4844,6736,2421,9690],"delegatorTokens":9999999944795,"jailed":[null,null,1000000000000047,null],"status":["unbonding","bonded","unbonding","bonded"]}},{"ix":100,"action":{"kind":"Delegate","val":1,"amt":3216},"partialState":{"h":13,"t":78,"tokens":[5844,10952,3421,10690],"delegation":[4844,9952,2421,9690],"delegatorTokens":9999999941579}},{"ix":101,"action":{"kind":"Delegate","val":0,"amt":4631},"partialState":{"h":13,"t":78,"tokens":[10475,10952,3421,10690],"delegation":[9475,9952,2421,9690],"delegatorTokens":9999999936948}},{"ix":102,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":14,"t":84,"tokens":[10475,10952,3421,10690],"delegation":[9475,9952,2421,9690],"delegatorTokens":9999999936948,"jailed":[null,null,1000000000000047,null],"status":["unbonding","bonded","unbonding","bonded"]}},{"ix":103,"action":{"kind":"Delegate","val":3,"amt":1349},"partialState":{"h":14,"t":84,"tokens":[10475,10952,3421,12039],"delegation":[9475,9952,2421,11039],"delegatorTokens":9999999935599}},{"ix":104,"action":{"kind":"Delegate","val":0,"amt":4027},"partialState":{"h":14,"t":84,"tokens":[14502,10952,3421,12039],"delegation":[13502,9952,2421,11039],"delegatorTokens":9999999931572}},{"ix":105,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":106,"action":{"kind":"Delegate","val":3,"amt":2106},"partialState":{"h":14,"t":84,"tokens":[14502,10952,3421,14145],"delegation":[13502,9952,2421,13145],"delegatorTokens":9999999929466}},{"ix":107,"action":{"kind":"Delegate","val":2,"amt":3815},"partialState":{"h":14,"t":84,"tokens":[14502,10952,7236,14145],"delegation":[13502,9952,6236,13145],"delegatorTokens":9999999925651}},{"ix":108,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":109,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":13,"t":78,"consumerPower":[null,8982,null,10690],"outstandingDowntime":[false,false,false,false]}},{"ix":110,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":15,"t":90,"tokens":[14502,10952,7236,14145],"delegation":[13502,9952,6236,13145],"delegatorTokens":9999999925651,"jailed":[null,null,1000000000000047,null],"status":["bonded","unbonding","unbonding","bonded"]}},{"ix":111,"action":{"kind":"Undelegate","val":2,"amt":3245},"partialState":{"h":15,"t":90,"tokens":[14502,10952,3991,14145],"delegation":[13502,9952,2991,13145],"delegatorTokens":9999999925651}},{"ix":112,"action":{"kind":"Deliver","chain":"provider","numPackets":5},"partialState":{"h":15,"t":90,"tokens":[14502,10952,3991,14145],"delegation":[13502,9952,2991,13145],"delegatorTokens":9999999925651,"jailed":[null,null,1000000000000047,null],"status":["bonded","unbonding","unbonding","bonded"]}},{"ix":113,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":114,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":14,"t":84,"consumerPower":[null,8982,null,10690],"outstandingDowntime":[false,false,false,false]}},{"ix":115,"action":{"kind":"Deliver","chain":"provider","numPackets":2},"partialState":{"h":15,"t":90,"tokens":[14502,10952,3991,14145],"delegation":[13502,9952,2991,13145],"delegatorTokens":9999999925651,"jailed":[null,null,1000000000000047,null],"status":["bonded","unbonding","unbonding","bonded"]}},{"ix":116,"action":{"kind":"Deliver","chain":"consumer","numPackets":6},"partialState":{"h":14,"t":84,"consumerPower":[null,8982,null,10690],"outstandingDowntime":[false,false,false,false]}},{"ix":117,"action":{"kind":"Deliver","chain":"consumer","numPackets":2},"partialState":{"h":14,"t":84,"consumerPower":[null,8982,null,10690],"outstandingDowntime":[false,false,false,false]}},{"ix":118,"action":{"kind":"Undelegate","val":3,"amt":2198},"partialState":{"h":15,"t":90,"tokens":[14502,10952,3991,11947],"delegation":[13502,9952,2991,10947],"delegatorTokens":9999999925651}},{"ix":119,"action":{"kind":"Undelegate","val":2,"amt":1064},"partialState":{"h":15,"t":90,"tokens":[14502,10952,2927,11947],"delegation":[13502,9952,1927,10947],"delegatorTokens":9999999925651}},{"ix":120,"action":{"kind":"Delegate","val":2,"amt":2694},"partialState":{"h":15,"t":90,"tokens":[14502,10952,5621,11947],"delegation":[13502,9952,4621,10947],"delegatorTokens":9999999922957}},{"ix":121,"action":{"kind":"Delegate","val":3,"amt":4288},"partialState":{"h":15,"t":90,"tokens":[14502,10952,5621,16235],"delegation":[13502,9952,4621,15235],"delegatorTokens":9999999918669}},{"ix":122,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":16,"t":96,"tokens":[14502,10952,5621,16235],"delegation":[13502,9952,4621,15235],"delegatorTokens":9999999918669,"jailed":[null,null,1000000000000047,null],"status":["bonded","unbonding","unbonding","bonded"]}},{"ix":123,"action":{"kind":"Undelegate","val":2,"amt":2344},"partialState":{"h":16,"t":96,"tokens":[14502,10952,3277,16235],"delegation":[13502,9952,2277,15235],"delegatorTokens":9999999918669}},{"ix":124,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":15,"t":90,"consumerPower":[null,10952,null,10690],"outstandingDowntime":[false,false,false,false]}},{"ix":125,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":126,"action":{"kind":"Delegate","val":3,"amt":4894},"partialState":{"h":16,"t":96,"tokens":[14502,10952,3277,21129],"delegation":[13502,9952,2277,20129],"delegatorTokens":9999999913775}},{"ix":127,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":128,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":129,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":130,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":17,"t":102,"tokens":[14502,10952,3277,21129],"delegation":[13502,9952,2277,20129],"delegatorTokens":9999999913775,"jailed":[null,null,1000000000000047,null],"status":["bonded","unbonding","unbonding","bonded"]}},{"ix":131,"action":{"kind":"Deliver","chain":"consumer","numPackets":2},"partialState":{"h":15,"t":90,"consumerPower":[null,10952,null,10690],"outstandingDowntime":[false,false,false,false]}},{"ix":132,"action":{"kind":"Delegate","val":2,"amt":2302},"partialState":{"h":17,"t":102,"tokens":[14502,10952,5579,21129],"delegation":[13502,9952,4579,20129],"delegatorTokens":9999999911473}},{"ix":133,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":134,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":135,"action":{"kind":"Deliver","chain":"provider","numPackets":4},"partialState":{"h":17,"t":102,"tokens":[14502,10952,5579,21129],"delegation":[13502,9952,4579,20129],"delegatorTokens":9999999911473,"jailed":[null,null,1000000000000047,null],"status":["bonded","unbonding","unbonding","bonded"]}},{"ix":136,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":137,"action":{"kind":"Undelegate","val":2,"amt":1897},"partialState":{"h":17,"t":102,"tokens":[14502,10952,3682,21129],"delegation":[13502,9952,2682,20129],"delegatorTokens":9999999911473}},{"ix":138,"action":{"kind":"Deliver","chain":"consumer","numPackets":6},"partialState":{"h":15,"t":90,"consumerPower":[null,10952,null,10690],"outstandingDowntime":[false,false,false,false]}},{"ix":139,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":140,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":141,"action":{"kind":"Deliver","chain":"consumer","numPackets":2},"partialState":{"h":15,"t":90,"consumerPower":[null,10952,null,10690],"outstandingDowntime":[false,false,false,false]}},{"ix":142,"action":{"kind":"Delegate","val":1,"amt":3251},"partialState":{"h":17,"t":102,"tokens":[14502,14203,3682,21129],"delegation":[13502,13203,2682,20129],"delegatorTokens":9999999908222}},{"ix":143,"action":{"kind":"Undelegate","val":2,"amt":3935},"partialState":{"h":17,"t":102,"tokens":[14502,14203,3682,21129],"delegation":[13502,13203,2682,20129],"delegatorTokens":9999999908222}},{"ix":144,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":145,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":16,"t":96,"consumerPower":[14502,null,null,16235],"outstandingDowntime":[false,false,false,false]}},{"ix":146,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":17,"t":102,"consumerPower":[14502,null,null,16235],"outstandingDowntime":[false,false,false,false]}},{"ix":147,"action":{"kind":"Delegate","val":1,"amt":3458},"partialState":{"h":17,"t":102,"tokens":[14502,17661,3682,21129],"delegation":[13502,16661,2682,20129],"delegatorTokens":9999999904764}},{"ix":148,"action":{"kind":"Delegate","val":2,"amt":1748},"partialState":{"h":17,"t":102,"tokens":[14502,17661,5430,21129],"delegation":[13502,16661,4430,20129],"delegatorTokens":9999999903016}},{"ix":149,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":18,"t":108,"tokens":[14502,17661,5430,21129],"delegation":[13502,16661,4430,20129],"delegatorTokens":9999999903016,"jailed":[null,null,1000000000000047,null],"status":["unbonding","bonded","unbonding","bonded"]}},{"ix":150,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":18,"t":108,"consumerPower":[14502,null,null,16235],"outstandingDowntime":[false,false,false,false]}},{"ix":151,"action":{"kind":"Deliver","chain":"consumer","numPackets":5},"partialState":{"h":18,"t":108,"consumerPower":[14502,null,null,16235],"outstandingDowntime":[false,false,false,false]}},{"ix":152,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":19,"t":114,"tokens":[14502,17661,5430,21129],"delegation":[13502,16661,4430,20129],"delegatorTokens":9999999903016,"jailed":[null,null,1000000000000047,null],"status":["unbonding","bonded","unbonding","bonded"]}},{"ix":153,"action":{"kind":"Undelegate","val":1,"amt":3712},"partialState":{"h":19,"t":114,"tokens":[14502,13949,5430,21129],"delegation":[13502,12949,4430,20129],"delegatorTokens":9999999903016}},{"ix":154,"action":{"kind":"Deliver","chain":"consumer","numPackets":2},"partialState":{"h":18,"t":108,"consumerPower":[14502,null,null,16235],"outstandingDowntime":[false,false,false,false]}},{"ix":155,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":19,"t":114,"consumerPower":[null,17661,null,21129],"outstandingDowntime":[false,false,false,false]}},{"ix":156,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":20,"t":120,"tokens":[14502,13949,5430,21129],"delegation":[13502,12949,4430,20129],"delegatorTokens":9999999903016,"jailed":[null,null,1000000000000047,null],"status":["bonded","unbonding","unbonding","bonded"]}},{"ix":157,"action":{"kind":"Deliver","chain":"consumer","numPackets":1},"partialState":{"h":19,"t":114,"consumerPower":[null,17661,null,21129],"outstandingDowntime":[false,false,false,false]}},{"ix":158,"action":{"kind":"Deliver","chain":"provider","numPackets":3},"partialState":{"h":20,"t":120,"tokens":[14502,13949,5430,21129],"delegation":[13502,12949,4430,20129],"delegatorTokens":9999999903016,"jailed":[null,null,1000000000000047,null],"status":["bonded","unbonding","unbonding","bonded"]}},{"ix":159,"action":{"kind":"Undelegate","val":1,"amt":1813},"partialState":{"h":20,"t":120,"tokens":[14502,12136,5430,21129],"delegation":[13502,11136,4430,20129],"delegatorTokens":9999999903016}},{"ix":160,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":20,"t":120,"consumerPower":[null,17661,null,21129],"outstandingDowntime":[false,false,false,false]}},{"ix":161,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":162,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":21,"t":126,"consumerPower":[null,17661,null,21129],"outstandingDowntime":[false,false,false,false]}},{"ix":163,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":22,"t":132,"consumerPower":[null,17661,null,21129],"outstandingDowntime":[false,false,false,false]}},{"ix":164,"action":{"kind":"Undelegate","val":3,"amt":4649},"partialState":{"h":20,"t":120,"tokens":[14502,12136,5430,16480],"delegation":[13502,11136,4430,15480],"delegatorTokens":9999999903016}},{"ix":165,"action":{"kind":"Undelegate","val":1,"amt":1086},"partialState":{"h":20,"t":120,"tokens":[14502,11050,5430,16480],"delegation":[13502,10050,4430,15480],"delegatorTokens":9999999903016}},{"ix":166,"action":{"kind":"Deliver","chain":"provider","numPackets":5},"partialState":{"h":20,"t":120,"tokens":[14502,11050,5430,16480],"delegation":[13502,10050,4430,15480],"delegatorTokens":9999999903016,"jailed":[null,null,1000000000000047,null],"status":["bonded","unbonding","unbonding","bonded"]}},{"ix":167,"action":{"kind":"Undelegate","val":0,"amt":3012},"partialState":{"h":20,"t":120,"tokens":[11490,11050,5430,16480],"delegation":[10490,10050,4430,15480],"delegatorTokens":9999999903016}},{"ix":168,"action":{"kind":"Deliver","chain":"provider","numPackets":3},"partialState":{"h":20,"t":120,"tokens":[11490,11050,5430,16480],"delegation":[10490,10050,4430,15480],"delegatorTokens":9999999903016,"jailed":[null,null,1000000000000047,null],"status":["bonded","unbonding","unbonding","bonded"]}},{"ix":169,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":170,"action":{"kind":"Undelegate","val":1,"amt":2817},"partialState":{"h":20,"t":120,"tokens":[11490,8233,5430,16480],"delegation":[10490,7233,4430,15480],"delegatorTokens":9999999903016}},{"ix":171,"action":{"kind":"Delegate","val":2,"amt":1148},"partialState":{"h":20,"t":120,"tokens":[11490,8233,6578,16480],"delegation":[10490,7233,5578,15480],"delegatorTokens":9999999901868}},{"ix":172,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":23,"t":138,"consumerPower":[null,17661,null,21129],"outstandingDowntime":[false,false,false,false]}},{"ix":173,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":24,"t":144,"consumerPower":[null,17661,null,21129],"outstandingDowntime":[false,false,false,false]}},{"ix":174,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":175,"action":{"kind":"Undelegate","val":0,"amt":2818},"partialState":{"h":20,"t":120,"tokens":[8672,8233,6578,16480],"delegation":[7672,7233,5578,15480],"delegatorTokens":9999999901868}},{"ix":176,"action":{"kind":"Delegate","val":2,"amt":3297},"partialState":{"h":20,"t":120,"tokens":[8672,8233,9875,16480],"delegation":[7672,7233,8875,15480],"delegatorTokens":9999999898571}},{"ix":177,"action":{"kind":"Undelegate","val":2,"amt":4872},"partialState":{"h":20,"t":120,"tokens":[8672,8233,5003,16480],"delegation":[7672,7233,4003,15480],"delegatorTokens":9999999898571}},{"ix":178,"action":{"kind":"Delegate","val":1,"amt":2306},"partialState":{"h":20,"t":120,"tokens":[8672,10539,5003,16480],"delegation":[7672,9539,4003,15480],"delegatorTokens":9999999896265}},{"ix":179,"action":{"kind":"Deliver","chain":"consumer","numPackets":5},"partialState":{"h":24,"t":144,"consumerPower":[null,17661,null,21129],"outstandingDowntime":[false,false,false,false]}},{"ix":180,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":21,"t":126,"tokens":[8672,10539,5003,16480],"delegation":[7672,9539,4003,15480],"delegatorTokens":9999999901916,"jailed":[null,null,1000000000000047,null],"status":["unbonding","bonded","unbonding","bonded"]}},{"ix":181,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":25,"t":150,"consumerPower":[null,17661,null,21129],"outstandingDowntime":[false,false,false,false]}},{"ix":182,"action":{"kind":"Delegate","val":2,"amt":1720},"partialState":{"h":21,"t":126,"tokens":[8672,10539,6723,16480],"delegation":[7672,9539,5723,15480],"delegatorTokens":9999999900196}},{"ix":183,"action":{"kind":"Deliver","chain":"provider","numPackets":5},"partialState":{"h":21,"t":126,"tokens":[8672,10539,6723,16480],"delegation":[7672,9539,5723,15480],"delegatorTokens":9999999900196,"jailed":[null,null,1000000000000047,null],"status":["unbonding","bonded","unbonding","bonded"]}},{"ix":184,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":185,"action":{"kind":"Deliver","chain":"provider","numPackets":1},"partialState":{"h":21,"t":126,"tokens":[8672,10539,6723,16480],"delegation":[7672,9539,5723,15480],"delegatorTokens":9999999900196,"jailed":[null,null,1000000000000047,null],"status":["unbonding","bonded","unbonding","bonded"]}},{"ix":186,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":187,"action":{"kind":"Deliver","chain":"provider","numPackets":6},"partialState":{"h":21,"t":126,"tokens":[8672,10539,6723,16480],"delegation":[7672,9539,5723,15480],"delegatorTokens":9999999900196,"jailed":[null,null,1000000000000047,null],"status":["unbonding","bonded","unbonding","bonded"]}},{"ix":188,"action":{"kind":"Undelegate","val":0,"amt":3891},"partialState":{"h":21,"t":126,"tokens":[4781,10539,6723,16480],"delegation":[3781,9539,5723,15480],"delegatorTokens":9999999900196}},{"ix":189,"action":{"kind":"Deliver","chain":"provider","numPackets":4},"partialState":{"h":21,"t":126,"tokens":[4781,10539,6723,16480],"delegation":[3781,9539,5723,15480],"delegatorTokens":9999999900196,"jailed":[null,null,1000000000000047,null],"status":["unbonding","bonded","unbonding","bonded"]}},{"ix":190,"action":{"kind":"Delegate","val":3,"amt":1274},"partialState":{"h":21,"t":126,"tokens":[4781,10539,6723,17754],"delegation":[3781,9539,5723,16754],"delegatorTokens":9999999898922}},{"ix":191,"action":{"kind":"Deliver","chain":"consumer","numPackets":2},"partialState":{"h":25,"t":150,"consumerPower":[null,17661,null,21129],"outstandingDowntime":[false,false,false,false]}},{"ix":192,"action":{"kind":"Delegate","val":3,"amt":2281},"partialState":{"h":21,"t":126,"tokens":[4781,10539,6723,20035],"delegation":[3781,9539,5723,19035],"delegatorTokens":9999999896641}},{"ix":193,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":194,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":195,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":196,"action":{"kind":"Delegate","val":2,"amt":1575},"partialState":{"h":21,"t":126,"tokens":[4781,10539,8298,20035],"delegation":[3781,9539,7298,19035],"delegatorTokens":9999999895066}},{"ix":197,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":26,"t":156,"consumerPower":[14502,null,null,21129],"outstandingDowntime":[false,false,false,false]}},{"ix":198,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":27,"t":162,"consumerPower":[14502,null,null,21129],"outstandingDowntime":[false,false,false,false]}},{"ix":199,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":22,"t":132,"tokens":[4781,10539,8298,20035],"delegation":[3781,9539,7298,19035],"delegatorTokens":9999999897080,"jailed":[null,null,1000000000000047,null],"status":["unbonding","bonded","unbonded","bonded"]}}],"events":["insufficient_shares","more_than_one_third_val_power_change","send_vsc_without_downtime_ack","send_double_sign_slash_request","send_downtime_slash_request","insufficient_shares","insufficient_shares","more_than_one_third_val_power_change","rebond_unval","send_vsc_without_downtime_ack","insufficient_shares","downtime_slash_request_outstanding","send_double_sign_slash_request","send_double_sign_slash_request","insufficient_shares","more_than_one_third_val_power_change","rebond_unval","send_vsc_without_downtime_ack","consumer_del_val","consumer_add_val","insufficient_shares","send_vsc_without_downtime_ack","more_than_one_third_val_power_change","send_vsc_without_downtime_ack","receive_double_sign_slash_request","receive_double_sign_slash_request","receive_double_sign_slash_request","receive_downtime_slash_request","jail","more_than_one_third_val_power_change","rebond_unval","send_vsc_with_downtime_ack","consumer_update_val","consumer_del_val","consumer_del_val","consumer_add_val","more_than_one_third_val_power_change","rebond_unval","send_vsc_without_downtime_ack","insufficient_shares","receive_downtime_slash_ack","insufficient_shares","send_vsc_without_downtime_ack","consumer_add_val","consumer_del_val","consumer_del_val","consumer_add_val","consumer_send_maturation","consumer_update_val","consumer_update_val","send_vsc_without_downtime_ack","more_than_one_third_val_power_change","rebond_unval","send_vsc_without_downtime_ack","send_vsc_without_downtime_ack","consumer_update_val","some_undels_expired_but_not_completed","send_vsc_without_downtime_ack","insufficient_shares","consumer_send_maturation","consumer_send_maturation","consumer_send_maturation","consumer_send_maturation","consumer_add_val","consumer_del_val","consumer_update_val","more_than_one_third_val_power_change","rebond_unval","some_undels_expired_but_not_completed","send_vsc_without_downtime_ack","consumer_update_val","consumer_del_val","consumer_add_val","more_than_one_third_val_power_change","rebond_unval","send_vsc_without_downtime_ack","consumer_send_maturation","consumer_send_maturation","consumer_send_maturation","consumer_send_maturation","more_than_one_third_val_power_change","rebond_unval","complete_undel_immediate","complete_undel_immediate","set_undel_hold_false","set_unval_hold_false","set_undel_hold_false","set_undel_hold_false","set_undel_hold_false","set_undel_hold_false","set_undel_hold_false","set_undel_hold_false","set_undel_hold_false","set_undel_hold_false","set_undel_hold_false","set_undel_hold_false","set_undel_hold_false","send_vsc_without_downtime_ack","consumer_send_maturation","consumer_send_maturation","consumer_add_val","consumer_del_val","complete_unval_in_endblock","complete_undel_in_endblock","set_undel_hold_false","send_vsc_without_downtime_ack"]},{"meta":{"commit":"7ffd0c04e4205cbc9caf212abfe6c59ee43153bf"},"constants":{"P":"provider","C":"consumer","UNBONDING_SECONDS_P":70,"UNBONDING_SECONDS_C":50,"TRUSTING_SECONDS":49,"NUM_VALIDATORS":4,"MAX_VALIDATORS":2,"SLASH_DOUBLESIGN":0,"SLASH_DOWNTIME":0,"JAIL_SECONDS":999999999999999,"BLOCK_SECONDS":6,"INITIAL_DELEGATOR_TOKENS":10000000000000,"DELEGATE_AMT_MIN":1000,"DELEGATE_AMT_MAX":5000,"UNDELEGATE_AMT_MIN":1000,"UNDELEGATE_AMT_MAX":5000,"ISDOWNTIME_PROBABILITY":0.5,"MAX_NUM_PACKETS_FOR_DELIVER":6},"actions":[{"ix":0,"action":{"kind":"Delegate","val":2,"amt":3886},"partialState":{"h":1,"t":6,"tokens":[5000,4000,6886,2000],"delegation":[4000,3000,5886,1000],"delegatorTokens":9999999996114}},{"ix":1,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":2,"action":{"kind":"ConsumerSlash","val":2,"infractionHeight":0,"isDowntime":false},"partialState":{"h":1,"t":6,"outstandingDowntime":[false,false,false,false]}},{"ix":3,"action":{"kind":"Undelegate","val":0,"amt":2682},"partialState":{"h":1,"t":6,"tokens":[2318,4000,6886,2000],"delegation":[1318,3000,5886,1000],"delegatorTokens":9999999996114}},{"ix":4,"action":{"kind":"Delegate","val":3,"amt":1653},"partialState":{"h":1,"t":6,"tokens":[2318,4000,6886,3653],"delegation":[1318,3000,5886,2653],"delegatorTokens":9999999994461}},{"ix":5,"action":{"kind":"Undelegate","val":3,"amt":4013},"partialState":{"h":1,"t":6,"tokens":[2318,4000,6886,3653],"delegation":[1318,3000,5886,2653],"delegatorTokens":9999999994461}},{"ix":6,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":2,"t":12,"tokens":[2318,4000,6886,3653],"delegation":[1318,3000,5886,2653],"delegatorTokens":9999999994461,"jailed":[null,null,null,null],"status":["unbonding","bonded","bonded","unbonded"]}},{"ix":7,"action":{"kind":"Delegate","val":3,"amt":1963},"partialState":{"h":2,"t":12,"tokens":[2318,4000,6886,5616],"delegation":[1318,3000,5886,4616],"delegatorTokens":9999999992498}},{"ix":8,"action":{"kind":"Undelegate","val":3,"amt":3645},"partialState":{"h":2,"t":12,"tokens":[2318,4000,6886,1971],"delegation":[1318,3000,5886,971],"delegatorTokens":9999999992498}},{"ix":9,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":2,"t":12,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":10,"action":{"kind":"Delegate","val":1,"amt":2987},"partialState":{"h":2,"t":12,"tokens":[2318,6987,6886,1971],"delegation":[1318,5987,5886,971],"delegatorTokens":9999999989511}},{"ix":11,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":12,"action":{"kind":"Deliver","chain":"consumer","numPackets":6},"partialState":{"h":2,"t":12,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":13,"action":{"kind":"Deliver","chain":"provider","numPackets":1},"partialState":{"h":2,"t":12,"tokens":[2318,6987,6886,1971],"delegation":[1318,5987,5886,971],"delegatorTokens":9999999989511,"jailed":[null,null,null,null],"status":["unbonding","bonded","bonded","unbonded"]}},{"ix":14,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":15,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":16,"action":{"kind":"Undelegate","val":0,"amt":1815},"partialState":{"h":2,"t":12,"tokens":[2318,6987,6886,1971],"delegation":[1318,5987,5886,971],"delegatorTokens":9999999989511}},{"ix":17,"action":{"kind":"ConsumerSlash","val":0,"infractionHeight":1,"isDowntime":false},"partialState":{"h":2,"t":12,"outstandingDowntime":[false,false,false,false]}},{"ix":18,"action":{"kind":"Undelegate","val":3,"amt":3113},"partialState":{"h":2,"t":12,"tokens":[2318,6987,6886,1971],"delegation":[1318,5987,5886,971],"delegatorTokens":9999999989511}},{"ix":19,"action":{"kind":"Undelegate","val":3,"amt":1886},"partialState":{"h":2,"t":12,"tokens":[2318,6987,6886,1971],"delegation":[1318,5987,5886,971],"delegatorTokens":9999999989511}},{"ix":20,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":3,"t":18,"tokens":[2318,6987,6886,1971],"delegation":[1318,5987,5886,971],"delegatorTokens":9999999989511,"jailed":[null,null,null,null],"status":["unbonding","bonded","bonded","unbonded"]}},{"ix":21,"action":{"kind":"Deliver","chain":"provider","numPackets":4},"partialState":{"h":3,"t":18,"tokens":[2318,6987,6886,1971],"delegation":[1318,5987,5886,971],"delegatorTokens":9999999989511,"jailed":[null,null,null,null],"status":["unbonding","bonded","bonded","unbonded"]}},{"ix":22,"action":{"kind":"Undelegate","val":2,"amt":3371},"partialState":{"h":3,"t":18,"tokens":[2318,6987,3515,1971],"delegation":[1318,5987,2515,971],"delegatorTokens":9999999989511}},{"ix":23,"action":{"kind":"Delegate","val":3,"amt":1140},"partialState":{"h":3,"t":18,"tokens":[2318,6987,3515,3111],"delegation":[1318,5987,2515,2111],"delegatorTokens":9999999988371}},{"ix":24,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":25,"action":{"kind":"Delegate","val":2,"amt":1357},"partialState":{"h":3,"t":18,"tokens":[2318,6987,4872,3111],"delegation":[1318,5987,3872,2111],"delegatorTokens":9999999987014}},{"ix":26,"action":{"kind":"Deliver","chain":"consumer","numPackets":6},"partialState":{"h":2,"t":12,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":27,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":28,"action":{"kind":"Delegate","val":3,"amt":2908},"partialState":{"h":3,"t":18,"tokens":[2318,6987,4872,6019],"delegation":[1318,5987,3872,5019],"delegatorTokens":9999999984106}},{"ix":29,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":30,"action":{"kind":"Undelegate","val":2,"amt":2642},"partialState":{"h":3,"t":18,"tokens":[2318,6987,2230,6019],"delegation":[1318,5987,1230,5019],"delegatorTokens":9999999984106}},{"ix":31,"action":{"kind":"Delegate","val":0,"amt":3505},"partialState":{"h":3,"t":18,"tokens":[5823,6987,2230,6019],"delegation":[4823,5987,1230,5019],"delegatorTokens":9999999980601}},{"ix":32,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":33,"action":{"kind":"ConsumerSlash","val":1,"infractionHeight":1,"isDowntime":false},"partialState":{"h":2,"t":12,"outstandingDowntime":[false,false,false,false]}},{"ix":34,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":35,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":36,"action":{"kind":"Delegate","val":0,"amt":1846},"partialState":{"h":3,"t":18,"tokens":[7669,6987,2230,6019],"delegation":[6669,5987,1230,5019],"delegatorTokens":9999999978755}},{"ix":37,"action":{"kind":"Deliver","chain":"consumer","numPackets":1},"partialState":{"h":2,"t":12,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":38,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":4,"t":24,"tokens":[7669,6987,2230,6019],"delegation":[6669,5987,1230,5019],"delegatorTokens":9999999978755,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonding","unbonded"]}},{"ix":39,"action":{"kind":"Delegate","val":3,"amt":4095},"partialState":{"h":4,"t":24,"tokens":[7669,6987,2230,10114],"delegation":[6669,5987,1230,9114],"delegatorTokens":9999999974660}},{"ix":40,"action":{"kind":"Undelegate","val":3,"amt":2122},"partialState":{"h":4,"t":24,"tokens":[7669,6987,2230,7992],"delegation":[6669,5987,1230,6992],"delegatorTokens":9999999974660}},{"ix":41,"action":{"kind":"Undelegate","val":2,"amt":4682},"partialState":{"h":4,"t":24,"tokens":[7669,6987,2230,7992],"delegation":[6669,5987,1230,6992],"delegatorTokens":9999999974660}},{"ix":42,"action":{"kind":"Deliver","chain":"consumer","numPackets":5},"partialState":{"h":2,"t":12,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":43,"action":{"kind":"Undelegate","val":3,"amt":4385},"partialState":{"h":4,"t":24,"tokens":[7669,6987,2230,3607],"delegation":[6669,5987,1230,2607],"delegatorTokens":9999999974660}},{"ix":44,"action":{"kind":"Delegate","val":2,"amt":2503},"partialState":{"h":4,"t":24,"tokens":[7669,6987,4733,3607],"delegation":[6669,5987,3733,2607],"delegatorTokens":9999999972157}},{"ix":45,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":46,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":5,"t":30,"tokens":[7669,6987,4733,3607],"delegation":[6669,5987,3733,2607],"delegatorTokens":9999999972157,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonding","unbonded"]}},{"ix":47,"action":{"kind":"Deliver","chain":"provider","numPackets":5},"partialState":{"h":5,"t":30,"tokens":[7669,6987,4733,3607],"delegation":[6669,5987,3733,2607],"delegatorTokens":9999999972157,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonding","unbonded"]}},{"ix":48,"action":{"kind":"Delegate","val":2,"amt":2607},"partialState":{"h":5,"t":30,"tokens":[7669,6987,7340,3607],"delegation":[6669,5987,6340,2607],"delegatorTokens":9999999969550}},{"ix":49,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":50,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":51,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":3,"t":18,"consumerPower":[null,6987,6886,null],"outstandingDowntime":[false,false,false,false]}},{"ix":52,"action":{"kind":"Undelegate","val":1,"amt":1962},"partialState":{"h":5,"t":30,"tokens":[7669,5025,7340,3607],"delegation":[6669,4025,6340,2607],"delegatorTokens":9999999969550}},{"ix":53,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":54,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":55,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":56,"action":{"kind":"Delegate","val":0,"amt":2078},"partialState":{"h":5,"t":30,"tokens":[9747,5025,7340,3607],"delegation":[8747,4025,6340,2607],"delegatorTokens":9999999967472}},{"ix":57,"action":{"kind":"Delegate","val":2,"amt":2110},"partialState":{"h":5,"t":30,"tokens":[9747,5025,9450,3607],"delegation":[8747,4025,8450,2607],"delegatorTokens":9999999965362}},{"ix":58,"action":{"kind":"Undelegate","val":0,"amt":2024},"partialState":{"h":5,"t":30,"tokens":[7723,5025,9450,3607],"delegation":[6723,4025,8450,2607],"delegatorTokens":9999999965362}},{"ix":59,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":6,"t":36,"tokens":[7723,5025,9450,3607],"delegation":[6723,4025,8450,2607],"delegatorTokens":9999999965362,"jailed":[null,null,null,null],"status":["bonded","unbonding","bonded","unbonded"]}},{"ix":60,"action":{"kind":"Deliver","chain":"provider","numPackets":1},"partialState":{"h":6,"t":36,"tokens":[7723,5025,9450,3607],"delegation":[6723,4025,8450,2607],"delegatorTokens":9999999965362,"jailed":[null,null,null,null],"status":["bonded","unbonding","bonded","unbonded"]}},{"ix":61,"action":{"kind":"Delegate","val":3,"amt":1637},"partialState":{"h":6,"t":36,"tokens":[7723,5025,9450,5244],"delegation":[6723,4025,8450,4244],"delegatorTokens":9999999963725}},{"ix":62,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":63,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":4,"t":24,"consumerPower":[null,6987,6886,null],"outstandingDowntime":[false,false,false,false]}},{"ix":64,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":65,"action":{"kind":"Undelegate","val":0,"amt":4196},"partialState":{"h":6,"t":36,"tokens":[3527,5025,9450,5244],"delegation":[2527,4025,8450,4244],"delegatorTokens":9999999963725}},{"ix":66,"action":{"kind":"Delegate","val":1,"amt":1481},"partialState":{"h":6,"t":36,"tokens":[3527,6506,9450,5244],"delegation":[2527,5506,8450,4244],"delegatorTokens":9999999962244}},{"ix":67,"action":{"kind":"Deliver","chain":"consumer","numPackets":2},"partialState":{"h":4,"t":24,"consumerPower":[null,6987,6886,null],"outstandingDowntime":[false,false,false,false]}},{"ix":68,"action":{"kind":"Undelegate","val":3,"amt":4606},"partialState":{"h":6,"t":36,"tokens":[3527,6506,9450,5244],"delegation":[2527,5506,8450,4244],"delegatorTokens":9999999962244}},{"ix":69,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":70,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":71,"action":{"kind":"Delegate","val":1,"amt":2492},"partialState":{"h":6,"t":36,"tokens":[3527,8998,9450,5244],"delegation":[2527,7998,8450,4244],"delegatorTokens":9999999959752}},{"ix":72,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":5,"t":30,"consumerPower":[7669,6987,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":73,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":74,"action":{"kind":"Undelegate","val":0,"amt":2293},"partialState":{"h":6,"t":36,"tokens":[1234,8998,9450,5244],"delegation":[234,7998,8450,4244],"delegatorTokens":9999999959752}},{"ix":75,"action":{"kind":"Deliver","chain":"provider","numPackets":1},"partialState":{"h":6,"t":36,"tokens":[1234,8998,9450,5244],"delegation":[234,7998,8450,4244],"delegatorTokens":9999999959752,"jailed":[null,null,null,null],"status":["bonded","unbonding","bonded","unbonded"]}},{"ix":76,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":7,"t":42,"tokens":[1234,8998,9450,5244],"delegation":[234,7998,8450,4244],"delegatorTokens":9999999959752,"jailed":[null,null,null,null],"status":["unbonding","bonded","bonded","unbonded"]}},{"ix":77,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":8,"t":48,"tokens":[1234,8998,9450,5244],"delegation":[234,7998,8450,4244],"delegatorTokens":9999999959752,"jailed":[null,null,null,null],"status":["unbonding","bonded","bonded","unbonded"]}},{"ix":78,"action":{"kind":"Undelegate","val":1,"amt":2530},"partialState":{"h":8,"t":48,"tokens":[1234,6468,9450,5244],"delegation":[234,5468,8450,4244],"delegatorTokens":9999999959752}},{"ix":79,"action":{"kind":"Undelegate","val":1,"amt":3650},"partialState":{"h":8,"t":48,"tokens":[1234,2818,9450,5244],"delegation":[234,1818,8450,4244],"delegatorTokens":9999999959752}},{"ix":80,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":6,"t":36,"consumerPower":[7669,6987,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":81,"action":{"kind":"Undelegate","val":0,"amt":2640},"partialState":{"h":8,"t":48,"tokens":[1234,2818,9450,5244],"delegation":[234,1818,8450,4244],"delegatorTokens":9999999959752}},{"ix":82,"action":{"kind":"Deliver","chain":"provider","numPackets":3},"partialState":{"h":8,"t":48,"tokens":[1234,2818,9450,5244],"delegation":[234,1818,8450,4244],"delegatorTokens":9999999959752,"jailed":[null,null,null,null],"status":["unbonding","bonded","bonded","unbonded"]}},{"ix":83,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":7,"t":42,"consumerPower":[7669,6987,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":84,"action":{"kind":"Delegate","val":2,"amt":3265},"partialState":{"h":8,"t":48,"tokens":[1234,2818,12715,5244],"delegation":[234,1818,11715,4244],"delegatorTokens":9999999956487}},{"ix":85,"action":{"kind":"Deliver","chain":"provider","numPackets":2},"partialState":{"h":8,"t":48,"tokens":[1234,2818,12715,5244],"delegation":[234,1818,11715,4244],"delegatorTokens":9999999956487,"jailed":[null,null,null,null],"status":["unbonding","bonded","bonded","unbonded"]}},{"ix":86,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":9,"t":54,"tokens":[1234,2818,12715,5244],"delegation":[234,1818,11715,4244],"delegatorTokens":9999999956487,"jailed":[null,null,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":87,"action":{"kind":"Delegate","val":0,"amt":4301},"partialState":{"h":9,"t":54,"tokens":[5535,2818,12715,5244],"delegation":[4535,1818,11715,4244],"delegatorTokens":9999999952186}},{"ix":88,"action":{"kind":"Deliver","chain":"provider","numPackets":4},"partialState":{"h":9,"t":54,"tokens":[5535,2818,12715,5244],"delegation":[4535,1818,11715,4244],"delegatorTokens":9999999952186,"jailed":[null,null,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":89,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":10,"t":60,"tokens":[5535,2818,12715,5244],"delegation":[4535,1818,11715,4244],"delegatorTokens":9999999952186,"jailed":[null,null,null,null],"status":["bonded","unbonding","bonded","unbonding"]}},{"ix":90,"action":{"kind":"Undelegate","val":0,"amt":2941},"partialState":{"h":10,"t":60,"tokens":[2594,2818,12715,5244],"delegation":[1594,1818,11715,4244],"delegatorTokens":9999999952186}},{"ix":91,"action":{"kind":"Undelegate","val":3,"amt":1766},"partialState":{"h":10,"t":60,"tokens":[2594,2818,12715,3478],"delegation":[1594,1818,11715,2478],"delegatorTokens":9999999952186}},{"ix":92,"action":{"kind":"Deliver","chain":"provider","numPackets":2},"partialState":{"h":10,"t":60,"tokens":[2594,2818,12715,3478],"delegation":[1594,1818,11715,2478],"delegatorTokens":9999999952186,"jailed":[null,null,null,null],"status":["bonded","unbonding","bonded","unbonding"]}},{"ix":93,"action":{"kind":"Deliver","chain":"consumer","numPackets":5},"partialState":{"h":7,"t":42,"consumerPower":[7669,6987,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":94,"action":{"kind":"Undelegate","val":2,"amt":3391},"partialState":{"h":10,"t":60,"tokens":[2594,2818,9324,3478],"delegation":[1594,1818,8324,2478],"delegatorTokens":9999999952186}},{"ix":95,"action":{"kind":"Delegate","val":2,"amt":1350},"partialState":{"h":10,"t":60,"tokens":[2594,2818,10674,3478],"delegation":[1594,1818,9674,2478],"delegatorTokens":9999999950836}},{"ix":96,"action":{"kind":"Undelegate","val":0,"amt":4701},"partialState":{"h":10,"t":60,"tokens":[2594,2818,10674,3478],"delegation":[1594,1818,9674,2478],"delegatorTokens":9999999950836}},{"ix":97,"action":{"kind":"Undelegate","val":2,"amt":3503},"partialState":{"h":10,"t":60,"tokens":[2594,2818,7171,3478],"delegation":[1594,1818,6171,2478],"delegatorTokens":9999999950836}},{"ix":98,"action":{"kind":"Delegate","val":3,"amt":2463},"partialState":{"h":10,"t":60,"tokens":[2594,2818,7171,5941],"delegation":[1594,1818,6171,4941],"delegatorTokens":9999999948373}},{"ix":99,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":8,"t":48,"consumerPower":[null,null,12715,5244],"outstandingDowntime":[false,false,false,false]}},{"ix":100,"action":{"kind":"Delegate","val":3,"amt":1307},"partialState":{"h":10,"t":60,"tokens":[2594,2818,7171,7248],"delegation":[1594,1818,6171,6248],"delegatorTokens":9999999947066}},{"ix":101,"action":{"kind":"Undelegate","val":2,"amt":2363},"partialState":{"h":10,"t":60,"tokens":[2594,2818,4808,7248],"delegation":[1594,1818,3808,6248],"delegatorTokens":9999999947066}},{"ix":102,"action":{"kind":"Undelegate","val":0,"amt":4080},"partialState":{"h":10,"t":60,"tokens":[2594,2818,4808,7248],"delegation":[1594,1818,3808,6248],"delegatorTokens":9999999947066}},{"ix":103,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":104,"action":{"kind":"Undelegate","val":0,"amt":2795},"partialState":{"h":10,"t":60,"tokens":[2594,2818,4808,7248],"delegation":[1594,1818,3808,6248],"delegatorTokens":9999999947066}},{"ix":105,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":106,"action":{"kind":"Delegate","val":3,"amt":3098},"partialState":{"h":10,"t":60,"tokens":[2594,2818,4808,10346],"delegation":[1594,1818,3808,9346],"delegatorTokens":9999999943968}},{"ix":107,"action":{"kind":"Undelegate","val":3,"amt":3656},"partialState":{"h":10,"t":60,"tokens":[2594,2818,4808,6690],"delegation":[1594,1818,3808,5690],"delegatorTokens":9999999943968}},{"ix":108,"action":{"kind":"Deliver","chain":"provider","numPackets":2},"partialState":{"h":10,"t":60,"tokens":[2594,2818,4808,6690],"delegation":[1594,1818,3808,5690],"delegatorTokens":9999999943968,"jailed":[null,null,null,null],"status":["bonded","unbonding","bonded","unbonding"]}},{"ix":109,"action":{"kind":"Delegate","val":1,"amt":2143},"partialState":{"h":10,"t":60,"tokens":[2594,4961,4808,6690],"delegation":[1594,3961,3808,5690],"delegatorTokens":9999999941825}},{"ix":110,"action":{"kind":"Delegate","val":0,"amt":2506},"partialState":{"h":10,"t":60,"tokens":[5100,4961,4808,6690],"delegation":[4100,3961,3808,5690],"delegatorTokens":9999999939319}},{"ix":111,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":9,"t":54,"consumerPower":[null,null,12715,5244],"outstandingDowntime":[false,false,false,false]}},{"ix":112,"action":{"kind":"Deliver","chain":"consumer","numPackets":2},"partialState":{"h":9,"t":54,"consumerPower":[null,null,12715,5244],"outstandingDowntime":[false,false,false,false]}},{"ix":113,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":114,"action":{"kind":"Undelegate","val":0,"amt":3958},"partialState":{"h":10,"t":60,"tokens":[1142,4961,4808,6690],"delegation":[142,3961,3808,5690],"delegatorTokens":9999999939319}},{"ix":115,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":10,"t":60,"consumerPower":[null,null,12715,5244],"outstandingDowntime":[false,false,false,false]}},{"ix":116,"action":{"kind":"Undelegate","val":3,"amt":4978},"partialState":{"h":10,"t":60,"tokens":[1142,4961,4808,1712],"delegation":[142,3961,3808,712],"delegatorTokens":9999999939319}},{"ix":117,"action":{"kind":"Deliver","chain":"consumer","numPackets":2},"partialState":{"h":10,"t":60,"consumerPower":[null,null,12715,5244],"outstandingDowntime":[false,false,false,false]}},{"ix":118,"action":{"kind":"Deliver","chain":"consumer","numPackets":2},"partialState":{"h":10,"t":60,"consumerPower":[null,null,12715,5244],"outstandingDowntime":[false,false,false,false]}},{"ix":119,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":120,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":11,"t":66,"consumerPower":[null,null,12715,5244],"outstandingDowntime":[false,false,false,false]}},{"ix":121,"action":{"kind":"Undelegate","val":1,"amt":4454},"partialState":{"h":10,"t":60,"tokens":[1142,4961,4808,1712],"delegation":[142,3961,3808,712],"delegatorTokens":9999999939319}},{"ix":122,"action":{"kind":"Deliver","chain":"provider","numPackets":3},"partialState":{"h":10,"t":60,"tokens":[1142,4961,4808,1712],"delegation":[142,3961,3808,712],"delegatorTokens":9999999939319,"jailed":[null,null,null,null],"status":["bonded","unbonding","bonded","unbonding"]}},{"ix":123,"action":{"kind":"Deliver","chain":"provider","numPackets":2},"partialState":{"h":10,"t":60,"tokens":[1142,4961,4808,1712],"delegation":[142,3961,3808,712],"delegatorTokens":9999999939319,"jailed":[null,null,null,null],"status":["bonded","unbonding","bonded","unbonding"]}},{"ix":124,"action":{"kind":"Delegate","val":0,"amt":3832},"partialState":{"h":10,"t":60,"tokens":[4974,4961,4808,1712],"delegation":[3974,3961,3808,712],"delegatorTokens":9999999935487}},{"ix":125,"action":{"kind":"Undelegate","val":3,"amt":1355},"partialState":{"h":10,"t":60,"tokens":[4974,4961,4808,1712],"delegation":[3974,3961,3808,712],"delegatorTokens":9999999935487}},{"ix":126,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":11,"t":66,"tokens":[4974,4961,4808,1712],"delegation":[3974,3961,3808,712],"delegatorTokens":9999999935487,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonding","unbonding"]}},{"ix":127,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":12,"t":72,"consumerPower":[null,null,12715,5244],"outstandingDowntime":[false,false,false,false]}},{"ix":128,"action":{"kind":"Undelegate","val":3,"amt":2555},"partialState":{"h":11,"t":66,"tokens":[4974,4961,4808,1712],"delegation":[3974,3961,3808,712],"delegatorTokens":9999999935487}},{"ix":129,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":12,"t":72,"tokens":[4974,4961,4808,1712],"delegation":[3974,3961,3808,712],"delegatorTokens":9999999935487,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonding","unbonding"]}},{"ix":130,"action":{"kind":"Deliver","chain":"consumer","numPackets":2},"partialState":{"h":12,"t":72,"consumerPower":[null,null,12715,5244],"outstandingDowntime":[false,false,false,false]}},{"ix":131,"action":{"kind":"Undelegate","val":1,"amt":3107},"partialState":{"h":12,"t":72,"tokens":[4974,1854,4808,1712],"delegation":[3974,854,3808,712],"delegatorTokens":9999999935487}},{"ix":132,"action":{"kind":"Undelegate","val":2,"amt":1785},"partialState":{"h":12,"t":72,"tokens":[4974,1854,3023,1712],"delegation":[3974,854,2023,712],"delegatorTokens":9999999935487}},{"ix":133,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":13,"t":78,"consumerPower":[4974,4961,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":134,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":135,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":14,"t":84,"consumerPower":[4974,4961,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":136,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":15,"t":90,"consumerPower":[4974,4961,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":137,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":138,"action":{"kind":"Deliver","chain":"consumer","numPackets":3},"partialState":{"h":15,"t":90,"consumerPower":[4974,4961,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":139,"action":{"kind":"Delegate","val":2,"amt":3858},"partialState":{"h":12,"t":72,"tokens":[4974,1854,6881,1712],"delegation":[3974,854,5881,712],"delegatorTokens":9999999931629}},{"ix":140,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":16,"t":96,"consumerPower":[4974,4961,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":141,"action":{"kind":"Deliver","chain":"provider","numPackets":3},"partialState":{"h":12,"t":72,"tokens":[4974,1854,6881,1712],"delegation":[3974,854,5881,712],"delegatorTokens":9999999931629,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonding","unbonding"]}},{"ix":142,"action":{"kind":"Undelegate","val":3,"amt":3945},"partialState":{"h":12,"t":72,"tokens":[4974,1854,6881,1712],"delegation":[3974,854,5881,712],"delegatorTokens":9999999931629}},{"ix":143,"action":{"kind":"Deliver","chain":"provider","numPackets":1},"partialState":{"h":12,"t":72,"tokens":[4974,1854,6881,1712],"delegation":[3974,854,5881,712],"delegatorTokens":9999999931629,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonding","unbonding"]}},{"ix":144,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":17,"t":102,"consumerPower":[4974,4961,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":145,"action":{"kind":"Undelegate","val":2,"amt":4768},"partialState":{"h":12,"t":72,"tokens":[4974,1854,2113,1712],"delegation":[3974,854,1113,712],"delegatorTokens":9999999931629}},{"ix":146,"action":{"kind":"Delegate","val":2,"amt":4426},"partialState":{"h":12,"t":72,"tokens":[4974,1854,6539,1712],"delegation":[3974,854,5539,712],"delegatorTokens":9999999927203}},{"ix":147,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":13,"t":78,"tokens":[4974,1854,6539,1712],"delegation":[3974,854,5539,712],"delegatorTokens":9999999927203,"jailed":[null,null,null,null],"status":["bonded","unbonding","bonded","unbonding"]}},{"ix":148,"action":{"kind":"Deliver","chain":"provider","numPackets":5},"partialState":{"h":13,"t":78,"tokens":[4974,1854,6539,1712],"delegation":[3974,854,5539,712],"delegatorTokens":9999999927203,"jailed":[null,null,null,null],"status":["bonded","unbonding","bonded","unbonding"]}},{"ix":149,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":150,"action":{"kind":"Deliver","chain":"provider","numPackets":4},"partialState":{"h":13,"t":78,"tokens":[4974,1854,6539,1712],"delegation":[3974,854,5539,712],"delegatorTokens":9999999927203,"jailed":[null,null,null,null],"status":["bonded","unbonding","bonded","unbonding"]}},{"ix":151,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":152,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":153,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":18,"t":108,"consumerPower":[4974,4961,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":154,"action":{"kind":"Deliver","chain":"consumer","numPackets":3},"partialState":{"h":18,"t":108,"consumerPower":[4974,4961,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":155,"action":{"kind":"Delegate","val":0,"amt":3029},"partialState":{"h":13,"t":78,"tokens":[8003,1854,6539,1712],"delegation":[7003,854,5539,712],"delegatorTokens":9999999924174}},{"ix":156,"action":{"kind":"Deliver","chain":"consumer","numPackets":6},"partialState":{"h":18,"t":108,"consumerPower":[4974,4961,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":157,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":158,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":19,"t":114,"consumerPower":[4974,4961,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":159,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":160,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":14,"t":84,"tokens":[8003,1854,6539,1712],"delegation":[7003,854,5539,712],"delegatorTokens":9999999926856,"jailed":[null,null,null,null],"status":["bonded","unbonding","bonded","unbonding"]}},{"ix":161,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":20,"t":120,"consumerPower":[4974,4961,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":162,"action":{"kind":"Delegate","val":2,"amt":3367},"partialState":{"h":14,"t":84,"tokens":[8003,1854,9906,1712],"delegation":[7003,854,8906,712],"delegatorTokens":9999999923489}},{"ix":163,"action":{"kind":"Undelegate","val":3,"amt":3236},"partialState":{"h":14,"t":84,"tokens":[8003,1854,9906,1712],"delegation":[7003,854,8906,712],"delegatorTokens":9999999923489}},{"ix":164,"action":{"kind":"Delegate","val":1,"amt":4834},"partialState":{"h":14,"t":84,"tokens":[8003,6688,9906,1712],"delegation":[7003,5688,8906,712],"delegatorTokens":9999999918655}},{"ix":165,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":15,"t":90,"tokens":[8003,6688,9906,1712],"delegation":[7003,5688,8906,712],"delegatorTokens":9999999922300,"jailed":[null,null,null,null],"status":["bonded","unbonding","bonded","unbonding"]}},{"ix":166,"action":{"kind":"Deliver","chain":"provider","numPackets":5},"partialState":{"h":15,"t":90,"tokens":[8003,6688,9906,1712],"delegation":[7003,5688,8906,712],"delegatorTokens":9999999922300,"jailed":[null,null,null,null],"status":["bonded","unbonding","bonded","unbonding"]}},{"ix":167,"action":{"kind":"Delegate","val":1,"amt":3158},"partialState":{"h":15,"t":90,"tokens":[8003,9846,9906,1712],"delegation":[7003,8846,8906,712],"delegatorTokens":9999999919142}},{"ix":168,"action":{"kind":"Deliver","chain":"consumer","numPackets":4},"partialState":{"h":20,"t":120,"consumerPower":[4974,4961,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":169,"action":{"kind":"Undelegate","val":3,"amt":3993},"partialState":{"h":15,"t":90,"tokens":[8003,9846,9906,1712],"delegation":[7003,8846,8906,712],"delegatorTokens":9999999919142}},{"ix":170,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":16,"t":96,"tokens":[8003,9846,9906,1712],"delegation":[7003,8846,8906,712],"delegatorTokens":9999999925155,"jailed":[null,null,null,null],"status":["unbonding","bonded","bonded","unbonding"]}},{"ix":171,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":21,"t":126,"consumerPower":[8003,null,6539,null],"outstandingDowntime":[false,false,false,false]}},{"ix":172,"action":{"kind":"Delegate","val":1,"amt":2110},"partialState":{"h":16,"t":96,"tokens":[8003,11956,9906,1712],"delegation":[7003,10956,8906,712],"delegatorTokens":9999999923045}},{"ix":173,"action":{"kind":"Undelegate","val":3,"amt":3329},"partialState":{"h":16,"t":96,"tokens":[8003,11956,9906,1712],"delegation":[7003,10956,8906,712],"delegatorTokens":9999999923045}},{"ix":174,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":175,"action":{"kind":"Delegate","val":1,"amt":4841},"partialState":{"h":16,"t":96,"tokens":[8003,16797,9906,1712],"delegation":[7003,15797,8906,712],"delegatorTokens":9999999918204}},{"ix":176,"action":{"kind":"Deliver","chain":"consumer","numPackets":1},"partialState":{"h":21,"t":126,"consumerPower":[8003,null,6539,null],"outstandingDowntime":[false,false,false,false]}},{"ix":177,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":17,"t":102,"tokens":[8003,16797,9906,1712],"delegation":[7003,15797,8906,712],"delegatorTokens":9999999924711,"jailed":[null,null,null,null],"status":["unbonding","bonded","bonded","unbonding"]}},{"ix":178,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":22,"t":132,"consumerPower":[8003,null,9906,null],"outstandingDowntime":[false,false,false,false]}},{"ix":179,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":23,"t":138,"consumerPower":[8003,null,9906,null],"outstandingDowntime":[false,false,false,false]}},{"ix":180,"action":{"kind":"Delegate","val":3,"amt":2823},"partialState":{"h":17,"t":102,"tokens":[8003,16797,9906,4535],"delegation":[7003,15797,8906,3535],"delegatorTokens":9999999921888}},{"ix":181,"action":{"kind":"Delegate","val":2,"amt":1085},"partialState":{"h":17,"t":102,"tokens":[8003,16797,10991,4535],"delegation":[7003,15797,9991,3535],"delegatorTokens":9999999920803}},{"ix":182,"action":{"kind":"Undelegate","val":2,"amt":4199},"partialState":{"h":17,"t":102,"tokens":[8003,16797,6792,4535],"delegation":[7003,15797,5792,3535],"delegatorTokens":9999999920803}},{"ix":183,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":184,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":18,"t":108,"tokens":[8003,16797,6792,4535],"delegation":[7003,15797,5792,3535],"delegatorTokens":9999999924789,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonding","unbonding"]}},{"ix":185,"action":{"kind":"Delegate","val":1,"amt":1628},"partialState":{"h":18,"t":108,"tokens":[8003,18425,6792,4535],"delegation":[7003,17425,5792,3535],"delegatorTokens":9999999923161}},{"ix":186,"action":{"kind":"Deliver","chain":"consumer","numPackets":4},"partialState":{"h":23,"t":138,"consumerPower":[8003,null,9906,null],"outstandingDowntime":[false,false,false,false]}},{"ix":187,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":24,"t":144,"consumerPower":[null,16797,9906,null],"outstandingDowntime":[false,false,false,false]}},{"ix":188,"action":{"kind":"Delegate","val":2,"amt":1666},"partialState":{"h":18,"t":108,"tokens":[8003,18425,8458,4535],"delegation":[7003,17425,7458,3535],"delegatorTokens":9999999921495}},{"ix":189,"action":{"kind":"Delegate","val":1,"amt":2497},"partialState":{"h":18,"t":108,"tokens":[8003,20922,8458,4535],"delegation":[7003,19922,7458,3535],"delegatorTokens":9999999918998}},{"ix":190,"action":{"kind":"Deliver","chain":"provider","numPackets":3},"partialState":{"h":18,"t":108,"tokens":[8003,20922,8458,4535],"delegation":[7003,19922,7458,3535],"delegatorTokens":9999999918998,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonding","unbonding"]}},{"ix":191,"action":{"kind":"Deliver","chain":"consumer","numPackets":3},"partialState":{"h":24,"t":144,"consumerPower":[null,16797,9906,null],"outstandingDowntime":[false,false,false,false]}},{"ix":192,"action":{"kind":"Deliver","chain":"provider","numPackets":2},"partialState":{"h":18,"t":108,"tokens":[8003,20922,8458,4535],"delegation":[7003,19922,7458,3535],"delegatorTokens":9999999918998,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonding","unbonding"]}},{"ix":193,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":194,"action":{"kind":"Deliver","chain":"consumer","numPackets":2},"partialState":{"h":24,"t":144,"consumerPower":[null,16797,9906,null],"outstandingDowntime":[false,false,false,false]}},{"ix":195,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":25,"t":150,"consumerPower":[null,16797,9906,null],"outstandingDowntime":[false,false,false,false]}},{"ix":196,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":19,"t":114,"tokens":[8003,20922,8458,4535],"delegation":[7003,19922,7458,3535],"delegatorTokens":9999999925487,"jailed":[null,null,null,null],"status":["unbonding","bonded","bonded","unbonding"]}},{"ix":197,"action":{"kind":"Deliver","chain":"provider","numPackets":6},"partialState":{"h":19,"t":114,"tokens":[8003,20922,8458,4535],"delegation":[7003,19922,7458,3535],"delegatorTokens":9999999925487,"jailed":[null,null,null,null],"status":["unbonding","bonded","bonded","unbonding"]}},{"ix":198,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":199,"action":{"kind":"Deliver","chain":"consumer","numPackets":6},"partialState":{"h":25,"t":150,"consumerPower":[null,16797,9906,null],"outstandingDowntime":[false,false,false,false]}}],"events":["send_double_sign_slash_request","insufficient_shares","more_than_one_third_val_power_change","send_vsc_without_downtime_ack","insufficient_shares","send_double_sign_slash_request","insufficient_shares","insufficient_shares","send_vsc_without_downtime_ack","send_double_sign_slash_request","more_than_one_third_val_power_change","rebond_unval","send_vsc_without_downtime_ack","insufficient_shares","send_vsc_not_because_change","send_vsc_without_downtime_ack","consumer_del_val","consumer_add_val","consumer_update_val","more_than_one_third_val_power_change","rebond_unval","send_vsc_without_downtime_ack","receive_double_sign_slash_request","insufficient_shares","consumer_add_val","consumer_del_val","receive_double_sign_slash_request","more_than_one_third_val_power_change","rebond_unval","send_vsc_without_downtime_ack","insufficient_shares","receive_double_sign_slash_request","send_vsc_without_downtime_ack","rebond_unval","send_vsc_without_downtime_ack","insufficient_shares","consumer_del_val","consumer_del_val","consumer_add_val","consumer_add_val","insufficient_shares","insufficient_shares","insufficient_shares","insufficient_shares","more_than_one_third_val_power_change","rebond_unval","send_vsc_without_downtime_ack","consumer_send_maturation","consumer_send_maturation","insufficient_shares","consumer_add_val","consumer_del_val","consumer_add_val","consumer_del_val","consumer_send_maturation","consumer_send_maturation","insufficient_shares","consumer_send_maturation","consumer_send_maturation","consumer_send_maturation","more_than_one_third_val_power_change","rebond_unval","set_undel_hold_false","set_undel_hold_false","set_undel_hold_false","set_undel_hold_false","set_undel_hold_false","set_undel_hold_false","send_vsc_without_downtime_ack","complete_undel_in_endblock","send_vsc_without_downtime_ack","insufficient_shares","complete_undel_in_endblock","send_vsc_without_downtime_ack","insufficient_shares","more_than_one_third_val_power_change","rebond_unval","complete_undel_in_endblock","set_undel_hold_false","set_undel_hold_false","set_undel_hold_false","set_undel_hold_false","set_undel_hold_false","set_undel_hold_false","send_vsc_without_downtime_ack","consumer_del_val","consumer_add_val","consumer_update_val","insufficient_shares","complete_undel_in_endblock","send_vsc_without_downtime_ack","consumer_send_maturation","consumer_send_maturation","consumer_update_val","rebond_unval","complete_undel_in_endblock","send_vsc_without_downtime_ack","consumer_del_val","consumer_add_val","rebond_unval","complete_undel_in_endblock","set_unval_hold_false","set_undel_hold_false","set_undel_hold_false","set_undel_hold_false","set_undel_hold_false","set_undel_hold_false","set_undel_hold_false","set_undel_hold_false","set_undel_hold_false","send_vsc_without_downtime_ack"]},{"meta":{"commit":"7ffd0c04e4205cbc9caf212abfe6c59ee43153bf"},"constants":{"P":"provider","C":"consumer","UNBONDING_SECONDS_P":70,"UNBONDING_SECONDS_C":50,"TRUSTING_SECONDS":49,"NUM_VALIDATORS":4,"MAX_VALIDATORS":2,"SLASH_DOUBLESIGN":0,"SLASH_DOWNTIME":0,"JAIL_SECONDS":999999999999999,"BLOCK_SECONDS":6,"INITIAL_DELEGATOR_TOKENS":10000000000000,"DELEGATE_AMT_MIN":1000,"DELEGATE_AMT_MAX":5000,"UNDELEGATE_AMT_MIN":1000,"UNDELEGATE_AMT_MAX":5000,"ISDOWNTIME_PROBABILITY":0.5,"MAX_NUM_PACKETS_FOR_DELIVER":6},"actions":[{"ix":0,"action":{"kind":"Undelegate","val":0,"amt":2250},"partialState":{"h":1,"t":6,"tokens":[2750,4000,3000,2000],"delegation":[1750,3000,2000,1000],"delegatorTokens":10000000000000}},{"ix":1,"action":{"kind":"Deliver","chain":"consumer","numPackets":3},"partialState":{"h":1,"t":6,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":2,"action":{"kind":"Undelegate","val":0,"amt":3217},"partialState":{"h":1,"t":6,"tokens":[2750,4000,3000,2000],"delegation":[1750,3000,2000,1000],"delegatorTokens":10000000000000}},{"ix":3,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":2,"t":12,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":4,"action":{"kind":"ConsumerSlash","val":2,"infractionHeight":1,"isDowntime":false},"partialState":{"h":2,"t":12,"outstandingDowntime":[false,false,false,false]}},{"ix":5,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":2,"t":12,"tokens":[2750,4000,3000,2000],"delegation":[1750,3000,2000,1000],"delegatorTokens":10000000000000,"jailed":[null,null,null,null],"status":["unbonding","bonded","bonded","unbonded"]}},{"ix":6,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":7,"action":{"kind":"Delegate","val":0,"amt":4672},"partialState":{"h":2,"t":12,"tokens":[7422,4000,3000,2000],"delegation":[6422,3000,2000,1000],"delegatorTokens":9999999995328}},{"ix":8,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":3,"t":18,"tokens":[7422,4000,3000,2000],"delegation":[6422,3000,2000,1000],"delegatorTokens":9999999995328,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonding","unbonded"]}},{"ix":9,"action":{"kind":"Delegate","val":1,"amt":1849},"partialState":{"h":3,"t":18,"tokens":[7422,5849,3000,2000],"delegation":[6422,4849,2000,1000],"delegatorTokens":9999999993479}},{"ix":10,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":4,"t":24,"tokens":[7422,5849,3000,2000],"delegation":[6422,4849,2000,1000],"delegatorTokens":9999999993479,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonding","unbonded"]}},{"ix":11,"action":{"kind":"ConsumerSlash","val":0,"infractionHeight":1,"isDowntime":false},"partialState":{"h":2,"t":12,"outstandingDowntime":[false,false,false,false]}},{"ix":12,"action":{"kind":"Undelegate","val":0,"amt":4860},"partialState":{"h":4,"t":24,"tokens":[2562,5849,3000,2000],"delegation":[1562,4849,2000,1000],"delegatorTokens":9999999993479}},{"ix":13,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":14,"action":{"kind":"Delegate","val":0,"amt":2132},"partialState":{"h":4,"t":24,"tokens":[4694,5849,3000,2000],"delegation":[3694,4849,2000,1000],"delegatorTokens":9999999991347}},{"ix":15,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":5,"t":30,"tokens":[4694,5849,3000,2000],"delegation":[3694,4849,2000,1000],"delegatorTokens":9999999991347,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonding","unbonded"]}},{"ix":16,"action":{"kind":"ConsumerSlash","val":1,"infractionHeight":1,"isDowntime":true},"partialState":{"h":2,"t":12,"outstandingDowntime":[false,true,false,false]}},{"ix":17,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":3,"t":18,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,true,false,false]}},{"ix":18,"action":{"kind":"Deliver","chain":"consumer","numPackets":2},"partialState":{"h":3,"t":18,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,true,false,false]}},{"ix":19,"action":{"kind":"Delegate","val":0,"amt":3999},"partialState":{"h":5,"t":30,"tokens":[8693,5849,3000,2000],"delegation":[7693,4849,2000,1000],"delegatorTokens":9999999987348}},{"ix":20,"action":{"kind":"Deliver","chain":"consumer","numPackets":2},"partialState":{"h":3,"t":18,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,true,false,false]}},{"ix":21,"action":{"kind":"Delegate","val":0,"amt":4850},"partialState":{"h":5,"t":30,"tokens":[13543,5849,3000,2000],"delegation":[12543,4849,2000,1000],"delegatorTokens":9999999982498}},{"ix":22,"action":{"kind":"Delegate","val":2,"amt":1211},"partialState":{"h":5,"t":30,"tokens":[13543,5849,4211,2000],"delegation":[12543,4849,3211,1000],"delegatorTokens":9999999981287}},{"ix":23,"action":{"kind":"Undelegate","val":3,"amt":1002},"partialState":{"h":5,"t":30,"tokens":[13543,5849,4211,2000],"delegation":[12543,4849,3211,1000],"delegatorTokens":9999999981287}},{"ix":24,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":25,"action":{"kind":"Delegate","val":0,"amt":3640},"partialState":{"h":5,"t":30,"tokens":[17183,5849,4211,2000],"delegation":[16183,4849,3211,1000],"delegatorTokens":9999999977647}},{"ix":26,"action":{"kind":"Delegate","val":3,"amt":2512},"partialState":{"h":5,"t":30,"tokens":[17183,5849,4211,4512],"delegation":[16183,4849,3211,3512],"delegatorTokens":9999999975135}},{"ix":27,"action":{"kind":"Delegate","val":2,"amt":4963},"partialState":{"h":5,"t":30,"tokens":[17183,5849,9174,4512],"delegation":[16183,4849,8174,3512],"delegatorTokens":9999999970172}},{"ix":28,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":6,"t":36,"tokens":[17183,5849,9174,4512],"delegation":[16183,4849,8174,3512],"delegatorTokens":9999999970172,"jailed":[null,null,null,null],"status":["bonded","unbonding","bonded","unbonded"]}},{"ix":29,"action":{"kind":"Undelegate","val":0,"amt":1478},"partialState":{"h":6,"t":36,"tokens":[15705,5849,9174,4512],"delegation":[14705,4849,8174,3512],"delegatorTokens":9999999970172}},{"ix":30,"action":{"kind":"Delegate","val":1,"amt":2631},"partialState":{"h":6,"t":36,"tokens":[15705,8480,9174,4512],"delegation":[14705,7480,8174,3512],"delegatorTokens":9999999967541}},{"ix":31,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":7,"t":42,"tokens":[15705,8480,9174,4512],"delegation":[14705,7480,8174,3512],"delegatorTokens":9999999967541,"jailed":[null,null,null,null],"status":["bonded","unbonding","bonded","unbonded"]}},{"ix":32,"action":{"kind":"Deliver","chain":"consumer","numPackets":4},"partialState":{"h":3,"t":18,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,true,false,false]}},{"ix":33,"action":{"kind":"Delegate","val":3,"amt":4964},"partialState":{"h":7,"t":42,"tokens":[15705,8480,9174,9476],"delegation":[14705,7480,8174,8476],"delegatorTokens":9999999962577}},{"ix":34,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":35,"action":{"kind":"Undelegate","val":0,"amt":3637},"partialState":{"h":7,"t":42,"tokens":[12068,8480,9174,9476],"delegation":[11068,7480,8174,8476],"delegatorTokens":9999999962577}},{"ix":36,"action":{"kind":"Delegate","val":3,"amt":1885},"partialState":{"h":7,"t":42,"tokens":[12068,8480,9174,11361],"delegation":[11068,7480,8174,10361],"delegatorTokens":9999999960692}},{"ix":37,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":8,"t":48,"tokens":[12068,8480,9174,11361],"delegation":[11068,7480,8174,10361],"delegatorTokens":9999999960692,"jailed":[null,null,null,null],"status":["bonded","unbonding","unbonding","bonded"]}},{"ix":38,"action":{"kind":"Delegate","val":1,"amt":4756},"partialState":{"h":8,"t":48,"tokens":[12068,13236,9174,11361],"delegation":[11068,12236,8174,10361],"delegatorTokens":9999999955936}},{"ix":39,"action":{"kind":"Deliver","chain":"provider","numPackets":4},"partialState":{"h":8,"t":48,"tokens":[12068,13236,9174,11361],"delegation":[11068,12236,8174,10361],"delegatorTokens":9999999955936,"jailed":[null,null,null,null],"status":["bonded","unbonding","unbonding","bonded"]}},{"ix":40,"action":{"kind":"Deliver","chain":"provider","numPackets":2},"partialState":{"h":8,"t":48,"tokens":[12068,13236,9174,11361],"delegation":[11068,12236,8174,10361],"delegatorTokens":9999999955936,"jailed":[null,null,null,null],"status":["bonded","unbonding","unbonding","bonded"]}},{"ix":41,"action":{"kind":"Delegate","val":1,"amt":3643},"partialState":{"h":8,"t":48,"tokens":[12068,16879,9174,11361],"delegation":[11068,15879,8174,10361],"delegatorTokens":9999999952293}},{"ix":42,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":4,"t":24,"consumerPower":[17183,null,9174,null],"outstandingDowntime":[false,true,false,false]}},{"ix":43,"action":{"kind":"Undelegate","val":0,"amt":1669},"partialState":{"h":8,"t":48,"tokens":[10399,16879,9174,11361],"delegation":[9399,15879,8174,10361],"delegatorTokens":9999999952293}},{"ix":44,"action":{"kind":"Deliver","chain":"consumer","numPackets":1},"partialState":{"h":4,"t":24,"consumerPower":[17183,null,9174,null],"outstandingDowntime":[false,true,false,false]}},{"ix":45,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":9,"t":54,"tokens":[10399,16879,9174,11361],"delegation":[9399,15879,8174,10361],"delegatorTokens":9999999952293,"jailed":[null,null,null,null],"status":["unbonding","bonded","unbonding","bonded"]}},{"ix":46,"action":{"kind":"Delegate","val":0,"amt":2623},"partialState":{"h":9,"t":54,"tokens":[13022,16879,9174,11361],"delegation":[12022,15879,8174,10361],"delegatorTokens":9999999949670}},{"ix":47,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":5,"t":30,"consumerPower":[15705,null,9174,null],"outstandingDowntime":[false,true,false,false]}},{"ix":48,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":49,"action":{"kind":"Deliver","chain":"consumer","numPackets":1},"partialState":{"h":5,"t":30,"consumerPower":[15705,null,9174,null],"outstandingDowntime":[false,true,false,false]}},{"ix":50,"action":{"kind":"Deliver","chain":"consumer","numPackets":1},"partialState":{"h":5,"t":30,"consumerPower":[15705,null,9174,null],"outstandingDowntime":[false,true,false,false]}},{"ix":51,"action":{"kind":"Undelegate","val":0,"amt":4961},"partialState":{"h":9,"t":54,"tokens":[8061,16879,9174,11361],"delegation":[7061,15879,8174,10361],"delegatorTokens":9999999949670}},{"ix":52,"action":{"kind":"Deliver","chain":"provider","numPackets":2},"partialState":{"h":9,"t":54,"tokens":[8061,16879,9174,11361],"delegation":[7061,15879,8174,10361],"delegatorTokens":9999999949670,"jailed":[null,null,null,null],"status":["unbonding","bonded","unbonding","bonded"]}},{"ix":53,"action":{"kind":"Deliver","chain":"provider","numPackets":1},"partialState":{"h":9,"t":54,"tokens":[8061,16879,9174,11361],"delegation":[7061,15879,8174,10361],"delegatorTokens":9999999949670,"jailed":[null,null,null,null],"status":["unbonding","bonded","unbonding","bonded"]}},{"ix":54,"action":{"kind":"Undelegate","val":3,"amt":3702},"partialState":{"h":9,"t":54,"tokens":[8061,16879,9174,7659],"delegation":[7061,15879,8174,6659],"delegatorTokens":9999999949670}},{"ix":55,"action":{"kind":"Undelegate","val":0,"amt":1965},"partialState":{"h":9,"t":54,"tokens":[6096,16879,9174,7659],"delegation":[5096,15879,8174,6659],"delegatorTokens":9999999949670}},{"ix":56,"action":{"kind":"Deliver","chain":"consumer","numPackets":2},"partialState":{"h":5,"t":30,"consumerPower":[15705,null,9174,null],"outstandingDowntime":[false,true,false,false]}},{"ix":57,"action":{"kind":"Undelegate","val":1,"amt":4362},"partialState":{"h":9,"t":54,"tokens":[6096,12517,9174,7659],"delegation":[5096,11517,8174,6659],"delegatorTokens":9999999949670}},{"ix":58,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":6,"t":36,"consumerPower":[12068,null,null,11361],"outstandingDowntime":[false,true,false,false]}},{"ix":59,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":7,"t":42,"consumerPower":[12068,null,null,11361],"outstandingDowntime":[false,true,false,false]}},{"ix":60,"action":{"kind":"Delegate","val":2,"amt":1323},"partialState":{"h":9,"t":54,"tokens":[6096,12517,10497,7659],"delegation":[5096,11517,9497,6659],"delegatorTokens":9999999948347}},{"ix":61,"action":{"kind":"Undelegate","val":3,"amt":4434},"partialState":{"h":9,"t":54,"tokens":[6096,12517,10497,3225],"delegation":[5096,11517,9497,2225],"delegatorTokens":9999999948347}},{"ix":62,"action":{"kind":"Deliver","chain":"provider","numPackets":5},"partialState":{"h":9,"t":54,"tokens":[6096,12517,10497,3225],"delegation":[5096,11517,9497,2225],"delegatorTokens":9999999948347,"jailed":[null,null,null,null],"status":["unbonding","bonded","unbonding","bonded"]}},{"ix":63,"action":{"kind":"Delegate","val":0,"amt":3741},"partialState":{"h":9,"t":54,"tokens":[9837,12517,10497,3225],"delegation":[8837,11517,9497,2225],"delegatorTokens":9999999944606}},{"ix":64,"action":{"kind":"Undelegate","val":2,"amt":3456},"partialState":{"h":9,"t":54,"tokens":[9837,12517,7041,3225],"delegation":[8837,11517,6041,2225],"delegatorTokens":9999999944606}},{"ix":65,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":66,"action":{"kind":"Undelegate","val":0,"amt":4394},"partialState":{"h":9,"t":54,"tokens":[5443,12517,7041,3225],"delegation":[4443,11517,6041,2225],"delegatorTokens":9999999944606}},{"ix":67,"action":{"kind":"Deliver","chain":"provider","numPackets":4},"partialState":{"h":9,"t":54,"tokens":[5443,12517,7041,3225],"delegation":[4443,11517,6041,2225],"delegatorTokens":9999999944606,"jailed":[null,null,null,null],"status":["unbonding","bonded","unbonding","bonded"]}},{"ix":68,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":69,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":70,"action":{"kind":"Undelegate","val":2,"amt":2977},"partialState":{"h":9,"t":54,"tokens":[5443,12517,4064,3225],"delegation":[4443,11517,3064,2225],"delegatorTokens":9999999944606}},{"ix":71,"action":{"kind":"Undelegate","val":0,"amt":3030},"partialState":{"h":9,"t":54,"tokens":[2413,12517,4064,3225],"delegation":[1413,11517,3064,2225],"delegatorTokens":9999999944606}},{"ix":72,"action":{"kind":"Undelegate","val":0,"amt":1614},"partialState":{"h":9,"t":54,"tokens":[2413,12517,4064,3225],"delegation":[1413,11517,3064,2225],"delegatorTokens":9999999944606}},{"ix":73,"action":{"kind":"Undelegate","val":3,"amt":4498},"partialState":{"h":9,"t":54,"tokens":[2413,12517,4064,3225],"delegation":[1413,11517,3064,2225],"delegatorTokens":9999999944606}},{"ix":74,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":75,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":8,"t":48,"consumerPower":[12068,null,null,11361],"outstandingDowntime":[false,true,false,false]}},{"ix":76,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":77,"action":{"kind":"Undelegate","val":0,"amt":4032},"partialState":{"h":9,"t":54,"tokens":[2413,12517,4064,3225],"delegation":[1413,11517,3064,2225],"delegatorTokens":9999999944606}},{"ix":78,"action":{"kind":"Deliver","chain":"consumer","numPackets":4},"partialState":{"h":8,"t":48,"consumerPower":[12068,null,null,11361],"outstandingDowntime":[false,true,false,false]}},{"ix":79,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":80,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":10,"t":60,"tokens":[2413,12517,4064,3225],"delegation":[1413,11517,3064,2225],"delegatorTokens":9999999944606,"jailed":[null,1000000000000053,null,null],"status":["unbonding","bonded","bonded","unbonding"]}},{"ix":81,"action":{"kind":"Undelegate","val":2,"amt":2766},"partialState":{"h":10,"t":60,"tokens":[2413,12517,1298,3225],"delegation":[1413,11517,298,2225],"delegatorTokens":9999999944606}},{"ix":82,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":9,"t":54,"consumerPower":[12068,null,null,11361],"outstandingDowntime":[false,true,false,false]}},{"ix":83,"action":{"kind":"Delegate","val":3,"amt":3069},"partialState":{"h":10,"t":60,"tokens":[2413,12517,1298,6294],"delegation":[1413,11517,298,5294],"delegatorTokens":9999999941537}},{"ix":84,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":11,"t":66,"tokens":[2413,12517,1298,6294],"delegation":[1413,11517,298,5294],"delegatorTokens":9999999941537,"jailed":[null,1000000000000053,null,null],"status":["bonded","unbonding","unbonding","bonded"]}},{"ix":85,"action":{"kind":"Deliver","chain":"consumer","numPackets":6},"partialState":{"h":9,"t":54,"consumerPower":[12068,null,null,11361],"outstandingDowntime":[false,false,false,false]}},{"ix":86,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":87,"action":{"kind":"Undelegate","val":0,"amt":3178},"partialState":{"h":11,"t":66,"tokens":[2413,12517,1298,6294],"delegation":[1413,11517,298,5294],"delegatorTokens":9999999941537}},{"ix":88,"action":{"kind":"Undelegate","val":3,"amt":3578},"partialState":{"h":11,"t":66,"tokens":[2413,12517,1298,2716],"delegation":[1413,11517,298,1716],"delegatorTokens":9999999941537}},{"ix":89,"action":{"kind":"Undelegate","val":0,"amt":3911},"partialState":{"h":11,"t":66,"tokens":[2413,12517,1298,2716],"delegation":[1413,11517,298,1716],"delegatorTokens":9999999941537}},{"ix":90,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":10,"t":60,"consumerPower":[null,12517,4064,null],"outstandingDowntime":[false,false,false,false]}},{"ix":91,"action":{"kind":"Delegate","val":1,"amt":1599},"partialState":{"h":11,"t":66,"tokens":[2413,14116,1298,2716],"delegation":[1413,13116,298,1716],"delegatorTokens":9999999939938}},{"ix":92,"action":{"kind":"Undelegate","val":0,"amt":4450},"partialState":{"h":11,"t":66,"tokens":[2413,14116,1298,2716],"delegation":[1413,13116,298,1716],"delegatorTokens":9999999939938}},{"ix":93,"action":{"kind":"Deliver","chain":"provider","numPackets":5},"partialState":{"h":11,"t":66,"tokens":[2413,14116,1298,2716],"delegation":[1413,13116,298,1716],"delegatorTokens":9999999939938,"jailed":[null,1000000000000053,null,null],"status":["bonded","unbonding","unbonding","bonded"]}},{"ix":94,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":12,"t":72,"tokens":[2413,14116,1298,2716],"delegation":[1413,13116,298,1716],"delegatorTokens":9999999939938,"jailed":[null,1000000000000053,null,null],"status":["bonded","unbonding","unbonding","bonded"]}},{"ix":95,"action":{"kind":"Deliver","chain":"provider","numPackets":6},"partialState":{"h":12,"t":72,"tokens":[2413,14116,1298,2716],"delegation":[1413,13116,298,1716],"delegatorTokens":9999999939938,"jailed":[null,1000000000000053,null,null],"status":["bonded","unbonding","unbonding","bonded"]}},{"ix":96,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":97,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":13,"t":78,"tokens":[2413,14116,1298,2716],"delegation":[1413,13116,298,1716],"delegatorTokens":9999999939938,"jailed":[null,1000000000000053,null,null],"status":["bonded","unbonding","unbonding","bonded"]}},{"ix":98,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":99,"action":{"kind":"Delegate","val":0,"amt":2329},"partialState":{"h":13,"t":78,"tokens":[4742,14116,1298,2716],"delegation":[3742,13116,298,1716],"delegatorTokens":9999999937609}},{"ix":100,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":14,"t":84,"tokens":[4742,14116,1298,2716],"delegation":[3742,13116,298,1716],"delegatorTokens":9999999937609,"jailed":[null,1000000000000053,null,null],"status":["bonded","unbonding","unbonding","bonded"]}},{"ix":101,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":102,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":11,"t":66,"consumerPower":[null,12517,4064,null],"outstandingDowntime":[false,false,false,false]}},{"ix":103,"action":{"kind":"Deliver","chain":"provider","numPackets":6},"partialState":{"h":14,"t":84,"tokens":[4742,14116,1298,2716],"delegation":[3742,13116,298,1716],"delegatorTokens":9999999937609,"jailed":[null,1000000000000053,null,null],"status":["bonded","unbonding","unbonding","bonded"]}},{"ix":104,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":12,"t":72,"consumerPower":[null,12517,4064,null],"outstandingDowntime":[false,false,false,false]}},{"ix":105,"action":{"kind":"Delegate","val":3,"amt":4699},"partialState":{"h":14,"t":84,"tokens":[4742,14116,1298,7415],"delegation":[3742,13116,298,6415],"delegatorTokens":9999999932910}},{"ix":106,"action":{"kind":"Deliver","chain":"provider","numPackets":5},"partialState":{"h":14,"t":84,"tokens":[4742,14116,1298,7415],"delegation":[3742,13116,298,6415],"delegatorTokens":9999999932910,"jailed":[null,1000000000000053,null,null],"status":["bonded","unbonding","unbonding","bonded"]}},{"ix":107,"action":{"kind":"Deliver","chain":"provider","numPackets":4},"partialState":{"h":14,"t":84,"tokens":[4742,14116,1298,7415],"delegation":[3742,13116,298,6415],"delegatorTokens":9999999932910,"jailed":[null,1000000000000053,null,null],"status":["bonded","unbonding","unbonding","bonded"]}},{"ix":108,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":109,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":110,"action":{"kind":"Undelegate","val":1,"amt":2482},"partialState":{"h":14,"t":84,"tokens":[4742,11634,1298,7415],"delegation":[3742,10634,298,6415],"delegatorTokens":9999999932910}},{"ix":111,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":112,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":15,"t":90,"tokens":[4742,11634,1298,7415],"delegation":[3742,10634,298,6415],"delegatorTokens":9999999932910,"jailed":[null,1000000000000053,null,null],"status":["bonded","unbonding","unbonding","bonded"]}},{"ix":113,"action":{"kind":"Deliver","chain":"consumer","numPackets":4},"partialState":{"h":12,"t":72,"consumerPower":[null,12517,4064,null],"outstandingDowntime":[false,false,false,false]}},{"ix":114,"action":{"kind":"Undelegate","val":3,"amt":1435},"partialState":{"h":15,"t":90,"tokens":[4742,11634,1298,5980],"delegation":[3742,10634,298,4980],"delegatorTokens":9999999932910}},{"ix":115,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":16,"t":96,"tokens":[4742,11634,1298,5980],"delegation":[3742,10634,298,4980],"delegatorTokens":9999999932910,"jailed":[null,1000000000000053,null,null],"status":["bonded","unbonding","unbonding","bonded"]}},{"ix":116,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":13,"t":78,"consumerPower":[4742,null,null,2716],"outstandingDowntime":[false,false,false,false]}},{"ix":117,"action":{"kind":"Deliver","chain":"consumer","numPackets":6},"partialState":{"h":13,"t":78,"consumerPower":[4742,null,null,2716],"outstandingDowntime":[false,false,false,false]}},{"ix":118,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":14,"t":84,"consumerPower":[4742,null,null,7415],"outstandingDowntime":[false,false,false,false]}},{"ix":119,"action":{"kind":"Deliver","chain":"provider","numPackets":5},"partialState":{"h":16,"t":96,"tokens":[4742,11634,1298,5980],"delegation":[3742,10634,298,4980],"delegatorTokens":9999999932910,"jailed":[null,1000000000000053,null,null],"status":["bonded","unbonding","unbonding","bonded"]}},{"ix":120,"action":{"kind":"Deliver","chain":"consumer","numPackets":2},"partialState":{"h":14,"t":84,"consumerPower":[4742,null,null,7415],"outstandingDowntime":[false,false,false,false]}},{"ix":121,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":122,"action":{"kind":"Undelegate","val":1,"amt":2307},"partialState":{"h":16,"t":96,"tokens":[4742,9327,1298,5980],"delegation":[3742,8327,298,4980],"delegatorTokens":9999999932910}},{"ix":123,"action":{"kind":"Delegate","val":2,"amt":4495},"partialState":{"h":16,"t":96,"tokens":[4742,9327,5793,5980],"delegation":[3742,8327,4793,4980],"delegatorTokens":9999999928415}},{"ix":124,"action":{"kind":"Undelegate","val":1,"amt":4467},"partialState":{"h":16,"t":96,"tokens":[4742,4860,5793,5980],"delegation":[3742,3860,4793,4980],"delegatorTokens":9999999928415}},{"ix":125,"action":{"kind":"Deliver","chain":"provider","numPackets":4},"partialState":{"h":16,"t":96,"tokens":[4742,4860,5793,5980],"delegation":[3742,3860,4793,4980],"delegatorTokens":9999999928415,"jailed":[null,1000000000000053,null,null],"status":["bonded","unbonding","unbonding","bonded"]}},{"ix":126,"action":{"kind":"Delegate","val":0,"amt":4120},"partialState":{"h":16,"t":96,"tokens":[8862,4860,5793,5980],"delegation":[7862,3860,4793,4980],"delegatorTokens":9999999924295}},{"ix":127,"action":{"kind":"Deliver","chain":"provider","numPackets":1},"partialState":{"h":16,"t":96,"tokens":[8862,4860,5793,5980],"delegation":[7862,3860,4793,4980],"delegatorTokens":9999999924295,"jailed":[null,1000000000000053,null,null],"status":["bonded","unbonding","unbonding","bonded"]}},{"ix":128,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":129,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":15,"t":90,"consumerPower":[4742,null,null,7415],"outstandingDowntime":[false,false,false,false]}},{"ix":130,"action":{"kind":"Undelegate","val":0,"amt":4579},"partialState":{"h":16,"t":96,"tokens":[4283,4860,5793,5980],"delegation":[3283,3860,4793,4980],"delegatorTokens":9999999924295}},{"ix":131,"action":{"kind":"Undelegate","val":1,"amt":4308},"partialState":{"h":16,"t":96,"tokens":[4283,4860,5793,5980],"delegation":[3283,3860,4793,4980],"delegatorTokens":9999999924295}},{"ix":132,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":17,"t":102,"tokens":[4283,4860,5793,5980],"delegation":[3283,3860,4793,4980],"delegatorTokens":9999999931405,"jailed":[null,1000000000000053,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":133,"action":{"kind":"Delegate","val":0,"amt":1114},"partialState":{"h":17,"t":102,"tokens":[5397,4860,5793,5980],"delegation":[4397,3860,4793,4980],"delegatorTokens":9999999930291}},{"ix":134,"action":{"kind":"Undelegate","val":1,"amt":3074},"partialState":{"h":17,"t":102,"tokens":[5397,1786,5793,5980],"delegation":[4397,786,4793,4980],"delegatorTokens":9999999930291}},{"ix":135,"action":{"kind":"Deliver","chain":"provider","numPackets":5},"partialState":{"h":17,"t":102,"tokens":[5397,1786,5793,5980],"delegation":[4397,786,4793,4980],"delegatorTokens":9999999930291,"jailed":[null,1000000000000053,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":136,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":18,"t":108,"tokens":[5397,1786,5793,5980],"delegation":[4397,786,4793,4980],"delegatorTokens":9999999930291,"jailed":[null,1000000000000053,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":137,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":16,"t":96,"consumerPower":[4742,null,null,7415],"outstandingDowntime":[false,false,false,false]}},{"ix":138,"action":{"kind":"Undelegate","val":3,"amt":1886},"partialState":{"h":18,"t":108,"tokens":[5397,1786,5793,4094],"delegation":[4397,786,4793,3094],"delegatorTokens":9999999930291}},{"ix":139,"action":{"kind":"Delegate","val":2,"amt":2645},"partialState":{"h":18,"t":108,"tokens":[5397,1786,8438,4094],"delegation":[4397,786,7438,3094],"delegatorTokens":9999999927646}},{"ix":140,"action":{"kind":"Deliver","chain":"consumer","numPackets":4},"partialState":{"h":16,"t":96,"consumerPower":[4742,null,null,7415],"outstandingDowntime":[false,false,false,false]}},{"ix":141,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":142,"action":{"kind":"Deliver","chain":"consumer","numPackets":5},"partialState":{"h":16,"t":96,"consumerPower":[4742,null,null,7415],"outstandingDowntime":[false,false,false,false]}},{"ix":143,"action":{"kind":"Undelegate","val":1,"amt":2466},"partialState":{"h":18,"t":108,"tokens":[5397,1786,8438,4094],"delegation":[4397,786,7438,3094],"delegatorTokens":9999999927646}},{"ix":144,"action":{"kind":"Undelegate","val":2,"amt":1300},"partialState":{"h":18,"t":108,"tokens":[5397,1786,7138,4094],"delegation":[4397,786,6138,3094],"delegatorTokens":9999999927646}},{"ix":145,"action":{"kind":"Deliver","chain":"provider","numPackets":5},"partialState":{"h":18,"t":108,"tokens":[5397,1786,7138,4094],"delegation":[4397,786,6138,3094],"delegatorTokens":9999999927646,"jailed":[null,1000000000000053,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":146,"action":{"kind":"Undelegate","val":0,"amt":1454},"partialState":{"h":18,"t":108,"tokens":[3943,1786,7138,4094],"delegation":[2943,786,6138,3094],"delegatorTokens":9999999927646}},{"ix":147,"action":{"kind":"Deliver","chain":"consumer","numPackets":6},"partialState":{"h":16,"t":96,"consumerPower":[4742,null,null,7415],"outstandingDowntime":[false,false,false,false]}},{"ix":148,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":149,"action":{"kind":"Delegate","val":0,"amt":3204},"partialState":{"h":18,"t":108,"tokens":[7147,1786,7138,4094],"delegation":[6147,786,6138,3094],"delegatorTokens":9999999924442}},{"ix":150,"action":{"kind":"Deliver","chain":"provider","numPackets":5},"partialState":{"h":18,"t":108,"tokens":[7147,1786,7138,4094],"delegation":[6147,786,6138,3094],"delegatorTokens":9999999924442,"jailed":[null,1000000000000053,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":151,"action":{"kind":"Delegate","val":1,"amt":1880},"partialState":{"h":18,"t":108,"tokens":[7147,3666,7138,4094],"delegation":[6147,2666,6138,3094],"delegatorTokens":9999999922562}},{"ix":152,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":17,"t":102,"consumerPower":[null,null,5793,5980],"outstandingDowntime":[false,false,false,false]}},{"ix":153,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":18,"t":108,"consumerPower":[null,null,5793,5980],"outstandingDowntime":[false,false,false,false]}},{"ix":154,"action":{"kind":"Undelegate","val":3,"amt":2922},"partialState":{"h":18,"t":108,"tokens":[7147,3666,7138,1172],"delegation":[6147,2666,6138,172],"delegatorTokens":9999999922562}},{"ix":155,"action":{"kind":"Undelegate","val":2,"amt":1472},"partialState":{"h":18,"t":108,"tokens":[7147,3666,5666,1172],"delegation":[6147,2666,4666,172],"delegatorTokens":9999999922562}},{"ix":156,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":19,"t":114,"consumerPower":[null,null,5793,5980],"outstandingDowntime":[false,false,false,false]}},{"ix":157,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":19,"t":114,"tokens":[7147,3666,5666,1172],"delegation":[6147,2666,4666,172],"delegatorTokens":9999999924040,"jailed":[null,1000000000000053,null,null],"status":["bonded","unbonding","bonded","unbonding"]}},{"ix":158,"action":{"kind":"Deliver","chain":"consumer","numPackets":6},"partialState":{"h":19,"t":114,"consumerPower":[null,null,5793,5980],"outstandingDowntime":[false,false,false,false]}},{"ix":159,"action":{"kind":"Delegate","val":0,"amt":4725},"partialState":{"h":19,"t":114,"tokens":[11872,3666,5666,1172],"delegation":[10872,2666,4666,172],"delegatorTokens":9999999919315}},{"ix":160,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":161,"action":{"kind":"Undelegate","val":0,"amt":4173},"partialState":{"h":19,"t":114,"tokens":[7699,3666,5666,1172],"delegation":[6699,2666,4666,172],"delegatorTokens":9999999919315}},{"ix":162,"action":{"kind":"Delegate","val":1,"amt":2352},"partialState":{"h":19,"t":114,"tokens":[7699,6018,5666,1172],"delegation":[6699,5018,4666,172],"delegatorTokens":9999999916963}},{"ix":163,"action":{"kind":"Deliver","chain":"consumer","numPackets":5},"partialState":{"h":19,"t":114,"consumerPower":[null,null,5793,5980],"outstandingDowntime":[false,false,false,false]}},{"ix":164,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":20,"t":120,"tokens":[7699,6018,5666,1172],"delegation":[6699,5018,4666,172],"delegatorTokens":9999999920600,"jailed":[null,1000000000000053,null,null],"status":["bonded","unbonding","bonded","unbonding"]}},{"ix":165,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":20,"t":120,"consumerPower":[null,null,5793,5980],"outstandingDowntime":[false,false,false,false]}},{"ix":166,"action":{"kind":"Undelegate","val":2,"amt":1344},"partialState":{"h":20,"t":120,"tokens":[7699,6018,4322,1172],"delegation":[6699,5018,3322,172],"delegatorTokens":9999999920600}},{"ix":167,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":168,"action":{"kind":"Deliver","chain":"provider","numPackets":2},"partialState":{"h":20,"t":120,"tokens":[7699,6018,4322,1172],"delegation":[6699,5018,3322,172],"delegatorTokens":9999999920600,"jailed":[null,1000000000000053,null,null],"status":["bonded","unbonding","bonded","unbonding"]}},{"ix":169,"action":{"kind":"Delegate","val":3,"amt":2850},"partialState":{"h":20,"t":120,"tokens":[7699,6018,4322,4022],"delegation":[6699,5018,3322,3022],"delegatorTokens":9999999917750}},{"ix":170,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":21,"t":126,"consumerPower":[null,null,5793,5980],"outstandingDowntime":[false,false,false,false]}},{"ix":171,"action":{"kind":"Deliver","chain":"consumer","numPackets":2},"partialState":{"h":21,"t":126,"consumerPower":[null,null,5793,5980],"outstandingDowntime":[false,false,false,false]}},{"ix":172,"action":{"kind":"Delegate","val":0,"amt":2798},"partialState":{"h":20,"t":120,"tokens":[10497,6018,4322,4022],"delegation":[9497,5018,3322,3022],"delegatorTokens":9999999914952}},{"ix":173,"action":{"kind":"Delegate","val":1,"amt":2285},"partialState":{"h":20,"t":120,"tokens":[10497,8303,4322,4022],"delegation":[9497,7303,3322,3022],"delegatorTokens":9999999912667}},{"ix":174,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":175,"action":{"kind":"Undelegate","val":0,"amt":4994},"partialState":{"h":20,"t":120,"tokens":[5503,8303,4322,4022],"delegation":[4503,7303,3322,3022],"delegatorTokens":9999999912667}},{"ix":176,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":177,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":21,"t":126,"tokens":[5503,8303,4322,4022],"delegation":[4503,7303,3322,3022],"delegatorTokens":9999999914336,"jailed":[null,1000000000000053,null,null],"status":["bonded","unbonding","bonded","unbonding"]}},{"ix":178,"action":{"kind":"Undelegate","val":2,"amt":1788},"partialState":{"h":21,"t":126,"tokens":[5503,8303,2534,4022],"delegation":[4503,7303,1534,3022],"delegatorTokens":9999999914336}},{"ix":179,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":22,"t":132,"tokens":[5503,8303,2534,4022],"delegation":[4503,7303,1534,3022],"delegatorTokens":9999999947617,"jailed":[null,1000000000000053,null,null],"status":["bonded","unbonding","unbonding","bonded"]}},{"ix":180,"action":{"kind":"Undelegate","val":0,"amt":1340},"partialState":{"h":22,"t":132,"tokens":[4163,8303,2534,4022],"delegation":[3163,7303,1534,3022],"delegatorTokens":9999999947617}},{"ix":181,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":23,"t":138,"tokens":[4163,8303,2534,4022],"delegation":[3163,7303,1534,3022],"delegatorTokens":9999999947617,"jailed":[null,1000000000000053,null,null],"status":["bonded","unbonding","unbonding","bonded"]}},{"ix":182,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":22,"t":132,"consumerPower":[7147,null,5666,null],"outstandingDowntime":[false,false,false,false]}},{"ix":183,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":184,"action":{"kind":"Delegate","val":0,"amt":2758},"partialState":{"h":23,"t":138,"tokens":[6921,8303,2534,4022],"delegation":[5921,7303,1534,3022],"delegatorTokens":9999999944859}},{"ix":185,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":23,"t":138,"consumerPower":[7147,null,5666,null],"outstandingDowntime":[false,false,false,false]}},{"ix":186,"action":{"kind":"Delegate","val":3,"amt":4700},"partialState":{"h":23,"t":138,"tokens":[6921,8303,2534,8722],"delegation":[5921,7303,1534,7722],"delegatorTokens":9999999940159}},{"ix":187,"action":{"kind":"Undelegate","val":1,"amt":1808},"partialState":{"h":23,"t":138,"tokens":[6921,6495,2534,8722],"delegation":[5921,5495,1534,7722],"delegatorTokens":9999999940159}},{"ix":188,"action":{"kind":"Delegate","val":2,"amt":3095},"partialState":{"h":23,"t":138,"tokens":[6921,6495,5629,8722],"delegation":[5921,5495,4629,7722],"delegatorTokens":9999999937064}},{"ix":189,"action":{"kind":"Deliver","chain":"provider","numPackets":5},"partialState":{"h":23,"t":138,"tokens":[6921,6495,5629,8722],"delegation":[5921,5495,4629,7722],"delegatorTokens":9999999937064,"jailed":[null,1000000000000053,null,null],"status":["bonded","unbonding","unbonding","bonded"]}},{"ix":190,"action":{"kind":"Undelegate","val":2,"amt":3054},"partialState":{"h":23,"t":138,"tokens":[6921,6495,2575,8722],"delegation":[5921,5495,1575,7722],"delegatorTokens":9999999937064}},{"ix":191,"action":{"kind":"Deliver","chain":"consumer","numPackets":2},"partialState":{"h":23,"t":138,"consumerPower":[7147,null,5666,null],"outstandingDowntime":[false,false,false,false]}},{"ix":192,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":193,"action":{"kind":"Delegate","val":3,"amt":4042},"partialState":{"h":23,"t":138,"tokens":[6921,6495,2575,12764],"delegation":[5921,5495,1575,11764],"delegatorTokens":9999999933022}},{"ix":194,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":195,"action":{"kind":"Delegate","val":1,"amt":4054},"partialState":{"h":23,"t":138,"tokens":[6921,10549,2575,12764],"delegation":[5921,9549,1575,11764],"delegatorTokens":9999999928968}},{"ix":196,"action":{"kind":"Deliver","chain":"consumer","numPackets":3},"partialState":{"h":23,"t":138,"consumerPower":[7147,null,5666,null],"outstandingDowntime":[false,false,false,false]}},{"ix":197,"action":{"kind":"Delegate","val":1,"amt":4455},"partialState":{"h":23,"t":138,"tokens":[6921,15004,2575,12764],"delegation":[5921,14004,1575,11764],"delegatorTokens":9999999924513}},{"ix":198,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":199,"action":{"kind":"Deliver","chain":"provider","numPackets":6},"partialState":{"h":23,"t":138,"tokens":[6921,15004,2575,12764],"delegation":[5921,14004,1575,11764],"delegatorTokens":9999999924513,"jailed":[null,1000000000000053,null,null],"status":["bonded","unbonding","unbonding","bonded"]}}],"events":["insufficient_shares","send_double_sign_slash_request","more_than_one_third_val_power_change","send_vsc_without_downtime_ack","more_than_one_third_val_power_change","rebond_unval","send_vsc_without_downtime_ack","send_vsc_without_downtime_ack","send_double_sign_slash_request","send_vsc_without_downtime_ack","send_downtime_slash_request","insufficient_shares","more_than_one_third_val_power_change","rebond_unval","send_vsc_without_downtime_ack","send_vsc_without_downtime_ack","more_than_one_third_val_power_change","send_vsc_without_downtime_ack","consumer_update_val","consumer_add_val","consumer_del_val","more_than_one_third_val_power_change","rebond_unval","send_vsc_without_downtime_ack","consumer_update_val","receive_double_sign_slash_request","receive_double_sign_slash_request","consumer_update_val","consumer_del_val","consumer_add_val","insufficient_shares","insufficient_shares","insufficient_shares","rebond_unval","receive_downtime_slash_request","jail","send_vsc_with_downtime_ack","more_than_one_third_val_power_change","rebond_unval","rebond_unval","send_vsc_without_downtime_ack","receive_downtime_slash_ack","insufficient_shares","insufficient_shares","consumer_del_val","consumer_add_val","consumer_add_val","consumer_del_val","insufficient_shares","send_vsc_without_downtime_ack","some_undels_expired_but_not_completed","send_vsc_without_downtime_ack","send_vsc_without_downtime_ack","send_vsc_without_downtime_ack","consumer_send_maturation","consumer_send_maturation","consumer_send_maturation","consumer_send_maturation","consumer_send_maturation","consumer_add_val","consumer_del_val","consumer_del_val","consumer_add_val","consumer_send_maturation","consumer_update_val","consumer_send_maturation","insufficient_shares","more_than_one_third_val_power_change","rebond_unval","some_undels_expired_but_not_completed","complete_undel_immediate","complete_undel_immediate","send_vsc_without_downtime_ack","set_undel_hold_false","send_vsc_not_because_change","send_vsc_without_downtime_ack","insufficient_shares","consumer_update_val","consumer_del_val","consumer_add_val","consumer_send_maturation","consumer_send_maturation","more_than_one_third_val_power_change","rebond_unval","complete_undel_in_endblock","set_undel_hold_false","send_vsc_without_downtime_ack","complete_undel_in_endblock","send_vsc_without_downtime_ack","some_undels_expired_but_not_completed","complete_undel_immediate","set_undel_hold_false","set_undel_hold_false","set_undel_hold_false","set_undel_hold_false","set_undel_hold_false","set_undel_hold_false","set_undel_hold_false","set_undel_hold_false","set_undel_hold_false","send_vsc_without_downtime_ack","more_than_one_third_val_power_change","rebond_unval","complete_undel_in_endblock","send_vsc_without_downtime_ack","some_undels_expired_but_not_completed","send_vsc_without_downtime_ack","consumer_send_maturation","consumer_send_maturation","consumer_send_maturation","consumer_add_val","consumer_update_val","consumer_del_val","consumer_send_maturation"]},{"meta":{"commit":"7ffd0c04e4205cbc9caf212abfe6c59ee43153bf"},"constants":{"P":"provider","C":"consumer","UNBONDING_SECONDS_P":70,"UNBONDING_SECONDS_C":50,"TRUSTING_SECONDS":49,"NUM_VALIDATORS":4,"MAX_VALIDATORS":2,"SLASH_DOUBLESIGN":0,"SLASH_DOWNTIME":0,"JAIL_SECONDS":999999999999999,"BLOCK_SECONDS":6,"INITIAL_DELEGATOR_TOKENS":10000000000000,"DELEGATE_AMT_MIN":1000,"DELEGATE_AMT_MAX":5000,"UNDELEGATE_AMT_MIN":1000,"UNDELEGATE_AMT_MAX":5000,"ISDOWNTIME_PROBABILITY":0.5,"MAX_NUM_PACKETS_FOR_DELIVER":6},"actions":[{"ix":0,"action":{"kind":"Deliver","chain":"provider","numPackets":6},"partialState":{"h":1,"t":6,"tokens":[5000,4000,3000,2000],"delegation":[4000,3000,2000,1000],"delegatorTokens":10000000000000,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":1,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":2,"t":12,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":2,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":2,"t":12,"tokens":[5000,4000,3000,2000],"delegation":[4000,3000,2000,1000],"delegatorTokens":10000000000000,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":3,"action":{"kind":"Undelegate","val":2,"amt":1476},"partialState":{"h":2,"t":12,"tokens":[5000,4000,1524,2000],"delegation":[4000,3000,524,1000],"delegatorTokens":10000000000000}},{"ix":4,"action":{"kind":"ConsumerSlash","val":2,"infractionHeight":1,"isDowntime":true},"partialState":{"h":2,"t":12,"outstandingDowntime":[false,false,true,false]}},{"ix":5,"action":{"kind":"Deliver","chain":"provider","numPackets":4},"partialState":{"h":2,"t":12,"tokens":[5000,4000,1524,2000],"delegation":[4000,3000,524,1000],"delegatorTokens":10000000000000,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":6,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":3,"t":18,"tokens":[5000,4000,1524,2000],"delegation":[4000,3000,524,1000],"delegatorTokens":10000000000000,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":7,"action":{"kind":"Deliver","chain":"provider","numPackets":3},"partialState":{"h":3,"t":18,"tokens":[5000,4000,1524,2000],"delegation":[4000,3000,524,1000],"delegatorTokens":10000000000000,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":8,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":9,"action":{"kind":"Delegate","val":0,"amt":2029},"partialState":{"h":3,"t":18,"tokens":[7029,4000,1524,2000],"delegation":[6029,3000,524,1000],"delegatorTokens":9999999997971}},{"ix":10,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":3,"t":18,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,false,true,false]}},{"ix":11,"action":{"kind":"ConsumerSlash","val":3,"infractionHeight":0,"isDowntime":true},"partialState":{"h":3,"t":18,"outstandingDowntime":[false,false,true,true]}},{"ix":12,"action":{"kind":"Delegate","val":2,"amt":4069},"partialState":{"h":3,"t":18,"tokens":[7029,4000,5593,2000],"delegation":[6029,3000,4593,1000],"delegatorTokens":9999999993902}},{"ix":13,"action":{"kind":"Delegate","val":3,"amt":2635},"partialState":{"h":3,"t":18,"tokens":[7029,4000,5593,4635],"delegation":[6029,3000,4593,3635],"delegatorTokens":9999999991267}},{"ix":14,"action":{"kind":"Delegate","val":1,"amt":1133},"partialState":{"h":3,"t":18,"tokens":[7029,5133,5593,4635],"delegation":[6029,4133,4593,3635],"delegatorTokens":9999999990134}},{"ix":15,"action":{"kind":"Deliver","chain":"provider","numPackets":3},"partialState":{"h":3,"t":18,"tokens":[7029,5133,5593,4635],"delegation":[6029,4133,4593,3635],"delegatorTokens":9999999990134,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":16,"action":{"kind":"Deliver","chain":"provider","numPackets":5},"partialState":{"h":3,"t":18,"tokens":[7029,5133,5593,4635],"delegation":[6029,4133,4593,3635],"delegatorTokens":9999999990134,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":17,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":4,"t":24,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,false,true,true]}},{"ix":18,"action":{"kind":"Deliver","chain":"consumer","numPackets":4},"partialState":{"h":4,"t":24,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,false,true,true]}},{"ix":19,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":20,"action":{"kind":"Deliver","chain":"consumer","numPackets":3},"partialState":{"h":4,"t":24,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,false,true,true]}},{"ix":21,"action":{"kind":"Deliver","chain":"consumer","numPackets":6},"partialState":{"h":4,"t":24,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,false,true,true]}},{"ix":22,"action":{"kind":"Undelegate","val":1,"amt":1326},"partialState":{"h":3,"t":18,"tokens":[7029,3807,5593,4635],"delegation":[6029,2807,4593,3635],"delegatorTokens":9999999990134}},{"ix":23,"action":{"kind":"Deliver","chain":"provider","numPackets":3},"partialState":{"h":3,"t":18,"tokens":[7029,3807,5593,4635],"delegation":[6029,2807,4593,3635],"delegatorTokens":9999999990134,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":24,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":5,"t":30,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,false,true,true]}},{"ix":25,"action":{"kind":"Deliver","chain":"provider","numPackets":3},"partialState":{"h":3,"t":18,"tokens":[7029,3807,5593,4635],"delegation":[6029,2807,4593,3635],"delegatorTokens":9999999990134,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":26,"action":{"kind":"Deliver","chain":"provider","numPackets":2},"partialState":{"h":3,"t":18,"tokens":[7029,3807,5593,4635],"delegation":[6029,2807,4593,3635],"delegatorTokens":9999999990134,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":27,"action":{"kind":"Delegate","val":3,"amt":1745},"partialState":{"h":3,"t":18,"tokens":[7029,3807,5593,6380],"delegation":[6029,2807,4593,5380],"delegatorTokens":9999999988389}},{"ix":28,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":6,"t":36,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,false,true,true]}},{"ix":29,"action":{"kind":"Undelegate","val":0,"amt":4933},"partialState":{"h":3,"t":18,"tokens":[2096,3807,5593,6380],"delegation":[1096,2807,4593,5380],"delegatorTokens":9999999988389}},{"ix":30,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":4,"t":24,"tokens":[2096,3807,5593,6380],"delegation":[1096,2807,4593,5380],"delegatorTokens":9999999988389,"jailed":[null,null,1000000000000017,1000000000000017],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":31,"action":{"kind":"Deliver","chain":"provider","numPackets":1},"partialState":{"h":4,"t":24,"tokens":[2096,3807,5593,6380],"delegation":[1096,2807,4593,5380],"delegatorTokens":9999999988389,"jailed":[null,null,1000000000000017,1000000000000017],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":32,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":7,"t":42,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,false,true,true]}},{"ix":33,"action":{"kind":"Undelegate","val":0,"amt":4513},"partialState":{"h":4,"t":24,"tokens":[2096,3807,5593,6380],"delegation":[1096,2807,4593,5380],"delegatorTokens":9999999988389}},{"ix":34,"action":{"kind":"Deliver","chain":"consumer","numPackets":4},"partialState":{"h":7,"t":42,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,false,true,true]}},{"ix":35,"action":{"kind":"Delegate","val":1,"amt":4740},"partialState":{"h":4,"t":24,"tokens":[2096,8547,5593,6380],"delegation":[1096,7547,4593,5380],"delegatorTokens":9999999983649}},{"ix":36,"action":{"kind":"Deliver","chain":"consumer","numPackets":2},"partialState":{"h":7,"t":42,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,false,true,true]}},{"ix":37,"action":{"kind":"Delegate","val":1,"amt":3334},"partialState":{"h":4,"t":24,"tokens":[2096,11881,5593,6380],"delegation":[1096,10881,4593,5380],"delegatorTokens":9999999980315}},{"ix":38,"action":{"kind":"Delegate","val":2,"amt":1200},"partialState":{"h":4,"t":24,"tokens":[2096,11881,6793,6380],"delegation":[1096,10881,5793,5380],"delegatorTokens":9999999979115}},{"ix":39,"action":{"kind":"Delegate","val":0,"amt":4701},"partialState":{"h":4,"t":24,"tokens":[6797,11881,6793,6380],"delegation":[5797,10881,5793,5380],"delegatorTokens":9999999974414}},{"ix":40,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":5,"t":30,"tokens":[6797,11881,6793,6380],"delegation":[5797,10881,5793,5380],"delegatorTokens":9999999974414,"jailed":[null,null,1000000000000017,1000000000000017],"status":["bonded","bonded","unbonding","unbonding"]}},{"ix":41,"action":{"kind":"Deliver","chain":"consumer","numPackets":1},"partialState":{"h":7,"t":42,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":42,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":8,"t":48,"consumerPower":[null,null,5593,6380],"outstandingDowntime":[false,false,false,false]}},{"ix":43,"action":{"kind":"Undelegate","val":2,"amt":4134},"partialState":{"h":5,"t":30,"tokens":[6797,11881,2659,6380],"delegation":[5797,10881,1659,5380],"delegatorTokens":9999999974414}},{"ix":44,"action":{"kind":"ConsumerSlash","val":2,"infractionHeight":4,"isDowntime":true},"partialState":{"h":8,"t":48,"outstandingDowntime":[false,false,true,false]}},{"ix":45,"action":{"kind":"Undelegate","val":2,"amt":3706},"partialState":{"h":5,"t":30,"tokens":[6797,11881,2659,6380],"delegation":[5797,10881,1659,5380],"delegatorTokens":9999999974414}},{"ix":46,"action":{"kind":"Deliver","chain":"provider","numPackets":5},"partialState":{"h":5,"t":30,"tokens":[6797,11881,2659,6380],"delegation":[5797,10881,1659,5380],"delegatorTokens":9999999974414,"jailed":[null,null,1000000000000017,1000000000000017],"status":["bonded","bonded","unbonding","unbonding"]}},{"ix":47,"action":{"kind":"ConsumerSlash","val":2,"infractionHeight":7,"isDowntime":true},"partialState":{"h":8,"t":48,"outstandingDowntime":[false,false,true,false]}},{"ix":48,"action":{"kind":"ConsumerSlash","val":3,"infractionHeight":1,"isDowntime":true},"partialState":{"h":8,"t":48,"outstandingDowntime":[false,false,true,true]}},{"ix":49,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":6,"t":36,"tokens":[6797,11881,2659,6380],"delegation":[5797,10881,1659,5380],"delegatorTokens":9999999974414,"jailed":[null,null,1000000000000017,1000000000000017],"status":["bonded","bonded","unbonding","unbonding"]}},{"ix":50,"action":{"kind":"Delegate","val":1,"amt":4536},"partialState":{"h":6,"t":36,"tokens":[6797,16417,2659,6380],"delegation":[5797,15417,1659,5380],"delegatorTokens":9999999969878}},{"ix":51,"action":{"kind":"ConsumerSlash","val":2,"infractionHeight":4,"isDowntime":false},"partialState":{"h":8,"t":48,"outstandingDowntime":[false,false,true,true]}},{"ix":52,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":9,"t":54,"consumerPower":[null,null,5593,6380],"outstandingDowntime":[false,false,true,true]}},{"ix":53,"action":{"kind":"ConsumerSlash","val":2,"infractionHeight":5,"isDowntime":false},"partialState":{"h":9,"t":54,"outstandingDowntime":[false,false,true,true]}},{"ix":54,"action":{"kind":"Deliver","chain":"provider","numPackets":1},"partialState":{"h":6,"t":36,"tokens":[6797,16417,2659,6380],"delegation":[5797,15417,1659,5380],"delegatorTokens":9999999969878,"jailed":[null,null,1000000000000017,1000000000000017],"status":["bonded","bonded","unbonding","unbonding"]}},{"ix":55,"action":{"kind":"Delegate","val":1,"amt":1402},"partialState":{"h":6,"t":36,"tokens":[6797,17819,2659,6380],"delegation":[5797,16819,1659,5380],"delegatorTokens":9999999968476}},{"ix":56,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":7,"t":42,"tokens":[6797,17819,2659,6380],"delegation":[5797,16819,1659,5380],"delegatorTokens":9999999968476,"jailed":[null,null,1000000000000017,1000000000000017],"status":["bonded","bonded","unbonding","unbonding"]}},{"ix":57,"action":{"kind":"ConsumerSlash","val":2,"infractionHeight":5,"isDowntime":true},"partialState":{"h":9,"t":54,"outstandingDowntime":[false,false,true,true]}},{"ix":58,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":10,"t":60,"consumerPower":[null,null,5593,6380],"outstandingDowntime":[false,false,true,true]}},{"ix":59,"action":{"kind":"Undelegate","val":3,"amt":3302},"partialState":{"h":7,"t":42,"tokens":[6797,17819,2659,3078],"delegation":[5797,16819,1659,2078],"delegatorTokens":9999999968476}},{"ix":60,"action":{"kind":"Delegate","val":1,"amt":1987},"partialState":{"h":7,"t":42,"tokens":[6797,19806,2659,3078],"delegation":[5797,18806,1659,2078],"delegatorTokens":9999999966489}},{"ix":61,"action":{"kind":"Deliver","chain":"consumer","numPackets":1},"partialState":{"h":10,"t":60,"consumerPower":[null,null,5593,6380],"outstandingDowntime":[false,false,true,true]}},{"ix":62,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":11,"t":66,"consumerPower":[6797,11881,null,null],"outstandingDowntime":[false,false,true,true]}},{"ix":63,"action":{"kind":"ConsumerSlash","val":1,"infractionHeight":9,"isDowntime":true},"partialState":{"h":11,"t":66,"outstandingDowntime":[false,true,true,true]}},{"ix":64,"action":{"kind":"Deliver","chain":"provider","numPackets":4},"partialState":{"h":7,"t":42,"tokens":[6797,19806,2659,3078],"delegation":[5797,18806,1659,2078],"delegatorTokens":9999999966489,"jailed":[null,null,1000000000000017,1000000000000017],"status":["bonded","bonded","unbonding","unbonding"]}},{"ix":65,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":8,"t":48,"tokens":[6797,19806,2659,3078],"delegation":[5797,18806,1659,2078],"delegatorTokens":9999999966489,"jailed":[null,null,1000000000000041,1000000000000041],"status":["bonded","bonded","unbonding","unbonding"]}},{"ix":66,"action":{"kind":"Delegate","val":3,"amt":2058},"partialState":{"h":8,"t":48,"tokens":[6797,19806,2659,5136],"delegation":[5797,18806,1659,4136],"delegatorTokens":9999999964431}},{"ix":67,"action":{"kind":"Undelegate","val":3,"amt":1627},"partialState":{"h":8,"t":48,"tokens":[6797,19806,2659,3509],"delegation":[5797,18806,1659,2509],"delegatorTokens":9999999964431}},{"ix":68,"action":{"kind":"Deliver","chain":"consumer","numPackets":1},"partialState":{"h":11,"t":66,"consumerPower":[6797,11881,null,null],"outstandingDowntime":[false,true,true,true]}},{"ix":69,"action":{"kind":"Delegate","val":2,"amt":1737},"partialState":{"h":8,"t":48,"tokens":[6797,19806,4396,3509],"delegation":[5797,18806,3396,2509],"delegatorTokens":9999999962694}},{"ix":70,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":9,"t":54,"tokens":[6797,19806,4396,3509],"delegation":[5797,18806,3396,2509],"delegatorTokens":9999999962694,"jailed":[null,null,1000000000000041,1000000000000041],"status":["bonded","bonded","unbonding","unbonding"]}},{"ix":71,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":12,"t":72,"consumerPower":[6797,11881,null,null],"outstandingDowntime":[false,true,true,true]}},{"ix":72,"action":{"kind":"Undelegate","val":0,"amt":1606},"partialState":{"h":9,"t":54,"tokens":[5191,19806,4396,3509],"delegation":[4191,18806,3396,2509],"delegatorTokens":9999999962694}},{"ix":73,"action":{"kind":"Undelegate","val":0,"amt":1425},"partialState":{"h":9,"t":54,"tokens":[3766,19806,4396,3509],"delegation":[2766,18806,3396,2509],"delegatorTokens":9999999962694}},{"ix":74,"action":{"kind":"Deliver","chain":"provider","numPackets":4},"partialState":{"h":9,"t":54,"tokens":[3766,19806,4396,3509],"delegation":[2766,18806,3396,2509],"delegatorTokens":9999999962694,"jailed":[null,null,1000000000000041,1000000000000041],"status":["bonded","bonded","unbonding","unbonding"]}},{"ix":75,"action":{"kind":"Undelegate","val":3,"amt":3515},"partialState":{"h":9,"t":54,"tokens":[3766,19806,4396,3509],"delegation":[2766,18806,3396,2509],"delegatorTokens":9999999962694}},{"ix":76,"action":{"kind":"Undelegate","val":0,"amt":3032},"partialState":{"h":9,"t":54,"tokens":[3766,19806,4396,3509],"delegation":[2766,18806,3396,2509],"delegatorTokens":9999999962694}},{"ix":77,"action":{"kind":"Delegate","val":1,"amt":1351},"partialState":{"h":9,"t":54,"tokens":[3766,21157,4396,3509],"delegation":[2766,20157,3396,2509],"delegatorTokens":9999999961343}},{"ix":78,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":10,"t":60,"tokens":[3766,21157,4396,3509],"delegation":[2766,20157,3396,2509],"delegatorTokens":9999999961343,"jailed":[null,null,1000000000000041,1000000000000041],"status":["bonded","bonded","unbonding","unbonding"]}},{"ix":79,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":13,"t":78,"consumerPower":[6797,11881,null,null],"outstandingDowntime":[false,true,true,true]}},{"ix":80,"action":{"kind":"Undelegate","val":3,"amt":1689},"partialState":{"h":10,"t":60,"tokens":[3766,21157,4396,1820],"delegation":[2766,20157,3396,820],"delegatorTokens":9999999961343}},{"ix":81,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":11,"t":66,"tokens":[3766,21157,4396,1820],"delegation":[2766,20157,3396,820],"delegatorTokens":9999999961343,"jailed":[null,null,1000000000000041,1000000000000041],"status":["bonded","bonded","unbonding","unbonding"]}},{"ix":82,"action":{"kind":"Delegate","val":2,"amt":2804},"partialState":{"h":11,"t":66,"tokens":[3766,21157,7200,1820],"delegation":[2766,20157,6200,820],"delegatorTokens":9999999958539}},{"ix":83,"action":{"kind":"Undelegate","val":3,"amt":4406},"partialState":{"h":11,"t":66,"tokens":[3766,21157,7200,1820],"delegation":[2766,20157,6200,820],"delegatorTokens":9999999958539}},{"ix":84,"action":{"kind":"Undelegate","val":3,"amt":1572},"partialState":{"h":11,"t":66,"tokens":[3766,21157,7200,1820],"delegation":[2766,20157,6200,820],"delegatorTokens":9999999958539}},{"ix":85,"action":{"kind":"Undelegate","val":0,"amt":4006},"partialState":{"h":11,"t":66,"tokens":[3766,21157,7200,1820],"delegation":[2766,20157,6200,820],"delegatorTokens":9999999958539}},{"ix":86,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":87,"action":{"kind":"Deliver","chain":"provider","numPackets":2},"partialState":{"h":11,"t":66,"tokens":[3766,21157,7200,1820],"delegation":[2766,20157,6200,820],"delegatorTokens":9999999958539,"jailed":[null,null,1000000000000041,1000000000000041],"status":["bonded","bonded","unbonding","unbonding"]}},{"ix":88,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":14,"t":84,"consumerPower":[6797,11881,null,null],"outstandingDowntime":[false,true,true,true]}},{"ix":89,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":12,"t":72,"tokens":[3766,21157,7200,1820],"delegation":[2766,20157,6200,820],"delegatorTokens":9999999958539,"jailed":[null,1000000000000065,1000000000000041,1000000000000041],"status":["bonded","bonded","unbonding","unbonding"]}},{"ix":90,"action":{"kind":"Delegate","val":0,"amt":1117},"partialState":{"h":12,"t":72,"tokens":[4883,21157,7200,1820],"delegation":[3883,20157,6200,820],"delegatorTokens":9999999957422}},{"ix":91,"action":{"kind":"Delegate","val":0,"amt":2486},"partialState":{"h":12,"t":72,"tokens":[7369,21157,7200,1820],"delegation":[6369,20157,6200,820],"delegatorTokens":9999999954936}},{"ix":92,"action":{"kind":"Undelegate","val":0,"amt":2079},"partialState":{"h":12,"t":72,"tokens":[5290,21157,7200,1820],"delegation":[4290,20157,6200,820],"delegatorTokens":9999999954936}},{"ix":93,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":15,"t":90,"consumerPower":[6797,11881,null,null],"outstandingDowntime":[false,true,true,true]}},{"ix":94,"action":{"kind":"Undelegate","val":1,"amt":2268},"partialState":{"h":12,"t":72,"tokens":[5290,18889,7200,1820],"delegation":[4290,17889,6200,820],"delegatorTokens":9999999954936}},{"ix":95,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":96,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":13,"t":78,"tokens":[5290,18889,7200,1820],"delegation":[4290,17889,6200,820],"delegatorTokens":9999999954936,"jailed":[null,1000000000000065,1000000000000041,1000000000000041],"status":["bonded","unbonding","unbonding","unbonding"]}},{"ix":97,"action":{"kind":"Delegate","val":2,"amt":2006},"partialState":{"h":13,"t":78,"tokens":[5290,18889,9206,1820],"delegation":[4290,17889,8206,820],"delegatorTokens":9999999952930}},{"ix":98,"action":{"kind":"Delegate","val":3,"amt":4832},"partialState":{"h":13,"t":78,"tokens":[5290,18889,9206,6652],"delegation":[4290,17889,8206,5652],"delegatorTokens":9999999948098}},{"ix":99,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":14,"t":84,"tokens":[5290,18889,9206,6652],"delegation":[4290,17889,8206,5652],"delegatorTokens":9999999948098,"jailed":[null,1000000000000065,1000000000000041,1000000000000041],"status":["bonded","unbonding","unbonding","unbonding"]}},{"ix":100,"action":{"kind":"Deliver","chain":"consumer","numPackets":5},"partialState":{"h":15,"t":90,"consumerPower":[6797,11881,null,null],"outstandingDowntime":[false,true,false,false]}},{"ix":101,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":15,"t":90,"tokens":[5290,18889,9206,6652],"delegation":[4290,17889,8206,5652],"delegatorTokens":9999999948098,"jailed":[null,1000000000000065,1000000000000041,1000000000000041],"status":["bonded","unbonding","unbonding","unbonding"]}},{"ix":102,"action":{"kind":"Undelegate","val":0,"amt":3997},"partialState":{"h":15,"t":90,"tokens":[1293,18889,9206,6652],"delegation":[293,17889,8206,5652],"delegatorTokens":9999999948098}},{"ix":103,"action":{"kind":"Undelegate","val":1,"amt":3847},"partialState":{"h":15,"t":90,"tokens":[1293,15042,9206,6652],"delegation":[293,14042,8206,5652],"delegatorTokens":9999999948098}},{"ix":104,"action":{"kind":"Deliver","chain":"consumer","numPackets":3},"partialState":{"h":15,"t":90,"consumerPower":[6797,11881,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":105,"action":{"kind":"Undelegate","val":2,"amt":4651},"partialState":{"h":15,"t":90,"tokens":[1293,15042,4555,6652],"delegation":[293,14042,3555,5652],"delegatorTokens":9999999948098}},{"ix":106,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":16,"t":96,"consumerPower":[5290,null,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":107,"action":{"kind":"Undelegate","val":3,"amt":2016},"partialState":{"h":15,"t":90,"tokens":[1293,15042,4555,4636],"delegation":[293,14042,3555,3636],"delegatorTokens":9999999948098}},{"ix":108,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":17,"t":102,"consumerPower":[5290,null,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":109,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":16,"t":96,"tokens":[1293,15042,4555,4636],"delegation":[293,14042,3555,3636],"delegatorTokens":9999999948098,"jailed":[null,1000000000000065,1000000000000041,1000000000000041],"status":["bonded","unbonding","unbonding","unbonding"]}},{"ix":110,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":18,"t":108,"consumerPower":[5290,null,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":111,"action":{"kind":"Undelegate","val":3,"amt":4992},"partialState":{"h":16,"t":96,"tokens":[1293,15042,4555,4636],"delegation":[293,14042,3555,3636],"delegatorTokens":9999999948098}},{"ix":112,"action":{"kind":"Undelegate","val":0,"amt":1695},"partialState":{"h":16,"t":96,"tokens":[1293,15042,4555,4636],"delegation":[293,14042,3555,3636],"delegatorTokens":9999999948098}},{"ix":113,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":114,"action":{"kind":"Deliver","chain":"provider","numPackets":2},"partialState":{"h":16,"t":96,"tokens":[1293,15042,4555,4636],"delegation":[293,14042,3555,3636],"delegatorTokens":9999999948098,"jailed":[null,1000000000000065,1000000000000041,1000000000000041],"status":["bonded","unbonding","unbonding","unbonding"]}},{"ix":115,"action":{"kind":"Deliver","chain":"provider","numPackets":1},"partialState":{"h":16,"t":96,"tokens":[1293,15042,4555,4636],"delegation":[293,14042,3555,3636],"delegatorTokens":9999999948098,"jailed":[null,1000000000000065,1000000000000041,1000000000000041],"status":["bonded","unbonding","unbonding","unbonding"]}},{"ix":116,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":17,"t":102,"tokens":[1293,15042,4555,4636],"delegation":[293,14042,3555,3636],"delegatorTokens":9999999955833,"jailed":[null,1000000000000065,1000000000000041,1000000000000041],"status":["bonded","unbonding","unbonding","unbonding"]}},{"ix":117,"action":{"kind":"Delegate","val":1,"amt":4294},"partialState":{"h":17,"t":102,"tokens":[1293,19336,4555,4636],"delegation":[293,18336,3555,3636],"delegatorTokens":9999999951539}},{"ix":118,"action":{"kind":"Delegate","val":3,"amt":2952},"partialState":{"h":17,"t":102,"tokens":[1293,19336,4555,7588],"delegation":[293,18336,3555,6588],"delegatorTokens":9999999948587}},{"ix":119,"action":{"kind":"Undelegate","val":3,"amt":2877},"partialState":{"h":17,"t":102,"tokens":[1293,19336,4555,4711],"delegation":[293,18336,3555,3711],"delegatorTokens":9999999948587}},{"ix":120,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":121,"action":{"kind":"Delegate","val":1,"amt":4144},"partialState":{"h":17,"t":102,"tokens":[1293,23480,4555,4711],"delegation":[293,22480,3555,3711],"delegatorTokens":9999999944443}},{"ix":122,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":18,"t":108,"tokens":[1293,23480,4555,4711],"delegation":[293,22480,3555,3711],"delegatorTokens":9999999944443,"jailed":[null,1000000000000065,1000000000000041,1000000000000041],"status":["bonded","unbonding","unbonding","unbonding"]}},{"ix":123,"action":{"kind":"Deliver","chain":"consumer","numPackets":6},"partialState":{"h":18,"t":108,"consumerPower":[5290,null,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":124,"action":{"kind":"Delegate","val":0,"amt":2865},"partialState":{"h":18,"t":108,"tokens":[4158,23480,4555,4711],"delegation":[3158,22480,3555,3711],"delegatorTokens":9999999941578}},{"ix":125,"action":{"kind":"Deliver","chain":"provider","numPackets":1},"partialState":{"h":18,"t":108,"tokens":[4158,23480,4555,4711],"delegation":[3158,22480,3555,3711],"delegatorTokens":9999999941578,"jailed":[null,1000000000000065,1000000000000041,1000000000000041],"status":["bonded","unbonding","unbonding","unbonding"]}},{"ix":126,"action":{"kind":"Delegate","val":3,"amt":3849},"partialState":{"h":18,"t":108,"tokens":[4158,23480,4555,8560],"delegation":[3158,22480,3555,7560],"delegatorTokens":9999999937729}},{"ix":127,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":128,"action":{"kind":"Delegate","val":1,"amt":2809},"partialState":{"h":18,"t":108,"tokens":[4158,26289,4555,8560],"delegation":[3158,25289,3555,7560],"delegatorTokens":9999999934920}},{"ix":129,"action":{"kind":"Deliver","chain":"provider","numPackets":2},"partialState":{"h":18,"t":108,"tokens":[4158,26289,4555,8560],"delegation":[3158,25289,3555,7560],"delegatorTokens":9999999934920,"jailed":[null,1000000000000065,1000000000000041,1000000000000041],"status":["bonded","unbonding","unbonding","unbonding"]}},{"ix":130,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":131,"action":{"kind":"Undelegate","val":2,"amt":3977},"partialState":{"h":18,"t":108,"tokens":[4158,26289,4555,8560],"delegation":[3158,25289,3555,7560],"delegatorTokens":9999999934920}},{"ix":132,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":19,"t":114,"consumerPower":[1293,null,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":133,"action":{"kind":"Delegate","val":0,"amt":2380},"partialState":{"h":18,"t":108,"tokens":[6538,26289,4555,8560],"delegation":[5538,25289,3555,7560],"delegatorTokens":9999999932540}},{"ix":134,"action":{"kind":"Delegate","val":1,"amt":1347},"partialState":{"h":18,"t":108,"tokens":[6538,27636,4555,8560],"delegation":[5538,26636,3555,7560],"delegatorTokens":9999999931193}},{"ix":135,"action":{"kind":"Delegate","val":2,"amt":1685},"partialState":{"h":18,"t":108,"tokens":[6538,27636,6240,8560],"delegation":[5538,26636,5240,7560],"delegatorTokens":9999999929508}},{"ix":136,"action":{"kind":"Delegate","val":0,"amt":4116},"partialState":{"h":18,"t":108,"tokens":[10654,27636,6240,8560],"delegation":[9654,26636,5240,7560],"delegatorTokens":9999999925392}},{"ix":137,"action":{"kind":"Deliver","chain":"consumer","numPackets":4},"partialState":{"h":19,"t":114,"consumerPower":[1293,null,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":138,"action":{"kind":"Deliver","chain":"provider","numPackets":2},"partialState":{"h":18,"t":108,"tokens":[10654,27636,6240,8560],"delegation":[9654,26636,5240,7560],"delegatorTokens":9999999925392,"jailed":[null,1000000000000065,1000000000000041,1000000000000041],"status":["bonded","unbonding","unbonding","unbonding"]}},{"ix":139,"action":{"kind":"Undelegate","val":0,"amt":3361},"partialState":{"h":18,"t":108,"tokens":[7293,27636,6240,8560],"delegation":[6293,26636,5240,7560],"delegatorTokens":9999999925392}},{"ix":140,"action":{"kind":"Deliver","chain":"consumer","numPackets":3},"partialState":{"h":19,"t":114,"consumerPower":[1293,null,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":141,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":20,"t":120,"consumerPower":[1293,null,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":142,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":143,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":19,"t":114,"tokens":[7293,27636,6240,8560],"delegation":[6293,26636,5240,7560],"delegatorTokens":9999999925392,"jailed":[null,1000000000000065,1000000000000041,1000000000000041],"status":["bonded","unbonding","unbonding","unbonding"]}},{"ix":144,"action":{"kind":"Deliver","chain":"consumer","numPackets":6},"partialState":{"h":20,"t":120,"consumerPower":[1293,null,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":145,"action":{"kind":"Deliver","chain":"provider","numPackets":5},"partialState":{"h":19,"t":114,"tokens":[7293,27636,6240,8560],"delegation":[6293,26636,5240,7560],"delegatorTokens":9999999925392,"jailed":[null,1000000000000065,1000000000000041,1000000000000041],"status":["bonded","unbonding","unbonding","unbonding"]}},{"ix":146,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":147,"action":{"kind":"Delegate","val":0,"amt":3759},"partialState":{"h":19,"t":114,"tokens":[11052,27636,6240,8560],"delegation":[10052,26636,5240,7560],"delegatorTokens":9999999921633}},{"ix":148,"action":{"kind":"Delegate","val":3,"amt":3841},"partialState":{"h":19,"t":114,"tokens":[11052,27636,6240,12401],"delegation":[10052,26636,5240,11401],"delegatorTokens":9999999917792}},{"ix":149,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":150,"action":{"kind":"Undelegate","val":0,"amt":3128},"partialState":{"h":19,"t":114,"tokens":[7924,27636,6240,12401],"delegation":[6924,26636,5240,11401],"delegatorTokens":9999999917792}},{"ix":151,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":20,"t":120,"tokens":[7924,27636,6240,12401],"delegation":[6924,26636,5240,11401],"delegatorTokens":9999999917792,"jailed":[null,1000000000000065,1000000000000041,1000000000000041],"status":["bonded","unbonding","unbonding","unbonding"]}},{"ix":152,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":21,"t":126,"consumerPower":[1293,null,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":153,"action":{"kind":"Undelegate","val":3,"amt":3376},"partialState":{"h":20,"t":120,"tokens":[7924,27636,6240,9025],"delegation":[6924,26636,5240,8025],"delegatorTokens":9999999917792}},{"ix":154,"action":{"kind":"Delegate","val":2,"amt":1011},"partialState":{"h":20,"t":120,"tokens":[7924,27636,7251,9025],"delegation":[6924,26636,6251,8025],"delegatorTokens":9999999916781}},{"ix":155,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":22,"t":132,"consumerPower":[1293,null,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":156,"action":{"kind":"Undelegate","val":2,"amt":3104},"partialState":{"h":20,"t":120,"tokens":[7924,27636,4147,9025],"delegation":[6924,26636,3147,8025],"delegatorTokens":9999999916781}},{"ix":157,"action":{"kind":"Delegate","val":1,"amt":3949},"partialState":{"h":20,"t":120,"tokens":[7924,31585,4147,9025],"delegation":[6924,30585,3147,8025],"delegatorTokens":9999999912832}},{"ix":158,"action":{"kind":"Undelegate","val":2,"amt":1856},"partialState":{"h":20,"t":120,"tokens":[7924,31585,2291,9025],"delegation":[6924,30585,1291,8025],"delegatorTokens":9999999912832}},{"ix":159,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":23,"t":138,"consumerPower":[1293,null,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":160,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":24,"t":144,"consumerPower":[1293,null,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":161,"action":{"kind":"Deliver","chain":"provider","numPackets":3},"partialState":{"h":20,"t":120,"tokens":[7924,31585,2291,9025],"delegation":[6924,30585,1291,8025],"delegatorTokens":9999999912832,"jailed":[null,1000000000000065,1000000000000041,1000000000000041],"status":["bonded","unbonding","unbonding","unbonding"]}},{"ix":162,"action":{"kind":"Deliver","chain":"consumer","numPackets":4},"partialState":{"h":24,"t":144,"consumerPower":[1293,null,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":163,"action":{"kind":"Deliver","chain":"consumer","numPackets":6},"partialState":{"h":24,"t":144,"consumerPower":[1293,null,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":164,"action":{"kind":"Undelegate","val":1,"amt":3180},"partialState":{"h":20,"t":120,"tokens":[7924,28405,2291,9025],"delegation":[6924,27405,1291,8025],"delegatorTokens":9999999912832}},{"ix":165,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":21,"t":126,"tokens":[7924,28405,2291,9025],"delegation":[6924,27405,1291,8025],"delegatorTokens":9999999916966,"jailed":[null,1000000000000065,1000000000000041,1000000000000041],"status":["bonded","unbonding","unbonding","unbonding"]}},{"ix":166,"action":{"kind":"Deliver","chain":"provider","numPackets":1},"partialState":{"h":21,"t":126,"tokens":[7924,28405,2291,9025],"delegation":[6924,27405,1291,8025],"delegatorTokens":9999999916966,"jailed":[null,1000000000000065,1000000000000041,1000000000000041],"status":["bonded","unbonding","unbonding","unbonding"]}},{"ix":167,"action":{"kind":"Deliver","chain":"consumer","numPackets":1},"partialState":{"h":24,"t":144,"consumerPower":[1293,null,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":168,"action":{"kind":"Delegate","val":0,"amt":3433},"partialState":{"h":21,"t":126,"tokens":[11357,28405,2291,9025],"delegation":[10357,27405,1291,8025],"delegatorTokens":9999999913533}},{"ix":169,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":22,"t":132,"tokens":[11357,28405,2291,9025],"delegation":[10357,27405,1291,8025],"delegatorTokens":9999999913533,"jailed":[null,1000000000000065,1000000000000041,1000000000000041],"status":["bonded","unbonding","unbonded","unbonded"]}},{"ix":170,"action":{"kind":"Undelegate","val":2,"amt":2513},"partialState":{"h":22,"t":132,"tokens":[11357,28405,2291,9025],"delegation":[10357,27405,1291,8025],"delegatorTokens":9999999913533}},{"ix":171,"action":{"kind":"Deliver","chain":"consumer","numPackets":1},"partialState":{"h":24,"t":144,"consumerPower":[1293,null,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":172,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":173,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":23,"t":138,"tokens":[11357,28405,2291,9025],"delegation":[10357,27405,1291,8025],"delegatorTokens":9999999913533,"jailed":[null,1000000000000065,1000000000000041,1000000000000041],"status":["bonded","unbonding","unbonded","unbonded"]}},{"ix":174,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":25,"t":150,"consumerPower":[7924,null,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":175,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":24,"t":144,"tokens":[11357,28405,2291,9025],"delegation":[10357,27405,1291,8025],"delegatorTokens":9999999913533,"jailed":[null,1000000000000065,1000000000000041,1000000000000041],"status":["bonded","unbonding","unbonded","unbonded"]}},{"ix":176,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":177,"action":{"kind":"Undelegate","val":1,"amt":4391},"partialState":{"h":24,"t":144,"tokens":[11357,24014,2291,9025],"delegation":[10357,23014,1291,8025],"delegatorTokens":9999999913533}},{"ix":178,"action":{"kind":"Delegate","val":1,"amt":4530},"partialState":{"h":24,"t":144,"tokens":[11357,28544,2291,9025],"delegation":[10357,27544,1291,8025],"delegatorTokens":9999999909003}},{"ix":179,"action":{"kind":"Deliver","chain":"consumer","numPackets":3},"partialState":{"h":25,"t":150,"consumerPower":[7924,null,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":180,"action":{"kind":"Undelegate","val":0,"amt":1480},"partialState":{"h":24,"t":144,"tokens":[9877,28544,2291,9025],"delegation":[8877,27544,1291,8025],"delegatorTokens":9999999909003}},{"ix":181,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":182,"action":{"kind":"Deliver","chain":"provider","numPackets":1},"partialState":{"h":24,"t":144,"tokens":[9877,28544,2291,9025],"delegation":[8877,27544,1291,8025],"delegatorTokens":9999999909003,"jailed":[null,1000000000000065,1000000000000041,1000000000000041],"status":["bonded","unbonding","unbonded","unbonded"]}},{"ix":183,"action":{"kind":"Delegate","val":0,"amt":4967},"partialState":{"h":24,"t":144,"tokens":[14844,28544,2291,9025],"delegation":[13844,27544,1291,8025],"delegatorTokens":9999999904036}},{"ix":184,"action":{"kind":"Delegate","val":1,"amt":1002},"partialState":{"h":24,"t":144,"tokens":[14844,29546,2291,9025],"delegation":[13844,28546,1291,8025],"delegatorTokens":9999999903034}},{"ix":185,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":186,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":26,"t":156,"consumerPower":[11357,null,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":187,"action":{"kind":"Deliver","chain":"consumer","numPackets":1},"partialState":{"h":26,"t":156,"consumerPower":[11357,null,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":188,"action":{"kind":"Undelegate","val":3,"amt":2278},"partialState":{"h":24,"t":144,"tokens":[14844,29546,2291,6747],"delegation":[13844,28546,1291,5747],"delegatorTokens":9999999903034}},{"ix":189,"action":{"kind":"Deliver","chain":"provider","numPackets":3},"partialState":{"h":24,"t":144,"tokens":[14844,29546,2291,6747],"delegation":[13844,28546,1291,5747],"delegatorTokens":9999999903034,"jailed":[null,1000000000000065,1000000000000041,1000000000000041],"status":["bonded","unbonding","unbonded","unbonded"]}},{"ix":190,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":191,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":192,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":27,"t":162,"consumerPower":[11357,null,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":193,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":25,"t":150,"tokens":[14844,29546,2291,6747],"delegation":[13844,28546,1291,5747],"delegatorTokens":9999999907963,"jailed":[null,1000000000000065,1000000000000041,1000000000000041],"status":["bonded","unbonding","unbonded","unbonded"]}},{"ix":194,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":26,"t":156,"tokens":[14844,29546,2291,6747],"delegation":[13844,28546,1291,5747],"delegatorTokens":9999999907963,"jailed":[null,1000000000000065,1000000000000041,1000000000000041],"status":["bonded","unbonding","unbonded","unbonded"]}},{"ix":195,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":27,"t":162,"tokens":[14844,29546,2291,6747],"delegation":[13844,28546,1291,5747],"delegatorTokens":9999999907963,"jailed":[null,1000000000000065,1000000000000041,1000000000000041],"status":["bonded","unbonding","unbonded","unbonded"]}},{"ix":196,"action":{"kind":"Undelegate","val":3,"amt":2139},"partialState":{"h":27,"t":162,"tokens":[14844,29546,2291,4608],"delegation":[13844,28546,1291,3608],"delegatorTokens":9999999907963}},{"ix":197,"action":{"kind":"Undelegate","val":0,"amt":4172},"partialState":{"h":27,"t":162,"tokens":[10672,29546,2291,4608],"delegation":[9672,28546,1291,3608],"delegatorTokens":9999999907963}},{"ix":198,"action":{"kind":"Delegate","val":3,"amt":2044},"partialState":{"h":27,"t":162,"tokens":[10672,29546,2291,6652],"delegation":[9672,28546,1291,5652],"delegatorTokens":9999999905919}},{"ix":199,"action":{"kind":"Deliver","chain":"consumer","numPackets":5},"partialState":{"h":27,"t":162,"consumerPower":[11357,null,null,null],"outstandingDowntime":[false,false,false,false]}}],"events":["send_downtime_slash_request","send_vsc_not_because_change","send_vsc_without_downtime_ack","send_downtime_slash_request","more_than_one_third_val_power_change","receive_downtime_slash_request","jail","receive_downtime_slash_request","jail","send_vsc_with_downtime_ack","insufficient_shares","more_than_one_third_val_power_change","rebond_unval","rebond_unval","send_vsc_without_downtime_ack","receive_downtime_slash_ack","receive_downtime_slash_ack","consumer_del_val","consumer_del_val","consumer_add_val","consumer_add_val","send_downtime_slash_request","insufficient_shares","downtime_slash_request_outstanding","send_downtime_slash_request","send_vsc_not_because_change","send_vsc_without_downtime_ack","send_double_sign_slash_request","send_double_sign_slash_request","send_vsc_without_downtime_ack","downtime_slash_request_outstanding","consumer_add_val","consumer_add_val","consumer_del_val","consumer_del_val","send_downtime_slash_request","receive_double_sign_slash_request","receive_double_sign_slash_request","receive_downtime_slash_request","jail","receive_downtime_slash_request","jail","send_vsc_with_downtime_ack","send_vsc_not_because_change","send_vsc_without_downtime_ack","insufficient_shares","insufficient_shares","send_vsc_without_downtime_ack","send_vsc_not_because_change","send_vsc_without_downtime_ack","insufficient_shares","insufficient_shares","insufficient_shares","receive_downtime_slash_request","jail","send_vsc_with_downtime_ack","receive_downtime_slash_ack","receive_downtime_slash_ack","some_undels_expired_but_not_completed","receive_downtime_slash_ack","consumer_del_val","consumer_update_val","consumer_send_maturation","consumer_send_maturation","some_undels_expired_but_not_completed","send_vsc_without_downtime_ack","insufficient_shares","insufficient_shares","complete_undel_immediate","complete_undel_immediate","complete_undel_immediate","some_undels_expired_but_not_completed","send_vsc_not_because_change","send_vsc_without_downtime_ack","insufficient_shares","consumer_update_val","consumer_send_maturation","send_vsc_without_downtime_ack","some_undels_expired_but_not_completed","send_vsc_without_downtime_ack","consumer_send_maturation","some_undels_expired_but_not_completed","set_unval_hold_false","set_unval_hold_false","complete_undel_immediate","send_vsc_not_because_change","send_vsc_without_downtime_ack","complete_unval_in_endblock","complete_unval_in_endblock","some_undels_expired_but_not_completed","send_vsc_without_downtime_ack","insufficient_shares","some_undels_expired_but_not_completed","consumer_send_maturation","consumer_send_maturation","consumer_send_maturation","consumer_send_maturation","consumer_send_maturation","consumer_send_maturation","consumer_update_val","consumer_update_val","some_undels_expired_but_not_completed","complete_undel_immediate","complete_undel_immediate","send_vsc_without_downtime_ack"]},{"meta":{"commit":"7ffd0c04e4205cbc9caf212abfe6c59ee43153bf"},"constants":{"P":"provider","C":"consumer","UNBONDING_SECONDS_P":70,"UNBONDING_SECONDS_C":50,"TRUSTING_SECONDS":49,"NUM_VALIDATORS":4,"MAX_VALIDATORS":2,"SLASH_DOUBLESIGN":0,"SLASH_DOWNTIME":0,"JAIL_SECONDS":999999999999999,"BLOCK_SECONDS":6,"INITIAL_DELEGATOR_TOKENS":10000000000000,"DELEGATE_AMT_MIN":1000,"DELEGATE_AMT_MAX":5000,"UNDELEGATE_AMT_MIN":1000,"UNDELEGATE_AMT_MAX":5000,"ISDOWNTIME_PROBABILITY":0.5,"MAX_NUM_PACKETS_FOR_DELIVER":6},"actions":[{"ix":0,"action":{"kind":"ConsumerSlash","val":0,"infractionHeight":0,"isDowntime":false},"partialState":{"h":1,"t":6,"outstandingDowntime":[false,false,false,false]}},{"ix":1,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":2,"t":12,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":2,"action":{"kind":"Delegate","val":2,"amt":3801},"partialState":{"h":1,"t":6,"tokens":[5000,4000,6801,2000],"delegation":[4000,3000,5801,1000],"delegatorTokens":9999999996199}},{"ix":3,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":4,"action":{"kind":"Delegate","val":0,"amt":1103},"partialState":{"h":1,"t":6,"tokens":[6103,4000,6801,2000],"delegation":[5103,3000,5801,1000],"delegatorTokens":9999999995096}},{"ix":5,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":6,"action":{"kind":"Undelegate","val":2,"amt":2269},"partialState":{"h":1,"t":6,"tokens":[6103,4000,4532,2000],"delegation":[5103,3000,3532,1000],"delegatorTokens":9999999995096}},{"ix":7,"action":{"kind":"Undelegate","val":0,"amt":3809},"partialState":{"h":1,"t":6,"tokens":[2294,4000,4532,2000],"delegation":[1294,3000,3532,1000],"delegatorTokens":9999999995096}},{"ix":8,"action":{"kind":"ConsumerSlash","val":0,"infractionHeight":0,"isDowntime":false},"partialState":{"h":2,"t":12,"outstandingDowntime":[false,false,false,false]}},{"ix":9,"action":{"kind":"Deliver","chain":"consumer","numPackets":6},"partialState":{"h":2,"t":12,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":10,"action":{"kind":"Delegate","val":3,"amt":1493},"partialState":{"h":1,"t":6,"tokens":[2294,4000,4532,3493],"delegation":[1294,3000,3532,2493],"delegatorTokens":9999999993603}},{"ix":11,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":12,"action":{"kind":"Undelegate","val":2,"amt":2220},"partialState":{"h":1,"t":6,"tokens":[2294,4000,2312,3493],"delegation":[1294,3000,1312,2493],"delegatorTokens":9999999993603}},{"ix":13,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":3,"t":18,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":14,"action":{"kind":"Undelegate","val":1,"amt":4159},"partialState":{"h":1,"t":6,"tokens":[2294,4000,2312,3493],"delegation":[1294,3000,1312,2493],"delegatorTokens":9999999993603}},{"ix":15,"action":{"kind":"Deliver","chain":"consumer","numPackets":1},"partialState":{"h":3,"t":18,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":16,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":17,"action":{"kind":"Deliver","chain":"consumer","numPackets":6},"partialState":{"h":3,"t":18,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":18,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":4,"t":24,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":19,"action":{"kind":"ConsumerSlash","val":0,"infractionHeight":1,"isDowntime":false},"partialState":{"h":4,"t":24,"outstandingDowntime":[false,false,false,false]}},{"ix":20,"action":{"kind":"Undelegate","val":1,"amt":2188},"partialState":{"h":1,"t":6,"tokens":[2294,1812,2312,3493],"delegation":[1294,812,1312,2493],"delegatorTokens":9999999993603}},{"ix":21,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":5,"t":30,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":22,"action":{"kind":"Undelegate","val":2,"amt":1043},"partialState":{"h":1,"t":6,"tokens":[2294,1812,1269,3493],"delegation":[1294,812,269,2493],"delegatorTokens":9999999993603}},{"ix":23,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":24,"action":{"kind":"Deliver","chain":"consumer","numPackets":3},"partialState":{"h":5,"t":30,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":25,"action":{"kind":"Undelegate","val":0,"amt":2373},"partialState":{"h":1,"t":6,"tokens":[2294,1812,1269,3493],"delegation":[1294,812,269,2493],"delegatorTokens":9999999993603}},{"ix":26,"action":{"kind":"Undelegate","val":0,"amt":3024},"partialState":{"h":1,"t":6,"tokens":[2294,1812,1269,3493],"delegation":[1294,812,269,2493],"delegatorTokens":9999999993603}},{"ix":27,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":6,"t":36,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":28,"action":{"kind":"Delegate","val":0,"amt":3741},"partialState":{"h":1,"t":6,"tokens":[6035,1812,1269,3493],"delegation":[5035,812,269,2493],"delegatorTokens":9999999989862}},{"ix":29,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":30,"action":{"kind":"Undelegate","val":0,"amt":4604},"partialState":{"h":1,"t":6,"tokens":[1431,1812,1269,3493],"delegation":[431,812,269,2493],"delegatorTokens":9999999989862}},{"ix":31,"action":{"kind":"Delegate","val":2,"amt":3628},"partialState":{"h":1,"t":6,"tokens":[1431,1812,4897,3493],"delegation":[431,812,3897,2493],"delegatorTokens":9999999986234}},{"ix":32,"action":{"kind":"Deliver","chain":"provider","numPackets":6},"partialState":{"h":1,"t":6,"tokens":[1431,1812,4897,3493],"delegation":[431,812,3897,2493],"delegatorTokens":9999999986234,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":33,"action":{"kind":"ConsumerSlash","val":3,"infractionHeight":1,"isDowntime":false},"partialState":{"h":6,"t":36,"outstandingDowntime":[false,false,false,false]}},{"ix":34,"action":{"kind":"ConsumerSlash","val":3,"infractionHeight":2,"isDowntime":false},"partialState":{"h":6,"t":36,"outstandingDowntime":[false,false,false,false]}},{"ix":35,"action":{"kind":"Deliver","chain":"consumer","numPackets":6},"partialState":{"h":6,"t":36,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":36,"action":{"kind":"ConsumerSlash","val":0,"infractionHeight":4,"isDowntime":true},"partialState":{"h":6,"t":36,"outstandingDowntime":[true,false,false,false]}},{"ix":37,"action":{"kind":"Deliver","chain":"provider","numPackets":3},"partialState":{"h":1,"t":6,"tokens":[1431,1812,4897,3493],"delegation":[431,812,3897,2493],"delegatorTokens":9999999986234,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":38,"action":{"kind":"Deliver","chain":"consumer","numPackets":1},"partialState":{"h":6,"t":36,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[true,false,false,false]}},{"ix":39,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":2,"t":12,"tokens":[1431,1812,4897,3493],"delegation":[431,812,3897,2493],"delegatorTokens":9999999986234,"jailed":[null,null,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":40,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":7,"t":42,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[true,false,false,false]}},{"ix":41,"action":{"kind":"Delegate","val":1,"amt":4203},"partialState":{"h":2,"t":12,"tokens":[1431,6015,4897,3493],"delegation":[431,5015,3897,2493],"delegatorTokens":9999999982031}},{"ix":42,"action":{"kind":"ConsumerSlash","val":3,"infractionHeight":3,"isDowntime":false},"partialState":{"h":7,"t":42,"outstandingDowntime":[true,false,false,false]}},{"ix":43,"action":{"kind":"Delegate","val":1,"amt":1265},"partialState":{"h":2,"t":12,"tokens":[1431,7280,4897,3493],"delegation":[431,6280,3897,2493],"delegatorTokens":9999999980766}},{"ix":44,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":3,"t":18,"tokens":[1431,7280,4897,3493],"delegation":[431,6280,3897,2493],"delegatorTokens":9999999980766,"jailed":[null,null,null,null],"status":["unbonding","bonded","bonded","unbonding"]}},{"ix":45,"action":{"kind":"Delegate","val":2,"amt":3221},"partialState":{"h":3,"t":18,"tokens":[1431,7280,8118,3493],"delegation":[431,6280,7118,2493],"delegatorTokens":9999999977545}},{"ix":46,"action":{"kind":"ConsumerSlash","val":3,"infractionHeight":6,"isDowntime":true},"partialState":{"h":7,"t":42,"outstandingDowntime":[true,false,false,true]}},{"ix":47,"action":{"kind":"ConsumerSlash","val":3,"infractionHeight":1,"isDowntime":true},"partialState":{"h":7,"t":42,"outstandingDowntime":[true,false,false,true]}},{"ix":48,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":49,"action":{"kind":"Undelegate","val":0,"amt":1022},"partialState":{"h":3,"t":18,"tokens":[1431,7280,8118,3493],"delegation":[431,6280,7118,2493],"delegatorTokens":9999999977545}},{"ix":50,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":51,"action":{"kind":"Deliver","chain":"provider","numPackets":1},"partialState":{"h":3,"t":18,"tokens":[1431,7280,8118,3493],"delegation":[431,6280,7118,2493],"delegatorTokens":9999999977545,"jailed":[null,null,null,null],"status":["unbonding","bonded","bonded","unbonding"]}},{"ix":52,"action":{"kind":"Deliver","chain":"consumer","numPackets":1},"partialState":{"h":7,"t":42,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[true,false,false,true]}},{"ix":53,"action":{"kind":"Deliver","chain":"provider","numPackets":6},"partialState":{"h":3,"t":18,"tokens":[1431,7280,8118,3493],"delegation":[431,6280,7118,2493],"delegatorTokens":9999999977545,"jailed":[null,null,null,null],"status":["unbonding","bonded","bonded","unbonding"]}},{"ix":54,"action":{"kind":"Deliver","chain":"provider","numPackets":2},"partialState":{"h":3,"t":18,"tokens":[1431,7280,8118,3493],"delegation":[431,6280,7118,2493],"delegatorTokens":9999999977545,"jailed":[null,null,null,null],"status":["unbonding","bonded","bonded","unbonding"]}},{"ix":55,"action":{"kind":"ConsumerSlash","val":0,"infractionHeight":0,"isDowntime":false},"partialState":{"h":7,"t":42,"outstandingDowntime":[true,false,false,true]}},{"ix":56,"action":{"kind":"Delegate","val":2,"amt":2375},"partialState":{"h":3,"t":18,"tokens":[1431,7280,10493,3493],"delegation":[431,6280,9493,2493],"delegatorTokens":9999999975170}},{"ix":57,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":58,"action":{"kind":"Undelegate","val":3,"amt":2785},"partialState":{"h":3,"t":18,"tokens":[1431,7280,10493,3493],"delegation":[431,6280,9493,2493],"delegatorTokens":9999999975170}},{"ix":59,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":60,"action":{"kind":"Delegate","val":3,"amt":4303},"partialState":{"h":3,"t":18,"tokens":[1431,7280,10493,7796],"delegation":[431,6280,9493,6796],"delegatorTokens":9999999970867}},{"ix":61,"action":{"kind":"Undelegate","val":2,"amt":3936},"partialState":{"h":3,"t":18,"tokens":[1431,7280,6557,7796],"delegation":[431,6280,5557,6796],"delegatorTokens":9999999970867}},{"ix":62,"action":{"kind":"ConsumerSlash","val":2,"infractionHeight":3,"isDowntime":true},"partialState":{"h":7,"t":42,"outstandingDowntime":[true,false,true,true]}},{"ix":63,"action":{"kind":"Delegate","val":1,"amt":2231},"partialState":{"h":3,"t":18,"tokens":[1431,9511,6557,7796],"delegation":[431,8511,5557,6796],"delegatorTokens":9999999968636}},{"ix":64,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":8,"t":48,"consumerPower":[null,null,4897,3493],"outstandingDowntime":[true,false,true,true]}},{"ix":65,"action":{"kind":"Deliver","chain":"provider","numPackets":5},"partialState":{"h":3,"t":18,"tokens":[1431,9511,6557,7796],"delegation":[431,8511,5557,6796],"delegatorTokens":9999999968636,"jailed":[null,null,null,null],"status":["unbonding","bonded","bonded","unbonding"]}},{"ix":66,"action":{"kind":"Deliver","chain":"consumer","numPackets":6},"partialState":{"h":8,"t":48,"consumerPower":[null,null,4897,3493],"outstandingDowntime":[true,false,true,true]}},{"ix":67,"action":{"kind":"Undelegate","val":2,"amt":2339},"partialState":{"h":3,"t":18,"tokens":[1431,9511,4218,7796],"delegation":[431,8511,3218,6796],"delegatorTokens":9999999968636}},{"ix":68,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":9,"t":54,"consumerPower":[null,null,4897,3493],"outstandingDowntime":[true,false,true,true]}},{"ix":69,"action":{"kind":"Undelegate","val":0,"amt":3355},"partialState":{"h":3,"t":18,"tokens":[1431,9511,4218,7796],"delegation":[431,8511,3218,6796],"delegatorTokens":9999999968636}},{"ix":70,"action":{"kind":"Deliver","chain":"provider","numPackets":1},"partialState":{"h":3,"t":18,"tokens":[1431,9511,4218,7796],"delegation":[431,8511,3218,6796],"delegatorTokens":9999999968636,"jailed":[null,null,null,null],"status":["unbonding","bonded","bonded","unbonding"]}},{"ix":71,"action":{"kind":"Delegate","val":2,"amt":1802},"partialState":{"h":3,"t":18,"tokens":[1431,9511,6020,7796],"delegation":[431,8511,5020,6796],"delegatorTokens":9999999966834}},{"ix":72,"action":{"kind":"Undelegate","val":3,"amt":2452},"partialState":{"h":3,"t":18,"tokens":[1431,9511,6020,5344],"delegation":[431,8511,5020,4344],"delegatorTokens":9999999966834}},{"ix":73,"action":{"kind":"Delegate","val":3,"amt":1884},"partialState":{"h":3,"t":18,"tokens":[1431,9511,6020,7228],"delegation":[431,8511,5020,6228],"delegatorTokens":9999999964950}},{"ix":74,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":4,"t":24,"tokens":[1431,9511,6020,7228],"delegation":[431,8511,5020,6228],"delegatorTokens":9999999964950,"jailed":[1000000000000017,null,null,null],"status":["unbonding","bonded","unbonding","bonded"]}},{"ix":75,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":10,"t":60,"consumerPower":[null,null,4897,3493],"outstandingDowntime":[true,false,true,true]}},{"ix":76,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":77,"action":{"kind":"Deliver","chain":"consumer","numPackets":5},"partialState":{"h":10,"t":60,"consumerPower":[null,null,4897,3493],"outstandingDowntime":[true,false,true,true]}},{"ix":78,"action":{"kind":"Delegate","val":3,"amt":4274},"partialState":{"h":4,"t":24,"tokens":[1431,9511,6020,11502],"delegation":[431,8511,5020,10502],"delegatorTokens":9999999960676}},{"ix":79,"action":{"kind":"Undelegate","val":3,"amt":3972},"partialState":{"h":4,"t":24,"tokens":[1431,9511,6020,7530],"delegation":[431,8511,5020,6530],"delegatorTokens":9999999960676}},{"ix":80,"action":{"kind":"Undelegate","val":3,"amt":2915},"partialState":{"h":4,"t":24,"tokens":[1431,9511,6020,4615],"delegation":[431,8511,5020,3615],"delegatorTokens":9999999960676}},{"ix":81,"action":{"kind":"Deliver","chain":"provider","numPackets":2},"partialState":{"h":4,"t":24,"tokens":[1431,9511,6020,4615],"delegation":[431,8511,5020,3615],"delegatorTokens":9999999960676,"jailed":[1000000000000017,null,null,null],"status":["unbonding","bonded","unbonding","bonded"]}},{"ix":82,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":11,"t":66,"consumerPower":[null,7280,4897,null],"outstandingDowntime":[true,false,true,true]}},{"ix":83,"action":{"kind":"Undelegate","val":0,"amt":2682},"partialState":{"h":4,"t":24,"tokens":[1431,9511,6020,4615],"delegation":[431,8511,5020,3615],"delegatorTokens":9999999960676}},{"ix":84,"action":{"kind":"Deliver","chain":"consumer","numPackets":3},"partialState":{"h":11,"t":66,"consumerPower":[null,7280,4897,null],"outstandingDowntime":[true,false,true,true]}},{"ix":85,"action":{"kind":"Deliver","chain":"provider","numPackets":3},"partialState":{"h":4,"t":24,"tokens":[1431,9511,6020,4615],"delegation":[431,8511,5020,3615],"delegatorTokens":9999999960676,"jailed":[1000000000000017,null,null,null],"status":["unbonding","bonded","unbonding","bonded"]}},{"ix":86,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":5,"t":30,"tokens":[1431,9511,6020,4615],"delegation":[431,8511,5020,3615],"delegatorTokens":9999999960676,"jailed":[1000000000000017,null,1000000000000023,1000000000000023],"status":["unbonding","bonded","bonded","unbonding"]}},{"ix":87,"action":{"kind":"Undelegate","val":2,"amt":2793},"partialState":{"h":5,"t":30,"tokens":[1431,9511,3227,4615],"delegation":[431,8511,2227,3615],"delegatorTokens":9999999960676}},{"ix":88,"action":{"kind":"Undelegate","val":3,"amt":3748},"partialState":{"h":5,"t":30,"tokens":[1431,9511,3227,4615],"delegation":[431,8511,2227,3615],"delegatorTokens":9999999960676}},{"ix":89,"action":{"kind":"Deliver","chain":"consumer","numPackets":3},"partialState":{"h":11,"t":66,"consumerPower":[null,7280,4897,null],"outstandingDowntime":[false,false,true,true]}},{"ix":90,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":12,"t":72,"consumerPower":[null,9511,null,7228],"outstandingDowntime":[false,false,true,true]}},{"ix":91,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":6,"t":36,"tokens":[1431,9511,3227,4615],"delegation":[431,8511,2227,3615],"delegatorTokens":9999999960676,"jailed":[1000000000000017,null,1000000000000023,1000000000000023],"status":["unbonding","bonded","unbonding","unbonding"]}},{"ix":92,"action":{"kind":"Deliver","chain":"consumer","numPackets":4},"partialState":{"h":12,"t":72,"consumerPower":[null,9511,null,7228],"outstandingDowntime":[false,false,false,false]}},{"ix":93,"action":{"kind":"Delegate","val":1,"amt":3256},"partialState":{"h":6,"t":36,"tokens":[1431,12767,3227,4615],"delegation":[431,11767,2227,3615],"delegatorTokens":9999999957420}},{"ix":94,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":95,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":7,"t":42,"tokens":[1431,12767,3227,4615],"delegation":[431,11767,2227,3615],"delegatorTokens":9999999957420,"jailed":[1000000000000017,null,1000000000000023,1000000000000023],"status":["unbonding","bonded","unbonding","unbonding"]}},{"ix":96,"action":{"kind":"Deliver","chain":"provider","numPackets":5},"partialState":{"h":7,"t":42,"tokens":[1431,12767,3227,4615],"delegation":[431,11767,2227,3615],"delegatorTokens":9999999957420,"jailed":[1000000000000017,null,1000000000000023,1000000000000023],"status":["unbonding","bonded","unbonding","unbonding"]}},{"ix":97,"action":{"kind":"Undelegate","val":1,"amt":3923},"partialState":{"h":7,"t":42,"tokens":[1431,8844,3227,4615],"delegation":[431,7844,2227,3615],"delegatorTokens":9999999957420}},{"ix":98,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":13,"t":78,"consumerPower":[null,9511,6020,null],"outstandingDowntime":[false,false,false,false]}},{"ix":99,"action":{"kind":"Undelegate","val":1,"amt":2375},"partialState":{"h":7,"t":42,"tokens":[1431,6469,3227,4615],"delegation":[431,5469,2227,3615],"delegatorTokens":9999999957420}},{"ix":100,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":101,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":102,"action":{"kind":"Delegate","val":2,"amt":3820},"partialState":{"h":7,"t":42,"tokens":[1431,6469,7047,4615],"delegation":[431,5469,6047,3615],"delegatorTokens":9999999953600}},{"ix":103,"action":{"kind":"Undelegate","val":0,"amt":1685},"partialState":{"h":7,"t":42,"tokens":[1431,6469,7047,4615],"delegation":[431,5469,6047,3615],"delegatorTokens":9999999953600}},{"ix":104,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":105,"action":{"kind":"Deliver","chain":"consumer","numPackets":1},"partialState":{"h":13,"t":78,"consumerPower":[null,9511,6020,null],"outstandingDowntime":[false,false,false,false]}},{"ix":106,"action":{"kind":"Deliver","chain":"consumer","numPackets":5},"partialState":{"h":13,"t":78,"consumerPower":[null,9511,6020,null],"outstandingDowntime":[false,false,false,false]}},{"ix":107,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":108,"action":{"kind":"Deliver","chain":"consumer","numPackets":2},"partialState":{"h":13,"t":78,"consumerPower":[null,9511,6020,null],"outstandingDowntime":[false,false,false,false]}},{"ix":109,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":8,"t":48,"tokens":[1431,6469,7047,4615],"delegation":[431,5469,6047,3615],"delegatorTokens":9999999953600,"jailed":[1000000000000017,null,1000000000000023,1000000000000023],"status":["unbonding","bonded","unbonding","unbonding"]}},{"ix":110,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":111,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":14,"t":84,"consumerPower":[null,9511,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":112,"action":{"kind":"Undelegate","val":0,"amt":2513},"partialState":{"h":8,"t":48,"tokens":[1431,6469,7047,4615],"delegation":[431,5469,6047,3615],"delegatorTokens":9999999953600}},{"ix":113,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":9,"t":54,"tokens":[1431,6469,7047,4615],"delegation":[431,5469,6047,3615],"delegatorTokens":9999999953600,"jailed":[1000000000000017,null,1000000000000023,1000000000000023],"status":["unbonding","bonded","unbonding","unbonding"]}},{"ix":114,"action":{"kind":"Delegate","val":0,"amt":3734},"partialState":{"h":9,"t":54,"tokens":[5165,6469,7047,4615],"delegation":[4165,5469,6047,3615],"delegatorTokens":9999999949866}},{"ix":115,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":15,"t":90,"consumerPower":[null,9511,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":116,"action":{"kind":"Delegate","val":2,"amt":2023},"partialState":{"h":9,"t":54,"tokens":[5165,6469,9070,4615],"delegation":[4165,5469,8070,3615],"delegatorTokens":9999999947843}},{"ix":117,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":10,"t":60,"tokens":[5165,6469,9070,4615],"delegation":[4165,5469,8070,3615],"delegatorTokens":9999999947843,"jailed":[1000000000000017,null,1000000000000023,1000000000000023],"status":["unbonding","bonded","unbonding","unbonding"]}},{"ix":118,"action":{"kind":"Undelegate","val":0,"amt":1595},"partialState":{"h":10,"t":60,"tokens":[3570,6469,9070,4615],"delegation":[2570,5469,8070,3615],"delegatorTokens":9999999947843}},{"ix":119,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":120,"action":{"kind":"Delegate","val":0,"amt":3505},"partialState":{"h":10,"t":60,"tokens":[7075,6469,9070,4615],"delegation":[6075,5469,8070,3615],"delegatorTokens":9999999944338}},{"ix":121,"action":{"kind":"Deliver","chain":"provider","numPackets":3},"partialState":{"h":10,"t":60,"tokens":[7075,6469,9070,4615],"delegation":[6075,5469,8070,3615],"delegatorTokens":9999999944338,"jailed":[1000000000000017,null,1000000000000023,1000000000000023],"status":["unbonding","bonded","unbonding","unbonding"]}},{"ix":122,"action":{"kind":"Delegate","val":3,"amt":4290},"partialState":{"h":10,"t":60,"tokens":[7075,6469,9070,8905],"delegation":[6075,5469,8070,7905],"delegatorTokens":9999999940048}},{"ix":123,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":124,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":11,"t":66,"tokens":[7075,6469,9070,8905],"delegation":[6075,5469,8070,7905],"delegatorTokens":9999999940048,"jailed":[1000000000000017,null,1000000000000023,1000000000000023],"status":["unbonding","bonded","unbonding","unbonding"]}},{"ix":125,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":126,"action":{"kind":"Delegate","val":3,"amt":2120},"partialState":{"h":11,"t":66,"tokens":[7075,6469,9070,11025],"delegation":[6075,5469,8070,10025],"delegatorTokens":9999999937928}},{"ix":127,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":12,"t":72,"tokens":[7075,6469,9070,11025],"delegation":[6075,5469,8070,10025],"delegatorTokens":9999999937928,"jailed":[1000000000000017,null,1000000000000023,1000000000000023],"status":["unbonding","bonded","unbonding","unbonding"]}},{"ix":128,"action":{"kind":"Delegate","val":1,"amt":1364},"partialState":{"h":12,"t":72,"tokens":[7075,7833,9070,11025],"delegation":[6075,6833,8070,10025],"delegatorTokens":9999999936564}},{"ix":129,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":16,"t":96,"consumerPower":[null,9511,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":130,"action":{"kind":"Delegate","val":1,"amt":1864},"partialState":{"h":12,"t":72,"tokens":[7075,9697,9070,11025],"delegation":[6075,8697,8070,10025],"delegatorTokens":9999999934700}},{"ix":131,"action":{"kind":"Deliver","chain":"provider","numPackets":4},"partialState":{"h":12,"t":72,"tokens":[7075,9697,9070,11025],"delegation":[6075,8697,8070,10025],"delegatorTokens":9999999934700,"jailed":[1000000000000017,null,1000000000000023,1000000000000023],"status":["unbonding","bonded","unbonding","unbonding"]}},{"ix":132,"action":{"kind":"Delegate","val":0,"amt":4118},"partialState":{"h":12,"t":72,"tokens":[11193,9697,9070,11025],"delegation":[10193,8697,8070,10025],"delegatorTokens":9999999930582}},{"ix":133,"action":{"kind":"Delegate","val":2,"amt":3002},"partialState":{"h":12,"t":72,"tokens":[11193,9697,12072,11025],"delegation":[10193,8697,11072,10025],"delegatorTokens":9999999927580}},{"ix":134,"action":{"kind":"Deliver","chain":"consumer","numPackets":1},"partialState":{"h":16,"t":96,"consumerPower":[null,9511,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":135,"action":{"kind":"Undelegate","val":3,"amt":2850},"partialState":{"h":12,"t":72,"tokens":[11193,9697,12072,8175],"delegation":[10193,8697,11072,7175],"delegatorTokens":9999999927580}},{"ix":136,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":137,"action":{"kind":"Deliver","chain":"provider","numPackets":4},"partialState":{"h":12,"t":72,"tokens":[11193,9697,12072,8175],"delegation":[10193,8697,11072,7175],"delegatorTokens":9999999927580,"jailed":[1000000000000017,null,1000000000000023,1000000000000023],"status":["unbonding","bonded","unbonding","unbonding"]}},{"ix":138,"action":{"kind":"Undelegate","val":3,"amt":3912},"partialState":{"h":12,"t":72,"tokens":[11193,9697,12072,4263],"delegation":[10193,8697,11072,3263],"delegatorTokens":9999999927580}},{"ix":139,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":140,"action":{"kind":"Undelegate","val":3,"amt":1042},"partialState":{"h":12,"t":72,"tokens":[11193,9697,12072,3221],"delegation":[10193,8697,11072,2221],"delegatorTokens":9999999927580}},{"ix":141,"action":{"kind":"Delegate","val":3,"amt":4212},"partialState":{"h":12,"t":72,"tokens":[11193,9697,12072,7433],"delegation":[10193,8697,11072,6433],"delegatorTokens":9999999923368}},{"ix":142,"action":{"kind":"Undelegate","val":1,"amt":1927},"partialState":{"h":12,"t":72,"tokens":[11193,7770,12072,7433],"delegation":[10193,6770,11072,6433],"delegatorTokens":9999999923368}},{"ix":143,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":13,"t":78,"tokens":[11193,7770,12072,7433],"delegation":[10193,6770,11072,6433],"delegatorTokens":9999999923368,"jailed":[1000000000000017,null,1000000000000023,1000000000000023],"status":["unbonding","bonded","unbonding","unbonding"]}},{"ix":144,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":145,"action":{"kind":"Undelegate","val":3,"amt":3576},"partialState":{"h":13,"t":78,"tokens":[11193,7770,12072,3857],"delegation":[10193,6770,11072,2857],"delegatorTokens":9999999923368}},{"ix":146,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":147,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":14,"t":84,"tokens":[11193,7770,12072,3857],"delegation":[10193,6770,11072,2857],"delegatorTokens":9999999923368,"jailed":[1000000000000017,null,1000000000000023,1000000000000023],"status":["unbonding","bonded","unbonding","unbonding"]}},{"ix":148,"action":{"kind":"Undelegate","val":0,"amt":1975},"partialState":{"h":14,"t":84,"tokens":[9218,7770,12072,3857],"delegation":[8218,6770,11072,2857],"delegatorTokens":9999999923368}},{"ix":149,"action":{"kind":"Deliver","chain":"provider","numPackets":1},"partialState":{"h":14,"t":84,"tokens":[9218,7770,12072,3857],"delegation":[8218,6770,11072,2857],"delegatorTokens":9999999923368,"jailed":[1000000000000017,null,1000000000000023,1000000000000023],"status":["unbonding","bonded","unbonding","unbonding"]}},{"ix":150,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":17,"t":102,"consumerPower":[null,12767,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":151,"action":{"kind":"Delegate","val":2,"amt":4443},"partialState":{"h":14,"t":84,"tokens":[9218,7770,16515,3857],"delegation":[8218,6770,15515,2857],"delegatorTokens":9999999918925}},{"ix":152,"action":{"kind":"Delegate","val":3,"amt":2441},"partialState":{"h":14,"t":84,"tokens":[9218,7770,16515,6298],"delegation":[8218,6770,15515,5298],"delegatorTokens":9999999916484}},{"ix":153,"action":{"kind":"Undelegate","val":2,"amt":3583},"partialState":{"h":14,"t":84,"tokens":[9218,7770,12932,6298],"delegation":[8218,6770,11932,5298],"delegatorTokens":9999999916484}},{"ix":154,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":18,"t":108,"consumerPower":[null,12767,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":155,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":15,"t":90,"tokens":[9218,7770,12932,6298],"delegation":[8218,6770,11932,5298],"delegatorTokens":9999999916484,"jailed":[1000000000000017,null,1000000000000023,1000000000000023],"status":["unbonding","bonded","unbonding","unbonding"]}},{"ix":156,"action":{"kind":"Undelegate","val":1,"amt":3436},"partialState":{"h":15,"t":90,"tokens":[9218,4334,12932,6298],"delegation":[8218,3334,11932,5298],"delegatorTokens":9999999916484}},{"ix":157,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":16,"t":96,"tokens":[9218,4334,12932,6298],"delegation":[8218,3334,11932,5298],"delegatorTokens":9999999916484,"jailed":[1000000000000017,null,1000000000000023,1000000000000023],"status":["unbonding","bonded","unbonding","unbonding"]}},{"ix":158,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":159,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":160,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":19,"t":114,"consumerPower":[null,12767,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":161,"action":{"kind":"Undelegate","val":3,"amt":4791},"partialState":{"h":16,"t":96,"tokens":[9218,4334,12932,1507],"delegation":[8218,3334,11932,507],"delegatorTokens":9999999916484}},{"ix":162,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":20,"t":120,"consumerPower":[null,12767,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":163,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":164,"action":{"kind":"Delegate","val":3,"amt":1377},"partialState":{"h":16,"t":96,"tokens":[9218,4334,12932,2884],"delegation":[8218,3334,11932,1884],"delegatorTokens":9999999915107}},{"ix":165,"action":{"kind":"Undelegate","val":1,"amt":1423},"partialState":{"h":16,"t":96,"tokens":[9218,2911,12932,2884],"delegation":[8218,1911,11932,1884],"delegatorTokens":9999999915107}},{"ix":166,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":167,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":17,"t":102,"tokens":[9218,2911,12932,2884],"delegation":[8218,1911,11932,1884],"delegatorTokens":9999999915107,"jailed":[1000000000000017,null,1000000000000023,1000000000000023],"status":["unbonding","bonded","unbonding","unbonding"]}},{"ix":168,"action":{"kind":"Undelegate","val":3,"amt":1430},"partialState":{"h":17,"t":102,"tokens":[9218,2911,12932,1454],"delegation":[8218,1911,11932,454],"delegatorTokens":9999999915107}},{"ix":169,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":21,"t":126,"consumerPower":[null,12767,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":170,"action":{"kind":"Undelegate","val":0,"amt":4315},"partialState":{"h":17,"t":102,"tokens":[4903,2911,12932,1454],"delegation":[3903,1911,11932,454],"delegatorTokens":9999999915107}},{"ix":171,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":18,"t":108,"tokens":[4903,2911,12932,1454],"delegation":[3903,1911,11932,454],"delegatorTokens":9999999915107,"jailed":[1000000000000017,null,1000000000000023,1000000000000023],"status":["unbonding","bonded","unbonding","unbonding"]}},{"ix":172,"action":{"kind":"Deliver","chain":"provider","numPackets":3},"partialState":{"h":18,"t":108,"tokens":[4903,2911,12932,1454],"delegation":[3903,1911,11932,454],"delegatorTokens":9999999915107,"jailed":[1000000000000017,null,1000000000000023,1000000000000023],"status":["unbonding","bonded","unbonding","unbonding"]}},{"ix":173,"action":{"kind":"Undelegate","val":2,"amt":2692},"partialState":{"h":18,"t":108,"tokens":[4903,2911,10240,1454],"delegation":[3903,1911,9240,454],"delegatorTokens":9999999915107}},{"ix":174,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":175,"action":{"kind":"Delegate","val":0,"amt":2732},"partialState":{"h":18,"t":108,"tokens":[7635,2911,10240,1454],"delegation":[6635,1911,9240,454],"delegatorTokens":9999999912375}},{"ix":176,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":177,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":178,"action":{"kind":"Delegate","val":2,"amt":4408},"partialState":{"h":18,"t":108,"tokens":[7635,2911,14648,1454],"delegation":[6635,1911,13648,454],"delegatorTokens":9999999907967}},{"ix":179,"action":{"kind":"Undelegate","val":0,"amt":3847},"partialState":{"h":18,"t":108,"tokens":[3788,2911,14648,1454],"delegation":[2788,1911,13648,454],"delegatorTokens":9999999907967}},{"ix":180,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":19,"t":114,"tokens":[3788,2911,14648,1454],"delegation":[2788,1911,13648,454],"delegatorTokens":9999999924100,"jailed":[1000000000000017,null,1000000000000023,1000000000000023],"status":["unbonding","bonded","unbonding","unbonding"]}},{"ix":181,"action":{"kind":"Deliver","chain":"consumer","numPackets":2},"partialState":{"h":21,"t":126,"consumerPower":[null,12767,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":182,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":20,"t":120,"tokens":[3788,2911,14648,1454],"delegation":[2788,1911,13648,454],"delegatorTokens":9999999924100,"jailed":[1000000000000017,null,1000000000000023,1000000000000023],"status":["unbonded","bonded","unbonding","unbonding"]}},{"ix":183,"action":{"kind":"Deliver","chain":"consumer","numPackets":2},"partialState":{"h":21,"t":126,"consumerPower":[null,12767,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":184,"action":{"kind":"Delegate","val":0,"amt":1359},"partialState":{"h":20,"t":120,"tokens":[5147,2911,14648,1454],"delegation":[4147,1911,13648,454],"delegatorTokens":9999999922741}},{"ix":185,"action":{"kind":"Deliver","chain":"provider","numPackets":4},"partialState":{"h":20,"t":120,"tokens":[5147,2911,14648,1454],"delegation":[4147,1911,13648,454],"delegatorTokens":9999999922741,"jailed":[1000000000000017,null,1000000000000023,1000000000000023],"status":["unbonded","bonded","unbonding","unbonding"]}},{"ix":186,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":187,"action":{"kind":"Deliver","chain":"provider","numPackets":6},"partialState":{"h":20,"t":120,"tokens":[5147,2911,14648,1454],"delegation":[4147,1911,13648,454],"delegatorTokens":9999999922741,"jailed":[1000000000000017,null,1000000000000023,1000000000000023],"status":["unbonded","bonded","unbonding","unbonding"]}},{"ix":188,"action":{"kind":"Undelegate","val":3,"amt":2541},"partialState":{"h":20,"t":120,"tokens":[5147,2911,14648,1454],"delegation":[4147,1911,13648,454],"delegatorTokens":9999999922741}},{"ix":189,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":22,"t":132,"consumerPower":[null,7770,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":190,"action":{"kind":"Deliver","chain":"consumer","numPackets":4},"partialState":{"h":22,"t":132,"consumerPower":[null,7770,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":191,"action":{"kind":"Undelegate","val":0,"amt":4472},"partialState":{"h":20,"t":120,"tokens":[5147,2911,14648,1454],"delegation":[4147,1911,13648,454],"delegatorTokens":9999999922741}},{"ix":192,"action":{"kind":"Undelegate","val":2,"amt":1410},"partialState":{"h":20,"t":120,"tokens":[5147,2911,13238,1454],"delegation":[4147,1911,12238,454],"delegatorTokens":9999999922741}},{"ix":193,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":21,"t":126,"tokens":[5147,2911,13238,1454],"delegation":[4147,1911,12238,454],"delegatorTokens":9999999922741,"jailed":[1000000000000017,null,1000000000000023,1000000000000023],"status":["unbonded","bonded","unbonding","unbonding"]}},{"ix":194,"action":{"kind":"Delegate","val":3,"amt":3379},"partialState":{"h":21,"t":126,"tokens":[5147,2911,13238,4833],"delegation":[4147,1911,12238,3833],"delegatorTokens":9999999919362}},{"ix":195,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":196,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":22,"t":132,"tokens":[5147,2911,13238,4833],"delegation":[4147,1911,12238,3833],"delegatorTokens":9999999919362,"jailed":[1000000000000017,null,1000000000000023,1000000000000023],"status":["unbonded","bonded","unbonding","unbonding"]}},{"ix":197,"action":{"kind":"Deliver","chain":"consumer","numPackets":5},"partialState":{"h":22,"t":132,"consumerPower":[null,7770,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":198,"action":{"kind":"Delegate","val":1,"amt":4190},"partialState":{"h":22,"t":132,"tokens":[5147,7101,13238,4833],"delegation":[4147,6101,12238,3833],"delegatorTokens":9999999915172}},{"ix":199,"action":{"kind":"Deliver","chain":"consumer","numPackets":5},"partialState":{"h":22,"t":132,"consumerPower":[null,7770,null,null],"outstandingDowntime":[false,false,false,false]}}],"events":["send_double_sign_slash_request","send_double_sign_slash_request","insufficient_shares","send_double_sign_slash_request","insufficient_shares","insufficient_shares","receive_double_sign_slash_request","receive_double_sign_slash_request","receive_double_sign_slash_request","send_double_sign_slash_request","send_double_sign_slash_request","send_downtime_slash_request","more_than_one_third_val_power_change","send_vsc_without_downtime_ack","send_double_sign_slash_request","more_than_one_third_val_power_change","rebond_unval","send_vsc_without_downtime_ack","send_downtime_slash_request","downtime_slash_request_outstanding","insufficient_shares","send_double_sign_slash_request","insufficient_shares","send_downtime_slash_request","consumer_del_val","consumer_del_val","consumer_add_val","consumer_add_val","receive_double_sign_slash_request","receive_double_sign_slash_request","insufficient_shares","receive_double_sign_slash_request","more_than_one_third_val_power_change","rebond_unval","receive_downtime_slash_request","jail","send_vsc_with_downtime_ack","receive_double_sign_slash_request","consumer_add_val","consumer_del_val","insufficient_shares","more_than_one_third_val_power_change","rebond_unval","receive_downtime_slash_request","jail","receive_downtime_slash_request","jail","send_vsc_with_downtime_ack","insufficient_shares","receive_downtime_slash_ack","consumer_update_val","consumer_del_val","consumer_add_val","send_vsc_without_downtime_ack","receive_downtime_slash_ack","receive_downtime_slash_ack","send_vsc_without_downtime_ack","consumer_add_val","consumer_del_val","insufficient_shares","send_vsc_without_downtime_ack","consumer_del_val","insufficient_shares","send_vsc_not_because_change","send_vsc_without_downtime_ack","send_vsc_without_downtime_ack","some_undels_expired_but_not_completed","send_vsc_not_because_change","send_vsc_without_downtime_ack","consumer_send_maturation","consumer_update_val","send_vsc_not_because_change","send_vsc_without_downtime_ack","some_undels_expired_but_not_completed","send_vsc_without_downtime_ack","consumer_send_maturation","some_undels_expired_but_not_completed","send_vsc_without_downtime_ack","consumer_send_maturation","some_undels_expired_but_not_completed","send_vsc_not_because_change","send_vsc_without_downtime_ack","complete_undel_immediate","complete_undel_immediate","complete_undel_immediate","complete_undel_immediate","complete_undel_immediate","complete_undel_immediate","set_unval_hold_false","send_vsc_not_because_change","send_vsc_without_downtime_ack","complete_unval_in_endblock","some_undels_expired_but_not_completed","insufficient_shares","consumer_send_maturation","consumer_update_val","insufficient_shares","send_vsc_not_because_change","send_vsc_without_downtime_ack"]},{"meta":{"commit":"7ffd0c04e4205cbc9caf212abfe6c59ee43153bf"},"constants":{"P":"provider","C":"consumer","UNBONDING_SECONDS_P":70,"UNBONDING_SECONDS_C":50,"TRUSTING_SECONDS":49,"NUM_VALIDATORS":4,"MAX_VALIDATORS":2,"SLASH_DOUBLESIGN":0,"SLASH_DOWNTIME":0,"JAIL_SECONDS":999999999999999,"BLOCK_SECONDS":6,"INITIAL_DELEGATOR_TOKENS":10000000000000,"DELEGATE_AMT_MIN":1000,"DELEGATE_AMT_MAX":5000,"UNDELEGATE_AMT_MIN":1000,"UNDELEGATE_AMT_MAX":5000,"ISDOWNTIME_PROBABILITY":0.5,"MAX_NUM_PACKETS_FOR_DELIVER":6},"actions":[{"ix":0,"action":{"kind":"Delegate","val":2,"amt":4981},"partialState":{"h":1,"t":6,"tokens":[5000,4000,7981,2000],"delegation":[4000,3000,6981,1000],"delegatorTokens":9999999995019}},{"ix":1,"action":{"kind":"Undelegate","val":2,"amt":4305},"partialState":{"h":1,"t":6,"tokens":[5000,4000,3676,2000],"delegation":[4000,3000,2676,1000],"delegatorTokens":9999999995019}},{"ix":2,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":2,"t":12,"tokens":[5000,4000,3676,2000],"delegation":[4000,3000,2676,1000],"delegatorTokens":9999999995019,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":3,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":4,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":5,"action":{"kind":"ConsumerSlash","val":1,"infractionHeight":0,"isDowntime":true},"partialState":{"h":1,"t":6,"outstandingDowntime":[false,true,false,false]}},{"ix":6,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":2,"t":12,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,true,false,false]}},{"ix":7,"action":{"kind":"Deliver","chain":"consumer","numPackets":6},"partialState":{"h":2,"t":12,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,true,false,false]}},{"ix":8,"action":{"kind":"Delegate","val":0,"amt":1974},"partialState":{"h":2,"t":12,"tokens":[6974,4000,3676,2000],"delegation":[5974,3000,2676,1000],"delegatorTokens":9999999993045}},{"ix":9,"action":{"kind":"Undelegate","val":0,"amt":3775},"partialState":{"h":2,"t":12,"tokens":[3199,4000,3676,2000],"delegation":[2199,3000,2676,1000],"delegatorTokens":9999999993045}},{"ix":10,"action":{"kind":"ConsumerSlash","val":3,"infractionHeight":0,"isDowntime":false},"partialState":{"h":2,"t":12,"outstandingDowntime":[false,true,false,false]}},{"ix":11,"action":{"kind":"Delegate","val":3,"amt":3289},"partialState":{"h":2,"t":12,"tokens":[3199,4000,3676,5289],"delegation":[2199,3000,2676,4289],"delegatorTokens":9999999989756}},{"ix":12,"action":{"kind":"Delegate","val":3,"amt":1339},"partialState":{"h":2,"t":12,"tokens":[3199,4000,3676,6628],"delegation":[2199,3000,2676,5628],"delegatorTokens":9999999988417}},{"ix":13,"action":{"kind":"Deliver","chain":"provider","numPackets":3},"partialState":{"h":2,"t":12,"tokens":[3199,4000,3676,6628],"delegation":[2199,3000,2676,5628],"delegatorTokens":9999999988417,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":14,"action":{"kind":"Delegate","val":3,"amt":3574},"partialState":{"h":2,"t":12,"tokens":[3199,4000,3676,10202],"delegation":[2199,3000,2676,9202],"delegatorTokens":9999999984843}},{"ix":15,"action":{"kind":"Delegate","val":2,"amt":2779},"partialState":{"h":2,"t":12,"tokens":[3199,4000,6455,10202],"delegation":[2199,3000,5455,9202],"delegatorTokens":9999999982064}},{"ix":16,"action":{"kind":"Undelegate","val":0,"amt":3369},"partialState":{"h":2,"t":12,"tokens":[3199,4000,6455,10202],"delegation":[2199,3000,5455,9202],"delegatorTokens":9999999982064}},{"ix":17,"action":{"kind":"Undelegate","val":0,"amt":1507},"partialState":{"h":2,"t":12,"tokens":[1692,4000,6455,10202],"delegation":[692,3000,5455,9202],"delegatorTokens":9999999982064}},{"ix":18,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":3,"t":18,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,true,false,false]}},{"ix":19,"action":{"kind":"Undelegate","val":2,"amt":3317},"partialState":{"h":2,"t":12,"tokens":[1692,4000,3138,10202],"delegation":[692,3000,2138,9202],"delegatorTokens":9999999982064}},{"ix":20,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":21,"action":{"kind":"ConsumerSlash","val":3,"infractionHeight":2,"isDowntime":false},"partialState":{"h":3,"t":18,"outstandingDowntime":[false,true,false,false]}},{"ix":22,"action":{"kind":"ConsumerSlash","val":1,"infractionHeight":1,"isDowntime":false},"partialState":{"h":3,"t":18,"outstandingDowntime":[false,true,false,false]}},{"ix":23,"action":{"kind":"Deliver","chain":"provider","numPackets":3},"partialState":{"h":2,"t":12,"tokens":[1692,4000,3138,10202],"delegation":[692,3000,2138,9202],"delegatorTokens":9999999982064,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":24,"action":{"kind":"ConsumerSlash","val":1,"infractionHeight":1,"isDowntime":true},"partialState":{"h":3,"t":18,"outstandingDowntime":[false,true,false,false]}},{"ix":25,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":3,"t":18,"tokens":[1692,4000,3138,10202],"delegation":[692,3000,2138,9202],"delegatorTokens":9999999982064,"jailed":[null,1000000000000011,null,null],"status":["unbonding","bonded","unbonded","bonded"]}},{"ix":26,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":27,"action":{"kind":"Delegate","val":2,"amt":3529},"partialState":{"h":3,"t":18,"tokens":[1692,4000,6667,10202],"delegation":[692,3000,5667,9202],"delegatorTokens":9999999978535}},{"ix":28,"action":{"kind":"Deliver","chain":"provider","numPackets":2},"partialState":{"h":3,"t":18,"tokens":[1692,4000,6667,10202],"delegation":[692,3000,5667,9202],"delegatorTokens":9999999978535,"jailed":[null,1000000000000011,null,null],"status":["unbonding","bonded","unbonded","bonded"]}},{"ix":29,"action":{"kind":"Delegate","val":1,"amt":2090},"partialState":{"h":3,"t":18,"tokens":[1692,6090,6667,10202],"delegation":[692,5090,5667,9202],"delegatorTokens":9999999976445}},{"ix":30,"action":{"kind":"Delegate","val":1,"amt":3448},"partialState":{"h":3,"t":18,"tokens":[1692,9538,6667,10202],"delegation":[692,8538,5667,9202],"delegatorTokens":9999999972997}},{"ix":31,"action":{"kind":"Undelegate","val":2,"amt":4148},"partialState":{"h":3,"t":18,"tokens":[1692,9538,2519,10202],"delegation":[692,8538,1519,9202],"delegatorTokens":9999999972997}},{"ix":32,"action":{"kind":"Deliver","chain":"consumer","numPackets":6},"partialState":{"h":3,"t":18,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,true,false,false]}},{"ix":33,"action":{"kind":"Delegate","val":3,"amt":1820},"partialState":{"h":3,"t":18,"tokens":[1692,9538,2519,12022],"delegation":[692,8538,1519,11022],"delegatorTokens":9999999971177}},{"ix":34,"action":{"kind":"Deliver","chain":"provider","numPackets":4},"partialState":{"h":3,"t":18,"tokens":[1692,9538,2519,12022],"delegation":[692,8538,1519,11022],"delegatorTokens":9999999971177,"jailed":[null,1000000000000011,null,null],"status":["unbonding","bonded","unbonded","bonded"]}},{"ix":35,"action":{"kind":"ConsumerSlash","val":3,"infractionHeight":0,"isDowntime":true},"partialState":{"h":3,"t":18,"outstandingDowntime":[false,true,false,true]}},{"ix":36,"action":{"kind":"Delegate","val":2,"amt":1542},"partialState":{"h":3,"t":18,"tokens":[1692,9538,4061,12022],"delegation":[692,8538,3061,11022],"delegatorTokens":9999999969635}},{"ix":37,"action":{"kind":"Deliver","chain":"provider","numPackets":5},"partialState":{"h":3,"t":18,"tokens":[1692,9538,4061,12022],"delegation":[692,8538,3061,11022],"delegatorTokens":9999999969635,"jailed":[null,1000000000000011,null,null],"status":["unbonding","bonded","unbonded","bonded"]}},{"ix":38,"action":{"kind":"Delegate","val":1,"amt":4344},"partialState":{"h":3,"t":18,"tokens":[1692,13882,4061,12022],"delegation":[692,12882,3061,11022],"delegatorTokens":9999999965291}},{"ix":39,"action":{"kind":"Delegate","val":3,"amt":4670},"partialState":{"h":3,"t":18,"tokens":[1692,13882,4061,16692],"delegation":[692,12882,3061,15692],"delegatorTokens":9999999960621}},{"ix":40,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":41,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":4,"t":24,"tokens":[1692,13882,4061,16692],"delegation":[692,12882,3061,15692],"delegatorTokens":9999999960621,"jailed":[null,1000000000000011,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":42,"action":{"kind":"Undelegate","val":0,"amt":1541},"partialState":{"h":4,"t":24,"tokens":[1692,13882,4061,16692],"delegation":[692,12882,3061,15692],"delegatorTokens":9999999960621}},{"ix":43,"action":{"kind":"Delegate","val":1,"amt":2407},"partialState":{"h":4,"t":24,"tokens":[1692,16289,4061,16692],"delegation":[692,15289,3061,15692],"delegatorTokens":9999999958214}},{"ix":44,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":4,"t":24,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,true,false,true]}},{"ix":45,"action":{"kind":"Deliver","chain":"consumer","numPackets":6},"partialState":{"h":4,"t":24,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,false,false,true]}},{"ix":46,"action":{"kind":"ConsumerSlash","val":3,"infractionHeight":1,"isDowntime":true},"partialState":{"h":4,"t":24,"outstandingDowntime":[false,false,false,true]}},{"ix":47,"action":{"kind":"Delegate","val":2,"amt":1256},"partialState":{"h":4,"t":24,"tokens":[1692,16289,5317,16692],"delegation":[692,15289,4317,15692],"delegatorTokens":9999999956958}},{"ix":48,"action":{"kind":"Deliver","chain":"provider","numPackets":5},"partialState":{"h":4,"t":24,"tokens":[1692,16289,5317,16692],"delegation":[692,15289,4317,15692],"delegatorTokens":9999999956958,"jailed":[null,1000000000000011,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":49,"action":{"kind":"Delegate","val":2,"amt":3292},"partialState":{"h":4,"t":24,"tokens":[1692,16289,8609,16692],"delegation":[692,15289,7609,15692],"delegatorTokens":9999999953666}},{"ix":50,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":51,"action":{"kind":"Undelegate","val":3,"amt":4810},"partialState":{"h":4,"t":24,"tokens":[1692,16289,8609,11882],"delegation":[692,15289,7609,10882],"delegatorTokens":9999999953666}},{"ix":52,"action":{"kind":"Deliver","chain":"provider","numPackets":2},"partialState":{"h":4,"t":24,"tokens":[1692,16289,8609,11882],"delegation":[692,15289,7609,10882],"delegatorTokens":9999999953666,"jailed":[null,1000000000000011,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":53,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":5,"t":30,"consumerPower":[null,4000,null,10202],"outstandingDowntime":[false,false,false,true]}},{"ix":54,"action":{"kind":"Deliver","chain":"consumer","numPackets":5},"partialState":{"h":5,"t":30,"consumerPower":[null,4000,null,10202],"outstandingDowntime":[false,false,false,true]}},{"ix":55,"action":{"kind":"Undelegate","val":0,"amt":3865},"partialState":{"h":4,"t":24,"tokens":[1692,16289,8609,11882],"delegation":[692,15289,7609,10882],"delegatorTokens":9999999953666}},{"ix":56,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":57,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":6,"t":36,"consumerPower":[null,4000,null,10202],"outstandingDowntime":[false,false,false,true]}},{"ix":58,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":7,"t":42,"consumerPower":[null,4000,null,10202],"outstandingDowntime":[false,false,false,true]}},{"ix":59,"action":{"kind":"Delegate","val":0,"amt":2544},"partialState":{"h":4,"t":24,"tokens":[4236,16289,8609,11882],"delegation":[3236,15289,7609,10882],"delegatorTokens":9999999951122}},{"ix":60,"action":{"kind":"Undelegate","val":1,"amt":2181},"partialState":{"h":4,"t":24,"tokens":[4236,14108,8609,11882],"delegation":[3236,13108,7609,10882],"delegatorTokens":9999999951122}},{"ix":61,"action":{"kind":"Deliver","chain":"consumer","numPackets":6},"partialState":{"h":7,"t":42,"consumerPower":[null,4000,null,10202],"outstandingDowntime":[false,false,false,true]}},{"ix":62,"action":{"kind":"Deliver","chain":"provider","numPackets":4},"partialState":{"h":4,"t":24,"tokens":[4236,14108,8609,11882],"delegation":[3236,13108,7609,10882],"delegatorTokens":9999999951122,"jailed":[null,1000000000000011,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":63,"action":{"kind":"ConsumerSlash","val":1,"infractionHeight":4,"isDowntime":false},"partialState":{"h":7,"t":42,"outstandingDowntime":[false,false,false,true]}},{"ix":64,"action":{"kind":"Delegate","val":2,"amt":4736},"partialState":{"h":4,"t":24,"tokens":[4236,14108,13345,11882],"delegation":[3236,13108,12345,10882],"delegatorTokens":9999999946386}},{"ix":65,"action":{"kind":"Deliver","chain":"provider","numPackets":4},"partialState":{"h":4,"t":24,"tokens":[4236,14108,13345,11882],"delegation":[3236,13108,12345,10882],"delegatorTokens":9999999946386,"jailed":[null,1000000000000011,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":66,"action":{"kind":"Delegate","val":1,"amt":4878},"partialState":{"h":4,"t":24,"tokens":[4236,18986,13345,11882],"delegation":[3236,17986,12345,10882],"delegatorTokens":9999999941508}},{"ix":67,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":5,"t":30,"tokens":[4236,18986,13345,11882],"delegation":[3236,17986,12345,10882],"delegatorTokens":9999999941508,"jailed":[null,1000000000000011,null,1000000000000023],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":68,"action":{"kind":"ConsumerSlash","val":1,"infractionHeight":5,"isDowntime":true},"partialState":{"h":7,"t":42,"outstandingDowntime":[false,true,false,true]}},{"ix":69,"action":{"kind":"Delegate","val":2,"amt":2147},"partialState":{"h":5,"t":30,"tokens":[4236,18986,15492,11882],"delegation":[3236,17986,14492,10882],"delegatorTokens":9999999939361}},{"ix":70,"action":{"kind":"Deliver","chain":"consumer","numPackets":2},"partialState":{"h":7,"t":42,"consumerPower":[null,4000,null,10202],"outstandingDowntime":[false,true,false,true]}},{"ix":71,"action":{"kind":"ConsumerSlash","val":2,"infractionHeight":0,"isDowntime":true},"partialState":{"h":7,"t":42,"outstandingDowntime":[false,true,true,true]}},{"ix":72,"action":{"kind":"Delegate","val":0,"amt":4765},"partialState":{"h":5,"t":30,"tokens":[9001,18986,15492,11882],"delegation":[8001,17986,14492,10882],"delegatorTokens":9999999934596}},{"ix":73,"action":{"kind":"Delegate","val":1,"amt":1949},"partialState":{"h":5,"t":30,"tokens":[9001,20935,15492,11882],"delegation":[8001,19935,14492,10882],"delegatorTokens":9999999932647}},{"ix":74,"action":{"kind":"Delegate","val":2,"amt":3261},"partialState":{"h":5,"t":30,"tokens":[9001,20935,18753,11882],"delegation":[8001,19935,17753,10882],"delegatorTokens":9999999929386}},{"ix":75,"action":{"kind":"Delegate","val":1,"amt":3646},"partialState":{"h":5,"t":30,"tokens":[9001,24581,18753,11882],"delegation":[8001,23581,17753,10882],"delegatorTokens":9999999925740}},{"ix":76,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":77,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":8,"t":48,"consumerPower":[null,null,4061,16692],"outstandingDowntime":[false,true,true,true]}},{"ix":78,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":79,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":6,"t":36,"tokens":[9001,24581,18753,11882],"delegation":[8001,23581,17753,10882],"delegatorTokens":9999999925740,"jailed":[null,1000000000000011,null,1000000000000023],"status":["bonded","unbonding","bonded","unbonding"]}},{"ix":80,"action":{"kind":"Deliver","chain":"consumer","numPackets":6},"partialState":{"h":8,"t":48,"consumerPower":[null,null,4061,16692],"outstandingDowntime":[false,true,true,false]}},{"ix":81,"action":{"kind":"Undelegate","val":1,"amt":1136},"partialState":{"h":6,"t":36,"tokens":[9001,23445,18753,11882],"delegation":[8001,22445,17753,10882],"delegatorTokens":9999999925740}},{"ix":82,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":83,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":7,"t":42,"tokens":[9001,23445,18753,11882],"delegation":[8001,22445,17753,10882],"delegatorTokens":9999999925740,"jailed":[null,1000000000000011,null,1000000000000023],"status":["bonded","unbonding","bonded","unbonding"]}},{"ix":84,"action":{"kind":"Undelegate","val":3,"amt":3248},"partialState":{"h":7,"t":42,"tokens":[9001,23445,18753,8634],"delegation":[8001,22445,17753,7634],"delegatorTokens":9999999925740}},{"ix":85,"action":{"kind":"Deliver","chain":"consumer","numPackets":2},"partialState":{"h":8,"t":48,"consumerPower":[null,null,4061,16692],"outstandingDowntime":[false,true,true,false]}},{"ix":86,"action":{"kind":"Delegate","val":0,"amt":1917},"partialState":{"h":7,"t":42,"tokens":[10918,23445,18753,8634],"delegation":[9918,22445,17753,7634],"delegatorTokens":9999999923823}},{"ix":87,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":8,"t":48,"tokens":[10918,23445,18753,8634],"delegation":[9918,22445,17753,7634],"delegatorTokens":9999999923823,"jailed":[null,1000000000000011,null,1000000000000023],"status":["bonded","unbonding","bonded","unbonding"]}},{"ix":88,"action":{"kind":"Undelegate","val":1,"amt":3511},"partialState":{"h":8,"t":48,"tokens":[10918,19934,18753,8634],"delegation":[9918,18934,17753,7634],"delegatorTokens":9999999923823}},{"ix":89,"action":{"kind":"Undelegate","val":2,"amt":3063},"partialState":{"h":8,"t":48,"tokens":[10918,19934,15690,8634],"delegation":[9918,18934,14690,7634],"delegatorTokens":9999999923823}},{"ix":90,"action":{"kind":"Delegate","val":1,"amt":2719},"partialState":{"h":8,"t":48,"tokens":[10918,22653,15690,8634],"delegation":[9918,21653,14690,7634],"delegatorTokens":9999999921104}},{"ix":91,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":92,"action":{"kind":"Undelegate","val":2,"amt":2012},"partialState":{"h":8,"t":48,"tokens":[10918,22653,13678,8634],"delegation":[9918,21653,12678,7634],"delegatorTokens":9999999921104}},{"ix":93,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":94,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":95,"action":{"kind":"Delegate","val":3,"amt":2075},"partialState":{"h":8,"t":48,"tokens":[10918,22653,13678,10709],"delegation":[9918,21653,12678,9709],"delegatorTokens":9999999919029}},{"ix":96,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":97,"action":{"kind":"Deliver","chain":"consumer","numPackets":4},"partialState":{"h":8,"t":48,"consumerPower":[null,null,4061,16692],"outstandingDowntime":[false,true,true,false]}},{"ix":98,"action":{"kind":"Undelegate","val":2,"amt":1538},"partialState":{"h":8,"t":48,"tokens":[10918,22653,12140,10709],"delegation":[9918,21653,11140,9709],"delegatorTokens":9999999919029}},{"ix":99,"action":{"kind":"Deliver","chain":"provider","numPackets":5},"partialState":{"h":8,"t":48,"tokens":[10918,22653,12140,10709],"delegation":[9918,21653,11140,9709],"delegatorTokens":9999999919029,"jailed":[null,1000000000000011,null,1000000000000023],"status":["bonded","unbonding","bonded","unbonding"]}},{"ix":100,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":101,"action":{"kind":"Delegate","val":2,"amt":1915},"partialState":{"h":8,"t":48,"tokens":[10918,22653,14055,10709],"delegation":[9918,21653,13055,9709],"delegatorTokens":9999999917114}},{"ix":102,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":103,"action":{"kind":"Delegate","val":1,"amt":4558},"partialState":{"h":8,"t":48,"tokens":[10918,27211,14055,10709],"delegation":[9918,26211,13055,9709],"delegatorTokens":9999999912556}},{"ix":104,"action":{"kind":"Delegate","val":2,"amt":2034},"partialState":{"h":8,"t":48,"tokens":[10918,27211,16089,10709],"delegation":[9918,26211,15089,9709],"delegatorTokens":9999999910522}},{"ix":105,"action":{"kind":"Delegate","val":0,"amt":2793},"partialState":{"h":8,"t":48,"tokens":[13711,27211,16089,10709],"delegation":[12711,26211,15089,9709],"delegatorTokens":9999999907729}},{"ix":106,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":9,"t":54,"consumerPower":[9001,null,18753,null],"outstandingDowntime":[false,true,true,false]}},{"ix":107,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":10,"t":60,"consumerPower":[9001,null,18753,null],"outstandingDowntime":[false,true,true,false]}},{"ix":108,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":109,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":11,"t":66,"consumerPower":[9001,null,18753,null],"outstandingDowntime":[false,true,true,false]}},{"ix":110,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":9,"t":54,"tokens":[13711,27211,16089,10709],"delegation":[12711,26211,15089,9709],"delegatorTokens":9999999907729,"jailed":[null,1000000000000011,null,1000000000000023],"status":["bonded","unbonding","bonded","unbonding"]}},{"ix":111,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":112,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":113,"action":{"kind":"Undelegate","val":0,"amt":1939},"partialState":{"h":9,"t":54,"tokens":[11772,27211,16089,10709],"delegation":[10772,26211,15089,9709],"delegatorTokens":9999999907729}},{"ix":114,"action":{"kind":"Undelegate","val":2,"amt":1396},"partialState":{"h":9,"t":54,"tokens":[11772,27211,14693,10709],"delegation":[10772,26211,13693,9709],"delegatorTokens":9999999907729}},{"ix":115,"action":{"kind":"Undelegate","val":2,"amt":1810},"partialState":{"h":9,"t":54,"tokens":[11772,27211,12883,10709],"delegation":[10772,26211,11883,9709],"delegatorTokens":9999999907729}},{"ix":116,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":117,"action":{"kind":"Deliver","chain":"provider","numPackets":5},"partialState":{"h":9,"t":54,"tokens":[11772,27211,12883,10709],"delegation":[10772,26211,11883,9709],"delegatorTokens":9999999907729,"jailed":[null,1000000000000011,null,1000000000000023],"status":["bonded","unbonding","bonded","unbonding"]}},{"ix":118,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":119,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":12,"t":72,"consumerPower":[9001,null,18753,null],"outstandingDowntime":[false,true,true,false]}},{"ix":120,"action":{"kind":"Deliver","chain":"consumer","numPackets":3},"partialState":{"h":12,"t":72,"consumerPower":[9001,null,18753,null],"outstandingDowntime":[false,true,true,false]}},{"ix":121,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":10,"t":60,"tokens":[11772,27211,12883,10709],"delegation":[10772,26211,11883,9709],"delegatorTokens":9999999907729,"jailed":[null,1000000000000053,1000000000000053,1000000000000023],"status":["bonded","unbonding","bonded","unbonding"]}},{"ix":122,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":123,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":13,"t":78,"consumerPower":[10918,null,18753,null],"outstandingDowntime":[false,true,true,false]}},{"ix":124,"action":{"kind":"Delegate","val":2,"amt":1428},"partialState":{"h":10,"t":60,"tokens":[11772,27211,14311,10709],"delegation":[10772,26211,13311,9709],"delegatorTokens":9999999906301}},{"ix":125,"action":{"kind":"Delegate","val":1,"amt":1846},"partialState":{"h":10,"t":60,"tokens":[11772,29057,14311,10709],"delegation":[10772,28057,13311,9709],"delegatorTokens":9999999904455}},{"ix":126,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":127,"action":{"kind":"Deliver","chain":"provider","numPackets":5},"partialState":{"h":10,"t":60,"tokens":[11772,29057,14311,10709],"delegation":[10772,28057,13311,9709],"delegatorTokens":9999999904455,"jailed":[null,1000000000000053,1000000000000053,1000000000000023],"status":["bonded","unbonding","bonded","unbonding"]}},{"ix":128,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":11,"t":66,"tokens":[11772,29057,14311,10709],"delegation":[10772,28057,13311,9709],"delegatorTokens":9999999904455,"jailed":[null,1000000000000053,1000000000000053,1000000000000023],"status":["bonded","unbonding","unbonding","unbonding"]}},{"ix":129,"action":{"kind":"Delegate","val":3,"amt":3618},"partialState":{"h":11,"t":66,"tokens":[11772,29057,14311,14327],"delegation":[10772,28057,13311,13327],"delegatorTokens":9999999900837}},{"ix":130,"action":{"kind":"Undelegate","val":0,"amt":1264},"partialState":{"h":11,"t":66,"tokens":[10508,29057,14311,14327],"delegation":[9508,28057,13311,13327],"delegatorTokens":9999999900837}},{"ix":131,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":132,"action":{"kind":"Undelegate","val":2,"amt":2706},"partialState":{"h":11,"t":66,"tokens":[10508,29057,11605,14327],"delegation":[9508,28057,10605,13327],"delegatorTokens":9999999900837}},{"ix":133,"action":{"kind":"Undelegate","val":2,"amt":3703},"partialState":{"h":11,"t":66,"tokens":[10508,29057,7902,14327],"delegation":[9508,28057,6902,13327],"delegatorTokens":9999999900837}},{"ix":134,"action":{"kind":"Deliver","chain":"provider","numPackets":5},"partialState":{"h":11,"t":66,"tokens":[10508,29057,7902,14327],"delegation":[9508,28057,6902,13327],"delegatorTokens":9999999900837,"jailed":[null,1000000000000053,1000000000000053,1000000000000023],"status":["bonded","unbonding","unbonding","unbonding"]}},{"ix":135,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":14,"t":84,"consumerPower":[10918,null,18753,null],"outstandingDowntime":[false,true,true,false]}},{"ix":136,"action":{"kind":"Deliver","chain":"provider","numPackets":1},"partialState":{"h":11,"t":66,"tokens":[10508,29057,7902,14327],"delegation":[9508,28057,6902,13327],"delegatorTokens":9999999900837,"jailed":[null,1000000000000053,1000000000000053,1000000000000023],"status":["bonded","unbonding","unbonding","unbonding"]}},{"ix":137,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":12,"t":72,"tokens":[10508,29057,7902,14327],"delegation":[9508,28057,6902,13327],"delegatorTokens":9999999900837,"jailed":[null,1000000000000053,1000000000000053,1000000000000023],"status":["bonded","unbonding","unbonding","unbonding"]}},{"ix":138,"action":{"kind":"Deliver","chain":"consumer","numPackets":2},"partialState":{"h":14,"t":84,"consumerPower":[10918,null,18753,null],"outstandingDowntime":[false,false,false,false]}},{"ix":139,"action":{"kind":"Deliver","chain":"provider","numPackets":2},"partialState":{"h":12,"t":72,"tokens":[10508,29057,7902,14327],"delegation":[9508,28057,6902,13327],"delegatorTokens":9999999900837,"jailed":[null,1000000000000053,1000000000000053,1000000000000023],"status":["bonded","unbonding","unbonding","unbonding"]}},{"ix":140,"action":{"kind":"Delegate","val":1,"amt":2774},"partialState":{"h":12,"t":72,"tokens":[10508,31831,7902,14327],"delegation":[9508,30831,6902,13327],"delegatorTokens":9999999898063}},{"ix":141,"action":{"kind":"Delegate","val":2,"amt":1955},"partialState":{"h":12,"t":72,"tokens":[10508,31831,9857,14327],"delegation":[9508,30831,8857,13327],"delegatorTokens":9999999896108}},{"ix":142,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":13,"t":78,"tokens":[10508,31831,9857,14327],"delegation":[9508,30831,8857,13327],"delegatorTokens":9999999896108,"jailed":[null,1000000000000053,1000000000000053,1000000000000023],"status":["bonded","unbonding","unbonding","unbonding"]}},{"ix":143,"action":{"kind":"Deliver","chain":"provider","numPackets":3},"partialState":{"h":13,"t":78,"tokens":[10508,31831,9857,14327],"delegation":[9508,30831,8857,13327],"delegatorTokens":9999999896108,"jailed":[null,1000000000000053,1000000000000053,1000000000000023],"status":["bonded","unbonding","unbonding","unbonding"]}},{"ix":144,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":145,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":14,"t":84,"tokens":[10508,31831,9857,14327],"delegation":[9508,30831,8857,13327],"delegatorTokens":9999999900413,"jailed":[null,1000000000000053,1000000000000053,1000000000000023],"status":["bonded","unbonding","unbonding","unbonding"]}},{"ix":146,"action":{"kind":"Undelegate","val":2,"amt":4738},"partialState":{"h":14,"t":84,"tokens":[10508,31831,5119,14327],"delegation":[9508,30831,4119,13327],"delegatorTokens":9999999900413}},{"ix":147,"action":{"kind":"Deliver","chain":"provider","numPackets":4},"partialState":{"h":14,"t":84,"tokens":[10508,31831,5119,14327],"delegation":[9508,30831,4119,13327],"delegatorTokens":9999999900413,"jailed":[null,1000000000000053,1000000000000053,1000000000000023],"status":["bonded","unbonding","unbonding","unbonding"]}},{"ix":148,"action":{"kind":"Undelegate","val":3,"amt":2516},"partialState":{"h":14,"t":84,"tokens":[10508,31831,5119,11811],"delegation":[9508,30831,4119,10811],"delegatorTokens":9999999900413}},{"ix":149,"action":{"kind":"Delegate","val":2,"amt":2510},"partialState":{"h":14,"t":84,"tokens":[10508,31831,7629,11811],"delegation":[9508,30831,6629,10811],"delegatorTokens":9999999897903}},{"ix":150,"action":{"kind":"Delegate","val":1,"amt":4231},"partialState":{"h":14,"t":84,"tokens":[10508,36062,7629,11811],"delegation":[9508,35062,6629,10811],"delegatorTokens":9999999893672}},{"ix":151,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":15,"t":90,"tokens":[10508,36062,7629,11811],"delegation":[9508,35062,6629,10811],"delegatorTokens":9999999893672,"jailed":[null,1000000000000053,1000000000000053,1000000000000023],"status":["bonded","unbonding","unbonding","unbonding"]}},{"ix":152,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":15,"t":90,"consumerPower":[11772,null,12883,null],"outstandingDowntime":[false,false,false,false]}},{"ix":153,"action":{"kind":"Delegate","val":1,"amt":1274},"partialState":{"h":15,"t":90,"tokens":[10508,37336,7629,11811],"delegation":[9508,36336,6629,10811],"delegatorTokens":9999999892398}},{"ix":154,"action":{"kind":"Deliver","chain":"consumer","numPackets":6},"partialState":{"h":15,"t":90,"consumerPower":[11772,null,12883,null],"outstandingDowntime":[false,false,false,false]}},{"ix":155,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":156,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":157,"action":{"kind":"Undelegate","val":1,"amt":4424},"partialState":{"h":15,"t":90,"tokens":[10508,32912,7629,11811],"delegation":[9508,31912,6629,10811],"delegatorTokens":9999999892398}},{"ix":158,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":159,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":16,"t":96,"tokens":[10508,32912,7629,11811],"delegation":[9508,31912,6629,10811],"delegatorTokens":9999999892398,"jailed":[null,1000000000000053,1000000000000053,1000000000000023],"status":["bonded","unbonding","unbonding","unbonding"]}},{"ix":160,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":161,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":16,"t":96,"consumerPower":[10508,null,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":162,"action":{"kind":"Deliver","chain":"consumer","numPackets":2},"partialState":{"h":16,"t":96,"consumerPower":[10508,null,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":163,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":17,"t":102,"consumerPower":[10508,null,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":164,"action":{"kind":"Delegate","val":3,"amt":1057},"partialState":{"h":16,"t":96,"tokens":[10508,32912,7629,12868],"delegation":[9508,31912,6629,11868],"delegatorTokens":9999999891341}},{"ix":165,"action":{"kind":"Deliver","chain":"provider","numPackets":3},"partialState":{"h":16,"t":96,"tokens":[10508,32912,7629,12868],"delegation":[9508,31912,6629,11868],"delegatorTokens":9999999891341,"jailed":[null,1000000000000053,1000000000000053,1000000000000023],"status":["bonded","unbonding","unbonding","unbonding"]}},{"ix":166,"action":{"kind":"Delegate","val":3,"amt":3187},"partialState":{"h":16,"t":96,"tokens":[10508,32912,7629,16055],"delegation":[9508,31912,6629,15055],"delegatorTokens":9999999888154}},{"ix":167,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":168,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":169,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":170,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":17,"t":102,"tokens":[10508,32912,7629,16055],"delegation":[9508,31912,6629,15055],"delegatorTokens":9999999896753,"jailed":[null,1000000000000053,1000000000000053,1000000000000023],"status":["bonded","unbonding","unbonding","unbonding"]}},{"ix":171,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":18,"t":108,"consumerPower":[10508,null,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":172,"action":{"kind":"Deliver","chain":"consumer","numPackets":6},"partialState":{"h":18,"t":108,"consumerPower":[10508,null,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":173,"action":{"kind":"Undelegate","val":0,"amt":4135},"partialState":{"h":17,"t":102,"tokens":[6373,32912,7629,16055],"delegation":[5373,31912,6629,15055],"delegatorTokens":9999999896753}},{"ix":174,"action":{"kind":"Delegate","val":2,"amt":1173},"partialState":{"h":17,"t":102,"tokens":[6373,32912,8802,16055],"delegation":[5373,31912,7802,15055],"delegatorTokens":9999999895580}},{"ix":175,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":176,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":19,"t":114,"consumerPower":[10508,null,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":177,"action":{"kind":"Undelegate","val":0,"amt":1061},"partialState":{"h":17,"t":102,"tokens":[5312,32912,8802,16055],"delegation":[4312,31912,7802,15055],"delegatorTokens":9999999895580}},{"ix":178,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":18,"t":108,"tokens":[5312,32912,8802,16055],"delegation":[4312,31912,7802,15055],"delegatorTokens":9999999895580,"jailed":[null,1000000000000053,1000000000000053,1000000000000023],"status":["bonded","unbonding","unbonding","unbonding"]}},{"ix":179,"action":{"kind":"Delegate","val":3,"amt":2393},"partialState":{"h":18,"t":108,"tokens":[5312,32912,8802,18448],"delegation":[4312,31912,7802,17448],"delegatorTokens":9999999893187}},{"ix":180,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":181,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":20,"t":120,"consumerPower":[10508,null,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":182,"action":{"kind":"Undelegate","val":1,"amt":3644},"partialState":{"h":18,"t":108,"tokens":[5312,29268,8802,18448],"delegation":[4312,28268,7802,17448],"delegatorTokens":9999999893187}},{"ix":183,"action":{"kind":"Deliver","chain":"consumer","numPackets":4},"partialState":{"h":20,"t":120,"consumerPower":[10508,null,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":184,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":185,"action":{"kind":"Undelegate","val":3,"amt":2526},"partialState":{"h":18,"t":108,"tokens":[5312,29268,8802,15922],"delegation":[4312,28268,7802,14922],"delegatorTokens":9999999893187}},{"ix":186,"action":{"kind":"Deliver","chain":"provider","numPackets":1},"partialState":{"h":18,"t":108,"tokens":[5312,29268,8802,15922],"delegation":[4312,28268,7802,14922],"delegatorTokens":9999999893187,"jailed":[null,1000000000000053,1000000000000053,1000000000000023],"status":["bonded","unbonding","unbonding","unbonding"]}},{"ix":187,"action":{"kind":"Deliver","chain":"consumer","numPackets":1},"partialState":{"h":20,"t":120,"consumerPower":[10508,null,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":188,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":189,"action":{"kind":"Delegate","val":3,"amt":3803},"partialState":{"h":18,"t":108,"tokens":[5312,29268,8802,19725],"delegation":[4312,28268,7802,18725],"delegatorTokens":9999999889384}},{"ix":190,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":21,"t":126,"consumerPower":[10508,null,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":191,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":19,"t":114,"tokens":[5312,29268,8802,19725],"delegation":[4312,28268,7802,18725],"delegatorTokens":9999999893532,"jailed":[null,1000000000000053,1000000000000053,1000000000000023],"status":["bonded","unbonding","unbonding","unbonding"]}},{"ix":192,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":193,"action":{"kind":"Deliver","chain":"provider","numPackets":2},"partialState":{"h":19,"t":114,"tokens":[5312,29268,8802,19725],"delegation":[4312,28268,7802,18725],"delegatorTokens":9999999893532,"jailed":[null,1000000000000053,1000000000000053,1000000000000023],"status":["bonded","unbonding","unbonding","unbonding"]}},{"ix":194,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":20,"t":120,"tokens":[5312,29268,8802,19725],"delegation":[4312,28268,7802,18725],"delegatorTokens":9999999900523,"jailed":[null,1000000000000053,1000000000000053,1000000000000023],"status":["bonded","unbonded","unbonding","unbonding"]}},{"ix":195,"action":{"kind":"Deliver","chain":"consumer","numPackets":2},"partialState":{"h":21,"t":126,"consumerPower":[10508,null,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":196,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":21,"t":126,"tokens":[5312,29268,8802,19725],"delegation":[4312,28268,7802,18725],"delegatorTokens":9999999900523,"jailed":[null,1000000000000053,1000000000000053,1000000000000023],"status":["bonded","unbonded","unbonding","unbonded"]}},{"ix":197,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":198,"action":{"kind":"Deliver","chain":"consumer","numPackets":4},"partialState":{"h":21,"t":126,"consumerPower":[10508,null,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":199,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}}],"events":["send_vsc_not_because_change","send_vsc_without_downtime_ack","send_downtime_slash_request","send_double_sign_slash_request","insufficient_shares","send_double_sign_slash_request","send_double_sign_slash_request","downtime_slash_request_outstanding","more_than_one_third_val_power_change","receive_downtime_slash_request","jail","send_vsc_with_downtime_ack","send_downtime_slash_request","send_vsc_without_downtime_ack","insufficient_shares","receive_downtime_slash_ack","downtime_slash_request_outstanding","receive_double_sign_slash_request","consumer_del_val","consumer_add_val","insufficient_shares","receive_double_sign_slash_request","receive_double_sign_slash_request","send_double_sign_slash_request","receive_downtime_slash_request","jail","send_vsc_with_downtime_ack","send_downtime_slash_request","send_downtime_slash_request","consumer_del_val","consumer_add_val","consumer_update_val","rebond_unval","send_vsc_without_downtime_ack","receive_downtime_slash_ack","send_vsc_not_because_change","send_vsc_without_downtime_ack","send_vsc_without_downtime_ack","consumer_update_val","consumer_del_val","consumer_add_val","send_vsc_without_downtime_ack","receive_double_sign_slash_request","receive_downtime_slash_request","jail","receive_downtime_slash_request","jail","send_vsc_with_downtime_ack","consumer_send_maturation","consumer_update_val","send_vsc_without_downtime_ack","consumer_send_maturation","set_undel_hold_false","send_vsc_without_downtime_ack","receive_downtime_slash_ack","receive_downtime_slash_ack","complete_undel_in_endblock","some_undels_expired_but_not_completed","send_vsc_not_because_change","send_vsc_without_downtime_ack","consumer_update_val","consumer_update_val","some_undels_expired_but_not_completed","send_vsc_not_because_change","send_vsc_without_downtime_ack","consumer_del_val","consumer_update_val","consumer_send_maturation","some_undels_expired_but_not_completed","complete_undel_immediate","complete_undel_immediate","complete_undel_immediate","consumer_send_maturation","consumer_send_maturation","consumer_send_maturation","send_vsc_without_downtime_ack","some_undels_expired_but_not_completed","complete_undel_immediate","set_unval_hold_false","send_vsc_not_because_change","send_vsc_without_downtime_ack","complete_unval_in_endblock","some_undels_expired_but_not_completed","complete_undel_immediate","complete_undel_immediate","set_unval_hold_false","complete_unval_in_endblock","some_undels_expired_but_not_completed"]},{"meta":{"commit":"7ffd0c04e4205cbc9caf212abfe6c59ee43153bf"},"constants":{"P":"provider","C":"consumer","UNBONDING_SECONDS_P":70,"UNBONDING_SECONDS_C":50,"TRUSTING_SECONDS":49,"NUM_VALIDATORS":4,"MAX_VALIDATORS":2,"SLASH_DOUBLESIGN":0,"SLASH_DOWNTIME":0,"JAIL_SECONDS":999999999999999,"BLOCK_SECONDS":6,"INITIAL_DELEGATOR_TOKENS":10000000000000,"DELEGATE_AMT_MIN":1000,"DELEGATE_AMT_MAX":5000,"UNDELEGATE_AMT_MIN":1000,"UNDELEGATE_AMT_MAX":5000,"ISDOWNTIME_PROBABILITY":0.5,"MAX_NUM_PACKETS_FOR_DELIVER":6},"actions":[{"ix":0,"action":{"kind":"Deliver","chain":"provider","numPackets":4},"partialState":{"h":1,"t":6,"tokens":[5000,4000,3000,2000],"delegation":[4000,3000,2000,1000],"delegatorTokens":10000000000000,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":1,"action":{"kind":"ConsumerSlash","val":2,"infractionHeight":0,"isDowntime":true},"partialState":{"h":1,"t":6,"outstandingDowntime":[false,false,true,false]}},{"ix":2,"action":{"kind":"ConsumerSlash","val":1,"infractionHeight":0,"isDowntime":false},"partialState":{"h":1,"t":6,"outstandingDowntime":[false,false,true,false]}},{"ix":3,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":2,"t":12,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,false,true,false]}},{"ix":4,"action":{"kind":"ConsumerSlash","val":1,"infractionHeight":1,"isDowntime":false},"partialState":{"h":2,"t":12,"outstandingDowntime":[false,false,true,false]}},{"ix":5,"action":{"kind":"ConsumerSlash","val":2,"infractionHeight":0,"isDowntime":false},"partialState":{"h":2,"t":12,"outstandingDowntime":[false,false,true,false]}},{"ix":6,"action":{"kind":"Undelegate","val":2,"amt":4409},"partialState":{"h":1,"t":6,"tokens":[5000,4000,3000,2000],"delegation":[4000,3000,2000,1000],"delegatorTokens":10000000000000}},{"ix":7,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":2,"t":12,"tokens":[5000,4000,3000,2000],"delegation":[4000,3000,2000,1000],"delegatorTokens":10000000000000,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":8,"action":{"kind":"ConsumerSlash","val":1,"infractionHeight":1,"isDowntime":false},"partialState":{"h":2,"t":12,"outstandingDowntime":[false,false,true,false]}},{"ix":9,"action":{"kind":"Undelegate","val":1,"amt":2245},"partialState":{"h":2,"t":12,"tokens":[5000,1755,3000,2000],"delegation":[4000,755,2000,1000],"delegatorTokens":10000000000000}},{"ix":10,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":11,"action":{"kind":"ConsumerSlash","val":2,"infractionHeight":0,"isDowntime":false},"partialState":{"h":2,"t":12,"outstandingDowntime":[false,false,true,false]}},{"ix":12,"action":{"kind":"Deliver","chain":"provider","numPackets":5},"partialState":{"h":2,"t":12,"tokens":[5000,1755,3000,2000],"delegation":[4000,755,2000,1000],"delegatorTokens":10000000000000,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":13,"action":{"kind":"Deliver","chain":"provider","numPackets":3},"partialState":{"h":2,"t":12,"tokens":[5000,1755,3000,2000],"delegation":[4000,755,2000,1000],"delegatorTokens":10000000000000,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":14,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":3,"t":18,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,false,true,false]}},{"ix":15,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":16,"action":{"kind":"Delegate","val":2,"amt":2115},"partialState":{"h":2,"t":12,"tokens":[5000,1755,5115,2000],"delegation":[4000,755,4115,1000],"delegatorTokens":9999999997885}},{"ix":17,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":18,"action":{"kind":"ConsumerSlash","val":1,"infractionHeight":0,"isDowntime":false},"partialState":{"h":3,"t":18,"outstandingDowntime":[false,false,true,false]}},{"ix":19,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":3,"t":18,"tokens":[5000,1755,5115,2000],"delegation":[4000,755,4115,1000],"delegatorTokens":9999999997885,"jailed":[null,null,null,null],"status":["bonded","unbonding","bonded","unbonded"]}},{"ix":20,"action":{"kind":"Undelegate","val":0,"amt":3411},"partialState":{"h":3,"t":18,"tokens":[1589,1755,5115,2000],"delegation":[589,755,4115,1000],"delegatorTokens":9999999997885}},{"ix":21,"action":{"kind":"Deliver","chain":"consumer","numPackets":6},"partialState":{"h":3,"t":18,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,false,true,false]}},{"ix":22,"action":{"kind":"Deliver","chain":"consumer","numPackets":4},"partialState":{"h":3,"t":18,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,false,true,false]}},{"ix":23,"action":{"kind":"Undelegate","val":0,"amt":4092},"partialState":{"h":3,"t":18,"tokens":[1589,1755,5115,2000],"delegation":[589,755,4115,1000],"delegatorTokens":9999999997885}},{"ix":24,"action":{"kind":"Deliver","chain":"provider","numPackets":6},"partialState":{"h":3,"t":18,"tokens":[1589,1755,5115,2000],"delegation":[589,755,4115,1000],"delegatorTokens":9999999997885,"jailed":[null,null,null,null],"status":["bonded","unbonding","bonded","unbonded"]}},{"ix":25,"action":{"kind":"ConsumerSlash","val":1,"infractionHeight":2,"isDowntime":true},"partialState":{"h":3,"t":18,"outstandingDowntime":[false,true,true,false]}},{"ix":26,"action":{"kind":"Deliver","chain":"provider","numPackets":3},"partialState":{"h":3,"t":18,"tokens":[1589,1755,5115,2000],"delegation":[589,755,4115,1000],"delegatorTokens":9999999997885,"jailed":[null,null,null,null],"status":["bonded","unbonding","bonded","unbonded"]}},{"ix":27,"action":{"kind":"Deliver","chain":"consumer","numPackets":6},"partialState":{"h":3,"t":18,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,true,true,false]}},{"ix":28,"action":{"kind":"ConsumerSlash","val":1,"infractionHeight":1,"isDowntime":true},"partialState":{"h":3,"t":18,"outstandingDowntime":[false,true,true,false]}},{"ix":29,"action":{"kind":"Delegate","val":3,"amt":3354},"partialState":{"h":3,"t":18,"tokens":[1589,1755,5115,5354],"delegation":[589,755,4115,4354],"delegatorTokens":9999999994531}},{"ix":30,"action":{"kind":"Delegate","val":0,"amt":2182},"partialState":{"h":3,"t":18,"tokens":[3771,1755,5115,5354],"delegation":[2771,755,4115,4354],"delegatorTokens":9999999992349}},{"ix":31,"action":{"kind":"Deliver","chain":"provider","numPackets":5},"partialState":{"h":3,"t":18,"tokens":[3771,1755,5115,5354],"delegation":[2771,755,4115,4354],"delegatorTokens":9999999992349,"jailed":[null,null,null,null],"status":["bonded","unbonding","bonded","unbonded"]}},{"ix":32,"action":{"kind":"Deliver","chain":"consumer","numPackets":4},"partialState":{"h":3,"t":18,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,true,true,false]}},{"ix":33,"action":{"kind":"Deliver","chain":"consumer","numPackets":5},"partialState":{"h":3,"t":18,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,true,true,false]}},{"ix":34,"action":{"kind":"Delegate","val":0,"amt":2534},"partialState":{"h":3,"t":18,"tokens":[6305,1755,5115,5354],"delegation":[5305,755,4115,4354],"delegatorTokens":9999999989815}},{"ix":35,"action":{"kind":"Delegate","val":3,"amt":1102},"partialState":{"h":3,"t":18,"tokens":[6305,1755,5115,6456],"delegation":[5305,755,4115,5456],"delegatorTokens":9999999988713}},{"ix":36,"action":{"kind":"Deliver","chain":"provider","numPackets":4},"partialState":{"h":3,"t":18,"tokens":[6305,1755,5115,6456],"delegation":[5305,755,4115,5456],"delegatorTokens":9999999988713,"jailed":[null,null,null,null],"status":["bonded","unbonding","bonded","unbonded"]}},{"ix":37,"action":{"kind":"Delegate","val":3,"amt":1973},"partialState":{"h":3,"t":18,"tokens":[6305,1755,5115,8429],"delegation":[5305,755,4115,7429],"delegatorTokens":9999999986740}},{"ix":38,"action":{"kind":"Deliver","chain":"provider","numPackets":4},"partialState":{"h":3,"t":18,"tokens":[6305,1755,5115,8429],"delegation":[5305,755,4115,7429],"delegatorTokens":9999999986740,"jailed":[null,null,null,null],"status":["bonded","unbonding","bonded","unbonded"]}},{"ix":39,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":4,"t":24,"tokens":[6305,1755,5115,8429],"delegation":[5305,755,4115,7429],"delegatorTokens":9999999986740,"jailed":[null,null,1000000000000017,null],"status":["bonded","unbonding","unbonding","bonded"]}},{"ix":40,"action":{"kind":"ConsumerSlash","val":2,"infractionHeight":1,"isDowntime":false},"partialState":{"h":3,"t":18,"outstandingDowntime":[false,true,true,false]}},{"ix":41,"action":{"kind":"Deliver","chain":"consumer","numPackets":1},"partialState":{"h":3,"t":18,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,true,true,false]}},{"ix":42,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":43,"action":{"kind":"Delegate","val":3,"amt":3751},"partialState":{"h":4,"t":24,"tokens":[6305,1755,5115,12180],"delegation":[5305,755,4115,11180],"delegatorTokens":9999999982989}},{"ix":44,"action":{"kind":"Undelegate","val":0,"amt":4427},"partialState":{"h":4,"t":24,"tokens":[1878,1755,5115,12180],"delegation":[878,755,4115,11180],"delegatorTokens":9999999982989}},{"ix":45,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":46,"action":{"kind":"Delegate","val":2,"amt":4397},"partialState":{"h":4,"t":24,"tokens":[1878,1755,9512,12180],"delegation":[878,755,8512,11180],"delegatorTokens":9999999978592}},{"ix":47,"action":{"kind":"ConsumerSlash","val":2,"infractionHeight":1,"isDowntime":true},"partialState":{"h":3,"t":18,"outstandingDowntime":[false,true,true,false]}},{"ix":48,"action":{"kind":"ConsumerSlash","val":2,"infractionHeight":1,"isDowntime":true},"partialState":{"h":3,"t":18,"outstandingDowntime":[false,true,true,false]}},{"ix":49,"action":{"kind":"Undelegate","val":0,"amt":1109},"partialState":{"h":4,"t":24,"tokens":[1878,1755,9512,12180],"delegation":[878,755,8512,11180],"delegatorTokens":9999999978592}},{"ix":50,"action":{"kind":"Delegate","val":2,"amt":3830},"partialState":{"h":4,"t":24,"tokens":[1878,1755,13342,12180],"delegation":[878,755,12342,11180],"delegatorTokens":9999999974762}},{"ix":51,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":52,"action":{"kind":"Delegate","val":0,"amt":1388},"partialState":{"h":4,"t":24,"tokens":[3266,1755,13342,12180],"delegation":[2266,755,12342,11180],"delegatorTokens":9999999973374}},{"ix":53,"action":{"kind":"Delegate","val":0,"amt":1904},"partialState":{"h":4,"t":24,"tokens":[5170,1755,13342,12180],"delegation":[4170,755,12342,11180],"delegatorTokens":9999999971470}},{"ix":54,"action":{"kind":"Delegate","val":0,"amt":4381},"partialState":{"h":4,"t":24,"tokens":[9551,1755,13342,12180],"delegation":[8551,755,12342,11180],"delegatorTokens":9999999967089}},{"ix":55,"action":{"kind":"Delegate","val":1,"amt":1928},"partialState":{"h":4,"t":24,"tokens":[9551,3683,13342,12180],"delegation":[8551,2683,12342,11180],"delegatorTokens":9999999965161}},{"ix":56,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":4,"t":24,"consumerPower":[5000,null,5115,null],"outstandingDowntime":[false,true,true,false]}},{"ix":57,"action":{"kind":"Delegate","val":3,"amt":1213},"partialState":{"h":4,"t":24,"tokens":[9551,3683,13342,13393],"delegation":[8551,2683,12342,12393],"delegatorTokens":9999999963948}},{"ix":58,"action":{"kind":"Deliver","chain":"provider","numPackets":3},"partialState":{"h":4,"t":24,"tokens":[9551,3683,13342,13393],"delegation":[8551,2683,12342,12393],"delegatorTokens":9999999963948,"jailed":[null,null,1000000000000017,null],"status":["bonded","unbonding","unbonding","bonded"]}},{"ix":59,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":5,"t":30,"consumerPower":[5000,null,5115,null],"outstandingDowntime":[false,true,true,false]}},{"ix":60,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":5,"t":30,"tokens":[9551,3683,13342,13393],"delegation":[8551,2683,12342,12393],"delegatorTokens":9999999963948,"jailed":[null,null,1000000000000017,null],"status":["bonded","unbonding","unbonding","bonded"]}},{"ix":61,"action":{"kind":"Undelegate","val":3,"amt":1531},"partialState":{"h":5,"t":30,"tokens":[9551,3683,13342,11862],"delegation":[8551,2683,12342,10862],"delegatorTokens":9999999963948}},{"ix":62,"action":{"kind":"Undelegate","val":2,"amt":1717},"partialState":{"h":5,"t":30,"tokens":[9551,3683,11625,11862],"delegation":[8551,2683,10625,10862],"delegatorTokens":9999999963948}},{"ix":63,"action":{"kind":"Deliver","chain":"consumer","numPackets":5},"partialState":{"h":5,"t":30,"consumerPower":[5000,null,5115,null],"outstandingDowntime":[false,true,false,false]}},{"ix":64,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":65,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":6,"t":36,"consumerPower":[6305,null,null,8429],"outstandingDowntime":[false,true,false,false]}},{"ix":66,"action":{"kind":"Deliver","chain":"provider","numPackets":5},"partialState":{"h":5,"t":30,"tokens":[9551,3683,11625,11862],"delegation":[8551,2683,10625,10862],"delegatorTokens":9999999963948,"jailed":[null,null,1000000000000017,null],"status":["bonded","unbonding","unbonding","bonded"]}},{"ix":67,"action":{"kind":"Undelegate","val":3,"amt":4396},"partialState":{"h":5,"t":30,"tokens":[9551,3683,11625,7466],"delegation":[8551,2683,10625,6466],"delegatorTokens":9999999963948}},{"ix":68,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":7,"t":42,"consumerPower":[6305,null,null,8429],"outstandingDowntime":[false,true,false,false]}},{"ix":69,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":8,"t":48,"consumerPower":[6305,null,null,8429],"outstandingDowntime":[false,true,false,false]}},{"ix":70,"action":{"kind":"Undelegate","val":2,"amt":2598},"partialState":{"h":5,"t":30,"tokens":[9551,3683,9027,7466],"delegation":[8551,2683,8027,6466],"delegatorTokens":9999999963948}},{"ix":71,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":6,"t":36,"tokens":[9551,3683,9027,7466],"delegation":[8551,2683,8027,6466],"delegatorTokens":9999999963948,"jailed":[null,1000000000000029,1000000000000017,null],"status":["bonded","unbonding","unbonding","bonded"]}},{"ix":72,"action":{"kind":"ConsumerSlash","val":1,"infractionHeight":6,"isDowntime":true},"partialState":{"h":8,"t":48,"outstandingDowntime":[false,true,false,false]}},{"ix":73,"action":{"kind":"ConsumerSlash","val":2,"infractionHeight":4,"isDowntime":true},"partialState":{"h":8,"t":48,"outstandingDowntime":[false,true,true,false]}},{"ix":74,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":9,"t":54,"consumerPower":[6305,null,null,8429],"outstandingDowntime":[false,true,true,false]}},{"ix":75,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":10,"t":60,"consumerPower":[6305,null,null,8429],"outstandingDowntime":[false,true,true,false]}},{"ix":76,"action":{"kind":"ConsumerSlash","val":3,"infractionHeight":7,"isDowntime":false},"partialState":{"h":10,"t":60,"outstandingDowntime":[false,true,true,false]}},{"ix":77,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":78,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":79,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":80,"action":{"kind":"Undelegate","val":3,"amt":1597},"partialState":{"h":6,"t":36,"tokens":[9551,3683,9027,5869],"delegation":[8551,2683,8027,4869],"delegatorTokens":9999999963948}},{"ix":81,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":7,"t":42,"tokens":[9551,3683,9027,5869],"delegation":[8551,2683,8027,4869],"delegatorTokens":9999999963948,"jailed":[null,1000000000000029,1000000000000017,null],"status":["bonded","unbonding","unbonding","bonded"]}},{"ix":82,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":83,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":84,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":85,"action":{"kind":"Deliver","chain":"consumer","numPackets":5},"partialState":{"h":10,"t":60,"consumerPower":[6305,null,null,8429],"outstandingDowntime":[false,false,true,false]}},{"ix":86,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":87,"action":{"kind":"Undelegate","val":3,"amt":1006},"partialState":{"h":7,"t":42,"tokens":[9551,3683,9027,4863],"delegation":[8551,2683,8027,3863],"delegatorTokens":9999999963948}},{"ix":88,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":89,"action":{"kind":"Undelegate","val":2,"amt":3780},"partialState":{"h":7,"t":42,"tokens":[9551,3683,5247,4863],"delegation":[8551,2683,4247,3863],"delegatorTokens":9999999963948}},{"ix":90,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":91,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":11,"t":66,"consumerPower":[9551,null,null,7466],"outstandingDowntime":[false,false,true,false]}},{"ix":92,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":8,"t":48,"tokens":[9551,3683,5247,4863],"delegation":[8551,2683,4247,3863],"delegatorTokens":9999999963948,"jailed":[null,1000000000000029,1000000000000017,null],"status":["bonded","unbonding","unbonding","bonded"]}},{"ix":93,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":9,"t":54,"tokens":[9551,3683,5247,4863],"delegation":[8551,2683,4247,3863],"delegatorTokens":9999999963948,"jailed":[null,1000000000000029,1000000000000017,null],"status":["bonded","unbonding","unbonding","bonded"]}},{"ix":94,"action":{"kind":"Deliver","chain":"provider","numPackets":2},"partialState":{"h":9,"t":54,"tokens":[9551,3683,5247,4863],"delegation":[8551,2683,4247,3863],"delegatorTokens":9999999963948,"jailed":[null,1000000000000029,1000000000000017,null],"status":["bonded","unbonding","unbonding","bonded"]}},{"ix":95,"action":{"kind":"Delegate","val":2,"amt":4125},"partialState":{"h":9,"t":54,"tokens":[9551,3683,9372,4863],"delegation":[8551,2683,8372,3863],"delegatorTokens":9999999959823}},{"ix":96,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":97,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":98,"action":{"kind":"Deliver","chain":"provider","numPackets":2},"partialState":{"h":9,"t":54,"tokens":[9551,3683,9372,4863],"delegation":[8551,2683,8372,3863],"delegatorTokens":9999999959823,"jailed":[null,1000000000000029,1000000000000017,null],"status":["bonded","unbonding","unbonding","bonded"]}},{"ix":99,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":100,"action":{"kind":"Deliver","chain":"provider","numPackets":5},"partialState":{"h":9,"t":54,"tokens":[9551,3683,9372,4863],"delegation":[8551,2683,8372,3863],"delegatorTokens":9999999959823,"jailed":[null,1000000000000029,1000000000000017,null],"status":["bonded","unbonding","unbonding","bonded"]}},{"ix":101,"action":{"kind":"Delegate","val":3,"amt":1375},"partialState":{"h":9,"t":54,"tokens":[9551,3683,9372,6238],"delegation":[8551,2683,8372,5238],"delegatorTokens":9999999958448}},{"ix":102,"action":{"kind":"Deliver","chain":"provider","numPackets":6},"partialState":{"h":9,"t":54,"tokens":[9551,3683,9372,6238],"delegation":[8551,2683,8372,5238],"delegatorTokens":9999999958448,"jailed":[null,1000000000000029,1000000000000017,null],"status":["bonded","unbonding","unbonding","bonded"]}},{"ix":103,"action":{"kind":"Deliver","chain":"consumer","numPackets":4},"partialState":{"h":11,"t":66,"consumerPower":[9551,null,null,7466],"outstandingDowntime":[false,false,true,false]}},{"ix":104,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":10,"t":60,"tokens":[9551,3683,9372,6238],"delegation":[8551,2683,8372,5238],"delegatorTokens":9999999958448,"jailed":[null,1000000000000029,1000000000000053,null],"status":["bonded","unbonding","unbonding","bonded"]}},{"ix":105,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":106,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":11,"t":66,"tokens":[9551,3683,9372,6238],"delegation":[8551,2683,8372,5238],"delegatorTokens":9999999958448,"jailed":[null,1000000000000029,1000000000000053,null],"status":["bonded","unbonding","unbonding","bonded"]}},{"ix":107,"action":{"kind":"Undelegate","val":1,"amt":4197},"partialState":{"h":11,"t":66,"tokens":[9551,3683,9372,6238],"delegation":[8551,2683,8372,5238],"delegatorTokens":9999999958448}},{"ix":108,"action":{"kind":"Delegate","val":0,"amt":4451},"partialState":{"h":11,"t":66,"tokens":[14002,3683,9372,6238],"delegation":[13002,2683,8372,5238],"delegatorTokens":9999999953997}},{"ix":109,"action":{"kind":"Deliver","chain":"provider","numPackets":3},"partialState":{"h":11,"t":66,"tokens":[14002,3683,9372,6238],"delegation":[13002,2683,8372,5238],"delegatorTokens":9999999953997,"jailed":[null,1000000000000029,1000000000000053,null],"status":["bonded","unbonding","unbonding","bonded"]}},{"ix":110,"action":{"kind":"Deliver","chain":"provider","numPackets":6},"partialState":{"h":11,"t":66,"tokens":[14002,3683,9372,6238],"delegation":[13002,2683,8372,5238],"delegatorTokens":9999999953997,"jailed":[null,1000000000000029,1000000000000053,null],"status":["bonded","unbonding","unbonding","bonded"]}},{"ix":111,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":112,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":12,"t":72,"consumerPower":[9551,null,null,4863],"outstandingDowntime":[false,false,true,false]}},{"ix":113,"action":{"kind":"Undelegate","val":0,"amt":2457},"partialState":{"h":11,"t":66,"tokens":[11545,3683,9372,6238],"delegation":[10545,2683,8372,5238],"delegatorTokens":9999999953997}},{"ix":114,"action":{"kind":"Delegate","val":2,"amt":1092},"partialState":{"h":11,"t":66,"tokens":[11545,3683,10464,6238],"delegation":[10545,2683,9464,5238],"delegatorTokens":9999999952905}},{"ix":115,"action":{"kind":"Delegate","val":2,"amt":4155},"partialState":{"h":11,"t":66,"tokens":[11545,3683,14619,6238],"delegation":[10545,2683,13619,5238],"delegatorTokens":9999999948750}},{"ix":116,"action":{"kind":"Delegate","val":1,"amt":1006},"partialState":{"h":11,"t":66,"tokens":[11545,4689,14619,6238],"delegation":[10545,3689,13619,5238],"delegatorTokens":9999999947744}},{"ix":117,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":13,"t":78,"consumerPower":[9551,null,null,4863],"outstandingDowntime":[false,false,true,false]}},{"ix":118,"action":{"kind":"Undelegate","val":2,"amt":3104},"partialState":{"h":11,"t":66,"tokens":[11545,4689,11515,6238],"delegation":[10545,3689,10515,5238],"delegatorTokens":9999999947744}},{"ix":119,"action":{"kind":"Delegate","val":2,"amt":3178},"partialState":{"h":11,"t":66,"tokens":[11545,4689,14693,6238],"delegation":[10545,3689,13693,5238],"delegatorTokens":9999999944566}},{"ix":120,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":121,"action":{"kind":"Delegate","val":1,"amt":4806},"partialState":{"h":11,"t":66,"tokens":[11545,9495,14693,6238],"delegation":[10545,8495,13693,5238],"delegatorTokens":9999999939760}},{"ix":122,"action":{"kind":"Undelegate","val":3,"amt":1181},"partialState":{"h":11,"t":66,"tokens":[11545,9495,14693,5057],"delegation":[10545,8495,13693,4057],"delegatorTokens":9999999939760}},{"ix":123,"action":{"kind":"Delegate","val":1,"amt":1115},"partialState":{"h":11,"t":66,"tokens":[11545,10610,14693,5057],"delegation":[10545,9610,13693,4057],"delegatorTokens":9999999938645}},{"ix":124,"action":{"kind":"Undelegate","val":1,"amt":4625},"partialState":{"h":11,"t":66,"tokens":[11545,5985,14693,5057],"delegation":[10545,4985,13693,4057],"delegatorTokens":9999999938645}},{"ix":125,"action":{"kind":"Delegate","val":0,"amt":4221},"partialState":{"h":11,"t":66,"tokens":[15766,5985,14693,5057],"delegation":[14766,4985,13693,4057],"delegatorTokens":9999999934424}},{"ix":126,"action":{"kind":"Delegate","val":2,"amt":1609},"partialState":{"h":11,"t":66,"tokens":[15766,5985,16302,5057],"delegation":[14766,4985,15302,4057],"delegatorTokens":9999999932815}},{"ix":127,"action":{"kind":"Undelegate","val":2,"amt":2483},"partialState":{"h":11,"t":66,"tokens":[15766,5985,13819,5057],"delegation":[14766,4985,12819,4057],"delegatorTokens":9999999932815}},{"ix":128,"action":{"kind":"Undelegate","val":0,"amt":4592},"partialState":{"h":11,"t":66,"tokens":[11174,5985,13819,5057],"delegation":[10174,4985,12819,4057],"delegatorTokens":9999999932815}},{"ix":129,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":12,"t":72,"tokens":[11174,5985,13819,5057],"delegation":[10174,4985,12819,4057],"delegatorTokens":9999999932815,"jailed":[null,1000000000000029,1000000000000053,null],"status":["bonded","unbonding","unbonding","bonded"]}},{"ix":130,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":131,"action":{"kind":"Deliver","chain":"consumer","numPackets":2},"partialState":{"h":13,"t":78,"consumerPower":[9551,null,null,4863],"outstandingDowntime":[false,false,false,false]}},{"ix":132,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":13,"t":78,"tokens":[11174,5985,13819,5057],"delegation":[10174,4985,12819,4057],"delegatorTokens":9999999932815,"jailed":[null,1000000000000029,1000000000000053,null],"status":["bonded","unbonding","unbonding","bonded"]}},{"ix":133,"action":{"kind":"Deliver","chain":"consumer","numPackets":2},"partialState":{"h":13,"t":78,"consumerPower":[9551,null,null,4863],"outstandingDowntime":[false,false,false,false]}},{"ix":134,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":14,"t":84,"consumerPower":[11174,null,null,5057],"outstandingDowntime":[false,false,false,false]}},{"ix":135,"action":{"kind":"Undelegate","val":3,"amt":4912},"partialState":{"h":13,"t":78,"tokens":[11174,5985,13819,5057],"delegation":[10174,4985,12819,4057],"delegatorTokens":9999999932815}},{"ix":136,"action":{"kind":"Deliver","chain":"provider","numPackets":4},"partialState":{"h":13,"t":78,"tokens":[11174,5985,13819,5057],"delegation":[10174,4985,12819,4057],"delegatorTokens":9999999932815,"jailed":[null,1000000000000029,1000000000000053,null],"status":["bonded","unbonding","unbonding","bonded"]}},{"ix":137,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":14,"t":84,"tokens":[11174,5985,13819,5057],"delegation":[10174,4985,12819,4057],"delegatorTokens":9999999932815,"jailed":[null,1000000000000029,1000000000000053,null],"status":["bonded","unbonding","unbonding","bonded"]}},{"ix":138,"action":{"kind":"Deliver","chain":"consumer","numPackets":2},"partialState":{"h":14,"t":84,"consumerPower":[11174,null,null,5057],"outstandingDowntime":[false,false,false,false]}},{"ix":139,"action":{"kind":"Undelegate","val":1,"amt":1641},"partialState":{"h":14,"t":84,"tokens":[11174,4344,13819,5057],"delegation":[10174,3344,12819,4057],"delegatorTokens":9999999932815}},{"ix":140,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":15,"t":90,"tokens":[11174,4344,13819,5057],"delegation":[10174,3344,12819,4057],"delegatorTokens":9999999935060,"jailed":[null,1000000000000029,1000000000000053,null],"status":["bonded","unbonded","unbonding","bonded"]}},{"ix":141,"action":{"kind":"Undelegate","val":2,"amt":2739},"partialState":{"h":15,"t":90,"tokens":[11174,4344,11080,5057],"delegation":[10174,3344,10080,4057],"delegatorTokens":9999999935060}},{"ix":142,"action":{"kind":"Undelegate","val":1,"amt":4187},"partialState":{"h":15,"t":90,"tokens":[11174,4344,11080,5057],"delegation":[10174,3344,10080,4057],"delegatorTokens":9999999935060}},{"ix":143,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":15,"t":90,"consumerPower":[11174,null,null,5057],"outstandingDowntime":[false,false,false,false]}},{"ix":144,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":16,"t":96,"consumerPower":[11174,null,null,5057],"outstandingDowntime":[false,false,false,false]}},{"ix":145,"action":{"kind":"Undelegate","val":1,"amt":1576},"partialState":{"h":15,"t":90,"tokens":[11174,2768,11080,5057],"delegation":[10174,1768,10080,4057],"delegatorTokens":9999999935060}},{"ix":146,"action":{"kind":"Deliver","chain":"provider","numPackets":6},"partialState":{"h":15,"t":90,"tokens":[11174,2768,11080,5057],"delegation":[10174,1768,10080,4057],"delegatorTokens":9999999935060,"jailed":[null,1000000000000029,1000000000000053,null],"status":["bonded","unbonded","unbonding","bonded"]}},{"ix":147,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":16,"t":96,"tokens":[11174,2768,11080,5057],"delegation":[10174,1768,10080,4057],"delegatorTokens":9999999938471,"jailed":[null,1000000000000029,1000000000000053,null],"status":["bonded","unbonded","unbonding","bonded"]}},{"ix":148,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":149,"action":{"kind":"Delegate","val":2,"amt":4308},"partialState":{"h":16,"t":96,"tokens":[11174,2768,15388,5057],"delegation":[10174,1768,14388,4057],"delegatorTokens":9999999934163}},{"ix":150,"action":{"kind":"Undelegate","val":0,"amt":3822},"partialState":{"h":16,"t":96,"tokens":[7352,2768,15388,5057],"delegation":[6352,1768,14388,4057],"delegatorTokens":9999999934163}},{"ix":151,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":17,"t":102,"consumerPower":[11174,null,null,5057],"outstandingDowntime":[false,false,false,false]}},{"ix":152,"action":{"kind":"Delegate","val":1,"amt":4559},"partialState":{"h":16,"t":96,"tokens":[7352,7327,15388,5057],"delegation":[6352,6327,14388,4057],"delegatorTokens":9999999929604}},{"ix":153,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":18,"t":108,"consumerPower":[11174,null,null,5057],"outstandingDowntime":[false,false,false,false]}},{"ix":154,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":155,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":156,"action":{"kind":"Delegate","val":2,"amt":2908},"partialState":{"h":16,"t":96,"tokens":[7352,7327,18296,5057],"delegation":[6352,6327,17296,4057],"delegatorTokens":9999999926696}},{"ix":157,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":158,"action":{"kind":"Deliver","chain":"provider","numPackets":4},"partialState":{"h":16,"t":96,"tokens":[7352,7327,18296,5057],"delegation":[6352,6327,17296,4057],"delegatorTokens":9999999926696,"jailed":[null,1000000000000029,1000000000000053,null],"status":["bonded","unbonded","unbonding","bonded"]}},{"ix":159,"action":{"kind":"Undelegate","val":3,"amt":4558},"partialState":{"h":16,"t":96,"tokens":[7352,7327,18296,5057],"delegation":[6352,6327,17296,4057],"delegatorTokens":9999999926696}},{"ix":160,"action":{"kind":"Delegate","val":1,"amt":4244},"partialState":{"h":16,"t":96,"tokens":[7352,11571,18296,5057],"delegation":[6352,10571,17296,4057],"delegatorTokens":9999999922452}},{"ix":161,"action":{"kind":"Undelegate","val":0,"amt":3588},"partialState":{"h":16,"t":96,"tokens":[3764,11571,18296,5057],"delegation":[2764,10571,17296,4057],"delegatorTokens":9999999922452}},{"ix":162,"action":{"kind":"Delegate","val":2,"amt":2257},"partialState":{"h":16,"t":96,"tokens":[3764,11571,20553,5057],"delegation":[2764,10571,19553,4057],"delegatorTokens":9999999920195}},{"ix":163,"action":{"kind":"Delegate","val":2,"amt":2655},"partialState":{"h":16,"t":96,"tokens":[3764,11571,23208,5057],"delegation":[2764,10571,22208,4057],"delegatorTokens":9999999917540}},{"ix":164,"action":{"kind":"Deliver","chain":"provider","numPackets":3},"partialState":{"h":16,"t":96,"tokens":[3764,11571,23208,5057],"delegation":[2764,10571,22208,4057],"delegatorTokens":9999999917540,"jailed":[null,1000000000000029,1000000000000053,null],"status":["bonded","unbonded","unbonding","bonded"]}},{"ix":165,"action":{"kind":"Delegate","val":2,"amt":3143},"partialState":{"h":16,"t":96,"tokens":[3764,11571,26351,5057],"delegation":[2764,10571,25351,4057],"delegatorTokens":9999999914397}},{"ix":166,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":19,"t":114,"consumerPower":[11174,null,null,5057],"outstandingDowntime":[false,false,false,false]}},{"ix":167,"action":{"kind":"Delegate","val":1,"amt":3574},"partialState":{"h":16,"t":96,"tokens":[3764,15145,26351,5057],"delegation":[2764,14145,25351,4057],"delegatorTokens":9999999910823}},{"ix":168,"action":{"kind":"Delegate","val":2,"amt":2899},"partialState":{"h":16,"t":96,"tokens":[3764,15145,29250,5057],"delegation":[2764,14145,28250,4057],"delegatorTokens":9999999907924}},{"ix":169,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":170,"action":{"kind":"Delegate","val":2,"amt":4385},"partialState":{"h":16,"t":96,"tokens":[3764,15145,33635,5057],"delegation":[2764,14145,32635,4057],"delegatorTokens":9999999903539}},{"ix":171,"action":{"kind":"Delegate","val":2,"amt":4260},"partialState":{"h":16,"t":96,"tokens":[3764,15145,37895,5057],"delegation":[2764,14145,36895,4057],"delegatorTokens":9999999899279}},{"ix":172,"action":{"kind":"Undelegate","val":3,"amt":3253},"partialState":{"h":16,"t":96,"tokens":[3764,15145,37895,1804],"delegation":[2764,14145,36895,804],"delegatorTokens":9999999899279}},{"ix":173,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":20,"t":120,"consumerPower":[11174,null,null,5057],"outstandingDowntime":[false,false,false,false]}},{"ix":174,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":17,"t":102,"tokens":[3764,15145,37895,1804],"delegation":[2764,14145,36895,804],"delegatorTokens":9999999899279,"jailed":[null,1000000000000029,1000000000000053,null],"status":["bonded","unbonded","unbonded","bonded"]}},{"ix":175,"action":{"kind":"Undelegate","val":0,"amt":4515},"partialState":{"h":17,"t":102,"tokens":[3764,15145,37895,1804],"delegation":[2764,14145,36895,804],"delegatorTokens":9999999899279}},{"ix":176,"action":{"kind":"Delegate","val":0,"amt":3234},"partialState":{"h":17,"t":102,"tokens":[6998,15145,37895,1804],"delegation":[5998,14145,36895,804],"delegatorTokens":9999999896045}},{"ix":177,"action":{"kind":"Deliver","chain":"consumer","numPackets":6},"partialState":{"h":20,"t":120,"consumerPower":[11174,null,null,5057],"outstandingDowntime":[false,false,false,false]}},{"ix":178,"action":{"kind":"Delegate","val":1,"amt":1048},"partialState":{"h":17,"t":102,"tokens":[6998,16193,37895,1804],"delegation":[5998,15193,36895,804],"delegatorTokens":9999999894997}},{"ix":179,"action":{"kind":"Undelegate","val":1,"amt":3804},"partialState":{"h":17,"t":102,"tokens":[6998,12389,37895,1804],"delegation":[5998,11389,36895,804],"delegatorTokens":9999999894997}},{"ix":180,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":181,"action":{"kind":"Undelegate","val":2,"amt":2694},"partialState":{"h":17,"t":102,"tokens":[6998,12389,35201,1804],"delegation":[5998,11389,34201,804],"delegatorTokens":9999999894997}},{"ix":182,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":18,"t":108,"tokens":[6998,12389,35201,1804],"delegation":[5998,11389,34201,804],"delegatorTokens":9999999894997,"jailed":[null,1000000000000029,1000000000000053,null],"status":["bonded","unbonded","unbonded","bonded"]}},{"ix":183,"action":{"kind":"Delegate","val":3,"amt":1771},"partialState":{"h":18,"t":108,"tokens":[6998,12389,35201,3575],"delegation":[5998,11389,34201,2575],"delegatorTokens":9999999893226}},{"ix":184,"action":{"kind":"Delegate","val":2,"amt":2744},"partialState":{"h":18,"t":108,"tokens":[6998,12389,37945,3575],"delegation":[5998,11389,36945,2575],"delegatorTokens":9999999890482}},{"ix":185,"action":{"kind":"Deliver","chain":"consumer","numPackets":6},"partialState":{"h":20,"t":120,"consumerPower":[11174,null,null,5057],"outstandingDowntime":[false,false,false,false]}},{"ix":186,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":187,"action":{"kind":"Deliver","chain":"provider","numPackets":4},"partialState":{"h":18,"t":108,"tokens":[6998,12389,37945,3575],"delegation":[5998,11389,36945,2575],"delegatorTokens":9999999890482,"jailed":[null,1000000000000029,1000000000000053,null],"status":["bonded","unbonded","unbonded","bonded"]}},{"ix":188,"action":{"kind":"Delegate","val":1,"amt":2043},"partialState":{"h":18,"t":108,"tokens":[6998,14432,37945,3575],"delegation":[5998,13432,36945,2575],"delegatorTokens":9999999888439}},{"ix":189,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":19,"t":114,"tokens":[6998,14432,37945,3575],"delegation":[5998,13432,36945,2575],"delegatorTokens":9999999888439,"jailed":[null,1000000000000029,1000000000000053,null],"status":["bonded","unbonded","unbonded","bonded"]}},{"ix":190,"action":{"kind":"Delegate","val":1,"amt":3552},"partialState":{"h":19,"t":114,"tokens":[6998,17984,37945,3575],"delegation":[5998,16984,36945,2575],"delegatorTokens":9999999884887}},{"ix":191,"action":{"kind":"Undelegate","val":0,"amt":1647},"partialState":{"h":19,"t":114,"tokens":[5351,17984,37945,3575],"delegation":[4351,16984,36945,2575],"delegatorTokens":9999999884887}},{"ix":192,"action":{"kind":"Undelegate","val":2,"amt":2967},"partialState":{"h":19,"t":114,"tokens":[5351,17984,34978,3575],"delegation":[4351,16984,33978,2575],"delegatorTokens":9999999884887}},{"ix":193,"action":{"kind":"Undelegate","val":2,"amt":3035},"partialState":{"h":19,"t":114,"tokens":[5351,17984,31943,3575],"delegation":[4351,16984,30943,2575],"delegatorTokens":9999999884887}},{"ix":194,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":195,"action":{"kind":"Undelegate","val":3,"amt":1677},"partialState":{"h":19,"t":114,"tokens":[5351,17984,31943,1898],"delegation":[4351,16984,30943,898],"delegatorTokens":9999999884887}},{"ix":196,"action":{"kind":"Deliver","chain":"consumer","numPackets":4},"partialState":{"h":20,"t":120,"consumerPower":[11174,null,null,5057],"outstandingDowntime":[false,false,false,false]}},{"ix":197,"action":{"kind":"Delegate","val":2,"amt":2659},"partialState":{"h":19,"t":114,"tokens":[5351,17984,34602,1898],"delegation":[4351,16984,33602,898],"delegatorTokens":9999999882228}},{"ix":198,"action":{"kind":"Undelegate","val":3,"amt":4783},"partialState":{"h":19,"t":114,"tokens":[5351,17984,34602,1898],"delegation":[4351,16984,33602,898],"delegatorTokens":9999999882228}},{"ix":199,"action":{"kind":"Deliver","chain":"provider","numPackets":6},"partialState":{"h":19,"t":114,"tokens":[5351,17984,34602,1898],"delegation":[4351,16984,33602,898],"delegatorTokens":9999999882228,"jailed":[null,1000000000000029,1000000000000053,null],"status":["bonded","unbonded","unbonded","bonded"]}}],"events":["send_downtime_slash_request","send_double_sign_slash_request","send_double_sign_slash_request","send_double_sign_slash_request","insufficient_shares","send_double_sign_slash_request","send_double_sign_slash_request","send_double_sign_slash_request","more_than_one_third_val_power_change","send_vsc_without_downtime_ack","insufficient_shares","receive_double_sign_slash_request","send_downtime_slash_request","downtime_slash_request_outstanding","more_than_one_third_val_power_change","receive_downtime_slash_request","jail","send_vsc_with_downtime_ack","send_double_sign_slash_request","downtime_slash_request_outstanding","downtime_slash_request_outstanding","insufficient_shares","consumer_del_val","consumer_add_val","receive_double_sign_slash_request","receive_double_sign_slash_request","receive_double_sign_slash_request","send_vsc_without_downtime_ack","receive_downtime_slash_ack","consumer_update_val","consumer_del_val","consumer_add_val","receive_double_sign_slash_request","receive_double_sign_slash_request","receive_double_sign_slash_request","receive_downtime_slash_request","jail","send_vsc_with_downtime_ack","downtime_slash_request_outstanding","send_downtime_slash_request","send_double_sign_slash_request","send_vsc_without_downtime_ack","receive_downtime_slash_ack","consumer_update_val","consumer_update_val","send_vsc_without_downtime_ack","receive_downtime_slash_request","jail","send_vsc_with_downtime_ack","insufficient_shares","consumer_update_val","consumer_send_maturation","send_vsc_without_downtime_ack","receive_downtime_slash_ack","consumer_update_val","consumer_update_val","insufficient_shares","receive_double_sign_slash_request","set_undel_hold_false","set_unval_hold_false","complete_unval_in_endblock","complete_undel_in_endblock","send_vsc_not_because_change","send_vsc_without_downtime_ack","insufficient_shares","consumer_send_maturation","some_undels_expired_but_not_completed","complete_undel_immediate","set_unval_hold_false","send_vsc_not_because_change","send_vsc_without_downtime_ack","insufficient_shares","consumer_send_maturation","consumer_send_maturation","complete_unval_in_endblock","some_undels_expired_but_not_completed","send_vsc_without_downtime_ack","insufficient_shares","some_undels_expired_but_not_completed","send_vsc_without_downtime_ack","some_undels_expired_but_not_completed","send_vsc_without_downtime_ack","insufficient_shares"]},{"meta":{"commit":"7ffd0c04e4205cbc9caf212abfe6c59ee43153bf"},"constants":{"P":"provider","C":"consumer","UNBONDING_SECONDS_P":70,"UNBONDING_SECONDS_C":50,"TRUSTING_SECONDS":49,"NUM_VALIDATORS":4,"MAX_VALIDATORS":2,"SLASH_DOUBLESIGN":0,"SLASH_DOWNTIME":0,"JAIL_SECONDS":999999999999999,"BLOCK_SECONDS":6,"INITIAL_DELEGATOR_TOKENS":10000000000000,"DELEGATE_AMT_MIN":1000,"DELEGATE_AMT_MAX":5000,"UNDELEGATE_AMT_MIN":1000,"UNDELEGATE_AMT_MAX":5000,"ISDOWNTIME_PROBABILITY":0.5,"MAX_NUM_PACKETS_FOR_DELIVER":6},"actions":[{"ix":0,"action":{"kind":"Undelegate","val":3,"amt":2217},"partialState":{"h":1,"t":6,"tokens":[5000,4000,3000,2000],"delegation":[4000,3000,2000,1000],"delegatorTokens":10000000000000}},{"ix":1,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":2,"action":{"kind":"Deliver","chain":"provider","numPackets":6},"partialState":{"h":1,"t":6,"tokens":[5000,4000,3000,2000],"delegation":[4000,3000,2000,1000],"delegatorTokens":10000000000000,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":3,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":4,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":2,"t":12,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":5,"action":{"kind":"Undelegate","val":2,"amt":1113},"partialState":{"h":1,"t":6,"tokens":[5000,4000,1887,2000],"delegation":[4000,3000,887,1000],"delegatorTokens":10000000000000}},{"ix":6,"action":{"kind":"Undelegate","val":2,"amt":2203},"partialState":{"h":1,"t":6,"tokens":[5000,4000,1887,2000],"delegation":[4000,3000,887,1000],"delegatorTokens":10000000000000}},{"ix":7,"action":{"kind":"ConsumerSlash","val":1,"infractionHeight":0,"isDowntime":true},"partialState":{"h":2,"t":12,"outstandingDowntime":[false,true,false,false]}},{"ix":8,"action":{"kind":"ConsumerSlash","val":0,"infractionHeight":1,"isDowntime":true},"partialState":{"h":2,"t":12,"outstandingDowntime":[true,true,false,false]}},{"ix":9,"action":{"kind":"Undelegate","val":0,"amt":1580},"partialState":{"h":1,"t":6,"tokens":[3420,4000,1887,2000],"delegation":[2420,3000,887,1000],"delegatorTokens":10000000000000}},{"ix":10,"action":{"kind":"Deliver","chain":"consumer","numPackets":4},"partialState":{"h":2,"t":12,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[true,true,false,false]}},{"ix":11,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":12,"action":{"kind":"Undelegate","val":0,"amt":1225},"partialState":{"h":1,"t":6,"tokens":[2195,4000,1887,2000],"delegation":[1195,3000,887,1000],"delegatorTokens":10000000000000}},{"ix":13,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":14,"action":{"kind":"Delegate","val":2,"amt":1813},"partialState":{"h":1,"t":6,"tokens":[2195,4000,3700,2000],"delegation":[1195,3000,2700,1000],"delegatorTokens":9999999998187}},{"ix":15,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":16,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":3,"t":18,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[true,true,false,false]}},{"ix":17,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":2,"t":12,"tokens":[2195,4000,3700,2000],"delegation":[1195,3000,2700,1000],"delegatorTokens":9999999998187,"jailed":[null,null,null,null],"status":["unbonding","bonded","bonded","unbonded"]}},{"ix":18,"action":{"kind":"Delegate","val":2,"amt":2843},"partialState":{"h":2,"t":12,"tokens":[2195,4000,6543,2000],"delegation":[1195,3000,5543,1000],"delegatorTokens":9999999995344}},{"ix":19,"action":{"kind":"Undelegate","val":3,"amt":1520},"partialState":{"h":2,"t":12,"tokens":[2195,4000,6543,2000],"delegation":[1195,3000,5543,1000],"delegatorTokens":9999999995344}},{"ix":20,"action":{"kind":"Delegate","val":1,"amt":3894},"partialState":{"h":2,"t":12,"tokens":[2195,7894,6543,2000],"delegation":[1195,6894,5543,1000],"delegatorTokens":9999999991450}},{"ix":21,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":3,"t":18,"tokens":[2195,7894,6543,2000],"delegation":[1195,6894,5543,1000],"delegatorTokens":9999999991450,"jailed":[null,null,null,null],"status":["unbonding","bonded","bonded","unbonded"]}},{"ix":22,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":23,"action":{"kind":"Delegate","val":2,"amt":3716},"partialState":{"h":3,"t":18,"tokens":[2195,7894,10259,2000],"delegation":[1195,6894,9259,1000],"delegatorTokens":9999999987734}},{"ix":24,"action":{"kind":"Deliver","chain":"provider","numPackets":5},"partialState":{"h":3,"t":18,"tokens":[2195,7894,10259,2000],"delegation":[1195,6894,9259,1000],"delegatorTokens":9999999987734,"jailed":[null,null,null,null],"status":["unbonding","bonded","bonded","unbonded"]}},{"ix":25,"action":{"kind":"ConsumerSlash","val":0,"infractionHeight":0,"isDowntime":true},"partialState":{"h":3,"t":18,"outstandingDowntime":[true,true,false,false]}},{"ix":26,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":4,"t":24,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[true,true,false,false]}},{"ix":27,"action":{"kind":"Delegate","val":0,"amt":4612},"partialState":{"h":3,"t":18,"tokens":[6807,7894,10259,2000],"delegation":[5807,6894,9259,1000],"delegatorTokens":9999999983122}},{"ix":28,"action":{"kind":"Delegate","val":3,"amt":1309},"partialState":{"h":3,"t":18,"tokens":[6807,7894,10259,3309],"delegation":[5807,6894,9259,2309],"delegatorTokens":9999999981813}},{"ix":29,"action":{"kind":"ConsumerSlash","val":0,"infractionHeight":2,"isDowntime":false},"partialState":{"h":4,"t":24,"outstandingDowntime":[true,true,false,false]}},{"ix":30,"action":{"kind":"Delegate","val":1,"amt":2557},"partialState":{"h":3,"t":18,"tokens":[6807,10451,10259,3309],"delegation":[5807,9451,9259,2309],"delegatorTokens":9999999979256}},{"ix":31,"action":{"kind":"Deliver","chain":"provider","numPackets":3},"partialState":{"h":3,"t":18,"tokens":[6807,10451,10259,3309],"delegation":[5807,9451,9259,2309],"delegatorTokens":9999999979256,"jailed":[null,null,null,null],"status":["unbonding","bonded","bonded","unbonded"]}},{"ix":32,"action":{"kind":"Delegate","val":2,"amt":4631},"partialState":{"h":3,"t":18,"tokens":[6807,10451,14890,3309],"delegation":[5807,9451,13890,2309],"delegatorTokens":9999999974625}},{"ix":33,"action":{"kind":"Deliver","chain":"consumer","numPackets":1},"partialState":{"h":4,"t":24,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[true,true,false,false]}},{"ix":34,"action":{"kind":"Delegate","val":3,"amt":2604},"partialState":{"h":3,"t":18,"tokens":[6807,10451,14890,5913],"delegation":[5807,9451,13890,4913],"delegatorTokens":9999999972021}},{"ix":35,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":36,"action":{"kind":"Undelegate","val":3,"amt":3658},"partialState":{"h":3,"t":18,"tokens":[6807,10451,14890,2255],"delegation":[5807,9451,13890,1255],"delegatorTokens":9999999972021}},{"ix":37,"action":{"kind":"Delegate","val":3,"amt":1599},"partialState":{"h":3,"t":18,"tokens":[6807,10451,14890,3854],"delegation":[5807,9451,13890,2854],"delegatorTokens":9999999970422}},{"ix":38,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":39,"action":{"kind":"Undelegate","val":2,"amt":1711},"partialState":{"h":3,"t":18,"tokens":[6807,10451,13179,3854],"delegation":[5807,9451,12179,2854],"delegatorTokens":9999999970422}},{"ix":40,"action":{"kind":"Undelegate","val":3,"amt":1088},"partialState":{"h":3,"t":18,"tokens":[6807,10451,13179,2766],"delegation":[5807,9451,12179,1766],"delegatorTokens":9999999970422}},{"ix":41,"action":{"kind":"ConsumerSlash","val":1,"infractionHeight":1,"isDowntime":true},"partialState":{"h":4,"t":24,"outstandingDowntime":[true,true,false,false]}},{"ix":42,"action":{"kind":"ConsumerSlash","val":0,"infractionHeight":1,"isDowntime":true},"partialState":{"h":4,"t":24,"outstandingDowntime":[true,true,false,false]}},{"ix":43,"action":{"kind":"Delegate","val":3,"amt":3981},"partialState":{"h":3,"t":18,"tokens":[6807,10451,13179,6747],"delegation":[5807,9451,12179,5747],"delegatorTokens":9999999966441}},{"ix":44,"action":{"kind":"Delegate","val":1,"amt":1778},"partialState":{"h":3,"t":18,"tokens":[6807,12229,13179,6747],"delegation":[5807,11229,12179,5747],"delegatorTokens":9999999964663}},{"ix":45,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":4,"t":24,"tokens":[6807,12229,13179,6747],"delegation":[5807,11229,12179,5747],"delegatorTokens":9999999964663,"jailed":[1000000000000017,1000000000000017,null,null],"status":["unbonding","bonded","bonded","unbonded"]}},{"ix":46,"action":{"kind":"Undelegate","val":0,"amt":2292},"partialState":{"h":4,"t":24,"tokens":[4515,12229,13179,6747],"delegation":[3515,11229,12179,5747],"delegatorTokens":9999999964663}},{"ix":47,"action":{"kind":"Deliver","chain":"consumer","numPackets":6},"partialState":{"h":4,"t":24,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[true,true,false,false]}},{"ix":48,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":5,"t":30,"consumerPower":[null,7894,6543,null],"outstandingDowntime":[true,true,false,false]}},{"ix":49,"action":{"kind":"Delegate","val":3,"amt":4095},"partialState":{"h":4,"t":24,"tokens":[4515,12229,13179,10842],"delegation":[3515,11229,12179,9842],"delegatorTokens":9999999960568}},{"ix":50,"action":{"kind":"Deliver","chain":"provider","numPackets":4},"partialState":{"h":4,"t":24,"tokens":[4515,12229,13179,10842],"delegation":[3515,11229,12179,9842],"delegatorTokens":9999999960568,"jailed":[1000000000000017,1000000000000017,null,null],"status":["unbonding","bonded","bonded","unbonded"]}},{"ix":51,"action":{"kind":"Delegate","val":2,"amt":2765},"partialState":{"h":4,"t":24,"tokens":[4515,12229,15944,10842],"delegation":[3515,11229,14944,9842],"delegatorTokens":9999999957803}},{"ix":52,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":5,"t":30,"tokens":[4515,12229,15944,10842],"delegation":[3515,11229,14944,9842],"delegatorTokens":9999999957803,"jailed":[1000000000000017,1000000000000017,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":53,"action":{"kind":"Undelegate","val":1,"amt":4389},"partialState":{"h":5,"t":30,"tokens":[4515,7840,15944,10842],"delegation":[3515,6840,14944,9842],"delegatorTokens":9999999957803}},{"ix":54,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":55,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":6,"t":36,"consumerPower":[null,7894,6543,null],"outstandingDowntime":[true,true,false,false]}},{"ix":56,"action":{"kind":"ConsumerSlash","val":1,"infractionHeight":3,"isDowntime":true},"partialState":{"h":6,"t":36,"outstandingDowntime":[true,true,false,false]}},{"ix":57,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":7,"t":42,"consumerPower":[null,7894,6543,null],"outstandingDowntime":[true,true,false,false]}},{"ix":58,"action":{"kind":"ConsumerSlash","val":0,"infractionHeight":6,"isDowntime":true},"partialState":{"h":7,"t":42,"outstandingDowntime":[true,true,false,false]}},{"ix":59,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":60,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":6,"t":36,"tokens":[4515,7840,15944,10842],"delegation":[3515,6840,14944,9842],"delegatorTokens":9999999957803,"jailed":[1000000000000017,1000000000000017,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":61,"action":{"kind":"Undelegate","val":1,"amt":1429},"partialState":{"h":6,"t":36,"tokens":[4515,6411,15944,10842],"delegation":[3515,5411,14944,9842],"delegatorTokens":9999999957803}},{"ix":62,"action":{"kind":"Deliver","chain":"provider","numPackets":1},"partialState":{"h":6,"t":36,"tokens":[4515,6411,15944,10842],"delegation":[3515,5411,14944,9842],"delegatorTokens":9999999957803,"jailed":[1000000000000017,1000000000000017,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":63,"action":{"kind":"Delegate","val":1,"amt":3894},"partialState":{"h":6,"t":36,"tokens":[4515,10305,15944,10842],"delegation":[3515,9305,14944,9842],"delegatorTokens":9999999953909}},{"ix":64,"action":{"kind":"Deliver","chain":"consumer","numPackets":4},"partialState":{"h":7,"t":42,"consumerPower":[null,7894,6543,null],"outstandingDowntime":[false,false,false,false]}},{"ix":65,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":66,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":7,"t":42,"tokens":[4515,10305,15944,10842],"delegation":[3515,9305,14944,9842],"delegatorTokens":9999999953909,"jailed":[1000000000000017,1000000000000017,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":67,"action":{"kind":"Deliver","chain":"consumer","numPackets":4},"partialState":{"h":7,"t":42,"consumerPower":[null,7894,6543,null],"outstandingDowntime":[false,false,false,false]}},{"ix":68,"action":{"kind":"Deliver","chain":"provider","numPackets":4},"partialState":{"h":7,"t":42,"tokens":[4515,10305,15944,10842],"delegation":[3515,9305,14944,9842],"delegatorTokens":9999999953909,"jailed":[1000000000000017,1000000000000017,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":69,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":70,"action":{"kind":"Undelegate","val":0,"amt":1686},"partialState":{"h":7,"t":42,"tokens":[2829,10305,15944,10842],"delegation":[1829,9305,14944,9842],"delegatorTokens":9999999953909}},{"ix":71,"action":{"kind":"ConsumerSlash","val":0,"infractionHeight":3,"isDowntime":false},"partialState":{"h":7,"t":42,"outstandingDowntime":[false,false,false,false]}},{"ix":72,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":73,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":8,"t":48,"tokens":[2829,10305,15944,10842],"delegation":[1829,9305,14944,9842],"delegatorTokens":9999999953909,"jailed":[1000000000000017,1000000000000017,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":74,"action":{"kind":"ConsumerSlash","val":1,"infractionHeight":4,"isDowntime":true},"partialState":{"h":7,"t":42,"outstandingDowntime":[false,true,false,false]}},{"ix":75,"action":{"kind":"Delegate","val":1,"amt":3756},"partialState":{"h":8,"t":48,"tokens":[2829,14061,15944,10842],"delegation":[1829,13061,14944,9842],"delegatorTokens":9999999950153}},{"ix":76,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":77,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":78,"action":{"kind":"Undelegate","val":3,"amt":2880},"partialState":{"h":8,"t":48,"tokens":[2829,14061,15944,7962],"delegation":[1829,13061,14944,6962],"delegatorTokens":9999999950153}},{"ix":79,"action":{"kind":"Deliver","chain":"consumer","numPackets":1},"partialState":{"h":7,"t":42,"consumerPower":[null,7894,6543,null],"outstandingDowntime":[false,true,false,false]}},{"ix":80,"action":{"kind":"Delegate","val":1,"amt":4840},"partialState":{"h":8,"t":48,"tokens":[2829,18901,15944,7962],"delegation":[1829,17901,14944,6962],"delegatorTokens":9999999945313}},{"ix":81,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":9,"t":54,"tokens":[2829,18901,15944,7962],"delegation":[1829,17901,14944,6962],"delegatorTokens":9999999945313,"jailed":[1000000000000017,1000000000000017,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":82,"action":{"kind":"ConsumerSlash","val":1,"infractionHeight":6,"isDowntime":true},"partialState":{"h":7,"t":42,"outstandingDowntime":[false,true,false,false]}},{"ix":83,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":10,"t":60,"tokens":[2829,18901,15944,7962],"delegation":[1829,17901,14944,6962],"delegatorTokens":9999999945313,"jailed":[1000000000000017,1000000000000017,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":84,"action":{"kind":"Undelegate","val":0,"amt":3125},"partialState":{"h":10,"t":60,"tokens":[2829,18901,15944,7962],"delegation":[1829,17901,14944,6962],"delegatorTokens":9999999945313}},{"ix":85,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":11,"t":66,"tokens":[2829,18901,15944,7962],"delegation":[1829,17901,14944,6962],"delegatorTokens":9999999945313,"jailed":[1000000000000017,1000000000000017,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":86,"action":{"kind":"ConsumerSlash","val":1,"infractionHeight":3,"isDowntime":true},"partialState":{"h":7,"t":42,"outstandingDowntime":[false,true,false,false]}},{"ix":87,"action":{"kind":"Delegate","val":2,"amt":3786},"partialState":{"h":11,"t":66,"tokens":[2829,18901,19730,7962],"delegation":[1829,17901,18730,6962],"delegatorTokens":9999999941527}},{"ix":88,"action":{"kind":"ConsumerSlash","val":1,"infractionHeight":2,"isDowntime":false},"partialState":{"h":7,"t":42,"outstandingDowntime":[false,true,false,false]}},{"ix":89,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":90,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":12,"t":72,"tokens":[2829,18901,19730,7962],"delegation":[1829,17901,18730,6962],"delegatorTokens":9999999941527,"jailed":[1000000000000017,1000000000000017,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":91,"action":{"kind":"Deliver","chain":"consumer","numPackets":4},"partialState":{"h":7,"t":42,"consumerPower":[null,7894,6543,null],"outstandingDowntime":[false,true,false,false]}},{"ix":92,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":8,"t":48,"consumerPower":[null,null,15944,7962],"outstandingDowntime":[false,true,false,false]}},{"ix":93,"action":{"kind":"Delegate","val":2,"amt":3125},"partialState":{"h":12,"t":72,"tokens":[2829,18901,22855,7962],"delegation":[1829,17901,21855,6962],"delegatorTokens":9999999938402}},{"ix":94,"action":{"kind":"ConsumerSlash","val":1,"infractionHeight":4,"isDowntime":false},"partialState":{"h":8,"t":48,"outstandingDowntime":[false,true,false,false]}},{"ix":95,"action":{"kind":"ConsumerSlash","val":2,"infractionHeight":0,"isDowntime":true},"partialState":{"h":8,"t":48,"outstandingDowntime":[false,true,true,false]}},{"ix":96,"action":{"kind":"Delegate","val":2,"amt":4547},"partialState":{"h":12,"t":72,"tokens":[2829,18901,27402,7962],"delegation":[1829,17901,26402,6962],"delegatorTokens":9999999933855}},{"ix":97,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":98,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":9,"t":54,"consumerPower":[null,null,15944,7962],"outstandingDowntime":[false,true,true,false]}},{"ix":99,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":100,"action":{"kind":"Deliver","chain":"provider","numPackets":5},"partialState":{"h":12,"t":72,"tokens":[2829,18901,27402,7962],"delegation":[1829,17901,26402,6962],"delegatorTokens":9999999933855,"jailed":[1000000000000017,1000000000000017,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":101,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":10,"t":60,"consumerPower":[null,null,15944,7962],"outstandingDowntime":[false,true,true,false]}},{"ix":102,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":13,"t":78,"tokens":[2829,18901,27402,7962],"delegation":[1829,17901,26402,6962],"delegatorTokens":9999999933855,"jailed":[1000000000000017,1000000000000071,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":103,"action":{"kind":"Deliver","chain":"provider","numPackets":4},"partialState":{"h":13,"t":78,"tokens":[2829,18901,27402,7962],"delegation":[1829,17901,26402,6962],"delegatorTokens":9999999933855,"jailed":[1000000000000017,1000000000000071,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":104,"action":{"kind":"Delegate","val":3,"amt":3548},"partialState":{"h":13,"t":78,"tokens":[2829,18901,27402,11510],"delegation":[1829,17901,26402,10510],"delegatorTokens":9999999930307}},{"ix":105,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":106,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":107,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":108,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":109,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":11,"t":66,"consumerPower":[null,null,15944,7962],"outstandingDowntime":[false,true,true,false]}},{"ix":110,"action":{"kind":"Deliver","chain":"provider","numPackets":3},"partialState":{"h":13,"t":78,"tokens":[2829,18901,27402,11510],"delegation":[1829,17901,26402,10510],"delegatorTokens":9999999930307,"jailed":[1000000000000017,1000000000000071,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":111,"action":{"kind":"Undelegate","val":0,"amt":4589},"partialState":{"h":13,"t":78,"tokens":[2829,18901,27402,11510],"delegation":[1829,17901,26402,10510],"delegatorTokens":9999999930307}},{"ix":112,"action":{"kind":"Deliver","chain":"consumer","numPackets":2},"partialState":{"h":11,"t":66,"consumerPower":[null,null,15944,7962],"outstandingDowntime":[false,true,true,false]}},{"ix":113,"action":{"kind":"Deliver","chain":"consumer","numPackets":3},"partialState":{"h":11,"t":66,"consumerPower":[null,null,15944,7962],"outstandingDowntime":[false,true,true,false]}},{"ix":114,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":14,"t":84,"tokens":[2829,18901,27402,11510],"delegation":[1829,17901,26402,10510],"delegatorTokens":9999999930307,"jailed":[1000000000000017,1000000000000071,1000000000000077,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":115,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":15,"t":90,"tokens":[2829,18901,27402,11510],"delegation":[1829,17901,26402,10510],"delegatorTokens":9999999930307,"jailed":[1000000000000017,1000000000000071,1000000000000077,null],"status":["unbonding","unbonding","unbonding","bonded"]}},{"ix":116,"action":{"kind":"Deliver","chain":"consumer","numPackets":6},"partialState":{"h":11,"t":66,"consumerPower":[null,null,15944,7962],"outstandingDowntime":[false,false,false,false]}},{"ix":117,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":118,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":16,"t":96,"tokens":[2829,18901,27402,11510],"delegation":[1829,17901,26402,10510],"delegatorTokens":9999999930307,"jailed":[1000000000000017,1000000000000071,1000000000000077,null],"status":["unbonding","unbonding","unbonding","bonded"]}},{"ix":119,"action":{"kind":"Undelegate","val":2,"amt":3773},"partialState":{"h":16,"t":96,"tokens":[2829,18901,23629,11510],"delegation":[1829,17901,22629,10510],"delegatorTokens":9999999930307}},{"ix":120,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":121,"action":{"kind":"Deliver","chain":"consumer","numPackets":5},"partialState":{"h":11,"t":66,"consumerPower":[null,null,15944,7962],"outstandingDowntime":[false,false,false,false]}},{"ix":122,"action":{"kind":"Delegate","val":1,"amt":3023},"partialState":{"h":16,"t":96,"tokens":[2829,21924,23629,11510],"delegation":[1829,20924,22629,10510],"delegatorTokens":9999999927284}},{"ix":123,"action":{"kind":"Deliver","chain":"consumer","numPackets":6},"partialState":{"h":11,"t":66,"consumerPower":[null,null,15944,7962],"outstandingDowntime":[false,false,false,false]}},{"ix":124,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":125,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":126,"action":{"kind":"Delegate","val":0,"amt":4236},"partialState":{"h":16,"t":96,"tokens":[7065,21924,23629,11510],"delegation":[6065,20924,22629,10510],"delegatorTokens":9999999923048}},{"ix":127,"action":{"kind":"Delegate","val":0,"amt":1660},"partialState":{"h":16,"t":96,"tokens":[8725,21924,23629,11510],"delegation":[7725,20924,22629,10510],"delegatorTokens":9999999921388}},{"ix":128,"action":{"kind":"Deliver","chain":"provider","numPackets":1},"partialState":{"h":16,"t":96,"tokens":[8725,21924,23629,11510],"delegation":[7725,20924,22629,10510],"delegatorTokens":9999999921388,"jailed":[1000000000000017,1000000000000071,1000000000000077,null],"status":["unbonding","unbonding","unbonding","bonded"]}},{"ix":129,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":17,"t":102,"tokens":[8725,21924,23629,11510],"delegation":[7725,20924,22629,10510],"delegatorTokens":9999999921388,"jailed":[1000000000000017,1000000000000071,1000000000000077,null],"status":["unbonding","unbonding","unbonding","bonded"]}},{"ix":130,"action":{"kind":"Deliver","chain":"consumer","numPackets":2},"partialState":{"h":11,"t":66,"consumerPower":[null,null,15944,7962],"outstandingDowntime":[false,false,false,false]}},{"ix":131,"action":{"kind":"Delegate","val":1,"amt":2011},"partialState":{"h":17,"t":102,"tokens":[8725,23935,23629,11510],"delegation":[7725,22935,22629,10510],"delegatorTokens":9999999919377}},{"ix":132,"action":{"kind":"Undelegate","val":0,"amt":1129},"partialState":{"h":17,"t":102,"tokens":[7596,23935,23629,11510],"delegation":[6596,22935,22629,10510],"delegatorTokens":9999999919377}},{"ix":133,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":134,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":135,"action":{"kind":"Undelegate","val":0,"amt":1289},"partialState":{"h":17,"t":102,"tokens":[6307,23935,23629,11510],"delegation":[5307,22935,22629,10510],"delegatorTokens":9999999919377}},{"ix":136,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":137,"action":{"kind":"Delegate","val":2,"amt":2459},"partialState":{"h":17,"t":102,"tokens":[6307,23935,26088,11510],"delegation":[5307,22935,25088,10510],"delegatorTokens":9999999916918}},{"ix":138,"action":{"kind":"Deliver","chain":"consumer","numPackets":3},"partialState":{"h":11,"t":66,"consumerPower":[null,null,15944,7962],"outstandingDowntime":[false,false,false,false]}},{"ix":139,"action":{"kind":"Undelegate","val":3,"amt":1218},"partialState":{"h":17,"t":102,"tokens":[6307,23935,26088,10292],"delegation":[5307,22935,25088,9292],"delegatorTokens":9999999916918}},{"ix":140,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":18,"t":108,"tokens":[6307,23935,26088,10292],"delegation":[5307,22935,25088,9292],"delegatorTokens":9999999916918,"jailed":[1000000000000017,1000000000000071,1000000000000077,null],"status":["unbonding","unbonding","unbonding","bonded"]}},{"ix":141,"action":{"kind":"Undelegate","val":2,"amt":3079},"partialState":{"h":18,"t":108,"tokens":[6307,23935,23009,10292],"delegation":[5307,22935,22009,9292],"delegatorTokens":9999999916918}},{"ix":142,"action":{"kind":"Delegate","val":3,"amt":1616},"partialState":{"h":18,"t":108,"tokens":[6307,23935,23009,11908],"delegation":[5307,22935,22009,10908],"delegatorTokens":9999999915302}},{"ix":143,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":12,"t":72,"consumerPower":[null,null,null,11510],"outstandingDowntime":[false,false,false,false]}},{"ix":144,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":13,"t":78,"consumerPower":[null,null,null,11510],"outstandingDowntime":[false,false,false,false]}},{"ix":145,"action":{"kind":"Deliver","chain":"consumer","numPackets":6},"partialState":{"h":13,"t":78,"consumerPower":[null,null,null,11510],"outstandingDowntime":[false,false,false,false]}},{"ix":146,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":14,"t":84,"consumerPower":[null,null,null,11510],"outstandingDowntime":[false,false,false,false]}},{"ix":147,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":148,"action":{"kind":"Undelegate","val":2,"amt":4564},"partialState":{"h":18,"t":108,"tokens":[6307,23935,18445,11908],"delegation":[5307,22935,17445,10908],"delegatorTokens":9999999915302}},{"ix":149,"action":{"kind":"Deliver","chain":"provider","numPackets":2},"partialState":{"h":18,"t":108,"tokens":[6307,23935,18445,11908],"delegation":[5307,22935,17445,10908],"delegatorTokens":9999999915302,"jailed":[1000000000000017,1000000000000071,1000000000000077,null],"status":["unbonding","unbonding","unbonding","bonded"]}},{"ix":150,"action":{"kind":"Delegate","val":2,"amt":1695},"partialState":{"h":18,"t":108,"tokens":[6307,23935,20140,11908],"delegation":[5307,22935,19140,10908],"delegatorTokens":9999999913607}},{"ix":151,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":152,"action":{"kind":"Undelegate","val":1,"amt":1354},"partialState":{"h":18,"t":108,"tokens":[6307,22581,20140,11908],"delegation":[5307,21581,19140,10908],"delegatorTokens":9999999913607}},{"ix":153,"action":{"kind":"Deliver","chain":"consumer","numPackets":6},"partialState":{"h":14,"t":84,"consumerPower":[null,null,null,11510],"outstandingDowntime":[false,false,false,false]}},{"ix":154,"action":{"kind":"Undelegate","val":2,"amt":3103},"partialState":{"h":18,"t":108,"tokens":[6307,22581,17037,11908],"delegation":[5307,21581,16037,10908],"delegatorTokens":9999999913607}},{"ix":155,"action":{"kind":"Undelegate","val":3,"amt":4302},"partialState":{"h":18,"t":108,"tokens":[6307,22581,17037,7606],"delegation":[5307,21581,16037,6606],"delegatorTokens":9999999913607}},{"ix":156,"action":{"kind":"Deliver","chain":"provider","numPackets":5},"partialState":{"h":18,"t":108,"tokens":[6307,22581,17037,7606],"delegation":[5307,21581,16037,6606],"delegatorTokens":9999999913607,"jailed":[1000000000000017,1000000000000071,1000000000000077,null],"status":["unbonding","unbonding","unbonding","bonded"]}},{"ix":157,"action":{"kind":"Delegate","val":1,"amt":3046},"partialState":{"h":18,"t":108,"tokens":[6307,25627,17037,7606],"delegation":[5307,24627,16037,6606],"delegatorTokens":9999999910561}},{"ix":158,"action":{"kind":"Undelegate","val":3,"amt":1035},"partialState":{"h":18,"t":108,"tokens":[6307,25627,17037,6571],"delegation":[5307,24627,16037,5571],"delegatorTokens":9999999910561}},{"ix":159,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":160,"action":{"kind":"Undelegate","val":3,"amt":4208},"partialState":{"h":18,"t":108,"tokens":[6307,25627,17037,2363],"delegation":[5307,24627,16037,1363],"delegatorTokens":9999999910561}},{"ix":161,"action":{"kind":"Undelegate","val":3,"amt":3925},"partialState":{"h":18,"t":108,"tokens":[6307,25627,17037,2363],"delegation":[5307,24627,16037,1363],"delegatorTokens":9999999910561}},{"ix":162,"action":{"kind":"Deliver","chain":"consumer","numPackets":3},"partialState":{"h":14,"t":84,"consumerPower":[null,null,null,11510],"outstandingDowntime":[false,false,false,false]}},{"ix":163,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":164,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":165,"action":{"kind":"Undelegate","val":0,"amt":3468},"partialState":{"h":18,"t":108,"tokens":[2839,25627,17037,2363],"delegation":[1839,24627,16037,1363],"delegatorTokens":9999999910561}},{"ix":166,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":167,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":168,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":169,"action":{"kind":"Undelegate","val":1,"amt":2357},"partialState":{"h":18,"t":108,"tokens":[2839,23270,17037,2363],"delegation":[1839,22270,16037,1363],"delegatorTokens":9999999910561}},{"ix":170,"action":{"kind":"Deliver","chain":"provider","numPackets":5},"partialState":{"h":18,"t":108,"tokens":[2839,23270,17037,2363],"delegation":[1839,22270,16037,1363],"delegatorTokens":9999999910561,"jailed":[1000000000000017,1000000000000071,1000000000000077,null],"status":["unbonding","unbonding","unbonding","bonded"]}},{"ix":171,"action":{"kind":"Deliver","chain":"provider","numPackets":5},"partialState":{"h":18,"t":108,"tokens":[2839,23270,17037,2363],"delegation":[1839,22270,16037,1363],"delegatorTokens":9999999910561,"jailed":[1000000000000017,1000000000000071,1000000000000077,null],"status":["unbonding","unbonding","unbonding","bonded"]}},{"ix":172,"action":{"kind":"Undelegate","val":2,"amt":4770},"partialState":{"h":18,"t":108,"tokens":[2839,23270,12267,2363],"delegation":[1839,22270,11267,1363],"delegatorTokens":9999999910561}},{"ix":173,"action":{"kind":"Delegate","val":2,"amt":4959},"partialState":{"h":18,"t":108,"tokens":[2839,23270,17226,2363],"delegation":[1839,22270,16226,1363],"delegatorTokens":9999999905602}},{"ix":174,"action":{"kind":"Undelegate","val":0,"amt":2947},"partialState":{"h":18,"t":108,"tokens":[2839,23270,17226,2363],"delegation":[1839,22270,16226,1363],"delegatorTokens":9999999905602}},{"ix":175,"action":{"kind":"Deliver","chain":"provider","numPackets":6},"partialState":{"h":18,"t":108,"tokens":[2839,23270,17226,2363],"delegation":[1839,22270,16226,1363],"delegatorTokens":9999999905602,"jailed":[1000000000000017,1000000000000071,1000000000000077,null],"status":["unbonding","unbonding","unbonding","bonded"]}},{"ix":176,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":177,"action":{"kind":"Deliver","chain":"provider","numPackets":3},"partialState":{"h":18,"t":108,"tokens":[2839,23270,17226,2363],"delegation":[1839,22270,16226,1363],"delegatorTokens":9999999905602,"jailed":[1000000000000017,1000000000000071,1000000000000077,null],"status":["unbonding","unbonding","unbonding","bonded"]}},{"ix":178,"action":{"kind":"Delegate","val":3,"amt":4024},"partialState":{"h":18,"t":108,"tokens":[2839,23270,17226,6387],"delegation":[1839,22270,16226,5387],"delegatorTokens":9999999901578}},{"ix":179,"action":{"kind":"Undelegate","val":2,"amt":3041},"partialState":{"h":18,"t":108,"tokens":[2839,23270,14185,6387],"delegation":[1839,22270,13185,5387],"delegatorTokens":9999999901578}},{"ix":180,"action":{"kind":"Delegate","val":0,"amt":3112},"partialState":{"h":18,"t":108,"tokens":[5951,23270,14185,6387],"delegation":[4951,22270,13185,5387],"delegatorTokens":9999999898466}},{"ix":181,"action":{"kind":"Delegate","val":0,"amt":1696},"partialState":{"h":18,"t":108,"tokens":[7647,23270,14185,6387],"delegation":[6647,22270,13185,5387],"delegatorTokens":9999999896770}},{"ix":182,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":183,"action":{"kind":"Delegate","val":0,"amt":4292},"partialState":{"h":18,"t":108,"tokens":[11939,23270,14185,6387],"delegation":[10939,22270,13185,5387],"delegatorTokens":9999999892478}},{"ix":184,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":19,"t":114,"tokens":[11939,23270,14185,6387],"delegation":[10939,22270,13185,5387],"delegatorTokens":9999999892478,"jailed":[1000000000000017,1000000000000071,1000000000000077,null],"status":["unbonding","unbonding","unbonding","bonded"]}},{"ix":185,"action":{"kind":"Delegate","val":0,"amt":2835},"partialState":{"h":19,"t":114,"tokens":[14774,23270,14185,6387],"delegation":[13774,22270,13185,5387],"delegatorTokens":9999999889643}},{"ix":186,"action":{"kind":"Undelegate","val":0,"amt":3249},"partialState":{"h":19,"t":114,"tokens":[11525,23270,14185,6387],"delegation":[10525,22270,13185,5387],"delegatorTokens":9999999889643}},{"ix":187,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":188,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":15,"t":90,"consumerPower":[null,null,null,11510],"outstandingDowntime":[false,false,false,false]}},{"ix":189,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":190,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":20,"t":120,"tokens":[11525,23270,14185,6387],"delegation":[10525,22270,13185,5387],"delegatorTokens":9999999889643,"jailed":[1000000000000017,1000000000000071,1000000000000077,null],"status":["unbonding","unbonding","unbonding","bonded"]}},{"ix":191,"action":{"kind":"Deliver","chain":"consumer","numPackets":2},"partialState":{"h":15,"t":90,"consumerPower":[null,null,null,11510],"outstandingDowntime":[false,false,false,false]}},{"ix":192,"action":{"kind":"Undelegate","val":3,"amt":3250},"partialState":{"h":20,"t":120,"tokens":[11525,23270,14185,3137],"delegation":[10525,22270,13185,2137],"delegatorTokens":9999999889643}},{"ix":193,"action":{"kind":"Undelegate","val":2,"amt":4873},"partialState":{"h":20,"t":120,"tokens":[11525,23270,9312,3137],"delegation":[10525,22270,8312,2137],"delegatorTokens":9999999889643}},{"ix":194,"action":{"kind":"Undelegate","val":0,"amt":4907},"partialState":{"h":20,"t":120,"tokens":[6618,23270,9312,3137],"delegation":[5618,22270,8312,2137],"delegatorTokens":9999999889643}},{"ix":195,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":21,"t":126,"tokens":[6618,23270,9312,3137],"delegation":[5618,22270,8312,2137],"delegatorTokens":9999999889643,"jailed":[1000000000000017,1000000000000071,1000000000000077,null],"status":["unbonding","unbonding","unbonding","bonded"]}},{"ix":196,"action":{"kind":"Delegate","val":1,"amt":2444},"partialState":{"h":21,"t":126,"tokens":[6618,25714,9312,3137],"delegation":[5618,24714,8312,2137],"delegatorTokens":9999999887199}},{"ix":197,"action":{"kind":"Delegate","val":3,"amt":3522},"partialState":{"h":21,"t":126,"tokens":[6618,25714,9312,6659],"delegation":[5618,24714,8312,5659],"delegatorTokens":9999999883677}},{"ix":198,"action":{"kind":"Deliver","chain":"consumer","numPackets":3},"partialState":{"h":15,"t":90,"consumerPower":[null,null,null,11510],"outstandingDowntime":[false,false,false,false]}},{"ix":199,"action":{"kind":"Undelegate","val":1,"amt":4848},"partialState":{"h":21,"t":126,"tokens":[6618,20866,9312,6659],"delegation":[5618,19866,8312,5659],"delegatorTokens":9999999883677}}],"events":["insufficient_shares","insufficient_shares","send_downtime_slash_request","send_downtime_slash_request","more_than_one_third_val_power_change","send_vsc_without_downtime_ack","insufficient_shares","send_vsc_without_downtime_ack","downtime_slash_request_outstanding","send_double_sign_slash_request","downtime_slash_request_outstanding","downtime_slash_request_outstanding","receive_downtime_slash_request","jail","receive_downtime_slash_request","jail","send_vsc_with_downtime_ack","consumer_del_val","consumer_add_val","consumer_update_val","more_than_one_third_val_power_change","send_vsc_without_downtime_ack","downtime_slash_request_outstanding","downtime_slash_request_outstanding","send_vsc_not_because_change","send_vsc_without_downtime_ack","receive_double_sign_slash_request","receive_downtime_slash_ack","receive_downtime_slash_ack","send_vsc_not_because_change","send_vsc_without_downtime_ack","send_double_sign_slash_request","send_vsc_not_because_change","send_vsc_without_downtime_ack","send_downtime_slash_request","send_vsc_without_downtime_ack","downtime_slash_request_outstanding","insufficient_shares","downtime_slash_request_outstanding","send_double_sign_slash_request","send_vsc_without_downtime_ack","consumer_del_val","consumer_update_val","consumer_add_val","send_double_sign_slash_request","send_downtime_slash_request","receive_double_sign_slash_request","receive_double_sign_slash_request","receive_downtime_slash_request","jail","send_vsc_with_downtime_ack","receive_double_sign_slash_request","insufficient_shares","some_undels_expired_but_not_completed","receive_downtime_slash_request","jail","send_vsc_with_downtime_ack","send_vsc_without_downtime_ack","receive_downtime_slash_ack","receive_downtime_slash_ack","some_undels_expired_but_not_completed","some_undels_expired_but_not_completed","send_vsc_not_because_change","send_vsc_without_downtime_ack","some_undels_expired_but_not_completed","send_vsc_without_downtime_ack","consumer_del_val","consumer_update_val","consumer_send_maturation","consumer_send_maturation","insufficient_shares","insufficient_shares","some_undels_expired_but_not_completed","send_vsc_without_downtime_ack","some_undels_expired_but_not_completed","send_vsc_not_because_change","send_vsc_without_downtime_ack","some_undels_expired_but_not_completed","send_vsc_without_downtime_ack"]},{"meta":{"commit":"7ffd0c04e4205cbc9caf212abfe6c59ee43153bf"},"constants":{"P":"provider","C":"consumer","UNBONDING_SECONDS_P":70,"UNBONDING_SECONDS_C":50,"TRUSTING_SECONDS":49,"NUM_VALIDATORS":4,"MAX_VALIDATORS":2,"SLASH_DOUBLESIGN":0,"SLASH_DOWNTIME":0,"JAIL_SECONDS":999999999999999,"BLOCK_SECONDS":6,"INITIAL_DELEGATOR_TOKENS":10000000000000,"DELEGATE_AMT_MIN":1000,"DELEGATE_AMT_MAX":5000,"UNDELEGATE_AMT_MIN":1000,"UNDELEGATE_AMT_MAX":5000,"ISDOWNTIME_PROBABILITY":0.5,"MAX_NUM_PACKETS_FOR_DELIVER":6},"actions":[{"ix":0,"action":{"kind":"Deliver","chain":"consumer","numPackets":5},"partialState":{"h":1,"t":6,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":1,"action":{"kind":"ConsumerSlash","val":3,"infractionHeight":0,"isDowntime":true},"partialState":{"h":1,"t":6,"outstandingDowntime":[false,false,false,true]}},{"ix":2,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":2,"t":12,"tokens":[5000,4000,3000,2000],"delegation":[4000,3000,2000,1000],"delegatorTokens":10000000000000,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":3,"action":{"kind":"ConsumerSlash","val":0,"infractionHeight":0,"isDowntime":true},"partialState":{"h":1,"t":6,"outstandingDowntime":[true,false,false,true]}},{"ix":4,"action":{"kind":"Deliver","chain":"consumer","numPackets":2},"partialState":{"h":1,"t":6,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[true,false,false,true]}},{"ix":5,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":2,"t":12,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[true,false,false,true]}},{"ix":6,"action":{"kind":"Delegate","val":3,"amt":2657},"partialState":{"h":2,"t":12,"tokens":[5000,4000,3000,4657],"delegation":[4000,3000,2000,3657],"delegatorTokens":9999999997343}},{"ix":7,"action":{"kind":"Undelegate","val":0,"amt":2720},"partialState":{"h":2,"t":12,"tokens":[2280,4000,3000,4657],"delegation":[1280,3000,2000,3657],"delegatorTokens":9999999997343}},{"ix":8,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":3,"t":18,"tokens":[2280,4000,3000,4657],"delegation":[1280,3000,2000,3657],"delegatorTokens":9999999997343,"jailed":[null,null,null,null],"status":["unbonding","bonded","unbonded","bonded"]}},{"ix":9,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":4,"t":24,"tokens":[2280,4000,3000,4657],"delegation":[1280,3000,2000,3657],"delegatorTokens":9999999997343,"jailed":[null,null,null,null],"status":["unbonding","bonded","unbonded","bonded"]}},{"ix":10,"action":{"kind":"Undelegate","val":0,"amt":1871},"partialState":{"h":4,"t":24,"tokens":[2280,4000,3000,4657],"delegation":[1280,3000,2000,3657],"delegatorTokens":9999999997343}},{"ix":11,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":5,"t":30,"tokens":[2280,4000,3000,4657],"delegation":[1280,3000,2000,3657],"delegatorTokens":9999999997343,"jailed":[null,null,null,null],"status":["unbonding","bonded","unbonded","bonded"]}},{"ix":12,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":3,"t":18,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[true,false,false,true]}},{"ix":13,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":14,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":6,"t":36,"tokens":[2280,4000,3000,4657],"delegation":[1280,3000,2000,3657],"delegatorTokens":9999999997343,"jailed":[null,null,null,null],"status":["unbonding","bonded","unbonded","bonded"]}},{"ix":15,"action":{"kind":"ConsumerSlash","val":3,"infractionHeight":2,"isDowntime":false},"partialState":{"h":3,"t":18,"outstandingDowntime":[true,false,false,true]}},{"ix":16,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":4,"t":24,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[true,false,false,true]}},{"ix":17,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":5,"t":30,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[true,false,false,true]}},{"ix":18,"action":{"kind":"ConsumerSlash","val":3,"infractionHeight":1,"isDowntime":true},"partialState":{"h":5,"t":30,"outstandingDowntime":[true,false,false,true]}},{"ix":19,"action":{"kind":"Deliver","chain":"provider","numPackets":3},"partialState":{"h":6,"t":36,"tokens":[2280,4000,3000,4657],"delegation":[1280,3000,2000,3657],"delegatorTokens":9999999997343,"jailed":[null,null,null,null],"status":["unbonding","bonded","unbonded","bonded"]}},{"ix":20,"action":{"kind":"Deliver","chain":"provider","numPackets":2},"partialState":{"h":6,"t":36,"tokens":[2280,4000,3000,4657],"delegation":[1280,3000,2000,3657],"delegatorTokens":9999999997343,"jailed":[null,null,null,null],"status":["unbonding","bonded","unbonded","bonded"]}},{"ix":21,"action":{"kind":"ConsumerSlash","val":0,"infractionHeight":2,"isDowntime":false},"partialState":{"h":5,"t":30,"outstandingDowntime":[true,false,false,true]}},{"ix":22,"action":{"kind":"ConsumerSlash","val":3,"infractionHeight":4,"isDowntime":false},"partialState":{"h":5,"t":30,"outstandingDowntime":[true,false,false,true]}},{"ix":23,"action":{"kind":"ConsumerSlash","val":3,"infractionHeight":1,"isDowntime":false},"partialState":{"h":5,"t":30,"outstandingDowntime":[true,false,false,true]}},{"ix":24,"action":{"kind":"Deliver","chain":"consumer","numPackets":3},"partialState":{"h":5,"t":30,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[true,false,false,true]}},{"ix":25,"action":{"kind":"ConsumerSlash","val":3,"infractionHeight":2,"isDowntime":false},"partialState":{"h":5,"t":30,"outstandingDowntime":[true,false,false,true]}},{"ix":26,"action":{"kind":"Undelegate","val":1,"amt":4713},"partialState":{"h":6,"t":36,"tokens":[2280,4000,3000,4657],"delegation":[1280,3000,2000,3657],"delegatorTokens":9999999997343}},{"ix":27,"action":{"kind":"ConsumerSlash","val":3,"infractionHeight":0,"isDowntime":false},"partialState":{"h":5,"t":30,"outstandingDowntime":[true,false,false,true]}},{"ix":28,"action":{"kind":"Undelegate","val":0,"amt":2656},"partialState":{"h":6,"t":36,"tokens":[2280,4000,3000,4657],"delegation":[1280,3000,2000,3657],"delegatorTokens":9999999997343}},{"ix":29,"action":{"kind":"Delegate","val":0,"amt":4126},"partialState":{"h":6,"t":36,"tokens":[6406,4000,3000,4657],"delegation":[5406,3000,2000,3657],"delegatorTokens":9999999993217}},{"ix":30,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":31,"action":{"kind":"Undelegate","val":3,"amt":1824},"partialState":{"h":6,"t":36,"tokens":[6406,4000,3000,2833],"delegation":[5406,3000,2000,1833],"delegatorTokens":9999999993217}},{"ix":32,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":33,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":6,"t":36,"consumerPower":[null,4000,null,4657],"outstandingDowntime":[true,false,false,true]}},{"ix":34,"action":{"kind":"Delegate","val":0,"amt":3319},"partialState":{"h":6,"t":36,"tokens":[9725,4000,3000,2833],"delegation":[8725,3000,2000,1833],"delegatorTokens":9999999989898}},{"ix":35,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":36,"action":{"kind":"Delegate","val":0,"amt":4994},"partialState":{"h":6,"t":36,"tokens":[14719,4000,3000,2833],"delegation":[13719,3000,2000,1833],"delegatorTokens":9999999984904}},{"ix":37,"action":{"kind":"ConsumerSlash","val":2,"infractionHeight":0,"isDowntime":true},"partialState":{"h":6,"t":36,"outstandingDowntime":[true,false,true,true]}},{"ix":38,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":39,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":7,"t":42,"consumerPower":[null,4000,null,4657],"outstandingDowntime":[true,false,true,true]}},{"ix":40,"action":{"kind":"Undelegate","val":2,"amt":3880},"partialState":{"h":6,"t":36,"tokens":[14719,4000,3000,2833],"delegation":[13719,3000,2000,1833],"delegatorTokens":9999999984904}},{"ix":41,"action":{"kind":"Deliver","chain":"provider","numPackets":6},"partialState":{"h":6,"t":36,"tokens":[14719,4000,3000,2833],"delegation":[13719,3000,2000,1833],"delegatorTokens":9999999984904,"jailed":[null,null,null,null],"status":["unbonding","bonded","unbonded","bonded"]}},{"ix":42,"action":{"kind":"Undelegate","val":2,"amt":3067},"partialState":{"h":6,"t":36,"tokens":[14719,4000,3000,2833],"delegation":[13719,3000,2000,1833],"delegatorTokens":9999999984904}},{"ix":43,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":7,"t":42,"tokens":[14719,4000,3000,2833],"delegation":[13719,3000,2000,1833],"delegatorTokens":9999999984904,"jailed":[1000000000000035,null,null,1000000000000035],"status":["bonded","bonded","unbonded","unbonding"]}},{"ix":44,"action":{"kind":"Deliver","chain":"provider","numPackets":3},"partialState":{"h":7,"t":42,"tokens":[14719,4000,3000,2833],"delegation":[13719,3000,2000,1833],"delegatorTokens":9999999984904,"jailed":[1000000000000035,null,null,1000000000000035],"status":["bonded","bonded","unbonded","unbonding"]}},{"ix":45,"action":{"kind":"Undelegate","val":3,"amt":2395},"partialState":{"h":7,"t":42,"tokens":[14719,4000,3000,2833],"delegation":[13719,3000,2000,1833],"delegatorTokens":9999999984904}},{"ix":46,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":47,"action":{"kind":"Deliver","chain":"consumer","numPackets":4},"partialState":{"h":7,"t":42,"consumerPower":[null,4000,null,4657],"outstandingDowntime":[true,false,true,true]}},{"ix":48,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":49,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":50,"action":{"kind":"Deliver","chain":"provider","numPackets":5},"partialState":{"h":7,"t":42,"tokens":[14719,4000,3000,2833],"delegation":[13719,3000,2000,1833],"delegatorTokens":9999999984904,"jailed":[1000000000000035,null,null,1000000000000035],"status":["bonded","bonded","unbonded","unbonding"]}},{"ix":51,"action":{"kind":"Undelegate","val":3,"amt":3083},"partialState":{"h":7,"t":42,"tokens":[14719,4000,3000,2833],"delegation":[13719,3000,2000,1833],"delegatorTokens":9999999984904}},{"ix":52,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":8,"t":48,"tokens":[14719,4000,3000,2833],"delegation":[13719,3000,2000,1833],"delegatorTokens":9999999984904,"jailed":[1000000000000035,null,null,1000000000000035],"status":["unbonding","bonded","bonded","unbonding"]}},{"ix":53,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":54,"action":{"kind":"Undelegate","val":2,"amt":4281},"partialState":{"h":8,"t":48,"tokens":[14719,4000,3000,2833],"delegation":[13719,3000,2000,1833],"delegatorTokens":9999999984904}},{"ix":55,"action":{"kind":"Delegate","val":0,"amt":3919},"partialState":{"h":8,"t":48,"tokens":[18638,4000,3000,2833],"delegation":[17638,3000,2000,1833],"delegatorTokens":9999999980985}},{"ix":56,"action":{"kind":"Delegate","val":0,"amt":4263},"partialState":{"h":8,"t":48,"tokens":[22901,4000,3000,2833],"delegation":[21901,3000,2000,1833],"delegatorTokens":9999999976722}},{"ix":57,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":58,"action":{"kind":"Undelegate","val":1,"amt":4833},"partialState":{"h":8,"t":48,"tokens":[22901,4000,3000,2833],"delegation":[21901,3000,2000,1833],"delegatorTokens":9999999976722}},{"ix":59,"action":{"kind":"Delegate","val":1,"amt":2963},"partialState":{"h":8,"t":48,"tokens":[22901,6963,3000,2833],"delegation":[21901,5963,2000,1833],"delegatorTokens":9999999973759}},{"ix":60,"action":{"kind":"Undelegate","val":2,"amt":4073},"partialState":{"h":8,"t":48,"tokens":[22901,6963,3000,2833],"delegation":[21901,5963,2000,1833],"delegatorTokens":9999999973759}},{"ix":61,"action":{"kind":"Delegate","val":3,"amt":4420},"partialState":{"h":8,"t":48,"tokens":[22901,6963,3000,7253],"delegation":[21901,5963,2000,6253],"delegatorTokens":9999999969339}},{"ix":62,"action":{"kind":"Delegate","val":2,"amt":4356},"partialState":{"h":8,"t":48,"tokens":[22901,6963,7356,7253],"delegation":[21901,5963,6356,6253],"delegatorTokens":9999999964983}},{"ix":63,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":8,"t":48,"consumerPower":[null,4000,null,4657],"outstandingDowntime":[true,false,true,true]}},{"ix":64,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":9,"t":54,"consumerPower":[null,4000,null,4657],"outstandingDowntime":[true,false,true,true]}},{"ix":65,"action":{"kind":"Deliver","chain":"consumer","numPackets":6},"partialState":{"h":9,"t":54,"consumerPower":[null,4000,null,4657],"outstandingDowntime":[false,false,true,false]}},{"ix":66,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":67,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":68,"action":{"kind":"Undelegate","val":0,"amt":1767},"partialState":{"h":8,"t":48,"tokens":[21134,6963,7356,7253],"delegation":[20134,5963,6356,6253],"delegatorTokens":9999999964983}},{"ix":69,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":70,"action":{"kind":"Delegate","val":3,"amt":3237},"partialState":{"h":8,"t":48,"tokens":[21134,6963,7356,10490],"delegation":[20134,5963,6356,9490],"delegatorTokens":9999999961746}},{"ix":71,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":10,"t":60,"consumerPower":[14719,4000,null,null],"outstandingDowntime":[false,false,true,false]}},{"ix":72,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":11,"t":66,"consumerPower":[14719,4000,null,null],"outstandingDowntime":[false,false,true,false]}},{"ix":73,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":12,"t":72,"consumerPower":[14719,4000,null,null],"outstandingDowntime":[false,false,true,false]}},{"ix":74,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":75,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":9,"t":54,"tokens":[21134,6963,7356,10490],"delegation":[20134,5963,6356,9490],"delegatorTokens":9999999961746,"jailed":[1000000000000035,null,null,1000000000000035],"status":["unbonding","bonded","bonded","unbonding"]}},{"ix":76,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":77,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":10,"t":60,"tokens":[21134,6963,7356,10490],"delegation":[20134,5963,6356,9490],"delegatorTokens":9999999961746,"jailed":[1000000000000035,null,null,1000000000000035],"status":["unbonding","bonded","bonded","unbonding"]}},{"ix":78,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":11,"t":66,"tokens":[21134,6963,7356,10490],"delegation":[20134,5963,6356,9490],"delegatorTokens":9999999961746,"jailed":[1000000000000035,null,null,1000000000000035],"status":["unbonding","bonded","bonded","unbonding"]}},{"ix":79,"action":{"kind":"Undelegate","val":0,"amt":4145},"partialState":{"h":11,"t":66,"tokens":[16989,6963,7356,10490],"delegation":[15989,5963,6356,9490],"delegatorTokens":9999999961746}},{"ix":80,"action":{"kind":"Deliver","chain":"consumer","numPackets":1},"partialState":{"h":12,"t":72,"consumerPower":[14719,4000,null,null],"outstandingDowntime":[false,false,true,false]}},{"ix":81,"action":{"kind":"Undelegate","val":2,"amt":4111},"partialState":{"h":11,"t":66,"tokens":[16989,6963,3245,10490],"delegation":[15989,5963,2245,9490],"delegatorTokens":9999999961746}},{"ix":82,"action":{"kind":"Delegate","val":3,"amt":2643},"partialState":{"h":11,"t":66,"tokens":[16989,6963,3245,13133],"delegation":[15989,5963,2245,12133],"delegatorTokens":9999999959103}},{"ix":83,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":84,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":85,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":86,"action":{"kind":"Undelegate","val":2,"amt":3687},"partialState":{"h":11,"t":66,"tokens":[16989,6963,3245,13133],"delegation":[15989,5963,2245,12133],"delegatorTokens":9999999959103}},{"ix":87,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":88,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":89,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":12,"t":72,"tokens":[16989,6963,3245,13133],"delegation":[15989,5963,2245,12133],"delegatorTokens":9999999959103,"jailed":[1000000000000035,null,null,1000000000000035],"status":["unbonding","bonded","bonded","unbonding"]}},{"ix":90,"action":{"kind":"Undelegate","val":3,"amt":1930},"partialState":{"h":12,"t":72,"tokens":[16989,6963,3245,11203],"delegation":[15989,5963,2245,10203],"delegatorTokens":9999999959103}},{"ix":91,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":92,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":13,"t":78,"tokens":[16989,6963,3245,11203],"delegation":[15989,5963,2245,10203],"delegatorTokens":9999999959103,"jailed":[1000000000000035,null,null,1000000000000035],"status":["unbonding","bonded","bonded","unbonding"]}},{"ix":93,"action":{"kind":"Deliver","chain":"provider","numPackets":2},"partialState":{"h":13,"t":78,"tokens":[16989,6963,3245,11203],"delegation":[15989,5963,2245,10203],"delegatorTokens":9999999959103,"jailed":[1000000000000035,null,null,1000000000000035],"status":["unbonding","bonded","bonded","unbonding"]}},{"ix":94,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":14,"t":84,"tokens":[16989,6963,3245,11203],"delegation":[15989,5963,2245,10203],"delegatorTokens":9999999959103,"jailed":[1000000000000035,null,1000000000000077,1000000000000035],"status":["unbonding","bonded","bonded","unbonding"]}},{"ix":95,"action":{"kind":"Deliver","chain":"consumer","numPackets":3},"partialState":{"h":12,"t":72,"consumerPower":[14719,4000,null,null],"outstandingDowntime":[false,false,true,false]}},{"ix":96,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":13,"t":78,"consumerPower":[null,6963,3245,null],"outstandingDowntime":[false,false,true,false]}},{"ix":97,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":98,"action":{"kind":"Delegate","val":2,"amt":1857},"partialState":{"h":14,"t":84,"tokens":[16989,6963,5102,11203],"delegation":[15989,5963,4102,10203],"delegatorTokens":9999999957246}},{"ix":99,"action":{"kind":"Deliver","chain":"consumer","numPackets":2},"partialState":{"h":13,"t":78,"consumerPower":[null,6963,3245,null],"outstandingDowntime":[false,false,true,false]}},{"ix":100,"action":{"kind":"Delegate","val":2,"amt":2434},"partialState":{"h":14,"t":84,"tokens":[16989,6963,7536,11203],"delegation":[15989,5963,6536,10203],"delegatorTokens":9999999954812}},{"ix":101,"action":{"kind":"Undelegate","val":3,"amt":3330},"partialState":{"h":14,"t":84,"tokens":[16989,6963,7536,7873],"delegation":[15989,5963,6536,6873],"delegatorTokens":9999999954812}},{"ix":102,"action":{"kind":"Delegate","val":2,"amt":2967},"partialState":{"h":14,"t":84,"tokens":[16989,6963,10503,7873],"delegation":[15989,5963,9503,6873],"delegatorTokens":9999999951845}},{"ix":103,"action":{"kind":"Undelegate","val":1,"amt":2321},"partialState":{"h":14,"t":84,"tokens":[16989,4642,10503,7873],"delegation":[15989,3642,9503,6873],"delegatorTokens":9999999951845}},{"ix":104,"action":{"kind":"Delegate","val":1,"amt":1510},"partialState":{"h":14,"t":84,"tokens":[16989,6152,10503,7873],"delegation":[15989,5152,9503,6873],"delegatorTokens":9999999950335}},{"ix":105,"action":{"kind":"Deliver","chain":"provider","numPackets":6},"partialState":{"h":14,"t":84,"tokens":[16989,6152,10503,7873],"delegation":[15989,5152,9503,6873],"delegatorTokens":9999999950335,"jailed":[1000000000000035,null,1000000000000077,1000000000000035],"status":["unbonding","bonded","bonded","unbonding"]}},{"ix":106,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":107,"action":{"kind":"Deliver","chain":"provider","numPackets":5},"partialState":{"h":14,"t":84,"tokens":[16989,6152,10503,7873],"delegation":[15989,5152,9503,6873],"delegatorTokens":9999999950335,"jailed":[1000000000000035,null,1000000000000077,1000000000000035],"status":["unbonding","bonded","bonded","unbonding"]}},{"ix":108,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":109,"action":{"kind":"Deliver","chain":"provider","numPackets":5},"partialState":{"h":14,"t":84,"tokens":[16989,6152,10503,7873],"delegation":[15989,5152,9503,6873],"delegatorTokens":9999999950335,"jailed":[1000000000000035,null,1000000000000077,1000000000000035],"status":["unbonding","bonded","bonded","unbonding"]}},{"ix":110,"action":{"kind":"Undelegate","val":3,"amt":2260},"partialState":{"h":14,"t":84,"tokens":[16989,6152,10503,5613],"delegation":[15989,5152,9503,4613],"delegatorTokens":9999999950335}},{"ix":111,"action":{"kind":"Deliver","chain":"provider","numPackets":4},"partialState":{"h":14,"t":84,"tokens":[16989,6152,10503,5613],"delegation":[15989,5152,9503,4613],"delegatorTokens":9999999950335,"jailed":[1000000000000035,null,1000000000000077,1000000000000035],"status":["unbonding","bonded","bonded","unbonding"]}},{"ix":112,"action":{"kind":"Deliver","chain":"consumer","numPackets":2},"partialState":{"h":13,"t":78,"consumerPower":[null,6963,3245,null],"outstandingDowntime":[false,false,true,false]}},{"ix":113,"action":{"kind":"Delegate","val":3,"amt":4744},"partialState":{"h":14,"t":84,"tokens":[16989,6152,10503,10357],"delegation":[15989,5152,9503,9357],"delegatorTokens":9999999945591}},{"ix":114,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":14,"t":84,"consumerPower":[null,6963,3245,null],"outstandingDowntime":[false,false,true,false]}},{"ix":115,"action":{"kind":"Undelegate","val":1,"amt":3815},"partialState":{"h":14,"t":84,"tokens":[16989,2337,10503,10357],"delegation":[15989,1337,9503,9357],"delegatorTokens":9999999945591}},{"ix":116,"action":{"kind":"Delegate","val":3,"amt":4379},"partialState":{"h":14,"t":84,"tokens":[16989,2337,10503,14736],"delegation":[15989,1337,9503,13736],"delegatorTokens":9999999941212}},{"ix":117,"action":{"kind":"Deliver","chain":"consumer","numPackets":2},"partialState":{"h":14,"t":84,"consumerPower":[null,6963,3245,null],"outstandingDowntime":[false,false,true,false]}},{"ix":118,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":119,"action":{"kind":"Delegate","val":1,"amt":1130},"partialState":{"h":14,"t":84,"tokens":[16989,3467,10503,14736],"delegation":[15989,2467,9503,13736],"delegatorTokens":9999999940082}},{"ix":120,"action":{"kind":"Undelegate","val":1,"amt":1675},"partialState":{"h":14,"t":84,"tokens":[16989,1792,10503,14736],"delegation":[15989,792,9503,13736],"delegatorTokens":9999999940082}},{"ix":121,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":122,"action":{"kind":"Delegate","val":0,"amt":2101},"partialState":{"h":14,"t":84,"tokens":[19090,1792,10503,14736],"delegation":[18090,792,9503,13736],"delegatorTokens":9999999937981}},{"ix":123,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":15,"t":90,"tokens":[19090,1792,10503,14736],"delegation":[18090,792,9503,13736],"delegatorTokens":9999999937981,"jailed":[1000000000000035,null,1000000000000077,1000000000000035],"status":["unbonding","bonded","unbonding","unbonding"]}},{"ix":124,"action":{"kind":"Delegate","val":2,"amt":2223},"partialState":{"h":15,"t":90,"tokens":[19090,1792,12726,14736],"delegation":[18090,792,11726,13736],"delegatorTokens":9999999935758}},{"ix":125,"action":{"kind":"Undelegate","val":2,"amt":1286},"partialState":{"h":15,"t":90,"tokens":[19090,1792,11440,14736],"delegation":[18090,792,10440,13736],"delegatorTokens":9999999935758}},{"ix":126,"action":{"kind":"Delegate","val":2,"amt":4447},"partialState":{"h":15,"t":90,"tokens":[19090,1792,15887,14736],"delegation":[18090,792,14887,13736],"delegatorTokens":9999999931311}},{"ix":127,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":15,"t":90,"consumerPower":[null,6963,3245,null],"outstandingDowntime":[false,false,true,false]}},{"ix":128,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":16,"t":96,"consumerPower":[null,6963,3245,null],"outstandingDowntime":[false,false,true,false]}},{"ix":129,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":17,"t":102,"consumerPower":[null,6963,3245,null],"outstandingDowntime":[false,false,true,false]}},{"ix":130,"action":{"kind":"Undelegate","val":1,"amt":4889},"partialState":{"h":15,"t":90,"tokens":[19090,1792,15887,14736],"delegation":[18090,792,14887,13736],"delegatorTokens":9999999931311}},{"ix":131,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":18,"t":108,"consumerPower":[null,6963,3245,null],"outstandingDowntime":[false,false,true,false]}},{"ix":132,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":133,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":19,"t":114,"consumerPower":[null,6963,3245,null],"outstandingDowntime":[false,false,true,false]}},{"ix":134,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":16,"t":96,"tokens":[19090,1792,15887,14736],"delegation":[18090,792,14887,13736],"delegatorTokens":9999999931311,"jailed":[1000000000000035,null,1000000000000077,1000000000000035],"status":["unbonding","bonded","unbonding","unbonding"]}},{"ix":135,"action":{"kind":"Delegate","val":2,"amt":1757},"partialState":{"h":16,"t":96,"tokens":[19090,1792,17644,14736],"delegation":[18090,792,16644,13736],"delegatorTokens":9999999929554}},{"ix":136,"action":{"kind":"Deliver","chain":"provider","numPackets":2},"partialState":{"h":16,"t":96,"tokens":[19090,1792,17644,14736],"delegation":[18090,792,16644,13736],"delegatorTokens":9999999929554,"jailed":[1000000000000035,null,1000000000000077,1000000000000035],"status":["unbonding","bonded","unbonding","unbonding"]}},{"ix":137,"action":{"kind":"Deliver","chain":"provider","numPackets":2},"partialState":{"h":16,"t":96,"tokens":[19090,1792,17644,14736],"delegation":[18090,792,16644,13736],"delegatorTokens":9999999929554,"jailed":[1000000000000035,null,1000000000000077,1000000000000035],"status":["unbonding","bonded","unbonding","unbonding"]}},{"ix":138,"action":{"kind":"Delegate","val":2,"amt":3172},"partialState":{"h":16,"t":96,"tokens":[19090,1792,20816,14736],"delegation":[18090,792,19816,13736],"delegatorTokens":9999999926382}},{"ix":139,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":20,"t":120,"consumerPower":[null,6963,3245,null],"outstandingDowntime":[false,false,true,false]}},{"ix":140,"action":{"kind":"Deliver","chain":"consumer","numPackets":2},"partialState":{"h":20,"t":120,"consumerPower":[null,6963,3245,null],"outstandingDowntime":[false,false,false,false]}},{"ix":141,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":17,"t":102,"tokens":[19090,1792,20816,14736],"delegation":[18090,792,19816,13736],"delegatorTokens":9999999929102,"jailed":[1000000000000035,null,1000000000000077,1000000000000035],"status":["unbonding","bonded","unbonding","unbonding"]}},{"ix":142,"action":{"kind":"Delegate","val":3,"amt":4300},"partialState":{"h":17,"t":102,"tokens":[19090,1792,20816,19036],"delegation":[18090,792,19816,18036],"delegatorTokens":9999999924802}},{"ix":143,"action":{"kind":"Deliver","chain":"provider","numPackets":2},"partialState":{"h":17,"t":102,"tokens":[19090,1792,20816,19036],"delegation":[18090,792,19816,18036],"delegatorTokens":9999999924802,"jailed":[1000000000000035,null,1000000000000077,1000000000000035],"status":["unbonding","bonded","unbonding","unbonding"]}},{"ix":144,"action":{"kind":"Delegate","val":0,"amt":1938},"partialState":{"h":17,"t":102,"tokens":[21028,1792,20816,19036],"delegation":[20028,792,19816,18036],"delegatorTokens":9999999922864}},{"ix":145,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":18,"t":108,"tokens":[21028,1792,20816,19036],"delegation":[20028,792,19816,18036],"delegatorTokens":9999999922864,"jailed":[1000000000000035,null,1000000000000077,1000000000000035],"status":["unbonding","bonded","unbonding","unbonding"]}},{"ix":146,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":147,"action":{"kind":"Delegate","val":2,"amt":4347},"partialState":{"h":18,"t":108,"tokens":[21028,1792,25163,19036],"delegation":[20028,792,24163,18036],"delegatorTokens":9999999918517}},{"ix":148,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":21,"t":126,"consumerPower":[null,1792,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":149,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":19,"t":114,"tokens":[21028,1792,25163,19036],"delegation":[20028,792,24163,18036],"delegatorTokens":9999999920341,"jailed":[1000000000000035,null,1000000000000077,1000000000000035],"status":["unbonding","bonded","unbonding","unbonded"]}},{"ix":150,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":151,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":20,"t":120,"tokens":[21028,1792,25163,19036],"delegation":[20028,792,24163,18036],"delegatorTokens":9999999920341,"jailed":[1000000000000035,null,1000000000000077,1000000000000035],"status":["unbonding","bonded","unbonding","unbonded"]}},{"ix":152,"action":{"kind":"Deliver","chain":"consumer","numPackets":5},"partialState":{"h":21,"t":126,"consumerPower":[null,1792,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":153,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":21,"t":126,"tokens":[21028,1792,25163,19036],"delegation":[20028,792,24163,18036],"delegatorTokens":9999999920341,"jailed":[1000000000000035,null,1000000000000077,1000000000000035],"status":["unbonding","bonded","unbonding","unbonded"]}},{"ix":154,"action":{"kind":"Undelegate","val":2,"amt":2015},"partialState":{"h":21,"t":126,"tokens":[21028,1792,23148,19036],"delegation":[20028,792,22148,18036],"delegatorTokens":9999999920341}},{"ix":155,"action":{"kind":"Deliver","chain":"consumer","numPackets":1},"partialState":{"h":21,"t":126,"consumerPower":[null,1792,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":156,"action":{"kind":"Deliver","chain":"consumer","numPackets":6},"partialState":{"h":21,"t":126,"consumerPower":[null,1792,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":157,"action":{"kind":"Delegate","val":0,"amt":4004},"partialState":{"h":21,"t":126,"tokens":[25032,1792,23148,19036],"delegation":[24032,792,22148,18036],"delegatorTokens":9999999916337}},{"ix":158,"action":{"kind":"Delegate","val":1,"amt":2482},"partialState":{"h":21,"t":126,"tokens":[25032,4274,23148,19036],"delegation":[24032,3274,22148,18036],"delegatorTokens":9999999913855}},{"ix":159,"action":{"kind":"Delegate","val":0,"amt":1216},"partialState":{"h":21,"t":126,"tokens":[26248,4274,23148,19036],"delegation":[25248,3274,22148,18036],"delegatorTokens":9999999912639}},{"ix":160,"action":{"kind":"Delegate","val":3,"amt":3182},"partialState":{"h":21,"t":126,"tokens":[26248,4274,23148,22218],"delegation":[25248,3274,22148,21218],"delegatorTokens":9999999909457}},{"ix":161,"action":{"kind":"Deliver","chain":"consumer","numPackets":1},"partialState":{"h":21,"t":126,"consumerPower":[null,1792,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":162,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":163,"action":{"kind":"Delegate","val":3,"amt":2175},"partialState":{"h":21,"t":126,"tokens":[26248,4274,23148,24393],"delegation":[25248,3274,22148,23393],"delegatorTokens":9999999907282}},{"ix":164,"action":{"kind":"Undelegate","val":2,"amt":1780},"partialState":{"h":21,"t":126,"tokens":[26248,4274,21368,24393],"delegation":[25248,3274,20368,23393],"delegatorTokens":9999999907282}},{"ix":165,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":22,"t":132,"tokens":[26248,4274,21368,24393],"delegation":[25248,3274,20368,23393],"delegatorTokens":9999999907282,"jailed":[1000000000000035,null,1000000000000077,1000000000000035],"status":["unbonding","bonded","unbonding","unbonded"]}},{"ix":166,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":22,"t":132,"consumerPower":[null,1792,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":167,"action":{"kind":"Deliver","chain":"consumer","numPackets":2},"partialState":{"h":22,"t":132,"consumerPower":[null,1792,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":168,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":23,"t":138,"tokens":[26248,4274,21368,24393],"delegation":[25248,3274,20368,23393],"delegatorTokens":9999999907282,"jailed":[1000000000000035,null,1000000000000077,1000000000000035],"status":["unbonding","bonded","unbonding","unbonded"]}},{"ix":169,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":170,"action":{"kind":"Delegate","val":2,"amt":4464},"partialState":{"h":23,"t":138,"tokens":[26248,4274,25832,24393],"delegation":[25248,3274,24832,23393],"delegatorTokens":9999999902818}},{"ix":171,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":172,"action":{"kind":"Delegate","val":0,"amt":1992},"partialState":{"h":23,"t":138,"tokens":[28240,4274,25832,24393],"delegation":[27240,3274,24832,23393],"delegatorTokens":9999999900826}},{"ix":173,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":174,"action":{"kind":"Delegate","val":1,"amt":4414},"partialState":{"h":23,"t":138,"tokens":[28240,8688,25832,24393],"delegation":[27240,7688,24832,23393],"delegatorTokens":9999999896412}},{"ix":175,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":176,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":24,"t":144,"tokens":[28240,8688,25832,24393],"delegation":[27240,7688,24832,23393],"delegatorTokens":9999999896412,"jailed":[1000000000000035,null,1000000000000077,1000000000000035],"status":["unbonding","bonded","unbonding","unbonded"]}},{"ix":177,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":23,"t":138,"consumerPower":[null,1792,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":178,"action":{"kind":"Deliver","chain":"consumer","numPackets":4},"partialState":{"h":23,"t":138,"consumerPower":[null,1792,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":179,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":24,"t":144,"consumerPower":[null,4274,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":180,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":181,"action":{"kind":"Deliver","chain":"provider","numPackets":3},"partialState":{"h":24,"t":144,"tokens":[28240,8688,25832,24393],"delegation":[27240,7688,24832,23393],"delegatorTokens":9999999896412,"jailed":[1000000000000035,null,1000000000000077,1000000000000035],"status":["unbonding","bonded","unbonding","unbonded"]}},{"ix":182,"action":{"kind":"Undelegate","val":0,"amt":4362},"partialState":{"h":24,"t":144,"tokens":[23878,8688,25832,24393],"delegation":[22878,7688,24832,23393],"delegatorTokens":9999999896412}},{"ix":183,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":184,"action":{"kind":"Undelegate","val":0,"amt":4105},"partialState":{"h":24,"t":144,"tokens":[19773,8688,25832,24393],"delegation":[18773,7688,24832,23393],"delegatorTokens":9999999896412}},{"ix":185,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":25,"t":150,"tokens":[19773,8688,25832,24393],"delegation":[18773,7688,24832,23393],"delegatorTokens":9999999906435,"jailed":[1000000000000035,null,1000000000000077,1000000000000035],"status":["unbonding","bonded","unbonding","unbonded"]}},{"ix":186,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":187,"action":{"kind":"Undelegate","val":2,"amt":2537},"partialState":{"h":25,"t":150,"tokens":[19773,8688,23295,24393],"delegation":[18773,7688,22295,23393],"delegatorTokens":9999999906435}},{"ix":188,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":26,"t":156,"tokens":[19773,8688,23295,24393],"delegation":[18773,7688,22295,23393],"delegatorTokens":9999999906435,"jailed":[1000000000000035,null,1000000000000077,1000000000000035],"status":["unbonded","bonded","unbonding","unbonded"]}},{"ix":189,"action":{"kind":"Undelegate","val":1,"amt":2049},"partialState":{"h":26,"t":156,"tokens":[19773,6639,23295,24393],"delegation":[18773,5639,22295,23393],"delegatorTokens":9999999906435}},{"ix":190,"action":{"kind":"Deliver","chain":"provider","numPackets":2},"partialState":{"h":26,"t":156,"tokens":[19773,6639,23295,24393],"delegation":[18773,5639,22295,23393],"delegatorTokens":9999999906435,"jailed":[1000000000000035,null,1000000000000077,1000000000000035],"status":["unbonded","bonded","unbonding","unbonded"]}},{"ix":191,"action":{"kind":"Undelegate","val":1,"amt":3044},"partialState":{"h":26,"t":156,"tokens":[19773,3595,23295,24393],"delegation":[18773,2595,22295,23393],"delegatorTokens":9999999906435}},{"ix":192,"action":{"kind":"Deliver","chain":"provider","numPackets":5},"partialState":{"h":26,"t":156,"tokens":[19773,3595,23295,24393],"delegation":[18773,2595,22295,23393],"delegatorTokens":9999999906435,"jailed":[1000000000000035,null,1000000000000077,1000000000000035],"status":["unbonded","bonded","unbonding","unbonded"]}},{"ix":193,"action":{"kind":"Deliver","chain":"consumer","numPackets":4},"partialState":{"h":24,"t":144,"consumerPower":[null,4274,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":194,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":195,"action":{"kind":"Undelegate","val":2,"amt":2985},"partialState":{"h":26,"t":156,"tokens":[19773,3595,20310,24393],"delegation":[18773,2595,19310,23393],"delegatorTokens":9999999906435}},{"ix":196,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":197,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":27,"t":162,"tokens":[19773,3595,20310,24393],"delegation":[18773,2595,19310,23393],"delegatorTokens":9999999908365,"jailed":[1000000000000035,null,1000000000000077,1000000000000035],"status":["unbonded","bonded","unbonding","unbonded"]}},{"ix":198,"action":{"kind":"Undelegate","val":2,"amt":4202},"partialState":{"h":27,"t":162,"tokens":[19773,3595,16108,24393],"delegation":[18773,2595,15108,23393],"delegatorTokens":9999999908365}},{"ix":199,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":28,"t":168,"tokens":[19773,3595,16108,24393],"delegation":[18773,2595,15108,23393],"delegatorTokens":9999999908365,"jailed":[1000000000000035,null,1000000000000077,1000000000000035],"status":["unbonded","bonded","unbonding","unbonded"]}}],"events":["send_downtime_slash_request","send_downtime_slash_request","more_than_one_third_val_power_change","send_vsc_without_downtime_ack","insufficient_shares","send_double_sign_slash_request","downtime_slash_request_outstanding","receive_double_sign_slash_request","send_double_sign_slash_request","send_double_sign_slash_request","send_double_sign_slash_request","send_double_sign_slash_request","insufficient_shares","send_double_sign_slash_request","insufficient_shares","consumer_del_val","consumer_add_val","send_downtime_slash_request","insufficient_shares","receive_double_sign_slash_request","receive_double_sign_slash_request","receive_double_sign_slash_request","receive_double_sign_slash_request","receive_double_sign_slash_request","insufficient_shares","more_than_one_third_val_power_change","rebond_unval","receive_downtime_slash_request","jail","receive_downtime_slash_request","jail","send_vsc_with_downtime_ack","insufficient_shares","insufficient_shares","more_than_one_third_val_power_change","send_vsc_without_downtime_ack","insufficient_shares","insufficient_shares","insufficient_shares","receive_downtime_slash_ack","receive_downtime_slash_ack","consumer_add_val","consumer_del_val","send_vsc_without_downtime_ack","insufficient_shares","send_vsc_without_downtime_ack","send_vsc_not_because_change","send_vsc_without_downtime_ack","receive_downtime_slash_request","jail","consumer_del_val","consumer_add_val","consumer_update_val","some_undels_expired_but_not_completed","send_vsc_with_downtime_ack","consumer_send_maturation","insufficient_shares","consumer_send_maturation","send_vsc_not_because_change","send_vsc_without_downtime_ack","receive_downtime_slash_ack","complete_undel_immediate","set_undel_hold_false","set_unval_hold_false","consumer_update_val","consumer_del_val","complete_unval_in_endblock","complete_undel_in_endblock","some_undels_expired_but_not_completed","send_vsc_without_downtime_ack","consumer_send_maturation","consumer_send_maturation","consumer_send_maturation","consumer_send_maturation","some_undels_expired_but_not_completed","send_vsc_without_downtime_ack","consumer_update_val","some_undels_expired_but_not_completed","set_unval_hold_false","complete_undel_immediate","complete_undel_immediate","complete_undel_immediate","send_vsc_not_because_change","send_vsc_without_downtime_ack","complete_unval_in_endblock","send_vsc_not_because_change","send_vsc_without_downtime_ack","some_undels_expired_but_not_completed","complete_undel_immediate","send_vsc_without_downtime_ack","some_undels_expired_but_not_completed","send_vsc_not_because_change","send_vsc_without_downtime_ack"]},{"meta":{"commit":"7ffd0c04e4205cbc9caf212abfe6c59ee43153bf"},"constants":{"P":"provider","C":"consumer","UNBONDING_SECONDS_P":70,"UNBONDING_SECONDS_C":50,"TRUSTING_SECONDS":49,"NUM_VALIDATORS":4,"MAX_VALIDATORS":2,"SLASH_DOUBLESIGN":0,"SLASH_DOWNTIME":0,"JAIL_SECONDS":999999999999999,"BLOCK_SECONDS":6,"INITIAL_DELEGATOR_TOKENS":10000000000000,"DELEGATE_AMT_MIN":1000,"DELEGATE_AMT_MAX":5000,"UNDELEGATE_AMT_MIN":1000,"UNDELEGATE_AMT_MAX":5000,"ISDOWNTIME_PROBABILITY":0.5,"MAX_NUM_PACKETS_FOR_DELIVER":6},"actions":[{"ix":0,"action":{"kind":"Delegate","val":0,"amt":1268},"partialState":{"h":1,"t":6,"tokens":[6268,4000,3000,2000],"delegation":[5268,3000,2000,1000],"delegatorTokens":9999999998732}},{"ix":1,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":2,"t":12,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":2,"action":{"kind":"Deliver","chain":"consumer","numPackets":4},"partialState":{"h":2,"t":12,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":3,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":4,"action":{"kind":"ConsumerSlash","val":3,"infractionHeight":1,"isDowntime":false},"partialState":{"h":2,"t":12,"outstandingDowntime":[false,false,false,false]}},{"ix":5,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":3,"t":18,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":6,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":7,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":4,"t":24,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":8,"action":{"kind":"ConsumerSlash","val":2,"infractionHeight":0,"isDowntime":true},"partialState":{"h":4,"t":24,"outstandingDowntime":[false,false,true,false]}},{"ix":9,"action":{"kind":"Deliver","chain":"provider","numPackets":4},"partialState":{"h":1,"t":6,"tokens":[6268,4000,3000,2000],"delegation":[5268,3000,2000,1000],"delegatorTokens":9999999998732,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":10,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":11,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":12,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":13,"action":{"kind":"Delegate","val":3,"amt":3857},"partialState":{"h":1,"t":6,"tokens":[6268,4000,3000,5857],"delegation":[5268,3000,2000,4857],"delegatorTokens":9999999994875}},{"ix":14,"action":{"kind":"Undelegate","val":0,"amt":1247},"partialState":{"h":1,"t":6,"tokens":[5021,4000,3000,5857],"delegation":[4021,3000,2000,4857],"delegatorTokens":9999999994875}},{"ix":15,"action":{"kind":"Deliver","chain":"consumer","numPackets":6},"partialState":{"h":4,"t":24,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,false,true,false]}},{"ix":16,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":17,"action":{"kind":"Delegate","val":0,"amt":3822},"partialState":{"h":1,"t":6,"tokens":[8843,4000,3000,5857],"delegation":[7843,3000,2000,4857],"delegatorTokens":9999999991053}},{"ix":18,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":5,"t":30,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,false,true,false]}},{"ix":19,"action":{"kind":"Delegate","val":2,"amt":3798},"partialState":{"h":1,"t":6,"tokens":[8843,4000,6798,5857],"delegation":[7843,3000,5798,4857],"delegatorTokens":9999999987255}},{"ix":20,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":21,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":2,"t":12,"tokens":[8843,4000,6798,5857],"delegation":[7843,3000,5798,4857],"delegatorTokens":9999999987255,"jailed":[null,null,null,null],"status":["bonded","unbonding","bonded","unbonded"]}},{"ix":22,"action":{"kind":"Undelegate","val":1,"amt":2544},"partialState":{"h":2,"t":12,"tokens":[8843,1456,6798,5857],"delegation":[7843,456,5798,4857],"delegatorTokens":9999999987255}},{"ix":23,"action":{"kind":"Undelegate","val":1,"amt":4459},"partialState":{"h":2,"t":12,"tokens":[8843,1456,6798,5857],"delegation":[7843,456,5798,4857],"delegatorTokens":9999999987255}},{"ix":24,"action":{"kind":"Deliver","chain":"consumer","numPackets":1},"partialState":{"h":5,"t":30,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,false,true,false]}},{"ix":25,"action":{"kind":"Undelegate","val":1,"amt":4378},"partialState":{"h":2,"t":12,"tokens":[8843,1456,6798,5857],"delegation":[7843,456,5798,4857],"delegatorTokens":9999999987255}},{"ix":26,"action":{"kind":"ConsumerSlash","val":3,"infractionHeight":2,"isDowntime":false},"partialState":{"h":5,"t":30,"outstandingDowntime":[false,false,true,false]}},{"ix":27,"action":{"kind":"Deliver","chain":"consumer","numPackets":5},"partialState":{"h":5,"t":30,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,false,true,false]}},{"ix":28,"action":{"kind":"Delegate","val":2,"amt":4311},"partialState":{"h":2,"t":12,"tokens":[8843,1456,11109,5857],"delegation":[7843,456,10109,4857],"delegatorTokens":9999999982944}},{"ix":29,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":3,"t":18,"tokens":[8843,1456,11109,5857],"delegation":[7843,456,10109,4857],"delegatorTokens":9999999982944,"jailed":[null,null,null,null],"status":["bonded","unbonding","bonded","unbonded"]}},{"ix":30,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":6,"t":36,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,false,true,false]}},{"ix":31,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":32,"action":{"kind":"ConsumerSlash","val":2,"infractionHeight":5,"isDowntime":true},"partialState":{"h":6,"t":36,"outstandingDowntime":[false,false,true,false]}},{"ix":33,"action":{"kind":"Delegate","val":0,"amt":3433},"partialState":{"h":3,"t":18,"tokens":[12276,1456,11109,5857],"delegation":[11276,456,10109,4857],"delegatorTokens":9999999979511}},{"ix":34,"action":{"kind":"Delegate","val":1,"amt":4671},"partialState":{"h":3,"t":18,"tokens":[12276,6127,11109,5857],"delegation":[11276,5127,10109,4857],"delegatorTokens":9999999974840}},{"ix":35,"action":{"kind":"Deliver","chain":"provider","numPackets":3},"partialState":{"h":3,"t":18,"tokens":[12276,6127,11109,5857],"delegation":[11276,5127,10109,4857],"delegatorTokens":9999999974840,"jailed":[null,null,null,null],"status":["bonded","unbonding","bonded","unbonded"]}},{"ix":36,"action":{"kind":"ConsumerSlash","val":3,"infractionHeight":5,"isDowntime":true},"partialState":{"h":6,"t":36,"outstandingDowntime":[false,false,true,true]}},{"ix":37,"action":{"kind":"ConsumerSlash","val":2,"infractionHeight":3,"isDowntime":false},"partialState":{"h":6,"t":36,"outstandingDowntime":[false,false,true,true]}},{"ix":38,"action":{"kind":"Deliver","chain":"provider","numPackets":2},"partialState":{"h":3,"t":18,"tokens":[12276,6127,11109,5857],"delegation":[11276,5127,10109,4857],"delegatorTokens":9999999974840,"jailed":[null,null,null,null],"status":["bonded","unbonding","bonded","unbonded"]}},{"ix":39,"action":{"kind":"Undelegate","val":0,"amt":2566},"partialState":{"h":3,"t":18,"tokens":[9710,6127,11109,5857],"delegation":[8710,5127,10109,4857],"delegatorTokens":9999999974840}},{"ix":40,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":4,"t":24,"tokens":[9710,6127,11109,5857],"delegation":[8710,5127,10109,4857],"delegatorTokens":9999999974840,"jailed":[null,null,1000000000000017,null],"status":["bonded","unbonding","bonded","unbonded"]}},{"ix":41,"action":{"kind":"Delegate","val":3,"amt":4188},"partialState":{"h":4,"t":24,"tokens":[9710,6127,11109,10045],"delegation":[8710,5127,10109,9045],"delegatorTokens":9999999970652}},{"ix":42,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":7,"t":42,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,false,true,true]}},{"ix":43,"action":{"kind":"Undelegate","val":3,"amt":3837},"partialState":{"h":4,"t":24,"tokens":[9710,6127,11109,6208],"delegation":[8710,5127,10109,5208],"delegatorTokens":9999999970652}},{"ix":44,"action":{"kind":"ConsumerSlash","val":2,"infractionHeight":6,"isDowntime":false},"partialState":{"h":7,"t":42,"outstandingDowntime":[false,false,true,true]}},{"ix":45,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":46,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":47,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":5,"t":30,"tokens":[9710,6127,11109,6208],"delegation":[8710,5127,10109,5208],"delegatorTokens":9999999970652,"jailed":[null,null,1000000000000017,null],"status":["bonded","unbonding","unbonding","bonded"]}},{"ix":48,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":49,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":8,"t":48,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,false,true,true]}},{"ix":50,"action":{"kind":"Delegate","val":1,"amt":4269},"partialState":{"h":5,"t":30,"tokens":[9710,10396,11109,6208],"delegation":[8710,9396,10109,5208],"delegatorTokens":9999999966383}},{"ix":51,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":52,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":6,"t":36,"tokens":[9710,10396,11109,6208],"delegation":[8710,9396,10109,5208],"delegatorTokens":9999999966383,"jailed":[null,null,1000000000000017,null],"status":["bonded","bonded","unbonding","unbonding"]}},{"ix":53,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":9,"t":54,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,false,true,true]}},{"ix":54,"action":{"kind":"Deliver","chain":"provider","numPackets":2},"partialState":{"h":6,"t":36,"tokens":[9710,10396,11109,6208],"delegation":[8710,9396,10109,5208],"delegatorTokens":9999999966383,"jailed":[null,null,1000000000000017,null],"status":["bonded","bonded","unbonding","unbonding"]}},{"ix":55,"action":{"kind":"Delegate","val":0,"amt":3319},"partialState":{"h":6,"t":36,"tokens":[13029,10396,11109,6208],"delegation":[12029,9396,10109,5208],"delegatorTokens":9999999963064}},{"ix":56,"action":{"kind":"Delegate","val":0,"amt":2573},"partialState":{"h":6,"t":36,"tokens":[15602,10396,11109,6208],"delegation":[14602,9396,10109,5208],"delegatorTokens":9999999960491}},{"ix":57,"action":{"kind":"Deliver","chain":"consumer","numPackets":6},"partialState":{"h":9,"t":54,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,false,false,true]}},{"ix":58,"action":{"kind":"Delegate","val":3,"amt":4299},"partialState":{"h":6,"t":36,"tokens":[15602,10396,11109,10507],"delegation":[14602,9396,10109,9507],"delegatorTokens":9999999956192}},{"ix":59,"action":{"kind":"ConsumerSlash","val":2,"infractionHeight":8,"isDowntime":false},"partialState":{"h":9,"t":54,"outstandingDowntime":[false,false,false,true]}},{"ix":60,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":10,"t":60,"consumerPower":[9710,null,null,6208],"outstandingDowntime":[false,false,false,true]}},{"ix":61,"action":{"kind":"Deliver","chain":"provider","numPackets":4},"partialState":{"h":6,"t":36,"tokens":[15602,10396,11109,10507],"delegation":[14602,9396,10109,9507],"delegatorTokens":9999999956192,"jailed":[null,null,1000000000000017,null],"status":["bonded","bonded","unbonding","unbonding"]}},{"ix":62,"action":{"kind":"Deliver","chain":"consumer","numPackets":6},"partialState":{"h":10,"t":60,"consumerPower":[9710,null,null,6208],"outstandingDowntime":[false,false,false,true]}},{"ix":63,"action":{"kind":"Delegate","val":2,"amt":1584},"partialState":{"h":6,"t":36,"tokens":[15602,10396,12693,10507],"delegation":[14602,9396,11693,9507],"delegatorTokens":9999999954608}},{"ix":64,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":65,"action":{"kind":"Delegate","val":1,"amt":4505},"partialState":{"h":6,"t":36,"tokens":[15602,14901,12693,10507],"delegation":[14602,13901,11693,9507],"delegatorTokens":9999999950103}},{"ix":66,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":11,"t":66,"consumerPower":[9710,null,null,6208],"outstandingDowntime":[false,false,false,true]}},{"ix":67,"action":{"kind":"ConsumerSlash","val":3,"infractionHeight":4,"isDowntime":true},"partialState":{"h":11,"t":66,"outstandingDowntime":[false,false,false,true]}},{"ix":68,"action":{"kind":"Undelegate","val":3,"amt":3926},"partialState":{"h":6,"t":36,"tokens":[15602,14901,12693,6581],"delegation":[14602,13901,11693,5581],"delegatorTokens":9999999950103}},{"ix":69,"action":{"kind":"Deliver","chain":"provider","numPackets":6},"partialState":{"h":6,"t":36,"tokens":[15602,14901,12693,6581],"delegation":[14602,13901,11693,5581],"delegatorTokens":9999999950103,"jailed":[null,null,1000000000000017,null],"status":["bonded","bonded","unbonding","unbonding"]}},{"ix":70,"action":{"kind":"Delegate","val":3,"amt":4098},"partialState":{"h":6,"t":36,"tokens":[15602,14901,12693,10679],"delegation":[14602,13901,11693,9679],"delegatorTokens":9999999946005}},{"ix":71,"action":{"kind":"Undelegate","val":0,"amt":3530},"partialState":{"h":6,"t":36,"tokens":[12072,14901,12693,10679],"delegation":[11072,13901,11693,9679],"delegatorTokens":9999999946005}},{"ix":72,"action":{"kind":"Deliver","chain":"consumer","numPackets":2},"partialState":{"h":11,"t":66,"consumerPower":[9710,null,null,6208],"outstandingDowntime":[false,false,false,true]}},{"ix":73,"action":{"kind":"Undelegate","val":1,"amt":3482},"partialState":{"h":6,"t":36,"tokens":[12072,11419,12693,10679],"delegation":[11072,10419,11693,9679],"delegatorTokens":9999999946005}},{"ix":74,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":7,"t":42,"tokens":[12072,11419,12693,10679],"delegation":[11072,10419,11693,9679],"delegatorTokens":9999999946005,"jailed":[null,null,1000000000000017,1000000000000035],"status":["bonded","bonded","unbonding","unbonding"]}},{"ix":75,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":12,"t":72,"consumerPower":[9710,null,null,6208],"outstandingDowntime":[false,false,false,true]}},{"ix":76,"action":{"kind":"ConsumerSlash","val":2,"infractionHeight":4,"isDowntime":false},"partialState":{"h":12,"t":72,"outstandingDowntime":[false,false,false,true]}},{"ix":77,"action":{"kind":"Delegate","val":1,"amt":3340},"partialState":{"h":7,"t":42,"tokens":[12072,14759,12693,10679],"delegation":[11072,13759,11693,9679],"delegatorTokens":9999999942665}},{"ix":78,"action":{"kind":"Delegate","val":3,"amt":1055},"partialState":{"h":7,"t":42,"tokens":[12072,14759,12693,11734],"delegation":[11072,13759,11693,10734],"delegatorTokens":9999999941610}},{"ix":79,"action":{"kind":"ConsumerSlash","val":3,"infractionHeight":8,"isDowntime":false},"partialState":{"h":12,"t":72,"outstandingDowntime":[false,false,false,true]}},{"ix":80,"action":{"kind":"Undelegate","val":3,"amt":1486},"partialState":{"h":7,"t":42,"tokens":[12072,14759,12693,10248],"delegation":[11072,13759,11693,9248],"delegatorTokens":9999999941610}},{"ix":81,"action":{"kind":"ConsumerSlash","val":2,"infractionHeight":9,"isDowntime":true},"partialState":{"h":12,"t":72,"outstandingDowntime":[false,false,true,true]}},{"ix":82,"action":{"kind":"ConsumerSlash","val":2,"infractionHeight":6,"isDowntime":true},"partialState":{"h":12,"t":72,"outstandingDowntime":[false,false,true,true]}},{"ix":83,"action":{"kind":"ConsumerSlash","val":3,"infractionHeight":10,"isDowntime":true},"partialState":{"h":12,"t":72,"outstandingDowntime":[false,false,true,true]}},{"ix":84,"action":{"kind":"ConsumerSlash","val":3,"infractionHeight":0,"isDowntime":false},"partialState":{"h":12,"t":72,"outstandingDowntime":[false,false,true,true]}},{"ix":85,"action":{"kind":"Undelegate","val":2,"amt":4587},"partialState":{"h":7,"t":42,"tokens":[12072,14759,8106,10248],"delegation":[11072,13759,7106,9248],"delegatorTokens":9999999941610}},{"ix":86,"action":{"kind":"Deliver","chain":"provider","numPackets":3},"partialState":{"h":7,"t":42,"tokens":[12072,14759,8106,10248],"delegation":[11072,13759,7106,9248],"delegatorTokens":9999999941610,"jailed":[null,null,1000000000000017,1000000000000035],"status":["bonded","bonded","unbonding","unbonding"]}},{"ix":87,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":8,"t":48,"tokens":[12072,14759,8106,10248],"delegation":[11072,13759,7106,9248],"delegatorTokens":9999999941610,"jailed":[null,null,1000000000000017,1000000000000035],"status":["bonded","bonded","unbonding","unbonding"]}},{"ix":88,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":89,"action":{"kind":"ConsumerSlash","val":0,"infractionHeight":8,"isDowntime":false},"partialState":{"h":12,"t":72,"outstandingDowntime":[false,false,true,true]}},{"ix":90,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":91,"action":{"kind":"Deliver","chain":"provider","numPackets":4},"partialState":{"h":8,"t":48,"tokens":[12072,14759,8106,10248],"delegation":[11072,13759,7106,9248],"delegatorTokens":9999999941610,"jailed":[null,null,1000000000000017,1000000000000035],"status":["bonded","bonded","unbonding","unbonding"]}},{"ix":92,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":93,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":9,"t":54,"tokens":[12072,14759,8106,10248],"delegation":[11072,13759,7106,9248],"delegatorTokens":9999999941610,"jailed":[null,null,1000000000000017,1000000000000035],"status":["bonded","bonded","unbonding","unbonding"]}},{"ix":94,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":10,"t":60,"tokens":[12072,14759,8106,10248],"delegation":[11072,13759,7106,9248],"delegatorTokens":9999999941610,"jailed":[null,null,1000000000000017,1000000000000035],"status":["bonded","bonded","unbonding","unbonding"]}},{"ix":95,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":96,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":13,"t":78,"consumerPower":[9710,null,null,6208],"outstandingDowntime":[false,false,true,true]}},{"ix":97,"action":{"kind":"Undelegate","val":3,"amt":2201},"partialState":{"h":10,"t":60,"tokens":[12072,14759,8106,8047],"delegation":[11072,13759,7106,7047],"delegatorTokens":9999999941610}},{"ix":98,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":99,"action":{"kind":"Undelegate","val":1,"amt":1618},"partialState":{"h":10,"t":60,"tokens":[12072,13141,8106,8047],"delegation":[11072,12141,7106,7047],"delegatorTokens":9999999941610}},{"ix":100,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":101,"action":{"kind":"Undelegate","val":1,"amt":2727},"partialState":{"h":10,"t":60,"tokens":[12072,10414,8106,8047],"delegation":[11072,9414,7106,7047],"delegatorTokens":9999999941610}},{"ix":102,"action":{"kind":"Deliver","chain":"consumer","numPackets":5},"partialState":{"h":13,"t":78,"consumerPower":[9710,null,null,6208],"outstandingDowntime":[false,false,true,false]}},{"ix":103,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":11,"t":66,"tokens":[12072,10414,8106,8047],"delegation":[11072,9414,7106,7047],"delegatorTokens":9999999941610,"jailed":[null,null,1000000000000017,1000000000000035],"status":["bonded","bonded","unbonding","unbonding"]}},{"ix":104,"action":{"kind":"Delegate","val":1,"amt":2483},"partialState":{"h":11,"t":66,"tokens":[12072,12897,8106,8047],"delegation":[11072,11897,7106,7047],"delegatorTokens":9999999939127}},{"ix":105,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":106,"action":{"kind":"Deliver","chain":"consumer","numPackets":3},"partialState":{"h":13,"t":78,"consumerPower":[9710,null,null,6208],"outstandingDowntime":[false,false,true,false]}},{"ix":107,"action":{"kind":"Undelegate","val":3,"amt":4191},"partialState":{"h":11,"t":66,"tokens":[12072,12897,8106,3856],"delegation":[11072,11897,7106,2856],"delegatorTokens":9999999939127}},{"ix":108,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":109,"action":{"kind":"Undelegate","val":3,"amt":1441},"partialState":{"h":11,"t":66,"tokens":[12072,12897,8106,2415],"delegation":[11072,11897,7106,1415],"delegatorTokens":9999999939127}},{"ix":110,"action":{"kind":"Deliver","chain":"provider","numPackets":6},"partialState":{"h":11,"t":66,"tokens":[12072,12897,8106,2415],"delegation":[11072,11897,7106,1415],"delegatorTokens":9999999939127,"jailed":[null,null,1000000000000017,1000000000000035],"status":["bonded","bonded","unbonding","unbonding"]}},{"ix":111,"action":{"kind":"Undelegate","val":0,"amt":3917},"partialState":{"h":11,"t":66,"tokens":[8155,12897,8106,2415],"delegation":[7155,11897,7106,1415],"delegatorTokens":9999999939127}},{"ix":112,"action":{"kind":"Delegate","val":3,"amt":2962},"partialState":{"h":11,"t":66,"tokens":[8155,12897,8106,5377],"delegation":[7155,11897,7106,4377],"delegatorTokens":9999999936165}},{"ix":113,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":114,"action":{"kind":"Undelegate","val":3,"amt":3937},"partialState":{"h":11,"t":66,"tokens":[8155,12897,8106,1440],"delegation":[7155,11897,7106,440],"delegatorTokens":9999999936165}},{"ix":115,"action":{"kind":"Delegate","val":2,"amt":3904},"partialState":{"h":11,"t":66,"tokens":[8155,12897,12010,1440],"delegation":[7155,11897,11010,440],"delegatorTokens":9999999932261}},{"ix":116,"action":{"kind":"Deliver","chain":"provider","numPackets":2},"partialState":{"h":11,"t":66,"tokens":[8155,12897,12010,1440],"delegation":[7155,11897,11010,440],"delegatorTokens":9999999932261,"jailed":[null,null,1000000000000017,1000000000000035],"status":["bonded","bonded","unbonding","unbonding"]}},{"ix":117,"action":{"kind":"Deliver","chain":"consumer","numPackets":5},"partialState":{"h":13,"t":78,"consumerPower":[9710,null,null,6208],"outstandingDowntime":[false,false,true,false]}},{"ix":118,"action":{"kind":"Deliver","chain":"provider","numPackets":3},"partialState":{"h":11,"t":66,"tokens":[8155,12897,12010,1440],"delegation":[7155,11897,11010,440],"delegatorTokens":9999999932261,"jailed":[null,null,1000000000000017,1000000000000035],"status":["bonded","bonded","unbonding","unbonding"]}},{"ix":119,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":120,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":121,"action":{"kind":"Deliver","chain":"provider","numPackets":3},"partialState":{"h":11,"t":66,"tokens":[8155,12897,12010,1440],"delegation":[7155,11897,11010,440],"delegatorTokens":9999999932261,"jailed":[null,null,1000000000000017,1000000000000035],"status":["bonded","bonded","unbonding","unbonding"]}},{"ix":122,"action":{"kind":"Undelegate","val":1,"amt":1051},"partialState":{"h":11,"t":66,"tokens":[8155,11846,12010,1440],"delegation":[7155,10846,11010,440],"delegatorTokens":9999999932261}},{"ix":123,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":14,"t":84,"consumerPower":[12072,14759,null,null],"outstandingDowntime":[false,false,true,false]}},{"ix":124,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":125,"action":{"kind":"Undelegate","val":1,"amt":2828},"partialState":{"h":11,"t":66,"tokens":[8155,9018,12010,1440],"delegation":[7155,8018,11010,440],"delegatorTokens":9999999932261}},{"ix":126,"action":{"kind":"Deliver","chain":"provider","numPackets":2},"partialState":{"h":11,"t":66,"tokens":[8155,9018,12010,1440],"delegation":[7155,8018,11010,440],"delegatorTokens":9999999932261,"jailed":[null,null,1000000000000017,1000000000000035],"status":["bonded","bonded","unbonding","unbonding"]}},{"ix":127,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":128,"action":{"kind":"Delegate","val":1,"amt":2171},"partialState":{"h":11,"t":66,"tokens":[8155,11189,12010,1440],"delegation":[7155,10189,11010,440],"delegatorTokens":9999999930090}},{"ix":129,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":130,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":131,"action":{"kind":"Undelegate","val":3,"amt":3668},"partialState":{"h":11,"t":66,"tokens":[8155,11189,12010,1440],"delegation":[7155,10189,11010,440],"delegatorTokens":9999999930090}},{"ix":132,"action":{"kind":"Delegate","val":3,"amt":3315},"partialState":{"h":11,"t":66,"tokens":[8155,11189,12010,4755],"delegation":[7155,10189,11010,3755],"delegatorTokens":9999999926775}},{"ix":133,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":134,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":15,"t":90,"consumerPower":[12072,14759,null,null],"outstandingDowntime":[false,false,true,false]}},{"ix":135,"action":{"kind":"Deliver","chain":"consumer","numPackets":1},"partialState":{"h":15,"t":90,"consumerPower":[12072,14759,null,null],"outstandingDowntime":[false,false,true,false]}},{"ix":136,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":137,"action":{"kind":"Undelegate","val":0,"amt":4959},"partialState":{"h":11,"t":66,"tokens":[3196,11189,12010,4755],"delegation":[2196,10189,11010,3755],"delegatorTokens":9999999926775}},{"ix":138,"action":{"kind":"Deliver","chain":"provider","numPackets":1},"partialState":{"h":11,"t":66,"tokens":[3196,11189,12010,4755],"delegation":[2196,10189,11010,3755],"delegatorTokens":9999999926775,"jailed":[null,null,1000000000000017,1000000000000035],"status":["bonded","bonded","unbonding","unbonding"]}},{"ix":139,"action":{"kind":"Deliver","chain":"consumer","numPackets":1},"partialState":{"h":15,"t":90,"consumerPower":[12072,14759,null,null],"outstandingDowntime":[false,false,true,false]}},{"ix":140,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":141,"action":{"kind":"Delegate","val":0,"amt":1796},"partialState":{"h":11,"t":66,"tokens":[4992,11189,12010,4755],"delegation":[3992,10189,11010,3755],"delegatorTokens":9999999924979}},{"ix":142,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":143,"action":{"kind":"Deliver","chain":"consumer","numPackets":1},"partialState":{"h":15,"t":90,"consumerPower":[12072,14759,null,null],"outstandingDowntime":[false,false,true,false]}},{"ix":144,"action":{"kind":"Undelegate","val":2,"amt":3305},"partialState":{"h":11,"t":66,"tokens":[4992,11189,8705,4755],"delegation":[3992,10189,7705,3755],"delegatorTokens":9999999924979}},{"ix":145,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":146,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":12,"t":72,"tokens":[4992,11189,8705,4755],"delegation":[3992,10189,7705,3755],"delegatorTokens":9999999924979,"jailed":[null,null,1000000000000065,1000000000000035],"status":["bonded","bonded","unbonding","unbonding"]}},{"ix":147,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":16,"t":96,"consumerPower":[12072,14759,null,null],"outstandingDowntime":[false,false,true,false]}},{"ix":148,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":13,"t":78,"tokens":[4992,11189,8705,4755],"delegation":[3992,10189,7705,3755],"delegatorTokens":9999999924979,"jailed":[null,null,1000000000000065,1000000000000035],"status":["bonded","bonded","unbonding","unbonding"]}},{"ix":149,"action":{"kind":"Undelegate","val":2,"amt":4047},"partialState":{"h":13,"t":78,"tokens":[4992,11189,4658,4755],"delegation":[3992,10189,3658,3755],"delegatorTokens":9999999924979}},{"ix":150,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":14,"t":84,"tokens":[4992,11189,4658,4755],"delegation":[3992,10189,3658,3755],"delegatorTokens":9999999924979,"jailed":[null,null,1000000000000065,1000000000000035],"status":["bonded","bonded","unbonding","unbonding"]}},{"ix":151,"action":{"kind":"Undelegate","val":3,"amt":4188},"partialState":{"h":14,"t":84,"tokens":[4992,11189,4658,4755],"delegation":[3992,10189,3658,3755],"delegatorTokens":9999999924979}},{"ix":152,"action":{"kind":"Deliver","chain":"consumer","numPackets":1},"partialState":{"h":16,"t":96,"consumerPower":[12072,14759,null,null],"outstandingDowntime":[false,false,true,false]}},{"ix":153,"action":{"kind":"Undelegate","val":1,"amt":3305},"partialState":{"h":14,"t":84,"tokens":[4992,7884,4658,4755],"delegation":[3992,6884,3658,3755],"delegatorTokens":9999999924979}},{"ix":154,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":15,"t":90,"tokens":[4992,7884,4658,4755],"delegation":[3992,6884,3658,3755],"delegatorTokens":9999999924979,"jailed":[null,null,1000000000000065,1000000000000035],"status":["bonded","bonded","unbonding","unbonding"]}},{"ix":155,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":16,"t":96,"tokens":[4992,7884,4658,4755],"delegation":[3992,6884,3658,3755],"delegatorTokens":9999999924979,"jailed":[null,null,1000000000000065,1000000000000035],"status":["bonded","bonded","unbonding","unbonding"]}},{"ix":156,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":17,"t":102,"tokens":[4992,7884,4658,4755],"delegation":[3992,6884,3658,3755],"delegatorTokens":9999999924979,"jailed":[null,null,1000000000000065,1000000000000035],"status":["bonded","bonded","unbonding","unbonding"]}},{"ix":157,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":18,"t":108,"tokens":[4992,7884,4658,4755],"delegation":[3992,6884,3658,3755],"delegatorTokens":9999999924979,"jailed":[null,null,1000000000000065,1000000000000035],"status":["bonded","bonded","unbonding","unbonding"]}},{"ix":158,"action":{"kind":"Deliver","chain":"provider","numPackets":2},"partialState":{"h":18,"t":108,"tokens":[4992,7884,4658,4755],"delegation":[3992,6884,3658,3755],"delegatorTokens":9999999924979,"jailed":[null,null,1000000000000065,1000000000000035],"status":["bonded","bonded","unbonding","unbonding"]}},{"ix":159,"action":{"kind":"Deliver","chain":"consumer","numPackets":1},"partialState":{"h":16,"t":96,"consumerPower":[12072,14759,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":160,"action":{"kind":"Undelegate","val":2,"amt":1052},"partialState":{"h":18,"t":108,"tokens":[4992,7884,3606,4755],"delegation":[3992,6884,2606,3755],"delegatorTokens":9999999924979}},{"ix":161,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":162,"action":{"kind":"Delegate","val":0,"amt":3398},"partialState":{"h":18,"t":108,"tokens":[8390,7884,3606,4755],"delegation":[7390,6884,2606,3755],"delegatorTokens":9999999921581}},{"ix":163,"action":{"kind":"Deliver","chain":"provider","numPackets":4},"partialState":{"h":18,"t":108,"tokens":[8390,7884,3606,4755],"delegation":[7390,6884,2606,3755],"delegatorTokens":9999999921581,"jailed":[null,null,1000000000000065,1000000000000035],"status":["bonded","bonded","unbonding","unbonding"]}},{"ix":164,"action":{"kind":"Delegate","val":2,"amt":4310},"partialState":{"h":18,"t":108,"tokens":[8390,7884,7916,4755],"delegation":[7390,6884,6916,3755],"delegatorTokens":9999999917271}},{"ix":165,"action":{"kind":"Deliver","chain":"provider","numPackets":1},"partialState":{"h":18,"t":108,"tokens":[8390,7884,7916,4755],"delegation":[7390,6884,6916,3755],"delegatorTokens":9999999917271,"jailed":[null,null,1000000000000065,1000000000000035],"status":["bonded","bonded","unbonding","unbonding"]}},{"ix":166,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":167,"action":{"kind":"Deliver","chain":"consumer","numPackets":1},"partialState":{"h":16,"t":96,"consumerPower":[12072,14759,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":168,"action":{"kind":"Delegate","val":3,"amt":1774},"partialState":{"h":18,"t":108,"tokens":[8390,7884,7916,6529],"delegation":[7390,6884,6916,5529],"delegatorTokens":9999999915497}},{"ix":169,"action":{"kind":"Undelegate","val":0,"amt":4748},"partialState":{"h":18,"t":108,"tokens":[3642,7884,7916,6529],"delegation":[2642,6884,6916,5529],"delegatorTokens":9999999915497}},{"ix":170,"action":{"kind":"Undelegate","val":3,"amt":3803},"partialState":{"h":18,"t":108,"tokens":[3642,7884,7916,2726],"delegation":[2642,6884,6916,1726],"delegatorTokens":9999999915497}},{"ix":171,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":172,"action":{"kind":"Undelegate","val":3,"amt":3974},"partialState":{"h":18,"t":108,"tokens":[3642,7884,7916,2726],"delegation":[2642,6884,6916,1726],"delegatorTokens":9999999915497}},{"ix":173,"action":{"kind":"Deliver","chain":"consumer","numPackets":1},"partialState":{"h":16,"t":96,"consumerPower":[12072,14759,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":174,"action":{"kind":"Deliver","chain":"consumer","numPackets":2},"partialState":{"h":16,"t":96,"consumerPower":[12072,14759,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":175,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":176,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":177,"action":{"kind":"Undelegate","val":3,"amt":3895},"partialState":{"h":18,"t":108,"tokens":[3642,7884,7916,2726],"delegation":[2642,6884,6916,1726],"delegatorTokens":9999999915497}},{"ix":178,"action":{"kind":"Delegate","val":1,"amt":3178},"partialState":{"h":18,"t":108,"tokens":[3642,11062,7916,2726],"delegation":[2642,10062,6916,1726],"delegatorTokens":9999999912319}},{"ix":179,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":180,"action":{"kind":"Deliver","chain":"provider","numPackets":2},"partialState":{"h":18,"t":108,"tokens":[3642,11062,7916,2726],"delegation":[2642,10062,6916,1726],"delegatorTokens":9999999912319,"jailed":[null,null,1000000000000065,1000000000000035],"status":["bonded","bonded","unbonding","unbonding"]}},{"ix":181,"action":{"kind":"Deliver","chain":"consumer","numPackets":6},"partialState":{"h":16,"t":96,"consumerPower":[12072,14759,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":182,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":19,"t":114,"tokens":[3642,11062,7916,2726],"delegation":[2642,10062,6916,1726],"delegatorTokens":9999999912319,"jailed":[null,null,1000000000000065,1000000000000035],"status":["bonded","bonded","unbonding","unbonding"]}},{"ix":183,"action":{"kind":"Deliver","chain":"provider","numPackets":2},"partialState":{"h":19,"t":114,"tokens":[3642,11062,7916,2726],"delegation":[2642,10062,6916,1726],"delegatorTokens":9999999912319,"jailed":[null,null,1000000000000065,1000000000000035],"status":["bonded","bonded","unbonding","unbonding"]}},{"ix":184,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":17,"t":102,"consumerPower":[4992,7884,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":185,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":20,"t":120,"tokens":[3642,11062,7916,2726],"delegation":[2642,10062,6916,1726],"delegatorTokens":9999999912319,"jailed":[null,null,1000000000000065,1000000000000035],"status":["bonded","bonded","unbonding","unbonding"]}},{"ix":186,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":187,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":21,"t":126,"tokens":[3642,11062,7916,2726],"delegation":[2642,10062,6916,1726],"delegatorTokens":9999999912319,"jailed":[null,null,1000000000000065,1000000000000035],"status":["bonded","bonded","unbonding","unbonding"]}},{"ix":188,"action":{"kind":"Deliver","chain":"consumer","numPackets":5},"partialState":{"h":17,"t":102,"consumerPower":[4992,7884,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":189,"action":{"kind":"Undelegate","val":0,"amt":4415},"partialState":{"h":21,"t":126,"tokens":[3642,11062,7916,2726],"delegation":[2642,10062,6916,1726],"delegatorTokens":9999999912319}},{"ix":190,"action":{"kind":"Undelegate","val":0,"amt":2954},"partialState":{"h":21,"t":126,"tokens":[3642,11062,7916,2726],"delegation":[2642,10062,6916,1726],"delegatorTokens":9999999912319}},{"ix":191,"action":{"kind":"Deliver","chain":"consumer","numPackets":1},"partialState":{"h":17,"t":102,"consumerPower":[4992,7884,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":192,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":193,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":194,"action":{"kind":"Delegate","val":3,"amt":4961},"partialState":{"h":21,"t":126,"tokens":[3642,11062,7916,7687],"delegation":[2642,10062,6916,6687],"delegatorTokens":9999999907358}},{"ix":195,"action":{"kind":"Undelegate","val":2,"amt":4142},"partialState":{"h":21,"t":126,"tokens":[3642,11062,3774,7687],"delegation":[2642,10062,2774,6687],"delegatorTokens":9999999907358}},{"ix":196,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":197,"action":{"kind":"Undelegate","val":3,"amt":1930},"partialState":{"h":21,"t":126,"tokens":[3642,11062,3774,5757],"delegation":[2642,10062,2774,4757],"delegatorTokens":9999999907358}},{"ix":198,"action":{"kind":"Deliver","chain":"provider","numPackets":1},"partialState":{"h":21,"t":126,"tokens":[3642,11062,3774,5757],"delegation":[2642,10062,2774,4757],"delegatorTokens":9999999907358,"jailed":[null,null,1000000000000065,1000000000000035],"status":["bonded","bonded","unbonding","unbonding"]}},{"ix":199,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":18,"t":108,"consumerPower":[3642,11062,null,null],"outstandingDowntime":[false,false,false,false]}}],"events":["send_double_sign_slash_request","send_downtime_slash_request","receive_double_sign_slash_request","more_than_one_third_val_power_change","send_vsc_without_downtime_ack","insufficient_shares","insufficient_shares","send_double_sign_slash_request","send_vsc_without_downtime_ack","downtime_slash_request_outstanding","send_downtime_slash_request","send_double_sign_slash_request","receive_downtime_slash_request","jail","send_vsc_with_downtime_ack","send_double_sign_slash_request","more_than_one_third_val_power_change","send_vsc_without_downtime_ack","more_than_one_third_val_power_change","rebond_unval","send_vsc_without_downtime_ack","receive_double_sign_slash_request","receive_downtime_slash_ack","send_double_sign_slash_request","consumer_update_val","consumer_del_val","consumer_del_val","consumer_add_val","receive_double_sign_slash_request","receive_double_sign_slash_request","downtime_slash_request_outstanding","receive_double_sign_slash_request","receive_downtime_slash_request","jail","send_vsc_with_downtime_ack","send_double_sign_slash_request","send_double_sign_slash_request","send_downtime_slash_request","downtime_slash_request_outstanding","downtime_slash_request_outstanding","send_double_sign_slash_request","send_vsc_without_downtime_ack","send_double_sign_slash_request","receive_downtime_slash_ack","send_vsc_without_downtime_ack","consumer_add_val","consumer_del_val","consumer_update_val","receive_double_sign_slash_request","receive_double_sign_slash_request","insufficient_shares","receive_downtime_slash_request","jail","send_vsc_with_downtime_ack","some_undels_expired_but_not_completed","send_vsc_not_because_change","send_vsc_without_downtime_ack","insufficient_shares","some_undels_expired_but_not_completed","send_vsc_without_downtime_ack","some_undels_expired_but_not_completed","some_undels_expired_but_not_completed","receive_double_sign_slash_request","receive_double_sign_slash_request","receive_downtime_slash_ack","insufficient_shares","insufficient_shares","some_undels_expired_but_not_completed","send_vsc_without_downtime_ack","consumer_update_val","consumer_update_val","some_undels_expired_but_not_completed","insufficient_shares","insufficient_shares","consumer_update_val","consumer_update_val"]},{"meta":{"commit":"7ffd0c04e4205cbc9caf212abfe6c59ee43153bf"},"constants":{"P":"provider","C":"consumer","UNBONDING_SECONDS_P":70,"UNBONDING_SECONDS_C":50,"TRUSTING_SECONDS":49,"NUM_VALIDATORS":4,"MAX_VALIDATORS":2,"SLASH_DOUBLESIGN":0,"SLASH_DOWNTIME":0,"JAIL_SECONDS":999999999999999,"BLOCK_SECONDS":6,"INITIAL_DELEGATOR_TOKENS":10000000000000,"DELEGATE_AMT_MIN":1000,"DELEGATE_AMT_MAX":5000,"UNDELEGATE_AMT_MIN":1000,"UNDELEGATE_AMT_MAX":5000,"ISDOWNTIME_PROBABILITY":0.5,"MAX_NUM_PACKETS_FOR_DELIVER":6},"actions":[{"ix":0,"action":{"kind":"Deliver","chain":"provider","numPackets":6},"partialState":{"h":1,"t":6,"tokens":[5000,4000,3000,2000],"delegation":[4000,3000,2000,1000],"delegatorTokens":10000000000000,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":1,"action":{"kind":"Deliver","chain":"provider","numPackets":1},"partialState":{"h":1,"t":6,"tokens":[5000,4000,3000,2000],"delegation":[4000,3000,2000,1000],"delegatorTokens":10000000000000,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":2,"action":{"kind":"Delegate","val":0,"amt":2358},"partialState":{"h":1,"t":6,"tokens":[7358,4000,3000,2000],"delegation":[6358,3000,2000,1000],"delegatorTokens":9999999997642}},{"ix":3,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":4,"action":{"kind":"Delegate","val":3,"amt":1353},"partialState":{"h":1,"t":6,"tokens":[7358,4000,3000,3353],"delegation":[6358,3000,2000,2353],"delegatorTokens":9999999996289}},{"ix":5,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":6,"action":{"kind":"ConsumerSlash","val":2,"infractionHeight":0,"isDowntime":false},"partialState":{"h":1,"t":6,"outstandingDowntime":[false,false,false,false]}},{"ix":7,"action":{"kind":"Undelegate","val":2,"amt":3662},"partialState":{"h":1,"t":6,"tokens":[7358,4000,3000,3353],"delegation":[6358,3000,2000,2353],"delegatorTokens":9999999996289}},{"ix":8,"action":{"kind":"Delegate","val":2,"amt":1593},"partialState":{"h":1,"t":6,"tokens":[7358,4000,4593,3353],"delegation":[6358,3000,3593,2353],"delegatorTokens":9999999994696}},{"ix":9,"action":{"kind":"Delegate","val":2,"amt":2919},"partialState":{"h":1,"t":6,"tokens":[7358,4000,7512,3353],"delegation":[6358,3000,6512,2353],"delegatorTokens":9999999991777}},{"ix":10,"action":{"kind":"Deliver","chain":"consumer","numPackets":5},"partialState":{"h":1,"t":6,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":11,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":2,"t":12,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":12,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":13,"action":{"kind":"ConsumerSlash","val":0,"infractionHeight":1,"isDowntime":false},"partialState":{"h":2,"t":12,"outstandingDowntime":[false,false,false,false]}},{"ix":14,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":15,"action":{"kind":"Undelegate","val":2,"amt":4505},"partialState":{"h":1,"t":6,"tokens":[7358,4000,3007,3353],"delegation":[6358,3000,2007,2353],"delegatorTokens":9999999991777}},{"ix":16,"action":{"kind":"Delegate","val":3,"amt":3290},"partialState":{"h":1,"t":6,"tokens":[7358,4000,3007,6643],"delegation":[6358,3000,2007,5643],"delegatorTokens":9999999988487}},{"ix":17,"action":{"kind":"Delegate","val":2,"amt":2088},"partialState":{"h":1,"t":6,"tokens":[7358,4000,5095,6643],"delegation":[6358,3000,4095,5643],"delegatorTokens":9999999986399}},{"ix":18,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":19,"action":{"kind":"ConsumerSlash","val":2,"infractionHeight":0,"isDowntime":true},"partialState":{"h":2,"t":12,"outstandingDowntime":[false,false,true,false]}},{"ix":20,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":2,"t":12,"tokens":[7358,4000,5095,6643],"delegation":[6358,3000,4095,5643],"delegatorTokens":9999999986399,"jailed":[null,null,null,null],"status":["bonded","unbonding","unbonded","bonded"]}},{"ix":21,"action":{"kind":"Delegate","val":1,"amt":3452},"partialState":{"h":2,"t":12,"tokens":[7358,7452,5095,6643],"delegation":[6358,6452,4095,5643],"delegatorTokens":9999999982947}},{"ix":22,"action":{"kind":"Undelegate","val":0,"amt":1556},"partialState":{"h":2,"t":12,"tokens":[5802,7452,5095,6643],"delegation":[4802,6452,4095,5643],"delegatorTokens":9999999982947}},{"ix":23,"action":{"kind":"ConsumerSlash","val":2,"infractionHeight":0,"isDowntime":false},"partialState":{"h":2,"t":12,"outstandingDowntime":[false,false,true,false]}},{"ix":24,"action":{"kind":"Undelegate","val":0,"amt":4796},"partialState":{"h":2,"t":12,"tokens":[1006,7452,5095,6643],"delegation":[6,6452,4095,5643],"delegatorTokens":9999999982947}},{"ix":25,"action":{"kind":"Delegate","val":3,"amt":1330},"partialState":{"h":2,"t":12,"tokens":[1006,7452,5095,7973],"delegation":[6,6452,4095,6973],"delegatorTokens":9999999981617}},{"ix":26,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":3,"t":18,"tokens":[1006,7452,5095,7973],"delegation":[6,6452,4095,6973],"delegatorTokens":9999999981617,"jailed":[null,null,null,null],"status":["unbonding","bonded","unbonded","bonded"]}},{"ix":27,"action":{"kind":"Deliver","chain":"provider","numPackets":6},"partialState":{"h":3,"t":18,"tokens":[1006,7452,5095,7973],"delegation":[6,6452,4095,6973],"delegatorTokens":9999999981617,"jailed":[null,null,null,null],"status":["unbonding","bonded","unbonded","bonded"]}},{"ix":28,"action":{"kind":"Deliver","chain":"provider","numPackets":3},"partialState":{"h":3,"t":18,"tokens":[1006,7452,5095,7973],"delegation":[6,6452,4095,6973],"delegatorTokens":9999999981617,"jailed":[null,null,null,null],"status":["unbonding","bonded","unbonded","bonded"]}},{"ix":29,"action":{"kind":"Deliver","chain":"consumer","numPackets":6},"partialState":{"h":2,"t":12,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,false,true,false]}},{"ix":30,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":31,"action":{"kind":"Deliver","chain":"provider","numPackets":1},"partialState":{"h":3,"t":18,"tokens":[1006,7452,5095,7973],"delegation":[6,6452,4095,6973],"delegatorTokens":9999999981617,"jailed":[null,null,null,null],"status":["unbonding","bonded","unbonded","bonded"]}},{"ix":32,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":33,"action":{"kind":"ConsumerSlash","val":2,"infractionHeight":1,"isDowntime":false},"partialState":{"h":2,"t":12,"outstandingDowntime":[false,false,true,false]}},{"ix":34,"action":{"kind":"Deliver","chain":"provider","numPackets":6},"partialState":{"h":3,"t":18,"tokens":[1006,7452,5095,7973],"delegation":[6,6452,4095,6973],"delegatorTokens":9999999981617,"jailed":[null,null,null,null],"status":["unbonding","bonded","unbonded","bonded"]}},{"ix":35,"action":{"kind":"ConsumerSlash","val":0,"infractionHeight":0,"isDowntime":true},"partialState":{"h":2,"t":12,"outstandingDowntime":[true,false,true,false]}},{"ix":36,"action":{"kind":"ConsumerSlash","val":0,"infractionHeight":1,"isDowntime":false},"partialState":{"h":2,"t":12,"outstandingDowntime":[true,false,true,false]}},{"ix":37,"action":{"kind":"Undelegate","val":1,"amt":2437},"partialState":{"h":3,"t":18,"tokens":[1006,5015,5095,7973],"delegation":[6,4015,4095,6973],"delegatorTokens":9999999981617}},{"ix":38,"action":{"kind":"Undelegate","val":3,"amt":2845},"partialState":{"h":3,"t":18,"tokens":[1006,5015,5095,5128],"delegation":[6,4015,4095,4128],"delegatorTokens":9999999981617}},{"ix":39,"action":{"kind":"Undelegate","val":1,"amt":4425},"partialState":{"h":3,"t":18,"tokens":[1006,5015,5095,5128],"delegation":[6,4015,4095,4128],"delegatorTokens":9999999981617}},{"ix":40,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":41,"action":{"kind":"Undelegate","val":2,"amt":1133},"partialState":{"h":3,"t":18,"tokens":[1006,5015,3962,5128],"delegation":[6,4015,2962,4128],"delegatorTokens":9999999981617}},{"ix":42,"action":{"kind":"Delegate","val":0,"amt":2585},"partialState":{"h":3,"t":18,"tokens":[3591,5015,3962,5128],"delegation":[2591,4015,2962,4128],"delegatorTokens":9999999979032}},{"ix":43,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":4,"t":24,"tokens":[3591,5015,3962,5128],"delegation":[2591,4015,2962,4128],"delegatorTokens":9999999979032,"jailed":[null,null,null,null],"status":["unbonding","bonded","unbonded","bonded"]}},{"ix":44,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":5,"t":30,"tokens":[3591,5015,3962,5128],"delegation":[2591,4015,2962,4128],"delegatorTokens":9999999979032,"jailed":[null,null,null,null],"status":["unbonding","bonded","unbonded","bonded"]}},{"ix":45,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":3,"t":18,"consumerPower":[7358,null,null,6643],"outstandingDowntime":[true,false,true,false]}},{"ix":46,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":47,"action":{"kind":"Deliver","chain":"provider","numPackets":1},"partialState":{"h":5,"t":30,"tokens":[3591,5015,3962,5128],"delegation":[2591,4015,2962,4128],"delegatorTokens":9999999979032,"jailed":[null,null,null,null],"status":["unbonding","bonded","unbonded","bonded"]}},{"ix":48,"action":{"kind":"Deliver","chain":"provider","numPackets":4},"partialState":{"h":5,"t":30,"tokens":[3591,5015,3962,5128],"delegation":[2591,4015,2962,4128],"delegatorTokens":9999999979032,"jailed":[null,null,null,null],"status":["unbonding","bonded","unbonded","bonded"]}},{"ix":49,"action":{"kind":"Delegate","val":0,"amt":4533},"partialState":{"h":5,"t":30,"tokens":[8124,5015,3962,5128],"delegation":[7124,4015,2962,4128],"delegatorTokens":9999999974499}},{"ix":50,"action":{"kind":"Deliver","chain":"provider","numPackets":4},"partialState":{"h":5,"t":30,"tokens":[8124,5015,3962,5128],"delegation":[7124,4015,2962,4128],"delegatorTokens":9999999974499,"jailed":[null,null,null,null],"status":["unbonding","bonded","unbonded","bonded"]}},{"ix":51,"action":{"kind":"Undelegate","val":0,"amt":3573},"partialState":{"h":5,"t":30,"tokens":[4551,5015,3962,5128],"delegation":[3551,4015,2962,4128],"delegatorTokens":9999999974499}},{"ix":52,"action":{"kind":"Deliver","chain":"consumer","numPackets":3},"partialState":{"h":3,"t":18,"consumerPower":[7358,null,null,6643],"outstandingDowntime":[true,false,true,false]}},{"ix":53,"action":{"kind":"Deliver","chain":"consumer","numPackets":1},"partialState":{"h":3,"t":18,"consumerPower":[7358,null,null,6643],"outstandingDowntime":[true,false,true,false]}},{"ix":54,"action":{"kind":"Undelegate","val":3,"amt":4888},"partialState":{"h":5,"t":30,"tokens":[4551,5015,3962,5128],"delegation":[3551,4015,2962,4128],"delegatorTokens":9999999974499}},{"ix":55,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":4,"t":24,"consumerPower":[null,5015,null,5128],"outstandingDowntime":[true,false,true,false]}},{"ix":56,"action":{"kind":"ConsumerSlash","val":2,"infractionHeight":0,"isDowntime":false},"partialState":{"h":4,"t":24,"outstandingDowntime":[true,false,true,false]}},{"ix":57,"action":{"kind":"Delegate","val":2,"amt":1578},"partialState":{"h":5,"t":30,"tokens":[4551,5015,5540,5128],"delegation":[3551,4015,4540,4128],"delegatorTokens":9999999972921}},{"ix":58,"action":{"kind":"Undelegate","val":1,"amt":4030},"partialState":{"h":5,"t":30,"tokens":[4551,5015,5540,5128],"delegation":[3551,4015,4540,4128],"delegatorTokens":9999999972921}},{"ix":59,"action":{"kind":"ConsumerSlash","val":0,"infractionHeight":2,"isDowntime":false},"partialState":{"h":4,"t":24,"outstandingDowntime":[true,false,true,false]}},{"ix":60,"action":{"kind":"Undelegate","val":0,"amt":3377},"partialState":{"h":5,"t":30,"tokens":[1174,5015,5540,5128],"delegation":[174,4015,4540,4128],"delegatorTokens":9999999972921}},{"ix":61,"action":{"kind":"Delegate","val":3,"amt":2897},"partialState":{"h":5,"t":30,"tokens":[1174,5015,5540,8025],"delegation":[174,4015,4540,7025],"delegatorTokens":9999999970024}},{"ix":62,"action":{"kind":"Deliver","chain":"provider","numPackets":4},"partialState":{"h":5,"t":30,"tokens":[1174,5015,5540,8025],"delegation":[174,4015,4540,7025],"delegatorTokens":9999999970024,"jailed":[null,null,null,null],"status":["unbonding","bonded","unbonded","bonded"]}},{"ix":63,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":64,"action":{"kind":"Deliver","chain":"consumer","numPackets":3},"partialState":{"h":4,"t":24,"consumerPower":[null,5015,null,5128],"outstandingDowntime":[true,false,true,false]}},{"ix":65,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":66,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":67,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":6,"t":36,"tokens":[1174,5015,5540,8025],"delegation":[174,4015,4540,7025],"delegatorTokens":9999999970024,"jailed":[null,null,1000000000000029,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":68,"action":{"kind":"Undelegate","val":0,"amt":4719},"partialState":{"h":6,"t":36,"tokens":[1174,5015,5540,8025],"delegation":[174,4015,4540,7025],"delegatorTokens":9999999970024}},{"ix":69,"action":{"kind":"Delegate","val":2,"amt":2917},"partialState":{"h":6,"t":36,"tokens":[1174,5015,8457,8025],"delegation":[174,4015,7457,7025],"delegatorTokens":9999999967107}},{"ix":70,"action":{"kind":"ConsumerSlash","val":2,"infractionHeight":0,"isDowntime":true},"partialState":{"h":4,"t":24,"outstandingDowntime":[true,false,true,false]}},{"ix":71,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":72,"action":{"kind":"Deliver","chain":"consumer","numPackets":6},"partialState":{"h":4,"t":24,"consumerPower":[null,5015,null,5128],"outstandingDowntime":[true,false,true,false]}},{"ix":73,"action":{"kind":"Delegate","val":0,"amt":1003},"partialState":{"h":6,"t":36,"tokens":[2177,5015,8457,8025],"delegation":[1177,4015,7457,7025],"delegatorTokens":9999999966104}},{"ix":74,"action":{"kind":"Delegate","val":3,"amt":4644},"partialState":{"h":6,"t":36,"tokens":[2177,5015,8457,12669],"delegation":[1177,4015,7457,11669],"delegatorTokens":9999999961460}},{"ix":75,"action":{"kind":"ConsumerSlash","val":3,"infractionHeight":1,"isDowntime":true},"partialState":{"h":4,"t":24,"outstandingDowntime":[true,false,true,true]}},{"ix":76,"action":{"kind":"Delegate","val":1,"amt":2140},"partialState":{"h":6,"t":36,"tokens":[2177,7155,8457,12669],"delegation":[1177,6155,7457,11669],"delegatorTokens":9999999959320}},{"ix":77,"action":{"kind":"Deliver","chain":"consumer","numPackets":2},"partialState":{"h":4,"t":24,"consumerPower":[null,5015,null,5128],"outstandingDowntime":[true,false,true,true]}},{"ix":78,"action":{"kind":"Undelegate","val":1,"amt":4107},"partialState":{"h":6,"t":36,"tokens":[2177,3048,8457,12669],"delegation":[1177,2048,7457,11669],"delegatorTokens":9999999959320}},{"ix":79,"action":{"kind":"Undelegate","val":3,"amt":4694},"partialState":{"h":6,"t":36,"tokens":[2177,3048,8457,7975],"delegation":[1177,2048,7457,6975],"delegatorTokens":9999999959320}},{"ix":80,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":5,"t":30,"consumerPower":[null,5015,null,5128],"outstandingDowntime":[true,false,true,true]}},{"ix":81,"action":{"kind":"Deliver","chain":"provider","numPackets":3},"partialState":{"h":6,"t":36,"tokens":[2177,3048,8457,7975],"delegation":[1177,2048,7457,6975],"delegatorTokens":9999999959320,"jailed":[null,null,1000000000000029,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":82,"action":{"kind":"Deliver","chain":"provider","numPackets":3},"partialState":{"h":6,"t":36,"tokens":[2177,3048,8457,7975],"delegation":[1177,2048,7457,6975],"delegatorTokens":9999999959320,"jailed":[null,null,1000000000000029,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":83,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":7,"t":42,"tokens":[2177,3048,8457,7975],"delegation":[1177,2048,7457,6975],"delegatorTokens":9999999959320,"jailed":[1000000000000035,null,1000000000000029,null],"status":["unbonding","bonded","unbonding","bonded"]}},{"ix":84,"action":{"kind":"Undelegate","val":2,"amt":2858},"partialState":{"h":7,"t":42,"tokens":[2177,3048,5599,7975],"delegation":[1177,2048,4599,6975],"delegatorTokens":9999999959320}},{"ix":85,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":8,"t":48,"tokens":[2177,3048,5599,7975],"delegation":[1177,2048,4599,6975],"delegatorTokens":9999999959320,"jailed":[1000000000000035,null,1000000000000029,null],"status":["unbonding","bonded","unbonding","bonded"]}},{"ix":86,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":6,"t":36,"consumerPower":[null,5015,null,5128],"outstandingDowntime":[true,false,true,true]}},{"ix":87,"action":{"kind":"Deliver","chain":"provider","numPackets":4},"partialState":{"h":8,"t":48,"tokens":[2177,3048,5599,7975],"delegation":[1177,2048,4599,6975],"delegatorTokens":9999999959320,"jailed":[1000000000000035,null,1000000000000029,null],"status":["unbonding","bonded","unbonding","bonded"]}},{"ix":88,"action":{"kind":"Delegate","val":3,"amt":1651},"partialState":{"h":8,"t":48,"tokens":[2177,3048,5599,9626],"delegation":[1177,2048,4599,8626],"delegatorTokens":9999999957669}},{"ix":89,"action":{"kind":"Deliver","chain":"consumer","numPackets":2},"partialState":{"h":6,"t":36,"consumerPower":[null,5015,null,5128],"outstandingDowntime":[false,false,false,true]}},{"ix":90,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":7,"t":42,"consumerPower":[null,3048,null,7975],"outstandingDowntime":[false,false,false,true]}},{"ix":91,"action":{"kind":"Delegate","val":1,"amt":4798},"partialState":{"h":8,"t":48,"tokens":[2177,7846,5599,9626],"delegation":[1177,6846,4599,8626],"delegatorTokens":9999999952871}},{"ix":92,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":8,"t":48,"consumerPower":[null,3048,null,7975],"outstandingDowntime":[false,false,false,true]}},{"ix":93,"action":{"kind":"Undelegate","val":2,"amt":1553},"partialState":{"h":8,"t":48,"tokens":[2177,7846,4046,9626],"delegation":[1177,6846,3046,8626],"delegatorTokens":9999999952871}},{"ix":94,"action":{"kind":"Deliver","chain":"consumer","numPackets":5},"partialState":{"h":8,"t":48,"consumerPower":[null,3048,null,7975],"outstandingDowntime":[false,false,false,true]}},{"ix":95,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":96,"action":{"kind":"Undelegate","val":0,"amt":2990},"partialState":{"h":8,"t":48,"tokens":[2177,7846,4046,9626],"delegation":[1177,6846,3046,8626],"delegatorTokens":9999999952871}},{"ix":97,"action":{"kind":"Delegate","val":0,"amt":1586},"partialState":{"h":8,"t":48,"tokens":[3763,7846,4046,9626],"delegation":[2763,6846,3046,8626],"delegatorTokens":9999999951285}},{"ix":98,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":99,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":9,"t":54,"consumerPower":[null,3048,null,7975],"outstandingDowntime":[false,false,false,true]}},{"ix":100,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":10,"t":60,"consumerPower":[null,3048,null,7975],"outstandingDowntime":[false,false,false,true]}},{"ix":101,"action":{"kind":"Deliver","chain":"consumer","numPackets":6},"partialState":{"h":10,"t":60,"consumerPower":[null,3048,null,7975],"outstandingDowntime":[false,false,false,true]}},{"ix":102,"action":{"kind":"Delegate","val":3,"amt":1914},"partialState":{"h":8,"t":48,"tokens":[3763,7846,4046,11540],"delegation":[2763,6846,3046,10540],"delegatorTokens":9999999949371}},{"ix":103,"action":{"kind":"Deliver","chain":"consumer","numPackets":6},"partialState":{"h":10,"t":60,"consumerPower":[null,3048,null,7975],"outstandingDowntime":[false,false,false,true]}},{"ix":104,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":105,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":9,"t":54,"tokens":[3763,7846,4046,11540],"delegation":[2763,6846,3046,10540],"delegatorTokens":9999999949371,"jailed":[1000000000000035,null,1000000000000029,1000000000000047],"status":["unbonding","bonded","unbonding","bonded"]}},{"ix":106,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":107,"action":{"kind":"Deliver","chain":"consumer","numPackets":1},"partialState":{"h":10,"t":60,"consumerPower":[null,3048,null,7975],"outstandingDowntime":[false,false,false,true]}},{"ix":108,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":109,"action":{"kind":"Undelegate","val":2,"amt":4722},"partialState":{"h":9,"t":54,"tokens":[3763,7846,4046,11540],"delegation":[2763,6846,3046,10540],"delegatorTokens":9999999949371}},{"ix":110,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":111,"action":{"kind":"Deliver","chain":"consumer","numPackets":6},"partialState":{"h":10,"t":60,"consumerPower":[null,3048,null,7975],"outstandingDowntime":[false,false,false,true]}},{"ix":112,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":10,"t":60,"tokens":[3763,7846,4046,11540],"delegation":[2763,6846,3046,10540],"delegatorTokens":9999999949371,"jailed":[1000000000000035,null,1000000000000029,1000000000000047],"status":["unbonding","bonded","unbonding","unbonding"]}},{"ix":113,"action":{"kind":"Delegate","val":3,"amt":4172},"partialState":{"h":10,"t":60,"tokens":[3763,7846,4046,15712],"delegation":[2763,6846,3046,14712],"delegatorTokens":9999999945199}},{"ix":114,"action":{"kind":"Delegate","val":0,"amt":1163},"partialState":{"h":10,"t":60,"tokens":[4926,7846,4046,15712],"delegation":[3926,6846,3046,14712],"delegatorTokens":9999999944036}},{"ix":115,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":11,"t":66,"consumerPower":[null,3048,null,7975],"outstandingDowntime":[false,false,false,true]}},{"ix":116,"action":{"kind":"Deliver","chain":"provider","numPackets":5},"partialState":{"h":10,"t":60,"tokens":[4926,7846,4046,15712],"delegation":[3926,6846,3046,14712],"delegatorTokens":9999999944036,"jailed":[1000000000000035,null,1000000000000029,1000000000000047],"status":["unbonding","bonded","unbonding","unbonding"]}},{"ix":117,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":11,"t":66,"tokens":[4926,7846,4046,15712],"delegation":[3926,6846,3046,14712],"delegatorTokens":9999999944036,"jailed":[1000000000000035,null,1000000000000029,1000000000000047],"status":["unbonding","bonded","unbonding","unbonding"]}},{"ix":118,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":119,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":12,"t":72,"consumerPower":[null,3048,null,7975],"outstandingDowntime":[false,false,false,true]}},{"ix":120,"action":{"kind":"Delegate","val":3,"amt":4845},"partialState":{"h":11,"t":66,"tokens":[4926,7846,4046,20557],"delegation":[3926,6846,3046,19557],"delegatorTokens":9999999939191}},{"ix":121,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":122,"action":{"kind":"Undelegate","val":3,"amt":2703},"partialState":{"h":11,"t":66,"tokens":[4926,7846,4046,17854],"delegation":[3926,6846,3046,16854],"delegatorTokens":9999999939191}},{"ix":123,"action":{"kind":"Undelegate","val":1,"amt":2207},"partialState":{"h":11,"t":66,"tokens":[4926,5639,4046,17854],"delegation":[3926,4639,3046,16854],"delegatorTokens":9999999939191}},{"ix":124,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":12,"t":72,"tokens":[4926,5639,4046,17854],"delegation":[3926,4639,3046,16854],"delegatorTokens":9999999939191,"jailed":[1000000000000035,null,1000000000000029,1000000000000047],"status":["unbonding","bonded","unbonding","unbonding"]}},{"ix":125,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":126,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":127,"action":{"kind":"Undelegate","val":2,"amt":1062},"partialState":{"h":12,"t":72,"tokens":[4926,5639,2984,17854],"delegation":[3926,4639,1984,16854],"delegatorTokens":9999999939191}},{"ix":128,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":129,"action":{"kind":"Deliver","chain":"consumer","numPackets":2},"partialState":{"h":12,"t":72,"consumerPower":[null,3048,null,7975],"outstandingDowntime":[false,false,false,false]}},{"ix":130,"action":{"kind":"Delegate","val":2,"amt":4390},"partialState":{"h":12,"t":72,"tokens":[4926,5639,7374,17854],"delegation":[3926,4639,6374,16854],"delegatorTokens":9999999934801}},{"ix":131,"action":{"kind":"Undelegate","val":1,"amt":4132},"partialState":{"h":12,"t":72,"tokens":[4926,1507,7374,17854],"delegation":[3926,507,6374,16854],"delegatorTokens":9999999934801}},{"ix":132,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":13,"t":78,"tokens":[4926,1507,7374,17854],"delegation":[3926,507,6374,16854],"delegatorTokens":9999999934801,"jailed":[1000000000000035,null,1000000000000029,1000000000000047],"status":["unbonding","bonded","unbonding","unbonding"]}},{"ix":133,"action":{"kind":"Deliver","chain":"consumer","numPackets":2},"partialState":{"h":12,"t":72,"consumerPower":[null,3048,null,7975],"outstandingDowntime":[false,false,false,false]}},{"ix":134,"action":{"kind":"Delegate","val":1,"amt":3783},"partialState":{"h":13,"t":78,"tokens":[4926,5290,7374,17854],"delegation":[3926,4290,6374,16854],"delegatorTokens":9999999931018}},{"ix":135,"action":{"kind":"Undelegate","val":3,"amt":3938},"partialState":{"h":13,"t":78,"tokens":[4926,5290,7374,13916],"delegation":[3926,4290,6374,12916],"delegatorTokens":9999999931018}},{"ix":136,"action":{"kind":"Undelegate","val":2,"amt":2721},"partialState":{"h":13,"t":78,"tokens":[4926,5290,4653,13916],"delegation":[3926,4290,3653,12916],"delegatorTokens":9999999931018}},{"ix":137,"action":{"kind":"Delegate","val":1,"amt":2845},"partialState":{"h":13,"t":78,"tokens":[4926,8135,4653,13916],"delegation":[3926,7135,3653,12916],"delegatorTokens":9999999928173}},{"ix":138,"action":{"kind":"Undelegate","val":2,"amt":2098},"partialState":{"h":13,"t":78,"tokens":[4926,8135,2555,13916],"delegation":[3926,7135,1555,12916],"delegatorTokens":9999999928173}},{"ix":139,"action":{"kind":"Delegate","val":3,"amt":4609},"partialState":{"h":13,"t":78,"tokens":[4926,8135,2555,18525],"delegation":[3926,7135,1555,17525],"delegatorTokens":9999999923564}},{"ix":140,"action":{"kind":"Deliver","chain":"consumer","numPackets":6},"partialState":{"h":12,"t":72,"consumerPower":[null,3048,null,7975],"outstandingDowntime":[false,false,false,false]}},{"ix":141,"action":{"kind":"Delegate","val":2,"amt":1975},"partialState":{"h":13,"t":78,"tokens":[4926,8135,4530,18525],"delegation":[3926,7135,3530,17525],"delegatorTokens":9999999921589}},{"ix":142,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":14,"t":84,"tokens":[4926,8135,4530,18525],"delegation":[3926,7135,3530,17525],"delegatorTokens":9999999921589,"jailed":[1000000000000035,null,1000000000000029,1000000000000047],"status":["unbonding","bonded","unbonding","unbonding"]}},{"ix":143,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":144,"action":{"kind":"Undelegate","val":3,"amt":3424},"partialState":{"h":14,"t":84,"tokens":[4926,8135,4530,15101],"delegation":[3926,7135,3530,14101],"delegatorTokens":9999999921589}},{"ix":145,"action":{"kind":"Delegate","val":0,"amt":1112},"partialState":{"h":14,"t":84,"tokens":[6038,8135,4530,15101],"delegation":[5038,7135,3530,14101],"delegatorTokens":9999999920477}},{"ix":146,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":15,"t":90,"tokens":[6038,8135,4530,15101],"delegation":[5038,7135,3530,14101],"delegatorTokens":9999999920477,"jailed":[1000000000000035,null,1000000000000029,1000000000000047],"status":["unbonding","bonded","unbonding","unbonding"]}},{"ix":147,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":13,"t":78,"consumerPower":[null,5639,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":148,"action":{"kind":"Delegate","val":2,"amt":1181},"partialState":{"h":15,"t":90,"tokens":[6038,8135,5711,15101],"delegation":[5038,7135,4711,14101],"delegatorTokens":9999999919296}},{"ix":149,"action":{"kind":"Deliver","chain":"consumer","numPackets":5},"partialState":{"h":13,"t":78,"consumerPower":[null,5639,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":150,"action":{"kind":"Delegate","val":0,"amt":3840},"partialState":{"h":15,"t":90,"tokens":[9878,8135,5711,15101],"delegation":[8878,7135,4711,14101],"delegatorTokens":9999999915456}},{"ix":151,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":152,"action":{"kind":"Deliver","chain":"consumer","numPackets":4},"partialState":{"h":13,"t":78,"consumerPower":[null,5639,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":153,"action":{"kind":"Deliver","chain":"consumer","numPackets":2},"partialState":{"h":13,"t":78,"consumerPower":[null,5639,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":154,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":155,"action":{"kind":"Deliver","chain":"consumer","numPackets":5},"partialState":{"h":13,"t":78,"consumerPower":[null,5639,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":156,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":14,"t":84,"consumerPower":[null,8135,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":157,"action":{"kind":"Undelegate","val":1,"amt":1514},"partialState":{"h":15,"t":90,"tokens":[9878,6621,5711,15101],"delegation":[8878,5621,4711,14101],"delegatorTokens":9999999915456}},{"ix":158,"action":{"kind":"Undelegate","val":3,"amt":2295},"partialState":{"h":15,"t":90,"tokens":[9878,6621,5711,12806],"delegation":[8878,5621,4711,11806],"delegatorTokens":9999999915456}},{"ix":159,"action":{"kind":"Delegate","val":1,"amt":2200},"partialState":{"h":15,"t":90,"tokens":[9878,8821,5711,12806],"delegation":[8878,7821,4711,11806],"delegatorTokens":9999999913256}},{"ix":160,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":161,"action":{"kind":"Delegate","val":0,"amt":2010},"partialState":{"h":15,"t":90,"tokens":[11888,8821,5711,12806],"delegation":[10888,7821,4711,11806],"delegatorTokens":9999999911246}},{"ix":162,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":16,"t":96,"tokens":[11888,8821,5711,12806],"delegation":[10888,7821,4711,11806],"delegatorTokens":9999999911246,"jailed":[1000000000000035,null,1000000000000029,1000000000000047],"status":["unbonding","bonded","unbonding","unbonding"]}},{"ix":163,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":164,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":165,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":15,"t":90,"consumerPower":[null,8135,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":166,"action":{"kind":"Deliver","chain":"consumer","numPackets":4},"partialState":{"h":15,"t":90,"consumerPower":[null,8135,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":167,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":17,"t":102,"tokens":[11888,8821,5711,12806],"delegation":[10888,7821,4711,11806],"delegatorTokens":9999999911246,"jailed":[1000000000000035,null,1000000000000029,1000000000000047],"status":["unbonding","bonded","unbonding","unbonding"]}},{"ix":168,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":18,"t":108,"tokens":[11888,8821,5711,12806],"delegation":[10888,7821,4711,11806],"delegatorTokens":9999999911246,"jailed":[1000000000000035,null,1000000000000029,1000000000000047],"status":["unbonding","bonded","unbonding","unbonding"]}},{"ix":169,"action":{"kind":"Delegate","val":0,"amt":2511},"partialState":{"h":18,"t":108,"tokens":[14399,8821,5711,12806],"delegation":[13399,7821,4711,11806],"delegatorTokens":9999999908735}},{"ix":170,"action":{"kind":"Deliver","chain":"provider","numPackets":3},"partialState":{"h":18,"t":108,"tokens":[14399,8821,5711,12806],"delegation":[13399,7821,4711,11806],"delegatorTokens":9999999908735,"jailed":[1000000000000035,null,1000000000000029,1000000000000047],"status":["unbonding","bonded","unbonding","unbonding"]}},{"ix":171,"action":{"kind":"Delegate","val":0,"amt":3896},"partialState":{"h":18,"t":108,"tokens":[18295,8821,5711,12806],"delegation":[17295,7821,4711,11806],"delegatorTokens":9999999904839}},{"ix":172,"action":{"kind":"Undelegate","val":3,"amt":3505},"partialState":{"h":18,"t":108,"tokens":[18295,8821,5711,9301],"delegation":[17295,7821,4711,8301],"delegatorTokens":9999999904839}},{"ix":173,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":16,"t":96,"consumerPower":[null,8135,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":174,"action":{"kind":"Undelegate","val":3,"amt":1486},"partialState":{"h":18,"t":108,"tokens":[18295,8821,5711,7815],"delegation":[17295,7821,4711,6815],"delegatorTokens":9999999904839}},{"ix":175,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":176,"action":{"kind":"Undelegate","val":3,"amt":3938},"partialState":{"h":18,"t":108,"tokens":[18295,8821,5711,3877],"delegation":[17295,7821,4711,2877],"delegatorTokens":9999999904839}},{"ix":177,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":178,"action":{"kind":"Deliver","chain":"provider","numPackets":1},"partialState":{"h":18,"t":108,"tokens":[18295,8821,5711,3877],"delegation":[17295,7821,4711,2877],"delegatorTokens":9999999904839,"jailed":[1000000000000035,null,1000000000000029,1000000000000047],"status":["unbonding","bonded","unbonding","unbonding"]}},{"ix":179,"action":{"kind":"Delegate","val":0,"amt":1696},"partialState":{"h":18,"t":108,"tokens":[19991,8821,5711,3877],"delegation":[18991,7821,4711,2877],"delegatorTokens":9999999903143}},{"ix":180,"action":{"kind":"Delegate","val":3,"amt":4870},"partialState":{"h":18,"t":108,"tokens":[19991,8821,5711,8747],"delegation":[18991,7821,4711,7747],"delegatorTokens":9999999898273}},{"ix":181,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":17,"t":102,"consumerPower":[null,8135,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":182,"action":{"kind":"Deliver","chain":"provider","numPackets":3},"partialState":{"h":18,"t":108,"tokens":[19991,8821,5711,8747],"delegation":[18991,7821,4711,7747],"delegatorTokens":9999999898273,"jailed":[1000000000000035,null,1000000000000029,1000000000000047],"status":["unbonding","bonded","unbonding","unbonding"]}},{"ix":183,"action":{"kind":"Deliver","chain":"provider","numPackets":4},"partialState":{"h":18,"t":108,"tokens":[19991,8821,5711,8747],"delegation":[18991,7821,4711,7747],"delegatorTokens":9999999898273,"jailed":[1000000000000035,null,1000000000000029,1000000000000047],"status":["unbonding","bonded","unbonding","unbonding"]}},{"ix":184,"action":{"kind":"Deliver","chain":"provider","numPackets":6},"partialState":{"h":18,"t":108,"tokens":[19991,8821,5711,8747],"delegation":[18991,7821,4711,7747],"delegatorTokens":9999999898273,"jailed":[1000000000000035,null,1000000000000029,1000000000000047],"status":["unbonding","bonded","unbonding","unbonding"]}},{"ix":185,"action":{"kind":"Delegate","val":3,"amt":3388},"partialState":{"h":18,"t":108,"tokens":[19991,8821,5711,12135],"delegation":[18991,7821,4711,11135],"delegatorTokens":9999999894885}},{"ix":186,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":187,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":188,"action":{"kind":"Delegate","val":0,"amt":4039},"partialState":{"h":18,"t":108,"tokens":[24030,8821,5711,12135],"delegation":[23030,7821,4711,11135],"delegatorTokens":9999999890846}},{"ix":189,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":190,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":191,"action":{"kind":"Deliver","chain":"consumer","numPackets":1},"partialState":{"h":17,"t":102,"consumerPower":[null,8135,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":192,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":193,"action":{"kind":"Deliver","chain":"provider","numPackets":5},"partialState":{"h":18,"t":108,"tokens":[24030,8821,5711,12135],"delegation":[23030,7821,4711,11135],"delegatorTokens":9999999890846,"jailed":[1000000000000035,null,1000000000000029,1000000000000047],"status":["unbonding","bonded","unbonding","unbonding"]}},{"ix":194,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":19,"t":114,"tokens":[24030,8821,5711,12135],"delegation":[23030,7821,4711,11135],"delegatorTokens":9999999923869,"jailed":[1000000000000035,null,1000000000000029,1000000000000047],"status":["unbonding","bonded","unbonding","unbonding"]}},{"ix":195,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":20,"t":120,"tokens":[24030,8821,5711,12135],"delegation":[23030,7821,4711,11135],"delegatorTokens":9999999923869,"jailed":[1000000000000035,null,1000000000000029,1000000000000047],"status":["unbonded","bonded","unbonded","unbonding"]}},{"ix":196,"action":{"kind":"Deliver","chain":"consumer","numPackets":1},"partialState":{"h":17,"t":102,"consumerPower":[null,8135,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":197,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":18,"t":108,"consumerPower":[null,8821,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":198,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":19,"t":114,"consumerPower":[null,8821,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":199,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}}],"events":["send_double_sign_slash_request","insufficient_shares","send_double_sign_slash_request","send_downtime_slash_request","more_than_one_third_val_power_change","send_vsc_without_downtime_ack","send_double_sign_slash_request","more_than_one_third_val_power_change","rebond_unval","send_vsc_without_downtime_ack","send_double_sign_slash_request","send_downtime_slash_request","send_double_sign_slash_request","insufficient_shares","send_vsc_without_downtime_ack","consumer_update_val","consumer_del_val","consumer_add_val","receive_double_sign_slash_request","insufficient_shares","consumer_del_val","consumer_add_val","consumer_update_val","send_double_sign_slash_request","insufficient_shares","send_double_sign_slash_request","receive_double_sign_slash_request","receive_double_sign_slash_request","receive_double_sign_slash_request","more_than_one_third_val_power_change","receive_downtime_slash_request","jail","send_vsc_with_downtime_ack","insufficient_shares","downtime_slash_request_outstanding","send_downtime_slash_request","receive_double_sign_slash_request","rebond_unval","receive_downtime_slash_request","jail","send_vsc_with_downtime_ack","send_vsc_not_because_change","send_vsc_without_downtime_ack","receive_double_sign_slash_request","receive_double_sign_slash_request","receive_downtime_slash_ack","receive_downtime_slash_ack","consumer_update_val","consumer_del_val","consumer_update_val","insufficient_shares","receive_downtime_slash_request","jail","send_vsc_with_downtime_ack","insufficient_shares","send_vsc_without_downtime_ack","consumer_send_maturation","send_vsc_without_downtime_ack","receive_downtime_slash_ack","send_vsc_without_downtime_ack","some_undels_expired_but_not_completed","send_vsc_without_downtime_ack","some_undels_expired_but_not_completed","send_vsc_not_because_change","send_vsc_without_downtime_ack","consumer_send_maturation","consumer_send_maturation","consumer_update_val","consumer_del_val","consumer_update_val","some_undels_expired_but_not_completed","send_vsc_without_downtime_ack","some_undels_expired_but_not_completed","consumer_send_maturation","consumer_send_maturation","some_undels_expired_but_not_completed","complete_undel_immediate","complete_undel_immediate","complete_undel_immediate","set_unval_hold_false","complete_undel_immediate","complete_undel_immediate","complete_undel_immediate","complete_undel_immediate","complete_undel_immediate","complete_undel_immediate","complete_undel_immediate","set_unval_hold_false","send_vsc_not_because_change","send_vsc_without_downtime_ack","complete_unval_in_endblock","complete_unval_in_endblock","some_undels_expired_but_not_completed","consumer_update_val"]},{"meta":{"commit":"7ffd0c04e4205cbc9caf212abfe6c59ee43153bf"},"constants":{"P":"provider","C":"consumer","UNBONDING_SECONDS_P":70,"UNBONDING_SECONDS_C":50,"TRUSTING_SECONDS":49,"NUM_VALIDATORS":4,"MAX_VALIDATORS":2,"SLASH_DOUBLESIGN":0,"SLASH_DOWNTIME":0,"JAIL_SECONDS":999999999999999,"BLOCK_SECONDS":6,"INITIAL_DELEGATOR_TOKENS":10000000000000,"DELEGATE_AMT_MIN":1000,"DELEGATE_AMT_MAX":5000,"UNDELEGATE_AMT_MIN":1000,"UNDELEGATE_AMT_MAX":5000,"ISDOWNTIME_PROBABILITY":0.5,"MAX_NUM_PACKETS_FOR_DELIVER":6},"actions":[{"ix":0,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":1,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":2,"action":{"kind":"Undelegate","val":0,"amt":1816},"partialState":{"h":1,"t":6,"tokens":[3184,4000,3000,2000],"delegation":[2184,3000,2000,1000],"delegatorTokens":10000000000000}},{"ix":3,"action":{"kind":"Undelegate","val":0,"amt":1566},"partialState":{"h":1,"t":6,"tokens":[1618,4000,3000,2000],"delegation":[618,3000,2000,1000],"delegatorTokens":10000000000000}},{"ix":4,"action":{"kind":"ConsumerSlash","val":0,"infractionHeight":0,"isDowntime":true},"partialState":{"h":1,"t":6,"outstandingDowntime":[true,false,false,false]}},{"ix":5,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":2,"t":12,"tokens":[1618,4000,3000,2000],"delegation":[618,3000,2000,1000],"delegatorTokens":10000000000000,"jailed":[null,null,null,null],"status":["unbonding","bonded","bonded","unbonded"]}},{"ix":6,"action":{"kind":"Deliver","chain":"provider","numPackets":1},"partialState":{"h":2,"t":12,"tokens":[1618,4000,3000,2000],"delegation":[618,3000,2000,1000],"delegatorTokens":10000000000000,"jailed":[null,null,null,null],"status":["unbonding","bonded","bonded","unbonded"]}},{"ix":7,"action":{"kind":"ConsumerSlash","val":3,"infractionHeight":0,"isDowntime":true},"partialState":{"h":1,"t":6,"outstandingDowntime":[true,false,false,true]}},{"ix":8,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":3,"t":18,"tokens":[1618,4000,3000,2000],"delegation":[618,3000,2000,1000],"delegatorTokens":10000000000000,"jailed":[null,null,null,null],"status":["unbonding","bonded","bonded","unbonded"]}},{"ix":9,"action":{"kind":"ConsumerSlash","val":3,"infractionHeight":0,"isDowntime":true},"partialState":{"h":1,"t":6,"outstandingDowntime":[true,false,false,true]}},{"ix":10,"action":{"kind":"Delegate","val":1,"amt":1405},"partialState":{"h":3,"t":18,"tokens":[1618,5405,3000,2000],"delegation":[618,4405,2000,1000],"delegatorTokens":9999999998595}},{"ix":11,"action":{"kind":"Delegate","val":0,"amt":3926},"partialState":{"h":3,"t":18,"tokens":[5544,5405,3000,2000],"delegation":[4544,4405,2000,1000],"delegatorTokens":9999999994669}},{"ix":12,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":2,"t":12,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[true,false,false,true]}},{"ix":13,"action":{"kind":"Deliver","chain":"provider","numPackets":3},"partialState":{"h":3,"t":18,"tokens":[5544,5405,3000,2000],"delegation":[4544,4405,2000,1000],"delegatorTokens":9999999994669,"jailed":[null,null,null,null],"status":["unbonding","bonded","bonded","unbonded"]}},{"ix":14,"action":{"kind":"Deliver","chain":"provider","numPackets":6},"partialState":{"h":3,"t":18,"tokens":[5544,5405,3000,2000],"delegation":[4544,4405,2000,1000],"delegatorTokens":9999999994669,"jailed":[null,null,null,null],"status":["unbonding","bonded","bonded","unbonded"]}},{"ix":15,"action":{"kind":"Deliver","chain":"consumer","numPackets":1},"partialState":{"h":2,"t":12,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[true,false,false,true]}},{"ix":16,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":17,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":18,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":4,"t":24,"tokens":[5544,5405,3000,2000],"delegation":[4544,4405,2000,1000],"delegatorTokens":9999999994669,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonding","unbonded"]}},{"ix":19,"action":{"kind":"Undelegate","val":2,"amt":2763},"partialState":{"h":4,"t":24,"tokens":[5544,5405,3000,2000],"delegation":[4544,4405,2000,1000],"delegatorTokens":9999999994669}},{"ix":20,"action":{"kind":"Deliver","chain":"consumer","numPackets":5},"partialState":{"h":2,"t":12,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[true,false,false,true]}},{"ix":21,"action":{"kind":"Undelegate","val":0,"amt":2518},"partialState":{"h":4,"t":24,"tokens":[3026,5405,3000,2000],"delegation":[2026,4405,2000,1000],"delegatorTokens":9999999994669}},{"ix":22,"action":{"kind":"ConsumerSlash","val":0,"infractionHeight":0,"isDowntime":false},"partialState":{"h":2,"t":12,"outstandingDowntime":[true,false,false,true]}},{"ix":23,"action":{"kind":"Deliver","chain":"consumer","numPackets":1},"partialState":{"h":2,"t":12,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[true,false,false,true]}},{"ix":24,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":25,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":26,"action":{"kind":"Undelegate","val":0,"amt":2129},"partialState":{"h":4,"t":24,"tokens":[3026,5405,3000,2000],"delegation":[2026,4405,2000,1000],"delegatorTokens":9999999994669}},{"ix":27,"action":{"kind":"ConsumerSlash","val":0,"infractionHeight":0,"isDowntime":false},"partialState":{"h":2,"t":12,"outstandingDowntime":[true,false,false,true]}},{"ix":28,"action":{"kind":"Deliver","chain":"provider","numPackets":2},"partialState":{"h":4,"t":24,"tokens":[3026,5405,3000,2000],"delegation":[2026,4405,2000,1000],"delegatorTokens":9999999994669,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonding","unbonded"]}},{"ix":29,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":30,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":5,"t":30,"tokens":[3026,5405,3000,2000],"delegation":[2026,4405,2000,1000],"delegatorTokens":9999999994669,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonding","unbonded"]}},{"ix":31,"action":{"kind":"Deliver","chain":"provider","numPackets":2},"partialState":{"h":5,"t":30,"tokens":[3026,5405,3000,2000],"delegation":[2026,4405,2000,1000],"delegatorTokens":9999999994669,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonding","unbonded"]}},{"ix":32,"action":{"kind":"Deliver","chain":"provider","numPackets":6},"partialState":{"h":5,"t":30,"tokens":[3026,5405,3000,2000],"delegation":[2026,4405,2000,1000],"delegatorTokens":9999999994669,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonding","unbonded"]}},{"ix":33,"action":{"kind":"ConsumerSlash","val":3,"infractionHeight":1,"isDowntime":true},"partialState":{"h":2,"t":12,"outstandingDowntime":[true,false,false,true]}},{"ix":34,"action":{"kind":"Undelegate","val":1,"amt":2297},"partialState":{"h":5,"t":30,"tokens":[3026,3108,3000,2000],"delegation":[2026,2108,2000,1000],"delegatorTokens":9999999994669}},{"ix":35,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":3,"t":18,"consumerPower":[null,4000,3000,null],"outstandingDowntime":[true,false,false,true]}},{"ix":36,"action":{"kind":"Delegate","val":0,"amt":2998},"partialState":{"h":5,"t":30,"tokens":[6024,3108,3000,2000],"delegation":[5024,2108,2000,1000],"delegatorTokens":9999999991671}},{"ix":37,"action":{"kind":"Undelegate","val":2,"amt":1081},"partialState":{"h":5,"t":30,"tokens":[6024,3108,1919,2000],"delegation":[5024,2108,919,1000],"delegatorTokens":9999999991671}},{"ix":38,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":39,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":4,"t":24,"consumerPower":[null,4000,3000,null],"outstandingDowntime":[true,false,false,true]}},{"ix":40,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":41,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":5,"t":30,"consumerPower":[null,4000,3000,null],"outstandingDowntime":[true,false,false,true]}},{"ix":42,"action":{"kind":"Delegate","val":3,"amt":1646},"partialState":{"h":5,"t":30,"tokens":[6024,3108,1919,3646],"delegation":[5024,2108,919,2646],"delegatorTokens":9999999990025}},{"ix":43,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":6,"t":36,"consumerPower":[null,4000,3000,null],"outstandingDowntime":[true,false,false,true]}},{"ix":44,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":7,"t":42,"consumerPower":[null,4000,3000,null],"outstandingDowntime":[true,false,false,true]}},{"ix":45,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":46,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":8,"t":48,"consumerPower":[null,4000,3000,null],"outstandingDowntime":[true,false,false,true]}},{"ix":47,"action":{"kind":"Undelegate","val":3,"amt":1900},"partialState":{"h":5,"t":30,"tokens":[6024,3108,1919,1746],"delegation":[5024,2108,919,746],"delegatorTokens":9999999990025}},{"ix":48,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":6,"t":36,"tokens":[6024,3108,1919,1746],"delegation":[5024,2108,919,746],"delegatorTokens":9999999990025,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonding","unbonded"]}},{"ix":49,"action":{"kind":"ConsumerSlash","val":3,"infractionHeight":5,"isDowntime":true},"partialState":{"h":8,"t":48,"outstandingDowntime":[true,false,false,true]}},{"ix":50,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":51,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":7,"t":42,"tokens":[6024,3108,1919,1746],"delegation":[5024,2108,919,746],"delegatorTokens":9999999990025,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonding","unbonded"]}},{"ix":52,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":9,"t":54,"consumerPower":[null,4000,3000,null],"outstandingDowntime":[true,false,false,true]}},{"ix":53,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":54,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":55,"action":{"kind":"ConsumerSlash","val":3,"infractionHeight":3,"isDowntime":true},"partialState":{"h":9,"t":54,"outstandingDowntime":[true,false,false,true]}},{"ix":56,"action":{"kind":"Delegate","val":3,"amt":3788},"partialState":{"h":7,"t":42,"tokens":[6024,3108,1919,5534],"delegation":[5024,2108,919,4534],"delegatorTokens":9999999986237}},{"ix":57,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":8,"t":48,"tokens":[6024,3108,1919,5534],"delegation":[5024,2108,919,4534],"delegatorTokens":9999999986237,"jailed":[null,null,null,null],"status":["bonded","unbonding","unbonding","bonded"]}},{"ix":58,"action":{"kind":"ConsumerSlash","val":0,"infractionHeight":8,"isDowntime":true},"partialState":{"h":9,"t":54,"outstandingDowntime":[true,false,false,true]}},{"ix":59,"action":{"kind":"ConsumerSlash","val":3,"infractionHeight":1,"isDowntime":false},"partialState":{"h":9,"t":54,"outstandingDowntime":[true,false,false,true]}},{"ix":60,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":10,"t":60,"consumerPower":[null,4000,3000,null],"outstandingDowntime":[true,false,false,true]}},{"ix":61,"action":{"kind":"Deliver","chain":"provider","numPackets":1},"partialState":{"h":8,"t":48,"tokens":[6024,3108,1919,5534],"delegation":[5024,2108,919,4534],"delegatorTokens":9999999986237,"jailed":[null,null,null,null],"status":["bonded","unbonding","unbonding","bonded"]}},{"ix":62,"action":{"kind":"ConsumerSlash","val":0,"infractionHeight":4,"isDowntime":true},"partialState":{"h":10,"t":60,"outstandingDowntime":[true,false,false,true]}},{"ix":63,"action":{"kind":"Undelegate","val":3,"amt":4761},"partialState":{"h":8,"t":48,"tokens":[6024,3108,1919,5534],"delegation":[5024,2108,919,4534],"delegatorTokens":9999999986237}},{"ix":64,"action":{"kind":"Deliver","chain":"provider","numPackets":3},"partialState":{"h":8,"t":48,"tokens":[6024,3108,1919,5534],"delegation":[5024,2108,919,4534],"delegatorTokens":9999999986237,"jailed":[null,null,null,null],"status":["bonded","unbonding","unbonding","bonded"]}},{"ix":65,"action":{"kind":"Undelegate","val":0,"amt":4490},"partialState":{"h":8,"t":48,"tokens":[1534,3108,1919,5534],"delegation":[534,2108,919,4534],"delegatorTokens":9999999986237}},{"ix":66,"action":{"kind":"ConsumerSlash","val":3,"infractionHeight":7,"isDowntime":true},"partialState":{"h":10,"t":60,"outstandingDowntime":[true,false,false,true]}},{"ix":67,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":68,"action":{"kind":"ConsumerSlash","val":0,"infractionHeight":8,"isDowntime":false},"partialState":{"h":10,"t":60,"outstandingDowntime":[true,false,false,true]}},{"ix":69,"action":{"kind":"Deliver","chain":"consumer","numPackets":5},"partialState":{"h":10,"t":60,"consumerPower":[null,4000,3000,null],"outstandingDowntime":[true,false,false,true]}},{"ix":70,"action":{"kind":"Deliver","chain":"provider","numPackets":3},"partialState":{"h":8,"t":48,"tokens":[1534,3108,1919,5534],"delegation":[534,2108,919,4534],"delegatorTokens":9999999986237,"jailed":[null,null,null,null],"status":["bonded","unbonding","unbonding","bonded"]}},{"ix":71,"action":{"kind":"ConsumerSlash","val":0,"infractionHeight":9,"isDowntime":true},"partialState":{"h":10,"t":60,"outstandingDowntime":[true,false,false,true]}},{"ix":72,"action":{"kind":"Delegate","val":0,"amt":4120},"partialState":{"h":8,"t":48,"tokens":[5654,3108,1919,5534],"delegation":[4654,2108,919,4534],"delegatorTokens":9999999982117}},{"ix":73,"action":{"kind":"ConsumerSlash","val":0,"infractionHeight":7,"isDowntime":true},"partialState":{"h":10,"t":60,"outstandingDowntime":[true,false,false,true]}},{"ix":74,"action":{"kind":"Deliver","chain":"consumer","numPackets":6},"partialState":{"h":10,"t":60,"consumerPower":[null,4000,3000,null],"outstandingDowntime":[true,false,false,true]}},{"ix":75,"action":{"kind":"Delegate","val":2,"amt":3130},"partialState":{"h":8,"t":48,"tokens":[5654,3108,5049,5534],"delegation":[4654,2108,4049,4534],"delegatorTokens":9999999978987}},{"ix":76,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":77,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":78,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":11,"t":66,"consumerPower":[6024,3108,null,null],"outstandingDowntime":[true,false,false,true]}},{"ix":79,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":12,"t":72,"consumerPower":[6024,3108,null,null],"outstandingDowntime":[true,false,false,true]}},{"ix":80,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":9,"t":54,"tokens":[5654,3108,5049,5534],"delegation":[4654,2108,4049,4534],"delegatorTokens":9999999978987,"jailed":[1000000000000047,null,null,1000000000000047],"status":["bonded","unbonding","unbonding","bonded"]}},{"ix":81,"action":{"kind":"Deliver","chain":"consumer","numPackets":1},"partialState":{"h":12,"t":72,"consumerPower":[6024,3108,null,null],"outstandingDowntime":[true,false,false,true]}},{"ix":82,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":13,"t":78,"consumerPower":[6024,null,null,5534],"outstandingDowntime":[true,false,false,true]}},{"ix":83,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":10,"t":60,"tokens":[5654,3108,5049,5534],"delegation":[4654,2108,4049,4534],"delegatorTokens":9999999978987,"jailed":[1000000000000047,null,null,1000000000000047],"status":["unbonding","bonded","bonded","unbonding"]}},{"ix":84,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":85,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":14,"t":84,"consumerPower":[6024,null,null,5534],"outstandingDowntime":[true,false,false,true]}},{"ix":86,"action":{"kind":"Undelegate","val":0,"amt":2228},"partialState":{"h":10,"t":60,"tokens":[3426,3108,5049,5534],"delegation":[2426,2108,4049,4534],"delegatorTokens":9999999978987}},{"ix":87,"action":{"kind":"Undelegate","val":3,"amt":4655},"partialState":{"h":10,"t":60,"tokens":[3426,3108,5049,5534],"delegation":[2426,2108,4049,4534],"delegatorTokens":9999999978987}},{"ix":88,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":89,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":90,"action":{"kind":"Deliver","chain":"consumer","numPackets":6},"partialState":{"h":14,"t":84,"consumerPower":[6024,null,null,5534],"outstandingDowntime":[false,false,false,false]}},{"ix":91,"action":{"kind":"Deliver","chain":"consumer","numPackets":6},"partialState":{"h":14,"t":84,"consumerPower":[6024,null,null,5534],"outstandingDowntime":[false,false,false,false]}},{"ix":92,"action":{"kind":"Delegate","val":2,"amt":2548},"partialState":{"h":10,"t":60,"tokens":[3426,3108,7597,5534],"delegation":[2426,2108,6597,4534],"delegatorTokens":9999999976439}},{"ix":93,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":94,"action":{"kind":"ConsumerSlash","val":0,"infractionHeight":0,"isDowntime":true},"partialState":{"h":14,"t":84,"outstandingDowntime":[true,false,false,false]}},{"ix":95,"action":{"kind":"Undelegate","val":0,"amt":3599},"partialState":{"h":10,"t":60,"tokens":[3426,3108,7597,5534],"delegation":[2426,2108,6597,4534],"delegatorTokens":9999999976439}},{"ix":96,"action":{"kind":"Delegate","val":1,"amt":2101},"partialState":{"h":10,"t":60,"tokens":[3426,5209,7597,5534],"delegation":[2426,4209,6597,4534],"delegatorTokens":9999999974338}},{"ix":97,"action":{"kind":"Undelegate","val":1,"amt":1915},"partialState":{"h":10,"t":60,"tokens":[3426,3294,7597,5534],"delegation":[2426,2294,6597,4534],"delegatorTokens":9999999974338}},{"ix":98,"action":{"kind":"ConsumerSlash","val":1,"infractionHeight":2,"isDowntime":true},"partialState":{"h":14,"t":84,"outstandingDowntime":[true,true,false,false]}},{"ix":99,"action":{"kind":"Deliver","chain":"provider","numPackets":5},"partialState":{"h":10,"t":60,"tokens":[3426,3294,7597,5534],"delegation":[2426,2294,6597,4534],"delegatorTokens":9999999974338,"jailed":[1000000000000047,null,null,1000000000000047],"status":["unbonding","bonded","bonded","unbonding"]}},{"ix":100,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":11,"t":66,"tokens":[3426,3294,7597,5534],"delegation":[2426,2294,6597,4534],"delegatorTokens":9999999974338,"jailed":[1000000000000047,null,null,1000000000000047],"status":["unbonding","bonded","bonded","unbonding"]}},{"ix":101,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":12,"t":72,"tokens":[3426,3294,7597,5534],"delegation":[2426,2294,6597,4534],"delegatorTokens":9999999974338,"jailed":[1000000000000047,null,null,1000000000000047],"status":["unbonding","bonded","bonded","unbonding"]}},{"ix":102,"action":{"kind":"Deliver","chain":"provider","numPackets":1},"partialState":{"h":12,"t":72,"tokens":[3426,3294,7597,5534],"delegation":[2426,2294,6597,4534],"delegatorTokens":9999999974338,"jailed":[1000000000000047,null,null,1000000000000047],"status":["unbonding","bonded","bonded","unbonding"]}},{"ix":103,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":104,"action":{"kind":"Undelegate","val":1,"amt":4877},"partialState":{"h":12,"t":72,"tokens":[3426,3294,7597,5534],"delegation":[2426,2294,6597,4534],"delegatorTokens":9999999974338}},{"ix":105,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":13,"t":78,"tokens":[3426,3294,7597,5534],"delegation":[2426,2294,6597,4534],"delegatorTokens":9999999974338,"jailed":[1000000000000047,null,null,1000000000000047],"status":["unbonding","bonded","bonded","unbonding"]}},{"ix":106,"action":{"kind":"Deliver","chain":"consumer","numPackets":1},"partialState":{"h":14,"t":84,"consumerPower":[6024,null,null,5534],"outstandingDowntime":[true,true,false,false]}},{"ix":107,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":108,"action":{"kind":"Deliver","chain":"consumer","numPackets":1},"partialState":{"h":14,"t":84,"consumerPower":[6024,null,null,5534],"outstandingDowntime":[true,true,false,false]}},{"ix":109,"action":{"kind":"Deliver","chain":"provider","numPackets":3},"partialState":{"h":13,"t":78,"tokens":[3426,3294,7597,5534],"delegation":[2426,2294,6597,4534],"delegatorTokens":9999999974338,"jailed":[1000000000000047,null,null,1000000000000047],"status":["unbonding","bonded","bonded","unbonding"]}},{"ix":110,"action":{"kind":"Undelegate","val":1,"amt":2656},"partialState":{"h":13,"t":78,"tokens":[3426,3294,7597,5534],"delegation":[2426,2294,6597,4534],"delegatorTokens":9999999974338}},{"ix":111,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":112,"action":{"kind":"Deliver","chain":"consumer","numPackets":1},"partialState":{"h":14,"t":84,"consumerPower":[6024,null,null,5534],"outstandingDowntime":[true,true,false,false]}},{"ix":113,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":114,"action":{"kind":"Deliver","chain":"provider","numPackets":3},"partialState":{"h":13,"t":78,"tokens":[3426,3294,7597,5534],"delegation":[2426,2294,6597,4534],"delegatorTokens":9999999974338,"jailed":[1000000000000047,null,null,1000000000000047],"status":["unbonding","bonded","bonded","unbonding"]}},{"ix":115,"action":{"kind":"Deliver","chain":"provider","numPackets":6},"partialState":{"h":13,"t":78,"tokens":[3426,3294,7597,5534],"delegation":[2426,2294,6597,4534],"delegatorTokens":9999999974338,"jailed":[1000000000000047,null,null,1000000000000047],"status":["unbonding","bonded","bonded","unbonding"]}},{"ix":116,"action":{"kind":"Delegate","val":3,"amt":1377},"partialState":{"h":13,"t":78,"tokens":[3426,3294,7597,6911],"delegation":[2426,2294,6597,5911],"delegatorTokens":9999999972961}},{"ix":117,"action":{"kind":"Deliver","chain":"provider","numPackets":3},"partialState":{"h":13,"t":78,"tokens":[3426,3294,7597,6911],"delegation":[2426,2294,6597,5911],"delegatorTokens":9999999972961,"jailed":[1000000000000047,null,null,1000000000000047],"status":["unbonding","bonded","bonded","unbonding"]}},{"ix":118,"action":{"kind":"Deliver","chain":"consumer","numPackets":4},"partialState":{"h":14,"t":84,"consumerPower":[6024,null,null,5534],"outstandingDowntime":[true,true,false,false]}},{"ix":119,"action":{"kind":"Delegate","val":2,"amt":2861},"partialState":{"h":13,"t":78,"tokens":[3426,3294,10458,6911],"delegation":[2426,2294,9458,5911],"delegatorTokens":9999999970100}},{"ix":120,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":121,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":122,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":123,"action":{"kind":"Deliver","chain":"consumer","numPackets":3},"partialState":{"h":14,"t":84,"consumerPower":[6024,null,null,5534],"outstandingDowntime":[true,true,false,false]}},{"ix":124,"action":{"kind":"Delegate","val":1,"amt":4848},"partialState":{"h":13,"t":78,"tokens":[3426,8142,10458,6911],"delegation":[2426,7142,9458,5911],"delegatorTokens":9999999965252}},{"ix":125,"action":{"kind":"Delegate","val":2,"amt":2146},"partialState":{"h":13,"t":78,"tokens":[3426,8142,12604,6911],"delegation":[2426,7142,11604,5911],"delegatorTokens":9999999963106}},{"ix":126,"action":{"kind":"Deliver","chain":"provider","numPackets":2},"partialState":{"h":13,"t":78,"tokens":[3426,8142,12604,6911],"delegation":[2426,7142,11604,5911],"delegatorTokens":9999999963106,"jailed":[1000000000000047,null,null,1000000000000047],"status":["unbonding","bonded","bonded","unbonding"]}},{"ix":127,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":14,"t":84,"tokens":[3426,8142,12604,6911],"delegation":[2426,7142,11604,5911],"delegatorTokens":9999999966488,"jailed":[1000000000000047,null,null,1000000000000047],"status":["unbonding","bonded","bonded","unbonding"]}},{"ix":128,"action":{"kind":"Delegate","val":0,"amt":4659},"partialState":{"h":14,"t":84,"tokens":[8085,8142,12604,6911],"delegation":[7085,7142,11604,5911],"delegatorTokens":9999999961829}},{"ix":129,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":15,"t":90,"tokens":[8085,8142,12604,6911],"delegation":[7085,7142,11604,5911],"delegatorTokens":9999999961829,"jailed":[1000000000000047,null,null,1000000000000047],"status":["unbonding","bonded","bonded","unbonding"]}},{"ix":130,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":131,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":132,"action":{"kind":"Delegate","val":2,"amt":4060},"partialState":{"h":15,"t":90,"tokens":[8085,8142,16664,6911],"delegation":[7085,7142,15664,5911],"delegatorTokens":9999999957769}},{"ix":133,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":15,"t":90,"consumerPower":[null,3294,7597,null],"outstandingDowntime":[true,true,false,false]}},{"ix":134,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":16,"t":96,"tokens":[8085,8142,16664,6911],"delegation":[7085,7142,15664,5911],"delegatorTokens":9999999957769,"jailed":[1000000000000047,null,null,1000000000000047],"status":["unbonding","bonded","bonded","unbonding"]}},{"ix":135,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":17,"t":102,"tokens":[8085,8142,16664,6911],"delegation":[7085,7142,15664,5911],"delegatorTokens":9999999957769,"jailed":[1000000000000047,null,null,1000000000000047],"status":["unbonding","bonded","bonded","unbonding"]}},{"ix":136,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":16,"t":96,"consumerPower":[null,3294,7597,null],"outstandingDowntime":[true,true,false,false]}},{"ix":137,"action":{"kind":"Undelegate","val":0,"amt":2172},"partialState":{"h":17,"t":102,"tokens":[5913,8142,16664,6911],"delegation":[4913,7142,15664,5911],"delegatorTokens":9999999957769}},{"ix":138,"action":{"kind":"Undelegate","val":3,"amt":2665},"partialState":{"h":17,"t":102,"tokens":[5913,8142,16664,4246],"delegation":[4913,7142,15664,3246],"delegatorTokens":9999999957769}},{"ix":139,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":140,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":17,"t":102,"consumerPower":[null,3294,7597,null],"outstandingDowntime":[true,true,false,false]}},{"ix":141,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":142,"action":{"kind":"Undelegate","val":0,"amt":3728},"partialState":{"h":17,"t":102,"tokens":[2185,8142,16664,4246],"delegation":[1185,7142,15664,3246],"delegatorTokens":9999999957769}},{"ix":143,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":144,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":145,"action":{"kind":"Deliver","chain":"provider","numPackets":1},"partialState":{"h":17,"t":102,"tokens":[2185,8142,16664,4246],"delegation":[1185,7142,15664,3246],"delegatorTokens":9999999957769,"jailed":[1000000000000047,null,null,1000000000000047],"status":["unbonding","bonded","bonded","unbonding"]}},{"ix":146,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":18,"t":108,"consumerPower":[null,3294,7597,null],"outstandingDowntime":[true,true,false,false]}},{"ix":147,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":148,"action":{"kind":"Deliver","chain":"provider","numPackets":1},"partialState":{"h":17,"t":102,"tokens":[2185,8142,16664,4246],"delegation":[1185,7142,15664,3246],"delegatorTokens":9999999957769,"jailed":[1000000000000047,null,null,1000000000000047],"status":["unbonding","bonded","bonded","unbonding"]}},{"ix":149,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":19,"t":114,"consumerPower":[null,3294,7597,null],"outstandingDowntime":[true,true,false,false]}},{"ix":150,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":151,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":152,"action":{"kind":"Deliver","chain":"provider","numPackets":4},"partialState":{"h":17,"t":102,"tokens":[2185,8142,16664,4246],"delegation":[1185,7142,15664,3246],"delegatorTokens":9999999957769,"jailed":[1000000000000047,null,null,1000000000000047],"status":["unbonding","bonded","bonded","unbonding"]}},{"ix":153,"action":{"kind":"Delegate","val":2,"amt":4989},"partialState":{"h":17,"t":102,"tokens":[2185,8142,21653,4246],"delegation":[1185,7142,20653,3246],"delegatorTokens":9999999952780}},{"ix":154,"action":{"kind":"Delegate","val":1,"amt":2284},"partialState":{"h":17,"t":102,"tokens":[2185,10426,21653,4246],"delegation":[1185,9426,20653,3246],"delegatorTokens":9999999950496}},{"ix":155,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":18,"t":108,"tokens":[2185,10426,21653,4246],"delegation":[1185,9426,20653,3246],"delegatorTokens":9999999950496,"jailed":[1000000000000101,1000000000000101,null,1000000000000047],"status":["unbonding","bonded","bonded","unbonding"]}},{"ix":156,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":20,"t":120,"consumerPower":[null,3294,7597,null],"outstandingDowntime":[true,true,false,false]}},{"ix":157,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":158,"action":{"kind":"Deliver","chain":"consumer","numPackets":1},"partialState":{"h":20,"t":120,"consumerPower":[null,3294,7597,null],"outstandingDowntime":[true,true,false,false]}},{"ix":159,"action":{"kind":"Undelegate","val":2,"amt":3838},"partialState":{"h":18,"t":108,"tokens":[2185,10426,17815,4246],"delegation":[1185,9426,16815,3246],"delegatorTokens":9999999950496}},{"ix":160,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":21,"t":126,"consumerPower":[null,8142,12604,null],"outstandingDowntime":[true,true,false,false]}},{"ix":161,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":19,"t":114,"tokens":[2185,10426,17815,4246],"delegation":[1185,9426,16815,3246],"delegatorTokens":9999999950496,"jailed":[1000000000000101,1000000000000101,null,1000000000000047],"status":["unbonding","unbonding","bonded","unbonding"]}},{"ix":162,"action":{"kind":"Delegate","val":3,"amt":2118},"partialState":{"h":19,"t":114,"tokens":[2185,10426,17815,6364],"delegation":[1185,9426,16815,5364],"delegatorTokens":9999999948378}},{"ix":163,"action":{"kind":"Undelegate","val":2,"amt":2983},"partialState":{"h":19,"t":114,"tokens":[2185,10426,14832,6364],"delegation":[1185,9426,13832,5364],"delegatorTokens":9999999948378}},{"ix":164,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":20,"t":120,"tokens":[2185,10426,14832,6364],"delegation":[1185,9426,13832,5364],"delegatorTokens":9999999948378,"jailed":[1000000000000101,1000000000000101,null,1000000000000047],"status":["unbonding","unbonding","bonded","unbonding"]}},{"ix":165,"action":{"kind":"Deliver","chain":"consumer","numPackets":5},"partialState":{"h":21,"t":126,"consumerPower":[null,8142,12604,null],"outstandingDowntime":[false,false,false,false]}},{"ix":166,"action":{"kind":"Delegate","val":1,"amt":4810},"partialState":{"h":20,"t":120,"tokens":[2185,15236,14832,6364],"delegation":[1185,14236,13832,5364],"delegatorTokens":9999999943568}},{"ix":167,"action":{"kind":"Delegate","val":1,"amt":2658},"partialState":{"h":20,"t":120,"tokens":[2185,17894,14832,6364],"delegation":[1185,16894,13832,5364],"delegatorTokens":9999999940910}},{"ix":168,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":169,"action":{"kind":"Delegate","val":3,"amt":1904},"partialState":{"h":20,"t":120,"tokens":[2185,17894,14832,8268],"delegation":[1185,16894,13832,7268],"delegatorTokens":9999999939006}},{"ix":170,"action":{"kind":"Delegate","val":2,"amt":3946},"partialState":{"h":20,"t":120,"tokens":[2185,17894,18778,8268],"delegation":[1185,16894,17778,7268],"delegatorTokens":9999999935060}},{"ix":171,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":172,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":173,"action":{"kind":"Deliver","chain":"provider","numPackets":1},"partialState":{"h":20,"t":120,"tokens":[2185,17894,18778,8268],"delegation":[1185,16894,17778,7268],"delegatorTokens":9999999935060,"jailed":[1000000000000101,1000000000000101,null,1000000000000047],"status":["unbonding","unbonding","bonded","unbonding"]}},{"ix":174,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":175,"action":{"kind":"Delegate","val":3,"amt":1355},"partialState":{"h":20,"t":120,"tokens":[2185,17894,18778,9623],"delegation":[1185,16894,17778,8623],"delegatorTokens":9999999933705}},{"ix":176,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":177,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":22,"t":132,"consumerPower":[null,null,17815,null],"outstandingDowntime":[false,false,false,false]}},{"ix":178,"action":{"kind":"Delegate","val":0,"amt":1584},"partialState":{"h":20,"t":120,"tokens":[3769,17894,18778,9623],"delegation":[2769,16894,17778,8623],"delegatorTokens":9999999932121}},{"ix":179,"action":{"kind":"Deliver","chain":"consumer","numPackets":4},"partialState":{"h":22,"t":132,"consumerPower":[null,null,17815,null],"outstandingDowntime":[false,false,false,false]}},{"ix":180,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":181,"action":{"kind":"Deliver","chain":"consumer","numPackets":5},"partialState":{"h":22,"t":132,"consumerPower":[null,null,17815,null],"outstandingDowntime":[false,false,false,false]}},{"ix":182,"action":{"kind":"Undelegate","val":1,"amt":3108},"partialState":{"h":20,"t":120,"tokens":[3769,14786,18778,9623],"delegation":[2769,13786,17778,8623],"delegatorTokens":9999999932121}},{"ix":183,"action":{"kind":"Undelegate","val":0,"amt":1240},"partialState":{"h":20,"t":120,"tokens":[2529,14786,18778,9623],"delegation":[1529,13786,17778,8623],"delegatorTokens":9999999932121}},{"ix":184,"action":{"kind":"Deliver","chain":"provider","numPackets":3},"partialState":{"h":20,"t":120,"tokens":[2529,14786,18778,9623],"delegation":[1529,13786,17778,8623],"delegatorTokens":9999999932121,"jailed":[1000000000000101,1000000000000101,null,1000000000000047],"status":["unbonding","unbonding","bonded","unbonding"]}},{"ix":185,"action":{"kind":"Undelegate","val":1,"amt":2735},"partialState":{"h":20,"t":120,"tokens":[2529,12051,18778,9623],"delegation":[1529,11051,17778,8623],"delegatorTokens":9999999932121}},{"ix":186,"action":{"kind":"Undelegate","val":3,"amt":3680},"partialState":{"h":20,"t":120,"tokens":[2529,12051,18778,5943],"delegation":[1529,11051,17778,4943],"delegatorTokens":9999999932121}},{"ix":187,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":188,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":189,"action":{"kind":"Deliver","chain":"consumer","numPackets":3},"partialState":{"h":22,"t":132,"consumerPower":[null,null,17815,null],"outstandingDowntime":[false,false,false,false]}},{"ix":190,"action":{"kind":"Deliver","chain":"provider","numPackets":6},"partialState":{"h":20,"t":120,"tokens":[2529,12051,18778,5943],"delegation":[1529,11051,17778,4943],"delegatorTokens":9999999932121,"jailed":[1000000000000101,1000000000000101,null,1000000000000047],"status":["unbonding","unbonding","bonded","unbonding"]}},{"ix":191,"action":{"kind":"Deliver","chain":"consumer","numPackets":2},"partialState":{"h":22,"t":132,"consumerPower":[null,null,17815,null],"outstandingDowntime":[false,false,false,false]}},{"ix":192,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":193,"action":{"kind":"Delegate","val":1,"amt":3377},"partialState":{"h":20,"t":120,"tokens":[2529,15428,18778,5943],"delegation":[1529,14428,17778,4943],"delegatorTokens":9999999928744}},{"ix":194,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":21,"t":126,"tokens":[2529,15428,18778,5943],"delegation":[1529,14428,17778,4943],"delegatorTokens":9999999936540,"jailed":[1000000000000101,1000000000000101,null,1000000000000047],"status":["unbonding","unbonding","bonded","unbonding"]}},{"ix":195,"action":{"kind":"Deliver","chain":"consumer","numPackets":1},"partialState":{"h":22,"t":132,"consumerPower":[null,null,17815,null],"outstandingDowntime":[false,false,false,false]}},{"ix":196,"action":{"kind":"Deliver","chain":"consumer","numPackets":2},"partialState":{"h":22,"t":132,"consumerPower":[null,null,17815,null],"outstandingDowntime":[false,false,false,false]}},{"ix":197,"action":{"kind":"Undelegate","val":0,"amt":2721},"partialState":{"h":21,"t":126,"tokens":[2529,15428,18778,5943],"delegation":[1529,14428,17778,4943],"delegatorTokens":9999999936540}},{"ix":198,"action":{"kind":"Delegate","val":3,"amt":4450},"partialState":{"h":21,"t":126,"tokens":[2529,15428,18778,10393],"delegation":[1529,14428,17778,9393],"delegatorTokens":9999999932090}},{"ix":199,"action":{"kind":"Undelegate","val":0,"amt":3182},"partialState":{"h":21,"t":126,"tokens":[2529,15428,18778,10393],"delegation":[1529,14428,17778,9393],"delegatorTokens":9999999932090}}],"events":["send_downtime_slash_request","more_than_one_third_val_power_change","send_vsc_without_downtime_ack","send_downtime_slash_request","downtime_slash_request_outstanding","more_than_one_third_val_power_change","rebond_unval","send_vsc_without_downtime_ack","insufficient_shares","send_double_sign_slash_request","insufficient_shares","send_double_sign_slash_request","send_vsc_without_downtime_ack","downtime_slash_request_outstanding","consumer_del_val","consumer_add_val","send_vsc_without_downtime_ack","downtime_slash_request_outstanding","downtime_slash_request_outstanding","more_than_one_third_val_power_change","send_vsc_without_downtime_ack","downtime_slash_request_outstanding","send_double_sign_slash_request","downtime_slash_request_outstanding","insufficient_shares","receive_double_sign_slash_request","receive_double_sign_slash_request","downtime_slash_request_outstanding","send_double_sign_slash_request","downtime_slash_request_outstanding","downtime_slash_request_outstanding","consumer_add_val","consumer_update_val","consumer_del_val","consumer_send_maturation","receive_downtime_slash_request","jail","receive_downtime_slash_request","jail","send_vsc_with_downtime_ack","consumer_del_val","consumer_add_val","more_than_one_third_val_power_change","rebond_unval","rebond_unval","send_vsc_without_downtime_ack","insufficient_shares","receive_downtime_slash_ack","receive_downtime_slash_ack","send_downtime_slash_request","insufficient_shares","send_downtime_slash_request","receive_double_sign_slash_request","receive_double_sign_slash_request","set_undel_hold_false","set_undel_hold_false","send_vsc_without_downtime_ack","insufficient_shares","insufficient_shares","complete_undel_in_endblock","send_vsc_without_downtime_ack","consumer_del_val","consumer_add_val","consumer_add_val","consumer_del_val","send_vsc_without_downtime_ack","some_undels_expired_but_not_completed","some_undels_expired_but_not_completed","receive_downtime_slash_request","jail","receive_downtime_slash_request","jail","send_vsc_with_downtime_ack","consumer_send_maturation","consumer_send_maturation","consumer_send_maturation","consumer_update_val","consumer_update_val","send_vsc_without_downtime_ack","send_vsc_without_downtime_ack","receive_downtime_slash_ack","receive_downtime_slash_ack","consumer_send_maturation","consumer_update_val","consumer_del_val","some_undels_expired_but_not_completed","complete_undel_immediate","complete_undel_immediate","complete_undel_immediate","complete_undel_immediate","send_vsc_without_downtime_ack","insufficient_shares","insufficient_shares"]},{"meta":{"commit":"7ffd0c04e4205cbc9caf212abfe6c59ee43153bf"},"constants":{"P":"provider","C":"consumer","UNBONDING_SECONDS_P":70,"UNBONDING_SECONDS_C":50,"TRUSTING_SECONDS":49,"NUM_VALIDATORS":4,"MAX_VALIDATORS":2,"SLASH_DOUBLESIGN":0,"SLASH_DOWNTIME":0,"JAIL_SECONDS":999999999999999,"BLOCK_SECONDS":6,"INITIAL_DELEGATOR_TOKENS":10000000000000,"DELEGATE_AMT_MIN":1000,"DELEGATE_AMT_MAX":5000,"UNDELEGATE_AMT_MIN":1000,"UNDELEGATE_AMT_MAX":5000,"ISDOWNTIME_PROBABILITY":0.5,"MAX_NUM_PACKETS_FOR_DELIVER":6},"actions":[{"ix":0,"action":{"kind":"ConsumerSlash","val":3,"infractionHeight":0,"isDowntime":true},"partialState":{"h":1,"t":6,"outstandingDowntime":[false,false,false,true]}},{"ix":1,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":2,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":2,"t":12,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,false,false,true]}},{"ix":3,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":4,"action":{"kind":"Deliver","chain":"provider","numPackets":3},"partialState":{"h":1,"t":6,"tokens":[5000,4000,3000,2000],"delegation":[4000,3000,2000,1000],"delegatorTokens":10000000000000,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":5,"action":{"kind":"Delegate","val":0,"amt":4603},"partialState":{"h":1,"t":6,"tokens":[9603,4000,3000,2000],"delegation":[8603,3000,2000,1000],"delegatorTokens":9999999995397}},{"ix":6,"action":{"kind":"ConsumerSlash","val":0,"infractionHeight":0,"isDowntime":false},"partialState":{"h":2,"t":12,"outstandingDowntime":[false,false,false,true]}},{"ix":7,"action":{"kind":"Delegate","val":1,"amt":3714},"partialState":{"h":1,"t":6,"tokens":[9603,7714,3000,2000],"delegation":[8603,6714,2000,1000],"delegatorTokens":9999999991683}},{"ix":8,"action":{"kind":"ConsumerSlash","val":0,"infractionHeight":0,"isDowntime":false},"partialState":{"h":2,"t":12,"outstandingDowntime":[false,false,false,true]}},{"ix":9,"action":{"kind":"ConsumerSlash","val":0,"infractionHeight":0,"isDowntime":true},"partialState":{"h":2,"t":12,"outstandingDowntime":[true,false,false,true]}},{"ix":10,"action":{"kind":"Undelegate","val":0,"amt":3383},"partialState":{"h":1,"t":6,"tokens":[6220,7714,3000,2000],"delegation":[5220,6714,2000,1000],"delegatorTokens":9999999991683}},{"ix":11,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":3,"t":18,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[true,false,false,true]}},{"ix":12,"action":{"kind":"Deliver","chain":"provider","numPackets":3},"partialState":{"h":1,"t":6,"tokens":[6220,7714,3000,2000],"delegation":[5220,6714,2000,1000],"delegatorTokens":9999999991683,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":13,"action":{"kind":"Undelegate","val":0,"amt":1177},"partialState":{"h":1,"t":6,"tokens":[5043,7714,3000,2000],"delegation":[4043,6714,2000,1000],"delegatorTokens":9999999991683}},{"ix":14,"action":{"kind":"Deliver","chain":"provider","numPackets":3},"partialState":{"h":1,"t":6,"tokens":[5043,7714,3000,2000],"delegation":[4043,6714,2000,1000],"delegatorTokens":9999999991683,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":15,"action":{"kind":"Deliver","chain":"consumer","numPackets":4},"partialState":{"h":3,"t":18,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[true,false,false,true]}},{"ix":16,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":2,"t":12,"tokens":[5043,7714,3000,2000],"delegation":[4043,6714,2000,1000],"delegatorTokens":9999999991683,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":17,"action":{"kind":"Delegate","val":2,"amt":1219},"partialState":{"h":2,"t":12,"tokens":[5043,7714,4219,2000],"delegation":[4043,6714,3219,1000],"delegatorTokens":9999999990464}},{"ix":18,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":4,"t":24,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[true,false,false,true]}},{"ix":19,"action":{"kind":"Delegate","val":3,"amt":3232},"partialState":{"h":2,"t":12,"tokens":[5043,7714,4219,5232],"delegation":[4043,6714,3219,4232],"delegatorTokens":9999999987232}},{"ix":20,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":3,"t":18,"tokens":[5043,7714,4219,5232],"delegation":[4043,6714,3219,4232],"delegatorTokens":9999999987232,"jailed":[null,null,null,null],"status":["unbonding","bonded","unbonded","bonded"]}},{"ix":21,"action":{"kind":"Undelegate","val":1,"amt":2311},"partialState":{"h":3,"t":18,"tokens":[5043,5403,4219,5232],"delegation":[4043,4403,3219,4232],"delegatorTokens":9999999987232}},{"ix":22,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":5,"t":30,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[true,false,false,true]}},{"ix":23,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":24,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":6,"t":36,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[true,false,false,true]}},{"ix":25,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":4,"t":24,"tokens":[5043,5403,4219,5232],"delegation":[4043,4403,3219,4232],"delegatorTokens":9999999987232,"jailed":[null,null,null,null],"status":["unbonding","bonded","unbonded","bonded"]}},{"ix":26,"action":{"kind":"Deliver","chain":"provider","numPackets":4},"partialState":{"h":4,"t":24,"tokens":[5043,5403,4219,5232],"delegation":[4043,4403,3219,4232],"delegatorTokens":9999999987232,"jailed":[null,null,null,null],"status":["unbonding","bonded","unbonded","bonded"]}},{"ix":27,"action":{"kind":"Delegate","val":3,"amt":4185},"partialState":{"h":4,"t":24,"tokens":[5043,5403,4219,9417],"delegation":[4043,4403,3219,8417],"delegatorTokens":9999999983047}},{"ix":28,"action":{"kind":"Undelegate","val":2,"amt":1049},"partialState":{"h":4,"t":24,"tokens":[5043,5403,3170,9417],"delegation":[4043,4403,2170,8417],"delegatorTokens":9999999983047}},{"ix":29,"action":{"kind":"ConsumerSlash","val":0,"infractionHeight":2,"isDowntime":true},"partialState":{"h":6,"t":36,"outstandingDowntime":[true,false,false,true]}},{"ix":30,"action":{"kind":"ConsumerSlash","val":3,"infractionHeight":3,"isDowntime":true},"partialState":{"h":6,"t":36,"outstandingDowntime":[true,false,false,true]}},{"ix":31,"action":{"kind":"Undelegate","val":3,"amt":2063},"partialState":{"h":4,"t":24,"tokens":[5043,5403,3170,7354],"delegation":[4043,4403,2170,6354],"delegatorTokens":9999999983047}},{"ix":32,"action":{"kind":"Delegate","val":1,"amt":2849},"partialState":{"h":4,"t":24,"tokens":[5043,8252,3170,7354],"delegation":[4043,7252,2170,6354],"delegatorTokens":9999999980198}},{"ix":33,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":34,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":7,"t":42,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[true,false,false,true]}},{"ix":35,"action":{"kind":"Delegate","val":3,"amt":3798},"partialState":{"h":4,"t":24,"tokens":[5043,8252,3170,11152],"delegation":[4043,7252,2170,10152],"delegatorTokens":9999999976400}},{"ix":36,"action":{"kind":"Delegate","val":2,"amt":3174},"partialState":{"h":4,"t":24,"tokens":[5043,8252,6344,11152],"delegation":[4043,7252,5344,10152],"delegatorTokens":9999999973226}},{"ix":37,"action":{"kind":"Deliver","chain":"provider","numPackets":1},"partialState":{"h":4,"t":24,"tokens":[5043,8252,6344,11152],"delegation":[4043,7252,5344,10152],"delegatorTokens":9999999973226,"jailed":[null,null,null,null],"status":["unbonding","bonded","unbonded","bonded"]}},{"ix":38,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":39,"action":{"kind":"Deliver","chain":"provider","numPackets":5},"partialState":{"h":4,"t":24,"tokens":[5043,8252,6344,11152],"delegation":[4043,7252,5344,10152],"delegatorTokens":9999999973226,"jailed":[null,null,null,null],"status":["unbonding","bonded","unbonded","bonded"]}},{"ix":40,"action":{"kind":"ConsumerSlash","val":0,"infractionHeight":2,"isDowntime":true},"partialState":{"h":7,"t":42,"outstandingDowntime":[true,false,false,true]}},{"ix":41,"action":{"kind":"Delegate","val":2,"amt":4851},"partialState":{"h":4,"t":24,"tokens":[5043,8252,11195,11152],"delegation":[4043,7252,10195,10152],"delegatorTokens":9999999968375}},{"ix":42,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":5,"t":30,"tokens":[5043,8252,11195,11152],"delegation":[4043,7252,10195,10152],"delegatorTokens":9999999968375,"jailed":[1000000000000023,null,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":43,"action":{"kind":"ConsumerSlash","val":0,"infractionHeight":5,"isDowntime":false},"partialState":{"h":7,"t":42,"outstandingDowntime":[true,false,false,true]}},{"ix":44,"action":{"kind":"Deliver","chain":"provider","numPackets":5},"partialState":{"h":5,"t":30,"tokens":[5043,8252,11195,11152],"delegation":[4043,7252,10195,10152],"delegatorTokens":9999999968375,"jailed":[1000000000000023,null,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":45,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":8,"t":48,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[true,false,false,true]}},{"ix":46,"action":{"kind":"Undelegate","val":1,"amt":3135},"partialState":{"h":5,"t":30,"tokens":[5043,5117,11195,11152],"delegation":[4043,4117,10195,10152],"delegatorTokens":9999999968375}},{"ix":47,"action":{"kind":"Delegate","val":1,"amt":3894},"partialState":{"h":5,"t":30,"tokens":[5043,9011,11195,11152],"delegation":[4043,8011,10195,10152],"delegatorTokens":9999999964481}},{"ix":48,"action":{"kind":"ConsumerSlash","val":3,"infractionHeight":6,"isDowntime":false},"partialState":{"h":8,"t":48,"outstandingDowntime":[true,false,false,true]}},{"ix":49,"action":{"kind":"Undelegate","val":0,"amt":4715},"partialState":{"h":5,"t":30,"tokens":[5043,9011,11195,11152],"delegation":[4043,8011,10195,10152],"delegatorTokens":9999999964481}},{"ix":50,"action":{"kind":"Deliver","chain":"provider","numPackets":4},"partialState":{"h":5,"t":30,"tokens":[5043,9011,11195,11152],"delegation":[4043,8011,10195,10152],"delegatorTokens":9999999964481,"jailed":[1000000000000023,null,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":51,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":6,"t":36,"tokens":[5043,9011,11195,11152],"delegation":[4043,8011,10195,10152],"delegatorTokens":9999999964481,"jailed":[1000000000000023,null,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":52,"action":{"kind":"Undelegate","val":3,"amt":1174},"partialState":{"h":6,"t":36,"tokens":[5043,9011,11195,9978],"delegation":[4043,8011,10195,8978],"delegatorTokens":9999999964481}},{"ix":53,"action":{"kind":"ConsumerSlash","val":0,"infractionHeight":1,"isDowntime":false},"partialState":{"h":8,"t":48,"outstandingDowntime":[true,false,false,true]}},{"ix":54,"action":{"kind":"Deliver","chain":"provider","numPackets":5},"partialState":{"h":6,"t":36,"tokens":[5043,9011,11195,9978],"delegation":[4043,8011,10195,8978],"delegatorTokens":9999999964481,"jailed":[1000000000000023,null,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":55,"action":{"kind":"ConsumerSlash","val":3,"infractionHeight":6,"isDowntime":false},"partialState":{"h":8,"t":48,"outstandingDowntime":[true,false,false,true]}},{"ix":56,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":57,"action":{"kind":"Deliver","chain":"consumer","numPackets":4},"partialState":{"h":8,"t":48,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,false,false,true]}},{"ix":58,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":59,"action":{"kind":"Undelegate","val":2,"amt":4480},"partialState":{"h":6,"t":36,"tokens":[5043,9011,6715,9978],"delegation":[4043,8011,5715,8978],"delegatorTokens":9999999964481}},{"ix":60,"action":{"kind":"Delegate","val":0,"amt":4622},"partialState":{"h":6,"t":36,"tokens":[9665,9011,6715,9978],"delegation":[8665,8011,5715,8978],"delegatorTokens":9999999959859}},{"ix":61,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":62,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":63,"action":{"kind":"ConsumerSlash","val":3,"infractionHeight":2,"isDowntime":true},"partialState":{"h":8,"t":48,"outstandingDowntime":[false,false,false,true]}},{"ix":64,"action":{"kind":"Delegate","val":3,"amt":1196},"partialState":{"h":6,"t":36,"tokens":[9665,9011,6715,11174],"delegation":[8665,8011,5715,10174],"delegatorTokens":9999999958663}},{"ix":65,"action":{"kind":"Delegate","val":1,"amt":1909},"partialState":{"h":6,"t":36,"tokens":[9665,10920,6715,11174],"delegation":[8665,9920,5715,10174],"delegatorTokens":9999999956754}},{"ix":66,"action":{"kind":"Deliver","chain":"consumer","numPackets":6},"partialState":{"h":8,"t":48,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,false,false,true]}},{"ix":67,"action":{"kind":"Undelegate","val":1,"amt":1794},"partialState":{"h":6,"t":36,"tokens":[9665,9126,6715,11174],"delegation":[8665,8126,5715,10174],"delegatorTokens":9999999956754}},{"ix":68,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":9,"t":54,"consumerPower":[null,null,11195,11152],"outstandingDowntime":[false,false,false,true]}},{"ix":69,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":70,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":10,"t":60,"consumerPower":[null,null,11195,11152],"outstandingDowntime":[false,false,false,true]}},{"ix":71,"action":{"kind":"Undelegate","val":1,"amt":4503},"partialState":{"h":6,"t":36,"tokens":[9665,4623,6715,11174],"delegation":[8665,3623,5715,10174],"delegatorTokens":9999999956754}},{"ix":72,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":11,"t":66,"consumerPower":[null,null,11195,11152],"outstandingDowntime":[false,false,false,true]}},{"ix":73,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":74,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":12,"t":72,"consumerPower":[null,null,11195,11152],"outstandingDowntime":[false,false,false,true]}},{"ix":75,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":76,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":7,"t":42,"tokens":[9665,4623,6715,11174],"delegation":[8665,3623,5715,10174],"delegatorTokens":9999999956754,"jailed":[1000000000000023,null,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":77,"action":{"kind":"Delegate","val":3,"amt":4867},"partialState":{"h":7,"t":42,"tokens":[9665,4623,6715,16041],"delegation":[8665,3623,5715,15041],"delegatorTokens":9999999951887}},{"ix":78,"action":{"kind":"ConsumerSlash","val":1,"infractionHeight":0,"isDowntime":true},"partialState":{"h":12,"t":72,"outstandingDowntime":[false,true,false,true]}},{"ix":79,"action":{"kind":"Delegate","val":0,"amt":4709},"partialState":{"h":7,"t":42,"tokens":[14374,4623,6715,16041],"delegation":[13374,3623,5715,15041],"delegatorTokens":9999999947178}},{"ix":80,"action":{"kind":"Delegate","val":3,"amt":1182},"partialState":{"h":7,"t":42,"tokens":[14374,4623,6715,17223],"delegation":[13374,3623,5715,16223],"delegatorTokens":9999999945996}},{"ix":81,"action":{"kind":"Delegate","val":0,"amt":1808},"partialState":{"h":7,"t":42,"tokens":[16182,4623,6715,17223],"delegation":[15182,3623,5715,16223],"delegatorTokens":9999999944188}},{"ix":82,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":8,"t":48,"tokens":[16182,4623,6715,17223],"delegation":[15182,3623,5715,16223],"delegatorTokens":9999999944188,"jailed":[1000000000000023,null,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":83,"action":{"kind":"Deliver","chain":"provider","numPackets":6},"partialState":{"h":8,"t":48,"tokens":[16182,4623,6715,17223],"delegation":[15182,3623,5715,16223],"delegatorTokens":9999999944188,"jailed":[1000000000000023,null,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":84,"action":{"kind":"Delegate","val":2,"amt":4897},"partialState":{"h":8,"t":48,"tokens":[16182,4623,11612,17223],"delegation":[15182,3623,10612,16223],"delegatorTokens":9999999939291}},{"ix":85,"action":{"kind":"Delegate","val":0,"amt":3096},"partialState":{"h":8,"t":48,"tokens":[19278,4623,11612,17223],"delegation":[18278,3623,10612,16223],"delegatorTokens":9999999936195}},{"ix":86,"action":{"kind":"Delegate","val":1,"amt":4064},"partialState":{"h":8,"t":48,"tokens":[19278,8687,11612,17223],"delegation":[18278,7687,10612,16223],"delegatorTokens":9999999932131}},{"ix":87,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":88,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":89,"action":{"kind":"Delegate","val":1,"amt":3237},"partialState":{"h":8,"t":48,"tokens":[19278,11924,11612,17223],"delegation":[18278,10924,10612,16223],"delegatorTokens":9999999928894}},{"ix":90,"action":{"kind":"Deliver","chain":"consumer","numPackets":4},"partialState":{"h":12,"t":72,"consumerPower":[null,null,11195,11152],"outstandingDowntime":[false,true,false,true]}},{"ix":91,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":92,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":9,"t":54,"tokens":[19278,11924,11612,17223],"delegation":[18278,10924,10612,16223],"delegatorTokens":9999999928894,"jailed":[1000000000000023,null,null,null],"status":["unbonding","bonded","unbonding","bonded"]}},{"ix":93,"action":{"kind":"Deliver","chain":"consumer","numPackets":2},"partialState":{"h":12,"t":72,"consumerPower":[null,null,11195,11152],"outstandingDowntime":[false,true,false,true]}},{"ix":94,"action":{"kind":"Undelegate","val":2,"amt":2813},"partialState":{"h":9,"t":54,"tokens":[19278,11924,8799,17223],"delegation":[18278,10924,7799,16223],"delegatorTokens":9999999928894}},{"ix":95,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":96,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":97,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":13,"t":78,"consumerPower":[null,null,6715,17223],"outstandingDowntime":[false,true,false,true]}},{"ix":98,"action":{"kind":"Deliver","chain":"provider","numPackets":6},"partialState":{"h":9,"t":54,"tokens":[19278,11924,8799,17223],"delegation":[18278,10924,7799,16223],"delegatorTokens":9999999928894,"jailed":[1000000000000023,null,null,null],"status":["unbonding","bonded","unbonding","bonded"]}},{"ix":99,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":14,"t":84,"consumerPower":[null,null,6715,17223],"outstandingDowntime":[false,true,false,true]}},{"ix":100,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":101,"action":{"kind":"Deliver","chain":"consumer","numPackets":6},"partialState":{"h":14,"t":84,"consumerPower":[null,null,6715,17223],"outstandingDowntime":[false,true,false,true]}},{"ix":102,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":103,"action":{"kind":"Delegate","val":2,"amt":4223},"partialState":{"h":9,"t":54,"tokens":[19278,11924,13022,17223],"delegation":[18278,10924,12022,16223],"delegatorTokens":9999999924671}},{"ix":104,"action":{"kind":"Undelegate","val":3,"amt":4530},"partialState":{"h":9,"t":54,"tokens":[19278,11924,13022,12693],"delegation":[18278,10924,12022,11693],"delegatorTokens":9999999924671}},{"ix":105,"action":{"kind":"Undelegate","val":2,"amt":3036},"partialState":{"h":9,"t":54,"tokens":[19278,11924,9986,12693],"delegation":[18278,10924,8986,11693],"delegatorTokens":9999999924671}},{"ix":106,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":107,"action":{"kind":"Deliver","chain":"provider","numPackets":2},"partialState":{"h":9,"t":54,"tokens":[19278,11924,9986,12693],"delegation":[18278,10924,8986,11693],"delegatorTokens":9999999924671,"jailed":[1000000000000023,null,null,null],"status":["unbonding","bonded","unbonding","bonded"]}},{"ix":108,"action":{"kind":"Undelegate","val":2,"amt":1276},"partialState":{"h":9,"t":54,"tokens":[19278,11924,8710,12693],"delegation":[18278,10924,7710,11693],"delegatorTokens":9999999924671}},{"ix":109,"action":{"kind":"Delegate","val":3,"amt":3090},"partialState":{"h":9,"t":54,"tokens":[19278,11924,8710,15783],"delegation":[18278,10924,7710,14783],"delegatorTokens":9999999921581}},{"ix":110,"action":{"kind":"Delegate","val":0,"amt":4437},"partialState":{"h":9,"t":54,"tokens":[23715,11924,8710,15783],"delegation":[22715,10924,7710,14783],"delegatorTokens":9999999917144}},{"ix":111,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":112,"action":{"kind":"Delegate","val":0,"amt":4304},"partialState":{"h":9,"t":54,"tokens":[28019,11924,8710,15783],"delegation":[27019,10924,7710,14783],"delegatorTokens":9999999912840}},{"ix":113,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":10,"t":60,"tokens":[28019,11924,8710,15783],"delegation":[27019,10924,7710,14783],"delegatorTokens":9999999912840,"jailed":[1000000000000023,1000000000000053,null,null],"status":["unbonding","bonded","unbonding","bonded"]}},{"ix":114,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":115,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":116,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":117,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":118,"action":{"kind":"Deliver","chain":"consumer","numPackets":2},"partialState":{"h":14,"t":84,"consumerPower":[null,null,6715,17223],"outstandingDowntime":[false,true,false,true]}},{"ix":119,"action":{"kind":"Undelegate","val":3,"amt":1166},"partialState":{"h":10,"t":60,"tokens":[28019,11924,8710,14617],"delegation":[27019,10924,7710,13617],"delegatorTokens":9999999912840}},{"ix":120,"action":{"kind":"Delegate","val":0,"amt":2220},"partialState":{"h":10,"t":60,"tokens":[30239,11924,8710,14617],"delegation":[29239,10924,7710,13617],"delegatorTokens":9999999910620}},{"ix":121,"action":{"kind":"Undelegate","val":1,"amt":4646},"partialState":{"h":10,"t":60,"tokens":[30239,7278,8710,14617],"delegation":[29239,6278,7710,13617],"delegatorTokens":9999999910620}},{"ix":122,"action":{"kind":"Deliver","chain":"consumer","numPackets":3},"partialState":{"h":14,"t":84,"consumerPower":[null,null,6715,17223],"outstandingDowntime":[false,true,false,true]}},{"ix":123,"action":{"kind":"Delegate","val":1,"amt":4319},"partialState":{"h":10,"t":60,"tokens":[30239,11597,8710,14617],"delegation":[29239,10597,7710,13617],"delegatorTokens":9999999906301}},{"ix":124,"action":{"kind":"Delegate","val":1,"amt":4410},"partialState":{"h":10,"t":60,"tokens":[30239,16007,8710,14617],"delegation":[29239,15007,7710,13617],"delegatorTokens":9999999901891}},{"ix":125,"action":{"kind":"Deliver","chain":"provider","numPackets":5},"partialState":{"h":10,"t":60,"tokens":[30239,16007,8710,14617],"delegation":[29239,15007,7710,13617],"delegatorTokens":9999999901891,"jailed":[1000000000000023,1000000000000053,null,null],"status":["unbonding","bonded","unbonding","bonded"]}},{"ix":126,"action":{"kind":"Deliver","chain":"consumer","numPackets":5},"partialState":{"h":14,"t":84,"consumerPower":[null,null,6715,17223],"outstandingDowntime":[false,true,false,true]}},{"ix":127,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":15,"t":90,"consumerPower":[null,11924,null,17223],"outstandingDowntime":[false,true,false,true]}},{"ix":128,"action":{"kind":"Delegate","val":1,"amt":3453},"partialState":{"h":10,"t":60,"tokens":[30239,19460,8710,14617],"delegation":[29239,18460,7710,13617],"delegatorTokens":9999999898438}},{"ix":129,"action":{"kind":"Delegate","val":2,"amt":4181},"partialState":{"h":10,"t":60,"tokens":[30239,19460,12891,14617],"delegation":[29239,18460,11891,13617],"delegatorTokens":9999999894257}},{"ix":130,"action":{"kind":"Undelegate","val":0,"amt":2846},"partialState":{"h":10,"t":60,"tokens":[27393,19460,12891,14617],"delegation":[26393,18460,11891,13617],"delegatorTokens":9999999894257}},{"ix":131,"action":{"kind":"Deliver","chain":"provider","numPackets":3},"partialState":{"h":10,"t":60,"tokens":[27393,19460,12891,14617],"delegation":[26393,18460,11891,13617],"delegatorTokens":9999999894257,"jailed":[1000000000000023,1000000000000053,null,null],"status":["unbonding","bonded","unbonding","bonded"]}},{"ix":132,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":11,"t":66,"tokens":[27393,19460,12891,14617],"delegation":[26393,18460,11891,13617],"delegatorTokens":9999999894257,"jailed":[1000000000000023,1000000000000053,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":133,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":134,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":12,"t":72,"tokens":[27393,19460,12891,14617],"delegation":[26393,18460,11891,13617],"delegatorTokens":9999999894257,"jailed":[1000000000000023,1000000000000053,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":135,"action":{"kind":"Deliver","chain":"provider","numPackets":6},"partialState":{"h":12,"t":72,"tokens":[27393,19460,12891,14617],"delegation":[26393,18460,11891,13617],"delegatorTokens":9999999894257,"jailed":[1000000000000023,1000000000000053,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":136,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":16,"t":96,"consumerPower":[null,11924,null,17223],"outstandingDowntime":[false,true,false,true]}},{"ix":137,"action":{"kind":"Undelegate","val":1,"amt":3611},"partialState":{"h":12,"t":72,"tokens":[27393,15849,12891,14617],"delegation":[26393,14849,11891,13617],"delegatorTokens":9999999894257}},{"ix":138,"action":{"kind":"Undelegate","val":3,"amt":2161},"partialState":{"h":12,"t":72,"tokens":[27393,15849,12891,12456],"delegation":[26393,14849,11891,11456],"delegatorTokens":9999999894257}},{"ix":139,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":140,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":17,"t":102,"consumerPower":[null,11924,null,17223],"outstandingDowntime":[false,true,false,true]}},{"ix":141,"action":{"kind":"Delegate","val":2,"amt":1595},"partialState":{"h":12,"t":72,"tokens":[27393,15849,14486,12456],"delegation":[26393,14849,13486,11456],"delegatorTokens":9999999892662}},{"ix":142,"action":{"kind":"Undelegate","val":1,"amt":2841},"partialState":{"h":12,"t":72,"tokens":[27393,13008,14486,12456],"delegation":[26393,12008,13486,11456],"delegatorTokens":9999999892662}},{"ix":143,"action":{"kind":"Delegate","val":0,"amt":4714},"partialState":{"h":12,"t":72,"tokens":[32107,13008,14486,12456],"delegation":[31107,12008,13486,11456],"delegatorTokens":9999999887948}},{"ix":144,"action":{"kind":"Deliver","chain":"provider","numPackets":3},"partialState":{"h":12,"t":72,"tokens":[32107,13008,14486,12456],"delegation":[31107,12008,13486,11456],"delegatorTokens":9999999887948,"jailed":[1000000000000023,1000000000000053,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":145,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":18,"t":108,"consumerPower":[null,11924,null,17223],"outstandingDowntime":[false,true,false,true]}},{"ix":146,"action":{"kind":"Delegate","val":0,"amt":3553},"partialState":{"h":12,"t":72,"tokens":[35660,13008,14486,12456],"delegation":[34660,12008,13486,11456],"delegatorTokens":9999999884395}},{"ix":147,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":13,"t":78,"tokens":[35660,13008,14486,12456],"delegation":[34660,12008,13486,11456],"delegatorTokens":9999999884395,"jailed":[1000000000000023,1000000000000053,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":148,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":14,"t":84,"tokens":[35660,13008,14486,12456],"delegation":[34660,12008,13486,11456],"delegatorTokens":9999999884395,"jailed":[1000000000000023,1000000000000053,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":149,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":15,"t":90,"tokens":[35660,13008,14486,12456],"delegation":[34660,12008,13486,11456],"delegatorTokens":9999999884395,"jailed":[1000000000000023,1000000000000053,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":150,"action":{"kind":"Deliver","chain":"consumer","numPackets":3},"partialState":{"h":18,"t":108,"consumerPower":[null,11924,null,17223],"outstandingDowntime":[false,false,false,true]}},{"ix":151,"action":{"kind":"Undelegate","val":0,"amt":2459},"partialState":{"h":15,"t":90,"tokens":[33201,13008,14486,12456],"delegation":[32201,12008,13486,11456],"delegatorTokens":9999999884395}},{"ix":152,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":16,"t":96,"tokens":[33201,13008,14486,12456],"delegation":[32201,12008,13486,11456],"delegatorTokens":9999999884395,"jailed":[1000000000000023,1000000000000053,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":153,"action":{"kind":"Deliver","chain":"provider","numPackets":2},"partialState":{"h":16,"t":96,"tokens":[33201,13008,14486,12456],"delegation":[32201,12008,13486,11456],"delegatorTokens":9999999884395,"jailed":[1000000000000023,1000000000000053,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":154,"action":{"kind":"Delegate","val":0,"amt":2286},"partialState":{"h":16,"t":96,"tokens":[35487,13008,14486,12456],"delegation":[34487,12008,13486,11456],"delegatorTokens":9999999882109}},{"ix":155,"action":{"kind":"Delegate","val":2,"amt":3285},"partialState":{"h":16,"t":96,"tokens":[35487,13008,17771,12456],"delegation":[34487,12008,16771,11456],"delegatorTokens":9999999878824}},{"ix":156,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":17,"t":102,"tokens":[35487,13008,17771,12456],"delegation":[34487,12008,16771,11456],"delegatorTokens":9999999878824,"jailed":[1000000000000023,1000000000000053,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":157,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":158,"action":{"kind":"Delegate","val":3,"amt":2384},"partialState":{"h":17,"t":102,"tokens":[35487,13008,17771,14840],"delegation":[34487,12008,16771,13840],"delegatorTokens":9999999876440}},{"ix":159,"action":{"kind":"Deliver","chain":"consumer","numPackets":3},"partialState":{"h":18,"t":108,"consumerPower":[null,11924,null,17223],"outstandingDowntime":[false,false,false,true]}},{"ix":160,"action":{"kind":"Deliver","chain":"provider","numPackets":1},"partialState":{"h":17,"t":102,"tokens":[35487,13008,17771,14840],"delegation":[34487,12008,16771,13840],"delegatorTokens":9999999876440,"jailed":[1000000000000023,1000000000000053,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":161,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":162,"action":{"kind":"Deliver","chain":"consumer","numPackets":3},"partialState":{"h":18,"t":108,"consumerPower":[null,11924,null,17223],"outstandingDowntime":[false,false,false,true]}},{"ix":163,"action":{"kind":"Undelegate","val":3,"amt":1506},"partialState":{"h":17,"t":102,"tokens":[35487,13008,17771,13334],"delegation":[34487,12008,16771,12334],"delegatorTokens":9999999876440}},{"ix":164,"action":{"kind":"Undelegate","val":2,"amt":2775},"partialState":{"h":17,"t":102,"tokens":[35487,13008,14996,13334],"delegation":[34487,12008,13996,12334],"delegatorTokens":9999999876440}},{"ix":165,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":18,"t":108,"tokens":[35487,13008,14996,13334],"delegation":[34487,12008,13996,12334],"delegatorTokens":9999999876440,"jailed":[1000000000000023,1000000000000053,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":166,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":19,"t":114,"tokens":[35487,13008,14996,13334],"delegation":[34487,12008,13996,12334],"delegatorTokens":9999999876440,"jailed":[1000000000000023,1000000000000053,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":167,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":168,"action":{"kind":"Delegate","val":1,"amt":1524},"partialState":{"h":19,"t":114,"tokens":[35487,14532,14996,13334],"delegation":[34487,13532,13996,12334],"delegatorTokens":9999999874916}},{"ix":169,"action":{"kind":"Undelegate","val":1,"amt":1197},"partialState":{"h":19,"t":114,"tokens":[35487,13335,14996,13334],"delegation":[34487,12335,13996,12334],"delegatorTokens":9999999874916}},{"ix":170,"action":{"kind":"Deliver","chain":"provider","numPackets":4},"partialState":{"h":19,"t":114,"tokens":[35487,13335,14996,13334],"delegation":[34487,12335,13996,12334],"delegatorTokens":9999999874916,"jailed":[1000000000000023,1000000000000053,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":171,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":19,"t":114,"consumerPower":[null,null,14486,12456],"outstandingDowntime":[false,false,false,true]}},{"ix":172,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":20,"t":120,"tokens":[35487,13335,14996,13334],"delegation":[34487,12335,13996,12334],"delegatorTokens":9999999874916,"jailed":[1000000000000023,1000000000000053,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":173,"action":{"kind":"Deliver","chain":"provider","numPackets":6},"partialState":{"h":20,"t":120,"tokens":[35487,13335,14996,13334],"delegation":[34487,12335,13996,12334],"delegatorTokens":9999999874916,"jailed":[1000000000000023,1000000000000053,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":174,"action":{"kind":"Undelegate","val":1,"amt":2248},"partialState":{"h":20,"t":120,"tokens":[35487,11087,14996,13334],"delegation":[34487,10087,13996,12334],"delegatorTokens":9999999874916}},{"ix":175,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":176,"action":{"kind":"Undelegate","val":3,"amt":1428},"partialState":{"h":20,"t":120,"tokens":[35487,11087,14996,11906],"delegation":[34487,10087,13996,10906],"delegatorTokens":9999999874916}},{"ix":177,"action":{"kind":"Deliver","chain":"consumer","numPackets":4},"partialState":{"h":19,"t":114,"consumerPower":[null,null,14486,12456],"outstandingDowntime":[false,false,false,true]}},{"ix":178,"action":{"kind":"Deliver","chain":"consumer","numPackets":3},"partialState":{"h":19,"t":114,"consumerPower":[null,null,14486,12456],"outstandingDowntime":[false,false,false,true]}},{"ix":179,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":180,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":21,"t":126,"tokens":[35487,11087,14996,11906],"delegation":[34487,10087,13996,10906],"delegatorTokens":9999999884899,"jailed":[1000000000000023,1000000000000053,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":181,"action":{"kind":"Delegate","val":1,"amt":3892},"partialState":{"h":21,"t":126,"tokens":[35487,14979,14996,11906],"delegation":[34487,13979,13996,10906],"delegatorTokens":9999999881007}},{"ix":182,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":20,"t":120,"consumerPower":[null,null,14996,13334],"outstandingDowntime":[false,false,false,true]}},{"ix":183,"action":{"kind":"Deliver","chain":"consumer","numPackets":2},"partialState":{"h":20,"t":120,"consumerPower":[null,null,14996,13334],"outstandingDowntime":[false,false,false,true]}},{"ix":184,"action":{"kind":"Undelegate","val":1,"amt":3714},"partialState":{"h":21,"t":126,"tokens":[35487,11265,14996,11906],"delegation":[34487,10265,13996,10906],"delegatorTokens":9999999881007}},{"ix":185,"action":{"kind":"Delegate","val":2,"amt":4959},"partialState":{"h":21,"t":126,"tokens":[35487,11265,19955,11906],"delegation":[34487,10265,18955,10906],"delegatorTokens":9999999876048}},{"ix":186,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":187,"action":{"kind":"Undelegate","val":0,"amt":1412},"partialState":{"h":21,"t":126,"tokens":[34075,11265,19955,11906],"delegation":[33075,10265,18955,10906],"delegatorTokens":9999999876048}},{"ix":188,"action":{"kind":"Undelegate","val":1,"amt":3200},"partialState":{"h":21,"t":126,"tokens":[34075,8065,19955,11906],"delegation":[33075,7065,18955,10906],"delegatorTokens":9999999876048}},{"ix":189,"action":{"kind":"Undelegate","val":1,"amt":2530},"partialState":{"h":21,"t":126,"tokens":[34075,5535,19955,11906],"delegation":[33075,4535,18955,10906],"delegatorTokens":9999999876048}},{"ix":190,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":22,"t":132,"tokens":[34075,5535,19955,11906],"delegation":[33075,4535,18955,10906],"delegatorTokens":9999999876048,"jailed":[1000000000000023,1000000000000053,null,null],"status":["unbonded","unbonding","bonded","bonded"]}},{"ix":191,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":23,"t":138,"tokens":[34075,5535,19955,11906],"delegation":[33075,4535,18955,10906],"delegatorTokens":9999999876048,"jailed":[1000000000000023,1000000000000053,null,null],"status":["unbonded","unbonding","bonded","bonded"]}},{"ix":192,"action":{"kind":"Deliver","chain":"provider","numPackets":6},"partialState":{"h":23,"t":138,"tokens":[34075,5535,19955,11906],"delegation":[33075,4535,18955,10906],"delegatorTokens":9999999876048,"jailed":[1000000000000023,1000000000000053,null,null],"status":["unbonded","unbonding","bonded","bonded"]}},{"ix":193,"action":{"kind":"Delegate","val":0,"amt":3591},"partialState":{"h":23,"t":138,"tokens":[37666,5535,19955,11906],"delegation":[36666,4535,18955,10906],"delegatorTokens":9999999872457}},{"ix":194,"action":{"kind":"Deliver","chain":"consumer","numPackets":6},"partialState":{"h":20,"t":120,"consumerPower":[null,null,14996,13334],"outstandingDowntime":[false,false,false,true]}},{"ix":195,"action":{"kind":"Delegate","val":3,"amt":4815},"partialState":{"h":23,"t":138,"tokens":[37666,5535,19955,16721],"delegation":[36666,4535,18955,15721],"delegatorTokens":9999999867642}},{"ix":196,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":21,"t":126,"consumerPower":[null,null,19955,11906],"outstandingDowntime":[false,false,false,true]}},{"ix":197,"action":{"kind":"Undelegate","val":1,"amt":1533},"partialState":{"h":23,"t":138,"tokens":[37666,4002,19955,16721],"delegation":[36666,3002,18955,15721],"delegatorTokens":9999999867642}},{"ix":198,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":199,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}}],"events":["send_downtime_slash_request","send_double_sign_slash_request","send_double_sign_slash_request","send_downtime_slash_request","receive_slash_request_unbonded","send_vsc_without_downtime_ack","more_than_one_third_val_power_change","send_vsc_without_downtime_ack","send_vsc_without_downtime_ack","receive_double_sign_slash_request","receive_double_sign_slash_request","downtime_slash_request_outstanding","downtime_slash_request_outstanding","downtime_slash_request_outstanding","more_than_one_third_val_power_change","receive_downtime_slash_request","jail","send_vsc_with_downtime_ack","send_double_sign_slash_request","send_double_sign_slash_request","insufficient_shares","send_vsc_not_because_change","send_vsc_without_downtime_ack","send_double_sign_slash_request","send_double_sign_slash_request","receive_downtime_slash_ack","downtime_slash_request_outstanding","consumer_del_val","consumer_del_val","consumer_add_val","consumer_add_val","send_vsc_without_downtime_ack","send_downtime_slash_request","send_vsc_without_downtime_ack","receive_double_sign_slash_request","receive_double_sign_slash_request","receive_double_sign_slash_request","receive_double_sign_slash_request","more_than_one_third_val_power_change","rebond_unval","send_vsc_without_downtime_ack","consumer_update_val","consumer_update_val","receive_downtime_slash_request","jail","send_vsc_with_downtime_ack","consumer_add_val","consumer_del_val","more_than_one_third_val_power_change","rebond_unval","send_vsc_without_downtime_ack","consumer_send_maturation","consumer_send_maturation","consumer_send_maturation","consumer_send_maturation","send_vsc_without_downtime_ack","some_undels_expired_but_not_completed","receive_downtime_slash_ack","some_undels_expired_but_not_completed","send_vsc_not_because_change","send_vsc_without_downtime_ack","some_undels_expired_but_not_completed","send_vsc_without_downtime_ack","some_undels_expired_but_not_completed","send_vsc_without_downtime_ack","some_undels_expired_but_not_completed","consumer_update_val","consumer_del_val","consumer_add_val","send_vsc_not_because_change","send_vsc_without_downtime_ack","complete_undel_immediate","complete_undel_immediate","set_unval_hold_false","complete_undel_immediate","complete_undel_immediate","complete_undel_immediate","send_vsc_without_downtime_ack","consumer_update_val","consumer_update_val","complete_unval_in_endblock","some_undels_expired_but_not_completed","send_vsc_without_downtime_ack","some_undels_expired_but_not_completed","consumer_update_val","consumer_update_val"]},{"meta":{"commit":"7ffd0c04e4205cbc9caf212abfe6c59ee43153bf"},"constants":{"P":"provider","C":"consumer","UNBONDING_SECONDS_P":70,"UNBONDING_SECONDS_C":50,"TRUSTING_SECONDS":49,"NUM_VALIDATORS":4,"MAX_VALIDATORS":2,"SLASH_DOUBLESIGN":0,"SLASH_DOWNTIME":0,"JAIL_SECONDS":999999999999999,"BLOCK_SECONDS":6,"INITIAL_DELEGATOR_TOKENS":10000000000000,"DELEGATE_AMT_MIN":1000,"DELEGATE_AMT_MAX":5000,"UNDELEGATE_AMT_MIN":1000,"UNDELEGATE_AMT_MAX":5000,"ISDOWNTIME_PROBABILITY":0.5,"MAX_NUM_PACKETS_FOR_DELIVER":6},"actions":[{"ix":0,"action":{"kind":"Delegate","val":3,"amt":3069},"partialState":{"h":1,"t":6,"tokens":[5000,4000,3000,5069],"delegation":[4000,3000,2000,4069],"delegatorTokens":9999999996931}},{"ix":1,"action":{"kind":"Delegate","val":2,"amt":4318},"partialState":{"h":1,"t":6,"tokens":[5000,4000,7318,5069],"delegation":[4000,3000,6318,4069],"delegatorTokens":9999999992613}},{"ix":2,"action":{"kind":"ConsumerSlash","val":0,"infractionHeight":0,"isDowntime":false},"partialState":{"h":1,"t":6,"outstandingDowntime":[false,false,false,false]}},{"ix":3,"action":{"kind":"Delegate","val":1,"amt":3485},"partialState":{"h":1,"t":6,"tokens":[5000,7485,7318,5069],"delegation":[4000,6485,6318,4069],"delegatorTokens":9999999989128}},{"ix":4,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":5,"action":{"kind":"Undelegate","val":1,"amt":3670},"partialState":{"h":1,"t":6,"tokens":[5000,3815,7318,5069],"delegation":[4000,2815,6318,4069],"delegatorTokens":9999999989128}},{"ix":6,"action":{"kind":"ConsumerSlash","val":0,"infractionHeight":0,"isDowntime":false},"partialState":{"h":1,"t":6,"outstandingDowntime":[false,false,false,false]}},{"ix":7,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":2,"t":12,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":8,"action":{"kind":"Delegate","val":3,"amt":3417},"partialState":{"h":1,"t":6,"tokens":[5000,3815,7318,8486],"delegation":[4000,2815,6318,7486],"delegatorTokens":9999999985711}},{"ix":9,"action":{"kind":"Undelegate","val":0,"amt":2079},"partialState":{"h":1,"t":6,"tokens":[2921,3815,7318,8486],"delegation":[1921,2815,6318,7486],"delegatorTokens":9999999985711}},{"ix":10,"action":{"kind":"Undelegate","val":3,"amt":1924},"partialState":{"h":1,"t":6,"tokens":[2921,3815,7318,6562],"delegation":[1921,2815,6318,5562],"delegatorTokens":9999999985711}},{"ix":11,"action":{"kind":"ConsumerSlash","val":0,"infractionHeight":1,"isDowntime":true},"partialState":{"h":2,"t":12,"outstandingDowntime":[true,false,false,false]}},{"ix":12,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":3,"t":18,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[true,false,false,false]}},{"ix":13,"action":{"kind":"ConsumerSlash","val":1,"infractionHeight":0,"isDowntime":false},"partialState":{"h":3,"t":18,"outstandingDowntime":[true,false,false,false]}},{"ix":14,"action":{"kind":"ConsumerSlash","val":0,"infractionHeight":1,"isDowntime":false},"partialState":{"h":3,"t":18,"outstandingDowntime":[true,false,false,false]}},{"ix":15,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":4,"t":24,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[true,false,false,false]}},{"ix":16,"action":{"kind":"Undelegate","val":2,"amt":1850},"partialState":{"h":1,"t":6,"tokens":[2921,3815,5468,6562],"delegation":[1921,2815,4468,5562],"delegatorTokens":9999999985711}},{"ix":17,"action":{"kind":"Delegate","val":1,"amt":2829},"partialState":{"h":1,"t":6,"tokens":[2921,6644,5468,6562],"delegation":[1921,5644,4468,5562],"delegatorTokens":9999999982882}},{"ix":18,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":19,"action":{"kind":"Undelegate","val":1,"amt":1984},"partialState":{"h":1,"t":6,"tokens":[2921,4660,5468,6562],"delegation":[1921,3660,4468,5562],"delegatorTokens":9999999982882}},{"ix":20,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":21,"action":{"kind":"Undelegate","val":0,"amt":2325},"partialState":{"h":1,"t":6,"tokens":[2921,4660,5468,6562],"delegation":[1921,3660,4468,5562],"delegatorTokens":9999999982882}},{"ix":22,"action":{"kind":"Deliver","chain":"provider","numPackets":5},"partialState":{"h":1,"t":6,"tokens":[2921,4660,5468,6562],"delegation":[1921,3660,4468,5562],"delegatorTokens":9999999982882,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":23,"action":{"kind":"Delegate","val":3,"amt":1068},"partialState":{"h":1,"t":6,"tokens":[2921,4660,5468,7630],"delegation":[1921,3660,4468,6630],"delegatorTokens":9999999981814}},{"ix":24,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":5,"t":30,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[true,false,false,false]}},{"ix":25,"action":{"kind":"Undelegate","val":0,"amt":4642},"partialState":{"h":1,"t":6,"tokens":[2921,4660,5468,7630],"delegation":[1921,3660,4468,6630],"delegatorTokens":9999999981814}},{"ix":26,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":27,"action":{"kind":"Delegate","val":2,"amt":2625},"partialState":{"h":1,"t":6,"tokens":[2921,4660,8093,7630],"delegation":[1921,3660,7093,6630],"delegatorTokens":9999999979189}},{"ix":28,"action":{"kind":"ConsumerSlash","val":1,"infractionHeight":2,"isDowntime":false},"partialState":{"h":5,"t":30,"outstandingDowntime":[true,false,false,false]}},{"ix":29,"action":{"kind":"Deliver","chain":"consumer","numPackets":6},"partialState":{"h":5,"t":30,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[true,false,false,false]}},{"ix":30,"action":{"kind":"Undelegate","val":2,"amt":3434},"partialState":{"h":1,"t":6,"tokens":[2921,4660,4659,7630],"delegation":[1921,3660,3659,6630],"delegatorTokens":9999999979189}},{"ix":31,"action":{"kind":"Undelegate","val":3,"amt":1837},"partialState":{"h":1,"t":6,"tokens":[2921,4660,4659,5793],"delegation":[1921,3660,3659,4793],"delegatorTokens":9999999979189}},{"ix":32,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":33,"action":{"kind":"Undelegate","val":1,"amt":2659},"partialState":{"h":1,"t":6,"tokens":[2921,2001,4659,5793],"delegation":[1921,1001,3659,4793],"delegatorTokens":9999999979189}},{"ix":34,"action":{"kind":"Delegate","val":3,"amt":2439},"partialState":{"h":1,"t":6,"tokens":[2921,2001,4659,8232],"delegation":[1921,1001,3659,7232],"delegatorTokens":9999999976750}},{"ix":35,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":36,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":37,"action":{"kind":"Delegate","val":2,"amt":2216},"partialState":{"h":1,"t":6,"tokens":[2921,2001,6875,8232],"delegation":[1921,1001,5875,7232],"delegatorTokens":9999999974534}},{"ix":38,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":2,"t":12,"tokens":[2921,2001,6875,8232],"delegation":[1921,1001,5875,7232],"delegatorTokens":9999999974534,"jailed":[1000000000000005,null,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":39,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":40,"action":{"kind":"Deliver","chain":"provider","numPackets":2},"partialState":{"h":2,"t":12,"tokens":[2921,2001,6875,8232],"delegation":[1921,1001,5875,7232],"delegatorTokens":9999999974534,"jailed":[1000000000000005,null,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":41,"action":{"kind":"Deliver","chain":"consumer","numPackets":5},"partialState":{"h":5,"t":30,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[true,false,false,false]}},{"ix":42,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":3,"t":18,"tokens":[2921,2001,6875,8232],"delegation":[1921,1001,5875,7232],"delegatorTokens":9999999974534,"jailed":[1000000000000005,null,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":43,"action":{"kind":"Undelegate","val":1,"amt":4413},"partialState":{"h":3,"t":18,"tokens":[2921,2001,6875,8232],"delegation":[1921,1001,5875,7232],"delegatorTokens":9999999974534}},{"ix":44,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":6,"t":36,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[true,false,false,false]}},{"ix":45,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":46,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":47,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":48,"action":{"kind":"Undelegate","val":1,"amt":1084},"partialState":{"h":3,"t":18,"tokens":[2921,2001,6875,8232],"delegation":[1921,1001,5875,7232],"delegatorTokens":9999999974534}},{"ix":49,"action":{"kind":"Undelegate","val":3,"amt":4628},"partialState":{"h":3,"t":18,"tokens":[2921,2001,6875,3604],"delegation":[1921,1001,5875,2604],"delegatorTokens":9999999974534}},{"ix":50,"action":{"kind":"Deliver","chain":"provider","numPackets":4},"partialState":{"h":3,"t":18,"tokens":[2921,2001,6875,3604],"delegation":[1921,1001,5875,2604],"delegatorTokens":9999999974534,"jailed":[1000000000000005,null,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":51,"action":{"kind":"Deliver","chain":"consumer","numPackets":2},"partialState":{"h":6,"t":36,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":52,"action":{"kind":"ConsumerSlash","val":1,"infractionHeight":5,"isDowntime":true},"partialState":{"h":6,"t":36,"outstandingDowntime":[false,true,false,false]}},{"ix":53,"action":{"kind":"ConsumerSlash","val":1,"infractionHeight":1,"isDowntime":false},"partialState":{"h":6,"t":36,"outstandingDowntime":[false,true,false,false]}},{"ix":54,"action":{"kind":"Undelegate","val":2,"amt":4491},"partialState":{"h":3,"t":18,"tokens":[2921,2001,2384,3604],"delegation":[1921,1001,1384,2604],"delegatorTokens":9999999974534}},{"ix":55,"action":{"kind":"ConsumerSlash","val":1,"infractionHeight":3,"isDowntime":true},"partialState":{"h":6,"t":36,"outstandingDowntime":[false,true,false,false]}},{"ix":56,"action":{"kind":"ConsumerSlash","val":0,"infractionHeight":4,"isDowntime":false},"partialState":{"h":6,"t":36,"outstandingDowntime":[false,true,false,false]}},{"ix":57,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":58,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":4,"t":24,"tokens":[2921,2001,2384,3604],"delegation":[1921,1001,1384,2604],"delegatorTokens":9999999974534,"jailed":[1000000000000005,null,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":59,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":60,"action":{"kind":"Delegate","val":2,"amt":2903},"partialState":{"h":4,"t":24,"tokens":[2921,2001,5287,3604],"delegation":[1921,1001,4287,2604],"delegatorTokens":9999999971631}},{"ix":61,"action":{"kind":"Deliver","chain":"consumer","numPackets":4},"partialState":{"h":6,"t":36,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,true,false,false]}},{"ix":62,"action":{"kind":"Deliver","chain":"provider","numPackets":6},"partialState":{"h":4,"t":24,"tokens":[2921,2001,5287,3604],"delegation":[1921,1001,4287,2604],"delegatorTokens":9999999971631,"jailed":[1000000000000005,null,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":63,"action":{"kind":"Deliver","chain":"consumer","numPackets":4},"partialState":{"h":6,"t":36,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,true,false,false]}},{"ix":64,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":65,"action":{"kind":"Undelegate","val":3,"amt":1163},"partialState":{"h":4,"t":24,"tokens":[2921,2001,5287,2441],"delegation":[1921,1001,4287,1441],"delegatorTokens":9999999971631}},{"ix":66,"action":{"kind":"ConsumerSlash","val":1,"infractionHeight":1,"isDowntime":false},"partialState":{"h":6,"t":36,"outstandingDowntime":[false,true,false,false]}},{"ix":67,"action":{"kind":"Deliver","chain":"consumer","numPackets":3},"partialState":{"h":6,"t":36,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,true,false,false]}},{"ix":68,"action":{"kind":"Deliver","chain":"provider","numPackets":1},"partialState":{"h":4,"t":24,"tokens":[2921,2001,5287,2441],"delegation":[1921,1001,4287,1441],"delegatorTokens":9999999971631,"jailed":[1000000000000005,null,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":69,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":5,"t":30,"tokens":[2921,2001,5287,2441],"delegation":[1921,1001,4287,1441],"delegatorTokens":9999999971631,"jailed":[1000000000000005,null,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":70,"action":{"kind":"Delegate","val":3,"amt":4191},"partialState":{"h":5,"t":30,"tokens":[2921,2001,5287,6632],"delegation":[1921,1001,4287,5632],"delegatorTokens":9999999967440}},{"ix":71,"action":{"kind":"ConsumerSlash","val":0,"infractionHeight":0,"isDowntime":false},"partialState":{"h":6,"t":36,"outstandingDowntime":[false,true,false,false]}},{"ix":72,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":7,"t":42,"consumerPower":[null,null,6875,8232],"outstandingDowntime":[false,true,false,false]}},{"ix":73,"action":{"kind":"Delegate","val":1,"amt":4697},"partialState":{"h":5,"t":30,"tokens":[2921,6698,5287,6632],"delegation":[1921,5698,4287,5632],"delegatorTokens":9999999962743}},{"ix":74,"action":{"kind":"Delegate","val":2,"amt":1362},"partialState":{"h":5,"t":30,"tokens":[2921,6698,6649,6632],"delegation":[1921,5698,5649,5632],"delegatorTokens":9999999961381}},{"ix":75,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":8,"t":48,"consumerPower":[null,null,6875,8232],"outstandingDowntime":[false,true,false,false]}},{"ix":76,"action":{"kind":"Deliver","chain":"provider","numPackets":3},"partialState":{"h":5,"t":30,"tokens":[2921,6698,6649,6632],"delegation":[1921,5698,5649,5632],"delegatorTokens":9999999961381,"jailed":[1000000000000005,null,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":77,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":9,"t":54,"consumerPower":[null,null,6875,8232],"outstandingDowntime":[false,true,false,false]}},{"ix":78,"action":{"kind":"Deliver","chain":"provider","numPackets":3},"partialState":{"h":5,"t":30,"tokens":[2921,6698,6649,6632],"delegation":[1921,5698,5649,5632],"delegatorTokens":9999999961381,"jailed":[1000000000000005,null,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":79,"action":{"kind":"Delegate","val":0,"amt":3825},"partialState":{"h":5,"t":30,"tokens":[6746,6698,6649,6632],"delegation":[5746,5698,5649,5632],"delegatorTokens":9999999957556}},{"ix":80,"action":{"kind":"ConsumerSlash","val":3,"infractionHeight":7,"isDowntime":true},"partialState":{"h":9,"t":54,"outstandingDowntime":[false,true,false,true]}},{"ix":81,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":10,"t":60,"consumerPower":[null,null,6875,8232],"outstandingDowntime":[false,true,false,true]}},{"ix":82,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":11,"t":66,"consumerPower":[null,null,6875,8232],"outstandingDowntime":[false,true,false,true]}},{"ix":83,"action":{"kind":"Delegate","val":0,"amt":1446},"partialState":{"h":5,"t":30,"tokens":[8192,6698,6649,6632],"delegation":[7192,5698,5649,5632],"delegatorTokens":9999999956110}},{"ix":84,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":85,"action":{"kind":"Delegate","val":2,"amt":4220},"partialState":{"h":5,"t":30,"tokens":[8192,6698,10869,6632],"delegation":[7192,5698,9869,5632],"delegatorTokens":9999999951890}},{"ix":86,"action":{"kind":"Deliver","chain":"provider","numPackets":1},"partialState":{"h":5,"t":30,"tokens":[8192,6698,10869,6632],"delegation":[7192,5698,9869,5632],"delegatorTokens":9999999951890,"jailed":[1000000000000005,null,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":87,"action":{"kind":"Deliver","chain":"consumer","numPackets":1},"partialState":{"h":11,"t":66,"consumerPower":[null,null,6875,8232],"outstandingDowntime":[false,true,false,true]}},{"ix":88,"action":{"kind":"Delegate","val":1,"amt":2306},"partialState":{"h":5,"t":30,"tokens":[8192,9004,10869,6632],"delegation":[7192,8004,9869,5632],"delegatorTokens":9999999949584}},{"ix":89,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":90,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":91,"action":{"kind":"Deliver","chain":"provider","numPackets":4},"partialState":{"h":5,"t":30,"tokens":[8192,9004,10869,6632],"delegation":[7192,8004,9869,5632],"delegatorTokens":9999999949584,"jailed":[1000000000000005,null,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":92,"action":{"kind":"Deliver","chain":"provider","numPackets":1},"partialState":{"h":5,"t":30,"tokens":[8192,9004,10869,6632],"delegation":[7192,8004,9869,5632],"delegatorTokens":9999999949584,"jailed":[1000000000000005,null,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":93,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":12,"t":72,"consumerPower":[null,null,2384,3604],"outstandingDowntime":[false,true,false,true]}},{"ix":94,"action":{"kind":"Delegate","val":0,"amt":3565},"partialState":{"h":5,"t":30,"tokens":[11757,9004,10869,6632],"delegation":[10757,8004,9869,5632],"delegatorTokens":9999999946019}},{"ix":95,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":96,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":97,"action":{"kind":"Undelegate","val":1,"amt":3779},"partialState":{"h":5,"t":30,"tokens":[11757,5225,10869,6632],"delegation":[10757,4225,9869,5632],"delegatorTokens":9999999946019}},{"ix":98,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":99,"action":{"kind":"Undelegate","val":0,"amt":2725},"partialState":{"h":5,"t":30,"tokens":[9032,5225,10869,6632],"delegation":[8032,4225,9869,5632],"delegatorTokens":9999999946019}},{"ix":100,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":101,"action":{"kind":"Undelegate","val":1,"amt":4561},"partialState":{"h":5,"t":30,"tokens":[9032,5225,10869,6632],"delegation":[8032,4225,9869,5632],"delegatorTokens":9999999946019}},{"ix":102,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":6,"t":36,"tokens":[9032,5225,10869,6632],"delegation":[8032,4225,9869,5632],"delegatorTokens":9999999946019,"jailed":[1000000000000005,1000000000000029,null,1000000000000029],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":103,"action":{"kind":"Deliver","chain":"consumer","numPackets":4},"partialState":{"h":12,"t":72,"consumerPower":[null,null,2384,3604],"outstandingDowntime":[false,true,false,true]}},{"ix":104,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":13,"t":78,"consumerPower":[null,null,5287,2441],"outstandingDowntime":[false,true,false,true]}},{"ix":105,"action":{"kind":"Deliver","chain":"consumer","numPackets":5},"partialState":{"h":13,"t":78,"consumerPower":[null,null,5287,2441],"outstandingDowntime":[false,true,false,true]}},{"ix":106,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":107,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":108,"action":{"kind":"Delegate","val":3,"amt":3742},"partialState":{"h":6,"t":36,"tokens":[9032,5225,10869,10374],"delegation":[8032,4225,9869,9374],"delegatorTokens":9999999942277}},{"ix":109,"action":{"kind":"Deliver","chain":"provider","numPackets":5},"partialState":{"h":6,"t":36,"tokens":[9032,5225,10869,10374],"delegation":[8032,4225,9869,9374],"delegatorTokens":9999999942277,"jailed":[1000000000000005,1000000000000029,null,1000000000000029],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":110,"action":{"kind":"Deliver","chain":"consumer","numPackets":1},"partialState":{"h":13,"t":78,"consumerPower":[null,null,5287,2441],"outstandingDowntime":[false,true,false,true]}},{"ix":111,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":112,"action":{"kind":"Deliver","chain":"provider","numPackets":4},"partialState":{"h":6,"t":36,"tokens":[9032,5225,10869,10374],"delegation":[8032,4225,9869,9374],"delegatorTokens":9999999942277,"jailed":[1000000000000005,1000000000000029,null,1000000000000029],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":113,"action":{"kind":"Deliver","chain":"provider","numPackets":1},"partialState":{"h":6,"t":36,"tokens":[9032,5225,10869,10374],"delegation":[8032,4225,9869,9374],"delegatorTokens":9999999942277,"jailed":[1000000000000005,1000000000000029,null,1000000000000029],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":114,"action":{"kind":"Undelegate","val":2,"amt":1404},"partialState":{"h":6,"t":36,"tokens":[9032,5225,9465,10374],"delegation":[8032,4225,8465,9374],"delegatorTokens":9999999942277}},{"ix":115,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":7,"t":42,"tokens":[9032,5225,9465,10374],"delegation":[8032,4225,8465,9374],"delegatorTokens":9999999942277,"jailed":[1000000000000005,1000000000000029,null,1000000000000029],"status":["unbonding","unbonding","bonded","unbonding"]}},{"ix":116,"action":{"kind":"Undelegate","val":3,"amt":4418},"partialState":{"h":7,"t":42,"tokens":[9032,5225,9465,5956],"delegation":[8032,4225,8465,4956],"delegatorTokens":9999999942277}},{"ix":117,"action":{"kind":"Deliver","chain":"provider","numPackets":3},"partialState":{"h":7,"t":42,"tokens":[9032,5225,9465,5956],"delegation":[8032,4225,8465,4956],"delegatorTokens":9999999942277,"jailed":[1000000000000005,1000000000000029,null,1000000000000029],"status":["unbonding","unbonding","bonded","unbonding"]}},{"ix":118,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":119,"action":{"kind":"Deliver","chain":"provider","numPackets":6},"partialState":{"h":7,"t":42,"tokens":[9032,5225,9465,5956],"delegation":[8032,4225,8465,4956],"delegatorTokens":9999999942277,"jailed":[1000000000000005,1000000000000029,null,1000000000000029],"status":["unbonding","unbonding","bonded","unbonding"]}},{"ix":120,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":121,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":8,"t":48,"tokens":[9032,5225,9465,5956],"delegation":[8032,4225,8465,4956],"delegatorTokens":9999999942277,"jailed":[1000000000000005,1000000000000029,null,1000000000000029],"status":["unbonding","unbonding","bonded","unbonding"]}},{"ix":122,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":9,"t":54,"tokens":[9032,5225,9465,5956],"delegation":[8032,4225,8465,4956],"delegatorTokens":9999999942277,"jailed":[1000000000000005,1000000000000029,null,1000000000000029],"status":["unbonding","unbonding","bonded","unbonding"]}},{"ix":123,"action":{"kind":"Deliver","chain":"provider","numPackets":1},"partialState":{"h":9,"t":54,"tokens":[9032,5225,9465,5956],"delegation":[8032,4225,8465,4956],"delegatorTokens":9999999942277,"jailed":[1000000000000005,1000000000000029,null,1000000000000029],"status":["unbonding","unbonding","bonded","unbonding"]}},{"ix":124,"action":{"kind":"Delegate","val":3,"amt":3654},"partialState":{"h":9,"t":54,"tokens":[9032,5225,9465,9610],"delegation":[8032,4225,8465,8610],"delegatorTokens":9999999938623}},{"ix":125,"action":{"kind":"Deliver","chain":"consumer","numPackets":5},"partialState":{"h":13,"t":78,"consumerPower":[null,null,5287,2441],"outstandingDowntime":[false,false,false,false]}},{"ix":126,"action":{"kind":"Deliver","chain":"provider","numPackets":1},"partialState":{"h":9,"t":54,"tokens":[9032,5225,9465,9610],"delegation":[8032,4225,8465,8610],"delegatorTokens":9999999938623,"jailed":[1000000000000005,1000000000000029,null,1000000000000029],"status":["unbonding","unbonding","bonded","unbonding"]}},{"ix":127,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":128,"action":{"kind":"Delegate","val":1,"amt":1705},"partialState":{"h":9,"t":54,"tokens":[9032,6930,9465,9610],"delegation":[8032,5930,8465,8610],"delegatorTokens":9999999936918}},{"ix":129,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":14,"t":84,"consumerPower":[null,null,9465,null],"outstandingDowntime":[false,false,false,false]}},{"ix":130,"action":{"kind":"Deliver","chain":"consumer","numPackets":5},"partialState":{"h":14,"t":84,"consumerPower":[null,null,9465,null],"outstandingDowntime":[false,false,false,false]}},{"ix":131,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":10,"t":60,"tokens":[9032,6930,9465,9610],"delegation":[8032,5930,8465,8610],"delegatorTokens":9999999936918,"jailed":[1000000000000005,1000000000000029,null,1000000000000029],"status":["unbonding","unbonding","bonded","unbonding"]}},{"ix":132,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":15,"t":90,"consumerPower":[null,null,9465,null],"outstandingDowntime":[false,false,false,false]}},{"ix":133,"action":{"kind":"Deliver","chain":"provider","numPackets":5},"partialState":{"h":10,"t":60,"tokens":[9032,6930,9465,9610],"delegation":[8032,5930,8465,8610],"delegatorTokens":9999999936918,"jailed":[1000000000000005,1000000000000029,null,1000000000000029],"status":["unbonding","unbonding","bonded","unbonding"]}},{"ix":134,"action":{"kind":"Delegate","val":1,"amt":2768},"partialState":{"h":10,"t":60,"tokens":[9032,9698,9465,9610],"delegation":[8032,8698,8465,8610],"delegatorTokens":9999999934150}},{"ix":135,"action":{"kind":"Delegate","val":2,"amt":1122},"partialState":{"h":10,"t":60,"tokens":[9032,9698,10587,9610],"delegation":[8032,8698,9587,8610],"delegatorTokens":9999999933028}},{"ix":136,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":137,"action":{"kind":"Delegate","val":3,"amt":3147},"partialState":{"h":10,"t":60,"tokens":[9032,9698,10587,12757],"delegation":[8032,8698,9587,11757],"delegatorTokens":9999999929881}},{"ix":138,"action":{"kind":"Undelegate","val":0,"amt":3488},"partialState":{"h":10,"t":60,"tokens":[5544,9698,10587,12757],"delegation":[4544,8698,9587,11757],"delegatorTokens":9999999929881}},{"ix":139,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":140,"action":{"kind":"Undelegate","val":3,"amt":1210},"partialState":{"h":10,"t":60,"tokens":[5544,9698,10587,11547],"delegation":[4544,8698,9587,10547],"delegatorTokens":9999999929881}},{"ix":141,"action":{"kind":"Deliver","chain":"provider","numPackets":5},"partialState":{"h":10,"t":60,"tokens":[5544,9698,10587,11547],"delegation":[4544,8698,9587,10547],"delegatorTokens":9999999929881,"jailed":[1000000000000005,1000000000000029,null,1000000000000029],"status":["unbonding","unbonding","bonded","unbonding"]}},{"ix":142,"action":{"kind":"Deliver","chain":"consumer","numPackets":5},"partialState":{"h":15,"t":90,"consumerPower":[null,null,9465,null],"outstandingDowntime":[false,false,false,false]}},{"ix":143,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":144,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":16,"t":96,"consumerPower":[null,null,9465,null],"outstandingDowntime":[false,false,false,false]}},{"ix":145,"action":{"kind":"Deliver","chain":"consumer","numPackets":1},"partialState":{"h":16,"t":96,"consumerPower":[null,null,9465,null],"outstandingDowntime":[false,false,false,false]}},{"ix":146,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":11,"t":66,"tokens":[5544,9698,10587,11547],"delegation":[4544,8698,9587,10547],"delegatorTokens":9999999929881,"jailed":[1000000000000005,1000000000000029,null,1000000000000029],"status":["unbonding","unbonding","bonded","unbonding"]}},{"ix":147,"action":{"kind":"Delegate","val":1,"amt":4396},"partialState":{"h":11,"t":66,"tokens":[5544,14094,10587,11547],"delegation":[4544,13094,9587,10547],"delegatorTokens":9999999925485}},{"ix":148,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":149,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":17,"t":102,"consumerPower":[null,null,9465,null],"outstandingDowntime":[false,false,false,false]}},{"ix":150,"action":{"kind":"Deliver","chain":"consumer","numPackets":2},"partialState":{"h":17,"t":102,"consumerPower":[null,null,9465,null],"outstandingDowntime":[false,false,false,false]}},{"ix":151,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":18,"t":108,"consumerPower":[null,null,9465,null],"outstandingDowntime":[false,false,false,false]}},{"ix":152,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":12,"t":72,"tokens":[5544,14094,10587,11547],"delegation":[4544,13094,9587,10547],"delegatorTokens":9999999925485,"jailed":[1000000000000005,1000000000000029,null,1000000000000029],"status":["unbonding","unbonding","bonded","unbonding"]}},{"ix":153,"action":{"kind":"Deliver","chain":"provider","numPackets":1},"partialState":{"h":12,"t":72,"tokens":[5544,14094,10587,11547],"delegation":[4544,13094,9587,10547],"delegatorTokens":9999999925485,"jailed":[1000000000000005,1000000000000029,null,1000000000000029],"status":["unbonding","unbonding","bonded","unbonding"]}},{"ix":154,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":155,"action":{"kind":"Deliver","chain":"provider","numPackets":4},"partialState":{"h":12,"t":72,"tokens":[5544,14094,10587,11547],"delegation":[4544,13094,9587,10547],"delegatorTokens":9999999925485,"jailed":[1000000000000005,1000000000000029,null,1000000000000029],"status":["unbonding","unbonding","bonded","unbonding"]}},{"ix":156,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":157,"action":{"kind":"Delegate","val":1,"amt":2134},"partialState":{"h":12,"t":72,"tokens":[5544,16228,10587,11547],"delegation":[4544,15228,9587,10547],"delegatorTokens":9999999923351}},{"ix":158,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":13,"t":78,"tokens":[5544,16228,10587,11547],"delegation":[4544,15228,9587,10547],"delegatorTokens":9999999923351,"jailed":[1000000000000005,1000000000000029,null,1000000000000029],"status":["unbonding","unbonding","bonded","unbonding"]}},{"ix":159,"action":{"kind":"Undelegate","val":0,"amt":3067},"partialState":{"h":13,"t":78,"tokens":[2477,16228,10587,11547],"delegation":[1477,15228,9587,10547],"delegatorTokens":9999999923351}},{"ix":160,"action":{"kind":"Delegate","val":2,"amt":1846},"partialState":{"h":13,"t":78,"tokens":[2477,16228,12433,11547],"delegation":[1477,15228,11433,10547],"delegatorTokens":9999999921505}},{"ix":161,"action":{"kind":"Delegate","val":1,"amt":1609},"partialState":{"h":13,"t":78,"tokens":[2477,17837,12433,11547],"delegation":[1477,16837,11433,10547],"delegatorTokens":9999999919896}},{"ix":162,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":19,"t":114,"consumerPower":[null,null,9465,null],"outstandingDowntime":[false,false,false,false]}},{"ix":163,"action":{"kind":"Undelegate","val":3,"amt":2535},"partialState":{"h":13,"t":78,"tokens":[2477,17837,12433,9012],"delegation":[1477,16837,11433,8012],"delegatorTokens":9999999919896}},{"ix":164,"action":{"kind":"Undelegate","val":0,"amt":2679},"partialState":{"h":13,"t":78,"tokens":[2477,17837,12433,9012],"delegation":[1477,16837,11433,8012],"delegatorTokens":9999999919896}},{"ix":165,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":14,"t":84,"tokens":[2477,17837,12433,9012],"delegation":[1477,16837,11433,8012],"delegatorTokens":9999999939333,"jailed":[1000000000000005,1000000000000029,null,1000000000000029],"status":["unbonded","unbonded","bonded","unbonding"]}},{"ix":166,"action":{"kind":"Delegate","val":1,"amt":4745},"partialState":{"h":14,"t":84,"tokens":[2477,22582,12433,9012],"delegation":[1477,21582,11433,8012],"delegatorTokens":9999999934588}},{"ix":167,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":15,"t":90,"tokens":[2477,22582,12433,9012],"delegation":[1477,21582,11433,8012],"delegatorTokens":9999999934588,"jailed":[1000000000000005,1000000000000029,null,1000000000000029],"status":["unbonded","unbonded","bonded","unbonding"]}},{"ix":168,"action":{"kind":"Undelegate","val":3,"amt":1736},"partialState":{"h":15,"t":90,"tokens":[2477,22582,12433,7276],"delegation":[1477,21582,11433,6276],"delegatorTokens":9999999934588}},{"ix":169,"action":{"kind":"Delegate","val":1,"amt":4163},"partialState":{"h":15,"t":90,"tokens":[2477,26745,12433,7276],"delegation":[1477,25745,11433,6276],"delegatorTokens":9999999930425}},{"ix":170,"action":{"kind":"Deliver","chain":"consumer","numPackets":2},"partialState":{"h":19,"t":114,"consumerPower":[null,null,9465,null],"outstandingDowntime":[false,false,false,false]}},{"ix":171,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":16,"t":96,"tokens":[2477,26745,12433,7276],"delegation":[1477,25745,11433,6276],"delegatorTokens":9999999930425,"jailed":[1000000000000005,1000000000000029,null,1000000000000029],"status":["unbonded","unbonded","bonded","unbonding"]}},{"ix":172,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":173,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":20,"t":120,"consumerPower":[null,null,12433,null],"outstandingDowntime":[false,false,false,false]}},{"ix":174,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":21,"t":126,"consumerPower":[null,null,12433,null],"outstandingDowntime":[false,false,false,false]}},{"ix":175,"action":{"kind":"Deliver","chain":"provider","numPackets":5},"partialState":{"h":16,"t":96,"tokens":[2477,26745,12433,7276],"delegation":[1477,25745,11433,6276],"delegatorTokens":9999999930425,"jailed":[1000000000000005,1000000000000029,null,1000000000000029],"status":["unbonded","unbonded","bonded","unbonding"]}},{"ix":176,"action":{"kind":"Delegate","val":1,"amt":2790},"partialState":{"h":16,"t":96,"tokens":[2477,29535,12433,7276],"delegation":[1477,28535,11433,6276],"delegatorTokens":9999999927635}},{"ix":177,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":178,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":179,"action":{"kind":"Deliver","chain":"provider","numPackets":6},"partialState":{"h":16,"t":96,"tokens":[2477,29535,12433,7276],"delegation":[1477,28535,11433,6276],"delegatorTokens":9999999927635,"jailed":[1000000000000005,1000000000000029,null,1000000000000029],"status":["unbonded","unbonded","bonded","unbonding"]}},{"ix":180,"action":{"kind":"Delegate","val":3,"amt":3190},"partialState":{"h":16,"t":96,"tokens":[2477,29535,12433,10466],"delegation":[1477,28535,11433,9466],"delegatorTokens":9999999924445}},{"ix":181,"action":{"kind":"Delegate","val":2,"amt":2740},"partialState":{"h":16,"t":96,"tokens":[2477,29535,15173,10466],"delegation":[1477,28535,14173,9466],"delegatorTokens":9999999921705}},{"ix":182,"action":{"kind":"Undelegate","val":2,"amt":1388},"partialState":{"h":16,"t":96,"tokens":[2477,29535,13785,10466],"delegation":[1477,28535,12785,9466],"delegatorTokens":9999999921705}},{"ix":183,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":17,"t":102,"tokens":[2477,29535,13785,10466],"delegation":[1477,28535,12785,9466],"delegatorTokens":9999999921705,"jailed":[1000000000000005,1000000000000029,null,1000000000000029],"status":["unbonded","unbonded","bonded","unbonding"]}},{"ix":184,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":185,"action":{"kind":"Undelegate","val":0,"amt":4156},"partialState":{"h":17,"t":102,"tokens":[2477,29535,13785,10466],"delegation":[1477,28535,12785,9466],"delegatorTokens":9999999921705}},{"ix":186,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":22,"t":132,"consumerPower":[null,null,12433,null],"outstandingDowntime":[false,false,false,false]}},{"ix":187,"action":{"kind":"Undelegate","val":2,"amt":2114},"partialState":{"h":17,"t":102,"tokens":[2477,29535,11671,10466],"delegation":[1477,28535,10671,9466],"delegatorTokens":9999999921705}},{"ix":188,"action":{"kind":"Delegate","val":0,"amt":1533},"partialState":{"h":17,"t":102,"tokens":[4010,29535,11671,10466],"delegation":[3010,28535,10671,9466],"delegatorTokens":9999999920172}},{"ix":189,"action":{"kind":"Undelegate","val":0,"amt":4631},"partialState":{"h":17,"t":102,"tokens":[4010,29535,11671,10466],"delegation":[3010,28535,10671,9466],"delegatorTokens":9999999920172}},{"ix":190,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":191,"action":{"kind":"Deliver","chain":"consumer","numPackets":4},"partialState":{"h":22,"t":132,"consumerPower":[null,null,12433,null],"outstandingDowntime":[false,false,false,false]}},{"ix":192,"action":{"kind":"Undelegate","val":1,"amt":4449},"partialState":{"h":17,"t":102,"tokens":[4010,25086,11671,10466],"delegation":[3010,24086,10671,9466],"delegatorTokens":9999999920172}},{"ix":193,"action":{"kind":"Undelegate","val":1,"amt":2720},"partialState":{"h":17,"t":102,"tokens":[4010,22366,11671,10466],"delegation":[3010,21366,10671,9466],"delegatorTokens":9999999920172}},{"ix":194,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":195,"action":{"kind":"Delegate","val":3,"amt":1730},"partialState":{"h":17,"t":102,"tokens":[4010,22366,11671,12196],"delegation":[3010,21366,10671,11196],"delegatorTokens":9999999918442}},{"ix":196,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":23,"t":138,"consumerPower":[null,null,12433,null],"outstandingDowntime":[false,false,false,false]}},{"ix":197,"action":{"kind":"Delegate","val":2,"amt":1879},"partialState":{"h":17,"t":102,"tokens":[4010,22366,13550,12196],"delegation":[3010,21366,12550,11196],"delegatorTokens":9999999916563}},{"ix":198,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":199,"action":{"kind":"Undelegate","val":2,"amt":4812},"partialState":{"h":17,"t":102,"tokens":[4010,22366,8738,12196],"delegation":[3010,21366,7738,11196],"delegatorTokens":9999999916563}}],"events":["send_double_sign_slash_request","send_double_sign_slash_request","send_downtime_slash_request","send_double_sign_slash_request","send_double_sign_slash_request","insufficient_shares","receive_double_sign_slash_request","receive_double_sign_slash_request","insufficient_shares","send_double_sign_slash_request","more_than_one_third_val_power_change","receive_downtime_slash_request","jail","send_vsc_with_downtime_ack","receive_double_sign_slash_request","receive_double_sign_slash_request","insufficient_shares","insufficient_shares","receive_downtime_slash_ack","send_downtime_slash_request","send_double_sign_slash_request","downtime_slash_request_outstanding","send_double_sign_slash_request","send_vsc_without_downtime_ack","send_double_sign_slash_request","send_vsc_without_downtime_ack","send_double_sign_slash_request","consumer_del_val","consumer_del_val","consumer_add_val","consumer_add_val","receive_double_sign_slash_request","receive_double_sign_slash_request","receive_double_sign_slash_request","receive_double_sign_slash_request","receive_double_sign_slash_request","send_downtime_slash_request","consumer_update_val","consumer_update_val","insufficient_shares","receive_downtime_slash_request","jail","receive_downtime_slash_request","jail","send_vsc_with_downtime_ack","consumer_update_val","consumer_update_val","send_vsc_without_downtime_ack","send_vsc_not_because_change","send_vsc_without_downtime_ack","receive_downtime_slash_ack","receive_downtime_slash_ack","consumer_update_val","consumer_del_val","consumer_send_maturation","send_vsc_without_downtime_ack","set_undel_hold_false","set_undel_hold_false","set_undel_hold_false","set_undel_hold_false","set_undel_hold_false","set_undel_hold_false","set_undel_hold_false","set_undel_hold_false","set_unval_hold_false","set_unval_hold_false","insufficient_shares","complete_unval_in_endblock","complete_unval_in_endblock","complete_undel_in_endblock","send_vsc_without_downtime_ack","some_undels_expired_but_not_completed","send_vsc_not_because_change","send_vsc_without_downtime_ack","consumer_update_val","consumer_send_maturation","some_undels_expired_but_not_completed","send_vsc_without_downtime_ack","insufficient_shares","consumer_send_maturation","insufficient_shares","consumer_send_maturation","consumer_send_maturation","consumer_send_maturation"]},{"meta":{"commit":"7ffd0c04e4205cbc9caf212abfe6c59ee43153bf"},"constants":{"P":"provider","C":"consumer","UNBONDING_SECONDS_P":70,"UNBONDING_SECONDS_C":50,"TRUSTING_SECONDS":49,"NUM_VALIDATORS":4,"MAX_VALIDATORS":2,"SLASH_DOUBLESIGN":0,"SLASH_DOWNTIME":0,"JAIL_SECONDS":999999999999999,"BLOCK_SECONDS":6,"INITIAL_DELEGATOR_TOKENS":10000000000000,"DELEGATE_AMT_MIN":1000,"DELEGATE_AMT_MAX":5000,"UNDELEGATE_AMT_MIN":1000,"UNDELEGATE_AMT_MAX":5000,"ISDOWNTIME_PROBABILITY":0.5,"MAX_NUM_PACKETS_FOR_DELIVER":6},"actions":[{"ix":0,"action":{"kind":"ConsumerSlash","val":1,"infractionHeight":0,"isDowntime":true},"partialState":{"h":1,"t":6,"outstandingDowntime":[false,true,false,false]}},{"ix":1,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":2,"t":12,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,true,false,false]}},{"ix":2,"action":{"kind":"Deliver","chain":"provider","numPackets":5},"partialState":{"h":1,"t":6,"tokens":[5000,4000,3000,2000],"delegation":[4000,3000,2000,1000],"delegatorTokens":10000000000000,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":3,"action":{"kind":"Undelegate","val":2,"amt":3588},"partialState":{"h":1,"t":6,"tokens":[5000,4000,3000,2000],"delegation":[4000,3000,2000,1000],"delegatorTokens":10000000000000}},{"ix":4,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":5,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":3,"t":18,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,true,false,false]}},{"ix":6,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":7,"action":{"kind":"Deliver","chain":"consumer","numPackets":1},"partialState":{"h":3,"t":18,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,true,false,false]}},{"ix":8,"action":{"kind":"Delegate","val":2,"amt":4246},"partialState":{"h":1,"t":6,"tokens":[5000,4000,7246,2000],"delegation":[4000,3000,6246,1000],"delegatorTokens":9999999995754}},{"ix":9,"action":{"kind":"Delegate","val":3,"amt":1001},"partialState":{"h":1,"t":6,"tokens":[5000,4000,7246,3001],"delegation":[4000,3000,6246,2001],"delegatorTokens":9999999994753}},{"ix":10,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":2,"t":12,"tokens":[5000,4000,7246,3001],"delegation":[4000,3000,6246,2001],"delegatorTokens":9999999994753,"jailed":[null,null,null,null],"status":["bonded","unbonding","bonded","unbonded"]}},{"ix":11,"action":{"kind":"ConsumerSlash","val":0,"infractionHeight":0,"isDowntime":true},"partialState":{"h":3,"t":18,"outstandingDowntime":[true,true,false,false]}},{"ix":12,"action":{"kind":"Delegate","val":0,"amt":3425},"partialState":{"h":2,"t":12,"tokens":[8425,4000,7246,3001],"delegation":[7425,3000,6246,2001],"delegatorTokens":9999999991328}},{"ix":13,"action":{"kind":"Undelegate","val":2,"amt":1355},"partialState":{"h":2,"t":12,"tokens":[8425,4000,5891,3001],"delegation":[7425,3000,4891,2001],"delegatorTokens":9999999991328}},{"ix":14,"action":{"kind":"Delegate","val":3,"amt":1688},"partialState":{"h":2,"t":12,"tokens":[8425,4000,5891,4689],"delegation":[7425,3000,4891,3689],"delegatorTokens":9999999989640}},{"ix":15,"action":{"kind":"ConsumerSlash","val":1,"infractionHeight":1,"isDowntime":true},"partialState":{"h":3,"t":18,"outstandingDowntime":[true,true,false,false]}},{"ix":16,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":4,"t":24,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[true,true,false,false]}},{"ix":17,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":5,"t":30,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[true,true,false,false]}},{"ix":18,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":19,"action":{"kind":"Delegate","val":0,"amt":2798},"partialState":{"h":2,"t":12,"tokens":[11223,4000,5891,4689],"delegation":[10223,3000,4891,3689],"delegatorTokens":9999999986842}},{"ix":20,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":21,"action":{"kind":"Deliver","chain":"consumer","numPackets":5},"partialState":{"h":5,"t":30,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[true,true,false,false]}},{"ix":22,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":6,"t":36,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[true,true,false,false]}},{"ix":23,"action":{"kind":"Undelegate","val":3,"amt":4710},"partialState":{"h":2,"t":12,"tokens":[11223,4000,5891,4689],"delegation":[10223,3000,4891,3689],"delegatorTokens":9999999986842}},{"ix":24,"action":{"kind":"Delegate","val":0,"amt":3145},"partialState":{"h":2,"t":12,"tokens":[14368,4000,5891,4689],"delegation":[13368,3000,4891,3689],"delegatorTokens":9999999983697}},{"ix":25,"action":{"kind":"Deliver","chain":"consumer","numPackets":1},"partialState":{"h":6,"t":36,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[true,true,false,false]}},{"ix":26,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":3,"t":18,"tokens":[14368,4000,5891,4689],"delegation":[13368,3000,4891,3689],"delegatorTokens":9999999983697,"jailed":[null,null,null,null],"status":["bonded","unbonding","bonded","unbonded"]}},{"ix":27,"action":{"kind":"Delegate","val":0,"amt":3160},"partialState":{"h":3,"t":18,"tokens":[17528,4000,5891,4689],"delegation":[16528,3000,4891,3689],"delegatorTokens":9999999980537}},{"ix":28,"action":{"kind":"Deliver","chain":"consumer","numPackets":5},"partialState":{"h":6,"t":36,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[true,true,false,false]}},{"ix":29,"action":{"kind":"Delegate","val":2,"amt":4969},"partialState":{"h":3,"t":18,"tokens":[17528,4000,10860,4689],"delegation":[16528,3000,9860,3689],"delegatorTokens":9999999975568}},{"ix":30,"action":{"kind":"Deliver","chain":"consumer","numPackets":3},"partialState":{"h":6,"t":36,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[true,true,false,false]}},{"ix":31,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":7,"t":42,"consumerPower":[5000,null,7246,null],"outstandingDowntime":[true,true,false,false]}},{"ix":32,"action":{"kind":"Delegate","val":0,"amt":1061},"partialState":{"h":3,"t":18,"tokens":[18589,4000,10860,4689],"delegation":[17589,3000,9860,3689],"delegatorTokens":9999999974507}},{"ix":33,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":4,"t":24,"tokens":[18589,4000,10860,4689],"delegation":[17589,3000,9860,3689],"delegatorTokens":9999999974507,"jailed":[null,null,null,null],"status":["bonded","unbonding","bonded","unbonded"]}},{"ix":34,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":5,"t":30,"tokens":[18589,4000,10860,4689],"delegation":[17589,3000,9860,3689],"delegatorTokens":9999999974507,"jailed":[null,null,null,null],"status":["bonded","unbonding","bonded","unbonded"]}},{"ix":35,"action":{"kind":"Deliver","chain":"provider","numPackets":2},"partialState":{"h":5,"t":30,"tokens":[18589,4000,10860,4689],"delegation":[17589,3000,9860,3689],"delegatorTokens":9999999974507,"jailed":[null,null,null,null],"status":["bonded","unbonding","bonded","unbonded"]}},{"ix":36,"action":{"kind":"Undelegate","val":0,"amt":3781},"partialState":{"h":5,"t":30,"tokens":[14808,4000,10860,4689],"delegation":[13808,3000,9860,3689],"delegatorTokens":9999999974507}},{"ix":37,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":38,"action":{"kind":"Delegate","val":3,"amt":2213},"partialState":{"h":5,"t":30,"tokens":[14808,4000,10860,6902],"delegation":[13808,3000,9860,5902],"delegatorTokens":9999999972294}},{"ix":39,"action":{"kind":"ConsumerSlash","val":0,"infractionHeight":0,"isDowntime":true},"partialState":{"h":7,"t":42,"outstandingDowntime":[true,true,false,false]}},{"ix":40,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":41,"action":{"kind":"Delegate","val":2,"amt":3010},"partialState":{"h":5,"t":30,"tokens":[14808,4000,13870,6902],"delegation":[13808,3000,12870,5902],"delegatorTokens":9999999969284}},{"ix":42,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":43,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":6,"t":36,"tokens":[14808,4000,13870,6902],"delegation":[13808,3000,12870,5902],"delegatorTokens":9999999969284,"jailed":[1000000000000029,1000000000000029,null,null],"status":["bonded","unbonding","bonded","unbonded"]}},{"ix":44,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":45,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":46,"action":{"kind":"Deliver","chain":"provider","numPackets":2},"partialState":{"h":6,"t":36,"tokens":[14808,4000,13870,6902],"delegation":[13808,3000,12870,5902],"delegatorTokens":9999999969284,"jailed":[1000000000000029,1000000000000029,null,null],"status":["bonded","unbonding","bonded","unbonded"]}},{"ix":47,"action":{"kind":"Delegate","val":2,"amt":4343},"partialState":{"h":6,"t":36,"tokens":[14808,4000,18213,6902],"delegation":[13808,3000,17213,5902],"delegatorTokens":9999999964941}},{"ix":48,"action":{"kind":"Deliver","chain":"consumer","numPackets":1},"partialState":{"h":7,"t":42,"consumerPower":[5000,null,7246,null],"outstandingDowntime":[true,true,false,false]}},{"ix":49,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":7,"t":42,"tokens":[14808,4000,18213,6902],"delegation":[13808,3000,17213,5902],"delegatorTokens":9999999964941,"jailed":[1000000000000029,1000000000000029,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":50,"action":{"kind":"Delegate","val":1,"amt":2711},"partialState":{"h":7,"t":42,"tokens":[14808,6711,18213,6902],"delegation":[13808,5711,17213,5902],"delegatorTokens":9999999962230}},{"ix":51,"action":{"kind":"ConsumerSlash","val":0,"infractionHeight":3,"isDowntime":false},"partialState":{"h":7,"t":42,"outstandingDowntime":[true,true,false,false]}},{"ix":52,"action":{"kind":"Delegate","val":3,"amt":1176},"partialState":{"h":7,"t":42,"tokens":[14808,6711,18213,8078],"delegation":[13808,5711,17213,7078],"delegatorTokens":9999999961054}},{"ix":53,"action":{"kind":"Delegate","val":2,"amt":1700},"partialState":{"h":7,"t":42,"tokens":[14808,6711,19913,8078],"delegation":[13808,5711,18913,7078],"delegatorTokens":9999999959354}},{"ix":54,"action":{"kind":"ConsumerSlash","val":1,"infractionHeight":3,"isDowntime":true},"partialState":{"h":7,"t":42,"outstandingDowntime":[true,true,false,false]}},{"ix":55,"action":{"kind":"Delegate","val":3,"amt":4903},"partialState":{"h":7,"t":42,"tokens":[14808,6711,19913,12981],"delegation":[13808,5711,18913,11981],"delegatorTokens":9999999954451}},{"ix":56,"action":{"kind":"ConsumerSlash","val":1,"infractionHeight":5,"isDowntime":false},"partialState":{"h":7,"t":42,"outstandingDowntime":[true,true,false,false]}},{"ix":57,"action":{"kind":"Deliver","chain":"provider","numPackets":3},"partialState":{"h":7,"t":42,"tokens":[14808,6711,19913,12981],"delegation":[13808,5711,18913,11981],"delegatorTokens":9999999954451,"jailed":[1000000000000029,1000000000000029,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":58,"action":{"kind":"Delegate","val":2,"amt":3009},"partialState":{"h":7,"t":42,"tokens":[14808,6711,22922,12981],"delegation":[13808,5711,21922,11981],"delegatorTokens":9999999951442}},{"ix":59,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":8,"t":48,"consumerPower":[14368,null,5891,null],"outstandingDowntime":[true,true,false,false]}},{"ix":60,"action":{"kind":"Undelegate","val":2,"amt":2511},"partialState":{"h":7,"t":42,"tokens":[14808,6711,20411,12981],"delegation":[13808,5711,19411,11981],"delegatorTokens":9999999951442}},{"ix":61,"action":{"kind":"Undelegate","val":2,"amt":3845},"partialState":{"h":7,"t":42,"tokens":[14808,6711,16566,12981],"delegation":[13808,5711,15566,11981],"delegatorTokens":9999999951442}},{"ix":62,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":9,"t":54,"consumerPower":[14368,null,5891,null],"outstandingDowntime":[true,true,false,false]}},{"ix":63,"action":{"kind":"Deliver","chain":"provider","numPackets":6},"partialState":{"h":7,"t":42,"tokens":[14808,6711,16566,12981],"delegation":[13808,5711,15566,11981],"delegatorTokens":9999999951442,"jailed":[1000000000000029,1000000000000029,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":64,"action":{"kind":"ConsumerSlash","val":0,"infractionHeight":2,"isDowntime":true},"partialState":{"h":9,"t":54,"outstandingDowntime":[true,true,false,false]}},{"ix":65,"action":{"kind":"Undelegate","val":0,"amt":3198},"partialState":{"h":7,"t":42,"tokens":[11610,6711,16566,12981],"delegation":[10610,5711,15566,11981],"delegatorTokens":9999999951442}},{"ix":66,"action":{"kind":"ConsumerSlash","val":0,"infractionHeight":6,"isDowntime":false},"partialState":{"h":9,"t":54,"outstandingDowntime":[true,true,false,false]}},{"ix":67,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":68,"action":{"kind":"Delegate","val":2,"amt":4076},"partialState":{"h":7,"t":42,"tokens":[11610,6711,20642,12981],"delegation":[10610,5711,19642,11981],"delegatorTokens":9999999947366}},{"ix":69,"action":{"kind":"Deliver","chain":"provider","numPackets":2},"partialState":{"h":7,"t":42,"tokens":[11610,6711,20642,12981],"delegation":[10610,5711,19642,11981],"delegatorTokens":9999999947366,"jailed":[1000000000000029,1000000000000029,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":70,"action":{"kind":"Delegate","val":0,"amt":3847},"partialState":{"h":7,"t":42,"tokens":[15457,6711,20642,12981],"delegation":[14457,5711,19642,11981],"delegatorTokens":9999999943519}},{"ix":71,"action":{"kind":"Delegate","val":2,"amt":4344},"partialState":{"h":7,"t":42,"tokens":[15457,6711,24986,12981],"delegation":[14457,5711,23986,11981],"delegatorTokens":9999999939175}},{"ix":72,"action":{"kind":"Delegate","val":1,"amt":1588},"partialState":{"h":7,"t":42,"tokens":[15457,8299,24986,12981],"delegation":[14457,7299,23986,11981],"delegatorTokens":9999999937587}},{"ix":73,"action":{"kind":"ConsumerSlash","val":0,"infractionHeight":0,"isDowntime":true},"partialState":{"h":9,"t":54,"outstandingDowntime":[true,true,false,false]}},{"ix":74,"action":{"kind":"ConsumerSlash","val":1,"infractionHeight":5,"isDowntime":true},"partialState":{"h":9,"t":54,"outstandingDowntime":[true,true,false,false]}},{"ix":75,"action":{"kind":"ConsumerSlash","val":0,"infractionHeight":2,"isDowntime":true},"partialState":{"h":9,"t":54,"outstandingDowntime":[true,true,false,false]}},{"ix":76,"action":{"kind":"Deliver","chain":"consumer","numPackets":2},"partialState":{"h":9,"t":54,"consumerPower":[14368,null,5891,null],"outstandingDowntime":[false,false,false,false]}},{"ix":77,"action":{"kind":"Deliver","chain":"provider","numPackets":2},"partialState":{"h":7,"t":42,"tokens":[15457,8299,24986,12981],"delegation":[14457,7299,23986,11981],"delegatorTokens":9999999937587,"jailed":[1000000000000029,1000000000000029,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":78,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":79,"action":{"kind":"ConsumerSlash","val":1,"infractionHeight":4,"isDowntime":true},"partialState":{"h":9,"t":54,"outstandingDowntime":[false,true,false,false]}},{"ix":80,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":81,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":8,"t":48,"tokens":[15457,8299,24986,12981],"delegation":[14457,7299,23986,11981],"delegatorTokens":9999999937587,"jailed":[1000000000000029,1000000000000029,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":82,"action":{"kind":"ConsumerSlash","val":0,"infractionHeight":0,"isDowntime":true},"partialState":{"h":9,"t":54,"outstandingDowntime":[true,true,false,false]}},{"ix":83,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":10,"t":60,"consumerPower":[14808,null,13870,null],"outstandingDowntime":[true,true,false,false]}},{"ix":84,"action":{"kind":"Undelegate","val":0,"amt":1058},"partialState":{"h":8,"t":48,"tokens":[14399,8299,24986,12981],"delegation":[13399,7299,23986,11981],"delegatorTokens":9999999937587}},{"ix":85,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":86,"action":{"kind":"Delegate","val":3,"amt":3465},"partialState":{"h":8,"t":48,"tokens":[14399,8299,24986,16446],"delegation":[13399,7299,23986,15446],"delegatorTokens":9999999934122}},{"ix":87,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":88,"action":{"kind":"Deliver","chain":"consumer","numPackets":4},"partialState":{"h":10,"t":60,"consumerPower":[14808,null,13870,null],"outstandingDowntime":[true,true,false,false]}},{"ix":89,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":11,"t":66,"consumerPower":[null,null,18213,6902],"outstandingDowntime":[true,true,false,false]}},{"ix":90,"action":{"kind":"Delegate","val":2,"amt":3698},"partialState":{"h":8,"t":48,"tokens":[14399,8299,28684,16446],"delegation":[13399,7299,27684,15446],"delegatorTokens":9999999930424}},{"ix":91,"action":{"kind":"Deliver","chain":"provider","numPackets":1},"partialState":{"h":8,"t":48,"tokens":[14399,8299,28684,16446],"delegation":[13399,7299,27684,15446],"delegatorTokens":9999999930424,"jailed":[1000000000000029,1000000000000029,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":92,"action":{"kind":"ConsumerSlash","val":1,"infractionHeight":5,"isDowntime":true},"partialState":{"h":11,"t":66,"outstandingDowntime":[true,true,false,false]}},{"ix":93,"action":{"kind":"ConsumerSlash","val":0,"infractionHeight":7,"isDowntime":true},"partialState":{"h":11,"t":66,"outstandingDowntime":[true,true,false,false]}},{"ix":94,"action":{"kind":"Delegate","val":2,"amt":2610},"partialState":{"h":8,"t":48,"tokens":[14399,8299,31294,16446],"delegation":[13399,7299,30294,15446],"delegatorTokens":9999999927814}},{"ix":95,"action":{"kind":"ConsumerSlash","val":2,"infractionHeight":1,"isDowntime":true},"partialState":{"h":11,"t":66,"outstandingDowntime":[true,true,true,false]}},{"ix":96,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":97,"action":{"kind":"Undelegate","val":3,"amt":2661},"partialState":{"h":8,"t":48,"tokens":[14399,8299,31294,13785],"delegation":[13399,7299,30294,12785],"delegatorTokens":9999999927814}},{"ix":98,"action":{"kind":"Undelegate","val":2,"amt":3670},"partialState":{"h":8,"t":48,"tokens":[14399,8299,27624,13785],"delegation":[13399,7299,26624,12785],"delegatorTokens":9999999927814}},{"ix":99,"action":{"kind":"Undelegate","val":3,"amt":4761},"partialState":{"h":8,"t":48,"tokens":[14399,8299,27624,9024],"delegation":[13399,7299,26624,8024],"delegatorTokens":9999999927814}},{"ix":100,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":9,"t":54,"tokens":[14399,8299,27624,9024],"delegation":[13399,7299,26624,8024],"delegatorTokens":9999999927814,"jailed":[1000000000000029,1000000000000029,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":101,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":10,"t":60,"tokens":[14399,8299,27624,9024],"delegation":[13399,7299,26624,8024],"delegatorTokens":9999999927814,"jailed":[1000000000000029,1000000000000029,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":102,"action":{"kind":"Delegate","val":3,"amt":1874},"partialState":{"h":10,"t":60,"tokens":[14399,8299,27624,10898],"delegation":[13399,7299,26624,9898],"delegatorTokens":9999999925940}},{"ix":103,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":12,"t":72,"consumerPower":[null,null,18213,6902],"outstandingDowntime":[true,true,true,false]}},{"ix":104,"action":{"kind":"Undelegate","val":3,"amt":3459},"partialState":{"h":10,"t":60,"tokens":[14399,8299,27624,7439],"delegation":[13399,7299,26624,6439],"delegatorTokens":9999999925940}},{"ix":105,"action":{"kind":"Undelegate","val":2,"amt":1176},"partialState":{"h":10,"t":60,"tokens":[14399,8299,26448,7439],"delegation":[13399,7299,25448,6439],"delegatorTokens":9999999925940}},{"ix":106,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":107,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":13,"t":78,"consumerPower":[null,null,18213,6902],"outstandingDowntime":[true,true,true,false]}},{"ix":108,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":14,"t":84,"consumerPower":[null,null,18213,6902],"outstandingDowntime":[true,true,true,false]}},{"ix":109,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":110,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":111,"action":{"kind":"Undelegate","val":1,"amt":1534},"partialState":{"h":10,"t":60,"tokens":[14399,6765,26448,7439],"delegation":[13399,5765,25448,6439],"delegatorTokens":9999999925940}},{"ix":112,"action":{"kind":"Delegate","val":0,"amt":3654},"partialState":{"h":10,"t":60,"tokens":[18053,6765,26448,7439],"delegation":[17053,5765,25448,6439],"delegatorTokens":9999999922286}},{"ix":113,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":114,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":15,"t":90,"consumerPower":[null,null,18213,6902],"outstandingDowntime":[true,true,true,false]}},{"ix":115,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":116,"action":{"kind":"Undelegate","val":2,"amt":1634},"partialState":{"h":10,"t":60,"tokens":[18053,6765,24814,7439],"delegation":[17053,5765,23814,6439],"delegatorTokens":9999999922286}},{"ix":117,"action":{"kind":"Deliver","chain":"consumer","numPackets":2},"partialState":{"h":15,"t":90,"consumerPower":[null,null,18213,6902],"outstandingDowntime":[true,true,true,false]}},{"ix":118,"action":{"kind":"Deliver","chain":"consumer","numPackets":6},"partialState":{"h":15,"t":90,"consumerPower":[null,null,18213,6902],"outstandingDowntime":[true,true,true,false]}},{"ix":119,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":11,"t":66,"tokens":[18053,6765,24814,7439],"delegation":[17053,5765,23814,6439],"delegatorTokens":9999999922286,"jailed":[1000000000000029,1000000000000029,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":120,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":121,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":16,"t":96,"consumerPower":[null,null,27624,9024],"outstandingDowntime":[true,true,true,false]}},{"ix":122,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":123,"action":{"kind":"Deliver","chain":"consumer","numPackets":1},"partialState":{"h":16,"t":96,"consumerPower":[null,null,27624,9024],"outstandingDowntime":[true,true,true,false]}},{"ix":124,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":125,"action":{"kind":"Deliver","chain":"consumer","numPackets":6},"partialState":{"h":16,"t":96,"consumerPower":[null,null,27624,9024],"outstandingDowntime":[true,true,true,false]}},{"ix":126,"action":{"kind":"Undelegate","val":1,"amt":3466},"partialState":{"h":11,"t":66,"tokens":[18053,3299,24814,7439],"delegation":[17053,2299,23814,6439],"delegatorTokens":9999999922286}},{"ix":127,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":128,"action":{"kind":"Deliver","chain":"consumer","numPackets":5},"partialState":{"h":16,"t":96,"consumerPower":[null,null,27624,9024],"outstandingDowntime":[true,true,true,false]}},{"ix":129,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":130,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":131,"action":{"kind":"Undelegate","val":3,"amt":4940},"partialState":{"h":11,"t":66,"tokens":[18053,3299,24814,2499],"delegation":[17053,2299,23814,1499],"delegatorTokens":9999999922286}},{"ix":132,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":133,"action":{"kind":"Undelegate","val":3,"amt":4467},"partialState":{"h":11,"t":66,"tokens":[18053,3299,24814,2499],"delegation":[17053,2299,23814,1499],"delegatorTokens":9999999922286}},{"ix":134,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":135,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":136,"action":{"kind":"Delegate","val":1,"amt":2736},"partialState":{"h":11,"t":66,"tokens":[18053,6035,24814,2499],"delegation":[17053,5035,23814,1499],"delegatorTokens":9999999919550}},{"ix":137,"action":{"kind":"Deliver","chain":"consumer","numPackets":5},"partialState":{"h":16,"t":96,"consumerPower":[null,null,27624,9024],"outstandingDowntime":[true,true,true,false]}},{"ix":138,"action":{"kind":"Undelegate","val":1,"amt":1749},"partialState":{"h":11,"t":66,"tokens":[18053,4286,24814,2499],"delegation":[17053,3286,23814,1499],"delegatorTokens":9999999919550}},{"ix":139,"action":{"kind":"Delegate","val":1,"amt":3175},"partialState":{"h":11,"t":66,"tokens":[18053,7461,24814,2499],"delegation":[17053,6461,23814,1499],"delegatorTokens":9999999916375}},{"ix":140,"action":{"kind":"Undelegate","val":2,"amt":2752},"partialState":{"h":11,"t":66,"tokens":[18053,7461,22062,2499],"delegation":[17053,6461,21062,1499],"delegatorTokens":9999999916375}},{"ix":141,"action":{"kind":"Delegate","val":0,"amt":1601},"partialState":{"h":11,"t":66,"tokens":[19654,7461,22062,2499],"delegation":[18654,6461,21062,1499],"delegatorTokens":9999999914774}},{"ix":142,"action":{"kind":"Deliver","chain":"provider","numPackets":2},"partialState":{"h":11,"t":66,"tokens":[19654,7461,22062,2499],"delegation":[18654,6461,21062,1499],"delegatorTokens":9999999914774,"jailed":[1000000000000029,1000000000000029,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":143,"action":{"kind":"Undelegate","val":0,"amt":1694},"partialState":{"h":11,"t":66,"tokens":[17960,7461,22062,2499],"delegation":[16960,6461,21062,1499],"delegatorTokens":9999999914774}},{"ix":144,"action":{"kind":"Delegate","val":3,"amt":1851},"partialState":{"h":11,"t":66,"tokens":[17960,7461,22062,4350],"delegation":[16960,6461,21062,3350],"delegatorTokens":9999999912923}},{"ix":145,"action":{"kind":"Undelegate","val":2,"amt":1423},"partialState":{"h":11,"t":66,"tokens":[17960,7461,20639,4350],"delegation":[16960,6461,19639,3350],"delegatorTokens":9999999912923}},{"ix":146,"action":{"kind":"Delegate","val":0,"amt":2290},"partialState":{"h":11,"t":66,"tokens":[20250,7461,20639,4350],"delegation":[19250,6461,19639,3350],"delegatorTokens":9999999910633}},{"ix":147,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":12,"t":72,"tokens":[20250,7461,20639,4350],"delegation":[19250,6461,19639,3350],"delegatorTokens":9999999910633,"jailed":[1000000000000065,1000000000000065,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":148,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":149,"action":{"kind":"Undelegate","val":3,"amt":4624},"partialState":{"h":12,"t":72,"tokens":[20250,7461,20639,4350],"delegation":[19250,6461,19639,3350],"delegatorTokens":9999999910633}},{"ix":150,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":13,"t":78,"tokens":[20250,7461,20639,4350],"delegation":[19250,6461,19639,3350],"delegatorTokens":9999999910633,"jailed":[1000000000000065,1000000000000065,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":151,"action":{"kind":"Delegate","val":1,"amt":2270},"partialState":{"h":13,"t":78,"tokens":[20250,9731,20639,4350],"delegation":[19250,8731,19639,3350],"delegatorTokens":9999999908363}},{"ix":152,"action":{"kind":"Undelegate","val":3,"amt":4995},"partialState":{"h":13,"t":78,"tokens":[20250,9731,20639,4350],"delegation":[19250,8731,19639,3350],"delegatorTokens":9999999908363}},{"ix":153,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":17,"t":102,"consumerPower":[null,null,27624,9024],"outstandingDowntime":[true,true,true,false]}},{"ix":154,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":18,"t":108,"consumerPower":[null,null,27624,9024],"outstandingDowntime":[true,true,true,false]}},{"ix":155,"action":{"kind":"Delegate","val":2,"amt":2681},"partialState":{"h":13,"t":78,"tokens":[20250,9731,23320,4350],"delegation":[19250,8731,22320,3350],"delegatorTokens":9999999905682}},{"ix":156,"action":{"kind":"Delegate","val":2,"amt":3623},"partialState":{"h":13,"t":78,"tokens":[20250,9731,26943,4350],"delegation":[19250,8731,25943,3350],"delegatorTokens":9999999902059}},{"ix":157,"action":{"kind":"Deliver","chain":"provider","numPackets":6},"partialState":{"h":13,"t":78,"tokens":[20250,9731,26943,4350],"delegation":[19250,8731,25943,3350],"delegatorTokens":9999999902059,"jailed":[1000000000000065,1000000000000065,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":158,"action":{"kind":"Deliver","chain":"provider","numPackets":5},"partialState":{"h":13,"t":78,"tokens":[20250,9731,26943,4350],"delegation":[19250,8731,25943,3350],"delegatorTokens":9999999902059,"jailed":[1000000000000065,1000000000000065,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":159,"action":{"kind":"Deliver","chain":"consumer","numPackets":5},"partialState":{"h":18,"t":108,"consumerPower":[null,null,27624,9024],"outstandingDowntime":[false,false,true,false]}},{"ix":160,"action":{"kind":"Deliver","chain":"consumer","numPackets":1},"partialState":{"h":18,"t":108,"consumerPower":[null,null,27624,9024],"outstandingDowntime":[false,false,true,false]}},{"ix":161,"action":{"kind":"Deliver","chain":"consumer","numPackets":1},"partialState":{"h":18,"t":108,"consumerPower":[null,null,27624,9024],"outstandingDowntime":[false,false,true,false]}},{"ix":162,"action":{"kind":"Undelegate","val":1,"amt":3835},"partialState":{"h":13,"t":78,"tokens":[20250,5896,26943,4350],"delegation":[19250,4896,25943,3350],"delegatorTokens":9999999902059}},{"ix":163,"action":{"kind":"Undelegate","val":3,"amt":4724},"partialState":{"h":13,"t":78,"tokens":[20250,5896,26943,4350],"delegation":[19250,4896,25943,3350],"delegatorTokens":9999999902059}},{"ix":164,"action":{"kind":"Undelegate","val":3,"amt":1842},"partialState":{"h":13,"t":78,"tokens":[20250,5896,26943,2508],"delegation":[19250,4896,25943,1508],"delegatorTokens":9999999902059}},{"ix":165,"action":{"kind":"Delegate","val":0,"amt":4375},"partialState":{"h":13,"t":78,"tokens":[24625,5896,26943,2508],"delegation":[23625,4896,25943,1508],"delegatorTokens":9999999897684}},{"ix":166,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":167,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":168,"action":{"kind":"Delegate","val":1,"amt":1303},"partialState":{"h":13,"t":78,"tokens":[24625,7199,26943,2508],"delegation":[23625,6199,25943,1508],"delegatorTokens":9999999896381}},{"ix":169,"action":{"kind":"Deliver","chain":"provider","numPackets":2},"partialState":{"h":13,"t":78,"tokens":[24625,7199,26943,2508],"delegation":[23625,6199,25943,1508],"delegatorTokens":9999999896381,"jailed":[1000000000000065,1000000000000065,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":170,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":14,"t":84,"tokens":[24625,7199,26943,2508],"delegation":[23625,6199,25943,1508],"delegatorTokens":9999999896381,"jailed":[1000000000000065,1000000000000065,1000000000000077,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":171,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":172,"action":{"kind":"Deliver","chain":"consumer","numPackets":2},"partialState":{"h":18,"t":108,"consumerPower":[null,null,27624,9024],"outstandingDowntime":[false,false,true,false]}},{"ix":173,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":174,"action":{"kind":"Delegate","val":0,"amt":4225},"partialState":{"h":14,"t":84,"tokens":[28850,7199,26943,2508],"delegation":[27850,6199,25943,1508],"delegatorTokens":9999999892156}},{"ix":175,"action":{"kind":"Delegate","val":1,"amt":3056},"partialState":{"h":14,"t":84,"tokens":[28850,10255,26943,2508],"delegation":[27850,9255,25943,1508],"delegatorTokens":9999999889100}},{"ix":176,"action":{"kind":"Delegate","val":0,"amt":1685},"partialState":{"h":14,"t":84,"tokens":[30535,10255,26943,2508],"delegation":[29535,9255,25943,1508],"delegatorTokens":9999999887415}},{"ix":177,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":19,"t":114,"consumerPower":[null,null,20639,4350],"outstandingDowntime":[false,false,true,false]}},{"ix":178,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":179,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":180,"action":{"kind":"Delegate","val":2,"amt":3425},"partialState":{"h":14,"t":84,"tokens":[30535,10255,30368,2508],"delegation":[29535,9255,29368,1508],"delegatorTokens":9999999883990}},{"ix":181,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":182,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":183,"action":{"kind":"Deliver","chain":"provider","numPackets":2},"partialState":{"h":14,"t":84,"tokens":[30535,10255,30368,2508],"delegation":[29535,9255,29368,1508],"delegatorTokens":9999999883990,"jailed":[1000000000000065,1000000000000065,1000000000000077,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":184,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":20,"t":120,"consumerPower":[null,null,20639,4350],"outstandingDowntime":[false,false,true,false]}},{"ix":185,"action":{"kind":"Delegate","val":1,"amt":1882},"partialState":{"h":14,"t":84,"tokens":[30535,12137,30368,2508],"delegation":[29535,11137,29368,1508],"delegatorTokens":9999999882108}},{"ix":186,"action":{"kind":"Deliver","chain":"consumer","numPackets":1},"partialState":{"h":20,"t":120,"consumerPower":[null,null,20639,4350],"outstandingDowntime":[false,false,true,false]}},{"ix":187,"action":{"kind":"Deliver","chain":"consumer","numPackets":5},"partialState":{"h":20,"t":120,"consumerPower":[null,null,20639,4350],"outstandingDowntime":[false,false,true,false]}},{"ix":188,"action":{"kind":"Deliver","chain":"provider","numPackets":2},"partialState":{"h":14,"t":84,"tokens":[30535,12137,30368,2508],"delegation":[29535,11137,29368,1508],"delegatorTokens":9999999882108,"jailed":[1000000000000065,1000000000000065,1000000000000077,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":189,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":15,"t":90,"tokens":[30535,12137,30368,2508],"delegation":[29535,11137,29368,1508],"delegatorTokens":9999999883463,"jailed":[1000000000000065,1000000000000065,1000000000000077,null],"status":["unbonding","unbonded","unbonding","bonded"]}},{"ix":190,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":191,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":192,"action":{"kind":"Deliver","chain":"provider","numPackets":4},"partialState":{"h":15,"t":90,"tokens":[30535,12137,30368,2508],"delegation":[29535,11137,29368,1508],"delegatorTokens":9999999883463,"jailed":[1000000000000065,1000000000000065,1000000000000077,null],"status":["unbonding","unbonded","unbonding","bonded"]}},{"ix":193,"action":{"kind":"Deliver","chain":"consumer","numPackets":5},"partialState":{"h":20,"t":120,"consumerPower":[null,null,20639,4350],"outstandingDowntime":[false,false,false,false]}},{"ix":194,"action":{"kind":"Deliver","chain":"consumer","numPackets":2},"partialState":{"h":20,"t":120,"consumerPower":[null,null,20639,4350],"outstandingDowntime":[false,false,false,false]}},{"ix":195,"action":{"kind":"Delegate","val":1,"amt":4777},"partialState":{"h":15,"t":90,"tokens":[30535,16914,30368,2508],"delegation":[29535,15914,29368,1508],"delegatorTokens":9999999878686}},{"ix":196,"action":{"kind":"Delegate","val":0,"amt":2608},"partialState":{"h":15,"t":90,"tokens":[33143,16914,30368,2508],"delegation":[32143,15914,29368,1508],"delegatorTokens":9999999876078}},{"ix":197,"action":{"kind":"Delegate","val":1,"amt":3268},"partialState":{"h":15,"t":90,"tokens":[33143,20182,30368,2508],"delegation":[32143,19182,29368,1508],"delegatorTokens":9999999872810}},{"ix":198,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":199,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":16,"t":96,"tokens":[33143,20182,30368,2508],"delegation":[32143,19182,29368,1508],"delegatorTokens":9999999872810,"jailed":[1000000000000065,1000000000000065,1000000000000077,null],"status":["unbonding","unbonded","unbonding","bonded"]}}],"events":["send_downtime_slash_request","insufficient_shares","more_than_one_third_val_power_change","send_vsc_without_downtime_ack","send_downtime_slash_request","downtime_slash_request_outstanding","insufficient_shares","send_vsc_without_downtime_ack","consumer_del_val","consumer_add_val","send_vsc_without_downtime_ack","downtime_slash_request_outstanding","receive_downtime_slash_request","jail","receive_downtime_slash_request","jail","send_vsc_with_downtime_ack","send_vsc_without_downtime_ack","send_double_sign_slash_request","downtime_slash_request_outstanding","send_double_sign_slash_request","consumer_update_val","consumer_update_val","receive_double_sign_slash_request","receive_double_sign_slash_request","downtime_slash_request_outstanding","send_double_sign_slash_request","downtime_slash_request_outstanding","downtime_slash_request_outstanding","downtime_slash_request_outstanding","receive_downtime_slash_ack","receive_downtime_slash_ack","send_downtime_slash_request","send_vsc_without_downtime_ack","send_downtime_slash_request","consumer_update_val","consumer_update_val","consumer_del_val","consumer_update_val","consumer_add_val","receive_double_sign_slash_request","downtime_slash_request_outstanding","downtime_slash_request_outstanding","send_downtime_slash_request","send_vsc_without_downtime_ack","send_vsc_without_downtime_ack","consumer_send_maturation","consumer_update_val","consumer_update_val","insufficient_shares","receive_downtime_slash_request","jail","receive_downtime_slash_request","jail","send_vsc_with_downtime_ack","insufficient_shares","insufficient_shares","consumer_send_maturation","receive_downtime_slash_ack","receive_downtime_slash_ack","insufficient_shares","receive_downtime_slash_request","jail","set_unval_hold_false","set_undel_hold_false","send_vsc_with_downtime_ack","consumer_send_maturation","consumer_send_maturation","consumer_update_val","consumer_update_val","consumer_send_maturation","complete_unval_in_endblock","complete_undel_in_endblock","set_undel_hold_false","send_vsc_without_downtime_ack","receive_downtime_slash_ack"]},{"meta":{"commit":"7ffd0c04e4205cbc9caf212abfe6c59ee43153bf"},"constants":{"P":"provider","C":"consumer","UNBONDING_SECONDS_P":70,"UNBONDING_SECONDS_C":50,"TRUSTING_SECONDS":49,"NUM_VALIDATORS":4,"MAX_VALIDATORS":2,"SLASH_DOUBLESIGN":0,"SLASH_DOWNTIME":0,"JAIL_SECONDS":999999999999999,"BLOCK_SECONDS":6,"INITIAL_DELEGATOR_TOKENS":10000000000000,"DELEGATE_AMT_MIN":1000,"DELEGATE_AMT_MAX":5000,"UNDELEGATE_AMT_MIN":1000,"UNDELEGATE_AMT_MAX":5000,"ISDOWNTIME_PROBABILITY":0.5,"MAX_NUM_PACKETS_FOR_DELIVER":6},"actions":[{"ix":0,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":1,"action":{"kind":"ConsumerSlash","val":1,"infractionHeight":0,"isDowntime":true},"partialState":{"h":1,"t":6,"outstandingDowntime":[false,true,false,false]}},{"ix":2,"action":{"kind":"Delegate","val":0,"amt":4292},"partialState":{"h":1,"t":6,"tokens":[9292,4000,3000,2000],"delegation":[8292,3000,2000,1000],"delegatorTokens":9999999995708}},{"ix":3,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":4,"action":{"kind":"Undelegate","val":3,"amt":3615},"partialState":{"h":1,"t":6,"tokens":[9292,4000,3000,2000],"delegation":[8292,3000,2000,1000],"delegatorTokens":9999999995708}},{"ix":5,"action":{"kind":"ConsumerSlash","val":0,"infractionHeight":0,"isDowntime":false},"partialState":{"h":1,"t":6,"outstandingDowntime":[false,true,false,false]}},{"ix":6,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":2,"t":12,"tokens":[9292,4000,3000,2000],"delegation":[8292,3000,2000,1000],"delegatorTokens":9999999995708,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":7,"action":{"kind":"ConsumerSlash","val":0,"infractionHeight":0,"isDowntime":true},"partialState":{"h":1,"t":6,"outstandingDowntime":[true,true,false,false]}},{"ix":8,"action":{"kind":"Undelegate","val":1,"amt":2036},"partialState":{"h":2,"t":12,"tokens":[9292,1964,3000,2000],"delegation":[8292,964,2000,1000],"delegatorTokens":9999999995708}},{"ix":9,"action":{"kind":"ConsumerSlash","val":1,"infractionHeight":0,"isDowntime":true},"partialState":{"h":1,"t":6,"outstandingDowntime":[true,true,false,false]}},{"ix":10,"action":{"kind":"Undelegate","val":3,"amt":4323},"partialState":{"h":2,"t":12,"tokens":[9292,1964,3000,2000],"delegation":[8292,964,2000,1000],"delegatorTokens":9999999995708}},{"ix":11,"action":{"kind":"Delegate","val":0,"amt":4406},"partialState":{"h":2,"t":12,"tokens":[13698,1964,3000,2000],"delegation":[12698,964,2000,1000],"delegatorTokens":9999999991302}},{"ix":12,"action":{"kind":"ConsumerSlash","val":1,"infractionHeight":0,"isDowntime":true},"partialState":{"h":1,"t":6,"outstandingDowntime":[true,true,false,false]}},{"ix":13,"action":{"kind":"Undelegate","val":3,"amt":2458},"partialState":{"h":2,"t":12,"tokens":[13698,1964,3000,2000],"delegation":[12698,964,2000,1000],"delegatorTokens":9999999991302}},{"ix":14,"action":{"kind":"Undelegate","val":1,"amt":1978},"partialState":{"h":2,"t":12,"tokens":[13698,1964,3000,2000],"delegation":[12698,964,2000,1000],"delegatorTokens":9999999991302}},{"ix":15,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":16,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":17,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":2,"t":12,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[true,true,false,false]}},{"ix":18,"action":{"kind":"Delegate","val":0,"amt":3525},"partialState":{"h":2,"t":12,"tokens":[17223,1964,3000,2000],"delegation":[16223,964,2000,1000],"delegatorTokens":9999999987777}},{"ix":19,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":3,"t":18,"tokens":[17223,1964,3000,2000],"delegation":[16223,964,2000,1000],"delegatorTokens":9999999987777,"jailed":[null,null,null,null],"status":["bonded","unbonding","bonded","unbonded"]}},{"ix":20,"action":{"kind":"ConsumerSlash","val":0,"infractionHeight":0,"isDowntime":false},"partialState":{"h":2,"t":12,"outstandingDowntime":[true,true,false,false]}},{"ix":21,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":3,"t":18,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[true,true,false,false]}},{"ix":22,"action":{"kind":"ConsumerSlash","val":0,"infractionHeight":0,"isDowntime":false},"partialState":{"h":3,"t":18,"outstandingDowntime":[true,true,false,false]}},{"ix":23,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":4,"t":24,"tokens":[17223,1964,3000,2000],"delegation":[16223,964,2000,1000],"delegatorTokens":9999999987777,"jailed":[null,null,null,null],"status":["bonded","unbonding","bonded","unbonded"]}},{"ix":24,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":4,"t":24,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[true,true,false,false]}},{"ix":25,"action":{"kind":"Deliver","chain":"provider","numPackets":2},"partialState":{"h":4,"t":24,"tokens":[17223,1964,3000,2000],"delegation":[16223,964,2000,1000],"delegatorTokens":9999999987777,"jailed":[null,null,null,null],"status":["bonded","unbonding","bonded","unbonded"]}},{"ix":26,"action":{"kind":"Undelegate","val":3,"amt":2555},"partialState":{"h":4,"t":24,"tokens":[17223,1964,3000,2000],"delegation":[16223,964,2000,1000],"delegatorTokens":9999999987777}},{"ix":27,"action":{"kind":"ConsumerSlash","val":1,"infractionHeight":3,"isDowntime":false},"partialState":{"h":4,"t":24,"outstandingDowntime":[true,true,false,false]}},{"ix":28,"action":{"kind":"Deliver","chain":"provider","numPackets":6},"partialState":{"h":4,"t":24,"tokens":[17223,1964,3000,2000],"delegation":[16223,964,2000,1000],"delegatorTokens":9999999987777,"jailed":[null,null,null,null],"status":["bonded","unbonding","bonded","unbonded"]}},{"ix":29,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":5,"t":30,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[true,true,false,false]}},{"ix":30,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":6,"t":36,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[true,true,false,false]}},{"ix":31,"action":{"kind":"Undelegate","val":0,"amt":3762},"partialState":{"h":4,"t":24,"tokens":[13461,1964,3000,2000],"delegation":[12461,964,2000,1000],"delegatorTokens":9999999987777}},{"ix":32,"action":{"kind":"Deliver","chain":"provider","numPackets":6},"partialState":{"h":4,"t":24,"tokens":[13461,1964,3000,2000],"delegation":[12461,964,2000,1000],"delegatorTokens":9999999987777,"jailed":[null,null,null,null],"status":["bonded","unbonding","bonded","unbonded"]}},{"ix":33,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":7,"t":42,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[true,true,false,false]}},{"ix":34,"action":{"kind":"Delegate","val":1,"amt":4398},"partialState":{"h":4,"t":24,"tokens":[13461,6362,3000,2000],"delegation":[12461,5362,2000,1000],"delegatorTokens":9999999983379}},{"ix":35,"action":{"kind":"Deliver","chain":"provider","numPackets":5},"partialState":{"h":4,"t":24,"tokens":[13461,6362,3000,2000],"delegation":[12461,5362,2000,1000],"delegatorTokens":9999999983379,"jailed":[null,null,null,null],"status":["bonded","unbonding","bonded","unbonded"]}},{"ix":36,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":5,"t":30,"tokens":[13461,6362,3000,2000],"delegation":[12461,5362,2000,1000],"delegatorTokens":9999999983379,"jailed":[1000000000000023,1000000000000023,null,null],"status":["bonded","bonded","unbonding","unbonded"]}},{"ix":37,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":6,"t":36,"tokens":[13461,6362,3000,2000],"delegation":[12461,5362,2000,1000],"delegatorTokens":9999999983379,"jailed":[1000000000000023,1000000000000023,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":38,"action":{"kind":"Undelegate","val":3,"amt":3896},"partialState":{"h":6,"t":36,"tokens":[13461,6362,3000,2000],"delegation":[12461,5362,2000,1000],"delegatorTokens":9999999983379}},{"ix":39,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":40,"action":{"kind":"Undelegate","val":1,"amt":4454},"partialState":{"h":6,"t":36,"tokens":[13461,1908,3000,2000],"delegation":[12461,908,2000,1000],"delegatorTokens":9999999983379}},{"ix":41,"action":{"kind":"Undelegate","val":2,"amt":2169},"partialState":{"h":6,"t":36,"tokens":[13461,1908,3000,2000],"delegation":[12461,908,2000,1000],"delegatorTokens":9999999983379}},{"ix":42,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":43,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":44,"action":{"kind":"ConsumerSlash","val":0,"infractionHeight":3,"isDowntime":false},"partialState":{"h":7,"t":42,"outstandingDowntime":[true,true,false,false]}},{"ix":45,"action":{"kind":"ConsumerSlash","val":2,"infractionHeight":6,"isDowntime":true},"partialState":{"h":7,"t":42,"outstandingDowntime":[true,true,true,false]}},{"ix":46,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":47,"action":{"kind":"Deliver","chain":"consumer","numPackets":5},"partialState":{"h":7,"t":42,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,false,true,false]}},{"ix":48,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":7,"t":42,"tokens":[13461,1908,3000,2000],"delegation":[12461,908,2000,1000],"delegatorTokens":9999999983379,"jailed":[1000000000000023,1000000000000023,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":49,"action":{"kind":"Delegate","val":0,"amt":4298},"partialState":{"h":7,"t":42,"tokens":[17759,1908,3000,2000],"delegation":[16759,908,2000,1000],"delegatorTokens":9999999979081}},{"ix":50,"action":{"kind":"Undelegate","val":0,"amt":1352},"partialState":{"h":7,"t":42,"tokens":[16407,1908,3000,2000],"delegation":[15407,908,2000,1000],"delegatorTokens":9999999979081}},{"ix":51,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":8,"t":48,"tokens":[16407,1908,3000,2000],"delegation":[15407,908,2000,1000],"delegatorTokens":9999999979081,"jailed":[1000000000000023,1000000000000023,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":52,"action":{"kind":"Undelegate","val":1,"amt":1408},"partialState":{"h":8,"t":48,"tokens":[16407,1908,3000,2000],"delegation":[15407,908,2000,1000],"delegatorTokens":9999999979081}},{"ix":53,"action":{"kind":"Deliver","chain":"consumer","numPackets":5},"partialState":{"h":7,"t":42,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,false,true,false]}},{"ix":54,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":8,"t":48,"consumerPower":[null,null,3000,2000],"outstandingDowntime":[false,false,true,false]}},{"ix":55,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":56,"action":{"kind":"Delegate","val":3,"amt":1631},"partialState":{"h":8,"t":48,"tokens":[16407,1908,3000,3631],"delegation":[15407,908,2000,2631],"delegatorTokens":9999999977450}},{"ix":57,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":9,"t":54,"consumerPower":[null,null,3000,2000],"outstandingDowntime":[false,false,true,false]}},{"ix":58,"action":{"kind":"Undelegate","val":2,"amt":3167},"partialState":{"h":8,"t":48,"tokens":[16407,1908,3000,3631],"delegation":[15407,908,2000,2631],"delegatorTokens":9999999977450}},{"ix":59,"action":{"kind":"Undelegate","val":3,"amt":1900},"partialState":{"h":8,"t":48,"tokens":[16407,1908,3000,1731],"delegation":[15407,908,2000,731],"delegatorTokens":9999999977450}},{"ix":60,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":61,"action":{"kind":"Undelegate","val":0,"amt":2635},"partialState":{"h":8,"t":48,"tokens":[13772,1908,3000,1731],"delegation":[12772,908,2000,731],"delegatorTokens":9999999977450}},{"ix":62,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":63,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":9,"t":54,"tokens":[13772,1908,3000,1731],"delegation":[12772,908,2000,731],"delegatorTokens":9999999977450,"jailed":[1000000000000023,1000000000000023,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":64,"action":{"kind":"Delegate","val":1,"amt":3072},"partialState":{"h":9,"t":54,"tokens":[13772,4980,3000,1731],"delegation":[12772,3980,2000,731],"delegatorTokens":9999999974378}},{"ix":65,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":66,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":67,"action":{"kind":"Deliver","chain":"provider","numPackets":2},"partialState":{"h":9,"t":54,"tokens":[13772,4980,3000,1731],"delegation":[12772,3980,2000,731],"delegatorTokens":9999999974378,"jailed":[1000000000000023,1000000000000023,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":68,"action":{"kind":"Deliver","chain":"provider","numPackets":1},"partialState":{"h":9,"t":54,"tokens":[13772,4980,3000,1731],"delegation":[12772,3980,2000,731],"delegatorTokens":9999999974378,"jailed":[1000000000000023,1000000000000023,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":69,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":70,"action":{"kind":"Undelegate","val":2,"amt":3506},"partialState":{"h":9,"t":54,"tokens":[13772,4980,3000,1731],"delegation":[12772,3980,2000,731],"delegatorTokens":9999999974378}},{"ix":71,"action":{"kind":"Deliver","chain":"provider","numPackets":3},"partialState":{"h":9,"t":54,"tokens":[13772,4980,3000,1731],"delegation":[12772,3980,2000,731],"delegatorTokens":9999999974378,"jailed":[1000000000000023,1000000000000023,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":72,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":73,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":10,"t":60,"tokens":[13772,4980,3000,1731],"delegation":[12772,3980,2000,731],"delegatorTokens":9999999974378,"jailed":[1000000000000023,1000000000000023,1000000000000053,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":74,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":10,"t":60,"consumerPower":[null,null,3000,2000],"outstandingDowntime":[false,false,true,false]}},{"ix":75,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":11,"t":66,"consumerPower":[null,null,3000,2000],"outstandingDowntime":[false,false,true,false]}},{"ix":76,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":77,"action":{"kind":"Delegate","val":2,"amt":1820},"partialState":{"h":10,"t":60,"tokens":[13772,4980,4820,1731],"delegation":[12772,3980,3820,731],"delegatorTokens":9999999972558}},{"ix":78,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":79,"action":{"kind":"Deliver","chain":"consumer","numPackets":1},"partialState":{"h":11,"t":66,"consumerPower":[null,null,3000,2000],"outstandingDowntime":[false,false,true,false]}},{"ix":80,"action":{"kind":"Delegate","val":1,"amt":4203},"partialState":{"h":10,"t":60,"tokens":[13772,9183,4820,1731],"delegation":[12772,8183,3820,731],"delegatorTokens":9999999968355}},{"ix":81,"action":{"kind":"Delegate","val":1,"amt":3330},"partialState":{"h":10,"t":60,"tokens":[13772,12513,4820,1731],"delegation":[12772,11513,3820,731],"delegatorTokens":9999999965025}},{"ix":82,"action":{"kind":"Undelegate","val":2,"amt":3707},"partialState":{"h":10,"t":60,"tokens":[13772,12513,1113,1731],"delegation":[12772,11513,113,731],"delegatorTokens":9999999965025}},{"ix":83,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":12,"t":72,"consumerPower":[null,null,3000,2000],"outstandingDowntime":[false,false,true,false]}},{"ix":84,"action":{"kind":"Undelegate","val":3,"amt":2491},"partialState":{"h":10,"t":60,"tokens":[13772,12513,1113,1731],"delegation":[12772,11513,113,731],"delegatorTokens":9999999965025}},{"ix":85,"action":{"kind":"Undelegate","val":1,"amt":4726},"partialState":{"h":10,"t":60,"tokens":[13772,7787,1113,1731],"delegation":[12772,6787,113,731],"delegatorTokens":9999999965025}},{"ix":86,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":87,"action":{"kind":"Deliver","chain":"provider","numPackets":1},"partialState":{"h":10,"t":60,"tokens":[13772,7787,1113,1731],"delegation":[12772,6787,113,731],"delegatorTokens":9999999965025,"jailed":[1000000000000023,1000000000000023,1000000000000053,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":88,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":13,"t":78,"consumerPower":[null,null,3000,2000],"outstandingDowntime":[false,false,true,false]}},{"ix":89,"action":{"kind":"Delegate","val":3,"amt":3016},"partialState":{"h":10,"t":60,"tokens":[13772,7787,1113,4747],"delegation":[12772,6787,113,3747],"delegatorTokens":9999999962009}},{"ix":90,"action":{"kind":"Deliver","chain":"consumer","numPackets":6},"partialState":{"h":13,"t":78,"consumerPower":[null,null,3000,2000],"outstandingDowntime":[false,false,true,false]}},{"ix":91,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":92,"action":{"kind":"Undelegate","val":1,"amt":4690},"partialState":{"h":10,"t":60,"tokens":[13772,3097,1113,4747],"delegation":[12772,2097,113,3747],"delegatorTokens":9999999962009}},{"ix":93,"action":{"kind":"Deliver","chain":"provider","numPackets":1},"partialState":{"h":10,"t":60,"tokens":[13772,3097,1113,4747],"delegation":[12772,2097,113,3747],"delegatorTokens":9999999962009,"jailed":[1000000000000023,1000000000000023,1000000000000053,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":94,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":95,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":14,"t":84,"consumerPower":[null,null,3000,1731],"outstandingDowntime":[false,false,true,false]}},{"ix":96,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":11,"t":66,"tokens":[13772,3097,1113,4747],"delegation":[12772,2097,113,3747],"delegatorTokens":9999999962009,"jailed":[1000000000000023,1000000000000023,1000000000000053,null],"status":["unbonding","unbonding","unbonding","bonded"]}},{"ix":97,"action":{"kind":"Delegate","val":2,"amt":1833},"partialState":{"h":11,"t":66,"tokens":[13772,3097,2946,4747],"delegation":[12772,2097,1946,3747],"delegatorTokens":9999999960176}},{"ix":98,"action":{"kind":"Deliver","chain":"provider","numPackets":5},"partialState":{"h":11,"t":66,"tokens":[13772,3097,2946,4747],"delegation":[12772,2097,1946,3747],"delegatorTokens":9999999960176,"jailed":[1000000000000023,1000000000000023,1000000000000053,null],"status":["unbonding","unbonding","unbonding","bonded"]}},{"ix":99,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":15,"t":90,"consumerPower":[null,null,3000,1731],"outstandingDowntime":[false,false,true,false]}},{"ix":100,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":12,"t":72,"tokens":[13772,3097,2946,4747],"delegation":[12772,2097,1946,3747],"delegatorTokens":9999999960176,"jailed":[1000000000000023,1000000000000023,1000000000000053,null],"status":["unbonding","unbonding","unbonding","bonded"]}},{"ix":101,"action":{"kind":"Undelegate","val":0,"amt":2024},"partialState":{"h":12,"t":72,"tokens":[11748,3097,2946,4747],"delegation":[10748,2097,1946,3747],"delegatorTokens":9999999960176}},{"ix":102,"action":{"kind":"Undelegate","val":3,"amt":4743},"partialState":{"h":12,"t":72,"tokens":[11748,3097,2946,4747],"delegation":[10748,2097,1946,3747],"delegatorTokens":9999999960176}},{"ix":103,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":13,"t":78,"tokens":[11748,3097,2946,4747],"delegation":[10748,2097,1946,3747],"delegatorTokens":9999999960176,"jailed":[1000000000000023,1000000000000023,1000000000000053,null],"status":["unbonding","unbonding","unbonding","bonded"]}},{"ix":104,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":105,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":16,"t":96,"consumerPower":[null,null,3000,1731],"outstandingDowntime":[false,false,true,false]}},{"ix":106,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":14,"t":84,"tokens":[11748,3097,2946,4747],"delegation":[10748,2097,1946,3747],"delegatorTokens":9999999960176,"jailed":[1000000000000023,1000000000000023,1000000000000053,null],"status":["unbonding","unbonding","unbonding","bonded"]}},{"ix":107,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":108,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":15,"t":90,"tokens":[11748,3097,2946,4747],"delegation":[10748,2097,1946,3747],"delegatorTokens":9999999960176,"jailed":[1000000000000023,1000000000000023,1000000000000053,null],"status":["unbonding","unbonding","unbonding","bonded"]}},{"ix":109,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":110,"action":{"kind":"Deliver","chain":"provider","numPackets":2},"partialState":{"h":15,"t":90,"tokens":[11748,3097,2946,4747],"delegation":[10748,2097,1946,3747],"delegatorTokens":9999999960176,"jailed":[1000000000000023,1000000000000023,1000000000000053,null],"status":["unbonding","unbonding","unbonding","bonded"]}},{"ix":111,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":112,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":16,"t":96,"tokens":[11748,3097,2946,4747],"delegation":[10748,2097,1946,3747],"delegatorTokens":9999999960176,"jailed":[1000000000000023,1000000000000023,1000000000000053,null],"status":["unbonding","unbonding","unbonding","bonded"]}},{"ix":113,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":114,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":115,"action":{"kind":"Deliver","chain":"provider","numPackets":3},"partialState":{"h":16,"t":96,"tokens":[11748,3097,2946,4747],"delegation":[10748,2097,1946,3747],"delegatorTokens":9999999960176,"jailed":[1000000000000023,1000000000000023,1000000000000053,null],"status":["unbonding","unbonding","unbonding","bonded"]}},{"ix":116,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":17,"t":102,"consumerPower":[null,null,3000,1731],"outstandingDowntime":[false,false,true,false]}},{"ix":117,"action":{"kind":"Delegate","val":0,"amt":4165},"partialState":{"h":16,"t":96,"tokens":[15913,3097,2946,4747],"delegation":[14913,2097,1946,3747],"delegatorTokens":9999999956011}},{"ix":118,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":119,"action":{"kind":"Deliver","chain":"consumer","numPackets":4},"partialState":{"h":17,"t":102,"consumerPower":[null,null,3000,1731],"outstandingDowntime":[false,false,false,false]}},{"ix":120,"action":{"kind":"Deliver","chain":"provider","numPackets":6},"partialState":{"h":16,"t":96,"tokens":[15913,3097,2946,4747],"delegation":[14913,2097,1946,3747],"delegatorTokens":9999999956011,"jailed":[1000000000000023,1000000000000023,1000000000000053,null],"status":["unbonding","unbonding","unbonding","bonded"]}},{"ix":121,"action":{"kind":"Delegate","val":1,"amt":1786},"partialState":{"h":16,"t":96,"tokens":[15913,4883,2946,4747],"delegation":[14913,3883,1946,3747],"delegatorTokens":9999999954225}},{"ix":122,"action":{"kind":"Undelegate","val":0,"amt":3815},"partialState":{"h":16,"t":96,"tokens":[12098,4883,2946,4747],"delegation":[11098,3883,1946,3747],"delegatorTokens":9999999954225}},{"ix":123,"action":{"kind":"Deliver","chain":"provider","numPackets":5},"partialState":{"h":16,"t":96,"tokens":[12098,4883,2946,4747],"delegation":[11098,3883,1946,3747],"delegatorTokens":9999999954225,"jailed":[1000000000000023,1000000000000023,1000000000000053,null],"status":["unbonding","unbonding","unbonding","bonded"]}},{"ix":124,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":18,"t":108,"consumerPower":[null,null,null,4747],"outstandingDowntime":[false,false,false,false]}},{"ix":125,"action":{"kind":"Deliver","chain":"provider","numPackets":3},"partialState":{"h":16,"t":96,"tokens":[12098,4883,2946,4747],"delegation":[11098,3883,1946,3747],"delegatorTokens":9999999954225,"jailed":[1000000000000023,1000000000000023,1000000000000053,null],"status":["unbonding","unbonding","unbonding","bonded"]}},{"ix":126,"action":{"kind":"Deliver","chain":"consumer","numPackets":2},"partialState":{"h":18,"t":108,"consumerPower":[null,null,null,4747],"outstandingDowntime":[false,false,false,false]}},{"ix":127,"action":{"kind":"Undelegate","val":1,"amt":3577},"partialState":{"h":16,"t":96,"tokens":[12098,1306,2946,4747],"delegation":[11098,306,1946,3747],"delegatorTokens":9999999954225}},{"ix":128,"action":{"kind":"Deliver","chain":"consumer","numPackets":1},"partialState":{"h":18,"t":108,"consumerPower":[null,null,null,4747],"outstandingDowntime":[false,false,false,false]}},{"ix":129,"action":{"kind":"Deliver","chain":"consumer","numPackets":6},"partialState":{"h":18,"t":108,"consumerPower":[null,null,null,4747],"outstandingDowntime":[false,false,false,false]}},{"ix":130,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":131,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":17,"t":102,"tokens":[12098,1306,2946,4747],"delegation":[11098,306,1946,3747],"delegatorTokens":9999999960023,"jailed":[1000000000000023,1000000000000023,1000000000000053,null],"status":["unbonding","unbonding","unbonding","bonded"]}},{"ix":132,"action":{"kind":"Delegate","val":0,"amt":1811},"partialState":{"h":17,"t":102,"tokens":[13909,1306,2946,4747],"delegation":[12909,306,1946,3747],"delegatorTokens":9999999958212}},{"ix":133,"action":{"kind":"Undelegate","val":3,"amt":3091},"partialState":{"h":17,"t":102,"tokens":[13909,1306,2946,1656],"delegation":[12909,306,1946,656],"delegatorTokens":9999999958212}},{"ix":134,"action":{"kind":"Undelegate","val":1,"amt":1525},"partialState":{"h":17,"t":102,"tokens":[13909,1306,2946,1656],"delegation":[12909,306,1946,656],"delegatorTokens":9999999958212}},{"ix":135,"action":{"kind":"Delegate","val":3,"amt":3373},"partialState":{"h":17,"t":102,"tokens":[13909,1306,2946,5029],"delegation":[12909,306,1946,4029],"delegatorTokens":9999999954839}},{"ix":136,"action":{"kind":"Delegate","val":1,"amt":2910},"partialState":{"h":17,"t":102,"tokens":[13909,4216,2946,5029],"delegation":[12909,3216,1946,4029],"delegatorTokens":9999999951929}},{"ix":137,"action":{"kind":"Deliver","chain":"provider","numPackets":2},"partialState":{"h":17,"t":102,"tokens":[13909,4216,2946,5029],"delegation":[12909,3216,1946,4029],"delegatorTokens":9999999951929,"jailed":[1000000000000023,1000000000000023,1000000000000053,null],"status":["unbonding","unbonding","unbonding","bonded"]}},{"ix":138,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":19,"t":114,"consumerPower":[null,null,null,4747],"outstandingDowntime":[false,false,false,false]}},{"ix":139,"action":{"kind":"Delegate","val":0,"amt":2988},"partialState":{"h":17,"t":102,"tokens":[16897,4216,2946,5029],"delegation":[15897,3216,1946,4029],"delegatorTokens":9999999948941}},{"ix":140,"action":{"kind":"Delegate","val":2,"amt":2477},"partialState":{"h":17,"t":102,"tokens":[16897,4216,5423,5029],"delegation":[15897,3216,4423,4029],"delegatorTokens":9999999946464}},{"ix":141,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":20,"t":120,"consumerPower":[null,null,null,4747],"outstandingDowntime":[false,false,false,false]}},{"ix":142,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":18,"t":108,"tokens":[16897,4216,5423,5029],"delegation":[15897,3216,4423,4029],"delegatorTokens":9999999946464,"jailed":[1000000000000023,1000000000000023,1000000000000053,null],"status":["unbonding","unbonding","unbonding","bonded"]}},{"ix":143,"action":{"kind":"Delegate","val":1,"amt":2801},"partialState":{"h":18,"t":108,"tokens":[16897,7017,5423,5029],"delegation":[15897,6017,4423,4029],"delegatorTokens":9999999943663}},{"ix":144,"action":{"kind":"Deliver","chain":"provider","numPackets":3},"partialState":{"h":18,"t":108,"tokens":[16897,7017,5423,5029],"delegation":[15897,6017,4423,4029],"delegatorTokens":9999999943663,"jailed":[1000000000000023,1000000000000023,1000000000000053,null],"status":["unbonding","unbonding","unbonding","bonded"]}},{"ix":145,"action":{"kind":"Deliver","chain":"consumer","numPackets":3},"partialState":{"h":20,"t":120,"consumerPower":[null,null,null,4747],"outstandingDowntime":[false,false,false,false]}},{"ix":146,"action":{"kind":"Deliver","chain":"consumer","numPackets":1},"partialState":{"h":20,"t":120,"consumerPower":[null,null,null,4747],"outstandingDowntime":[false,false,false,false]}},{"ix":147,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":148,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":19,"t":114,"tokens":[16897,7017,5423,5029],"delegation":[15897,6017,4423,4029],"delegatorTokens":9999999948117,"jailed":[1000000000000023,1000000000000023,1000000000000053,null],"status":["unbonded","unbonded","unbonding","bonded"]}},{"ix":149,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":150,"action":{"kind":"Deliver","chain":"consumer","numPackets":1},"partialState":{"h":20,"t":120,"consumerPower":[null,null,null,4747],"outstandingDowntime":[false,false,false,false]}},{"ix":151,"action":{"kind":"Delegate","val":1,"amt":4540},"partialState":{"h":19,"t":114,"tokens":[16897,11557,5423,5029],"delegation":[15897,10557,4423,4029],"delegatorTokens":9999999943577}},{"ix":152,"action":{"kind":"Delegate","val":0,"amt":1598},"partialState":{"h":19,"t":114,"tokens":[18495,11557,5423,5029],"delegation":[17495,10557,4423,4029],"delegatorTokens":9999999941979}},{"ix":153,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":21,"t":126,"consumerPower":[null,null,null,5029],"outstandingDowntime":[false,false,false,false]}},{"ix":154,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":155,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":22,"t":132,"consumerPower":[null,null,null,5029],"outstandingDowntime":[false,false,false,false]}},{"ix":156,"action":{"kind":"Delegate","val":3,"amt":2671},"partialState":{"h":19,"t":114,"tokens":[18495,11557,5423,7700],"delegation":[17495,10557,4423,6700],"delegatorTokens":9999999939308}},{"ix":157,"action":{"kind":"Deliver","chain":"provider","numPackets":5},"partialState":{"h":19,"t":114,"tokens":[18495,11557,5423,7700],"delegation":[17495,10557,4423,6700],"delegatorTokens":9999999939308,"jailed":[1000000000000023,1000000000000023,1000000000000053,null],"status":["unbonded","unbonded","unbonding","bonded"]}},{"ix":158,"action":{"kind":"Deliver","chain":"consumer","numPackets":4},"partialState":{"h":22,"t":132,"consumerPower":[null,null,null,5029],"outstandingDowntime":[false,false,false,false]}},{"ix":159,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":23,"t":138,"consumerPower":[null,null,null,5029],"outstandingDowntime":[false,false,false,false]}},{"ix":160,"action":{"kind":"Deliver","chain":"provider","numPackets":1},"partialState":{"h":19,"t":114,"tokens":[18495,11557,5423,7700],"delegation":[17495,10557,4423,6700],"delegatorTokens":9999999939308,"jailed":[1000000000000023,1000000000000023,1000000000000053,null],"status":["unbonded","unbonded","unbonding","bonded"]}},{"ix":161,"action":{"kind":"Undelegate","val":2,"amt":3023},"partialState":{"h":19,"t":114,"tokens":[18495,11557,2400,7700],"delegation":[17495,10557,1400,6700],"delegatorTokens":9999999939308}},{"ix":162,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":163,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":164,"action":{"kind":"Undelegate","val":3,"amt":4566},"partialState":{"h":19,"t":114,"tokens":[18495,11557,2400,3134],"delegation":[17495,10557,1400,2134],"delegatorTokens":9999999939308}},{"ix":165,"action":{"kind":"Delegate","val":2,"amt":4753},"partialState":{"h":19,"t":114,"tokens":[18495,11557,7153,3134],"delegation":[17495,10557,6153,2134],"delegatorTokens":9999999934555}},{"ix":166,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":167,"action":{"kind":"Undelegate","val":0,"amt":2620},"partialState":{"h":19,"t":114,"tokens":[15875,11557,7153,3134],"delegation":[14875,10557,6153,2134],"delegatorTokens":9999999934555}},{"ix":168,"action":{"kind":"Undelegate","val":0,"amt":3444},"partialState":{"h":19,"t":114,"tokens":[12431,11557,7153,3134],"delegation":[11431,10557,6153,2134],"delegatorTokens":9999999934555}},{"ix":169,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":24,"t":144,"consumerPower":[null,null,null,5029],"outstandingDowntime":[false,false,false,false]}},{"ix":170,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":171,"action":{"kind":"Undelegate","val":2,"amt":3706},"partialState":{"h":19,"t":114,"tokens":[12431,11557,3447,3134],"delegation":[11431,10557,2447,2134],"delegatorTokens":9999999934555}},{"ix":172,"action":{"kind":"Delegate","val":2,"amt":4948},"partialState":{"h":19,"t":114,"tokens":[12431,11557,8395,3134],"delegation":[11431,10557,7395,2134],"delegatorTokens":9999999929607}},{"ix":173,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":174,"action":{"kind":"Undelegate","val":2,"amt":1082},"partialState":{"h":19,"t":114,"tokens":[12431,11557,7313,3134],"delegation":[11431,10557,6313,2134],"delegatorTokens":9999999929607}},{"ix":175,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":176,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":177,"action":{"kind":"Undelegate","val":0,"amt":2522},"partialState":{"h":19,"t":114,"tokens":[9909,11557,7313,3134],"delegation":[8909,10557,6313,2134],"delegatorTokens":9999999929607}},{"ix":178,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":25,"t":150,"consumerPower":[null,null,null,5029],"outstandingDowntime":[false,false,false,false]}},{"ix":179,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":26,"t":156,"consumerPower":[null,null,null,5029],"outstandingDowntime":[false,false,false,false]}},{"ix":180,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":181,"action":{"kind":"Deliver","chain":"provider","numPackets":4},"partialState":{"h":19,"t":114,"tokens":[9909,11557,7313,3134],"delegation":[8909,10557,6313,2134],"delegatorTokens":9999999929607,"jailed":[1000000000000023,1000000000000023,1000000000000053,null],"status":["unbonded","unbonded","unbonding","bonded"]}},{"ix":182,"action":{"kind":"Undelegate","val":2,"amt":3885},"partialState":{"h":19,"t":114,"tokens":[9909,11557,3428,3134],"delegation":[8909,10557,2428,2134],"delegatorTokens":9999999929607}},{"ix":183,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":184,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":20,"t":120,"tokens":[9909,11557,3428,3134],"delegation":[8909,10557,2428,2134],"delegatorTokens":9999999930959,"jailed":[1000000000000023,1000000000000023,1000000000000053,null],"status":["unbonded","unbonded","unbonding","bonded"]}},{"ix":185,"action":{"kind":"Deliver","chain":"consumer","numPackets":4},"partialState":{"h":26,"t":156,"consumerPower":[null,null,null,5029],"outstandingDowntime":[false,false,false,false]}},{"ix":186,"action":{"kind":"Delegate","val":2,"amt":4608},"partialState":{"h":20,"t":120,"tokens":[9909,11557,8036,3134],"delegation":[8909,10557,7036,2134],"delegatorTokens":9999999926351}},{"ix":187,"action":{"kind":"Delegate","val":2,"amt":1997},"partialState":{"h":20,"t":120,"tokens":[9909,11557,10033,3134],"delegation":[8909,10557,9033,2134],"delegatorTokens":9999999924354}},{"ix":188,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":21,"t":126,"tokens":[9909,11557,10033,3134],"delegation":[8909,10557,9033,2134],"delegatorTokens":9999999928889,"jailed":[1000000000000023,1000000000000023,1000000000000053,null],"status":["unbonded","unbonded","unbonding","bonded"]}},{"ix":189,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":22,"t":132,"tokens":[9909,11557,10033,3134],"delegation":[8909,10557,9033,2134],"delegatorTokens":9999999928889,"jailed":[1000000000000023,1000000000000023,1000000000000053,null],"status":["unbonded","unbonded","unbonding","bonded"]}},{"ix":190,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":27,"t":162,"consumerPower":[null,null,null,5029],"outstandingDowntime":[false,false,false,false]}},{"ix":191,"action":{"kind":"Delegate","val":0,"amt":1056},"partialState":{"h":22,"t":132,"tokens":[10965,11557,10033,3134],"delegation":[9965,10557,9033,2134],"delegatorTokens":9999999927833}},{"ix":192,"action":{"kind":"Deliver","chain":"provider","numPackets":5},"partialState":{"h":22,"t":132,"tokens":[10965,11557,10033,3134],"delegation":[9965,10557,9033,2134],"delegatorTokens":9999999927833,"jailed":[1000000000000023,1000000000000023,1000000000000053,null],"status":["unbonded","unbonded","unbonding","bonded"]}},{"ix":193,"action":{"kind":"Undelegate","val":2,"amt":4649},"partialState":{"h":22,"t":132,"tokens":[10965,11557,5384,3134],"delegation":[9965,10557,4384,2134],"delegatorTokens":9999999927833}},{"ix":194,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":195,"action":{"kind":"Deliver","chain":"consumer","numPackets":4},"partialState":{"h":27,"t":162,"consumerPower":[null,null,null,5029],"outstandingDowntime":[false,false,false,false]}},{"ix":196,"action":{"kind":"Deliver","chain":"consumer","numPackets":3},"partialState":{"h":27,"t":162,"consumerPower":[null,null,null,5029],"outstandingDowntime":[false,false,false,false]}},{"ix":197,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":23,"t":138,"tokens":[10965,11557,5384,3134],"delegation":[9965,10557,4384,2134],"delegatorTokens":9999999927833,"jailed":[1000000000000023,1000000000000023,1000000000000053,null],"status":["unbonded","unbonded","unbonding","bonded"]}},{"ix":198,"action":{"kind":"Deliver","chain":"consumer","numPackets":3},"partialState":{"h":27,"t":162,"consumerPower":[null,null,null,5029],"outstandingDowntime":[false,false,false,false]}},{"ix":199,"action":{"kind":"Deliver","chain":"provider","numPackets":3},"partialState":{"h":23,"t":138,"tokens":[10965,11557,5384,3134],"delegation":[9965,10557,4384,2134],"delegatorTokens":9999999927833,"jailed":[1000000000000023,1000000000000023,1000000000000053,null],"status":["unbonded","unbonded","unbonding","bonded"]}}],"events":["send_downtime_slash_request","insufficient_shares","send_double_sign_slash_request","send_vsc_without_downtime_ack","send_downtime_slash_request","downtime_slash_request_outstanding","insufficient_shares","downtime_slash_request_outstanding","insufficient_shares","insufficient_shares","send_vsc_without_downtime_ack","send_double_sign_slash_request","send_double_sign_slash_request","receive_double_sign_slash_request","insufficient_shares","send_double_sign_slash_request","receive_double_sign_slash_request","receive_double_sign_slash_request","receive_double_sign_slash_request","rebond_unval","receive_downtime_slash_request","jail","receive_downtime_slash_request","jail","send_vsc_with_downtime_ack","more_than_one_third_val_power_change","rebond_unval","send_vsc_without_downtime_ack","insufficient_shares","insufficient_shares","send_double_sign_slash_request","send_downtime_slash_request","receive_downtime_slash_ack","receive_downtime_slash_ack","send_vsc_not_because_change","send_vsc_without_downtime_ack","send_vsc_not_because_change","send_vsc_without_downtime_ack","insufficient_shares","consumer_del_val","consumer_del_val","consumer_add_val","consumer_add_val","insufficient_shares","send_vsc_without_downtime_ack","receive_double_sign_slash_request","insufficient_shares","receive_downtime_slash_request","jail","insufficient_shares","consumer_update_val","send_vsc_with_downtime_ack","insufficient_shares","send_vsc_not_because_change","send_vsc_without_downtime_ack","some_undels_expired_but_not_completed","consumer_send_maturation","consumer_send_maturation","consumer_send_maturation","consumer_send_maturation","consumer_send_maturation","receive_downtime_slash_ack","consumer_del_val","consumer_update_val","some_undels_expired_but_not_completed","complete_undel_immediate","complete_undel_immediate","send_vsc_not_because_change","send_vsc_without_downtime_ack","insufficient_shares","set_unval_hold_false","set_unval_hold_false","set_undel_hold_false","send_vsc_without_downtime_ack","complete_unval_in_endblock","complete_unval_in_endblock","complete_undel_in_endblock","consumer_send_maturation","consumer_update_val","consumer_send_maturation","some_undels_expired_but_not_completed","complete_undel_immediate","set_undel_hold_false","set_undel_hold_false","send_vsc_without_downtime_ack","complete_undel_in_endblock","consumer_send_maturation","consumer_send_maturation","some_undels_expired_but_not_completed","send_vsc_not_because_change","send_vsc_without_downtime_ack"]},{"meta":{"commit":"7ffd0c04e4205cbc9caf212abfe6c59ee43153bf"},"constants":{"P":"provider","C":"consumer","UNBONDING_SECONDS_P":70,"UNBONDING_SECONDS_C":50,"TRUSTING_SECONDS":49,"NUM_VALIDATORS":4,"MAX_VALIDATORS":2,"SLASH_DOUBLESIGN":0,"SLASH_DOWNTIME":0,"JAIL_SECONDS":999999999999999,"BLOCK_SECONDS":6,"INITIAL_DELEGATOR_TOKENS":10000000000000,"DELEGATE_AMT_MIN":1000,"DELEGATE_AMT_MAX":5000,"UNDELEGATE_AMT_MIN":1000,"UNDELEGATE_AMT_MAX":5000,"ISDOWNTIME_PROBABILITY":0.5,"MAX_NUM_PACKETS_FOR_DELIVER":6},"actions":[{"ix":0,"action":{"kind":"Undelegate","val":3,"amt":2743},"partialState":{"h":1,"t":6,"tokens":[5000,4000,3000,2000],"delegation":[4000,3000,2000,1000],"delegatorTokens":10000000000000}},{"ix":1,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":2,"action":{"kind":"Deliver","chain":"consumer","numPackets":5},"partialState":{"h":1,"t":6,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":3,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":2,"t":12,"tokens":[5000,4000,3000,2000],"delegation":[4000,3000,2000,1000],"delegatorTokens":10000000000000,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":4,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":5,"action":{"kind":"Undelegate","val":0,"amt":3099},"partialState":{"h":2,"t":12,"tokens":[1901,4000,3000,2000],"delegation":[901,3000,2000,1000],"delegatorTokens":10000000000000}},{"ix":6,"action":{"kind":"Delegate","val":1,"amt":2875},"partialState":{"h":2,"t":12,"tokens":[1901,6875,3000,2000],"delegation":[901,5875,2000,1000],"delegatorTokens":9999999997125}},{"ix":7,"action":{"kind":"Undelegate","val":3,"amt":1574},"partialState":{"h":2,"t":12,"tokens":[1901,6875,3000,2000],"delegation":[901,5875,2000,1000],"delegatorTokens":9999999997125}},{"ix":8,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":9,"action":{"kind":"Undelegate","val":3,"amt":1243},"partialState":{"h":2,"t":12,"tokens":[1901,6875,3000,2000],"delegation":[901,5875,2000,1000],"delegatorTokens":9999999997125}},{"ix":10,"action":{"kind":"Undelegate","val":2,"amt":2693},"partialState":{"h":2,"t":12,"tokens":[1901,6875,3000,2000],"delegation":[901,5875,2000,1000],"delegatorTokens":9999999997125}},{"ix":11,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":12,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":2,"t":12,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":13,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":14,"action":{"kind":"ConsumerSlash","val":2,"infractionHeight":0,"isDowntime":false},"partialState":{"h":2,"t":12,"outstandingDowntime":[false,false,false,false]}},{"ix":15,"action":{"kind":"Deliver","chain":"consumer","numPackets":5},"partialState":{"h":2,"t":12,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":16,"action":{"kind":"Undelegate","val":2,"amt":2511},"partialState":{"h":2,"t":12,"tokens":[1901,6875,3000,2000],"delegation":[901,5875,2000,1000],"delegatorTokens":9999999997125}},{"ix":17,"action":{"kind":"Delegate","val":0,"amt":4831},"partialState":{"h":2,"t":12,"tokens":[6732,6875,3000,2000],"delegation":[5732,5875,2000,1000],"delegatorTokens":9999999992294}},{"ix":18,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":3,"t":18,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":19,"action":{"kind":"Deliver","chain":"provider","numPackets":5},"partialState":{"h":2,"t":12,"tokens":[6732,6875,3000,2000],"delegation":[5732,5875,2000,1000],"delegatorTokens":9999999992294,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":20,"action":{"kind":"ConsumerSlash","val":3,"infractionHeight":0,"isDowntime":true},"partialState":{"h":3,"t":18,"outstandingDowntime":[false,false,false,true]}},{"ix":21,"action":{"kind":"Deliver","chain":"consumer","numPackets":2},"partialState":{"h":3,"t":18,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,false,false,true]}},{"ix":22,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":23,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":3,"t":18,"tokens":[6732,6875,3000,2000],"delegation":[5732,5875,2000,1000],"delegatorTokens":9999999992294,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":24,"action":{"kind":"ConsumerSlash","val":3,"infractionHeight":1,"isDowntime":true},"partialState":{"h":3,"t":18,"outstandingDowntime":[false,false,false,true]}},{"ix":25,"action":{"kind":"Deliver","chain":"provider","numPackets":5},"partialState":{"h":3,"t":18,"tokens":[6732,6875,3000,2000],"delegation":[5732,5875,2000,1000],"delegatorTokens":9999999992294,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":26,"action":{"kind":"Deliver","chain":"provider","numPackets":1},"partialState":{"h":3,"t":18,"tokens":[6732,6875,3000,2000],"delegation":[5732,5875,2000,1000],"delegatorTokens":9999999992294,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":27,"action":{"kind":"Undelegate","val":2,"amt":4755},"partialState":{"h":3,"t":18,"tokens":[6732,6875,3000,2000],"delegation":[5732,5875,2000,1000],"delegatorTokens":9999999992294}},{"ix":28,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":4,"t":24,"tokens":[6732,6875,3000,2000],"delegation":[5732,5875,2000,1000],"delegatorTokens":9999999992294,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":29,"action":{"kind":"Deliver","chain":"consumer","numPackets":1},"partialState":{"h":3,"t":18,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,false,false,true]}},{"ix":30,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":31,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":5,"t":30,"tokens":[6732,6875,3000,2000],"delegation":[5732,5875,2000,1000],"delegatorTokens":9999999992294,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":32,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":6,"t":36,"tokens":[6732,6875,3000,2000],"delegation":[5732,5875,2000,1000],"delegatorTokens":9999999992294,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":33,"action":{"kind":"Delegate","val":1,"amt":3052},"partialState":{"h":6,"t":36,"tokens":[6732,9927,3000,2000],"delegation":[5732,8927,2000,1000],"delegatorTokens":9999999989242}},{"ix":34,"action":{"kind":"Delegate","val":3,"amt":4117},"partialState":{"h":6,"t":36,"tokens":[6732,9927,3000,6117],"delegation":[5732,8927,2000,5117],"delegatorTokens":9999999985125}},{"ix":35,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":36,"action":{"kind":"ConsumerSlash","val":3,"infractionHeight":2,"isDowntime":false},"partialState":{"h":3,"t":18,"outstandingDowntime":[false,false,false,true]}},{"ix":37,"action":{"kind":"ConsumerSlash","val":2,"infractionHeight":2,"isDowntime":true},"partialState":{"h":3,"t":18,"outstandingDowntime":[false,false,true,true]}},{"ix":38,"action":{"kind":"Delegate","val":3,"amt":2326},"partialState":{"h":6,"t":36,"tokens":[6732,9927,3000,8443],"delegation":[5732,8927,2000,7443],"delegatorTokens":9999999982799}},{"ix":39,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":4,"t":24,"consumerPower":[6732,6875,null,null],"outstandingDowntime":[false,false,true,true]}},{"ix":40,"action":{"kind":"Delegate","val":3,"amt":3899},"partialState":{"h":6,"t":36,"tokens":[6732,9927,3000,12342],"delegation":[5732,8927,2000,11342],"delegatorTokens":9999999978900}},{"ix":41,"action":{"kind":"ConsumerSlash","val":3,"infractionHeight":2,"isDowntime":false},"partialState":{"h":4,"t":24,"outstandingDowntime":[false,false,true,true]}},{"ix":42,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":5,"t":30,"consumerPower":[6732,6875,null,null],"outstandingDowntime":[false,false,true,true]}},{"ix":43,"action":{"kind":"ConsumerSlash","val":2,"infractionHeight":0,"isDowntime":false},"partialState":{"h":5,"t":30,"outstandingDowntime":[false,false,true,true]}},{"ix":44,"action":{"kind":"Delegate","val":3,"amt":3154},"partialState":{"h":6,"t":36,"tokens":[6732,9927,3000,15496],"delegation":[5732,8927,2000,14496],"delegatorTokens":9999999975746}},{"ix":45,"action":{"kind":"Deliver","chain":"consumer","numPackets":1},"partialState":{"h":5,"t":30,"consumerPower":[6732,6875,null,null],"outstandingDowntime":[false,false,true,true]}},{"ix":46,"action":{"kind":"ConsumerSlash","val":3,"infractionHeight":0,"isDowntime":true},"partialState":{"h":5,"t":30,"outstandingDowntime":[false,false,true,true]}},{"ix":47,"action":{"kind":"Deliver","chain":"provider","numPackets":4},"partialState":{"h":6,"t":36,"tokens":[6732,9927,3000,15496],"delegation":[5732,8927,2000,14496],"delegatorTokens":9999999975746,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":48,"action":{"kind":"Delegate","val":1,"amt":1500},"partialState":{"h":6,"t":36,"tokens":[6732,11427,3000,15496],"delegation":[5732,10427,2000,14496],"delegatorTokens":9999999974246}},{"ix":49,"action":{"kind":"Delegate","val":3,"amt":1979},"partialState":{"h":6,"t":36,"tokens":[6732,11427,3000,17475],"delegation":[5732,10427,2000,16475],"delegatorTokens":9999999972267}},{"ix":50,"action":{"kind":"ConsumerSlash","val":2,"infractionHeight":2,"isDowntime":true},"partialState":{"h":5,"t":30,"outstandingDowntime":[false,false,true,true]}},{"ix":51,"action":{"kind":"Undelegate","val":1,"amt":3939},"partialState":{"h":6,"t":36,"tokens":[6732,7488,3000,17475],"delegation":[5732,6488,2000,16475],"delegatorTokens":9999999972267}},{"ix":52,"action":{"kind":"Undelegate","val":2,"amt":4962},"partialState":{"h":6,"t":36,"tokens":[6732,7488,3000,17475],"delegation":[5732,6488,2000,16475],"delegatorTokens":9999999972267}},{"ix":53,"action":{"kind":"Deliver","chain":"consumer","numPackets":1},"partialState":{"h":5,"t":30,"consumerPower":[6732,6875,null,null],"outstandingDowntime":[false,false,true,true]}},{"ix":54,"action":{"kind":"Delegate","val":2,"amt":3986},"partialState":{"h":6,"t":36,"tokens":[6732,7488,6986,17475],"delegation":[5732,6488,5986,16475],"delegatorTokens":9999999968281}},{"ix":55,"action":{"kind":"ConsumerSlash","val":2,"infractionHeight":0,"isDowntime":false},"partialState":{"h":5,"t":30,"outstandingDowntime":[false,false,true,true]}},{"ix":56,"action":{"kind":"Undelegate","val":3,"amt":3422},"partialState":{"h":6,"t":36,"tokens":[6732,7488,6986,14053],"delegation":[5732,6488,5986,13053],"delegatorTokens":9999999968281}},{"ix":57,"action":{"kind":"Delegate","val":3,"amt":3704},"partialState":{"h":6,"t":36,"tokens":[6732,7488,6986,17757],"delegation":[5732,6488,5986,16757],"delegatorTokens":9999999964577}},{"ix":58,"action":{"kind":"Delegate","val":2,"amt":1033},"partialState":{"h":6,"t":36,"tokens":[6732,7488,8019,17757],"delegation":[5732,6488,7019,16757],"delegatorTokens":9999999963544}},{"ix":59,"action":{"kind":"Undelegate","val":3,"amt":1242},"partialState":{"h":6,"t":36,"tokens":[6732,7488,8019,16515],"delegation":[5732,6488,7019,15515],"delegatorTokens":9999999963544}},{"ix":60,"action":{"kind":"Delegate","val":3,"amt":1080},"partialState":{"h":6,"t":36,"tokens":[6732,7488,8019,17595],"delegation":[5732,6488,7019,16595],"delegatorTokens":9999999962464}},{"ix":61,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":6,"t":36,"consumerPower":[6732,6875,null,null],"outstandingDowntime":[false,false,true,true]}},{"ix":62,"action":{"kind":"Undelegate","val":0,"amt":1947},"partialState":{"h":6,"t":36,"tokens":[4785,7488,8019,17595],"delegation":[3785,6488,7019,16595],"delegatorTokens":9999999962464}},{"ix":63,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":64,"action":{"kind":"Undelegate","val":0,"amt":2070},"partialState":{"h":6,"t":36,"tokens":[2715,7488,8019,17595],"delegation":[1715,6488,7019,16595],"delegatorTokens":9999999962464}},{"ix":65,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":7,"t":42,"tokens":[2715,7488,8019,17595],"delegation":[1715,6488,7019,16595],"delegatorTokens":9999999962464,"jailed":[null,null,1000000000000035,1000000000000035],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":66,"action":{"kind":"ConsumerSlash","val":2,"infractionHeight":5,"isDowntime":true},"partialState":{"h":6,"t":36,"outstandingDowntime":[false,false,true,true]}},{"ix":67,"action":{"kind":"Undelegate","val":2,"amt":4009},"partialState":{"h":7,"t":42,"tokens":[2715,7488,4010,17595],"delegation":[1715,6488,3010,16595],"delegatorTokens":9999999962464}},{"ix":68,"action":{"kind":"Deliver","chain":"provider","numPackets":6},"partialState":{"h":7,"t":42,"tokens":[2715,7488,4010,17595],"delegation":[1715,6488,3010,16595],"delegatorTokens":9999999962464,"jailed":[null,null,1000000000000035,1000000000000035],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":69,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":8,"t":48,"tokens":[2715,7488,4010,17595],"delegation":[1715,6488,3010,16595],"delegatorTokens":9999999962464,"jailed":[null,null,1000000000000035,1000000000000035],"status":["bonded","bonded","unbonding","unbonding"]}},{"ix":70,"action":{"kind":"ConsumerSlash","val":2,"infractionHeight":4,"isDowntime":false},"partialState":{"h":6,"t":36,"outstandingDowntime":[false,false,true,true]}},{"ix":71,"action":{"kind":"Delegate","val":3,"amt":2290},"partialState":{"h":8,"t":48,"tokens":[2715,7488,4010,19885],"delegation":[1715,6488,3010,18885],"delegatorTokens":9999999960174}},{"ix":72,"action":{"kind":"Undelegate","val":1,"amt":1180},"partialState":{"h":8,"t":48,"tokens":[2715,6308,4010,19885],"delegation":[1715,5308,3010,18885],"delegatorTokens":9999999960174}},{"ix":73,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":9,"t":54,"tokens":[2715,6308,4010,19885],"delegation":[1715,5308,3010,18885],"delegatorTokens":9999999960174,"jailed":[null,null,1000000000000035,1000000000000035],"status":["bonded","bonded","unbonding","unbonding"]}},{"ix":74,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":7,"t":42,"consumerPower":[6732,6875,null,null],"outstandingDowntime":[false,false,true,true]}},{"ix":75,"action":{"kind":"Delegate","val":0,"amt":4611},"partialState":{"h":9,"t":54,"tokens":[7326,6308,4010,19885],"delegation":[6326,5308,3010,18885],"delegatorTokens":9999999955563}},{"ix":76,"action":{"kind":"ConsumerSlash","val":3,"infractionHeight":2,"isDowntime":true},"partialState":{"h":7,"t":42,"outstandingDowntime":[false,false,true,true]}},{"ix":77,"action":{"kind":"Deliver","chain":"consumer","numPackets":3},"partialState":{"h":7,"t":42,"consumerPower":[6732,6875,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":78,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":79,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":10,"t":60,"tokens":[7326,6308,4010,19885],"delegation":[6326,5308,3010,18885],"delegatorTokens":9999999955563,"jailed":[null,null,1000000000000035,1000000000000035],"status":["bonded","bonded","unbonding","unbonding"]}},{"ix":80,"action":{"kind":"ConsumerSlash","val":3,"infractionHeight":5,"isDowntime":false},"partialState":{"h":7,"t":42,"outstandingDowntime":[false,false,false,false]}},{"ix":81,"action":{"kind":"Undelegate","val":3,"amt":1826},"partialState":{"h":10,"t":60,"tokens":[7326,6308,4010,18059],"delegation":[6326,5308,3010,17059],"delegatorTokens":9999999955563}},{"ix":82,"action":{"kind":"Deliver","chain":"consumer","numPackets":5},"partialState":{"h":7,"t":42,"consumerPower":[6732,6875,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":83,"action":{"kind":"Deliver","chain":"consumer","numPackets":4},"partialState":{"h":7,"t":42,"consumerPower":[6732,6875,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":84,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":85,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":8,"t":48,"consumerPower":[2715,6308,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":86,"action":{"kind":"Deliver","chain":"consumer","numPackets":4},"partialState":{"h":8,"t":48,"consumerPower":[2715,6308,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":87,"action":{"kind":"ConsumerSlash","val":2,"infractionHeight":2,"isDowntime":true},"partialState":{"h":8,"t":48,"outstandingDowntime":[false,false,true,false]}},{"ix":88,"action":{"kind":"Undelegate","val":0,"amt":1611},"partialState":{"h":10,"t":60,"tokens":[5715,6308,4010,18059],"delegation":[4715,5308,3010,17059],"delegatorTokens":9999999955563}},{"ix":89,"action":{"kind":"Delegate","val":0,"amt":4732},"partialState":{"h":10,"t":60,"tokens":[10447,6308,4010,18059],"delegation":[9447,5308,3010,17059],"delegatorTokens":9999999950831}},{"ix":90,"action":{"kind":"ConsumerSlash","val":2,"infractionHeight":1,"isDowntime":false},"partialState":{"h":8,"t":48,"outstandingDowntime":[false,false,true,false]}},{"ix":91,"action":{"kind":"Undelegate","val":1,"amt":2820},"partialState":{"h":10,"t":60,"tokens":[10447,3488,4010,18059],"delegation":[9447,2488,3010,17059],"delegatorTokens":9999999950831}},{"ix":92,"action":{"kind":"Deliver","chain":"consumer","numPackets":5},"partialState":{"h":8,"t":48,"consumerPower":[2715,6308,null,null],"outstandingDowntime":[false,false,true,false]}},{"ix":93,"action":{"kind":"Undelegate","val":3,"amt":4358},"partialState":{"h":10,"t":60,"tokens":[10447,3488,4010,13701],"delegation":[9447,2488,3010,12701],"delegatorTokens":9999999950831}},{"ix":94,"action":{"kind":"Delegate","val":0,"amt":3701},"partialState":{"h":10,"t":60,"tokens":[14148,3488,4010,13701],"delegation":[13148,2488,3010,12701],"delegatorTokens":9999999947130}},{"ix":95,"action":{"kind":"Deliver","chain":"provider","numPackets":2},"partialState":{"h":10,"t":60,"tokens":[14148,3488,4010,13701],"delegation":[13148,2488,3010,12701],"delegatorTokens":9999999947130,"jailed":[null,null,1000000000000035,1000000000000035],"status":["bonded","bonded","unbonding","unbonding"]}},{"ix":96,"action":{"kind":"ConsumerSlash","val":3,"infractionHeight":4,"isDowntime":true},"partialState":{"h":8,"t":48,"outstandingDowntime":[false,false,true,true]}},{"ix":97,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":98,"action":{"kind":"Delegate","val":1,"amt":3336},"partialState":{"h":10,"t":60,"tokens":[14148,6824,4010,13701],"delegation":[13148,5824,3010,12701],"delegatorTokens":9999999943794}},{"ix":99,"action":{"kind":"Deliver","chain":"consumer","numPackets":1},"partialState":{"h":8,"t":48,"consumerPower":[2715,6308,null,null],"outstandingDowntime":[false,false,true,true]}},{"ix":100,"action":{"kind":"Delegate","val":1,"amt":3338},"partialState":{"h":10,"t":60,"tokens":[14148,10162,4010,13701],"delegation":[13148,9162,3010,12701],"delegatorTokens":9999999940456}},{"ix":101,"action":{"kind":"ConsumerSlash","val":1,"infractionHeight":0,"isDowntime":false},"partialState":{"h":8,"t":48,"outstandingDowntime":[false,false,true,true]}},{"ix":102,"action":{"kind":"Undelegate","val":1,"amt":4136},"partialState":{"h":10,"t":60,"tokens":[14148,6026,4010,13701],"delegation":[13148,5026,3010,12701],"delegatorTokens":9999999940456}},{"ix":103,"action":{"kind":"Undelegate","val":3,"amt":3961},"partialState":{"h":10,"t":60,"tokens":[14148,6026,4010,9740],"delegation":[13148,5026,3010,8740],"delegatorTokens":9999999940456}},{"ix":104,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":105,"action":{"kind":"Deliver","chain":"provider","numPackets":2},"partialState":{"h":10,"t":60,"tokens":[14148,6026,4010,9740],"delegation":[13148,5026,3010,8740],"delegatorTokens":9999999940456,"jailed":[null,null,1000000000000035,1000000000000035],"status":["bonded","bonded","unbonding","unbonding"]}},{"ix":106,"action":{"kind":"Deliver","chain":"provider","numPackets":1},"partialState":{"h":10,"t":60,"tokens":[14148,6026,4010,9740],"delegation":[13148,5026,3010,8740],"delegatorTokens":9999999940456,"jailed":[null,null,1000000000000035,1000000000000035],"status":["bonded","bonded","unbonding","unbonding"]}},{"ix":107,"action":{"kind":"Deliver","chain":"provider","numPackets":6},"partialState":{"h":10,"t":60,"tokens":[14148,6026,4010,9740],"delegation":[13148,5026,3010,8740],"delegatorTokens":9999999940456,"jailed":[null,null,1000000000000035,1000000000000035],"status":["bonded","bonded","unbonding","unbonding"]}},{"ix":108,"action":{"kind":"Undelegate","val":2,"amt":1818},"partialState":{"h":10,"t":60,"tokens":[14148,6026,2192,9740],"delegation":[13148,5026,1192,8740],"delegatorTokens":9999999940456}},{"ix":109,"action":{"kind":"Undelegate","val":1,"amt":4109},"partialState":{"h":10,"t":60,"tokens":[14148,1917,2192,9740],"delegation":[13148,917,1192,8740],"delegatorTokens":9999999940456}},{"ix":110,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":111,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":112,"action":{"kind":"Undelegate","val":2,"amt":3100},"partialState":{"h":10,"t":60,"tokens":[14148,1917,2192,9740],"delegation":[13148,917,1192,8740],"delegatorTokens":9999999940456}},{"ix":113,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":9,"t":54,"consumerPower":[2715,6308,null,null],"outstandingDowntime":[false,false,true,true]}},{"ix":114,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":10,"t":60,"consumerPower":[2715,6308,null,null],"outstandingDowntime":[false,false,true,true]}},{"ix":115,"action":{"kind":"Undelegate","val":3,"amt":3822},"partialState":{"h":10,"t":60,"tokens":[14148,1917,2192,5918],"delegation":[13148,917,1192,4918],"delegatorTokens":9999999940456}},{"ix":116,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":117,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":118,"action":{"kind":"Deliver","chain":"consumer","numPackets":3},"partialState":{"h":10,"t":60,"consumerPower":[2715,6308,null,null],"outstandingDowntime":[false,false,true,true]}},{"ix":119,"action":{"kind":"Undelegate","val":1,"amt":1504},"partialState":{"h":10,"t":60,"tokens":[14148,1917,2192,5918],"delegation":[13148,917,1192,4918],"delegatorTokens":9999999940456}},{"ix":120,"action":{"kind":"Deliver","chain":"provider","numPackets":4},"partialState":{"h":10,"t":60,"tokens":[14148,1917,2192,5918],"delegation":[13148,917,1192,4918],"delegatorTokens":9999999940456,"jailed":[null,null,1000000000000035,1000000000000035],"status":["bonded","bonded","unbonding","unbonding"]}},{"ix":121,"action":{"kind":"Deliver","chain":"consumer","numPackets":2},"partialState":{"h":10,"t":60,"consumerPower":[2715,6308,null,null],"outstandingDowntime":[false,false,true,true]}},{"ix":122,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":123,"action":{"kind":"Deliver","chain":"provider","numPackets":6},"partialState":{"h":10,"t":60,"tokens":[14148,1917,2192,5918],"delegation":[13148,917,1192,4918],"delegatorTokens":9999999940456,"jailed":[null,null,1000000000000035,1000000000000035],"status":["bonded","bonded","unbonding","unbonding"]}},{"ix":124,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":125,"action":{"kind":"Deliver","chain":"provider","numPackets":6},"partialState":{"h":10,"t":60,"tokens":[14148,1917,2192,5918],"delegation":[13148,917,1192,4918],"delegatorTokens":9999999940456,"jailed":[null,null,1000000000000035,1000000000000035],"status":["bonded","bonded","unbonding","unbonding"]}},{"ix":126,"action":{"kind":"Undelegate","val":2,"amt":4140},"partialState":{"h":10,"t":60,"tokens":[14148,1917,2192,5918],"delegation":[13148,917,1192,4918],"delegatorTokens":9999999940456}},{"ix":127,"action":{"kind":"Deliver","chain":"provider","numPackets":5},"partialState":{"h":10,"t":60,"tokens":[14148,1917,2192,5918],"delegation":[13148,917,1192,4918],"delegatorTokens":9999999940456,"jailed":[null,null,1000000000000035,1000000000000035],"status":["bonded","bonded","unbonding","unbonding"]}},{"ix":128,"action":{"kind":"Deliver","chain":"provider","numPackets":5},"partialState":{"h":10,"t":60,"tokens":[14148,1917,2192,5918],"delegation":[13148,917,1192,4918],"delegatorTokens":9999999940456,"jailed":[null,null,1000000000000035,1000000000000035],"status":["bonded","bonded","unbonding","unbonding"]}},{"ix":129,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":11,"t":66,"consumerPower":[2715,6308,null,null],"outstandingDowntime":[false,false,true,true]}},{"ix":130,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":12,"t":72,"consumerPower":[2715,6308,null,null],"outstandingDowntime":[false,false,true,true]}},{"ix":131,"action":{"kind":"Deliver","chain":"provider","numPackets":1},"partialState":{"h":10,"t":60,"tokens":[14148,1917,2192,5918],"delegation":[13148,917,1192,4918],"delegatorTokens":9999999940456,"jailed":[null,null,1000000000000035,1000000000000035],"status":["bonded","bonded","unbonding","unbonding"]}},{"ix":132,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":11,"t":66,"tokens":[14148,1917,2192,5918],"delegation":[13148,917,1192,4918],"delegatorTokens":9999999940456,"jailed":[null,null,1000000000000059,1000000000000059],"status":["bonded","bonded","unbonding","unbonding"]}},{"ix":133,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":12,"t":72,"tokens":[14148,1917,2192,5918],"delegation":[13148,917,1192,4918],"delegatorTokens":9999999940456,"jailed":[null,null,1000000000000059,1000000000000059],"status":["bonded","bonded","unbonding","unbonding"]}},{"ix":134,"action":{"kind":"Delegate","val":1,"amt":3561},"partialState":{"h":12,"t":72,"tokens":[14148,5478,2192,5918],"delegation":[13148,4478,1192,4918],"delegatorTokens":9999999936895}},{"ix":135,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":136,"action":{"kind":"Undelegate","val":0,"amt":3787},"partialState":{"h":12,"t":72,"tokens":[10361,5478,2192,5918],"delegation":[9361,4478,1192,4918],"delegatorTokens":9999999936895}},{"ix":137,"action":{"kind":"Undelegate","val":2,"amt":3044},"partialState":{"h":12,"t":72,"tokens":[10361,5478,2192,5918],"delegation":[9361,4478,1192,4918],"delegatorTokens":9999999936895}},{"ix":138,"action":{"kind":"Deliver","chain":"provider","numPackets":2},"partialState":{"h":12,"t":72,"tokens":[10361,5478,2192,5918],"delegation":[9361,4478,1192,4918],"delegatorTokens":9999999936895,"jailed":[null,null,1000000000000059,1000000000000059],"status":["bonded","bonded","unbonding","unbonding"]}},{"ix":139,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":140,"action":{"kind":"Deliver","chain":"consumer","numPackets":4},"partialState":{"h":12,"t":72,"consumerPower":[2715,6308,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":141,"action":{"kind":"Undelegate","val":3,"amt":2566},"partialState":{"h":12,"t":72,"tokens":[10361,5478,2192,3352],"delegation":[9361,4478,1192,2352],"delegatorTokens":9999999936895}},{"ix":142,"action":{"kind":"Deliver","chain":"consumer","numPackets":5},"partialState":{"h":12,"t":72,"consumerPower":[2715,6308,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":143,"action":{"kind":"Deliver","chain":"provider","numPackets":3},"partialState":{"h":12,"t":72,"tokens":[10361,5478,2192,3352],"delegation":[9361,4478,1192,2352],"delegatorTokens":9999999936895,"jailed":[null,null,1000000000000059,1000000000000059],"status":["bonded","bonded","unbonding","unbonding"]}},{"ix":144,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":145,"action":{"kind":"Deliver","chain":"consumer","numPackets":4},"partialState":{"h":12,"t":72,"consumerPower":[2715,6308,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":146,"action":{"kind":"Undelegate","val":2,"amt":3254},"partialState":{"h":12,"t":72,"tokens":[10361,5478,2192,3352],"delegation":[9361,4478,1192,2352],"delegatorTokens":9999999936895}},{"ix":147,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":13,"t":78,"consumerPower":[14148,1917,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":148,"action":{"kind":"Undelegate","val":0,"amt":3788},"partialState":{"h":12,"t":72,"tokens":[6573,5478,2192,3352],"delegation":[5573,4478,1192,2352],"delegatorTokens":9999999936895}},{"ix":149,"action":{"kind":"Delegate","val":2,"amt":2552},"partialState":{"h":12,"t":72,"tokens":[6573,5478,4744,3352],"delegation":[5573,4478,3744,2352],"delegatorTokens":9999999934343}},{"ix":150,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":151,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":14,"t":84,"consumerPower":[14148,1917,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":152,"action":{"kind":"Deliver","chain":"consumer","numPackets":2},"partialState":{"h":14,"t":84,"consumerPower":[14148,1917,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":153,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":15,"t":90,"consumerPower":[14148,1917,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":154,"action":{"kind":"Undelegate","val":1,"amt":3960},"partialState":{"h":12,"t":72,"tokens":[6573,1518,4744,3352],"delegation":[5573,518,3744,2352],"delegatorTokens":9999999934343}},{"ix":155,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":156,"action":{"kind":"Delegate","val":1,"amt":3134},"partialState":{"h":12,"t":72,"tokens":[6573,4652,4744,3352],"delegation":[5573,3652,3744,2352],"delegatorTokens":9999999931209}},{"ix":157,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":13,"t":78,"tokens":[6573,4652,4744,3352],"delegation":[5573,3652,3744,2352],"delegatorTokens":9999999931209,"jailed":[null,null,1000000000000059,1000000000000059],"status":["bonded","bonded","unbonding","unbonding"]}},{"ix":158,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":16,"t":96,"consumerPower":[14148,1917,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":159,"action":{"kind":"Undelegate","val":3,"amt":2300},"partialState":{"h":13,"t":78,"tokens":[6573,4652,4744,1052],"delegation":[5573,3652,3744,52],"delegatorTokens":9999999931209}},{"ix":160,"action":{"kind":"Delegate","val":2,"amt":3111},"partialState":{"h":13,"t":78,"tokens":[6573,4652,7855,1052],"delegation":[5573,3652,6855,52],"delegatorTokens":9999999928098}},{"ix":161,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":17,"t":102,"consumerPower":[14148,1917,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":162,"action":{"kind":"Deliver","chain":"provider","numPackets":5},"partialState":{"h":13,"t":78,"tokens":[6573,4652,7855,1052],"delegation":[5573,3652,6855,52],"delegatorTokens":9999999928098,"jailed":[null,null,1000000000000059,1000000000000059],"status":["bonded","bonded","unbonding","unbonding"]}},{"ix":163,"action":{"kind":"Undelegate","val":0,"amt":3173},"partialState":{"h":13,"t":78,"tokens":[3400,4652,7855,1052],"delegation":[2400,3652,6855,52],"delegatorTokens":9999999928098}},{"ix":164,"action":{"kind":"Undelegate","val":1,"amt":4011},"partialState":{"h":13,"t":78,"tokens":[3400,4652,7855,1052],"delegation":[2400,3652,6855,52],"delegatorTokens":9999999928098}},{"ix":165,"action":{"kind":"Undelegate","val":2,"amt":4348},"partialState":{"h":13,"t":78,"tokens":[3400,4652,3507,1052],"delegation":[2400,3652,2507,52],"delegatorTokens":9999999928098}},{"ix":166,"action":{"kind":"Undelegate","val":3,"amt":2260},"partialState":{"h":13,"t":78,"tokens":[3400,4652,3507,1052],"delegation":[2400,3652,2507,52],"delegatorTokens":9999999928098}},{"ix":167,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":168,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":169,"action":{"kind":"Undelegate","val":1,"amt":1652},"partialState":{"h":13,"t":78,"tokens":[3400,3000,3507,1052],"delegation":[2400,2000,2507,52],"delegatorTokens":9999999928098}},{"ix":170,"action":{"kind":"Delegate","val":3,"amt":1008},"partialState":{"h":13,"t":78,"tokens":[3400,3000,3507,2060],"delegation":[2400,2000,2507,1060],"delegatorTokens":9999999927090}},{"ix":171,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":14,"t":84,"tokens":[3400,3000,3507,2060],"delegation":[2400,2000,2507,1060],"delegatorTokens":9999999927090,"jailed":[null,null,1000000000000059,1000000000000059],"status":["bonded","bonded","unbonding","unbonding"]}},{"ix":172,"action":{"kind":"Delegate","val":1,"amt":3164},"partialState":{"h":14,"t":84,"tokens":[3400,6164,3507,2060],"delegation":[2400,5164,2507,1060],"delegatorTokens":9999999923926}},{"ix":173,"action":{"kind":"Delegate","val":2,"amt":2118},"partialState":{"h":14,"t":84,"tokens":[3400,6164,5625,2060],"delegation":[2400,5164,4625,1060],"delegatorTokens":9999999921808}},{"ix":174,"action":{"kind":"Deliver","chain":"provider","numPackets":2},"partialState":{"h":14,"t":84,"tokens":[3400,6164,5625,2060],"delegation":[2400,5164,4625,1060],"delegatorTokens":9999999921808,"jailed":[null,null,1000000000000059,1000000000000059],"status":["bonded","bonded","unbonding","unbonding"]}},{"ix":175,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":18,"t":108,"consumerPower":[14148,1917,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":176,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":19,"t":114,"consumerPower":[14148,1917,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":177,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":178,"action":{"kind":"Deliver","chain":"consumer","numPackets":6},"partialState":{"h":19,"t":114,"consumerPower":[14148,1917,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":179,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":180,"action":{"kind":"Delegate","val":2,"amt":4824},"partialState":{"h":14,"t":84,"tokens":[3400,6164,10449,2060],"delegation":[2400,5164,9449,1060],"delegatorTokens":9999999916984}},{"ix":181,"action":{"kind":"Deliver","chain":"consumer","numPackets":4},"partialState":{"h":19,"t":114,"consumerPower":[14148,1917,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":182,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":183,"action":{"kind":"Undelegate","val":3,"amt":2936},"partialState":{"h":14,"t":84,"tokens":[3400,6164,10449,2060],"delegation":[2400,5164,9449,1060],"delegatorTokens":9999999916984}},{"ix":184,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":185,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":20,"t":120,"consumerPower":[6573,4652,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":186,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":15,"t":90,"tokens":[3400,6164,10449,2060],"delegation":[2400,5164,9449,1060],"delegatorTokens":9999999920083,"jailed":[null,null,1000000000000059,1000000000000059],"status":["bonded","bonded","unbonding","unbonding"]}},{"ix":187,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":188,"action":{"kind":"Delegate","val":1,"amt":3265},"partialState":{"h":15,"t":90,"tokens":[3400,9429,10449,2060],"delegation":[2400,8429,9449,1060],"delegatorTokens":9999999916818}},{"ix":189,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":190,"action":{"kind":"Undelegate","val":0,"amt":4161},"partialState":{"h":15,"t":90,"tokens":[3400,9429,10449,2060],"delegation":[2400,8429,9449,1060],"delegatorTokens":9999999916818}},{"ix":191,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":21,"t":126,"consumerPower":[6573,4652,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":192,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":16,"t":96,"tokens":[3400,9429,10449,2060],"delegation":[2400,8429,9449,1060],"delegatorTokens":9999999916818,"jailed":[null,null,1000000000000059,1000000000000059],"status":["bonded","bonded","unbonding","unbonding"]}},{"ix":193,"action":{"kind":"Undelegate","val":2,"amt":3712},"partialState":{"h":16,"t":96,"tokens":[3400,9429,6737,2060],"delegation":[2400,8429,5737,1060],"delegatorTokens":9999999916818}},{"ix":194,"action":{"kind":"Delegate","val":1,"amt":2097},"partialState":{"h":16,"t":96,"tokens":[3400,11526,6737,2060],"delegation":[2400,10526,5737,1060],"delegatorTokens":9999999914721}},{"ix":195,"action":{"kind":"Delegate","val":3,"amt":1149},"partialState":{"h":16,"t":96,"tokens":[3400,11526,6737,3209],"delegation":[2400,10526,5737,2209],"delegatorTokens":9999999913572}},{"ix":196,"action":{"kind":"Delegate","val":3,"amt":4043},"partialState":{"h":16,"t":96,"tokens":[3400,11526,6737,7252],"delegation":[2400,10526,5737,6252],"delegatorTokens":9999999909529}},{"ix":197,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":198,"action":{"kind":"Undelegate","val":1,"amt":4743},"partialState":{"h":16,"t":96,"tokens":[3400,6783,6737,7252],"delegation":[2400,5783,5737,6252],"delegatorTokens":9999999909529}},{"ix":199,"action":{"kind":"Undelegate","val":1,"amt":3525},"partialState":{"h":16,"t":96,"tokens":[3400,3258,6737,7252],"delegation":[2400,2258,5737,6252],"delegatorTokens":9999999909529}}],"events":["insufficient_shares","insufficient_shares","insufficient_shares","insufficient_shares","send_double_sign_slash_request","insufficient_shares","send_downtime_slash_request","send_vsc_without_downtime_ack","downtime_slash_request_outstanding","insufficient_shares","send_double_sign_slash_request","send_downtime_slash_request","consumer_update_val","consumer_update_val","send_double_sign_slash_request","send_double_sign_slash_request","downtime_slash_request_outstanding","receive_double_sign_slash_request","receive_double_sign_slash_request","downtime_slash_request_outstanding","insufficient_shares","send_double_sign_slash_request","more_than_one_third_val_power_change","receive_downtime_slash_request","jail","receive_downtime_slash_request","jail","send_vsc_with_downtime_ack","downtime_slash_request_outstanding","receive_double_sign_slash_request","more_than_one_third_val_power_change","rebond_unval","rebond_unval","send_vsc_without_downtime_ack","send_double_sign_slash_request","send_vsc_without_downtime_ack","downtime_slash_request_outstanding","receive_downtime_slash_ack","receive_downtime_slash_ack","send_vsc_without_downtime_ack","send_double_sign_slash_request","consumer_update_val","consumer_update_val","consumer_del_val","consumer_del_val","send_downtime_slash_request","send_double_sign_slash_request","receive_double_sign_slash_request","receive_double_sign_slash_request","send_downtime_slash_request","send_double_sign_slash_request","receive_double_sign_slash_request","insufficient_shares","insufficient_shares","receive_double_sign_slash_request","receive_double_sign_slash_request","receive_double_sign_slash_request","insufficient_shares","receive_downtime_slash_request","jail","receive_downtime_slash_request","jail","send_vsc_with_downtime_ack","insufficient_shares","receive_downtime_slash_ack","receive_downtime_slash_ack","insufficient_shares","consumer_send_maturation","consumer_update_val","consumer_update_val","send_vsc_without_downtime_ack","consumer_send_maturation","consumer_send_maturation","consumer_send_maturation","insufficient_shares","insufficient_shares","set_undel_hold_false","send_vsc_without_downtime_ack","insufficient_shares","consumer_update_val","consumer_update_val","complete_undel_in_endblock","send_vsc_without_downtime_ack","insufficient_shares","send_vsc_without_downtime_ack"]},{"meta":{"commit":"7ffd0c04e4205cbc9caf212abfe6c59ee43153bf"},"constants":{"P":"provider","C":"consumer","UNBONDING_SECONDS_P":70,"UNBONDING_SECONDS_C":50,"TRUSTING_SECONDS":49,"NUM_VALIDATORS":4,"MAX_VALIDATORS":2,"SLASH_DOUBLESIGN":0,"SLASH_DOWNTIME":0,"JAIL_SECONDS":999999999999999,"BLOCK_SECONDS":6,"INITIAL_DELEGATOR_TOKENS":10000000000000,"DELEGATE_AMT_MIN":1000,"DELEGATE_AMT_MAX":5000,"UNDELEGATE_AMT_MIN":1000,"UNDELEGATE_AMT_MAX":5000,"ISDOWNTIME_PROBABILITY":0.5,"MAX_NUM_PACKETS_FOR_DELIVER":6},"actions":[{"ix":0,"action":{"kind":"Deliver","chain":"provider","numPackets":6},"partialState":{"h":1,"t":6,"tokens":[5000,4000,3000,2000],"delegation":[4000,3000,2000,1000],"delegatorTokens":10000000000000,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":1,"action":{"kind":"ConsumerSlash","val":2,"infractionHeight":0,"isDowntime":false},"partialState":{"h":1,"t":6,"outstandingDowntime":[false,false,false,false]}},{"ix":2,"action":{"kind":"ConsumerSlash","val":0,"infractionHeight":0,"isDowntime":false},"partialState":{"h":1,"t":6,"outstandingDowntime":[false,false,false,false]}},{"ix":3,"action":{"kind":"ConsumerSlash","val":2,"infractionHeight":0,"isDowntime":false},"partialState":{"h":1,"t":6,"outstandingDowntime":[false,false,false,false]}},{"ix":4,"action":{"kind":"ConsumerSlash","val":0,"infractionHeight":0,"isDowntime":false},"partialState":{"h":1,"t":6,"outstandingDowntime":[false,false,false,false]}},{"ix":5,"action":{"kind":"Undelegate","val":2,"amt":4247},"partialState":{"h":1,"t":6,"tokens":[5000,4000,3000,2000],"delegation":[4000,3000,2000,1000],"delegatorTokens":10000000000000}},{"ix":6,"action":{"kind":"Deliver","chain":"provider","numPackets":5},"partialState":{"h":1,"t":6,"tokens":[5000,4000,3000,2000],"delegation":[4000,3000,2000,1000],"delegatorTokens":10000000000000,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":7,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":8,"action":{"kind":"ConsumerSlash","val":2,"infractionHeight":0,"isDowntime":true},"partialState":{"h":1,"t":6,"outstandingDowntime":[false,false,true,false]}},{"ix":9,"action":{"kind":"Delegate","val":3,"amt":3735},"partialState":{"h":1,"t":6,"tokens":[5000,4000,3000,5735],"delegation":[4000,3000,2000,4735],"delegatorTokens":9999999996265}},{"ix":10,"action":{"kind":"ConsumerSlash","val":0,"infractionHeight":0,"isDowntime":true},"partialState":{"h":1,"t":6,"outstandingDowntime":[true,false,true,false]}},{"ix":11,"action":{"kind":"Delegate","val":2,"amt":4269},"partialState":{"h":1,"t":6,"tokens":[5000,4000,7269,5735],"delegation":[4000,3000,6269,4735],"delegatorTokens":9999999991996}},{"ix":12,"action":{"kind":"Delegate","val":1,"amt":1456},"partialState":{"h":1,"t":6,"tokens":[5000,5456,7269,5735],"delegation":[4000,4456,6269,4735],"delegatorTokens":9999999990540}},{"ix":13,"action":{"kind":"Deliver","chain":"provider","numPackets":5},"partialState":{"h":1,"t":6,"tokens":[5000,5456,7269,5735],"delegation":[4000,4456,6269,4735],"delegatorTokens":9999999990540,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":14,"action":{"kind":"Undelegate","val":0,"amt":3768},"partialState":{"h":1,"t":6,"tokens":[1232,5456,7269,5735],"delegation":[232,4456,6269,4735],"delegatorTokens":9999999990540}},{"ix":15,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":16,"action":{"kind":"Delegate","val":2,"amt":3251},"partialState":{"h":1,"t":6,"tokens":[1232,5456,10520,5735],"delegation":[232,4456,9520,4735],"delegatorTokens":9999999987289}},{"ix":17,"action":{"kind":"Undelegate","val":1,"amt":2763},"partialState":{"h":1,"t":6,"tokens":[1232,2693,10520,5735],"delegation":[232,1693,9520,4735],"delegatorTokens":9999999987289}},{"ix":18,"action":{"kind":"ConsumerSlash","val":0,"infractionHeight":0,"isDowntime":false},"partialState":{"h":1,"t":6,"outstandingDowntime":[true,false,true,false]}},{"ix":19,"action":{"kind":"ConsumerSlash","val":2,"infractionHeight":0,"isDowntime":false},"partialState":{"h":1,"t":6,"outstandingDowntime":[true,false,true,false]}},{"ix":20,"action":{"kind":"Undelegate","val":2,"amt":4083},"partialState":{"h":1,"t":6,"tokens":[1232,2693,6437,5735],"delegation":[232,1693,5437,4735],"delegatorTokens":9999999987289}},{"ix":21,"action":{"kind":"Delegate","val":0,"amt":4512},"partialState":{"h":1,"t":6,"tokens":[5744,2693,6437,5735],"delegation":[4744,1693,5437,4735],"delegatorTokens":9999999982777}},{"ix":22,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":2,"t":12,"tokens":[5744,2693,6437,5735],"delegation":[4744,1693,5437,4735],"delegatorTokens":9999999982777,"jailed":[null,null,null,null],"status":["bonded","unbonding","bonded","unbonded"]}},{"ix":23,"action":{"kind":"Undelegate","val":0,"amt":3574},"partialState":{"h":2,"t":12,"tokens":[2170,2693,6437,5735],"delegation":[1170,1693,5437,4735],"delegatorTokens":9999999982777}},{"ix":24,"action":{"kind":"Undelegate","val":2,"amt":3398},"partialState":{"h":2,"t":12,"tokens":[2170,2693,3039,5735],"delegation":[1170,1693,2039,4735],"delegatorTokens":9999999982777}},{"ix":25,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":26,"action":{"kind":"ConsumerSlash","val":2,"infractionHeight":0,"isDowntime":false},"partialState":{"h":1,"t":6,"outstandingDowntime":[true,false,true,false]}},{"ix":27,"action":{"kind":"Delegate","val":3,"amt":2787},"partialState":{"h":2,"t":12,"tokens":[2170,2693,3039,8522],"delegation":[1170,1693,2039,7522],"delegatorTokens":9999999979990}},{"ix":28,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":29,"action":{"kind":"ConsumerSlash","val":2,"infractionHeight":0,"isDowntime":true},"partialState":{"h":1,"t":6,"outstandingDowntime":[true,false,true,false]}},{"ix":30,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":3,"t":18,"tokens":[2170,2693,3039,8522],"delegation":[1170,1693,2039,7522],"delegatorTokens":9999999979990,"jailed":[null,null,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":31,"action":{"kind":"Deliver","chain":"consumer","numPackets":3},"partialState":{"h":1,"t":6,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[true,false,true,false]}},{"ix":32,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":4,"t":24,"tokens":[2170,2693,3039,8522],"delegation":[1170,1693,2039,7522],"delegatorTokens":9999999979990,"jailed":[null,null,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":33,"action":{"kind":"Deliver","chain":"provider","numPackets":5},"partialState":{"h":4,"t":24,"tokens":[2170,2693,3039,8522],"delegation":[1170,1693,2039,7522],"delegatorTokens":9999999979990,"jailed":[null,null,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":34,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":2,"t":12,"consumerPower":[5744,null,6437,null],"outstandingDowntime":[true,false,true,false]}},{"ix":35,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":3,"t":18,"consumerPower":[5744,null,6437,null],"outstandingDowntime":[true,false,true,false]}},{"ix":36,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":37,"action":{"kind":"Undelegate","val":0,"amt":4395},"partialState":{"h":4,"t":24,"tokens":[2170,2693,3039,8522],"delegation":[1170,1693,2039,7522],"delegatorTokens":9999999979990}},{"ix":38,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":4,"t":24,"consumerPower":[5744,null,6437,null],"outstandingDowntime":[true,false,true,false]}},{"ix":39,"action":{"kind":"Undelegate","val":0,"amt":4557},"partialState":{"h":4,"t":24,"tokens":[2170,2693,3039,8522],"delegation":[1170,1693,2039,7522],"delegatorTokens":9999999979990}},{"ix":40,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":5,"t":30,"consumerPower":[5744,null,6437,null],"outstandingDowntime":[true,false,true,false]}},{"ix":41,"action":{"kind":"ConsumerSlash","val":2,"infractionHeight":2,"isDowntime":false},"partialState":{"h":5,"t":30,"outstandingDowntime":[true,false,true,false]}},{"ix":42,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":43,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":5,"t":30,"tokens":[2170,2693,3039,8522],"delegation":[1170,1693,2039,7522],"delegatorTokens":9999999979990,"jailed":[null,null,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":44,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":45,"action":{"kind":"ConsumerSlash","val":2,"infractionHeight":0,"isDowntime":true},"partialState":{"h":5,"t":30,"outstandingDowntime":[true,false,true,false]}},{"ix":46,"action":{"kind":"Deliver","chain":"provider","numPackets":2},"partialState":{"h":5,"t":30,"tokens":[2170,2693,3039,8522],"delegation":[1170,1693,2039,7522],"delegatorTokens":9999999979990,"jailed":[null,null,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":47,"action":{"kind":"ConsumerSlash","val":2,"infractionHeight":3,"isDowntime":false},"partialState":{"h":5,"t":30,"outstandingDowntime":[true,false,true,false]}},{"ix":48,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":49,"action":{"kind":"Deliver","chain":"provider","numPackets":4},"partialState":{"h":5,"t":30,"tokens":[2170,2693,3039,8522],"delegation":[1170,1693,2039,7522],"delegatorTokens":9999999979990,"jailed":[null,null,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":50,"action":{"kind":"Deliver","chain":"consumer","numPackets":6},"partialState":{"h":5,"t":30,"consumerPower":[5744,null,6437,null],"outstandingDowntime":[true,false,true,false]}},{"ix":51,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":52,"action":{"kind":"Deliver","chain":"consumer","numPackets":4},"partialState":{"h":5,"t":30,"consumerPower":[5744,null,6437,null],"outstandingDowntime":[true,false,true,false]}},{"ix":53,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":6,"t":36,"tokens":[2170,2693,3039,8522],"delegation":[1170,1693,2039,7522],"delegatorTokens":9999999979990,"jailed":[1000000000000029,null,1000000000000029,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":54,"action":{"kind":"ConsumerSlash","val":0,"infractionHeight":2,"isDowntime":true},"partialState":{"h":5,"t":30,"outstandingDowntime":[true,false,true,false]}},{"ix":55,"action":{"kind":"Deliver","chain":"provider","numPackets":5},"partialState":{"h":6,"t":36,"tokens":[2170,2693,3039,8522],"delegation":[1170,1693,2039,7522],"delegatorTokens":9999999979990,"jailed":[1000000000000029,null,1000000000000029,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":56,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":57,"action":{"kind":"ConsumerSlash","val":2,"infractionHeight":2,"isDowntime":true},"partialState":{"h":5,"t":30,"outstandingDowntime":[true,false,true,false]}},{"ix":58,"action":{"kind":"ConsumerSlash","val":0,"infractionHeight":0,"isDowntime":false},"partialState":{"h":5,"t":30,"outstandingDowntime":[true,false,true,false]}},{"ix":59,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":60,"action":{"kind":"Deliver","chain":"consumer","numPackets":2},"partialState":{"h":5,"t":30,"consumerPower":[5744,null,6437,null],"outstandingDowntime":[true,false,true,false]}},{"ix":61,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":62,"action":{"kind":"Delegate","val":3,"amt":4652},"partialState":{"h":6,"t":36,"tokens":[2170,2693,3039,13174],"delegation":[1170,1693,2039,12174],"delegatorTokens":9999999975338}},{"ix":63,"action":{"kind":"Undelegate","val":2,"amt":1111},"partialState":{"h":6,"t":36,"tokens":[2170,2693,1928,13174],"delegation":[1170,1693,928,12174],"delegatorTokens":9999999975338}},{"ix":64,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":7,"t":42,"tokens":[2170,2693,1928,13174],"delegation":[1170,1693,928,12174],"delegatorTokens":9999999975338,"jailed":[1000000000000029,null,1000000000000029,null],"status":["unbonding","bonded","unbonding","bonded"]}},{"ix":65,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":66,"action":{"kind":"Deliver","chain":"consumer","numPackets":4},"partialState":{"h":5,"t":30,"consumerPower":[5744,null,6437,null],"outstandingDowntime":[true,false,true,false]}},{"ix":67,"action":{"kind":"Deliver","chain":"provider","numPackets":1},"partialState":{"h":7,"t":42,"tokens":[2170,2693,1928,13174],"delegation":[1170,1693,928,12174],"delegatorTokens":9999999975338,"jailed":[1000000000000029,null,1000000000000029,null],"status":["unbonding","bonded","unbonding","bonded"]}},{"ix":68,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":8,"t":48,"tokens":[2170,2693,1928,13174],"delegation":[1170,1693,928,12174],"delegatorTokens":9999999975338,"jailed":[1000000000000029,null,1000000000000029,null],"status":["unbonding","bonded","unbonding","bonded"]}},{"ix":69,"action":{"kind":"Deliver","chain":"consumer","numPackets":4},"partialState":{"h":5,"t":30,"consumerPower":[5744,null,6437,null],"outstandingDowntime":[false,false,false,false]}},{"ix":70,"action":{"kind":"Deliver","chain":"consumer","numPackets":3},"partialState":{"h":5,"t":30,"consumerPower":[5744,null,6437,null],"outstandingDowntime":[false,false,false,false]}},{"ix":71,"action":{"kind":"ConsumerSlash","val":1,"infractionHeight":3,"isDowntime":true},"partialState":{"h":5,"t":30,"outstandingDowntime":[false,true,false,false]}},{"ix":72,"action":{"kind":"Delegate","val":1,"amt":1331},"partialState":{"h":8,"t":48,"tokens":[2170,4024,1928,13174],"delegation":[1170,3024,928,12174],"delegatorTokens":9999999974007}},{"ix":73,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":9,"t":54,"tokens":[2170,4024,1928,13174],"delegation":[1170,3024,928,12174],"delegatorTokens":9999999974007,"jailed":[1000000000000029,null,1000000000000029,null],"status":["unbonding","bonded","unbonding","bonded"]}},{"ix":74,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":75,"action":{"kind":"Undelegate","val":1,"amt":1635},"partialState":{"h":9,"t":54,"tokens":[2170,2389,1928,13174],"delegation":[1170,1389,928,12174],"delegatorTokens":9999999974007}},{"ix":76,"action":{"kind":"Deliver","chain":"consumer","numPackets":1},"partialState":{"h":5,"t":30,"consumerPower":[5744,null,6437,null],"outstandingDowntime":[false,true,false,false]}},{"ix":77,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":10,"t":60,"tokens":[2170,2389,1928,13174],"delegation":[1170,1389,928,12174],"delegatorTokens":9999999974007,"jailed":[1000000000000029,null,1000000000000029,null],"status":["unbonding","bonded","unbonding","bonded"]}},{"ix":78,"action":{"kind":"Deliver","chain":"provider","numPackets":2},"partialState":{"h":10,"t":60,"tokens":[2170,2389,1928,13174],"delegation":[1170,1389,928,12174],"delegatorTokens":9999999974007,"jailed":[1000000000000029,null,1000000000000029,null],"status":["unbonding","bonded","unbonding","bonded"]}},{"ix":79,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":80,"action":{"kind":"Undelegate","val":2,"amt":2694},"partialState":{"h":10,"t":60,"tokens":[2170,2389,1928,13174],"delegation":[1170,1389,928,12174],"delegatorTokens":9999999974007}},{"ix":81,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":11,"t":66,"tokens":[2170,2389,1928,13174],"delegation":[1170,1389,928,12174],"delegatorTokens":9999999974007,"jailed":[1000000000000029,null,1000000000000029,null],"status":["unbonding","bonded","unbonding","bonded"]}},{"ix":82,"action":{"kind":"Undelegate","val":0,"amt":1189},"partialState":{"h":11,"t":66,"tokens":[2170,2389,1928,13174],"delegation":[1170,1389,928,12174],"delegatorTokens":9999999974007}},{"ix":83,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":84,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":85,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":12,"t":72,"tokens":[2170,2389,1928,13174],"delegation":[1170,1389,928,12174],"delegatorTokens":9999999974007,"jailed":[1000000000000029,null,1000000000000029,null],"status":["unbonding","bonded","unbonding","bonded"]}},{"ix":86,"action":{"kind":"Undelegate","val":0,"amt":3360},"partialState":{"h":12,"t":72,"tokens":[2170,2389,1928,13174],"delegation":[1170,1389,928,12174],"delegatorTokens":9999999974007}},{"ix":87,"action":{"kind":"Delegate","val":1,"amt":3406},"partialState":{"h":12,"t":72,"tokens":[2170,5795,1928,13174],"delegation":[1170,4795,928,12174],"delegatorTokens":9999999970601}},{"ix":88,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":89,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":90,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":6,"t":36,"consumerPower":[null,2693,null,13174],"outstandingDowntime":[false,true,false,false]}},{"ix":91,"action":{"kind":"Deliver","chain":"consumer","numPackets":5},"partialState":{"h":6,"t":36,"consumerPower":[null,2693,null,13174],"outstandingDowntime":[false,true,false,false]}},{"ix":92,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":93,"action":{"kind":"Deliver","chain":"provider","numPackets":6},"partialState":{"h":12,"t":72,"tokens":[2170,5795,1928,13174],"delegation":[1170,4795,928,12174],"delegatorTokens":9999999970601,"jailed":[1000000000000029,null,1000000000000029,null],"status":["unbonding","bonded","unbonding","bonded"]}},{"ix":94,"action":{"kind":"Delegate","val":0,"amt":1600},"partialState":{"h":12,"t":72,"tokens":[3770,5795,1928,13174],"delegation":[2770,4795,928,12174],"delegatorTokens":9999999969001}},{"ix":95,"action":{"kind":"Delegate","val":1,"amt":3617},"partialState":{"h":12,"t":72,"tokens":[3770,9412,1928,13174],"delegation":[2770,8412,928,12174],"delegatorTokens":9999999965384}},{"ix":96,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":97,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":98,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":99,"action":{"kind":"Delegate","val":0,"amt":4661},"partialState":{"h":12,"t":72,"tokens":[8431,9412,1928,13174],"delegation":[7431,8412,928,12174],"delegatorTokens":9999999960723}},{"ix":100,"action":{"kind":"Undelegate","val":2,"amt":2017},"partialState":{"h":12,"t":72,"tokens":[8431,9412,1928,13174],"delegation":[7431,8412,928,12174],"delegatorTokens":9999999960723}},{"ix":101,"action":{"kind":"Delegate","val":3,"amt":2882},"partialState":{"h":12,"t":72,"tokens":[8431,9412,1928,16056],"delegation":[7431,8412,928,15056],"delegatorTokens":9999999957841}},{"ix":102,"action":{"kind":"Undelegate","val":0,"amt":3263},"partialState":{"h":12,"t":72,"tokens":[5168,9412,1928,16056],"delegation":[4168,8412,928,15056],"delegatorTokens":9999999957841}},{"ix":103,"action":{"kind":"Undelegate","val":3,"amt":3372},"partialState":{"h":12,"t":72,"tokens":[5168,9412,1928,12684],"delegation":[4168,8412,928,11684],"delegatorTokens":9999999957841}},{"ix":104,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":13,"t":78,"tokens":[5168,9412,1928,12684],"delegation":[4168,8412,928,11684],"delegatorTokens":9999999957841,"jailed":[1000000000000029,null,1000000000000029,null],"status":["unbonding","bonded","unbonding","bonded"]}},{"ix":105,"action":{"kind":"Undelegate","val":3,"amt":4662},"partialState":{"h":13,"t":78,"tokens":[5168,9412,1928,8022],"delegation":[4168,8412,928,7022],"delegatorTokens":9999999957841}},{"ix":106,"action":{"kind":"Deliver","chain":"provider","numPackets":2},"partialState":{"h":13,"t":78,"tokens":[5168,9412,1928,8022],"delegation":[4168,8412,928,7022],"delegatorTokens":9999999957841,"jailed":[1000000000000029,null,1000000000000029,null],"status":["unbonding","bonded","unbonding","bonded"]}},{"ix":107,"action":{"kind":"Delegate","val":1,"amt":2602},"partialState":{"h":13,"t":78,"tokens":[5168,12014,1928,8022],"delegation":[4168,11014,928,7022],"delegatorTokens":9999999955239}},{"ix":108,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":7,"t":42,"consumerPower":[null,2389,null,13174],"outstandingDowntime":[false,true,false,false]}},{"ix":109,"action":{"kind":"Undelegate","val":3,"amt":2744},"partialState":{"h":13,"t":78,"tokens":[5168,12014,1928,5278],"delegation":[4168,11014,928,4278],"delegatorTokens":9999999955239}},{"ix":110,"action":{"kind":"Delegate","val":0,"amt":4103},"partialState":{"h":13,"t":78,"tokens":[9271,12014,1928,5278],"delegation":[8271,11014,928,4278],"delegatorTokens":9999999951136}},{"ix":111,"action":{"kind":"Delegate","val":3,"amt":3950},"partialState":{"h":13,"t":78,"tokens":[9271,12014,1928,9228],"delegation":[8271,11014,928,8228],"delegatorTokens":9999999947186}},{"ix":112,"action":{"kind":"Delegate","val":3,"amt":2163},"partialState":{"h":13,"t":78,"tokens":[9271,12014,1928,11391],"delegation":[8271,11014,928,10391],"delegatorTokens":9999999945023}},{"ix":113,"action":{"kind":"Undelegate","val":2,"amt":4942},"partialState":{"h":13,"t":78,"tokens":[9271,12014,1928,11391],"delegation":[8271,11014,928,10391],"delegatorTokens":9999999945023}},{"ix":114,"action":{"kind":"Delegate","val":0,"amt":2834},"partialState":{"h":13,"t":78,"tokens":[12105,12014,1928,11391],"delegation":[11105,11014,928,10391],"delegatorTokens":9999999942189}},{"ix":115,"action":{"kind":"Deliver","chain":"consumer","numPackets":3},"partialState":{"h":7,"t":42,"consumerPower":[null,2389,null,13174],"outstandingDowntime":[false,true,false,false]}},{"ix":116,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":117,"action":{"kind":"Undelegate","val":2,"amt":4462},"partialState":{"h":13,"t":78,"tokens":[12105,12014,1928,11391],"delegation":[11105,11014,928,10391],"delegatorTokens":9999999942189}},{"ix":118,"action":{"kind":"Undelegate","val":1,"amt":2176},"partialState":{"h":13,"t":78,"tokens":[12105,9838,1928,11391],"delegation":[11105,8838,928,10391],"delegatorTokens":9999999942189}},{"ix":119,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":120,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":121,"action":{"kind":"Undelegate","val":2,"amt":3498},"partialState":{"h":13,"t":78,"tokens":[12105,9838,1928,11391],"delegation":[11105,8838,928,10391],"delegatorTokens":9999999942189}},{"ix":122,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":123,"action":{"kind":"Undelegate","val":0,"amt":2187},"partialState":{"h":13,"t":78,"tokens":[9918,9838,1928,11391],"delegation":[8918,8838,928,10391],"delegatorTokens":9999999942189}},{"ix":124,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":125,"action":{"kind":"Deliver","chain":"consumer","numPackets":3},"partialState":{"h":7,"t":42,"consumerPower":[null,2389,null,13174],"outstandingDowntime":[false,true,false,false]}},{"ix":126,"action":{"kind":"Undelegate","val":2,"amt":2890},"partialState":{"h":13,"t":78,"tokens":[9918,9838,1928,11391],"delegation":[8918,8838,928,10391],"delegatorTokens":9999999942189}},{"ix":127,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":128,"action":{"kind":"Delegate","val":0,"amt":4676},"partialState":{"h":13,"t":78,"tokens":[14594,9838,1928,11391],"delegation":[13594,8838,928,10391],"delegatorTokens":9999999937513}},{"ix":129,"action":{"kind":"Delegate","val":3,"amt":1473},"partialState":{"h":13,"t":78,"tokens":[14594,9838,1928,12864],"delegation":[13594,8838,928,11864],"delegatorTokens":9999999936040}},{"ix":130,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":131,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":132,"action":{"kind":"Undelegate","val":0,"amt":4686},"partialState":{"h":13,"t":78,"tokens":[9908,9838,1928,12864],"delegation":[8908,8838,928,11864],"delegatorTokens":9999999936040}},{"ix":133,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":14,"t":84,"tokens":[9908,9838,1928,12864],"delegation":[8908,8838,928,11864],"delegatorTokens":9999999936040,"jailed":[1000000000000029,null,1000000000000029,null],"status":["unbonding","bonded","unbonding","bonded"]}},{"ix":134,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":135,"action":{"kind":"Undelegate","val":0,"amt":3298},"partialState":{"h":14,"t":84,"tokens":[6610,9838,1928,12864],"delegation":[5610,8838,928,11864],"delegatorTokens":9999999936040}},{"ix":136,"action":{"kind":"Delegate","val":2,"amt":3119},"partialState":{"h":14,"t":84,"tokens":[6610,9838,5047,12864],"delegation":[5610,8838,4047,11864],"delegatorTokens":9999999932921}},{"ix":137,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":138,"action":{"kind":"Undelegate","val":3,"amt":3195},"partialState":{"h":14,"t":84,"tokens":[6610,9838,5047,9669],"delegation":[5610,8838,4047,8669],"delegatorTokens":9999999932921}},{"ix":139,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":8,"t":48,"consumerPower":[null,2389,null,13174],"outstandingDowntime":[false,true,false,false]}},{"ix":140,"action":{"kind":"Delegate","val":1,"amt":2662},"partialState":{"h":14,"t":84,"tokens":[6610,12500,5047,9669],"delegation":[5610,11500,4047,8669],"delegatorTokens":9999999930259}},{"ix":141,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":9,"t":54,"consumerPower":[null,2389,null,13174],"outstandingDowntime":[false,true,false,false]}},{"ix":142,"action":{"kind":"Undelegate","val":2,"amt":2949},"partialState":{"h":14,"t":84,"tokens":[6610,12500,2098,9669],"delegation":[5610,11500,1098,8669],"delegatorTokens":9999999930259}},{"ix":143,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":144,"action":{"kind":"Delegate","val":2,"amt":3820},"partialState":{"h":14,"t":84,"tokens":[6610,12500,5918,9669],"delegation":[5610,11500,4918,8669],"delegatorTokens":9999999926439}},{"ix":145,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":146,"action":{"kind":"Delegate","val":0,"amt":4807},"partialState":{"h":14,"t":84,"tokens":[11417,12500,5918,9669],"delegation":[10417,11500,4918,8669],"delegatorTokens":9999999921632}},{"ix":147,"action":{"kind":"Deliver","chain":"provider","numPackets":1},"partialState":{"h":14,"t":84,"tokens":[11417,12500,5918,9669],"delegation":[10417,11500,4918,8669],"delegatorTokens":9999999921632,"jailed":[1000000000000029,null,1000000000000029,null],"status":["unbonding","bonded","unbonding","bonded"]}},{"ix":148,"action":{"kind":"Undelegate","val":3,"amt":2924},"partialState":{"h":14,"t":84,"tokens":[11417,12500,5918,6745],"delegation":[10417,11500,4918,5745],"delegatorTokens":9999999921632}},{"ix":149,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":15,"t":90,"tokens":[11417,12500,5918,6745],"delegation":[10417,11500,4918,5745],"delegatorTokens":9999999921632,"jailed":[1000000000000029,null,1000000000000029,null],"status":["unbonding","bonded","unbonding","bonded"]}},{"ix":150,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":151,"action":{"kind":"Deliver","chain":"consumer","numPackets":6},"partialState":{"h":9,"t":54,"consumerPower":[null,2389,null,13174],"outstandingDowntime":[false,true,false,false]}},{"ix":152,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":153,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":154,"action":{"kind":"Delegate","val":1,"amt":1995},"partialState":{"h":15,"t":90,"tokens":[11417,14495,5918,6745],"delegation":[10417,13495,4918,5745],"delegatorTokens":9999999919637}},{"ix":155,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":10,"t":60,"consumerPower":[null,9838,null,12864],"outstandingDowntime":[false,true,false,false]}},{"ix":156,"action":{"kind":"Deliver","chain":"consumer","numPackets":2},"partialState":{"h":10,"t":60,"consumerPower":[null,9838,null,12864],"outstandingDowntime":[false,true,false,false]}},{"ix":157,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":11,"t":66,"consumerPower":[null,9838,null,12864],"outstandingDowntime":[false,true,false,false]}},{"ix":158,"action":{"kind":"Deliver","chain":"consumer","numPackets":2},"partialState":{"h":11,"t":66,"consumerPower":[null,9838,null,12864],"outstandingDowntime":[false,true,false,false]}},{"ix":159,"action":{"kind":"Undelegate","val":1,"amt":3679},"partialState":{"h":15,"t":90,"tokens":[11417,10816,5918,6745],"delegation":[10417,9816,4918,5745],"delegatorTokens":9999999919637}},{"ix":160,"action":{"kind":"Delegate","val":1,"amt":1101},"partialState":{"h":15,"t":90,"tokens":[11417,11917,5918,6745],"delegation":[10417,10917,4918,5745],"delegatorTokens":9999999918536}},{"ix":161,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":16,"t":96,"tokens":[11417,11917,5918,6745],"delegation":[10417,10917,4918,5745],"delegatorTokens":9999999918536,"jailed":[1000000000000029,null,1000000000000029,null],"status":["unbonding","bonded","unbonding","bonded"]}},{"ix":162,"action":{"kind":"Undelegate","val":0,"amt":3183},"partialState":{"h":16,"t":96,"tokens":[8234,11917,5918,6745],"delegation":[7234,10917,4918,5745],"delegatorTokens":9999999918536}},{"ix":163,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":12,"t":72,"consumerPower":[null,9838,null,12864],"outstandingDowntime":[false,true,false,false]}},{"ix":164,"action":{"kind":"Delegate","val":1,"amt":1530},"partialState":{"h":16,"t":96,"tokens":[8234,13447,5918,6745],"delegation":[7234,12447,4918,5745],"delegatorTokens":9999999917006}},{"ix":165,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":166,"action":{"kind":"Delegate","val":3,"amt":2375},"partialState":{"h":16,"t":96,"tokens":[8234,13447,5918,9120],"delegation":[7234,12447,4918,8120],"delegatorTokens":9999999914631}},{"ix":167,"action":{"kind":"Deliver","chain":"provider","numPackets":1},"partialState":{"h":16,"t":96,"tokens":[8234,13447,5918,9120],"delegation":[7234,12447,4918,8120],"delegatorTokens":9999999914631,"jailed":[1000000000000029,null,1000000000000029,null],"status":["unbonding","bonded","unbonding","bonded"]}},{"ix":168,"action":{"kind":"Deliver","chain":"provider","numPackets":5},"partialState":{"h":16,"t":96,"tokens":[8234,13447,5918,9120],"delegation":[7234,12447,4918,8120],"delegatorTokens":9999999914631,"jailed":[1000000000000029,null,1000000000000029,null],"status":["unbonding","bonded","unbonding","bonded"]}},{"ix":169,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":170,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":171,"action":{"kind":"Deliver","chain":"provider","numPackets":2},"partialState":{"h":16,"t":96,"tokens":[8234,13447,5918,9120],"delegation":[7234,12447,4918,8120],"delegatorTokens":9999999914631,"jailed":[1000000000000029,null,1000000000000029,null],"status":["unbonding","bonded","unbonding","bonded"]}},{"ix":172,"action":{"kind":"Undelegate","val":3,"amt":4401},"partialState":{"h":16,"t":96,"tokens":[8234,13447,5918,4719],"delegation":[7234,12447,4918,3719],"delegatorTokens":9999999914631}},{"ix":173,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":174,"action":{"kind":"Deliver","chain":"provider","numPackets":3},"partialState":{"h":16,"t":96,"tokens":[8234,13447,5918,4719],"delegation":[7234,12447,4918,3719],"delegatorTokens":9999999914631,"jailed":[1000000000000029,null,1000000000000029,null],"status":["unbonding","bonded","unbonding","bonded"]}},{"ix":175,"action":{"kind":"Undelegate","val":3,"amt":4611},"partialState":{"h":16,"t":96,"tokens":[8234,13447,5918,4719],"delegation":[7234,12447,4918,3719],"delegatorTokens":9999999914631}},{"ix":176,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":177,"action":{"kind":"Deliver","chain":"consumer","numPackets":5},"partialState":{"h":12,"t":72,"consumerPower":[null,9838,null,12864],"outstandingDowntime":[false,true,false,false]}},{"ix":178,"action":{"kind":"Delegate","val":3,"amt":2521},"partialState":{"h":16,"t":96,"tokens":[8234,13447,5918,7240],"delegation":[7234,12447,4918,6240],"delegatorTokens":9999999912110}},{"ix":179,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":13,"t":78,"consumerPower":[null,12500,null,6745],"outstandingDowntime":[false,true,false,false]}},{"ix":180,"action":{"kind":"Delegate","val":2,"amt":2417},"partialState":{"h":16,"t":96,"tokens":[8234,13447,8335,7240],"delegation":[7234,12447,7335,6240],"delegatorTokens":9999999909693}},{"ix":181,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":14,"t":84,"consumerPower":[null,12500,null,6745],"outstandingDowntime":[false,true,false,false]}},{"ix":182,"action":{"kind":"Delegate","val":1,"amt":4830},"partialState":{"h":16,"t":96,"tokens":[8234,18277,8335,7240],"delegation":[7234,17277,7335,6240],"delegatorTokens":9999999904863}},{"ix":183,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":184,"action":{"kind":"Undelegate","val":3,"amt":1457},"partialState":{"h":16,"t":96,"tokens":[8234,18277,8335,5783],"delegation":[7234,17277,7335,4783],"delegatorTokens":9999999904863}},{"ix":185,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":17,"t":102,"tokens":[8234,18277,8335,5783],"delegation":[7234,17277,7335,4783],"delegatorTokens":9999999915477,"jailed":[1000000000000029,1000000000000095,1000000000000029,null],"status":["unbonding","bonded","unbonding","bonded"]}},{"ix":186,"action":{"kind":"Delegate","val":3,"amt":1341},"partialState":{"h":17,"t":102,"tokens":[8234,18277,8335,7124],"delegation":[7234,17277,7335,6124],"delegatorTokens":9999999914136}},{"ix":187,"action":{"kind":"Undelegate","val":2,"amt":2830},"partialState":{"h":17,"t":102,"tokens":[8234,18277,5505,7124],"delegation":[7234,17277,4505,6124],"delegatorTokens":9999999914136}},{"ix":188,"action":{"kind":"Delegate","val":0,"amt":3228},"partialState":{"h":17,"t":102,"tokens":[11462,18277,5505,7124],"delegation":[10462,17277,4505,6124],"delegatorTokens":9999999910908}},{"ix":189,"action":{"kind":"Deliver","chain":"provider","numPackets":4},"partialState":{"h":17,"t":102,"tokens":[11462,18277,5505,7124],"delegation":[10462,17277,4505,6124],"delegatorTokens":9999999910908,"jailed":[1000000000000029,1000000000000095,1000000000000029,null],"status":["unbonding","bonded","unbonding","bonded"]}},{"ix":190,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":191,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":192,"action":{"kind":"Delegate","val":3,"amt":3418},"partialState":{"h":17,"t":102,"tokens":[11462,18277,5505,10542],"delegation":[10462,17277,4505,9542],"delegatorTokens":9999999907490}},{"ix":193,"action":{"kind":"Delegate","val":2,"amt":1230},"partialState":{"h":17,"t":102,"tokens":[11462,18277,6735,10542],"delegation":[10462,17277,5735,9542],"delegatorTokens":9999999906260}},{"ix":194,"action":{"kind":"Delegate","val":1,"amt":2915},"partialState":{"h":17,"t":102,"tokens":[11462,21192,6735,10542],"delegation":[10462,20192,5735,9542],"delegatorTokens":9999999903345}},{"ix":195,"action":{"kind":"Deliver","chain":"provider","numPackets":2},"partialState":{"h":17,"t":102,"tokens":[11462,21192,6735,10542],"delegation":[10462,20192,5735,9542],"delegatorTokens":9999999903345,"jailed":[1000000000000029,1000000000000095,1000000000000029,null],"status":["unbonding","bonded","unbonding","bonded"]}},{"ix":196,"action":{"kind":"Undelegate","val":2,"amt":1239},"partialState":{"h":17,"t":102,"tokens":[11462,21192,5496,10542],"delegation":[10462,20192,4496,9542],"delegatorTokens":9999999903345}},{"ix":197,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":15,"t":90,"consumerPower":[null,12500,null,6745],"outstandingDowntime":[false,true,false,false]}},{"ix":198,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":16,"t":96,"consumerPower":[null,12500,null,6745],"outstandingDowntime":[false,true,false,false]}},{"ix":199,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":17,"t":102,"consumerPower":[null,12500,null,6745],"outstandingDowntime":[false,true,false,false]}}],"events":["send_double_sign_slash_request","send_double_sign_slash_request","send_double_sign_slash_request","send_double_sign_slash_request","insufficient_shares","send_downtime_slash_request","send_downtime_slash_request","send_double_sign_slash_request","send_double_sign_slash_request","more_than_one_third_val_power_change","send_vsc_without_downtime_ack","send_double_sign_slash_request","downtime_slash_request_outstanding","more_than_one_third_val_power_change","send_vsc_without_downtime_ack","consumer_update_val","consumer_del_val","consumer_add_val","insufficient_shares","insufficient_shares","send_double_sign_slash_request","downtime_slash_request_outstanding","receive_double_sign_slash_request","receive_double_sign_slash_request","send_double_sign_slash_request","receive_double_sign_slash_request","receive_double_sign_slash_request","receive_downtime_slash_request","jail","receive_downtime_slash_request","jail","downtime_slash_request_outstanding","receive_double_sign_slash_request","receive_double_sign_slash_request","receive_double_sign_slash_request","downtime_slash_request_outstanding","send_double_sign_slash_request","rebond_unval","send_vsc_with_downtime_ack","receive_downtime_slash_ack","receive_downtime_slash_ack","send_downtime_slash_request","send_vsc_without_downtime_ack","send_vsc_without_downtime_ack","insufficient_shares","insufficient_shares","insufficient_shares","consumer_del_val","consumer_del_val","consumer_add_val","consumer_add_val","insufficient_shares","send_vsc_without_downtime_ack","consumer_update_val","insufficient_shares","insufficient_shares","insufficient_shares","insufficient_shares","some_undels_expired_but_not_completed","send_vsc_without_downtime_ack","receive_double_sign_slash_request","some_undels_expired_but_not_completed","send_vsc_without_downtime_ack","consumer_update_val","consumer_update_val","consumer_send_maturation","send_vsc_without_downtime_ack","receive_double_sign_slash_request","receive_double_sign_slash_request","insufficient_shares","consumer_update_val","consumer_update_val","receive_downtime_slash_request","jail","complete_undel_immediate","complete_undel_immediate","complete_undel_immediate","send_vsc_with_downtime_ack","consumer_send_maturation","consumer_send_maturation","consumer_send_maturation","consumer_send_maturation"]},{"meta":{"commit":"7ffd0c04e4205cbc9caf212abfe6c59ee43153bf"},"constants":{"P":"provider","C":"consumer","UNBONDING_SECONDS_P":70,"UNBONDING_SECONDS_C":50,"TRUSTING_SECONDS":49,"NUM_VALIDATORS":4,"MAX_VALIDATORS":2,"SLASH_DOUBLESIGN":0,"SLASH_DOWNTIME":0,"JAIL_SECONDS":999999999999999,"BLOCK_SECONDS":6,"INITIAL_DELEGATOR_TOKENS":10000000000000,"DELEGATE_AMT_MIN":1000,"DELEGATE_AMT_MAX":5000,"UNDELEGATE_AMT_MIN":1000,"UNDELEGATE_AMT_MAX":5000,"ISDOWNTIME_PROBABILITY":0.5,"MAX_NUM_PACKETS_FOR_DELIVER":6},"actions":[{"ix":0,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":2,"t":12,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":1,"action":{"kind":"Delegate","val":1,"amt":1019},"partialState":{"h":1,"t":6,"tokens":[5000,5019,3000,2000],"delegation":[4000,4019,2000,1000],"delegatorTokens":9999999998981}},{"ix":2,"action":{"kind":"Deliver","chain":"provider","numPackets":1},"partialState":{"h":1,"t":6,"tokens":[5000,5019,3000,2000],"delegation":[4000,4019,2000,1000],"delegatorTokens":9999999998981,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":3,"action":{"kind":"Deliver","chain":"provider","numPackets":2},"partialState":{"h":1,"t":6,"tokens":[5000,5019,3000,2000],"delegation":[4000,4019,2000,1000],"delegatorTokens":9999999998981,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":4,"action":{"kind":"ConsumerSlash","val":1,"infractionHeight":1,"isDowntime":true},"partialState":{"h":2,"t":12,"outstandingDowntime":[false,true,false,false]}},{"ix":5,"action":{"kind":"ConsumerSlash","val":3,"infractionHeight":0,"isDowntime":true},"partialState":{"h":2,"t":12,"outstandingDowntime":[false,true,false,true]}},{"ix":6,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":7,"action":{"kind":"Delegate","val":0,"amt":2562},"partialState":{"h":1,"t":6,"tokens":[7562,5019,3000,2000],"delegation":[6562,4019,2000,1000],"delegatorTokens":9999999996419}},{"ix":8,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":3,"t":18,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,true,false,true]}},{"ix":9,"action":{"kind":"ConsumerSlash","val":1,"infractionHeight":0,"isDowntime":false},"partialState":{"h":3,"t":18,"outstandingDowntime":[false,true,false,true]}},{"ix":10,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":4,"t":24,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,true,false,true]}},{"ix":11,"action":{"kind":"ConsumerSlash","val":3,"infractionHeight":3,"isDowntime":false},"partialState":{"h":4,"t":24,"outstandingDowntime":[false,true,false,true]}},{"ix":12,"action":{"kind":"Undelegate","val":3,"amt":3140},"partialState":{"h":1,"t":6,"tokens":[7562,5019,3000,2000],"delegation":[6562,4019,2000,1000],"delegatorTokens":9999999996419}},{"ix":13,"action":{"kind":"Deliver","chain":"consumer","numPackets":4},"partialState":{"h":4,"t":24,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,true,false,true]}},{"ix":14,"action":{"kind":"Delegate","val":3,"amt":4865},"partialState":{"h":1,"t":6,"tokens":[7562,5019,3000,6865],"delegation":[6562,4019,2000,5865],"delegatorTokens":9999999991554}},{"ix":15,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":2,"t":12,"tokens":[7562,5019,3000,6865],"delegation":[6562,4019,2000,5865],"delegatorTokens":9999999991554,"jailed":[null,null,null,null],"status":["bonded","unbonding","unbonded","bonded"]}},{"ix":16,"action":{"kind":"Delegate","val":1,"amt":1173},"partialState":{"h":2,"t":12,"tokens":[7562,6192,3000,6865],"delegation":[6562,5192,2000,5865],"delegatorTokens":9999999990381}},{"ix":17,"action":{"kind":"Deliver","chain":"consumer","numPackets":5},"partialState":{"h":4,"t":24,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,true,false,true]}},{"ix":18,"action":{"kind":"Undelegate","val":2,"amt":2973},"partialState":{"h":2,"t":12,"tokens":[7562,6192,3000,6865],"delegation":[6562,5192,2000,5865],"delegatorTokens":9999999990381}},{"ix":19,"action":{"kind":"Delegate","val":2,"amt":1082},"partialState":{"h":2,"t":12,"tokens":[7562,6192,4082,6865],"delegation":[6562,5192,3082,5865],"delegatorTokens":9999999989299}},{"ix":20,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":3,"t":18,"tokens":[7562,6192,4082,6865],"delegation":[6562,5192,3082,5865],"delegatorTokens":9999999989299,"jailed":[null,null,null,null],"status":["bonded","unbonding","unbonded","bonded"]}},{"ix":21,"action":{"kind":"Undelegate","val":3,"amt":2994},"partialState":{"h":3,"t":18,"tokens":[7562,6192,4082,3871],"delegation":[6562,5192,3082,2871],"delegatorTokens":9999999989299}},{"ix":22,"action":{"kind":"Undelegate","val":3,"amt":2586},"partialState":{"h":3,"t":18,"tokens":[7562,6192,4082,1285],"delegation":[6562,5192,3082,285],"delegatorTokens":9999999989299}},{"ix":23,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":4,"t":24,"tokens":[7562,6192,4082,1285],"delegation":[6562,5192,3082,285],"delegatorTokens":9999999989299,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonding"]}},{"ix":24,"action":{"kind":"Deliver","chain":"provider","numPackets":4},"partialState":{"h":4,"t":24,"tokens":[7562,6192,4082,1285],"delegation":[6562,5192,3082,285],"delegatorTokens":9999999989299,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonding"]}},{"ix":25,"action":{"kind":"Deliver","chain":"consumer","numPackets":1},"partialState":{"h":4,"t":24,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,true,false,true]}},{"ix":26,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":5,"t":30,"tokens":[7562,6192,4082,1285],"delegation":[6562,5192,3082,285],"delegatorTokens":9999999989299,"jailed":[null,1000000000000023,null,1000000000000023],"status":["bonded","bonded","unbonded","unbonding"]}},{"ix":27,"action":{"kind":"Delegate","val":1,"amt":4262},"partialState":{"h":5,"t":30,"tokens":[7562,10454,4082,1285],"delegation":[6562,9454,3082,285],"delegatorTokens":9999999985037}},{"ix":28,"action":{"kind":"Delegate","val":3,"amt":2086},"partialState":{"h":5,"t":30,"tokens":[7562,10454,4082,3371],"delegation":[6562,9454,3082,2371],"delegatorTokens":9999999982951}},{"ix":29,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":5,"t":30,"consumerPower":[7562,null,null,6865],"outstandingDowntime":[false,true,false,true]}},{"ix":30,"action":{"kind":"Undelegate","val":2,"amt":3126},"partialState":{"h":5,"t":30,"tokens":[7562,10454,4082,3371],"delegation":[6562,9454,3082,2371],"delegatorTokens":9999999982951}},{"ix":31,"action":{"kind":"Delegate","val":2,"amt":2333},"partialState":{"h":5,"t":30,"tokens":[7562,10454,6415,3371],"delegation":[6562,9454,5415,2371],"delegatorTokens":9999999980618}},{"ix":32,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":6,"t":36,"tokens":[7562,10454,6415,3371],"delegation":[6562,9454,5415,2371],"delegatorTokens":9999999980618,"jailed":[null,1000000000000023,null,1000000000000023],"status":["bonded","unbonding","bonded","unbonding"]}},{"ix":33,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":34,"action":{"kind":"ConsumerSlash","val":3,"infractionHeight":1,"isDowntime":false},"partialState":{"h":5,"t":30,"outstandingDowntime":[false,true,false,true]}},{"ix":35,"action":{"kind":"Deliver","chain":"provider","numPackets":1},"partialState":{"h":6,"t":36,"tokens":[7562,10454,6415,3371],"delegation":[6562,9454,5415,2371],"delegatorTokens":9999999980618,"jailed":[null,1000000000000023,null,1000000000000023],"status":["bonded","unbonding","bonded","unbonding"]}},{"ix":36,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":37,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":6,"t":36,"consumerPower":[7562,null,null,6865],"outstandingDowntime":[false,true,false,true]}},{"ix":38,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":7,"t":42,"tokens":[7562,10454,6415,3371],"delegation":[6562,9454,5415,2371],"delegatorTokens":9999999980618,"jailed":[null,1000000000000023,null,1000000000000023],"status":["bonded","unbonding","bonded","unbonding"]}},{"ix":39,"action":{"kind":"Deliver","chain":"consumer","numPackets":4},"partialState":{"h":6,"t":36,"consumerPower":[7562,null,null,6865],"outstandingDowntime":[false,false,false,false]}},{"ix":40,"action":{"kind":"Delegate","val":2,"amt":1031},"partialState":{"h":7,"t":42,"tokens":[7562,10454,7446,3371],"delegation":[6562,9454,6446,2371],"delegatorTokens":9999999979587}},{"ix":41,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":42,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":43,"action":{"kind":"Delegate","val":3,"amt":4987},"partialState":{"h":7,"t":42,"tokens":[7562,10454,7446,8358],"delegation":[6562,9454,6446,7358],"delegatorTokens":9999999974600}},{"ix":44,"action":{"kind":"Deliver","chain":"consumer","numPackets":4},"partialState":{"h":6,"t":36,"consumerPower":[7562,null,null,6865],"outstandingDowntime":[false,false,false,false]}},{"ix":45,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":7,"t":42,"consumerPower":[7562,null,6415,null],"outstandingDowntime":[false,false,false,false]}},{"ix":46,"action":{"kind":"ConsumerSlash","val":1,"infractionHeight":1,"isDowntime":false},"partialState":{"h":7,"t":42,"outstandingDowntime":[false,false,false,false]}},{"ix":47,"action":{"kind":"Delegate","val":3,"amt":4169},"partialState":{"h":7,"t":42,"tokens":[7562,10454,7446,12527],"delegation":[6562,9454,6446,11527],"delegatorTokens":9999999970431}},{"ix":48,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":49,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":50,"action":{"kind":"Deliver","chain":"consumer","numPackets":5},"partialState":{"h":7,"t":42,"consumerPower":[7562,null,6415,null],"outstandingDowntime":[false,false,false,false]}},{"ix":51,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":8,"t":48,"tokens":[7562,10454,7446,12527],"delegation":[6562,9454,6446,11527],"delegatorTokens":9999999970431,"jailed":[null,1000000000000023,null,1000000000000023],"status":["bonded","unbonding","bonded","unbonding"]}},{"ix":52,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":53,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":9,"t":54,"tokens":[7562,10454,7446,12527],"delegation":[6562,9454,6446,11527],"delegatorTokens":9999999970431,"jailed":[null,1000000000000023,null,1000000000000023],"status":["bonded","unbonding","bonded","unbonding"]}},{"ix":54,"action":{"kind":"ConsumerSlash","val":3,"infractionHeight":3,"isDowntime":false},"partialState":{"h":7,"t":42,"outstandingDowntime":[false,false,false,false]}},{"ix":55,"action":{"kind":"Undelegate","val":3,"amt":3421},"partialState":{"h":9,"t":54,"tokens":[7562,10454,7446,9106],"delegation":[6562,9454,6446,8106],"delegatorTokens":9999999970431}},{"ix":56,"action":{"kind":"ConsumerSlash","val":3,"infractionHeight":3,"isDowntime":false},"partialState":{"h":7,"t":42,"outstandingDowntime":[false,false,false,false]}},{"ix":57,"action":{"kind":"Undelegate","val":0,"amt":2469},"partialState":{"h":9,"t":54,"tokens":[5093,10454,7446,9106],"delegation":[4093,9454,6446,8106],"delegatorTokens":9999999970431}},{"ix":58,"action":{"kind":"ConsumerSlash","val":3,"infractionHeight":4,"isDowntime":true},"partialState":{"h":7,"t":42,"outstandingDowntime":[false,false,false,true]}},{"ix":59,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":60,"action":{"kind":"Undelegate","val":0,"amt":2319},"partialState":{"h":9,"t":54,"tokens":[2774,10454,7446,9106],"delegation":[1774,9454,6446,8106],"delegatorTokens":9999999970431}},{"ix":61,"action":{"kind":"Undelegate","val":2,"amt":1381},"partialState":{"h":9,"t":54,"tokens":[2774,10454,6065,9106],"delegation":[1774,9454,5065,8106],"delegatorTokens":9999999970431}},{"ix":62,"action":{"kind":"Undelegate","val":0,"amt":2154},"partialState":{"h":9,"t":54,"tokens":[2774,10454,6065,9106],"delegation":[1774,9454,5065,8106],"delegatorTokens":9999999970431}},{"ix":63,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":64,"action":{"kind":"ConsumerSlash","val":1,"infractionHeight":0,"isDowntime":false},"partialState":{"h":7,"t":42,"outstandingDowntime":[false,false,false,true]}},{"ix":65,"action":{"kind":"Delegate","val":1,"amt":2425},"partialState":{"h":9,"t":54,"tokens":[2774,12879,6065,9106],"delegation":[1774,11879,5065,8106],"delegatorTokens":9999999968006}},{"ix":66,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":8,"t":48,"consumerPower":[7562,null,6415,null],"outstandingDowntime":[false,false,false,true]}},{"ix":67,"action":{"kind":"Undelegate","val":2,"amt":2458},"partialState":{"h":9,"t":54,"tokens":[2774,12879,3607,9106],"delegation":[1774,11879,2607,8106],"delegatorTokens":9999999968006}},{"ix":68,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":69,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":9,"t":54,"consumerPower":[7562,null,6415,null],"outstandingDowntime":[false,false,false,true]}},{"ix":70,"action":{"kind":"Deliver","chain":"consumer","numPackets":1},"partialState":{"h":9,"t":54,"consumerPower":[7562,null,6415,null],"outstandingDowntime":[false,false,false,true]}},{"ix":71,"action":{"kind":"Delegate","val":1,"amt":1336},"partialState":{"h":9,"t":54,"tokens":[2774,14215,3607,9106],"delegation":[1774,13215,2607,8106],"delegatorTokens":9999999966670}},{"ix":72,"action":{"kind":"Delegate","val":3,"amt":2809},"partialState":{"h":9,"t":54,"tokens":[2774,14215,3607,11915],"delegation":[1774,13215,2607,10915],"delegatorTokens":9999999963861}},{"ix":73,"action":{"kind":"Undelegate","val":1,"amt":4778},"partialState":{"h":9,"t":54,"tokens":[2774,9437,3607,11915],"delegation":[1774,8437,2607,10915],"delegatorTokens":9999999963861}},{"ix":74,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":10,"t":60,"tokens":[2774,9437,3607,11915],"delegation":[1774,8437,2607,10915],"delegatorTokens":9999999963861,"jailed":[null,1000000000000023,null,1000000000000023],"status":["bonded","unbonding","bonded","unbonding"]}},{"ix":75,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":11,"t":66,"tokens":[2774,9437,3607,11915],"delegation":[1774,8437,2607,10915],"delegatorTokens":9999999963861,"jailed":[null,1000000000000023,null,1000000000000023],"status":["bonded","unbonding","bonded","unbonding"]}},{"ix":76,"action":{"kind":"Deliver","chain":"consumer","numPackets":5},"partialState":{"h":9,"t":54,"consumerPower":[7562,null,6415,null],"outstandingDowntime":[false,false,false,true]}},{"ix":77,"action":{"kind":"ConsumerSlash","val":2,"infractionHeight":3,"isDowntime":true},"partialState":{"h":9,"t":54,"outstandingDowntime":[false,false,true,true]}},{"ix":78,"action":{"kind":"Delegate","val":3,"amt":1433},"partialState":{"h":11,"t":66,"tokens":[2774,9437,3607,13348],"delegation":[1774,8437,2607,12348],"delegatorTokens":9999999962428}},{"ix":79,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":10,"t":60,"consumerPower":[2774,null,3607,null],"outstandingDowntime":[false,false,true,true]}},{"ix":80,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":81,"action":{"kind":"Undelegate","val":3,"amt":1601},"partialState":{"h":11,"t":66,"tokens":[2774,9437,3607,11747],"delegation":[1774,8437,2607,10747],"delegatorTokens":9999999962428}},{"ix":82,"action":{"kind":"Undelegate","val":0,"amt":4051},"partialState":{"h":11,"t":66,"tokens":[2774,9437,3607,11747],"delegation":[1774,8437,2607,10747],"delegatorTokens":9999999962428}},{"ix":83,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":84,"action":{"kind":"Undelegate","val":3,"amt":3398},"partialState":{"h":11,"t":66,"tokens":[2774,9437,3607,8349],"delegation":[1774,8437,2607,7349],"delegatorTokens":9999999962428}},{"ix":85,"action":{"kind":"Deliver","chain":"consumer","numPackets":3},"partialState":{"h":10,"t":60,"consumerPower":[2774,null,3607,null],"outstandingDowntime":[false,false,true,true]}},{"ix":86,"action":{"kind":"Delegate","val":2,"amt":1563},"partialState":{"h":11,"t":66,"tokens":[2774,9437,5170,8349],"delegation":[1774,8437,4170,7349],"delegatorTokens":9999999960865}},{"ix":87,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":11,"t":66,"consumerPower":[2774,null,3607,null],"outstandingDowntime":[false,false,true,true]}},{"ix":88,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":89,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":90,"action":{"kind":"Delegate","val":2,"amt":4208},"partialState":{"h":11,"t":66,"tokens":[2774,9437,9378,8349],"delegation":[1774,8437,8378,7349],"delegatorTokens":9999999956657}},{"ix":91,"action":{"kind":"Delegate","val":2,"amt":4521},"partialState":{"h":11,"t":66,"tokens":[2774,9437,13899,8349],"delegation":[1774,8437,12899,7349],"delegatorTokens":9999999952136}},{"ix":92,"action":{"kind":"Undelegate","val":0,"amt":1018},"partialState":{"h":11,"t":66,"tokens":[1756,9437,13899,8349],"delegation":[756,8437,12899,7349],"delegatorTokens":9999999952136}},{"ix":93,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":94,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":12,"t":72,"consumerPower":[2774,null,3607,null],"outstandingDowntime":[false,false,true,true]}},{"ix":95,"action":{"kind":"Delegate","val":1,"amt":4027},"partialState":{"h":11,"t":66,"tokens":[1756,13464,13899,8349],"delegation":[756,12464,12899,7349],"delegatorTokens":9999999948109}},{"ix":96,"action":{"kind":"Delegate","val":0,"amt":3420},"partialState":{"h":11,"t":66,"tokens":[5176,13464,13899,8349],"delegation":[4176,12464,12899,7349],"delegatorTokens":9999999944689}},{"ix":97,"action":{"kind":"Undelegate","val":2,"amt":1690},"partialState":{"h":11,"t":66,"tokens":[5176,13464,12209,8349],"delegation":[4176,12464,11209,7349],"delegatorTokens":9999999944689}},{"ix":98,"action":{"kind":"Delegate","val":2,"amt":1549},"partialState":{"h":11,"t":66,"tokens":[5176,13464,13758,8349],"delegation":[4176,12464,12758,7349],"delegatorTokens":9999999943140}},{"ix":99,"action":{"kind":"Undelegate","val":2,"amt":4075},"partialState":{"h":11,"t":66,"tokens":[5176,13464,9683,8349],"delegation":[4176,12464,8683,7349],"delegatorTokens":9999999943140}},{"ix":100,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":13,"t":78,"consumerPower":[2774,null,3607,null],"outstandingDowntime":[false,false,true,true]}},{"ix":101,"action":{"kind":"Undelegate","val":2,"amt":2095},"partialState":{"h":11,"t":66,"tokens":[5176,13464,7588,8349],"delegation":[4176,12464,6588,7349],"delegatorTokens":9999999943140}},{"ix":102,"action":{"kind":"Undelegate","val":2,"amt":4739},"partialState":{"h":11,"t":66,"tokens":[5176,13464,2849,8349],"delegation":[4176,12464,1849,7349],"delegatorTokens":9999999943140}},{"ix":103,"action":{"kind":"Deliver","chain":"provider","numPackets":6},"partialState":{"h":11,"t":66,"tokens":[5176,13464,2849,8349],"delegation":[4176,12464,1849,7349],"delegatorTokens":9999999943140,"jailed":[null,1000000000000023,null,1000000000000023],"status":["bonded","unbonding","bonded","unbonding"]}},{"ix":104,"action":{"kind":"Deliver","chain":"consumer","numPackets":4},"partialState":{"h":13,"t":78,"consumerPower":[2774,null,3607,null],"outstandingDowntime":[false,false,true,true]}},{"ix":105,"action":{"kind":"Undelegate","val":3,"amt":2387},"partialState":{"h":11,"t":66,"tokens":[5176,13464,2849,5962],"delegation":[4176,12464,1849,4962],"delegatorTokens":9999999943140}},{"ix":106,"action":{"kind":"Delegate","val":1,"amt":3292},"partialState":{"h":11,"t":66,"tokens":[5176,16756,2849,5962],"delegation":[4176,15756,1849,4962],"delegatorTokens":9999999939848}},{"ix":107,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":14,"t":84,"consumerPower":[2774,null,3607,null],"outstandingDowntime":[false,false,true,true]}},{"ix":108,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":12,"t":72,"tokens":[5176,16756,2849,5962],"delegation":[4176,15756,1849,4962],"delegatorTokens":9999999939848,"jailed":[null,1000000000000023,null,1000000000000065],"status":["bonded","unbonding","bonded","unbonding"]}},{"ix":109,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":13,"t":78,"tokens":[5176,16756,2849,5962],"delegation":[4176,15756,1849,4962],"delegatorTokens":9999999939848,"jailed":[null,1000000000000023,null,1000000000000065],"status":["bonded","unbonding","bonded","unbonding"]}},{"ix":110,"action":{"kind":"Undelegate","val":0,"amt":4688},"partialState":{"h":13,"t":78,"tokens":[5176,16756,2849,5962],"delegation":[4176,15756,1849,4962],"delegatorTokens":9999999939848}},{"ix":111,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":15,"t":90,"consumerPower":[2774,null,3607,null],"outstandingDowntime":[false,false,true,true]}},{"ix":112,"action":{"kind":"Deliver","chain":"provider","numPackets":6},"partialState":{"h":13,"t":78,"tokens":[5176,16756,2849,5962],"delegation":[4176,15756,1849,4962],"delegatorTokens":9999999939848,"jailed":[null,1000000000000023,null,1000000000000065],"status":["bonded","unbonding","bonded","unbonding"]}},{"ix":113,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":14,"t":84,"tokens":[5176,16756,2849,5962],"delegation":[4176,15756,1849,4962],"delegatorTokens":9999999939848,"jailed":[null,1000000000000023,1000000000000077,1000000000000065],"status":["bonded","unbonding","bonded","unbonding"]}},{"ix":114,"action":{"kind":"Deliver","chain":"consumer","numPackets":3},"partialState":{"h":15,"t":90,"consumerPower":[2774,null,3607,null],"outstandingDowntime":[false,false,true,false]}},{"ix":115,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":116,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":117,"action":{"kind":"Delegate","val":2,"amt":1759},"partialState":{"h":14,"t":84,"tokens":[5176,16756,4608,5962],"delegation":[4176,15756,3608,4962],"delegatorTokens":9999999938089}},{"ix":118,"action":{"kind":"Undelegate","val":3,"amt":2766},"partialState":{"h":14,"t":84,"tokens":[5176,16756,4608,3196],"delegation":[4176,15756,3608,2196],"delegatorTokens":9999999938089}},{"ix":119,"action":{"kind":"Undelegate","val":0,"amt":3970},"partialState":{"h":14,"t":84,"tokens":[1206,16756,4608,3196],"delegation":[206,15756,3608,2196],"delegatorTokens":9999999938089}},{"ix":120,"action":{"kind":"Delegate","val":0,"amt":4582},"partialState":{"h":14,"t":84,"tokens":[5788,16756,4608,3196],"delegation":[4788,15756,3608,2196],"delegatorTokens":9999999933507}},{"ix":121,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":122,"action":{"kind":"Undelegate","val":0,"amt":3884},"partialState":{"h":14,"t":84,"tokens":[1904,16756,4608,3196],"delegation":[904,15756,3608,2196],"delegatorTokens":9999999933507}},{"ix":123,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":124,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":15,"t":90,"tokens":[1904,16756,4608,3196],"delegation":[904,15756,3608,2196],"delegatorTokens":9999999933507,"jailed":[null,1000000000000023,1000000000000077,1000000000000065],"status":["bonded","unbonding","unbonding","unbonding"]}},{"ix":125,"action":{"kind":"Deliver","chain":"provider","numPackets":6},"partialState":{"h":15,"t":90,"tokens":[1904,16756,4608,3196],"delegation":[904,15756,3608,2196],"delegatorTokens":9999999933507,"jailed":[null,1000000000000023,1000000000000077,1000000000000065],"status":["bonded","unbonding","unbonding","unbonding"]}},{"ix":126,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":127,"action":{"kind":"Delegate","val":3,"amt":3358},"partialState":{"h":15,"t":90,"tokens":[1904,16756,4608,6554],"delegation":[904,15756,3608,5554],"delegatorTokens":9999999930149}},{"ix":128,"action":{"kind":"Undelegate","val":3,"amt":1484},"partialState":{"h":15,"t":90,"tokens":[1904,16756,4608,5070],"delegation":[904,15756,3608,4070],"delegatorTokens":9999999930149}},{"ix":129,"action":{"kind":"Delegate","val":0,"amt":1100},"partialState":{"h":15,"t":90,"tokens":[3004,16756,4608,5070],"delegation":[2004,15756,3608,4070],"delegatorTokens":9999999929049}},{"ix":130,"action":{"kind":"Deliver","chain":"provider","numPackets":5},"partialState":{"h":15,"t":90,"tokens":[3004,16756,4608,5070],"delegation":[2004,15756,3608,4070],"delegatorTokens":9999999929049,"jailed":[null,1000000000000023,1000000000000077,1000000000000065],"status":["bonded","unbonding","unbonding","unbonding"]}},{"ix":131,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":16,"t":96,"consumerPower":[5176,null,2849,null],"outstandingDowntime":[false,false,true,false]}},{"ix":132,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":17,"t":102,"consumerPower":[5176,null,2849,null],"outstandingDowntime":[false,false,true,false]}},{"ix":133,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":18,"t":108,"consumerPower":[5176,null,2849,null],"outstandingDowntime":[false,false,true,false]}},{"ix":134,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":135,"action":{"kind":"Delegate","val":0,"amt":1862},"partialState":{"h":15,"t":90,"tokens":[4866,16756,4608,5070],"delegation":[3866,15756,3608,4070],"delegatorTokens":9999999927187}},{"ix":136,"action":{"kind":"Undelegate","val":0,"amt":2298},"partialState":{"h":15,"t":90,"tokens":[2568,16756,4608,5070],"delegation":[1568,15756,3608,4070],"delegatorTokens":9999999927187}},{"ix":137,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":138,"action":{"kind":"Delegate","val":3,"amt":2076},"partialState":{"h":15,"t":90,"tokens":[2568,16756,4608,7146],"delegation":[1568,15756,3608,6146],"delegatorTokens":9999999925111}},{"ix":139,"action":{"kind":"Deliver","chain":"provider","numPackets":2},"partialState":{"h":15,"t":90,"tokens":[2568,16756,4608,7146],"delegation":[1568,15756,3608,6146],"delegatorTokens":9999999925111,"jailed":[null,1000000000000023,1000000000000077,1000000000000065],"status":["bonded","unbonding","unbonding","unbonding"]}},{"ix":140,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":141,"action":{"kind":"Undelegate","val":3,"amt":2796},"partialState":{"h":15,"t":90,"tokens":[2568,16756,4608,4350],"delegation":[1568,15756,3608,3350],"delegatorTokens":9999999925111}},{"ix":142,"action":{"kind":"Deliver","chain":"consumer","numPackets":5},"partialState":{"h":18,"t":108,"consumerPower":[5176,null,2849,null],"outstandingDowntime":[false,false,true,false]}},{"ix":143,"action":{"kind":"Deliver","chain":"provider","numPackets":2},"partialState":{"h":15,"t":90,"tokens":[2568,16756,4608,4350],"delegation":[1568,15756,3608,3350],"delegatorTokens":9999999925111,"jailed":[null,1000000000000023,1000000000000077,1000000000000065],"status":["bonded","unbonding","unbonding","unbonding"]}},{"ix":144,"action":{"kind":"Delegate","val":3,"amt":1347},"partialState":{"h":15,"t":90,"tokens":[2568,16756,4608,5697],"delegation":[1568,15756,3608,4697],"delegatorTokens":9999999923764}},{"ix":145,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":146,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":147,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":148,"action":{"kind":"Delegate","val":0,"amt":2367},"partialState":{"h":15,"t":90,"tokens":[4935,16756,4608,5697],"delegation":[3935,15756,3608,4697],"delegatorTokens":9999999921397}},{"ix":149,"action":{"kind":"Deliver","chain":"consumer","numPackets":4},"partialState":{"h":18,"t":108,"consumerPower":[5176,null,2849,null],"outstandingDowntime":[false,false,true,false]}},{"ix":150,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":19,"t":114,"consumerPower":[5176,null,2849,null],"outstandingDowntime":[false,false,true,false]}},{"ix":151,"action":{"kind":"Undelegate","val":3,"amt":3792},"partialState":{"h":15,"t":90,"tokens":[4935,16756,4608,1905],"delegation":[3935,15756,3608,905],"delegatorTokens":9999999921397}},{"ix":152,"action":{"kind":"Deliver","chain":"consumer","numPackets":2},"partialState":{"h":19,"t":114,"consumerPower":[5176,null,2849,null],"outstandingDowntime":[false,false,true,false]}},{"ix":153,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":154,"action":{"kind":"Delegate","val":1,"amt":4077},"partialState":{"h":15,"t":90,"tokens":[4935,20833,4608,1905],"delegation":[3935,19833,3608,905],"delegatorTokens":9999999917320}},{"ix":155,"action":{"kind":"Delegate","val":0,"amt":1825},"partialState":{"h":15,"t":90,"tokens":[6760,20833,4608,1905],"delegation":[5760,19833,3608,905],"delegatorTokens":9999999915495}},{"ix":156,"action":{"kind":"Deliver","chain":"consumer","numPackets":2},"partialState":{"h":19,"t":114,"consumerPower":[5176,null,2849,null],"outstandingDowntime":[false,false,true,false]}},{"ix":157,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":20,"t":120,"consumerPower":[5176,null,2849,null],"outstandingDowntime":[false,false,true,false]}},{"ix":158,"action":{"kind":"Deliver","chain":"provider","numPackets":4},"partialState":{"h":15,"t":90,"tokens":[6760,20833,4608,1905],"delegation":[5760,19833,3608,905],"delegatorTokens":9999999915495,"jailed":[null,1000000000000023,1000000000000077,1000000000000065],"status":["bonded","unbonding","unbonding","unbonding"]}},{"ix":159,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":16,"t":96,"tokens":[6760,20833,4608,1905],"delegation":[5760,19833,3608,905],"delegatorTokens":9999999921075,"jailed":[null,1000000000000023,1000000000000077,1000000000000065],"status":["bonded","unbonding","unbonding","unbonding"]}},{"ix":160,"action":{"kind":"Deliver","chain":"consumer","numPackets":1},"partialState":{"h":20,"t":120,"consumerPower":[5176,null,2849,null],"outstandingDowntime":[false,false,false,false]}},{"ix":161,"action":{"kind":"Undelegate","val":0,"amt":2267},"partialState":{"h":16,"t":96,"tokens":[4493,20833,4608,1905],"delegation":[3493,19833,3608,905],"delegatorTokens":9999999921075}},{"ix":162,"action":{"kind":"Deliver","chain":"consumer","numPackets":1},"partialState":{"h":20,"t":120,"consumerPower":[5176,null,2849,null],"outstandingDowntime":[false,false,false,false]}},{"ix":163,"action":{"kind":"Undelegate","val":3,"amt":4191},"partialState":{"h":16,"t":96,"tokens":[4493,20833,4608,1905],"delegation":[3493,19833,3608,905],"delegatorTokens":9999999921075}},{"ix":164,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":165,"action":{"kind":"Undelegate","val":3,"amt":2896},"partialState":{"h":16,"t":96,"tokens":[4493,20833,4608,1905],"delegation":[3493,19833,3608,905],"delegatorTokens":9999999921075}},{"ix":166,"action":{"kind":"Delegate","val":2,"amt":2740},"partialState":{"h":16,"t":96,"tokens":[4493,20833,7348,1905],"delegation":[3493,19833,6348,905],"delegatorTokens":9999999918335}},{"ix":167,"action":{"kind":"Undelegate","val":1,"amt":2216},"partialState":{"h":16,"t":96,"tokens":[4493,18617,7348,1905],"delegation":[3493,17617,6348,905],"delegatorTokens":9999999918335}},{"ix":168,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":169,"action":{"kind":"Undelegate","val":3,"amt":3971},"partialState":{"h":16,"t":96,"tokens":[4493,18617,7348,1905],"delegation":[3493,17617,6348,905],"delegatorTokens":9999999918335}},{"ix":170,"action":{"kind":"Undelegate","val":2,"amt":4457},"partialState":{"h":16,"t":96,"tokens":[4493,18617,2891,1905],"delegation":[3493,17617,1891,905],"delegatorTokens":9999999918335}},{"ix":171,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":172,"action":{"kind":"Undelegate","val":0,"amt":3228},"partialState":{"h":16,"t":96,"tokens":[1265,18617,2891,1905],"delegation":[265,17617,1891,905],"delegatorTokens":9999999918335}},{"ix":173,"action":{"kind":"Deliver","chain":"provider","numPackets":4},"partialState":{"h":16,"t":96,"tokens":[1265,18617,2891,1905],"delegation":[265,17617,1891,905],"delegatorTokens":9999999918335,"jailed":[null,1000000000000023,1000000000000077,1000000000000065],"status":["bonded","unbonding","unbonding","unbonding"]}},{"ix":174,"action":{"kind":"Delegate","val":0,"amt":4657},"partialState":{"h":16,"t":96,"tokens":[5922,18617,2891,1905],"delegation":[4922,17617,1891,905],"delegatorTokens":9999999913678}},{"ix":175,"action":{"kind":"Deliver","chain":"provider","numPackets":3},"partialState":{"h":16,"t":96,"tokens":[5922,18617,2891,1905],"delegation":[4922,17617,1891,905],"delegatorTokens":9999999913678,"jailed":[null,1000000000000023,1000000000000077,1000000000000065],"status":["bonded","unbonding","unbonding","unbonding"]}},{"ix":176,"action":{"kind":"Deliver","chain":"consumer","numPackets":3},"partialState":{"h":20,"t":120,"consumerPower":[5176,null,2849,null],"outstandingDowntime":[false,false,false,false]}},{"ix":177,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":17,"t":102,"tokens":[5922,18617,2891,1905],"delegation":[4922,17617,1891,905],"delegatorTokens":9999999913678,"jailed":[null,1000000000000023,1000000000000077,1000000000000065],"status":["bonded","unbonding","unbonding","unbonded"]}},{"ix":178,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":179,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":180,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":18,"t":108,"tokens":[5922,18617,2891,1905],"delegation":[4922,17617,1891,905],"delegatorTokens":9999999913678,"jailed":[null,1000000000000023,1000000000000077,1000000000000065],"status":["bonded","unbonded","unbonding","unbonded"]}},{"ix":181,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":182,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":21,"t":126,"consumerPower":[1904,null,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":183,"action":{"kind":"Delegate","val":3,"amt":3913},"partialState":{"h":18,"t":108,"tokens":[5922,18617,2891,5818],"delegation":[4922,17617,1891,4818],"delegatorTokens":9999999909765}},{"ix":184,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":185,"action":{"kind":"Deliver","chain":"consumer","numPackets":2},"partialState":{"h":21,"t":126,"consumerPower":[1904,null,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":186,"action":{"kind":"Undelegate","val":1,"amt":2002},"partialState":{"h":18,"t":108,"tokens":[5922,16615,2891,5818],"delegation":[4922,15615,1891,4818],"delegatorTokens":9999999909765}},{"ix":187,"action":{"kind":"Undelegate","val":2,"amt":1259},"partialState":{"h":18,"t":108,"tokens":[5922,16615,1632,5818],"delegation":[4922,15615,632,4818],"delegatorTokens":9999999909765}},{"ix":188,"action":{"kind":"Undelegate","val":3,"amt":1826},"partialState":{"h":18,"t":108,"tokens":[5922,16615,1632,3992],"delegation":[4922,15615,632,2992],"delegatorTokens":9999999909765}},{"ix":189,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":190,"action":{"kind":"Delegate","val":1,"amt":2258},"partialState":{"h":18,"t":108,"tokens":[5922,18873,1632,3992],"delegation":[4922,17873,632,2992],"delegatorTokens":9999999907507}},{"ix":191,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":19,"t":114,"tokens":[5922,18873,1632,3992],"delegation":[4922,17873,632,2992],"delegatorTokens":9999999907507,"jailed":[null,1000000000000023,1000000000000077,1000000000000065],"status":["bonded","unbonded","unbonding","unbonded"]}},{"ix":192,"action":{"kind":"Delegate","val":1,"amt":1058},"partialState":{"h":19,"t":114,"tokens":[5922,19931,1632,3992],"delegation":[4922,18931,632,2992],"delegatorTokens":9999999906449}},{"ix":193,"action":{"kind":"Deliver","chain":"consumer","numPackets":2},"partialState":{"h":21,"t":126,"consumerPower":[1904,null,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":194,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":195,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":196,"action":{"kind":"Undelegate","val":0,"amt":4248},"partialState":{"h":19,"t":114,"tokens":[1674,19931,1632,3992],"delegation":[674,18931,632,2992],"delegatorTokens":9999999906449}},{"ix":197,"action":{"kind":"Undelegate","val":1,"amt":1863},"partialState":{"h":19,"t":114,"tokens":[1674,18068,1632,3992],"delegation":[674,17068,632,2992],"delegatorTokens":9999999906449}},{"ix":198,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":20,"t":120,"tokens":[1674,18068,1632,3992],"delegation":[674,17068,632,2992],"delegatorTokens":9999999906449,"jailed":[null,1000000000000023,1000000000000077,1000000000000065],"status":["bonded","unbonded","unbonding","unbonded"]}},{"ix":199,"action":{"kind":"Deliver","chain":"provider","numPackets":6},"partialState":{"h":20,"t":120,"tokens":[1674,18068,1632,3992],"delegation":[674,17068,632,2992],"delegatorTokens":9999999906449,"jailed":[null,1000000000000023,1000000000000077,1000000000000065],"status":["bonded","unbonded","unbonding","unbonded"]}}],"events":["send_downtime_slash_request","send_downtime_slash_request","send_double_sign_slash_request","send_double_sign_slash_request","insufficient_shares","more_than_one_third_val_power_change","send_vsc_without_downtime_ack","insufficient_shares","more_than_one_third_val_power_change","rebond_unval","send_vsc_without_downtime_ack","receive_downtime_slash_request","jail","receive_downtime_slash_request","jail","consumer_update_val","consumer_del_val","consumer_add_val","insufficient_shares","more_than_one_third_val_power_change","send_vsc_with_downtime_ack","send_double_sign_slash_request","receive_double_sign_slash_request","receive_downtime_slash_ack","receive_downtime_slash_ack","consumer_del_val","consumer_del_val","consumer_add_val","send_double_sign_slash_request","send_vsc_without_downtime_ack","send_double_sign_slash_request","send_double_sign_slash_request","send_downtime_slash_request","insufficient_shares","send_double_sign_slash_request","send_vsc_without_downtime_ack","send_downtime_slash_request","consumer_update_val","consumer_update_val","insufficient_shares","receive_double_sign_slash_request","receive_double_sign_slash_request","receive_double_sign_slash_request","receive_double_sign_slash_request","receive_double_sign_slash_request","consumer_send_maturation","receive_downtime_slash_request","jail","send_vsc_with_downtime_ack","insufficient_shares","receive_double_sign_slash_request","receive_downtime_slash_request","jail","receive_downtime_slash_ack","send_vsc_with_downtime_ack","consumer_send_maturation","consumer_send_maturation","consumer_update_val","consumer_update_val","consumer_send_maturation","consumer_send_maturation","some_undels_expired_but_not_completed","complete_undel_immediate","complete_undel_immediate","set_unval_hold_false","set_unval_hold_false","set_undel_hold_false","set_undel_hold_false","set_undel_hold_false","set_undel_hold_false","set_undel_hold_false","set_undel_hold_false","send_vsc_without_downtime_ack","receive_downtime_slash_ack","insufficient_shares","insufficient_shares","insufficient_shares","complete_unval_in_endblock","send_vsc_without_downtime_ack","complete_unval_in_endblock","consumer_update_val","consumer_del_val","send_vsc_not_because_change","send_vsc_without_downtime_ack","send_vsc_without_downtime_ack"]},{"meta":{"commit":"7ffd0c04e4205cbc9caf212abfe6c59ee43153bf"},"constants":{"P":"provider","C":"consumer","UNBONDING_SECONDS_P":70,"UNBONDING_SECONDS_C":50,"TRUSTING_SECONDS":49,"NUM_VALIDATORS":4,"MAX_VALIDATORS":2,"SLASH_DOUBLESIGN":0,"SLASH_DOWNTIME":0,"JAIL_SECONDS":999999999999999,"BLOCK_SECONDS":6,"INITIAL_DELEGATOR_TOKENS":10000000000000,"DELEGATE_AMT_MIN":1000,"DELEGATE_AMT_MAX":5000,"UNDELEGATE_AMT_MIN":1000,"UNDELEGATE_AMT_MAX":5000,"ISDOWNTIME_PROBABILITY":0.5,"MAX_NUM_PACKETS_FOR_DELIVER":6},"actions":[{"ix":0,"action":{"kind":"Delegate","val":0,"amt":3655},"partialState":{"h":1,"t":6,"tokens":[8655,4000,3000,2000],"delegation":[7655,3000,2000,1000],"delegatorTokens":9999999996345}},{"ix":1,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":2,"t":12,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":2,"action":{"kind":"Delegate","val":2,"amt":1004},"partialState":{"h":1,"t":6,"tokens":[8655,4000,4004,2000],"delegation":[7655,3000,3004,1000],"delegatorTokens":9999999995341}},{"ix":3,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":2,"t":12,"tokens":[8655,4000,4004,2000],"delegation":[7655,3000,3004,1000],"delegatorTokens":9999999995341,"jailed":[null,null,null,null],"status":["bonded","unbonding","bonded","unbonded"]}},{"ix":4,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":5,"action":{"kind":"Delegate","val":2,"amt":1479},"partialState":{"h":2,"t":12,"tokens":[8655,4000,5483,2000],"delegation":[7655,3000,4483,1000],"delegatorTokens":9999999993862}},{"ix":6,"action":{"kind":"Undelegate","val":1,"amt":1821},"partialState":{"h":2,"t":12,"tokens":[8655,2179,5483,2000],"delegation":[7655,1179,4483,1000],"delegatorTokens":9999999993862}},{"ix":7,"action":{"kind":"Undelegate","val":1,"amt":1549},"partialState":{"h":2,"t":12,"tokens":[8655,2179,5483,2000],"delegation":[7655,1179,4483,1000],"delegatorTokens":9999999993862}},{"ix":8,"action":{"kind":"Delegate","val":3,"amt":2067},"partialState":{"h":2,"t":12,"tokens":[8655,2179,5483,4067],"delegation":[7655,1179,4483,3067],"delegatorTokens":9999999991795}},{"ix":9,"action":{"kind":"ConsumerSlash","val":1,"infractionHeight":1,"isDowntime":true},"partialState":{"h":2,"t":12,"outstandingDowntime":[false,true,false,false]}},{"ix":10,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":3,"t":18,"tokens":[8655,2179,5483,4067],"delegation":[7655,1179,4483,3067],"delegatorTokens":9999999991795,"jailed":[null,null,null,null],"status":["bonded","unbonding","bonded","unbonded"]}},{"ix":11,"action":{"kind":"Undelegate","val":0,"amt":1966},"partialState":{"h":3,"t":18,"tokens":[6689,2179,5483,4067],"delegation":[5689,1179,4483,3067],"delegatorTokens":9999999991795}},{"ix":12,"action":{"kind":"Undelegate","val":2,"amt":2175},"partialState":{"h":3,"t":18,"tokens":[6689,2179,3308,4067],"delegation":[5689,1179,2308,3067],"delegatorTokens":9999999991795}},{"ix":13,"action":{"kind":"Delegate","val":0,"amt":3913},"partialState":{"h":3,"t":18,"tokens":[10602,2179,3308,4067],"delegation":[9602,1179,2308,3067],"delegatorTokens":9999999987882}},{"ix":14,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":15,"action":{"kind":"Delegate","val":0,"amt":4202},"partialState":{"h":3,"t":18,"tokens":[14804,2179,3308,4067],"delegation":[13804,1179,2308,3067],"delegatorTokens":9999999983680}},{"ix":16,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":3,"t":18,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,true,false,false]}},{"ix":17,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":4,"t":24,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,true,false,false]}},{"ix":18,"action":{"kind":"ConsumerSlash","val":1,"infractionHeight":2,"isDowntime":false},"partialState":{"h":4,"t":24,"outstandingDowntime":[false,true,false,false]}},{"ix":19,"action":{"kind":"Delegate","val":2,"amt":4232},"partialState":{"h":3,"t":18,"tokens":[14804,2179,7540,4067],"delegation":[13804,1179,6540,3067],"delegatorTokens":9999999979448}},{"ix":20,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":21,"action":{"kind":"ConsumerSlash","val":2,"infractionHeight":2,"isDowntime":true},"partialState":{"h":4,"t":24,"outstandingDowntime":[false,true,true,false]}},{"ix":22,"action":{"kind":"Delegate","val":1,"amt":1154},"partialState":{"h":3,"t":18,"tokens":[14804,3333,7540,4067],"delegation":[13804,2333,6540,3067],"delegatorTokens":9999999978294}},{"ix":23,"action":{"kind":"Undelegate","val":1,"amt":2961},"partialState":{"h":3,"t":18,"tokens":[14804,3333,7540,4067],"delegation":[13804,2333,6540,3067],"delegatorTokens":9999999978294}},{"ix":24,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":5,"t":30,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,true,true,false]}},{"ix":25,"action":{"kind":"ConsumerSlash","val":1,"infractionHeight":3,"isDowntime":false},"partialState":{"h":5,"t":30,"outstandingDowntime":[false,true,true,false]}},{"ix":26,"action":{"kind":"Undelegate","val":1,"amt":1051},"partialState":{"h":3,"t":18,"tokens":[14804,2282,7540,4067],"delegation":[13804,1282,6540,3067],"delegatorTokens":9999999978294}},{"ix":27,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":6,"t":36,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,true,true,false]}},{"ix":28,"action":{"kind":"ConsumerSlash","val":1,"infractionHeight":0,"isDowntime":true},"partialState":{"h":6,"t":36,"outstandingDowntime":[false,true,true,false]}},{"ix":29,"action":{"kind":"Undelegate","val":0,"amt":3469},"partialState":{"h":3,"t":18,"tokens":[11335,2282,7540,4067],"delegation":[10335,1282,6540,3067],"delegatorTokens":9999999978294}},{"ix":30,"action":{"kind":"Deliver","chain":"provider","numPackets":6},"partialState":{"h":3,"t":18,"tokens":[11335,2282,7540,4067],"delegation":[10335,1282,6540,3067],"delegatorTokens":9999999978294,"jailed":[null,null,null,null],"status":["bonded","unbonding","bonded","unbonded"]}},{"ix":31,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":4,"t":24,"tokens":[11335,2282,7540,4067],"delegation":[10335,1282,6540,3067],"delegatorTokens":9999999978294,"jailed":[null,1000000000000017,1000000000000017,null],"status":["bonded","unbonding","bonded","unbonded"]}},{"ix":32,"action":{"kind":"Delegate","val":1,"amt":4348},"partialState":{"h":4,"t":24,"tokens":[11335,6630,7540,4067],"delegation":[10335,5630,6540,3067],"delegatorTokens":9999999973946}},{"ix":33,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":34,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":5,"t":30,"tokens":[11335,6630,7540,4067],"delegation":[10335,5630,6540,3067],"delegatorTokens":9999999973946,"jailed":[null,1000000000000017,1000000000000017,null],"status":["bonded","unbonding","unbonding","bonded"]}},{"ix":35,"action":{"kind":"Undelegate","val":2,"amt":4868},"partialState":{"h":5,"t":30,"tokens":[11335,6630,2672,4067],"delegation":[10335,5630,1672,3067],"delegatorTokens":9999999973946}},{"ix":36,"action":{"kind":"Deliver","chain":"provider","numPackets":6},"partialState":{"h":5,"t":30,"tokens":[11335,6630,2672,4067],"delegation":[10335,5630,1672,3067],"delegatorTokens":9999999973946,"jailed":[null,1000000000000017,1000000000000017,null],"status":["bonded","unbonding","unbonding","bonded"]}},{"ix":37,"action":{"kind":"Deliver","chain":"consumer","numPackets":4},"partialState":{"h":6,"t":36,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":38,"action":{"kind":"Deliver","chain":"provider","numPackets":6},"partialState":{"h":5,"t":30,"tokens":[11335,6630,2672,4067],"delegation":[10335,5630,1672,3067],"delegatorTokens":9999999973946,"jailed":[null,1000000000000017,1000000000000017,null],"status":["bonded","unbonding","unbonding","bonded"]}},{"ix":39,"action":{"kind":"ConsumerSlash","val":1,"infractionHeight":1,"isDowntime":true},"partialState":{"h":6,"t":36,"outstandingDowntime":[false,true,false,false]}},{"ix":40,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":41,"action":{"kind":"ConsumerSlash","val":2,"infractionHeight":0,"isDowntime":true},"partialState":{"h":6,"t":36,"outstandingDowntime":[false,true,true,false]}},{"ix":42,"action":{"kind":"Undelegate","val":0,"amt":2180},"partialState":{"h":5,"t":30,"tokens":[9155,6630,2672,4067],"delegation":[8155,5630,1672,3067],"delegatorTokens":9999999973946}},{"ix":43,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":44,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":7,"t":42,"consumerPower":[11335,null,7540,null],"outstandingDowntime":[false,true,true,false]}},{"ix":45,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":8,"t":48,"consumerPower":[11335,null,7540,null],"outstandingDowntime":[false,true,true,false]}},{"ix":46,"action":{"kind":"Undelegate","val":2,"amt":4179},"partialState":{"h":5,"t":30,"tokens":[9155,6630,2672,4067],"delegation":[8155,5630,1672,3067],"delegatorTokens":9999999973946}},{"ix":47,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":9,"t":54,"consumerPower":[11335,null,7540,null],"outstandingDowntime":[false,true,true,false]}},{"ix":48,"action":{"kind":"Delegate","val":3,"amt":3930},"partialState":{"h":5,"t":30,"tokens":[9155,6630,2672,7997],"delegation":[8155,5630,1672,6997],"delegatorTokens":9999999970016}},{"ix":49,"action":{"kind":"Deliver","chain":"consumer","numPackets":6},"partialState":{"h":9,"t":54,"consumerPower":[11335,null,7540,null],"outstandingDowntime":[false,true,true,false]}},{"ix":50,"action":{"kind":"Undelegate","val":0,"amt":1965},"partialState":{"h":5,"t":30,"tokens":[7190,6630,2672,7997],"delegation":[6190,5630,1672,6997],"delegatorTokens":9999999970016}},{"ix":51,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":52,"action":{"kind":"Deliver","chain":"consumer","numPackets":5},"partialState":{"h":9,"t":54,"consumerPower":[11335,null,7540,null],"outstandingDowntime":[false,true,true,false]}},{"ix":53,"action":{"kind":"Delegate","val":2,"amt":4941},"partialState":{"h":5,"t":30,"tokens":[7190,6630,7613,7997],"delegation":[6190,5630,6613,6997],"delegatorTokens":9999999965075}},{"ix":54,"action":{"kind":"Undelegate","val":2,"amt":2147},"partialState":{"h":5,"t":30,"tokens":[7190,6630,5466,7997],"delegation":[6190,5630,4466,6997],"delegatorTokens":9999999965075}},{"ix":55,"action":{"kind":"Delegate","val":2,"amt":1722},"partialState":{"h":5,"t":30,"tokens":[7190,6630,7188,7997],"delegation":[6190,5630,6188,6997],"delegatorTokens":9999999963353}},{"ix":56,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":6,"t":36,"tokens":[7190,6630,7188,7997],"delegation":[6190,5630,6188,6997],"delegatorTokens":9999999963353,"jailed":[null,1000000000000017,1000000000000017,null],"status":["bonded","unbonding","unbonding","bonded"]}},{"ix":57,"action":{"kind":"Deliver","chain":"consumer","numPackets":4},"partialState":{"h":9,"t":54,"consumerPower":[11335,null,7540,null],"outstandingDowntime":[false,true,true,false]}},{"ix":58,"action":{"kind":"Delegate","val":0,"amt":2947},"partialState":{"h":6,"t":36,"tokens":[10137,6630,7188,7997],"delegation":[9137,5630,6188,6997],"delegatorTokens":9999999960406}},{"ix":59,"action":{"kind":"Delegate","val":0,"amt":1283},"partialState":{"h":6,"t":36,"tokens":[11420,6630,7188,7997],"delegation":[10420,5630,6188,6997],"delegatorTokens":9999999959123}},{"ix":60,"action":{"kind":"Undelegate","val":1,"amt":3255},"partialState":{"h":6,"t":36,"tokens":[11420,3375,7188,7997],"delegation":[10420,2375,6188,6997],"delegatorTokens":9999999959123}},{"ix":61,"action":{"kind":"Undelegate","val":0,"amt":3236},"partialState":{"h":6,"t":36,"tokens":[8184,3375,7188,7997],"delegation":[7184,2375,6188,6997],"delegatorTokens":9999999959123}},{"ix":62,"action":{"kind":"Deliver","chain":"consumer","numPackets":4},"partialState":{"h":9,"t":54,"consumerPower":[11335,null,7540,null],"outstandingDowntime":[false,true,true,false]}},{"ix":63,"action":{"kind":"Deliver","chain":"consumer","numPackets":4},"partialState":{"h":9,"t":54,"consumerPower":[11335,null,7540,null],"outstandingDowntime":[false,true,true,false]}},{"ix":64,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":65,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":66,"action":{"kind":"Delegate","val":2,"amt":2765},"partialState":{"h":6,"t":36,"tokens":[8184,3375,9953,7997],"delegation":[7184,2375,8953,6997],"delegatorTokens":9999999956358}},{"ix":67,"action":{"kind":"Deliver","chain":"provider","numPackets":1},"partialState":{"h":6,"t":36,"tokens":[8184,3375,9953,7997],"delegation":[7184,2375,8953,6997],"delegatorTokens":9999999956358,"jailed":[null,1000000000000017,1000000000000017,null],"status":["bonded","unbonding","unbonding","bonded"]}},{"ix":68,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":69,"action":{"kind":"Deliver","chain":"consumer","numPackets":3},"partialState":{"h":9,"t":54,"consumerPower":[11335,null,7540,null],"outstandingDowntime":[false,true,true,false]}},{"ix":70,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":7,"t":42,"tokens":[8184,3375,9953,7997],"delegation":[7184,2375,8953,6997],"delegatorTokens":9999999956358,"jailed":[null,1000000000000017,1000000000000017,null],"status":["bonded","unbonding","unbonding","bonded"]}},{"ix":71,"action":{"kind":"Deliver","chain":"provider","numPackets":5},"partialState":{"h":7,"t":42,"tokens":[8184,3375,9953,7997],"delegation":[7184,2375,8953,6997],"delegatorTokens":9999999956358,"jailed":[null,1000000000000017,1000000000000017,null],"status":["bonded","unbonding","unbonding","bonded"]}},{"ix":72,"action":{"kind":"Undelegate","val":3,"amt":1458},"partialState":{"h":7,"t":42,"tokens":[8184,3375,9953,6539],"delegation":[7184,2375,8953,5539],"delegatorTokens":9999999956358}},{"ix":73,"action":{"kind":"ConsumerSlash","val":2,"infractionHeight":6,"isDowntime":false},"partialState":{"h":9,"t":54,"outstandingDowntime":[false,true,true,false]}},{"ix":74,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":8,"t":48,"tokens":[8184,3375,9953,6539],"delegation":[7184,2375,8953,5539],"delegatorTokens":9999999956358,"jailed":[null,1000000000000041,1000000000000041,null],"status":["bonded","unbonding","unbonding","bonded"]}},{"ix":75,"action":{"kind":"ConsumerSlash","val":0,"infractionHeight":3,"isDowntime":true},"partialState":{"h":9,"t":54,"outstandingDowntime":[true,true,true,false]}},{"ix":76,"action":{"kind":"Deliver","chain":"provider","numPackets":1},"partialState":{"h":8,"t":48,"tokens":[8184,3375,9953,6539],"delegation":[7184,2375,8953,5539],"delegatorTokens":9999999956358,"jailed":[null,1000000000000041,1000000000000041,null],"status":["bonded","unbonding","unbonding","bonded"]}},{"ix":77,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":9,"t":54,"tokens":[8184,3375,9953,6539],"delegation":[7184,2375,8953,5539],"delegatorTokens":9999999956358,"jailed":[null,1000000000000041,1000000000000041,null],"status":["bonded","unbonding","unbonding","bonded"]}},{"ix":78,"action":{"kind":"Undelegate","val":3,"amt":2202},"partialState":{"h":9,"t":54,"tokens":[8184,3375,9953,4337],"delegation":[7184,2375,8953,3337],"delegatorTokens":9999999956358}},{"ix":79,"action":{"kind":"Deliver","chain":"consumer","numPackets":1},"partialState":{"h":9,"t":54,"consumerPower":[11335,null,7540,null],"outstandingDowntime":[true,true,true,false]}},{"ix":80,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":81,"action":{"kind":"Deliver","chain":"provider","numPackets":4},"partialState":{"h":9,"t":54,"tokens":[8184,3375,9953,4337],"delegation":[7184,2375,8953,3337],"delegatorTokens":9999999956358,"jailed":[null,1000000000000041,1000000000000041,null],"status":["bonded","unbonding","unbonding","bonded"]}},{"ix":82,"action":{"kind":"Undelegate","val":1,"amt":2497},"partialState":{"h":9,"t":54,"tokens":[8184,3375,9953,4337],"delegation":[7184,2375,8953,3337],"delegatorTokens":9999999956358}},{"ix":83,"action":{"kind":"Deliver","chain":"consumer","numPackets":2},"partialState":{"h":9,"t":54,"consumerPower":[11335,null,7540,null],"outstandingDowntime":[true,false,false,false]}},{"ix":84,"action":{"kind":"Deliver","chain":"provider","numPackets":3},"partialState":{"h":9,"t":54,"tokens":[8184,3375,9953,4337],"delegation":[7184,2375,8953,3337],"delegatorTokens":9999999956358,"jailed":[null,1000000000000041,1000000000000041,null],"status":["bonded","unbonding","unbonding","bonded"]}},{"ix":85,"action":{"kind":"Undelegate","val":0,"amt":4522},"partialState":{"h":9,"t":54,"tokens":[3662,3375,9953,4337],"delegation":[2662,2375,8953,3337],"delegatorTokens":9999999956358}},{"ix":86,"action":{"kind":"Undelegate","val":0,"amt":2938},"partialState":{"h":9,"t":54,"tokens":[3662,3375,9953,4337],"delegation":[2662,2375,8953,3337],"delegatorTokens":9999999956358}},{"ix":87,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":10,"t":60,"consumerPower":[8184,null,null,6539],"outstandingDowntime":[true,false,false,false]}},{"ix":88,"action":{"kind":"Deliver","chain":"consumer","numPackets":1},"partialState":{"h":10,"t":60,"consumerPower":[8184,null,null,6539],"outstandingDowntime":[true,false,false,false]}},{"ix":89,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":10,"t":60,"tokens":[3662,3375,9953,4337],"delegation":[2662,2375,8953,3337],"delegatorTokens":9999999956358,"jailed":[null,1000000000000041,1000000000000041,null],"status":["bonded","unbonding","unbonding","bonded"]}},{"ix":90,"action":{"kind":"Delegate","val":0,"amt":1981},"partialState":{"h":10,"t":60,"tokens":[5643,3375,9953,4337],"delegation":[4643,2375,8953,3337],"delegatorTokens":9999999954377}},{"ix":91,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":92,"action":{"kind":"Delegate","val":1,"amt":1306},"partialState":{"h":10,"t":60,"tokens":[5643,4681,9953,4337],"delegation":[4643,3681,8953,3337],"delegatorTokens":9999999953071}},{"ix":93,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":94,"action":{"kind":"Undelegate","val":3,"amt":1302},"partialState":{"h":10,"t":60,"tokens":[5643,4681,9953,3035],"delegation":[4643,3681,8953,2035],"delegatorTokens":9999999953071}},{"ix":95,"action":{"kind":"Deliver","chain":"provider","numPackets":3},"partialState":{"h":10,"t":60,"tokens":[5643,4681,9953,3035],"delegation":[4643,3681,8953,2035],"delegatorTokens":9999999953071,"jailed":[null,1000000000000041,1000000000000041,null],"status":["bonded","unbonding","unbonding","bonded"]}},{"ix":96,"action":{"kind":"Deliver","chain":"consumer","numPackets":3},"partialState":{"h":10,"t":60,"consumerPower":[8184,null,null,6539],"outstandingDowntime":[true,false,false,false]}},{"ix":97,"action":{"kind":"Undelegate","val":2,"amt":1776},"partialState":{"h":10,"t":60,"tokens":[5643,4681,8177,3035],"delegation":[4643,3681,7177,2035],"delegatorTokens":9999999953071}},{"ix":98,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":11,"t":66,"consumerPower":[8184,null,null,6539],"outstandingDowntime":[true,false,false,false]}},{"ix":99,"action":{"kind":"Undelegate","val":0,"amt":1974},"partialState":{"h":10,"t":60,"tokens":[3669,4681,8177,3035],"delegation":[2669,3681,7177,2035],"delegatorTokens":9999999953071}},{"ix":100,"action":{"kind":"Deliver","chain":"provider","numPackets":2},"partialState":{"h":10,"t":60,"tokens":[3669,4681,8177,3035],"delegation":[2669,3681,7177,2035],"delegatorTokens":9999999953071,"jailed":[null,1000000000000041,1000000000000041,null],"status":["bonded","unbonding","unbonding","bonded"]}},{"ix":101,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":11,"t":66,"tokens":[3669,4681,8177,3035],"delegation":[2669,3681,7177,2035],"delegatorTokens":9999999953071,"jailed":[1000000000000059,1000000000000041,1000000000000041,null],"status":["bonded","unbonding","unbonding","bonded"]}},{"ix":102,"action":{"kind":"Undelegate","val":1,"amt":1578},"partialState":{"h":11,"t":66,"tokens":[3669,3103,8177,3035],"delegation":[2669,2103,7177,2035],"delegatorTokens":9999999953071}},{"ix":103,"action":{"kind":"Undelegate","val":0,"amt":3936},"partialState":{"h":11,"t":66,"tokens":[3669,3103,8177,3035],"delegation":[2669,2103,7177,2035],"delegatorTokens":9999999953071}},{"ix":104,"action":{"kind":"Delegate","val":1,"amt":1111},"partialState":{"h":11,"t":66,"tokens":[3669,4214,8177,3035],"delegation":[2669,3214,7177,2035],"delegatorTokens":9999999951960}},{"ix":105,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":106,"action":{"kind":"Delegate","val":0,"amt":2392},"partialState":{"h":11,"t":66,"tokens":[6061,4214,8177,3035],"delegation":[5061,3214,7177,2035],"delegatorTokens":9999999949568}},{"ix":107,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":12,"t":72,"consumerPower":[8184,null,null,6539],"outstandingDowntime":[true,false,false,false]}},{"ix":108,"action":{"kind":"Delegate","val":1,"amt":4832},"partialState":{"h":11,"t":66,"tokens":[6061,9046,8177,3035],"delegation":[5061,8046,7177,2035],"delegatorTokens":9999999944736}},{"ix":109,"action":{"kind":"Delegate","val":1,"amt":1982},"partialState":{"h":11,"t":66,"tokens":[6061,11028,8177,3035],"delegation":[5061,10028,7177,2035],"delegatorTokens":9999999942754}},{"ix":110,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":111,"action":{"kind":"Deliver","chain":"consumer","numPackets":1},"partialState":{"h":12,"t":72,"consumerPower":[8184,null,null,6539],"outstandingDowntime":[true,false,false,false]}},{"ix":112,"action":{"kind":"Deliver","chain":"consumer","numPackets":6},"partialState":{"h":12,"t":72,"consumerPower":[8184,null,null,6539],"outstandingDowntime":[true,false,false,false]}},{"ix":113,"action":{"kind":"Delegate","val":2,"amt":2996},"partialState":{"h":11,"t":66,"tokens":[6061,11028,11173,3035],"delegation":[5061,10028,10173,2035],"delegatorTokens":9999999939758}},{"ix":114,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":12,"t":72,"tokens":[6061,11028,11173,3035],"delegation":[5061,10028,10173,2035],"delegatorTokens":9999999939758,"jailed":[1000000000000059,1000000000000041,1000000000000041,null],"status":["unbonding","unbonding","unbonding","bonded"]}},{"ix":115,"action":{"kind":"Undelegate","val":0,"amt":2830},"partialState":{"h":12,"t":72,"tokens":[3231,11028,11173,3035],"delegation":[2231,10028,10173,2035],"delegatorTokens":9999999939758}},{"ix":116,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":117,"action":{"kind":"Delegate","val":1,"amt":3649},"partialState":{"h":12,"t":72,"tokens":[3231,14677,11173,3035],"delegation":[2231,13677,10173,2035],"delegatorTokens":9999999936109}},{"ix":118,"action":{"kind":"Delegate","val":2,"amt":3918},"partialState":{"h":12,"t":72,"tokens":[3231,14677,15091,3035],"delegation":[2231,13677,14091,2035],"delegatorTokens":9999999932191}},{"ix":119,"action":{"kind":"Undelegate","val":1,"amt":2472},"partialState":{"h":12,"t":72,"tokens":[3231,12205,15091,3035],"delegation":[2231,11205,14091,2035],"delegatorTokens":9999999932191}},{"ix":120,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":13,"t":78,"tokens":[3231,12205,15091,3035],"delegation":[2231,11205,14091,2035],"delegatorTokens":9999999932191,"jailed":[1000000000000059,1000000000000041,1000000000000041,null],"status":["unbonding","unbonding","unbonding","bonded"]}},{"ix":121,"action":{"kind":"Deliver","chain":"consumer","numPackets":1},"partialState":{"h":12,"t":72,"consumerPower":[8184,null,null,6539],"outstandingDowntime":[false,false,false,false]}},{"ix":122,"action":{"kind":"Undelegate","val":2,"amt":3396},"partialState":{"h":13,"t":78,"tokens":[3231,12205,11695,3035],"delegation":[2231,11205,10695,2035],"delegatorTokens":9999999932191}},{"ix":123,"action":{"kind":"Deliver","chain":"consumer","numPackets":6},"partialState":{"h":12,"t":72,"consumerPower":[8184,null,null,6539],"outstandingDowntime":[false,false,false,false]}},{"ix":124,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":14,"t":84,"tokens":[3231,12205,11695,3035],"delegation":[2231,11205,10695,2035],"delegatorTokens":9999999932191,"jailed":[1000000000000059,1000000000000041,1000000000000041,null],"status":["unbonding","unbonding","unbonding","bonded"]}},{"ix":125,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":126,"action":{"kind":"Deliver","chain":"provider","numPackets":3},"partialState":{"h":14,"t":84,"tokens":[3231,12205,11695,3035],"delegation":[2231,11205,10695,2035],"delegatorTokens":9999999932191,"jailed":[1000000000000059,1000000000000041,1000000000000041,null],"status":["unbonding","unbonding","unbonding","bonded"]}},{"ix":127,"action":{"kind":"Deliver","chain":"provider","numPackets":2},"partialState":{"h":14,"t":84,"tokens":[3231,12205,11695,3035],"delegation":[2231,11205,10695,2035],"delegatorTokens":9999999932191,"jailed":[1000000000000059,1000000000000041,1000000000000041,null],"status":["unbonding","unbonding","unbonding","bonded"]}},{"ix":128,"action":{"kind":"Delegate","val":1,"amt":3905},"partialState":{"h":14,"t":84,"tokens":[3231,16110,11695,3035],"delegation":[2231,15110,10695,2035],"delegatorTokens":9999999928286}},{"ix":129,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":13,"t":78,"consumerPower":[null,null,null,3035],"outstandingDowntime":[false,false,false,false]}},{"ix":130,"action":{"kind":"Deliver","chain":"consumer","numPackets":2},"partialState":{"h":13,"t":78,"consumerPower":[null,null,null,3035],"outstandingDowntime":[false,false,false,false]}},{"ix":131,"action":{"kind":"Undelegate","val":3,"amt":1056},"partialState":{"h":14,"t":84,"tokens":[3231,16110,11695,1979],"delegation":[2231,15110,10695,979],"delegatorTokens":9999999928286}},{"ix":132,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":14,"t":84,"consumerPower":[null,null,null,3035],"outstandingDowntime":[false,false,false,false]}},{"ix":133,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":134,"action":{"kind":"Undelegate","val":2,"amt":2589},"partialState":{"h":14,"t":84,"tokens":[3231,16110,9106,1979],"delegation":[2231,15110,8106,979],"delegatorTokens":9999999928286}},{"ix":135,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":136,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":15,"t":90,"tokens":[3231,16110,9106,1979],"delegation":[2231,15110,8106,979],"delegatorTokens":9999999928286,"jailed":[1000000000000059,1000000000000041,1000000000000041,null],"status":["unbonding","unbonding","unbonding","bonded"]}},{"ix":137,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":16,"t":96,"tokens":[3231,16110,9106,1979],"delegation":[2231,15110,8106,979],"delegatorTokens":9999999928286,"jailed":[1000000000000059,1000000000000041,1000000000000041,null],"status":["unbonding","unbonding","unbonding","bonded"]}},{"ix":138,"action":{"kind":"Deliver","chain":"provider","numPackets":5},"partialState":{"h":16,"t":96,"tokens":[3231,16110,9106,1979],"delegation":[2231,15110,8106,979],"delegatorTokens":9999999928286,"jailed":[1000000000000059,1000000000000041,1000000000000041,null],"status":["unbonding","unbonding","unbonding","bonded"]}},{"ix":139,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":17,"t":102,"tokens":[3231,16110,9106,1979],"delegation":[2231,15110,8106,979],"delegatorTokens":9999999928286,"jailed":[1000000000000059,1000000000000041,1000000000000041,null],"status":["unbonding","unbonding","unbonding","bonded"]}},{"ix":140,"action":{"kind":"Undelegate","val":1,"amt":1994},"partialState":{"h":17,"t":102,"tokens":[3231,14116,9106,1979],"delegation":[2231,13116,8106,979],"delegatorTokens":9999999928286}},{"ix":141,"action":{"kind":"Deliver","chain":"provider","numPackets":3},"partialState":{"h":17,"t":102,"tokens":[3231,14116,9106,1979],"delegation":[2231,13116,8106,979],"delegatorTokens":9999999928286,"jailed":[1000000000000059,1000000000000041,1000000000000041,null],"status":["unbonding","unbonding","unbonding","bonded"]}},{"ix":142,"action":{"kind":"Delegate","val":3,"amt":2312},"partialState":{"h":17,"t":102,"tokens":[3231,14116,9106,4291],"delegation":[2231,13116,8106,3291],"delegatorTokens":9999999925974}},{"ix":143,"action":{"kind":"Deliver","chain":"consumer","numPackets":4},"partialState":{"h":14,"t":84,"consumerPower":[null,null,null,3035],"outstandingDowntime":[false,false,false,false]}},{"ix":144,"action":{"kind":"Deliver","chain":"provider","numPackets":2},"partialState":{"h":17,"t":102,"tokens":[3231,14116,9106,4291],"delegation":[2231,13116,8106,3291],"delegatorTokens":9999999925974,"jailed":[1000000000000059,1000000000000041,1000000000000041,null],"status":["unbonding","unbonding","unbonding","bonded"]}},{"ix":145,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":15,"t":90,"consumerPower":[null,null,null,1979],"outstandingDowntime":[false,false,false,false]}},{"ix":146,"action":{"kind":"Delegate","val":3,"amt":2532},"partialState":{"h":17,"t":102,"tokens":[3231,14116,9106,6823],"delegation":[2231,13116,8106,5823],"delegatorTokens":9999999923442}},{"ix":147,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":148,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":149,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":150,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":151,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":152,"action":{"kind":"Deliver","chain":"provider","numPackets":5},"partialState":{"h":17,"t":102,"tokens":[3231,14116,9106,6823],"delegation":[2231,13116,8106,5823],"delegatorTokens":9999999923442,"jailed":[1000000000000059,1000000000000041,1000000000000041,null],"status":["unbonding","unbonding","unbonding","bonded"]}},{"ix":153,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":16,"t":96,"consumerPower":[null,null,null,1979],"outstandingDowntime":[false,false,false,false]}},{"ix":154,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":155,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":17,"t":102,"consumerPower":[null,null,null,1979],"outstandingDowntime":[false,false,false,false]}},{"ix":156,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":18,"t":108,"consumerPower":[null,null,null,1979],"outstandingDowntime":[false,false,false,false]}},{"ix":157,"action":{"kind":"Undelegate","val":1,"amt":2708},"partialState":{"h":17,"t":102,"tokens":[3231,11408,9106,6823],"delegation":[2231,10408,8106,5823],"delegatorTokens":9999999923442}},{"ix":158,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":159,"action":{"kind":"Delegate","val":1,"amt":4359},"partialState":{"h":17,"t":102,"tokens":[3231,15767,9106,6823],"delegation":[2231,14767,8106,5823],"delegatorTokens":9999999919083}},{"ix":160,"action":{"kind":"Deliver","chain":"provider","numPackets":1},"partialState":{"h":17,"t":102,"tokens":[3231,15767,9106,6823],"delegation":[2231,14767,8106,5823],"delegatorTokens":9999999919083,"jailed":[1000000000000059,1000000000000041,1000000000000041,null],"status":["unbonding","unbonding","unbonding","bonded"]}},{"ix":161,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":19,"t":114,"consumerPower":[null,null,null,1979],"outstandingDowntime":[false,false,false,false]}},{"ix":162,"action":{"kind":"Delegate","val":0,"amt":3158},"partialState":{"h":17,"t":102,"tokens":[6389,15767,9106,6823],"delegation":[5389,14767,8106,5823],"delegatorTokens":9999999915925}},{"ix":163,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":164,"action":{"kind":"Undelegate","val":0,"amt":2084},"partialState":{"h":17,"t":102,"tokens":[4305,15767,9106,6823],"delegation":[3305,14767,8106,5823],"delegatorTokens":9999999915925}},{"ix":165,"action":{"kind":"Deliver","chain":"consumer","numPackets":2},"partialState":{"h":19,"t":114,"consumerPower":[null,null,null,1979],"outstandingDowntime":[false,false,false,false]}},{"ix":166,"action":{"kind":"Deliver","chain":"provider","numPackets":6},"partialState":{"h":17,"t":102,"tokens":[4305,15767,9106,6823],"delegation":[3305,14767,8106,5823],"delegatorTokens":9999999915925,"jailed":[1000000000000059,1000000000000041,1000000000000041,null],"status":["unbonding","unbonding","unbonding","bonded"]}},{"ix":167,"action":{"kind":"Undelegate","val":1,"amt":3440},"partialState":{"h":17,"t":102,"tokens":[4305,12327,9106,6823],"delegation":[3305,11327,8106,5823],"delegatorTokens":9999999915925}},{"ix":168,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":169,"action":{"kind":"Deliver","chain":"provider","numPackets":4},"partialState":{"h":17,"t":102,"tokens":[4305,12327,9106,6823],"delegation":[3305,11327,8106,5823],"delegatorTokens":9999999915925,"jailed":[1000000000000059,1000000000000041,1000000000000041,null],"status":["unbonding","unbonding","unbonding","bonded"]}},{"ix":170,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":20,"t":120,"consumerPower":[null,null,null,1979],"outstandingDowntime":[false,false,false,false]}},{"ix":171,"action":{"kind":"Delegate","val":0,"amt":2746},"partialState":{"h":17,"t":102,"tokens":[7051,12327,9106,6823],"delegation":[6051,11327,8106,5823],"delegatorTokens":9999999913179}},{"ix":172,"action":{"kind":"Deliver","chain":"consumer","numPackets":4},"partialState":{"h":20,"t":120,"consumerPower":[null,null,null,1979],"outstandingDowntime":[false,false,false,false]}},{"ix":173,"action":{"kind":"Deliver","chain":"provider","numPackets":5},"partialState":{"h":17,"t":102,"tokens":[7051,12327,9106,6823],"delegation":[6051,11327,8106,5823],"delegatorTokens":9999999913179,"jailed":[1000000000000059,1000000000000041,1000000000000041,null],"status":["unbonding","unbonding","unbonding","bonded"]}},{"ix":174,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":175,"action":{"kind":"Undelegate","val":0,"amt":4756},"partialState":{"h":17,"t":102,"tokens":[2295,12327,9106,6823],"delegation":[1295,11327,8106,5823],"delegatorTokens":9999999913179}},{"ix":176,"action":{"kind":"Delegate","val":3,"amt":1004},"partialState":{"h":17,"t":102,"tokens":[2295,12327,9106,7827],"delegation":[1295,11327,8106,6827],"delegatorTokens":9999999912175}},{"ix":177,"action":{"kind":"Deliver","chain":"consumer","numPackets":4},"partialState":{"h":20,"t":120,"consumerPower":[null,null,null,1979],"outstandingDowntime":[false,false,false,false]}},{"ix":178,"action":{"kind":"Deliver","chain":"provider","numPackets":3},"partialState":{"h":17,"t":102,"tokens":[2295,12327,9106,7827],"delegation":[1295,11327,8106,6827],"delegatorTokens":9999999912175,"jailed":[1000000000000059,1000000000000041,1000000000000041,null],"status":["unbonding","unbonding","unbonding","bonded"]}},{"ix":179,"action":{"kind":"Undelegate","val":3,"amt":1129},"partialState":{"h":17,"t":102,"tokens":[2295,12327,9106,6698],"delegation":[1295,11327,8106,5698],"delegatorTokens":9999999912175}},{"ix":180,"action":{"kind":"Delegate","val":2,"amt":4393},"partialState":{"h":17,"t":102,"tokens":[2295,12327,13499,6698],"delegation":[1295,11327,12499,5698],"delegatorTokens":9999999907782}},{"ix":181,"action":{"kind":"Undelegate","val":1,"amt":2182},"partialState":{"h":17,"t":102,"tokens":[2295,10145,13499,6698],"delegation":[1295,9145,12499,5698],"delegatorTokens":9999999907782}},{"ix":182,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":183,"action":{"kind":"Undelegate","val":3,"amt":1697},"partialState":{"h":17,"t":102,"tokens":[2295,10145,13499,5001],"delegation":[1295,9145,12499,4001],"delegatorTokens":9999999907782}},{"ix":184,"action":{"kind":"Delegate","val":1,"amt":4467},"partialState":{"h":17,"t":102,"tokens":[2295,14612,13499,5001],"delegation":[1295,13612,12499,4001],"delegatorTokens":9999999903315}},{"ix":185,"action":{"kind":"Delegate","val":1,"amt":2392},"partialState":{"h":17,"t":102,"tokens":[2295,17004,13499,5001],"delegation":[1295,16004,12499,4001],"delegatorTokens":9999999900923}},{"ix":186,"action":{"kind":"Delegate","val":0,"amt":4730},"partialState":{"h":17,"t":102,"tokens":[7025,17004,13499,5001],"delegation":[6025,16004,12499,4001],"delegatorTokens":9999999896193}},{"ix":187,"action":{"kind":"Deliver","chain":"consumer","numPackets":1},"partialState":{"h":20,"t":120,"consumerPower":[null,null,null,1979],"outstandingDowntime":[false,false,false,false]}},{"ix":188,"action":{"kind":"Undelegate","val":3,"amt":1375},"partialState":{"h":17,"t":102,"tokens":[7025,17004,13499,3626],"delegation":[6025,16004,12499,2626],"delegatorTokens":9999999896193}},{"ix":189,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":18,"t":108,"tokens":[7025,17004,13499,3626],"delegation":[6025,16004,12499,2626],"delegatorTokens":9999999917835,"jailed":[1000000000000059,1000000000000041,1000000000000041,null],"status":["unbonding","unbonding","unbonding","bonded"]}},{"ix":190,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":191,"action":{"kind":"Deliver","chain":"consumer","numPackets":5},"partialState":{"h":20,"t":120,"consumerPower":[null,null,null,1979],"outstandingDowntime":[false,false,false,false]}},{"ix":192,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":21,"t":126,"consumerPower":[null,null,null,1979],"outstandingDowntime":[false,false,false,false]}},{"ix":193,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":194,"action":{"kind":"Delegate","val":3,"amt":4065},"partialState":{"h":18,"t":108,"tokens":[7025,17004,13499,7691],"delegation":[6025,16004,12499,6691],"delegatorTokens":9999999913770}},{"ix":195,"action":{"kind":"Undelegate","val":3,"amt":3580},"partialState":{"h":18,"t":108,"tokens":[7025,17004,13499,4111],"delegation":[6025,16004,12499,3111],"delegatorTokens":9999999913770}},{"ix":196,"action":{"kind":"Deliver","chain":"consumer","numPackets":5},"partialState":{"h":21,"t":126,"consumerPower":[null,null,null,1979],"outstandingDowntime":[false,false,false,false]}},{"ix":197,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":19,"t":114,"tokens":[7025,17004,13499,4111],"delegation":[6025,16004,12499,3111],"delegatorTokens":9999999920261,"jailed":[1000000000000059,1000000000000041,1000000000000041,null],"status":["unbonding","unbonded","unbonded","bonded"]}},{"ix":198,"action":{"kind":"Delegate","val":1,"amt":1847},"partialState":{"h":19,"t":114,"tokens":[7025,18851,13499,4111],"delegation":[6025,17851,12499,3111],"delegatorTokens":9999999918414}},{"ix":199,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}}],"events":["send_vsc_without_downtime_ack","insufficient_shares","send_downtime_slash_request","send_vsc_without_downtime_ack","send_double_sign_slash_request","send_downtime_slash_request","insufficient_shares","send_double_sign_slash_request","downtime_slash_request_outstanding","receive_double_sign_slash_request","receive_downtime_slash_request","jail","receive_downtime_slash_request","jail","send_vsc_with_downtime_ack","send_vsc_without_downtime_ack","receive_downtime_slash_ack","receive_downtime_slash_ack","send_downtime_slash_request","send_downtime_slash_request","consumer_update_val","consumer_del_val","consumer_add_val","insufficient_shares","send_vsc_without_downtime_ack","receive_double_sign_slash_request","send_vsc_without_downtime_ack","send_double_sign_slash_request","receive_downtime_slash_request","jail","receive_downtime_slash_request","jail","send_vsc_with_downtime_ack","send_downtime_slash_request","insufficient_shares","receive_downtime_slash_ack","receive_downtime_slash_ack","insufficient_shares","consumer_del_val","consumer_add_val","consumer_update_val","send_vsc_without_downtime_ack","receive_double_sign_slash_request","receive_downtime_slash_request","jail","send_vsc_with_downtime_ack","insufficient_shares","send_vsc_without_downtime_ack","send_vsc_not_because_change","send_vsc_without_downtime_ack","receive_downtime_slash_ack","send_vsc_not_because_change","send_vsc_without_downtime_ack","consumer_del_val","consumer_update_val","some_undels_expired_but_not_completed","send_vsc_without_downtime_ack","some_undels_expired_but_not_completed","consumer_update_val","consumer_send_maturation","consumer_send_maturation","consumer_send_maturation","consumer_send_maturation","consumer_send_maturation","consumer_send_maturation","consumer_send_maturation","some_undels_expired_but_not_completed","set_unval_hold_false","complete_undel_immediate","complete_undel_immediate","complete_undel_immediate","complete_undel_immediate","complete_undel_immediate","set_unval_hold_false","complete_undel_immediate","complete_undel_immediate","complete_undel_immediate","complete_undel_immediate","set_undel_hold_false","set_undel_hold_false","set_undel_hold_false","send_vsc_without_downtime_ack","complete_unval_in_endblock","complete_unval_in_endblock","complete_undel_in_endblock","send_vsc_without_downtime_ack"]},{"meta":{"commit":"7ffd0c04e4205cbc9caf212abfe6c59ee43153bf"},"constants":{"P":"provider","C":"consumer","UNBONDING_SECONDS_P":70,"UNBONDING_SECONDS_C":50,"TRUSTING_SECONDS":49,"NUM_VALIDATORS":4,"MAX_VALIDATORS":2,"SLASH_DOUBLESIGN":0,"SLASH_DOWNTIME":0,"JAIL_SECONDS":999999999999999,"BLOCK_SECONDS":6,"INITIAL_DELEGATOR_TOKENS":10000000000000,"DELEGATE_AMT_MIN":1000,"DELEGATE_AMT_MAX":5000,"UNDELEGATE_AMT_MIN":1000,"UNDELEGATE_AMT_MAX":5000,"ISDOWNTIME_PROBABILITY":0.5,"MAX_NUM_PACKETS_FOR_DELIVER":6},"actions":[{"ix":0,"action":{"kind":"Undelegate","val":3,"amt":1304},"partialState":{"h":1,"t":6,"tokens":[5000,4000,3000,2000],"delegation":[4000,3000,2000,1000],"delegatorTokens":10000000000000}},{"ix":1,"action":{"kind":"Undelegate","val":1,"amt":2709},"partialState":{"h":1,"t":6,"tokens":[5000,1291,3000,2000],"delegation":[4000,291,2000,1000],"delegatorTokens":10000000000000}},{"ix":2,"action":{"kind":"Delegate","val":1,"amt":4245},"partialState":{"h":1,"t":6,"tokens":[5000,5536,3000,2000],"delegation":[4000,4536,2000,1000],"delegatorTokens":9999999995755}},{"ix":3,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":4,"action":{"kind":"ConsumerSlash","val":3,"infractionHeight":0,"isDowntime":true},"partialState":{"h":1,"t":6,"outstandingDowntime":[false,false,false,true]}},{"ix":5,"action":{"kind":"Delegate","val":0,"amt":3733},"partialState":{"h":1,"t":6,"tokens":[8733,5536,3000,2000],"delegation":[7733,4536,2000,1000],"delegatorTokens":9999999992022}},{"ix":6,"action":{"kind":"ConsumerSlash","val":3,"infractionHeight":0,"isDowntime":true},"partialState":{"h":1,"t":6,"outstandingDowntime":[false,false,false,true]}},{"ix":7,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":8,"action":{"kind":"Deliver","chain":"provider","numPackets":6},"partialState":{"h":1,"t":6,"tokens":[8733,5536,3000,2000],"delegation":[7733,4536,2000,1000],"delegatorTokens":9999999992022,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":9,"action":{"kind":"Undelegate","val":3,"amt":1574},"partialState":{"h":1,"t":6,"tokens":[8733,5536,3000,2000],"delegation":[7733,4536,2000,1000],"delegatorTokens":9999999992022}},{"ix":10,"action":{"kind":"Delegate","val":2,"amt":2873},"partialState":{"h":1,"t":6,"tokens":[8733,5536,5873,2000],"delegation":[7733,4536,4873,1000],"delegatorTokens":9999999989149}},{"ix":11,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":2,"t":12,"tokens":[8733,5536,5873,2000],"delegation":[7733,4536,4873,1000],"delegatorTokens":9999999989149,"jailed":[null,null,null,null],"status":["bonded","unbonding","bonded","unbonded"]}},{"ix":12,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":3,"t":18,"tokens":[8733,5536,5873,2000],"delegation":[7733,4536,4873,1000],"delegatorTokens":9999999989149,"jailed":[null,null,null,null],"status":["bonded","unbonding","bonded","unbonded"]}},{"ix":13,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":2,"t":12,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,false,false,true]}},{"ix":14,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":4,"t":24,"tokens":[8733,5536,5873,2000],"delegation":[7733,4536,4873,1000],"delegatorTokens":9999999989149,"jailed":[null,null,null,null],"status":["bonded","unbonding","bonded","unbonded"]}},{"ix":15,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":5,"t":30,"tokens":[8733,5536,5873,2000],"delegation":[7733,4536,4873,1000],"delegatorTokens":9999999989149,"jailed":[null,null,null,null],"status":["bonded","unbonding","bonded","unbonded"]}},{"ix":16,"action":{"kind":"Delegate","val":0,"amt":1310},"partialState":{"h":5,"t":30,"tokens":[10043,5536,5873,2000],"delegation":[9043,4536,4873,1000],"delegatorTokens":9999999987839}},{"ix":17,"action":{"kind":"Undelegate","val":3,"amt":4016},"partialState":{"h":5,"t":30,"tokens":[10043,5536,5873,2000],"delegation":[9043,4536,4873,1000],"delegatorTokens":9999999987839}},{"ix":18,"action":{"kind":"Delegate","val":0,"amt":1159},"partialState":{"h":5,"t":30,"tokens":[11202,5536,5873,2000],"delegation":[10202,4536,4873,1000],"delegatorTokens":9999999986680}},{"ix":19,"action":{"kind":"Deliver","chain":"consumer","numPackets":5},"partialState":{"h":2,"t":12,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,false,false,true]}},{"ix":20,"action":{"kind":"Delegate","val":3,"amt":4308},"partialState":{"h":5,"t":30,"tokens":[11202,5536,5873,6308],"delegation":[10202,4536,4873,5308],"delegatorTokens":9999999982372}},{"ix":21,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":6,"t":36,"tokens":[11202,5536,5873,6308],"delegation":[10202,4536,4873,5308],"delegatorTokens":9999999982372,"jailed":[null,null,null,null],"status":["bonded","unbonding","unbonding","bonded"]}},{"ix":22,"action":{"kind":"Undelegate","val":2,"amt":2839},"partialState":{"h":6,"t":36,"tokens":[11202,5536,3034,6308],"delegation":[10202,4536,2034,5308],"delegatorTokens":9999999982372}},{"ix":23,"action":{"kind":"Delegate","val":3,"amt":2753},"partialState":{"h":6,"t":36,"tokens":[11202,5536,3034,9061],"delegation":[10202,4536,2034,8061],"delegatorTokens":9999999979619}},{"ix":24,"action":{"kind":"ConsumerSlash","val":0,"infractionHeight":0,"isDowntime":true},"partialState":{"h":2,"t":12,"outstandingDowntime":[true,false,false,true]}},{"ix":25,"action":{"kind":"Delegate","val":0,"amt":1307},"partialState":{"h":6,"t":36,"tokens":[12509,5536,3034,9061],"delegation":[11509,4536,2034,8061],"delegatorTokens":9999999978312}},{"ix":26,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":7,"t":42,"tokens":[12509,5536,3034,9061],"delegation":[11509,4536,2034,8061],"delegatorTokens":9999999978312,"jailed":[null,null,null,null],"status":["bonded","unbonding","unbonding","bonded"]}},{"ix":27,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":28,"action":{"kind":"Undelegate","val":2,"amt":1296},"partialState":{"h":7,"t":42,"tokens":[12509,5536,1738,9061],"delegation":[11509,4536,738,8061],"delegatorTokens":9999999978312}},{"ix":29,"action":{"kind":"Deliver","chain":"provider","numPackets":6},"partialState":{"h":7,"t":42,"tokens":[12509,5536,1738,9061],"delegation":[11509,4536,738,8061],"delegatorTokens":9999999978312,"jailed":[null,null,null,null],"status":["bonded","unbonding","unbonding","bonded"]}},{"ix":30,"action":{"kind":"Delegate","val":0,"amt":1219},"partialState":{"h":7,"t":42,"tokens":[13728,5536,1738,9061],"delegation":[12728,4536,738,8061],"delegatorTokens":9999999977093}},{"ix":31,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":32,"action":{"kind":"ConsumerSlash","val":0,"infractionHeight":1,"isDowntime":false},"partialState":{"h":2,"t":12,"outstandingDowntime":[true,false,false,true]}},{"ix":33,"action":{"kind":"Delegate","val":2,"amt":1617},"partialState":{"h":7,"t":42,"tokens":[13728,5536,3355,9061],"delegation":[12728,4536,2355,8061],"delegatorTokens":9999999975476}},{"ix":34,"action":{"kind":"ConsumerSlash","val":0,"infractionHeight":0,"isDowntime":false},"partialState":{"h":2,"t":12,"outstandingDowntime":[true,false,false,true]}},{"ix":35,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":8,"t":48,"tokens":[13728,5536,3355,9061],"delegation":[12728,4536,2355,8061],"delegatorTokens":9999999975476,"jailed":[null,null,null,null],"status":["bonded","unbonding","unbonding","bonded"]}},{"ix":36,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":37,"action":{"kind":"ConsumerSlash","val":2,"infractionHeight":0,"isDowntime":true},"partialState":{"h":2,"t":12,"outstandingDowntime":[true,false,true,true]}},{"ix":38,"action":{"kind":"Undelegate","val":3,"amt":1492},"partialState":{"h":8,"t":48,"tokens":[13728,5536,3355,7569],"delegation":[12728,4536,2355,6569],"delegatorTokens":9999999975476}},{"ix":39,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":40,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":41,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":9,"t":54,"tokens":[13728,5536,3355,7569],"delegation":[12728,4536,2355,6569],"delegatorTokens":9999999975476,"jailed":[null,null,null,null],"status":["bonded","unbonding","unbonding","bonded"]}},{"ix":42,"action":{"kind":"Undelegate","val":3,"amt":4872},"partialState":{"h":9,"t":54,"tokens":[13728,5536,3355,2697],"delegation":[12728,4536,2355,1697],"delegatorTokens":9999999975476}},{"ix":43,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":3,"t":18,"consumerPower":[8733,null,5873,null],"outstandingDowntime":[true,false,true,true]}},{"ix":44,"action":{"kind":"Undelegate","val":0,"amt":4792},"partialState":{"h":9,"t":54,"tokens":[8936,5536,3355,2697],"delegation":[7936,4536,2355,1697],"delegatorTokens":9999999975476}},{"ix":45,"action":{"kind":"Undelegate","val":3,"amt":3134},"partialState":{"h":9,"t":54,"tokens":[8936,5536,3355,2697],"delegation":[7936,4536,2355,1697],"delegatorTokens":9999999975476}},{"ix":46,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":47,"action":{"kind":"Delegate","val":1,"amt":4210},"partialState":{"h":9,"t":54,"tokens":[8936,9746,3355,2697],"delegation":[7936,8746,2355,1697],"delegatorTokens":9999999971266}},{"ix":48,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":49,"action":{"kind":"Deliver","chain":"provider","numPackets":4},"partialState":{"h":9,"t":54,"tokens":[8936,9746,3355,2697],"delegation":[7936,8746,2355,1697],"delegatorTokens":9999999971266,"jailed":[null,null,null,null],"status":["bonded","unbonding","unbonding","bonded"]}},{"ix":50,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":4,"t":24,"consumerPower":[8733,null,5873,null],"outstandingDowntime":[true,false,true,true]}},{"ix":51,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":52,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":10,"t":60,"tokens":[8936,9746,3355,2697],"delegation":[7936,8746,2355,1697],"delegatorTokens":9999999971266,"jailed":[null,null,null,1000000000000053],"status":["bonded","bonded","unbonding","unbonding"]}},{"ix":53,"action":{"kind":"Delegate","val":2,"amt":2065},"partialState":{"h":10,"t":60,"tokens":[8936,9746,5420,2697],"delegation":[7936,8746,4420,1697],"delegatorTokens":9999999969201}},{"ix":54,"action":{"kind":"Delegate","val":3,"amt":4734},"partialState":{"h":10,"t":60,"tokens":[8936,9746,5420,7431],"delegation":[7936,8746,4420,6431],"delegatorTokens":9999999964467}},{"ix":55,"action":{"kind":"Delegate","val":1,"amt":4077},"partialState":{"h":10,"t":60,"tokens":[8936,13823,5420,7431],"delegation":[7936,12823,4420,6431],"delegatorTokens":9999999960390}},{"ix":56,"action":{"kind":"Deliver","chain":"consumer","numPackets":2},"partialState":{"h":4,"t":24,"consumerPower":[8733,null,5873,null],"outstandingDowntime":[true,false,true,true]}},{"ix":57,"action":{"kind":"Delegate","val":1,"amt":1854},"partialState":{"h":10,"t":60,"tokens":[8936,15677,5420,7431],"delegation":[7936,14677,4420,6431],"delegatorTokens":9999999958536}},{"ix":58,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":59,"action":{"kind":"Delegate","val":3,"amt":1157},"partialState":{"h":10,"t":60,"tokens":[8936,15677,5420,8588],"delegation":[7936,14677,4420,7588],"delegatorTokens":9999999957379}},{"ix":60,"action":{"kind":"Deliver","chain":"consumer","numPackets":3},"partialState":{"h":4,"t":24,"consumerPower":[8733,null,5873,null],"outstandingDowntime":[true,false,true,true]}},{"ix":61,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":62,"action":{"kind":"Deliver","chain":"consumer","numPackets":6},"partialState":{"h":4,"t":24,"consumerPower":[8733,null,5873,null],"outstandingDowntime":[true,false,true,true]}},{"ix":63,"action":{"kind":"Delegate","val":1,"amt":1544},"partialState":{"h":10,"t":60,"tokens":[8936,17221,5420,8588],"delegation":[7936,16221,4420,7588],"delegatorTokens":9999999955835}},{"ix":64,"action":{"kind":"Undelegate","val":0,"amt":3570},"partialState":{"h":10,"t":60,"tokens":[5366,17221,5420,8588],"delegation":[4366,16221,4420,7588],"delegatorTokens":9999999955835}},{"ix":65,"action":{"kind":"Deliver","chain":"consumer","numPackets":6},"partialState":{"h":4,"t":24,"consumerPower":[8733,null,5873,null],"outstandingDowntime":[true,false,true,true]}},{"ix":66,"action":{"kind":"Delegate","val":3,"amt":3562},"partialState":{"h":10,"t":60,"tokens":[5366,17221,5420,12150],"delegation":[4366,16221,4420,11150],"delegatorTokens":9999999952273}},{"ix":67,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":5,"t":30,"consumerPower":[13728,null,null,7569],"outstandingDowntime":[true,false,true,true]}},{"ix":68,"action":{"kind":"Deliver","chain":"provider","numPackets":3},"partialState":{"h":10,"t":60,"tokens":[5366,17221,5420,12150],"delegation":[4366,16221,4420,11150],"delegatorTokens":9999999952273,"jailed":[null,null,null,1000000000000053],"status":["bonded","bonded","unbonding","unbonding"]}},{"ix":69,"action":{"kind":"Deliver","chain":"provider","numPackets":2},"partialState":{"h":10,"t":60,"tokens":[5366,17221,5420,12150],"delegation":[4366,16221,4420,11150],"delegatorTokens":9999999952273,"jailed":[null,null,null,1000000000000053],"status":["bonded","bonded","unbonding","unbonding"]}},{"ix":70,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":11,"t":66,"tokens":[5366,17221,5420,12150],"delegation":[4366,16221,4420,11150],"delegatorTokens":9999999952273,"jailed":[1000000000000059,null,1000000000000059,1000000000000053],"status":["unbonding","bonded","bonded","unbonding"]}},{"ix":71,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":12,"t":72,"tokens":[5366,17221,5420,12150],"delegation":[4366,16221,4420,11150],"delegatorTokens":9999999952273,"jailed":[1000000000000059,null,1000000000000059,1000000000000053],"status":["unbonding","bonded","unbonding","unbonding"]}},{"ix":72,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":73,"action":{"kind":"Deliver","chain":"consumer","numPackets":5},"partialState":{"h":5,"t":30,"consumerPower":[13728,null,null,7569],"outstandingDowntime":[false,false,false,false]}},{"ix":74,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":6,"t":36,"consumerPower":[null,17221,5420,null],"outstandingDowntime":[false,false,false,false]}},{"ix":75,"action":{"kind":"Undelegate","val":3,"amt":3630},"partialState":{"h":12,"t":72,"tokens":[5366,17221,5420,8520],"delegation":[4366,16221,4420,7520],"delegatorTokens":9999999952273}},{"ix":76,"action":{"kind":"Delegate","val":1,"amt":1170},"partialState":{"h":12,"t":72,"tokens":[5366,18391,5420,8520],"delegation":[4366,17391,4420,7520],"delegatorTokens":9999999951103}},{"ix":77,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":7,"t":42,"consumerPower":[null,17221,5420,null],"outstandingDowntime":[false,false,false,false]}},{"ix":78,"action":{"kind":"Undelegate","val":2,"amt":1187},"partialState":{"h":12,"t":72,"tokens":[5366,18391,4233,8520],"delegation":[4366,17391,3233,7520],"delegatorTokens":9999999951103}},{"ix":79,"action":{"kind":"Deliver","chain":"provider","numPackets":2},"partialState":{"h":12,"t":72,"tokens":[5366,18391,4233,8520],"delegation":[4366,17391,3233,7520],"delegatorTokens":9999999951103,"jailed":[1000000000000059,null,1000000000000059,1000000000000053],"status":["unbonding","bonded","unbonding","unbonding"]}},{"ix":80,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":8,"t":48,"consumerPower":[null,17221,5420,null],"outstandingDowntime":[false,false,false,false]}},{"ix":81,"action":{"kind":"Deliver","chain":"consumer","numPackets":2},"partialState":{"h":8,"t":48,"consumerPower":[null,17221,5420,null],"outstandingDowntime":[false,false,false,false]}},{"ix":82,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":83,"action":{"kind":"Undelegate","val":2,"amt":1691},"partialState":{"h":12,"t":72,"tokens":[5366,18391,2542,8520],"delegation":[4366,17391,1542,7520],"delegatorTokens":9999999951103}},{"ix":84,"action":{"kind":"Deliver","chain":"provider","numPackets":5},"partialState":{"h":12,"t":72,"tokens":[5366,18391,2542,8520],"delegation":[4366,17391,1542,7520],"delegatorTokens":9999999951103,"jailed":[1000000000000059,null,1000000000000059,1000000000000053],"status":["unbonding","bonded","unbonding","unbonding"]}},{"ix":85,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":86,"action":{"kind":"Delegate","val":0,"amt":2326},"partialState":{"h":12,"t":72,"tokens":[7692,18391,2542,8520],"delegation":[6692,17391,1542,7520],"delegatorTokens":9999999948777}},{"ix":87,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":13,"t":78,"tokens":[7692,18391,2542,8520],"delegation":[6692,17391,1542,7520],"delegatorTokens":9999999948777,"jailed":[1000000000000059,null,1000000000000059,1000000000000053],"status":["unbonding","bonded","unbonding","unbonding"]}},{"ix":88,"action":{"kind":"Deliver","chain":"consumer","numPackets":2},"partialState":{"h":8,"t":48,"consumerPower":[null,17221,5420,null],"outstandingDowntime":[false,false,false,false]}},{"ix":89,"action":{"kind":"Undelegate","val":0,"amt":3567},"partialState":{"h":13,"t":78,"tokens":[4125,18391,2542,8520],"delegation":[3125,17391,1542,7520],"delegatorTokens":9999999948777}},{"ix":90,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":9,"t":54,"consumerPower":[null,17221,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":91,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":10,"t":60,"consumerPower":[null,17221,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":92,"action":{"kind":"Deliver","chain":"provider","numPackets":2},"partialState":{"h":13,"t":78,"tokens":[4125,18391,2542,8520],"delegation":[3125,17391,1542,7520],"delegatorTokens":9999999948777,"jailed":[1000000000000059,null,1000000000000059,1000000000000053],"status":["unbonding","bonded","unbonding","unbonding"]}},{"ix":93,"action":{"kind":"Deliver","chain":"consumer","numPackets":5},"partialState":{"h":10,"t":60,"consumerPower":[null,17221,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":94,"action":{"kind":"Deliver","chain":"provider","numPackets":2},"partialState":{"h":13,"t":78,"tokens":[4125,18391,2542,8520],"delegation":[3125,17391,1542,7520],"delegatorTokens":9999999948777,"jailed":[1000000000000059,null,1000000000000059,1000000000000053],"status":["unbonding","bonded","unbonding","unbonding"]}},{"ix":95,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":96,"action":{"kind":"Deliver","chain":"consumer","numPackets":3},"partialState":{"h":10,"t":60,"consumerPower":[null,17221,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":97,"action":{"kind":"Deliver","chain":"consumer","numPackets":6},"partialState":{"h":10,"t":60,"consumerPower":[null,17221,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":98,"action":{"kind":"Delegate","val":3,"amt":4653},"partialState":{"h":13,"t":78,"tokens":[4125,18391,2542,13173],"delegation":[3125,17391,1542,12173],"delegatorTokens":9999999944124}},{"ix":99,"action":{"kind":"Undelegate","val":3,"amt":2327},"partialState":{"h":13,"t":78,"tokens":[4125,18391,2542,10846],"delegation":[3125,17391,1542,9846],"delegatorTokens":9999999944124}},{"ix":100,"action":{"kind":"Deliver","chain":"consumer","numPackets":5},"partialState":{"h":10,"t":60,"consumerPower":[null,17221,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":101,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":14,"t":84,"tokens":[4125,18391,2542,10846],"delegation":[3125,17391,1542,9846],"delegatorTokens":9999999944124,"jailed":[1000000000000059,null,1000000000000059,1000000000000053],"status":["unbonding","bonded","unbonding","unbonding"]}},{"ix":102,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":103,"action":{"kind":"Delegate","val":0,"amt":1381},"partialState":{"h":14,"t":84,"tokens":[5506,18391,2542,10846],"delegation":[4506,17391,1542,9846],"delegatorTokens":9999999942743}},{"ix":104,"action":{"kind":"Deliver","chain":"consumer","numPackets":3},"partialState":{"h":10,"t":60,"consumerPower":[null,17221,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":105,"action":{"kind":"Deliver","chain":"provider","numPackets":1},"partialState":{"h":14,"t":84,"tokens":[5506,18391,2542,10846],"delegation":[4506,17391,1542,9846],"delegatorTokens":9999999942743,"jailed":[1000000000000059,null,1000000000000059,1000000000000053],"status":["unbonding","bonded","unbonding","unbonding"]}},{"ix":106,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":107,"action":{"kind":"Delegate","val":2,"amt":2589},"partialState":{"h":14,"t":84,"tokens":[5506,18391,5131,10846],"delegation":[4506,17391,4131,9846],"delegatorTokens":9999999940154}},{"ix":108,"action":{"kind":"Deliver","chain":"provider","numPackets":6},"partialState":{"h":14,"t":84,"tokens":[5506,18391,5131,10846],"delegation":[4506,17391,4131,9846],"delegatorTokens":9999999940154,"jailed":[1000000000000059,null,1000000000000059,1000000000000053],"status":["unbonding","bonded","unbonding","unbonding"]}},{"ix":109,"action":{"kind":"Deliver","chain":"provider","numPackets":4},"partialState":{"h":14,"t":84,"tokens":[5506,18391,5131,10846],"delegation":[4506,17391,4131,9846],"delegatorTokens":9999999940154,"jailed":[1000000000000059,null,1000000000000059,1000000000000053],"status":["unbonding","bonded","unbonding","unbonding"]}},{"ix":110,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":11,"t":66,"consumerPower":[null,18391,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":111,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":112,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":12,"t":72,"consumerPower":[null,18391,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":113,"action":{"kind":"Deliver","chain":"consumer","numPackets":3},"partialState":{"h":12,"t":72,"consumerPower":[null,18391,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":114,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":115,"action":{"kind":"Delegate","val":3,"amt":2915},"partialState":{"h":14,"t":84,"tokens":[5506,18391,5131,13761],"delegation":[4506,17391,4131,12761],"delegatorTokens":9999999937239}},{"ix":116,"action":{"kind":"Deliver","chain":"consumer","numPackets":5},"partialState":{"h":12,"t":72,"consumerPower":[null,18391,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":117,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":118,"action":{"kind":"Delegate","val":2,"amt":4720},"partialState":{"h":14,"t":84,"tokens":[5506,18391,9851,13761],"delegation":[4506,17391,8851,12761],"delegatorTokens":9999999932519}},{"ix":119,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":120,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":121,"action":{"kind":"Undelegate","val":2,"amt":4994},"partialState":{"h":14,"t":84,"tokens":[5506,18391,4857,13761],"delegation":[4506,17391,3857,12761],"delegatorTokens":9999999932519}},{"ix":122,"action":{"kind":"Undelegate","val":1,"amt":4126},"partialState":{"h":14,"t":84,"tokens":[5506,14265,4857,13761],"delegation":[4506,13265,3857,12761],"delegatorTokens":9999999932519}},{"ix":123,"action":{"kind":"Undelegate","val":2,"amt":1718},"partialState":{"h":14,"t":84,"tokens":[5506,14265,3139,13761],"delegation":[4506,13265,2139,12761],"delegatorTokens":9999999932519}},{"ix":124,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":125,"action":{"kind":"Deliver","chain":"consumer","numPackets":6},"partialState":{"h":12,"t":72,"consumerPower":[null,18391,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":126,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":15,"t":90,"tokens":[5506,14265,3139,13761],"delegation":[4506,13265,2139,12761],"delegatorTokens":9999999932519,"jailed":[1000000000000059,null,1000000000000059,1000000000000053],"status":["unbonding","bonded","unbonding","unbonding"]}},{"ix":127,"action":{"kind":"Deliver","chain":"consumer","numPackets":5},"partialState":{"h":12,"t":72,"consumerPower":[null,18391,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":128,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":16,"t":96,"tokens":[5506,14265,3139,13761],"delegation":[4506,13265,2139,12761],"delegatorTokens":9999999932519,"jailed":[1000000000000059,null,1000000000000059,1000000000000053],"status":["unbonding","bonded","unbonding","unbonding"]}},{"ix":129,"action":{"kind":"Deliver","chain":"provider","numPackets":6},"partialState":{"h":16,"t":96,"tokens":[5506,14265,3139,13761],"delegation":[4506,13265,2139,12761],"delegatorTokens":9999999932519,"jailed":[1000000000000059,null,1000000000000059,1000000000000053],"status":["unbonding","bonded","unbonding","unbonding"]}},{"ix":130,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":17,"t":102,"tokens":[5506,14265,3139,13761],"delegation":[4506,13265,2139,12761],"delegatorTokens":9999999932519,"jailed":[1000000000000059,null,1000000000000059,1000000000000053],"status":["unbonding","bonded","unbonding","unbonding"]}},{"ix":131,"action":{"kind":"Deliver","chain":"provider","numPackets":3},"partialState":{"h":17,"t":102,"tokens":[5506,14265,3139,13761],"delegation":[4506,13265,2139,12761],"delegatorTokens":9999999932519,"jailed":[1000000000000059,null,1000000000000059,1000000000000053],"status":["unbonding","bonded","unbonding","unbonding"]}},{"ix":132,"action":{"kind":"Undelegate","val":0,"amt":4911},"partialState":{"h":17,"t":102,"tokens":[5506,14265,3139,13761],"delegation":[4506,13265,2139,12761],"delegatorTokens":9999999932519}},{"ix":133,"action":{"kind":"Undelegate","val":0,"amt":2047},"partialState":{"h":17,"t":102,"tokens":[3459,14265,3139,13761],"delegation":[2459,13265,2139,12761],"delegatorTokens":9999999932519}},{"ix":134,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":135,"action":{"kind":"Delegate","val":3,"amt":3651},"partialState":{"h":17,"t":102,"tokens":[3459,14265,3139,17412],"delegation":[2459,13265,2139,16412],"delegatorTokens":9999999928868}},{"ix":136,"action":{"kind":"Delegate","val":1,"amt":1558},"partialState":{"h":17,"t":102,"tokens":[3459,15823,3139,17412],"delegation":[2459,14823,2139,16412],"delegatorTokens":9999999927310}},{"ix":137,"action":{"kind":"Delegate","val":1,"amt":4969},"partialState":{"h":17,"t":102,"tokens":[3459,20792,3139,17412],"delegation":[2459,19792,2139,16412],"delegatorTokens":9999999922341}},{"ix":138,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":18,"t":108,"tokens":[3459,20792,3139,17412],"delegation":[2459,19792,2139,16412],"delegatorTokens":9999999922341,"jailed":[1000000000000059,null,1000000000000059,1000000000000053],"status":["unbonding","bonded","unbonding","unbonding"]}},{"ix":139,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":19,"t":114,"tokens":[3459,20792,3139,17412],"delegation":[2459,19792,2139,16412],"delegatorTokens":9999999922341,"jailed":[1000000000000059,null,1000000000000059,1000000000000053],"status":["unbonding","bonded","unbonding","unbonding"]}},{"ix":140,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":141,"action":{"kind":"Undelegate","val":2,"amt":4092},"partialState":{"h":19,"t":114,"tokens":[3459,20792,3139,17412],"delegation":[2459,19792,2139,16412],"delegatorTokens":9999999922341}},{"ix":142,"action":{"kind":"Undelegate","val":1,"amt":2178},"partialState":{"h":19,"t":114,"tokens":[3459,18614,3139,17412],"delegation":[2459,17614,2139,16412],"delegatorTokens":9999999922341}},{"ix":143,"action":{"kind":"Undelegate","val":3,"amt":3239},"partialState":{"h":19,"t":114,"tokens":[3459,18614,3139,14173],"delegation":[2459,17614,2139,13173],"delegatorTokens":9999999922341}},{"ix":144,"action":{"kind":"Undelegate","val":1,"amt":1728},"partialState":{"h":19,"t":114,"tokens":[3459,16886,3139,14173],"delegation":[2459,15886,2139,13173],"delegatorTokens":9999999922341}},{"ix":145,"action":{"kind":"Undelegate","val":3,"amt":3790},"partialState":{"h":19,"t":114,"tokens":[3459,16886,3139,10383],"delegation":[2459,15886,2139,9383],"delegatorTokens":9999999922341}},{"ix":146,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":147,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":13,"t":78,"consumerPower":[null,18391,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":148,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":149,"action":{"kind":"Deliver","chain":"consumer","numPackets":1},"partialState":{"h":13,"t":78,"consumerPower":[null,18391,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":150,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":14,"t":84,"consumerPower":[null,14265,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":151,"action":{"kind":"Undelegate","val":2,"amt":4253},"partialState":{"h":19,"t":114,"tokens":[3459,16886,3139,10383],"delegation":[2459,15886,2139,9383],"delegatorTokens":9999999922341}},{"ix":152,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":153,"action":{"kind":"Undelegate","val":1,"amt":1655},"partialState":{"h":19,"t":114,"tokens":[3459,15231,3139,10383],"delegation":[2459,14231,2139,9383],"delegatorTokens":9999999922341}},{"ix":154,"action":{"kind":"Delegate","val":1,"amt":3560},"partialState":{"h":19,"t":114,"tokens":[3459,18791,3139,10383],"delegation":[2459,17791,2139,9383],"delegatorTokens":9999999918781}},{"ix":155,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":156,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":15,"t":90,"consumerPower":[null,14265,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":157,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":16,"t":96,"consumerPower":[null,14265,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":158,"action":{"kind":"Deliver","chain":"provider","numPackets":5},"partialState":{"h":19,"t":114,"tokens":[3459,18791,3139,10383],"delegation":[2459,17791,2139,9383],"delegatorTokens":9999999918781,"jailed":[1000000000000059,null,1000000000000059,1000000000000053],"status":["unbonding","bonded","unbonding","unbonding"]}},{"ix":159,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":160,"action":{"kind":"Delegate","val":1,"amt":3191},"partialState":{"h":19,"t":114,"tokens":[3459,21982,3139,10383],"delegation":[2459,20982,2139,9383],"delegatorTokens":9999999915590}},{"ix":161,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":162,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":20,"t":120,"tokens":[3459,21982,3139,10383],"delegation":[2459,20982,2139,9383],"delegatorTokens":9999999922434,"jailed":[1000000000000059,null,1000000000000059,1000000000000053],"status":["unbonding","bonded","unbonding","unbonding"]}},{"ix":163,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":17,"t":102,"consumerPower":[null,14265,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":164,"action":{"kind":"Undelegate","val":0,"amt":1152},"partialState":{"h":20,"t":120,"tokens":[2307,21982,3139,10383],"delegation":[1307,20982,2139,9383],"delegatorTokens":9999999922434}},{"ix":165,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":18,"t":108,"consumerPower":[null,14265,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":166,"action":{"kind":"Deliver","chain":"provider","numPackets":4},"partialState":{"h":20,"t":120,"tokens":[2307,21982,3139,10383],"delegation":[1307,20982,2139,9383],"delegatorTokens":9999999922434,"jailed":[1000000000000059,null,1000000000000059,1000000000000053],"status":["unbonding","bonded","unbonding","unbonding"]}},{"ix":167,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":21,"t":126,"tokens":[2307,21982,3139,10383],"delegation":[1307,20982,2139,9383],"delegatorTokens":9999999923926,"jailed":[1000000000000059,null,1000000000000059,1000000000000053],"status":["unbonding","bonded","unbonding","unbonding"]}},{"ix":168,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":19,"t":114,"consumerPower":[null,14265,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":169,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":170,"action":{"kind":"Undelegate","val":0,"amt":3789},"partialState":{"h":21,"t":126,"tokens":[2307,21982,3139,10383],"delegation":[1307,20982,2139,9383],"delegatorTokens":9999999923926}},{"ix":171,"action":{"kind":"Delegate","val":3,"amt":2842},"partialState":{"h":21,"t":126,"tokens":[2307,21982,3139,13225],"delegation":[1307,20982,2139,12225],"delegatorTokens":9999999921084}},{"ix":172,"action":{"kind":"Delegate","val":1,"amt":3602},"partialState":{"h":21,"t":126,"tokens":[2307,25584,3139,13225],"delegation":[1307,24584,2139,12225],"delegatorTokens":9999999917482}},{"ix":173,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":174,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":20,"t":120,"consumerPower":[null,14265,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":175,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":176,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":22,"t":132,"tokens":[2307,25584,3139,13225],"delegation":[1307,24584,2139,12225],"delegatorTokens":9999999927146,"jailed":[1000000000000059,null,1000000000000059,1000000000000053],"status":["unbonding","bonded","unbonding","unbonded"]}},{"ix":177,"action":{"kind":"Delegate","val":2,"amt":3492},"partialState":{"h":22,"t":132,"tokens":[2307,25584,6631,13225],"delegation":[1307,24584,5631,12225],"delegatorTokens":9999999923654}},{"ix":178,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":179,"action":{"kind":"Undelegate","val":3,"amt":4434},"partialState":{"h":22,"t":132,"tokens":[2307,25584,6631,8791],"delegation":[1307,24584,5631,7791],"delegatorTokens":9999999923654}},{"ix":180,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":181,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":21,"t":126,"consumerPower":[null,14265,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":182,"action":{"kind":"Delegate","val":3,"amt":1128},"partialState":{"h":22,"t":132,"tokens":[2307,25584,6631,9919],"delegation":[1307,24584,5631,8919],"delegatorTokens":9999999922526}},{"ix":183,"action":{"kind":"Undelegate","val":2,"amt":1418},"partialState":{"h":22,"t":132,"tokens":[2307,25584,5213,9919],"delegation":[1307,24584,4213,8919],"delegatorTokens":9999999922526}},{"ix":184,"action":{"kind":"Undelegate","val":3,"amt":3194},"partialState":{"h":22,"t":132,"tokens":[2307,25584,5213,6725],"delegation":[1307,24584,4213,5725],"delegatorTokens":9999999922526}},{"ix":185,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":186,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":187,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":188,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":189,"action":{"kind":"Deliver","chain":"provider","numPackets":3},"partialState":{"h":22,"t":132,"tokens":[2307,25584,5213,6725],"delegation":[1307,24584,4213,5725],"delegatorTokens":9999999922526,"jailed":[1000000000000059,null,1000000000000059,1000000000000053],"status":["unbonding","bonded","unbonding","unbonded"]}},{"ix":190,"action":{"kind":"Undelegate","val":0,"amt":4984},"partialState":{"h":22,"t":132,"tokens":[2307,25584,5213,6725],"delegation":[1307,24584,4213,5725],"delegatorTokens":9999999922526}},{"ix":191,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":23,"t":138,"tokens":[2307,25584,5213,6725],"delegation":[1307,24584,4213,5725],"delegatorTokens":9999999926096,"jailed":[1000000000000059,null,1000000000000059,1000000000000053],"status":["unbonded","bonded","unbonding","unbonded"]}},{"ix":192,"action":{"kind":"Deliver","chain":"provider","numPackets":6},"partialState":{"h":23,"t":138,"tokens":[2307,25584,5213,6725],"delegation":[1307,24584,4213,5725],"delegatorTokens":9999999926096,"jailed":[1000000000000059,null,1000000000000059,1000000000000053],"status":["unbonded","bonded","unbonding","unbonded"]}},{"ix":193,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":22,"t":132,"consumerPower":[null,14265,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":194,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":195,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":24,"t":144,"tokens":[2307,25584,5213,6725],"delegation":[1307,24584,4213,5725],"delegatorTokens":9999999926096,"jailed":[1000000000000059,null,1000000000000059,1000000000000053],"status":["unbonded","bonded","unbonded","unbonded"]}},{"ix":196,"action":{"kind":"Delegate","val":2,"amt":2170},"partialState":{"h":24,"t":144,"tokens":[2307,25584,7383,6725],"delegation":[1307,24584,6383,5725],"delegatorTokens":9999999923926}},{"ix":197,"action":{"kind":"Undelegate","val":3,"amt":3075},"partialState":{"h":24,"t":144,"tokens":[2307,25584,7383,3650],"delegation":[1307,24584,6383,2650],"delegatorTokens":9999999923926}},{"ix":198,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":25,"t":150,"tokens":[2307,25584,7383,3650],"delegation":[1307,24584,6383,2650],"delegatorTokens":9999999930434,"jailed":[1000000000000059,null,1000000000000059,1000000000000053],"status":["unbonded","bonded","unbonded","unbonded"]}},{"ix":199,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":23,"t":138,"consumerPower":[null,14265,null,null],"outstandingDowntime":[false,false,false,false]}}],"events":["insufficient_shares","send_downtime_slash_request","downtime_slash_request_outstanding","insufficient_shares","more_than_one_third_val_power_change","send_vsc_without_downtime_ack","insufficient_shares","more_than_one_third_val_power_change","send_vsc_without_downtime_ack","send_downtime_slash_request","send_vsc_without_downtime_ack","send_double_sign_slash_request","send_double_sign_slash_request","send_vsc_without_downtime_ack","send_downtime_slash_request","send_vsc_without_downtime_ack","consumer_update_val","consumer_del_val","consumer_add_val","insufficient_shares","more_than_one_third_val_power_change","rebond_unval","receive_downtime_slash_request","jail","send_vsc_with_downtime_ack","consumer_update_val","consumer_del_val","consumer_add_val","receive_double_sign_slash_request","receive_double_sign_slash_request","rebond_unval","receive_downtime_slash_request","jail","receive_downtime_slash_request","jail","send_vsc_with_downtime_ack","send_vsc_without_downtime_ack","receive_downtime_slash_ack","receive_downtime_slash_ack","receive_downtime_slash_ack","consumer_del_val","consumer_add_val","consumer_del_val","consumer_add_val","send_vsc_without_downtime_ack","consumer_del_val","some_undels_expired_but_not_completed","send_vsc_not_because_change","send_vsc_without_downtime_ack","consumer_update_val","consumer_send_maturation","send_vsc_without_downtime_ack","insufficient_shares","send_vsc_without_downtime_ack","some_undels_expired_but_not_completed","insufficient_shares","consumer_send_maturation","consumer_send_maturation","consumer_send_maturation","consumer_send_maturation","consumer_update_val","insufficient_shares","consumer_send_maturation","consumer_send_maturation","some_undels_expired_but_not_completed","complete_undel_immediate","complete_undel_immediate","complete_undel_immediate","set_undel_hold_false","send_vsc_without_downtime_ack","consumer_send_maturation","complete_undel_in_endblock","set_undel_hold_false","set_undel_hold_false","set_unval_hold_false","set_undel_hold_false","set_unval_hold_false","send_vsc_not_because_change","send_vsc_without_downtime_ack","insufficient_shares","consumer_send_maturation","complete_unval_in_endblock","complete_undel_in_endblock","send_vsc_without_downtime_ack","insufficient_shares","complete_unval_in_endblock","complete_undel_in_endblock","set_unval_hold_false","set_undel_hold_false","set_undel_hold_false","set_undel_hold_false","send_vsc_not_because_change","send_vsc_without_downtime_ack","consumer_send_maturation","complete_unval_in_endblock","complete_undel_in_endblock","send_vsc_not_because_change","send_vsc_without_downtime_ack","consumer_send_maturation"]},{"meta":{"commit":"7ffd0c04e4205cbc9caf212abfe6c59ee43153bf"},"constants":{"P":"provider","C":"consumer","UNBONDING_SECONDS_P":70,"UNBONDING_SECONDS_C":50,"TRUSTING_SECONDS":49,"NUM_VALIDATORS":4,"MAX_VALIDATORS":2,"SLASH_DOUBLESIGN":0,"SLASH_DOWNTIME":0,"JAIL_SECONDS":999999999999999,"BLOCK_SECONDS":6,"INITIAL_DELEGATOR_TOKENS":10000000000000,"DELEGATE_AMT_MIN":1000,"DELEGATE_AMT_MAX":5000,"UNDELEGATE_AMT_MIN":1000,"UNDELEGATE_AMT_MAX":5000,"ISDOWNTIME_PROBABILITY":0.5,"MAX_NUM_PACKETS_FOR_DELIVER":6},"actions":[{"ix":0,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":1,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":2,"t":12,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":2,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":3,"t":18,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":3,"action":{"kind":"Delegate","val":3,"amt":1208},"partialState":{"h":1,"t":6,"tokens":[5000,4000,3000,3208],"delegation":[4000,3000,2000,2208],"delegatorTokens":9999999998792}},{"ix":4,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":5,"action":{"kind":"Delegate","val":1,"amt":4205},"partialState":{"h":1,"t":6,"tokens":[5000,8205,3000,3208],"delegation":[4000,7205,2000,2208],"delegatorTokens":9999999994587}},{"ix":6,"action":{"kind":"Delegate","val":0,"amt":3000},"partialState":{"h":1,"t":6,"tokens":[8000,8205,3000,3208],"delegation":[7000,7205,2000,2208],"delegatorTokens":9999999991587}},{"ix":7,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":2,"t":12,"tokens":[8000,8205,3000,3208],"delegation":[7000,7205,2000,2208],"delegatorTokens":9999999991587,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":8,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":9,"action":{"kind":"Undelegate","val":3,"amt":3789},"partialState":{"h":2,"t":12,"tokens":[8000,8205,3000,3208],"delegation":[7000,7205,2000,2208],"delegatorTokens":9999999991587}},{"ix":10,"action":{"kind":"ConsumerSlash","val":1,"infractionHeight":2,"isDowntime":true},"partialState":{"h":3,"t":18,"outstandingDowntime":[false,true,false,false]}},{"ix":11,"action":{"kind":"Undelegate","val":3,"amt":1290},"partialState":{"h":2,"t":12,"tokens":[8000,8205,3000,1918],"delegation":[7000,7205,2000,918],"delegatorTokens":9999999991587}},{"ix":12,"action":{"kind":"ConsumerSlash","val":1,"infractionHeight":0,"isDowntime":true},"partialState":{"h":3,"t":18,"outstandingDowntime":[false,true,false,false]}},{"ix":13,"action":{"kind":"Deliver","chain":"provider","numPackets":4},"partialState":{"h":2,"t":12,"tokens":[8000,8205,3000,1918],"delegation":[7000,7205,2000,918],"delegatorTokens":9999999991587,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":14,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":4,"t":24,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,true,false,false]}},{"ix":15,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":3,"t":18,"tokens":[8000,8205,3000,1918],"delegation":[7000,7205,2000,918],"delegatorTokens":9999999991587,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":16,"action":{"kind":"Undelegate","val":1,"amt":4473},"partialState":{"h":3,"t":18,"tokens":[8000,3732,3000,1918],"delegation":[7000,2732,2000,918],"delegatorTokens":9999999991587}},{"ix":17,"action":{"kind":"Deliver","chain":"provider","numPackets":3},"partialState":{"h":3,"t":18,"tokens":[8000,3732,3000,1918],"delegation":[7000,2732,2000,918],"delegatorTokens":9999999991587,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":18,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":4,"t":24,"tokens":[8000,3732,3000,1918],"delegation":[7000,2732,2000,918],"delegatorTokens":9999999991587,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":19,"action":{"kind":"ConsumerSlash","val":2,"infractionHeight":2,"isDowntime":true},"partialState":{"h":4,"t":24,"outstandingDowntime":[false,true,true,false]}},{"ix":20,"action":{"kind":"Undelegate","val":2,"amt":2232},"partialState":{"h":4,"t":24,"tokens":[8000,3732,3000,1918],"delegation":[7000,2732,2000,918],"delegatorTokens":9999999991587}},{"ix":21,"action":{"kind":"Delegate","val":1,"amt":2550},"partialState":{"h":4,"t":24,"tokens":[8000,6282,3000,1918],"delegation":[7000,5282,2000,918],"delegatorTokens":9999999989037}},{"ix":22,"action":{"kind":"Delegate","val":0,"amt":2510},"partialState":{"h":4,"t":24,"tokens":[10510,6282,3000,1918],"delegation":[9510,5282,2000,918],"delegatorTokens":9999999986527}},{"ix":23,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":24,"action":{"kind":"Delegate","val":3,"amt":2576},"partialState":{"h":4,"t":24,"tokens":[10510,6282,3000,4494],"delegation":[9510,5282,2000,3494],"delegatorTokens":9999999983951}},{"ix":25,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":5,"t":30,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,true,true,false]}},{"ix":26,"action":{"kind":"Deliver","chain":"consumer","numPackets":4},"partialState":{"h":5,"t":30,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,true,true,false]}},{"ix":27,"action":{"kind":"Undelegate","val":1,"amt":4455},"partialState":{"h":4,"t":24,"tokens":[10510,1827,3000,4494],"delegation":[9510,827,2000,3494],"delegatorTokens":9999999983951}},{"ix":28,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":29,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":30,"action":{"kind":"Undelegate","val":1,"amt":4964},"partialState":{"h":4,"t":24,"tokens":[10510,1827,3000,4494],"delegation":[9510,827,2000,3494],"delegatorTokens":9999999983951}},{"ix":31,"action":{"kind":"Deliver","chain":"consumer","numPackets":5},"partialState":{"h":5,"t":30,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,true,true,false]}},{"ix":32,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":6,"t":36,"consumerPower":[8000,8205,null,null],"outstandingDowntime":[false,true,true,false]}},{"ix":33,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":34,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":35,"action":{"kind":"Deliver","chain":"consumer","numPackets":6},"partialState":{"h":6,"t":36,"consumerPower":[8000,8205,null,null],"outstandingDowntime":[false,true,true,false]}},{"ix":36,"action":{"kind":"ConsumerSlash","val":1,"infractionHeight":0,"isDowntime":false},"partialState":{"h":6,"t":36,"outstandingDowntime":[false,true,true,false]}},{"ix":37,"action":{"kind":"ConsumerSlash","val":2,"infractionHeight":3,"isDowntime":true},"partialState":{"h":6,"t":36,"outstandingDowntime":[false,true,true,false]}},{"ix":38,"action":{"kind":"Deliver","chain":"consumer","numPackets":6},"partialState":{"h":6,"t":36,"consumerPower":[8000,8205,null,null],"outstandingDowntime":[false,true,true,false]}},{"ix":39,"action":{"kind":"Deliver","chain":"provider","numPackets":1},"partialState":{"h":4,"t":24,"tokens":[10510,1827,3000,4494],"delegation":[9510,827,2000,3494],"delegatorTokens":9999999983951,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":40,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":7,"t":42,"consumerPower":[8000,8205,null,null],"outstandingDowntime":[false,true,true,false]}},{"ix":41,"action":{"kind":"Delegate","val":3,"amt":3492},"partialState":{"h":4,"t":24,"tokens":[10510,1827,3000,7986],"delegation":[9510,827,2000,6986],"delegatorTokens":9999999980459}},{"ix":42,"action":{"kind":"Delegate","val":2,"amt":4071},"partialState":{"h":4,"t":24,"tokens":[10510,1827,7071,7986],"delegation":[9510,827,6071,6986],"delegatorTokens":9999999976388}},{"ix":43,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":44,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":5,"t":30,"tokens":[10510,1827,7071,7986],"delegation":[9510,827,6071,6986],"delegatorTokens":9999999976388,"jailed":[null,1000000000000023,null,null],"status":["bonded","unbonding","unbonded","bonded"]}},{"ix":45,"action":{"kind":"Undelegate","val":0,"amt":2474},"partialState":{"h":5,"t":30,"tokens":[8036,1827,7071,7986],"delegation":[7036,827,6071,6986],"delegatorTokens":9999999976388}},{"ix":46,"action":{"kind":"Deliver","chain":"provider","numPackets":3},"partialState":{"h":5,"t":30,"tokens":[8036,1827,7071,7986],"delegation":[7036,827,6071,6986],"delegatorTokens":9999999976388,"jailed":[null,1000000000000023,null,null],"status":["bonded","unbonding","unbonded","bonded"]}},{"ix":47,"action":{"kind":"Undelegate","val":2,"amt":1995},"partialState":{"h":5,"t":30,"tokens":[8036,1827,5076,7986],"delegation":[7036,827,4076,6986],"delegatorTokens":9999999976388}},{"ix":48,"action":{"kind":"Undelegate","val":1,"amt":4505},"partialState":{"h":5,"t":30,"tokens":[8036,1827,5076,7986],"delegation":[7036,827,4076,6986],"delegatorTokens":9999999976388}},{"ix":49,"action":{"kind":"Deliver","chain":"consumer","numPackets":5},"partialState":{"h":7,"t":42,"consumerPower":[8000,8205,null,null],"outstandingDowntime":[false,true,true,false]}},{"ix":50,"action":{"kind":"Undelegate","val":0,"amt":4547},"partialState":{"h":5,"t":30,"tokens":[3489,1827,5076,7986],"delegation":[2489,827,4076,6986],"delegatorTokens":9999999976388}},{"ix":51,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":52,"action":{"kind":"Deliver","chain":"consumer","numPackets":4},"partialState":{"h":7,"t":42,"consumerPower":[8000,8205,null,null],"outstandingDowntime":[false,true,true,false]}},{"ix":53,"action":{"kind":"Delegate","val":3,"amt":4414},"partialState":{"h":5,"t":30,"tokens":[3489,1827,5076,12400],"delegation":[2489,827,4076,11400],"delegatorTokens":9999999971974}},{"ix":54,"action":{"kind":"Delegate","val":3,"amt":3006},"partialState":{"h":5,"t":30,"tokens":[3489,1827,5076,15406],"delegation":[2489,827,4076,14406],"delegatorTokens":9999999968968}},{"ix":55,"action":{"kind":"Undelegate","val":0,"amt":4013},"partialState":{"h":5,"t":30,"tokens":[3489,1827,5076,15406],"delegation":[2489,827,4076,14406],"delegatorTokens":9999999968968}},{"ix":56,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":8,"t":48,"consumerPower":[8000,3732,null,null],"outstandingDowntime":[false,true,true,false]}},{"ix":57,"action":{"kind":"Deliver","chain":"consumer","numPackets":1},"partialState":{"h":8,"t":48,"consumerPower":[8000,3732,null,null],"outstandingDowntime":[false,true,true,false]}},{"ix":58,"action":{"kind":"Undelegate","val":3,"amt":3873},"partialState":{"h":5,"t":30,"tokens":[3489,1827,5076,11533],"delegation":[2489,827,4076,10533],"delegatorTokens":9999999968968}},{"ix":59,"action":{"kind":"Deliver","chain":"consumer","numPackets":4},"partialState":{"h":8,"t":48,"consumerPower":[8000,3732,null,null],"outstandingDowntime":[false,true,true,false]}},{"ix":60,"action":{"kind":"Delegate","val":3,"amt":4541},"partialState":{"h":5,"t":30,"tokens":[3489,1827,5076,16074],"delegation":[2489,827,4076,15074],"delegatorTokens":9999999964427}},{"ix":61,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":6,"t":36,"tokens":[3489,1827,5076,16074],"delegation":[2489,827,4076,15074],"delegatorTokens":9999999964427,"jailed":[null,1000000000000023,1000000000000029,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":62,"action":{"kind":"Deliver","chain":"provider","numPackets":1},"partialState":{"h":6,"t":36,"tokens":[3489,1827,5076,16074],"delegation":[2489,827,4076,15074],"delegatorTokens":9999999964427,"jailed":[null,1000000000000023,1000000000000029,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":63,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":9,"t":54,"consumerPower":[8000,3732,null,null],"outstandingDowntime":[false,true,true,false]}},{"ix":64,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":10,"t":60,"consumerPower":[8000,3732,null,null],"outstandingDowntime":[false,true,true,false]}},{"ix":65,"action":{"kind":"Undelegate","val":0,"amt":2629},"partialState":{"h":6,"t":36,"tokens":[3489,1827,5076,16074],"delegation":[2489,827,4076,15074],"delegatorTokens":9999999964427}},{"ix":66,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":67,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":68,"action":{"kind":"Deliver","chain":"consumer","numPackets":1},"partialState":{"h":10,"t":60,"consumerPower":[8000,3732,null,null],"outstandingDowntime":[false,false,true,false]}},{"ix":69,"action":{"kind":"Deliver","chain":"consumer","numPackets":3},"partialState":{"h":10,"t":60,"consumerPower":[8000,3732,null,null],"outstandingDowntime":[false,false,true,false]}},{"ix":70,"action":{"kind":"Delegate","val":1,"amt":4408},"partialState":{"h":6,"t":36,"tokens":[3489,6235,5076,16074],"delegation":[2489,5235,4076,15074],"delegatorTokens":9999999960019}},{"ix":71,"action":{"kind":"Deliver","chain":"provider","numPackets":1},"partialState":{"h":6,"t":36,"tokens":[3489,6235,5076,16074],"delegation":[2489,5235,4076,15074],"delegatorTokens":9999999960019,"jailed":[null,1000000000000023,1000000000000029,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":72,"action":{"kind":"ConsumerSlash","val":0,"infractionHeight":4,"isDowntime":true},"partialState":{"h":10,"t":60,"outstandingDowntime":[true,false,true,false]}},{"ix":73,"action":{"kind":"Undelegate","val":1,"amt":2792},"partialState":{"h":6,"t":36,"tokens":[3489,3443,5076,16074],"delegation":[2489,2443,4076,15074],"delegatorTokens":9999999960019}},{"ix":74,"action":{"kind":"Delegate","val":0,"amt":3590},"partialState":{"h":6,"t":36,"tokens":[7079,3443,5076,16074],"delegation":[6079,2443,4076,15074],"delegatorTokens":9999999956429}},{"ix":75,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":76,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":7,"t":42,"tokens":[7079,3443,5076,16074],"delegation":[6079,2443,4076,15074],"delegatorTokens":9999999956429,"jailed":[null,1000000000000023,1000000000000029,null],"status":["bonded","unbonding","unbonding","bonded"]}},{"ix":77,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":78,"action":{"kind":"Undelegate","val":2,"amt":3502},"partialState":{"h":7,"t":42,"tokens":[7079,3443,1574,16074],"delegation":[6079,2443,574,15074],"delegatorTokens":9999999956429}},{"ix":79,"action":{"kind":"Delegate","val":2,"amt":4118},"partialState":{"h":7,"t":42,"tokens":[7079,3443,5692,16074],"delegation":[6079,2443,4692,15074],"delegatorTokens":9999999952311}},{"ix":80,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":81,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":82,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":8,"t":48,"tokens":[7079,3443,5692,16074],"delegation":[6079,2443,4692,15074],"delegatorTokens":9999999952311,"jailed":[null,1000000000000023,1000000000000029,null],"status":["bonded","unbonding","unbonding","bonded"]}},{"ix":83,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":11,"t":66,"consumerPower":[10510,null,null,7986],"outstandingDowntime":[true,false,true,false]}},{"ix":84,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":85,"action":{"kind":"Delegate","val":0,"amt":2917},"partialState":{"h":8,"t":48,"tokens":[9996,3443,5692,16074],"delegation":[8996,2443,4692,15074],"delegatorTokens":9999999949394}},{"ix":86,"action":{"kind":"Undelegate","val":2,"amt":1210},"partialState":{"h":8,"t":48,"tokens":[9996,3443,4482,16074],"delegation":[8996,2443,3482,15074],"delegatorTokens":9999999949394}},{"ix":87,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":12,"t":72,"consumerPower":[10510,null,null,7986],"outstandingDowntime":[true,false,true,false]}},{"ix":88,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":89,"action":{"kind":"Deliver","chain":"consumer","numPackets":4},"partialState":{"h":12,"t":72,"consumerPower":[10510,null,null,7986],"outstandingDowntime":[true,false,false,false]}},{"ix":90,"action":{"kind":"Undelegate","val":2,"amt":2018},"partialState":{"h":8,"t":48,"tokens":[9996,3443,2464,16074],"delegation":[8996,2443,1464,15074],"delegatorTokens":9999999949394}},{"ix":91,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":13,"t":78,"consumerPower":[7079,null,null,16074],"outstandingDowntime":[true,false,false,false]}},{"ix":92,"action":{"kind":"Deliver","chain":"consumer","numPackets":2},"partialState":{"h":13,"t":78,"consumerPower":[7079,null,null,16074],"outstandingDowntime":[true,false,false,false]}},{"ix":93,"action":{"kind":"Delegate","val":1,"amt":2188},"partialState":{"h":8,"t":48,"tokens":[9996,5631,2464,16074],"delegation":[8996,4631,1464,15074],"delegatorTokens":9999999947206}},{"ix":94,"action":{"kind":"Delegate","val":3,"amt":1099},"partialState":{"h":8,"t":48,"tokens":[9996,5631,2464,17173],"delegation":[8996,4631,1464,16173],"delegatorTokens":9999999946107}},{"ix":95,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":96,"action":{"kind":"Delegate","val":2,"amt":2078},"partialState":{"h":8,"t":48,"tokens":[9996,5631,4542,17173],"delegation":[8996,4631,3542,16173],"delegatorTokens":9999999944029}},{"ix":97,"action":{"kind":"Deliver","chain":"provider","numPackets":5},"partialState":{"h":8,"t":48,"tokens":[9996,5631,4542,17173],"delegation":[8996,4631,3542,16173],"delegatorTokens":9999999944029,"jailed":[null,1000000000000023,1000000000000029,null],"status":["bonded","unbonding","unbonding","bonded"]}},{"ix":98,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":99,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":9,"t":54,"tokens":[9996,5631,4542,17173],"delegation":[8996,4631,3542,16173],"delegatorTokens":9999999944029,"jailed":[1000000000000047,1000000000000023,1000000000000029,null],"status":["bonded","unbonding","unbonding","bonded"]}},{"ix":100,"action":{"kind":"Delegate","val":3,"amt":1847},"partialState":{"h":9,"t":54,"tokens":[9996,5631,4542,19020],"delegation":[8996,4631,3542,18020],"delegatorTokens":9999999942182}},{"ix":101,"action":{"kind":"Undelegate","val":0,"amt":4524},"partialState":{"h":9,"t":54,"tokens":[5472,5631,4542,19020],"delegation":[4472,4631,3542,18020],"delegatorTokens":9999999942182}},{"ix":102,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":10,"t":60,"tokens":[5472,5631,4542,19020],"delegation":[4472,4631,3542,18020],"delegatorTokens":9999999942182,"jailed":[1000000000000047,1000000000000023,1000000000000029,null],"status":["unbonding","unbonding","unbonding","bonded"]}},{"ix":103,"action":{"kind":"Undelegate","val":0,"amt":1335},"partialState":{"h":10,"t":60,"tokens":[4137,5631,4542,19020],"delegation":[3137,4631,3542,18020],"delegatorTokens":9999999942182}},{"ix":104,"action":{"kind":"Deliver","chain":"consumer","numPackets":6},"partialState":{"h":13,"t":78,"consumerPower":[7079,null,null,16074],"outstandingDowntime":[false,false,false,false]}},{"ix":105,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":14,"t":84,"consumerPower":[9996,null,null,17173],"outstandingDowntime":[false,false,false,false]}},{"ix":106,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":11,"t":66,"tokens":[4137,5631,4542,19020],"delegation":[3137,4631,3542,18020],"delegatorTokens":9999999942182,"jailed":[1000000000000047,1000000000000023,1000000000000029,null],"status":["unbonding","unbonding","unbonding","bonded"]}},{"ix":107,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":108,"action":{"kind":"Undelegate","val":2,"amt":3075},"partialState":{"h":11,"t":66,"tokens":[4137,5631,1467,19020],"delegation":[3137,4631,467,18020],"delegatorTokens":9999999942182}},{"ix":109,"action":{"kind":"Deliver","chain":"consumer","numPackets":4},"partialState":{"h":14,"t":84,"consumerPower":[9996,null,null,17173],"outstandingDowntime":[false,false,false,false]}},{"ix":110,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":12,"t":72,"tokens":[4137,5631,1467,19020],"delegation":[3137,4631,467,18020],"delegatorTokens":9999999942182,"jailed":[1000000000000047,1000000000000023,1000000000000029,null],"status":["unbonding","unbonding","unbonding","bonded"]}},{"ix":111,"action":{"kind":"Delegate","val":2,"amt":3854},"partialState":{"h":12,"t":72,"tokens":[4137,5631,5321,19020],"delegation":[3137,4631,4321,18020],"delegatorTokens":9999999938328}},{"ix":112,"action":{"kind":"Delegate","val":1,"amt":1944},"partialState":{"h":12,"t":72,"tokens":[4137,7575,5321,19020],"delegation":[3137,6575,4321,18020],"delegatorTokens":9999999936384}},{"ix":113,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":114,"action":{"kind":"Delegate","val":0,"amt":4464},"partialState":{"h":12,"t":72,"tokens":[8601,7575,5321,19020],"delegation":[7601,6575,4321,18020],"delegatorTokens":9999999931920}},{"ix":115,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":15,"t":90,"consumerPower":[null,null,null,19020],"outstandingDowntime":[false,false,false,false]}},{"ix":116,"action":{"kind":"Deliver","chain":"consumer","numPackets":2},"partialState":{"h":15,"t":90,"consumerPower":[null,null,null,19020],"outstandingDowntime":[false,false,false,false]}},{"ix":117,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":118,"action":{"kind":"Deliver","chain":"consumer","numPackets":5},"partialState":{"h":15,"t":90,"consumerPower":[null,null,null,19020],"outstandingDowntime":[false,false,false,false]}},{"ix":119,"action":{"kind":"Delegate","val":3,"amt":4611},"partialState":{"h":12,"t":72,"tokens":[8601,7575,5321,23631],"delegation":[7601,6575,4321,22631],"delegatorTokens":9999999927309}},{"ix":120,"action":{"kind":"Deliver","chain":"provider","numPackets":6},"partialState":{"h":12,"t":72,"tokens":[8601,7575,5321,23631],"delegation":[7601,6575,4321,22631],"delegatorTokens":9999999927309,"jailed":[1000000000000047,1000000000000023,1000000000000029,null],"status":["unbonding","unbonding","unbonding","bonded"]}},{"ix":121,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":16,"t":96,"consumerPower":[null,null,null,19020],"outstandingDowntime":[false,false,false,false]}},{"ix":122,"action":{"kind":"Deliver","chain":"consumer","numPackets":6},"partialState":{"h":16,"t":96,"consumerPower":[null,null,null,19020],"outstandingDowntime":[false,false,false,false]}},{"ix":123,"action":{"kind":"Deliver","chain":"consumer","numPackets":2},"partialState":{"h":16,"t":96,"consumerPower":[null,null,null,19020],"outstandingDowntime":[false,false,false,false]}},{"ix":124,"action":{"kind":"Deliver","chain":"provider","numPackets":6},"partialState":{"h":12,"t":72,"tokens":[8601,7575,5321,23631],"delegation":[7601,6575,4321,22631],"delegatorTokens":9999999927309,"jailed":[1000000000000047,1000000000000023,1000000000000029,null],"status":["unbonding","unbonding","unbonding","bonded"]}},{"ix":125,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":17,"t":102,"consumerPower":[null,null,null,19020],"outstandingDowntime":[false,false,false,false]}},{"ix":126,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":127,"action":{"kind":"Deliver","chain":"provider","numPackets":6},"partialState":{"h":12,"t":72,"tokens":[8601,7575,5321,23631],"delegation":[7601,6575,4321,22631],"delegatorTokens":9999999927309,"jailed":[1000000000000047,1000000000000023,1000000000000029,null],"status":["unbonding","unbonding","unbonding","bonded"]}},{"ix":128,"action":{"kind":"Delegate","val":0,"amt":1053},"partialState":{"h":12,"t":72,"tokens":[9654,7575,5321,23631],"delegation":[8654,6575,4321,22631],"delegatorTokens":9999999926256}},{"ix":129,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":18,"t":108,"consumerPower":[null,null,null,19020],"outstandingDowntime":[false,false,false,false]}},{"ix":130,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":131,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":132,"action":{"kind":"Deliver","chain":"provider","numPackets":4},"partialState":{"h":12,"t":72,"tokens":[9654,7575,5321,23631],"delegation":[8654,6575,4321,22631],"delegatorTokens":9999999926256,"jailed":[1000000000000047,1000000000000023,1000000000000029,null],"status":["unbonding","unbonding","unbonding","bonded"]}},{"ix":133,"action":{"kind":"Undelegate","val":2,"amt":2598},"partialState":{"h":12,"t":72,"tokens":[9654,7575,2723,23631],"delegation":[8654,6575,1723,22631],"delegatorTokens":9999999926256}},{"ix":134,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":135,"action":{"kind":"Undelegate","val":2,"amt":2740},"partialState":{"h":12,"t":72,"tokens":[9654,7575,2723,23631],"delegation":[8654,6575,1723,22631],"delegatorTokens":9999999926256}},{"ix":136,"action":{"kind":"Delegate","val":1,"amt":1661},"partialState":{"h":12,"t":72,"tokens":[9654,9236,2723,23631],"delegation":[8654,8236,1723,22631],"delegatorTokens":9999999924595}},{"ix":137,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":13,"t":78,"tokens":[9654,9236,2723,23631],"delegation":[8654,8236,1723,22631],"delegatorTokens":9999999924595,"jailed":[1000000000000047,1000000000000023,1000000000000029,null],"status":["unbonding","unbonding","unbonding","bonded"]}},{"ix":138,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":19,"t":114,"consumerPower":[null,null,null,19020],"outstandingDowntime":[false,false,false,false]}},{"ix":139,"action":{"kind":"Delegate","val":0,"amt":2139},"partialState":{"h":13,"t":78,"tokens":[11793,9236,2723,23631],"delegation":[10793,8236,1723,22631],"delegatorTokens":9999999922456}},{"ix":140,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":141,"action":{"kind":"Deliver","chain":"provider","numPackets":2},"partialState":{"h":13,"t":78,"tokens":[11793,9236,2723,23631],"delegation":[10793,8236,1723,22631],"delegatorTokens":9999999922456,"jailed":[1000000000000047,1000000000000023,1000000000000029,null],"status":["unbonding","unbonding","unbonding","bonded"]}},{"ix":142,"action":{"kind":"Undelegate","val":1,"amt":2353},"partialState":{"h":13,"t":78,"tokens":[11793,6883,2723,23631],"delegation":[10793,5883,1723,22631],"delegatorTokens":9999999922456}},{"ix":143,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":144,"action":{"kind":"Delegate","val":0,"amt":3262},"partialState":{"h":13,"t":78,"tokens":[15055,6883,2723,23631],"delegation":[14055,5883,1723,22631],"delegatorTokens":9999999919194}},{"ix":145,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":20,"t":120,"consumerPower":[null,null,null,19020],"outstandingDowntime":[false,false,false,false]}},{"ix":146,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":147,"action":{"kind":"Delegate","val":2,"amt":4455},"partialState":{"h":13,"t":78,"tokens":[15055,6883,7178,23631],"delegation":[14055,5883,6178,22631],"delegatorTokens":9999999914739}},{"ix":148,"action":{"kind":"Delegate","val":1,"amt":3776},"partialState":{"h":13,"t":78,"tokens":[15055,10659,7178,23631],"delegation":[14055,9659,6178,22631],"delegatorTokens":9999999910963}},{"ix":149,"action":{"kind":"Delegate","val":0,"amt":2139},"partialState":{"h":13,"t":78,"tokens":[17194,10659,7178,23631],"delegation":[16194,9659,6178,22631],"delegatorTokens":9999999908824}},{"ix":150,"action":{"kind":"Undelegate","val":1,"amt":1588},"partialState":{"h":13,"t":78,"tokens":[17194,9071,7178,23631],"delegation":[16194,8071,6178,22631],"delegatorTokens":9999999908824}},{"ix":151,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":14,"t":84,"tokens":[17194,9071,7178,23631],"delegation":[16194,8071,6178,22631],"delegatorTokens":9999999908824,"jailed":[1000000000000047,1000000000000023,1000000000000029,null],"status":["unbonding","unbonding","unbonding","bonded"]}},{"ix":152,"action":{"kind":"Undelegate","val":0,"amt":4750},"partialState":{"h":14,"t":84,"tokens":[12444,9071,7178,23631],"delegation":[11444,8071,6178,22631],"delegatorTokens":9999999908824}},{"ix":153,"action":{"kind":"Delegate","val":1,"amt":1227},"partialState":{"h":14,"t":84,"tokens":[12444,10298,7178,23631],"delegation":[11444,9298,6178,22631],"delegatorTokens":9999999907597}},{"ix":154,"action":{"kind":"Delegate","val":3,"amt":4009},"partialState":{"h":14,"t":84,"tokens":[12444,10298,7178,27640],"delegation":[11444,9298,6178,26640],"delegatorTokens":9999999903588}},{"ix":155,"action":{"kind":"Undelegate","val":1,"amt":3805},"partialState":{"h":14,"t":84,"tokens":[12444,6493,7178,27640],"delegation":[11444,5493,6178,26640],"delegatorTokens":9999999903588}},{"ix":156,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":157,"action":{"kind":"Delegate","val":3,"amt":3313},"partialState":{"h":14,"t":84,"tokens":[12444,6493,7178,30953],"delegation":[11444,5493,6178,29953],"delegatorTokens":9999999900275}},{"ix":158,"action":{"kind":"Undelegate","val":2,"amt":3837},"partialState":{"h":14,"t":84,"tokens":[12444,6493,3341,30953],"delegation":[11444,5493,2341,29953],"delegatorTokens":9999999900275}},{"ix":159,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":160,"action":{"kind":"Delegate","val":1,"amt":2776},"partialState":{"h":14,"t":84,"tokens":[12444,9269,3341,30953],"delegation":[11444,8269,2341,29953],"delegatorTokens":9999999897499}},{"ix":161,"action":{"kind":"Delegate","val":1,"amt":2627},"partialState":{"h":14,"t":84,"tokens":[12444,11896,3341,30953],"delegation":[11444,10896,2341,29953],"delegatorTokens":9999999894872}},{"ix":162,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":163,"action":{"kind":"Deliver","chain":"provider","numPackets":5},"partialState":{"h":14,"t":84,"tokens":[12444,11896,3341,30953],"delegation":[11444,10896,2341,29953],"delegatorTokens":9999999894872,"jailed":[1000000000000047,1000000000000023,1000000000000029,null],"status":["unbonding","unbonding","unbonding","bonded"]}},{"ix":164,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":21,"t":126,"consumerPower":[null,null,null,19020],"outstandingDowntime":[false,false,false,false]}},{"ix":165,"action":{"kind":"Deliver","chain":"consumer","numPackets":2},"partialState":{"h":21,"t":126,"consumerPower":[null,null,null,19020],"outstandingDowntime":[false,false,false,false]}},{"ix":166,"action":{"kind":"Delegate","val":2,"amt":3686},"partialState":{"h":14,"t":84,"tokens":[12444,11896,7027,30953],"delegation":[11444,10896,6027,29953],"delegatorTokens":9999999891186}},{"ix":167,"action":{"kind":"Deliver","chain":"provider","numPackets":2},"partialState":{"h":14,"t":84,"tokens":[12444,11896,7027,30953],"delegation":[11444,10896,6027,29953],"delegatorTokens":9999999891186,"jailed":[1000000000000047,1000000000000023,1000000000000029,null],"status":["unbonding","unbonding","unbonding","bonded"]}},{"ix":168,"action":{"kind":"Delegate","val":2,"amt":4691},"partialState":{"h":14,"t":84,"tokens":[12444,11896,11718,30953],"delegation":[11444,10896,10718,29953],"delegatorTokens":9999999886495}},{"ix":169,"action":{"kind":"Delegate","val":0,"amt":4511},"partialState":{"h":14,"t":84,"tokens":[16955,11896,11718,30953],"delegation":[15955,10896,10718,29953],"delegatorTokens":9999999881984}},{"ix":170,"action":{"kind":"Delegate","val":0,"amt":2536},"partialState":{"h":14,"t":84,"tokens":[19491,11896,11718,30953],"delegation":[18491,10896,10718,29953],"delegatorTokens":9999999879448}},{"ix":171,"action":{"kind":"Delegate","val":0,"amt":4198},"partialState":{"h":14,"t":84,"tokens":[23689,11896,11718,30953],"delegation":[22689,10896,10718,29953],"delegatorTokens":9999999875250}},{"ix":172,"action":{"kind":"Delegate","val":1,"amt":2870},"partialState":{"h":14,"t":84,"tokens":[23689,14766,11718,30953],"delegation":[22689,13766,10718,29953],"delegatorTokens":9999999872380}},{"ix":173,"action":{"kind":"Undelegate","val":3,"amt":1404},"partialState":{"h":14,"t":84,"tokens":[23689,14766,11718,29549],"delegation":[22689,13766,10718,28549],"delegatorTokens":9999999872380}},{"ix":174,"action":{"kind":"Undelegate","val":1,"amt":4698},"partialState":{"h":14,"t":84,"tokens":[23689,10068,11718,29549],"delegation":[22689,9068,10718,28549],"delegatorTokens":9999999872380}},{"ix":175,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":176,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":177,"action":{"kind":"Undelegate","val":1,"amt":1678},"partialState":{"h":14,"t":84,"tokens":[23689,8390,11718,29549],"delegation":[22689,7390,10718,28549],"delegatorTokens":9999999872380}},{"ix":178,"action":{"kind":"Delegate","val":2,"amt":2257},"partialState":{"h":14,"t":84,"tokens":[23689,8390,13975,29549],"delegation":[22689,7390,12975,28549],"delegatorTokens":9999999870123}},{"ix":179,"action":{"kind":"Deliver","chain":"provider","numPackets":4},"partialState":{"h":14,"t":84,"tokens":[23689,8390,13975,29549],"delegation":[22689,7390,12975,28549],"delegatorTokens":9999999870123,"jailed":[1000000000000047,1000000000000023,1000000000000029,null],"status":["unbonding","unbonding","unbonding","bonded"]}},{"ix":180,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":15,"t":90,"tokens":[23689,8390,13975,29549],"delegation":[22689,7390,12975,28549],"delegatorTokens":9999999871413,"jailed":[1000000000000047,1000000000000023,1000000000000029,null],"status":["unbonding","unbonding","unbonding","bonded"]}},{"ix":181,"action":{"kind":"Undelegate","val":1,"amt":3327},"partialState":{"h":15,"t":90,"tokens":[23689,5063,13975,29549],"delegation":[22689,4063,12975,28549],"delegatorTokens":9999999871413}},{"ix":182,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":16,"t":96,"tokens":[23689,5063,13975,29549],"delegation":[22689,4063,12975,28549],"delegatorTokens":9999999875886,"jailed":[1000000000000047,1000000000000023,1000000000000029,null],"status":["unbonding","unbonding","unbonding","bonded"]}},{"ix":183,"action":{"kind":"Deliver","chain":"consumer","numPackets":3},"partialState":{"h":21,"t":126,"consumerPower":[null,null,null,19020],"outstandingDowntime":[false,false,false,false]}},{"ix":184,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":185,"action":{"kind":"Undelegate","val":1,"amt":4638},"partialState":{"h":16,"t":96,"tokens":[23689,5063,13975,29549],"delegation":[22689,4063,12975,28549],"delegatorTokens":9999999875886}},{"ix":186,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":22,"t":132,"consumerPower":[null,null,null,29549],"outstandingDowntime":[false,false,false,false]}},{"ix":187,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":23,"t":138,"consumerPower":[null,null,null,29549],"outstandingDowntime":[false,false,false,false]}},{"ix":188,"action":{"kind":"Undelegate","val":0,"amt":1226},"partialState":{"h":16,"t":96,"tokens":[22463,5063,13975,29549],"delegation":[21463,4063,12975,28549],"delegatorTokens":9999999875886}},{"ix":189,"action":{"kind":"Delegate","val":1,"amt":1989},"partialState":{"h":16,"t":96,"tokens":[22463,7052,13975,29549],"delegation":[21463,6052,12975,28549],"delegatorTokens":9999999873897}},{"ix":190,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":191,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":192,"action":{"kind":"Undelegate","val":1,"amt":1819},"partialState":{"h":16,"t":96,"tokens":[22463,5233,13975,29549],"delegation":[21463,4233,12975,28549],"delegatorTokens":9999999873897}},{"ix":193,"action":{"kind":"Deliver","chain":"provider","numPackets":5},"partialState":{"h":16,"t":96,"tokens":[22463,5233,13975,29549],"delegation":[21463,4233,12975,28549],"delegatorTokens":9999999873897,"jailed":[1000000000000047,1000000000000023,1000000000000029,null],"status":["unbonding","unbonding","unbonding","bonded"]}},{"ix":194,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":195,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":17,"t":102,"tokens":[22463,5233,13975,29549],"delegation":[21463,4233,12975,28549],"delegatorTokens":9999999878352,"jailed":[1000000000000047,1000000000000023,1000000000000029,null],"status":["unbonding","unbonded","unbonding","bonded"]}},{"ix":196,"action":{"kind":"Undelegate","val":0,"amt":4544},"partialState":{"h":17,"t":102,"tokens":[17919,5233,13975,29549],"delegation":[16919,4233,12975,28549],"delegatorTokens":9999999878352}},{"ix":197,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":198,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":18,"t":108,"tokens":[17919,5233,13975,29549],"delegation":[16919,4233,12975,28549],"delegatorTokens":9999999891241,"jailed":[1000000000000047,1000000000000023,1000000000000029,null],"status":["unbonding","unbonded","unbonding","bonded"]}},{"ix":199,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":19,"t":114,"tokens":[17919,5233,13975,29549],"delegation":[16919,4233,12975,28549],"delegatorTokens":9999999894033,"jailed":[1000000000000047,1000000000000023,1000000000000029,null],"status":["unbonding","unbonded","unbonded","bonded"]}}],"events":["send_vsc_without_downtime_ack","insufficient_shares","send_downtime_slash_request","downtime_slash_request_outstanding","send_vsc_not_because_change","send_vsc_without_downtime_ack","send_vsc_without_downtime_ack","send_downtime_slash_request","insufficient_shares","insufficient_shares","consumer_update_val","consumer_update_val","send_double_sign_slash_request","downtime_slash_request_outstanding","more_than_one_third_val_power_change","receive_downtime_slash_request","jail","send_vsc_with_downtime_ack","insufficient_shares","insufficient_shares","consumer_update_val","receive_downtime_slash_request","jail","send_vsc_with_downtime_ack","receive_double_sign_slash_request","insufficient_shares","receive_downtime_slash_ack","send_downtime_slash_request","rebond_unval","send_vsc_without_downtime_ack","send_vsc_not_because_change","send_vsc_without_downtime_ack","consumer_update_val","consumer_del_val","consumer_add_val","receive_downtime_slash_ack","consumer_update_val","consumer_del_val","consumer_update_val","receive_downtime_slash_request","jail","send_vsc_with_downtime_ack","send_vsc_without_downtime_ack","receive_downtime_slash_ack","consumer_update_val","consumer_update_val","send_vsc_not_because_change","send_vsc_without_downtime_ack","send_vsc_not_because_change","send_vsc_without_downtime_ack","consumer_send_maturation","consumer_send_maturation","consumer_del_val","consumer_update_val","consumer_send_maturation","insufficient_shares","set_undel_hold_false","set_undel_hold_false","send_vsc_without_downtime_ack","consumer_send_maturation","send_vsc_not_because_change","send_vsc_without_downtime_ack","complete_undel_in_endblock","set_undel_hold_false","set_unval_hold_false","send_vsc_without_downtime_ack","complete_undel_in_endblock","send_vsc_not_because_change","send_vsc_without_downtime_ack","insufficient_shares","consumer_send_maturation","consumer_send_maturation","consumer_update_val","consumer_send_maturation","consumer_send_maturation","complete_unval_in_endblock","complete_undel_in_endblock","set_undel_hold_false","set_undel_hold_false","set_undel_hold_false","set_undel_hold_false","set_undel_hold_false","set_unval_hold_false","send_vsc_not_because_change","send_vsc_without_downtime_ack","complete_undel_in_endblock","send_vsc_not_because_change","send_vsc_without_downtime_ack","complete_unval_in_endblock","complete_undel_in_endblock"]},{"meta":{"commit":"7ffd0c04e4205cbc9caf212abfe6c59ee43153bf"},"constants":{"P":"provider","C":"consumer","UNBONDING_SECONDS_P":70,"UNBONDING_SECONDS_C":50,"TRUSTING_SECONDS":49,"NUM_VALIDATORS":4,"MAX_VALIDATORS":2,"SLASH_DOUBLESIGN":0,"SLASH_DOWNTIME":0,"JAIL_SECONDS":999999999999999,"BLOCK_SECONDS":6,"INITIAL_DELEGATOR_TOKENS":10000000000000,"DELEGATE_AMT_MIN":1000,"DELEGATE_AMT_MAX":5000,"UNDELEGATE_AMT_MIN":1000,"UNDELEGATE_AMT_MAX":5000,"ISDOWNTIME_PROBABILITY":0.5,"MAX_NUM_PACKETS_FOR_DELIVER":6},"actions":[{"ix":0,"action":{"kind":"ConsumerSlash","val":0,"infractionHeight":0,"isDowntime":true},"partialState":{"h":1,"t":6,"outstandingDowntime":[true,false,false,false]}},{"ix":1,"action":{"kind":"Deliver","chain":"consumer","numPackets":6},"partialState":{"h":1,"t":6,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[true,false,false,false]}},{"ix":2,"action":{"kind":"Deliver","chain":"consumer","numPackets":4},"partialState":{"h":1,"t":6,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[true,false,false,false]}},{"ix":3,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":2,"t":12,"tokens":[5000,4000,3000,2000],"delegation":[4000,3000,2000,1000],"delegatorTokens":10000000000000,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":4,"action":{"kind":"Delegate","val":0,"amt":4345},"partialState":{"h":2,"t":12,"tokens":[9345,4000,3000,2000],"delegation":[8345,3000,2000,1000],"delegatorTokens":9999999995655}},{"ix":5,"action":{"kind":"Delegate","val":0,"amt":1310},"partialState":{"h":2,"t":12,"tokens":[10655,4000,3000,2000],"delegation":[9655,3000,2000,1000],"delegatorTokens":9999999994345}},{"ix":6,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":7,"action":{"kind":"Delegate","val":1,"amt":4482},"partialState":{"h":2,"t":12,"tokens":[10655,8482,3000,2000],"delegation":[9655,7482,2000,1000],"delegatorTokens":9999999989863}},{"ix":8,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":2,"t":12,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[true,false,false,false]}},{"ix":9,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":10,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":11,"action":{"kind":"Delegate","val":3,"amt":1847},"partialState":{"h":2,"t":12,"tokens":[10655,8482,3000,3847],"delegation":[9655,7482,2000,2847],"delegatorTokens":9999999988016}},{"ix":12,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":3,"t":18,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[true,false,false,false]}},{"ix":13,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":14,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":3,"t":18,"tokens":[10655,8482,3000,3847],"delegation":[9655,7482,2000,2847],"delegatorTokens":9999999988016,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":15,"action":{"kind":"Delegate","val":3,"amt":2001},"partialState":{"h":3,"t":18,"tokens":[10655,8482,3000,5848],"delegation":[9655,7482,2000,4848],"delegatorTokens":9999999986015}},{"ix":16,"action":{"kind":"Undelegate","val":3,"amt":3134},"partialState":{"h":3,"t":18,"tokens":[10655,8482,3000,2714],"delegation":[9655,7482,2000,1714],"delegatorTokens":9999999986015}},{"ix":17,"action":{"kind":"ConsumerSlash","val":0,"infractionHeight":0,"isDowntime":true},"partialState":{"h":3,"t":18,"outstandingDowntime":[true,false,false,false]}},{"ix":18,"action":{"kind":"Deliver","chain":"provider","numPackets":5},"partialState":{"h":3,"t":18,"tokens":[10655,8482,3000,2714],"delegation":[9655,7482,2000,1714],"delegatorTokens":9999999986015,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":19,"action":{"kind":"Deliver","chain":"consumer","numPackets":5},"partialState":{"h":3,"t":18,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[true,false,false,false]}},{"ix":20,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":4,"t":24,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[true,false,false,false]}},{"ix":21,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":4,"t":24,"tokens":[10655,8482,3000,2714],"delegation":[9655,7482,2000,1714],"delegatorTokens":9999999986015,"jailed":[1000000000000017,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":22,"action":{"kind":"Delegate","val":1,"amt":1897},"partialState":{"h":4,"t":24,"tokens":[10655,10379,3000,2714],"delegation":[9655,9379,2000,1714],"delegatorTokens":9999999984118}},{"ix":23,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":24,"action":{"kind":"ConsumerSlash","val":2,"infractionHeight":3,"isDowntime":true},"partialState":{"h":4,"t":24,"outstandingDowntime":[true,false,true,false]}},{"ix":25,"action":{"kind":"Delegate","val":0,"amt":3306},"partialState":{"h":4,"t":24,"tokens":[13961,10379,3000,2714],"delegation":[12961,9379,2000,1714],"delegatorTokens":9999999980812}},{"ix":26,"action":{"kind":"Deliver","chain":"provider","numPackets":2},"partialState":{"h":4,"t":24,"tokens":[13961,10379,3000,2714],"delegation":[12961,9379,2000,1714],"delegatorTokens":9999999980812,"jailed":[1000000000000017,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":27,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":28,"action":{"kind":"Delegate","val":2,"amt":3044},"partialState":{"h":4,"t":24,"tokens":[13961,10379,6044,2714],"delegation":[12961,9379,5044,1714],"delegatorTokens":9999999977768}},{"ix":29,"action":{"kind":"ConsumerSlash","val":0,"infractionHeight":1,"isDowntime":true},"partialState":{"h":4,"t":24,"outstandingDowntime":[true,false,true,false]}},{"ix":30,"action":{"kind":"Delegate","val":2,"amt":4237},"partialState":{"h":4,"t":24,"tokens":[13961,10379,10281,2714],"delegation":[12961,9379,9281,1714],"delegatorTokens":9999999973531}},{"ix":31,"action":{"kind":"ConsumerSlash","val":1,"infractionHeight":1,"isDowntime":true},"partialState":{"h":4,"t":24,"outstandingDowntime":[true,true,true,false]}},{"ix":32,"action":{"kind":"Deliver","chain":"provider","numPackets":5},"partialState":{"h":4,"t":24,"tokens":[13961,10379,10281,2714],"delegation":[12961,9379,9281,1714],"delegatorTokens":9999999973531,"jailed":[1000000000000017,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":33,"action":{"kind":"Delegate","val":0,"amt":4435},"partialState":{"h":4,"t":24,"tokens":[18396,10379,10281,2714],"delegation":[17396,9379,9281,1714],"delegatorTokens":9999999969096}},{"ix":34,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":35,"action":{"kind":"Delegate","val":0,"amt":1979},"partialState":{"h":4,"t":24,"tokens":[20375,10379,10281,2714],"delegation":[19375,9379,9281,1714],"delegatorTokens":9999999967117}},{"ix":36,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":5,"t":30,"tokens":[20375,10379,10281,2714],"delegation":[19375,9379,9281,1714],"delegatorTokens":9999999967117,"jailed":[1000000000000017,null,null,null],"status":["unbonding","bonded","bonded","unbonded"]}},{"ix":37,"action":{"kind":"Undelegate","val":1,"amt":2930},"partialState":{"h":5,"t":30,"tokens":[20375,7449,10281,2714],"delegation":[19375,6449,9281,1714],"delegatorTokens":9999999967117}},{"ix":38,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":39,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":6,"t":36,"tokens":[20375,7449,10281,2714],"delegation":[19375,6449,9281,1714],"delegatorTokens":9999999967117,"jailed":[1000000000000017,null,null,null],"status":["unbonding","bonded","bonded","unbonded"]}},{"ix":40,"action":{"kind":"Undelegate","val":1,"amt":4398},"partialState":{"h":6,"t":36,"tokens":[20375,3051,10281,2714],"delegation":[19375,2051,9281,1714],"delegatorTokens":9999999967117}},{"ix":41,"action":{"kind":"Undelegate","val":3,"amt":4713},"partialState":{"h":6,"t":36,"tokens":[20375,3051,10281,2714],"delegation":[19375,2051,9281,1714],"delegatorTokens":9999999967117}},{"ix":42,"action":{"kind":"Undelegate","val":1,"amt":1608},"partialState":{"h":6,"t":36,"tokens":[20375,1443,10281,2714],"delegation":[19375,443,9281,1714],"delegatorTokens":9999999967117}},{"ix":43,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":5,"t":30,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[true,true,true,false]}},{"ix":44,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":45,"action":{"kind":"Deliver","chain":"consumer","numPackets":6},"partialState":{"h":5,"t":30,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,true,true,false]}},{"ix":46,"action":{"kind":"Delegate","val":3,"amt":1835},"partialState":{"h":6,"t":36,"tokens":[20375,1443,10281,4549],"delegation":[19375,443,9281,3549],"delegatorTokens":9999999965282}},{"ix":47,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":48,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":49,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":6,"t":36,"consumerPower":[null,10379,10281,null],"outstandingDowntime":[false,true,true,false]}},{"ix":50,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":51,"action":{"kind":"Delegate","val":2,"amt":2467},"partialState":{"h":6,"t":36,"tokens":[20375,1443,12748,4549],"delegation":[19375,443,11748,3549],"delegatorTokens":9999999962815}},{"ix":52,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":7,"t":42,"consumerPower":[null,10379,10281,null],"outstandingDowntime":[false,true,true,false]}},{"ix":53,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":54,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":55,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":8,"t":48,"consumerPower":[null,10379,10281,null],"outstandingDowntime":[false,true,true,false]}},{"ix":56,"action":{"kind":"Undelegate","val":2,"amt":3096},"partialState":{"h":6,"t":36,"tokens":[20375,1443,9652,4549],"delegation":[19375,443,8652,3549],"delegatorTokens":9999999962815}},{"ix":57,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":7,"t":42,"tokens":[20375,1443,9652,4549],"delegation":[19375,443,8652,3549],"delegatorTokens":9999999962815,"jailed":[1000000000000017,null,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":58,"action":{"kind":"Undelegate","val":0,"amt":2939},"partialState":{"h":7,"t":42,"tokens":[17436,1443,9652,4549],"delegation":[16436,443,8652,3549],"delegatorTokens":9999999962815}},{"ix":59,"action":{"kind":"Deliver","chain":"consumer","numPackets":6},"partialState":{"h":8,"t":48,"consumerPower":[null,10379,10281,null],"outstandingDowntime":[false,true,true,false]}},{"ix":60,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":8,"t":48,"tokens":[17436,1443,9652,4549],"delegation":[16436,443,8652,3549],"delegatorTokens":9999999962815,"jailed":[1000000000000017,null,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":61,"action":{"kind":"Deliver","chain":"provider","numPackets":5},"partialState":{"h":8,"t":48,"tokens":[17436,1443,9652,4549],"delegation":[16436,443,8652,3549],"delegatorTokens":9999999962815,"jailed":[1000000000000017,null,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":62,"action":{"kind":"Undelegate","val":2,"amt":3854},"partialState":{"h":8,"t":48,"tokens":[17436,1443,5798,4549],"delegation":[16436,443,4798,3549],"delegatorTokens":9999999962815}},{"ix":63,"action":{"kind":"Undelegate","val":3,"amt":4267},"partialState":{"h":8,"t":48,"tokens":[17436,1443,5798,4549],"delegation":[16436,443,4798,3549],"delegatorTokens":9999999962815}},{"ix":64,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":65,"action":{"kind":"Deliver","chain":"provider","numPackets":3},"partialState":{"h":8,"t":48,"tokens":[17436,1443,5798,4549],"delegation":[16436,443,4798,3549],"delegatorTokens":9999999962815,"jailed":[1000000000000017,null,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":66,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":67,"action":{"kind":"Delegate","val":2,"amt":3122},"partialState":{"h":8,"t":48,"tokens":[17436,1443,8920,4549],"delegation":[16436,443,7920,3549],"delegatorTokens":9999999959693}},{"ix":68,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":9,"t":54,"consumerPower":[null,7449,10281,null],"outstandingDowntime":[false,true,true,false]}},{"ix":69,"action":{"kind":"Deliver","chain":"provider","numPackets":2},"partialState":{"h":8,"t":48,"tokens":[17436,1443,8920,4549],"delegation":[16436,443,7920,3549],"delegatorTokens":9999999959693,"jailed":[1000000000000017,null,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":70,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":9,"t":54,"tokens":[17436,1443,8920,4549],"delegation":[16436,443,7920,3549],"delegatorTokens":9999999959693,"jailed":[1000000000000017,1000000000000047,1000000000000047,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":71,"action":{"kind":"Deliver","chain":"provider","numPackets":5},"partialState":{"h":9,"t":54,"tokens":[17436,1443,8920,4549],"delegation":[16436,443,7920,3549],"delegatorTokens":9999999959693,"jailed":[1000000000000017,1000000000000047,1000000000000047,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":72,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":73,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":10,"t":60,"consumerPower":[null,7449,10281,null],"outstandingDowntime":[false,true,true,false]}},{"ix":74,"action":{"kind":"Delegate","val":0,"amt":4609},"partialState":{"h":9,"t":54,"tokens":[22045,1443,8920,4549],"delegation":[21045,443,7920,3549],"delegatorTokens":9999999955084}},{"ix":75,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":76,"action":{"kind":"Deliver","chain":"provider","numPackets":5},"partialState":{"h":9,"t":54,"tokens":[22045,1443,8920,4549],"delegation":[21045,443,7920,3549],"delegatorTokens":9999999955084,"jailed":[1000000000000017,1000000000000047,1000000000000047,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":77,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":11,"t":66,"consumerPower":[null,7449,10281,null],"outstandingDowntime":[false,true,true,false]}},{"ix":78,"action":{"kind":"Deliver","chain":"consumer","numPackets":6},"partialState":{"h":11,"t":66,"consumerPower":[null,7449,10281,null],"outstandingDowntime":[false,true,true,false]}},{"ix":79,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":12,"t":72,"consumerPower":[null,null,9652,4549],"outstandingDowntime":[false,true,true,false]}},{"ix":80,"action":{"kind":"Undelegate","val":3,"amt":4202},"partialState":{"h":9,"t":54,"tokens":[22045,1443,8920,4549],"delegation":[21045,443,7920,3549],"delegatorTokens":9999999955084}},{"ix":81,"action":{"kind":"Delegate","val":3,"amt":1873},"partialState":{"h":9,"t":54,"tokens":[22045,1443,8920,6422],"delegation":[21045,443,7920,5422],"delegatorTokens":9999999953211}},{"ix":82,"action":{"kind":"Deliver","chain":"provider","numPackets":5},"partialState":{"h":9,"t":54,"tokens":[22045,1443,8920,6422],"delegation":[21045,443,7920,5422],"delegatorTokens":9999999953211,"jailed":[1000000000000017,1000000000000047,1000000000000047,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":83,"action":{"kind":"Delegate","val":1,"amt":2728},"partialState":{"h":9,"t":54,"tokens":[22045,4171,8920,6422],"delegation":[21045,3171,7920,5422],"delegatorTokens":9999999950483}},{"ix":84,"action":{"kind":"Deliver","chain":"provider","numPackets":1},"partialState":{"h":9,"t":54,"tokens":[22045,4171,8920,6422],"delegation":[21045,3171,7920,5422],"delegatorTokens":9999999950483,"jailed":[1000000000000017,1000000000000047,1000000000000047,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":85,"action":{"kind":"Deliver","chain":"provider","numPackets":6},"partialState":{"h":9,"t":54,"tokens":[22045,4171,8920,6422],"delegation":[21045,3171,7920,5422],"delegatorTokens":9999999950483,"jailed":[1000000000000017,1000000000000047,1000000000000047,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":86,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":13,"t":78,"consumerPower":[null,null,9652,4549],"outstandingDowntime":[false,true,true,false]}},{"ix":87,"action":{"kind":"Delegate","val":2,"amt":3069},"partialState":{"h":9,"t":54,"tokens":[22045,4171,11989,6422],"delegation":[21045,3171,10989,5422],"delegatorTokens":9999999947414}},{"ix":88,"action":{"kind":"Delegate","val":1,"amt":3854},"partialState":{"h":9,"t":54,"tokens":[22045,8025,11989,6422],"delegation":[21045,7025,10989,5422],"delegatorTokens":9999999943560}},{"ix":89,"action":{"kind":"Delegate","val":1,"amt":4635},"partialState":{"h":9,"t":54,"tokens":[22045,12660,11989,6422],"delegation":[21045,11660,10989,5422],"delegatorTokens":9999999938925}},{"ix":90,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":10,"t":60,"tokens":[22045,12660,11989,6422],"delegation":[21045,11660,10989,5422],"delegatorTokens":9999999938925,"jailed":[1000000000000017,1000000000000047,1000000000000047,null],"status":["unbonding","unbonding","unbonding","bonded"]}},{"ix":91,"action":{"kind":"Deliver","chain":"consumer","numPackets":4},"partialState":{"h":13,"t":78,"consumerPower":[null,null,9652,4549],"outstandingDowntime":[false,false,false,false]}},{"ix":92,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":14,"t":84,"consumerPower":[null,null,8920,4549],"outstandingDowntime":[false,false,false,false]}},{"ix":93,"action":{"kind":"Delegate","val":3,"amt":1429},"partialState":{"h":10,"t":60,"tokens":[22045,12660,11989,7851],"delegation":[21045,11660,10989,6851],"delegatorTokens":9999999937496}},{"ix":94,"action":{"kind":"Undelegate","val":1,"amt":1237},"partialState":{"h":10,"t":60,"tokens":[22045,11423,11989,7851],"delegation":[21045,10423,10989,6851],"delegatorTokens":9999999937496}},{"ix":95,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":96,"action":{"kind":"Undelegate","val":0,"amt":1861},"partialState":{"h":10,"t":60,"tokens":[20184,11423,11989,7851],"delegation":[19184,10423,10989,6851],"delegatorTokens":9999999937496}},{"ix":97,"action":{"kind":"Undelegate","val":3,"amt":3397},"partialState":{"h":10,"t":60,"tokens":[20184,11423,11989,4454],"delegation":[19184,10423,10989,3454],"delegatorTokens":9999999937496}},{"ix":98,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":15,"t":90,"consumerPower":[null,null,8920,4549],"outstandingDowntime":[false,false,false,false]}},{"ix":99,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":100,"action":{"kind":"Undelegate","val":3,"amt":2977},"partialState":{"h":10,"t":60,"tokens":[20184,11423,11989,1477],"delegation":[19184,10423,10989,477],"delegatorTokens":9999999937496}},{"ix":101,"action":{"kind":"Undelegate","val":2,"amt":3888},"partialState":{"h":10,"t":60,"tokens":[20184,11423,8101,1477],"delegation":[19184,10423,7101,477],"delegatorTokens":9999999937496}},{"ix":102,"action":{"kind":"Deliver","chain":"provider","numPackets":2},"partialState":{"h":10,"t":60,"tokens":[20184,11423,8101,1477],"delegation":[19184,10423,7101,477],"delegatorTokens":9999999937496,"jailed":[1000000000000017,1000000000000047,1000000000000047,null],"status":["unbonding","unbonding","unbonding","bonded"]}},{"ix":103,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":104,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":16,"t":96,"consumerPower":[null,null,8920,4549],"outstandingDowntime":[false,false,false,false]}},{"ix":105,"action":{"kind":"Undelegate","val":1,"amt":1516},"partialState":{"h":10,"t":60,"tokens":[20184,9907,8101,1477],"delegation":[19184,8907,7101,477],"delegatorTokens":9999999937496}},{"ix":106,"action":{"kind":"Delegate","val":0,"amt":2643},"partialState":{"h":10,"t":60,"tokens":[22827,9907,8101,1477],"delegation":[21827,8907,7101,477],"delegatorTokens":9999999934853}},{"ix":107,"action":{"kind":"Deliver","chain":"provider","numPackets":1},"partialState":{"h":10,"t":60,"tokens":[22827,9907,8101,1477],"delegation":[21827,8907,7101,477],"delegatorTokens":9999999934853,"jailed":[1000000000000017,1000000000000047,1000000000000047,null],"status":["unbonding","unbonding","unbonding","bonded"]}},{"ix":108,"action":{"kind":"Deliver","chain":"provider","numPackets":1},"partialState":{"h":10,"t":60,"tokens":[22827,9907,8101,1477],"delegation":[21827,8907,7101,477],"delegatorTokens":9999999934853,"jailed":[1000000000000017,1000000000000047,1000000000000047,null],"status":["unbonding","unbonding","unbonding","bonded"]}},{"ix":109,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":11,"t":66,"tokens":[22827,9907,8101,1477],"delegation":[21827,8907,7101,477],"delegatorTokens":9999999934853,"jailed":[1000000000000017,1000000000000047,1000000000000047,null],"status":["unbonding","unbonding","unbonding","bonded"]}},{"ix":110,"action":{"kind":"Undelegate","val":2,"amt":2765},"partialState":{"h":11,"t":66,"tokens":[22827,9907,5336,1477],"delegation":[21827,8907,4336,477],"delegatorTokens":9999999934853}},{"ix":111,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":17,"t":102,"consumerPower":[null,null,8920,4549],"outstandingDowntime":[false,false,false,false]}},{"ix":112,"action":{"kind":"Undelegate","val":0,"amt":3358},"partialState":{"h":11,"t":66,"tokens":[19469,9907,5336,1477],"delegation":[18469,8907,4336,477],"delegatorTokens":9999999934853}},{"ix":113,"action":{"kind":"Deliver","chain":"consumer","numPackets":2},"partialState":{"h":17,"t":102,"consumerPower":[null,null,8920,4549],"outstandingDowntime":[false,false,false,false]}},{"ix":114,"action":{"kind":"Undelegate","val":1,"amt":3723},"partialState":{"h":11,"t":66,"tokens":[19469,6184,5336,1477],"delegation":[18469,5184,4336,477],"delegatorTokens":9999999934853}},{"ix":115,"action":{"kind":"Deliver","chain":"provider","numPackets":2},"partialState":{"h":11,"t":66,"tokens":[19469,6184,5336,1477],"delegation":[18469,5184,4336,477],"delegatorTokens":9999999934853,"jailed":[1000000000000017,1000000000000047,1000000000000047,null],"status":["unbonding","unbonding","unbonding","bonded"]}},{"ix":116,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":117,"action":{"kind":"Deliver","chain":"provider","numPackets":3},"partialState":{"h":11,"t":66,"tokens":[19469,6184,5336,1477],"delegation":[18469,5184,4336,477],"delegatorTokens":9999999934853,"jailed":[1000000000000017,1000000000000047,1000000000000047,null],"status":["unbonding","unbonding","unbonding","bonded"]}},{"ix":118,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":18,"t":108,"consumerPower":[null,null,null,6422],"outstandingDowntime":[false,false,false,false]}},{"ix":119,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":12,"t":72,"tokens":[19469,6184,5336,1477],"delegation":[18469,5184,4336,477],"delegatorTokens":9999999934853,"jailed":[1000000000000017,1000000000000047,1000000000000047,null],"status":["unbonding","unbonding","unbonding","bonded"]}},{"ix":120,"action":{"kind":"Delegate","val":1,"amt":4913},"partialState":{"h":12,"t":72,"tokens":[19469,11097,5336,1477],"delegation":[18469,10097,4336,477],"delegatorTokens":9999999929940}},{"ix":121,"action":{"kind":"Delegate","val":2,"amt":1850},"partialState":{"h":12,"t":72,"tokens":[19469,11097,7186,1477],"delegation":[18469,10097,6186,477],"delegatorTokens":9999999928090}},{"ix":122,"action":{"kind":"Undelegate","val":3,"amt":4447},"partialState":{"h":12,"t":72,"tokens":[19469,11097,7186,1477],"delegation":[18469,10097,6186,477],"delegatorTokens":9999999928090}},{"ix":123,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":124,"action":{"kind":"Delegate","val":2,"amt":3084},"partialState":{"h":12,"t":72,"tokens":[19469,11097,10270,1477],"delegation":[18469,10097,9270,477],"delegatorTokens":9999999925006}},{"ix":125,"action":{"kind":"Undelegate","val":2,"amt":4322},"partialState":{"h":12,"t":72,"tokens":[19469,11097,5948,1477],"delegation":[18469,10097,4948,477],"delegatorTokens":9999999925006}},{"ix":126,"action":{"kind":"Undelegate","val":2,"amt":1192},"partialState":{"h":12,"t":72,"tokens":[19469,11097,4756,1477],"delegation":[18469,10097,3756,477],"delegatorTokens":9999999925006}},{"ix":127,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":128,"action":{"kind":"Deliver","chain":"consumer","numPackets":6},"partialState":{"h":18,"t":108,"consumerPower":[null,null,null,6422],"outstandingDowntime":[false,false,false,false]}},{"ix":129,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":130,"action":{"kind":"Undelegate","val":2,"amt":4781},"partialState":{"h":12,"t":72,"tokens":[19469,11097,4756,1477],"delegation":[18469,10097,3756,477],"delegatorTokens":9999999925006}},{"ix":131,"action":{"kind":"Delegate","val":2,"amt":1320},"partialState":{"h":12,"t":72,"tokens":[19469,11097,6076,1477],"delegation":[18469,10097,5076,477],"delegatorTokens":9999999923686}},{"ix":132,"action":{"kind":"Undelegate","val":1,"amt":1953},"partialState":{"h":12,"t":72,"tokens":[19469,9144,6076,1477],"delegation":[18469,8144,5076,477],"delegatorTokens":9999999923686}},{"ix":133,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":134,"action":{"kind":"Deliver","chain":"consumer","numPackets":2},"partialState":{"h":18,"t":108,"consumerPower":[null,null,null,6422],"outstandingDowntime":[false,false,false,false]}},{"ix":135,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":136,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":13,"t":78,"tokens":[19469,9144,6076,1477],"delegation":[18469,8144,5076,477],"delegatorTokens":9999999923686,"jailed":[1000000000000017,1000000000000047,1000000000000047,null],"status":["unbonding","unbonding","unbonding","bonded"]}},{"ix":137,"action":{"kind":"Deliver","chain":"provider","numPackets":1},"partialState":{"h":13,"t":78,"tokens":[19469,9144,6076,1477],"delegation":[18469,8144,5076,477],"delegatorTokens":9999999923686,"jailed":[1000000000000017,1000000000000047,1000000000000047,null],"status":["unbonding","unbonding","unbonding","bonded"]}},{"ix":138,"action":{"kind":"Undelegate","val":1,"amt":4458},"partialState":{"h":13,"t":78,"tokens":[19469,4686,6076,1477],"delegation":[18469,3686,5076,477],"delegatorTokens":9999999923686}},{"ix":139,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":19,"t":114,"consumerPower":[null,null,null,1477],"outstandingDowntime":[false,false,false,false]}},{"ix":140,"action":{"kind":"Undelegate","val":1,"amt":2794},"partialState":{"h":13,"t":78,"tokens":[19469,1892,6076,1477],"delegation":[18469,892,5076,477],"delegatorTokens":9999999923686}},{"ix":141,"action":{"kind":"Delegate","val":2,"amt":3290},"partialState":{"h":13,"t":78,"tokens":[19469,1892,9366,1477],"delegation":[18469,892,8366,477],"delegatorTokens":9999999920396}},{"ix":142,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":14,"t":84,"tokens":[19469,1892,9366,1477],"delegation":[18469,892,8366,477],"delegatorTokens":9999999920396,"jailed":[1000000000000017,1000000000000047,1000000000000047,null],"status":["unbonding","unbonding","unbonding","bonded"]}},{"ix":143,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":144,"action":{"kind":"Deliver","chain":"provider","numPackets":3},"partialState":{"h":14,"t":84,"tokens":[19469,1892,9366,1477],"delegation":[18469,892,8366,477],"delegatorTokens":9999999920396,"jailed":[1000000000000017,1000000000000047,1000000000000047,null],"status":["unbonding","unbonding","unbonding","bonded"]}},{"ix":145,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":15,"t":90,"tokens":[19469,1892,9366,1477],"delegation":[18469,892,8366,477],"delegatorTokens":9999999920396,"jailed":[1000000000000017,1000000000000047,1000000000000047,null],"status":["unbonding","unbonding","unbonding","bonded"]}},{"ix":146,"action":{"kind":"Deliver","chain":"consumer","numPackets":3},"partialState":{"h":19,"t":114,"consumerPower":[null,null,null,1477],"outstandingDowntime":[false,false,false,false]}},{"ix":147,"action":{"kind":"Deliver","chain":"provider","numPackets":6},"partialState":{"h":15,"t":90,"tokens":[19469,1892,9366,1477],"delegation":[18469,892,8366,477],"delegatorTokens":9999999920396,"jailed":[1000000000000017,1000000000000047,1000000000000047,null],"status":["unbonding","unbonding","unbonding","bonded"]}},{"ix":148,"action":{"kind":"Deliver","chain":"provider","numPackets":6},"partialState":{"h":15,"t":90,"tokens":[19469,1892,9366,1477],"delegation":[18469,892,8366,477],"delegatorTokens":9999999920396,"jailed":[1000000000000017,1000000000000047,1000000000000047,null],"status":["unbonding","unbonding","unbonding","bonded"]}},{"ix":149,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":20,"t":120,"consumerPower":[null,null,null,1477],"outstandingDowntime":[false,false,false,false]}},{"ix":150,"action":{"kind":"Deliver","chain":"consumer","numPackets":1},"partialState":{"h":20,"t":120,"consumerPower":[null,null,null,1477],"outstandingDowntime":[false,false,false,false]}},{"ix":151,"action":{"kind":"Deliver","chain":"consumer","numPackets":4},"partialState":{"h":20,"t":120,"consumerPower":[null,null,null,1477],"outstandingDowntime":[false,false,false,false]}},{"ix":152,"action":{"kind":"Undelegate","val":1,"amt":1067},"partialState":{"h":15,"t":90,"tokens":[19469,1892,9366,1477],"delegation":[18469,892,8366,477],"delegatorTokens":9999999920396}},{"ix":153,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":154,"action":{"kind":"Undelegate","val":0,"amt":2615},"partialState":{"h":15,"t":90,"tokens":[16854,1892,9366,1477],"delegation":[15854,892,8366,477],"delegatorTokens":9999999920396}},{"ix":155,"action":{"kind":"Deliver","chain":"provider","numPackets":5},"partialState":{"h":15,"t":90,"tokens":[16854,1892,9366,1477],"delegation":[15854,892,8366,477],"delegatorTokens":9999999920396,"jailed":[1000000000000017,1000000000000047,1000000000000047,null],"status":["unbonding","unbonding","unbonding","bonded"]}},{"ix":156,"action":{"kind":"Deliver","chain":"provider","numPackets":4},"partialState":{"h":15,"t":90,"tokens":[16854,1892,9366,1477],"delegation":[15854,892,8366,477],"delegatorTokens":9999999920396,"jailed":[1000000000000017,1000000000000047,1000000000000047,null],"status":["unbonding","unbonding","unbonding","bonded"]}},{"ix":157,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":158,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":159,"action":{"kind":"Undelegate","val":2,"amt":2285},"partialState":{"h":15,"t":90,"tokens":[16854,1892,7081,1477],"delegation":[15854,892,6081,477],"delegatorTokens":9999999920396}},{"ix":160,"action":{"kind":"Undelegate","val":1,"amt":4060},"partialState":{"h":15,"t":90,"tokens":[16854,1892,7081,1477],"delegation":[15854,892,6081,477],"delegatorTokens":9999999920396}},{"ix":161,"action":{"kind":"Deliver","chain":"consumer","numPackets":4},"partialState":{"h":20,"t":120,"consumerPower":[null,null,null,1477],"outstandingDowntime":[false,false,false,false]}},{"ix":162,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":16,"t":96,"tokens":[16854,1892,7081,1477],"delegation":[15854,892,6081,477],"delegatorTokens":9999999923530,"jailed":[1000000000000017,1000000000000047,1000000000000047,null],"status":["unbonding","unbonding","unbonding","bonded"]}},{"ix":163,"action":{"kind":"Undelegate","val":3,"amt":1675},"partialState":{"h":16,"t":96,"tokens":[16854,1892,7081,1477],"delegation":[15854,892,6081,477],"delegatorTokens":9999999923530}},{"ix":164,"action":{"kind":"Deliver","chain":"consumer","numPackets":6},"partialState":{"h":20,"t":120,"consumerPower":[null,null,null,1477],"outstandingDowntime":[false,false,false,false]}},{"ix":165,"action":{"kind":"Delegate","val":0,"amt":2881},"partialState":{"h":16,"t":96,"tokens":[19735,1892,7081,1477],"delegation":[18735,892,6081,477],"delegatorTokens":9999999920649}},{"ix":166,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":167,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":21,"t":126,"consumerPower":[null,null,null,1477],"outstandingDowntime":[false,false,false,false]}},{"ix":168,"action":{"kind":"Deliver","chain":"consumer","numPackets":5},"partialState":{"h":21,"t":126,"consumerPower":[null,null,null,1477],"outstandingDowntime":[false,false,false,false]}},{"ix":169,"action":{"kind":"Undelegate","val":1,"amt":2383},"partialState":{"h":16,"t":96,"tokens":[19735,1892,7081,1477],"delegation":[18735,892,6081,477],"delegatorTokens":9999999920649}},{"ix":170,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":22,"t":132,"consumerPower":[null,null,null,1477],"outstandingDowntime":[false,false,false,false]}},{"ix":171,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":23,"t":138,"consumerPower":[null,null,null,1477],"outstandingDowntime":[false,false,false,false]}},{"ix":172,"action":{"kind":"Undelegate","val":2,"amt":3706},"partialState":{"h":16,"t":96,"tokens":[19735,1892,3375,1477],"delegation":[18735,892,2375,477],"delegatorTokens":9999999920649}},{"ix":173,"action":{"kind":"Deliver","chain":"provider","numPackets":2},"partialState":{"h":16,"t":96,"tokens":[19735,1892,3375,1477],"delegation":[18735,892,2375,477],"delegatorTokens":9999999920649,"jailed":[1000000000000017,1000000000000047,1000000000000047,null],"status":["unbonding","unbonding","unbonding","bonded"]}},{"ix":174,"action":{"kind":"Deliver","chain":"consumer","numPackets":6},"partialState":{"h":23,"t":138,"consumerPower":[null,null,null,1477],"outstandingDowntime":[false,false,false,false]}},{"ix":175,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":17,"t":102,"tokens":[19735,1892,3375,1477],"delegation":[18735,892,2375,477],"delegatorTokens":9999999920649,"jailed":[1000000000000017,1000000000000047,1000000000000047,null],"status":["unbonded","unbonding","unbonding","bonded"]}},{"ix":176,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":177,"action":{"kind":"Deliver","chain":"provider","numPackets":5},"partialState":{"h":17,"t":102,"tokens":[19735,1892,3375,1477],"delegation":[18735,892,2375,477],"delegatorTokens":9999999920649,"jailed":[1000000000000017,1000000000000047,1000000000000047,null],"status":["unbonded","unbonding","unbonding","bonded"]}},{"ix":178,"action":{"kind":"Undelegate","val":0,"amt":4767},"partialState":{"h":17,"t":102,"tokens":[14968,1892,3375,1477],"delegation":[13968,892,2375,477],"delegatorTokens":9999999920649}},{"ix":179,"action":{"kind":"Undelegate","val":1,"amt":4168},"partialState":{"h":17,"t":102,"tokens":[14968,1892,3375,1477],"delegation":[13968,892,2375,477],"delegatorTokens":9999999920649}},{"ix":180,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":18,"t":108,"tokens":[14968,1892,3375,1477],"delegation":[13968,892,2375,477],"delegatorTokens":9999999923579,"jailed":[1000000000000017,1000000000000047,1000000000000047,null],"status":["unbonded","unbonding","unbonding","bonded"]}},{"ix":181,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":19,"t":114,"tokens":[14968,1892,3375,1477],"delegation":[13968,892,2375,477],"delegatorTokens":9999999932681,"jailed":[1000000000000017,1000000000000047,1000000000000047,null],"status":["unbonded","unbonded","unbonding","bonded"]}},{"ix":182,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":183,"action":{"kind":"Undelegate","val":1,"amt":1430},"partialState":{"h":19,"t":114,"tokens":[14968,1892,3375,1477],"delegation":[13968,892,2375,477],"delegatorTokens":9999999932681}},{"ix":184,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":185,"action":{"kind":"Undelegate","val":1,"amt":4096},"partialState":{"h":19,"t":114,"tokens":[14968,1892,3375,1477],"delegation":[13968,892,2375,477],"delegatorTokens":9999999932681}},{"ix":186,"action":{"kind":"Deliver","chain":"provider","numPackets":4},"partialState":{"h":19,"t":114,"tokens":[14968,1892,3375,1477],"delegation":[13968,892,2375,477],"delegatorTokens":9999999932681,"jailed":[1000000000000017,1000000000000047,1000000000000047,null],"status":["unbonded","unbonded","unbonding","bonded"]}},{"ix":187,"action":{"kind":"Deliver","chain":"provider","numPackets":6},"partialState":{"h":19,"t":114,"tokens":[14968,1892,3375,1477],"delegation":[13968,892,2375,477],"delegatorTokens":9999999932681,"jailed":[1000000000000017,1000000000000047,1000000000000047,null],"status":["unbonded","unbonded","unbonding","bonded"]}},{"ix":188,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":189,"action":{"kind":"Delegate","val":3,"amt":1664},"partialState":{"h":19,"t":114,"tokens":[14968,1892,3375,3141],"delegation":[13968,892,2375,2141],"delegatorTokens":9999999931017}},{"ix":190,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":24,"t":144,"consumerPower":[null,null,null,1477],"outstandingDowntime":[false,false,false,false]}},{"ix":191,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":192,"action":{"kind":"Deliver","chain":"provider","numPackets":1},"partialState":{"h":19,"t":114,"tokens":[14968,1892,3375,3141],"delegation":[13968,892,2375,2141],"delegatorTokens":9999999931017,"jailed":[1000000000000017,1000000000000047,1000000000000047,null],"status":["unbonded","unbonded","unbonding","bonded"]}},{"ix":193,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":20,"t":120,"tokens":[14968,1892,3375,3141],"delegation":[13968,892,2375,2141],"delegatorTokens":9999999933956,"jailed":[1000000000000017,1000000000000047,1000000000000047,null],"status":["unbonded","unbonded","unbonding","bonded"]}},{"ix":194,"action":{"kind":"Deliver","chain":"consumer","numPackets":4},"partialState":{"h":24,"t":144,"consumerPower":[null,null,null,1477],"outstandingDowntime":[false,false,false,false]}},{"ix":195,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":196,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":21,"t":126,"tokens":[14968,1892,3375,3141],"delegation":[13968,892,2375,2141],"delegatorTokens":9999999937810,"jailed":[1000000000000017,1000000000000047,1000000000000047,null],"status":["unbonded","unbonded","unbonding","bonded"]}},{"ix":197,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":22,"t":132,"tokens":[14968,1892,3375,3141],"delegation":[13968,892,2375,2141],"delegatorTokens":9999999937810,"jailed":[1000000000000017,1000000000000047,1000000000000047,null],"status":["unbonded","unbonded","unbonding","bonded"]}},{"ix":198,"action":{"kind":"Delegate","val":0,"amt":1605},"partialState":{"h":22,"t":132,"tokens":[16573,1892,3375,3141],"delegation":[15573,892,2375,2141],"delegatorTokens":9999999936205}},{"ix":199,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}}],"events":["send_downtime_slash_request","send_vsc_without_downtime_ack","downtime_slash_request_outstanding","receive_downtime_slash_request","jail","send_vsc_not_because_change","send_vsc_with_downtime_ack","send_downtime_slash_request","downtime_slash_request_outstanding","send_downtime_slash_request","more_than_one_third_val_power_change","send_vsc_without_downtime_ack","send_vsc_without_downtime_ack","insufficient_shares","receive_downtime_slash_ack","consumer_del_val","consumer_update_val","consumer_add_val","send_vsc_without_downtime_ack","send_vsc_not_because_change","send_vsc_without_downtime_ack","insufficient_shares","consumer_update_val","receive_downtime_slash_request","jail","receive_downtime_slash_request","jail","send_vsc_with_downtime_ack","consumer_del_val","consumer_update_val","consumer_add_val","insufficient_shares","send_vsc_without_downtime_ack","receive_downtime_slash_ack","receive_downtime_slash_ack","consumer_update_val","consumer_send_maturation","consumer_send_maturation","consumer_send_maturation","set_undel_hold_false","send_vsc_without_downtime_ack","consumer_send_maturation","consumer_del_val","consumer_update_val","set_unval_hold_false","send_vsc_not_because_change","send_vsc_without_downtime_ack","insufficient_shares","insufficient_shares","send_vsc_not_because_change","send_vsc_without_downtime_ack","consumer_update_val","send_vsc_not_because_change","send_vsc_without_downtime_ack","set_undel_hold_false","insufficient_shares","insufficient_shares","complete_undel_in_endblock","send_vsc_not_because_change","send_vsc_without_downtime_ack","insufficient_shares","consumer_send_maturation","consumer_send_maturation","insufficient_shares","consumer_send_maturation","complete_unval_in_endblock","set_undel_hold_false","set_undel_hold_false","set_undel_hold_false","set_unval_hold_false","set_undel_hold_false","send_vsc_not_because_change","send_vsc_without_downtime_ack","insufficient_shares","complete_undel_in_endblock","send_vsc_not_because_change","send_vsc_without_downtime_ack","complete_unval_in_endblock","complete_undel_in_endblock","insufficient_shares","insufficient_shares","complete_undel_in_endblock","set_undel_hold_false","send_vsc_without_downtime_ack","complete_undel_in_endblock"]},{"meta":{"commit":"7ffd0c04e4205cbc9caf212abfe6c59ee43153bf"},"constants":{"P":"provider","C":"consumer","UNBONDING_SECONDS_P":70,"UNBONDING_SECONDS_C":50,"TRUSTING_SECONDS":49,"NUM_VALIDATORS":4,"MAX_VALIDATORS":2,"SLASH_DOUBLESIGN":0,"SLASH_DOWNTIME":0,"JAIL_SECONDS":999999999999999,"BLOCK_SECONDS":6,"INITIAL_DELEGATOR_TOKENS":10000000000000,"DELEGATE_AMT_MIN":1000,"DELEGATE_AMT_MAX":5000,"UNDELEGATE_AMT_MIN":1000,"UNDELEGATE_AMT_MAX":5000,"ISDOWNTIME_PROBABILITY":0.5,"MAX_NUM_PACKETS_FOR_DELIVER":6},"actions":[{"ix":0,"action":{"kind":"Undelegate","val":0,"amt":3247},"partialState":{"h":1,"t":6,"tokens":[1753,4000,3000,2000],"delegation":[753,3000,2000,1000],"delegatorTokens":10000000000000}},{"ix":1,"action":{"kind":"Deliver","chain":"consumer","numPackets":3},"partialState":{"h":1,"t":6,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":2,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":3,"action":{"kind":"Deliver","chain":"consumer","numPackets":1},"partialState":{"h":1,"t":6,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":4,"action":{"kind":"Deliver","chain":"provider","numPackets":6},"partialState":{"h":1,"t":6,"tokens":[1753,4000,3000,2000],"delegation":[753,3000,2000,1000],"delegatorTokens":10000000000000,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":5,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":2,"t":12,"tokens":[1753,4000,3000,2000],"delegation":[753,3000,2000,1000],"delegatorTokens":10000000000000,"jailed":[null,null,null,null],"status":["unbonding","bonded","bonded","unbonded"]}},{"ix":6,"action":{"kind":"Deliver","chain":"consumer","numPackets":2},"partialState":{"h":1,"t":6,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":7,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":3,"t":18,"tokens":[1753,4000,3000,2000],"delegation":[753,3000,2000,1000],"delegatorTokens":10000000000000,"jailed":[null,null,null,null],"status":["unbonding","bonded","bonded","unbonded"]}},{"ix":8,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":9,"action":{"kind":"Deliver","chain":"provider","numPackets":3},"partialState":{"h":3,"t":18,"tokens":[1753,4000,3000,2000],"delegation":[753,3000,2000,1000],"delegatorTokens":10000000000000,"jailed":[null,null,null,null],"status":["unbonding","bonded","bonded","unbonded"]}},{"ix":10,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":11,"action":{"kind":"Undelegate","val":1,"amt":2190},"partialState":{"h":3,"t":18,"tokens":[1753,1810,3000,2000],"delegation":[753,810,2000,1000],"delegatorTokens":10000000000000}},{"ix":12,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":2,"t":12,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":13,"action":{"kind":"ConsumerSlash","val":0,"infractionHeight":0,"isDowntime":true},"partialState":{"h":2,"t":12,"outstandingDowntime":[true,false,false,false]}},{"ix":14,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":4,"t":24,"tokens":[1753,1810,3000,2000],"delegation":[753,810,2000,1000],"delegatorTokens":10000000000000,"jailed":[null,null,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":15,"action":{"kind":"Delegate","val":3,"amt":2698},"partialState":{"h":4,"t":24,"tokens":[1753,1810,3000,4698],"delegation":[753,810,2000,3698],"delegatorTokens":9999999997302}},{"ix":16,"action":{"kind":"ConsumerSlash","val":1,"infractionHeight":0,"isDowntime":true},"partialState":{"h":2,"t":12,"outstandingDowntime":[true,true,false,false]}},{"ix":17,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":3,"t":18,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[true,true,false,false]}},{"ix":18,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":19,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":5,"t":30,"tokens":[1753,1810,3000,4698],"delegation":[753,810,2000,3698],"delegatorTokens":9999999997302,"jailed":[null,null,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":20,"action":{"kind":"ConsumerSlash","val":1,"infractionHeight":1,"isDowntime":true},"partialState":{"h":3,"t":18,"outstandingDowntime":[true,true,false,false]}},{"ix":21,"action":{"kind":"Delegate","val":0,"amt":2463},"partialState":{"h":5,"t":30,"tokens":[4216,1810,3000,4698],"delegation":[3216,810,2000,3698],"delegatorTokens":9999999994839}},{"ix":22,"action":{"kind":"Undelegate","val":1,"amt":2175},"partialState":{"h":5,"t":30,"tokens":[4216,1810,3000,4698],"delegation":[3216,810,2000,3698],"delegatorTokens":9999999994839}},{"ix":23,"action":{"kind":"Undelegate","val":3,"amt":4759},"partialState":{"h":5,"t":30,"tokens":[4216,1810,3000,4698],"delegation":[3216,810,2000,3698],"delegatorTokens":9999999994839}},{"ix":24,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":25,"action":{"kind":"Deliver","chain":"consumer","numPackets":2},"partialState":{"h":3,"t":18,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[true,true,false,false]}},{"ix":26,"action":{"kind":"ConsumerSlash","val":0,"infractionHeight":0,"isDowntime":false},"partialState":{"h":3,"t":18,"outstandingDowntime":[true,true,false,false]}},{"ix":27,"action":{"kind":"Delegate","val":3,"amt":1073},"partialState":{"h":5,"t":30,"tokens":[4216,1810,3000,5771],"delegation":[3216,810,2000,4771],"delegatorTokens":9999999993766}},{"ix":28,"action":{"kind":"Delegate","val":3,"amt":3006},"partialState":{"h":5,"t":30,"tokens":[4216,1810,3000,8777],"delegation":[3216,810,2000,7777],"delegatorTokens":9999999990760}},{"ix":29,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":30,"action":{"kind":"Delegate","val":0,"amt":2461},"partialState":{"h":5,"t":30,"tokens":[6677,1810,3000,8777],"delegation":[5677,810,2000,7777],"delegatorTokens":9999999988299}},{"ix":31,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":32,"action":{"kind":"ConsumerSlash","val":2,"infractionHeight":2,"isDowntime":true},"partialState":{"h":3,"t":18,"outstandingDowntime":[true,true,true,false]}},{"ix":33,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":34,"action":{"kind":"Deliver","chain":"provider","numPackets":4},"partialState":{"h":5,"t":30,"tokens":[6677,1810,3000,8777],"delegation":[5677,810,2000,7777],"delegatorTokens":9999999988299,"jailed":[null,null,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":35,"action":{"kind":"Deliver","chain":"provider","numPackets":4},"partialState":{"h":5,"t":30,"tokens":[6677,1810,3000,8777],"delegation":[5677,810,2000,7777],"delegatorTokens":9999999988299,"jailed":[null,null,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":36,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":37,"action":{"kind":"Delegate","val":3,"amt":3699},"partialState":{"h":5,"t":30,"tokens":[6677,1810,3000,12476],"delegation":[5677,810,2000,11476],"delegatorTokens":9999999984600}},{"ix":38,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":39,"action":{"kind":"Deliver","chain":"consumer","numPackets":6},"partialState":{"h":3,"t":18,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[true,true,true,false]}},{"ix":40,"action":{"kind":"Delegate","val":1,"amt":3448},"partialState":{"h":5,"t":30,"tokens":[6677,5258,3000,12476],"delegation":[5677,4258,2000,11476],"delegatorTokens":9999999981152}},{"ix":41,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":4,"t":24,"consumerPower":[null,null,3000,2000],"outstandingDowntime":[true,true,true,false]}},{"ix":42,"action":{"kind":"Deliver","chain":"consumer","numPackets":4},"partialState":{"h":4,"t":24,"consumerPower":[null,null,3000,2000],"outstandingDowntime":[true,true,true,false]}},{"ix":43,"action":{"kind":"Delegate","val":2,"amt":1095},"partialState":{"h":5,"t":30,"tokens":[6677,5258,4095,12476],"delegation":[5677,4258,3095,11476],"delegatorTokens":9999999980057}},{"ix":44,"action":{"kind":"Delegate","val":1,"amt":1558},"partialState":{"h":5,"t":30,"tokens":[6677,6816,4095,12476],"delegation":[5677,5816,3095,11476],"delegatorTokens":9999999978499}},{"ix":45,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":6,"t":36,"tokens":[6677,6816,4095,12476],"delegation":[5677,5816,3095,11476],"delegatorTokens":9999999978499,"jailed":[null,null,null,null],"status":["unbonding","bonded","unbonding","bonded"]}},{"ix":46,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":5,"t":30,"consumerPower":[null,null,3000,2000],"outstandingDowntime":[true,true,true,false]}},{"ix":47,"action":{"kind":"Delegate","val":0,"amt":1215},"partialState":{"h":6,"t":36,"tokens":[7892,6816,4095,12476],"delegation":[6892,5816,3095,11476],"delegatorTokens":9999999977284}},{"ix":48,"action":{"kind":"Deliver","chain":"consumer","numPackets":6},"partialState":{"h":5,"t":30,"consumerPower":[null,null,3000,2000],"outstandingDowntime":[true,true,true,false]}},{"ix":49,"action":{"kind":"Deliver","chain":"consumer","numPackets":1},"partialState":{"h":5,"t":30,"consumerPower":[null,null,3000,2000],"outstandingDowntime":[true,true,true,false]}},{"ix":50,"action":{"kind":"Undelegate","val":3,"amt":1162},"partialState":{"h":6,"t":36,"tokens":[7892,6816,4095,11314],"delegation":[6892,5816,3095,10314],"delegatorTokens":9999999977284}},{"ix":51,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":6,"t":36,"consumerPower":[null,null,3000,4698],"outstandingDowntime":[true,true,true,false]}},{"ix":52,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":7,"t":42,"consumerPower":[null,null,3000,4698],"outstandingDowntime":[true,true,true,false]}},{"ix":53,"action":{"kind":"Undelegate","val":1,"amt":2227},"partialState":{"h":6,"t":36,"tokens":[7892,4589,4095,11314],"delegation":[6892,3589,3095,10314],"delegatorTokens":9999999977284}},{"ix":54,"action":{"kind":"Delegate","val":0,"amt":4195},"partialState":{"h":6,"t":36,"tokens":[12087,4589,4095,11314],"delegation":[11087,3589,3095,10314],"delegatorTokens":9999999973089}},{"ix":55,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":8,"t":48,"consumerPower":[null,null,3000,4698],"outstandingDowntime":[true,true,true,false]}},{"ix":56,"action":{"kind":"Delegate","val":0,"amt":4321},"partialState":{"h":6,"t":36,"tokens":[16408,4589,4095,11314],"delegation":[15408,3589,3095,10314],"delegatorTokens":9999999968768}},{"ix":57,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":7,"t":42,"tokens":[16408,4589,4095,11314],"delegation":[15408,3589,3095,10314],"delegatorTokens":9999999968768,"jailed":[null,null,null,null],"status":["bonded","unbonding","unbonding","bonded"]}},{"ix":58,"action":{"kind":"Deliver","chain":"provider","numPackets":4},"partialState":{"h":7,"t":42,"tokens":[16408,4589,4095,11314],"delegation":[15408,3589,3095,10314],"delegatorTokens":9999999968768,"jailed":[null,null,null,null],"status":["bonded","unbonding","unbonding","bonded"]}},{"ix":59,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":60,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":9,"t":54,"consumerPower":[null,null,3000,4698],"outstandingDowntime":[true,true,true,false]}},{"ix":61,"action":{"kind":"Delegate","val":1,"amt":4858},"partialState":{"h":7,"t":42,"tokens":[16408,9447,4095,11314],"delegation":[15408,8447,3095,10314],"delegatorTokens":9999999963910}},{"ix":62,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":10,"t":60,"consumerPower":[null,null,3000,4698],"outstandingDowntime":[true,true,true,false]}},{"ix":63,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":64,"action":{"kind":"Delegate","val":1,"amt":1280},"partialState":{"h":7,"t":42,"tokens":[16408,10727,4095,11314],"delegation":[15408,9727,3095,10314],"delegatorTokens":9999999962630}},{"ix":65,"action":{"kind":"Undelegate","val":1,"amt":2524},"partialState":{"h":7,"t":42,"tokens":[16408,8203,4095,11314],"delegation":[15408,7203,3095,10314],"delegatorTokens":9999999962630}},{"ix":66,"action":{"kind":"Deliver","chain":"provider","numPackets":5},"partialState":{"h":7,"t":42,"tokens":[16408,8203,4095,11314],"delegation":[15408,7203,3095,10314],"delegatorTokens":9999999962630,"jailed":[null,null,null,null],"status":["bonded","unbonding","unbonding","bonded"]}},{"ix":67,"action":{"kind":"Delegate","val":0,"amt":2125},"partialState":{"h":7,"t":42,"tokens":[18533,8203,4095,11314],"delegation":[17533,7203,3095,10314],"delegatorTokens":9999999960505}},{"ix":68,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":8,"t":48,"tokens":[18533,8203,4095,11314],"delegation":[17533,7203,3095,10314],"delegatorTokens":9999999960505,"jailed":[1000000000000041,1000000000000041,1000000000000041,null],"status":["bonded","unbonding","unbonding","bonded"]}},{"ix":69,"action":{"kind":"Deliver","chain":"provider","numPackets":2},"partialState":{"h":8,"t":48,"tokens":[18533,8203,4095,11314],"delegation":[17533,7203,3095,10314],"delegatorTokens":9999999960505,"jailed":[1000000000000041,1000000000000041,1000000000000041,null],"status":["bonded","unbonding","unbonding","bonded"]}},{"ix":70,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":71,"action":{"kind":"Deliver","chain":"consumer","numPackets":3},"partialState":{"h":10,"t":60,"consumerPower":[null,null,3000,4698],"outstandingDowntime":[true,true,true,false]}},{"ix":72,"action":{"kind":"Deliver","chain":"consumer","numPackets":5},"partialState":{"h":10,"t":60,"consumerPower":[null,null,3000,4698],"outstandingDowntime":[true,true,true,false]}},{"ix":73,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":9,"t":54,"tokens":[18533,8203,4095,11314],"delegation":[17533,7203,3095,10314],"delegatorTokens":9999999960505,"jailed":[1000000000000041,1000000000000041,1000000000000041,null],"status":["unbonding","unbonding","unbonding","bonded"]}},{"ix":74,"action":{"kind":"Delegate","val":2,"amt":2204},"partialState":{"h":9,"t":54,"tokens":[18533,8203,6299,11314],"delegation":[17533,7203,5299,10314],"delegatorTokens":9999999958301}},{"ix":75,"action":{"kind":"Deliver","chain":"consumer","numPackets":4},"partialState":{"h":10,"t":60,"consumerPower":[null,null,3000,4698],"outstandingDowntime":[false,false,false,false]}},{"ix":76,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":11,"t":66,"consumerPower":[18533,null,null,11314],"outstandingDowntime":[false,false,false,false]}},{"ix":77,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":78,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":79,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":80,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":10,"t":60,"tokens":[18533,8203,6299,11314],"delegation":[17533,7203,5299,10314],"delegatorTokens":9999999958301,"jailed":[1000000000000041,1000000000000041,1000000000000041,null],"status":["unbonding","unbonding","unbonding","bonded"]}},{"ix":81,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":11,"t":66,"tokens":[18533,8203,6299,11314],"delegation":[17533,7203,5299,10314],"delegatorTokens":9999999958301,"jailed":[1000000000000041,1000000000000041,1000000000000041,null],"status":["unbonding","unbonding","unbonding","bonded"]}},{"ix":82,"action":{"kind":"Delegate","val":0,"amt":3295},"partialState":{"h":11,"t":66,"tokens":[21828,8203,6299,11314],"delegation":[20828,7203,5299,10314],"delegatorTokens":9999999955006}},{"ix":83,"action":{"kind":"Delegate","val":1,"amt":4811},"partialState":{"h":11,"t":66,"tokens":[21828,13014,6299,11314],"delegation":[20828,12014,5299,10314],"delegatorTokens":9999999950195}},{"ix":84,"action":{"kind":"Delegate","val":2,"amt":4044},"partialState":{"h":11,"t":66,"tokens":[21828,13014,10343,11314],"delegation":[20828,12014,9343,10314],"delegatorTokens":9999999946151}},{"ix":85,"action":{"kind":"Delegate","val":3,"amt":3616},"partialState":{"h":11,"t":66,"tokens":[21828,13014,10343,14930],"delegation":[20828,12014,9343,13930],"delegatorTokens":9999999942535}},{"ix":86,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":12,"t":72,"consumerPower":[18533,null,null,11314],"outstandingDowntime":[false,false,false,false]}},{"ix":87,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":13,"t":78,"consumerPower":[18533,null,null,11314],"outstandingDowntime":[false,false,false,false]}},{"ix":88,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":89,"action":{"kind":"Deliver","chain":"provider","numPackets":2},"partialState":{"h":11,"t":66,"tokens":[21828,13014,10343,14930],"delegation":[20828,12014,9343,13930],"delegatorTokens":9999999942535,"jailed":[1000000000000041,1000000000000041,1000000000000041,null],"status":["unbonding","unbonding","unbonding","bonded"]}},{"ix":90,"action":{"kind":"Undelegate","val":3,"amt":2549},"partialState":{"h":11,"t":66,"tokens":[21828,13014,10343,12381],"delegation":[20828,12014,9343,11381],"delegatorTokens":9999999942535}},{"ix":91,"action":{"kind":"Undelegate","val":3,"amt":2206},"partialState":{"h":11,"t":66,"tokens":[21828,13014,10343,10175],"delegation":[20828,12014,9343,9175],"delegatorTokens":9999999942535}},{"ix":92,"action":{"kind":"Deliver","chain":"consumer","numPackets":4},"partialState":{"h":13,"t":78,"consumerPower":[18533,null,null,11314],"outstandingDowntime":[false,false,false,false]}},{"ix":93,"action":{"kind":"Delegate","val":0,"amt":2614},"partialState":{"h":11,"t":66,"tokens":[24442,13014,10343,10175],"delegation":[23442,12014,9343,9175],"delegatorTokens":9999999939921}},{"ix":94,"action":{"kind":"Undelegate","val":2,"amt":4742},"partialState":{"h":11,"t":66,"tokens":[24442,13014,5601,10175],"delegation":[23442,12014,4601,9175],"delegatorTokens":9999999939921}},{"ix":95,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":14,"t":84,"consumerPower":[null,null,null,11314],"outstandingDowntime":[false,false,false,false]}},{"ix":96,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":15,"t":90,"consumerPower":[null,null,null,11314],"outstandingDowntime":[false,false,false,false]}},{"ix":97,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":98,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":16,"t":96,"consumerPower":[null,null,null,11314],"outstandingDowntime":[false,false,false,false]}},{"ix":99,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":100,"action":{"kind":"Undelegate","val":3,"amt":4964},"partialState":{"h":11,"t":66,"tokens":[24442,13014,5601,5211],"delegation":[23442,12014,4601,4211],"delegatorTokens":9999999939921}},{"ix":101,"action":{"kind":"Undelegate","val":3,"amt":3259},"partialState":{"h":11,"t":66,"tokens":[24442,13014,5601,1952],"delegation":[23442,12014,4601,952],"delegatorTokens":9999999939921}},{"ix":102,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":103,"action":{"kind":"Delegate","val":0,"amt":1120},"partialState":{"h":11,"t":66,"tokens":[25562,13014,5601,1952],"delegation":[24562,12014,4601,952],"delegatorTokens":9999999938801}},{"ix":104,"action":{"kind":"Deliver","chain":"provider","numPackets":5},"partialState":{"h":11,"t":66,"tokens":[25562,13014,5601,1952],"delegation":[24562,12014,4601,952],"delegatorTokens":9999999938801,"jailed":[1000000000000041,1000000000000041,1000000000000041,null],"status":["unbonding","unbonding","unbonding","bonded"]}},{"ix":105,"action":{"kind":"Undelegate","val":2,"amt":2805},"partialState":{"h":11,"t":66,"tokens":[25562,13014,2796,1952],"delegation":[24562,12014,1796,952],"delegatorTokens":9999999938801}},{"ix":106,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":17,"t":102,"consumerPower":[null,null,null,11314],"outstandingDowntime":[false,false,false,false]}},{"ix":107,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":108,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":12,"t":72,"tokens":[25562,13014,2796,1952],"delegation":[24562,12014,1796,952],"delegatorTokens":9999999938801,"jailed":[1000000000000041,1000000000000041,1000000000000041,null],"status":["unbonding","unbonding","unbonding","bonded"]}},{"ix":109,"action":{"kind":"Delegate","val":2,"amt":1112},"partialState":{"h":12,"t":72,"tokens":[25562,13014,3908,1952],"delegation":[24562,12014,2908,952],"delegatorTokens":9999999937689}},{"ix":110,"action":{"kind":"Deliver","chain":"provider","numPackets":4},"partialState":{"h":12,"t":72,"tokens":[25562,13014,3908,1952],"delegation":[24562,12014,2908,952],"delegatorTokens":9999999937689,"jailed":[1000000000000041,1000000000000041,1000000000000041,null],"status":["unbonding","unbonding","unbonding","bonded"]}},{"ix":111,"action":{"kind":"Delegate","val":0,"amt":2383},"partialState":{"h":12,"t":72,"tokens":[27945,13014,3908,1952],"delegation":[26945,12014,2908,952],"delegatorTokens":9999999935306}},{"ix":112,"action":{"kind":"Undelegate","val":0,"amt":1979},"partialState":{"h":12,"t":72,"tokens":[25966,13014,3908,1952],"delegation":[24966,12014,2908,952],"delegatorTokens":9999999935306}},{"ix":113,"action":{"kind":"Deliver","chain":"provider","numPackets":6},"partialState":{"h":12,"t":72,"tokens":[25966,13014,3908,1952],"delegation":[24966,12014,2908,952],"delegatorTokens":9999999935306,"jailed":[1000000000000041,1000000000000041,1000000000000041,null],"status":["unbonding","unbonding","unbonding","bonded"]}},{"ix":114,"action":{"kind":"Deliver","chain":"provider","numPackets":1},"partialState":{"h":12,"t":72,"tokens":[25966,13014,3908,1952],"delegation":[24966,12014,2908,952],"delegatorTokens":9999999935306,"jailed":[1000000000000041,1000000000000041,1000000000000041,null],"status":["unbonding","unbonding","unbonding","bonded"]}},{"ix":115,"action":{"kind":"Deliver","chain":"provider","numPackets":6},"partialState":{"h":12,"t":72,"tokens":[25966,13014,3908,1952],"delegation":[24966,12014,2908,952],"delegatorTokens":9999999935306,"jailed":[1000000000000041,1000000000000041,1000000000000041,null],"status":["unbonding","unbonding","unbonding","bonded"]}},{"ix":116,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":13,"t":78,"tokens":[25966,13014,3908,1952],"delegation":[24966,12014,2908,952],"delegatorTokens":9999999935306,"jailed":[1000000000000041,1000000000000041,1000000000000041,null],"status":["unbonding","unbonding","unbonding","bonded"]}},{"ix":117,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":18,"t":108,"consumerPower":[null,null,null,11314],"outstandingDowntime":[false,false,false,false]}},{"ix":118,"action":{"kind":"Undelegate","val":1,"amt":2530},"partialState":{"h":13,"t":78,"tokens":[25966,10484,3908,1952],"delegation":[24966,9484,2908,952],"delegatorTokens":9999999935306}},{"ix":119,"action":{"kind":"Delegate","val":1,"amt":2348},"partialState":{"h":13,"t":78,"tokens":[25966,12832,3908,1952],"delegation":[24966,11832,2908,952],"delegatorTokens":9999999932958}},{"ix":120,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":14,"t":84,"tokens":[25966,12832,3908,1952],"delegation":[24966,11832,2908,952],"delegatorTokens":9999999936205,"jailed":[1000000000000041,1000000000000041,1000000000000041,null],"status":["unbonding","unbonding","unbonding","bonded"]}},{"ix":121,"action":{"kind":"Undelegate","val":2,"amt":3538},"partialState":{"h":14,"t":84,"tokens":[25966,12832,3908,1952],"delegation":[24966,11832,2908,952],"delegatorTokens":9999999936205}},{"ix":122,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":15,"t":90,"tokens":[25966,12832,3908,1952],"delegation":[24966,11832,2908,952],"delegatorTokens":9999999936205,"jailed":[1000000000000041,1000000000000041,1000000000000041,null],"status":["unbonding","unbonding","unbonding","bonded"]}},{"ix":123,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":16,"t":96,"tokens":[25966,12832,3908,1952],"delegation":[24966,11832,2908,952],"delegatorTokens":9999999938395,"jailed":[1000000000000041,1000000000000041,1000000000000041,null],"status":["unbonding","unbonding","unbonding","bonded"]}},{"ix":124,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":125,"action":{"kind":"Undelegate","val":3,"amt":4678},"partialState":{"h":16,"t":96,"tokens":[25966,12832,3908,1952],"delegation":[24966,11832,2908,952],"delegatorTokens":9999999938395}},{"ix":126,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":127,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":128,"action":{"kind":"Delegate","val":3,"amt":4344},"partialState":{"h":16,"t":96,"tokens":[25966,12832,3908,6296],"delegation":[24966,11832,2908,5296],"delegatorTokens":9999999934051}},{"ix":129,"action":{"kind":"Delegate","val":3,"amt":4849},"partialState":{"h":16,"t":96,"tokens":[25966,12832,3908,11145],"delegation":[24966,11832,2908,10145],"delegatorTokens":9999999929202}},{"ix":130,"action":{"kind":"Deliver","chain":"consumer","numPackets":1},"partialState":{"h":18,"t":108,"consumerPower":[null,null,null,11314],"outstandingDowntime":[false,false,false,false]}},{"ix":131,"action":{"kind":"Deliver","chain":"consumer","numPackets":4},"partialState":{"h":18,"t":108,"consumerPower":[null,null,null,11314],"outstandingDowntime":[false,false,false,false]}},{"ix":132,"action":{"kind":"Undelegate","val":0,"amt":4520},"partialState":{"h":16,"t":96,"tokens":[21446,12832,3908,11145],"delegation":[20446,11832,2908,10145],"delegatorTokens":9999999929202}},{"ix":133,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":19,"t":114,"consumerPower":[null,null,null,1952],"outstandingDowntime":[false,false,false,false]}},{"ix":134,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":20,"t":120,"consumerPower":[null,null,null,1952],"outstandingDowntime":[false,false,false,false]}},{"ix":135,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":21,"t":126,"consumerPower":[null,null,null,1952],"outstandingDowntime":[false,false,false,false]}},{"ix":136,"action":{"kind":"Undelegate","val":0,"amt":1168},"partialState":{"h":16,"t":96,"tokens":[20278,12832,3908,11145],"delegation":[19278,11832,2908,10145],"delegatorTokens":9999999929202}},{"ix":137,"action":{"kind":"Deliver","chain":"provider","numPackets":4},"partialState":{"h":16,"t":96,"tokens":[20278,12832,3908,11145],"delegation":[19278,11832,2908,10145],"delegatorTokens":9999999929202,"jailed":[1000000000000041,1000000000000041,1000000000000041,null],"status":["unbonding","unbonding","unbonding","bonded"]}},{"ix":138,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":17,"t":102,"tokens":[20278,12832,3908,11145],"delegation":[19278,11832,2908,10145],"delegatorTokens":9999999929202,"jailed":[1000000000000041,1000000000000041,1000000000000041,null],"status":["unbonding","unbonding","unbonding","bonded"]}},{"ix":139,"action":{"kind":"Delegate","val":2,"amt":1056},"partialState":{"h":17,"t":102,"tokens":[20278,12832,4964,11145],"delegation":[19278,11832,3964,10145],"delegatorTokens":9999999928146}},{"ix":140,"action":{"kind":"Deliver","chain":"consumer","numPackets":1},"partialState":{"h":21,"t":126,"consumerPower":[null,null,null,1952],"outstandingDowntime":[false,false,false,false]}},{"ix":141,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":142,"action":{"kind":"Delegate","val":1,"amt":4648},"partialState":{"h":17,"t":102,"tokens":[20278,17480,4964,11145],"delegation":[19278,16480,3964,10145],"delegatorTokens":9999999923498}},{"ix":143,"action":{"kind":"Deliver","chain":"consumer","numPackets":6},"partialState":{"h":21,"t":126,"consumerPower":[null,null,null,1952],"outstandingDowntime":[false,false,false,false]}},{"ix":144,"action":{"kind":"Undelegate","val":1,"amt":2474},"partialState":{"h":17,"t":102,"tokens":[20278,15006,4964,11145],"delegation":[19278,14006,3964,10145],"delegatorTokens":9999999923498}},{"ix":145,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":22,"t":132,"consumerPower":[null,null,null,1952],"outstandingDowntime":[false,false,false,false]}},{"ix":146,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":147,"action":{"kind":"Delegate","val":1,"amt":4069},"partialState":{"h":17,"t":102,"tokens":[20278,19075,4964,11145],"delegation":[19278,18075,3964,10145],"delegatorTokens":9999999919429}},{"ix":148,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":18,"t":108,"tokens":[20278,19075,4964,11145],"delegation":[19278,18075,3964,10145],"delegatorTokens":9999999919429,"jailed":[1000000000000041,1000000000000041,1000000000000041,null],"status":["unbonding","unbonding","unbonded","bonded"]}},{"ix":149,"action":{"kind":"Deliver","chain":"consumer","numPackets":3},"partialState":{"h":22,"t":132,"consumerPower":[null,null,null,1952],"outstandingDowntime":[false,false,false,false]}},{"ix":150,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":23,"t":138,"consumerPower":[null,null,null,11145],"outstandingDowntime":[false,false,false,false]}},{"ix":151,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":19,"t":114,"tokens":[20278,19075,4964,11145],"delegation":[19278,18075,3964,10145],"delegatorTokens":9999999922818,"jailed":[1000000000000041,1000000000000041,1000000000000041,null],"status":["unbonding","unbonded","unbonded","bonded"]}},{"ix":152,"action":{"kind":"Delegate","val":0,"amt":3417},"partialState":{"h":19,"t":114,"tokens":[23695,19075,4964,11145],"delegation":[22695,18075,3964,10145],"delegatorTokens":9999999919401}},{"ix":153,"action":{"kind":"Undelegate","val":0,"amt":1314},"partialState":{"h":19,"t":114,"tokens":[22381,19075,4964,11145],"delegation":[21381,18075,3964,10145],"delegatorTokens":9999999919401}},{"ix":154,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":24,"t":144,"consumerPower":[null,null,null,11145],"outstandingDowntime":[false,false,false,false]}},{"ix":155,"action":{"kind":"Deliver","chain":"consumer","numPackets":3},"partialState":{"h":24,"t":144,"consumerPower":[null,null,null,11145],"outstandingDowntime":[false,false,false,false]}},{"ix":156,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":25,"t":150,"consumerPower":[null,null,null,11145],"outstandingDowntime":[false,false,false,false]}},{"ix":157,"action":{"kind":"Undelegate","val":3,"amt":1562},"partialState":{"h":19,"t":114,"tokens":[22381,19075,4964,9583],"delegation":[21381,18075,3964,8583],"delegatorTokens":9999999919401}},{"ix":158,"action":{"kind":"Delegate","val":3,"amt":4546},"partialState":{"h":19,"t":114,"tokens":[22381,19075,4964,14129],"delegation":[21381,18075,3964,13129],"delegatorTokens":9999999914855}},{"ix":159,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":160,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":26,"t":156,"consumerPower":[null,null,null,11145],"outstandingDowntime":[false,false,false,false]}},{"ix":161,"action":{"kind":"Deliver","chain":"consumer","numPackets":3},"partialState":{"h":26,"t":156,"consumerPower":[null,null,null,11145],"outstandingDowntime":[false,false,false,false]}},{"ix":162,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":163,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":20,"t":120,"tokens":[22381,19075,4964,14129],"delegation":[21381,18075,3964,13129],"delegatorTokens":9999999917379,"jailed":[1000000000000041,1000000000000041,1000000000000041,null],"status":["unbonding","unbonded","unbonded","bonded"]}},{"ix":164,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":165,"action":{"kind":"Undelegate","val":2,"amt":1828},"partialState":{"h":20,"t":120,"tokens":[22381,19075,3136,14129],"delegation":[21381,18075,2136,13129],"delegatorTokens":9999999917379}},{"ix":166,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":167,"action":{"kind":"Deliver","chain":"provider","numPackets":1},"partialState":{"h":20,"t":120,"tokens":[22381,19075,3136,14129],"delegation":[21381,18075,2136,13129],"delegatorTokens":9999999917379,"jailed":[1000000000000041,1000000000000041,1000000000000041,null],"status":["unbonding","unbonded","unbonded","bonded"]}},{"ix":168,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":169,"action":{"kind":"Deliver","chain":"consumer","numPackets":4},"partialState":{"h":26,"t":156,"consumerPower":[null,null,null,11145],"outstandingDowntime":[false,false,false,false]}},{"ix":170,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":171,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":21,"t":126,"tokens":[22381,19075,3136,14129],"delegation":[21381,18075,2136,13129],"delegatorTokens":9999999917379,"jailed":[1000000000000041,1000000000000041,1000000000000041,null],"status":["unbonding","unbonded","unbonded","bonded"]}},{"ix":172,"action":{"kind":"Undelegate","val":3,"amt":3005},"partialState":{"h":21,"t":126,"tokens":[22381,19075,3136,11124],"delegation":[21381,18075,2136,10124],"delegatorTokens":9999999917379}},{"ix":173,"action":{"kind":"Undelegate","val":0,"amt":2895},"partialState":{"h":21,"t":126,"tokens":[19486,19075,3136,11124],"delegation":[18486,18075,2136,10124],"delegatorTokens":9999999917379}},{"ix":174,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":22,"t":132,"tokens":[19486,19075,3136,11124],"delegation":[18486,18075,2136,10124],"delegatorTokens":9999999917379,"jailed":[1000000000000041,1000000000000041,1000000000000041,null],"status":["unbonded","unbonded","unbonded","bonded"]}},{"ix":175,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":27,"t":162,"consumerPower":[null,null,null,11145],"outstandingDowntime":[false,false,false,false]}},{"ix":176,"action":{"kind":"Deliver","chain":"consumer","numPackets":2},"partialState":{"h":27,"t":162,"consumerPower":[null,null,null,11145],"outstandingDowntime":[false,false,false,false]}},{"ix":177,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":178,"action":{"kind":"Deliver","chain":"consumer","numPackets":5},"partialState":{"h":27,"t":162,"consumerPower":[null,null,null,11145],"outstandingDowntime":[false,false,false,false]}},{"ix":179,"action":{"kind":"Undelegate","val":3,"amt":2010},"partialState":{"h":22,"t":132,"tokens":[19486,19075,3136,9114],"delegation":[18486,18075,2136,8114],"delegatorTokens":9999999917379}},{"ix":180,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":28,"t":168,"consumerPower":[null,null,null,14129],"outstandingDowntime":[false,false,false,false]}},{"ix":181,"action":{"kind":"Undelegate","val":1,"amt":1082},"partialState":{"h":22,"t":132,"tokens":[19486,17993,3136,9114],"delegation":[18486,16993,2136,8114],"delegatorTokens":9999999917379}},{"ix":182,"action":{"kind":"Deliver","chain":"provider","numPackets":5},"partialState":{"h":22,"t":132,"tokens":[19486,17993,3136,9114],"delegation":[18486,16993,2136,8114],"delegatorTokens":9999999917379,"jailed":[1000000000000041,1000000000000041,1000000000000041,null],"status":["unbonded","unbonded","unbonded","bonded"]}},{"ix":183,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":23,"t":138,"tokens":[19486,17993,3136,9114],"delegation":[18486,16993,2136,8114],"delegatorTokens":9999999917379,"jailed":[1000000000000041,1000000000000041,1000000000000041,null],"status":["unbonded","unbonded","unbonded","bonded"]}},{"ix":184,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":29,"t":174,"consumerPower":[null,null,null,14129],"outstandingDowntime":[false,false,false,false]}},{"ix":185,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":186,"action":{"kind":"Deliver","chain":"provider","numPackets":6},"partialState":{"h":23,"t":138,"tokens":[19486,17993,3136,9114],"delegation":[18486,16993,2136,8114],"delegatorTokens":9999999917379,"jailed":[1000000000000041,1000000000000041,1000000000000041,null],"status":["unbonded","unbonded","unbonded","bonded"]}},{"ix":187,"action":{"kind":"Deliver","chain":"provider","numPackets":2},"partialState":{"h":23,"t":138,"tokens":[19486,17993,3136,9114],"delegation":[18486,16993,2136,8114],"delegatorTokens":9999999917379,"jailed":[1000000000000041,1000000000000041,1000000000000041,null],"status":["unbonded","unbonded","unbonded","bonded"]}},{"ix":188,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":189,"action":{"kind":"Delegate","val":0,"amt":1971},"partialState":{"h":23,"t":138,"tokens":[21457,17993,3136,9114],"delegation":[20457,16993,2136,8114],"delegatorTokens":9999999915408}},{"ix":190,"action":{"kind":"Undelegate","val":0,"amt":2003},"partialState":{"h":23,"t":138,"tokens":[19454,17993,3136,9114],"delegation":[18454,16993,2136,8114],"delegatorTokens":9999999915408}},{"ix":191,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":24,"t":144,"tokens":[19454,17993,3136,9114],"delegation":[18454,16993,2136,8114],"delegatorTokens":9999999935933,"jailed":[1000000000000041,1000000000000041,1000000000000041,null],"status":["unbonded","unbonded","unbonded","bonded"]}},{"ix":192,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":25,"t":150,"tokens":[19454,17993,3136,9114],"delegation":[18454,16993,2136,8114],"delegatorTokens":9999999937912,"jailed":[1000000000000041,1000000000000041,1000000000000041,null],"status":["unbonded","unbonded","unbonded","bonded"]}},{"ix":193,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":194,"action":{"kind":"Delegate","val":0,"amt":1002},"partialState":{"h":25,"t":150,"tokens":[20456,17993,3136,9114],"delegation":[19456,16993,2136,8114],"delegatorTokens":9999999936910}},{"ix":195,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":196,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":197,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":26,"t":156,"tokens":[20456,17993,3136,9114],"delegation":[19456,16993,2136,8114],"delegatorTokens":9999999939440,"jailed":[1000000000000041,1000000000000041,1000000000000041,null],"status":["unbonded","unbonded","unbonded","bonded"]}},{"ix":198,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":199,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}}],"events":["more_than_one_third_val_power_change","send_vsc_without_downtime_ack","send_downtime_slash_request","more_than_one_third_val_power_change","send_vsc_without_downtime_ack","send_downtime_slash_request","send_vsc_without_downtime_ack","downtime_slash_request_outstanding","insufficient_shares","insufficient_shares","send_double_sign_slash_request","send_downtime_slash_request","consumer_del_val","consumer_add_val","consumer_del_val","consumer_add_val","more_than_one_third_val_power_change","rebond_unval","send_vsc_without_downtime_ack","consumer_update_val","more_than_one_third_val_power_change","rebond_unval","send_vsc_without_downtime_ack","receive_double_sign_slash_request","receive_downtime_slash_request","jail","receive_downtime_slash_request","jail","receive_downtime_slash_request","jail","send_vsc_with_downtime_ack","send_vsc_without_downtime_ack","receive_downtime_slash_ack","receive_downtime_slash_ack","receive_downtime_slash_ack","consumer_del_val","consumer_del_val","consumer_update_val","consumer_add_val","consumer_send_maturation","consumer_send_maturation","consumer_del_val","consumer_send_maturation","set_undel_hold_false","set_undel_hold_false","send_vsc_without_downtime_ack","send_vsc_not_because_change","send_vsc_without_downtime_ack","complete_undel_in_endblock","send_vsc_not_because_change","send_vsc_without_downtime_ack","insufficient_shares","complete_undel_in_endblock","insufficient_shares","consumer_update_val","consumer_send_maturation","consumer_send_maturation","consumer_send_maturation","set_unval_hold_false","set_undel_hold_false","set_undel_hold_false","set_unval_hold_false","set_undel_hold_false","send_vsc_without_downtime_ack","complete_unval_in_endblock","send_vsc_not_because_change","send_vsc_without_downtime_ack","consumer_send_maturation","consumer_update_val","complete_unval_in_endblock","complete_undel_in_endblock","complete_undel_in_endblock","send_vsc_without_downtime_ack","set_unval_hold_false","send_vsc_not_because_change","send_vsc_without_downtime_ack","complete_unval_in_endblock","send_vsc_without_downtime_ack","consumer_send_maturation","consumer_send_maturation","consumer_send_maturation","consumer_update_val","send_vsc_without_downtime_ack","some_undels_expired_but_not_completed","complete_undel_immediate","complete_undel_immediate","complete_undel_immediate","complete_undel_immediate","complete_undel_immediate","complete_undel_immediate","set_undel_hold_false","set_undel_hold_false","send_vsc_not_because_change","send_vsc_without_downtime_ack","complete_undel_in_endblock","complete_undel_in_endblock"]},{"meta":{"commit":"7ffd0c04e4205cbc9caf212abfe6c59ee43153bf"},"constants":{"P":"provider","C":"consumer","UNBONDING_SECONDS_P":70,"UNBONDING_SECONDS_C":50,"TRUSTING_SECONDS":49,"NUM_VALIDATORS":4,"MAX_VALIDATORS":2,"SLASH_DOUBLESIGN":0,"SLASH_DOWNTIME":0,"JAIL_SECONDS":999999999999999,"BLOCK_SECONDS":6,"INITIAL_DELEGATOR_TOKENS":10000000000000,"DELEGATE_AMT_MIN":1000,"DELEGATE_AMT_MAX":5000,"UNDELEGATE_AMT_MIN":1000,"UNDELEGATE_AMT_MAX":5000,"ISDOWNTIME_PROBABILITY":0.5,"MAX_NUM_PACKETS_FOR_DELIVER":6},"actions":[{"ix":0,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":1,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":2,"action":{"kind":"Undelegate","val":1,"amt":2724},"partialState":{"h":1,"t":6,"tokens":[5000,1276,3000,2000],"delegation":[4000,276,2000,1000],"delegatorTokens":10000000000000}},{"ix":3,"action":{"kind":"Undelegate","val":2,"amt":3734},"partialState":{"h":1,"t":6,"tokens":[5000,1276,3000,2000],"delegation":[4000,276,2000,1000],"delegatorTokens":10000000000000}},{"ix":4,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":2,"t":12,"tokens":[5000,1276,3000,2000],"delegation":[4000,276,2000,1000],"delegatorTokens":10000000000000,"jailed":[null,null,null,null],"status":["bonded","unbonding","bonded","unbonded"]}},{"ix":5,"action":{"kind":"Deliver","chain":"consumer","numPackets":4},"partialState":{"h":1,"t":6,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":6,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":7,"action":{"kind":"Deliver","chain":"consumer","numPackets":6},"partialState":{"h":1,"t":6,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":8,"action":{"kind":"Deliver","chain":"consumer","numPackets":2},"partialState":{"h":1,"t":6,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":9,"action":{"kind":"Delegate","val":3,"amt":2804},"partialState":{"h":2,"t":12,"tokens":[5000,1276,3000,4804],"delegation":[4000,276,2000,3804],"delegatorTokens":9999999997196}},{"ix":10,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":11,"action":{"kind":"Deliver","chain":"provider","numPackets":3},"partialState":{"h":2,"t":12,"tokens":[5000,1276,3000,4804],"delegation":[4000,276,2000,3804],"delegatorTokens":9999999997196,"jailed":[null,null,null,null],"status":["bonded","unbonding","bonded","unbonded"]}},{"ix":12,"action":{"kind":"Undelegate","val":0,"amt":4962},"partialState":{"h":2,"t":12,"tokens":[5000,1276,3000,4804],"delegation":[4000,276,2000,3804],"delegatorTokens":9999999997196}},{"ix":13,"action":{"kind":"Undelegate","val":3,"amt":3227},"partialState":{"h":2,"t":12,"tokens":[5000,1276,3000,1577],"delegation":[4000,276,2000,577],"delegatorTokens":9999999997196}},{"ix":14,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":15,"action":{"kind":"Deliver","chain":"provider","numPackets":2},"partialState":{"h":2,"t":12,"tokens":[5000,1276,3000,1577],"delegation":[4000,276,2000,577],"delegatorTokens":9999999997196,"jailed":[null,null,null,null],"status":["bonded","unbonding","bonded","unbonded"]}},{"ix":16,"action":{"kind":"ConsumerSlash","val":0,"infractionHeight":0,"isDowntime":false},"partialState":{"h":1,"t":6,"outstandingDowntime":[false,false,false,false]}},{"ix":17,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":18,"action":{"kind":"Deliver","chain":"provider","numPackets":6},"partialState":{"h":2,"t":12,"tokens":[5000,1276,3000,1577],"delegation":[4000,276,2000,577],"delegatorTokens":9999999997196,"jailed":[null,null,null,null],"status":["bonded","unbonding","bonded","unbonded"]}},{"ix":19,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":20,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":3,"t":18,"tokens":[5000,1276,3000,1577],"delegation":[4000,276,2000,577],"delegatorTokens":9999999997196,"jailed":[null,null,null,null],"status":["bonded","unbonding","bonded","unbonded"]}},{"ix":21,"action":{"kind":"Undelegate","val":1,"amt":3893},"partialState":{"h":3,"t":18,"tokens":[5000,1276,3000,1577],"delegation":[4000,276,2000,577],"delegatorTokens":9999999997196}},{"ix":22,"action":{"kind":"Delegate","val":2,"amt":1862},"partialState":{"h":3,"t":18,"tokens":[5000,1276,4862,1577],"delegation":[4000,276,3862,577],"delegatorTokens":9999999995334}},{"ix":23,"action":{"kind":"ConsumerSlash","val":1,"infractionHeight":0,"isDowntime":true},"partialState":{"h":1,"t":6,"outstandingDowntime":[false,true,false,false]}},{"ix":24,"action":{"kind":"Delegate","val":0,"amt":2618},"partialState":{"h":3,"t":18,"tokens":[7618,1276,4862,1577],"delegation":[6618,276,3862,577],"delegatorTokens":9999999992716}},{"ix":25,"action":{"kind":"Deliver","chain":"provider","numPackets":4},"partialState":{"h":3,"t":18,"tokens":[7618,1276,4862,1577],"delegation":[6618,276,3862,577],"delegatorTokens":9999999992716,"jailed":[null,null,null,null],"status":["bonded","unbonding","bonded","unbonded"]}},{"ix":26,"action":{"kind":"Delegate","val":3,"amt":4493},"partialState":{"h":3,"t":18,"tokens":[7618,1276,4862,6070],"delegation":[6618,276,3862,5070],"delegatorTokens":9999999988223}},{"ix":27,"action":{"kind":"Deliver","chain":"consumer","numPackets":5},"partialState":{"h":1,"t":6,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,true,false,false]}},{"ix":28,"action":{"kind":"Undelegate","val":3,"amt":4480},"partialState":{"h":3,"t":18,"tokens":[7618,1276,4862,1590],"delegation":[6618,276,3862,590],"delegatorTokens":9999999988223}},{"ix":29,"action":{"kind":"Undelegate","val":3,"amt":2698},"partialState":{"h":3,"t":18,"tokens":[7618,1276,4862,1590],"delegation":[6618,276,3862,590],"delegatorTokens":9999999988223}},{"ix":30,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":4,"t":24,"tokens":[7618,1276,4862,1590],"delegation":[6618,276,3862,590],"delegatorTokens":9999999988223,"jailed":[null,null,null,null],"status":["bonded","unbonding","bonded","unbonded"]}},{"ix":31,"action":{"kind":"ConsumerSlash","val":1,"infractionHeight":0,"isDowntime":true},"partialState":{"h":1,"t":6,"outstandingDowntime":[false,true,false,false]}},{"ix":32,"action":{"kind":"ConsumerSlash","val":0,"infractionHeight":0,"isDowntime":true},"partialState":{"h":1,"t":6,"outstandingDowntime":[true,true,false,false]}},{"ix":33,"action":{"kind":"Delegate","val":0,"amt":2427},"partialState":{"h":4,"t":24,"tokens":[10045,1276,4862,1590],"delegation":[9045,276,3862,590],"delegatorTokens":9999999985796}},{"ix":34,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":2,"t":12,"consumerPower":[5000,null,3000,null],"outstandingDowntime":[true,true,false,false]}},{"ix":35,"action":{"kind":"Delegate","val":0,"amt":2756},"partialState":{"h":4,"t":24,"tokens":[12801,1276,4862,1590],"delegation":[11801,276,3862,590],"delegatorTokens":9999999983040}},{"ix":36,"action":{"kind":"Undelegate","val":3,"amt":3793},"partialState":{"h":4,"t":24,"tokens":[12801,1276,4862,1590],"delegation":[11801,276,3862,590],"delegatorTokens":9999999983040}},{"ix":37,"action":{"kind":"Undelegate","val":1,"amt":1433},"partialState":{"h":4,"t":24,"tokens":[12801,1276,4862,1590],"delegation":[11801,276,3862,590],"delegatorTokens":9999999983040}},{"ix":38,"action":{"kind":"Delegate","val":0,"amt":2631},"partialState":{"h":4,"t":24,"tokens":[15432,1276,4862,1590],"delegation":[14432,276,3862,590],"delegatorTokens":9999999980409}},{"ix":39,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":3,"t":18,"consumerPower":[5000,null,3000,null],"outstandingDowntime":[true,true,false,false]}},{"ix":40,"action":{"kind":"ConsumerSlash","val":3,"infractionHeight":2,"isDowntime":true},"partialState":{"h":3,"t":18,"outstandingDowntime":[true,true,false,true]}},{"ix":41,"action":{"kind":"Delegate","val":3,"amt":2366},"partialState":{"h":4,"t":24,"tokens":[15432,1276,4862,3956],"delegation":[14432,276,3862,2956],"delegatorTokens":9999999978043}},{"ix":42,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":4,"t":24,"consumerPower":[5000,null,3000,null],"outstandingDowntime":[true,true,false,true]}},{"ix":43,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":44,"action":{"kind":"Deliver","chain":"consumer","numPackets":3},"partialState":{"h":4,"t":24,"consumerPower":[5000,null,3000,null],"outstandingDowntime":[true,true,false,true]}},{"ix":45,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":46,"action":{"kind":"Undelegate","val":2,"amt":2699},"partialState":{"h":4,"t":24,"tokens":[15432,1276,2163,3956],"delegation":[14432,276,1163,2956],"delegatorTokens":9999999978043}},{"ix":47,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":48,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":5,"t":30,"consumerPower":[5000,null,3000,null],"outstandingDowntime":[true,true,false,true]}},{"ix":49,"action":{"kind":"Undelegate","val":2,"amt":1300},"partialState":{"h":4,"t":24,"tokens":[15432,1276,2163,3956],"delegation":[14432,276,1163,2956],"delegatorTokens":9999999978043}},{"ix":50,"action":{"kind":"Deliver","chain":"consumer","numPackets":1},"partialState":{"h":5,"t":30,"consumerPower":[5000,null,3000,null],"outstandingDowntime":[true,true,false,true]}},{"ix":51,"action":{"kind":"Delegate","val":3,"amt":2115},"partialState":{"h":4,"t":24,"tokens":[15432,1276,2163,6071],"delegation":[14432,276,1163,5071],"delegatorTokens":9999999975928}},{"ix":52,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":53,"action":{"kind":"Deliver","chain":"provider","numPackets":4},"partialState":{"h":4,"t":24,"tokens":[15432,1276,2163,6071],"delegation":[14432,276,1163,5071],"delegatorTokens":9999999975928,"jailed":[null,null,null,null],"status":["bonded","unbonding","bonded","unbonded"]}},{"ix":54,"action":{"kind":"Deliver","chain":"consumer","numPackets":5},"partialState":{"h":5,"t":30,"consumerPower":[5000,null,3000,null],"outstandingDowntime":[true,true,false,true]}},{"ix":55,"action":{"kind":"Undelegate","val":2,"amt":1926},"partialState":{"h":4,"t":24,"tokens":[15432,1276,2163,6071],"delegation":[14432,276,1163,5071],"delegatorTokens":9999999975928}},{"ix":56,"action":{"kind":"Deliver","chain":"consumer","numPackets":6},"partialState":{"h":5,"t":30,"consumerPower":[5000,null,3000,null],"outstandingDowntime":[true,true,false,true]}},{"ix":57,"action":{"kind":"Delegate","val":1,"amt":1301},"partialState":{"h":4,"t":24,"tokens":[15432,2577,2163,6071],"delegation":[14432,1577,1163,5071],"delegatorTokens":9999999974627}},{"ix":58,"action":{"kind":"Undelegate","val":3,"amt":3215},"partialState":{"h":4,"t":24,"tokens":[15432,2577,2163,2856],"delegation":[14432,1577,1163,1856],"delegatorTokens":9999999974627}},{"ix":59,"action":{"kind":"Delegate","val":3,"amt":4916},"partialState":{"h":4,"t":24,"tokens":[15432,2577,2163,7772],"delegation":[14432,1577,1163,6772],"delegatorTokens":9999999969711}},{"ix":60,"action":{"kind":"Undelegate","val":0,"amt":3402},"partialState":{"h":4,"t":24,"tokens":[12030,2577,2163,7772],"delegation":[11030,1577,1163,6772],"delegatorTokens":9999999969711}},{"ix":61,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":6,"t":36,"consumerPower":[5000,null,3000,null],"outstandingDowntime":[true,true,false,true]}},{"ix":62,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":63,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":64,"action":{"kind":"Delegate","val":0,"amt":3637},"partialState":{"h":4,"t":24,"tokens":[15667,2577,2163,7772],"delegation":[14667,1577,1163,6772],"delegatorTokens":9999999966074}},{"ix":65,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":66,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":67,"action":{"kind":"Deliver","chain":"provider","numPackets":6},"partialState":{"h":4,"t":24,"tokens":[15667,2577,2163,7772],"delegation":[14667,1577,1163,6772],"delegatorTokens":9999999966074,"jailed":[null,null,null,null],"status":["bonded","unbonding","bonded","unbonded"]}},{"ix":68,"action":{"kind":"Delegate","val":0,"amt":1378},"partialState":{"h":4,"t":24,"tokens":[17045,2577,2163,7772],"delegation":[16045,1577,1163,6772],"delegatorTokens":9999999964696}},{"ix":69,"action":{"kind":"Undelegate","val":3,"amt":3057},"partialState":{"h":4,"t":24,"tokens":[17045,2577,2163,4715],"delegation":[16045,1577,1163,3715],"delegatorTokens":9999999964696}},{"ix":70,"action":{"kind":"Undelegate","val":0,"amt":3626},"partialState":{"h":4,"t":24,"tokens":[13419,2577,2163,4715],"delegation":[12419,1577,1163,3715],"delegatorTokens":9999999964696}},{"ix":71,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":72,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":73,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":5,"t":30,"tokens":[13419,2577,2163,4715],"delegation":[12419,1577,1163,3715],"delegatorTokens":9999999964696,"jailed":[1000000000000023,1000000000000023,null,1000000000000023],"status":["bonded","unbonding","unbonding","bonded"]}},{"ix":74,"action":{"kind":"Delegate","val":3,"amt":1363},"partialState":{"h":5,"t":30,"tokens":[13419,2577,2163,6078],"delegation":[12419,1577,1163,5078],"delegatorTokens":9999999963333}},{"ix":75,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":76,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":77,"action":{"kind":"Deliver","chain":"consumer","numPackets":5},"partialState":{"h":6,"t":36,"consumerPower":[5000,null,3000,null],"outstandingDowntime":[true,true,false,true]}},{"ix":78,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":7,"t":42,"consumerPower":[7618,null,4862,null],"outstandingDowntime":[true,true,false,true]}},{"ix":79,"action":{"kind":"Undelegate","val":2,"amt":2637},"partialState":{"h":5,"t":30,"tokens":[13419,2577,2163,6078],"delegation":[12419,1577,1163,5078],"delegatorTokens":9999999963333}},{"ix":80,"action":{"kind":"Undelegate","val":0,"amt":2286},"partialState":{"h":5,"t":30,"tokens":[11133,2577,2163,6078],"delegation":[10133,1577,1163,5078],"delegatorTokens":9999999963333}},{"ix":81,"action":{"kind":"Deliver","chain":"provider","numPackets":5},"partialState":{"h":5,"t":30,"tokens":[11133,2577,2163,6078],"delegation":[10133,1577,1163,5078],"delegatorTokens":9999999963333,"jailed":[1000000000000023,1000000000000023,null,1000000000000023],"status":["bonded","unbonding","unbonding","bonded"]}},{"ix":82,"action":{"kind":"Undelegate","val":1,"amt":3208},"partialState":{"h":5,"t":30,"tokens":[11133,2577,2163,6078],"delegation":[10133,1577,1163,5078],"delegatorTokens":9999999963333}},{"ix":83,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":6,"t":36,"tokens":[11133,2577,2163,6078],"delegation":[10133,1577,1163,5078],"delegatorTokens":9999999963333,"jailed":[1000000000000023,1000000000000023,null,1000000000000023],"status":["unbonding","unbonding","bonded","unbonding"]}},{"ix":84,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":7,"t":42,"tokens":[11133,2577,2163,6078],"delegation":[10133,1577,1163,5078],"delegatorTokens":9999999963333,"jailed":[1000000000000023,1000000000000023,null,1000000000000023],"status":["unbonding","unbonding","bonded","unbonding"]}},{"ix":85,"action":{"kind":"Deliver","chain":"consumer","numPackets":1},"partialState":{"h":7,"t":42,"consumerPower":[7618,null,4862,null],"outstandingDowntime":[false,false,false,false]}},{"ix":86,"action":{"kind":"Delegate","val":3,"amt":1869},"partialState":{"h":7,"t":42,"tokens":[11133,2577,2163,7947],"delegation":[10133,1577,1163,6947],"delegatorTokens":9999999961464}},{"ix":87,"action":{"kind":"Undelegate","val":2,"amt":2563},"partialState":{"h":7,"t":42,"tokens":[11133,2577,2163,7947],"delegation":[10133,1577,1163,6947],"delegatorTokens":9999999961464}},{"ix":88,"action":{"kind":"Undelegate","val":1,"amt":1303},"partialState":{"h":7,"t":42,"tokens":[11133,1274,2163,7947],"delegation":[10133,274,1163,6947],"delegatorTokens":9999999961464}},{"ix":89,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":90,"action":{"kind":"Undelegate","val":2,"amt":4610},"partialState":{"h":7,"t":42,"tokens":[11133,1274,2163,7947],"delegation":[10133,274,1163,6947],"delegatorTokens":9999999961464}},{"ix":91,"action":{"kind":"Undelegate","val":0,"amt":2500},"partialState":{"h":7,"t":42,"tokens":[8633,1274,2163,7947],"delegation":[7633,274,1163,6947],"delegatorTokens":9999999961464}},{"ix":92,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":93,"action":{"kind":"Undelegate","val":2,"amt":1356},"partialState":{"h":7,"t":42,"tokens":[8633,1274,2163,7947],"delegation":[7633,274,1163,6947],"delegatorTokens":9999999961464}},{"ix":94,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":8,"t":48,"consumerPower":[13419,null,null,4715],"outstandingDowntime":[false,false,false,false]}},{"ix":95,"action":{"kind":"Delegate","val":1,"amt":2363},"partialState":{"h":7,"t":42,"tokens":[8633,3637,2163,7947],"delegation":[7633,2637,1163,6947],"delegatorTokens":9999999959101}},{"ix":96,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":97,"action":{"kind":"Undelegate","val":3,"amt":4049},"partialState":{"h":7,"t":42,"tokens":[8633,3637,2163,3898],"delegation":[7633,2637,1163,2898],"delegatorTokens":9999999959101}},{"ix":98,"action":{"kind":"Delegate","val":0,"amt":2277},"partialState":{"h":7,"t":42,"tokens":[10910,3637,2163,3898],"delegation":[9910,2637,1163,2898],"delegatorTokens":9999999956824}},{"ix":99,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":100,"action":{"kind":"Undelegate","val":0,"amt":2931},"partialState":{"h":7,"t":42,"tokens":[7979,3637,2163,3898],"delegation":[6979,2637,1163,2898],"delegatorTokens":9999999956824}},{"ix":101,"action":{"kind":"Delegate","val":0,"amt":2426},"partialState":{"h":7,"t":42,"tokens":[10405,3637,2163,3898],"delegation":[9405,2637,1163,2898],"delegatorTokens":9999999954398}},{"ix":102,"action":{"kind":"Delegate","val":1,"amt":2603},"partialState":{"h":7,"t":42,"tokens":[10405,6240,2163,3898],"delegation":[9405,5240,1163,2898],"delegatorTokens":9999999951795}},{"ix":103,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":8,"t":48,"tokens":[10405,6240,2163,3898],"delegation":[9405,5240,1163,2898],"delegatorTokens":9999999951795,"jailed":[1000000000000023,1000000000000023,null,1000000000000023],"status":["unbonding","unbonding","bonded","unbonding"]}},{"ix":104,"action":{"kind":"Undelegate","val":1,"amt":3781},"partialState":{"h":8,"t":48,"tokens":[10405,2459,2163,3898],"delegation":[9405,1459,1163,2898],"delegatorTokens":9999999951795}},{"ix":105,"action":{"kind":"Undelegate","val":3,"amt":2506},"partialState":{"h":8,"t":48,"tokens":[10405,2459,2163,1392],"delegation":[9405,1459,1163,392],"delegatorTokens":9999999951795}},{"ix":106,"action":{"kind":"Delegate","val":1,"amt":3665},"partialState":{"h":8,"t":48,"tokens":[10405,6124,2163,1392],"delegation":[9405,5124,1163,392],"delegatorTokens":9999999948130}},{"ix":107,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":9,"t":54,"tokens":[10405,6124,2163,1392],"delegation":[9405,5124,1163,392],"delegatorTokens":9999999948130,"jailed":[1000000000000023,1000000000000023,null,1000000000000023],"status":["unbonding","unbonding","bonded","unbonding"]}},{"ix":108,"action":{"kind":"Delegate","val":1,"amt":2797},"partialState":{"h":9,"t":54,"tokens":[10405,8921,2163,1392],"delegation":[9405,7921,1163,392],"delegatorTokens":9999999945333}},{"ix":109,"action":{"kind":"Deliver","chain":"consumer","numPackets":2},"partialState":{"h":8,"t":48,"consumerPower":[13419,null,null,4715],"outstandingDowntime":[false,false,false,false]}},{"ix":110,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":9,"t":54,"consumerPower":[null,null,2163,null],"outstandingDowntime":[false,false,false,false]}},{"ix":111,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":112,"action":{"kind":"Undelegate","val":1,"amt":3133},"partialState":{"h":9,"t":54,"tokens":[10405,5788,2163,1392],"delegation":[9405,4788,1163,392],"delegatorTokens":9999999945333}},{"ix":113,"action":{"kind":"Undelegate","val":3,"amt":1816},"partialState":{"h":9,"t":54,"tokens":[10405,5788,2163,1392],"delegation":[9405,4788,1163,392],"delegatorTokens":9999999945333}},{"ix":114,"action":{"kind":"Deliver","chain":"consumer","numPackets":1},"partialState":{"h":9,"t":54,"consumerPower":[null,null,2163,null],"outstandingDowntime":[false,false,false,false]}},{"ix":115,"action":{"kind":"Deliver","chain":"provider","numPackets":5},"partialState":{"h":9,"t":54,"tokens":[10405,5788,2163,1392],"delegation":[9405,4788,1163,392],"delegatorTokens":9999999945333,"jailed":[1000000000000023,1000000000000023,null,1000000000000023],"status":["unbonding","unbonding","bonded","unbonding"]}},{"ix":116,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":10,"t":60,"consumerPower":[null,null,2163,null],"outstandingDowntime":[false,false,false,false]}},{"ix":117,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":118,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":119,"action":{"kind":"Undelegate","val":2,"amt":4054},"partialState":{"h":9,"t":54,"tokens":[10405,5788,2163,1392],"delegation":[9405,4788,1163,392],"delegatorTokens":9999999945333}},{"ix":120,"action":{"kind":"Undelegate","val":3,"amt":4799},"partialState":{"h":9,"t":54,"tokens":[10405,5788,2163,1392],"delegation":[9405,4788,1163,392],"delegatorTokens":9999999945333}},{"ix":121,"action":{"kind":"Deliver","chain":"consumer","numPackets":5},"partialState":{"h":10,"t":60,"consumerPower":[null,null,2163,null],"outstandingDowntime":[false,false,false,false]}},{"ix":122,"action":{"kind":"Deliver","chain":"provider","numPackets":2},"partialState":{"h":9,"t":54,"tokens":[10405,5788,2163,1392],"delegation":[9405,4788,1163,392],"delegatorTokens":9999999945333,"jailed":[1000000000000023,1000000000000023,null,1000000000000023],"status":["unbonding","unbonding","bonded","unbonding"]}},{"ix":123,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":10,"t":60,"tokens":[10405,5788,2163,1392],"delegation":[9405,4788,1163,392],"delegatorTokens":9999999945333,"jailed":[1000000000000023,1000000000000023,null,1000000000000023],"status":["unbonding","unbonding","bonded","unbonding"]}},{"ix":124,"action":{"kind":"Delegate","val":1,"amt":3263},"partialState":{"h":10,"t":60,"tokens":[10405,9051,2163,1392],"delegation":[9405,8051,1163,392],"delegatorTokens":9999999942070}},{"ix":125,"action":{"kind":"Deliver","chain":"provider","numPackets":1},"partialState":{"h":10,"t":60,"tokens":[10405,9051,2163,1392],"delegation":[9405,8051,1163,392],"delegatorTokens":9999999942070,"jailed":[1000000000000023,1000000000000023,null,1000000000000023],"status":["unbonding","unbonding","bonded","unbonding"]}},{"ix":126,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":11,"t":66,"consumerPower":[null,null,2163,null],"outstandingDowntime":[false,false,false,false]}},{"ix":127,"action":{"kind":"Deliver","chain":"consumer","numPackets":5},"partialState":{"h":11,"t":66,"consumerPower":[null,null,2163,null],"outstandingDowntime":[false,false,false,false]}},{"ix":128,"action":{"kind":"Undelegate","val":0,"amt":3314},"partialState":{"h":10,"t":60,"tokens":[7091,9051,2163,1392],"delegation":[6091,8051,1163,392],"delegatorTokens":9999999942070}},{"ix":129,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":12,"t":72,"consumerPower":[null,null,2163,null],"outstandingDowntime":[false,false,false,false]}},{"ix":130,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":131,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":13,"t":78,"consumerPower":[null,null,2163,null],"outstandingDowntime":[false,false,false,false]}},{"ix":132,"action":{"kind":"Delegate","val":2,"amt":3483},"partialState":{"h":10,"t":60,"tokens":[7091,9051,5646,1392],"delegation":[6091,8051,4646,392],"delegatorTokens":9999999938587}},{"ix":133,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":134,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":14,"t":84,"consumerPower":[null,null,2163,null],"outstandingDowntime":[false,false,false,false]}},{"ix":135,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":136,"action":{"kind":"Deliver","chain":"consumer","numPackets":4},"partialState":{"h":14,"t":84,"consumerPower":[null,null,2163,null],"outstandingDowntime":[false,false,false,false]}},{"ix":137,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":11,"t":66,"tokens":[7091,9051,5646,1392],"delegation":[6091,8051,4646,392],"delegatorTokens":9999999938587,"jailed":[1000000000000023,1000000000000023,null,1000000000000023],"status":["unbonding","unbonding","bonded","unbonding"]}},{"ix":138,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":139,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":140,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":12,"t":72,"tokens":[7091,9051,5646,1392],"delegation":[6091,8051,4646,392],"delegatorTokens":9999999938587,"jailed":[1000000000000023,1000000000000023,null,1000000000000023],"status":["unbonding","unbonding","bonded","unbonding"]}},{"ix":141,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":142,"action":{"kind":"Delegate","val":1,"amt":3867},"partialState":{"h":12,"t":72,"tokens":[7091,12918,5646,1392],"delegation":[6091,11918,4646,392],"delegatorTokens":9999999934720}},{"ix":143,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":15,"t":90,"consumerPower":[null,null,2163,null],"outstandingDowntime":[false,false,false,false]}},{"ix":144,"action":{"kind":"Undelegate","val":1,"amt":2995},"partialState":{"h":12,"t":72,"tokens":[7091,9923,5646,1392],"delegation":[6091,8923,4646,392],"delegatorTokens":9999999934720}},{"ix":145,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":16,"t":96,"consumerPower":[null,null,2163,null],"outstandingDowntime":[false,false,false,false]}},{"ix":146,"action":{"kind":"Deliver","chain":"provider","numPackets":2},"partialState":{"h":12,"t":72,"tokens":[7091,9923,5646,1392],"delegation":[6091,8923,4646,392],"delegatorTokens":9999999934720,"jailed":[1000000000000023,1000000000000023,null,1000000000000023],"status":["unbonding","unbonding","bonded","unbonding"]}},{"ix":147,"action":{"kind":"Undelegate","val":2,"amt":2622},"partialState":{"h":12,"t":72,"tokens":[7091,9923,3024,1392],"delegation":[6091,8923,2024,392],"delegatorTokens":9999999934720}},{"ix":148,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":17,"t":102,"consumerPower":[null,null,2163,null],"outstandingDowntime":[false,false,false,false]}},{"ix":149,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":150,"action":{"kind":"Delegate","val":3,"amt":3300},"partialState":{"h":12,"t":72,"tokens":[7091,9923,3024,4692],"delegation":[6091,8923,2024,3692],"delegatorTokens":9999999931420}},{"ix":151,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":13,"t":78,"tokens":[7091,9923,3024,4692],"delegation":[6091,8923,2024,3692],"delegatorTokens":9999999931420,"jailed":[1000000000000023,1000000000000023,null,1000000000000023],"status":["unbonding","unbonding","bonded","unbonding"]}},{"ix":152,"action":{"kind":"Delegate","val":1,"amt":3348},"partialState":{"h":13,"t":78,"tokens":[7091,13271,3024,4692],"delegation":[6091,12271,2024,3692],"delegatorTokens":9999999928072}},{"ix":153,"action":{"kind":"Undelegate","val":1,"amt":2518},"partialState":{"h":13,"t":78,"tokens":[7091,10753,3024,4692],"delegation":[6091,9753,2024,3692],"delegatorTokens":9999999928072}},{"ix":154,"action":{"kind":"Deliver","chain":"consumer","numPackets":2},"partialState":{"h":17,"t":102,"consumerPower":[null,null,2163,null],"outstandingDowntime":[false,false,false,false]}},{"ix":155,"action":{"kind":"Delegate","val":1,"amt":3376},"partialState":{"h":13,"t":78,"tokens":[7091,14129,3024,4692],"delegation":[6091,13129,2024,3692],"delegatorTokens":9999999924696}},{"ix":156,"action":{"kind":"Undelegate","val":1,"amt":2625},"partialState":{"h":13,"t":78,"tokens":[7091,11504,3024,4692],"delegation":[6091,10504,2024,3692],"delegatorTokens":9999999924696}},{"ix":157,"action":{"kind":"Delegate","val":3,"amt":2926},"partialState":{"h":13,"t":78,"tokens":[7091,11504,3024,7618],"delegation":[6091,10504,2024,6618],"delegatorTokens":9999999921770}},{"ix":158,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":159,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":18,"t":108,"consumerPower":[null,null,5646,null],"outstandingDowntime":[false,false,false,false]}},{"ix":160,"action":{"kind":"Deliver","chain":"provider","numPackets":1},"partialState":{"h":13,"t":78,"tokens":[7091,11504,3024,7618],"delegation":[6091,10504,2024,6618],"delegatorTokens":9999999921770,"jailed":[1000000000000023,1000000000000023,null,1000000000000023],"status":["unbonding","unbonding","bonded","unbonding"]}},{"ix":161,"action":{"kind":"Delegate","val":3,"amt":1639},"partialState":{"h":13,"t":78,"tokens":[7091,11504,3024,9257],"delegation":[6091,10504,2024,8257],"delegatorTokens":9999999920131}},{"ix":162,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":19,"t":114,"consumerPower":[null,null,5646,null],"outstandingDowntime":[false,false,false,false]}},{"ix":163,"action":{"kind":"Deliver","chain":"provider","numPackets":1},"partialState":{"h":13,"t":78,"tokens":[7091,11504,3024,9257],"delegation":[6091,10504,2024,8257],"delegatorTokens":9999999920131,"jailed":[1000000000000023,1000000000000023,null,1000000000000023],"status":["unbonding","unbonding","bonded","unbonding"]}},{"ix":164,"action":{"kind":"Deliver","chain":"provider","numPackets":6},"partialState":{"h":13,"t":78,"tokens":[7091,11504,3024,9257],"delegation":[6091,10504,2024,8257],"delegatorTokens":9999999920131,"jailed":[1000000000000023,1000000000000023,null,1000000000000023],"status":["unbonding","unbonding","bonded","unbonding"]}},{"ix":165,"action":{"kind":"Undelegate","val":2,"amt":3573},"partialState":{"h":13,"t":78,"tokens":[7091,11504,3024,9257],"delegation":[6091,10504,2024,8257],"delegatorTokens":9999999920131}},{"ix":166,"action":{"kind":"Undelegate","val":1,"amt":3479},"partialState":{"h":13,"t":78,"tokens":[7091,8025,3024,9257],"delegation":[6091,7025,2024,8257],"delegatorTokens":9999999920131}},{"ix":167,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":168,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":14,"t":84,"tokens":[7091,8025,3024,9257],"delegation":[6091,7025,2024,8257],"delegatorTokens":9999999922855,"jailed":[1000000000000023,1000000000000023,null,1000000000000023],"status":["unbonding","unbonded","bonded","unbonding"]}},{"ix":169,"action":{"kind":"Deliver","chain":"provider","numPackets":2},"partialState":{"h":14,"t":84,"tokens":[7091,8025,3024,9257],"delegation":[6091,7025,2024,8257],"delegatorTokens":9999999922855,"jailed":[1000000000000023,1000000000000023,null,1000000000000023],"status":["unbonding","unbonded","bonded","unbonding"]}},{"ix":170,"action":{"kind":"Deliver","chain":"consumer","numPackets":1},"partialState":{"h":19,"t":114,"consumerPower":[null,null,5646,null],"outstandingDowntime":[false,false,false,false]}},{"ix":171,"action":{"kind":"Undelegate","val":0,"amt":4528},"partialState":{"h":14,"t":84,"tokens":[2563,8025,3024,9257],"delegation":[1563,7025,2024,8257],"delegatorTokens":9999999922855}},{"ix":172,"action":{"kind":"Deliver","chain":"consumer","numPackets":4},"partialState":{"h":19,"t":114,"consumerPower":[null,null,5646,null],"outstandingDowntime":[false,false,false,false]}},{"ix":173,"action":{"kind":"Deliver","chain":"provider","numPackets":6},"partialState":{"h":14,"t":84,"tokens":[2563,8025,3024,9257],"delegation":[1563,7025,2024,8257],"delegatorTokens":9999999922855,"jailed":[1000000000000023,1000000000000023,null,1000000000000023],"status":["unbonding","unbonded","bonded","unbonding"]}},{"ix":174,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":175,"action":{"kind":"Undelegate","val":0,"amt":1489},"partialState":{"h":14,"t":84,"tokens":[1074,8025,3024,9257],"delegation":[74,7025,2024,8257],"delegatorTokens":9999999922855}},{"ix":176,"action":{"kind":"Deliver","chain":"consumer","numPackets":6},"partialState":{"h":19,"t":114,"consumerPower":[null,null,5646,null],"outstandingDowntime":[false,false,false,false]}},{"ix":177,"action":{"kind":"Deliver","chain":"consumer","numPackets":1},"partialState":{"h":19,"t":114,"consumerPower":[null,null,5646,null],"outstandingDowntime":[false,false,false,false]}},{"ix":178,"action":{"kind":"Undelegate","val":3,"amt":3680},"partialState":{"h":14,"t":84,"tokens":[1074,8025,3024,5577],"delegation":[74,7025,2024,4577],"delegatorTokens":9999999922855}},{"ix":179,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":15,"t":90,"tokens":[1074,8025,3024,5577],"delegation":[74,7025,2024,4577],"delegatorTokens":9999999926082,"jailed":[1000000000000023,1000000000000023,null,1000000000000023],"status":["unbonding","unbonded","bonded","unbonding"]}},{"ix":180,"action":{"kind":"Delegate","val":2,"amt":2627},"partialState":{"h":15,"t":90,"tokens":[1074,8025,5651,5577],"delegation":[74,7025,4651,4577],"delegatorTokens":9999999923455}},{"ix":181,"action":{"kind":"Undelegate","val":0,"amt":4342},"partialState":{"h":15,"t":90,"tokens":[1074,8025,5651,5577],"delegation":[74,7025,4651,4577],"delegatorTokens":9999999923455}},{"ix":182,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":183,"action":{"kind":"Deliver","chain":"consumer","numPackets":3},"partialState":{"h":19,"t":114,"consumerPower":[null,null,5646,null],"outstandingDowntime":[false,false,false,false]}},{"ix":184,"action":{"kind":"Delegate","val":1,"amt":4902},"partialState":{"h":15,"t":90,"tokens":[1074,12927,5651,5577],"delegation":[74,11927,4651,4577],"delegatorTokens":9999999918553}},{"ix":185,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":186,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":16,"t":96,"tokens":[1074,12927,5651,5577],"delegation":[74,11927,4651,4577],"delegatorTokens":9999999923033,"jailed":[1000000000000023,1000000000000023,null,1000000000000023],"status":["unbonding","unbonded","bonded","unbonding"]}},{"ix":187,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":188,"action":{"kind":"Deliver","chain":"provider","numPackets":1},"partialState":{"h":16,"t":96,"tokens":[1074,12927,5651,5577],"delegation":[74,11927,4651,4577],"delegatorTokens":9999999923033,"jailed":[1000000000000023,1000000000000023,null,1000000000000023],"status":["unbonding","unbonded","bonded","unbonding"]}},{"ix":189,"action":{"kind":"Deliver","chain":"consumer","numPackets":5},"partialState":{"h":19,"t":114,"consumerPower":[null,null,5646,null],"outstandingDowntime":[false,false,false,false]}},{"ix":190,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":191,"action":{"kind":"Deliver","chain":"provider","numPackets":6},"partialState":{"h":16,"t":96,"tokens":[1074,12927,5651,5577],"delegation":[74,11927,4651,4577],"delegatorTokens":9999999923033,"jailed":[1000000000000023,1000000000000023,null,1000000000000023],"status":["unbonding","unbonded","bonded","unbonding"]}},{"ix":192,"action":{"kind":"Deliver","chain":"provider","numPackets":3},"partialState":{"h":16,"t":96,"tokens":[1074,12927,5651,5577],"delegation":[74,11927,4651,4577],"delegatorTokens":9999999923033,"jailed":[1000000000000023,1000000000000023,null,1000000000000023],"status":["unbonding","unbonded","bonded","unbonding"]}},{"ix":193,"action":{"kind":"Deliver","chain":"provider","numPackets":4},"partialState":{"h":16,"t":96,"tokens":[1074,12927,5651,5577],"delegation":[74,11927,4651,4577],"delegatorTokens":9999999923033,"jailed":[1000000000000023,1000000000000023,null,1000000000000023],"status":["unbonding","unbonded","bonded","unbonding"]}},{"ix":194,"action":{"kind":"Deliver","chain":"provider","numPackets":3},"partialState":{"h":16,"t":96,"tokens":[1074,12927,5651,5577],"delegation":[74,11927,4651,4577],"delegatorTokens":9999999923033,"jailed":[1000000000000023,1000000000000023,null,1000000000000023],"status":["unbonding","unbonded","bonded","unbonding"]}},{"ix":195,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":17,"t":102,"tokens":[1074,12927,5651,5577],"delegation":[74,11927,4651,4577],"delegatorTokens":9999999939032,"jailed":[1000000000000023,1000000000000023,null,1000000000000023],"status":["unbonding","unbonded","bonded","unbonding"]}},{"ix":196,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":18,"t":108,"tokens":[1074,12927,5651,5577],"delegation":[74,11927,4651,4577],"delegatorTokens":9999999941318,"jailed":[1000000000000023,1000000000000023,null,1000000000000023],"status":["unbonded","unbonded","bonded","unbonded"]}},{"ix":197,"action":{"kind":"Delegate","val":2,"amt":2110},"partialState":{"h":18,"t":108,"tokens":[1074,12927,7761,5577],"delegation":[74,11927,6761,4577],"delegatorTokens":9999999939208}},{"ix":198,"action":{"kind":"Deliver","chain":"provider","numPackets":3},"partialState":{"h":18,"t":108,"tokens":[1074,12927,7761,5577],"delegation":[74,11927,6761,4577],"delegatorTokens":9999999939208,"jailed":[1000000000000023,1000000000000023,null,1000000000000023],"status":["unbonded","unbonded","bonded","unbonded"]}},{"ix":199,"action":{"kind":"Delegate","val":2,"amt":3818},"partialState":{"h":18,"t":108,"tokens":[1074,12927,11579,5577],"delegation":[74,11927,10579,4577],"delegatorTokens":9999999935390}}],"events":["insufficient_shares","more_than_one_third_val_power_change","send_vsc_without_downtime_ack","insufficient_shares","send_double_sign_slash_request","send_vsc_not_because_change","send_vsc_without_downtime_ack","insufficient_shares","send_downtime_slash_request","insufficient_shares","send_vsc_without_downtime_ack","downtime_slash_request_outstanding","send_downtime_slash_request","consumer_del_val","consumer_add_val","insufficient_shares","insufficient_shares","send_downtime_slash_request","insufficient_shares","receive_double_sign_slash_request","insufficient_shares","receive_downtime_slash_request","jail","receive_downtime_slash_request","jail","receive_downtime_slash_request","jail","send_vsc_with_downtime_ack","consumer_update_val","consumer_update_val","insufficient_shares","insufficient_shares","more_than_one_third_val_power_change","rebond_unval","send_vsc_without_downtime_ack","receive_downtime_slash_ack","receive_downtime_slash_ack","receive_downtime_slash_ack","insufficient_shares","insufficient_shares","insufficient_shares","consumer_update_val","consumer_del_val","consumer_add_val","send_vsc_not_because_change","send_vsc_without_downtime_ack","send_vsc_not_because_change","send_vsc_without_downtime_ack","consumer_del_val","consumer_add_val","consumer_del_val","insufficient_shares","insufficient_shares","insufficient_shares","send_vsc_not_because_change","send_vsc_without_downtime_ack","consumer_send_maturation","consumer_send_maturation","send_vsc_without_downtime_ack","consumer_send_maturation","consumer_send_maturation","set_undel_hold_false","set_unval_hold_false","set_undel_hold_false","send_vsc_without_downtime_ack","consumer_send_maturation","consumer_send_maturation","consumer_update_val","insufficient_shares","complete_unval_in_endblock","complete_undel_in_endblock","set_undel_hold_false","set_undel_hold_false","set_undel_hold_false","set_undel_hold_false","set_undel_hold_false","set_undel_hold_false","set_undel_hold_false","set_unval_hold_false","set_unval_hold_false","set_undel_hold_false","set_undel_hold_false","set_undel_hold_false","set_undel_hold_false","send_vsc_not_because_change","send_vsc_without_downtime_ack","complete_undel_in_endblock","send_vsc_not_because_change","send_vsc_without_downtime_ack","insufficient_shares","complete_undel_in_endblock","send_vsc_without_downtime_ack","complete_undel_in_endblock","complete_unval_in_endblock","complete_unval_in_endblock","complete_undel_in_endblock"]},{"meta":{"commit":"7ffd0c04e4205cbc9caf212abfe6c59ee43153bf"},"constants":{"P":"provider","C":"consumer","UNBONDING_SECONDS_P":70,"UNBONDING_SECONDS_C":50,"TRUSTING_SECONDS":49,"NUM_VALIDATORS":4,"MAX_VALIDATORS":2,"SLASH_DOUBLESIGN":0,"SLASH_DOWNTIME":0,"JAIL_SECONDS":999999999999999,"BLOCK_SECONDS":6,"INITIAL_DELEGATOR_TOKENS":10000000000000,"DELEGATE_AMT_MIN":1000,"DELEGATE_AMT_MAX":5000,"UNDELEGATE_AMT_MIN":1000,"UNDELEGATE_AMT_MAX":5000,"ISDOWNTIME_PROBABILITY":0.5,"MAX_NUM_PACKETS_FOR_DELIVER":6},"actions":[{"ix":0,"action":{"kind":"Undelegate","val":3,"amt":1135},"partialState":{"h":1,"t":6,"tokens":[5000,4000,3000,2000],"delegation":[4000,3000,2000,1000],"delegatorTokens":10000000000000}},{"ix":1,"action":{"kind":"Undelegate","val":3,"amt":2444},"partialState":{"h":1,"t":6,"tokens":[5000,4000,3000,2000],"delegation":[4000,3000,2000,1000],"delegatorTokens":10000000000000}},{"ix":2,"action":{"kind":"Delegate","val":3,"amt":3436},"partialState":{"h":1,"t":6,"tokens":[5000,4000,3000,5436],"delegation":[4000,3000,2000,4436],"delegatorTokens":9999999996564}},{"ix":3,"action":{"kind":"Undelegate","val":2,"amt":1165},"partialState":{"h":1,"t":6,"tokens":[5000,4000,1835,5436],"delegation":[4000,3000,835,4436],"delegatorTokens":9999999996564}},{"ix":4,"action":{"kind":"Undelegate","val":3,"amt":1555},"partialState":{"h":1,"t":6,"tokens":[5000,4000,1835,3881],"delegation":[4000,3000,835,2881],"delegatorTokens":9999999996564}},{"ix":5,"action":{"kind":"Undelegate","val":0,"amt":2762},"partialState":{"h":1,"t":6,"tokens":[2238,4000,1835,3881],"delegation":[1238,3000,835,2881],"delegatorTokens":9999999996564}},{"ix":6,"action":{"kind":"Undelegate","val":3,"amt":4777},"partialState":{"h":1,"t":6,"tokens":[2238,4000,1835,3881],"delegation":[1238,3000,835,2881],"delegatorTokens":9999999996564}},{"ix":7,"action":{"kind":"Delegate","val":2,"amt":3174},"partialState":{"h":1,"t":6,"tokens":[2238,4000,5009,3881],"delegation":[1238,3000,4009,2881],"delegatorTokens":9999999993390}},{"ix":8,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":2,"t":12,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":9,"action":{"kind":"Undelegate","val":3,"amt":4999},"partialState":{"h":1,"t":6,"tokens":[2238,4000,5009,3881],"delegation":[1238,3000,4009,2881],"delegatorTokens":9999999993390}},{"ix":10,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":3,"t":18,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":11,"action":{"kind":"Undelegate","val":1,"amt":4275},"partialState":{"h":1,"t":6,"tokens":[2238,4000,5009,3881],"delegation":[1238,3000,4009,2881],"delegatorTokens":9999999993390}},{"ix":12,"action":{"kind":"Delegate","val":0,"amt":2395},"partialState":{"h":1,"t":6,"tokens":[4633,4000,5009,3881],"delegation":[3633,3000,4009,2881],"delegatorTokens":9999999990995}},{"ix":13,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":2,"t":12,"tokens":[4633,4000,5009,3881],"delegation":[3633,3000,4009,2881],"delegatorTokens":9999999990995,"jailed":[null,null,null,null],"status":["bonded","unbonding","bonded","unbonded"]}},{"ix":14,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":15,"action":{"kind":"Delegate","val":3,"amt":2046},"partialState":{"h":2,"t":12,"tokens":[4633,4000,5009,5927],"delegation":[3633,3000,4009,4927],"delegatorTokens":9999999988949}},{"ix":16,"action":{"kind":"ConsumerSlash","val":0,"infractionHeight":2,"isDowntime":true},"partialState":{"h":3,"t":18,"outstandingDowntime":[true,false,false,false]}},{"ix":17,"action":{"kind":"ConsumerSlash","val":2,"infractionHeight":1,"isDowntime":true},"partialState":{"h":3,"t":18,"outstandingDowntime":[true,false,true,false]}},{"ix":18,"action":{"kind":"ConsumerSlash","val":1,"infractionHeight":1,"isDowntime":true},"partialState":{"h":3,"t":18,"outstandingDowntime":[true,true,true,false]}},{"ix":19,"action":{"kind":"Delegate","val":3,"amt":4383},"partialState":{"h":2,"t":12,"tokens":[4633,4000,5009,10310],"delegation":[3633,3000,4009,9310],"delegatorTokens":9999999984566}},{"ix":20,"action":{"kind":"Undelegate","val":1,"amt":1041},"partialState":{"h":2,"t":12,"tokens":[4633,2959,5009,10310],"delegation":[3633,1959,4009,9310],"delegatorTokens":9999999984566}},{"ix":21,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":22,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":4,"t":24,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[true,true,true,false]}},{"ix":23,"action":{"kind":"Delegate","val":1,"amt":4716},"partialState":{"h":2,"t":12,"tokens":[4633,7675,5009,10310],"delegation":[3633,6675,4009,9310],"delegatorTokens":9999999979850}},{"ix":24,"action":{"kind":"Delegate","val":0,"amt":1490},"partialState":{"h":2,"t":12,"tokens":[6123,7675,5009,10310],"delegation":[5123,6675,4009,9310],"delegatorTokens":9999999978360}},{"ix":25,"action":{"kind":"Delegate","val":0,"amt":4757},"partialState":{"h":2,"t":12,"tokens":[10880,7675,5009,10310],"delegation":[9880,6675,4009,9310],"delegatorTokens":9999999973603}},{"ix":26,"action":{"kind":"Deliver","chain":"consumer","numPackets":6},"partialState":{"h":4,"t":24,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[true,true,true,false]}},{"ix":27,"action":{"kind":"Delegate","val":3,"amt":2626},"partialState":{"h":2,"t":12,"tokens":[10880,7675,5009,12936],"delegation":[9880,6675,4009,11936],"delegatorTokens":9999999970977}},{"ix":28,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":29,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":3,"t":18,"tokens":[10880,7675,5009,12936],"delegation":[9880,6675,4009,11936],"delegatorTokens":9999999970977,"jailed":[null,null,null,null],"status":["bonded","unbonding","unbonding","bonded"]}},{"ix":30,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":31,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":32,"action":{"kind":"Undelegate","val":0,"amt":1337},"partialState":{"h":3,"t":18,"tokens":[9543,7675,5009,12936],"delegation":[8543,6675,4009,11936],"delegatorTokens":9999999970977}},{"ix":33,"action":{"kind":"Delegate","val":1,"amt":4972},"partialState":{"h":3,"t":18,"tokens":[9543,12647,5009,12936],"delegation":[8543,11647,4009,11936],"delegatorTokens":9999999966005}},{"ix":34,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":35,"action":{"kind":"Delegate","val":0,"amt":2435},"partialState":{"h":3,"t":18,"tokens":[11978,12647,5009,12936],"delegation":[10978,11647,4009,11936],"delegatorTokens":9999999963570}},{"ix":36,"action":{"kind":"Deliver","chain":"consumer","numPackets":6},"partialState":{"h":4,"t":24,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[true,true,true,false]}},{"ix":37,"action":{"kind":"Deliver","chain":"consumer","numPackets":4},"partialState":{"h":4,"t":24,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[true,true,true,false]}},{"ix":38,"action":{"kind":"Delegate","val":1,"amt":4598},"partialState":{"h":3,"t":18,"tokens":[11978,17245,5009,12936],"delegation":[10978,16245,4009,11936],"delegatorTokens":9999999958972}},{"ix":39,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":40,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":5,"t":30,"consumerPower":[4633,null,5009,null],"outstandingDowntime":[true,true,true,false]}},{"ix":41,"action":{"kind":"Deliver","chain":"consumer","numPackets":4},"partialState":{"h":5,"t":30,"consumerPower":[4633,null,5009,null],"outstandingDowntime":[true,true,true,false]}},{"ix":42,"action":{"kind":"Deliver","chain":"provider","numPackets":4},"partialState":{"h":3,"t":18,"tokens":[11978,17245,5009,12936],"delegation":[10978,16245,4009,11936],"delegatorTokens":9999999958972,"jailed":[null,null,null,null],"status":["bonded","unbonding","unbonding","bonded"]}},{"ix":43,"action":{"kind":"Deliver","chain":"provider","numPackets":3},"partialState":{"h":3,"t":18,"tokens":[11978,17245,5009,12936],"delegation":[10978,16245,4009,11936],"delegatorTokens":9999999958972,"jailed":[null,null,null,null],"status":["bonded","unbonding","unbonding","bonded"]}},{"ix":44,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":45,"action":{"kind":"Undelegate","val":0,"amt":4459},"partialState":{"h":3,"t":18,"tokens":[7519,17245,5009,12936],"delegation":[6519,16245,4009,11936],"delegatorTokens":9999999958972}},{"ix":46,"action":{"kind":"Undelegate","val":0,"amt":4170},"partialState":{"h":3,"t":18,"tokens":[3349,17245,5009,12936],"delegation":[2349,16245,4009,11936],"delegatorTokens":9999999958972}},{"ix":47,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":48,"action":{"kind":"Delegate","val":2,"amt":3135},"partialState":{"h":3,"t":18,"tokens":[3349,17245,8144,12936],"delegation":[2349,16245,7144,11936],"delegatorTokens":9999999955837}},{"ix":49,"action":{"kind":"Deliver","chain":"provider","numPackets":5},"partialState":{"h":3,"t":18,"tokens":[3349,17245,8144,12936],"delegation":[2349,16245,7144,11936],"delegatorTokens":9999999955837,"jailed":[null,null,null,null],"status":["bonded","unbonding","unbonding","bonded"]}},{"ix":50,"action":{"kind":"Deliver","chain":"consumer","numPackets":1},"partialState":{"h":5,"t":30,"consumerPower":[4633,null,5009,null],"outstandingDowntime":[true,true,true,false]}},{"ix":51,"action":{"kind":"Delegate","val":3,"amt":2873},"partialState":{"h":3,"t":18,"tokens":[3349,17245,8144,15809],"delegation":[2349,16245,7144,14809],"delegatorTokens":9999999952964}},{"ix":52,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":4,"t":24,"tokens":[3349,17245,8144,15809],"delegation":[2349,16245,7144,14809],"delegatorTokens":9999999952964,"jailed":[1000000000000017,1000000000000017,1000000000000017,null],"status":["unbonding","bonded","unbonding","bonded"]}},{"ix":53,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":54,"action":{"kind":"Undelegate","val":1,"amt":1290},"partialState":{"h":4,"t":24,"tokens":[3349,15955,8144,15809],"delegation":[2349,14955,7144,14809],"delegatorTokens":9999999952964}},{"ix":55,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":56,"action":{"kind":"Deliver","chain":"consumer","numPackets":6},"partialState":{"h":5,"t":30,"consumerPower":[4633,null,5009,null],"outstandingDowntime":[true,true,true,false]}},{"ix":57,"action":{"kind":"Delegate","val":2,"amt":4476},"partialState":{"h":4,"t":24,"tokens":[3349,15955,12620,15809],"delegation":[2349,14955,11620,14809],"delegatorTokens":9999999948488}},{"ix":58,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":59,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":5,"t":30,"tokens":[3349,15955,12620,15809],"delegation":[2349,14955,11620,14809],"delegatorTokens":9999999948488,"jailed":[1000000000000017,1000000000000017,1000000000000017,null],"status":["unbonding","unbonding","unbonding","bonded"]}},{"ix":60,"action":{"kind":"Undelegate","val":1,"amt":2793},"partialState":{"h":5,"t":30,"tokens":[3349,13162,12620,15809],"delegation":[2349,12162,11620,14809],"delegatorTokens":9999999948488}},{"ix":61,"action":{"kind":"Deliver","chain":"consumer","numPackets":4},"partialState":{"h":5,"t":30,"consumerPower":[4633,null,5009,null],"outstandingDowntime":[false,false,false,false]}},{"ix":62,"action":{"kind":"Undelegate","val":2,"amt":3884},"partialState":{"h":5,"t":30,"tokens":[3349,13162,8736,15809],"delegation":[2349,12162,7736,14809],"delegatorTokens":9999999948488}},{"ix":63,"action":{"kind":"Deliver","chain":"provider","numPackets":3},"partialState":{"h":5,"t":30,"tokens":[3349,13162,8736,15809],"delegation":[2349,12162,7736,14809],"delegatorTokens":9999999948488,"jailed":[1000000000000017,1000000000000017,1000000000000017,null],"status":["unbonding","unbonding","unbonding","bonded"]}},{"ix":64,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":6,"t":36,"tokens":[3349,13162,8736,15809],"delegation":[2349,12162,7736,14809],"delegatorTokens":9999999948488,"jailed":[1000000000000017,1000000000000017,1000000000000017,null],"status":["unbonding","unbonding","unbonding","bonded"]}},{"ix":65,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":6,"t":36,"consumerPower":[null,17245,null,15809],"outstandingDowntime":[false,false,false,false]}},{"ix":66,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":7,"t":42,"consumerPower":[null,17245,null,15809],"outstandingDowntime":[false,false,false,false]}},{"ix":67,"action":{"kind":"Deliver","chain":"provider","numPackets":2},"partialState":{"h":6,"t":36,"tokens":[3349,13162,8736,15809],"delegation":[2349,12162,7736,14809],"delegatorTokens":9999999948488,"jailed":[1000000000000017,1000000000000017,1000000000000017,null],"status":["unbonding","unbonding","unbonding","bonded"]}},{"ix":68,"action":{"kind":"Undelegate","val":2,"amt":2021},"partialState":{"h":6,"t":36,"tokens":[3349,13162,6715,15809],"delegation":[2349,12162,5715,14809],"delegatorTokens":9999999948488}},{"ix":69,"action":{"kind":"Delegate","val":3,"amt":1789},"partialState":{"h":6,"t":36,"tokens":[3349,13162,6715,17598],"delegation":[2349,12162,5715,16598],"delegatorTokens":9999999946699}},{"ix":70,"action":{"kind":"Undelegate","val":2,"amt":4380},"partialState":{"h":6,"t":36,"tokens":[3349,13162,2335,17598],"delegation":[2349,12162,1335,16598],"delegatorTokens":9999999946699}},{"ix":71,"action":{"kind":"Deliver","chain":"provider","numPackets":4},"partialState":{"h":6,"t":36,"tokens":[3349,13162,2335,17598],"delegation":[2349,12162,1335,16598],"delegatorTokens":9999999946699,"jailed":[1000000000000017,1000000000000017,1000000000000017,null],"status":["unbonding","unbonding","unbonding","bonded"]}},{"ix":72,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":73,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":8,"t":48,"consumerPower":[null,17245,null,15809],"outstandingDowntime":[false,false,false,false]}},{"ix":74,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":9,"t":54,"consumerPower":[null,17245,null,15809],"outstandingDowntime":[false,false,false,false]}},{"ix":75,"action":{"kind":"Delegate","val":1,"amt":3147},"partialState":{"h":6,"t":36,"tokens":[3349,16309,2335,17598],"delegation":[2349,15309,1335,16598],"delegatorTokens":9999999943552}},{"ix":76,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":77,"action":{"kind":"Undelegate","val":1,"amt":2484},"partialState":{"h":6,"t":36,"tokens":[3349,13825,2335,17598],"delegation":[2349,12825,1335,16598],"delegatorTokens":9999999943552}},{"ix":78,"action":{"kind":"Undelegate","val":2,"amt":4221},"partialState":{"h":6,"t":36,"tokens":[3349,13825,2335,17598],"delegation":[2349,12825,1335,16598],"delegatorTokens":9999999943552}},{"ix":79,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":80,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":7,"t":42,"tokens":[3349,13825,2335,17598],"delegation":[2349,12825,1335,16598],"delegatorTokens":9999999943552,"jailed":[1000000000000017,1000000000000017,1000000000000017,null],"status":["unbonding","unbonding","unbonding","bonded"]}},{"ix":81,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":82,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":8,"t":48,"tokens":[3349,13825,2335,17598],"delegation":[2349,12825,1335,16598],"delegatorTokens":9999999943552,"jailed":[1000000000000017,1000000000000017,1000000000000017,null],"status":["unbonding","unbonding","unbonding","bonded"]}},{"ix":83,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":84,"action":{"kind":"Delegate","val":0,"amt":1422},"partialState":{"h":8,"t":48,"tokens":[4771,13825,2335,17598],"delegation":[3771,12825,1335,16598],"delegatorTokens":9999999942130}},{"ix":85,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":9,"t":54,"tokens":[4771,13825,2335,17598],"delegation":[3771,12825,1335,16598],"delegatorTokens":9999999942130,"jailed":[1000000000000017,1000000000000017,1000000000000017,null],"status":["unbonding","unbonding","unbonding","bonded"]}},{"ix":86,"action":{"kind":"Deliver","chain":"provider","numPackets":3},"partialState":{"h":9,"t":54,"tokens":[4771,13825,2335,17598],"delegation":[3771,12825,1335,16598],"delegatorTokens":9999999942130,"jailed":[1000000000000017,1000000000000017,1000000000000017,null],"status":["unbonding","unbonding","unbonding","bonded"]}},{"ix":87,"action":{"kind":"Deliver","chain":"provider","numPackets":1},"partialState":{"h":9,"t":54,"tokens":[4771,13825,2335,17598],"delegation":[3771,12825,1335,16598],"delegatorTokens":9999999942130,"jailed":[1000000000000017,1000000000000017,1000000000000017,null],"status":["unbonding","unbonding","unbonding","bonded"]}},{"ix":88,"action":{"kind":"Deliver","chain":"consumer","numPackets":3},"partialState":{"h":9,"t":54,"consumerPower":[null,17245,null,15809],"outstandingDowntime":[false,false,false,false]}},{"ix":89,"action":{"kind":"Undelegate","val":3,"amt":1806},"partialState":{"h":9,"t":54,"tokens":[4771,13825,2335,15792],"delegation":[3771,12825,1335,14792],"delegatorTokens":9999999942130}},{"ix":90,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":91,"action":{"kind":"Undelegate","val":2,"amt":3155},"partialState":{"h":9,"t":54,"tokens":[4771,13825,2335,15792],"delegation":[3771,12825,1335,14792],"delegatorTokens":9999999942130}},{"ix":92,"action":{"kind":"Deliver","chain":"provider","numPackets":3},"partialState":{"h":9,"t":54,"tokens":[4771,13825,2335,15792],"delegation":[3771,12825,1335,14792],"delegatorTokens":9999999942130,"jailed":[1000000000000017,1000000000000017,1000000000000017,null],"status":["unbonding","unbonding","unbonding","bonded"]}},{"ix":93,"action":{"kind":"Deliver","chain":"consumer","numPackets":5},"partialState":{"h":9,"t":54,"consumerPower":[null,17245,null,15809],"outstandingDowntime":[false,false,false,false]}},{"ix":94,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":10,"t":60,"consumerPower":[null,null,null,17598],"outstandingDowntime":[false,false,false,false]}},{"ix":95,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":11,"t":66,"consumerPower":[null,null,null,17598],"outstandingDowntime":[false,false,false,false]}},{"ix":96,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":10,"t":60,"tokens":[4771,13825,2335,15792],"delegation":[3771,12825,1335,14792],"delegatorTokens":9999999942130,"jailed":[1000000000000017,1000000000000017,1000000000000017,null],"status":["unbonding","unbonding","unbonding","bonded"]}},{"ix":97,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":12,"t":72,"consumerPower":[null,null,null,17598],"outstandingDowntime":[false,false,false,false]}},{"ix":98,"action":{"kind":"Delegate","val":0,"amt":1188},"partialState":{"h":10,"t":60,"tokens":[5959,13825,2335,15792],"delegation":[4959,12825,1335,14792],"delegatorTokens":9999999940942}},{"ix":99,"action":{"kind":"Delegate","val":0,"amt":3127},"partialState":{"h":10,"t":60,"tokens":[9086,13825,2335,15792],"delegation":[8086,12825,1335,14792],"delegatorTokens":9999999937815}},{"ix":100,"action":{"kind":"Delegate","val":3,"amt":3793},"partialState":{"h":10,"t":60,"tokens":[9086,13825,2335,19585],"delegation":[8086,12825,1335,18585],"delegatorTokens":9999999934022}},{"ix":101,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":13,"t":78,"consumerPower":[null,null,null,17598],"outstandingDowntime":[false,false,false,false]}},{"ix":102,"action":{"kind":"Delegate","val":2,"amt":3836},"partialState":{"h":10,"t":60,"tokens":[9086,13825,6171,19585],"delegation":[8086,12825,5171,18585],"delegatorTokens":9999999930186}},{"ix":103,"action":{"kind":"Undelegate","val":0,"amt":1457},"partialState":{"h":10,"t":60,"tokens":[7629,13825,6171,19585],"delegation":[6629,12825,5171,18585],"delegatorTokens":9999999930186}},{"ix":104,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":105,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":11,"t":66,"tokens":[7629,13825,6171,19585],"delegation":[6629,12825,5171,18585],"delegatorTokens":9999999930186,"jailed":[1000000000000017,1000000000000017,1000000000000017,null],"status":["unbonding","unbonding","unbonding","bonded"]}},{"ix":106,"action":{"kind":"Deliver","chain":"consumer","numPackets":1},"partialState":{"h":13,"t":78,"consumerPower":[null,null,null,17598],"outstandingDowntime":[false,false,false,false]}},{"ix":107,"action":{"kind":"Delegate","val":3,"amt":2375},"partialState":{"h":11,"t":66,"tokens":[7629,13825,6171,21960],"delegation":[6629,12825,5171,20960],"delegatorTokens":9999999927811}},{"ix":108,"action":{"kind":"Undelegate","val":0,"amt":3655},"partialState":{"h":11,"t":66,"tokens":[3974,13825,6171,21960],"delegation":[2974,12825,5171,20960],"delegatorTokens":9999999927811}},{"ix":109,"action":{"kind":"Deliver","chain":"provider","numPackets":5},"partialState":{"h":11,"t":66,"tokens":[3974,13825,6171,21960],"delegation":[2974,12825,5171,20960],"delegatorTokens":9999999927811,"jailed":[1000000000000017,1000000000000017,1000000000000017,null],"status":["unbonding","unbonding","unbonding","bonded"]}},{"ix":110,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":111,"action":{"kind":"Deliver","chain":"consumer","numPackets":3},"partialState":{"h":13,"t":78,"consumerPower":[null,null,null,17598],"outstandingDowntime":[false,false,false,false]}},{"ix":112,"action":{"kind":"Delegate","val":3,"amt":1401},"partialState":{"h":11,"t":66,"tokens":[3974,13825,6171,23361],"delegation":[2974,12825,5171,22361],"delegatorTokens":9999999926410}},{"ix":113,"action":{"kind":"Delegate","val":1,"amt":1145},"partialState":{"h":11,"t":66,"tokens":[3974,14970,6171,23361],"delegation":[2974,13970,5171,22361],"delegatorTokens":9999999925265}},{"ix":114,"action":{"kind":"Delegate","val":2,"amt":3121},"partialState":{"h":11,"t":66,"tokens":[3974,14970,9292,23361],"delegation":[2974,13970,8292,22361],"delegatorTokens":9999999922144}},{"ix":115,"action":{"kind":"Undelegate","val":2,"amt":4695},"partialState":{"h":11,"t":66,"tokens":[3974,14970,4597,23361],"delegation":[2974,13970,3597,22361],"delegatorTokens":9999999922144}},{"ix":116,"action":{"kind":"Delegate","val":3,"amt":3934},"partialState":{"h":11,"t":66,"tokens":[3974,14970,4597,27295],"delegation":[2974,13970,3597,26295],"delegatorTokens":9999999918210}},{"ix":117,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":14,"t":84,"consumerPower":[null,null,null,15792],"outstandingDowntime":[false,false,false,false]}},{"ix":118,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":15,"t":90,"consumerPower":[null,null,null,15792],"outstandingDowntime":[false,false,false,false]}},{"ix":119,"action":{"kind":"Deliver","chain":"provider","numPackets":3},"partialState":{"h":11,"t":66,"tokens":[3974,14970,4597,27295],"delegation":[2974,13970,3597,26295],"delegatorTokens":9999999918210,"jailed":[1000000000000017,1000000000000017,1000000000000017,null],"status":["unbonding","unbonding","unbonding","bonded"]}},{"ix":120,"action":{"kind":"Deliver","chain":"provider","numPackets":4},"partialState":{"h":11,"t":66,"tokens":[3974,14970,4597,27295],"delegation":[2974,13970,3597,26295],"delegatorTokens":9999999918210,"jailed":[1000000000000017,1000000000000017,1000000000000017,null],"status":["unbonding","unbonding","unbonding","bonded"]}},{"ix":121,"action":{"kind":"Deliver","chain":"consumer","numPackets":1},"partialState":{"h":15,"t":90,"consumerPower":[null,null,null,15792],"outstandingDowntime":[false,false,false,false]}},{"ix":122,"action":{"kind":"Undelegate","val":0,"amt":3077},"partialState":{"h":11,"t":66,"tokens":[3974,14970,4597,27295],"delegation":[2974,13970,3597,26295],"delegatorTokens":9999999918210}},{"ix":123,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":16,"t":96,"consumerPower":[null,null,null,15792],"outstandingDowntime":[false,false,false,false]}},{"ix":124,"action":{"kind":"Undelegate","val":2,"amt":1031},"partialState":{"h":11,"t":66,"tokens":[3974,14970,3566,27295],"delegation":[2974,13970,2566,26295],"delegatorTokens":9999999918210}},{"ix":125,"action":{"kind":"Deliver","chain":"provider","numPackets":6},"partialState":{"h":11,"t":66,"tokens":[3974,14970,3566,27295],"delegation":[2974,13970,2566,26295],"delegatorTokens":9999999918210,"jailed":[1000000000000017,1000000000000017,1000000000000017,null],"status":["unbonding","unbonding","unbonding","bonded"]}},{"ix":126,"action":{"kind":"Delegate","val":1,"amt":4920},"partialState":{"h":11,"t":66,"tokens":[3974,19890,3566,27295],"delegation":[2974,18890,2566,26295],"delegatorTokens":9999999913290}},{"ix":127,"action":{"kind":"Delegate","val":0,"amt":4606},"partialState":{"h":11,"t":66,"tokens":[8580,19890,3566,27295],"delegation":[7580,18890,2566,26295],"delegatorTokens":9999999908684}},{"ix":128,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":129,"action":{"kind":"Deliver","chain":"provider","numPackets":6},"partialState":{"h":11,"t":66,"tokens":[8580,19890,3566,27295],"delegation":[7580,18890,2566,26295],"delegatorTokens":9999999908684,"jailed":[1000000000000017,1000000000000017,1000000000000017,null],"status":["unbonding","unbonding","unbonding","bonded"]}},{"ix":130,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":131,"action":{"kind":"Undelegate","val":0,"amt":1401},"partialState":{"h":11,"t":66,"tokens":[7179,19890,3566,27295],"delegation":[6179,18890,2566,26295],"delegatorTokens":9999999908684}},{"ix":132,"action":{"kind":"Undelegate","val":0,"amt":3796},"partialState":{"h":11,"t":66,"tokens":[3383,19890,3566,27295],"delegation":[2383,18890,2566,26295],"delegatorTokens":9999999908684}},{"ix":133,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":12,"t":72,"tokens":[3383,19890,3566,27295],"delegation":[2383,18890,2566,26295],"delegatorTokens":9999999908684,"jailed":[1000000000000017,1000000000000017,1000000000000017,null],"status":["unbonding","unbonding","unbonding","bonded"]}},{"ix":134,"action":{"kind":"Undelegate","val":0,"amt":3447},"partialState":{"h":12,"t":72,"tokens":[3383,19890,3566,27295],"delegation":[2383,18890,2566,26295],"delegatorTokens":9999999908684}},{"ix":135,"action":{"kind":"Undelegate","val":1,"amt":4579},"partialState":{"h":12,"t":72,"tokens":[3383,15311,3566,27295],"delegation":[2383,14311,2566,26295],"delegatorTokens":9999999908684}},{"ix":136,"action":{"kind":"Undelegate","val":1,"amt":1584},"partialState":{"h":12,"t":72,"tokens":[3383,13727,3566,27295],"delegation":[2383,12727,2566,26295],"delegatorTokens":9999999908684}},{"ix":137,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":13,"t":78,"tokens":[3383,13727,3566,27295],"delegation":[2383,12727,2566,26295],"delegatorTokens":9999999908684,"jailed":[1000000000000017,1000000000000017,1000000000000017,null],"status":["unbonding","unbonding","unbonding","bonded"]}},{"ix":138,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":139,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":140,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":17,"t":102,"consumerPower":[null,null,null,15792],"outstandingDowntime":[false,false,false,false]}},{"ix":141,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":14,"t":84,"tokens":[3383,13727,3566,27295],"delegation":[2383,12727,2566,26295],"delegatorTokens":9999999914166,"jailed":[1000000000000017,1000000000000017,1000000000000017,null],"status":["unbonding","unbonding","unbonding","bonded"]}},{"ix":142,"action":{"kind":"Deliver","chain":"provider","numPackets":1},"partialState":{"h":14,"t":84,"tokens":[3383,13727,3566,27295],"delegation":[2383,12727,2566,26295],"delegatorTokens":9999999914166,"jailed":[1000000000000017,1000000000000017,1000000000000017,null],"status":["unbonding","unbonding","unbonding","bonded"]}},{"ix":143,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":144,"action":{"kind":"Undelegate","val":1,"amt":2286},"partialState":{"h":14,"t":84,"tokens":[3383,11441,3566,27295],"delegation":[2383,10441,2566,26295],"delegatorTokens":9999999914166}},{"ix":145,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":15,"t":90,"tokens":[3383,11441,3566,27295],"delegation":[2383,10441,2566,26295],"delegatorTokens":9999999915207,"jailed":[1000000000000017,1000000000000017,1000000000000017,null],"status":["unbonding","unbonding","unbonded","bonded"]}},{"ix":146,"action":{"kind":"Deliver","chain":"provider","numPackets":1},"partialState":{"h":15,"t":90,"tokens":[3383,11441,3566,27295],"delegation":[2383,10441,2566,26295],"delegatorTokens":9999999915207,"jailed":[1000000000000017,1000000000000017,1000000000000017,null],"status":["unbonding","unbonding","unbonded","bonded"]}},{"ix":147,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":16,"t":96,"tokens":[3383,11441,3566,27295],"delegation":[2383,10441,2566,26295],"delegatorTokens":9999999925173,"jailed":[1000000000000017,1000000000000017,1000000000000017,null],"status":["unbonded","unbonding","unbonded","bonded"]}},{"ix":148,"action":{"kind":"Delegate","val":0,"amt":1862},"partialState":{"h":16,"t":96,"tokens":[5245,11441,3566,27295],"delegation":[4245,10441,2566,26295],"delegatorTokens":9999999923311}},{"ix":149,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":150,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":18,"t":108,"consumerPower":[null,null,null,15792],"outstandingDowntime":[false,false,false,false]}},{"ix":151,"action":{"kind":"Deliver","chain":"provider","numPackets":2},"partialState":{"h":16,"t":96,"tokens":[5245,11441,3566,27295],"delegation":[4245,10441,2566,26295],"delegatorTokens":9999999923311,"jailed":[1000000000000017,1000000000000017,1000000000000017,null],"status":["unbonded","unbonding","unbonded","bonded"]}},{"ix":152,"action":{"kind":"Delegate","val":0,"amt":4900},"partialState":{"h":16,"t":96,"tokens":[10145,11441,3566,27295],"delegation":[9145,10441,2566,26295],"delegatorTokens":9999999918411}},{"ix":153,"action":{"kind":"Delegate","val":3,"amt":3038},"partialState":{"h":16,"t":96,"tokens":[10145,11441,3566,30333],"delegation":[9145,10441,2566,29333],"delegatorTokens":9999999915373}},{"ix":154,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":155,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":19,"t":114,"consumerPower":[null,null,null,15792],"outstandingDowntime":[false,false,false,false]}},{"ix":156,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":157,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":17,"t":102,"tokens":[10145,11441,3566,30333],"delegation":[9145,10441,2566,29333],"delegatorTokens":9999999915373,"jailed":[1000000000000017,1000000000000017,1000000000000017,null],"status":["unbonded","unbonding","unbonded","bonded"]}},{"ix":158,"action":{"kind":"Delegate","val":1,"amt":2170},"partialState":{"h":17,"t":102,"tokens":[10145,13611,3566,30333],"delegation":[9145,12611,2566,29333],"delegatorTokens":9999999913203}},{"ix":159,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":20,"t":120,"consumerPower":[null,null,null,15792],"outstandingDowntime":[false,false,false,false]}},{"ix":160,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":21,"t":126,"consumerPower":[null,null,null,15792],"outstandingDowntime":[false,false,false,false]}},{"ix":161,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":162,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":163,"action":{"kind":"Undelegate","val":1,"amt":1496},"partialState":{"h":17,"t":102,"tokens":[10145,12115,3566,30333],"delegation":[9145,11115,2566,29333],"delegatorTokens":9999999913203}},{"ix":164,"action":{"kind":"Undelegate","val":0,"amt":2584},"partialState":{"h":17,"t":102,"tokens":[7561,12115,3566,30333],"delegation":[6561,11115,2566,29333],"delegatorTokens":9999999913203}},{"ix":165,"action":{"kind":"Delegate","val":3,"amt":2696},"partialState":{"h":17,"t":102,"tokens":[7561,12115,3566,33029],"delegation":[6561,11115,2566,32029],"delegatorTokens":9999999910507}},{"ix":166,"action":{"kind":"Deliver","chain":"provider","numPackets":3},"partialState":{"h":17,"t":102,"tokens":[7561,12115,3566,33029],"delegation":[6561,11115,2566,32029],"delegatorTokens":9999999910507,"jailed":[1000000000000017,1000000000000017,1000000000000017,null],"status":["unbonded","unbonding","unbonded","bonded"]}},{"ix":167,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":168,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":18,"t":108,"tokens":[7561,12115,3566,33029],"delegation":[6561,11115,2566,32029],"delegatorTokens":9999999918474,"jailed":[1000000000000017,1000000000000017,1000000000000017,null],"status":["unbonded","unbonding","unbonded","bonded"]}},{"ix":169,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":19,"t":114,"tokens":[7561,12115,3566,33029],"delegation":[6561,11115,2566,32029],"delegatorTokens":9999999927359,"jailed":[1000000000000017,1000000000000017,1000000000000017,null],"status":["unbonded","unbonded","unbonded","bonded"]}},{"ix":170,"action":{"kind":"Delegate","val":0,"amt":4772},"partialState":{"h":19,"t":114,"tokens":[12333,12115,3566,33029],"delegation":[11333,11115,2566,32029],"delegatorTokens":9999999922587}},{"ix":171,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":22,"t":132,"consumerPower":[null,null,null,15792],"outstandingDowntime":[false,false,false,false]}},{"ix":172,"action":{"kind":"Undelegate","val":2,"amt":3828},"partialState":{"h":19,"t":114,"tokens":[12333,12115,3566,33029],"delegation":[11333,11115,2566,32029],"delegatorTokens":9999999922587}},{"ix":173,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":174,"action":{"kind":"Deliver","chain":"consumer","numPackets":1},"partialState":{"h":22,"t":132,"consumerPower":[null,null,null,15792],"outstandingDowntime":[false,false,false,false]}},{"ix":175,"action":{"kind":"Undelegate","val":3,"amt":1594},"partialState":{"h":19,"t":114,"tokens":[12333,12115,3566,31435],"delegation":[11333,11115,2566,30435],"delegatorTokens":9999999922587}},{"ix":176,"action":{"kind":"Deliver","chain":"consumer","numPackets":2},"partialState":{"h":22,"t":132,"consumerPower":[null,null,null,15792],"outstandingDowntime":[false,false,false,false]}},{"ix":177,"action":{"kind":"Deliver","chain":"consumer","numPackets":6},"partialState":{"h":22,"t":132,"consumerPower":[null,null,null,15792],"outstandingDowntime":[false,false,false,false]}},{"ix":178,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":20,"t":120,"tokens":[12333,12115,3566,31435],"delegation":[11333,11115,2566,30435],"delegatorTokens":9999999922587,"jailed":[1000000000000017,1000000000000017,1000000000000017,null],"status":["unbonded","unbonded","unbonded","bonded"]}},{"ix":179,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":23,"t":138,"consumerPower":[null,null,null,33029],"outstandingDowntime":[false,false,false,false]}},{"ix":180,"action":{"kind":"Undelegate","val":2,"amt":2545},"partialState":{"h":20,"t":120,"tokens":[12333,12115,1021,31435],"delegation":[11333,11115,21,30435],"delegatorTokens":9999999922587}},{"ix":181,"action":{"kind":"Undelegate","val":2,"amt":2569},"partialState":{"h":20,"t":120,"tokens":[12333,12115,1021,31435],"delegation":[11333,11115,21,30435],"delegatorTokens":9999999922587}},{"ix":182,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":21,"t":126,"tokens":[12333,12115,1021,31435],"delegation":[11333,11115,21,30435],"delegatorTokens":9999999922587,"jailed":[1000000000000017,1000000000000017,1000000000000017,null],"status":["unbonded","unbonded","unbonded","bonded"]}},{"ix":183,"action":{"kind":"Deliver","chain":"provider","numPackets":5},"partialState":{"h":21,"t":126,"tokens":[12333,12115,1021,31435],"delegation":[11333,11115,21,30435],"delegatorTokens":9999999922587,"jailed":[1000000000000017,1000000000000017,1000000000000017,null],"status":["unbonded","unbonded","unbonded","bonded"]}},{"ix":184,"action":{"kind":"Undelegate","val":1,"amt":4621},"partialState":{"h":21,"t":126,"tokens":[12333,7494,1021,31435],"delegation":[11333,6494,21,30435],"delegatorTokens":9999999922587}},{"ix":185,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":22,"t":132,"tokens":[12333,7494,1021,31435],"delegation":[11333,6494,21,30435],"delegatorTokens":9999999922587,"jailed":[1000000000000017,1000000000000017,1000000000000017,null],"status":["unbonded","unbonded","unbonded","bonded"]}},{"ix":186,"action":{"kind":"Undelegate","val":1,"amt":1203},"partialState":{"h":22,"t":132,"tokens":[12333,6291,1021,31435],"delegation":[11333,5291,21,30435],"delegatorTokens":9999999922587}},{"ix":187,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":188,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":189,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":23,"t":138,"tokens":[12333,6291,1021,31435],"delegation":[11333,5291,21,30435],"delegatorTokens":9999999922587,"jailed":[1000000000000017,1000000000000017,1000000000000017,null],"status":["unbonded","unbonded","unbonded","bonded"]}},{"ix":190,"action":{"kind":"Undelegate","val":0,"amt":3386},"partialState":{"h":23,"t":138,"tokens":[8947,6291,1021,31435],"delegation":[7947,5291,21,30435],"delegatorTokens":9999999922587}},{"ix":191,"action":{"kind":"Deliver","chain":"consumer","numPackets":2},"partialState":{"h":23,"t":138,"consumerPower":[null,null,null,33029],"outstandingDowntime":[false,false,false,false]}},{"ix":192,"action":{"kind":"Deliver","chain":"consumer","numPackets":4},"partialState":{"h":23,"t":138,"consumerPower":[null,null,null,33029],"outstandingDowntime":[false,false,false,false]}},{"ix":193,"action":{"kind":"Undelegate","val":0,"amt":2983},"partialState":{"h":23,"t":138,"tokens":[5964,6291,1021,31435],"delegation":[4964,5291,21,30435],"delegatorTokens":9999999922587}},{"ix":194,"action":{"kind":"Delegate","val":1,"amt":4908},"partialState":{"h":23,"t":138,"tokens":[5964,11199,1021,31435],"delegation":[4964,10199,21,30435],"delegatorTokens":9999999917679}},{"ix":195,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":24,"t":144,"consumerPower":[null,null,null,31435],"outstandingDowntime":[false,false,false,false]}},{"ix":196,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":24,"t":144,"tokens":[5964,11199,1021,31435],"delegation":[4964,10199,21,30435],"delegatorTokens":9999999917679,"jailed":[1000000000000017,1000000000000017,1000000000000017,null],"status":["unbonded","unbonded","unbonded","bonded"]}},{"ix":197,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":25,"t":150,"tokens":[5964,11199,1021,31435],"delegation":[4964,10199,21,30435],"delegatorTokens":9999999917679,"jailed":[1000000000000017,1000000000000017,1000000000000017,null],"status":["unbonded","unbonded","unbonded","bonded"]}},{"ix":198,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":199,"action":{"kind":"Undelegate","val":1,"amt":1709},"partialState":{"h":25,"t":150,"tokens":[5964,9490,1021,31435],"delegation":[4964,8490,21,30435],"delegatorTokens":9999999917679}}],"events":["insufficient_shares","insufficient_shares","insufficient_shares","insufficient_shares","insufficient_shares","more_than_one_third_val_power_change","send_vsc_without_downtime_ack","send_downtime_slash_request","send_downtime_slash_request","send_downtime_slash_request","more_than_one_third_val_power_change","send_vsc_without_downtime_ack","consumer_update_val","consumer_del_val","consumer_add_val","more_than_one_third_val_power_change","rebond_unval","receive_downtime_slash_request","jail","receive_downtime_slash_request","jail","receive_downtime_slash_request","jail","send_vsc_with_downtime_ack","send_vsc_without_downtime_ack","receive_downtime_slash_ack","receive_downtime_slash_ack","receive_downtime_slash_ack","send_vsc_not_because_change","send_vsc_without_downtime_ack","consumer_del_val","consumer_del_val","consumer_add_val","consumer_add_val","insufficient_shares","send_vsc_without_downtime_ack","insufficient_shares","consumer_del_val","consumer_update_val","send_vsc_without_downtime_ack","send_vsc_without_downtime_ack","consumer_send_maturation","consumer_update_val","consumer_send_maturation","consumer_send_maturation","insufficient_shares","set_undel_hold_false","set_undel_hold_false","set_undel_hold_false","set_undel_hold_false","set_unval_hold_false","set_undel_hold_false","set_undel_hold_false","set_undel_hold_false","set_unval_hold_false","send_vsc_without_downtime_ack","insufficient_shares","send_vsc_not_because_change","send_vsc_without_downtime_ack","complete_undel_in_endblock","complete_unval_in_endblock","complete_undel_in_endblock","send_vsc_not_because_change","send_vsc_without_downtime_ack","complete_unval_in_endblock","complete_undel_in_endblock","consumer_send_maturation","consumer_send_maturation","consumer_send_maturation","some_undels_expired_but_not_completed","send_vsc_without_downtime_ack","some_undels_expired_but_not_completed","complete_undel_immediate","set_unval_hold_false","complete_undel_immediate","complete_undel_immediate","set_undel_hold_false","set_undel_hold_false","set_undel_hold_false","send_vsc_without_downtime_ack","complete_unval_in_endblock","complete_undel_in_endblock","insufficient_shares","send_vsc_without_downtime_ack","consumer_send_maturation","consumer_update_val","insufficient_shares","send_vsc_not_because_change","send_vsc_without_downtime_ack","some_undels_expired_but_not_completed","send_vsc_not_because_change","send_vsc_without_downtime_ack","some_undels_expired_but_not_completed","send_vsc_not_because_change","send_vsc_without_downtime_ack","consumer_update_val","some_undels_expired_but_not_completed","send_vsc_not_because_change","send_vsc_without_downtime_ack","some_undels_expired_but_not_completed"]},{"meta":{"commit":"7ffd0c04e4205cbc9caf212abfe6c59ee43153bf"},"constants":{"P":"provider","C":"consumer","UNBONDING_SECONDS_P":70,"UNBONDING_SECONDS_C":50,"TRUSTING_SECONDS":49,"NUM_VALIDATORS":4,"MAX_VALIDATORS":2,"SLASH_DOUBLESIGN":0,"SLASH_DOWNTIME":0,"JAIL_SECONDS":999999999999999,"BLOCK_SECONDS":6,"INITIAL_DELEGATOR_TOKENS":10000000000000,"DELEGATE_AMT_MIN":1000,"DELEGATE_AMT_MAX":5000,"UNDELEGATE_AMT_MIN":1000,"UNDELEGATE_AMT_MAX":5000,"ISDOWNTIME_PROBABILITY":0.5,"MAX_NUM_PACKETS_FOR_DELIVER":6},"actions":[{"ix":0,"action":{"kind":"ConsumerSlash","val":1,"infractionHeight":0,"isDowntime":true},"partialState":{"h":1,"t":6,"outstandingDowntime":[false,true,false,false]}},{"ix":1,"action":{"kind":"Delegate","val":2,"amt":3238},"partialState":{"h":1,"t":6,"tokens":[5000,4000,6238,2000],"delegation":[4000,3000,5238,1000],"delegatorTokens":9999999996762}},{"ix":2,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":2,"t":12,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,true,false,false]}},{"ix":3,"action":{"kind":"Deliver","chain":"provider","numPackets":6},"partialState":{"h":1,"t":6,"tokens":[5000,4000,6238,2000],"delegation":[4000,3000,5238,1000],"delegatorTokens":9999999996762,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":4,"action":{"kind":"Deliver","chain":"consumer","numPackets":6},"partialState":{"h":2,"t":12,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,true,false,false]}},{"ix":5,"action":{"kind":"Undelegate","val":3,"amt":2043},"partialState":{"h":1,"t":6,"tokens":[5000,4000,6238,2000],"delegation":[4000,3000,5238,1000],"delegatorTokens":9999999996762}},{"ix":6,"action":{"kind":"ConsumerSlash","val":1,"infractionHeight":0,"isDowntime":true},"partialState":{"h":2,"t":12,"outstandingDowntime":[false,true,false,false]}},{"ix":7,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":8,"action":{"kind":"Deliver","chain":"provider","numPackets":5},"partialState":{"h":1,"t":6,"tokens":[5000,4000,6238,2000],"delegation":[4000,3000,5238,1000],"delegatorTokens":9999999996762,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":9,"action":{"kind":"Delegate","val":2,"amt":1087},"partialState":{"h":1,"t":6,"tokens":[5000,4000,7325,2000],"delegation":[4000,3000,6325,1000],"delegatorTokens":9999999995675}},{"ix":10,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":3,"t":18,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,true,false,false]}},{"ix":11,"action":{"kind":"Delegate","val":1,"amt":3482},"partialState":{"h":1,"t":6,"tokens":[5000,7482,7325,2000],"delegation":[4000,6482,6325,1000],"delegatorTokens":9999999992193}},{"ix":12,"action":{"kind":"Delegate","val":3,"amt":1235},"partialState":{"h":1,"t":6,"tokens":[5000,7482,7325,3235],"delegation":[4000,6482,6325,2235],"delegatorTokens":9999999990958}},{"ix":13,"action":{"kind":"ConsumerSlash","val":1,"infractionHeight":0,"isDowntime":false},"partialState":{"h":3,"t":18,"outstandingDowntime":[false,true,false,false]}},{"ix":14,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":15,"action":{"kind":"Deliver","chain":"consumer","numPackets":3},"partialState":{"h":3,"t":18,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,true,false,false]}},{"ix":16,"action":{"kind":"Delegate","val":3,"amt":3304},"partialState":{"h":1,"t":6,"tokens":[5000,7482,7325,6539],"delegation":[4000,6482,6325,5539],"delegatorTokens":9999999987654}},{"ix":17,"action":{"kind":"Delegate","val":2,"amt":4336},"partialState":{"h":1,"t":6,"tokens":[5000,7482,11661,6539],"delegation":[4000,6482,10661,5539],"delegatorTokens":9999999983318}},{"ix":18,"action":{"kind":"Undelegate","val":3,"amt":3252},"partialState":{"h":1,"t":6,"tokens":[5000,7482,11661,3287],"delegation":[4000,6482,10661,2287],"delegatorTokens":9999999983318}},{"ix":19,"action":{"kind":"Deliver","chain":"provider","numPackets":3},"partialState":{"h":1,"t":6,"tokens":[5000,7482,11661,3287],"delegation":[4000,6482,10661,2287],"delegatorTokens":9999999983318,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":20,"action":{"kind":"Undelegate","val":1,"amt":2124},"partialState":{"h":1,"t":6,"tokens":[5000,5358,11661,3287],"delegation":[4000,4358,10661,2287],"delegatorTokens":9999999983318}},{"ix":21,"action":{"kind":"Deliver","chain":"consumer","numPackets":5},"partialState":{"h":3,"t":18,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,true,false,false]}},{"ix":22,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":2,"t":12,"tokens":[5000,5358,11661,3287],"delegation":[4000,4358,10661,2287],"delegatorTokens":9999999983318,"jailed":[null,1000000000000005,null,null],"status":["unbonding","bonded","bonded","unbonded"]}},{"ix":23,"action":{"kind":"Undelegate","val":3,"amt":1450},"partialState":{"h":2,"t":12,"tokens":[5000,5358,11661,1837],"delegation":[4000,4358,10661,837],"delegatorTokens":9999999983318}},{"ix":24,"action":{"kind":"ConsumerSlash","val":3,"infractionHeight":1,"isDowntime":true},"partialState":{"h":3,"t":18,"outstandingDowntime":[false,true,false,true]}},{"ix":25,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":26,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":27,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":3,"t":18,"tokens":[5000,5358,11661,1837],"delegation":[4000,4358,10661,837],"delegatorTokens":9999999983318,"jailed":[null,1000000000000005,null,null],"status":["bonded","unbonding","bonded","unbonded"]}},{"ix":28,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":4,"t":24,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,true,false,true]}},{"ix":29,"action":{"kind":"Deliver","chain":"provider","numPackets":4},"partialState":{"h":3,"t":18,"tokens":[5000,5358,11661,1837],"delegation":[4000,4358,10661,837],"delegatorTokens":9999999983318,"jailed":[null,1000000000000005,null,null],"status":["bonded","unbonding","bonded","unbonded"]}},{"ix":30,"action":{"kind":"Deliver","chain":"consumer","numPackets":5},"partialState":{"h":4,"t":24,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,false,false,true]}},{"ix":31,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":32,"action":{"kind":"ConsumerSlash","val":1,"infractionHeight":3,"isDowntime":true},"partialState":{"h":4,"t":24,"outstandingDowntime":[false,true,false,true]}},{"ix":33,"action":{"kind":"ConsumerSlash","val":3,"infractionHeight":2,"isDowntime":true},"partialState":{"h":4,"t":24,"outstandingDowntime":[false,true,false,true]}},{"ix":34,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":5,"t":30,"consumerPower":[null,5358,11661,null],"outstandingDowntime":[false,true,false,true]}},{"ix":35,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":36,"action":{"kind":"ConsumerSlash","val":1,"infractionHeight":3,"isDowntime":false},"partialState":{"h":5,"t":30,"outstandingDowntime":[false,true,false,true]}},{"ix":37,"action":{"kind":"Undelegate","val":0,"amt":2144},"partialState":{"h":3,"t":18,"tokens":[2856,5358,11661,1837],"delegation":[1856,4358,10661,837],"delegatorTokens":9999999983318}},{"ix":38,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":39,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":40,"action":{"kind":"Delegate","val":0,"amt":1436},"partialState":{"h":3,"t":18,"tokens":[4292,5358,11661,1837],"delegation":[3292,4358,10661,837],"delegatorTokens":9999999981882}},{"ix":41,"action":{"kind":"ConsumerSlash","val":0,"infractionHeight":2,"isDowntime":true},"partialState":{"h":5,"t":30,"outstandingDowntime":[true,true,false,true]}},{"ix":42,"action":{"kind":"Deliver","chain":"provider","numPackets":5},"partialState":{"h":3,"t":18,"tokens":[4292,5358,11661,1837],"delegation":[3292,4358,10661,837],"delegatorTokens":9999999981882,"jailed":[null,1000000000000005,null,null],"status":["bonded","unbonding","bonded","unbonded"]}},{"ix":43,"action":{"kind":"Deliver","chain":"provider","numPackets":4},"partialState":{"h":3,"t":18,"tokens":[4292,5358,11661,1837],"delegation":[3292,4358,10661,837],"delegatorTokens":9999999981882,"jailed":[null,1000000000000005,null,null],"status":["bonded","unbonding","bonded","unbonded"]}},{"ix":44,"action":{"kind":"Undelegate","val":3,"amt":4690},"partialState":{"h":3,"t":18,"tokens":[4292,5358,11661,1837],"delegation":[3292,4358,10661,837],"delegatorTokens":9999999981882}},{"ix":45,"action":{"kind":"Delegate","val":0,"amt":2771},"partialState":{"h":3,"t":18,"tokens":[7063,5358,11661,1837],"delegation":[6063,4358,10661,837],"delegatorTokens":9999999979111}},{"ix":46,"action":{"kind":"Delegate","val":1,"amt":1545},"partialState":{"h":3,"t":18,"tokens":[7063,6903,11661,1837],"delegation":[6063,5903,10661,837],"delegatorTokens":9999999977566}},{"ix":47,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":48,"action":{"kind":"Deliver","chain":"consumer","numPackets":2},"partialState":{"h":5,"t":30,"consumerPower":[null,5358,11661,null],"outstandingDowntime":[true,true,false,true]}},{"ix":49,"action":{"kind":"Undelegate","val":0,"amt":2054},"partialState":{"h":3,"t":18,"tokens":[5009,6903,11661,1837],"delegation":[4009,5903,10661,837],"delegatorTokens":9999999977566}},{"ix":50,"action":{"kind":"Delegate","val":3,"amt":4286},"partialState":{"h":3,"t":18,"tokens":[5009,6903,11661,6123],"delegation":[4009,5903,10661,5123],"delegatorTokens":9999999973280}},{"ix":51,"action":{"kind":"Delegate","val":3,"amt":1979},"partialState":{"h":3,"t":18,"tokens":[5009,6903,11661,8102],"delegation":[4009,5903,10661,7102],"delegatorTokens":9999999971301}},{"ix":52,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":4,"t":24,"tokens":[5009,6903,11661,8102],"delegation":[4009,5903,10661,7102],"delegatorTokens":9999999971301,"jailed":[null,1000000000000005,null,1000000000000017],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":53,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":54,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":55,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":56,"action":{"kind":"Undelegate","val":1,"amt":3704},"partialState":{"h":4,"t":24,"tokens":[5009,3199,11661,8102],"delegation":[4009,2199,10661,7102],"delegatorTokens":9999999971301}},{"ix":57,"action":{"kind":"Delegate","val":0,"amt":2334},"partialState":{"h":4,"t":24,"tokens":[7343,3199,11661,8102],"delegation":[6343,2199,10661,7102],"delegatorTokens":9999999968967}},{"ix":58,"action":{"kind":"Deliver","chain":"provider","numPackets":3},"partialState":{"h":4,"t":24,"tokens":[7343,3199,11661,8102],"delegation":[6343,2199,10661,7102],"delegatorTokens":9999999968967,"jailed":[null,1000000000000005,null,1000000000000017],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":59,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":6,"t":36,"consumerPower":[null,5358,11661,null],"outstandingDowntime":[true,true,false,true]}},{"ix":60,"action":{"kind":"Undelegate","val":3,"amt":1102},"partialState":{"h":4,"t":24,"tokens":[7343,3199,11661,7000],"delegation":[6343,2199,10661,6000],"delegatorTokens":9999999968967}},{"ix":61,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":62,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":63,"action":{"kind":"Deliver","chain":"consumer","numPackets":1},"partialState":{"h":6,"t":36,"consumerPower":[null,5358,11661,null],"outstandingDowntime":[true,true,false,true]}},{"ix":64,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":65,"action":{"kind":"Delegate","val":1,"amt":1904},"partialState":{"h":4,"t":24,"tokens":[7343,5103,11661,7000],"delegation":[6343,4103,10661,6000],"delegatorTokens":9999999967063}},{"ix":66,"action":{"kind":"Deliver","chain":"consumer","numPackets":1},"partialState":{"h":6,"t":36,"consumerPower":[null,5358,11661,null],"outstandingDowntime":[true,true,false,true]}},{"ix":67,"action":{"kind":"Delegate","val":0,"amt":4679},"partialState":{"h":4,"t":24,"tokens":[12022,5103,11661,7000],"delegation":[11022,4103,10661,6000],"delegatorTokens":9999999962384}},{"ix":68,"action":{"kind":"Deliver","chain":"consumer","numPackets":2},"partialState":{"h":6,"t":36,"consumerPower":[null,5358,11661,null],"outstandingDowntime":[true,true,false,true]}},{"ix":69,"action":{"kind":"Undelegate","val":1,"amt":1194},"partialState":{"h":4,"t":24,"tokens":[12022,3909,11661,7000],"delegation":[11022,2909,10661,6000],"delegatorTokens":9999999962384}},{"ix":70,"action":{"kind":"Delegate","val":0,"amt":3221},"partialState":{"h":4,"t":24,"tokens":[15243,3909,11661,7000],"delegation":[14243,2909,10661,6000],"delegatorTokens":9999999959163}},{"ix":71,"action":{"kind":"Delegate","val":1,"amt":1333},"partialState":{"h":4,"t":24,"tokens":[15243,5242,11661,7000],"delegation":[14243,4242,10661,6000],"delegatorTokens":9999999957830}},{"ix":72,"action":{"kind":"Undelegate","val":0,"amt":3270},"partialState":{"h":4,"t":24,"tokens":[11973,5242,11661,7000],"delegation":[10973,4242,10661,6000],"delegatorTokens":9999999957830}},{"ix":73,"action":{"kind":"Deliver","chain":"provider","numPackets":6},"partialState":{"h":4,"t":24,"tokens":[11973,5242,11661,7000],"delegation":[10973,4242,10661,6000],"delegatorTokens":9999999957830,"jailed":[null,1000000000000005,null,1000000000000017],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":74,"action":{"kind":"Delegate","val":0,"amt":1858},"partialState":{"h":4,"t":24,"tokens":[13831,5242,11661,7000],"delegation":[12831,4242,10661,6000],"delegatorTokens":9999999955972}},{"ix":75,"action":{"kind":"Delegate","val":3,"amt":3972},"partialState":{"h":4,"t":24,"tokens":[13831,5242,11661,10972],"delegation":[12831,4242,10661,9972],"delegatorTokens":9999999952000}},{"ix":76,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":77,"action":{"kind":"Deliver","chain":"consumer","numPackets":4},"partialState":{"h":6,"t":36,"consumerPower":[null,5358,11661,null],"outstandingDowntime":[true,true,false,true]}},{"ix":78,"action":{"kind":"Deliver","chain":"consumer","numPackets":3},"partialState":{"h":6,"t":36,"consumerPower":[null,5358,11661,null],"outstandingDowntime":[true,true,false,true]}},{"ix":79,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":80,"action":{"kind":"Delegate","val":3,"amt":3354},"partialState":{"h":4,"t":24,"tokens":[13831,5242,11661,14326],"delegation":[12831,4242,10661,13326],"delegatorTokens":9999999948646}},{"ix":81,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":5,"t":30,"tokens":[13831,5242,11661,14326],"delegation":[12831,4242,10661,13326],"delegatorTokens":9999999948646,"jailed":[null,1000000000000023,null,1000000000000017],"status":["bonded","unbonding","bonded","unbonding"]}},{"ix":82,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":7,"t":42,"consumerPower":[5000,null,11661,null],"outstandingDowntime":[true,true,false,true]}},{"ix":83,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":84,"action":{"kind":"Delegate","val":3,"amt":4785},"partialState":{"h":5,"t":30,"tokens":[13831,5242,11661,19111],"delegation":[12831,4242,10661,18111],"delegatorTokens":9999999943861}},{"ix":85,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":8,"t":48,"consumerPower":[5000,null,11661,null],"outstandingDowntime":[true,true,false,true]}},{"ix":86,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":87,"action":{"kind":"Deliver","chain":"consumer","numPackets":6},"partialState":{"h":8,"t":48,"consumerPower":[5000,null,11661,null],"outstandingDowntime":[true,true,false,false]}},{"ix":88,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":9,"t":54,"consumerPower":[null,null,11661,8102],"outstandingDowntime":[true,true,false,false]}},{"ix":89,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":10,"t":60,"consumerPower":[null,null,11661,8102],"outstandingDowntime":[true,true,false,false]}},{"ix":90,"action":{"kind":"Deliver","chain":"provider","numPackets":2},"partialState":{"h":5,"t":30,"tokens":[13831,5242,11661,19111],"delegation":[12831,4242,10661,18111],"delegatorTokens":9999999943861,"jailed":[null,1000000000000023,null,1000000000000017],"status":["bonded","unbonding","bonded","unbonding"]}},{"ix":91,"action":{"kind":"Deliver","chain":"consumer","numPackets":5},"partialState":{"h":10,"t":60,"consumerPower":[null,null,11661,8102],"outstandingDowntime":[true,true,false,false]}},{"ix":92,"action":{"kind":"Deliver","chain":"provider","numPackets":2},"partialState":{"h":5,"t":30,"tokens":[13831,5242,11661,19111],"delegation":[12831,4242,10661,18111],"delegatorTokens":9999999943861,"jailed":[null,1000000000000023,null,1000000000000017],"status":["bonded","unbonding","bonded","unbonding"]}},{"ix":93,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":11,"t":66,"consumerPower":[null,null,11661,8102],"outstandingDowntime":[true,true,false,false]}},{"ix":94,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":6,"t":36,"tokens":[13831,5242,11661,19111],"delegation":[12831,4242,10661,18111],"delegatorTokens":9999999943861,"jailed":[1000000000000029,1000000000000023,null,1000000000000017],"status":["bonded","unbonding","bonded","unbonding"]}},{"ix":95,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":96,"action":{"kind":"Undelegate","val":1,"amt":4454},"partialState":{"h":6,"t":36,"tokens":[13831,5242,11661,19111],"delegation":[12831,4242,10661,18111],"delegatorTokens":9999999943861}},{"ix":97,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":12,"t":72,"consumerPower":[null,null,11661,8102],"outstandingDowntime":[true,true,false,false]}},{"ix":98,"action":{"kind":"Delegate","val":1,"amt":3848},"partialState":{"h":6,"t":36,"tokens":[13831,9090,11661,19111],"delegation":[12831,8090,10661,18111],"delegatorTokens":9999999940013}},{"ix":99,"action":{"kind":"Undelegate","val":2,"amt":1222},"partialState":{"h":6,"t":36,"tokens":[13831,9090,10439,19111],"delegation":[12831,8090,9439,18111],"delegatorTokens":9999999940013}},{"ix":100,"action":{"kind":"Undelegate","val":2,"amt":4752},"partialState":{"h":6,"t":36,"tokens":[13831,9090,5687,19111],"delegation":[12831,8090,4687,18111],"delegatorTokens":9999999940013}},{"ix":101,"action":{"kind":"Deliver","chain":"consumer","numPackets":3},"partialState":{"h":12,"t":72,"consumerPower":[null,null,11661,8102],"outstandingDowntime":[true,false,false,false]}},{"ix":102,"action":{"kind":"Undelegate","val":0,"amt":4409},"partialState":{"h":6,"t":36,"tokens":[9422,9090,5687,19111],"delegation":[8422,8090,4687,18111],"delegatorTokens":9999999940013}},{"ix":103,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":104,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":7,"t":42,"tokens":[9422,9090,5687,19111],"delegation":[8422,8090,4687,18111],"delegatorTokens":9999999940013,"jailed":[1000000000000029,1000000000000023,null,1000000000000017],"status":["unbonding","unbonding","bonded","unbonding"]}},{"ix":105,"action":{"kind":"Deliver","chain":"consumer","numPackets":3},"partialState":{"h":12,"t":72,"consumerPower":[null,null,11661,8102],"outstandingDowntime":[true,false,false,false]}},{"ix":106,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":13,"t":78,"consumerPower":[13831,null,11661,null],"outstandingDowntime":[true,false,false,false]}},{"ix":107,"action":{"kind":"Undelegate","val":0,"amt":3336},"partialState":{"h":7,"t":42,"tokens":[6086,9090,5687,19111],"delegation":[5086,8090,4687,18111],"delegatorTokens":9999999940013}},{"ix":108,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":14,"t":84,"consumerPower":[13831,null,11661,null],"outstandingDowntime":[true,false,false,false]}},{"ix":109,"action":{"kind":"Deliver","chain":"provider","numPackets":2},"partialState":{"h":7,"t":42,"tokens":[6086,9090,5687,19111],"delegation":[5086,8090,4687,18111],"delegatorTokens":9999999940013,"jailed":[1000000000000029,1000000000000023,null,1000000000000017],"status":["unbonding","unbonding","bonded","unbonding"]}},{"ix":110,"action":{"kind":"Delegate","val":1,"amt":4377},"partialState":{"h":7,"t":42,"tokens":[6086,13467,5687,19111],"delegation":[5086,12467,4687,18111],"delegatorTokens":9999999935636}},{"ix":111,"action":{"kind":"Deliver","chain":"provider","numPackets":2},"partialState":{"h":7,"t":42,"tokens":[6086,13467,5687,19111],"delegation":[5086,12467,4687,18111],"delegatorTokens":9999999935636,"jailed":[1000000000000029,1000000000000023,null,1000000000000017],"status":["unbonding","unbonding","bonded","unbonding"]}},{"ix":112,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":113,"action":{"kind":"Delegate","val":3,"amt":1707},"partialState":{"h":7,"t":42,"tokens":[6086,13467,5687,20818],"delegation":[5086,12467,4687,19818],"delegatorTokens":9999999933929}},{"ix":114,"action":{"kind":"Deliver","chain":"provider","numPackets":6},"partialState":{"h":7,"t":42,"tokens":[6086,13467,5687,20818],"delegation":[5086,12467,4687,19818],"delegatorTokens":9999999933929,"jailed":[1000000000000029,1000000000000023,null,1000000000000017],"status":["unbonding","unbonding","bonded","unbonding"]}},{"ix":115,"action":{"kind":"Deliver","chain":"consumer","numPackets":1},"partialState":{"h":14,"t":84,"consumerPower":[13831,null,11661,null],"outstandingDowntime":[true,false,false,false]}},{"ix":116,"action":{"kind":"Delegate","val":0,"amt":4083},"partialState":{"h":7,"t":42,"tokens":[10169,13467,5687,20818],"delegation":[9169,12467,4687,19818],"delegatorTokens":9999999929846}},{"ix":117,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":118,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":8,"t":48,"tokens":[10169,13467,5687,20818],"delegation":[9169,12467,4687,19818],"delegatorTokens":9999999929846,"jailed":[1000000000000029,1000000000000023,null,1000000000000017],"status":["unbonding","unbonding","bonded","unbonding"]}},{"ix":119,"action":{"kind":"Deliver","chain":"provider","numPackets":2},"partialState":{"h":8,"t":48,"tokens":[10169,13467,5687,20818],"delegation":[9169,12467,4687,19818],"delegatorTokens":9999999929846,"jailed":[1000000000000029,1000000000000023,null,1000000000000017],"status":["unbonding","unbonding","bonded","unbonding"]}},{"ix":120,"action":{"kind":"Delegate","val":3,"amt":3632},"partialState":{"h":8,"t":48,"tokens":[10169,13467,5687,24450],"delegation":[9169,12467,4687,23450],"delegatorTokens":9999999926214}},{"ix":121,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":122,"action":{"kind":"Undelegate","val":2,"amt":1941},"partialState":{"h":8,"t":48,"tokens":[10169,13467,3746,24450],"delegation":[9169,12467,2746,23450],"delegatorTokens":9999999926214}},{"ix":123,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":124,"action":{"kind":"Undelegate","val":3,"amt":4885},"partialState":{"h":8,"t":48,"tokens":[10169,13467,3746,19565],"delegation":[9169,12467,2746,18565],"delegatorTokens":9999999926214}},{"ix":125,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":9,"t":54,"tokens":[10169,13467,3746,19565],"delegation":[9169,12467,2746,18565],"delegatorTokens":9999999926214,"jailed":[1000000000000029,1000000000000023,null,1000000000000017],"status":["unbonding","unbonding","bonded","unbonding"]}},{"ix":126,"action":{"kind":"Undelegate","val":0,"amt":3748},"partialState":{"h":9,"t":54,"tokens":[6421,13467,3746,19565],"delegation":[5421,12467,2746,18565],"delegatorTokens":9999999926214}},{"ix":127,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":10,"t":60,"tokens":[6421,13467,3746,19565],"delegation":[5421,12467,2746,18565],"delegatorTokens":9999999926214,"jailed":[1000000000000029,1000000000000023,null,1000000000000017],"status":["unbonding","unbonding","bonded","unbonding"]}},{"ix":128,"action":{"kind":"Delegate","val":0,"amt":2296},"partialState":{"h":10,"t":60,"tokens":[8717,13467,3746,19565],"delegation":[7717,12467,2746,18565],"delegatorTokens":9999999923918}},{"ix":129,"action":{"kind":"Deliver","chain":"provider","numPackets":5},"partialState":{"h":10,"t":60,"tokens":[8717,13467,3746,19565],"delegation":[7717,12467,2746,18565],"delegatorTokens":9999999923918,"jailed":[1000000000000029,1000000000000023,null,1000000000000017],"status":["unbonding","unbonding","bonded","unbonding"]}},{"ix":130,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":131,"action":{"kind":"Deliver","chain":"provider","numPackets":4},"partialState":{"h":10,"t":60,"tokens":[8717,13467,3746,19565],"delegation":[7717,12467,2746,18565],"delegatorTokens":9999999923918,"jailed":[1000000000000029,1000000000000023,null,1000000000000017],"status":["unbonding","unbonding","bonded","unbonding"]}},{"ix":132,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":11,"t":66,"tokens":[8717,13467,3746,19565],"delegation":[7717,12467,2746,18565],"delegatorTokens":9999999923918,"jailed":[1000000000000029,1000000000000023,null,1000000000000017],"status":["unbonding","unbonding","bonded","unbonding"]}},{"ix":133,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":134,"action":{"kind":"Delegate","val":1,"amt":2091},"partialState":{"h":11,"t":66,"tokens":[8717,15558,3746,19565],"delegation":[7717,14558,2746,18565],"delegatorTokens":9999999921827}},{"ix":135,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":15,"t":90,"consumerPower":[13831,null,11661,null],"outstandingDowntime":[true,false,false,false]}},{"ix":136,"action":{"kind":"Undelegate","val":1,"amt":3433},"partialState":{"h":11,"t":66,"tokens":[8717,12125,3746,19565],"delegation":[7717,11125,2746,18565],"delegatorTokens":9999999921827}},{"ix":137,"action":{"kind":"Deliver","chain":"consumer","numPackets":5},"partialState":{"h":15,"t":90,"consumerPower":[13831,null,11661,null],"outstandingDowntime":[false,false,false,false]}},{"ix":138,"action":{"kind":"Deliver","chain":"provider","numPackets":3},"partialState":{"h":11,"t":66,"tokens":[8717,12125,3746,19565],"delegation":[7717,11125,2746,18565],"delegatorTokens":9999999921827,"jailed":[1000000000000029,1000000000000023,null,1000000000000017],"status":["unbonding","unbonding","bonded","unbonding"]}},{"ix":139,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":140,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":16,"t":96,"consumerPower":[null,null,3746,null],"outstandingDowntime":[false,false,false,false]}},{"ix":141,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":142,"action":{"kind":"Undelegate","val":2,"amt":3122},"partialState":{"h":11,"t":66,"tokens":[8717,12125,3746,19565],"delegation":[7717,11125,2746,18565],"delegatorTokens":9999999921827}},{"ix":143,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":12,"t":72,"tokens":[8717,12125,3746,19565],"delegation":[7717,11125,2746,18565],"delegatorTokens":9999999921827,"jailed":[1000000000000029,1000000000000023,null,1000000000000017],"status":["unbonding","unbonding","bonded","unbonding"]}},{"ix":144,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":13,"t":78,"tokens":[8717,12125,3746,19565],"delegation":[7717,11125,2746,18565],"delegatorTokens":9999999921827,"jailed":[1000000000000029,1000000000000023,null,1000000000000017],"status":["unbonding","unbonding","bonded","unbonding"]}},{"ix":145,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":14,"t":84,"tokens":[8717,12125,3746,19565],"delegation":[7717,11125,2746,18565],"delegatorTokens":9999999927203,"jailed":[1000000000000029,1000000000000023,null,1000000000000017],"status":["unbonding","unbonding","bonded","unbonding"]}},{"ix":146,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":15,"t":90,"tokens":[8717,12125,3746,19565],"delegation":[7717,11125,2746,18565],"delegatorTokens":9999999927203,"jailed":[1000000000000029,1000000000000023,null,1000000000000017],"status":["unbonding","unbonding","bonded","unbonding"]}},{"ix":147,"action":{"kind":"Delegate","val":0,"amt":2111},"partialState":{"h":15,"t":90,"tokens":[10828,12125,3746,19565],"delegation":[9828,11125,2746,18565],"delegatorTokens":9999999925092}},{"ix":148,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":149,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":17,"t":102,"consumerPower":[null,null,3746,null],"outstandingDowntime":[false,false,false,false]}},{"ix":150,"action":{"kind":"Delegate","val":2,"amt":3872},"partialState":{"h":15,"t":90,"tokens":[10828,12125,7618,19565],"delegation":[9828,11125,6618,18565],"delegatorTokens":9999999921220}},{"ix":151,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":152,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":18,"t":108,"consumerPower":[null,null,3746,null],"outstandingDowntime":[false,false,false,false]}},{"ix":153,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":19,"t":114,"consumerPower":[null,null,3746,null],"outstandingDowntime":[false,false,false,false]}},{"ix":154,"action":{"kind":"Delegate","val":2,"amt":1680},"partialState":{"h":15,"t":90,"tokens":[10828,12125,9298,19565],"delegation":[9828,11125,8298,18565],"delegatorTokens":9999999919540}},{"ix":155,"action":{"kind":"Deliver","chain":"provider","numPackets":1},"partialState":{"h":15,"t":90,"tokens":[10828,12125,9298,19565],"delegation":[9828,11125,8298,18565],"delegatorTokens":9999999919540,"jailed":[1000000000000029,1000000000000023,null,1000000000000017],"status":["unbonding","unbonding","bonded","unbonding"]}},{"ix":156,"action":{"kind":"Delegate","val":1,"amt":3570},"partialState":{"h":15,"t":90,"tokens":[10828,15695,9298,19565],"delegation":[9828,14695,8298,18565],"delegatorTokens":9999999915970}},{"ix":157,"action":{"kind":"Delegate","val":3,"amt":3530},"partialState":{"h":15,"t":90,"tokens":[10828,15695,9298,23095],"delegation":[9828,14695,8298,22095],"delegatorTokens":9999999912440}},{"ix":158,"action":{"kind":"Undelegate","val":2,"amt":1604},"partialState":{"h":15,"t":90,"tokens":[10828,15695,7694,23095],"delegation":[9828,14695,6694,22095],"delegatorTokens":9999999912440}},{"ix":159,"action":{"kind":"Delegate","val":2,"amt":4591},"partialState":{"h":15,"t":90,"tokens":[10828,15695,12285,23095],"delegation":[9828,14695,11285,22095],"delegatorTokens":9999999907849}},{"ix":160,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":20,"t":120,"consumerPower":[null,null,3746,null],"outstandingDowntime":[false,false,false,false]}},{"ix":161,"action":{"kind":"Undelegate","val":2,"amt":4170},"partialState":{"h":15,"t":90,"tokens":[10828,15695,8115,23095],"delegation":[9828,14695,7115,22095],"delegatorTokens":9999999907849}},{"ix":162,"action":{"kind":"Deliver","chain":"provider","numPackets":4},"partialState":{"h":15,"t":90,"tokens":[10828,15695,8115,23095],"delegation":[9828,14695,7115,22095],"delegatorTokens":9999999907849,"jailed":[1000000000000029,1000000000000023,null,1000000000000017],"status":["unbonding","unbonding","bonded","unbonding"]}},{"ix":163,"action":{"kind":"Undelegate","val":3,"amt":3165},"partialState":{"h":15,"t":90,"tokens":[10828,15695,8115,19930],"delegation":[9828,14695,7115,18930],"delegatorTokens":9999999907849}},{"ix":164,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":21,"t":126,"consumerPower":[null,null,3746,null],"outstandingDowntime":[false,false,false,false]}},{"ix":165,"action":{"kind":"Delegate","val":2,"amt":4929},"partialState":{"h":15,"t":90,"tokens":[10828,15695,13044,19930],"delegation":[9828,14695,12044,18930],"delegatorTokens":9999999902920}},{"ix":166,"action":{"kind":"Deliver","chain":"consumer","numPackets":2},"partialState":{"h":21,"t":126,"consumerPower":[null,null,3746,null],"outstandingDowntime":[false,false,false,false]}},{"ix":167,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":22,"t":132,"consumerPower":[null,null,3746,null],"outstandingDowntime":[false,false,false,false]}},{"ix":168,"action":{"kind":"Delegate","val":1,"amt":3735},"partialState":{"h":15,"t":90,"tokens":[10828,19430,13044,19930],"delegation":[9828,18430,12044,18930],"delegatorTokens":9999999899185}},{"ix":169,"action":{"kind":"Undelegate","val":3,"amt":1518},"partialState":{"h":15,"t":90,"tokens":[10828,19430,13044,18412],"delegation":[9828,18430,12044,17412],"delegatorTokens":9999999899185}},{"ix":170,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":16,"t":96,"tokens":[10828,19430,13044,18412],"delegation":[9828,18430,12044,17412],"delegatorTokens":9999999904833,"jailed":[1000000000000029,1000000000000023,null,1000000000000017],"status":["unbonding","unbonding","bonded","unbonding"]}},{"ix":171,"action":{"kind":"Undelegate","val":1,"amt":4043},"partialState":{"h":16,"t":96,"tokens":[10828,15387,13044,18412],"delegation":[9828,14387,12044,17412],"delegatorTokens":9999999904833}},{"ix":172,"action":{"kind":"Deliver","chain":"consumer","numPackets":3},"partialState":{"h":22,"t":132,"consumerPower":[null,null,3746,null],"outstandingDowntime":[false,false,false,false]}},{"ix":173,"action":{"kind":"Undelegate","val":0,"amt":1198},"partialState":{"h":16,"t":96,"tokens":[9630,15387,13044,18412],"delegation":[8630,14387,12044,17412],"delegatorTokens":9999999904833}},{"ix":174,"action":{"kind":"Deliver","chain":"provider","numPackets":3},"partialState":{"h":16,"t":96,"tokens":[9630,15387,13044,18412],"delegation":[8630,14387,12044,17412],"delegatorTokens":9999999904833,"jailed":[1000000000000029,1000000000000023,null,1000000000000017],"status":["unbonding","unbonding","bonded","unbonding"]}},{"ix":175,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":17,"t":102,"tokens":[9630,15387,13044,18412],"delegation":[8630,14387,12044,17412],"delegatorTokens":9999999904833,"jailed":[1000000000000029,1000000000000023,null,1000000000000017],"status":["unbonding","unbonded","bonded","unbonding"]}},{"ix":176,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":23,"t":138,"consumerPower":[null,null,3746,null],"outstandingDowntime":[false,false,false,false]}},{"ix":177,"action":{"kind":"Delegate","val":1,"amt":4195},"partialState":{"h":17,"t":102,"tokens":[9630,19582,13044,18412],"delegation":[8630,18582,12044,17412],"delegatorTokens":9999999900638}},{"ix":178,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":179,"action":{"kind":"Undelegate","val":2,"amt":2524},"partialState":{"h":17,"t":102,"tokens":[9630,19582,10520,18412],"delegation":[8630,18582,9520,17412],"delegatorTokens":9999999900638}},{"ix":180,"action":{"kind":"Deliver","chain":"provider","numPackets":3},"partialState":{"h":17,"t":102,"tokens":[9630,19582,10520,18412],"delegation":[8630,18582,9520,17412],"delegatorTokens":9999999900638,"jailed":[1000000000000029,1000000000000023,null,1000000000000017],"status":["unbonding","unbonded","bonded","unbonding"]}},{"ix":181,"action":{"kind":"Undelegate","val":1,"amt":2396},"partialState":{"h":17,"t":102,"tokens":[9630,17186,10520,18412],"delegation":[8630,16186,9520,17412],"delegatorTokens":9999999900638}},{"ix":182,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":183,"action":{"kind":"Undelegate","val":2,"amt":3362},"partialState":{"h":17,"t":102,"tokens":[9630,17186,7158,18412],"delegation":[8630,16186,6158,17412],"delegatorTokens":9999999900638}},{"ix":184,"action":{"kind":"Deliver","chain":"consumer","numPackets":6},"partialState":{"h":23,"t":138,"consumerPower":[null,null,3746,null],"outstandingDowntime":[false,false,false,false]}},{"ix":185,"action":{"kind":"Undelegate","val":0,"amt":4710},"partialState":{"h":17,"t":102,"tokens":[4920,17186,7158,18412],"delegation":[3920,16186,6158,17412],"delegatorTokens":9999999900638}},{"ix":186,"action":{"kind":"Undelegate","val":1,"amt":1776},"partialState":{"h":17,"t":102,"tokens":[4920,15410,7158,18412],"delegation":[3920,14410,6158,17412],"delegatorTokens":9999999900638}},{"ix":187,"action":{"kind":"Delegate","val":3,"amt":4108},"partialState":{"h":17,"t":102,"tokens":[4920,15410,7158,22520],"delegation":[3920,14410,6158,21520],"delegatorTokens":9999999896530}},{"ix":188,"action":{"kind":"Undelegate","val":2,"amt":4048},"partialState":{"h":17,"t":102,"tokens":[4920,15410,3110,22520],"delegation":[3920,14410,2110,21520],"delegatorTokens":9999999896530}},{"ix":189,"action":{"kind":"Deliver","chain":"consumer","numPackets":1},"partialState":{"h":23,"t":138,"consumerPower":[null,null,3746,null],"outstandingDowntime":[false,false,false,false]}},{"ix":190,"action":{"kind":"Undelegate","val":3,"amt":4945},"partialState":{"h":17,"t":102,"tokens":[4920,15410,3110,17575],"delegation":[3920,14410,2110,16575],"delegatorTokens":9999999896530}},{"ix":191,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":24,"t":144,"consumerPower":[null,null,13044,null],"outstandingDowntime":[false,false,false,false]}},{"ix":192,"action":{"kind":"Delegate","val":1,"amt":2931},"partialState":{"h":17,"t":102,"tokens":[4920,18341,3110,17575],"delegation":[3920,17341,2110,16575],"delegatorTokens":9999999893599}},{"ix":193,"action":{"kind":"Undelegate","val":3,"amt":1324},"partialState":{"h":17,"t":102,"tokens":[4920,18341,3110,16251],"delegation":[3920,17341,2110,15251],"delegatorTokens":9999999893599}},{"ix":194,"action":{"kind":"Deliver","chain":"provider","numPackets":1},"partialState":{"h":17,"t":102,"tokens":[4920,18341,3110,16251],"delegation":[3920,17341,2110,15251],"delegatorTokens":9999999893599,"jailed":[1000000000000029,1000000000000023,null,1000000000000017],"status":["unbonding","unbonded","bonded","unbonding"]}},{"ix":195,"action":{"kind":"Undelegate","val":1,"amt":3931},"partialState":{"h":17,"t":102,"tokens":[4920,14410,3110,16251],"delegation":[3920,13410,2110,15251],"delegatorTokens":9999999893599}},{"ix":196,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":197,"action":{"kind":"Deliver","chain":"consumer","numPackets":3},"partialState":{"h":24,"t":144,"consumerPower":[null,null,13044,null],"outstandingDowntime":[false,false,false,false]}},{"ix":198,"action":{"kind":"Undelegate","val":3,"amt":1428},"partialState":{"h":17,"t":102,"tokens":[4920,14410,3110,14823],"delegation":[3920,13410,2110,13823],"delegatorTokens":9999999893599}},{"ix":199,"action":{"kind":"Delegate","val":2,"amt":4544},"partialState":{"h":17,"t":102,"tokens":[4920,14410,7654,14823],"delegation":[3920,13410,6654,13823],"delegatorTokens":9999999889055}}],"events":["send_downtime_slash_request","insufficient_shares","downtime_slash_request_outstanding","send_double_sign_slash_request","more_than_one_third_val_power_change","receive_downtime_slash_request","jail","send_vsc_with_downtime_ack","send_downtime_slash_request","rebond_unval","send_vsc_without_downtime_ack","receive_downtime_slash_ack","send_downtime_slash_request","downtime_slash_request_outstanding","consumer_del_val","consumer_update_val","consumer_add_val","send_double_sign_slash_request","send_downtime_slash_request","receive_double_sign_slash_request","insufficient_shares","more_than_one_third_val_power_change","receive_downtime_slash_request","jail","send_vsc_with_downtime_ack","more_than_one_third_val_power_change","rebond_unval","receive_downtime_slash_request","jail","send_vsc_with_downtime_ack","consumer_add_val","consumer_del_val","receive_downtime_slash_ack","consumer_del_val","consumer_add_val","receive_double_sign_slash_request","receive_downtime_slash_request","jail","insufficient_shares","receive_downtime_slash_ack","send_vsc_with_downtime_ack","consumer_add_val","consumer_del_val","consumer_send_maturation","send_vsc_not_because_change","send_vsc_without_downtime_ack","send_vsc_without_downtime_ack","send_vsc_not_because_change","send_vsc_without_downtime_ack","receive_downtime_slash_ack","consumer_send_maturation","consumer_del_val","consumer_update_val","insufficient_shares","set_undel_hold_false","set_undel_hold_false","send_vsc_not_because_change","send_vsc_without_downtime_ack","complete_undel_in_endblock","some_undels_expired_but_not_completed","consumer_send_maturation","consumer_send_maturation","some_undels_expired_but_not_completed","complete_undel_immediate","set_unval_hold_false","complete_undel_immediate","complete_undel_immediate","send_vsc_without_downtime_ack","complete_unval_in_endblock","some_undels_expired_but_not_completed","send_vsc_not_because_change","send_vsc_without_downtime_ack","consumer_update_val"]},{"meta":{"commit":"7ffd0c04e4205cbc9caf212abfe6c59ee43153bf"},"constants":{"P":"provider","C":"consumer","UNBONDING_SECONDS_P":70,"UNBONDING_SECONDS_C":50,"TRUSTING_SECONDS":49,"NUM_VALIDATORS":4,"MAX_VALIDATORS":2,"SLASH_DOUBLESIGN":0,"SLASH_DOWNTIME":0,"JAIL_SECONDS":999999999999999,"BLOCK_SECONDS":6,"INITIAL_DELEGATOR_TOKENS":10000000000000,"DELEGATE_AMT_MIN":1000,"DELEGATE_AMT_MAX":5000,"UNDELEGATE_AMT_MIN":1000,"UNDELEGATE_AMT_MAX":5000,"ISDOWNTIME_PROBABILITY":0.5,"MAX_NUM_PACKETS_FOR_DELIVER":6},"actions":[{"ix":0,"action":{"kind":"Undelegate","val":0,"amt":3002},"partialState":{"h":1,"t":6,"tokens":[1998,4000,3000,2000],"delegation":[998,3000,2000,1000],"delegatorTokens":10000000000000}},{"ix":1,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":2,"action":{"kind":"ConsumerSlash","val":3,"infractionHeight":0,"isDowntime":true},"partialState":{"h":1,"t":6,"outstandingDowntime":[false,false,false,true]}},{"ix":3,"action":{"kind":"Deliver","chain":"provider","numPackets":1},"partialState":{"h":1,"t":6,"tokens":[1998,4000,3000,2000],"delegation":[998,3000,2000,1000],"delegatorTokens":10000000000000,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":4,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":5,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":2,"t":12,"tokens":[1998,4000,3000,2000],"delegation":[998,3000,2000,1000],"delegatorTokens":10000000000000,"jailed":[null,null,null,null],"status":["unbonding","bonded","bonded","unbonded"]}},{"ix":6,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":2,"t":12,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,false,false,true]}},{"ix":7,"action":{"kind":"Delegate","val":1,"amt":4318},"partialState":{"h":2,"t":12,"tokens":[1998,8318,3000,2000],"delegation":[998,7318,2000,1000],"delegatorTokens":9999999995682}},{"ix":8,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":9,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":10,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":3,"t":18,"tokens":[1998,8318,3000,2000],"delegation":[998,7318,2000,1000],"delegatorTokens":9999999995682,"jailed":[null,null,null,null],"status":["unbonding","bonded","bonded","unbonded"]}},{"ix":11,"action":{"kind":"Undelegate","val":1,"amt":2370},"partialState":{"h":3,"t":18,"tokens":[1998,5948,3000,2000],"delegation":[998,4948,2000,1000],"delegatorTokens":9999999995682}},{"ix":12,"action":{"kind":"ConsumerSlash","val":1,"infractionHeight":1,"isDowntime":true},"partialState":{"h":2,"t":12,"outstandingDowntime":[false,true,false,true]}},{"ix":13,"action":{"kind":"Delegate","val":0,"amt":2448},"partialState":{"h":3,"t":18,"tokens":[4446,5948,3000,2000],"delegation":[3446,4948,2000,1000],"delegatorTokens":9999999993234}},{"ix":14,"action":{"kind":"Delegate","val":3,"amt":2961},"partialState":{"h":3,"t":18,"tokens":[4446,5948,3000,4961],"delegation":[3446,4948,2000,3961],"delegatorTokens":9999999990273}},{"ix":15,"action":{"kind":"Delegate","val":0,"amt":3431},"partialState":{"h":3,"t":18,"tokens":[7877,5948,3000,4961],"delegation":[6877,4948,2000,3961],"delegatorTokens":9999999986842}},{"ix":16,"action":{"kind":"ConsumerSlash","val":1,"infractionHeight":1,"isDowntime":true},"partialState":{"h":2,"t":12,"outstandingDowntime":[false,true,false,true]}},{"ix":17,"action":{"kind":"ConsumerSlash","val":3,"infractionHeight":1,"isDowntime":true},"partialState":{"h":2,"t":12,"outstandingDowntime":[false,true,false,true]}},{"ix":18,"action":{"kind":"Deliver","chain":"consumer","numPackets":3},"partialState":{"h":2,"t":12,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,true,false,true]}},{"ix":19,"action":{"kind":"Undelegate","val":1,"amt":4109},"partialState":{"h":3,"t":18,"tokens":[7877,1839,3000,4961],"delegation":[6877,839,2000,3961],"delegatorTokens":9999999986842}},{"ix":20,"action":{"kind":"Deliver","chain":"consumer","numPackets":6},"partialState":{"h":2,"t":12,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,true,false,true]}},{"ix":21,"action":{"kind":"Delegate","val":3,"amt":3816},"partialState":{"h":3,"t":18,"tokens":[7877,1839,3000,8777],"delegation":[6877,839,2000,7777],"delegatorTokens":9999999983026}},{"ix":22,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":23,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":4,"t":24,"tokens":[7877,1839,3000,8777],"delegation":[6877,839,2000,7777],"delegatorTokens":9999999983026,"jailed":[null,null,null,null],"status":["bonded","unbonding","unbonding","bonded"]}},{"ix":24,"action":{"kind":"ConsumerSlash","val":3,"infractionHeight":0,"isDowntime":false},"partialState":{"h":2,"t":12,"outstandingDowntime":[false,true,false,true]}},{"ix":25,"action":{"kind":"Undelegate","val":0,"amt":4828},"partialState":{"h":4,"t":24,"tokens":[3049,1839,3000,8777],"delegation":[2049,839,2000,7777],"delegatorTokens":9999999983026}},{"ix":26,"action":{"kind":"ConsumerSlash","val":1,"infractionHeight":0,"isDowntime":false},"partialState":{"h":2,"t":12,"outstandingDowntime":[false,true,false,true]}},{"ix":27,"action":{"kind":"ConsumerSlash","val":0,"infractionHeight":1,"isDowntime":true},"partialState":{"h":2,"t":12,"outstandingDowntime":[true,true,false,true]}},{"ix":28,"action":{"kind":"Undelegate","val":0,"amt":4527},"partialState":{"h":4,"t":24,"tokens":[3049,1839,3000,8777],"delegation":[2049,839,2000,7777],"delegatorTokens":9999999983026}},{"ix":29,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":3,"t":18,"consumerPower":[null,4000,3000,null],"outstandingDowntime":[true,true,false,true]}},{"ix":30,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":31,"action":{"kind":"Undelegate","val":1,"amt":3721},"partialState":{"h":4,"t":24,"tokens":[3049,1839,3000,8777],"delegation":[2049,839,2000,7777],"delegatorTokens":9999999983026}},{"ix":32,"action":{"kind":"Delegate","val":3,"amt":4335},"partialState":{"h":4,"t":24,"tokens":[3049,1839,3000,13112],"delegation":[2049,839,2000,12112],"delegatorTokens":9999999978691}},{"ix":33,"action":{"kind":"Deliver","chain":"provider","numPackets":5},"partialState":{"h":4,"t":24,"tokens":[3049,1839,3000,13112],"delegation":[2049,839,2000,12112],"delegatorTokens":9999999978691,"jailed":[null,null,null,null],"status":["bonded","unbonding","unbonding","bonded"]}},{"ix":34,"action":{"kind":"Deliver","chain":"provider","numPackets":1},"partialState":{"h":4,"t":24,"tokens":[3049,1839,3000,13112],"delegation":[2049,839,2000,12112],"delegatorTokens":9999999978691,"jailed":[null,null,null,null],"status":["bonded","unbonding","unbonding","bonded"]}},{"ix":35,"action":{"kind":"Undelegate","val":0,"amt":4001},"partialState":{"h":4,"t":24,"tokens":[3049,1839,3000,13112],"delegation":[2049,839,2000,12112],"delegatorTokens":9999999978691}},{"ix":36,"action":{"kind":"Deliver","chain":"provider","numPackets":3},"partialState":{"h":4,"t":24,"tokens":[3049,1839,3000,13112],"delegation":[2049,839,2000,12112],"delegatorTokens":9999999978691,"jailed":[null,null,null,null],"status":["bonded","unbonding","unbonding","bonded"]}},{"ix":37,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":5,"t":30,"tokens":[3049,1839,3000,13112],"delegation":[2049,839,2000,12112],"delegatorTokens":9999999978691,"jailed":[null,null,null,1000000000000023],"status":["bonded","unbonding","unbonding","bonded"]}},{"ix":38,"action":{"kind":"Undelegate","val":2,"amt":3689},"partialState":{"h":5,"t":30,"tokens":[3049,1839,3000,13112],"delegation":[2049,839,2000,12112],"delegatorTokens":9999999978691}},{"ix":39,"action":{"kind":"Delegate","val":3,"amt":3223},"partialState":{"h":5,"t":30,"tokens":[3049,1839,3000,16335],"delegation":[2049,839,2000,15335],"delegatorTokens":9999999975468}},{"ix":40,"action":{"kind":"Delegate","val":3,"amt":4025},"partialState":{"h":5,"t":30,"tokens":[3049,1839,3000,20360],"delegation":[2049,839,2000,19360],"delegatorTokens":9999999971443}},{"ix":41,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":42,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":43,"action":{"kind":"Undelegate","val":3,"amt":3948},"partialState":{"h":5,"t":30,"tokens":[3049,1839,3000,16412],"delegation":[2049,839,2000,15412],"delegatorTokens":9999999971443}},{"ix":44,"action":{"kind":"Undelegate","val":0,"amt":3381},"partialState":{"h":5,"t":30,"tokens":[3049,1839,3000,16412],"delegation":[2049,839,2000,15412],"delegatorTokens":9999999971443}},{"ix":45,"action":{"kind":"Undelegate","val":0,"amt":2602},"partialState":{"h":5,"t":30,"tokens":[3049,1839,3000,16412],"delegation":[2049,839,2000,15412],"delegatorTokens":9999999971443}},{"ix":46,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":4,"t":24,"consumerPower":[null,4000,3000,null],"outstandingDowntime":[true,true,false,true]}},{"ix":47,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":5,"t":30,"consumerPower":[null,4000,3000,null],"outstandingDowntime":[true,true,false,true]}},{"ix":48,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":49,"action":{"kind":"Deliver","chain":"consumer","numPackets":6},"partialState":{"h":5,"t":30,"consumerPower":[null,4000,3000,null],"outstandingDowntime":[true,true,false,true]}},{"ix":50,"action":{"kind":"Undelegate","val":3,"amt":1141},"partialState":{"h":5,"t":30,"tokens":[3049,1839,3000,15271],"delegation":[2049,839,2000,14271],"delegatorTokens":9999999971443}},{"ix":51,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":6,"t":36,"consumerPower":[7877,null,null,8777],"outstandingDowntime":[true,true,false,true]}},{"ix":52,"action":{"kind":"Undelegate","val":1,"amt":3951},"partialState":{"h":5,"t":30,"tokens":[3049,1839,3000,15271],"delegation":[2049,839,2000,14271],"delegatorTokens":9999999971443}},{"ix":53,"action":{"kind":"Undelegate","val":2,"amt":3129},"partialState":{"h":5,"t":30,"tokens":[3049,1839,3000,15271],"delegation":[2049,839,2000,14271],"delegatorTokens":9999999971443}},{"ix":54,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":55,"action":{"kind":"Deliver","chain":"provider","numPackets":4},"partialState":{"h":5,"t":30,"tokens":[3049,1839,3000,15271],"delegation":[2049,839,2000,14271],"delegatorTokens":9999999971443,"jailed":[null,null,null,1000000000000023],"status":["bonded","unbonding","unbonding","bonded"]}},{"ix":56,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":7,"t":42,"consumerPower":[7877,null,null,8777],"outstandingDowntime":[true,true,false,true]}},{"ix":57,"action":{"kind":"Delegate","val":2,"amt":3338},"partialState":{"h":5,"t":30,"tokens":[3049,1839,6338,15271],"delegation":[2049,839,5338,14271],"delegatorTokens":9999999968105}},{"ix":58,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":8,"t":48,"consumerPower":[7877,null,null,8777],"outstandingDowntime":[true,true,false,true]}},{"ix":59,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":9,"t":54,"consumerPower":[7877,null,null,8777],"outstandingDowntime":[true,true,false,true]}},{"ix":60,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":10,"t":60,"consumerPower":[7877,null,null,8777],"outstandingDowntime":[true,true,false,true]}},{"ix":61,"action":{"kind":"Undelegate","val":2,"amt":4061},"partialState":{"h":5,"t":30,"tokens":[3049,1839,2277,15271],"delegation":[2049,839,1277,14271],"delegatorTokens":9999999968105}},{"ix":62,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":6,"t":36,"tokens":[3049,1839,2277,15271],"delegation":[2049,839,1277,14271],"delegatorTokens":9999999968105,"jailed":[1000000000000029,1000000000000029,null,1000000000000023],"status":["bonded","unbonding","bonded","unbonding"]}},{"ix":63,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":64,"action":{"kind":"Deliver","chain":"provider","numPackets":4},"partialState":{"h":6,"t":36,"tokens":[3049,1839,2277,15271],"delegation":[2049,839,1277,14271],"delegatorTokens":9999999968105,"jailed":[1000000000000029,1000000000000029,null,1000000000000023],"status":["bonded","unbonding","bonded","unbonding"]}},{"ix":65,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":11,"t":66,"consumerPower":[7877,null,null,8777],"outstandingDowntime":[true,true,false,true]}},{"ix":66,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":7,"t":42,"tokens":[3049,1839,2277,15271],"delegation":[2049,839,1277,14271],"delegatorTokens":9999999968105,"jailed":[1000000000000029,1000000000000029,null,1000000000000023],"status":["unbonding","unbonding","bonded","unbonding"]}},{"ix":67,"action":{"kind":"Deliver","chain":"consumer","numPackets":3},"partialState":{"h":11,"t":66,"consumerPower":[7877,null,null,8777],"outstandingDowntime":[false,false,false,false]}},{"ix":68,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":12,"t":72,"consumerPower":[3049,null,2277,null],"outstandingDowntime":[false,false,false,false]}},{"ix":69,"action":{"kind":"Delegate","val":1,"amt":4807},"partialState":{"h":7,"t":42,"tokens":[3049,6646,2277,15271],"delegation":[2049,5646,1277,14271],"delegatorTokens":9999999963298}},{"ix":70,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":8,"t":48,"tokens":[3049,6646,2277,15271],"delegation":[2049,5646,1277,14271],"delegatorTokens":9999999963298,"jailed":[1000000000000029,1000000000000029,null,1000000000000023],"status":["unbonding","unbonding","bonded","unbonding"]}},{"ix":71,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":9,"t":54,"tokens":[3049,6646,2277,15271],"delegation":[2049,5646,1277,14271],"delegatorTokens":9999999963298,"jailed":[1000000000000029,1000000000000029,null,1000000000000023],"status":["unbonding","unbonding","bonded","unbonding"]}},{"ix":72,"action":{"kind":"Delegate","val":1,"amt":2838},"partialState":{"h":9,"t":54,"tokens":[3049,9484,2277,15271],"delegation":[2049,8484,1277,14271],"delegatorTokens":9999999960460}},{"ix":73,"action":{"kind":"Undelegate","val":0,"amt":2193},"partialState":{"h":9,"t":54,"tokens":[3049,9484,2277,15271],"delegation":[2049,8484,1277,14271],"delegatorTokens":9999999960460}},{"ix":74,"action":{"kind":"Deliver","chain":"provider","numPackets":5},"partialState":{"h":9,"t":54,"tokens":[3049,9484,2277,15271],"delegation":[2049,8484,1277,14271],"delegatorTokens":9999999960460,"jailed":[1000000000000029,1000000000000029,null,1000000000000023],"status":["unbonding","unbonding","bonded","unbonding"]}},{"ix":75,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":10,"t":60,"tokens":[3049,9484,2277,15271],"delegation":[2049,8484,1277,14271],"delegatorTokens":9999999960460,"jailed":[1000000000000029,1000000000000029,null,1000000000000023],"status":["unbonding","unbonding","bonded","unbonding"]}},{"ix":76,"action":{"kind":"Deliver","chain":"consumer","numPackets":6},"partialState":{"h":12,"t":72,"consumerPower":[3049,null,2277,null],"outstandingDowntime":[false,false,false,false]}},{"ix":77,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":78,"action":{"kind":"Deliver","chain":"consumer","numPackets":1},"partialState":{"h":12,"t":72,"consumerPower":[3049,null,2277,null],"outstandingDowntime":[false,false,false,false]}},{"ix":79,"action":{"kind":"Undelegate","val":1,"amt":1265},"partialState":{"h":10,"t":60,"tokens":[3049,8219,2277,15271],"delegation":[2049,7219,1277,14271],"delegatorTokens":9999999960460}},{"ix":80,"action":{"kind":"Delegate","val":1,"amt":2289},"partialState":{"h":10,"t":60,"tokens":[3049,10508,2277,15271],"delegation":[2049,9508,1277,14271],"delegatorTokens":9999999958171}},{"ix":81,"action":{"kind":"Deliver","chain":"consumer","numPackets":5},"partialState":{"h":12,"t":72,"consumerPower":[3049,null,2277,null],"outstandingDowntime":[false,false,false,false]}},{"ix":82,"action":{"kind":"Undelegate","val":0,"amt":4616},"partialState":{"h":10,"t":60,"tokens":[3049,10508,2277,15271],"delegation":[2049,9508,1277,14271],"delegatorTokens":9999999958171}},{"ix":83,"action":{"kind":"Deliver","chain":"provider","numPackets":6},"partialState":{"h":10,"t":60,"tokens":[3049,10508,2277,15271],"delegation":[2049,9508,1277,14271],"delegatorTokens":9999999958171,"jailed":[1000000000000029,1000000000000029,null,1000000000000023],"status":["unbonding","unbonding","bonded","unbonding"]}},{"ix":84,"action":{"kind":"Undelegate","val":3,"amt":2526},"partialState":{"h":10,"t":60,"tokens":[3049,10508,2277,12745],"delegation":[2049,9508,1277,11745],"delegatorTokens":9999999958171}},{"ix":85,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":86,"action":{"kind":"Deliver","chain":"provider","numPackets":1},"partialState":{"h":10,"t":60,"tokens":[3049,10508,2277,12745],"delegation":[2049,9508,1277,11745],"delegatorTokens":9999999958171,"jailed":[1000000000000029,1000000000000029,null,1000000000000023],"status":["unbonding","unbonding","bonded","unbonding"]}},{"ix":87,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":88,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":13,"t":78,"consumerPower":[null,null,2277,null],"outstandingDowntime":[false,false,false,false]}},{"ix":89,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":11,"t":66,"tokens":[3049,10508,2277,12745],"delegation":[2049,9508,1277,11745],"delegatorTokens":9999999958171,"jailed":[1000000000000029,1000000000000029,null,1000000000000023],"status":["unbonding","unbonding","bonded","unbonding"]}},{"ix":90,"action":{"kind":"Delegate","val":0,"amt":4565},"partialState":{"h":11,"t":66,"tokens":[7614,10508,2277,12745],"delegation":[6614,9508,1277,11745],"delegatorTokens":9999999953606}},{"ix":91,"action":{"kind":"Undelegate","val":2,"amt":1786},"partialState":{"h":11,"t":66,"tokens":[7614,10508,2277,12745],"delegation":[6614,9508,1277,11745],"delegatorTokens":9999999953606}},{"ix":92,"action":{"kind":"Deliver","chain":"consumer","numPackets":4},"partialState":{"h":13,"t":78,"consumerPower":[null,null,2277,null],"outstandingDowntime":[false,false,false,false]}},{"ix":93,"action":{"kind":"Undelegate","val":2,"amt":2056},"partialState":{"h":11,"t":66,"tokens":[7614,10508,2277,12745],"delegation":[6614,9508,1277,11745],"delegatorTokens":9999999953606}},{"ix":94,"action":{"kind":"Undelegate","val":1,"amt":3978},"partialState":{"h":11,"t":66,"tokens":[7614,6530,2277,12745],"delegation":[6614,5530,1277,11745],"delegatorTokens":9999999953606}},{"ix":95,"action":{"kind":"Undelegate","val":0,"amt":4812},"partialState":{"h":11,"t":66,"tokens":[2802,6530,2277,12745],"delegation":[1802,5530,1277,11745],"delegatorTokens":9999999953606}},{"ix":96,"action":{"kind":"Delegate","val":0,"amt":3349},"partialState":{"h":11,"t":66,"tokens":[6151,6530,2277,12745],"delegation":[5151,5530,1277,11745],"delegatorTokens":9999999950257}},{"ix":97,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":14,"t":84,"consumerPower":[null,null,2277,null],"outstandingDowntime":[false,false,false,false]}},{"ix":98,"action":{"kind":"Deliver","chain":"consumer","numPackets":6},"partialState":{"h":14,"t":84,"consumerPower":[null,null,2277,null],"outstandingDowntime":[false,false,false,false]}},{"ix":99,"action":{"kind":"Delegate","val":2,"amt":3195},"partialState":{"h":11,"t":66,"tokens":[6151,6530,5472,12745],"delegation":[5151,5530,4472,11745],"delegatorTokens":9999999947062}},{"ix":100,"action":{"kind":"Undelegate","val":1,"amt":4947},"partialState":{"h":11,"t":66,"tokens":[6151,1583,5472,12745],"delegation":[5151,583,4472,11745],"delegatorTokens":9999999947062}},{"ix":101,"action":{"kind":"Undelegate","val":3,"amt":1546},"partialState":{"h":11,"t":66,"tokens":[6151,1583,5472,11199],"delegation":[5151,583,4472,10199],"delegatorTokens":9999999947062}},{"ix":102,"action":{"kind":"Delegate","val":2,"amt":1151},"partialState":{"h":11,"t":66,"tokens":[6151,1583,6623,11199],"delegation":[5151,583,5623,10199],"delegatorTokens":9999999945911}},{"ix":103,"action":{"kind":"Undelegate","val":3,"amt":3518},"partialState":{"h":11,"t":66,"tokens":[6151,1583,6623,7681],"delegation":[5151,583,5623,6681],"delegatorTokens":9999999945911}},{"ix":104,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":105,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":15,"t":90,"consumerPower":[null,null,2277,null],"outstandingDowntime":[false,false,false,false]}},{"ix":106,"action":{"kind":"Undelegate","val":0,"amt":2452},"partialState":{"h":11,"t":66,"tokens":[3699,1583,6623,7681],"delegation":[2699,583,5623,6681],"delegatorTokens":9999999945911}},{"ix":107,"action":{"kind":"Deliver","chain":"provider","numPackets":1},"partialState":{"h":11,"t":66,"tokens":[3699,1583,6623,7681],"delegation":[2699,583,5623,6681],"delegatorTokens":9999999945911,"jailed":[1000000000000029,1000000000000029,null,1000000000000023],"status":["unbonding","unbonding","bonded","unbonding"]}},{"ix":108,"action":{"kind":"Undelegate","val":3,"amt":3966},"partialState":{"h":11,"t":66,"tokens":[3699,1583,6623,3715],"delegation":[2699,583,5623,2715],"delegatorTokens":9999999945911}},{"ix":109,"action":{"kind":"Undelegate","val":1,"amt":4482},"partialState":{"h":11,"t":66,"tokens":[3699,1583,6623,3715],"delegation":[2699,583,5623,2715],"delegatorTokens":9999999945911}},{"ix":110,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":111,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":12,"t":72,"tokens":[3699,1583,6623,3715],"delegation":[2699,583,5623,2715],"delegatorTokens":9999999945911,"jailed":[1000000000000029,1000000000000029,null,1000000000000023],"status":["unbonding","unbonding","bonded","unbonding"]}},{"ix":112,"action":{"kind":"Deliver","chain":"provider","numPackets":3},"partialState":{"h":12,"t":72,"tokens":[3699,1583,6623,3715],"delegation":[2699,583,5623,2715],"delegatorTokens":9999999945911,"jailed":[1000000000000029,1000000000000029,null,1000000000000023],"status":["unbonding","unbonding","bonded","unbonding"]}},{"ix":113,"action":{"kind":"Deliver","chain":"provider","numPackets":5},"partialState":{"h":12,"t":72,"tokens":[3699,1583,6623,3715],"delegation":[2699,583,5623,2715],"delegatorTokens":9999999945911,"jailed":[1000000000000029,1000000000000029,null,1000000000000023],"status":["unbonding","unbonding","bonded","unbonding"]}},{"ix":114,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":16,"t":96,"consumerPower":[null,null,2277,null],"outstandingDowntime":[false,false,false,false]}},{"ix":115,"action":{"kind":"Undelegate","val":3,"amt":2785},"partialState":{"h":12,"t":72,"tokens":[3699,1583,6623,3715],"delegation":[2699,583,5623,2715],"delegatorTokens":9999999945911}},{"ix":116,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":17,"t":102,"consumerPower":[null,null,2277,null],"outstandingDowntime":[false,false,false,false]}},{"ix":117,"action":{"kind":"Delegate","val":1,"amt":4519},"partialState":{"h":12,"t":72,"tokens":[3699,6102,6623,3715],"delegation":[2699,5102,5623,2715],"delegatorTokens":9999999941392}},{"ix":118,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":18,"t":108,"consumerPower":[null,null,2277,null],"outstandingDowntime":[false,false,false,false]}},{"ix":119,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":120,"action":{"kind":"Undelegate","val":0,"amt":1658},"partialState":{"h":12,"t":72,"tokens":[2041,6102,6623,3715],"delegation":[1041,5102,5623,2715],"delegatorTokens":9999999941392}},{"ix":121,"action":{"kind":"Delegate","val":1,"amt":2930},"partialState":{"h":12,"t":72,"tokens":[2041,9032,6623,3715],"delegation":[1041,8032,5623,2715],"delegatorTokens":9999999938462}},{"ix":122,"action":{"kind":"Delegate","val":0,"amt":3962},"partialState":{"h":12,"t":72,"tokens":[6003,9032,6623,3715],"delegation":[5003,8032,5623,2715],"delegatorTokens":9999999934500}},{"ix":123,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":124,"action":{"kind":"Deliver","chain":"provider","numPackets":6},"partialState":{"h":12,"t":72,"tokens":[6003,9032,6623,3715],"delegation":[5003,8032,5623,2715],"delegatorTokens":9999999934500,"jailed":[1000000000000029,1000000000000029,null,1000000000000023],"status":["unbonding","unbonding","bonded","unbonding"]}},{"ix":125,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":126,"action":{"kind":"Deliver","chain":"provider","numPackets":5},"partialState":{"h":12,"t":72,"tokens":[6003,9032,6623,3715],"delegation":[5003,8032,5623,2715],"delegatorTokens":9999999934500,"jailed":[1000000000000029,1000000000000029,null,1000000000000023],"status":["unbonding","unbonding","bonded","unbonding"]}},{"ix":127,"action":{"kind":"Deliver","chain":"provider","numPackets":5},"partialState":{"h":12,"t":72,"tokens":[6003,9032,6623,3715],"delegation":[5003,8032,5623,2715],"delegatorTokens":9999999934500,"jailed":[1000000000000029,1000000000000029,null,1000000000000023],"status":["unbonding","unbonding","bonded","unbonding"]}},{"ix":128,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":129,"action":{"kind":"Undelegate","val":3,"amt":4963},"partialState":{"h":12,"t":72,"tokens":[6003,9032,6623,3715],"delegation":[5003,8032,5623,2715],"delegatorTokens":9999999934500}},{"ix":130,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":131,"action":{"kind":"Undelegate","val":1,"amt":1463},"partialState":{"h":12,"t":72,"tokens":[6003,7569,6623,3715],"delegation":[5003,6569,5623,2715],"delegatorTokens":9999999934500}},{"ix":132,"action":{"kind":"Undelegate","val":3,"amt":2674},"partialState":{"h":12,"t":72,"tokens":[6003,7569,6623,1041],"delegation":[5003,6569,5623,41],"delegatorTokens":9999999934500}},{"ix":133,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":134,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":19,"t":114,"consumerPower":[null,null,2277,null],"outstandingDowntime":[false,false,false,false]}},{"ix":135,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":13,"t":78,"tokens":[6003,7569,6623,1041],"delegation":[5003,6569,5623,41],"delegatorTokens":9999999934500,"jailed":[1000000000000029,1000000000000029,null,1000000000000023],"status":["unbonding","unbonding","bonded","unbonding"]}},{"ix":136,"action":{"kind":"Deliver","chain":"consumer","numPackets":1},"partialState":{"h":19,"t":114,"consumerPower":[null,null,2277,null],"outstandingDowntime":[false,false,false,false]}},{"ix":137,"action":{"kind":"Delegate","val":3,"amt":1666},"partialState":{"h":13,"t":78,"tokens":[6003,7569,6623,2707],"delegation":[5003,6569,5623,1707],"delegatorTokens":9999999932834}},{"ix":138,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":20,"t":120,"consumerPower":[null,null,2277,null],"outstandingDowntime":[false,false,false,false]}},{"ix":139,"action":{"kind":"Delegate","val":0,"amt":3694},"partialState":{"h":13,"t":78,"tokens":[9697,7569,6623,2707],"delegation":[8697,6569,5623,1707],"delegatorTokens":9999999929140}},{"ix":140,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":14,"t":84,"tokens":[9697,7569,6623,2707],"delegation":[8697,6569,5623,1707],"delegatorTokens":9999999932142,"jailed":[1000000000000029,1000000000000029,null,1000000000000023],"status":["unbonding","unbonding","bonded","unbonding"]}},{"ix":141,"action":{"kind":"Deliver","chain":"provider","numPackets":3},"partialState":{"h":14,"t":84,"tokens":[9697,7569,6623,2707],"delegation":[8697,6569,5623,1707],"delegatorTokens":9999999932142,"jailed":[1000000000000029,1000000000000029,null,1000000000000023],"status":["unbonding","unbonding","bonded","unbonding"]}},{"ix":142,"action":{"kind":"Undelegate","val":2,"amt":2939},"partialState":{"h":14,"t":84,"tokens":[9697,7569,3684,2707],"delegation":[8697,6569,2684,1707],"delegatorTokens":9999999932142}},{"ix":143,"action":{"kind":"Undelegate","val":1,"amt":3795},"partialState":{"h":14,"t":84,"tokens":[9697,3774,3684,2707],"delegation":[8697,2774,2684,1707],"delegatorTokens":9999999932142}},{"ix":144,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":15,"t":90,"tokens":[9697,3774,3684,2707],"delegation":[8697,2774,2684,1707],"delegatorTokens":9999999932142,"jailed":[1000000000000029,1000000000000029,null,1000000000000023],"status":["unbonding","unbonding","bonded","unbonding"]}},{"ix":145,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":16,"t":96,"tokens":[9697,3774,3684,2707],"delegation":[8697,2774,2684,1707],"delegatorTokens":9999999938621,"jailed":[1000000000000029,1000000000000029,null,1000000000000023],"status":["unbonding","unbonded","bonded","unbonding"]}},{"ix":146,"action":{"kind":"Deliver","chain":"provider","numPackets":1},"partialState":{"h":16,"t":96,"tokens":[9697,3774,3684,2707],"delegation":[8697,2774,2684,1707],"delegatorTokens":9999999938621,"jailed":[1000000000000029,1000000000000029,null,1000000000000023],"status":["unbonding","unbonded","bonded","unbonding"]}},{"ix":147,"action":{"kind":"Undelegate","val":0,"amt":1911},"partialState":{"h":16,"t":96,"tokens":[7786,3774,3684,2707],"delegation":[6786,2774,2684,1707],"delegatorTokens":9999999938621}},{"ix":148,"action":{"kind":"Deliver","chain":"consumer","numPackets":3},"partialState":{"h":20,"t":120,"consumerPower":[null,null,2277,null],"outstandingDowntime":[false,false,false,false]}},{"ix":149,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":21,"t":126,"consumerPower":[null,null,3684,null],"outstandingDowntime":[false,false,false,false]}},{"ix":150,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":151,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":152,"action":{"kind":"Delegate","val":3,"amt":1905},"partialState":{"h":16,"t":96,"tokens":[7786,3774,3684,4612],"delegation":[6786,2774,2684,3612],"delegatorTokens":9999999936716}},{"ix":153,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":154,"action":{"kind":"Deliver","chain":"consumer","numPackets":4},"partialState":{"h":21,"t":126,"consumerPower":[null,null,3684,null],"outstandingDowntime":[false,false,false,false]}},{"ix":155,"action":{"kind":"Deliver","chain":"provider","numPackets":2},"partialState":{"h":16,"t":96,"tokens":[7786,3774,3684,4612],"delegation":[6786,2774,2684,3612],"delegatorTokens":9999999936716,"jailed":[1000000000000029,1000000000000029,null,1000000000000023],"status":["unbonding","unbonded","bonded","unbonding"]}},{"ix":156,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":22,"t":132,"consumerPower":[null,null,3684,null],"outstandingDowntime":[false,false,false,false]}},{"ix":157,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":158,"action":{"kind":"Deliver","chain":"consumer","numPackets":2},"partialState":{"h":22,"t":132,"consumerPower":[null,null,3684,null],"outstandingDowntime":[false,false,false,false]}},{"ix":159,"action":{"kind":"Delegate","val":1,"amt":4028},"partialState":{"h":16,"t":96,"tokens":[7786,7802,3684,4612],"delegation":[6786,6802,2684,3612],"delegatorTokens":9999999932688}},{"ix":160,"action":{"kind":"Undelegate","val":3,"amt":3140},"partialState":{"h":16,"t":96,"tokens":[7786,7802,3684,1472],"delegation":[6786,6802,2684,472],"delegatorTokens":9999999932688}},{"ix":161,"action":{"kind":"Deliver","chain":"consumer","numPackets":6},"partialState":{"h":22,"t":132,"consumerPower":[null,null,3684,null],"outstandingDowntime":[false,false,false,false]}},{"ix":162,"action":{"kind":"Undelegate","val":2,"amt":3071},"partialState":{"h":16,"t":96,"tokens":[7786,7802,3684,1472],"delegation":[6786,6802,2684,472],"delegatorTokens":9999999932688}},{"ix":163,"action":{"kind":"Deliver","chain":"provider","numPackets":3},"partialState":{"h":16,"t":96,"tokens":[7786,7802,3684,1472],"delegation":[6786,6802,2684,472],"delegatorTokens":9999999932688,"jailed":[1000000000000029,1000000000000029,null,1000000000000023],"status":["unbonding","unbonded","bonded","unbonding"]}},{"ix":164,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":165,"action":{"kind":"Undelegate","val":3,"amt":3663},"partialState":{"h":16,"t":96,"tokens":[7786,7802,3684,1472],"delegation":[6786,6802,2684,472],"delegatorTokens":9999999932688}},{"ix":166,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":167,"action":{"kind":"Deliver","chain":"consumer","numPackets":4},"partialState":{"h":22,"t":132,"consumerPower":[null,null,3684,null],"outstandingDowntime":[false,false,false,false]}},{"ix":168,"action":{"kind":"Delegate","val":3,"amt":3401},"partialState":{"h":16,"t":96,"tokens":[7786,7802,3684,4873],"delegation":[6786,6802,2684,3873],"delegatorTokens":9999999929287}},{"ix":169,"action":{"kind":"Undelegate","val":2,"amt":3561},"partialState":{"h":16,"t":96,"tokens":[7786,7802,3684,4873],"delegation":[6786,6802,2684,3873],"delegatorTokens":9999999929287}},{"ix":170,"action":{"kind":"Delegate","val":0,"amt":1265},"partialState":{"h":16,"t":96,"tokens":[9051,7802,3684,4873],"delegation":[8051,6802,2684,3873],"delegatorTokens":9999999928022}},{"ix":171,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":23,"t":138,"consumerPower":[null,null,3684,null],"outstandingDowntime":[false,false,false,false]}},{"ix":172,"action":{"kind":"Undelegate","val":1,"amt":4838},"partialState":{"h":16,"t":96,"tokens":[9051,2964,3684,4873],"delegation":[8051,1964,2684,3873],"delegatorTokens":9999999928022}},{"ix":173,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":174,"action":{"kind":"Deliver","chain":"consumer","numPackets":4},"partialState":{"h":23,"t":138,"consumerPower":[null,null,3684,null],"outstandingDowntime":[false,false,false,false]}},{"ix":175,"action":{"kind":"Undelegate","val":1,"amt":4929},"partialState":{"h":16,"t":96,"tokens":[9051,2964,3684,4873],"delegation":[8051,1964,2684,3873],"delegatorTokens":9999999928022}},{"ix":176,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":177,"action":{"kind":"Deliver","chain":"provider","numPackets":2},"partialState":{"h":16,"t":96,"tokens":[9051,2964,3684,4873],"delegation":[8051,1964,2684,3873],"delegatorTokens":9999999928022,"jailed":[1000000000000029,1000000000000029,null,1000000000000023],"status":["unbonding","unbonded","bonded","unbonding"]}},{"ix":178,"action":{"kind":"Deliver","chain":"consumer","numPackets":4},"partialState":{"h":23,"t":138,"consumerPower":[null,null,3684,null],"outstandingDowntime":[false,false,false,false]}},{"ix":179,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":17,"t":102,"tokens":[9051,2964,3684,4873],"delegation":[8051,1964,2684,3873],"delegatorTokens":9999999932850,"jailed":[1000000000000029,1000000000000029,null,1000000000000023],"status":["unbonding","unbonded","bonded","unbonding"]}},{"ix":180,"action":{"kind":"Delegate","val":3,"amt":4541},"partialState":{"h":17,"t":102,"tokens":[9051,2964,3684,9414],"delegation":[8051,1964,2684,8414],"delegatorTokens":9999999928309}},{"ix":181,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":182,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":18,"t":108,"tokens":[9051,2964,3684,9414],"delegation":[8051,1964,2684,8414],"delegatorTokens":9999999937459,"jailed":[1000000000000029,1000000000000029,null,1000000000000023],"status":["unbonding","unbonded","bonded","unbonded"]}},{"ix":183,"action":{"kind":"Delegate","val":1,"amt":1530},"partialState":{"h":18,"t":108,"tokens":[9051,4494,3684,9414],"delegation":[8051,3494,2684,8414],"delegatorTokens":9999999935929}},{"ix":184,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":185,"action":{"kind":"Undelegate","val":2,"amt":1698},"partialState":{"h":18,"t":108,"tokens":[9051,4494,1986,9414],"delegation":[8051,3494,986,8414],"delegatorTokens":9999999935929}},{"ix":186,"action":{"kind":"Delegate","val":0,"amt":4957},"partialState":{"h":18,"t":108,"tokens":[14008,4494,1986,9414],"delegation":[13008,3494,986,8414],"delegatorTokens":9999999930972}},{"ix":187,"action":{"kind":"Undelegate","val":2,"amt":4195},"partialState":{"h":18,"t":108,"tokens":[14008,4494,1986,9414],"delegation":[13008,3494,986,8414],"delegatorTokens":9999999930972}},{"ix":188,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":189,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":190,"action":{"kind":"Undelegate","val":3,"amt":1967},"partialState":{"h":18,"t":108,"tokens":[14008,4494,1986,7447],"delegation":[13008,3494,986,6447],"delegatorTokens":9999999930972}},{"ix":191,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":19,"t":114,"tokens":[14008,4494,1986,7447],"delegation":[13008,3494,986,6447],"delegatorTokens":9999999930972,"jailed":[1000000000000029,1000000000000029,null,1000000000000023],"status":["unbonded","unbonded","bonded","unbonded"]}},{"ix":192,"action":{"kind":"Deliver","chain":"consumer","numPackets":3},"partialState":{"h":23,"t":138,"consumerPower":[null,null,3684,null],"outstandingDowntime":[false,false,false,false]}},{"ix":193,"action":{"kind":"Undelegate","val":3,"amt":3680},"partialState":{"h":19,"t":114,"tokens":[14008,4494,1986,3767],"delegation":[13008,3494,986,2767],"delegatorTokens":9999999930972}},{"ix":194,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":24,"t":144,"consumerPower":[null,null,3684,null],"outstandingDowntime":[false,false,false,false]}},{"ix":195,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":20,"t":120,"tokens":[14008,4494,1986,3767],"delegation":[13008,3494,986,2767],"delegatorTokens":9999999930972,"jailed":[1000000000000029,1000000000000029,null,1000000000000023],"status":["unbonded","unbonded","bonded","unbonded"]}},{"ix":196,"action":{"kind":"Undelegate","val":0,"amt":3837},"partialState":{"h":20,"t":120,"tokens":[10171,4494,1986,3767],"delegation":[9171,3494,986,2767],"delegatorTokens":9999999930972}},{"ix":197,"action":{"kind":"Delegate","val":0,"amt":3973},"partialState":{"h":20,"t":120,"tokens":[14144,4494,1986,3767],"delegation":[13144,3494,986,2767],"delegatorTokens":9999999926999}},{"ix":198,"action":{"kind":"Delegate","val":1,"amt":2279},"partialState":{"h":20,"t":120,"tokens":[14144,6773,1986,3767],"delegation":[13144,5773,986,2767],"delegatorTokens":9999999924720}},{"ix":199,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}}],"events":["send_downtime_slash_request","more_than_one_third_val_power_change","send_vsc_without_downtime_ack","send_vsc_without_downtime_ack","send_downtime_slash_request","downtime_slash_request_outstanding","downtime_slash_request_outstanding","more_than_one_third_val_power_change","rebond_unval","send_vsc_without_downtime_ack","send_double_sign_slash_request","send_double_sign_slash_request","send_downtime_slash_request","insufficient_shares","consumer_del_val","consumer_add_val","insufficient_shares","insufficient_shares","receive_downtime_slash_request","jail","send_vsc_with_downtime_ack","insufficient_shares","insufficient_shares","insufficient_shares","consumer_del_val","consumer_add_val","consumer_del_val","consumer_add_val","insufficient_shares","insufficient_shares","receive_double_sign_slash_request","receive_double_sign_slash_request","more_than_one_third_val_power_change","rebond_unval","receive_downtime_slash_request","jail","receive_downtime_slash_request","jail","send_vsc_with_downtime_ack","send_vsc_without_downtime_ack","receive_downtime_slash_ack","receive_downtime_slash_ack","receive_downtime_slash_ack","consumer_send_maturation","consumer_update_val","consumer_del_val","consumer_add_val","insufficient_shares","insufficient_shares","consumer_del_val","send_vsc_not_because_change","send_vsc_without_downtime_ack","insufficient_shares","insufficient_shares","consumer_send_maturation","consumer_send_maturation","insufficient_shares","set_undel_hold_false","send_vsc_without_downtime_ack","insufficient_shares","insufficient_shares","set_undel_hold_false","set_undel_hold_false","set_unval_hold_false","send_vsc_not_because_change","send_vsc_without_downtime_ack","complete_undel_in_endblock","send_vsc_without_downtime_ack","complete_unval_in_endblock","complete_undel_in_endblock","consumer_send_maturation","consumer_send_maturation","consumer_update_val","consumer_send_maturation","insufficient_shares","insufficient_shares","insufficient_shares","insufficient_shares","some_undels_expired_but_not_completed","complete_undel_immediate","set_undel_hold_false","set_undel_hold_false","set_undel_hold_false","set_unval_hold_false","set_unval_hold_false","send_vsc_not_because_change","send_vsc_without_downtime_ack","complete_unval_in_endblock","complete_undel_in_endblock","insufficient_shares","complete_unval_in_endblock","send_vsc_without_downtime_ack","send_vsc_not_because_change","send_vsc_without_downtime_ack"]},{"meta":{"commit":"7ffd0c04e4205cbc9caf212abfe6c59ee43153bf"},"constants":{"P":"provider","C":"consumer","UNBONDING_SECONDS_P":70,"UNBONDING_SECONDS_C":50,"TRUSTING_SECONDS":49,"NUM_VALIDATORS":4,"MAX_VALIDATORS":2,"SLASH_DOUBLESIGN":0,"SLASH_DOWNTIME":0,"JAIL_SECONDS":999999999999999,"BLOCK_SECONDS":6,"INITIAL_DELEGATOR_TOKENS":10000000000000,"DELEGATE_AMT_MIN":1000,"DELEGATE_AMT_MAX":5000,"UNDELEGATE_AMT_MIN":1000,"UNDELEGATE_AMT_MAX":5000,"ISDOWNTIME_PROBABILITY":0.5,"MAX_NUM_PACKETS_FOR_DELIVER":6},"actions":[{"ix":0,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":2,"t":12,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":1,"action":{"kind":"Deliver","chain":"provider","numPackets":1},"partialState":{"h":1,"t":6,"tokens":[5000,4000,3000,2000],"delegation":[4000,3000,2000,1000],"delegatorTokens":10000000000000,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":2,"action":{"kind":"Delegate","val":1,"amt":3227},"partialState":{"h":1,"t":6,"tokens":[5000,7227,3000,2000],"delegation":[4000,6227,2000,1000],"delegatorTokens":9999999996773}},{"ix":3,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":3,"t":18,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":4,"action":{"kind":"Deliver","chain":"consumer","numPackets":3},"partialState":{"h":3,"t":18,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":5,"action":{"kind":"Undelegate","val":0,"amt":1309},"partialState":{"h":1,"t":6,"tokens":[3691,7227,3000,2000],"delegation":[2691,6227,2000,1000],"delegatorTokens":9999999996773}},{"ix":6,"action":{"kind":"Deliver","chain":"consumer","numPackets":6},"partialState":{"h":3,"t":18,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":7,"action":{"kind":"Delegate","val":3,"amt":2598},"partialState":{"h":1,"t":6,"tokens":[3691,7227,3000,4598],"delegation":[2691,6227,2000,3598],"delegatorTokens":9999999994175}},{"ix":8,"action":{"kind":"Undelegate","val":2,"amt":4090},"partialState":{"h":1,"t":6,"tokens":[3691,7227,3000,4598],"delegation":[2691,6227,2000,3598],"delegatorTokens":9999999994175}},{"ix":9,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":10,"action":{"kind":"Deliver","chain":"consumer","numPackets":1},"partialState":{"h":3,"t":18,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":11,"action":{"kind":"Undelegate","val":1,"amt":1895},"partialState":{"h":1,"t":6,"tokens":[3691,5332,3000,4598],"delegation":[2691,4332,2000,3598],"delegatorTokens":9999999994175}},{"ix":12,"action":{"kind":"Undelegate","val":3,"amt":4894},"partialState":{"h":1,"t":6,"tokens":[3691,5332,3000,4598],"delegation":[2691,4332,2000,3598],"delegatorTokens":9999999994175}},{"ix":13,"action":{"kind":"Delegate","val":0,"amt":2362},"partialState":{"h":1,"t":6,"tokens":[6053,5332,3000,4598],"delegation":[5053,4332,2000,3598],"delegatorTokens":9999999991813}},{"ix":14,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":4,"t":24,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":15,"action":{"kind":"Undelegate","val":1,"amt":1827},"partialState":{"h":1,"t":6,"tokens":[6053,3505,3000,4598],"delegation":[5053,2505,2000,3598],"delegatorTokens":9999999991813}},{"ix":16,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":5,"t":30,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":17,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":2,"t":12,"tokens":[6053,3505,3000,4598],"delegation":[5053,2505,2000,3598],"delegatorTokens":9999999991813,"jailed":[null,null,null,null],"status":["bonded","unbonding","unbonded","bonded"]}},{"ix":18,"action":{"kind":"ConsumerSlash","val":2,"infractionHeight":2,"isDowntime":true},"partialState":{"h":5,"t":30,"outstandingDowntime":[false,false,true,false]}},{"ix":19,"action":{"kind":"Undelegate","val":0,"amt":3753},"partialState":{"h":2,"t":12,"tokens":[2300,3505,3000,4598],"delegation":[1300,2505,2000,3598],"delegatorTokens":9999999991813}},{"ix":20,"action":{"kind":"Deliver","chain":"consumer","numPackets":2},"partialState":{"h":5,"t":30,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,false,true,false]}},{"ix":21,"action":{"kind":"Delegate","val":2,"amt":1397},"partialState":{"h":2,"t":12,"tokens":[2300,3505,4397,4598],"delegation":[1300,2505,3397,3598],"delegatorTokens":9999999990416}},{"ix":22,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":3,"t":18,"tokens":[2300,3505,4397,4598],"delegation":[1300,2505,3397,3598],"delegatorTokens":9999999990416,"jailed":[null,null,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":23,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":6,"t":36,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,false,true,false]}},{"ix":24,"action":{"kind":"Undelegate","val":0,"amt":3724},"partialState":{"h":3,"t":18,"tokens":[2300,3505,4397,4598],"delegation":[1300,2505,3397,3598],"delegatorTokens":9999999990416}},{"ix":25,"action":{"kind":"Deliver","chain":"provider","numPackets":5},"partialState":{"h":3,"t":18,"tokens":[2300,3505,4397,4598],"delegation":[1300,2505,3397,3598],"delegatorTokens":9999999990416,"jailed":[null,null,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":26,"action":{"kind":"Deliver","chain":"provider","numPackets":4},"partialState":{"h":3,"t":18,"tokens":[2300,3505,4397,4598],"delegation":[1300,2505,3397,3598],"delegatorTokens":9999999990416,"jailed":[null,null,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":27,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":4,"t":24,"tokens":[2300,3505,4397,4598],"delegation":[1300,2505,3397,3598],"delegatorTokens":9999999990416,"jailed":[null,null,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":28,"action":{"kind":"Delegate","val":2,"amt":3491},"partialState":{"h":4,"t":24,"tokens":[2300,3505,7888,4598],"delegation":[1300,2505,6888,3598],"delegatorTokens":9999999986925}},{"ix":29,"action":{"kind":"Delegate","val":0,"amt":1796},"partialState":{"h":4,"t":24,"tokens":[4096,3505,7888,4598],"delegation":[3096,2505,6888,3598],"delegatorTokens":9999999985129}},{"ix":30,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":31,"action":{"kind":"Undelegate","val":1,"amt":1973},"partialState":{"h":4,"t":24,"tokens":[4096,1532,7888,4598],"delegation":[3096,532,6888,3598],"delegatorTokens":9999999985129}},{"ix":32,"action":{"kind":"ConsumerSlash","val":2,"infractionHeight":0,"isDowntime":true},"partialState":{"h":6,"t":36,"outstandingDowntime":[false,false,true,false]}},{"ix":33,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":7,"t":42,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,false,true,false]}},{"ix":34,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":35,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":8,"t":48,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,false,true,false]}},{"ix":36,"action":{"kind":"Deliver","chain":"provider","numPackets":6},"partialState":{"h":4,"t":24,"tokens":[4096,1532,7888,4598],"delegation":[3096,532,6888,3598],"delegatorTokens":9999999985129,"jailed":[null,null,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":37,"action":{"kind":"ConsumerSlash","val":2,"infractionHeight":1,"isDowntime":true},"partialState":{"h":8,"t":48,"outstandingDowntime":[false,false,true,false]}},{"ix":38,"action":{"kind":"ConsumerSlash","val":0,"infractionHeight":4,"isDowntime":true},"partialState":{"h":8,"t":48,"outstandingDowntime":[true,false,true,false]}},{"ix":39,"action":{"kind":"Deliver","chain":"consumer","numPackets":3},"partialState":{"h":8,"t":48,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[true,false,true,false]}},{"ix":40,"action":{"kind":"ConsumerSlash","val":2,"infractionHeight":1,"isDowntime":true},"partialState":{"h":8,"t":48,"outstandingDowntime":[true,false,true,false]}},{"ix":41,"action":{"kind":"Deliver","chain":"provider","numPackets":6},"partialState":{"h":4,"t":24,"tokens":[4096,1532,7888,4598],"delegation":[3096,532,6888,3598],"delegatorTokens":9999999985129,"jailed":[null,null,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":42,"action":{"kind":"Delegate","val":2,"amt":1204},"partialState":{"h":4,"t":24,"tokens":[4096,1532,9092,4598],"delegation":[3096,532,8092,3598],"delegatorTokens":9999999983925}},{"ix":43,"action":{"kind":"ConsumerSlash","val":0,"infractionHeight":0,"isDowntime":true},"partialState":{"h":8,"t":48,"outstandingDowntime":[true,false,true,false]}},{"ix":44,"action":{"kind":"ConsumerSlash","val":3,"infractionHeight":7,"isDowntime":true},"partialState":{"h":8,"t":48,"outstandingDowntime":[true,false,true,true]}},{"ix":45,"action":{"kind":"Undelegate","val":1,"amt":1983},"partialState":{"h":4,"t":24,"tokens":[4096,1532,9092,4598],"delegation":[3096,532,8092,3598],"delegatorTokens":9999999983925}},{"ix":46,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":9,"t":54,"consumerPower":[null,null,4397,4598],"outstandingDowntime":[true,false,true,true]}},{"ix":47,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":10,"t":60,"consumerPower":[null,null,4397,4598],"outstandingDowntime":[true,false,true,true]}},{"ix":48,"action":{"kind":"Delegate","val":2,"amt":1041},"partialState":{"h":4,"t":24,"tokens":[4096,1532,10133,4598],"delegation":[3096,532,9133,3598],"delegatorTokens":9999999982884}},{"ix":49,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":50,"action":{"kind":"Undelegate","val":1,"amt":1277},"partialState":{"h":4,"t":24,"tokens":[4096,1532,10133,4598],"delegation":[3096,532,9133,3598],"delegatorTokens":9999999982884}},{"ix":51,"action":{"kind":"Deliver","chain":"consumer","numPackets":3},"partialState":{"h":10,"t":60,"consumerPower":[null,null,4397,4598],"outstandingDowntime":[true,false,true,true]}},{"ix":52,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":53,"action":{"kind":"Delegate","val":3,"amt":1324},"partialState":{"h":4,"t":24,"tokens":[4096,1532,10133,5922],"delegation":[3096,532,9133,4922],"delegatorTokens":9999999981560}},{"ix":54,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":11,"t":66,"consumerPower":[null,null,4397,4598],"outstandingDowntime":[true,false,true,true]}},{"ix":55,"action":{"kind":"Undelegate","val":3,"amt":3887},"partialState":{"h":4,"t":24,"tokens":[4096,1532,10133,2035],"delegation":[3096,532,9133,1035],"delegatorTokens":9999999981560}},{"ix":56,"action":{"kind":"Deliver","chain":"provider","numPackets":4},"partialState":{"h":4,"t":24,"tokens":[4096,1532,10133,2035],"delegation":[3096,532,9133,1035],"delegatorTokens":9999999981560,"jailed":[null,null,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":57,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":5,"t":30,"tokens":[4096,1532,10133,2035],"delegation":[3096,532,9133,1035],"delegatorTokens":9999999981560,"jailed":[1000000000000023,null,1000000000000023,1000000000000023],"status":["bonded","unbonding","bonded","unbonding"]}},{"ix":58,"action":{"kind":"Undelegate","val":3,"amt":3421},"partialState":{"h":5,"t":30,"tokens":[4096,1532,10133,2035],"delegation":[3096,532,9133,1035],"delegatorTokens":9999999981560}},{"ix":59,"action":{"kind":"Deliver","chain":"consumer","numPackets":5},"partialState":{"h":11,"t":66,"consumerPower":[null,null,4397,4598],"outstandingDowntime":[true,false,true,true]}},{"ix":60,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":6,"t":36,"tokens":[4096,1532,10133,2035],"delegation":[3096,532,9133,1035],"delegatorTokens":9999999981560,"jailed":[1000000000000023,null,1000000000000023,1000000000000023],"status":["unbonding","bonded","unbonding","unbonding"]}},{"ix":61,"action":{"kind":"Deliver","chain":"consumer","numPackets":3},"partialState":{"h":11,"t":66,"consumerPower":[null,null,4397,4598],"outstandingDowntime":[false,false,false,false]}},{"ix":62,"action":{"kind":"Delegate","val":3,"amt":2491},"partialState":{"h":6,"t":36,"tokens":[4096,1532,10133,4526],"delegation":[3096,532,9133,3526],"delegatorTokens":9999999979069}},{"ix":63,"action":{"kind":"Deliver","chain":"consumer","numPackets":4},"partialState":{"h":11,"t":66,"consumerPower":[null,null,4397,4598],"outstandingDowntime":[false,false,false,false]}},{"ix":64,"action":{"kind":"Undelegate","val":2,"amt":4409},"partialState":{"h":6,"t":36,"tokens":[4096,1532,5724,4526],"delegation":[3096,532,4724,3526],"delegatorTokens":9999999979069}},{"ix":65,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":66,"action":{"kind":"Deliver","chain":"provider","numPackets":5},"partialState":{"h":6,"t":36,"tokens":[4096,1532,5724,4526],"delegation":[3096,532,4724,3526],"delegatorTokens":9999999979069,"jailed":[1000000000000023,null,1000000000000023,1000000000000023],"status":["unbonding","bonded","unbonding","unbonding"]}},{"ix":67,"action":{"kind":"Delegate","val":0,"amt":3884},"partialState":{"h":6,"t":36,"tokens":[7980,1532,5724,4526],"delegation":[6980,532,4724,3526],"delegatorTokens":9999999975185}},{"ix":68,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":69,"action":{"kind":"Delegate","val":3,"amt":1644},"partialState":{"h":6,"t":36,"tokens":[7980,1532,5724,6170],"delegation":[6980,532,4724,5170],"delegatorTokens":9999999973541}},{"ix":70,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":71,"action":{"kind":"Delegate","val":2,"amt":2384},"partialState":{"h":6,"t":36,"tokens":[7980,1532,8108,6170],"delegation":[6980,532,7108,5170],"delegatorTokens":9999999971157}},{"ix":72,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":73,"action":{"kind":"Deliver","chain":"consumer","numPackets":6},"partialState":{"h":11,"t":66,"consumerPower":[null,null,4397,4598],"outstandingDowntime":[false,false,false,false]}},{"ix":74,"action":{"kind":"Delegate","val":0,"amt":1958},"partialState":{"h":6,"t":36,"tokens":[9938,1532,8108,6170],"delegation":[8938,532,7108,5170],"delegatorTokens":9999999969199}},{"ix":75,"action":{"kind":"Delegate","val":3,"amt":1697},"partialState":{"h":6,"t":36,"tokens":[9938,1532,8108,7867],"delegation":[8938,532,7108,6867],"delegatorTokens":9999999967502}},{"ix":76,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":77,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":7,"t":42,"tokens":[9938,1532,8108,7867],"delegation":[8938,532,7108,6867],"delegatorTokens":9999999967502,"jailed":[1000000000000023,null,1000000000000023,1000000000000023],"status":["unbonding","bonded","unbonding","unbonding"]}},{"ix":78,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":79,"action":{"kind":"Deliver","chain":"consumer","numPackets":2},"partialState":{"h":11,"t":66,"consumerPower":[null,null,4397,4598],"outstandingDowntime":[false,false,false,false]}},{"ix":80,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":8,"t":48,"tokens":[9938,1532,8108,7867],"delegation":[8938,532,7108,6867],"delegatorTokens":9999999967502,"jailed":[1000000000000023,null,1000000000000023,1000000000000023],"status":["unbonding","bonded","unbonding","unbonding"]}},{"ix":81,"action":{"kind":"Undelegate","val":2,"amt":3844},"partialState":{"h":8,"t":48,"tokens":[9938,1532,4264,7867],"delegation":[8938,532,3264,6867],"delegatorTokens":9999999967502}},{"ix":82,"action":{"kind":"Delegate","val":2,"amt":1177},"partialState":{"h":8,"t":48,"tokens":[9938,1532,5441,7867],"delegation":[8938,532,4441,6867],"delegatorTokens":9999999966325}},{"ix":83,"action":{"kind":"Deliver","chain":"consumer","numPackets":4},"partialState":{"h":11,"t":66,"consumerPower":[null,null,4397,4598],"outstandingDowntime":[false,false,false,false]}},{"ix":84,"action":{"kind":"Undelegate","val":1,"amt":3207},"partialState":{"h":8,"t":48,"tokens":[9938,1532,5441,7867],"delegation":[8938,532,4441,6867],"delegatorTokens":9999999966325}},{"ix":85,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":86,"action":{"kind":"Deliver","chain":"provider","numPackets":6},"partialState":{"h":8,"t":48,"tokens":[9938,1532,5441,7867],"delegation":[8938,532,4441,6867],"delegatorTokens":9999999966325,"jailed":[1000000000000023,null,1000000000000023,1000000000000023],"status":["unbonding","bonded","unbonding","unbonding"]}},{"ix":87,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":12,"t":72,"consumerPower":[null,1532,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":88,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":9,"t":54,"tokens":[9938,1532,5441,7867],"delegation":[8938,532,4441,6867],"delegatorTokens":9999999966325,"jailed":[1000000000000023,null,1000000000000023,1000000000000023],"status":["unbonding","bonded","unbonding","unbonding"]}},{"ix":89,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":10,"t":60,"tokens":[9938,1532,5441,7867],"delegation":[8938,532,4441,6867],"delegatorTokens":9999999966325,"jailed":[1000000000000023,null,1000000000000023,1000000000000023],"status":["unbonding","bonded","unbonding","unbonding"]}},{"ix":90,"action":{"kind":"Delegate","val":1,"amt":3569},"partialState":{"h":10,"t":60,"tokens":[9938,5101,5441,7867],"delegation":[8938,4101,4441,6867],"delegatorTokens":9999999962756}},{"ix":91,"action":{"kind":"Undelegate","val":2,"amt":1688},"partialState":{"h":10,"t":60,"tokens":[9938,5101,3753,7867],"delegation":[8938,4101,2753,6867],"delegatorTokens":9999999962756}},{"ix":92,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":93,"action":{"kind":"Delegate","val":3,"amt":1616},"partialState":{"h":10,"t":60,"tokens":[9938,5101,3753,9483],"delegation":[8938,4101,2753,8483],"delegatorTokens":9999999961140}},{"ix":94,"action":{"kind":"Undelegate","val":1,"amt":1387},"partialState":{"h":10,"t":60,"tokens":[9938,3714,3753,9483],"delegation":[8938,2714,2753,8483],"delegatorTokens":9999999961140}},{"ix":95,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":13,"t":78,"consumerPower":[null,1532,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":96,"action":{"kind":"Delegate","val":1,"amt":3888},"partialState":{"h":10,"t":60,"tokens":[9938,7602,3753,9483],"delegation":[8938,6602,2753,8483],"delegatorTokens":9999999957252}},{"ix":97,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":98,"action":{"kind":"Deliver","chain":"provider","numPackets":3},"partialState":{"h":10,"t":60,"tokens":[9938,7602,3753,9483],"delegation":[8938,6602,2753,8483],"delegatorTokens":9999999957252,"jailed":[1000000000000023,null,1000000000000023,1000000000000023],"status":["unbonding","bonded","unbonding","unbonding"]}},{"ix":99,"action":{"kind":"Undelegate","val":0,"amt":3878},"partialState":{"h":10,"t":60,"tokens":[6060,7602,3753,9483],"delegation":[5060,6602,2753,8483],"delegatorTokens":9999999957252}},{"ix":100,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":101,"action":{"kind":"Deliver","chain":"consumer","numPackets":4},"partialState":{"h":13,"t":78,"consumerPower":[null,1532,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":102,"action":{"kind":"Delegate","val":0,"amt":3814},"partialState":{"h":10,"t":60,"tokens":[9874,7602,3753,9483],"delegation":[8874,6602,2753,8483],"delegatorTokens":9999999953438}},{"ix":103,"action":{"kind":"Delegate","val":3,"amt":1397},"partialState":{"h":10,"t":60,"tokens":[9874,7602,3753,10880],"delegation":[8874,6602,2753,9880],"delegatorTokens":9999999952041}},{"ix":104,"action":{"kind":"Undelegate","val":1,"amt":2416},"partialState":{"h":10,"t":60,"tokens":[9874,5186,3753,10880],"delegation":[8874,4186,2753,9880],"delegatorTokens":9999999952041}},{"ix":105,"action":{"kind":"Undelegate","val":2,"amt":4719},"partialState":{"h":10,"t":60,"tokens":[9874,5186,3753,10880],"delegation":[8874,4186,2753,9880],"delegatorTokens":9999999952041}},{"ix":106,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":107,"action":{"kind":"Delegate","val":0,"amt":2898},"partialState":{"h":10,"t":60,"tokens":[12772,5186,3753,10880],"delegation":[11772,4186,2753,9880],"delegatorTokens":9999999949143}},{"ix":108,"action":{"kind":"Deliver","chain":"provider","numPackets":2},"partialState":{"h":10,"t":60,"tokens":[12772,5186,3753,10880],"delegation":[11772,4186,2753,9880],"delegatorTokens":9999999949143,"jailed":[1000000000000023,null,1000000000000023,1000000000000023],"status":["unbonding","bonded","unbonding","unbonding"]}},{"ix":109,"action":{"kind":"Undelegate","val":1,"amt":3077},"partialState":{"h":10,"t":60,"tokens":[12772,2109,3753,10880],"delegation":[11772,1109,2753,9880],"delegatorTokens":9999999949143}},{"ix":110,"action":{"kind":"Undelegate","val":1,"amt":3012},"partialState":{"h":10,"t":60,"tokens":[12772,2109,3753,10880],"delegation":[11772,1109,2753,9880],"delegatorTokens":9999999949143}},{"ix":111,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":14,"t":84,"consumerPower":[null,1532,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":112,"action":{"kind":"Deliver","chain":"provider","numPackets":6},"partialState":{"h":10,"t":60,"tokens":[12772,2109,3753,10880],"delegation":[11772,1109,2753,9880],"delegatorTokens":9999999949143,"jailed":[1000000000000023,null,1000000000000023,1000000000000023],"status":["unbonding","bonded","unbonding","unbonding"]}},{"ix":113,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":15,"t":90,"consumerPower":[null,1532,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":114,"action":{"kind":"Delegate","val":0,"amt":2992},"partialState":{"h":10,"t":60,"tokens":[15764,2109,3753,10880],"delegation":[14764,1109,2753,9880],"delegatorTokens":9999999946151}},{"ix":115,"action":{"kind":"Delegate","val":1,"amt":2676},"partialState":{"h":10,"t":60,"tokens":[15764,4785,3753,10880],"delegation":[14764,3785,2753,9880],"delegatorTokens":9999999943475}},{"ix":116,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":11,"t":66,"tokens":[15764,4785,3753,10880],"delegation":[14764,3785,2753,9880],"delegatorTokens":9999999943475,"jailed":[1000000000000023,null,1000000000000023,1000000000000023],"status":["unbonding","bonded","unbonding","unbonding"]}},{"ix":117,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":118,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":12,"t":72,"tokens":[15764,4785,3753,10880],"delegation":[14764,3785,2753,9880],"delegatorTokens":9999999943475,"jailed":[1000000000000023,null,1000000000000023,1000000000000023],"status":["unbonding","bonded","unbonding","unbonding"]}},{"ix":119,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":16,"t":96,"consumerPower":[null,1532,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":120,"action":{"kind":"Deliver","chain":"consumer","numPackets":3},"partialState":{"h":16,"t":96,"consumerPower":[null,1532,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":121,"action":{"kind":"Deliver","chain":"provider","numPackets":5},"partialState":{"h":12,"t":72,"tokens":[15764,4785,3753,10880],"delegation":[14764,3785,2753,9880],"delegatorTokens":9999999943475,"jailed":[1000000000000023,null,1000000000000023,1000000000000023],"status":["unbonding","bonded","unbonding","unbonding"]}},{"ix":122,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":13,"t":78,"tokens":[15764,4785,3753,10880],"delegation":[14764,3785,2753,9880],"delegatorTokens":9999999943475,"jailed":[1000000000000023,null,1000000000000023,1000000000000023],"status":["unbonding","bonded","unbonding","unbonding"]}},{"ix":123,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":14,"t":84,"tokens":[15764,4785,3753,10880],"delegation":[14764,3785,2753,9880],"delegatorTokens":9999999943475,"jailed":[1000000000000023,null,1000000000000023,1000000000000023],"status":["unbonding","bonded","unbonding","unbonding"]}},{"ix":124,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":125,"action":{"kind":"Undelegate","val":3,"amt":4676},"partialState":{"h":14,"t":84,"tokens":[15764,4785,3753,6204],"delegation":[14764,3785,2753,5204],"delegatorTokens":9999999943475}},{"ix":126,"action":{"kind":"Deliver","chain":"consumer","numPackets":6},"partialState":{"h":16,"t":96,"consumerPower":[null,1532,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":127,"action":{"kind":"Delegate","val":3,"amt":2616},"partialState":{"h":14,"t":84,"tokens":[15764,4785,3753,8820],"delegation":[14764,3785,2753,7820],"delegatorTokens":9999999940859}},{"ix":128,"action":{"kind":"Deliver","chain":"consumer","numPackets":5},"partialState":{"h":16,"t":96,"consumerPower":[null,1532,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":129,"action":{"kind":"Deliver","chain":"consumer","numPackets":1},"partialState":{"h":16,"t":96,"consumerPower":[null,1532,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":130,"action":{"kind":"Delegate","val":2,"amt":4923},"partialState":{"h":14,"t":84,"tokens":[15764,4785,8676,8820],"delegation":[14764,3785,7676,7820],"delegatorTokens":9999999935936}},{"ix":131,"action":{"kind":"Deliver","chain":"provider","numPackets":5},"partialState":{"h":14,"t":84,"tokens":[15764,4785,8676,8820],"delegation":[14764,3785,7676,7820],"delegatorTokens":9999999935936,"jailed":[1000000000000023,null,1000000000000023,1000000000000023],"status":["unbonding","bonded","unbonding","unbonding"]}},{"ix":132,"action":{"kind":"Deliver","chain":"consumer","numPackets":2},"partialState":{"h":16,"t":96,"consumerPower":[null,1532,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":133,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":15,"t":90,"tokens":[15764,4785,8676,8820],"delegation":[14764,3785,7676,7820],"delegatorTokens":9999999935936,"jailed":[1000000000000023,null,1000000000000023,1000000000000023],"status":["unbonding","bonded","unbonding","unbonding"]}},{"ix":134,"action":{"kind":"Delegate","val":2,"amt":1468},"partialState":{"h":15,"t":90,"tokens":[15764,4785,10144,8820],"delegation":[14764,3785,9144,7820],"delegatorTokens":9999999934468}},{"ix":135,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":136,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":16,"t":96,"tokens":[15764,4785,10144,8820],"delegation":[14764,3785,9144,7820],"delegatorTokens":9999999934468,"jailed":[1000000000000023,null,1000000000000023,1000000000000023],"status":["unbonding","bonded","unbonding","unbonding"]}},{"ix":137,"action":{"kind":"Undelegate","val":1,"amt":4315},"partialState":{"h":16,"t":96,"tokens":[15764,4785,10144,8820],"delegation":[14764,3785,9144,7820],"delegatorTokens":9999999934468}},{"ix":138,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":17,"t":102,"consumerPower":[null,4785,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":139,"action":{"kind":"Undelegate","val":0,"amt":1732},"partialState":{"h":16,"t":96,"tokens":[14032,4785,10144,8820],"delegation":[13032,3785,9144,7820],"delegatorTokens":9999999934468}},{"ix":140,"action":{"kind":"Undelegate","val":2,"amt":1617},"partialState":{"h":16,"t":96,"tokens":[14032,4785,8527,8820],"delegation":[13032,3785,7527,7820],"delegatorTokens":9999999934468}},{"ix":141,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":17,"t":102,"tokens":[14032,4785,8527,8820],"delegation":[13032,3785,7527,7820],"delegatorTokens":9999999934468,"jailed":[1000000000000023,null,1000000000000023,1000000000000023],"status":["unbonding","bonded","unbonding","unbonding"]}},{"ix":142,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":143,"action":{"kind":"Delegate","val":0,"amt":3800},"partialState":{"h":17,"t":102,"tokens":[17832,4785,8527,8820],"delegation":[16832,3785,7527,7820],"delegatorTokens":9999999930668}},{"ix":144,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":145,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":146,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":18,"t":108,"consumerPower":[null,4785,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":147,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":148,"action":{"kind":"Undelegate","val":1,"amt":2752},"partialState":{"h":17,"t":102,"tokens":[17832,2033,8527,8820],"delegation":[16832,1033,7527,7820],"delegatorTokens":9999999930668}},{"ix":149,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":18,"t":108,"tokens":[17832,2033,8527,8820],"delegation":[16832,1033,7527,7820],"delegatorTokens":9999999930668,"jailed":[1000000000000023,null,1000000000000023,1000000000000023],"status":["unbonding","bonded","unbonding","unbonding"]}},{"ix":150,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":19,"t":114,"consumerPower":[null,4785,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":151,"action":{"kind":"Deliver","chain":"provider","numPackets":5},"partialState":{"h":18,"t":108,"tokens":[17832,2033,8527,8820],"delegation":[16832,1033,7527,7820],"delegatorTokens":9999999930668,"jailed":[1000000000000023,null,1000000000000023,1000000000000023],"status":["unbonding","bonded","unbonding","unbonding"]}},{"ix":152,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":19,"t":114,"tokens":[17832,2033,8527,8820],"delegation":[16832,1033,7527,7820],"delegatorTokens":9999999939452,"jailed":[1000000000000023,null,1000000000000023,1000000000000023],"status":["unbonding","bonded","unbonding","unbonding"]}},{"ix":153,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":20,"t":120,"tokens":[17832,2033,8527,8820],"delegation":[16832,1033,7527,7820],"delegatorTokens":9999999939452,"jailed":[1000000000000023,null,1000000000000023,1000000000000023],"status":["unbonding","bonded","unbonding","unbonding"]}},{"ix":154,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":155,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":156,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":157,"action":{"kind":"Deliver","chain":"provider","numPackets":3},"partialState":{"h":20,"t":120,"tokens":[17832,2033,8527,8820],"delegation":[16832,1033,7527,7820],"delegatorTokens":9999999939452,"jailed":[1000000000000023,null,1000000000000023,1000000000000023],"status":["unbonding","bonded","unbonding","unbonding"]}},{"ix":158,"action":{"kind":"Deliver","chain":"provider","numPackets":3},"partialState":{"h":20,"t":120,"tokens":[17832,2033,8527,8820],"delegation":[16832,1033,7527,7820],"delegatorTokens":9999999939452,"jailed":[1000000000000023,null,1000000000000023,1000000000000023],"status":["unbonding","bonded","unbonding","unbonding"]}},{"ix":159,"action":{"kind":"Delegate","val":0,"amt":4977},"partialState":{"h":20,"t":120,"tokens":[22809,2033,8527,8820],"delegation":[21809,1033,7527,7820],"delegatorTokens":9999999934475}},{"ix":160,"action":{"kind":"Delegate","val":2,"amt":4179},"partialState":{"h":20,"t":120,"tokens":[22809,2033,12706,8820],"delegation":[21809,1033,11706,7820],"delegatorTokens":9999999930296}},{"ix":161,"action":{"kind":"Deliver","chain":"provider","numPackets":6},"partialState":{"h":20,"t":120,"tokens":[22809,2033,12706,8820],"delegation":[21809,1033,11706,7820],"delegatorTokens":9999999930296,"jailed":[1000000000000023,null,1000000000000023,1000000000000023],"status":["unbonding","bonded","unbonding","unbonding"]}},{"ix":162,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":163,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":21,"t":126,"tokens":[22809,2033,12706,8820],"delegation":[21809,1033,11706,7820],"delegatorTokens":9999999930296,"jailed":[1000000000000023,null,1000000000000023,1000000000000023],"status":["unbonding","bonded","unbonding","unbonding"]}},{"ix":164,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":22,"t":132,"tokens":[22809,2033,12706,8820],"delegation":[21809,1033,11706,7820],"delegatorTokens":9999999930296,"jailed":[1000000000000023,null,1000000000000023,1000000000000023],"status":["unbonding","bonded","unbonding","unbonding"]}},{"ix":165,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":166,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":167,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":20,"t":120,"consumerPower":[null,4785,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":168,"action":{"kind":"Deliver","chain":"provider","numPackets":2},"partialState":{"h":22,"t":132,"tokens":[22809,2033,12706,8820],"delegation":[21809,1033,11706,7820],"delegatorTokens":9999999930296,"jailed":[1000000000000023,null,1000000000000023,1000000000000023],"status":["unbonding","bonded","unbonding","unbonding"]}},{"ix":169,"action":{"kind":"Undelegate","val":3,"amt":4734},"partialState":{"h":22,"t":132,"tokens":[22809,2033,12706,4086],"delegation":[21809,1033,11706,3086],"delegatorTokens":9999999930296}},{"ix":170,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":21,"t":126,"consumerPower":[null,4785,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":171,"action":{"kind":"Deliver","chain":"provider","numPackets":6},"partialState":{"h":22,"t":132,"tokens":[22809,2033,12706,4086],"delegation":[21809,1033,11706,3086],"delegatorTokens":9999999930296,"jailed":[1000000000000023,null,1000000000000023,1000000000000023],"status":["unbonding","bonded","unbonding","unbonding"]}},{"ix":172,"action":{"kind":"Deliver","chain":"consumer","numPackets":3},"partialState":{"h":21,"t":126,"consumerPower":[null,4785,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":173,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":23,"t":138,"tokens":[22809,2033,12706,4086],"delegation":[21809,1033,11706,3086],"delegatorTokens":9999999930296,"jailed":[1000000000000023,null,1000000000000023,1000000000000023],"status":["unbonding","bonded","unbonding","unbonding"]}},{"ix":174,"action":{"kind":"Delegate","val":3,"amt":3416},"partialState":{"h":23,"t":138,"tokens":[22809,2033,12706,7502],"delegation":[21809,1033,11706,6502],"delegatorTokens":9999999926880}},{"ix":175,"action":{"kind":"Deliver","chain":"consumer","numPackets":2},"partialState":{"h":21,"t":126,"consumerPower":[null,4785,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":176,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":22,"t":132,"consumerPower":[null,2033,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":177,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":24,"t":144,"tokens":[22809,2033,12706,7502],"delegation":[21809,1033,11706,6502],"delegatorTokens":9999999926880,"jailed":[1000000000000023,null,1000000000000023,1000000000000023],"status":["unbonding","bonded","unbonding","unbonding"]}},{"ix":178,"action":{"kind":"Undelegate","val":2,"amt":1042},"partialState":{"h":24,"t":144,"tokens":[22809,2033,11664,7502],"delegation":[21809,1033,10664,6502],"delegatorTokens":9999999926880}},{"ix":179,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":23,"t":138,"consumerPower":[null,2033,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":180,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":25,"t":150,"tokens":[22809,2033,11664,7502],"delegation":[21809,1033,10664,6502],"delegatorTokens":9999999926880,"jailed":[1000000000000023,null,1000000000000023,1000000000000023],"status":["unbonding","bonded","unbonding","unbonding"]}},{"ix":181,"action":{"kind":"Delegate","val":1,"amt":1473},"partialState":{"h":25,"t":150,"tokens":[22809,3506,11664,7502],"delegation":[21809,2506,10664,6502],"delegatorTokens":9999999925407}},{"ix":182,"action":{"kind":"Delegate","val":0,"amt":4702},"partialState":{"h":25,"t":150,"tokens":[27511,3506,11664,7502],"delegation":[26511,2506,10664,6502],"delegatorTokens":9999999920705}},{"ix":183,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":26,"t":156,"tokens":[27511,3506,11664,7502],"delegation":[26511,2506,10664,6502],"delegatorTokens":9999999920705,"jailed":[1000000000000023,null,1000000000000023,1000000000000023],"status":["unbonding","bonded","unbonding","unbonding"]}},{"ix":184,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":185,"action":{"kind":"Undelegate","val":0,"amt":3984},"partialState":{"h":26,"t":156,"tokens":[23527,3506,11664,7502],"delegation":[22527,2506,10664,6502],"delegatorTokens":9999999920705}},{"ix":186,"action":{"kind":"Undelegate","val":0,"amt":1078},"partialState":{"h":26,"t":156,"tokens":[22449,3506,11664,7502],"delegation":[21449,2506,10664,6502],"delegatorTokens":9999999920705}},{"ix":187,"action":{"kind":"Deliver","chain":"provider","numPackets":3},"partialState":{"h":26,"t":156,"tokens":[22449,3506,11664,7502],"delegation":[21449,2506,10664,6502],"delegatorTokens":9999999920705,"jailed":[1000000000000023,null,1000000000000023,1000000000000023],"status":["unbonding","bonded","unbonding","unbonding"]}},{"ix":188,"action":{"kind":"Delegate","val":1,"amt":1246},"partialState":{"h":26,"t":156,"tokens":[22449,4752,11664,7502],"delegation":[21449,3752,10664,6502],"delegatorTokens":9999999919459}},{"ix":189,"action":{"kind":"Deliver","chain":"provider","numPackets":5},"partialState":{"h":26,"t":156,"tokens":[22449,4752,11664,7502],"delegation":[21449,3752,10664,6502],"delegatorTokens":9999999919459,"jailed":[1000000000000023,null,1000000000000023,1000000000000023],"status":["unbonding","bonded","unbonding","unbonding"]}},{"ix":190,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":191,"action":{"kind":"Undelegate","val":3,"amt":2090},"partialState":{"h":26,"t":156,"tokens":[22449,4752,11664,5412],"delegation":[21449,3752,10664,4412],"delegatorTokens":9999999919459}},{"ix":192,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":193,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":27,"t":162,"tokens":[22449,4752,11664,5412],"delegation":[21449,3752,10664,4412],"delegatorTokens":9999999929728,"jailed":[1000000000000023,null,1000000000000023,1000000000000023],"status":["unbonding","bonded","unbonding","unbonding"]}},{"ix":194,"action":{"kind":"Deliver","chain":"provider","numPackets":3},"partialState":{"h":27,"t":162,"tokens":[22449,4752,11664,5412],"delegation":[21449,3752,10664,4412],"delegatorTokens":9999999929728,"jailed":[1000000000000023,null,1000000000000023,1000000000000023],"status":["unbonding","bonded","unbonding","unbonding"]}},{"ix":195,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":28,"t":168,"tokens":[22449,4752,11664,5412],"delegation":[21449,3752,10664,4412],"delegatorTokens":9999999929728,"jailed":[1000000000000023,null,1000000000000023,1000000000000023],"status":["unbonded","bonded","unbonded","unbonded"]}},{"ix":196,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":24,"t":144,"consumerPower":[null,2033,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":197,"action":{"kind":"Undelegate","val":1,"amt":2041},"partialState":{"h":28,"t":168,"tokens":[22449,2711,11664,5412],"delegation":[21449,1711,10664,4412],"delegatorTokens":9999999929728}},{"ix":198,"action":{"kind":"Deliver","chain":"consumer","numPackets":4},"partialState":{"h":24,"t":144,"consumerPower":[null,2033,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":199,"action":{"kind":"Delegate","val":1,"amt":3114},"partialState":{"h":28,"t":168,"tokens":[22449,5825,11664,5412],"delegation":[21449,4825,10664,4412],"delegatorTokens":9999999926614}}],"events":["insufficient_shares","insufficient_shares","more_than_one_third_val_power_change","send_vsc_without_downtime_ack","send_downtime_slash_request","more_than_one_third_val_power_change","send_vsc_without_downtime_ack","insufficient_shares","downtime_slash_request_outstanding","downtime_slash_request_outstanding","send_downtime_slash_request","downtime_slash_request_outstanding","downtime_slash_request_outstanding","send_downtime_slash_request","insufficient_shares","consumer_del_val","consumer_del_val","consumer_add_val","consumer_add_val","insufficient_shares","rebond_unval","receive_downtime_slash_request","jail","receive_downtime_slash_request","jail","receive_downtime_slash_request","jail","send_vsc_with_downtime_ack","insufficient_shares","more_than_one_third_val_power_change","rebond_unval","send_vsc_without_downtime_ack","receive_downtime_slash_ack","receive_downtime_slash_ack","receive_downtime_slash_ack","send_vsc_not_because_change","send_vsc_without_downtime_ack","insufficient_shares","consumer_del_val","consumer_del_val","consumer_del_val","consumer_add_val","send_vsc_not_because_change","send_vsc_without_downtime_ack","insufficient_shares","insufficient_shares","send_vsc_without_downtime_ack","some_undels_expired_but_not_completed","some_undels_expired_but_not_completed","send_vsc_not_because_change","send_vsc_without_downtime_ack","insufficient_shares","consumer_update_val","some_undels_expired_but_not_completed","send_vsc_not_because_change","send_vsc_without_downtime_ack","consumer_send_maturation","consumer_send_maturation","send_vsc_without_downtime_ack","some_undels_expired_but_not_completed","complete_undel_immediate","complete_undel_immediate","complete_undel_immediate","complete_undel_immediate","some_undels_expired_but_not_completed","consumer_send_maturation","consumer_send_maturation","consumer_send_maturation","some_undels_expired_but_not_completed","send_vsc_not_because_change","send_vsc_without_downtime_ack","consumer_update_val","consumer_send_maturation","send_vsc_not_because_change","send_vsc_without_downtime_ack","send_vsc_without_downtime_ack","some_undels_expired_but_not_completed","complete_undel_immediate","complete_undel_immediate","set_unval_hold_false","set_unval_hold_false","set_unval_hold_false","complete_undel_immediate","send_vsc_without_downtime_ack","complete_unval_in_endblock","complete_unval_in_endblock","complete_unval_in_endblock"]},{"meta":{"commit":"7ffd0c04e4205cbc9caf212abfe6c59ee43153bf"},"constants":{"P":"provider","C":"consumer","UNBONDING_SECONDS_P":70,"UNBONDING_SECONDS_C":50,"TRUSTING_SECONDS":49,"NUM_VALIDATORS":4,"MAX_VALIDATORS":2,"SLASH_DOUBLESIGN":0,"SLASH_DOWNTIME":0,"JAIL_SECONDS":999999999999999,"BLOCK_SECONDS":6,"INITIAL_DELEGATOR_TOKENS":10000000000000,"DELEGATE_AMT_MIN":1000,"DELEGATE_AMT_MAX":5000,"UNDELEGATE_AMT_MIN":1000,"UNDELEGATE_AMT_MAX":5000,"ISDOWNTIME_PROBABILITY":0.5,"MAX_NUM_PACKETS_FOR_DELIVER":6},"actions":[{"ix":0,"action":{"kind":"Deliver","chain":"provider","numPackets":1},"partialState":{"h":1,"t":6,"tokens":[5000,4000,3000,2000],"delegation":[4000,3000,2000,1000],"delegatorTokens":10000000000000,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":1,"action":{"kind":"Delegate","val":3,"amt":3623},"partialState":{"h":1,"t":6,"tokens":[5000,4000,3000,5623],"delegation":[4000,3000,2000,4623],"delegatorTokens":9999999996377}},{"ix":2,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":3,"action":{"kind":"Delegate","val":3,"amt":3178},"partialState":{"h":1,"t":6,"tokens":[5000,4000,3000,8801],"delegation":[4000,3000,2000,7801],"delegatorTokens":9999999993199}},{"ix":4,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":2,"t":12,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":5,"action":{"kind":"Delegate","val":0,"amt":4799},"partialState":{"h":1,"t":6,"tokens":[9799,4000,3000,8801],"delegation":[8799,3000,2000,7801],"delegatorTokens":9999999988400}},{"ix":6,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":7,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":3,"t":18,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":8,"action":{"kind":"ConsumerSlash","val":0,"infractionHeight":0,"isDowntime":false},"partialState":{"h":3,"t":18,"outstandingDowntime":[false,false,false,false]}},{"ix":9,"action":{"kind":"Undelegate","val":1,"amt":2968},"partialState":{"h":1,"t":6,"tokens":[9799,1032,3000,8801],"delegation":[8799,32,2000,7801],"delegatorTokens":9999999988400}},{"ix":10,"action":{"kind":"Delegate","val":1,"amt":3116},"partialState":{"h":1,"t":6,"tokens":[9799,4148,3000,8801],"delegation":[8799,3148,2000,7801],"delegatorTokens":9999999985284}},{"ix":11,"action":{"kind":"ConsumerSlash","val":3,"infractionHeight":0,"isDowntime":true},"partialState":{"h":3,"t":18,"outstandingDowntime":[false,false,false,true]}},{"ix":12,"action":{"kind":"Undelegate","val":0,"amt":3509},"partialState":{"h":1,"t":6,"tokens":[6290,4148,3000,8801],"delegation":[5290,3148,2000,7801],"delegatorTokens":9999999985284}},{"ix":13,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":2,"t":12,"tokens":[6290,4148,3000,8801],"delegation":[5290,3148,2000,7801],"delegatorTokens":9999999985284,"jailed":[null,null,null,null],"status":["bonded","unbonding","unbonded","bonded"]}},{"ix":14,"action":{"kind":"ConsumerSlash","val":0,"infractionHeight":1,"isDowntime":true},"partialState":{"h":3,"t":18,"outstandingDowntime":[true,false,false,true]}},{"ix":15,"action":{"kind":"Undelegate","val":3,"amt":1191},"partialState":{"h":2,"t":12,"tokens":[6290,4148,3000,7610],"delegation":[5290,3148,2000,6610],"delegatorTokens":9999999985284}},{"ix":16,"action":{"kind":"Deliver","chain":"consumer","numPackets":6},"partialState":{"h":3,"t":18,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[true,false,false,true]}},{"ix":17,"action":{"kind":"Delegate","val":1,"amt":2289},"partialState":{"h":2,"t":12,"tokens":[6290,6437,3000,7610],"delegation":[5290,5437,2000,6610],"delegatorTokens":9999999982995}},{"ix":18,"action":{"kind":"Undelegate","val":1,"amt":3617},"partialState":{"h":2,"t":12,"tokens":[6290,2820,3000,7610],"delegation":[5290,1820,2000,6610],"delegatorTokens":9999999982995}},{"ix":19,"action":{"kind":"Undelegate","val":0,"amt":3060},"partialState":{"h":2,"t":12,"tokens":[3230,2820,3000,7610],"delegation":[2230,1820,2000,6610],"delegatorTokens":9999999982995}},{"ix":20,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":21,"action":{"kind":"Delegate","val":0,"amt":3562},"partialState":{"h":2,"t":12,"tokens":[6792,2820,3000,7610],"delegation":[5792,1820,2000,6610],"delegatorTokens":9999999979433}},{"ix":22,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":23,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":24,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":3,"t":18,"tokens":[6792,2820,3000,7610],"delegation":[5792,1820,2000,6610],"delegatorTokens":9999999979433,"jailed":[null,null,null,null],"status":["bonded","unbonding","unbonded","bonded"]}},{"ix":25,"action":{"kind":"Deliver","chain":"consumer","numPackets":2},"partialState":{"h":3,"t":18,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[true,false,false,true]}},{"ix":26,"action":{"kind":"Delegate","val":3,"amt":4427},"partialState":{"h":3,"t":18,"tokens":[6792,2820,3000,12037],"delegation":[5792,1820,2000,11037],"delegatorTokens":9999999975006}},{"ix":27,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":28,"action":{"kind":"Deliver","chain":"provider","numPackets":2},"partialState":{"h":3,"t":18,"tokens":[6792,2820,3000,12037],"delegation":[5792,1820,2000,11037],"delegatorTokens":9999999975006,"jailed":[null,null,null,null],"status":["bonded","unbonding","unbonded","bonded"]}},{"ix":29,"action":{"kind":"Deliver","chain":"consumer","numPackets":2},"partialState":{"h":3,"t":18,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[true,false,false,true]}},{"ix":30,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":31,"action":{"kind":"Deliver","chain":"consumer","numPackets":1},"partialState":{"h":3,"t":18,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[true,false,false,true]}},{"ix":32,"action":{"kind":"Undelegate","val":3,"amt":1689},"partialState":{"h":3,"t":18,"tokens":[6792,2820,3000,10348],"delegation":[5792,1820,2000,9348],"delegatorTokens":9999999975006}},{"ix":33,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":34,"action":{"kind":"ConsumerSlash","val":3,"infractionHeight":1,"isDowntime":false},"partialState":{"h":3,"t":18,"outstandingDowntime":[true,false,false,true]}},{"ix":35,"action":{"kind":"Deliver","chain":"provider","numPackets":5},"partialState":{"h":3,"t":18,"tokens":[6792,2820,3000,10348],"delegation":[5792,1820,2000,9348],"delegatorTokens":9999999975006,"jailed":[null,null,null,null],"status":["bonded","unbonding","unbonded","bonded"]}},{"ix":36,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":37,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":4,"t":24,"tokens":[6792,2820,3000,10348],"delegation":[5792,1820,2000,9348],"delegatorTokens":9999999975006,"jailed":[null,null,null,null],"status":["bonded","unbonding","unbonded","bonded"]}},{"ix":38,"action":{"kind":"ConsumerSlash","val":0,"infractionHeight":2,"isDowntime":false},"partialState":{"h":3,"t":18,"outstandingDowntime":[true,false,false,true]}},{"ix":39,"action":{"kind":"Delegate","val":2,"amt":1639},"partialState":{"h":4,"t":24,"tokens":[6792,2820,4639,10348],"delegation":[5792,1820,3639,9348],"delegatorTokens":9999999973367}},{"ix":40,"action":{"kind":"Undelegate","val":1,"amt":3875},"partialState":{"h":4,"t":24,"tokens":[6792,2820,4639,10348],"delegation":[5792,1820,3639,9348],"delegatorTokens":9999999973367}},{"ix":41,"action":{"kind":"Deliver","chain":"provider","numPackets":6},"partialState":{"h":4,"t":24,"tokens":[6792,2820,4639,10348],"delegation":[5792,1820,3639,9348],"delegatorTokens":9999999973367,"jailed":[null,null,null,null],"status":["bonded","unbonding","unbonded","bonded"]}},{"ix":42,"action":{"kind":"Delegate","val":0,"amt":2714},"partialState":{"h":4,"t":24,"tokens":[9506,2820,4639,10348],"delegation":[8506,1820,3639,9348],"delegatorTokens":9999999970653}},{"ix":43,"action":{"kind":"Undelegate","val":3,"amt":3638},"partialState":{"h":4,"t":24,"tokens":[9506,2820,4639,6710],"delegation":[8506,1820,3639,5710],"delegatorTokens":9999999970653}},{"ix":44,"action":{"kind":"ConsumerSlash","val":0,"infractionHeight":1,"isDowntime":true},"partialState":{"h":3,"t":18,"outstandingDowntime":[true,false,false,true]}},{"ix":45,"action":{"kind":"Delegate","val":2,"amt":3651},"partialState":{"h":4,"t":24,"tokens":[9506,2820,8290,6710],"delegation":[8506,1820,7290,5710],"delegatorTokens":9999999967002}},{"ix":46,"action":{"kind":"ConsumerSlash","val":2,"infractionHeight":0,"isDowntime":true},"partialState":{"h":3,"t":18,"outstandingDowntime":[true,false,true,true]}},{"ix":47,"action":{"kind":"Deliver","chain":"provider","numPackets":2},"partialState":{"h":4,"t":24,"tokens":[9506,2820,8290,6710],"delegation":[8506,1820,7290,5710],"delegatorTokens":9999999967002,"jailed":[null,null,null,null],"status":["bonded","unbonding","unbonded","bonded"]}},{"ix":48,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":4,"t":24,"consumerPower":[6290,null,null,8801],"outstandingDowntime":[true,false,true,true]}},{"ix":49,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":5,"t":30,"consumerPower":[6290,null,null,8801],"outstandingDowntime":[true,false,true,true]}},{"ix":50,"action":{"kind":"Undelegate","val":2,"amt":1844},"partialState":{"h":4,"t":24,"tokens":[9506,2820,6446,6710],"delegation":[8506,1820,5446,5710],"delegatorTokens":9999999967002}},{"ix":51,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":6,"t":36,"consumerPower":[6290,null,null,8801],"outstandingDowntime":[true,false,true,true]}},{"ix":52,"action":{"kind":"Deliver","chain":"consumer","numPackets":5},"partialState":{"h":6,"t":36,"consumerPower":[6290,null,null,8801],"outstandingDowntime":[true,false,true,true]}},{"ix":53,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":54,"action":{"kind":"Undelegate","val":3,"amt":1271},"partialState":{"h":4,"t":24,"tokens":[9506,2820,6446,5439],"delegation":[8506,1820,5446,4439],"delegatorTokens":9999999967002}},{"ix":55,"action":{"kind":"Undelegate","val":1,"amt":2370},"partialState":{"h":4,"t":24,"tokens":[9506,2820,6446,5439],"delegation":[8506,1820,5446,4439],"delegatorTokens":9999999967002}},{"ix":56,"action":{"kind":"Undelegate","val":0,"amt":2976},"partialState":{"h":4,"t":24,"tokens":[6530,2820,6446,5439],"delegation":[5530,1820,5446,4439],"delegatorTokens":9999999967002}},{"ix":57,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":5,"t":30,"tokens":[6530,2820,6446,5439],"delegation":[5530,1820,5446,4439],"delegatorTokens":9999999967002,"jailed":[null,null,null,null],"status":["bonded","unbonding","bonded","unbonding"]}},{"ix":58,"action":{"kind":"Deliver","chain":"consumer","numPackets":4},"partialState":{"h":6,"t":36,"consumerPower":[6290,null,null,8801],"outstandingDowntime":[true,false,true,true]}},{"ix":59,"action":{"kind":"Undelegate","val":3,"amt":2646},"partialState":{"h":5,"t":30,"tokens":[6530,2820,6446,2793],"delegation":[5530,1820,5446,1793],"delegatorTokens":9999999967002}},{"ix":60,"action":{"kind":"Delegate","val":0,"amt":4830},"partialState":{"h":5,"t":30,"tokens":[11360,2820,6446,2793],"delegation":[10360,1820,5446,1793],"delegatorTokens":9999999962172}},{"ix":61,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":7,"t":42,"consumerPower":[6792,null,null,10348],"outstandingDowntime":[true,false,true,true]}},{"ix":62,"action":{"kind":"Deliver","chain":"consumer","numPackets":6},"partialState":{"h":7,"t":42,"consumerPower":[6792,null,null,10348],"outstandingDowntime":[true,false,true,true]}},{"ix":63,"action":{"kind":"Deliver","chain":"consumer","numPackets":2},"partialState":{"h":7,"t":42,"consumerPower":[6792,null,null,10348],"outstandingDowntime":[true,false,true,true]}},{"ix":64,"action":{"kind":"Deliver","chain":"provider","numPackets":5},"partialState":{"h":5,"t":30,"tokens":[11360,2820,6446,2793],"delegation":[10360,1820,5446,1793],"delegatorTokens":9999999962172,"jailed":[null,null,null,null],"status":["bonded","unbonding","bonded","unbonding"]}},{"ix":65,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":66,"action":{"kind":"Undelegate","val":0,"amt":3961},"partialState":{"h":5,"t":30,"tokens":[7399,2820,6446,2793],"delegation":[6399,1820,5446,1793],"delegatorTokens":9999999962172}},{"ix":67,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":8,"t":48,"consumerPower":[6792,null,null,10348],"outstandingDowntime":[true,false,true,true]}},{"ix":68,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":69,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":6,"t":36,"tokens":[7399,2820,6446,2793],"delegation":[6399,1820,5446,1793],"delegatorTokens":9999999962172,"jailed":[1000000000000029,null,null,1000000000000029],"status":["bonded","unbonding","bonded","unbonding"]}},{"ix":70,"action":{"kind":"Delegate","val":2,"amt":3732},"partialState":{"h":6,"t":36,"tokens":[7399,2820,10178,2793],"delegation":[6399,1820,9178,1793],"delegatorTokens":9999999958440}},{"ix":71,"action":{"kind":"Undelegate","val":3,"amt":2991},"partialState":{"h":6,"t":36,"tokens":[7399,2820,10178,2793],"delegation":[6399,1820,9178,1793],"delegatorTokens":9999999958440}},{"ix":72,"action":{"kind":"Undelegate","val":3,"amt":4870},"partialState":{"h":6,"t":36,"tokens":[7399,2820,10178,2793],"delegation":[6399,1820,9178,1793],"delegatorTokens":9999999958440}},{"ix":73,"action":{"kind":"Deliver","chain":"provider","numPackets":2},"partialState":{"h":6,"t":36,"tokens":[7399,2820,10178,2793],"delegation":[6399,1820,9178,1793],"delegatorTokens":9999999958440,"jailed":[1000000000000029,null,null,1000000000000029],"status":["bonded","unbonding","bonded","unbonding"]}},{"ix":74,"action":{"kind":"Deliver","chain":"provider","numPackets":3},"partialState":{"h":6,"t":36,"tokens":[7399,2820,10178,2793],"delegation":[6399,1820,9178,1793],"delegatorTokens":9999999958440,"jailed":[1000000000000029,null,null,1000000000000029],"status":["bonded","unbonding","bonded","unbonding"]}},{"ix":75,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":76,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":7,"t":42,"tokens":[7399,2820,10178,2793],"delegation":[6399,1820,9178,1793],"delegatorTokens":9999999958440,"jailed":[1000000000000029,null,1000000000000035,1000000000000029],"status":["unbonding","bonded","bonded","unbonding"]}},{"ix":77,"action":{"kind":"Undelegate","val":1,"amt":3171},"partialState":{"h":7,"t":42,"tokens":[7399,2820,10178,2793],"delegation":[6399,1820,9178,1793],"delegatorTokens":9999999958440}},{"ix":78,"action":{"kind":"Delegate","val":0,"amt":2699},"partialState":{"h":7,"t":42,"tokens":[10098,2820,10178,2793],"delegation":[9098,1820,9178,1793],"delegatorTokens":9999999955741}},{"ix":79,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":9,"t":54,"consumerPower":[6792,null,null,10348],"outstandingDowntime":[true,false,true,true]}},{"ix":80,"action":{"kind":"Deliver","chain":"consumer","numPackets":4},"partialState":{"h":9,"t":54,"consumerPower":[6792,null,null,10348],"outstandingDowntime":[false,false,true,false]}},{"ix":81,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":8,"t":48,"tokens":[10098,2820,10178,2793],"delegation":[9098,1820,9178,1793],"delegatorTokens":9999999955741,"jailed":[1000000000000029,null,1000000000000035,1000000000000029],"status":["unbonding","bonded","unbonding","unbonding"]}},{"ix":82,"action":{"kind":"Deliver","chain":"provider","numPackets":2},"partialState":{"h":8,"t":48,"tokens":[10098,2820,10178,2793],"delegation":[9098,1820,9178,1793],"delegatorTokens":9999999955741,"jailed":[1000000000000029,null,1000000000000035,1000000000000029],"status":["unbonding","bonded","unbonding","unbonding"]}},{"ix":83,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":9,"t":54,"tokens":[10098,2820,10178,2793],"delegation":[9098,1820,9178,1793],"delegatorTokens":9999999955741,"jailed":[1000000000000029,null,1000000000000035,1000000000000029],"status":["unbonding","bonded","unbonding","unbonding"]}},{"ix":84,"action":{"kind":"Deliver","chain":"provider","numPackets":3},"partialState":{"h":9,"t":54,"tokens":[10098,2820,10178,2793],"delegation":[9098,1820,9178,1793],"delegatorTokens":9999999955741,"jailed":[1000000000000029,null,1000000000000035,1000000000000029],"status":["unbonding","bonded","unbonding","unbonding"]}},{"ix":85,"action":{"kind":"Deliver","chain":"consumer","numPackets":2},"partialState":{"h":9,"t":54,"consumerPower":[6792,null,null,10348],"outstandingDowntime":[false,false,false,false]}},{"ix":86,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":10,"t":60,"consumerPower":[null,2820,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":87,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":11,"t":66,"consumerPower":[null,2820,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":88,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":89,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":90,"action":{"kind":"Delegate","val":2,"amt":1313},"partialState":{"h":9,"t":54,"tokens":[10098,2820,11491,2793],"delegation":[9098,1820,10491,1793],"delegatorTokens":9999999954428}},{"ix":91,"action":{"kind":"Undelegate","val":1,"amt":1595},"partialState":{"h":9,"t":54,"tokens":[10098,1225,11491,2793],"delegation":[9098,225,10491,1793],"delegatorTokens":9999999954428}},{"ix":92,"action":{"kind":"Deliver","chain":"consumer","numPackets":6},"partialState":{"h":11,"t":66,"consumerPower":[null,2820,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":93,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":12,"t":72,"consumerPower":[null,2820,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":94,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":95,"action":{"kind":"Undelegate","val":2,"amt":4731},"partialState":{"h":9,"t":54,"tokens":[10098,1225,6760,2793],"delegation":[9098,225,5760,1793],"delegatorTokens":9999999954428}},{"ix":96,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":97,"action":{"kind":"Undelegate","val":3,"amt":2587},"partialState":{"h":9,"t":54,"tokens":[10098,1225,6760,2793],"delegation":[9098,225,5760,1793],"delegatorTokens":9999999954428}},{"ix":98,"action":{"kind":"Deliver","chain":"provider","numPackets":1},"partialState":{"h":9,"t":54,"tokens":[10098,1225,6760,2793],"delegation":[9098,225,5760,1793],"delegatorTokens":9999999954428,"jailed":[1000000000000029,null,1000000000000035,1000000000000029],"status":["unbonding","bonded","unbonding","unbonding"]}},{"ix":99,"action":{"kind":"Deliver","chain":"provider","numPackets":5},"partialState":{"h":9,"t":54,"tokens":[10098,1225,6760,2793],"delegation":[9098,225,5760,1793],"delegatorTokens":9999999954428,"jailed":[1000000000000029,null,1000000000000035,1000000000000029],"status":["unbonding","bonded","unbonding","unbonding"]}},{"ix":100,"action":{"kind":"Delegate","val":3,"amt":2349},"partialState":{"h":9,"t":54,"tokens":[10098,1225,6760,5142],"delegation":[9098,225,5760,4142],"delegatorTokens":9999999952079}},{"ix":101,"action":{"kind":"Deliver","chain":"consumer","numPackets":3},"partialState":{"h":12,"t":72,"consumerPower":[null,2820,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":102,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":13,"t":78,"consumerPower":[null,2820,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":103,"action":{"kind":"Deliver","chain":"consumer","numPackets":4},"partialState":{"h":13,"t":78,"consumerPower":[null,2820,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":104,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":14,"t":84,"consumerPower":[null,2820,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":105,"action":{"kind":"Undelegate","val":1,"amt":3382},"partialState":{"h":9,"t":54,"tokens":[10098,1225,6760,5142],"delegation":[9098,225,5760,4142],"delegatorTokens":9999999952079}},{"ix":106,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":10,"t":60,"tokens":[10098,1225,6760,5142],"delegation":[9098,225,5760,4142],"delegatorTokens":9999999952079,"jailed":[1000000000000029,null,1000000000000035,1000000000000029],"status":["unbonding","bonded","unbonding","unbonding"]}},{"ix":107,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":15,"t":90,"consumerPower":[null,2820,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":108,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":109,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":110,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":111,"action":{"kind":"Deliver","chain":"provider","numPackets":5},"partialState":{"h":10,"t":60,"tokens":[10098,1225,6760,5142],"delegation":[9098,225,5760,4142],"delegatorTokens":9999999952079,"jailed":[1000000000000029,null,1000000000000035,1000000000000029],"status":["unbonding","bonded","unbonding","unbonding"]}},{"ix":112,"action":{"kind":"Undelegate","val":3,"amt":2069},"partialState":{"h":10,"t":60,"tokens":[10098,1225,6760,3073],"delegation":[9098,225,5760,2073],"delegatorTokens":9999999952079}},{"ix":113,"action":{"kind":"Deliver","chain":"consumer","numPackets":1},"partialState":{"h":15,"t":90,"consumerPower":[null,2820,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":114,"action":{"kind":"Deliver","chain":"provider","numPackets":1},"partialState":{"h":10,"t":60,"tokens":[10098,1225,6760,3073],"delegation":[9098,225,5760,2073],"delegatorTokens":9999999952079,"jailed":[1000000000000029,null,1000000000000035,1000000000000029],"status":["unbonding","bonded","unbonding","unbonding"]}},{"ix":115,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":16,"t":96,"consumerPower":[null,2820,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":116,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":11,"t":66,"tokens":[10098,1225,6760,3073],"delegation":[9098,225,5760,2073],"delegatorTokens":9999999952079,"jailed":[1000000000000029,null,1000000000000035,1000000000000029],"status":["unbonding","bonded","unbonding","unbonding"]}},{"ix":117,"action":{"kind":"Delegate","val":3,"amt":4247},"partialState":{"h":11,"t":66,"tokens":[10098,1225,6760,7320],"delegation":[9098,225,5760,6320],"delegatorTokens":9999999947832}},{"ix":118,"action":{"kind":"Delegate","val":1,"amt":2177},"partialState":{"h":11,"t":66,"tokens":[10098,3402,6760,7320],"delegation":[9098,2402,5760,6320],"delegatorTokens":9999999945655}},{"ix":119,"action":{"kind":"Delegate","val":0,"amt":2060},"partialState":{"h":11,"t":66,"tokens":[12158,3402,6760,7320],"delegation":[11158,2402,5760,6320],"delegatorTokens":9999999943595}},{"ix":120,"action":{"kind":"Deliver","chain":"consumer","numPackets":6},"partialState":{"h":16,"t":96,"consumerPower":[null,2820,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":121,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":12,"t":72,"tokens":[12158,3402,6760,7320],"delegation":[11158,2402,5760,6320],"delegatorTokens":9999999943595,"jailed":[1000000000000029,null,1000000000000035,1000000000000029],"status":["unbonding","bonded","unbonding","unbonding"]}},{"ix":122,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":17,"t":102,"consumerPower":[null,1225,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":123,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":124,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":125,"action":{"kind":"Deliver","chain":"consumer","numPackets":6},"partialState":{"h":17,"t":102,"consumerPower":[null,1225,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":126,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":127,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":18,"t":108,"consumerPower":[null,1225,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":128,"action":{"kind":"Deliver","chain":"consumer","numPackets":2},"partialState":{"h":18,"t":108,"consumerPower":[null,1225,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":129,"action":{"kind":"Undelegate","val":2,"amt":3158},"partialState":{"h":12,"t":72,"tokens":[12158,3402,3602,7320],"delegation":[11158,2402,2602,6320],"delegatorTokens":9999999943595}},{"ix":130,"action":{"kind":"Undelegate","val":0,"amt":2372},"partialState":{"h":12,"t":72,"tokens":[9786,3402,3602,7320],"delegation":[8786,2402,2602,6320],"delegatorTokens":9999999943595}},{"ix":131,"action":{"kind":"Delegate","val":0,"amt":4726},"partialState":{"h":12,"t":72,"tokens":[14512,3402,3602,7320],"delegation":[13512,2402,2602,6320],"delegatorTokens":9999999938869}},{"ix":132,"action":{"kind":"Deliver","chain":"consumer","numPackets":6},"partialState":{"h":18,"t":108,"consumerPower":[null,1225,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":133,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":134,"action":{"kind":"Delegate","val":2,"amt":3506},"partialState":{"h":12,"t":72,"tokens":[14512,3402,7108,7320],"delegation":[13512,2402,6108,6320],"delegatorTokens":9999999935363}},{"ix":135,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":136,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":19,"t":114,"consumerPower":[null,1225,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":137,"action":{"kind":"Delegate","val":3,"amt":2788},"partialState":{"h":12,"t":72,"tokens":[14512,3402,7108,10108],"delegation":[13512,2402,6108,9108],"delegatorTokens":9999999932575}},{"ix":138,"action":{"kind":"Deliver","chain":"consumer","numPackets":4},"partialState":{"h":19,"t":114,"consumerPower":[null,1225,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":139,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":13,"t":78,"tokens":[14512,3402,7108,10108],"delegation":[13512,2402,6108,9108],"delegatorTokens":9999999932575,"jailed":[1000000000000029,null,1000000000000035,1000000000000029],"status":["unbonding","bonded","unbonding","unbonding"]}},{"ix":140,"action":{"kind":"Undelegate","val":3,"amt":1292},"partialState":{"h":13,"t":78,"tokens":[14512,3402,7108,8816],"delegation":[13512,2402,6108,7816],"delegatorTokens":9999999932575}},{"ix":141,"action":{"kind":"Undelegate","val":3,"amt":3197},"partialState":{"h":13,"t":78,"tokens":[14512,3402,7108,5619],"delegation":[13512,2402,6108,4619],"delegatorTokens":9999999932575}},{"ix":142,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":143,"action":{"kind":"Undelegate","val":2,"amt":2321},"partialState":{"h":13,"t":78,"tokens":[14512,3402,4787,5619],"delegation":[13512,2402,3787,4619],"delegatorTokens":9999999932575}},{"ix":144,"action":{"kind":"Delegate","val":0,"amt":3818},"partialState":{"h":13,"t":78,"tokens":[18330,3402,4787,5619],"delegation":[17330,2402,3787,4619],"delegatorTokens":9999999928757}},{"ix":145,"action":{"kind":"Deliver","chain":"provider","numPackets":2},"partialState":{"h":13,"t":78,"tokens":[18330,3402,4787,5619],"delegation":[17330,2402,3787,4619],"delegatorTokens":9999999928757,"jailed":[1000000000000029,null,1000000000000035,1000000000000029],"status":["unbonding","bonded","unbonding","unbonding"]}},{"ix":146,"action":{"kind":"Delegate","val":0,"amt":1860},"partialState":{"h":13,"t":78,"tokens":[20190,3402,4787,5619],"delegation":[19190,2402,3787,4619],"delegatorTokens":9999999926897}},{"ix":147,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":14,"t":84,"tokens":[20190,3402,4787,5619],"delegation":[19190,2402,3787,4619],"delegatorTokens":9999999933374,"jailed":[1000000000000029,null,1000000000000035,1000000000000029],"status":["unbonding","bonded","unbonding","unbonding"]}},{"ix":148,"action":{"kind":"Undelegate","val":0,"amt":3890},"partialState":{"h":14,"t":84,"tokens":[16300,3402,4787,5619],"delegation":[15300,2402,3787,4619],"delegatorTokens":9999999933374}},{"ix":149,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":15,"t":90,"tokens":[16300,3402,4787,5619],"delegation":[15300,2402,3787,4619],"delegatorTokens":9999999941242,"jailed":[1000000000000029,null,1000000000000035,1000000000000029],"status":["unbonding","bonded","unbonding","unbonding"]}},{"ix":150,"action":{"kind":"Undelegate","val":1,"amt":2760},"partialState":{"h":15,"t":90,"tokens":[16300,3402,4787,5619],"delegation":[15300,2402,3787,4619],"delegatorTokens":9999999941242}},{"ix":151,"action":{"kind":"Undelegate","val":3,"amt":1815},"partialState":{"h":15,"t":90,"tokens":[16300,3402,4787,3804],"delegation":[15300,2402,3787,2804],"delegatorTokens":9999999941242}},{"ix":152,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":20,"t":120,"consumerPower":[null,1225,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":153,"action":{"kind":"Undelegate","val":0,"amt":3383},"partialState":{"h":15,"t":90,"tokens":[12917,3402,4787,3804],"delegation":[11917,2402,3787,2804],"delegatorTokens":9999999941242}},{"ix":154,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":155,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":156,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":16,"t":96,"tokens":[12917,3402,4787,3804],"delegation":[11917,2402,3787,2804],"delegatorTokens":9999999942931,"jailed":[1000000000000029,null,1000000000000035,1000000000000029],"status":["unbonding","bonded","unbonding","unbonding"]}},{"ix":157,"action":{"kind":"Undelegate","val":1,"amt":3022},"partialState":{"h":16,"t":96,"tokens":[12917,3402,4787,3804],"delegation":[11917,2402,3787,2804],"delegatorTokens":9999999942931}},{"ix":158,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":21,"t":126,"consumerPower":[null,1225,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":159,"action":{"kind":"Delegate","val":3,"amt":4399},"partialState":{"h":16,"t":96,"tokens":[12917,3402,4787,8203],"delegation":[11917,2402,3787,7203],"delegatorTokens":9999999938532}},{"ix":160,"action":{"kind":"Undelegate","val":0,"amt":4058},"partialState":{"h":16,"t":96,"tokens":[8859,3402,4787,8203],"delegation":[7859,2402,3787,7203],"delegatorTokens":9999999938532}},{"ix":161,"action":{"kind":"Deliver","chain":"consumer","numPackets":2},"partialState":{"h":21,"t":126,"consumerPower":[null,1225,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":162,"action":{"kind":"Undelegate","val":3,"amt":4940},"partialState":{"h":16,"t":96,"tokens":[8859,3402,4787,3263],"delegation":[7859,2402,3787,2263],"delegatorTokens":9999999938532}},{"ix":163,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":164,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":22,"t":132,"consumerPower":[null,3402,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":165,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":166,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":167,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":23,"t":138,"consumerPower":[null,3402,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":168,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":169,"action":{"kind":"Undelegate","val":2,"amt":1045},"partialState":{"h":16,"t":96,"tokens":[8859,3402,3742,3263],"delegation":[7859,2402,2742,2263],"delegatorTokens":9999999938532}},{"ix":170,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":17,"t":102,"tokens":[8859,3402,3742,3263],"delegation":[7859,2402,2742,2263],"delegatorTokens":9999999938532,"jailed":[1000000000000029,null,1000000000000035,1000000000000029],"status":["unbonding","bonded","unbonding","unbonding"]}},{"ix":171,"action":{"kind":"Undelegate","val":2,"amt":4397},"partialState":{"h":17,"t":102,"tokens":[8859,3402,3742,3263],"delegation":[7859,2402,2742,2263],"delegatorTokens":9999999938532}},{"ix":172,"action":{"kind":"Delegate","val":2,"amt":1670},"partialState":{"h":17,"t":102,"tokens":[8859,3402,5412,3263],"delegation":[7859,2402,4412,2263],"delegatorTokens":9999999936862}},{"ix":173,"action":{"kind":"Deliver","chain":"consumer","numPackets":5},"partialState":{"h":23,"t":138,"consumerPower":[null,3402,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":174,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":175,"action":{"kind":"Deliver","chain":"provider","numPackets":5},"partialState":{"h":17,"t":102,"tokens":[8859,3402,5412,3263],"delegation":[7859,2402,4412,2263],"delegatorTokens":9999999936862,"jailed":[1000000000000029,null,1000000000000035,1000000000000029],"status":["unbonding","bonded","unbonding","unbonding"]}},{"ix":176,"action":{"kind":"Deliver","chain":"consumer","numPackets":4},"partialState":{"h":23,"t":138,"consumerPower":[null,3402,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":177,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":178,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":18,"t":108,"tokens":[8859,3402,5412,3263],"delegation":[7859,2402,4412,2263],"delegatorTokens":9999999953198,"jailed":[1000000000000029,null,1000000000000035,1000000000000029],"status":["unbonding","bonded","unbonding","unbonding"]}},{"ix":179,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":19,"t":114,"tokens":[8859,3402,5412,3263],"delegation":[7859,2402,4412,2263],"delegatorTokens":9999999953198,"jailed":[1000000000000029,null,1000000000000035,1000000000000029],"status":["unbonded","bonded","unbonding","unbonded"]}},{"ix":180,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":181,"action":{"kind":"Deliver","chain":"provider","numPackets":3},"partialState":{"h":19,"t":114,"tokens":[8859,3402,5412,3263],"delegation":[7859,2402,4412,2263],"delegatorTokens":9999999953198,"jailed":[1000000000000029,null,1000000000000035,1000000000000029],"status":["unbonded","bonded","unbonding","unbonded"]}},{"ix":182,"action":{"kind":"Undelegate","val":2,"amt":2724},"partialState":{"h":19,"t":114,"tokens":[8859,3402,2688,3263],"delegation":[7859,2402,1688,2263],"delegatorTokens":9999999953198}},{"ix":183,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":24,"t":144,"consumerPower":[null,3402,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":184,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":185,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":186,"action":{"kind":"Delegate","val":2,"amt":1761},"partialState":{"h":19,"t":114,"tokens":[8859,3402,4449,3263],"delegation":[7859,2402,3449,2263],"delegatorTokens":9999999951437}},{"ix":187,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":188,"action":{"kind":"Deliver","chain":"consumer","numPackets":4},"partialState":{"h":24,"t":144,"consumerPower":[null,3402,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":189,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":190,"action":{"kind":"Deliver","chain":"consumer","numPackets":5},"partialState":{"h":24,"t":144,"consumerPower":[null,3402,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":191,"action":{"kind":"Delegate","val":0,"amt":3567},"partialState":{"h":19,"t":114,"tokens":[12426,3402,4449,3263],"delegation":[11426,2402,3449,2263],"delegatorTokens":9999999947870}},{"ix":192,"action":{"kind":"Delegate","val":2,"amt":3988},"partialState":{"h":19,"t":114,"tokens":[12426,3402,8437,3263],"delegation":[11426,2402,7437,2263],"delegatorTokens":9999999943882}},{"ix":193,"action":{"kind":"Delegate","val":3,"amt":3799},"partialState":{"h":19,"t":114,"tokens":[12426,3402,8437,7062],"delegation":[11426,2402,7437,6062],"delegatorTokens":9999999940083}},{"ix":194,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":195,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":25,"t":150,"consumerPower":[null,3402,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":196,"action":{"kind":"Deliver","chain":"consumer","numPackets":1},"partialState":{"h":25,"t":150,"consumerPower":[null,3402,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":197,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":198,"action":{"kind":"Deliver","chain":"provider","numPackets":1},"partialState":{"h":19,"t":114,"tokens":[12426,3402,8437,7062],"delegation":[11426,2402,7437,6062],"delegatorTokens":9999999940083,"jailed":[1000000000000029,null,1000000000000035,1000000000000029],"status":["unbonded","bonded","unbonding","unbonded"]}},{"ix":199,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}}],"events":["send_double_sign_slash_request","send_downtime_slash_request","more_than_one_third_val_power_change","send_vsc_without_downtime_ack","send_downtime_slash_request","send_vsc_without_downtime_ack","send_double_sign_slash_request","send_vsc_without_downtime_ack","send_double_sign_slash_request","insufficient_shares","downtime_slash_request_outstanding","send_downtime_slash_request","consumer_update_val","consumer_del_val","consumer_add_val","insufficient_shares","more_than_one_third_val_power_change","send_vsc_without_downtime_ack","consumer_update_val","consumer_update_val","receive_double_sign_slash_request","receive_double_sign_slash_request","receive_double_sign_slash_request","receive_downtime_slash_request","jail","receive_downtime_slash_request","jail","send_vsc_with_downtime_ack","insufficient_shares","insufficient_shares","rebond_unval","receive_downtime_slash_request","jail","send_vsc_with_downtime_ack","insufficient_shares","receive_downtime_slash_ack","receive_downtime_slash_ack","send_vsc_without_downtime_ack","receive_downtime_slash_ack","consumer_del_val","consumer_del_val","consumer_del_val","consumer_add_val","insufficient_shares","consumer_send_maturation","insufficient_shares","send_vsc_without_downtime_ack","consumer_send_maturation","consumer_send_maturation","set_undel_hold_false","set_undel_hold_false","send_vsc_not_because_change","send_vsc_without_downtime_ack","send_vsc_without_downtime_ack","consumer_update_val","consumer_send_maturation","consumer_send_maturation","consumer_send_maturation","consumer_send_maturation","send_vsc_not_because_change","send_vsc_without_downtime_ack","complete_undel_in_endblock","set_undel_hold_false","set_undel_hold_false","set_undel_hold_false","set_undel_hold_false","send_vsc_not_because_change","send_vsc_without_downtime_ack","complete_undel_in_endblock","send_vsc_not_because_change","send_vsc_without_downtime_ack","insufficient_shares","complete_undel_in_endblock","send_vsc_not_because_change","send_vsc_without_downtime_ack","insufficient_shares","consumer_update_val","some_undels_expired_but_not_completed","send_vsc_not_because_change","send_vsc_without_downtime_ack","insufficient_shares","some_undels_expired_but_not_completed","complete_undel_immediate","complete_undel_immediate","complete_undel_immediate","complete_undel_immediate","set_unval_hold_false","complete_undel_immediate","complete_undel_immediate","set_unval_hold_false","set_unval_hold_false","complete_unval_in_endblock","complete_unval_in_endblock"]},{"meta":{"commit":"7ffd0c04e4205cbc9caf212abfe6c59ee43153bf"},"constants":{"P":"provider","C":"consumer","UNBONDING_SECONDS_P":70,"UNBONDING_SECONDS_C":50,"TRUSTING_SECONDS":49,"NUM_VALIDATORS":4,"MAX_VALIDATORS":2,"SLASH_DOUBLESIGN":0,"SLASH_DOWNTIME":0,"JAIL_SECONDS":999999999999999,"BLOCK_SECONDS":6,"INITIAL_DELEGATOR_TOKENS":10000000000000,"DELEGATE_AMT_MIN":1000,"DELEGATE_AMT_MAX":5000,"UNDELEGATE_AMT_MIN":1000,"UNDELEGATE_AMT_MAX":5000,"ISDOWNTIME_PROBABILITY":0.5,"MAX_NUM_PACKETS_FOR_DELIVER":6},"actions":[{"ix":0,"action":{"kind":"Delegate","val":3,"amt":2672},"partialState":{"h":1,"t":6,"tokens":[5000,4000,3000,4672],"delegation":[4000,3000,2000,3672],"delegatorTokens":9999999997328}},{"ix":1,"action":{"kind":"Delegate","val":2,"amt":1788},"partialState":{"h":1,"t":6,"tokens":[5000,4000,4788,4672],"delegation":[4000,3000,3788,3672],"delegatorTokens":9999999995540}},{"ix":2,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":2,"t":12,"tokens":[5000,4000,4788,4672],"delegation":[4000,3000,3788,3672],"delegatorTokens":9999999995540,"jailed":[null,null,null,null],"status":["bonded","unbonding","bonded","unbonded"]}},{"ix":3,"action":{"kind":"Undelegate","val":1,"amt":1246},"partialState":{"h":2,"t":12,"tokens":[5000,2754,4788,4672],"delegation":[4000,1754,3788,3672],"delegatorTokens":9999999995540}},{"ix":4,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":5,"action":{"kind":"Deliver","chain":"consumer","numPackets":3},"partialState":{"h":1,"t":6,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":6,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":2,"t":12,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":7,"action":{"kind":"ConsumerSlash","val":0,"infractionHeight":0,"isDowntime":false},"partialState":{"h":2,"t":12,"outstandingDowntime":[false,false,false,false]}},{"ix":8,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":9,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":3,"t":18,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":10,"action":{"kind":"Deliver","chain":"provider","numPackets":6},"partialState":{"h":2,"t":12,"tokens":[5000,2754,4788,4672],"delegation":[4000,1754,3788,3672],"delegatorTokens":9999999995540,"jailed":[null,null,null,null],"status":["bonded","unbonding","bonded","unbonded"]}},{"ix":11,"action":{"kind":"Deliver","chain":"consumer","numPackets":6},"partialState":{"h":3,"t":18,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":12,"action":{"kind":"Deliver","chain":"consumer","numPackets":4},"partialState":{"h":3,"t":18,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":13,"action":{"kind":"Deliver","chain":"provider","numPackets":3},"partialState":{"h":2,"t":12,"tokens":[5000,2754,4788,4672],"delegation":[4000,1754,3788,3672],"delegatorTokens":9999999995540,"jailed":[null,null,null,null],"status":["bonded","unbonding","bonded","unbonded"]}},{"ix":14,"action":{"kind":"Delegate","val":0,"amt":3978},"partialState":{"h":2,"t":12,"tokens":[8978,2754,4788,4672],"delegation":[7978,1754,3788,3672],"delegatorTokens":9999999991562}},{"ix":15,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":3,"t":18,"tokens":[8978,2754,4788,4672],"delegation":[7978,1754,3788,3672],"delegatorTokens":9999999991562,"jailed":[null,null,null,null],"status":["bonded","unbonding","bonded","unbonded"]}},{"ix":16,"action":{"kind":"Undelegate","val":0,"amt":4490},"partialState":{"h":3,"t":18,"tokens":[4488,2754,4788,4672],"delegation":[3488,1754,3788,3672],"delegatorTokens":9999999991562}},{"ix":17,"action":{"kind":"ConsumerSlash","val":0,"infractionHeight":2,"isDowntime":true},"partialState":{"h":3,"t":18,"outstandingDowntime":[true,false,false,false]}},{"ix":18,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":19,"action":{"kind":"ConsumerSlash","val":1,"infractionHeight":0,"isDowntime":true},"partialState":{"h":3,"t":18,"outstandingDowntime":[true,true,false,false]}},{"ix":20,"action":{"kind":"Deliver","chain":"consumer","numPackets":3},"partialState":{"h":3,"t":18,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[true,true,false,false]}},{"ix":21,"action":{"kind":"Deliver","chain":"provider","numPackets":2},"partialState":{"h":3,"t":18,"tokens":[4488,2754,4788,4672],"delegation":[3488,1754,3788,3672],"delegatorTokens":9999999991562,"jailed":[null,null,null,null],"status":["bonded","unbonding","bonded","unbonded"]}},{"ix":22,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":4,"t":24,"tokens":[4488,2754,4788,4672],"delegation":[3488,1754,3788,3672],"delegatorTokens":9999999991562,"jailed":[null,null,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":23,"action":{"kind":"Deliver","chain":"consumer","numPackets":1},"partialState":{"h":3,"t":18,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[true,true,false,false]}},{"ix":24,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":5,"t":30,"tokens":[4488,2754,4788,4672],"delegation":[3488,1754,3788,3672],"delegatorTokens":9999999991562,"jailed":[null,null,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":25,"action":{"kind":"Delegate","val":3,"amt":3727},"partialState":{"h":5,"t":30,"tokens":[4488,2754,4788,8399],"delegation":[3488,1754,3788,7399],"delegatorTokens":9999999987835}},{"ix":26,"action":{"kind":"Undelegate","val":2,"amt":2452},"partialState":{"h":5,"t":30,"tokens":[4488,2754,2336,8399],"delegation":[3488,1754,1336,7399],"delegatorTokens":9999999987835}},{"ix":27,"action":{"kind":"Delegate","val":0,"amt":3563},"partialState":{"h":5,"t":30,"tokens":[8051,2754,2336,8399],"delegation":[7051,1754,1336,7399],"delegatorTokens":9999999984272}},{"ix":28,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":29,"action":{"kind":"Delegate","val":1,"amt":2714},"partialState":{"h":5,"t":30,"tokens":[8051,5468,2336,8399],"delegation":[7051,4468,1336,7399],"delegatorTokens":9999999981558}},{"ix":30,"action":{"kind":"Deliver","chain":"provider","numPackets":6},"partialState":{"h":5,"t":30,"tokens":[8051,5468,2336,8399],"delegation":[7051,4468,1336,7399],"delegatorTokens":9999999981558,"jailed":[null,null,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":31,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":6,"t":36,"tokens":[8051,5468,2336,8399],"delegation":[7051,4468,1336,7399],"delegatorTokens":9999999981558,"jailed":[null,null,null,null],"status":["bonded","unbonding","unbonding","bonded"]}},{"ix":32,"action":{"kind":"Deliver","chain":"provider","numPackets":6},"partialState":{"h":6,"t":36,"tokens":[8051,5468,2336,8399],"delegation":[7051,4468,1336,7399],"delegatorTokens":9999999981558,"jailed":[null,null,null,null],"status":["bonded","unbonding","unbonding","bonded"]}},{"ix":33,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":7,"t":42,"tokens":[8051,5468,2336,8399],"delegation":[7051,4468,1336,7399],"delegatorTokens":9999999981558,"jailed":[null,null,null,null],"status":["bonded","unbonding","unbonding","bonded"]}},{"ix":34,"action":{"kind":"Undelegate","val":0,"amt":4966},"partialState":{"h":7,"t":42,"tokens":[3085,5468,2336,8399],"delegation":[2085,4468,1336,7399],"delegatorTokens":9999999981558}},{"ix":35,"action":{"kind":"ConsumerSlash","val":3,"infractionHeight":1,"isDowntime":true},"partialState":{"h":3,"t":18,"outstandingDowntime":[true,true,false,true]}},{"ix":36,"action":{"kind":"Deliver","chain":"consumer","numPackets":2},"partialState":{"h":3,"t":18,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[true,true,false,true]}},{"ix":37,"action":{"kind":"Undelegate","val":1,"amt":4514},"partialState":{"h":7,"t":42,"tokens":[3085,5468,2336,8399],"delegation":[2085,4468,1336,7399],"delegatorTokens":9999999981558}},{"ix":38,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":8,"t":48,"tokens":[3085,5468,2336,8399],"delegation":[2085,4468,1336,7399],"delegatorTokens":9999999981558,"jailed":[null,null,null,null],"status":["unbonding","bonded","unbonding","bonded"]}},{"ix":39,"action":{"kind":"Undelegate","val":2,"amt":2146},"partialState":{"h":8,"t":48,"tokens":[3085,5468,2336,8399],"delegation":[2085,4468,1336,7399],"delegatorTokens":9999999981558}},{"ix":40,"action":{"kind":"Undelegate","val":0,"amt":2638},"partialState":{"h":8,"t":48,"tokens":[3085,5468,2336,8399],"delegation":[2085,4468,1336,7399],"delegatorTokens":9999999981558}},{"ix":41,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":42,"action":{"kind":"Undelegate","val":0,"amt":3313},"partialState":{"h":8,"t":48,"tokens":[3085,5468,2336,8399],"delegation":[2085,4468,1336,7399],"delegatorTokens":9999999981558}},{"ix":43,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":44,"action":{"kind":"Deliver","chain":"provider","numPackets":1},"partialState":{"h":8,"t":48,"tokens":[3085,5468,2336,8399],"delegation":[2085,4468,1336,7399],"delegatorTokens":9999999981558,"jailed":[null,null,null,null],"status":["unbonding","bonded","unbonding","bonded"]}},{"ix":45,"action":{"kind":"Delegate","val":1,"amt":2487},"partialState":{"h":8,"t":48,"tokens":[3085,7955,2336,8399],"delegation":[2085,6955,1336,7399],"delegatorTokens":9999999979071}},{"ix":46,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":4,"t":24,"consumerPower":[8051,null,null,8399],"outstandingDowntime":[true,true,false,true]}},{"ix":47,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":5,"t":30,"consumerPower":[8051,null,null,8399],"outstandingDowntime":[true,true,false,true]}},{"ix":48,"action":{"kind":"Undelegate","val":2,"amt":2266},"partialState":{"h":8,"t":48,"tokens":[3085,7955,2336,8399],"delegation":[2085,6955,1336,7399],"delegatorTokens":9999999979071}},{"ix":49,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":50,"action":{"kind":"Deliver","chain":"consumer","numPackets":1},"partialState":{"h":5,"t":30,"consumerPower":[8051,null,null,8399],"outstandingDowntime":[true,true,false,true]}},{"ix":51,"action":{"kind":"Delegate","val":2,"amt":2369},"partialState":{"h":8,"t":48,"tokens":[3085,7955,4705,8399],"delegation":[2085,6955,3705,7399],"delegatorTokens":9999999976702}},{"ix":52,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":53,"action":{"kind":"Undelegate","val":1,"amt":1675},"partialState":{"h":8,"t":48,"tokens":[3085,6280,4705,8399],"delegation":[2085,5280,3705,7399],"delegatorTokens":9999999976702}},{"ix":54,"action":{"kind":"Deliver","chain":"provider","numPackets":1},"partialState":{"h":8,"t":48,"tokens":[3085,6280,4705,8399],"delegation":[2085,5280,3705,7399],"delegatorTokens":9999999976702,"jailed":[null,null,null,null],"status":["unbonding","bonded","unbonding","bonded"]}},{"ix":55,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":56,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":6,"t":36,"consumerPower":[8051,null,null,8399],"outstandingDowntime":[true,true,false,true]}},{"ix":57,"action":{"kind":"Undelegate","val":3,"amt":2810},"partialState":{"h":8,"t":48,"tokens":[3085,6280,4705,5589],"delegation":[2085,5280,3705,4589],"delegatorTokens":9999999976702}},{"ix":58,"action":{"kind":"Undelegate","val":2,"amt":2976},"partialState":{"h":8,"t":48,"tokens":[3085,6280,1729,5589],"delegation":[2085,5280,729,4589],"delegatorTokens":9999999976702}},{"ix":59,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":7,"t":42,"consumerPower":[8051,null,null,8399],"outstandingDowntime":[true,true,false,true]}},{"ix":60,"action":{"kind":"Delegate","val":2,"amt":1822},"partialState":{"h":8,"t":48,"tokens":[3085,6280,3551,5589],"delegation":[2085,5280,2551,4589],"delegatorTokens":9999999974880}},{"ix":61,"action":{"kind":"Deliver","chain":"consumer","numPackets":3},"partialState":{"h":7,"t":42,"consumerPower":[8051,null,null,8399],"outstandingDowntime":[true,true,false,true]}},{"ix":62,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":63,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":64,"action":{"kind":"Deliver","chain":"provider","numPackets":5},"partialState":{"h":8,"t":48,"tokens":[3085,6280,3551,5589],"delegation":[2085,5280,2551,4589],"delegatorTokens":9999999974880,"jailed":[null,null,null,null],"status":["unbonding","bonded","unbonding","bonded"]}},{"ix":65,"action":{"kind":"Delegate","val":3,"amt":1802},"partialState":{"h":8,"t":48,"tokens":[3085,6280,3551,7391],"delegation":[2085,5280,2551,6391],"delegatorTokens":9999999973078}},{"ix":66,"action":{"kind":"Delegate","val":0,"amt":4502},"partialState":{"h":8,"t":48,"tokens":[7587,6280,3551,7391],"delegation":[6587,5280,2551,6391],"delegatorTokens":9999999968576}},{"ix":67,"action":{"kind":"Delegate","val":0,"amt":1860},"partialState":{"h":8,"t":48,"tokens":[9447,6280,3551,7391],"delegation":[8447,5280,2551,6391],"delegatorTokens":9999999966716}},{"ix":68,"action":{"kind":"Deliver","chain":"provider","numPackets":6},"partialState":{"h":8,"t":48,"tokens":[9447,6280,3551,7391],"delegation":[8447,5280,2551,6391],"delegatorTokens":9999999966716,"jailed":[null,null,null,null],"status":["unbonding","bonded","unbonding","bonded"]}},{"ix":69,"action":{"kind":"Delegate","val":3,"amt":2825},"partialState":{"h":8,"t":48,"tokens":[9447,6280,3551,10216],"delegation":[8447,5280,2551,9216],"delegatorTokens":9999999963891}},{"ix":70,"action":{"kind":"Delegate","val":3,"amt":3138},"partialState":{"h":8,"t":48,"tokens":[9447,6280,3551,13354],"delegation":[8447,5280,2551,12354],"delegatorTokens":9999999960753}},{"ix":71,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":8,"t":48,"consumerPower":[8051,null,null,8399],"outstandingDowntime":[true,true,false,true]}},{"ix":72,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":9,"t":54,"tokens":[9447,6280,3551,13354],"delegation":[8447,5280,2551,12354],"delegatorTokens":9999999960753,"jailed":[1000000000000047,1000000000000047,null,1000000000000047],"status":["bonded","unbonding","unbonding","bonded"]}},{"ix":73,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":74,"action":{"kind":"Undelegate","val":3,"amt":3263},"partialState":{"h":9,"t":54,"tokens":[9447,6280,3551,10091],"delegation":[8447,5280,2551,9091],"delegatorTokens":9999999960753}},{"ix":75,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":9,"t":54,"consumerPower":[8051,null,null,8399],"outstandingDowntime":[true,true,false,true]}},{"ix":76,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":10,"t":60,"tokens":[9447,6280,3551,10091],"delegation":[8447,5280,2551,9091],"delegatorTokens":9999999960753,"jailed":[1000000000000047,1000000000000047,null,1000000000000047],"status":["unbonding","unbonding","bonded","unbonding"]}},{"ix":77,"action":{"kind":"Delegate","val":1,"amt":4341},"partialState":{"h":10,"t":60,"tokens":[9447,10621,3551,10091],"delegation":[8447,9621,2551,9091],"delegatorTokens":9999999956412}},{"ix":78,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":79,"action":{"kind":"Deliver","chain":"provider","numPackets":5},"partialState":{"h":10,"t":60,"tokens":[9447,10621,3551,10091],"delegation":[8447,9621,2551,9091],"delegatorTokens":9999999956412,"jailed":[1000000000000047,1000000000000047,null,1000000000000047],"status":["unbonding","unbonding","bonded","unbonding"]}},{"ix":80,"action":{"kind":"Deliver","chain":"provider","numPackets":6},"partialState":{"h":10,"t":60,"tokens":[9447,10621,3551,10091],"delegation":[8447,9621,2551,9091],"delegatorTokens":9999999956412,"jailed":[1000000000000047,1000000000000047,null,1000000000000047],"status":["unbonding","unbonding","bonded","unbonding"]}},{"ix":81,"action":{"kind":"Delegate","val":3,"amt":1543},"partialState":{"h":10,"t":60,"tokens":[9447,10621,3551,11634],"delegation":[8447,9621,2551,10634],"delegatorTokens":9999999954869}},{"ix":82,"action":{"kind":"Delegate","val":0,"amt":2549},"partialState":{"h":10,"t":60,"tokens":[11996,10621,3551,11634],"delegation":[10996,9621,2551,10634],"delegatorTokens":9999999952320}},{"ix":83,"action":{"kind":"Deliver","chain":"consumer","numPackets":2},"partialState":{"h":9,"t":54,"consumerPower":[8051,null,null,8399],"outstandingDowntime":[false,false,false,false]}},{"ix":84,"action":{"kind":"Deliver","chain":"consumer","numPackets":1},"partialState":{"h":9,"t":54,"consumerPower":[8051,null,null,8399],"outstandingDowntime":[false,false,false,false]}},{"ix":85,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":10,"t":60,"consumerPower":[9447,null,null,13354],"outstandingDowntime":[false,false,false,false]}},{"ix":86,"action":{"kind":"Deliver","chain":"consumer","numPackets":6},"partialState":{"h":10,"t":60,"consumerPower":[9447,null,null,13354],"outstandingDowntime":[false,false,false,false]}},{"ix":87,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":11,"t":66,"consumerPower":[9447,null,null,13354],"outstandingDowntime":[false,false,false,false]}},{"ix":88,"action":{"kind":"Deliver","chain":"provider","numPackets":4},"partialState":{"h":10,"t":60,"tokens":[11996,10621,3551,11634],"delegation":[10996,9621,2551,10634],"delegatorTokens":9999999952320,"jailed":[1000000000000047,1000000000000047,null,1000000000000047],"status":["unbonding","unbonding","bonded","unbonding"]}},{"ix":89,"action":{"kind":"Delegate","val":3,"amt":1687},"partialState":{"h":10,"t":60,"tokens":[11996,10621,3551,13321],"delegation":[10996,9621,2551,12321],"delegatorTokens":9999999950633}},{"ix":90,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":12,"t":72,"consumerPower":[9447,null,null,13354],"outstandingDowntime":[false,false,false,false]}},{"ix":91,"action":{"kind":"Undelegate","val":3,"amt":4813},"partialState":{"h":10,"t":60,"tokens":[11996,10621,3551,8508],"delegation":[10996,9621,2551,7508],"delegatorTokens":9999999950633}},{"ix":92,"action":{"kind":"Deliver","chain":"provider","numPackets":2},"partialState":{"h":10,"t":60,"tokens":[11996,10621,3551,8508],"delegation":[10996,9621,2551,7508],"delegatorTokens":9999999950633,"jailed":[1000000000000047,1000000000000047,null,1000000000000047],"status":["unbonding","unbonding","bonded","unbonding"]}},{"ix":93,"action":{"kind":"Undelegate","val":1,"amt":3530},"partialState":{"h":10,"t":60,"tokens":[11996,7091,3551,8508],"delegation":[10996,6091,2551,7508],"delegatorTokens":9999999950633}},{"ix":94,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":11,"t":66,"tokens":[11996,7091,3551,8508],"delegation":[10996,6091,2551,7508],"delegatorTokens":9999999950633,"jailed":[1000000000000047,1000000000000047,null,1000000000000047],"status":["unbonding","unbonding","bonded","unbonding"]}},{"ix":95,"action":{"kind":"Undelegate","val":0,"amt":4889},"partialState":{"h":11,"t":66,"tokens":[7107,7091,3551,8508],"delegation":[6107,6091,2551,7508],"delegatorTokens":9999999950633}},{"ix":96,"action":{"kind":"Delegate","val":2,"amt":2112},"partialState":{"h":11,"t":66,"tokens":[7107,7091,5663,8508],"delegation":[6107,6091,4663,7508],"delegatorTokens":9999999948521}},{"ix":97,"action":{"kind":"Undelegate","val":1,"amt":2657},"partialState":{"h":11,"t":66,"tokens":[7107,4434,5663,8508],"delegation":[6107,3434,4663,7508],"delegatorTokens":9999999948521}},{"ix":98,"action":{"kind":"Deliver","chain":"consumer","numPackets":5},"partialState":{"h":12,"t":72,"consumerPower":[9447,null,null,13354],"outstandingDowntime":[false,false,false,false]}},{"ix":99,"action":{"kind":"Delegate","val":1,"amt":3230},"partialState":{"h":11,"t":66,"tokens":[7107,7664,5663,8508],"delegation":[6107,6664,4663,7508],"delegatorTokens":9999999945291}},{"ix":100,"action":{"kind":"Undelegate","val":1,"amt":4917},"partialState":{"h":11,"t":66,"tokens":[7107,2747,5663,8508],"delegation":[6107,1747,4663,7508],"delegatorTokens":9999999945291}},{"ix":101,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":12,"t":72,"tokens":[7107,2747,5663,8508],"delegation":[6107,1747,4663,7508],"delegatorTokens":9999999945291,"jailed":[1000000000000047,1000000000000047,null,1000000000000047],"status":["unbonding","unbonding","bonded","unbonding"]}},{"ix":102,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":103,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":104,"action":{"kind":"Delegate","val":0,"amt":1289},"partialState":{"h":12,"t":72,"tokens":[8396,2747,5663,8508],"delegation":[7396,1747,4663,7508],"delegatorTokens":9999999944002}},{"ix":105,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":13,"t":78,"consumerPower":[null,null,3551,null],"outstandingDowntime":[false,false,false,false]}},{"ix":106,"action":{"kind":"Deliver","chain":"provider","numPackets":2},"partialState":{"h":12,"t":72,"tokens":[8396,2747,5663,8508],"delegation":[7396,1747,4663,7508],"delegatorTokens":9999999944002,"jailed":[1000000000000047,1000000000000047,null,1000000000000047],"status":["unbonding","unbonding","bonded","unbonding"]}},{"ix":107,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":108,"action":{"kind":"Deliver","chain":"consumer","numPackets":3},"partialState":{"h":13,"t":78,"consumerPower":[null,null,3551,null],"outstandingDowntime":[false,false,false,false]}},{"ix":109,"action":{"kind":"Delegate","val":0,"amt":1011},"partialState":{"h":12,"t":72,"tokens":[9407,2747,5663,8508],"delegation":[8407,1747,4663,7508],"delegatorTokens":9999999942991}},{"ix":110,"action":{"kind":"Delegate","val":0,"amt":1798},"partialState":{"h":12,"t":72,"tokens":[11205,2747,5663,8508],"delegation":[10205,1747,4663,7508],"delegatorTokens":9999999941193}},{"ix":111,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":112,"action":{"kind":"Deliver","chain":"provider","numPackets":4},"partialState":{"h":12,"t":72,"tokens":[11205,2747,5663,8508],"delegation":[10205,1747,4663,7508],"delegatorTokens":9999999941193,"jailed":[1000000000000047,1000000000000047,null,1000000000000047],"status":["unbonding","unbonding","bonded","unbonding"]}},{"ix":113,"action":{"kind":"Undelegate","val":2,"amt":3517},"partialState":{"h":12,"t":72,"tokens":[11205,2747,2146,8508],"delegation":[10205,1747,1146,7508],"delegatorTokens":9999999941193}},{"ix":114,"action":{"kind":"Undelegate","val":1,"amt":3372},"partialState":{"h":12,"t":72,"tokens":[11205,2747,2146,8508],"delegation":[10205,1747,1146,7508],"delegatorTokens":9999999941193}},{"ix":115,"action":{"kind":"Deliver","chain":"provider","numPackets":6},"partialState":{"h":12,"t":72,"tokens":[11205,2747,2146,8508],"delegation":[10205,1747,1146,7508],"delegatorTokens":9999999941193,"jailed":[1000000000000047,1000000000000047,null,1000000000000047],"status":["unbonding","unbonding","bonded","unbonding"]}},{"ix":116,"action":{"kind":"Delegate","val":0,"amt":1872},"partialState":{"h":12,"t":72,"tokens":[13077,2747,2146,8508],"delegation":[12077,1747,1146,7508],"delegatorTokens":9999999939321}},{"ix":117,"action":{"kind":"Undelegate","val":1,"amt":1880},"partialState":{"h":12,"t":72,"tokens":[13077,2747,2146,8508],"delegation":[12077,1747,1146,7508],"delegatorTokens":9999999939321}},{"ix":118,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":14,"t":84,"consumerPower":[null,null,3551,null],"outstandingDowntime":[false,false,false,false]}},{"ix":119,"action":{"kind":"Undelegate","val":0,"amt":1388},"partialState":{"h":12,"t":72,"tokens":[11689,2747,2146,8508],"delegation":[10689,1747,1146,7508],"delegatorTokens":9999999939321}},{"ix":120,"action":{"kind":"Undelegate","val":1,"amt":1392},"partialState":{"h":12,"t":72,"tokens":[11689,1355,2146,8508],"delegation":[10689,355,1146,7508],"delegatorTokens":9999999939321}},{"ix":121,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":15,"t":90,"consumerPower":[null,null,3551,null],"outstandingDowntime":[false,false,false,false]}},{"ix":122,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":13,"t":78,"tokens":[11689,1355,2146,8508],"delegation":[10689,355,1146,7508],"delegatorTokens":9999999939321,"jailed":[1000000000000047,1000000000000047,null,1000000000000047],"status":["unbonding","unbonding","bonded","unbonding"]}},{"ix":123,"action":{"kind":"Undelegate","val":3,"amt":2231},"partialState":{"h":13,"t":78,"tokens":[11689,1355,2146,6277],"delegation":[10689,355,1146,5277],"delegatorTokens":9999999939321}},{"ix":124,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":125,"action":{"kind":"Undelegate","val":3,"amt":4223},"partialState":{"h":13,"t":78,"tokens":[11689,1355,2146,2054],"delegation":[10689,355,1146,1054],"delegatorTokens":9999999939321}},{"ix":126,"action":{"kind":"Delegate","val":3,"amt":1208},"partialState":{"h":13,"t":78,"tokens":[11689,1355,2146,3262],"delegation":[10689,355,1146,2262],"delegatorTokens":9999999938113}},{"ix":127,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":14,"t":84,"tokens":[11689,1355,2146,3262],"delegation":[10689,355,1146,2262],"delegatorTokens":9999999938113,"jailed":[1000000000000047,1000000000000047,null,1000000000000047],"status":["unbonding","unbonding","bonded","unbonding"]}},{"ix":128,"action":{"kind":"Delegate","val":2,"amt":3432},"partialState":{"h":14,"t":84,"tokens":[11689,1355,5578,3262],"delegation":[10689,355,4578,2262],"delegatorTokens":9999999934681}},{"ix":129,"action":{"kind":"Delegate","val":1,"amt":1011},"partialState":{"h":14,"t":84,"tokens":[11689,2366,5578,3262],"delegation":[10689,1366,4578,2262],"delegatorTokens":9999999933670}},{"ix":130,"action":{"kind":"Delegate","val":3,"amt":3684},"partialState":{"h":14,"t":84,"tokens":[11689,2366,5578,6946],"delegation":[10689,1366,4578,5946],"delegatorTokens":9999999929986}},{"ix":131,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":15,"t":90,"tokens":[11689,2366,5578,6946],"delegation":[10689,1366,4578,5946],"delegatorTokens":9999999929986,"jailed":[1000000000000047,1000000000000047,null,1000000000000047],"status":["unbonding","unbonding","bonded","unbonding"]}},{"ix":132,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":133,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":134,"action":{"kind":"Undelegate","val":3,"amt":2027},"partialState":{"h":15,"t":90,"tokens":[11689,2366,5578,4919],"delegation":[10689,1366,4578,3919],"delegatorTokens":9999999929986}},{"ix":135,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":16,"t":96,"tokens":[11689,2366,5578,4919],"delegation":[10689,1366,4578,3919],"delegatorTokens":9999999929986,"jailed":[1000000000000047,1000000000000047,null,1000000000000047],"status":["unbonding","unbonding","bonded","unbonding"]}},{"ix":136,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":137,"action":{"kind":"Delegate","val":3,"amt":1065},"partialState":{"h":16,"t":96,"tokens":[11689,2366,5578,5984],"delegation":[10689,1366,4578,4984],"delegatorTokens":9999999928921}},{"ix":138,"action":{"kind":"Undelegate","val":3,"amt":4859},"partialState":{"h":16,"t":96,"tokens":[11689,2366,5578,1125],"delegation":[10689,1366,4578,125],"delegatorTokens":9999999928921}},{"ix":139,"action":{"kind":"Deliver","chain":"provider","numPackets":4},"partialState":{"h":16,"t":96,"tokens":[11689,2366,5578,1125],"delegation":[10689,1366,4578,125],"delegatorTokens":9999999928921,"jailed":[1000000000000047,1000000000000047,null,1000000000000047],"status":["unbonding","unbonding","bonded","unbonding"]}},{"ix":140,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":16,"t":96,"consumerPower":[null,null,3551,null],"outstandingDowntime":[false,false,false,false]}},{"ix":141,"action":{"kind":"Delegate","val":0,"amt":2021},"partialState":{"h":16,"t":96,"tokens":[13710,2366,5578,1125],"delegation":[12710,1366,4578,125],"delegatorTokens":9999999926900}},{"ix":142,"action":{"kind":"Deliver","chain":"provider","numPackets":3},"partialState":{"h":16,"t":96,"tokens":[13710,2366,5578,1125],"delegation":[12710,1366,4578,125],"delegatorTokens":9999999926900,"jailed":[1000000000000047,1000000000000047,null,1000000000000047],"status":["unbonding","unbonding","bonded","unbonding"]}},{"ix":143,"action":{"kind":"Deliver","chain":"provider","numPackets":5},"partialState":{"h":16,"t":96,"tokens":[13710,2366,5578,1125],"delegation":[12710,1366,4578,125],"delegatorTokens":9999999926900,"jailed":[1000000000000047,1000000000000047,null,1000000000000047],"status":["unbonding","unbonding","bonded","unbonding"]}},{"ix":144,"action":{"kind":"Deliver","chain":"provider","numPackets":3},"partialState":{"h":16,"t":96,"tokens":[13710,2366,5578,1125],"delegation":[12710,1366,4578,125],"delegatorTokens":9999999926900,"jailed":[1000000000000047,1000000000000047,null,1000000000000047],"status":["unbonding","unbonding","bonded","unbonding"]}},{"ix":145,"action":{"kind":"Deliver","chain":"provider","numPackets":3},"partialState":{"h":16,"t":96,"tokens":[13710,2366,5578,1125],"delegation":[12710,1366,4578,125],"delegatorTokens":9999999926900,"jailed":[1000000000000047,1000000000000047,null,1000000000000047],"status":["unbonding","unbonding","bonded","unbonding"]}},{"ix":146,"action":{"kind":"Undelegate","val":0,"amt":1425},"partialState":{"h":16,"t":96,"tokens":[12285,2366,5578,1125],"delegation":[11285,1366,4578,125],"delegatorTokens":9999999926900}},{"ix":147,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":148,"action":{"kind":"Undelegate","val":0,"amt":1366},"partialState":{"h":16,"t":96,"tokens":[10919,2366,5578,1125],"delegation":[9919,1366,4578,125],"delegatorTokens":9999999926900}},{"ix":149,"action":{"kind":"Undelegate","val":1,"amt":4038},"partialState":{"h":16,"t":96,"tokens":[10919,2366,5578,1125],"delegation":[9919,1366,4578,125],"delegatorTokens":9999999926900}},{"ix":150,"action":{"kind":"Deliver","chain":"provider","numPackets":5},"partialState":{"h":16,"t":96,"tokens":[10919,2366,5578,1125],"delegation":[9919,1366,4578,125],"delegatorTokens":9999999926900,"jailed":[1000000000000047,1000000000000047,null,1000000000000047],"status":["unbonding","unbonding","bonded","unbonding"]}},{"ix":151,"action":{"kind":"Undelegate","val":2,"amt":4504},"partialState":{"h":16,"t":96,"tokens":[10919,2366,1074,1125],"delegation":[9919,1366,74,125],"delegatorTokens":9999999926900}},{"ix":152,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":17,"t":102,"consumerPower":[null,null,3551,null],"outstandingDowntime":[false,false,false,false]}},{"ix":153,"action":{"kind":"Undelegate","val":3,"amt":4578},"partialState":{"h":16,"t":96,"tokens":[10919,2366,1074,1125],"delegation":[9919,1366,74,125],"delegatorTokens":9999999926900}},{"ix":154,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":18,"t":108,"consumerPower":[null,null,3551,null],"outstandingDowntime":[false,false,false,false]}},{"ix":155,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":19,"t":114,"consumerPower":[null,null,3551,null],"outstandingDowntime":[false,false,false,false]}},{"ix":156,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":157,"action":{"kind":"Undelegate","val":0,"amt":2019},"partialState":{"h":16,"t":96,"tokens":[8900,2366,1074,1125],"delegation":[7900,1366,74,125],"delegatorTokens":9999999926900}},{"ix":158,"action":{"kind":"Delegate","val":0,"amt":2244},"partialState":{"h":16,"t":96,"tokens":[11144,2366,1074,1125],"delegation":[10144,1366,74,125],"delegatorTokens":9999999924656}},{"ix":159,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":17,"t":102,"tokens":[11144,2366,1074,1125],"delegation":[10144,1366,74,125],"delegatorTokens":9999999930392,"jailed":[1000000000000047,1000000000000047,null,1000000000000047],"status":["unbonding","unbonding","bonded","unbonding"]}},{"ix":160,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":20,"t":120,"consumerPower":[null,null,3551,null],"outstandingDowntime":[false,false,false,false]}},{"ix":161,"action":{"kind":"Undelegate","val":1,"amt":1344},"partialState":{"h":17,"t":102,"tokens":[11144,1022,1074,1125],"delegation":[10144,22,74,125],"delegatorTokens":9999999930392}},{"ix":162,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":18,"t":108,"tokens":[11144,1022,1074,1125],"delegation":[10144,22,74,125],"delegatorTokens":9999999932844,"jailed":[1000000000000047,1000000000000047,null,1000000000000047],"status":["unbonding","unbonding","bonded","unbonding"]}},{"ix":163,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":164,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":165,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":21,"t":126,"consumerPower":[null,null,3551,null],"outstandingDowntime":[false,false,false,false]}},{"ix":166,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":19,"t":114,"tokens":[11144,1022,1074,1125],"delegation":[10144,22,74,125],"delegatorTokens":9999999932844,"jailed":[1000000000000047,1000000000000047,null,1000000000000047],"status":["unbonding","unbonding","bonded","unbonding"]}},{"ix":167,"action":{"kind":"Delegate","val":0,"amt":1664},"partialState":{"h":19,"t":114,"tokens":[12808,1022,1074,1125],"delegation":[11808,22,74,125],"delegatorTokens":9999999931180}},{"ix":168,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":22,"t":132,"consumerPower":[null,null,3551,null],"outstandingDowntime":[false,false,false,false]}},{"ix":169,"action":{"kind":"Delegate","val":1,"amt":3204},"partialState":{"h":19,"t":114,"tokens":[12808,4226,1074,1125],"delegation":[11808,3226,74,125],"delegatorTokens":9999999927976}},{"ix":170,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":23,"t":138,"consumerPower":[null,null,3551,null],"outstandingDowntime":[false,false,false,false]}},{"ix":171,"action":{"kind":"Deliver","chain":"consumer","numPackets":6},"partialState":{"h":23,"t":138,"consumerPower":[null,null,3551,null],"outstandingDowntime":[false,false,false,false]}},{"ix":172,"action":{"kind":"Deliver","chain":"consumer","numPackets":2},"partialState":{"h":23,"t":138,"consumerPower":[null,null,3551,null],"outstandingDowntime":[false,false,false,false]}},{"ix":173,"action":{"kind":"Deliver","chain":"provider","numPackets":2},"partialState":{"h":19,"t":114,"tokens":[12808,4226,1074,1125],"delegation":[11808,3226,74,125],"delegatorTokens":9999999927976,"jailed":[1000000000000047,1000000000000047,null,1000000000000047],"status":["unbonding","unbonding","bonded","unbonding"]}},{"ix":174,"action":{"kind":"Undelegate","val":2,"amt":4366},"partialState":{"h":19,"t":114,"tokens":[12808,4226,1074,1125],"delegation":[11808,3226,74,125],"delegatorTokens":9999999927976}},{"ix":175,"action":{"kind":"Deliver","chain":"provider","numPackets":5},"partialState":{"h":19,"t":114,"tokens":[12808,4226,1074,1125],"delegation":[11808,3226,74,125],"delegatorTokens":9999999927976,"jailed":[1000000000000047,1000000000000047,null,1000000000000047],"status":["unbonding","unbonding","bonded","unbonding"]}},{"ix":176,"action":{"kind":"Deliver","chain":"consumer","numPackets":4},"partialState":{"h":23,"t":138,"consumerPower":[null,null,3551,null],"outstandingDowntime":[false,false,false,false]}},{"ix":177,"action":{"kind":"Delegate","val":1,"amt":4359},"partialState":{"h":19,"t":114,"tokens":[12808,8585,1074,1125],"delegation":[11808,7585,74,125],"delegatorTokens":9999999923617}},{"ix":178,"action":{"kind":"Delegate","val":0,"amt":2440},"partialState":{"h":19,"t":114,"tokens":[15248,8585,1074,1125],"delegation":[14248,7585,74,125],"delegatorTokens":9999999921177}},{"ix":179,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":20,"t":120,"tokens":[15248,8585,1074,1125],"delegation":[14248,7585,74,125],"delegatorTokens":9999999926143,"jailed":[1000000000000047,1000000000000047,null,1000000000000047],"status":["unbonding","unbonding","bonded","unbonding"]}},{"ix":180,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":21,"t":126,"tokens":[15248,8585,1074,1125],"delegation":[14248,7585,74,125],"delegatorTokens":9999999933604,"jailed":[1000000000000047,1000000000000047,null,1000000000000047],"status":["unbonding","unbonded","bonded","unbonding"]}},{"ix":181,"action":{"kind":"Deliver","chain":"consumer","numPackets":3},"partialState":{"h":23,"t":138,"consumerPower":[null,null,3551,null],"outstandingDowntime":[false,false,false,false]}},{"ix":182,"action":{"kind":"Undelegate","val":0,"amt":4168},"partialState":{"h":21,"t":126,"tokens":[11080,8585,1074,1125],"delegation":[10080,7585,74,125],"delegatorTokens":9999999933604}},{"ix":183,"action":{"kind":"Undelegate","val":3,"amt":2399},"partialState":{"h":21,"t":126,"tokens":[11080,8585,1074,1125],"delegation":[10080,7585,74,125],"delegatorTokens":9999999933604}},{"ix":184,"action":{"kind":"Undelegate","val":2,"amt":3893},"partialState":{"h":21,"t":126,"tokens":[11080,8585,1074,1125],"delegation":[10080,7585,74,125],"delegatorTokens":9999999933604}},{"ix":185,"action":{"kind":"Deliver","chain":"consumer","numPackets":5},"partialState":{"h":23,"t":138,"consumerPower":[null,null,3551,null],"outstandingDowntime":[false,false,false,false]}},{"ix":186,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":22,"t":132,"tokens":[11080,8585,1074,1125],"delegation":[10080,7585,74,125],"delegatorTokens":9999999936867,"jailed":[1000000000000047,1000000000000047,null,1000000000000047],"status":["unbonded","unbonded","bonded","unbonded"]}},{"ix":187,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":23,"t":138,"tokens":[11080,8585,1074,1125],"delegation":[10080,7585,74,125],"delegatorTokens":9999999936867,"jailed":[1000000000000047,1000000000000047,null,1000000000000047],"status":["unbonded","unbonded","bonded","unbonded"]}},{"ix":188,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":189,"action":{"kind":"Undelegate","val":1,"amt":4474},"partialState":{"h":23,"t":138,"tokens":[11080,4111,1074,1125],"delegation":[10080,3111,74,125],"delegatorTokens":9999999936867}},{"ix":190,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":191,"action":{"kind":"Deliver","chain":"provider","numPackets":4},"partialState":{"h":23,"t":138,"tokens":[11080,4111,1074,1125],"delegation":[10080,3111,74,125],"delegatorTokens":9999999936867,"jailed":[1000000000000047,1000000000000047,null,1000000000000047],"status":["unbonded","unbonded","bonded","unbonded"]}},{"ix":192,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":24,"t":144,"tokens":[11080,4111,1074,1125],"delegation":[10080,3111,74,125],"delegatorTokens":9999999936867,"jailed":[1000000000000047,1000000000000047,null,1000000000000047],"status":["unbonded","unbonded","bonded","unbonded"]}},{"ix":193,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":194,"action":{"kind":"Undelegate","val":0,"amt":4637},"partialState":{"h":24,"t":144,"tokens":[6443,4111,1074,1125],"delegation":[5443,3111,74,125],"delegatorTokens":9999999936867}},{"ix":195,"action":{"kind":"Deliver","chain":"consumer","numPackets":3},"partialState":{"h":23,"t":138,"consumerPower":[null,null,3551,null],"outstandingDowntime":[false,false,false,false]}},{"ix":196,"action":{"kind":"Undelegate","val":3,"amt":2613},"partialState":{"h":24,"t":144,"tokens":[6443,4111,1074,1125],"delegation":[5443,3111,74,125],"delegatorTokens":9999999936867}},{"ix":197,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":24,"t":144,"consumerPower":[null,null,1074,null],"outstandingDowntime":[false,false,false,false]}},{"ix":198,"action":{"kind":"Delegate","val":1,"amt":2715},"partialState":{"h":24,"t":144,"tokens":[6443,6826,1074,1125],"delegation":[5443,5826,74,125],"delegatorTokens":9999999934152}},{"ix":199,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":25,"t":150,"tokens":[6443,6826,1074,1125],"delegation":[5443,5826,74,125],"delegatorTokens":9999999934152,"jailed":[1000000000000047,1000000000000047,null,1000000000000047],"status":["unbonded","unbonded","bonded","unbonded"]}}],"events":["more_than_one_third_val_power_change","send_vsc_without_downtime_ack","send_double_sign_slash_request","send_vsc_without_downtime_ack","send_downtime_slash_request","send_downtime_slash_request","more_than_one_third_val_power_change","send_vsc_without_downtime_ack","more_than_one_third_val_power_change","rebond_unval","send_vsc_without_downtime_ack","send_downtime_slash_request","insufficient_shares","more_than_one_third_val_power_change","rebond_unval","send_vsc_without_downtime_ack","insufficient_shares","insufficient_shares","insufficient_shares","consumer_del_val","consumer_del_val","consumer_update_val","consumer_add_val","insufficient_shares","receive_double_sign_slash_request","more_than_one_third_val_power_change","rebond_unval","receive_downtime_slash_request","jail","receive_downtime_slash_request","jail","receive_downtime_slash_request","jail","send_vsc_with_downtime_ack","more_than_one_third_val_power_change","rebond_unval","send_vsc_without_downtime_ack","receive_downtime_slash_ack","receive_downtime_slash_ack","receive_downtime_slash_ack","consumer_update_val","consumer_del_val","consumer_update_val","send_vsc_not_because_change","send_vsc_without_downtime_ack","send_vsc_without_downtime_ack","consumer_send_maturation","consumer_send_maturation","consumer_send_maturation","consumer_send_maturation","consumer_del_val","consumer_add_val","consumer_del_val","insufficient_shares","insufficient_shares","send_vsc_without_downtime_ack","send_vsc_not_because_change","send_vsc_without_downtime_ack","some_undels_expired_but_not_completed","send_vsc_without_downtime_ack","some_undels_expired_but_not_completed","send_vsc_not_because_change","send_vsc_without_downtime_ack","insufficient_shares","insufficient_shares","consumer_send_maturation","consumer_send_maturation","complete_undel_immediate","complete_undel_immediate","set_undel_hold_false","send_vsc_without_downtime_ack","complete_undel_in_endblock","send_vsc_not_because_change","send_vsc_without_downtime_ack","consumer_send_maturation","consumer_send_maturation","insufficient_shares","some_undels_expired_but_not_completed","complete_undel_immediate","set_undel_hold_false","set_undel_hold_false","set_undel_hold_false","set_unval_hold_false","set_undel_hold_false","set_unval_hold_false","set_unval_hold_false","complete_unval_in_endblock","complete_undel_in_endblock","insufficient_shares","insufficient_shares","complete_unval_in_endblock","complete_unval_in_endblock","complete_undel_in_endblock","send_vsc_not_because_change","send_vsc_without_downtime_ack","some_undels_expired_but_not_completed","some_undels_expired_but_not_completed","send_vsc_not_because_change","send_vsc_without_downtime_ack","insufficient_shares","consumer_update_val","some_undels_expired_but_not_completed","send_vsc_not_because_change","send_vsc_without_downtime_ack"]},{"meta":{"commit":"7ffd0c04e4205cbc9caf212abfe6c59ee43153bf"},"constants":{"P":"provider","C":"consumer","UNBONDING_SECONDS_P":70,"UNBONDING_SECONDS_C":50,"TRUSTING_SECONDS":49,"NUM_VALIDATORS":4,"MAX_VALIDATORS":2,"SLASH_DOUBLESIGN":0,"SLASH_DOWNTIME":0,"JAIL_SECONDS":999999999999999,"BLOCK_SECONDS":6,"INITIAL_DELEGATOR_TOKENS":10000000000000,"DELEGATE_AMT_MIN":1000,"DELEGATE_AMT_MAX":5000,"UNDELEGATE_AMT_MIN":1000,"UNDELEGATE_AMT_MAX":5000,"ISDOWNTIME_PROBABILITY":0.5,"MAX_NUM_PACKETS_FOR_DELIVER":6},"actions":[{"ix":0,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":1,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":2,"t":12,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":2,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":3,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":2,"t":12,"tokens":[5000,4000,3000,2000],"delegation":[4000,3000,2000,1000],"delegatorTokens":10000000000000,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":4,"action":{"kind":"Undelegate","val":0,"amt":2908},"partialState":{"h":2,"t":12,"tokens":[2092,4000,3000,2000],"delegation":[1092,3000,2000,1000],"delegatorTokens":10000000000000}},{"ix":5,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":3,"t":18,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":6,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":4,"t":24,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":7,"action":{"kind":"Delegate","val":2,"amt":4971},"partialState":{"h":2,"t":12,"tokens":[2092,4000,7971,2000],"delegation":[1092,3000,6971,1000],"delegatorTokens":9999999995029}},{"ix":8,"action":{"kind":"Undelegate","val":0,"amt":3185},"partialState":{"h":2,"t":12,"tokens":[2092,4000,7971,2000],"delegation":[1092,3000,6971,1000],"delegatorTokens":9999999995029}},{"ix":9,"action":{"kind":"ConsumerSlash","val":1,"infractionHeight":2,"isDowntime":false},"partialState":{"h":4,"t":24,"outstandingDowntime":[false,false,false,false]}},{"ix":10,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":3,"t":18,"tokens":[2092,4000,7971,2000],"delegation":[1092,3000,6971,1000],"delegatorTokens":9999999995029,"jailed":[null,null,null,null],"status":["unbonding","bonded","bonded","unbonded"]}},{"ix":11,"action":{"kind":"Undelegate","val":1,"amt":3372},"partialState":{"h":3,"t":18,"tokens":[2092,4000,7971,2000],"delegation":[1092,3000,6971,1000],"delegatorTokens":9999999995029}},{"ix":12,"action":{"kind":"ConsumerSlash","val":3,"infractionHeight":0,"isDowntime":true},"partialState":{"h":4,"t":24,"outstandingDowntime":[false,false,false,true]}},{"ix":13,"action":{"kind":"Undelegate","val":1,"amt":1940},"partialState":{"h":3,"t":18,"tokens":[2092,2060,7971,2000],"delegation":[1092,1060,6971,1000],"delegatorTokens":9999999995029}},{"ix":14,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":5,"t":30,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,false,false,true]}},{"ix":15,"action":{"kind":"ConsumerSlash","val":3,"infractionHeight":0,"isDowntime":true},"partialState":{"h":5,"t":30,"outstandingDowntime":[false,false,false,true]}},{"ix":16,"action":{"kind":"Delegate","val":2,"amt":4758},"partialState":{"h":3,"t":18,"tokens":[2092,2060,12729,2000],"delegation":[1092,1060,11729,1000],"delegatorTokens":9999999990271}},{"ix":17,"action":{"kind":"Delegate","val":0,"amt":4157},"partialState":{"h":3,"t":18,"tokens":[6249,2060,12729,2000],"delegation":[5249,1060,11729,1000],"delegatorTokens":9999999986114}},{"ix":18,"action":{"kind":"Delegate","val":1,"amt":2728},"partialState":{"h":3,"t":18,"tokens":[6249,4788,12729,2000],"delegation":[5249,3788,11729,1000],"delegatorTokens":9999999983386}},{"ix":19,"action":{"kind":"Deliver","chain":"provider","numPackets":5},"partialState":{"h":3,"t":18,"tokens":[6249,4788,12729,2000],"delegation":[5249,3788,11729,1000],"delegatorTokens":9999999983386,"jailed":[null,null,null,null],"status":["unbonding","bonded","bonded","unbonded"]}},{"ix":20,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":6,"t":36,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,false,false,true]}},{"ix":21,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":4,"t":24,"tokens":[6249,4788,12729,2000],"delegation":[5249,3788,11729,1000],"delegatorTokens":9999999983386,"jailed":[null,null,null,null],"status":["bonded","unbonding","bonded","unbonded"]}},{"ix":22,"action":{"kind":"ConsumerSlash","val":1,"infractionHeight":1,"isDowntime":true},"partialState":{"h":6,"t":36,"outstandingDowntime":[false,true,false,true]}},{"ix":23,"action":{"kind":"Undelegate","val":3,"amt":1283},"partialState":{"h":4,"t":24,"tokens":[6249,4788,12729,2000],"delegation":[5249,3788,11729,1000],"delegatorTokens":9999999983386}},{"ix":24,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":25,"action":{"kind":"Delegate","val":0,"amt":1187},"partialState":{"h":4,"t":24,"tokens":[7436,4788,12729,2000],"delegation":[6436,3788,11729,1000],"delegatorTokens":9999999982199}},{"ix":26,"action":{"kind":"Deliver","chain":"consumer","numPackets":2},"partialState":{"h":6,"t":36,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,true,false,true]}},{"ix":27,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":28,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":5,"t":30,"tokens":[7436,4788,12729,2000],"delegation":[6436,3788,11729,1000],"delegatorTokens":9999999982199,"jailed":[null,null,null,null],"status":["bonded","unbonding","bonded","unbonded"]}},{"ix":29,"action":{"kind":"Undelegate","val":3,"amt":3043},"partialState":{"h":5,"t":30,"tokens":[7436,4788,12729,2000],"delegation":[6436,3788,11729,1000],"delegatorTokens":9999999982199}},{"ix":30,"action":{"kind":"Delegate","val":0,"amt":3274},"partialState":{"h":5,"t":30,"tokens":[10710,4788,12729,2000],"delegation":[9710,3788,11729,1000],"delegatorTokens":9999999978925}},{"ix":31,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":7,"t":42,"consumerPower":[null,4000,7971,null],"outstandingDowntime":[false,true,false,true]}},{"ix":32,"action":{"kind":"ConsumerSlash","val":2,"infractionHeight":6,"isDowntime":true},"partialState":{"h":7,"t":42,"outstandingDowntime":[false,true,true,true]}},{"ix":33,"action":{"kind":"Deliver","chain":"provider","numPackets":2},"partialState":{"h":5,"t":30,"tokens":[10710,4788,12729,2000],"delegation":[9710,3788,11729,1000],"delegatorTokens":9999999978925,"jailed":[null,null,null,null],"status":["bonded","unbonding","bonded","unbonded"]}},{"ix":34,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":35,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":8,"t":48,"consumerPower":[null,4000,7971,null],"outstandingDowntime":[false,true,true,true]}},{"ix":36,"action":{"kind":"Undelegate","val":0,"amt":3460},"partialState":{"h":5,"t":30,"tokens":[7250,4788,12729,2000],"delegation":[6250,3788,11729,1000],"delegatorTokens":9999999978925}},{"ix":37,"action":{"kind":"Undelegate","val":0,"amt":1911},"partialState":{"h":5,"t":30,"tokens":[5339,4788,12729,2000],"delegation":[4339,3788,11729,1000],"delegatorTokens":9999999978925}},{"ix":38,"action":{"kind":"Delegate","val":3,"amt":4335},"partialState":{"h":5,"t":30,"tokens":[5339,4788,12729,6335],"delegation":[4339,3788,11729,5335],"delegatorTokens":9999999974590}},{"ix":39,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":6,"t":36,"tokens":[5339,4788,12729,6335],"delegation":[4339,3788,11729,5335],"delegatorTokens":9999999974590,"jailed":[null,null,null,1000000000000029],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":40,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":9,"t":54,"consumerPower":[null,4000,7971,null],"outstandingDowntime":[false,true,true,true]}},{"ix":41,"action":{"kind":"Deliver","chain":"provider","numPackets":3},"partialState":{"h":6,"t":36,"tokens":[5339,4788,12729,6335],"delegation":[4339,3788,11729,5335],"delegatorTokens":9999999974590,"jailed":[null,null,null,1000000000000029],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":42,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":10,"t":60,"consumerPower":[null,4000,7971,null],"outstandingDowntime":[false,true,true,true]}},{"ix":43,"action":{"kind":"Delegate","val":1,"amt":4893},"partialState":{"h":6,"t":36,"tokens":[5339,9681,12729,6335],"delegation":[4339,8681,11729,5335],"delegatorTokens":9999999969697}},{"ix":44,"action":{"kind":"Deliver","chain":"consumer","numPackets":4},"partialState":{"h":10,"t":60,"consumerPower":[null,4000,7971,null],"outstandingDowntime":[false,true,true,true]}},{"ix":45,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":7,"t":42,"tokens":[5339,9681,12729,6335],"delegation":[4339,8681,11729,5335],"delegatorTokens":9999999969697,"jailed":[null,1000000000000035,1000000000000035,1000000000000029],"status":["unbonding","bonded","bonded","unbonding"]}},{"ix":46,"action":{"kind":"Deliver","chain":"provider","numPackets":6},"partialState":{"h":7,"t":42,"tokens":[5339,9681,12729,6335],"delegation":[4339,8681,11729,5335],"delegatorTokens":9999999969697,"jailed":[null,1000000000000035,1000000000000035,1000000000000029],"status":["unbonding","bonded","bonded","unbonding"]}},{"ix":47,"action":{"kind":"Undelegate","val":1,"amt":2494},"partialState":{"h":7,"t":42,"tokens":[5339,7187,12729,6335],"delegation":[4339,6187,11729,5335],"delegatorTokens":9999999969697}},{"ix":48,"action":{"kind":"Undelegate","val":0,"amt":1038},"partialState":{"h":7,"t":42,"tokens":[4301,7187,12729,6335],"delegation":[3301,6187,11729,5335],"delegatorTokens":9999999969697}},{"ix":49,"action":{"kind":"Delegate","val":2,"amt":3009},"partialState":{"h":7,"t":42,"tokens":[4301,7187,15738,6335],"delegation":[3301,6187,14738,5335],"delegatorTokens":9999999966688}},{"ix":50,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":11,"t":66,"consumerPower":[7436,null,12729,null],"outstandingDowntime":[false,true,true,true]}},{"ix":51,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":12,"t":72,"consumerPower":[7436,null,12729,null],"outstandingDowntime":[false,true,true,true]}},{"ix":52,"action":{"kind":"Undelegate","val":0,"amt":1607},"partialState":{"h":7,"t":42,"tokens":[2694,7187,15738,6335],"delegation":[1694,6187,14738,5335],"delegatorTokens":9999999966688}},{"ix":53,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":54,"action":{"kind":"Delegate","val":3,"amt":3069},"partialState":{"h":7,"t":42,"tokens":[2694,7187,15738,9404],"delegation":[1694,6187,14738,8404],"delegatorTokens":9999999963619}},{"ix":55,"action":{"kind":"Deliver","chain":"consumer","numPackets":5},"partialState":{"h":12,"t":72,"consumerPower":[7436,null,12729,null],"outstandingDowntime":[false,true,true,false]}},{"ix":56,"action":{"kind":"Deliver","chain":"provider","numPackets":1},"partialState":{"h":7,"t":42,"tokens":[2694,7187,15738,9404],"delegation":[1694,6187,14738,8404],"delegatorTokens":9999999963619,"jailed":[null,1000000000000035,1000000000000035,1000000000000029],"status":["unbonding","bonded","bonded","unbonding"]}},{"ix":57,"action":{"kind":"Undelegate","val":1,"amt":4839},"partialState":{"h":7,"t":42,"tokens":[2694,2348,15738,9404],"delegation":[1694,1348,14738,8404],"delegatorTokens":9999999963619}},{"ix":58,"action":{"kind":"Undelegate","val":3,"amt":4969},"partialState":{"h":7,"t":42,"tokens":[2694,2348,15738,4435],"delegation":[1694,1348,14738,3435],"delegatorTokens":9999999963619}},{"ix":59,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":8,"t":48,"tokens":[2694,2348,15738,4435],"delegation":[1694,1348,14738,3435],"delegatorTokens":9999999963619,"jailed":[null,1000000000000035,1000000000000035,1000000000000029],"status":["bonded","unbonding","unbonding","unbonding"]}},{"ix":60,"action":{"kind":"Undelegate","val":3,"amt":1965},"partialState":{"h":8,"t":48,"tokens":[2694,2348,15738,2470],"delegation":[1694,1348,14738,1470],"delegatorTokens":9999999963619}},{"ix":61,"action":{"kind":"Delegate","val":2,"amt":4239},"partialState":{"h":8,"t":48,"tokens":[2694,2348,19977,2470],"delegation":[1694,1348,18977,1470],"delegatorTokens":9999999959380}},{"ix":62,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":63,"action":{"kind":"Deliver","chain":"consumer","numPackets":6},"partialState":{"h":12,"t":72,"consumerPower":[7436,null,12729,null],"outstandingDowntime":[false,false,false,false]}},{"ix":64,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":65,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":66,"action":{"kind":"Undelegate","val":1,"amt":1198},"partialState":{"h":8,"t":48,"tokens":[2694,1150,19977,2470],"delegation":[1694,150,18977,1470],"delegatorTokens":9999999959380}},{"ix":67,"action":{"kind":"Delegate","val":3,"amt":1076},"partialState":{"h":8,"t":48,"tokens":[2694,1150,19977,3546],"delegation":[1694,150,18977,2546],"delegatorTokens":9999999958304}},{"ix":68,"action":{"kind":"Undelegate","val":2,"amt":1806},"partialState":{"h":8,"t":48,"tokens":[2694,1150,18171,3546],"delegation":[1694,150,17171,2546],"delegatorTokens":9999999958304}},{"ix":69,"action":{"kind":"Delegate","val":2,"amt":3411},"partialState":{"h":8,"t":48,"tokens":[2694,1150,21582,3546],"delegation":[1694,150,20582,2546],"delegatorTokens":9999999954893}},{"ix":70,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":9,"t":54,"tokens":[2694,1150,21582,3546],"delegation":[1694,150,20582,2546],"delegatorTokens":9999999954893,"jailed":[null,1000000000000035,1000000000000035,1000000000000029],"status":["bonded","unbonding","unbonding","unbonding"]}},{"ix":71,"action":{"kind":"Undelegate","val":0,"amt":4480},"partialState":{"h":9,"t":54,"tokens":[2694,1150,21582,3546],"delegation":[1694,150,20582,2546],"delegatorTokens":9999999954893}},{"ix":72,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":73,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":74,"action":{"kind":"Deliver","chain":"consumer","numPackets":1},"partialState":{"h":12,"t":72,"consumerPower":[7436,null,12729,null],"outstandingDowntime":[false,false,false,false]}},{"ix":75,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":76,"action":{"kind":"Delegate","val":0,"amt":4908},"partialState":{"h":9,"t":54,"tokens":[7602,1150,21582,3546],"delegation":[6602,150,20582,2546],"delegatorTokens":9999999949985}},{"ix":77,"action":{"kind":"Undelegate","val":1,"amt":1224},"partialState":{"h":9,"t":54,"tokens":[7602,1150,21582,3546],"delegation":[6602,150,20582,2546],"delegatorTokens":9999999949985}},{"ix":78,"action":{"kind":"Deliver","chain":"consumer","numPackets":5},"partialState":{"h":12,"t":72,"consumerPower":[7436,null,12729,null],"outstandingDowntime":[false,false,false,false]}},{"ix":79,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":13,"t":78,"consumerPower":[2694,null,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":80,"action":{"kind":"Undelegate","val":3,"amt":3231},"partialState":{"h":9,"t":54,"tokens":[7602,1150,21582,3546],"delegation":[6602,150,20582,2546],"delegatorTokens":9999999949985}},{"ix":81,"action":{"kind":"Delegate","val":1,"amt":1703},"partialState":{"h":9,"t":54,"tokens":[7602,2853,21582,3546],"delegation":[6602,1853,20582,2546],"delegatorTokens":9999999948282}},{"ix":82,"action":{"kind":"Deliver","chain":"consumer","numPackets":4},"partialState":{"h":13,"t":78,"consumerPower":[2694,null,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":83,"action":{"kind":"Delegate","val":3,"amt":4815},"partialState":{"h":9,"t":54,"tokens":[7602,2853,21582,8361],"delegation":[6602,1853,20582,7361],"delegatorTokens":9999999943467}},{"ix":84,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":85,"action":{"kind":"Undelegate","val":2,"amt":1097},"partialState":{"h":9,"t":54,"tokens":[7602,2853,20485,8361],"delegation":[6602,1853,19485,7361],"delegatorTokens":9999999943467}},{"ix":86,"action":{"kind":"Undelegate","val":2,"amt":2475},"partialState":{"h":9,"t":54,"tokens":[7602,2853,18010,8361],"delegation":[6602,1853,17010,7361],"delegatorTokens":9999999943467}},{"ix":87,"action":{"kind":"Undelegate","val":0,"amt":3531},"partialState":{"h":9,"t":54,"tokens":[4071,2853,18010,8361],"delegation":[3071,1853,17010,7361],"delegatorTokens":9999999943467}},{"ix":88,"action":{"kind":"Delegate","val":1,"amt":1261},"partialState":{"h":9,"t":54,"tokens":[4071,4114,18010,8361],"delegation":[3071,3114,17010,7361],"delegatorTokens":9999999942206}},{"ix":89,"action":{"kind":"Delegate","val":3,"amt":2591},"partialState":{"h":9,"t":54,"tokens":[4071,4114,18010,10952],"delegation":[3071,3114,17010,9952],"delegatorTokens":9999999939615}},{"ix":90,"action":{"kind":"Deliver","chain":"provider","numPackets":6},"partialState":{"h":9,"t":54,"tokens":[4071,4114,18010,10952],"delegation":[3071,3114,17010,9952],"delegatorTokens":9999999939615,"jailed":[null,1000000000000035,1000000000000035,1000000000000029],"status":["bonded","unbonding","unbonding","unbonding"]}},{"ix":91,"action":{"kind":"Delegate","val":0,"amt":1253},"partialState":{"h":9,"t":54,"tokens":[5324,4114,18010,10952],"delegation":[4324,3114,17010,9952],"delegatorTokens":9999999938362}},{"ix":92,"action":{"kind":"Deliver","chain":"consumer","numPackets":2},"partialState":{"h":13,"t":78,"consumerPower":[2694,null,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":93,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":94,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":10,"t":60,"tokens":[5324,4114,18010,10952],"delegation":[4324,3114,17010,9952],"delegatorTokens":9999999938362,"jailed":[null,1000000000000035,1000000000000035,1000000000000029],"status":["bonded","unbonding","unbonding","unbonding"]}},{"ix":95,"action":{"kind":"Undelegate","val":3,"amt":3290},"partialState":{"h":10,"t":60,"tokens":[5324,4114,18010,7662],"delegation":[4324,3114,17010,6662],"delegatorTokens":9999999938362}},{"ix":96,"action":{"kind":"Undelegate","val":1,"amt":1635},"partialState":{"h":10,"t":60,"tokens":[5324,2479,18010,7662],"delegation":[4324,1479,17010,6662],"delegatorTokens":9999999938362}},{"ix":97,"action":{"kind":"Deliver","chain":"provider","numPackets":3},"partialState":{"h":10,"t":60,"tokens":[5324,2479,18010,7662],"delegation":[4324,1479,17010,6662],"delegatorTokens":9999999938362,"jailed":[null,1000000000000035,1000000000000035,1000000000000029],"status":["bonded","unbonding","unbonding","unbonding"]}},{"ix":98,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":99,"action":{"kind":"Deliver","chain":"provider","numPackets":5},"partialState":{"h":10,"t":60,"tokens":[5324,2479,18010,7662],"delegation":[4324,1479,17010,6662],"delegatorTokens":9999999938362,"jailed":[null,1000000000000035,1000000000000035,1000000000000029],"status":["bonded","unbonding","unbonding","unbonding"]}},{"ix":100,"action":{"kind":"Deliver","chain":"consumer","numPackets":6},"partialState":{"h":13,"t":78,"consumerPower":[2694,null,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":101,"action":{"kind":"Undelegate","val":1,"amt":4490},"partialState":{"h":10,"t":60,"tokens":[5324,2479,18010,7662],"delegation":[4324,1479,17010,6662],"delegatorTokens":9999999938362}},{"ix":102,"action":{"kind":"Undelegate","val":3,"amt":3761},"partialState":{"h":10,"t":60,"tokens":[5324,2479,18010,3901],"delegation":[4324,1479,17010,2901],"delegatorTokens":9999999938362}},{"ix":103,"action":{"kind":"Undelegate","val":1,"amt":1731},"partialState":{"h":10,"t":60,"tokens":[5324,2479,18010,3901],"delegation":[4324,1479,17010,2901],"delegatorTokens":9999999938362}},{"ix":104,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":14,"t":84,"consumerPower":[2694,null,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":105,"action":{"kind":"Delegate","val":2,"amt":2454},"partialState":{"h":10,"t":60,"tokens":[5324,2479,20464,3901],"delegation":[4324,1479,19464,2901],"delegatorTokens":9999999935908}},{"ix":106,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":11,"t":66,"tokens":[5324,2479,20464,3901],"delegation":[4324,1479,19464,2901],"delegatorTokens":9999999935908,"jailed":[null,1000000000000035,1000000000000035,1000000000000029],"status":["bonded","unbonding","unbonding","unbonding"]}},{"ix":107,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":12,"t":72,"tokens":[5324,2479,20464,3901],"delegation":[4324,1479,19464,2901],"delegatorTokens":9999999935908,"jailed":[null,1000000000000035,1000000000000035,1000000000000029],"status":["bonded","unbonding","unbonding","unbonding"]}},{"ix":108,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":13,"t":78,"tokens":[5324,2479,20464,3901],"delegation":[4324,1479,19464,2901],"delegatorTokens":9999999935908,"jailed":[null,1000000000000035,1000000000000035,1000000000000029],"status":["bonded","unbonding","unbonding","unbonding"]}},{"ix":109,"action":{"kind":"Delegate","val":3,"amt":1216},"partialState":{"h":13,"t":78,"tokens":[5324,2479,20464,5117],"delegation":[4324,1479,19464,4117],"delegatorTokens":9999999934692}},{"ix":110,"action":{"kind":"Delegate","val":0,"amt":2205},"partialState":{"h":13,"t":78,"tokens":[7529,2479,20464,5117],"delegation":[6529,1479,19464,4117],"delegatorTokens":9999999932487}},{"ix":111,"action":{"kind":"Undelegate","val":2,"amt":1605},"partialState":{"h":13,"t":78,"tokens":[7529,2479,18859,5117],"delegation":[6529,1479,17859,4117],"delegatorTokens":9999999932487}},{"ix":112,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":14,"t":84,"tokens":[7529,2479,18859,5117],"delegation":[6529,1479,17859,4117],"delegatorTokens":9999999932487,"jailed":[null,1000000000000035,1000000000000035,1000000000000029],"status":["bonded","unbonding","unbonding","unbonding"]}},{"ix":113,"action":{"kind":"Deliver","chain":"consumer","numPackets":5},"partialState":{"h":14,"t":84,"consumerPower":[2694,null,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":114,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":115,"action":{"kind":"Undelegate","val":2,"amt":4982},"partialState":{"h":14,"t":84,"tokens":[7529,2479,13877,5117],"delegation":[6529,1479,12877,4117],"delegatorTokens":9999999932487}},{"ix":116,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":15,"t":90,"tokens":[7529,2479,13877,5117],"delegation":[6529,1479,12877,4117],"delegatorTokens":9999999932487,"jailed":[null,1000000000000035,1000000000000035,1000000000000029],"status":["bonded","unbonding","unbonding","unbonding"]}},{"ix":117,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":118,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":16,"t":96,"tokens":[7529,2479,13877,5117],"delegation":[6529,1479,12877,4117],"delegatorTokens":9999999932487,"jailed":[null,1000000000000035,1000000000000035,1000000000000029],"status":["bonded","unbonding","unbonding","unbonding"]}},{"ix":119,"action":{"kind":"Delegate","val":1,"amt":1383},"partialState":{"h":16,"t":96,"tokens":[7529,3862,13877,5117],"delegation":[6529,2862,12877,4117],"delegatorTokens":9999999931104}},{"ix":120,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":17,"t":102,"tokens":[7529,3862,13877,5117],"delegation":[6529,2862,12877,4117],"delegatorTokens":9999999931104,"jailed":[null,1000000000000035,1000000000000035,1000000000000029],"status":["bonded","unbonding","unbonding","unbonding"]}},{"ix":121,"action":{"kind":"Delegate","val":3,"amt":4239},"partialState":{"h":17,"t":102,"tokens":[7529,3862,13877,9356],"delegation":[6529,2862,12877,8356],"delegatorTokens":9999999926865}},{"ix":122,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":18,"t":108,"tokens":[7529,3862,13877,9356],"delegation":[6529,2862,12877,8356],"delegatorTokens":9999999926865,"jailed":[null,1000000000000035,1000000000000035,1000000000000029],"status":["bonded","unbonding","unbonding","unbonding"]}},{"ix":123,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":15,"t":90,"consumerPower":[5324,null,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":124,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":16,"t":96,"consumerPower":[5324,null,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":125,"action":{"kind":"Delegate","val":0,"amt":3385},"partialState":{"h":18,"t":108,"tokens":[10914,3862,13877,9356],"delegation":[9914,2862,12877,8356],"delegatorTokens":9999999923480}},{"ix":126,"action":{"kind":"Deliver","chain":"consumer","numPackets":1},"partialState":{"h":16,"t":96,"consumerPower":[5324,null,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":127,"action":{"kind":"Delegate","val":2,"amt":4857},"partialState":{"h":18,"t":108,"tokens":[10914,3862,18734,9356],"delegation":[9914,2862,17734,8356],"delegatorTokens":9999999918623}},{"ix":128,"action":{"kind":"Deliver","chain":"provider","numPackets":1},"partialState":{"h":18,"t":108,"tokens":[10914,3862,18734,9356],"delegation":[9914,2862,17734,8356],"delegatorTokens":9999999918623,"jailed":[null,1000000000000035,1000000000000035,1000000000000029],"status":["bonded","unbonding","unbonding","unbonding"]}},{"ix":129,"action":{"kind":"Undelegate","val":3,"amt":4095},"partialState":{"h":18,"t":108,"tokens":[10914,3862,18734,5261],"delegation":[9914,2862,17734,4261],"delegatorTokens":9999999918623}},{"ix":130,"action":{"kind":"Undelegate","val":2,"amt":2624},"partialState":{"h":18,"t":108,"tokens":[10914,3862,16110,5261],"delegation":[9914,2862,15110,4261],"delegatorTokens":9999999918623}},{"ix":131,"action":{"kind":"Deliver","chain":"provider","numPackets":3},"partialState":{"h":18,"t":108,"tokens":[10914,3862,16110,5261],"delegation":[9914,2862,15110,4261],"delegatorTokens":9999999918623,"jailed":[null,1000000000000035,1000000000000035,1000000000000029],"status":["bonded","unbonding","unbonding","unbonding"]}},{"ix":132,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":17,"t":102,"consumerPower":[7529,null,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":133,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":134,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":135,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":18,"t":108,"consumerPower":[7529,null,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":136,"action":{"kind":"Undelegate","val":0,"amt":4776},"partialState":{"h":18,"t":108,"tokens":[6138,3862,16110,5261],"delegation":[5138,2862,15110,4261],"delegatorTokens":9999999918623}},{"ix":137,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":19,"t":114,"consumerPower":[7529,null,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":138,"action":{"kind":"Deliver","chain":"consumer","numPackets":4},"partialState":{"h":19,"t":114,"consumerPower":[7529,null,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":139,"action":{"kind":"Undelegate","val":1,"amt":3221},"partialState":{"h":18,"t":108,"tokens":[6138,3862,16110,5261],"delegation":[5138,2862,15110,4261],"delegatorTokens":9999999918623}},{"ix":140,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":141,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":20,"t":120,"consumerPower":[7529,null,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":142,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":143,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":144,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":145,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":146,"action":{"kind":"Undelegate","val":2,"amt":4563},"partialState":{"h":18,"t":108,"tokens":[6138,3862,11547,5261],"delegation":[5138,2862,10547,4261],"delegatorTokens":9999999918623}},{"ix":147,"action":{"kind":"Delegate","val":3,"amt":4630},"partialState":{"h":18,"t":108,"tokens":[6138,3862,11547,9891],"delegation":[5138,2862,10547,8891],"delegatorTokens":9999999913993}},{"ix":148,"action":{"kind":"Undelegate","val":1,"amt":3761},"partialState":{"h":18,"t":108,"tokens":[6138,3862,11547,9891],"delegation":[5138,2862,10547,8891],"delegatorTokens":9999999913993}},{"ix":149,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":21,"t":126,"consumerPower":[7529,null,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":150,"action":{"kind":"Deliver","chain":"provider","numPackets":4},"partialState":{"h":18,"t":108,"tokens":[6138,3862,11547,9891],"delegation":[5138,2862,10547,8891],"delegatorTokens":9999999913993,"jailed":[null,1000000000000035,1000000000000035,1000000000000029],"status":["bonded","unbonding","unbonding","unbonding"]}},{"ix":151,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":152,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":19,"t":114,"tokens":[6138,3862,11547,9891],"delegation":[5138,2862,10547,8891],"delegatorTokens":9999999918841,"jailed":[null,1000000000000035,1000000000000035,1000000000000029],"status":["bonded","unbonding","unbonding","unbonding"]}},{"ix":153,"action":{"kind":"Delegate","val":3,"amt":3665},"partialState":{"h":19,"t":114,"tokens":[6138,3862,11547,13556],"delegation":[5138,2862,10547,12556],"delegatorTokens":9999999915176}},{"ix":154,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":20,"t":120,"tokens":[6138,3862,11547,13556],"delegation":[5138,2862,10547,12556],"delegatorTokens":9999999915176,"jailed":[null,1000000000000035,1000000000000035,1000000000000029],"status":["bonded","unbonding","unbonding","unbonding"]}},{"ix":155,"action":{"kind":"Undelegate","val":0,"amt":3650},"partialState":{"h":20,"t":120,"tokens":[2488,3862,11547,13556],"delegation":[1488,2862,10547,12556],"delegatorTokens":9999999915176}},{"ix":156,"action":{"kind":"Undelegate","val":1,"amt":3303},"partialState":{"h":20,"t":120,"tokens":[2488,3862,11547,13556],"delegation":[1488,2862,10547,12556],"delegatorTokens":9999999915176}},{"ix":157,"action":{"kind":"Delegate","val":3,"amt":4879},"partialState":{"h":20,"t":120,"tokens":[2488,3862,11547,18435],"delegation":[1488,2862,10547,17435],"delegatorTokens":9999999910297}},{"ix":158,"action":{"kind":"Delegate","val":2,"amt":3757},"partialState":{"h":20,"t":120,"tokens":[2488,3862,15304,18435],"delegation":[1488,2862,14304,17435],"delegatorTokens":9999999906540}},{"ix":159,"action":{"kind":"Undelegate","val":3,"amt":3517},"partialState":{"h":20,"t":120,"tokens":[2488,3862,15304,14918],"delegation":[1488,2862,14304,13918],"delegatorTokens":9999999906540}},{"ix":160,"action":{"kind":"Undelegate","val":2,"amt":1343},"partialState":{"h":20,"t":120,"tokens":[2488,3862,13961,14918],"delegation":[1488,2862,12961,13918],"delegatorTokens":9999999906540}},{"ix":161,"action":{"kind":"Delegate","val":0,"amt":2583},"partialState":{"h":20,"t":120,"tokens":[5071,3862,13961,14918],"delegation":[4071,2862,12961,13918],"delegatorTokens":9999999903957}},{"ix":162,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":22,"t":132,"consumerPower":[7529,null,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":163,"action":{"kind":"Undelegate","val":0,"amt":4211},"partialState":{"h":20,"t":120,"tokens":[5071,3862,13961,14918],"delegation":[4071,2862,12961,13918],"delegatorTokens":9999999903957}},{"ix":164,"action":{"kind":"Delegate","val":1,"amt":4027},"partialState":{"h":20,"t":120,"tokens":[5071,7889,13961,14918],"delegation":[4071,6889,12961,13918],"delegatorTokens":9999999899930}},{"ix":165,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":23,"t":138,"consumerPower":[7529,null,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":166,"action":{"kind":"Delegate","val":2,"amt":3755},"partialState":{"h":20,"t":120,"tokens":[5071,7889,17716,14918],"delegation":[4071,6889,16716,13918],"delegatorTokens":9999999896175}},{"ix":167,"action":{"kind":"Undelegate","val":0,"amt":4218},"partialState":{"h":20,"t":120,"tokens":[5071,7889,17716,14918],"delegation":[4071,6889,16716,13918],"delegatorTokens":9999999896175}},{"ix":168,"action":{"kind":"Undelegate","val":3,"amt":1276},"partialState":{"h":20,"t":120,"tokens":[5071,7889,17716,13642],"delegation":[4071,6889,16716,12642],"delegatorTokens":9999999896175}},{"ix":169,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":24,"t":144,"consumerPower":[7529,null,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":170,"action":{"kind":"Deliver","chain":"consumer","numPackets":1},"partialState":{"h":24,"t":144,"consumerPower":[7529,null,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":171,"action":{"kind":"Delegate","val":1,"amt":4471},"partialState":{"h":20,"t":120,"tokens":[5071,12360,17716,13642],"delegation":[4071,11360,16716,12642],"delegatorTokens":9999999891704}},{"ix":172,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":173,"action":{"kind":"Undelegate","val":3,"amt":1082},"partialState":{"h":20,"t":120,"tokens":[5071,12360,17716,12560],"delegation":[4071,11360,16716,11560],"delegatorTokens":9999999891704}},{"ix":174,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":25,"t":150,"consumerPower":[6138,null,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":175,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":176,"action":{"kind":"Deliver","chain":"provider","numPackets":1},"partialState":{"h":20,"t":120,"tokens":[5071,12360,17716,12560],"delegation":[4071,11360,16716,11560],"delegatorTokens":9999999891704,"jailed":[null,1000000000000035,1000000000000035,1000000000000029],"status":["bonded","unbonding","unbonding","unbonding"]}},{"ix":177,"action":{"kind":"Deliver","chain":"consumer","numPackets":3},"partialState":{"h":25,"t":150,"consumerPower":[6138,null,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":178,"action":{"kind":"Deliver","chain":"consumer","numPackets":3},"partialState":{"h":25,"t":150,"consumerPower":[6138,null,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":179,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":180,"action":{"kind":"Deliver","chain":"provider","numPackets":5},"partialState":{"h":20,"t":120,"tokens":[5071,12360,17716,12560],"delegation":[4071,11360,16716,11560],"delegatorTokens":9999999891704,"jailed":[null,1000000000000035,1000000000000035,1000000000000029],"status":["bonded","unbonding","unbonding","unbonding"]}},{"ix":181,"action":{"kind":"Deliver","chain":"provider","numPackets":1},"partialState":{"h":20,"t":120,"tokens":[5071,12360,17716,12560],"delegation":[4071,11360,16716,11560],"delegatorTokens":9999999891704,"jailed":[null,1000000000000035,1000000000000035,1000000000000029],"status":["bonded","unbonding","unbonding","unbonding"]}},{"ix":182,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":183,"action":{"kind":"Deliver","chain":"provider","numPackets":5},"partialState":{"h":20,"t":120,"tokens":[5071,12360,17716,12560],"delegation":[4071,11360,16716,11560],"delegatorTokens":9999999891704,"jailed":[null,1000000000000035,1000000000000035,1000000000000029],"status":["bonded","unbonding","unbonding","unbonding"]}},{"ix":184,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":21,"t":126,"tokens":[5071,12360,17716,12560],"delegation":[4071,11360,16716,11560],"delegatorTokens":9999999916991,"jailed":[null,1000000000000035,1000000000000035,1000000000000029],"status":["bonded","unbonding","unbonding","unbonding"]}},{"ix":185,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":26,"t":156,"consumerPower":[6138,null,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":186,"action":{"kind":"Deliver","chain":"consumer","numPackets":3},"partialState":{"h":26,"t":156,"consumerPower":[6138,null,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":187,"action":{"kind":"Deliver","chain":"provider","numPackets":5},"partialState":{"h":21,"t":126,"tokens":[5071,12360,17716,12560],"delegation":[4071,11360,16716,11560],"delegatorTokens":9999999916991,"jailed":[null,1000000000000035,1000000000000035,1000000000000029],"status":["bonded","unbonding","unbonding","unbonding"]}},{"ix":188,"action":{"kind":"Undelegate","val":2,"amt":3447},"partialState":{"h":21,"t":126,"tokens":[5071,12360,14269,12560],"delegation":[4071,11360,13269,11560],"delegatorTokens":9999999916991}},{"ix":189,"action":{"kind":"Deliver","chain":"provider","numPackets":4},"partialState":{"h":21,"t":126,"tokens":[5071,12360,14269,12560],"delegation":[4071,11360,13269,11560],"delegatorTokens":9999999916991,"jailed":[null,1000000000000035,1000000000000035,1000000000000029],"status":["bonded","unbonding","unbonding","unbonding"]}},{"ix":190,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":27,"t":162,"consumerPower":[6138,null,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":191,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":22,"t":132,"tokens":[5071,12360,14269,12560],"delegation":[4071,11360,13269,11560],"delegatorTokens":9999999924094,"jailed":[null,1000000000000035,1000000000000035,1000000000000029],"status":["bonded","unbonded","unbonded","unbonded"]}},{"ix":192,"action":{"kind":"Undelegate","val":1,"amt":4490},"partialState":{"h":22,"t":132,"tokens":[5071,7870,14269,12560],"delegation":[4071,6870,13269,11560],"delegatorTokens":9999999924094}},{"ix":193,"action":{"kind":"Deliver","chain":"provider","numPackets":5},"partialState":{"h":22,"t":132,"tokens":[5071,7870,14269,12560],"delegation":[4071,6870,13269,11560],"delegatorTokens":9999999924094,"jailed":[null,1000000000000035,1000000000000035,1000000000000029],"status":["bonded","unbonded","unbonded","unbonded"]}},{"ix":194,"action":{"kind":"Undelegate","val":3,"amt":1468},"partialState":{"h":22,"t":132,"tokens":[5071,7870,14269,11092],"delegation":[4071,6870,13269,10092],"delegatorTokens":9999999924094}},{"ix":195,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":23,"t":138,"tokens":[5071,7870,14269,11092],"delegation":[4071,6870,13269,10092],"delegatorTokens":9999999932780,"jailed":[null,1000000000000035,1000000000000035,1000000000000029],"status":["bonded","unbonded","unbonded","unbonded"]}},{"ix":196,"action":{"kind":"Delegate","val":3,"amt":2183},"partialState":{"h":23,"t":138,"tokens":[5071,7870,14269,13275],"delegation":[4071,6870,13269,12275],"delegatorTokens":9999999930597}},{"ix":197,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":24,"t":144,"tokens":[5071,7870,14269,13275],"delegation":[4071,6870,13269,12275],"delegatorTokens":9999999930597,"jailed":[null,1000000000000035,1000000000000035,1000000000000029],"status":["bonded","unbonded","unbonded","unbonded"]}},{"ix":198,"action":{"kind":"Undelegate","val":3,"amt":1869},"partialState":{"h":24,"t":144,"tokens":[5071,7870,14269,11406],"delegation":[4071,6870,13269,10406],"delegatorTokens":9999999930597}},{"ix":199,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":25,"t":150,"tokens":[5071,7870,14269,11406],"delegation":[4071,6870,13269,10406],"delegatorTokens":9999999930597,"jailed":[null,1000000000000035,1000000000000035,1000000000000029],"status":["bonded","unbonded","unbonded","unbonded"]}}],"events":["insufficient_shares","send_double_sign_slash_request","more_than_one_third_val_power_change","send_vsc_without_downtime_ack","insufficient_shares","send_downtime_slash_request","downtime_slash_request_outstanding","rebond_unval","send_vsc_without_downtime_ack","send_downtime_slash_request","insufficient_shares","send_vsc_without_downtime_ack","insufficient_shares","consumer_del_val","consumer_add_val","send_downtime_slash_request","receive_double_sign_slash_request","receive_downtime_slash_request","jail","send_vsc_with_downtime_ack","more_than_one_third_val_power_change","rebond_unval","receive_downtime_slash_request","jail","receive_downtime_slash_request","jail","send_vsc_with_downtime_ack","consumer_add_val","consumer_del_val","consumer_update_val","receive_downtime_slash_ack","more_than_one_third_val_power_change","rebond_unval","send_vsc_without_downtime_ack","receive_downtime_slash_ack","receive_downtime_slash_ack","send_vsc_not_because_change","send_vsc_without_downtime_ack","insufficient_shares","insufficient_shares","consumer_update_val","consumer_del_val","consumer_del_val","consumer_del_val","insufficient_shares","send_vsc_without_downtime_ack","insufficient_shares","insufficient_shares","send_vsc_not_because_change","send_vsc_without_downtime_ack","send_vsc_without_downtime_ack","some_undels_expired_but_not_completed","send_vsc_not_because_change","send_vsc_without_downtime_ack","some_undels_expired_but_not_completed","some_undels_expired_but_not_completed","consumer_update_val","consumer_send_maturation","consumer_update_val","insufficient_shares","consumer_send_maturation","consumer_send_maturation","insufficient_shares","complete_undel_immediate","complete_undel_immediate","send_vsc_without_downtime_ack","some_undels_expired_but_not_completed","insufficient_shares","consumer_send_maturation","consumer_send_maturation","consumer_send_maturation","insufficient_shares","consumer_send_maturation","insufficient_shares","consumer_send_maturation","consumer_send_maturation","consumer_update_val","some_undels_expired_but_not_completed","complete_undel_immediate","complete_undel_immediate","set_unval_hold_false","complete_undel_immediate","complete_undel_immediate","complete_undel_immediate","complete_undel_immediate","complete_undel_immediate","set_unval_hold_false","set_unval_hold_false","complete_undel_immediate","complete_undel_immediate","complete_undel_immediate","set_undel_hold_false","set_undel_hold_false","set_undel_hold_false","set_undel_hold_false","set_undel_hold_false","set_undel_hold_false","send_vsc_without_downtime_ack","consumer_send_maturation","complete_unval_in_endblock","complete_unval_in_endblock","complete_unval_in_endblock","complete_undel_in_endblock","send_vsc_not_because_change","send_vsc_without_downtime_ack","complete_undel_in_endblock","set_undel_hold_false","send_vsc_not_because_change","send_vsc_without_downtime_ack","send_vsc_not_because_change","send_vsc_without_downtime_ack"]},{"meta":{"commit":"7ffd0c04e4205cbc9caf212abfe6c59ee43153bf"},"constants":{"P":"provider","C":"consumer","UNBONDING_SECONDS_P":70,"UNBONDING_SECONDS_C":50,"TRUSTING_SECONDS":49,"NUM_VALIDATORS":4,"MAX_VALIDATORS":2,"SLASH_DOUBLESIGN":0,"SLASH_DOWNTIME":0,"JAIL_SECONDS":999999999999999,"BLOCK_SECONDS":6,"INITIAL_DELEGATOR_TOKENS":10000000000000,"DELEGATE_AMT_MIN":1000,"DELEGATE_AMT_MAX":5000,"UNDELEGATE_AMT_MIN":1000,"UNDELEGATE_AMT_MAX":5000,"ISDOWNTIME_PROBABILITY":0.5,"MAX_NUM_PACKETS_FOR_DELIVER":6},"actions":[{"ix":0,"action":{"kind":"ConsumerSlash","val":0,"infractionHeight":0,"isDowntime":true},"partialState":{"h":1,"t":6,"outstandingDowntime":[true,false,false,false]}},{"ix":1,"action":{"kind":"Delegate","val":3,"amt":2431},"partialState":{"h":1,"t":6,"tokens":[5000,4000,3000,4431],"delegation":[4000,3000,2000,3431],"delegatorTokens":9999999997569}},{"ix":2,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":2,"t":12,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[true,false,false,false]}},{"ix":3,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":2,"t":12,"tokens":[5000,4000,3000,4431],"delegation":[4000,3000,2000,3431],"delegatorTokens":9999999997569,"jailed":[null,null,null,null],"status":["bonded","unbonding","unbonded","bonded"]}},{"ix":4,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":3,"t":18,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[true,false,false,false]}},{"ix":5,"action":{"kind":"Deliver","chain":"consumer","numPackets":2},"partialState":{"h":3,"t":18,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[true,false,false,false]}},{"ix":6,"action":{"kind":"Deliver","chain":"provider","numPackets":6},"partialState":{"h":2,"t":12,"tokens":[5000,4000,3000,4431],"delegation":[4000,3000,2000,3431],"delegatorTokens":9999999997569,"jailed":[null,null,null,null],"status":["bonded","unbonding","unbonded","bonded"]}},{"ix":7,"action":{"kind":"Deliver","chain":"provider","numPackets":3},"partialState":{"h":2,"t":12,"tokens":[5000,4000,3000,4431],"delegation":[4000,3000,2000,3431],"delegatorTokens":9999999997569,"jailed":[null,null,null,null],"status":["bonded","unbonding","unbonded","bonded"]}},{"ix":8,"action":{"kind":"ConsumerSlash","val":1,"infractionHeight":0,"isDowntime":true},"partialState":{"h":3,"t":18,"outstandingDowntime":[true,true,false,false]}},{"ix":9,"action":{"kind":"ConsumerSlash","val":1,"infractionHeight":1,"isDowntime":true},"partialState":{"h":3,"t":18,"outstandingDowntime":[true,true,false,false]}},{"ix":10,"action":{"kind":"Delegate","val":0,"amt":4745},"partialState":{"h":2,"t":12,"tokens":[9745,4000,3000,4431],"delegation":[8745,3000,2000,3431],"delegatorTokens":9999999992824}},{"ix":11,"action":{"kind":"Undelegate","val":0,"amt":2279},"partialState":{"h":2,"t":12,"tokens":[7466,4000,3000,4431],"delegation":[6466,3000,2000,3431],"delegatorTokens":9999999992824}},{"ix":12,"action":{"kind":"ConsumerSlash","val":1,"infractionHeight":0,"isDowntime":true},"partialState":{"h":3,"t":18,"outstandingDowntime":[true,true,false,false]}},{"ix":13,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":4,"t":24,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[true,true,false,false]}},{"ix":14,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":15,"action":{"kind":"Deliver","chain":"provider","numPackets":6},"partialState":{"h":2,"t":12,"tokens":[7466,4000,3000,4431],"delegation":[6466,3000,2000,3431],"delegatorTokens":9999999992824,"jailed":[null,null,null,null],"status":["bonded","unbonding","unbonded","bonded"]}},{"ix":16,"action":{"kind":"Undelegate","val":2,"amt":1033},"partialState":{"h":2,"t":12,"tokens":[7466,4000,1967,4431],"delegation":[6466,3000,967,3431],"delegatorTokens":9999999992824}},{"ix":17,"action":{"kind":"Deliver","chain":"consumer","numPackets":3},"partialState":{"h":4,"t":24,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[true,true,false,false]}},{"ix":18,"action":{"kind":"Delegate","val":3,"amt":1220},"partialState":{"h":2,"t":12,"tokens":[7466,4000,1967,5651],"delegation":[6466,3000,967,4651],"delegatorTokens":9999999991604}},{"ix":19,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":5,"t":30,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[true,true,false,false]}},{"ix":20,"action":{"kind":"Delegate","val":3,"amt":3245},"partialState":{"h":2,"t":12,"tokens":[7466,4000,1967,8896],"delegation":[6466,3000,967,7896],"delegatorTokens":9999999988359}},{"ix":21,"action":{"kind":"ConsumerSlash","val":1,"infractionHeight":0,"isDowntime":true},"partialState":{"h":5,"t":30,"outstandingDowntime":[true,true,false,false]}},{"ix":22,"action":{"kind":"Delegate","val":3,"amt":2480},"partialState":{"h":2,"t":12,"tokens":[7466,4000,1967,11376],"delegation":[6466,3000,967,10376],"delegatorTokens":9999999985879}},{"ix":23,"action":{"kind":"Undelegate","val":3,"amt":4745},"partialState":{"h":2,"t":12,"tokens":[7466,4000,1967,6631],"delegation":[6466,3000,967,5631],"delegatorTokens":9999999985879}},{"ix":24,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":3,"t":18,"tokens":[7466,4000,1967,6631],"delegation":[6466,3000,967,5631],"delegatorTokens":9999999985879,"jailed":[1000000000000011,null,null,null],"status":["bonded","unbonding","unbonded","bonded"]}},{"ix":25,"action":{"kind":"Undelegate","val":1,"amt":1373},"partialState":{"h":3,"t":18,"tokens":[7466,2627,1967,6631],"delegation":[6466,1627,967,5631],"delegatorTokens":9999999985879}},{"ix":26,"action":{"kind":"Deliver","chain":"provider","numPackets":3},"partialState":{"h":3,"t":18,"tokens":[7466,2627,1967,6631],"delegation":[6466,1627,967,5631],"delegatorTokens":9999999985879,"jailed":[1000000000000011,null,null,null],"status":["bonded","unbonding","unbonded","bonded"]}},{"ix":27,"action":{"kind":"Undelegate","val":0,"amt":3189},"partialState":{"h":3,"t":18,"tokens":[4277,2627,1967,6631],"delegation":[3277,1627,967,5631],"delegatorTokens":9999999985879}},{"ix":28,"action":{"kind":"Deliver","chain":"consumer","numPackets":5},"partialState":{"h":5,"t":30,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[true,true,false,false]}},{"ix":29,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":4,"t":24,"tokens":[4277,2627,1967,6631],"delegation":[3277,1627,967,5631],"delegatorTokens":9999999985879,"jailed":[1000000000000011,1000000000000017,null,null],"status":["unbonding","bonded","unbonded","bonded"]}},{"ix":30,"action":{"kind":"Deliver","chain":"provider","numPackets":5},"partialState":{"h":4,"t":24,"tokens":[4277,2627,1967,6631],"delegation":[3277,1627,967,5631],"delegatorTokens":9999999985879,"jailed":[1000000000000011,1000000000000017,null,null],"status":["unbonding","bonded","unbonded","bonded"]}},{"ix":31,"action":{"kind":"ConsumerSlash","val":0,"infractionHeight":1,"isDowntime":true},"partialState":{"h":5,"t":30,"outstandingDowntime":[true,true,false,false]}},{"ix":32,"action":{"kind":"Deliver","chain":"provider","numPackets":4},"partialState":{"h":4,"t":24,"tokens":[4277,2627,1967,6631],"delegation":[3277,1627,967,5631],"delegatorTokens":9999999985879,"jailed":[1000000000000011,1000000000000017,null,null],"status":["unbonding","bonded","unbonded","bonded"]}},{"ix":33,"action":{"kind":"ConsumerSlash","val":1,"infractionHeight":2,"isDowntime":false},"partialState":{"h":5,"t":30,"outstandingDowntime":[true,true,false,false]}},{"ix":34,"action":{"kind":"Undelegate","val":2,"amt":4861},"partialState":{"h":4,"t":24,"tokens":[4277,2627,1967,6631],"delegation":[3277,1627,967,5631],"delegatorTokens":9999999985879}},{"ix":35,"action":{"kind":"Delegate","val":2,"amt":2593},"partialState":{"h":4,"t":24,"tokens":[4277,2627,4560,6631],"delegation":[3277,1627,3560,5631],"delegatorTokens":9999999983286}},{"ix":36,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":5,"t":30,"tokens":[4277,2627,4560,6631],"delegation":[3277,1627,3560,5631],"delegatorTokens":9999999983286,"jailed":[1000000000000011,1000000000000017,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":37,"action":{"kind":"Delegate","val":3,"amt":3662},"partialState":{"h":5,"t":30,"tokens":[4277,2627,4560,10293],"delegation":[3277,1627,3560,9293],"delegatorTokens":9999999979624}},{"ix":38,"action":{"kind":"ConsumerSlash","val":0,"infractionHeight":2,"isDowntime":true},"partialState":{"h":5,"t":30,"outstandingDowntime":[true,true,false,false]}},{"ix":39,"action":{"kind":"Deliver","chain":"consumer","numPackets":5},"partialState":{"h":5,"t":30,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":40,"action":{"kind":"Undelegate","val":1,"amt":1988},"partialState":{"h":5,"t":30,"tokens":[4277,2627,4560,10293],"delegation":[3277,1627,3560,9293],"delegatorTokens":9999999979624}},{"ix":41,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":6,"t":36,"consumerPower":[null,2627,null,6631],"outstandingDowntime":[false,false,false,false]}},{"ix":42,"action":{"kind":"ConsumerSlash","val":3,"infractionHeight":4,"isDowntime":true},"partialState":{"h":6,"t":36,"outstandingDowntime":[false,false,false,true]}},{"ix":43,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":7,"t":42,"consumerPower":[null,2627,null,6631],"outstandingDowntime":[false,false,false,true]}},{"ix":44,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":45,"action":{"kind":"Undelegate","val":3,"amt":2281},"partialState":{"h":5,"t":30,"tokens":[4277,2627,4560,8012],"delegation":[3277,1627,3560,7012],"delegatorTokens":9999999979624}},{"ix":46,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":8,"t":48,"consumerPower":[null,2627,null,6631],"outstandingDowntime":[false,false,false,true]}},{"ix":47,"action":{"kind":"Undelegate","val":1,"amt":1683},"partialState":{"h":5,"t":30,"tokens":[4277,2627,4560,8012],"delegation":[3277,1627,3560,7012],"delegatorTokens":9999999979624}},{"ix":48,"action":{"kind":"Undelegate","val":1,"amt":4128},"partialState":{"h":5,"t":30,"tokens":[4277,2627,4560,8012],"delegation":[3277,1627,3560,7012],"delegatorTokens":9999999979624}},{"ix":49,"action":{"kind":"Undelegate","val":3,"amt":3061},"partialState":{"h":5,"t":30,"tokens":[4277,2627,4560,4951],"delegation":[3277,1627,3560,3951],"delegatorTokens":9999999979624}},{"ix":50,"action":{"kind":"Delegate","val":2,"amt":4541},"partialState":{"h":5,"t":30,"tokens":[4277,2627,9101,4951],"delegation":[3277,1627,8101,3951],"delegatorTokens":9999999975083}},{"ix":51,"action":{"kind":"Delegate","val":2,"amt":3336},"partialState":{"h":5,"t":30,"tokens":[4277,2627,12437,4951],"delegation":[3277,1627,11437,3951],"delegatorTokens":9999999971747}},{"ix":52,"action":{"kind":"Deliver","chain":"provider","numPackets":5},"partialState":{"h":5,"t":30,"tokens":[4277,2627,12437,4951],"delegation":[3277,1627,11437,3951],"delegatorTokens":9999999971747,"jailed":[1000000000000011,1000000000000017,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":53,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":9,"t":54,"consumerPower":[null,2627,null,6631],"outstandingDowntime":[false,false,false,true]}},{"ix":54,"action":{"kind":"Undelegate","val":2,"amt":1103},"partialState":{"h":5,"t":30,"tokens":[4277,2627,11334,4951],"delegation":[3277,1627,10334,3951],"delegatorTokens":9999999971747}},{"ix":55,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":56,"action":{"kind":"Undelegate","val":3,"amt":4420},"partialState":{"h":5,"t":30,"tokens":[4277,2627,11334,4951],"delegation":[3277,1627,10334,3951],"delegatorTokens":9999999971747}},{"ix":57,"action":{"kind":"Deliver","chain":"provider","numPackets":4},"partialState":{"h":5,"t":30,"tokens":[4277,2627,11334,4951],"delegation":[3277,1627,10334,3951],"delegatorTokens":9999999971747,"jailed":[1000000000000011,1000000000000017,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":58,"action":{"kind":"Delegate","val":3,"amt":4660},"partialState":{"h":5,"t":30,"tokens":[4277,2627,11334,9611],"delegation":[3277,1627,10334,8611],"delegatorTokens":9999999967087}},{"ix":59,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":60,"action":{"kind":"Deliver","chain":"consumer","numPackets":3},"partialState":{"h":9,"t":54,"consumerPower":[null,2627,null,6631],"outstandingDowntime":[false,false,false,true]}},{"ix":61,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":6,"t":36,"tokens":[4277,2627,11334,9611],"delegation":[3277,1627,10334,8611],"delegatorTokens":9999999967087,"jailed":[1000000000000011,1000000000000017,null,1000000000000029],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":62,"action":{"kind":"Undelegate","val":0,"amt":2535},"partialState":{"h":6,"t":36,"tokens":[1742,2627,11334,9611],"delegation":[742,1627,10334,8611],"delegatorTokens":9999999967087}},{"ix":63,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":64,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":10,"t":60,"consumerPower":[null,2627,null,6631],"outstandingDowntime":[false,false,false,true]}},{"ix":65,"action":{"kind":"Undelegate","val":2,"amt":4385},"partialState":{"h":6,"t":36,"tokens":[1742,2627,6949,9611],"delegation":[742,1627,5949,8611],"delegatorTokens":9999999967087}},{"ix":66,"action":{"kind":"Undelegate","val":0,"amt":3388},"partialState":{"h":6,"t":36,"tokens":[1742,2627,6949,9611],"delegation":[742,1627,5949,8611],"delegatorTokens":9999999967087}},{"ix":67,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":68,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":11,"t":66,"consumerPower":[null,2627,null,6631],"outstandingDowntime":[false,false,false,true]}},{"ix":69,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":70,"action":{"kind":"Undelegate","val":3,"amt":1500},"partialState":{"h":6,"t":36,"tokens":[1742,2627,6949,8111],"delegation":[742,1627,5949,7111],"delegatorTokens":9999999967087}},{"ix":71,"action":{"kind":"Deliver","chain":"consumer","numPackets":2},"partialState":{"h":11,"t":66,"consumerPower":[null,2627,null,6631],"outstandingDowntime":[false,false,false,true]}},{"ix":72,"action":{"kind":"Undelegate","val":2,"amt":1713},"partialState":{"h":6,"t":36,"tokens":[1742,2627,5236,8111],"delegation":[742,1627,4236,7111],"delegatorTokens":9999999967087}},{"ix":73,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":7,"t":42,"tokens":[1742,2627,5236,8111],"delegation":[742,1627,4236,7111],"delegatorTokens":9999999967087,"jailed":[1000000000000011,1000000000000017,null,1000000000000029],"status":["unbonding","unbonding","bonded","unbonding"]}},{"ix":74,"action":{"kind":"Undelegate","val":3,"amt":4835},"partialState":{"h":7,"t":42,"tokens":[1742,2627,5236,3276],"delegation":[742,1627,4236,2276],"delegatorTokens":9999999967087}},{"ix":75,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":76,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":77,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":78,"action":{"kind":"Deliver","chain":"consumer","numPackets":5},"partialState":{"h":11,"t":66,"consumerPower":[null,2627,null,6631],"outstandingDowntime":[false,false,false,false]}},{"ix":79,"action":{"kind":"Deliver","chain":"consumer","numPackets":3},"partialState":{"h":11,"t":66,"consumerPower":[null,2627,null,6631],"outstandingDowntime":[false,false,false,false]}},{"ix":80,"action":{"kind":"Deliver","chain":"provider","numPackets":3},"partialState":{"h":7,"t":42,"tokens":[1742,2627,5236,3276],"delegation":[742,1627,4236,2276],"delegatorTokens":9999999967087,"jailed":[1000000000000011,1000000000000017,null,1000000000000029],"status":["unbonding","unbonding","bonded","unbonding"]}},{"ix":81,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":82,"action":{"kind":"Deliver","chain":"provider","numPackets":2},"partialState":{"h":7,"t":42,"tokens":[1742,2627,5236,3276],"delegation":[742,1627,4236,2276],"delegatorTokens":9999999967087,"jailed":[1000000000000011,1000000000000017,null,1000000000000029],"status":["unbonding","unbonding","bonded","unbonding"]}},{"ix":83,"action":{"kind":"Delegate","val":3,"amt":2015},"partialState":{"h":7,"t":42,"tokens":[1742,2627,5236,5291],"delegation":[742,1627,4236,4291],"delegatorTokens":9999999965072}},{"ix":84,"action":{"kind":"Delegate","val":1,"amt":3688},"partialState":{"h":7,"t":42,"tokens":[1742,6315,5236,5291],"delegation":[742,5315,4236,4291],"delegatorTokens":9999999961384}},{"ix":85,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":12,"t":72,"consumerPower":[null,null,11334,9611],"outstandingDowntime":[false,false,false,false]}},{"ix":86,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":13,"t":78,"consumerPower":[null,null,11334,9611],"outstandingDowntime":[false,false,false,false]}},{"ix":87,"action":{"kind":"Undelegate","val":3,"amt":2925},"partialState":{"h":7,"t":42,"tokens":[1742,6315,5236,2366],"delegation":[742,5315,4236,1366],"delegatorTokens":9999999961384}},{"ix":88,"action":{"kind":"Delegate","val":2,"amt":4021},"partialState":{"h":7,"t":42,"tokens":[1742,6315,9257,2366],"delegation":[742,5315,8257,1366],"delegatorTokens":9999999957363}},{"ix":89,"action":{"kind":"Deliver","chain":"provider","numPackets":6},"partialState":{"h":7,"t":42,"tokens":[1742,6315,9257,2366],"delegation":[742,5315,8257,1366],"delegatorTokens":9999999957363,"jailed":[1000000000000011,1000000000000017,null,1000000000000029],"status":["unbonding","unbonding","bonded","unbonding"]}},{"ix":90,"action":{"kind":"Delegate","val":2,"amt":3002},"partialState":{"h":7,"t":42,"tokens":[1742,6315,12259,2366],"delegation":[742,5315,11259,1366],"delegatorTokens":9999999954361}},{"ix":91,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":8,"t":48,"tokens":[1742,6315,12259,2366],"delegation":[742,5315,11259,1366],"delegatorTokens":9999999954361,"jailed":[1000000000000011,1000000000000017,null,1000000000000029],"status":["unbonding","unbonding","bonded","unbonding"]}},{"ix":92,"action":{"kind":"Deliver","chain":"provider","numPackets":1},"partialState":{"h":8,"t":48,"tokens":[1742,6315,12259,2366],"delegation":[742,5315,11259,1366],"delegatorTokens":9999999954361,"jailed":[1000000000000011,1000000000000017,null,1000000000000029],"status":["unbonding","unbonding","bonded","unbonding"]}},{"ix":93,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":94,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":14,"t":84,"consumerPower":[null,null,11334,9611],"outstandingDowntime":[false,false,false,false]}},{"ix":95,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":9,"t":54,"tokens":[1742,6315,12259,2366],"delegation":[742,5315,11259,1366],"delegatorTokens":9999999954361,"jailed":[1000000000000011,1000000000000017,null,1000000000000029],"status":["unbonding","unbonding","bonded","unbonding"]}},{"ix":96,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":97,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":98,"action":{"kind":"Deliver","chain":"provider","numPackets":6},"partialState":{"h":9,"t":54,"tokens":[1742,6315,12259,2366],"delegation":[742,5315,11259,1366],"delegatorTokens":9999999954361,"jailed":[1000000000000011,1000000000000017,null,1000000000000029],"status":["unbonding","unbonding","bonded","unbonding"]}},{"ix":99,"action":{"kind":"Undelegate","val":3,"amt":3128},"partialState":{"h":9,"t":54,"tokens":[1742,6315,12259,2366],"delegation":[742,5315,11259,1366],"delegatorTokens":9999999954361}},{"ix":100,"action":{"kind":"Deliver","chain":"consumer","numPackets":1},"partialState":{"h":14,"t":84,"consumerPower":[null,null,11334,9611],"outstandingDowntime":[false,false,false,false]}},{"ix":101,"action":{"kind":"Delegate","val":1,"amt":4518},"partialState":{"h":9,"t":54,"tokens":[1742,10833,12259,2366],"delegation":[742,9833,11259,1366],"delegatorTokens":9999999949843}},{"ix":102,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":10,"t":60,"tokens":[1742,10833,12259,2366],"delegation":[742,9833,11259,1366],"delegatorTokens":9999999949843,"jailed":[1000000000000011,1000000000000017,null,1000000000000029],"status":["unbonding","unbonding","bonded","unbonding"]}},{"ix":103,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":11,"t":66,"tokens":[1742,10833,12259,2366],"delegation":[742,9833,11259,1366],"delegatorTokens":9999999949843,"jailed":[1000000000000011,1000000000000017,null,1000000000000029],"status":["unbonding","unbonding","bonded","unbonding"]}},{"ix":104,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":105,"action":{"kind":"Undelegate","val":1,"amt":1268},"partialState":{"h":11,"t":66,"tokens":[1742,9565,12259,2366],"delegation":[742,8565,11259,1366],"delegatorTokens":9999999949843}},{"ix":106,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":107,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":12,"t":72,"tokens":[1742,9565,12259,2366],"delegation":[742,8565,11259,1366],"delegatorTokens":9999999949843,"jailed":[1000000000000011,1000000000000017,null,1000000000000029],"status":["unbonding","unbonding","bonded","unbonding"]}},{"ix":108,"action":{"kind":"Undelegate","val":1,"amt":2980},"partialState":{"h":12,"t":72,"tokens":[1742,6585,12259,2366],"delegation":[742,5585,11259,1366],"delegatorTokens":9999999949843}},{"ix":109,"action":{"kind":"Undelegate","val":2,"amt":1886},"partialState":{"h":12,"t":72,"tokens":[1742,6585,10373,2366],"delegation":[742,5585,9373,1366],"delegatorTokens":9999999949843}},{"ix":110,"action":{"kind":"Undelegate","val":1,"amt":1503},"partialState":{"h":12,"t":72,"tokens":[1742,5082,10373,2366],"delegation":[742,4082,9373,1366],"delegatorTokens":9999999949843}},{"ix":111,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":15,"t":90,"consumerPower":[null,null,5236,null],"outstandingDowntime":[false,false,false,false]}},{"ix":112,"action":{"kind":"Delegate","val":0,"amt":2167},"partialState":{"h":12,"t":72,"tokens":[3909,5082,10373,2366],"delegation":[2909,4082,9373,1366],"delegatorTokens":9999999947676}},{"ix":113,"action":{"kind":"Undelegate","val":0,"amt":3914},"partialState":{"h":12,"t":72,"tokens":[3909,5082,10373,2366],"delegation":[2909,4082,9373,1366],"delegatorTokens":9999999947676}},{"ix":114,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":115,"action":{"kind":"Delegate","val":1,"amt":2894},"partialState":{"h":12,"t":72,"tokens":[3909,7976,10373,2366],"delegation":[2909,6976,9373,1366],"delegatorTokens":9999999944782}},{"ix":116,"action":{"kind":"Deliver","chain":"consumer","numPackets":4},"partialState":{"h":15,"t":90,"consumerPower":[null,null,5236,null],"outstandingDowntime":[false,false,false,false]}},{"ix":117,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":118,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":16,"t":96,"consumerPower":[null,null,12259,null],"outstandingDowntime":[false,false,false,false]}},{"ix":119,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":13,"t":78,"tokens":[3909,7976,10373,2366],"delegation":[2909,6976,9373,1366],"delegatorTokens":9999999944782,"jailed":[1000000000000011,1000000000000017,null,1000000000000029],"status":["unbonding","unbonding","bonded","unbonding"]}},{"ix":120,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":121,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":17,"t":102,"consumerPower":[null,null,12259,null],"outstandingDowntime":[false,false,false,false]}},{"ix":122,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":18,"t":108,"consumerPower":[null,null,12259,null],"outstandingDowntime":[false,false,false,false]}},{"ix":123,"action":{"kind":"Undelegate","val":1,"amt":4177},"partialState":{"h":13,"t":78,"tokens":[3909,3799,10373,2366],"delegation":[2909,2799,9373,1366],"delegatorTokens":9999999944782}},{"ix":124,"action":{"kind":"Undelegate","val":3,"amt":2331},"partialState":{"h":13,"t":78,"tokens":[3909,3799,10373,2366],"delegation":[2909,2799,9373,1366],"delegatorTokens":9999999944782}},{"ix":125,"action":{"kind":"Deliver","chain":"provider","numPackets":2},"partialState":{"h":13,"t":78,"tokens":[3909,3799,10373,2366],"delegation":[2909,2799,9373,1366],"delegatorTokens":9999999944782,"jailed":[1000000000000011,1000000000000017,null,1000000000000029],"status":["unbonding","unbonding","bonded","unbonding"]}},{"ix":126,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":127,"action":{"kind":"Undelegate","val":2,"amt":3846},"partialState":{"h":13,"t":78,"tokens":[3909,3799,6527,2366],"delegation":[2909,2799,5527,1366],"delegatorTokens":9999999944782}},{"ix":128,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":129,"action":{"kind":"Undelegate","val":1,"amt":4025},"partialState":{"h":13,"t":78,"tokens":[3909,3799,6527,2366],"delegation":[2909,2799,5527,1366],"delegatorTokens":9999999944782}},{"ix":130,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":14,"t":84,"tokens":[3909,3799,6527,2366],"delegation":[2909,2799,5527,1366],"delegatorTokens":9999999944782,"jailed":[1000000000000011,1000000000000017,null,1000000000000029],"status":["unbonding","unbonding","bonded","unbonding"]}},{"ix":131,"action":{"kind":"Deliver","chain":"consumer","numPackets":3},"partialState":{"h":18,"t":108,"consumerPower":[null,null,12259,null],"outstandingDowntime":[false,false,false,false]}},{"ix":132,"action":{"kind":"Delegate","val":0,"amt":4483},"partialState":{"h":14,"t":84,"tokens":[8392,3799,6527,2366],"delegation":[7392,2799,5527,1366],"delegatorTokens":9999999940299}},{"ix":133,"action":{"kind":"Delegate","val":1,"amt":4547},"partialState":{"h":14,"t":84,"tokens":[8392,8346,6527,2366],"delegation":[7392,7346,5527,1366],"delegatorTokens":9999999935752}},{"ix":134,"action":{"kind":"Delegate","val":3,"amt":1837},"partialState":{"h":14,"t":84,"tokens":[8392,8346,6527,4203],"delegation":[7392,7346,5527,3203],"delegatorTokens":9999999933915}},{"ix":135,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":136,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":19,"t":114,"consumerPower":[null,null,10373,null],"outstandingDowntime":[false,false,false,false]}},{"ix":137,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":138,"action":{"kind":"Delegate","val":0,"amt":3493},"partialState":{"h":14,"t":84,"tokens":[11885,8346,6527,4203],"delegation":[10885,7346,5527,3203],"delegatorTokens":9999999930422}},{"ix":139,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":20,"t":120,"consumerPower":[null,null,10373,null],"outstandingDowntime":[false,false,false,false]}},{"ix":140,"action":{"kind":"Delegate","val":2,"amt":3106},"partialState":{"h":14,"t":84,"tokens":[11885,8346,9633,4203],"delegation":[10885,7346,8633,3203],"delegatorTokens":9999999927316}},{"ix":141,"action":{"kind":"Delegate","val":1,"amt":4597},"partialState":{"h":14,"t":84,"tokens":[11885,12943,9633,4203],"delegation":[10885,11943,8633,3203],"delegatorTokens":9999999922719}},{"ix":142,"action":{"kind":"Deliver","chain":"provider","numPackets":1},"partialState":{"h":14,"t":84,"tokens":[11885,12943,9633,4203],"delegation":[10885,11943,8633,3203],"delegatorTokens":9999999922719,"jailed":[1000000000000011,1000000000000017,null,1000000000000029],"status":["unbonding","unbonding","bonded","unbonding"]}},{"ix":143,"action":{"kind":"Delegate","val":1,"amt":3210},"partialState":{"h":14,"t":84,"tokens":[11885,16153,9633,4203],"delegation":[10885,15153,8633,3203],"delegatorTokens":9999999919509}},{"ix":144,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":145,"action":{"kind":"Undelegate","val":1,"amt":4138},"partialState":{"h":14,"t":84,"tokens":[11885,12015,9633,4203],"delegation":[10885,11015,8633,3203],"delegatorTokens":9999999919509}},{"ix":146,"action":{"kind":"Undelegate","val":1,"amt":1626},"partialState":{"h":14,"t":84,"tokens":[11885,10389,9633,4203],"delegation":[10885,9389,8633,3203],"delegatorTokens":9999999919509}},{"ix":147,"action":{"kind":"Undelegate","val":1,"amt":1926},"partialState":{"h":14,"t":84,"tokens":[11885,8463,9633,4203],"delegation":[10885,7463,8633,3203],"delegatorTokens":9999999919509}},{"ix":148,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":149,"action":{"kind":"Delegate","val":0,"amt":1659},"partialState":{"h":14,"t":84,"tokens":[13544,8463,9633,4203],"delegation":[12544,7463,8633,3203],"delegatorTokens":9999999917850}},{"ix":150,"action":{"kind":"Delegate","val":0,"amt":1630},"partialState":{"h":14,"t":84,"tokens":[15174,8463,9633,4203],"delegation":[14174,7463,8633,3203],"delegatorTokens":9999999916220}},{"ix":151,"action":{"kind":"Deliver","chain":"provider","numPackets":3},"partialState":{"h":14,"t":84,"tokens":[15174,8463,9633,4203],"delegation":[14174,7463,8633,3203],"delegatorTokens":9999999916220,"jailed":[1000000000000011,1000000000000017,null,1000000000000029],"status":["unbonding","unbonding","bonded","unbonding"]}},{"ix":152,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":21,"t":126,"consumerPower":[null,null,10373,null],"outstandingDowntime":[false,false,false,false]}},{"ix":153,"action":{"kind":"Delegate","val":1,"amt":2155},"partialState":{"h":14,"t":84,"tokens":[15174,10618,9633,4203],"delegation":[14174,9618,8633,3203],"delegatorTokens":9999999914065}},{"ix":154,"action":{"kind":"Undelegate","val":2,"amt":2556},"partialState":{"h":14,"t":84,"tokens":[15174,10618,7077,4203],"delegation":[14174,9618,6077,3203],"delegatorTokens":9999999914065}},{"ix":155,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":15,"t":90,"tokens":[15174,10618,7077,4203],"delegation":[14174,9618,6077,3203],"delegatorTokens":9999999922122,"jailed":[1000000000000011,1000000000000017,null,1000000000000029],"status":["unbonding","unbonding","bonded","unbonding"]}},{"ix":156,"action":{"kind":"Undelegate","val":0,"amt":3668},"partialState":{"h":15,"t":90,"tokens":[11506,10618,7077,4203],"delegation":[10506,9618,6077,3203],"delegatorTokens":9999999922122}},{"ix":157,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":16,"t":96,"tokens":[11506,10618,7077,4203],"delegation":[10506,9618,6077,3203],"delegatorTokens":9999999926684,"jailed":[1000000000000011,1000000000000017,null,1000000000000029],"status":["unbonded","unbonding","bonded","unbonding"]}},{"ix":158,"action":{"kind":"Delegate","val":1,"amt":2304},"partialState":{"h":16,"t":96,"tokens":[11506,12922,7077,4203],"delegation":[10506,11922,6077,3203],"delegatorTokens":9999999924380}},{"ix":159,"action":{"kind":"Undelegate","val":3,"amt":2191},"partialState":{"h":16,"t":96,"tokens":[11506,12922,7077,2012],"delegation":[10506,11922,6077,1012],"delegatorTokens":9999999924380}},{"ix":160,"action":{"kind":"Deliver","chain":"consumer","numPackets":4},"partialState":{"h":21,"t":126,"consumerPower":[null,null,10373,null],"outstandingDowntime":[false,false,false,false]}},{"ix":161,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":22,"t":132,"consumerPower":[null,null,7077,null],"outstandingDowntime":[false,false,false,false]}},{"ix":162,"action":{"kind":"Delegate","val":3,"amt":1299},"partialState":{"h":16,"t":96,"tokens":[11506,12922,7077,3311],"delegation":[10506,11922,6077,2311],"delegatorTokens":9999999923081}},{"ix":163,"action":{"kind":"Undelegate","val":1,"amt":3182},"partialState":{"h":16,"t":96,"tokens":[11506,9740,7077,3311],"delegation":[10506,8740,6077,2311],"delegatorTokens":9999999923081}},{"ix":164,"action":{"kind":"Undelegate","val":1,"amt":2978},"partialState":{"h":16,"t":96,"tokens":[11506,6762,7077,3311],"delegation":[10506,5762,6077,2311],"delegatorTokens":9999999923081}},{"ix":165,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":17,"t":102,"tokens":[11506,6762,7077,3311],"delegation":[10506,5762,6077,2311],"delegatorTokens":9999999923081,"jailed":[1000000000000011,1000000000000017,null,1000000000000029],"status":["unbonded","unbonding","bonded","unbonding"]}},{"ix":166,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":167,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":168,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":18,"t":108,"tokens":[11506,6762,7077,3311],"delegation":[10506,5762,6077,2311],"delegatorTokens":9999999923081,"jailed":[1000000000000011,1000000000000017,null,1000000000000029],"status":["unbonded","unbonding","bonded","unbonding"]}},{"ix":169,"action":{"kind":"Deliver","chain":"provider","numPackets":2},"partialState":{"h":18,"t":108,"tokens":[11506,6762,7077,3311],"delegation":[10506,5762,6077,2311],"delegatorTokens":9999999923081,"jailed":[1000000000000011,1000000000000017,null,1000000000000029],"status":["unbonded","unbonding","bonded","unbonding"]}},{"ix":170,"action":{"kind":"Deliver","chain":"provider","numPackets":3},"partialState":{"h":18,"t":108,"tokens":[11506,6762,7077,3311],"delegation":[10506,5762,6077,2311],"delegatorTokens":9999999923081,"jailed":[1000000000000011,1000000000000017,null,1000000000000029],"status":["unbonded","unbonding","bonded","unbonding"]}},{"ix":171,"action":{"kind":"Undelegate","val":2,"amt":3777},"partialState":{"h":18,"t":108,"tokens":[11506,6762,3300,3311],"delegation":[10506,5762,2300,2311],"delegatorTokens":9999999923081}},{"ix":172,"action":{"kind":"Undelegate","val":3,"amt":3923},"partialState":{"h":18,"t":108,"tokens":[11506,6762,3300,3311],"delegation":[10506,5762,2300,2311],"delegatorTokens":9999999923081}},{"ix":173,"action":{"kind":"Undelegate","val":2,"amt":2619},"partialState":{"h":18,"t":108,"tokens":[11506,6762,3300,3311],"delegation":[10506,5762,2300,2311],"delegatorTokens":9999999923081}},{"ix":174,"action":{"kind":"Delegate","val":0,"amt":1354},"partialState":{"h":18,"t":108,"tokens":[12860,6762,3300,3311],"delegation":[11860,5762,2300,2311],"delegatorTokens":9999999921727}},{"ix":175,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":176,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":23,"t":138,"consumerPower":[null,null,7077,null],"outstandingDowntime":[false,false,false,false]}},{"ix":177,"action":{"kind":"Undelegate","val":3,"amt":2389},"partialState":{"h":18,"t":108,"tokens":[12860,6762,3300,3311],"delegation":[11860,5762,2300,2311],"delegatorTokens":9999999921727}},{"ix":178,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":179,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":19,"t":114,"tokens":[12860,6762,3300,3311],"delegation":[11860,5762,2300,2311],"delegatorTokens":9999999928172,"jailed":[1000000000000011,1000000000000017,null,1000000000000029],"status":["unbonded","unbonding","bonded","unbonding"]}},{"ix":180,"action":{"kind":"Delegate","val":2,"amt":3444},"partialState":{"h":19,"t":114,"tokens":[12860,6762,6744,3311],"delegation":[11860,5762,5744,2311],"delegatorTokens":9999999924728}},{"ix":181,"action":{"kind":"Undelegate","val":3,"amt":1167},"partialState":{"h":19,"t":114,"tokens":[12860,6762,6744,2144],"delegation":[11860,5762,5744,1144],"delegatorTokens":9999999924728}},{"ix":182,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":183,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":184,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":24,"t":144,"consumerPower":[null,null,7077,null],"outstandingDowntime":[false,false,false,false]}},{"ix":185,"action":{"kind":"Delegate","val":2,"amt":1837},"partialState":{"h":19,"t":114,"tokens":[12860,6762,8581,2144],"delegation":[11860,5762,7581,1144],"delegatorTokens":9999999922891}},{"ix":186,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":25,"t":150,"consumerPower":[null,null,7077,null],"outstandingDowntime":[false,false,false,false]}},{"ix":187,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":188,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":20,"t":120,"tokens":[12860,6762,8581,2144],"delegation":[11860,5762,7581,1144],"delegatorTokens":9999999922891,"jailed":[1000000000000011,1000000000000017,null,1000000000000029],"status":["unbonded","unbonded","bonded","unbonding"]}},{"ix":189,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":190,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":191,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":192,"action":{"kind":"Delegate","val":1,"amt":1779},"partialState":{"h":20,"t":120,"tokens":[12860,8541,8581,2144],"delegation":[11860,7541,7581,1144],"delegatorTokens":9999999921112}},{"ix":193,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":21,"t":126,"tokens":[12860,8541,8581,2144],"delegation":[11860,7541,7581,1144],"delegatorTokens":9999999921112,"jailed":[1000000000000011,1000000000000017,null,1000000000000029],"status":["unbonded","unbonded","bonded","unbonding"]}},{"ix":194,"action":{"kind":"Undelegate","val":0,"amt":4963},"partialState":{"h":21,"t":126,"tokens":[7897,8541,8581,2144],"delegation":[6897,7541,7581,1144],"delegatorTokens":9999999921112}},{"ix":195,"action":{"kind":"Delegate","val":0,"amt":3307},"partialState":{"h":21,"t":126,"tokens":[11204,8541,8581,2144],"delegation":[10204,7541,7581,1144],"delegatorTokens":9999999917805}},{"ix":196,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":197,"action":{"kind":"Deliver","chain":"provider","numPackets":6},"partialState":{"h":21,"t":126,"tokens":[11204,8541,8581,2144],"delegation":[10204,7541,7581,1144],"delegatorTokens":9999999917805,"jailed":[1000000000000011,1000000000000017,null,1000000000000029],"status":["unbonded","unbonded","bonded","unbonding"]}},{"ix":198,"action":{"kind":"Undelegate","val":2,"amt":3370},"partialState":{"h":21,"t":126,"tokens":[11204,8541,5211,2144],"delegation":[10204,7541,4211,1144],"delegatorTokens":9999999917805}},{"ix":199,"action":{"kind":"Delegate","val":2,"amt":4168},"partialState":{"h":21,"t":126,"tokens":[11204,8541,9379,2144],"delegation":[10204,7541,8379,1144],"delegatorTokens":9999999913637}}],"events":["send_downtime_slash_request","more_than_one_third_val_power_change","send_vsc_without_downtime_ack","send_downtime_slash_request","downtime_slash_request_outstanding","downtime_slash_request_outstanding","downtime_slash_request_outstanding","receive_downtime_slash_request","jail","send_vsc_with_downtime_ack","rebond_unval","receive_downtime_slash_request","jail","send_vsc_with_downtime_ack","downtime_slash_request_outstanding","send_double_sign_slash_request","insufficient_shares","more_than_one_third_val_power_change","send_vsc_without_downtime_ack","downtime_slash_request_outstanding","receive_downtime_slash_ack","receive_downtime_slash_ack","insufficient_shares","consumer_update_val","consumer_add_val","consumer_del_val","send_downtime_slash_request","insufficient_shares","insufficient_shares","receive_double_sign_slash_request","insufficient_shares","receive_downtime_slash_request","jail","send_vsc_with_downtime_ack","insufficient_shares","send_vsc_without_downtime_ack","receive_downtime_slash_ack","consumer_del_val","consumer_add_val","consumer_update_val","send_vsc_without_downtime_ack","insufficient_shares","send_vsc_not_because_change","send_vsc_without_downtime_ack","consumer_send_maturation","consumer_send_maturation","consumer_send_maturation","consumer_update_val","consumer_del_val","insufficient_shares","consumer_update_val","send_vsc_without_downtime_ack","insufficient_shares","insufficient_shares","set_undel_hold_false","set_undel_hold_false","set_undel_hold_false","send_vsc_without_downtime_ack","consumer_update_val","consumer_send_maturation","consumer_send_maturation","complete_undel_in_endblock","set_undel_hold_false","set_undel_hold_false","set_unval_hold_false","send_vsc_without_downtime_ack","complete_unval_in_endblock","complete_undel_in_endblock","send_vsc_not_because_change","send_vsc_without_downtime_ack","consumer_update_val","send_vsc_not_because_change","send_vsc_without_downtime_ack","some_undels_expired_but_not_completed","insufficient_shares","insufficient_shares","insufficient_shares","some_undels_expired_but_not_completed","set_unval_hold_false","complete_undel_immediate","complete_undel_immediate","complete_undel_immediate","send_vsc_without_downtime_ack","consumer_send_maturation","consumer_send_maturation","complete_unval_in_endblock","some_undels_expired_but_not_completed","send_vsc_without_downtime_ack"]},{"meta":{"commit":"7ffd0c04e4205cbc9caf212abfe6c59ee43153bf"},"constants":{"P":"provider","C":"consumer","UNBONDING_SECONDS_P":70,"UNBONDING_SECONDS_C":50,"TRUSTING_SECONDS":49,"NUM_VALIDATORS":4,"MAX_VALIDATORS":2,"SLASH_DOUBLESIGN":0,"SLASH_DOWNTIME":0,"JAIL_SECONDS":999999999999999,"BLOCK_SECONDS":6,"INITIAL_DELEGATOR_TOKENS":10000000000000,"DELEGATE_AMT_MIN":1000,"DELEGATE_AMT_MAX":5000,"UNDELEGATE_AMT_MIN":1000,"UNDELEGATE_AMT_MAX":5000,"ISDOWNTIME_PROBABILITY":0.5,"MAX_NUM_PACKETS_FOR_DELIVER":6},"actions":[{"ix":0,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":1,"action":{"kind":"Undelegate","val":3,"amt":4682},"partialState":{"h":1,"t":6,"tokens":[5000,4000,3000,2000],"delegation":[4000,3000,2000,1000],"delegatorTokens":10000000000000}},{"ix":2,"action":{"kind":"Undelegate","val":2,"amt":2598},"partialState":{"h":1,"t":6,"tokens":[5000,4000,3000,2000],"delegation":[4000,3000,2000,1000],"delegatorTokens":10000000000000}},{"ix":3,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":2,"t":12,"tokens":[5000,4000,3000,2000],"delegation":[4000,3000,2000,1000],"delegatorTokens":10000000000000,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":4,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":5,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":3,"t":18,"tokens":[5000,4000,3000,2000],"delegation":[4000,3000,2000,1000],"delegatorTokens":10000000000000,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":6,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":2,"t":12,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":7,"action":{"kind":"Delegate","val":0,"amt":4951},"partialState":{"h":3,"t":18,"tokens":[9951,4000,3000,2000],"delegation":[8951,3000,2000,1000],"delegatorTokens":9999999995049}},{"ix":8,"action":{"kind":"Deliver","chain":"provider","numPackets":1},"partialState":{"h":3,"t":18,"tokens":[9951,4000,3000,2000],"delegation":[8951,3000,2000,1000],"delegatorTokens":9999999995049,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":9,"action":{"kind":"Undelegate","val":1,"amt":1332},"partialState":{"h":3,"t":18,"tokens":[9951,2668,3000,2000],"delegation":[8951,1668,2000,1000],"delegatorTokens":9999999995049}},{"ix":10,"action":{"kind":"Undelegate","val":2,"amt":3138},"partialState":{"h":3,"t":18,"tokens":[9951,2668,3000,2000],"delegation":[8951,1668,2000,1000],"delegatorTokens":9999999995049}},{"ix":11,"action":{"kind":"Undelegate","val":3,"amt":4766},"partialState":{"h":3,"t":18,"tokens":[9951,2668,3000,2000],"delegation":[8951,1668,2000,1000],"delegatorTokens":9999999995049}},{"ix":12,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":4,"t":24,"tokens":[9951,2668,3000,2000],"delegation":[8951,1668,2000,1000],"delegatorTokens":9999999995049,"jailed":[null,null,null,null],"status":["bonded","unbonding","bonded","unbonded"]}},{"ix":13,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":14,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":15,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":16,"action":{"kind":"Delegate","val":0,"amt":3739},"partialState":{"h":4,"t":24,"tokens":[13690,2668,3000,2000],"delegation":[12690,1668,2000,1000],"delegatorTokens":9999999991310}},{"ix":17,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":18,"action":{"kind":"Delegate","val":1,"amt":4600},"partialState":{"h":4,"t":24,"tokens":[13690,7268,3000,2000],"delegation":[12690,6268,2000,1000],"delegatorTokens":9999999986710}},{"ix":19,"action":{"kind":"ConsumerSlash","val":1,"infractionHeight":1,"isDowntime":true},"partialState":{"h":2,"t":12,"outstandingDowntime":[false,true,false,false]}},{"ix":20,"action":{"kind":"Undelegate","val":2,"amt":4230},"partialState":{"h":4,"t":24,"tokens":[13690,7268,3000,2000],"delegation":[12690,6268,2000,1000],"delegatorTokens":9999999986710}},{"ix":21,"action":{"kind":"Undelegate","val":1,"amt":2022},"partialState":{"h":4,"t":24,"tokens":[13690,5246,3000,2000],"delegation":[12690,4246,2000,1000],"delegatorTokens":9999999986710}},{"ix":22,"action":{"kind":"Undelegate","val":0,"amt":4043},"partialState":{"h":4,"t":24,"tokens":[9647,5246,3000,2000],"delegation":[8647,4246,2000,1000],"delegatorTokens":9999999986710}},{"ix":23,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":24,"action":{"kind":"Undelegate","val":0,"amt":1334},"partialState":{"h":4,"t":24,"tokens":[8313,5246,3000,2000],"delegation":[7313,4246,2000,1000],"delegatorTokens":9999999986710}},{"ix":25,"action":{"kind":"Undelegate","val":2,"amt":1540},"partialState":{"h":4,"t":24,"tokens":[8313,5246,1460,2000],"delegation":[7313,4246,460,1000],"delegatorTokens":9999999986710}},{"ix":26,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":27,"action":{"kind":"ConsumerSlash","val":1,"infractionHeight":1,"isDowntime":true},"partialState":{"h":2,"t":12,"outstandingDowntime":[false,true,false,false]}},{"ix":28,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":5,"t":30,"tokens":[8313,5246,1460,2000],"delegation":[7313,4246,460,1000],"delegatorTokens":9999999986710,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonding","unbonded"]}},{"ix":29,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":3,"t":18,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,true,false,false]}},{"ix":30,"action":{"kind":"Delegate","val":3,"amt":2199},"partialState":{"h":5,"t":30,"tokens":[8313,5246,1460,4199],"delegation":[7313,4246,460,3199],"delegatorTokens":9999999984511}},{"ix":31,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":4,"t":24,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,true,false,false]}},{"ix":32,"action":{"kind":"ConsumerSlash","val":2,"infractionHeight":2,"isDowntime":true},"partialState":{"h":4,"t":24,"outstandingDowntime":[false,true,true,false]}},{"ix":33,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":34,"action":{"kind":"Delegate","val":3,"amt":4284},"partialState":{"h":5,"t":30,"tokens":[8313,5246,1460,8483],"delegation":[7313,4246,460,7483],"delegatorTokens":9999999980227}},{"ix":35,"action":{"kind":"ConsumerSlash","val":2,"infractionHeight":0,"isDowntime":true},"partialState":{"h":4,"t":24,"outstandingDowntime":[false,true,true,false]}},{"ix":36,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":37,"action":{"kind":"Deliver","chain":"consumer","numPackets":1},"partialState":{"h":4,"t":24,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,true,true,false]}},{"ix":38,"action":{"kind":"Deliver","chain":"consumer","numPackets":3},"partialState":{"h":4,"t":24,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,true,true,false]}},{"ix":39,"action":{"kind":"Undelegate","val":0,"amt":3146},"partialState":{"h":5,"t":30,"tokens":[5167,5246,1460,8483],"delegation":[4167,4246,460,7483],"delegatorTokens":9999999980227}},{"ix":40,"action":{"kind":"Undelegate","val":0,"amt":2379},"partialState":{"h":5,"t":30,"tokens":[2788,5246,1460,8483],"delegation":[1788,4246,460,7483],"delegatorTokens":9999999980227}},{"ix":41,"action":{"kind":"ConsumerSlash","val":2,"infractionHeight":2,"isDowntime":true},"partialState":{"h":4,"t":24,"outstandingDowntime":[false,true,true,false]}},{"ix":42,"action":{"kind":"Undelegate","val":3,"amt":4588},"partialState":{"h":5,"t":30,"tokens":[2788,5246,1460,3895],"delegation":[1788,4246,460,2895],"delegatorTokens":9999999980227}},{"ix":43,"action":{"kind":"Undelegate","val":1,"amt":2950},"partialState":{"h":5,"t":30,"tokens":[2788,2296,1460,3895],"delegation":[1788,1296,460,2895],"delegatorTokens":9999999980227}},{"ix":44,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":6,"t":36,"tokens":[2788,2296,1460,3895],"delegation":[1788,1296,460,2895],"delegatorTokens":9999999980227,"jailed":[null,null,null,null],"status":["bonded","unbonding","unbonding","bonded"]}},{"ix":45,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":46,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":47,"action":{"kind":"Undelegate","val":1,"amt":1774},"partialState":{"h":6,"t":36,"tokens":[2788,2296,1460,3895],"delegation":[1788,1296,460,2895],"delegatorTokens":9999999980227}},{"ix":48,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":5,"t":30,"consumerPower":[9951,null,3000,null],"outstandingDowntime":[false,true,true,false]}},{"ix":49,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":50,"action":{"kind":"Delegate","val":3,"amt":2965},"partialState":{"h":6,"t":36,"tokens":[2788,2296,1460,6860],"delegation":[1788,1296,460,5860],"delegatorTokens":9999999977262}},{"ix":51,"action":{"kind":"Undelegate","val":3,"amt":3362},"partialState":{"h":6,"t":36,"tokens":[2788,2296,1460,3498],"delegation":[1788,1296,460,2498],"delegatorTokens":9999999977262}},{"ix":52,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":53,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":54,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":55,"action":{"kind":"Undelegate","val":1,"amt":2451},"partialState":{"h":6,"t":36,"tokens":[2788,2296,1460,3498],"delegation":[1788,1296,460,2498],"delegatorTokens":9999999977262}},{"ix":56,"action":{"kind":"ConsumerSlash","val":2,"infractionHeight":4,"isDowntime":true},"partialState":{"h":5,"t":30,"outstandingDowntime":[false,true,true,false]}},{"ix":57,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":7,"t":42,"tokens":[2788,2296,1460,3498],"delegation":[1788,1296,460,2498],"delegatorTokens":9999999977262,"jailed":[null,null,null,null],"status":["bonded","unbonding","unbonding","bonded"]}},{"ix":58,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":6,"t":36,"consumerPower":[9951,null,3000,null],"outstandingDowntime":[false,true,true,false]}},{"ix":59,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":7,"t":42,"consumerPower":[9951,null,3000,null],"outstandingDowntime":[false,true,true,false]}},{"ix":60,"action":{"kind":"Undelegate","val":2,"amt":1167},"partialState":{"h":7,"t":42,"tokens":[2788,2296,1460,3498],"delegation":[1788,1296,460,2498],"delegatorTokens":9999999977262}},{"ix":61,"action":{"kind":"Undelegate","val":1,"amt":4642},"partialState":{"h":7,"t":42,"tokens":[2788,2296,1460,3498],"delegation":[1788,1296,460,2498],"delegatorTokens":9999999977262}},{"ix":62,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":63,"action":{"kind":"Undelegate","val":0,"amt":1012},"partialState":{"h":7,"t":42,"tokens":[1776,2296,1460,3498],"delegation":[776,1296,460,2498],"delegatorTokens":9999999977262}},{"ix":64,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":65,"action":{"kind":"Delegate","val":0,"amt":2677},"partialState":{"h":7,"t":42,"tokens":[4453,2296,1460,3498],"delegation":[3453,1296,460,2498],"delegatorTokens":9999999974585}},{"ix":66,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":8,"t":48,"consumerPower":[9951,null,3000,null],"outstandingDowntime":[false,true,true,false]}},{"ix":67,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":68,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":8,"t":48,"tokens":[4453,2296,1460,3498],"delegation":[3453,1296,460,2498],"delegatorTokens":9999999974585,"jailed":[null,null,null,null],"status":["bonded","unbonding","unbonding","bonded"]}},{"ix":69,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":70,"action":{"kind":"Deliver","chain":"provider","numPackets":1},"partialState":{"h":8,"t":48,"tokens":[4453,2296,1460,3498],"delegation":[3453,1296,460,2498],"delegatorTokens":9999999974585,"jailed":[null,null,null,null],"status":["bonded","unbonding","unbonding","bonded"]}},{"ix":71,"action":{"kind":"ConsumerSlash","val":2,"infractionHeight":1,"isDowntime":false},"partialState":{"h":8,"t":48,"outstandingDowntime":[false,true,true,false]}},{"ix":72,"action":{"kind":"Undelegate","val":0,"amt":4224},"partialState":{"h":8,"t":48,"tokens":[4453,2296,1460,3498],"delegation":[3453,1296,460,2498],"delegatorTokens":9999999974585}},{"ix":73,"action":{"kind":"ConsumerSlash","val":0,"infractionHeight":5,"isDowntime":true},"partialState":{"h":8,"t":48,"outstandingDowntime":[true,true,true,false]}},{"ix":74,"action":{"kind":"Undelegate","val":1,"amt":4839},"partialState":{"h":8,"t":48,"tokens":[4453,2296,1460,3498],"delegation":[3453,1296,460,2498],"delegatorTokens":9999999974585}},{"ix":75,"action":{"kind":"Undelegate","val":2,"amt":3745},"partialState":{"h":8,"t":48,"tokens":[4453,2296,1460,3498],"delegation":[3453,1296,460,2498],"delegatorTokens":9999999974585}},{"ix":76,"action":{"kind":"Delegate","val":2,"amt":2078},"partialState":{"h":8,"t":48,"tokens":[4453,2296,3538,3498],"delegation":[3453,1296,2538,2498],"delegatorTokens":9999999972507}},{"ix":77,"action":{"kind":"Undelegate","val":1,"amt":4251},"partialState":{"h":8,"t":48,"tokens":[4453,2296,3538,3498],"delegation":[3453,1296,2538,2498],"delegatorTokens":9999999972507}},{"ix":78,"action":{"kind":"Delegate","val":2,"amt":3374},"partialState":{"h":8,"t":48,"tokens":[4453,2296,6912,3498],"delegation":[3453,1296,5912,2498],"delegatorTokens":9999999969133}},{"ix":79,"action":{"kind":"Undelegate","val":2,"amt":4589},"partialState":{"h":8,"t":48,"tokens":[4453,2296,2323,3498],"delegation":[3453,1296,1323,2498],"delegatorTokens":9999999969133}},{"ix":80,"action":{"kind":"Delegate","val":0,"amt":2774},"partialState":{"h":8,"t":48,"tokens":[7227,2296,2323,3498],"delegation":[6227,1296,1323,2498],"delegatorTokens":9999999966359}},{"ix":81,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":9,"t":54,"tokens":[7227,2296,2323,3498],"delegation":[6227,1296,1323,2498],"delegatorTokens":9999999966359,"jailed":[null,1000000000000047,null,null],"status":["bonded","unbonding","unbonding","bonded"]}},{"ix":82,"action":{"kind":"Deliver","chain":"consumer","numPackets":3},"partialState":{"h":8,"t":48,"consumerPower":[9951,null,3000,null],"outstandingDowntime":[true,true,true,false]}},{"ix":83,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":9,"t":54,"consumerPower":[2788,null,null,3498],"outstandingDowntime":[true,true,true,false]}},{"ix":84,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":10,"t":60,"consumerPower":[2788,null,null,3498],"outstandingDowntime":[true,true,true,false]}},{"ix":85,"action":{"kind":"Delegate","val":3,"amt":3414},"partialState":{"h":9,"t":54,"tokens":[7227,2296,2323,6912],"delegation":[6227,1296,1323,5912],"delegatorTokens":9999999962945}},{"ix":86,"action":{"kind":"Undelegate","val":0,"amt":1783},"partialState":{"h":9,"t":54,"tokens":[5444,2296,2323,6912],"delegation":[4444,1296,1323,5912],"delegatorTokens":9999999962945}},{"ix":87,"action":{"kind":"Delegate","val":0,"amt":4379},"partialState":{"h":9,"t":54,"tokens":[9823,2296,2323,6912],"delegation":[8823,1296,1323,5912],"delegatorTokens":9999999958566}},{"ix":88,"action":{"kind":"Deliver","chain":"provider","numPackets":4},"partialState":{"h":9,"t":54,"tokens":[9823,2296,2323,6912],"delegation":[8823,1296,1323,5912],"delegatorTokens":9999999958566,"jailed":[null,1000000000000047,null,null],"status":["bonded","unbonding","unbonding","bonded"]}},{"ix":89,"action":{"kind":"Delegate","val":2,"amt":4913},"partialState":{"h":9,"t":54,"tokens":[9823,2296,7236,6912],"delegation":[8823,1296,6236,5912],"delegatorTokens":9999999953653}},{"ix":90,"action":{"kind":"Undelegate","val":1,"amt":4943},"partialState":{"h":9,"t":54,"tokens":[9823,2296,7236,6912],"delegation":[8823,1296,6236,5912],"delegatorTokens":9999999953653}},{"ix":91,"action":{"kind":"Deliver","chain":"consumer","numPackets":4},"partialState":{"h":10,"t":60,"consumerPower":[2788,null,null,3498],"outstandingDowntime":[true,true,true,false]}},{"ix":92,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":10,"t":60,"tokens":[9823,2296,7236,6912],"delegation":[8823,1296,6236,5912],"delegatorTokens":9999999953653,"jailed":[1000000000000053,1000000000000047,1000000000000053,null],"status":["bonded","unbonding","bonded","unbonding"]}},{"ix":93,"action":{"kind":"Delegate","val":2,"amt":1988},"partialState":{"h":10,"t":60,"tokens":[9823,2296,9224,6912],"delegation":[8823,1296,8224,5912],"delegatorTokens":9999999951665}},{"ix":94,"action":{"kind":"Undelegate","val":2,"amt":1923},"partialState":{"h":10,"t":60,"tokens":[9823,2296,7301,6912],"delegation":[8823,1296,6301,5912],"delegatorTokens":9999999951665}},{"ix":95,"action":{"kind":"Deliver","chain":"consumer","numPackets":6},"partialState":{"h":10,"t":60,"consumerPower":[2788,null,null,3498],"outstandingDowntime":[true,false,true,false]}},{"ix":96,"action":{"kind":"Deliver","chain":"consumer","numPackets":5},"partialState":{"h":10,"t":60,"consumerPower":[2788,null,null,3498],"outstandingDowntime":[true,false,true,false]}},{"ix":97,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":11,"t":66,"tokens":[9823,2296,7301,6912],"delegation":[8823,1296,6301,5912],"delegatorTokens":9999999951665,"jailed":[1000000000000053,1000000000000047,1000000000000053,null],"status":["unbonding","unbonding","unbonding","bonded"]}},{"ix":98,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":99,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":100,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":12,"t":72,"tokens":[9823,2296,7301,6912],"delegation":[8823,1296,6301,5912],"delegatorTokens":9999999951665,"jailed":[1000000000000053,1000000000000047,1000000000000053,null],"status":["unbonding","unbonding","unbonding","bonded"]}},{"ix":101,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":102,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":11,"t":66,"consumerPower":[7227,null,null,3498],"outstandingDowntime":[true,false,true,false]}},{"ix":103,"action":{"kind":"Delegate","val":3,"amt":3951},"partialState":{"h":12,"t":72,"tokens":[9823,2296,7301,10863],"delegation":[8823,1296,6301,9863],"delegatorTokens":9999999947714}},{"ix":104,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":13,"t":78,"tokens":[9823,2296,7301,10863],"delegation":[8823,1296,6301,9863],"delegatorTokens":9999999947714,"jailed":[1000000000000053,1000000000000047,1000000000000053,null],"status":["unbonding","unbonding","unbonding","bonded"]}},{"ix":105,"action":{"kind":"Undelegate","val":0,"amt":1644},"partialState":{"h":13,"t":78,"tokens":[8179,2296,7301,10863],"delegation":[7179,1296,6301,9863],"delegatorTokens":9999999947714}},{"ix":106,"action":{"kind":"Undelegate","val":1,"amt":3165},"partialState":{"h":13,"t":78,"tokens":[8179,2296,7301,10863],"delegation":[7179,1296,6301,9863],"delegatorTokens":9999999947714}},{"ix":107,"action":{"kind":"Delegate","val":3,"amt":4379},"partialState":{"h":13,"t":78,"tokens":[8179,2296,7301,15242],"delegation":[7179,1296,6301,14242],"delegatorTokens":9999999943335}},{"ix":108,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":109,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":12,"t":72,"consumerPower":[7227,null,null,3498],"outstandingDowntime":[true,false,true,false]}},{"ix":110,"action":{"kind":"Deliver","chain":"provider","numPackets":6},"partialState":{"h":13,"t":78,"tokens":[8179,2296,7301,15242],"delegation":[7179,1296,6301,14242],"delegatorTokens":9999999943335,"jailed":[1000000000000053,1000000000000047,1000000000000053,null],"status":["unbonding","unbonding","unbonding","bonded"]}},{"ix":111,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":112,"action":{"kind":"Delegate","val":1,"amt":4744},"partialState":{"h":13,"t":78,"tokens":[8179,7040,7301,15242],"delegation":[7179,6040,6301,14242],"delegatorTokens":9999999938591}},{"ix":113,"action":{"kind":"Undelegate","val":0,"amt":2801},"partialState":{"h":13,"t":78,"tokens":[5378,7040,7301,15242],"delegation":[4378,6040,6301,14242],"delegatorTokens":9999999938591}},{"ix":114,"action":{"kind":"Deliver","chain":"provider","numPackets":3},"partialState":{"h":13,"t":78,"tokens":[5378,7040,7301,15242],"delegation":[4378,6040,6301,14242],"delegatorTokens":9999999938591,"jailed":[1000000000000053,1000000000000047,1000000000000053,null],"status":["unbonding","unbonding","unbonding","bonded"]}},{"ix":115,"action":{"kind":"Deliver","chain":"consumer","numPackets":4},"partialState":{"h":12,"t":72,"consumerPower":[7227,null,null,3498],"outstandingDowntime":[false,false,false,false]}},{"ix":116,"action":{"kind":"Undelegate","val":2,"amt":3467},"partialState":{"h":13,"t":78,"tokens":[5378,7040,3834,15242],"delegation":[4378,6040,2834,14242],"delegatorTokens":9999999938591}},{"ix":117,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":13,"t":78,"consumerPower":[null,null,null,6912],"outstandingDowntime":[false,false,false,false]}},{"ix":118,"action":{"kind":"Delegate","val":0,"amt":2056},"partialState":{"h":13,"t":78,"tokens":[7434,7040,3834,15242],"delegation":[6434,6040,2834,14242],"delegatorTokens":9999999936535}},{"ix":119,"action":{"kind":"Undelegate","val":2,"amt":3222},"partialState":{"h":13,"t":78,"tokens":[7434,7040,3834,15242],"delegation":[6434,6040,2834,14242],"delegatorTokens":9999999936535}},{"ix":120,"action":{"kind":"Delegate","val":1,"amt":1858},"partialState":{"h":13,"t":78,"tokens":[7434,8898,3834,15242],"delegation":[6434,7898,2834,14242],"delegatorTokens":9999999934677}},{"ix":121,"action":{"kind":"Delegate","val":3,"amt":2398},"partialState":{"h":13,"t":78,"tokens":[7434,8898,3834,17640],"delegation":[6434,7898,2834,16640],"delegatorTokens":9999999932279}},{"ix":122,"action":{"kind":"Deliver","chain":"consumer","numPackets":4},"partialState":{"h":13,"t":78,"consumerPower":[null,null,null,6912],"outstandingDowntime":[false,false,false,false]}},{"ix":123,"action":{"kind":"Deliver","chain":"provider","numPackets":4},"partialState":{"h":13,"t":78,"tokens":[7434,8898,3834,17640],"delegation":[6434,7898,2834,16640],"delegatorTokens":9999999932279,"jailed":[1000000000000053,1000000000000047,1000000000000053,null],"status":["unbonding","unbonding","unbonding","bonded"]}},{"ix":124,"action":{"kind":"Delegate","val":2,"amt":2175},"partialState":{"h":13,"t":78,"tokens":[7434,8898,6009,17640],"delegation":[6434,7898,5009,16640],"delegatorTokens":9999999930104}},{"ix":125,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":126,"action":{"kind":"Deliver","chain":"provider","numPackets":5},"partialState":{"h":13,"t":78,"tokens":[7434,8898,6009,17640],"delegation":[6434,7898,5009,16640],"delegatorTokens":9999999930104,"jailed":[1000000000000053,1000000000000047,1000000000000053,null],"status":["unbonding","unbonding","unbonding","bonded"]}},{"ix":127,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":14,"t":84,"consumerPower":[null,null,null,6912],"outstandingDowntime":[false,false,false,false]}},{"ix":128,"action":{"kind":"Undelegate","val":1,"amt":3581},"partialState":{"h":13,"t":78,"tokens":[7434,5317,6009,17640],"delegation":[6434,4317,5009,16640],"delegatorTokens":9999999930104}},{"ix":129,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":130,"action":{"kind":"Delegate","val":0,"amt":4367},"partialState":{"h":13,"t":78,"tokens":[11801,5317,6009,17640],"delegation":[10801,4317,5009,16640],"delegatorTokens":9999999925737}},{"ix":131,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":15,"t":90,"consumerPower":[null,null,null,6912],"outstandingDowntime":[false,false,false,false]}},{"ix":132,"action":{"kind":"Deliver","chain":"provider","numPackets":1},"partialState":{"h":13,"t":78,"tokens":[11801,5317,6009,17640],"delegation":[10801,4317,5009,16640],"delegatorTokens":9999999925737,"jailed":[1000000000000053,1000000000000047,1000000000000053,null],"status":["unbonding","unbonding","unbonding","bonded"]}},{"ix":133,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":134,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":14,"t":84,"tokens":[11801,5317,6009,17640],"delegation":[10801,4317,5009,16640],"delegatorTokens":9999999925737,"jailed":[1000000000000053,1000000000000047,1000000000000053,null],"status":["unbonding","unbonding","unbonding","bonded"]}},{"ix":135,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":136,"action":{"kind":"Undelegate","val":0,"amt":1219},"partialState":{"h":14,"t":84,"tokens":[10582,5317,6009,17640],"delegation":[9582,4317,5009,16640],"delegatorTokens":9999999925737}},{"ix":137,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":16,"t":96,"consumerPower":[null,null,null,6912],"outstandingDowntime":[false,false,false,false]}},{"ix":138,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":139,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":17,"t":102,"consumerPower":[null,null,null,6912],"outstandingDowntime":[false,false,false,false]}},{"ix":140,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":18,"t":108,"consumerPower":[null,null,null,6912],"outstandingDowntime":[false,false,false,false]}},{"ix":141,"action":{"kind":"Undelegate","val":3,"amt":2692},"partialState":{"h":14,"t":84,"tokens":[10582,5317,6009,14948],"delegation":[9582,4317,5009,13948],"delegatorTokens":9999999925737}},{"ix":142,"action":{"kind":"Deliver","chain":"provider","numPackets":1},"partialState":{"h":14,"t":84,"tokens":[10582,5317,6009,14948],"delegation":[9582,4317,5009,13948],"delegatorTokens":9999999925737,"jailed":[1000000000000053,1000000000000047,1000000000000053,null],"status":["unbonding","unbonding","unbonding","bonded"]}},{"ix":143,"action":{"kind":"Deliver","chain":"provider","numPackets":1},"partialState":{"h":14,"t":84,"tokens":[10582,5317,6009,14948],"delegation":[9582,4317,5009,13948],"delegatorTokens":9999999925737,"jailed":[1000000000000053,1000000000000047,1000000000000053,null],"status":["unbonding","unbonding","unbonding","bonded"]}},{"ix":144,"action":{"kind":"Delegate","val":3,"amt":3461},"partialState":{"h":14,"t":84,"tokens":[10582,5317,6009,18409],"delegation":[9582,4317,5009,17409],"delegatorTokens":9999999922276}},{"ix":145,"action":{"kind":"Delegate","val":2,"amt":2697},"partialState":{"h":14,"t":84,"tokens":[10582,5317,8706,18409],"delegation":[9582,4317,7706,17409],"delegatorTokens":9999999919579}},{"ix":146,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":15,"t":90,"tokens":[10582,5317,8706,18409],"delegation":[9582,4317,7706,17409],"delegatorTokens":9999999919579,"jailed":[1000000000000053,1000000000000047,1000000000000053,null],"status":["unbonding","unbonding","unbonding","bonded"]}},{"ix":147,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":148,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":16,"t":96,"tokens":[10582,5317,8706,18409],"delegation":[9582,4317,7706,17409],"delegatorTokens":9999999920911,"jailed":[1000000000000053,1000000000000047,1000000000000053,null],"status":["unbonding","unbonding","unbonding","bonded"]}},{"ix":149,"action":{"kind":"Delegate","val":0,"amt":1057},"partialState":{"h":16,"t":96,"tokens":[11639,5317,8706,18409],"delegation":[10639,4317,7706,17409],"delegatorTokens":9999999919854}},{"ix":150,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":19,"t":114,"consumerPower":[null,null,null,6912],"outstandingDowntime":[false,false,false,false]}},{"ix":151,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":20,"t":120,"consumerPower":[null,null,null,6912],"outstandingDowntime":[false,false,false,false]}},{"ix":152,"action":{"kind":"Delegate","val":2,"amt":1513},"partialState":{"h":16,"t":96,"tokens":[11639,5317,10219,18409],"delegation":[10639,4317,9219,17409],"delegatorTokens":9999999918341}},{"ix":153,"action":{"kind":"Delegate","val":0,"amt":4019},"partialState":{"h":16,"t":96,"tokens":[15658,5317,10219,18409],"delegation":[14658,4317,9219,17409],"delegatorTokens":9999999914322}},{"ix":154,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":21,"t":126,"consumerPower":[null,null,null,6912],"outstandingDowntime":[false,false,false,false]}},{"ix":155,"action":{"kind":"Undelegate","val":2,"amt":3138},"partialState":{"h":16,"t":96,"tokens":[15658,5317,7081,18409],"delegation":[14658,4317,6081,17409],"delegatorTokens":9999999914322}},{"ix":156,"action":{"kind":"Deliver","chain":"provider","numPackets":2},"partialState":{"h":16,"t":96,"tokens":[15658,5317,7081,18409],"delegation":[14658,4317,6081,17409],"delegatorTokens":9999999914322,"jailed":[1000000000000053,1000000000000047,1000000000000053,null],"status":["unbonding","unbonding","unbonding","bonded"]}},{"ix":157,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":158,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":159,"action":{"kind":"Delegate","val":2,"amt":1510},"partialState":{"h":16,"t":96,"tokens":[15658,5317,8591,18409],"delegation":[14658,4317,7591,17409],"delegatorTokens":9999999912812}},{"ix":160,"action":{"kind":"Deliver","chain":"provider","numPackets":6},"partialState":{"h":16,"t":96,"tokens":[15658,5317,8591,18409],"delegation":[14658,4317,7591,17409],"delegatorTokens":9999999912812,"jailed":[1000000000000053,1000000000000047,1000000000000053,null],"status":["unbonding","unbonding","unbonding","bonded"]}},{"ix":161,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":162,"action":{"kind":"Deliver","chain":"consumer","numPackets":6},"partialState":{"h":21,"t":126,"consumerPower":[null,null,null,6912],"outstandingDowntime":[false,false,false,false]}},{"ix":163,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":22,"t":132,"consumerPower":[null,null,null,18409],"outstandingDowntime":[false,false,false,false]}},{"ix":164,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":23,"t":138,"consumerPower":[null,null,null,18409],"outstandingDowntime":[false,false,false,false]}},{"ix":165,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":166,"action":{"kind":"Delegate","val":3,"amt":1432},"partialState":{"h":16,"t":96,"tokens":[15658,5317,8591,19841],"delegation":[14658,4317,7591,18841],"delegatorTokens":9999999911380}},{"ix":167,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":17,"t":102,"tokens":[15658,5317,8591,19841],"delegation":[14658,4317,7591,18841],"delegatorTokens":9999999920319,"jailed":[1000000000000053,1000000000000047,1000000000000053,null],"status":["unbonding","unbonding","unbonding","bonded"]}},{"ix":168,"action":{"kind":"Undelegate","val":2,"amt":3195},"partialState":{"h":17,"t":102,"tokens":[15658,5317,5396,19841],"delegation":[14658,4317,4396,18841],"delegatorTokens":9999999920319}},{"ix":169,"action":{"kind":"Delegate","val":0,"amt":3655},"partialState":{"h":17,"t":102,"tokens":[19313,5317,5396,19841],"delegation":[18313,4317,4396,18841],"delegatorTokens":9999999916664}},{"ix":170,"action":{"kind":"Delegate","val":2,"amt":1504},"partialState":{"h":17,"t":102,"tokens":[19313,5317,6900,19841],"delegation":[18313,4317,5900,18841],"delegatorTokens":9999999915160}},{"ix":171,"action":{"kind":"Deliver","chain":"provider","numPackets":2},"partialState":{"h":17,"t":102,"tokens":[19313,5317,6900,19841],"delegation":[18313,4317,5900,18841],"delegatorTokens":9999999915160,"jailed":[1000000000000053,1000000000000047,1000000000000053,null],"status":["unbonding","unbonding","unbonding","bonded"]}},{"ix":172,"action":{"kind":"Undelegate","val":0,"amt":3515},"partialState":{"h":17,"t":102,"tokens":[15798,5317,6900,19841],"delegation":[14798,4317,5900,18841],"delegatorTokens":9999999915160}},{"ix":173,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":174,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":175,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":18,"t":108,"tokens":[15798,5317,6900,19841],"delegation":[14798,4317,5900,18841],"delegatorTokens":9999999928223,"jailed":[1000000000000053,1000000000000047,1000000000000053,null],"status":["unbonding","unbonded","unbonding","bonded"]}},{"ix":176,"action":{"kind":"Delegate","val":0,"amt":3730},"partialState":{"h":18,"t":108,"tokens":[19528,5317,6900,19841],"delegation":[18528,4317,5900,18841],"delegatorTokens":9999999924493}},{"ix":177,"action":{"kind":"Delegate","val":2,"amt":2609},"partialState":{"h":18,"t":108,"tokens":[19528,5317,9509,19841],"delegation":[18528,4317,8509,18841],"delegatorTokens":9999999921884}},{"ix":178,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":179,"action":{"kind":"Undelegate","val":2,"amt":2882},"partialState":{"h":18,"t":108,"tokens":[19528,5317,6627,19841],"delegation":[18528,4317,5627,18841],"delegatorTokens":9999999921884}},{"ix":180,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":181,"action":{"kind":"Undelegate","val":2,"amt":2025},"partialState":{"h":18,"t":108,"tokens":[19528,5317,4602,19841],"delegation":[18528,4317,3602,18841],"delegatorTokens":9999999921884}},{"ix":182,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":183,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":184,"action":{"kind":"Undelegate","val":1,"amt":3912},"partialState":{"h":18,"t":108,"tokens":[19528,1405,4602,19841],"delegation":[18528,405,3602,18841],"delegatorTokens":9999999921884}},{"ix":185,"action":{"kind":"Deliver","chain":"provider","numPackets":2},"partialState":{"h":18,"t":108,"tokens":[19528,1405,4602,19841],"delegation":[18528,405,3602,18841],"delegatorTokens":9999999921884,"jailed":[1000000000000053,1000000000000047,1000000000000053,null],"status":["unbonding","unbonded","unbonding","bonded"]}},{"ix":186,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":24,"t":144,"consumerPower":[null,null,null,18409],"outstandingDowntime":[false,false,false,false]}},{"ix":187,"action":{"kind":"Delegate","val":1,"amt":4245},"partialState":{"h":18,"t":108,"tokens":[19528,5650,4602,19841],"delegation":[18528,4650,3602,18841],"delegatorTokens":9999999917639}},{"ix":188,"action":{"kind":"Delegate","val":0,"amt":2777},"partialState":{"h":18,"t":108,"tokens":[22305,5650,4602,19841],"delegation":[21305,4650,3602,18841],"delegatorTokens":9999999914862}},{"ix":189,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":25,"t":150,"consumerPower":[null,null,null,18409],"outstandingDowntime":[false,false,false,false]}},{"ix":190,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":19,"t":114,"tokens":[22305,5650,4602,19841],"delegation":[21305,4650,3602,18841],"delegatorTokens":9999999918224,"jailed":[1000000000000053,1000000000000047,1000000000000053,null],"status":["unbonding","unbonded","unbonding","bonded"]}},{"ix":191,"action":{"kind":"Deliver","chain":"provider","numPackets":5},"partialState":{"h":19,"t":114,"tokens":[22305,5650,4602,19841],"delegation":[21305,4650,3602,18841],"delegatorTokens":9999999918224,"jailed":[1000000000000053,1000000000000047,1000000000000053,null],"status":["unbonding","unbonded","unbonding","bonded"]}},{"ix":192,"action":{"kind":"Delegate","val":2,"amt":3965},"partialState":{"h":19,"t":114,"tokens":[22305,5650,8567,19841],"delegation":[21305,4650,7567,18841],"delegatorTokens":9999999914259}},{"ix":193,"action":{"kind":"Undelegate","val":2,"amt":4520},"partialState":{"h":19,"t":114,"tokens":[22305,5650,4047,19841],"delegation":[21305,4650,3047,18841],"delegatorTokens":9999999914259}},{"ix":194,"action":{"kind":"Deliver","chain":"provider","numPackets":1},"partialState":{"h":19,"t":114,"tokens":[22305,5650,4047,19841],"delegation":[21305,4650,3047,18841],"delegatorTokens":9999999914259,"jailed":[1000000000000053,1000000000000047,1000000000000053,null],"status":["unbonding","unbonded","unbonding","bonded"]}},{"ix":195,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":20,"t":120,"tokens":[22305,5650,4047,19841],"delegation":[21305,4650,3047,18841],"delegatorTokens":9999999915271,"jailed":[1000000000000053,1000000000000047,1000000000000053,null],"status":["unbonding","unbonded","unbonding","bonded"]}},{"ix":196,"action":{"kind":"Delegate","val":1,"amt":1440},"partialState":{"h":20,"t":120,"tokens":[22305,7090,4047,19841],"delegation":[21305,6090,3047,18841],"delegatorTokens":9999999913831}},{"ix":197,"action":{"kind":"Delegate","val":1,"amt":4221},"partialState":{"h":20,"t":120,"tokens":[22305,11311,4047,19841],"delegation":[21305,10311,3047,18841],"delegatorTokens":9999999909610}},{"ix":198,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":199,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}}],"events":["insufficient_shares","insufficient_shares","insufficient_shares","insufficient_shares","send_vsc_without_downtime_ack","send_downtime_slash_request","insufficient_shares","downtime_slash_request_outstanding","more_than_one_third_val_power_change","rebond_unval","send_vsc_without_downtime_ack","send_downtime_slash_request","downtime_slash_request_outstanding","downtime_slash_request_outstanding","more_than_one_third_val_power_change","send_vsc_without_downtime_ack","insufficient_shares","consumer_update_val","consumer_del_val","consumer_add_val","insufficient_shares","downtime_slash_request_outstanding","send_vsc_without_downtime_ack","insufficient_shares","insufficient_shares","send_vsc_without_downtime_ack","send_double_sign_slash_request","insufficient_shares","send_downtime_slash_request","insufficient_shares","insufficient_shares","insufficient_shares","receive_downtime_slash_request","jail","send_vsc_with_downtime_ack","consumer_update_val","consumer_del_val","consumer_del_val","consumer_add_val","receive_double_sign_slash_request","insufficient_shares","more_than_one_third_val_power_change","rebond_unval","receive_downtime_slash_request","jail","receive_downtime_slash_request","jail","send_vsc_with_downtime_ack","receive_downtime_slash_ack","more_than_one_third_val_power_change","rebond_unval","send_vsc_without_downtime_ack","consumer_update_val","send_vsc_without_downtime_ack","insufficient_shares","receive_downtime_slash_ack","receive_downtime_slash_ack","consumer_del_val","consumer_del_val","consumer_update_val","insufficient_shares","consumer_send_maturation","set_undel_hold_false","send_vsc_without_downtime_ack","consumer_send_maturation","consumer_send_maturation","consumer_send_maturation","send_vsc_without_downtime_ack","complete_undel_in_endblock","consumer_send_maturation","consumer_send_maturation","consumer_send_maturation","consumer_send_maturation","consumer_update_val","some_undels_expired_but_not_completed","complete_undel_immediate","complete_undel_immediate","complete_undel_immediate","complete_undel_immediate","set_undel_hold_false","set_undel_hold_false","set_undel_hold_false","set_undel_hold_false","set_unval_hold_false","set_undel_hold_false","set_undel_hold_false","set_undel_hold_false","send_vsc_without_downtime_ack","complete_unval_in_endblock","complete_undel_in_endblock","set_undel_hold_false","set_undel_hold_false","set_unval_hold_false","set_unval_hold_false","send_vsc_not_because_change","send_vsc_without_downtime_ack","complete_undel_in_endblock","send_vsc_not_because_change","send_vsc_without_downtime_ack","complete_undel_in_endblock","send_vsc_not_because_change","send_vsc_without_downtime_ack"]},{"meta":{"commit":"7ffd0c04e4205cbc9caf212abfe6c59ee43153bf"},"constants":{"P":"provider","C":"consumer","UNBONDING_SECONDS_P":70,"UNBONDING_SECONDS_C":50,"TRUSTING_SECONDS":49,"NUM_VALIDATORS":4,"MAX_VALIDATORS":2,"SLASH_DOUBLESIGN":0,"SLASH_DOWNTIME":0,"JAIL_SECONDS":999999999999999,"BLOCK_SECONDS":6,"INITIAL_DELEGATOR_TOKENS":10000000000000,"DELEGATE_AMT_MIN":1000,"DELEGATE_AMT_MAX":5000,"UNDELEGATE_AMT_MIN":1000,"UNDELEGATE_AMT_MAX":5000,"ISDOWNTIME_PROBABILITY":0.5,"MAX_NUM_PACKETS_FOR_DELIVER":6},"actions":[{"ix":0,"action":{"kind":"Undelegate","val":2,"amt":4621},"partialState":{"h":1,"t":6,"tokens":[5000,4000,3000,2000],"delegation":[4000,3000,2000,1000],"delegatorTokens":10000000000000}},{"ix":1,"action":{"kind":"Deliver","chain":"consumer","numPackets":3},"partialState":{"h":1,"t":6,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":2,"action":{"kind":"ConsumerSlash","val":3,"infractionHeight":0,"isDowntime":true},"partialState":{"h":1,"t":6,"outstandingDowntime":[false,false,false,true]}},{"ix":3,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":4,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":2,"t":12,"tokens":[5000,4000,3000,2000],"delegation":[4000,3000,2000,1000],"delegatorTokens":10000000000000,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":5,"action":{"kind":"Deliver","chain":"consumer","numPackets":6},"partialState":{"h":1,"t":6,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,false,false,true]}},{"ix":6,"action":{"kind":"ConsumerSlash","val":3,"infractionHeight":0,"isDowntime":true},"partialState":{"h":1,"t":6,"outstandingDowntime":[false,false,false,true]}},{"ix":7,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":8,"action":{"kind":"Delegate","val":0,"amt":4815},"partialState":{"h":2,"t":12,"tokens":[9815,4000,3000,2000],"delegation":[8815,3000,2000,1000],"delegatorTokens":9999999995185}},{"ix":9,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":2,"t":12,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,false,false,true]}},{"ix":10,"action":{"kind":"Undelegate","val":1,"amt":4162},"partialState":{"h":2,"t":12,"tokens":[9815,4000,3000,2000],"delegation":[8815,3000,2000,1000],"delegatorTokens":9999999995185}},{"ix":11,"action":{"kind":"Delegate","val":3,"amt":2642},"partialState":{"h":2,"t":12,"tokens":[9815,4000,3000,4642],"delegation":[8815,3000,2000,3642],"delegatorTokens":9999999992543}},{"ix":12,"action":{"kind":"Delegate","val":3,"amt":2429},"partialState":{"h":2,"t":12,"tokens":[9815,4000,3000,7071],"delegation":[8815,3000,2000,6071],"delegatorTokens":9999999990114}},{"ix":13,"action":{"kind":"Deliver","chain":"provider","numPackets":3},"partialState":{"h":2,"t":12,"tokens":[9815,4000,3000,7071],"delegation":[8815,3000,2000,6071],"delegatorTokens":9999999990114,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":14,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":3,"t":18,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,false,false,true]}},{"ix":15,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":16,"action":{"kind":"Delegate","val":3,"amt":3584},"partialState":{"h":2,"t":12,"tokens":[9815,4000,3000,10655],"delegation":[8815,3000,2000,9655],"delegatorTokens":9999999986530}},{"ix":17,"action":{"kind":"Deliver","chain":"consumer","numPackets":1},"partialState":{"h":3,"t":18,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,false,false,true]}},{"ix":18,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":19,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":20,"action":{"kind":"Deliver","chain":"provider","numPackets":5},"partialState":{"h":2,"t":12,"tokens":[9815,4000,3000,10655],"delegation":[8815,3000,2000,9655],"delegatorTokens":9999999986530,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":21,"action":{"kind":"Delegate","val":2,"amt":4879},"partialState":{"h":2,"t":12,"tokens":[9815,4000,7879,10655],"delegation":[8815,3000,6879,9655],"delegatorTokens":9999999981651}},{"ix":22,"action":{"kind":"Delegate","val":0,"amt":4405},"partialState":{"h":2,"t":12,"tokens":[14220,4000,7879,10655],"delegation":[13220,3000,6879,9655],"delegatorTokens":9999999977246}},{"ix":23,"action":{"kind":"ConsumerSlash","val":1,"infractionHeight":2,"isDowntime":true},"partialState":{"h":3,"t":18,"outstandingDowntime":[false,true,false,true]}},{"ix":24,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":3,"t":18,"tokens":[14220,4000,7879,10655],"delegation":[13220,3000,6879,9655],"delegatorTokens":9999999977246,"jailed":[null,null,null,1000000000000011],"status":["bonded","unbonding","unbonded","bonded"]}},{"ix":25,"action":{"kind":"Deliver","chain":"provider","numPackets":6},"partialState":{"h":3,"t":18,"tokens":[14220,4000,7879,10655],"delegation":[13220,3000,6879,9655],"delegatorTokens":9999999977246,"jailed":[null,null,null,1000000000000011],"status":["bonded","unbonding","unbonded","bonded"]}},{"ix":26,"action":{"kind":"Deliver","chain":"provider","numPackets":5},"partialState":{"h":3,"t":18,"tokens":[14220,4000,7879,10655],"delegation":[13220,3000,6879,9655],"delegatorTokens":9999999977246,"jailed":[null,null,null,1000000000000011],"status":["bonded","unbonding","unbonded","bonded"]}},{"ix":27,"action":{"kind":"ConsumerSlash","val":1,"infractionHeight":0,"isDowntime":false},"partialState":{"h":3,"t":18,"outstandingDowntime":[false,true,false,true]}},{"ix":28,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":29,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":4,"t":24,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,true,false,true]}},{"ix":30,"action":{"kind":"Delegate","val":3,"amt":2501},"partialState":{"h":3,"t":18,"tokens":[14220,4000,7879,13156],"delegation":[13220,3000,6879,12156],"delegatorTokens":9999999974745}},{"ix":31,"action":{"kind":"ConsumerSlash","val":1,"infractionHeight":1,"isDowntime":true},"partialState":{"h":4,"t":24,"outstandingDowntime":[false,true,false,true]}},{"ix":32,"action":{"kind":"ConsumerSlash","val":3,"infractionHeight":3,"isDowntime":true},"partialState":{"h":4,"t":24,"outstandingDowntime":[false,true,false,true]}},{"ix":33,"action":{"kind":"Undelegate","val":0,"amt":4033},"partialState":{"h":3,"t":18,"tokens":[10187,4000,7879,13156],"delegation":[9187,3000,6879,12156],"delegatorTokens":9999999974745}},{"ix":34,"action":{"kind":"Deliver","chain":"provider","numPackets":6},"partialState":{"h":3,"t":18,"tokens":[10187,4000,7879,13156],"delegation":[9187,3000,6879,12156],"delegatorTokens":9999999974745,"jailed":[null,null,null,1000000000000011],"status":["bonded","unbonding","unbonded","bonded"]}},{"ix":35,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":5,"t":30,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,true,false,true]}},{"ix":36,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":4,"t":24,"tokens":[10187,4000,7879,13156],"delegation":[9187,3000,6879,12156],"delegatorTokens":9999999974745,"jailed":[null,null,null,1000000000000011],"status":["bonded","unbonding","bonded","unbonding"]}},{"ix":37,"action":{"kind":"ConsumerSlash","val":2,"infractionHeight":3,"isDowntime":true},"partialState":{"h":5,"t":30,"outstandingDowntime":[false,true,true,true]}},{"ix":38,"action":{"kind":"Undelegate","val":2,"amt":4823},"partialState":{"h":4,"t":24,"tokens":[10187,4000,3056,13156],"delegation":[9187,3000,2056,12156],"delegatorTokens":9999999974745}},{"ix":39,"action":{"kind":"Deliver","chain":"provider","numPackets":5},"partialState":{"h":4,"t":24,"tokens":[10187,4000,3056,13156],"delegation":[9187,3000,2056,12156],"delegatorTokens":9999999974745,"jailed":[null,null,null,1000000000000011],"status":["bonded","unbonding","bonded","unbonding"]}},{"ix":40,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":41,"action":{"kind":"Delegate","val":0,"amt":2896},"partialState":{"h":4,"t":24,"tokens":[13083,4000,3056,13156],"delegation":[12083,3000,2056,12156],"delegatorTokens":9999999971849}},{"ix":42,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":43,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":6,"t":36,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,true,true,true]}},{"ix":44,"action":{"kind":"Deliver","chain":"consumer","numPackets":2},"partialState":{"h":6,"t":36,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,true,true,false]}},{"ix":45,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":5,"t":30,"tokens":[13083,4000,3056,13156],"delegation":[12083,3000,2056,12156],"delegatorTokens":9999999971849,"jailed":[null,1000000000000023,null,1000000000000011],"status":["bonded","bonded","unbonding","unbonding"]}},{"ix":46,"action":{"kind":"Deliver","chain":"provider","numPackets":4},"partialState":{"h":5,"t":30,"tokens":[13083,4000,3056,13156],"delegation":[12083,3000,2056,12156],"delegatorTokens":9999999971849,"jailed":[null,1000000000000023,null,1000000000000011],"status":["bonded","bonded","unbonding","unbonding"]}},{"ix":47,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":48,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":6,"t":36,"tokens":[13083,4000,3056,13156],"delegation":[12083,3000,2056,12156],"delegatorTokens":9999999971849,"jailed":[null,1000000000000023,null,1000000000000011],"status":["bonded","unbonding","bonded","unbonding"]}},{"ix":49,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":7,"t":42,"consumerPower":[14220,null,null,10655],"outstandingDowntime":[false,true,true,false]}},{"ix":50,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":8,"t":48,"consumerPower":[14220,null,null,10655],"outstandingDowntime":[false,true,true,false]}},{"ix":51,"action":{"kind":"Deliver","chain":"provider","numPackets":1},"partialState":{"h":6,"t":36,"tokens":[13083,4000,3056,13156],"delegation":[12083,3000,2056,12156],"delegatorTokens":9999999971849,"jailed":[null,1000000000000023,null,1000000000000011],"status":["bonded","unbonding","bonded","unbonding"]}},{"ix":52,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":7,"t":42,"tokens":[13083,4000,3056,13156],"delegation":[12083,3000,2056,12156],"delegatorTokens":9999999971849,"jailed":[null,1000000000000023,1000000000000035,1000000000000011],"status":["bonded","unbonding","bonded","unbonding"]}},{"ix":53,"action":{"kind":"Delegate","val":1,"amt":3298},"partialState":{"h":7,"t":42,"tokens":[13083,7298,3056,13156],"delegation":[12083,6298,2056,12156],"delegatorTokens":9999999968551}},{"ix":54,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":9,"t":54,"consumerPower":[14220,null,null,10655],"outstandingDowntime":[false,true,true,false]}},{"ix":55,"action":{"kind":"Undelegate","val":0,"amt":3132},"partialState":{"h":7,"t":42,"tokens":[9951,7298,3056,13156],"delegation":[8951,6298,2056,12156],"delegatorTokens":9999999968551}},{"ix":56,"action":{"kind":"Deliver","chain":"consumer","numPackets":1},"partialState":{"h":9,"t":54,"consumerPower":[14220,null,null,10655],"outstandingDowntime":[false,true,true,false]}},{"ix":57,"action":{"kind":"Deliver","chain":"consumer","numPackets":3},"partialState":{"h":9,"t":54,"consumerPower":[14220,null,null,10655],"outstandingDowntime":[false,false,true,false]}},{"ix":58,"action":{"kind":"Deliver","chain":"provider","numPackets":3},"partialState":{"h":7,"t":42,"tokens":[9951,7298,3056,13156],"delegation":[8951,6298,2056,12156],"delegatorTokens":9999999968551,"jailed":[null,1000000000000023,1000000000000035,1000000000000011],"status":["bonded","unbonding","bonded","unbonding"]}},{"ix":59,"action":{"kind":"Delegate","val":3,"amt":3994},"partialState":{"h":7,"t":42,"tokens":[9951,7298,3056,17150],"delegation":[8951,6298,2056,16150],"delegatorTokens":9999999964557}},{"ix":60,"action":{"kind":"Deliver","chain":"provider","numPackets":4},"partialState":{"h":7,"t":42,"tokens":[9951,7298,3056,17150],"delegation":[8951,6298,2056,16150],"delegatorTokens":9999999964557,"jailed":[null,1000000000000023,1000000000000035,1000000000000011],"status":["bonded","unbonding","bonded","unbonding"]}},{"ix":61,"action":{"kind":"Deliver","chain":"provider","numPackets":6},"partialState":{"h":7,"t":42,"tokens":[9951,7298,3056,17150],"delegation":[8951,6298,2056,16150],"delegatorTokens":9999999964557,"jailed":[null,1000000000000023,1000000000000035,1000000000000011],"status":["bonded","unbonding","bonded","unbonding"]}},{"ix":62,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":10,"t":60,"consumerPower":[13083,null,3056,null],"outstandingDowntime":[false,false,true,false]}},{"ix":63,"action":{"kind":"Undelegate","val":1,"amt":1463},"partialState":{"h":7,"t":42,"tokens":[9951,5835,3056,17150],"delegation":[8951,4835,2056,16150],"delegatorTokens":9999999964557}},{"ix":64,"action":{"kind":"Delegate","val":1,"amt":1012},"partialState":{"h":7,"t":42,"tokens":[9951,6847,3056,17150],"delegation":[8951,5847,2056,16150],"delegatorTokens":9999999963545}},{"ix":65,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":8,"t":48,"tokens":[9951,6847,3056,17150],"delegation":[8951,5847,2056,16150],"delegatorTokens":9999999963545,"jailed":[null,1000000000000023,1000000000000035,1000000000000011],"status":["bonded","unbonding","unbonding","unbonding"]}},{"ix":66,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":11,"t":66,"consumerPower":[13083,null,3056,null],"outstandingDowntime":[false,false,true,false]}},{"ix":67,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":9,"t":54,"tokens":[9951,6847,3056,17150],"delegation":[8951,5847,2056,16150],"delegatorTokens":9999999963545,"jailed":[null,1000000000000023,1000000000000035,1000000000000011],"status":["bonded","unbonding","unbonding","unbonding"]}},{"ix":68,"action":{"kind":"Deliver","chain":"consumer","numPackets":4},"partialState":{"h":11,"t":66,"consumerPower":[13083,null,3056,null],"outstandingDowntime":[false,false,false,false]}},{"ix":69,"action":{"kind":"Undelegate","val":2,"amt":1812},"partialState":{"h":9,"t":54,"tokens":[9951,6847,1244,17150],"delegation":[8951,5847,244,16150],"delegatorTokens":9999999963545}},{"ix":70,"action":{"kind":"Undelegate","val":2,"amt":2649},"partialState":{"h":9,"t":54,"tokens":[9951,6847,1244,17150],"delegation":[8951,5847,244,16150],"delegatorTokens":9999999963545}},{"ix":71,"action":{"kind":"Delegate","val":1,"amt":2257},"partialState":{"h":9,"t":54,"tokens":[9951,9104,1244,17150],"delegation":[8951,8104,244,16150],"delegatorTokens":9999999961288}},{"ix":72,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":10,"t":60,"tokens":[9951,9104,1244,17150],"delegation":[8951,8104,244,16150],"delegatorTokens":9999999961288,"jailed":[null,1000000000000023,1000000000000035,1000000000000011],"status":["bonded","unbonding","unbonding","unbonding"]}},{"ix":73,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":74,"action":{"kind":"Deliver","chain":"consumer","numPackets":4},"partialState":{"h":11,"t":66,"consumerPower":[13083,null,3056,null],"outstandingDowntime":[false,false,false,false]}},{"ix":75,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":12,"t":72,"consumerPower":[9951,null,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":76,"action":{"kind":"Deliver","chain":"consumer","numPackets":5},"partialState":{"h":12,"t":72,"consumerPower":[9951,null,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":77,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":78,"action":{"kind":"Undelegate","val":1,"amt":2851},"partialState":{"h":10,"t":60,"tokens":[9951,6253,1244,17150],"delegation":[8951,5253,244,16150],"delegatorTokens":9999999961288}},{"ix":79,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":80,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":11,"t":66,"tokens":[9951,6253,1244,17150],"delegation":[8951,5253,244,16150],"delegatorTokens":9999999961288,"jailed":[null,1000000000000023,1000000000000035,1000000000000011],"status":["bonded","unbonding","unbonding","unbonding"]}},{"ix":81,"action":{"kind":"Deliver","chain":"consumer","numPackets":2},"partialState":{"h":12,"t":72,"consumerPower":[9951,null,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":82,"action":{"kind":"Delegate","val":2,"amt":2317},"partialState":{"h":11,"t":66,"tokens":[9951,6253,3561,17150],"delegation":[8951,5253,2561,16150],"delegatorTokens":9999999958971}},{"ix":83,"action":{"kind":"Delegate","val":3,"amt":3016},"partialState":{"h":11,"t":66,"tokens":[9951,6253,3561,20166],"delegation":[8951,5253,2561,19166],"delegatorTokens":9999999955955}},{"ix":84,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":85,"action":{"kind":"Delegate","val":3,"amt":1584},"partialState":{"h":11,"t":66,"tokens":[9951,6253,3561,21750],"delegation":[8951,5253,2561,20750],"delegatorTokens":9999999954371}},{"ix":86,"action":{"kind":"Delegate","val":1,"amt":4443},"partialState":{"h":11,"t":66,"tokens":[9951,10696,3561,21750],"delegation":[8951,9696,2561,20750],"delegatorTokens":9999999949928}},{"ix":87,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":88,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":13,"t":78,"consumerPower":[9951,null,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":89,"action":{"kind":"Deliver","chain":"consumer","numPackets":5},"partialState":{"h":13,"t":78,"consumerPower":[9951,null,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":90,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":14,"t":84,"consumerPower":[9951,null,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":91,"action":{"kind":"Delegate","val":3,"amt":4846},"partialState":{"h":11,"t":66,"tokens":[9951,10696,3561,26596],"delegation":[8951,9696,2561,25596],"delegatorTokens":9999999945082}},{"ix":92,"action":{"kind":"Undelegate","val":0,"amt":1833},"partialState":{"h":11,"t":66,"tokens":[8118,10696,3561,26596],"delegation":[7118,9696,2561,25596],"delegatorTokens":9999999945082}},{"ix":93,"action":{"kind":"Delegate","val":2,"amt":1938},"partialState":{"h":11,"t":66,"tokens":[8118,10696,5499,26596],"delegation":[7118,9696,4499,25596],"delegatorTokens":9999999943144}},{"ix":94,"action":{"kind":"Delegate","val":3,"amt":4611},"partialState":{"h":11,"t":66,"tokens":[8118,10696,5499,31207],"delegation":[7118,9696,4499,30207],"delegatorTokens":9999999938533}},{"ix":95,"action":{"kind":"Undelegate","val":2,"amt":3853},"partialState":{"h":11,"t":66,"tokens":[8118,10696,1646,31207],"delegation":[7118,9696,646,30207],"delegatorTokens":9999999938533}},{"ix":96,"action":{"kind":"Deliver","chain":"consumer","numPackets":1},"partialState":{"h":14,"t":84,"consumerPower":[9951,null,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":97,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":98,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":12,"t":72,"tokens":[8118,10696,1646,31207],"delegation":[7118,9696,646,30207],"delegatorTokens":9999999938533,"jailed":[null,1000000000000023,1000000000000035,1000000000000011],"status":["bonded","unbonding","unbonding","unbonding"]}},{"ix":99,"action":{"kind":"Deliver","chain":"provider","numPackets":6},"partialState":{"h":12,"t":72,"tokens":[8118,10696,1646,31207],"delegation":[7118,9696,646,30207],"delegatorTokens":9999999938533,"jailed":[null,1000000000000023,1000000000000035,1000000000000011],"status":["bonded","unbonding","unbonding","unbonding"]}},{"ix":100,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":101,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":15,"t":90,"consumerPower":[9951,null,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":102,"action":{"kind":"Delegate","val":0,"amt":3347},"partialState":{"h":12,"t":72,"tokens":[11465,10696,1646,31207],"delegation":[10465,9696,646,30207],"delegatorTokens":9999999935186}},{"ix":103,"action":{"kind":"Undelegate","val":2,"amt":2540},"partialState":{"h":12,"t":72,"tokens":[11465,10696,1646,31207],"delegation":[10465,9696,646,30207],"delegatorTokens":9999999935186}},{"ix":104,"action":{"kind":"Delegate","val":2,"amt":1676},"partialState":{"h":12,"t":72,"tokens":[11465,10696,3322,31207],"delegation":[10465,9696,2322,30207],"delegatorTokens":9999999933510}},{"ix":105,"action":{"kind":"Deliver","chain":"provider","numPackets":2},"partialState":{"h":12,"t":72,"tokens":[11465,10696,3322,31207],"delegation":[10465,9696,2322,30207],"delegatorTokens":9999999933510,"jailed":[null,1000000000000023,1000000000000035,1000000000000011],"status":["bonded","unbonding","unbonding","unbonding"]}},{"ix":106,"action":{"kind":"Delegate","val":2,"amt":1216},"partialState":{"h":12,"t":72,"tokens":[11465,10696,4538,31207],"delegation":[10465,9696,3538,30207],"delegatorTokens":9999999932294}},{"ix":107,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":16,"t":96,"consumerPower":[9951,null,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":108,"action":{"kind":"Undelegate","val":0,"amt":1588},"partialState":{"h":12,"t":72,"tokens":[9877,10696,4538,31207],"delegation":[8877,9696,3538,30207],"delegatorTokens":9999999932294}},{"ix":109,"action":{"kind":"Undelegate","val":2,"amt":2936},"partialState":{"h":12,"t":72,"tokens":[9877,10696,1602,31207],"delegation":[8877,9696,602,30207],"delegatorTokens":9999999932294}},{"ix":110,"action":{"kind":"Delegate","val":1,"amt":1620},"partialState":{"h":12,"t":72,"tokens":[9877,12316,1602,31207],"delegation":[8877,11316,602,30207],"delegatorTokens":9999999930674}},{"ix":111,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":17,"t":102,"consumerPower":[9951,null,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":112,"action":{"kind":"Undelegate","val":3,"amt":2621},"partialState":{"h":12,"t":72,"tokens":[9877,12316,1602,28586],"delegation":[8877,11316,602,27586],"delegatorTokens":9999999930674}},{"ix":113,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":13,"t":78,"tokens":[9877,12316,1602,28586],"delegation":[8877,11316,602,27586],"delegatorTokens":9999999930674,"jailed":[null,1000000000000023,1000000000000035,1000000000000011],"status":["bonded","unbonding","unbonding","unbonding"]}},{"ix":114,"action":{"kind":"Undelegate","val":2,"amt":4453},"partialState":{"h":13,"t":78,"tokens":[9877,12316,1602,28586],"delegation":[8877,11316,602,27586],"delegatorTokens":9999999930674}},{"ix":115,"action":{"kind":"Delegate","val":3,"amt":3167},"partialState":{"h":13,"t":78,"tokens":[9877,12316,1602,31753],"delegation":[8877,11316,602,30753],"delegatorTokens":9999999927507}},{"ix":116,"action":{"kind":"Undelegate","val":0,"amt":3556},"partialState":{"h":13,"t":78,"tokens":[6321,12316,1602,31753],"delegation":[5321,11316,602,30753],"delegatorTokens":9999999927507}},{"ix":117,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":118,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":119,"action":{"kind":"Delegate","val":2,"amt":3820},"partialState":{"h":13,"t":78,"tokens":[6321,12316,5422,31753],"delegation":[5321,11316,4422,30753],"delegatorTokens":9999999923687}},{"ix":120,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":121,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":122,"action":{"kind":"Delegate","val":0,"amt":2019},"partialState":{"h":13,"t":78,"tokens":[8340,12316,5422,31753],"delegation":[7340,11316,4422,30753],"delegatorTokens":9999999921668}},{"ix":123,"action":{"kind":"Deliver","chain":"provider","numPackets":3},"partialState":{"h":13,"t":78,"tokens":[8340,12316,5422,31753],"delegation":[7340,11316,4422,30753],"delegatorTokens":9999999921668,"jailed":[null,1000000000000023,1000000000000035,1000000000000011],"status":["bonded","unbonding","unbonding","unbonding"]}},{"ix":124,"action":{"kind":"Delegate","val":3,"amt":4353},"partialState":{"h":13,"t":78,"tokens":[8340,12316,5422,36106],"delegation":[7340,11316,4422,35106],"delegatorTokens":9999999917315}},{"ix":125,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":18,"t":108,"consumerPower":[9951,null,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":126,"action":{"kind":"Undelegate","val":1,"amt":2562},"partialState":{"h":13,"t":78,"tokens":[8340,9754,5422,36106],"delegation":[7340,8754,4422,35106],"delegatorTokens":9999999917315}},{"ix":127,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":19,"t":114,"consumerPower":[9951,null,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":128,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":129,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":130,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":131,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":14,"t":84,"tokens":[8340,9754,5422,36106],"delegation":[7340,8754,4422,35106],"delegatorTokens":9999999917315,"jailed":[null,1000000000000023,1000000000000035,1000000000000011],"status":["bonded","unbonding","unbonding","unbonding"]}},{"ix":132,"action":{"kind":"Delegate","val":1,"amt":1822},"partialState":{"h":14,"t":84,"tokens":[8340,11576,5422,36106],"delegation":[7340,10576,4422,35106],"delegatorTokens":9999999915493}},{"ix":133,"action":{"kind":"Undelegate","val":3,"amt":1078},"partialState":{"h":14,"t":84,"tokens":[8340,11576,5422,35028],"delegation":[7340,10576,4422,34028],"delegatorTokens":9999999915493}},{"ix":134,"action":{"kind":"Undelegate","val":1,"amt":3352},"partialState":{"h":14,"t":84,"tokens":[8340,8224,5422,35028],"delegation":[7340,7224,4422,34028],"delegatorTokens":9999999915493}},{"ix":135,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":20,"t":120,"consumerPower":[9951,null,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":136,"action":{"kind":"Deliver","chain":"consumer","numPackets":3},"partialState":{"h":20,"t":120,"consumerPower":[9951,null,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":137,"action":{"kind":"Delegate","val":0,"amt":1265},"partialState":{"h":14,"t":84,"tokens":[9605,8224,5422,35028],"delegation":[8605,7224,4422,34028],"delegatorTokens":9999999914228}},{"ix":138,"action":{"kind":"Delegate","val":1,"amt":1275},"partialState":{"h":14,"t":84,"tokens":[9605,9499,5422,35028],"delegation":[8605,8499,4422,34028],"delegatorTokens":9999999912953}},{"ix":139,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":15,"t":90,"tokens":[9605,9499,5422,35028],"delegation":[8605,8499,4422,34028],"delegatorTokens":9999999912953,"jailed":[null,1000000000000023,1000000000000035,1000000000000011],"status":["bonded","unbonding","unbonding","unbonding"]}},{"ix":140,"action":{"kind":"Delegate","val":3,"amt":1860},"partialState":{"h":15,"t":90,"tokens":[9605,9499,5422,36888],"delegation":[8605,8499,4422,35888],"delegatorTokens":9999999911093}},{"ix":141,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":142,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":143,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":21,"t":126,"consumerPower":[9877,null,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":144,"action":{"kind":"Deliver","chain":"consumer","numPackets":4},"partialState":{"h":21,"t":126,"consumerPower":[9877,null,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":145,"action":{"kind":"Delegate","val":1,"amt":3473},"partialState":{"h":15,"t":90,"tokens":[9605,12972,5422,36888],"delegation":[8605,11972,4422,35888],"delegatorTokens":9999999907620}},{"ix":146,"action":{"kind":"Delegate","val":1,"amt":3045},"partialState":{"h":15,"t":90,"tokens":[9605,16017,5422,36888],"delegation":[8605,15017,4422,35888],"delegatorTokens":9999999904575}},{"ix":147,"action":{"kind":"Delegate","val":0,"amt":3413},"partialState":{"h":15,"t":90,"tokens":[13018,16017,5422,36888],"delegation":[12018,15017,4422,35888],"delegatorTokens":9999999901162}},{"ix":148,"action":{"kind":"Delegate","val":0,"amt":4277},"partialState":{"h":15,"t":90,"tokens":[17295,16017,5422,36888],"delegation":[16295,15017,4422,35888],"delegatorTokens":9999999896885}},{"ix":149,"action":{"kind":"Deliver","chain":"provider","numPackets":4},"partialState":{"h":15,"t":90,"tokens":[17295,16017,5422,36888],"delegation":[16295,15017,4422,35888],"delegatorTokens":9999999896885,"jailed":[null,1000000000000023,1000000000000035,1000000000000011],"status":["bonded","unbonding","unbonding","unbonding"]}},{"ix":150,"action":{"kind":"Delegate","val":1,"amt":3601},"partialState":{"h":15,"t":90,"tokens":[17295,19618,5422,36888],"delegation":[16295,18618,4422,35888],"delegatorTokens":9999999893284}},{"ix":151,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":22,"t":132,"consumerPower":[8340,null,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":152,"action":{"kind":"Undelegate","val":2,"amt":2782},"partialState":{"h":15,"t":90,"tokens":[17295,19618,2640,36888],"delegation":[16295,18618,1640,35888],"delegatorTokens":9999999893284}},{"ix":153,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":154,"action":{"kind":"Delegate","val":3,"amt":3238},"partialState":{"h":15,"t":90,"tokens":[17295,19618,2640,40126],"delegation":[16295,18618,1640,39126],"delegatorTokens":9999999890046}},{"ix":155,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":156,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":16,"t":96,"tokens":[17295,19618,2640,40126],"delegation":[16295,18618,1640,39126],"delegatorTokens":9999999894079,"jailed":[null,1000000000000023,1000000000000035,1000000000000011],"status":["bonded","unbonding","unbonding","unbonding"]}},{"ix":157,"action":{"kind":"Deliver","chain":"provider","numPackets":4},"partialState":{"h":16,"t":96,"tokens":[17295,19618,2640,40126],"delegation":[16295,18618,1640,39126],"delegatorTokens":9999999894079,"jailed":[null,1000000000000023,1000000000000035,1000000000000011],"status":["bonded","unbonding","unbonding","unbonding"]}},{"ix":158,"action":{"kind":"Delegate","val":2,"amt":4960},"partialState":{"h":16,"t":96,"tokens":[17295,19618,7600,40126],"delegation":[16295,18618,6600,39126],"delegatorTokens":9999999889119}},{"ix":159,"action":{"kind":"Deliver","chain":"provider","numPackets":2},"partialState":{"h":16,"t":96,"tokens":[17295,19618,7600,40126],"delegation":[16295,18618,6600,39126],"delegatorTokens":9999999889119,"jailed":[null,1000000000000023,1000000000000035,1000000000000011],"status":["bonded","unbonding","unbonding","unbonding"]}},{"ix":160,"action":{"kind":"Undelegate","val":3,"amt":4257},"partialState":{"h":16,"t":96,"tokens":[17295,19618,7600,35869],"delegation":[16295,18618,6600,34869],"delegatorTokens":9999999889119}},{"ix":161,"action":{"kind":"Deliver","chain":"consumer","numPackets":1},"partialState":{"h":22,"t":132,"consumerPower":[8340,null,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":162,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":23,"t":138,"consumerPower":[9605,null,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":163,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":17,"t":102,"tokens":[17295,19618,7600,35869],"delegation":[16295,18618,6600,34869],"delegatorTokens":9999999893942,"jailed":[null,1000000000000023,1000000000000035,1000000000000011],"status":["bonded","unbonding","unbonding","unbonded"]}},{"ix":164,"action":{"kind":"Undelegate","val":1,"amt":2445},"partialState":{"h":17,"t":102,"tokens":[17295,17173,7600,35869],"delegation":[16295,16173,6600,34869],"delegatorTokens":9999999893942}},{"ix":165,"action":{"kind":"Delegate","val":3,"amt":1646},"partialState":{"h":17,"t":102,"tokens":[17295,17173,7600,37515],"delegation":[16295,16173,6600,36515],"delegatorTokens":9999999892296}},{"ix":166,"action":{"kind":"Undelegate","val":1,"amt":4352},"partialState":{"h":17,"t":102,"tokens":[17295,12821,7600,37515],"delegation":[16295,11821,6600,36515],"delegatorTokens":9999999892296}},{"ix":167,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":168,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":169,"action":{"kind":"Deliver","chain":"provider","numPackets":6},"partialState":{"h":17,"t":102,"tokens":[17295,12821,7600,37515],"delegation":[16295,11821,6600,36515],"delegatorTokens":9999999892296,"jailed":[null,1000000000000023,1000000000000035,1000000000000011],"status":["bonded","unbonding","unbonding","unbonded"]}},{"ix":170,"action":{"kind":"Delegate","val":3,"amt":3454},"partialState":{"h":17,"t":102,"tokens":[17295,12821,7600,40969],"delegation":[16295,11821,6600,39969],"delegatorTokens":9999999888842}},{"ix":171,"action":{"kind":"Delegate","val":0,"amt":2998},"partialState":{"h":17,"t":102,"tokens":[20293,12821,7600,40969],"delegation":[19293,11821,6600,39969],"delegatorTokens":9999999885844}},{"ix":172,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":173,"action":{"kind":"Delegate","val":0,"amt":1884},"partialState":{"h":17,"t":102,"tokens":[22177,12821,7600,40969],"delegation":[21177,11821,6600,39969],"delegatorTokens":9999999883960}},{"ix":174,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":175,"action":{"kind":"Undelegate","val":3,"amt":4001},"partialState":{"h":17,"t":102,"tokens":[22177,12821,7600,36968],"delegation":[21177,11821,6600,35968],"delegatorTokens":9999999883960}},{"ix":176,"action":{"kind":"Delegate","val":0,"amt":2987},"partialState":{"h":17,"t":102,"tokens":[25164,12821,7600,36968],"delegation":[24164,11821,6600,35968],"delegatorTokens":9999999880973}},{"ix":177,"action":{"kind":"Delegate","val":1,"amt":4068},"partialState":{"h":17,"t":102,"tokens":[25164,16889,7600,36968],"delegation":[24164,15889,6600,35968],"delegatorTokens":9999999876905}},{"ix":178,"action":{"kind":"Delegate","val":1,"amt":3108},"partialState":{"h":17,"t":102,"tokens":[25164,19997,7600,36968],"delegation":[24164,18997,6600,35968],"delegatorTokens":9999999873797}},{"ix":179,"action":{"kind":"Delegate","val":3,"amt":1662},"partialState":{"h":17,"t":102,"tokens":[25164,19997,7600,38630],"delegation":[24164,18997,6600,37630],"delegatorTokens":9999999872135}},{"ix":180,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":18,"t":108,"tokens":[25164,19997,7600,38630],"delegation":[24164,18997,6600,37630],"delegatorTokens":9999999872135,"jailed":[null,1000000000000023,1000000000000035,1000000000000011],"status":["bonded","unbonded","unbonding","unbonded"]}},{"ix":181,"action":{"kind":"Delegate","val":2,"amt":2748},"partialState":{"h":18,"t":108,"tokens":[25164,19997,10348,38630],"delegation":[24164,18997,9348,37630],"delegatorTokens":9999999869387}},{"ix":182,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":183,"action":{"kind":"Delegate","val":2,"amt":2767},"partialState":{"h":18,"t":108,"tokens":[25164,19997,13115,38630],"delegation":[24164,18997,12115,37630],"delegatorTokens":9999999866620}},{"ix":184,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":185,"action":{"kind":"Delegate","val":1,"amt":3066},"partialState":{"h":18,"t":108,"tokens":[25164,23063,13115,38630],"delegation":[24164,22063,12115,37630],"delegatorTokens":9999999863554}},{"ix":186,"action":{"kind":"Delegate","val":2,"amt":1201},"partialState":{"h":18,"t":108,"tokens":[25164,23063,14316,38630],"delegation":[24164,22063,13316,37630],"delegatorTokens":9999999862353}},{"ix":187,"action":{"kind":"Undelegate","val":0,"amt":1584},"partialState":{"h":18,"t":108,"tokens":[23580,23063,14316,38630],"delegation":[22580,22063,13316,37630],"delegatorTokens":9999999862353}},{"ix":188,"action":{"kind":"Deliver","chain":"consumer","numPackets":5},"partialState":{"h":23,"t":138,"consumerPower":[9605,null,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":189,"action":{"kind":"Delegate","val":2,"amt":4024},"partialState":{"h":18,"t":108,"tokens":[23580,23063,18340,38630],"delegation":[22580,22063,17340,37630],"delegatorTokens":9999999858329}},{"ix":190,"action":{"kind":"Delegate","val":1,"amt":4647},"partialState":{"h":18,"t":108,"tokens":[23580,27710,18340,38630],"delegation":[22580,26710,17340,37630],"delegatorTokens":9999999853682}},{"ix":191,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":19,"t":114,"tokens":[23580,27710,18340,38630],"delegation":[22580,26710,17340,37630],"delegatorTokens":9999999853682,"jailed":[null,1000000000000023,1000000000000035,1000000000000011],"status":["bonded","unbonded","unbonding","unbonded"]}},{"ix":192,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":193,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":20,"t":120,"tokens":[23580,27710,18340,38630],"delegation":[22580,26710,17340,37630],"delegatorTokens":9999999858277,"jailed":[null,1000000000000023,1000000000000035,1000000000000011],"status":["bonded","unbonded","unbonded","unbonded"]}},{"ix":194,"action":{"kind":"Undelegate","val":0,"amt":2903},"partialState":{"h":20,"t":120,"tokens":[20677,27710,18340,38630],"delegation":[19677,26710,17340,37630],"delegatorTokens":9999999858277}},{"ix":195,"action":{"kind":"Undelegate","val":1,"amt":2605},"partialState":{"h":20,"t":120,"tokens":[20677,25105,18340,38630],"delegation":[19677,24105,17340,37630],"delegatorTokens":9999999858277}},{"ix":196,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":197,"action":{"kind":"Undelegate","val":1,"amt":2712},"partialState":{"h":20,"t":120,"tokens":[20677,22393,18340,38630],"delegation":[19677,21393,17340,37630],"delegatorTokens":9999999858277}},{"ix":198,"action":{"kind":"Delegate","val":0,"amt":1297},"partialState":{"h":20,"t":120,"tokens":[21974,22393,18340,38630],"delegation":[20974,21393,17340,37630],"delegatorTokens":9999999856980}},{"ix":199,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}}],"events":["insufficient_shares","send_downtime_slash_request","downtime_slash_request_outstanding","insufficient_shares","send_downtime_slash_request","more_than_one_third_val_power_change","receive_downtime_slash_request","jail","send_vsc_with_downtime_ack","send_double_sign_slash_request","downtime_slash_request_outstanding","downtime_slash_request_outstanding","more_than_one_third_val_power_change","send_vsc_without_downtime_ack","send_downtime_slash_request","receive_double_sign_slash_request","receive_downtime_slash_ack","rebond_unval","receive_downtime_slash_request","jail","send_vsc_with_downtime_ack","rebond_unval","send_vsc_without_downtime_ack","consumer_update_val","consumer_del_val","consumer_add_val","receive_downtime_slash_request","jail","receive_downtime_slash_ack","consumer_update_val","consumer_add_val","consumer_del_val","consumer_del_val","send_vsc_with_downtime_ack","receive_downtime_slash_ack","insufficient_shares","send_vsc_not_because_change","send_vsc_without_downtime_ack","consumer_update_val","consumer_del_val","send_vsc_not_because_change","send_vsc_without_downtime_ack","send_vsc_without_downtime_ack","insufficient_shares","consumer_send_maturation","send_vsc_without_downtime_ack","insufficient_shares","consumer_send_maturation","consumer_send_maturation","consumer_send_maturation","send_vsc_without_downtime_ack","send_vsc_without_downtime_ack","consumer_send_maturation","consumer_update_val","consumer_send_maturation","consumer_update_val","some_undels_expired_but_not_completed","complete_undel_immediate","set_unval_hold_false","set_undel_hold_false","set_unval_hold_false","send_vsc_without_downtime_ack","consumer_update_val","complete_unval_in_endblock","complete_undel_in_endblock","set_undel_hold_false","set_undel_hold_false","set_unval_hold_false","send_vsc_not_because_change","send_vsc_without_downtime_ack","complete_unval_in_endblock","set_undel_hold_false","send_vsc_without_downtime_ack","send_vsc_without_downtime_ack","complete_unval_in_endblock","complete_undel_in_endblock"]},{"meta":{"commit":"7ffd0c04e4205cbc9caf212abfe6c59ee43153bf"},"constants":{"P":"provider","C":"consumer","UNBONDING_SECONDS_P":70,"UNBONDING_SECONDS_C":50,"TRUSTING_SECONDS":49,"NUM_VALIDATORS":4,"MAX_VALIDATORS":2,"SLASH_DOUBLESIGN":0,"SLASH_DOWNTIME":0,"JAIL_SECONDS":999999999999999,"BLOCK_SECONDS":6,"INITIAL_DELEGATOR_TOKENS":10000000000000,"DELEGATE_AMT_MIN":1000,"DELEGATE_AMT_MAX":5000,"UNDELEGATE_AMT_MIN":1000,"UNDELEGATE_AMT_MAX":5000,"ISDOWNTIME_PROBABILITY":0.5,"MAX_NUM_PACKETS_FOR_DELIVER":6},"actions":[{"ix":0,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":1,"action":{"kind":"Undelegate","val":1,"amt":4108},"partialState":{"h":1,"t":6,"tokens":[5000,4000,3000,2000],"delegation":[4000,3000,2000,1000],"delegatorTokens":10000000000000}},{"ix":2,"action":{"kind":"ConsumerSlash","val":1,"infractionHeight":0,"isDowntime":true},"partialState":{"h":1,"t":6,"outstandingDowntime":[false,true,false,false]}},{"ix":3,"action":{"kind":"ConsumerSlash","val":2,"infractionHeight":0,"isDowntime":true},"partialState":{"h":1,"t":6,"outstandingDowntime":[false,true,true,false]}},{"ix":4,"action":{"kind":"ConsumerSlash","val":0,"infractionHeight":0,"isDowntime":true},"partialState":{"h":1,"t":6,"outstandingDowntime":[true,true,true,false]}},{"ix":5,"action":{"kind":"Deliver","chain":"consumer","numPackets":5},"partialState":{"h":1,"t":6,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[true,true,true,false]}},{"ix":6,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":7,"action":{"kind":"Deliver","chain":"consumer","numPackets":5},"partialState":{"h":1,"t":6,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[true,true,true,false]}},{"ix":8,"action":{"kind":"Undelegate","val":2,"amt":1414},"partialState":{"h":1,"t":6,"tokens":[5000,4000,1586,2000],"delegation":[4000,3000,586,1000],"delegatorTokens":10000000000000}},{"ix":9,"action":{"kind":"Undelegate","val":1,"amt":4473},"partialState":{"h":1,"t":6,"tokens":[5000,4000,1586,2000],"delegation":[4000,3000,586,1000],"delegatorTokens":10000000000000}},{"ix":10,"action":{"kind":"Deliver","chain":"provider","numPackets":1},"partialState":{"h":1,"t":6,"tokens":[5000,4000,1586,2000],"delegation":[4000,3000,586,1000],"delegatorTokens":10000000000000,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":11,"action":{"kind":"Deliver","chain":"provider","numPackets":6},"partialState":{"h":1,"t":6,"tokens":[5000,4000,1586,2000],"delegation":[4000,3000,586,1000],"delegatorTokens":10000000000000,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":12,"action":{"kind":"Deliver","chain":"provider","numPackets":5},"partialState":{"h":1,"t":6,"tokens":[5000,4000,1586,2000],"delegation":[4000,3000,586,1000],"delegatorTokens":10000000000000,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":13,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":14,"action":{"kind":"Deliver","chain":"provider","numPackets":6},"partialState":{"h":1,"t":6,"tokens":[5000,4000,1586,2000],"delegation":[4000,3000,586,1000],"delegatorTokens":10000000000000,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":15,"action":{"kind":"Delegate","val":1,"amt":3480},"partialState":{"h":1,"t":6,"tokens":[5000,7480,1586,2000],"delegation":[4000,6480,586,1000],"delegatorTokens":9999999996520}},{"ix":16,"action":{"kind":"Undelegate","val":2,"amt":4746},"partialState":{"h":1,"t":6,"tokens":[5000,7480,1586,2000],"delegation":[4000,6480,586,1000],"delegatorTokens":9999999996520}},{"ix":17,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":2,"t":12,"tokens":[5000,7480,1586,2000],"delegation":[4000,6480,586,1000],"delegatorTokens":9999999996520,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":18,"action":{"kind":"Undelegate","val":2,"amt":4251},"partialState":{"h":2,"t":12,"tokens":[5000,7480,1586,2000],"delegation":[4000,6480,586,1000],"delegatorTokens":9999999996520}},{"ix":19,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":20,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":2,"t":12,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[true,true,true,false]}},{"ix":21,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":3,"t":18,"tokens":[5000,7480,1586,2000],"delegation":[4000,6480,586,1000],"delegatorTokens":9999999996520,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":22,"action":{"kind":"Deliver","chain":"consumer","numPackets":1},"partialState":{"h":2,"t":12,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[true,true,true,false]}},{"ix":23,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":3,"t":18,"consumerPower":[5000,7480,null,null],"outstandingDowntime":[true,true,true,false]}},{"ix":24,"action":{"kind":"Undelegate","val":1,"amt":4706},"partialState":{"h":3,"t":18,"tokens":[5000,2774,1586,2000],"delegation":[4000,1774,586,1000],"delegatorTokens":9999999996520}},{"ix":25,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":26,"action":{"kind":"Delegate","val":3,"amt":3131},"partialState":{"h":3,"t":18,"tokens":[5000,2774,1586,5131],"delegation":[4000,1774,586,4131],"delegatorTokens":9999999993389}},{"ix":27,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":28,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":4,"t":24,"consumerPower":[5000,7480,null,null],"outstandingDowntime":[true,true,true,false]}},{"ix":29,"action":{"kind":"Undelegate","val":1,"amt":2972},"partialState":{"h":3,"t":18,"tokens":[5000,2774,1586,5131],"delegation":[4000,1774,586,4131],"delegatorTokens":9999999993389}},{"ix":30,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":5,"t":30,"consumerPower":[5000,7480,null,null],"outstandingDowntime":[true,true,true,false]}},{"ix":31,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":6,"t":36,"consumerPower":[5000,7480,null,null],"outstandingDowntime":[true,true,true,false]}},{"ix":32,"action":{"kind":"Delegate","val":0,"amt":2076},"partialState":{"h":3,"t":18,"tokens":[7076,2774,1586,5131],"delegation":[6076,1774,586,4131],"delegatorTokens":9999999991313}},{"ix":33,"action":{"kind":"Delegate","val":2,"amt":4672},"partialState":{"h":3,"t":18,"tokens":[7076,2774,6258,5131],"delegation":[6076,1774,5258,4131],"delegatorTokens":9999999986641}},{"ix":34,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":4,"t":24,"tokens":[7076,2774,6258,5131],"delegation":[6076,1774,5258,4131],"delegatorTokens":9999999986641,"jailed":[null,null,null,null],"status":["bonded","unbonding","bonded","unbonded"]}},{"ix":35,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":7,"t":42,"consumerPower":[5000,7480,null,null],"outstandingDowntime":[true,true,true,false]}},{"ix":36,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":5,"t":30,"tokens":[7076,2774,6258,5131],"delegation":[6076,1774,5258,4131],"delegatorTokens":9999999986641,"jailed":[null,null,null,null],"status":["bonded","unbonding","bonded","unbonded"]}},{"ix":37,"action":{"kind":"Undelegate","val":1,"amt":3155},"partialState":{"h":5,"t":30,"tokens":[7076,2774,6258,5131],"delegation":[6076,1774,5258,4131],"delegatorTokens":9999999986641}},{"ix":38,"action":{"kind":"Deliver","chain":"provider","numPackets":1},"partialState":{"h":5,"t":30,"tokens":[7076,2774,6258,5131],"delegation":[6076,1774,5258,4131],"delegatorTokens":9999999986641,"jailed":[null,null,null,null],"status":["bonded","unbonding","bonded","unbonded"]}},{"ix":39,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":40,"action":{"kind":"Deliver","chain":"provider","numPackets":1},"partialState":{"h":5,"t":30,"tokens":[7076,2774,6258,5131],"delegation":[6076,1774,5258,4131],"delegatorTokens":9999999986641,"jailed":[null,null,null,null],"status":["bonded","unbonding","bonded","unbonded"]}},{"ix":41,"action":{"kind":"Deliver","chain":"provider","numPackets":2},"partialState":{"h":5,"t":30,"tokens":[7076,2774,6258,5131],"delegation":[6076,1774,5258,4131],"delegatorTokens":9999999986641,"jailed":[null,null,null,null],"status":["bonded","unbonding","bonded","unbonded"]}},{"ix":42,"action":{"kind":"Deliver","chain":"provider","numPackets":2},"partialState":{"h":5,"t":30,"tokens":[7076,2774,6258,5131],"delegation":[6076,1774,5258,4131],"delegatorTokens":9999999986641,"jailed":[null,null,null,null],"status":["bonded","unbonding","bonded","unbonded"]}},{"ix":43,"action":{"kind":"Undelegate","val":0,"amt":4724},"partialState":{"h":5,"t":30,"tokens":[2352,2774,6258,5131],"delegation":[1352,1774,5258,4131],"delegatorTokens":9999999986641}},{"ix":44,"action":{"kind":"Deliver","chain":"consumer","numPackets":1},"partialState":{"h":7,"t":42,"consumerPower":[5000,7480,null,null],"outstandingDowntime":[true,true,true,false]}},{"ix":45,"action":{"kind":"Delegate","val":1,"amt":3837},"partialState":{"h":5,"t":30,"tokens":[2352,6611,6258,5131],"delegation":[1352,5611,5258,4131],"delegatorTokens":9999999982804}},{"ix":46,"action":{"kind":"Undelegate","val":1,"amt":3465},"partialState":{"h":5,"t":30,"tokens":[2352,3146,6258,5131],"delegation":[1352,2146,5258,4131],"delegatorTokens":9999999982804}},{"ix":47,"action":{"kind":"Undelegate","val":2,"amt":2255},"partialState":{"h":5,"t":30,"tokens":[2352,3146,4003,5131],"delegation":[1352,2146,3003,4131],"delegatorTokens":9999999982804}},{"ix":48,"action":{"kind":"Undelegate","val":1,"amt":4724},"partialState":{"h":5,"t":30,"tokens":[2352,3146,4003,5131],"delegation":[1352,2146,3003,4131],"delegatorTokens":9999999982804}},{"ix":49,"action":{"kind":"Undelegate","val":2,"amt":3092},"partialState":{"h":5,"t":30,"tokens":[2352,3146,4003,5131],"delegation":[1352,2146,3003,4131],"delegatorTokens":9999999982804}},{"ix":50,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":8,"t":48,"consumerPower":[7076,null,6258,null],"outstandingDowntime":[true,true,true,false]}},{"ix":51,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":52,"action":{"kind":"Deliver","chain":"provider","numPackets":4},"partialState":{"h":5,"t":30,"tokens":[2352,3146,4003,5131],"delegation":[1352,2146,3003,4131],"delegatorTokens":9999999982804,"jailed":[null,null,null,null],"status":["bonded","unbonding","bonded","unbonded"]}},{"ix":53,"action":{"kind":"Deliver","chain":"consumer","numPackets":5},"partialState":{"h":8,"t":48,"consumerPower":[7076,null,6258,null],"outstandingDowntime":[true,true,true,false]}},{"ix":54,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":55,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":56,"action":{"kind":"Deliver","chain":"provider","numPackets":2},"partialState":{"h":5,"t":30,"tokens":[2352,3146,4003,5131],"delegation":[1352,2146,3003,4131],"delegatorTokens":9999999982804,"jailed":[null,null,null,null],"status":["bonded","unbonding","bonded","unbonded"]}},{"ix":57,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":6,"t":36,"tokens":[2352,3146,4003,5131],"delegation":[1352,2146,3003,4131],"delegatorTokens":9999999982804,"jailed":[1000000000000029,1000000000000029,1000000000000029,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":58,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":7,"t":42,"tokens":[2352,3146,4003,5131],"delegation":[1352,2146,3003,4131],"delegatorTokens":9999999982804,"jailed":[1000000000000029,1000000000000029,1000000000000029,null],"status":["unbonding","unbonding","unbonding","bonded"]}},{"ix":59,"action":{"kind":"Deliver","chain":"consumer","numPackets":4},"partialState":{"h":8,"t":48,"consumerPower":[7076,null,6258,null],"outstandingDowntime":[false,false,false,false]}},{"ix":60,"action":{"kind":"Delegate","val":0,"amt":3435},"partialState":{"h":7,"t":42,"tokens":[5787,3146,4003,5131],"delegation":[4787,2146,3003,4131],"delegatorTokens":9999999979369}},{"ix":61,"action":{"kind":"Deliver","chain":"consumer","numPackets":5},"partialState":{"h":8,"t":48,"consumerPower":[7076,null,6258,null],"outstandingDowntime":[false,false,false,false]}},{"ix":62,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":9,"t":54,"consumerPower":[null,null,4003,5131],"outstandingDowntime":[false,false,false,false]}},{"ix":63,"action":{"kind":"Deliver","chain":"provider","numPackets":2},"partialState":{"h":7,"t":42,"tokens":[5787,3146,4003,5131],"delegation":[4787,2146,3003,4131],"delegatorTokens":9999999979369,"jailed":[1000000000000029,1000000000000029,1000000000000029,null],"status":["unbonding","unbonding","unbonding","bonded"]}},{"ix":64,"action":{"kind":"Deliver","chain":"provider","numPackets":1},"partialState":{"h":7,"t":42,"tokens":[5787,3146,4003,5131],"delegation":[4787,2146,3003,4131],"delegatorTokens":9999999979369,"jailed":[1000000000000029,1000000000000029,1000000000000029,null],"status":["unbonding","unbonding","unbonding","bonded"]}},{"ix":65,"action":{"kind":"Undelegate","val":1,"amt":3690},"partialState":{"h":7,"t":42,"tokens":[5787,3146,4003,5131],"delegation":[4787,2146,3003,4131],"delegatorTokens":9999999979369}},{"ix":66,"action":{"kind":"Delegate","val":1,"amt":4868},"partialState":{"h":7,"t":42,"tokens":[5787,8014,4003,5131],"delegation":[4787,7014,3003,4131],"delegatorTokens":9999999974501}},{"ix":67,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":10,"t":60,"consumerPower":[null,null,4003,5131],"outstandingDowntime":[false,false,false,false]}},{"ix":68,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":11,"t":66,"consumerPower":[null,null,4003,5131],"outstandingDowntime":[false,false,false,false]}},{"ix":69,"action":{"kind":"Undelegate","val":2,"amt":2813},"partialState":{"h":7,"t":42,"tokens":[5787,8014,1190,5131],"delegation":[4787,7014,190,4131],"delegatorTokens":9999999974501}},{"ix":70,"action":{"kind":"Deliver","chain":"consumer","numPackets":2},"partialState":{"h":11,"t":66,"consumerPower":[null,null,4003,5131],"outstandingDowntime":[false,false,false,false]}},{"ix":71,"action":{"kind":"Deliver","chain":"provider","numPackets":6},"partialState":{"h":7,"t":42,"tokens":[5787,8014,1190,5131],"delegation":[4787,7014,190,4131],"delegatorTokens":9999999974501,"jailed":[1000000000000029,1000000000000029,1000000000000029,null],"status":["unbonding","unbonding","unbonding","bonded"]}},{"ix":72,"action":{"kind":"Delegate","val":1,"amt":2107},"partialState":{"h":7,"t":42,"tokens":[5787,10121,1190,5131],"delegation":[4787,9121,190,4131],"delegatorTokens":9999999972394}},{"ix":73,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":8,"t":48,"tokens":[5787,10121,1190,5131],"delegation":[4787,9121,190,4131],"delegatorTokens":9999999972394,"jailed":[1000000000000029,1000000000000029,1000000000000029,null],"status":["unbonding","unbonding","unbonding","bonded"]}},{"ix":74,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":12,"t":72,"consumerPower":[null,null,4003,5131],"outstandingDowntime":[false,false,false,false]}},{"ix":75,"action":{"kind":"Delegate","val":2,"amt":3624},"partialState":{"h":8,"t":48,"tokens":[5787,10121,4814,5131],"delegation":[4787,9121,3814,4131],"delegatorTokens":9999999968770}},{"ix":76,"action":{"kind":"Undelegate","val":3,"amt":4781},"partialState":{"h":8,"t":48,"tokens":[5787,10121,4814,5131],"delegation":[4787,9121,3814,4131],"delegatorTokens":9999999968770}},{"ix":77,"action":{"kind":"Delegate","val":2,"amt":2883},"partialState":{"h":8,"t":48,"tokens":[5787,10121,7697,5131],"delegation":[4787,9121,6697,4131],"delegatorTokens":9999999965887}},{"ix":78,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":79,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":13,"t":78,"consumerPower":[null,null,4003,5131],"outstandingDowntime":[false,false,false,false]}},{"ix":80,"action":{"kind":"Delegate","val":0,"amt":3666},"partialState":{"h":8,"t":48,"tokens":[9453,10121,7697,5131],"delegation":[8453,9121,6697,4131],"delegatorTokens":9999999962221}},{"ix":81,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":9,"t":54,"tokens":[9453,10121,7697,5131],"delegation":[8453,9121,6697,4131],"delegatorTokens":9999999962221,"jailed":[1000000000000029,1000000000000029,1000000000000029,null],"status":["unbonding","unbonding","unbonding","bonded"]}},{"ix":82,"action":{"kind":"Deliver","chain":"provider","numPackets":1},"partialState":{"h":9,"t":54,"tokens":[9453,10121,7697,5131],"delegation":[8453,9121,6697,4131],"delegatorTokens":9999999962221,"jailed":[1000000000000029,1000000000000029,1000000000000029,null],"status":["unbonding","unbonding","unbonding","bonded"]}},{"ix":83,"action":{"kind":"Delegate","val":0,"amt":4067},"partialState":{"h":9,"t":54,"tokens":[13520,10121,7697,5131],"delegation":[12520,9121,6697,4131],"delegatorTokens":9999999958154}},{"ix":84,"action":{"kind":"Undelegate","val":0,"amt":3112},"partialState":{"h":9,"t":54,"tokens":[10408,10121,7697,5131],"delegation":[9408,9121,6697,4131],"delegatorTokens":9999999958154}},{"ix":85,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":10,"t":60,"tokens":[10408,10121,7697,5131],"delegation":[9408,9121,6697,4131],"delegatorTokens":9999999958154,"jailed":[1000000000000029,1000000000000029,1000000000000029,null],"status":["unbonding","unbonding","unbonding","bonded"]}},{"ix":86,"action":{"kind":"Delegate","val":0,"amt":3903},"partialState":{"h":10,"t":60,"tokens":[14311,10121,7697,5131],"delegation":[13311,9121,6697,4131],"delegatorTokens":9999999954251}},{"ix":87,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":11,"t":66,"tokens":[14311,10121,7697,5131],"delegation":[13311,9121,6697,4131],"delegatorTokens":9999999954251,"jailed":[1000000000000029,1000000000000029,1000000000000029,null],"status":["unbonding","unbonding","unbonding","bonded"]}},{"ix":88,"action":{"kind":"Deliver","chain":"consumer","numPackets":1},"partialState":{"h":13,"t":78,"consumerPower":[null,null,4003,5131],"outstandingDowntime":[false,false,false,false]}},{"ix":89,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":90,"action":{"kind":"Delegate","val":3,"amt":1906},"partialState":{"h":11,"t":66,"tokens":[14311,10121,7697,7037],"delegation":[13311,9121,6697,6037],"delegatorTokens":9999999952345}},{"ix":91,"action":{"kind":"Undelegate","val":2,"amt":4246},"partialState":{"h":11,"t":66,"tokens":[14311,10121,3451,7037],"delegation":[13311,9121,2451,6037],"delegatorTokens":9999999952345}},{"ix":92,"action":{"kind":"Deliver","chain":"provider","numPackets":4},"partialState":{"h":11,"t":66,"tokens":[14311,10121,3451,7037],"delegation":[13311,9121,2451,6037],"delegatorTokens":9999999952345,"jailed":[1000000000000029,1000000000000029,1000000000000029,null],"status":["unbonding","unbonding","unbonding","bonded"]}},{"ix":93,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":14,"t":84,"consumerPower":[null,null,null,5131],"outstandingDowntime":[false,false,false,false]}},{"ix":94,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":95,"action":{"kind":"Undelegate","val":2,"amt":4967},"partialState":{"h":11,"t":66,"tokens":[14311,10121,3451,7037],"delegation":[13311,9121,2451,6037],"delegatorTokens":9999999952345}},{"ix":96,"action":{"kind":"Delegate","val":0,"amt":2006},"partialState":{"h":11,"t":66,"tokens":[16317,10121,3451,7037],"delegation":[15317,9121,2451,6037],"delegatorTokens":9999999950339}},{"ix":97,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":15,"t":90,"consumerPower":[null,null,null,5131],"outstandingDowntime":[false,false,false,false]}},{"ix":98,"action":{"kind":"Delegate","val":2,"amt":2436},"partialState":{"h":11,"t":66,"tokens":[16317,10121,5887,7037],"delegation":[15317,9121,4887,6037],"delegatorTokens":9999999947903}},{"ix":99,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":100,"action":{"kind":"Deliver","chain":"consumer","numPackets":6},"partialState":{"h":15,"t":90,"consumerPower":[null,null,null,5131],"outstandingDowntime":[false,false,false,false]}},{"ix":101,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":102,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":16,"t":96,"consumerPower":[null,null,null,5131],"outstandingDowntime":[false,false,false,false]}},{"ix":103,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":104,"action":{"kind":"Deliver","chain":"provider","numPackets":3},"partialState":{"h":11,"t":66,"tokens":[16317,10121,5887,7037],"delegation":[15317,9121,4887,6037],"delegatorTokens":9999999947903,"jailed":[1000000000000029,1000000000000029,1000000000000029,null],"status":["unbonding","unbonding","unbonding","bonded"]}},{"ix":105,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":106,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":17,"t":102,"consumerPower":[null,null,null,5131],"outstandingDowntime":[false,false,false,false]}},{"ix":107,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":108,"action":{"kind":"Delegate","val":1,"amt":2632},"partialState":{"h":11,"t":66,"tokens":[16317,12753,5887,7037],"delegation":[15317,11753,4887,6037],"delegatorTokens":9999999945271}},{"ix":109,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":18,"t":108,"consumerPower":[null,null,null,5131],"outstandingDowntime":[false,false,false,false]}},{"ix":110,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":111,"action":{"kind":"Delegate","val":3,"amt":2817},"partialState":{"h":11,"t":66,"tokens":[16317,12753,5887,9854],"delegation":[15317,11753,4887,8854],"delegatorTokens":9999999942454}},{"ix":112,"action":{"kind":"Undelegate","val":1,"amt":2567},"partialState":{"h":11,"t":66,"tokens":[16317,10186,5887,9854],"delegation":[15317,9186,4887,8854],"delegatorTokens":9999999942454}},{"ix":113,"action":{"kind":"Delegate","val":0,"amt":4592},"partialState":{"h":11,"t":66,"tokens":[20909,10186,5887,9854],"delegation":[19909,9186,4887,8854],"delegatorTokens":9999999937862}},{"ix":114,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":115,"action":{"kind":"Deliver","chain":"provider","numPackets":5},"partialState":{"h":11,"t":66,"tokens":[20909,10186,5887,9854],"delegation":[19909,9186,4887,8854],"delegatorTokens":9999999937862,"jailed":[1000000000000029,1000000000000029,1000000000000029,null],"status":["unbonding","unbonding","unbonding","bonded"]}},{"ix":116,"action":{"kind":"Deliver","chain":"provider","numPackets":4},"partialState":{"h":11,"t":66,"tokens":[20909,10186,5887,9854],"delegation":[19909,9186,4887,8854],"delegatorTokens":9999999937862,"jailed":[1000000000000029,1000000000000029,1000000000000029,null],"status":["unbonding","unbonding","unbonding","bonded"]}},{"ix":117,"action":{"kind":"Deliver","chain":"provider","numPackets":3},"partialState":{"h":11,"t":66,"tokens":[20909,10186,5887,9854],"delegation":[19909,9186,4887,8854],"delegatorTokens":9999999937862,"jailed":[1000000000000029,1000000000000029,1000000000000029,null],"status":["unbonding","unbonding","unbonding","bonded"]}},{"ix":118,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":12,"t":72,"tokens":[20909,10186,5887,9854],"delegation":[19909,9186,4887,8854],"delegatorTokens":9999999937862,"jailed":[1000000000000029,1000000000000029,1000000000000029,null],"status":["unbonding","unbonding","unbonding","bonded"]}},{"ix":119,"action":{"kind":"Deliver","chain":"consumer","numPackets":5},"partialState":{"h":18,"t":108,"consumerPower":[null,null,null,5131],"outstandingDowntime":[false,false,false,false]}},{"ix":120,"action":{"kind":"Undelegate","val":1,"amt":2176},"partialState":{"h":12,"t":72,"tokens":[20909,8010,5887,9854],"delegation":[19909,7010,4887,8854],"delegatorTokens":9999999937862}},{"ix":121,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":122,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":123,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":19,"t":114,"consumerPower":[null,null,null,5131],"outstandingDowntime":[false,false,false,false]}},{"ix":124,"action":{"kind":"Deliver","chain":"consumer","numPackets":3},"partialState":{"h":19,"t":114,"consumerPower":[null,null,null,5131],"outstandingDowntime":[false,false,false,false]}},{"ix":125,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":13,"t":78,"tokens":[20909,8010,5887,9854],"delegation":[19909,7010,4887,8854],"delegatorTokens":9999999937862,"jailed":[1000000000000029,1000000000000029,1000000000000029,null],"status":["unbonding","unbonding","unbonding","bonded"]}},{"ix":126,"action":{"kind":"Undelegate","val":1,"amt":2007},"partialState":{"h":13,"t":78,"tokens":[20909,6003,5887,9854],"delegation":[19909,5003,4887,8854],"delegatorTokens":9999999937862}},{"ix":127,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":128,"action":{"kind":"Undelegate","val":3,"amt":2384},"partialState":{"h":13,"t":78,"tokens":[20909,6003,5887,7470],"delegation":[19909,5003,4887,6470],"delegatorTokens":9999999937862}},{"ix":129,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":130,"action":{"kind":"Delegate","val":3,"amt":3060},"partialState":{"h":13,"t":78,"tokens":[20909,6003,5887,10530],"delegation":[19909,5003,4887,9530],"delegatorTokens":9999999934802}},{"ix":131,"action":{"kind":"Deliver","chain":"provider","numPackets":4},"partialState":{"h":13,"t":78,"tokens":[20909,6003,5887,10530],"delegation":[19909,5003,4887,9530],"delegatorTokens":9999999934802,"jailed":[1000000000000029,1000000000000029,1000000000000029,null],"status":["unbonding","unbonding","unbonding","bonded"]}},{"ix":132,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":14,"t":84,"tokens":[20909,6003,5887,10530],"delegation":[19909,5003,4887,9530],"delegatorTokens":9999999936216,"jailed":[1000000000000029,1000000000000029,1000000000000029,null],"status":["unbonding","unbonding","unbonding","bonded"]}},{"ix":133,"action":{"kind":"Deliver","chain":"provider","numPackets":2},"partialState":{"h":14,"t":84,"tokens":[20909,6003,5887,10530],"delegation":[19909,5003,4887,9530],"delegatorTokens":9999999936216,"jailed":[1000000000000029,1000000000000029,1000000000000029,null],"status":["unbonding","unbonding","unbonding","bonded"]}},{"ix":134,"action":{"kind":"Deliver","chain":"provider","numPackets":5},"partialState":{"h":14,"t":84,"tokens":[20909,6003,5887,10530],"delegation":[19909,5003,4887,9530],"delegatorTokens":9999999936216,"jailed":[1000000000000029,1000000000000029,1000000000000029,null],"status":["unbonding","unbonding","unbonding","bonded"]}},{"ix":135,"action":{"kind":"Undelegate","val":0,"amt":3250},"partialState":{"h":14,"t":84,"tokens":[17659,6003,5887,10530],"delegation":[16659,5003,4887,9530],"delegatorTokens":9999999936216}},{"ix":136,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":137,"action":{"kind":"Delegate","val":1,"amt":3790},"partialState":{"h":14,"t":84,"tokens":[17659,9793,5887,10530],"delegation":[16659,8793,4887,9530],"delegatorTokens":9999999932426}},{"ix":138,"action":{"kind":"Deliver","chain":"provider","numPackets":3},"partialState":{"h":14,"t":84,"tokens":[17659,9793,5887,10530],"delegation":[16659,8793,4887,9530],"delegatorTokens":9999999932426,"jailed":[1000000000000029,1000000000000029,1000000000000029,null],"status":["unbonding","unbonding","unbonding","bonded"]}},{"ix":139,"action":{"kind":"Delegate","val":0,"amt":1946},"partialState":{"h":14,"t":84,"tokens":[19605,9793,5887,10530],"delegation":[18605,8793,4887,9530],"delegatorTokens":9999999930480}},{"ix":140,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":15,"t":90,"tokens":[19605,9793,5887,10530],"delegation":[18605,8793,4887,9530],"delegatorTokens":9999999930480,"jailed":[1000000000000029,1000000000000029,1000000000000029,null],"status":["unbonding","unbonding","unbonding","bonded"]}},{"ix":141,"action":{"kind":"Undelegate","val":1,"amt":2944},"partialState":{"h":15,"t":90,"tokens":[19605,6849,5887,10530],"delegation":[18605,5849,4887,9530],"delegatorTokens":9999999930480}},{"ix":142,"action":{"kind":"Delegate","val":0,"amt":2713},"partialState":{"h":15,"t":90,"tokens":[22318,6849,5887,10530],"delegation":[21318,5849,4887,9530],"delegatorTokens":9999999927767}},{"ix":143,"action":{"kind":"Delegate","val":1,"amt":2835},"partialState":{"h":15,"t":90,"tokens":[22318,9684,5887,10530],"delegation":[21318,8684,4887,9530],"delegatorTokens":9999999924932}},{"ix":144,"action":{"kind":"Delegate","val":3,"amt":2702},"partialState":{"h":15,"t":90,"tokens":[22318,9684,5887,13232],"delegation":[21318,8684,4887,12232],"delegatorTokens":9999999922230}},{"ix":145,"action":{"kind":"Delegate","val":2,"amt":4749},"partialState":{"h":15,"t":90,"tokens":[22318,9684,10636,13232],"delegation":[21318,8684,9636,12232],"delegatorTokens":9999999917481}},{"ix":146,"action":{"kind":"Deliver","chain":"provider","numPackets":1},"partialState":{"h":15,"t":90,"tokens":[22318,9684,10636,13232],"delegation":[21318,8684,9636,12232],"delegatorTokens":9999999917481,"jailed":[1000000000000029,1000000000000029,1000000000000029,null],"status":["unbonding","unbonding","unbonding","bonded"]}},{"ix":147,"action":{"kind":"Delegate","val":2,"amt":4814},"partialState":{"h":15,"t":90,"tokens":[22318,9684,15450,13232],"delegation":[21318,8684,14450,12232],"delegatorTokens":9999999912667}},{"ix":148,"action":{"kind":"Delegate","val":3,"amt":2752},"partialState":{"h":15,"t":90,"tokens":[22318,9684,15450,15984],"delegation":[21318,8684,14450,14984],"delegatorTokens":9999999909915}},{"ix":149,"action":{"kind":"Deliver","chain":"provider","numPackets":6},"partialState":{"h":15,"t":90,"tokens":[22318,9684,15450,15984],"delegation":[21318,8684,14450,14984],"delegatorTokens":9999999909915,"jailed":[1000000000000029,1000000000000029,1000000000000029,null],"status":["unbonding","unbonding","unbonding","bonded"]}},{"ix":150,"action":{"kind":"Deliver","chain":"consumer","numPackets":2},"partialState":{"h":19,"t":114,"consumerPower":[null,null,null,5131],"outstandingDowntime":[false,false,false,false]}},{"ix":151,"action":{"kind":"Deliver","chain":"consumer","numPackets":2},"partialState":{"h":19,"t":114,"consumerPower":[null,null,null,5131],"outstandingDowntime":[false,false,false,false]}},{"ix":152,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":16,"t":96,"tokens":[22318,9684,15450,15984],"delegation":[21318,8684,14450,14984],"delegatorTokens":9999999914621,"jailed":[1000000000000029,1000000000000029,1000000000000029,null],"status":["unbonding","unbonded","unbonding","bonded"]}},{"ix":153,"action":{"kind":"Delegate","val":3,"amt":1860},"partialState":{"h":16,"t":96,"tokens":[22318,9684,15450,17844],"delegation":[21318,8684,14450,16844],"delegatorTokens":9999999912761}},{"ix":154,"action":{"kind":"Deliver","chain":"provider","numPackets":3},"partialState":{"h":16,"t":96,"tokens":[22318,9684,15450,17844],"delegation":[21318,8684,14450,16844],"delegatorTokens":9999999912761,"jailed":[1000000000000029,1000000000000029,1000000000000029,null],"status":["unbonding","unbonded","unbonding","bonded"]}},{"ix":155,"action":{"kind":"Deliver","chain":"consumer","numPackets":3},"partialState":{"h":19,"t":114,"consumerPower":[null,null,null,5131],"outstandingDowntime":[false,false,false,false]}},{"ix":156,"action":{"kind":"Deliver","chain":"consumer","numPackets":3},"partialState":{"h":19,"t":114,"consumerPower":[null,null,null,5131],"outstandingDowntime":[false,false,false,false]}},{"ix":157,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":20,"t":120,"consumerPower":[null,null,null,10530],"outstandingDowntime":[false,false,false,false]}},{"ix":158,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":17,"t":102,"tokens":[22318,9684,15450,17844],"delegation":[21318,8684,14450,16844],"delegatorTokens":9999999912761,"jailed":[1000000000000029,1000000000000029,1000000000000029,null],"status":["unbonding","unbonded","unbonding","bonded"]}},{"ix":159,"action":{"kind":"Delegate","val":2,"amt":4631},"partialState":{"h":17,"t":102,"tokens":[22318,9684,20081,17844],"delegation":[21318,8684,19081,16844],"delegatorTokens":9999999908130}},{"ix":160,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":161,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":21,"t":126,"consumerPower":[null,null,null,10530],"outstandingDowntime":[false,false,false,false]}},{"ix":162,"action":{"kind":"Deliver","chain":"consumer","numPackets":5},"partialState":{"h":21,"t":126,"consumerPower":[null,null,null,10530],"outstandingDowntime":[false,false,false,false]}},{"ix":163,"action":{"kind":"Delegate","val":2,"amt":1884},"partialState":{"h":17,"t":102,"tokens":[22318,9684,21965,17844],"delegation":[21318,8684,20965,16844],"delegatorTokens":9999999906246}},{"ix":164,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":165,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":22,"t":132,"consumerPower":[null,null,null,15984],"outstandingDowntime":[false,false,false,false]}},{"ix":166,"action":{"kind":"Undelegate","val":3,"amt":1038},"partialState":{"h":17,"t":102,"tokens":[22318,9684,21965,16806],"delegation":[21318,8684,20965,15806],"delegatorTokens":9999999906246}},{"ix":167,"action":{"kind":"Deliver","chain":"provider","numPackets":6},"partialState":{"h":17,"t":102,"tokens":[22318,9684,21965,16806],"delegation":[21318,8684,20965,15806],"delegatorTokens":9999999906246,"jailed":[1000000000000029,1000000000000029,1000000000000029,null],"status":["unbonding","unbonded","unbonding","bonded"]}},{"ix":168,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":23,"t":138,"consumerPower":[null,null,null,15984],"outstandingDowntime":[false,false,false,false]}},{"ix":169,"action":{"kind":"Undelegate","val":1,"amt":3469},"partialState":{"h":17,"t":102,"tokens":[22318,6215,21965,16806],"delegation":[21318,5215,20965,15806],"delegatorTokens":9999999906246}},{"ix":170,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":171,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":24,"t":144,"consumerPower":[null,null,null,15984],"outstandingDowntime":[false,false,false,false]}},{"ix":172,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":173,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":18,"t":108,"tokens":[22318,6215,21965,16806],"delegation":[21318,5215,20965,15806],"delegatorTokens":9999999916690,"jailed":[1000000000000029,1000000000000029,1000000000000029,null],"status":["unbonded","unbonded","unbonding","bonded"]}},{"ix":174,"action":{"kind":"Delegate","val":3,"amt":4220},"partialState":{"h":18,"t":108,"tokens":[22318,6215,21965,21026],"delegation":[21318,5215,20965,20026],"delegatorTokens":9999999912470}},{"ix":175,"action":{"kind":"Deliver","chain":"provider","numPackets":2},"partialState":{"h":18,"t":108,"tokens":[22318,6215,21965,21026],"delegation":[21318,5215,20965,20026],"delegatorTokens":9999999912470,"jailed":[1000000000000029,1000000000000029,1000000000000029,null],"status":["unbonded","unbonded","unbonding","bonded"]}},{"ix":176,"action":{"kind":"Delegate","val":3,"amt":1566},"partialState":{"h":18,"t":108,"tokens":[22318,6215,21965,22592],"delegation":[21318,5215,20965,21592],"delegatorTokens":9999999910904}},{"ix":177,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":19,"t":114,"tokens":[22318,6215,21965,22592],"delegation":[21318,5215,20965,21592],"delegatorTokens":9999999910904,"jailed":[1000000000000029,1000000000000029,1000000000000029,null],"status":["unbonded","unbonded","unbonding","bonded"]}},{"ix":178,"action":{"kind":"Delegate","val":0,"amt":1731},"partialState":{"h":19,"t":114,"tokens":[24049,6215,21965,22592],"delegation":[23049,5215,20965,21592],"delegatorTokens":9999999909173}},{"ix":179,"action":{"kind":"Deliver","chain":"consumer","numPackets":5},"partialState":{"h":24,"t":144,"consumerPower":[null,null,null,15984],"outstandingDowntime":[false,false,false,false]}},{"ix":180,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":181,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":25,"t":150,"consumerPower":[null,null,null,16806],"outstandingDowntime":[false,false,false,false]}},{"ix":182,"action":{"kind":"Deliver","chain":"consumer","numPackets":3},"partialState":{"h":25,"t":150,"consumerPower":[null,null,null,16806],"outstandingDowntime":[false,false,false,false]}},{"ix":183,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":26,"t":156,"consumerPower":[null,null,null,16806],"outstandingDowntime":[false,false,false,false]}},{"ix":184,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":20,"t":120,"tokens":[24049,6215,21965,22592],"delegation":[23049,5215,20965,21592],"delegatorTokens":9999999909173,"jailed":[1000000000000029,1000000000000029,1000000000000029,null],"status":["unbonded","unbonded","unbonded","bonded"]}},{"ix":185,"action":{"kind":"Delegate","val":3,"amt":1898},"partialState":{"h":20,"t":120,"tokens":[24049,6215,21965,24490],"delegation":[23049,5215,20965,23490],"delegatorTokens":9999999907275}},{"ix":186,"action":{"kind":"Undelegate","val":2,"amt":3306},"partialState":{"h":20,"t":120,"tokens":[24049,6215,18659,24490],"delegation":[23049,5215,17659,23490],"delegatorTokens":9999999907275}},{"ix":187,"action":{"kind":"Deliver","chain":"provider","numPackets":5},"partialState":{"h":20,"t":120,"tokens":[24049,6215,18659,24490],"delegation":[23049,5215,17659,23490],"delegatorTokens":9999999907275,"jailed":[1000000000000029,1000000000000029,1000000000000029,null],"status":["unbonded","unbonded","unbonded","bonded"]}},{"ix":188,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":189,"action":{"kind":"Deliver","chain":"provider","numPackets":2},"partialState":{"h":20,"t":120,"tokens":[24049,6215,18659,24490],"delegation":[23049,5215,17659,23490],"delegatorTokens":9999999907275,"jailed":[1000000000000029,1000000000000029,1000000000000029,null],"status":["unbonded","unbonded","unbonded","bonded"]}},{"ix":190,"action":{"kind":"Deliver","chain":"provider","numPackets":6},"partialState":{"h":20,"t":120,"tokens":[24049,6215,18659,24490],"delegation":[23049,5215,17659,23490],"delegatorTokens":9999999907275,"jailed":[1000000000000029,1000000000000029,1000000000000029,null],"status":["unbonded","unbonded","unbonded","bonded"]}},{"ix":191,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":21,"t":126,"tokens":[24049,6215,18659,24490],"delegation":[23049,5215,17659,23490],"delegatorTokens":9999999910088,"jailed":[1000000000000029,1000000000000029,1000000000000029,null],"status":["unbonded","unbonded","unbonded","bonded"]}},{"ix":192,"action":{"kind":"Undelegate","val":2,"amt":4178},"partialState":{"h":21,"t":126,"tokens":[24049,6215,14481,24490],"delegation":[23049,5215,13481,23490],"delegatorTokens":9999999910088}},{"ix":193,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":22,"t":132,"tokens":[24049,6215,14481,24490],"delegation":[23049,5215,13481,23490],"delegatorTokens":9999999913200,"jailed":[1000000000000029,1000000000000029,1000000000000029,null],"status":["unbonded","unbonded","unbonded","bonded"]}},{"ix":194,"action":{"kind":"Undelegate","val":1,"amt":2544},"partialState":{"h":22,"t":132,"tokens":[24049,3671,14481,24490],"delegation":[23049,2671,13481,23490],"delegatorTokens":9999999913200}},{"ix":195,"action":{"kind":"Delegate","val":2,"amt":2021},"partialState":{"h":22,"t":132,"tokens":[24049,3671,16502,24490],"delegation":[23049,2671,15502,23490],"delegatorTokens":9999999911179}},{"ix":196,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":27,"t":162,"consumerPower":[null,null,null,16806],"outstandingDowntime":[false,false,false,false]}},{"ix":197,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":23,"t":138,"tokens":[24049,3671,16502,24490],"delegation":[23049,2671,15502,23490],"delegatorTokens":9999999911179,"jailed":[1000000000000029,1000000000000029,1000000000000029,null],"status":["unbonded","unbonded","unbonded","bonded"]}},{"ix":198,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":199,"action":{"kind":"Undelegate","val":1,"amt":4580},"partialState":{"h":23,"t":138,"tokens":[24049,3671,16502,24490],"delegation":[23049,2671,15502,23490],"delegatorTokens":9999999911179}}],"events":["insufficient_shares","send_downtime_slash_request","send_downtime_slash_request","send_downtime_slash_request","insufficient_shares","insufficient_shares","send_vsc_without_downtime_ack","insufficient_shares","consumer_update_val","insufficient_shares","more_than_one_third_val_power_change","send_vsc_without_downtime_ack","insufficient_shares","insufficient_shares","insufficient_shares","consumer_update_val","consumer_del_val","consumer_add_val","more_than_one_third_val_power_change","receive_downtime_slash_request","jail","receive_downtime_slash_request","jail","receive_downtime_slash_request","jail","send_vsc_with_downtime_ack","send_vsc_without_downtime_ack","receive_downtime_slash_ack","receive_downtime_slash_ack","receive_downtime_slash_ack","consumer_del_val","consumer_update_val","consumer_add_val","insufficient_shares","send_vsc_not_because_change","send_vsc_without_downtime_ack","consumer_send_maturation","insufficient_shares","set_undel_hold_false","send_vsc_not_because_change","send_vsc_without_downtime_ack","consumer_del_val","insufficient_shares","consumer_send_maturation","consumer_send_maturation","set_undel_hold_false","set_unval_hold_false","send_vsc_without_downtime_ack","send_vsc_not_because_change","send_vsc_without_downtime_ack","complete_undel_in_endblock","set_undel_hold_false","set_undel_hold_false","set_undel_hold_false","set_unval_hold_false","send_vsc_without_downtime_ack","send_vsc_not_because_change","send_vsc_without_downtime_ack","complete_unval_in_endblock","complete_undel_in_endblock","send_vsc_without_downtime_ack","consumer_update_val","send_vsc_without_downtime_ack","consumer_update_val","consumer_send_maturation","complete_unval_in_endblock","complete_undel_in_endblock","send_vsc_without_downtime_ack","set_unval_hold_false","send_vsc_without_downtime_ack","consumer_send_maturation","consumer_send_maturation","consumer_update_val","complete_unval_in_endblock","some_undels_expired_but_not_completed","complete_undel_immediate","set_undel_hold_false","send_vsc_without_downtime_ack","complete_undel_in_endblock","send_vsc_not_because_change","send_vsc_without_downtime_ack","send_vsc_not_because_change","send_vsc_without_downtime_ack","insufficient_shares"]},{"meta":{"commit":"7ffd0c04e4205cbc9caf212abfe6c59ee43153bf"},"constants":{"P":"provider","C":"consumer","UNBONDING_SECONDS_P":70,"UNBONDING_SECONDS_C":50,"TRUSTING_SECONDS":49,"NUM_VALIDATORS":4,"MAX_VALIDATORS":2,"SLASH_DOUBLESIGN":0,"SLASH_DOWNTIME":0,"JAIL_SECONDS":999999999999999,"BLOCK_SECONDS":6,"INITIAL_DELEGATOR_TOKENS":10000000000000,"DELEGATE_AMT_MIN":1000,"DELEGATE_AMT_MAX":5000,"UNDELEGATE_AMT_MIN":1000,"UNDELEGATE_AMT_MAX":5000,"ISDOWNTIME_PROBABILITY":0.5,"MAX_NUM_PACKETS_FOR_DELIVER":6},"actions":[{"ix":0,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":2,"t":12,"tokens":[5000,4000,3000,2000],"delegation":[4000,3000,2000,1000],"delegatorTokens":10000000000000,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":1,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":2,"action":{"kind":"Delegate","val":1,"amt":3424},"partialState":{"h":2,"t":12,"tokens":[5000,7424,3000,2000],"delegation":[4000,6424,2000,1000],"delegatorTokens":9999999996576}},{"ix":3,"action":{"kind":"ConsumerSlash","val":0,"infractionHeight":0,"isDowntime":true},"partialState":{"h":1,"t":6,"outstandingDowntime":[true,false,false,false]}},{"ix":4,"action":{"kind":"ConsumerSlash","val":1,"infractionHeight":0,"isDowntime":true},"partialState":{"h":1,"t":6,"outstandingDowntime":[true,true,false,false]}},{"ix":5,"action":{"kind":"Delegate","val":3,"amt":3695},"partialState":{"h":2,"t":12,"tokens":[5000,7424,3000,5695],"delegation":[4000,6424,2000,4695],"delegatorTokens":9999999992881}},{"ix":6,"action":{"kind":"ConsumerSlash","val":3,"infractionHeight":0,"isDowntime":true},"partialState":{"h":1,"t":6,"outstandingDowntime":[true,true,false,true]}},{"ix":7,"action":{"kind":"Delegate","val":3,"amt":2589},"partialState":{"h":2,"t":12,"tokens":[5000,7424,3000,8284],"delegation":[4000,6424,2000,7284],"delegatorTokens":9999999990292}},{"ix":8,"action":{"kind":"Undelegate","val":1,"amt":2104},"partialState":{"h":2,"t":12,"tokens":[5000,5320,3000,8284],"delegation":[4000,4320,2000,7284],"delegatorTokens":9999999990292}},{"ix":9,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":2,"t":12,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[true,true,false,true]}},{"ix":10,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":11,"action":{"kind":"Undelegate","val":0,"amt":1379},"partialState":{"h":2,"t":12,"tokens":[3621,5320,3000,8284],"delegation":[2621,4320,2000,7284],"delegatorTokens":9999999990292}},{"ix":12,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":3,"t":18,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[true,true,false,true]}},{"ix":13,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":4,"t":24,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[true,true,false,true]}},{"ix":14,"action":{"kind":"Delegate","val":2,"amt":3134},"partialState":{"h":2,"t":12,"tokens":[3621,5320,6134,8284],"delegation":[2621,4320,5134,7284],"delegatorTokens":9999999987158}},{"ix":15,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":16,"action":{"kind":"Delegate","val":1,"amt":2582},"partialState":{"h":2,"t":12,"tokens":[3621,7902,6134,8284],"delegation":[2621,6902,5134,7284],"delegatorTokens":9999999984576}},{"ix":17,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":3,"t":18,"tokens":[3621,7902,6134,8284],"delegation":[2621,6902,5134,7284],"delegatorTokens":9999999984576,"jailed":[null,null,null,null],"status":["unbonding","bonded","unbonded","bonded"]}},{"ix":18,"action":{"kind":"Deliver","chain":"provider","numPackets":5},"partialState":{"h":3,"t":18,"tokens":[3621,7902,6134,8284],"delegation":[2621,6902,5134,7284],"delegatorTokens":9999999984576,"jailed":[null,null,null,null],"status":["unbonding","bonded","unbonded","bonded"]}},{"ix":19,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":4,"t":24,"tokens":[3621,7902,6134,8284],"delegation":[2621,6902,5134,7284],"delegatorTokens":9999999984576,"jailed":[1000000000000017,1000000000000017,null,1000000000000017],"status":["unbonding","bonded","unbonded","bonded"]}},{"ix":20,"action":{"kind":"Undelegate","val":1,"amt":2111},"partialState":{"h":4,"t":24,"tokens":[3621,5791,6134,8284],"delegation":[2621,4791,5134,7284],"delegatorTokens":9999999984576}},{"ix":21,"action":{"kind":"Deliver","chain":"consumer","numPackets":5},"partialState":{"h":4,"t":24,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[true,true,false,true]}},{"ix":22,"action":{"kind":"Deliver","chain":"provider","numPackets":5},"partialState":{"h":4,"t":24,"tokens":[3621,5791,6134,8284],"delegation":[2621,4791,5134,7284],"delegatorTokens":9999999984576,"jailed":[1000000000000017,1000000000000017,null,1000000000000017],"status":["unbonding","bonded","unbonded","bonded"]}},{"ix":23,"action":{"kind":"Delegate","val":1,"amt":1905},"partialState":{"h":4,"t":24,"tokens":[3621,7696,6134,8284],"delegation":[2621,6696,5134,7284],"delegatorTokens":9999999982671}},{"ix":24,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":5,"t":30,"consumerPower":[null,7902,null,8284],"outstandingDowntime":[true,true,false,true]}},{"ix":25,"action":{"kind":"Undelegate","val":2,"amt":1953},"partialState":{"h":4,"t":24,"tokens":[3621,7696,4181,8284],"delegation":[2621,6696,3181,7284],"delegatorTokens":9999999982671}},{"ix":26,"action":{"kind":"Delegate","val":2,"amt":1532},"partialState":{"h":4,"t":24,"tokens":[3621,7696,5713,8284],"delegation":[2621,6696,4713,7284],"delegatorTokens":9999999981139}},{"ix":27,"action":{"kind":"Undelegate","val":3,"amt":3979},"partialState":{"h":4,"t":24,"tokens":[3621,7696,5713,4305],"delegation":[2621,6696,4713,3305],"delegatorTokens":9999999981139}},{"ix":28,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":6,"t":36,"consumerPower":[null,7902,null,8284],"outstandingDowntime":[true,true,false,true]}},{"ix":29,"action":{"kind":"Deliver","chain":"consumer","numPackets":5},"partialState":{"h":6,"t":36,"consumerPower":[null,7902,null,8284],"outstandingDowntime":[true,true,false,true]}},{"ix":30,"action":{"kind":"Delegate","val":3,"amt":2488},"partialState":{"h":4,"t":24,"tokens":[3621,7696,5713,6793],"delegation":[2621,6696,4713,5793],"delegatorTokens":9999999978651}},{"ix":31,"action":{"kind":"Deliver","chain":"provider","numPackets":6},"partialState":{"h":4,"t":24,"tokens":[3621,7696,5713,6793],"delegation":[2621,6696,4713,5793],"delegatorTokens":9999999978651,"jailed":[1000000000000017,1000000000000017,null,1000000000000017],"status":["unbonding","bonded","unbonded","bonded"]}},{"ix":32,"action":{"kind":"Deliver","chain":"consumer","numPackets":2},"partialState":{"h":6,"t":36,"consumerPower":[null,7902,null,8284],"outstandingDowntime":[true,true,false,true]}},{"ix":33,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":34,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":35,"action":{"kind":"Undelegate","val":3,"amt":3344},"partialState":{"h":4,"t":24,"tokens":[3621,7696,5713,3449],"delegation":[2621,6696,4713,2449],"delegatorTokens":9999999978651}},{"ix":36,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":37,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":38,"action":{"kind":"Delegate","val":3,"amt":4029},"partialState":{"h":4,"t":24,"tokens":[3621,7696,5713,7478],"delegation":[2621,6696,4713,6478],"delegatorTokens":9999999974622}},{"ix":39,"action":{"kind":"Undelegate","val":3,"amt":3239},"partialState":{"h":4,"t":24,"tokens":[3621,7696,5713,4239],"delegation":[2621,6696,4713,3239],"delegatorTokens":9999999974622}},{"ix":40,"action":{"kind":"Undelegate","val":3,"amt":2669},"partialState":{"h":4,"t":24,"tokens":[3621,7696,5713,1570],"delegation":[2621,6696,4713,570],"delegatorTokens":9999999974622}},{"ix":41,"action":{"kind":"Delegate","val":3,"amt":2931},"partialState":{"h":4,"t":24,"tokens":[3621,7696,5713,4501],"delegation":[2621,6696,4713,3501],"delegatorTokens":9999999971691}},{"ix":42,"action":{"kind":"Delegate","val":0,"amt":2023},"partialState":{"h":4,"t":24,"tokens":[5644,7696,5713,4501],"delegation":[4644,6696,4713,3501],"delegatorTokens":9999999969668}},{"ix":43,"action":{"kind":"Deliver","chain":"consumer","numPackets":2},"partialState":{"h":6,"t":36,"consumerPower":[null,7902,null,8284],"outstandingDowntime":[true,true,false,true]}},{"ix":44,"action":{"kind":"Undelegate","val":0,"amt":1105},"partialState":{"h":4,"t":24,"tokens":[4539,7696,5713,4501],"delegation":[3539,6696,4713,3501],"delegatorTokens":9999999969668}},{"ix":45,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":46,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":7,"t":42,"consumerPower":[null,7902,null,8284],"outstandingDowntime":[true,true,false,true]}},{"ix":47,"action":{"kind":"Delegate","val":0,"amt":2565},"partialState":{"h":4,"t":24,"tokens":[7104,7696,5713,4501],"delegation":[6104,6696,4713,3501],"delegatorTokens":9999999967103}},{"ix":48,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":5,"t":30,"tokens":[7104,7696,5713,4501],"delegation":[6104,6696,4713,3501],"delegatorTokens":9999999967103,"jailed":[1000000000000017,1000000000000017,null,1000000000000017],"status":["unbonding","unbonding","bonded","unbonding"]}},{"ix":49,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":8,"t":48,"consumerPower":[null,7902,null,8284],"outstandingDowntime":[true,true,false,true]}},{"ix":50,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":6,"t":36,"tokens":[7104,7696,5713,4501],"delegation":[6104,6696,4713,3501],"delegatorTokens":9999999967103,"jailed":[1000000000000017,1000000000000017,null,1000000000000017],"status":["unbonding","unbonding","bonded","unbonding"]}},{"ix":51,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":7,"t":42,"tokens":[7104,7696,5713,4501],"delegation":[6104,6696,4713,3501],"delegatorTokens":9999999967103,"jailed":[1000000000000017,1000000000000017,null,1000000000000017],"status":["unbonding","unbonding","bonded","unbonding"]}},{"ix":52,"action":{"kind":"Deliver","chain":"provider","numPackets":2},"partialState":{"h":7,"t":42,"tokens":[7104,7696,5713,4501],"delegation":[6104,6696,4713,3501],"delegatorTokens":9999999967103,"jailed":[1000000000000017,1000000000000017,null,1000000000000017],"status":["unbonding","unbonding","bonded","unbonding"]}},{"ix":53,"action":{"kind":"Deliver","chain":"provider","numPackets":3},"partialState":{"h":7,"t":42,"tokens":[7104,7696,5713,4501],"delegation":[6104,6696,4713,3501],"delegatorTokens":9999999967103,"jailed":[1000000000000017,1000000000000017,null,1000000000000017],"status":["unbonding","unbonding","bonded","unbonding"]}},{"ix":54,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":8,"t":48,"tokens":[7104,7696,5713,4501],"delegation":[6104,6696,4713,3501],"delegatorTokens":9999999967103,"jailed":[1000000000000017,1000000000000017,null,1000000000000017],"status":["unbonding","unbonding","bonded","unbonding"]}},{"ix":55,"action":{"kind":"Undelegate","val":2,"amt":3261},"partialState":{"h":8,"t":48,"tokens":[7104,7696,2452,4501],"delegation":[6104,6696,1452,3501],"delegatorTokens":9999999967103}},{"ix":56,"action":{"kind":"Undelegate","val":1,"amt":1340},"partialState":{"h":8,"t":48,"tokens":[7104,6356,2452,4501],"delegation":[6104,5356,1452,3501],"delegatorTokens":9999999967103}},{"ix":57,"action":{"kind":"Undelegate","val":2,"amt":3941},"partialState":{"h":8,"t":48,"tokens":[7104,6356,2452,4501],"delegation":[6104,5356,1452,3501],"delegatorTokens":9999999967103}},{"ix":58,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":9,"t":54,"tokens":[7104,6356,2452,4501],"delegation":[6104,5356,1452,3501],"delegatorTokens":9999999967103,"jailed":[1000000000000017,1000000000000017,null,1000000000000017],"status":["unbonding","unbonding","bonded","unbonding"]}},{"ix":59,"action":{"kind":"Delegate","val":0,"amt":1132},"partialState":{"h":9,"t":54,"tokens":[8236,6356,2452,4501],"delegation":[7236,5356,1452,3501],"delegatorTokens":9999999965971}},{"ix":60,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":61,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":62,"action":{"kind":"Deliver","chain":"provider","numPackets":6},"partialState":{"h":9,"t":54,"tokens":[8236,6356,2452,4501],"delegation":[7236,5356,1452,3501],"delegatorTokens":9999999965971,"jailed":[1000000000000017,1000000000000017,null,1000000000000017],"status":["unbonding","unbonding","bonded","unbonding"]}},{"ix":63,"action":{"kind":"Undelegate","val":3,"amt":2758},"partialState":{"h":9,"t":54,"tokens":[8236,6356,2452,1743],"delegation":[7236,5356,1452,743],"delegatorTokens":9999999965971}},{"ix":64,"action":{"kind":"Undelegate","val":0,"amt":1366},"partialState":{"h":9,"t":54,"tokens":[6870,6356,2452,1743],"delegation":[5870,5356,1452,743],"delegatorTokens":9999999965971}},{"ix":65,"action":{"kind":"Deliver","chain":"provider","numPackets":1},"partialState":{"h":9,"t":54,"tokens":[6870,6356,2452,1743],"delegation":[5870,5356,1452,743],"delegatorTokens":9999999965971,"jailed":[1000000000000017,1000000000000017,null,1000000000000017],"status":["unbonding","unbonding","bonded","unbonding"]}},{"ix":66,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":9,"t":54,"consumerPower":[null,7902,null,8284],"outstandingDowntime":[true,true,false,true]}},{"ix":67,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":10,"t":60,"consumerPower":[null,7902,null,8284],"outstandingDowntime":[true,true,false,true]}},{"ix":68,"action":{"kind":"Delegate","val":2,"amt":2221},"partialState":{"h":9,"t":54,"tokens":[6870,6356,4673,1743],"delegation":[5870,5356,3673,743],"delegatorTokens":9999999963750}},{"ix":69,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":10,"t":60,"tokens":[6870,6356,4673,1743],"delegation":[5870,5356,3673,743],"delegatorTokens":9999999963750,"jailed":[1000000000000017,1000000000000017,null,1000000000000017],"status":["unbonding","unbonding","bonded","unbonding"]}},{"ix":70,"action":{"kind":"Deliver","chain":"provider","numPackets":5},"partialState":{"h":10,"t":60,"tokens":[6870,6356,4673,1743],"delegation":[5870,5356,3673,743],"delegatorTokens":9999999963750,"jailed":[1000000000000017,1000000000000017,null,1000000000000017],"status":["unbonding","unbonding","bonded","unbonding"]}},{"ix":71,"action":{"kind":"Undelegate","val":0,"amt":4356},"partialState":{"h":10,"t":60,"tokens":[2514,6356,4673,1743],"delegation":[1514,5356,3673,743],"delegatorTokens":9999999963750}},{"ix":72,"action":{"kind":"Delegate","val":1,"amt":3222},"partialState":{"h":10,"t":60,"tokens":[2514,9578,4673,1743],"delegation":[1514,8578,3673,743],"delegatorTokens":9999999960528}},{"ix":73,"action":{"kind":"Undelegate","val":1,"amt":4513},"partialState":{"h":10,"t":60,"tokens":[2514,5065,4673,1743],"delegation":[1514,4065,3673,743],"delegatorTokens":9999999960528}},{"ix":74,"action":{"kind":"Deliver","chain":"provider","numPackets":3},"partialState":{"h":10,"t":60,"tokens":[2514,5065,4673,1743],"delegation":[1514,4065,3673,743],"delegatorTokens":9999999960528,"jailed":[1000000000000017,1000000000000017,null,1000000000000017],"status":["unbonding","unbonding","bonded","unbonding"]}},{"ix":75,"action":{"kind":"Delegate","val":0,"amt":3051},"partialState":{"h":10,"t":60,"tokens":[5565,5065,4673,1743],"delegation":[4565,4065,3673,743],"delegatorTokens":9999999957477}},{"ix":76,"action":{"kind":"Delegate","val":0,"amt":3705},"partialState":{"h":10,"t":60,"tokens":[9270,5065,4673,1743],"delegation":[8270,4065,3673,743],"delegatorTokens":9999999953772}},{"ix":77,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":11,"t":66,"tokens":[9270,5065,4673,1743],"delegation":[8270,4065,3673,743],"delegatorTokens":9999999953772,"jailed":[1000000000000017,1000000000000017,null,1000000000000017],"status":["unbonding","unbonding","bonded","unbonding"]}},{"ix":78,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":11,"t":66,"consumerPower":[null,7902,null,8284],"outstandingDowntime":[true,true,false,true]}},{"ix":79,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":12,"t":72,"consumerPower":[null,7902,null,8284],"outstandingDowntime":[true,true,false,true]}},{"ix":80,"action":{"kind":"Deliver","chain":"consumer","numPackets":4},"partialState":{"h":12,"t":72,"consumerPower":[null,7902,null,8284],"outstandingDowntime":[false,false,false,false]}},{"ix":81,"action":{"kind":"Undelegate","val":3,"amt":1622},"partialState":{"h":11,"t":66,"tokens":[9270,5065,4673,1743],"delegation":[8270,4065,3673,743],"delegatorTokens":9999999953772}},{"ix":82,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":13,"t":78,"consumerPower":[null,null,4673,null],"outstandingDowntime":[false,false,false,false]}},{"ix":83,"action":{"kind":"Delegate","val":0,"amt":2940},"partialState":{"h":11,"t":66,"tokens":[12210,5065,4673,1743],"delegation":[11210,4065,3673,743],"delegatorTokens":9999999950832}},{"ix":84,"action":{"kind":"Undelegate","val":1,"amt":3115},"partialState":{"h":11,"t":66,"tokens":[12210,1950,4673,1743],"delegation":[11210,950,3673,743],"delegatorTokens":9999999950832}},{"ix":85,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":86,"action":{"kind":"Deliver","chain":"consumer","numPackets":5},"partialState":{"h":13,"t":78,"consumerPower":[null,null,4673,null],"outstandingDowntime":[false,false,false,false]}},{"ix":87,"action":{"kind":"Undelegate","val":2,"amt":3681},"partialState":{"h":11,"t":66,"tokens":[12210,1950,4673,1743],"delegation":[11210,950,3673,743],"delegatorTokens":9999999950832}},{"ix":88,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":89,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":14,"t":84,"consumerPower":[null,null,4673,null],"outstandingDowntime":[false,false,false,false]}},{"ix":90,"action":{"kind":"Deliver","chain":"consumer","numPackets":6},"partialState":{"h":14,"t":84,"consumerPower":[null,null,4673,null],"outstandingDowntime":[false,false,false,false]}},{"ix":91,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":12,"t":72,"tokens":[12210,1950,4673,1743],"delegation":[11210,950,3673,743],"delegatorTokens":9999999950832,"jailed":[1000000000000017,1000000000000017,null,1000000000000017],"status":["unbonding","unbonding","bonded","unbonding"]}},{"ix":92,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":15,"t":90,"consumerPower":[null,null,4673,null],"outstandingDowntime":[false,false,false,false]}},{"ix":93,"action":{"kind":"Undelegate","val":2,"amt":4481},"partialState":{"h":12,"t":72,"tokens":[12210,1950,4673,1743],"delegation":[11210,950,3673,743],"delegatorTokens":9999999950832}},{"ix":94,"action":{"kind":"Delegate","val":3,"amt":1412},"partialState":{"h":12,"t":72,"tokens":[12210,1950,4673,3155],"delegation":[11210,950,3673,2155],"delegatorTokens":9999999949420}},{"ix":95,"action":{"kind":"Undelegate","val":3,"amt":2088},"partialState":{"h":12,"t":72,"tokens":[12210,1950,4673,1067],"delegation":[11210,950,3673,67],"delegatorTokens":9999999949420}},{"ix":96,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":97,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":16,"t":96,"consumerPower":[null,null,4673,null],"outstandingDowntime":[false,false,false,false]}},{"ix":98,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":17,"t":102,"consumerPower":[null,null,4673,null],"outstandingDowntime":[false,false,false,false]}},{"ix":99,"action":{"kind":"Deliver","chain":"provider","numPackets":2},"partialState":{"h":12,"t":72,"tokens":[12210,1950,4673,1067],"delegation":[11210,950,3673,67],"delegatorTokens":9999999949420,"jailed":[1000000000000017,1000000000000017,null,1000000000000017],"status":["unbonding","unbonding","bonded","unbonding"]}},{"ix":100,"action":{"kind":"Deliver","chain":"consumer","numPackets":6},"partialState":{"h":17,"t":102,"consumerPower":[null,null,4673,null],"outstandingDowntime":[false,false,false,false]}},{"ix":101,"action":{"kind":"Delegate","val":3,"amt":3039},"partialState":{"h":12,"t":72,"tokens":[12210,1950,4673,4106],"delegation":[11210,950,3673,3106],"delegatorTokens":9999999946381}},{"ix":102,"action":{"kind":"Deliver","chain":"consumer","numPackets":4},"partialState":{"h":17,"t":102,"consumerPower":[null,null,4673,null],"outstandingDowntime":[false,false,false,false]}},{"ix":103,"action":{"kind":"Delegate","val":0,"amt":1834},"partialState":{"h":12,"t":72,"tokens":[14044,1950,4673,4106],"delegation":[13044,950,3673,3106],"delegatorTokens":9999999944547}},{"ix":104,"action":{"kind":"Deliver","chain":"consumer","numPackets":4},"partialState":{"h":17,"t":102,"consumerPower":[null,null,4673,null],"outstandingDowntime":[false,false,false,false]}},{"ix":105,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":13,"t":78,"tokens":[14044,1950,4673,4106],"delegation":[13044,950,3673,3106],"delegatorTokens":9999999944547,"jailed":[1000000000000017,1000000000000017,null,1000000000000017],"status":["unbonding","unbonding","bonded","unbonding"]}},{"ix":106,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":107,"action":{"kind":"Delegate","val":2,"amt":4692},"partialState":{"h":13,"t":78,"tokens":[14044,1950,9365,4106],"delegation":[13044,950,8365,3106],"delegatorTokens":9999999939855}},{"ix":108,"action":{"kind":"Deliver","chain":"provider","numPackets":5},"partialState":{"h":13,"t":78,"tokens":[14044,1950,9365,4106],"delegation":[13044,950,8365,3106],"delegatorTokens":9999999939855,"jailed":[1000000000000017,1000000000000017,null,1000000000000017],"status":["unbonding","unbonding","bonded","unbonding"]}},{"ix":109,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":110,"action":{"kind":"Deliver","chain":"consumer","numPackets":3},"partialState":{"h":17,"t":102,"consumerPower":[null,null,4673,null],"outstandingDowntime":[false,false,false,false]}},{"ix":111,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":112,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":14,"t":84,"tokens":[14044,1950,9365,4106],"delegation":[13044,950,8365,3106],"delegatorTokens":9999999939855,"jailed":[1000000000000017,1000000000000017,null,1000000000000017],"status":["unbonding","unbonding","bonded","unbonding"]}},{"ix":113,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":18,"t":108,"consumerPower":[null,null,4673,null],"outstandingDowntime":[false,false,false,false]}},{"ix":114,"action":{"kind":"Deliver","chain":"provider","numPackets":1},"partialState":{"h":14,"t":84,"tokens":[14044,1950,9365,4106],"delegation":[13044,950,8365,3106],"delegatorTokens":9999999939855,"jailed":[1000000000000017,1000000000000017,null,1000000000000017],"status":["unbonding","unbonding","bonded","unbonding"]}},{"ix":115,"action":{"kind":"Deliver","chain":"provider","numPackets":3},"partialState":{"h":14,"t":84,"tokens":[14044,1950,9365,4106],"delegation":[13044,950,8365,3106],"delegatorTokens":9999999939855,"jailed":[1000000000000017,1000000000000017,null,1000000000000017],"status":["unbonding","unbonding","bonded","unbonding"]}},{"ix":116,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":117,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":19,"t":114,"consumerPower":[null,null,4673,null],"outstandingDowntime":[false,false,false,false]}},{"ix":118,"action":{"kind":"Deliver","chain":"provider","numPackets":3},"partialState":{"h":14,"t":84,"tokens":[14044,1950,9365,4106],"delegation":[13044,950,8365,3106],"delegatorTokens":9999999939855,"jailed":[1000000000000017,1000000000000017,null,1000000000000017],"status":["unbonding","unbonding","bonded","unbonding"]}},{"ix":119,"action":{"kind":"Deliver","chain":"provider","numPackets":2},"partialState":{"h":14,"t":84,"tokens":[14044,1950,9365,4106],"delegation":[13044,950,8365,3106],"delegatorTokens":9999999939855,"jailed":[1000000000000017,1000000000000017,null,1000000000000017],"status":["unbonding","unbonding","bonded","unbonding"]}},{"ix":120,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":121,"action":{"kind":"Deliver","chain":"consumer","numPackets":5},"partialState":{"h":19,"t":114,"consumerPower":[null,null,4673,null],"outstandingDowntime":[false,false,false,false]}},{"ix":122,"action":{"kind":"Deliver","chain":"consumer","numPackets":6},"partialState":{"h":19,"t":114,"consumerPower":[null,null,4673,null],"outstandingDowntime":[false,false,false,false]}},{"ix":123,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":124,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":125,"action":{"kind":"Deliver","chain":"provider","numPackets":6},"partialState":{"h":14,"t":84,"tokens":[14044,1950,9365,4106],"delegation":[13044,950,8365,3106],"delegatorTokens":9999999939855,"jailed":[1000000000000017,1000000000000017,null,1000000000000017],"status":["unbonding","unbonding","bonded","unbonding"]}},{"ix":126,"action":{"kind":"Deliver","chain":"consumer","numPackets":1},"partialState":{"h":19,"t":114,"consumerPower":[null,null,4673,null],"outstandingDowntime":[false,false,false,false]}},{"ix":127,"action":{"kind":"Deliver","chain":"consumer","numPackets":5},"partialState":{"h":19,"t":114,"consumerPower":[null,null,4673,null],"outstandingDowntime":[false,false,false,false]}},{"ix":128,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":129,"action":{"kind":"Deliver","chain":"consumer","numPackets":6},"partialState":{"h":19,"t":114,"consumerPower":[null,null,4673,null],"outstandingDowntime":[false,false,false,false]}},{"ix":130,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":15,"t":90,"tokens":[14044,1950,9365,4106],"delegation":[13044,950,8365,3106],"delegatorTokens":9999999943338,"jailed":[1000000000000017,1000000000000017,null,1000000000000017],"status":["unbonded","unbonding","bonded","unbonding"]}},{"ix":131,"action":{"kind":"Delegate","val":0,"amt":2970},"partialState":{"h":15,"t":90,"tokens":[17014,1950,9365,4106],"delegation":[16014,950,8365,3106],"delegatorTokens":9999999940368}},{"ix":132,"action":{"kind":"Deliver","chain":"consumer","numPackets":5},"partialState":{"h":19,"t":114,"consumerPower":[null,null,4673,null],"outstandingDowntime":[false,false,false,false]}},{"ix":133,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":20,"t":120,"consumerPower":[null,null,9365,null],"outstandingDowntime":[false,false,false,false]}},{"ix":134,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":16,"t":96,"tokens":[17014,1950,9365,4106],"delegation":[16014,950,8365,3106],"delegatorTokens":9999999940368,"jailed":[1000000000000017,1000000000000017,null,1000000000000017],"status":["unbonded","unbonding","bonded","unbonding"]}},{"ix":135,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":136,"action":{"kind":"Undelegate","val":3,"amt":1154},"partialState":{"h":16,"t":96,"tokens":[17014,1950,9365,2952],"delegation":[16014,950,8365,1952],"delegatorTokens":9999999940368}},{"ix":137,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":138,"action":{"kind":"Delegate","val":3,"amt":1503},"partialState":{"h":16,"t":96,"tokens":[17014,1950,9365,4455],"delegation":[16014,950,8365,3455],"delegatorTokens":9999999938865}},{"ix":139,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":140,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":21,"t":126,"consumerPower":[null,null,9365,null],"outstandingDowntime":[false,false,false,false]}},{"ix":141,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":142,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":17,"t":102,"tokens":[17014,1950,9365,4455],"delegation":[16014,950,8365,3455],"delegatorTokens":9999999938865,"jailed":[1000000000000017,1000000000000017,null,1000000000000017],"status":["unbonded","unbonding","bonded","unbonding"]}},{"ix":143,"action":{"kind":"Undelegate","val":0,"amt":1749},"partialState":{"h":17,"t":102,"tokens":[15265,1950,9365,4455],"delegation":[14265,950,8365,3455],"delegatorTokens":9999999938865}},{"ix":144,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":145,"action":{"kind":"Deliver","chain":"provider","numPackets":5},"partialState":{"h":17,"t":102,"tokens":[15265,1950,9365,4455],"delegation":[14265,950,8365,3455],"delegatorTokens":9999999938865,"jailed":[1000000000000017,1000000000000017,null,1000000000000017],"status":["unbonded","unbonding","bonded","unbonding"]}},{"ix":146,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":22,"t":132,"consumerPower":[null,null,9365,null],"outstandingDowntime":[false,false,false,false]}},{"ix":147,"action":{"kind":"Deliver","chain":"consumer","numPackets":6},"partialState":{"h":22,"t":132,"consumerPower":[null,null,9365,null],"outstandingDowntime":[false,false,false,false]}},{"ix":148,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":149,"action":{"kind":"Delegate","val":1,"amt":1974},"partialState":{"h":17,"t":102,"tokens":[15265,3924,9365,4455],"delegation":[14265,2924,8365,3455],"delegatorTokens":9999999936891}},{"ix":150,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":151,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":18,"t":108,"tokens":[15265,3924,9365,4455],"delegation":[14265,2924,8365,3455],"delegatorTokens":9999999936891,"jailed":[1000000000000017,1000000000000017,null,1000000000000017],"status":["unbonded","unbonding","bonded","unbonding"]}},{"ix":152,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":153,"action":{"kind":"Delegate","val":1,"amt":3810},"partialState":{"h":18,"t":108,"tokens":[15265,7734,9365,4455],"delegation":[14265,6734,8365,3455],"delegatorTokens":9999999933081}},{"ix":154,"action":{"kind":"Deliver","chain":"provider","numPackets":3},"partialState":{"h":18,"t":108,"tokens":[15265,7734,9365,4455],"delegation":[14265,6734,8365,3455],"delegatorTokens":9999999933081,"jailed":[1000000000000017,1000000000000017,null,1000000000000017],"status":["unbonded","unbonding","bonded","unbonding"]}},{"ix":155,"action":{"kind":"Undelegate","val":0,"amt":1012},"partialState":{"h":18,"t":108,"tokens":[14253,7734,9365,4455],"delegation":[13253,6734,8365,3455],"delegatorTokens":9999999933081}},{"ix":156,"action":{"kind":"Undelegate","val":0,"amt":3148},"partialState":{"h":18,"t":108,"tokens":[11105,7734,9365,4455],"delegation":[10105,6734,8365,3455],"delegatorTokens":9999999933081}},{"ix":157,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":23,"t":138,"consumerPower":[null,null,9365,null],"outstandingDowntime":[false,false,false,false]}},{"ix":158,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":19,"t":114,"tokens":[11105,7734,9365,4455],"delegation":[10105,6734,8365,3455],"delegatorTokens":9999999933081,"jailed":[1000000000000017,1000000000000017,null,1000000000000017],"status":["unbonded","unbonding","bonded","unbonding"]}},{"ix":159,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":24,"t":144,"consumerPower":[null,null,9365,null],"outstandingDowntime":[false,false,false,false]}},{"ix":160,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":161,"action":{"kind":"Delegate","val":0,"amt":1288},"partialState":{"h":19,"t":114,"tokens":[12393,7734,9365,4455],"delegation":[11393,6734,8365,3455],"delegatorTokens":9999999931793}},{"ix":162,"action":{"kind":"Deliver","chain":"consumer","numPackets":1},"partialState":{"h":24,"t":144,"consumerPower":[null,null,9365,null],"outstandingDowntime":[false,false,false,false]}},{"ix":163,"action":{"kind":"Delegate","val":1,"amt":1650},"partialState":{"h":19,"t":114,"tokens":[12393,9384,9365,4455],"delegation":[11393,8384,8365,3455],"delegatorTokens":9999999930143}},{"ix":164,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":165,"action":{"kind":"Deliver","chain":"provider","numPackets":6},"partialState":{"h":19,"t":114,"tokens":[12393,9384,9365,4455],"delegation":[11393,8384,8365,3455],"delegatorTokens":9999999930143,"jailed":[1000000000000017,1000000000000017,null,1000000000000017],"status":["unbonded","unbonding","bonded","unbonding"]}},{"ix":166,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":25,"t":150,"consumerPower":[null,null,9365,null],"outstandingDowntime":[false,false,false,false]}},{"ix":167,"action":{"kind":"Deliver","chain":"provider","numPackets":3},"partialState":{"h":19,"t":114,"tokens":[12393,9384,9365,4455],"delegation":[11393,8384,8365,3455],"delegatorTokens":9999999930143,"jailed":[1000000000000017,1000000000000017,null,1000000000000017],"status":["unbonded","unbonding","bonded","unbonding"]}},{"ix":168,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":169,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":26,"t":156,"consumerPower":[null,null,9365,null],"outstandingDowntime":[false,false,false,false]}},{"ix":170,"action":{"kind":"Deliver","chain":"consumer","numPackets":4},"partialState":{"h":26,"t":156,"consumerPower":[null,null,9365,null],"outstandingDowntime":[false,false,false,false]}},{"ix":171,"action":{"kind":"Undelegate","val":3,"amt":3256},"partialState":{"h":19,"t":114,"tokens":[12393,9384,9365,1199],"delegation":[11393,8384,8365,199],"delegatorTokens":9999999930143}},{"ix":172,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":20,"t":120,"tokens":[12393,9384,9365,1199],"delegation":[11393,8384,8365,199],"delegatorTokens":9999999948543,"jailed":[1000000000000017,1000000000000017,null,1000000000000017],"status":["unbonded","unbonding","bonded","unbonding"]}},{"ix":173,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":174,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":175,"action":{"kind":"Undelegate","val":2,"amt":1290},"partialState":{"h":20,"t":120,"tokens":[12393,9384,8075,1199],"delegation":[11393,8384,7075,199],"delegatorTokens":9999999948543}},{"ix":176,"action":{"kind":"Deliver","chain":"provider","numPackets":5},"partialState":{"h":20,"t":120,"tokens":[12393,9384,8075,1199],"delegation":[11393,8384,7075,199],"delegatorTokens":9999999948543,"jailed":[1000000000000017,1000000000000017,null,1000000000000017],"status":["unbonded","unbonding","bonded","unbonding"]}},{"ix":177,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":178,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":179,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":27,"t":162,"consumerPower":[null,null,9365,null],"outstandingDowntime":[false,false,false,false]}},{"ix":180,"action":{"kind":"Deliver","chain":"provider","numPackets":1},"partialState":{"h":20,"t":120,"tokens":[12393,9384,8075,1199],"delegation":[11393,8384,7075,199],"delegatorTokens":9999999948543,"jailed":[1000000000000017,1000000000000017,null,1000000000000017],"status":["unbonded","unbonding","bonded","unbonding"]}},{"ix":181,"action":{"kind":"Deliver","chain":"consumer","numPackets":4},"partialState":{"h":27,"t":162,"consumerPower":[null,null,9365,null],"outstandingDowntime":[false,false,false,false]}},{"ix":182,"action":{"kind":"Delegate","val":0,"amt":4762},"partialState":{"h":20,"t":120,"tokens":[17155,9384,8075,1199],"delegation":[16155,8384,7075,199],"delegatorTokens":9999999943781}},{"ix":183,"action":{"kind":"Undelegate","val":1,"amt":4296},"partialState":{"h":20,"t":120,"tokens":[17155,5088,8075,1199],"delegation":[16155,4088,7075,199],"delegatorTokens":9999999943781}},{"ix":184,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":185,"action":{"kind":"Deliver","chain":"consumer","numPackets":3},"partialState":{"h":27,"t":162,"consumerPower":[null,null,9365,null],"outstandingDowntime":[false,false,false,false]}},{"ix":186,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":21,"t":126,"tokens":[17155,5088,8075,1199],"delegation":[16155,4088,7075,199],"delegatorTokens":9999999948382,"jailed":[1000000000000017,1000000000000017,null,1000000000000017],"status":["unbonded","unbonded","bonded","unbonded"]}},{"ix":187,"action":{"kind":"Undelegate","val":0,"amt":2751},"partialState":{"h":21,"t":126,"tokens":[14404,5088,8075,1199],"delegation":[13404,4088,7075,199],"delegatorTokens":9999999948382}},{"ix":188,"action":{"kind":"Undelegate","val":1,"amt":2355},"partialState":{"h":21,"t":126,"tokens":[14404,2733,8075,1199],"delegation":[13404,1733,7075,199],"delegatorTokens":9999999948382}},{"ix":189,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":190,"action":{"kind":"Delegate","val":0,"amt":1751},"partialState":{"h":21,"t":126,"tokens":[16155,2733,8075,1199],"delegation":[15155,1733,7075,199],"delegatorTokens":9999999946631}},{"ix":191,"action":{"kind":"Delegate","val":3,"amt":3513},"partialState":{"h":21,"t":126,"tokens":[16155,2733,8075,4712],"delegation":[15155,1733,7075,3712],"delegatorTokens":9999999943118}},{"ix":192,"action":{"kind":"Undelegate","val":1,"amt":2434},"partialState":{"h":21,"t":126,"tokens":[16155,2733,8075,4712],"delegation":[15155,1733,7075,3712],"delegatorTokens":9999999943118}},{"ix":193,"action":{"kind":"Undelegate","val":1,"amt":2533},"partialState":{"h":21,"t":126,"tokens":[16155,2733,8075,4712],"delegation":[15155,1733,7075,3712],"delegatorTokens":9999999943118}},{"ix":194,"action":{"kind":"Undelegate","val":1,"amt":2739},"partialState":{"h":21,"t":126,"tokens":[16155,2733,8075,4712],"delegation":[15155,1733,7075,3712],"delegatorTokens":9999999943118}},{"ix":195,"action":{"kind":"Deliver","chain":"consumer","numPackets":4},"partialState":{"h":27,"t":162,"consumerPower":[null,null,9365,null],"outstandingDowntime":[false,false,false,false]}},{"ix":196,"action":{"kind":"Undelegate","val":2,"amt":4783},"partialState":{"h":21,"t":126,"tokens":[16155,2733,3292,4712],"delegation":[15155,1733,2292,3712],"delegatorTokens":9999999943118}},{"ix":197,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":198,"action":{"kind":"Deliver","chain":"consumer","numPackets":4},"partialState":{"h":27,"t":162,"consumerPower":[null,null,9365,null],"outstandingDowntime":[false,false,false,false]}},{"ix":199,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":22,"t":132,"tokens":[16155,2733,3292,4712],"delegation":[15155,1733,2292,3712],"delegatorTokens":9999999947242,"jailed":[1000000000000017,1000000000000017,null,1000000000000017],"status":["unbonded","unbonded","bonded","unbonded"]}}],"events":["send_downtime_slash_request","send_downtime_slash_request","send_downtime_slash_request","more_than_one_third_val_power_change","send_vsc_without_downtime_ack","receive_downtime_slash_request","jail","receive_downtime_slash_request","jail","receive_downtime_slash_request","jail","consumer_del_val","consumer_update_val","consumer_add_val","more_than_one_third_val_power_change","send_vsc_with_downtime_ack","insufficient_shares","send_vsc_without_downtime_ack","send_vsc_without_downtime_ack","send_vsc_not_because_change","send_vsc_without_downtime_ack","receive_downtime_slash_ack","receive_downtime_slash_ack","receive_downtime_slash_ack","insufficient_shares","consumer_del_val","consumer_add_val","consumer_del_val","insufficient_shares","consumer_send_maturation","send_vsc_not_because_change","send_vsc_without_downtime_ack","insufficient_shares","set_undel_hold_false","set_undel_hold_false","set_unval_hold_false","send_vsc_not_because_change","send_vsc_without_downtime_ack","send_vsc_without_downtime_ack","complete_unval_in_endblock","complete_undel_in_endblock","consumer_update_val","some_undels_expired_but_not_completed","send_vsc_not_because_change","send_vsc_without_downtime_ack","consumer_send_maturation","consumer_send_maturation","consumer_send_maturation","send_vsc_not_because_change","send_vsc_without_downtime_ack","send_vsc_not_because_change","send_vsc_without_downtime_ack","complete_undel_immediate","complete_undel_immediate","complete_undel_immediate","complete_undel_immediate","complete_undel_immediate","complete_undel_immediate","complete_undel_immediate","set_unval_hold_false","set_unval_hold_false","set_undel_hold_false","set_undel_hold_false","set_undel_hold_false","set_undel_hold_false","send_vsc_not_because_change","send_vsc_without_downtime_ack","consumer_send_maturation","consumer_send_maturation","complete_unval_in_endblock","complete_unval_in_endblock","complete_undel_in_endblock","send_vsc_without_downtime_ack","insufficient_shares","insufficient_shares","insufficient_shares","complete_undel_in_endblock","send_vsc_without_downtime_ack"]},{"meta":{"commit":"7ffd0c04e4205cbc9caf212abfe6c59ee43153bf"},"constants":{"P":"provider","C":"consumer","UNBONDING_SECONDS_P":70,"UNBONDING_SECONDS_C":50,"TRUSTING_SECONDS":49,"NUM_VALIDATORS":4,"MAX_VALIDATORS":2,"SLASH_DOUBLESIGN":0,"SLASH_DOWNTIME":0,"JAIL_SECONDS":999999999999999,"BLOCK_SECONDS":6,"INITIAL_DELEGATOR_TOKENS":10000000000000,"DELEGATE_AMT_MIN":1000,"DELEGATE_AMT_MAX":5000,"UNDELEGATE_AMT_MIN":1000,"UNDELEGATE_AMT_MAX":5000,"ISDOWNTIME_PROBABILITY":0.5,"MAX_NUM_PACKETS_FOR_DELIVER":6},"actions":[{"ix":0,"action":{"kind":"Deliver","chain":"consumer","numPackets":4},"partialState":{"h":1,"t":6,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":1,"action":{"kind":"Delegate","val":3,"amt":3409},"partialState":{"h":1,"t":6,"tokens":[5000,4000,3000,5409],"delegation":[4000,3000,2000,4409],"delegatorTokens":9999999996591}},{"ix":2,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":2,"t":12,"tokens":[5000,4000,3000,5409],"delegation":[4000,3000,2000,4409],"delegatorTokens":9999999996591,"jailed":[null,null,null,null],"status":["bonded","unbonding","unbonded","bonded"]}},{"ix":3,"action":{"kind":"Deliver","chain":"provider","numPackets":2},"partialState":{"h":2,"t":12,"tokens":[5000,4000,3000,5409],"delegation":[4000,3000,2000,4409],"delegatorTokens":9999999996591,"jailed":[null,null,null,null],"status":["bonded","unbonding","unbonded","bonded"]}},{"ix":4,"action":{"kind":"Deliver","chain":"consumer","numPackets":1},"partialState":{"h":1,"t":6,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":5,"action":{"kind":"Undelegate","val":2,"amt":1441},"partialState":{"h":2,"t":12,"tokens":[5000,4000,1559,5409],"delegation":[4000,3000,559,4409],"delegatorTokens":9999999996591}},{"ix":6,"action":{"kind":"Deliver","chain":"consumer","numPackets":6},"partialState":{"h":1,"t":6,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":7,"action":{"kind":"ConsumerSlash","val":1,"infractionHeight":0,"isDowntime":true},"partialState":{"h":1,"t":6,"outstandingDowntime":[false,true,false,false]}},{"ix":8,"action":{"kind":"ConsumerSlash","val":2,"infractionHeight":0,"isDowntime":true},"partialState":{"h":1,"t":6,"outstandingDowntime":[false,true,true,false]}},{"ix":9,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":10,"action":{"kind":"Delegate","val":1,"amt":2739},"partialState":{"h":2,"t":12,"tokens":[5000,6739,1559,5409],"delegation":[4000,5739,559,4409],"delegatorTokens":9999999993852}},{"ix":11,"action":{"kind":"ConsumerSlash","val":0,"infractionHeight":0,"isDowntime":true},"partialState":{"h":1,"t":6,"outstandingDowntime":[true,true,true,false]}},{"ix":12,"action":{"kind":"Undelegate","val":1,"amt":1551},"partialState":{"h":2,"t":12,"tokens":[5000,5188,1559,5409],"delegation":[4000,4188,559,4409],"delegatorTokens":9999999993852}},{"ix":13,"action":{"kind":"Deliver","chain":"consumer","numPackets":3},"partialState":{"h":1,"t":6,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[true,true,true,false]}},{"ix":14,"action":{"kind":"Delegate","val":2,"amt":2231},"partialState":{"h":2,"t":12,"tokens":[5000,5188,3790,5409],"delegation":[4000,4188,2790,4409],"delegatorTokens":9999999991621}},{"ix":15,"action":{"kind":"Deliver","chain":"provider","numPackets":3},"partialState":{"h":2,"t":12,"tokens":[5000,5188,3790,5409],"delegation":[4000,4188,2790,4409],"delegatorTokens":9999999991621,"jailed":[null,null,null,null],"status":["bonded","unbonding","unbonded","bonded"]}},{"ix":16,"action":{"kind":"Undelegate","val":1,"amt":1085},"partialState":{"h":2,"t":12,"tokens":[5000,4103,3790,5409],"delegation":[4000,3103,2790,4409],"delegatorTokens":9999999991621}},{"ix":17,"action":{"kind":"Deliver","chain":"provider","numPackets":3},"partialState":{"h":2,"t":12,"tokens":[5000,4103,3790,5409],"delegation":[4000,3103,2790,4409],"delegatorTokens":9999999991621,"jailed":[null,null,null,null],"status":["bonded","unbonding","unbonded","bonded"]}},{"ix":18,"action":{"kind":"Delegate","val":2,"amt":4995},"partialState":{"h":2,"t":12,"tokens":[5000,4103,8785,5409],"delegation":[4000,3103,7785,4409],"delegatorTokens":9999999986626}},{"ix":19,"action":{"kind":"Undelegate","val":3,"amt":1424},"partialState":{"h":2,"t":12,"tokens":[5000,4103,8785,3985],"delegation":[4000,3103,7785,2985],"delegatorTokens":9999999986626}},{"ix":20,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":3,"t":18,"tokens":[5000,4103,8785,3985],"delegation":[4000,3103,7785,2985],"delegatorTokens":9999999986626,"jailed":[null,null,null,null],"status":["bonded","unbonding","bonded","unbonding"]}},{"ix":21,"action":{"kind":"Delegate","val":0,"amt":4228},"partialState":{"h":3,"t":18,"tokens":[9228,4103,8785,3985],"delegation":[8228,3103,7785,2985],"delegatorTokens":9999999982398}},{"ix":22,"action":{"kind":"Delegate","val":3,"amt":2339},"partialState":{"h":3,"t":18,"tokens":[9228,4103,8785,6324],"delegation":[8228,3103,7785,5324],"delegatorTokens":9999999980059}},{"ix":23,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":2,"t":12,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[true,true,true,false]}},{"ix":24,"action":{"kind":"Deliver","chain":"provider","numPackets":5},"partialState":{"h":3,"t":18,"tokens":[9228,4103,8785,6324],"delegation":[8228,3103,7785,5324],"delegatorTokens":9999999980059,"jailed":[null,null,null,null],"status":["bonded","unbonding","bonded","unbonding"]}},{"ix":25,"action":{"kind":"Undelegate","val":1,"amt":3469},"partialState":{"h":3,"t":18,"tokens":[9228,4103,8785,6324],"delegation":[8228,3103,7785,5324],"delegatorTokens":9999999980059}},{"ix":26,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":3,"t":18,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[true,true,true,false]}},{"ix":27,"action":{"kind":"Deliver","chain":"provider","numPackets":3},"partialState":{"h":3,"t":18,"tokens":[9228,4103,8785,6324],"delegation":[8228,3103,7785,5324],"delegatorTokens":9999999980059,"jailed":[null,null,null,null],"status":["bonded","unbonding","bonded","unbonding"]}},{"ix":28,"action":{"kind":"Undelegate","val":3,"amt":3326},"partialState":{"h":3,"t":18,"tokens":[9228,4103,8785,2998],"delegation":[8228,3103,7785,1998],"delegatorTokens":9999999980059}},{"ix":29,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":4,"t":24,"tokens":[9228,4103,8785,2998],"delegation":[8228,3103,7785,1998],"delegatorTokens":9999999980059,"jailed":[1000000000000017,1000000000000017,1000000000000017,null],"status":["bonded","unbonding","bonded","unbonding"]}},{"ix":30,"action":{"kind":"Delegate","val":1,"amt":3785},"partialState":{"h":4,"t":24,"tokens":[9228,7888,8785,2998],"delegation":[8228,6888,7785,1998],"delegatorTokens":9999999976274}},{"ix":31,"action":{"kind":"Undelegate","val":2,"amt":4796},"partialState":{"h":4,"t":24,"tokens":[9228,7888,3989,2998],"delegation":[8228,6888,2989,1998],"delegatorTokens":9999999976274}},{"ix":32,"action":{"kind":"Delegate","val":0,"amt":2078},"partialState":{"h":4,"t":24,"tokens":[11306,7888,3989,2998],"delegation":[10306,6888,2989,1998],"delegatorTokens":9999999974196}},{"ix":33,"action":{"kind":"Deliver","chain":"provider","numPackets":5},"partialState":{"h":4,"t":24,"tokens":[11306,7888,3989,2998],"delegation":[10306,6888,2989,1998],"delegatorTokens":9999999974196,"jailed":[1000000000000017,1000000000000017,1000000000000017,null],"status":["bonded","unbonding","bonded","unbonding"]}},{"ix":34,"action":{"kind":"Deliver","chain":"provider","numPackets":4},"partialState":{"h":4,"t":24,"tokens":[11306,7888,3989,2998],"delegation":[10306,6888,2989,1998],"delegatorTokens":9999999974196,"jailed":[1000000000000017,1000000000000017,1000000000000017,null],"status":["bonded","unbonding","bonded","unbonding"]}},{"ix":35,"action":{"kind":"Undelegate","val":1,"amt":3925},"partialState":{"h":4,"t":24,"tokens":[11306,3963,3989,2998],"delegation":[10306,2963,2989,1998],"delegatorTokens":9999999974196}},{"ix":36,"action":{"kind":"Deliver","chain":"consumer","numPackets":1},"partialState":{"h":3,"t":18,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[true,true,true,false]}},{"ix":37,"action":{"kind":"Deliver","chain":"consumer","numPackets":6},"partialState":{"h":3,"t":18,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[true,true,true,false]}},{"ix":38,"action":{"kind":"Delegate","val":2,"amt":4507},"partialState":{"h":4,"t":24,"tokens":[11306,3963,8496,2998],"delegation":[10306,2963,7496,1998],"delegatorTokens":9999999969689}},{"ix":39,"action":{"kind":"Undelegate","val":2,"amt":1704},"partialState":{"h":4,"t":24,"tokens":[11306,3963,6792,2998],"delegation":[10306,2963,5792,1998],"delegatorTokens":9999999969689}},{"ix":40,"action":{"kind":"Delegate","val":3,"amt":2845},"partialState":{"h":4,"t":24,"tokens":[11306,3963,6792,5843],"delegation":[10306,2963,5792,4843],"delegatorTokens":9999999966844}},{"ix":41,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":42,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":43,"action":{"kind":"Delegate","val":0,"amt":2836},"partialState":{"h":4,"t":24,"tokens":[14142,3963,6792,5843],"delegation":[13142,2963,5792,4843],"delegatorTokens":9999999964008}},{"ix":44,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":4,"t":24,"consumerPower":[5000,null,8785,null],"outstandingDowntime":[true,true,true,false]}},{"ix":45,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":5,"t":30,"tokens":[14142,3963,6792,5843],"delegation":[13142,2963,5792,4843],"delegatorTokens":9999999964008,"jailed":[1000000000000017,1000000000000017,1000000000000017,null],"status":["unbonding","unbonding","unbonding","bonded"]}},{"ix":46,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":47,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":48,"action":{"kind":"Delegate","val":0,"amt":4931},"partialState":{"h":5,"t":30,"tokens":[19073,3963,6792,5843],"delegation":[18073,2963,5792,4843],"delegatorTokens":9999999959077}},{"ix":49,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":5,"t":30,"consumerPower":[5000,null,8785,null],"outstandingDowntime":[true,true,true,false]}},{"ix":50,"action":{"kind":"Delegate","val":2,"amt":3222},"partialState":{"h":5,"t":30,"tokens":[19073,3963,10014,5843],"delegation":[18073,2963,9014,4843],"delegatorTokens":9999999955855}},{"ix":51,"action":{"kind":"Deliver","chain":"provider","numPackets":3},"partialState":{"h":5,"t":30,"tokens":[19073,3963,10014,5843],"delegation":[18073,2963,9014,4843],"delegatorTokens":9999999955855,"jailed":[1000000000000017,1000000000000017,1000000000000017,null],"status":["unbonding","unbonding","unbonding","bonded"]}},{"ix":52,"action":{"kind":"Delegate","val":2,"amt":2960},"partialState":{"h":5,"t":30,"tokens":[19073,3963,12974,5843],"delegation":[18073,2963,11974,4843],"delegatorTokens":9999999952895}},{"ix":53,"action":{"kind":"Undelegate","val":2,"amt":3694},"partialState":{"h":5,"t":30,"tokens":[19073,3963,9280,5843],"delegation":[18073,2963,8280,4843],"delegatorTokens":9999999952895}},{"ix":54,"action":{"kind":"Deliver","chain":"provider","numPackets":3},"partialState":{"h":5,"t":30,"tokens":[19073,3963,9280,5843],"delegation":[18073,2963,8280,4843],"delegatorTokens":9999999952895,"jailed":[1000000000000017,1000000000000017,1000000000000017,null],"status":["unbonding","unbonding","unbonding","bonded"]}},{"ix":55,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":6,"t":36,"consumerPower":[5000,null,8785,null],"outstandingDowntime":[true,true,true,false]}},{"ix":56,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":7,"t":42,"consumerPower":[5000,null,8785,null],"outstandingDowntime":[true,true,true,false]}},{"ix":57,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":6,"t":36,"tokens":[19073,3963,9280,5843],"delegation":[18073,2963,8280,4843],"delegatorTokens":9999999952895,"jailed":[1000000000000017,1000000000000017,1000000000000017,null],"status":["unbonding","unbonding","unbonding","bonded"]}},{"ix":58,"action":{"kind":"Undelegate","val":3,"amt":1202},"partialState":{"h":6,"t":36,"tokens":[19073,3963,9280,4641],"delegation":[18073,2963,8280,3641],"delegatorTokens":9999999952895}},{"ix":59,"action":{"kind":"Undelegate","val":1,"amt":3850},"partialState":{"h":6,"t":36,"tokens":[19073,3963,9280,4641],"delegation":[18073,2963,8280,3641],"delegatorTokens":9999999952895}},{"ix":60,"action":{"kind":"Undelegate","val":2,"amt":4507},"partialState":{"h":6,"t":36,"tokens":[19073,3963,4773,4641],"delegation":[18073,2963,3773,3641],"delegatorTokens":9999999952895}},{"ix":61,"action":{"kind":"Delegate","val":0,"amt":3771},"partialState":{"h":6,"t":36,"tokens":[22844,3963,4773,4641],"delegation":[21844,2963,3773,3641],"delegatorTokens":9999999949124}},{"ix":62,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":63,"action":{"kind":"Undelegate","val":0,"amt":1303},"partialState":{"h":6,"t":36,"tokens":[21541,3963,4773,4641],"delegation":[20541,2963,3773,3641],"delegatorTokens":9999999949124}},{"ix":64,"action":{"kind":"Undelegate","val":1,"amt":1890},"partialState":{"h":6,"t":36,"tokens":[21541,2073,4773,4641],"delegation":[20541,1073,3773,3641],"delegatorTokens":9999999949124}},{"ix":65,"action":{"kind":"Deliver","chain":"consumer","numPackets":4},"partialState":{"h":7,"t":42,"consumerPower":[5000,null,8785,null],"outstandingDowntime":[false,false,false,false]}},{"ix":66,"action":{"kind":"Delegate","val":0,"amt":2019},"partialState":{"h":6,"t":36,"tokens":[23560,2073,4773,4641],"delegation":[22560,1073,3773,3641],"delegatorTokens":9999999947105}},{"ix":67,"action":{"kind":"Undelegate","val":2,"amt":1141},"partialState":{"h":6,"t":36,"tokens":[23560,2073,3632,4641],"delegation":[22560,1073,2632,3641],"delegatorTokens":9999999947105}},{"ix":68,"action":{"kind":"Delegate","val":0,"amt":2556},"partialState":{"h":6,"t":36,"tokens":[26116,2073,3632,4641],"delegation":[25116,1073,2632,3641],"delegatorTokens":9999999944549}},{"ix":69,"action":{"kind":"Undelegate","val":2,"amt":3372},"partialState":{"h":6,"t":36,"tokens":[26116,2073,3632,4641],"delegation":[25116,1073,2632,3641],"delegatorTokens":9999999944549}},{"ix":70,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":71,"action":{"kind":"Deliver","chain":"consumer","numPackets":2},"partialState":{"h":7,"t":42,"consumerPower":[5000,null,8785,null],"outstandingDowntime":[false,false,false,false]}},{"ix":72,"action":{"kind":"Delegate","val":2,"amt":2203},"partialState":{"h":6,"t":36,"tokens":[26116,2073,5835,4641],"delegation":[25116,1073,4835,3641],"delegatorTokens":9999999942346}},{"ix":73,"action":{"kind":"Delegate","val":1,"amt":4028},"partialState":{"h":6,"t":36,"tokens":[26116,6101,5835,4641],"delegation":[25116,5101,4835,3641],"delegatorTokens":9999999938318}},{"ix":74,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":75,"action":{"kind":"Deliver","chain":"provider","numPackets":1},"partialState":{"h":6,"t":36,"tokens":[26116,6101,5835,4641],"delegation":[25116,5101,4835,3641],"delegatorTokens":9999999938318,"jailed":[1000000000000017,1000000000000017,1000000000000017,null],"status":["unbonding","unbonding","unbonding","bonded"]}},{"ix":76,"action":{"kind":"Delegate","val":2,"amt":4773},"partialState":{"h":6,"t":36,"tokens":[26116,6101,10608,4641],"delegation":[25116,5101,9608,3641],"delegatorTokens":9999999933545}},{"ix":77,"action":{"kind":"Undelegate","val":2,"amt":2448},"partialState":{"h":6,"t":36,"tokens":[26116,6101,8160,4641],"delegation":[25116,5101,7160,3641],"delegatorTokens":9999999933545}},{"ix":78,"action":{"kind":"Delegate","val":3,"amt":1972},"partialState":{"h":6,"t":36,"tokens":[26116,6101,8160,6613],"delegation":[25116,5101,7160,5613],"delegatorTokens":9999999931573}},{"ix":79,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":7,"t":42,"tokens":[26116,6101,8160,6613],"delegation":[25116,5101,7160,5613],"delegatorTokens":9999999931573,"jailed":[1000000000000017,1000000000000017,1000000000000017,null],"status":["unbonding","unbonding","unbonding","bonded"]}},{"ix":80,"action":{"kind":"Undelegate","val":0,"amt":2197},"partialState":{"h":7,"t":42,"tokens":[23919,6101,8160,6613],"delegation":[22919,5101,7160,5613],"delegatorTokens":9999999931573}},{"ix":81,"action":{"kind":"Undelegate","val":3,"amt":1544},"partialState":{"h":7,"t":42,"tokens":[23919,6101,8160,5069],"delegation":[22919,5101,7160,4069],"delegatorTokens":9999999931573}},{"ix":82,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":8,"t":48,"consumerPower":[null,null,null,5843],"outstandingDowntime":[false,false,false,false]}},{"ix":83,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":9,"t":54,"consumerPower":[null,null,null,5843],"outstandingDowntime":[false,false,false,false]}},{"ix":84,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":85,"action":{"kind":"Deliver","chain":"provider","numPackets":2},"partialState":{"h":7,"t":42,"tokens":[23919,6101,8160,5069],"delegation":[22919,5101,7160,4069],"delegatorTokens":9999999931573,"jailed":[1000000000000017,1000000000000017,1000000000000017,null],"status":["unbonding","unbonding","unbonding","bonded"]}},{"ix":86,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":87,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":10,"t":60,"consumerPower":[null,null,null,5843],"outstandingDowntime":[false,false,false,false]}},{"ix":88,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":8,"t":48,"tokens":[23919,6101,8160,5069],"delegation":[22919,5101,7160,4069],"delegatorTokens":9999999931573,"jailed":[1000000000000017,1000000000000017,1000000000000017,null],"status":["unbonding","unbonding","unbonding","bonded"]}},{"ix":89,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":90,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":9,"t":54,"tokens":[23919,6101,8160,5069],"delegation":[22919,5101,7160,4069],"delegatorTokens":9999999931573,"jailed":[1000000000000017,1000000000000017,1000000000000017,null],"status":["unbonding","unbonding","unbonding","bonded"]}},{"ix":91,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":10,"t":60,"tokens":[23919,6101,8160,5069],"delegation":[22919,5101,7160,4069],"delegatorTokens":9999999931573,"jailed":[1000000000000017,1000000000000017,1000000000000017,null],"status":["unbonding","unbonding","unbonding","bonded"]}},{"ix":92,"action":{"kind":"Deliver","chain":"provider","numPackets":5},"partialState":{"h":10,"t":60,"tokens":[23919,6101,8160,5069],"delegation":[22919,5101,7160,4069],"delegatorTokens":9999999931573,"jailed":[1000000000000017,1000000000000017,1000000000000017,null],"status":["unbonding","unbonding","unbonding","bonded"]}},{"ix":93,"action":{"kind":"Deliver","chain":"provider","numPackets":4},"partialState":{"h":10,"t":60,"tokens":[23919,6101,8160,5069],"delegation":[22919,5101,7160,4069],"delegatorTokens":9999999931573,"jailed":[1000000000000017,1000000000000017,1000000000000017,null],"status":["unbonding","unbonding","unbonding","bonded"]}},{"ix":94,"action":{"kind":"Delegate","val":2,"amt":4957},"partialState":{"h":10,"t":60,"tokens":[23919,6101,13117,5069],"delegation":[22919,5101,12117,4069],"delegatorTokens":9999999926616}},{"ix":95,"action":{"kind":"Undelegate","val":2,"amt":3447},"partialState":{"h":10,"t":60,"tokens":[23919,6101,9670,5069],"delegation":[22919,5101,8670,4069],"delegatorTokens":9999999926616}},{"ix":96,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":11,"t":66,"consumerPower":[null,null,null,5843],"outstandingDowntime":[false,false,false,false]}},{"ix":97,"action":{"kind":"Deliver","chain":"consumer","numPackets":2},"partialState":{"h":11,"t":66,"consumerPower":[null,null,null,5843],"outstandingDowntime":[false,false,false,false]}},{"ix":98,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":99,"action":{"kind":"Deliver","chain":"provider","numPackets":6},"partialState":{"h":10,"t":60,"tokens":[23919,6101,9670,5069],"delegation":[22919,5101,8670,4069],"delegatorTokens":9999999926616,"jailed":[1000000000000017,1000000000000017,1000000000000017,null],"status":["unbonding","unbonding","unbonding","bonded"]}},{"ix":100,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":101,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":102,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":103,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":11,"t":66,"tokens":[23919,6101,9670,5069],"delegation":[22919,5101,8670,4069],"delegatorTokens":9999999926616,"jailed":[1000000000000017,1000000000000017,1000000000000017,null],"status":["unbonding","unbonding","unbonding","bonded"]}},{"ix":104,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":105,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":12,"t":72,"consumerPower":[null,null,null,6613],"outstandingDowntime":[false,false,false,false]}},{"ix":106,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":13,"t":78,"consumerPower":[null,null,null,6613],"outstandingDowntime":[false,false,false,false]}},{"ix":107,"action":{"kind":"Deliver","chain":"consumer","numPackets":6},"partialState":{"h":13,"t":78,"consumerPower":[null,null,null,6613],"outstandingDowntime":[false,false,false,false]}},{"ix":108,"action":{"kind":"Delegate","val":2,"amt":2217},"partialState":{"h":11,"t":66,"tokens":[23919,6101,11887,5069],"delegation":[22919,5101,10887,4069],"delegatorTokens":9999999924399}},{"ix":109,"action":{"kind":"Delegate","val":2,"amt":2899},"partialState":{"h":11,"t":66,"tokens":[23919,6101,14786,5069],"delegation":[22919,5101,13786,4069],"delegatorTokens":9999999921500}},{"ix":110,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":14,"t":84,"consumerPower":[null,null,null,5069],"outstandingDowntime":[false,false,false,false]}},{"ix":111,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":12,"t":72,"tokens":[23919,6101,14786,5069],"delegation":[22919,5101,13786,4069],"delegatorTokens":9999999921500,"jailed":[1000000000000017,1000000000000017,1000000000000017,null],"status":["unbonding","unbonding","unbonding","bonded"]}},{"ix":112,"action":{"kind":"Undelegate","val":3,"amt":1123},"partialState":{"h":12,"t":72,"tokens":[23919,6101,14786,3946],"delegation":[22919,5101,13786,2946],"delegatorTokens":9999999921500}},{"ix":113,"action":{"kind":"Deliver","chain":"provider","numPackets":5},"partialState":{"h":12,"t":72,"tokens":[23919,6101,14786,3946],"delegation":[22919,5101,13786,2946],"delegatorTokens":9999999921500,"jailed":[1000000000000017,1000000000000017,1000000000000017,null],"status":["unbonding","unbonding","unbonding","bonded"]}},{"ix":114,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":15,"t":90,"consumerPower":[null,null,null,5069],"outstandingDowntime":[false,false,false,false]}},{"ix":115,"action":{"kind":"Deliver","chain":"consumer","numPackets":4},"partialState":{"h":15,"t":90,"consumerPower":[null,null,null,5069],"outstandingDowntime":[false,false,false,false]}},{"ix":116,"action":{"kind":"Delegate","val":1,"amt":2318},"partialState":{"h":12,"t":72,"tokens":[23919,8419,14786,3946],"delegation":[22919,7419,13786,2946],"delegatorTokens":9999999919182}},{"ix":117,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":13,"t":78,"tokens":[23919,8419,14786,3946],"delegation":[22919,7419,13786,2946],"delegatorTokens":9999999919182,"jailed":[1000000000000017,1000000000000017,1000000000000017,null],"status":["unbonding","unbonding","unbonding","bonded"]}},{"ix":118,"action":{"kind":"Deliver","chain":"provider","numPackets":1},"partialState":{"h":13,"t":78,"tokens":[23919,8419,14786,3946],"delegation":[22919,7419,13786,2946],"delegatorTokens":9999999919182,"jailed":[1000000000000017,1000000000000017,1000000000000017,null],"status":["unbonding","unbonding","unbonding","bonded"]}},{"ix":119,"action":{"kind":"Deliver","chain":"consumer","numPackets":4},"partialState":{"h":15,"t":90,"consumerPower":[null,null,null,5069],"outstandingDowntime":[false,false,false,false]}},{"ix":120,"action":{"kind":"Undelegate","val":2,"amt":3239},"partialState":{"h":13,"t":78,"tokens":[23919,8419,11547,3946],"delegation":[22919,7419,10547,2946],"delegatorTokens":9999999919182}},{"ix":121,"action":{"kind":"Undelegate","val":2,"amt":1682},"partialState":{"h":13,"t":78,"tokens":[23919,8419,9865,3946],"delegation":[22919,7419,8865,2946],"delegatorTokens":9999999919182}},{"ix":122,"action":{"kind":"Undelegate","val":1,"amt":1882},"partialState":{"h":13,"t":78,"tokens":[23919,6537,9865,3946],"delegation":[22919,5537,8865,2946],"delegatorTokens":9999999919182}},{"ix":123,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":16,"t":96,"consumerPower":[null,null,null,5069],"outstandingDowntime":[false,false,false,false]}},{"ix":124,"action":{"kind":"Undelegate","val":0,"amt":2579},"partialState":{"h":13,"t":78,"tokens":[21340,6537,9865,3946],"delegation":[20340,5537,8865,2946],"delegatorTokens":9999999919182}},{"ix":125,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":126,"action":{"kind":"Delegate","val":3,"amt":1740},"partialState":{"h":13,"t":78,"tokens":[21340,6537,9865,5686],"delegation":[20340,5537,8865,4686],"delegatorTokens":9999999917442}},{"ix":127,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":128,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":129,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":17,"t":102,"consumerPower":[null,null,null,5069],"outstandingDowntime":[false,false,false,false]}},{"ix":130,"action":{"kind":"Delegate","val":0,"amt":4589},"partialState":{"h":13,"t":78,"tokens":[25929,6537,9865,5686],"delegation":[24929,5537,8865,4686],"delegatorTokens":9999999912853}},{"ix":131,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":18,"t":108,"consumerPower":[null,null,null,5069],"outstandingDowntime":[false,false,false,false]}},{"ix":132,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":19,"t":114,"consumerPower":[null,null,null,5069],"outstandingDowntime":[false,false,false,false]}},{"ix":133,"action":{"kind":"Undelegate","val":1,"amt":4379},"partialState":{"h":13,"t":78,"tokens":[25929,2158,9865,5686],"delegation":[24929,1158,8865,4686],"delegatorTokens":9999999912853}},{"ix":134,"action":{"kind":"Undelegate","val":1,"amt":2988},"partialState":{"h":13,"t":78,"tokens":[25929,2158,9865,5686],"delegation":[24929,1158,8865,4686],"delegatorTokens":9999999912853}},{"ix":135,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":14,"t":84,"tokens":[25929,2158,9865,5686],"delegation":[24929,1158,8865,4686],"delegatorTokens":9999999912853,"jailed":[1000000000000017,1000000000000017,1000000000000017,null],"status":["unbonding","unbonded","unbonding","bonded"]}},{"ix":136,"action":{"kind":"Undelegate","val":0,"amt":1821},"partialState":{"h":14,"t":84,"tokens":[24108,2158,9865,5686],"delegation":[23108,1158,8865,4686],"delegatorTokens":9999999912853}},{"ix":137,"action":{"kind":"Undelegate","val":1,"amt":2679},"partialState":{"h":14,"t":84,"tokens":[24108,2158,9865,5686],"delegation":[23108,1158,8865,4686],"delegatorTokens":9999999912853}},{"ix":138,"action":{"kind":"Undelegate","val":0,"amt":2025},"partialState":{"h":14,"t":84,"tokens":[22083,2158,9865,5686],"delegation":[21083,1158,8865,4686],"delegatorTokens":9999999912853}},{"ix":139,"action":{"kind":"Delegate","val":2,"amt":2214},"partialState":{"h":14,"t":84,"tokens":[22083,2158,12079,5686],"delegation":[21083,1158,11079,4686],"delegatorTokens":9999999910639}},{"ix":140,"action":{"kind":"Delegate","val":2,"amt":2348},"partialState":{"h":14,"t":84,"tokens":[22083,2158,14427,5686],"delegation":[21083,1158,13427,4686],"delegatorTokens":9999999908291}},{"ix":141,"action":{"kind":"Deliver","chain":"consumer","numPackets":6},"partialState":{"h":19,"t":114,"consumerPower":[null,null,null,5069],"outstandingDowntime":[false,false,false,false]}},{"ix":142,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":143,"action":{"kind":"Undelegate","val":1,"amt":2997},"partialState":{"h":14,"t":84,"tokens":[22083,2158,14427,5686],"delegation":[21083,1158,13427,4686],"delegatorTokens":9999999908291}},{"ix":144,"action":{"kind":"Delegate","val":1,"amt":1865},"partialState":{"h":14,"t":84,"tokens":[22083,4023,14427,5686],"delegation":[21083,3023,13427,4686],"delegatorTokens":9999999906426}},{"ix":145,"action":{"kind":"Undelegate","val":2,"amt":2439},"partialState":{"h":14,"t":84,"tokens":[22083,4023,11988,5686],"delegation":[21083,3023,10988,4686],"delegatorTokens":9999999906426}},{"ix":146,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":20,"t":120,"consumerPower":[null,null,null,3946],"outstandingDowntime":[false,false,false,false]}},{"ix":147,"action":{"kind":"Deliver","chain":"provider","numPackets":4},"partialState":{"h":14,"t":84,"tokens":[22083,4023,11988,5686],"delegation":[21083,3023,10988,4686],"delegatorTokens":9999999906426,"jailed":[1000000000000017,1000000000000017,1000000000000017,null],"status":["unbonding","unbonded","unbonding","bonded"]}},{"ix":148,"action":{"kind":"Delegate","val":1,"amt":2642},"partialState":{"h":14,"t":84,"tokens":[22083,6665,11988,5686],"delegation":[21083,5665,10988,4686],"delegatorTokens":9999999903784}},{"ix":149,"action":{"kind":"Deliver","chain":"provider","numPackets":4},"partialState":{"h":14,"t":84,"tokens":[22083,6665,11988,5686],"delegation":[21083,5665,10988,4686],"delegatorTokens":9999999903784,"jailed":[1000000000000017,1000000000000017,1000000000000017,null],"status":["unbonding","unbonded","unbonding","bonded"]}},{"ix":150,"action":{"kind":"Deliver","chain":"provider","numPackets":6},"partialState":{"h":14,"t":84,"tokens":[22083,6665,11988,5686],"delegation":[21083,5665,10988,4686],"delegatorTokens":9999999903784,"jailed":[1000000000000017,1000000000000017,1000000000000017,null],"status":["unbonding","unbonded","unbonding","bonded"]}},{"ix":151,"action":{"kind":"Deliver","chain":"provider","numPackets":1},"partialState":{"h":14,"t":84,"tokens":[22083,6665,11988,5686],"delegation":[21083,5665,10988,4686],"delegatorTokens":9999999903784,"jailed":[1000000000000017,1000000000000017,1000000000000017,null],"status":["unbonding","unbonded","unbonding","bonded"]}},{"ix":152,"action":{"kind":"Delegate","val":1,"amt":3321},"partialState":{"h":14,"t":84,"tokens":[22083,9986,11988,5686],"delegation":[21083,8986,10988,4686],"delegatorTokens":9999999900463}},{"ix":153,"action":{"kind":"Deliver","chain":"provider","numPackets":5},"partialState":{"h":14,"t":84,"tokens":[22083,9986,11988,5686],"delegation":[21083,8986,10988,4686],"delegatorTokens":9999999900463,"jailed":[1000000000000017,1000000000000017,1000000000000017,null],"status":["unbonding","unbonded","unbonding","bonded"]}},{"ix":154,"action":{"kind":"Undelegate","val":0,"amt":1397},"partialState":{"h":14,"t":84,"tokens":[20686,9986,11988,5686],"delegation":[19686,8986,10988,4686],"delegatorTokens":9999999900463}},{"ix":155,"action":{"kind":"Deliver","chain":"consumer","numPackets":3},"partialState":{"h":20,"t":120,"consumerPower":[null,null,null,3946],"outstandingDowntime":[false,false,false,false]}},{"ix":156,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":157,"action":{"kind":"Undelegate","val":1,"amt":4350},"partialState":{"h":14,"t":84,"tokens":[20686,5636,11988,5686],"delegation":[19686,4636,10988,4686],"delegatorTokens":9999999900463}},{"ix":158,"action":{"kind":"Delegate","val":0,"amt":3511},"partialState":{"h":14,"t":84,"tokens":[24197,5636,11988,5686],"delegation":[23197,4636,10988,4686],"delegatorTokens":9999999896952}},{"ix":159,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":15,"t":90,"tokens":[24197,5636,11988,5686],"delegation":[23197,4636,10988,4686],"delegatorTokens":9999999902453,"jailed":[1000000000000017,1000000000000017,1000000000000017,null],"status":["unbonding","unbonded","unbonding","bonded"]}},{"ix":160,"action":{"kind":"Deliver","chain":"consumer","numPackets":5},"partialState":{"h":20,"t":120,"consumerPower":[null,null,null,3946],"outstandingDowntime":[false,false,false,false]}},{"ix":161,"action":{"kind":"Undelegate","val":1,"amt":4527},"partialState":{"h":15,"t":90,"tokens":[24197,1109,11988,5686],"delegation":[23197,109,10988,4686],"delegatorTokens":9999999902453}},{"ix":162,"action":{"kind":"Deliver","chain":"consumer","numPackets":2},"partialState":{"h":20,"t":120,"consumerPower":[null,null,null,3946],"outstandingDowntime":[false,false,false,false]}},{"ix":163,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":21,"t":126,"consumerPower":[null,null,null,5686],"outstandingDowntime":[false,false,false,false]}},{"ix":164,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":16,"t":96,"tokens":[24197,1109,11988,5686],"delegation":[23197,109,10988,4686],"delegatorTokens":9999999905779,"jailed":[1000000000000017,1000000000000017,1000000000000017,null],"status":["unbonding","unbonded","unbonding","bonded"]}},{"ix":165,"action":{"kind":"Undelegate","val":2,"amt":4095},"partialState":{"h":16,"t":96,"tokens":[24197,1109,7893,5686],"delegation":[23197,109,6893,4686],"delegatorTokens":9999999905779}},{"ix":166,"action":{"kind":"Deliver","chain":"provider","numPackets":4},"partialState":{"h":16,"t":96,"tokens":[24197,1109,7893,5686],"delegation":[23197,109,6893,4686],"delegatorTokens":9999999905779,"jailed":[1000000000000017,1000000000000017,1000000000000017,null],"status":["unbonding","unbonded","unbonding","bonded"]}},{"ix":167,"action":{"kind":"Deliver","chain":"consumer","numPackets":2},"partialState":{"h":21,"t":126,"consumerPower":[null,null,null,5686],"outstandingDowntime":[false,false,false,false]}},{"ix":168,"action":{"kind":"Delegate","val":2,"amt":3354},"partialState":{"h":16,"t":96,"tokens":[24197,1109,11247,5686],"delegation":[23197,109,10247,4686],"delegatorTokens":9999999902425}},{"ix":169,"action":{"kind":"Delegate","val":3,"amt":1689},"partialState":{"h":16,"t":96,"tokens":[24197,1109,11247,7375],"delegation":[23197,109,10247,6375],"delegatorTokens":9999999900736}},{"ix":170,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":22,"t":132,"consumerPower":[null,null,null,5686],"outstandingDowntime":[false,false,false,false]}},{"ix":171,"action":{"kind":"Undelegate","val":1,"amt":4392},"partialState":{"h":16,"t":96,"tokens":[24197,1109,11247,7375],"delegation":[23197,109,10247,6375],"delegatorTokens":9999999900736}},{"ix":172,"action":{"kind":"Delegate","val":1,"amt":3562},"partialState":{"h":16,"t":96,"tokens":[24197,4671,11247,7375],"delegation":[23197,3671,10247,6375],"delegatorTokens":9999999897174}},{"ix":173,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":174,"action":{"kind":"Undelegate","val":0,"amt":3579},"partialState":{"h":16,"t":96,"tokens":[20618,4671,11247,7375],"delegation":[19618,3671,10247,6375],"delegatorTokens":9999999897174}},{"ix":175,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":176,"action":{"kind":"Deliver","chain":"provider","numPackets":6},"partialState":{"h":16,"t":96,"tokens":[20618,4671,11247,7375],"delegation":[19618,3671,10247,6375],"delegatorTokens":9999999897174,"jailed":[1000000000000017,1000000000000017,1000000000000017,null],"status":["unbonding","unbonded","unbonding","bonded"]}},{"ix":177,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":17,"t":102,"tokens":[20618,4671,11247,7375],"delegation":[19618,3671,10247,6375],"delegatorTokens":9999999907599,"jailed":[1000000000000017,1000000000000017,1000000000000017,null],"status":["unbonded","unbonded","unbonded","bonded"]}},{"ix":178,"action":{"kind":"Deliver","chain":"provider","numPackets":4},"partialState":{"h":17,"t":102,"tokens":[20618,4671,11247,7375],"delegation":[19618,3671,10247,6375],"delegatorTokens":9999999907599,"jailed":[1000000000000017,1000000000000017,1000000000000017,null],"status":["unbonded","unbonded","unbonded","bonded"]}},{"ix":179,"action":{"kind":"Deliver","chain":"provider","numPackets":5},"partialState":{"h":17,"t":102,"tokens":[20618,4671,11247,7375],"delegation":[19618,3671,10247,6375],"delegatorTokens":9999999907599,"jailed":[1000000000000017,1000000000000017,1000000000000017,null],"status":["unbonded","unbonded","unbonded","bonded"]}},{"ix":180,"action":{"kind":"Undelegate","val":0,"amt":2437},"partialState":{"h":17,"t":102,"tokens":[18181,4671,11247,7375],"delegation":[17181,3671,10247,6375],"delegatorTokens":9999999907599}},{"ix":181,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":182,"action":{"kind":"Undelegate","val":0,"amt":1232},"partialState":{"h":17,"t":102,"tokens":[16949,4671,11247,7375],"delegation":[15949,3671,10247,6375],"delegatorTokens":9999999907599}},{"ix":183,"action":{"kind":"Deliver","chain":"provider","numPackets":6},"partialState":{"h":17,"t":102,"tokens":[16949,4671,11247,7375],"delegation":[15949,3671,10247,6375],"delegatorTokens":9999999907599,"jailed":[1000000000000017,1000000000000017,1000000000000017,null],"status":["unbonded","unbonded","unbonded","bonded"]}},{"ix":184,"action":{"kind":"Undelegate","val":0,"amt":4929},"partialState":{"h":17,"t":102,"tokens":[12020,4671,11247,7375],"delegation":[11020,3671,10247,6375],"delegatorTokens":9999999907599}},{"ix":185,"action":{"kind":"Deliver","chain":"provider","numPackets":6},"partialState":{"h":17,"t":102,"tokens":[12020,4671,11247,7375],"delegation":[11020,3671,10247,6375],"delegatorTokens":9999999907599,"jailed":[1000000000000017,1000000000000017,1000000000000017,null],"status":["unbonded","unbonded","unbonded","bonded"]}},{"ix":186,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":23,"t":138,"consumerPower":[null,null,null,5686],"outstandingDowntime":[false,false,false,false]}},{"ix":187,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":188,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":189,"action":{"kind":"Delegate","val":2,"amt":3309},"partialState":{"h":17,"t":102,"tokens":[12020,4671,14556,7375],"delegation":[11020,3671,13556,6375],"delegatorTokens":9999999904290}},{"ix":190,"action":{"kind":"Delegate","val":2,"amt":2582},"partialState":{"h":17,"t":102,"tokens":[12020,4671,17138,7375],"delegation":[11020,3671,16138,6375],"delegatorTokens":9999999901708}},{"ix":191,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":24,"t":144,"consumerPower":[null,null,null,5686],"outstandingDowntime":[false,false,false,false]}},{"ix":192,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":193,"action":{"kind":"Delegate","val":2,"amt":2417},"partialState":{"h":17,"t":102,"tokens":[12020,4671,19555,7375],"delegation":[11020,3671,18555,6375],"delegatorTokens":9999999899291}},{"ix":194,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":195,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":18,"t":108,"tokens":[12020,4671,19555,7375],"delegation":[11020,3671,18555,6375],"delegatorTokens":9999999902985,"jailed":[1000000000000017,1000000000000017,1000000000000017,null],"status":["unbonded","unbonded","unbonded","bonded"]}},{"ix":196,"action":{"kind":"Undelegate","val":1,"amt":2139},"partialState":{"h":18,"t":108,"tokens":[12020,2532,19555,7375],"delegation":[11020,1532,18555,6375],"delegatorTokens":9999999902985}},{"ix":197,"action":{"kind":"Delegate","val":2,"amt":1297},"partialState":{"h":18,"t":108,"tokens":[12020,2532,20852,7375],"delegation":[11020,1532,19852,6375],"delegatorTokens":9999999901688}},{"ix":198,"action":{"kind":"Delegate","val":3,"amt":3136},"partialState":{"h":18,"t":108,"tokens":[12020,2532,20852,10511],"delegation":[11020,1532,19852,9511],"delegatorTokens":9999999898552}},{"ix":199,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":19,"t":114,"tokens":[12020,2532,20852,10511],"delegation":[11020,1532,19852,9511],"delegatorTokens":9999999911043,"jailed":[1000000000000017,1000000000000017,1000000000000017,null],"status":["unbonded","unbonded","unbonded","bonded"]}}],"events":["more_than_one_third_val_power_change","send_vsc_without_downtime_ack","send_downtime_slash_request","send_downtime_slash_request","send_downtime_slash_request","more_than_one_third_val_power_change","send_vsc_without_downtime_ack","insufficient_shares","receive_downtime_slash_request","jail","receive_downtime_slash_request","jail","receive_downtime_slash_request","jail","send_vsc_with_downtime_ack","consumer_del_val","consumer_del_val","consumer_add_val","more_than_one_third_val_power_change","rebond_unval","send_vsc_without_downtime_ack","send_vsc_not_because_change","send_vsc_without_downtime_ack","insufficient_shares","receive_downtime_slash_ack","receive_downtime_slash_ack","receive_downtime_slash_ack","insufficient_shares","send_vsc_without_downtime_ack","consumer_del_val","consumer_del_val","consumer_add_val","send_vsc_without_downtime_ack","send_vsc_not_because_change","send_vsc_without_downtime_ack","consumer_update_val","consumer_send_maturation","consumer_send_maturation","consumer_update_val","set_unval_hold_false","set_undel_hold_false","set_undel_hold_false","set_undel_hold_false","set_undel_hold_false","send_vsc_without_downtime_ack","consumer_send_maturation","consumer_send_maturation","insufficient_shares","complete_unval_in_endblock","send_vsc_without_downtime_ack","insufficient_shares","insufficient_shares","consumer_update_val","complete_undel_in_endblock","set_undel_hold_false","set_undel_hold_false","set_undel_hold_false","set_undel_hold_false","set_unval_hold_false","set_unval_hold_false","send_vsc_not_because_change","send_vsc_without_downtime_ack","consumer_send_maturation","consumer_send_maturation","consumer_update_val","complete_undel_in_endblock","send_vsc_not_because_change","send_vsc_without_downtime_ack","insufficient_shares","complete_unval_in_endblock","complete_unval_in_endblock","complete_undel_in_endblock","set_undel_hold_false","set_undel_hold_false","set_undel_hold_false","set_undel_hold_false","set_undel_hold_false","set_undel_hold_false","set_undel_hold_false","send_vsc_without_downtime_ack","consumer_send_maturation","complete_undel_in_endblock","send_vsc_not_because_change","send_vsc_without_downtime_ack","complete_undel_in_endblock","send_vsc_without_downtime_ack"]},{"meta":{"commit":"7ffd0c04e4205cbc9caf212abfe6c59ee43153bf"},"constants":{"P":"provider","C":"consumer","UNBONDING_SECONDS_P":70,"UNBONDING_SECONDS_C":50,"TRUSTING_SECONDS":49,"NUM_VALIDATORS":4,"MAX_VALIDATORS":2,"SLASH_DOUBLESIGN":0,"SLASH_DOWNTIME":0,"JAIL_SECONDS":999999999999999,"BLOCK_SECONDS":6,"INITIAL_DELEGATOR_TOKENS":10000000000000,"DELEGATE_AMT_MIN":1000,"DELEGATE_AMT_MAX":5000,"UNDELEGATE_AMT_MIN":1000,"UNDELEGATE_AMT_MAX":5000,"ISDOWNTIME_PROBABILITY":0.5,"MAX_NUM_PACKETS_FOR_DELIVER":6},"actions":[{"ix":0,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":1,"action":{"kind":"Delegate","val":3,"amt":2129},"partialState":{"h":1,"t":6,"tokens":[5000,4000,3000,4129],"delegation":[4000,3000,2000,3129],"delegatorTokens":9999999997871}},{"ix":2,"action":{"kind":"Deliver","chain":"consumer","numPackets":6},"partialState":{"h":1,"t":6,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":3,"action":{"kind":"Delegate","val":0,"amt":4367},"partialState":{"h":1,"t":6,"tokens":[9367,4000,3000,4129],"delegation":[8367,3000,2000,3129],"delegatorTokens":9999999993504}},{"ix":4,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":2,"t":12,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":5,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":3,"t":18,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":6,"action":{"kind":"Undelegate","val":1,"amt":1263},"partialState":{"h":1,"t":6,"tokens":[9367,2737,3000,4129],"delegation":[8367,1737,2000,3129],"delegatorTokens":9999999993504}},{"ix":7,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":2,"t":12,"tokens":[9367,2737,3000,4129],"delegation":[8367,1737,2000,3129],"delegatorTokens":9999999993504,"jailed":[null,null,null,null],"status":["bonded","unbonding","unbonded","bonded"]}},{"ix":8,"action":{"kind":"Deliver","chain":"provider","numPackets":4},"partialState":{"h":2,"t":12,"tokens":[9367,2737,3000,4129],"delegation":[8367,1737,2000,3129],"delegatorTokens":9999999993504,"jailed":[null,null,null,null],"status":["bonded","unbonding","unbonded","bonded"]}},{"ix":9,"action":{"kind":"Undelegate","val":3,"amt":2139},"partialState":{"h":2,"t":12,"tokens":[9367,2737,3000,1990],"delegation":[8367,1737,2000,990],"delegatorTokens":9999999993504}},{"ix":10,"action":{"kind":"ConsumerSlash","val":2,"infractionHeight":1,"isDowntime":true},"partialState":{"h":3,"t":18,"outstandingDowntime":[false,false,true,false]}},{"ix":11,"action":{"kind":"Deliver","chain":"consumer","numPackets":2},"partialState":{"h":3,"t":18,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,false,true,false]}},{"ix":12,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":3,"t":18,"tokens":[9367,2737,3000,1990],"delegation":[8367,1737,2000,990],"delegatorTokens":9999999993504,"jailed":[null,null,null,null],"status":["bonded","unbonding","bonded","unbonding"]}},{"ix":13,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":4,"t":24,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,false,true,false]}},{"ix":14,"action":{"kind":"Undelegate","val":2,"amt":3766},"partialState":{"h":3,"t":18,"tokens":[9367,2737,3000,1990],"delegation":[8367,1737,2000,990],"delegatorTokens":9999999993504}},{"ix":15,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":16,"action":{"kind":"Deliver","chain":"provider","numPackets":5},"partialState":{"h":3,"t":18,"tokens":[9367,2737,3000,1990],"delegation":[8367,1737,2000,990],"delegatorTokens":9999999993504,"jailed":[null,null,null,null],"status":["bonded","unbonding","bonded","unbonding"]}},{"ix":17,"action":{"kind":"Undelegate","val":2,"amt":3313},"partialState":{"h":3,"t":18,"tokens":[9367,2737,3000,1990],"delegation":[8367,1737,2000,990],"delegatorTokens":9999999993504}},{"ix":18,"action":{"kind":"Delegate","val":2,"amt":3747},"partialState":{"h":3,"t":18,"tokens":[9367,2737,6747,1990],"delegation":[8367,1737,5747,990],"delegatorTokens":9999999989757}},{"ix":19,"action":{"kind":"Deliver","chain":"provider","numPackets":4},"partialState":{"h":3,"t":18,"tokens":[9367,2737,6747,1990],"delegation":[8367,1737,5747,990],"delegatorTokens":9999999989757,"jailed":[null,null,null,null],"status":["bonded","unbonding","bonded","unbonding"]}},{"ix":20,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":4,"t":24,"tokens":[9367,2737,6747,1990],"delegation":[8367,1737,5747,990],"delegatorTokens":9999999989757,"jailed":[null,null,null,null],"status":["bonded","unbonding","bonded","unbonding"]}},{"ix":21,"action":{"kind":"Deliver","chain":"consumer","numPackets":3},"partialState":{"h":4,"t":24,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,false,true,false]}},{"ix":22,"action":{"kind":"ConsumerSlash","val":2,"infractionHeight":2,"isDowntime":true},"partialState":{"h":4,"t":24,"outstandingDowntime":[false,false,true,false]}},{"ix":23,"action":{"kind":"Deliver","chain":"consumer","numPackets":6},"partialState":{"h":4,"t":24,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,false,true,false]}},{"ix":24,"action":{"kind":"Delegate","val":0,"amt":4238},"partialState":{"h":4,"t":24,"tokens":[13605,2737,6747,1990],"delegation":[12605,1737,5747,990],"delegatorTokens":9999999985519}},{"ix":25,"action":{"kind":"ConsumerSlash","val":3,"infractionHeight":3,"isDowntime":true},"partialState":{"h":4,"t":24,"outstandingDowntime":[false,false,true,true]}},{"ix":26,"action":{"kind":"Undelegate","val":2,"amt":3004},"partialState":{"h":4,"t":24,"tokens":[13605,2737,3743,1990],"delegation":[12605,1737,2743,990],"delegatorTokens":9999999985519}},{"ix":27,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":28,"action":{"kind":"ConsumerSlash","val":2,"infractionHeight":0,"isDowntime":false},"partialState":{"h":4,"t":24,"outstandingDowntime":[false,false,true,true]}},{"ix":29,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":5,"t":30,"consumerPower":[9367,null,3000,null],"outstandingDowntime":[false,false,true,true]}},{"ix":30,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":31,"action":{"kind":"Deliver","chain":"provider","numPackets":4},"partialState":{"h":4,"t":24,"tokens":[13605,2737,3743,1990],"delegation":[12605,1737,2743,990],"delegatorTokens":9999999985519,"jailed":[null,null,null,null],"status":["bonded","unbonding","bonded","unbonding"]}},{"ix":32,"action":{"kind":"Undelegate","val":1,"amt":3050},"partialState":{"h":4,"t":24,"tokens":[13605,2737,3743,1990],"delegation":[12605,1737,2743,990],"delegatorTokens":9999999985519}},{"ix":33,"action":{"kind":"Deliver","chain":"provider","numPackets":4},"partialState":{"h":4,"t":24,"tokens":[13605,2737,3743,1990],"delegation":[12605,1737,2743,990],"delegatorTokens":9999999985519,"jailed":[null,null,null,null],"status":["bonded","unbonding","bonded","unbonding"]}},{"ix":34,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":5,"t":30,"tokens":[13605,2737,3743,1990],"delegation":[12605,1737,2743,990],"delegatorTokens":9999999985519,"jailed":[null,null,1000000000000023,null],"status":["bonded","unbonding","bonded","unbonding"]}},{"ix":35,"action":{"kind":"ConsumerSlash","val":3,"infractionHeight":3,"isDowntime":true},"partialState":{"h":5,"t":30,"outstandingDowntime":[false,false,true,true]}},{"ix":36,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":37,"action":{"kind":"Delegate","val":2,"amt":2883},"partialState":{"h":5,"t":30,"tokens":[13605,2737,6626,1990],"delegation":[12605,1737,5626,990],"delegatorTokens":9999999982636}},{"ix":38,"action":{"kind":"Deliver","chain":"provider","numPackets":1},"partialState":{"h":5,"t":30,"tokens":[13605,2737,6626,1990],"delegation":[12605,1737,5626,990],"delegatorTokens":9999999982636,"jailed":[null,null,1000000000000023,null],"status":["bonded","unbonding","bonded","unbonding"]}},{"ix":39,"action":{"kind":"Delegate","val":2,"amt":1435},"partialState":{"h":5,"t":30,"tokens":[13605,2737,8061,1990],"delegation":[12605,1737,7061,990],"delegatorTokens":9999999981201}},{"ix":40,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":41,"action":{"kind":"Deliver","chain":"provider","numPackets":2},"partialState":{"h":5,"t":30,"tokens":[13605,2737,8061,1990],"delegation":[12605,1737,7061,990],"delegatorTokens":9999999981201,"jailed":[null,null,1000000000000023,null],"status":["bonded","unbonding","bonded","unbonding"]}},{"ix":42,"action":{"kind":"Undelegate","val":1,"amt":2245},"partialState":{"h":5,"t":30,"tokens":[13605,2737,8061,1990],"delegation":[12605,1737,7061,990],"delegatorTokens":9999999981201}},{"ix":43,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":44,"action":{"kind":"Delegate","val":1,"amt":2804},"partialState":{"h":5,"t":30,"tokens":[13605,5541,8061,1990],"delegation":[12605,4541,7061,990],"delegatorTokens":9999999978397}},{"ix":45,"action":{"kind":"Deliver","chain":"consumer","numPackets":1},"partialState":{"h":5,"t":30,"consumerPower":[9367,null,3000,null],"outstandingDowntime":[false,false,true,true]}},{"ix":46,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":6,"t":36,"tokens":[13605,5541,8061,1990],"delegation":[12605,4541,7061,990],"delegatorTokens":9999999978397,"jailed":[null,null,1000000000000023,null],"status":["bonded","bonded","unbonding","unbonding"]}},{"ix":47,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":48,"action":{"kind":"ConsumerSlash","val":3,"infractionHeight":1,"isDowntime":false},"partialState":{"h":5,"t":30,"outstandingDowntime":[false,false,true,true]}},{"ix":49,"action":{"kind":"Deliver","chain":"consumer","numPackets":4},"partialState":{"h":5,"t":30,"consumerPower":[9367,null,3000,null],"outstandingDowntime":[false,false,false,true]}},{"ix":50,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":6,"t":36,"consumerPower":[13605,null,3743,null],"outstandingDowntime":[false,false,false,true]}},{"ix":51,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":52,"action":{"kind":"ConsumerSlash","val":3,"infractionHeight":1,"isDowntime":false},"partialState":{"h":6,"t":36,"outstandingDowntime":[false,false,false,true]}},{"ix":53,"action":{"kind":"ConsumerSlash","val":2,"infractionHeight":2,"isDowntime":true},"partialState":{"h":6,"t":36,"outstandingDowntime":[false,false,true,true]}},{"ix":54,"action":{"kind":"Undelegate","val":2,"amt":2282},"partialState":{"h":6,"t":36,"tokens":[13605,5541,5779,1990],"delegation":[12605,4541,4779,990],"delegatorTokens":9999999978397}},{"ix":55,"action":{"kind":"ConsumerSlash","val":0,"infractionHeight":2,"isDowntime":true},"partialState":{"h":6,"t":36,"outstandingDowntime":[true,false,true,true]}},{"ix":56,"action":{"kind":"Deliver","chain":"provider","numPackets":2},"partialState":{"h":6,"t":36,"tokens":[13605,5541,5779,1990],"delegation":[12605,4541,4779,990],"delegatorTokens":9999999978397,"jailed":[null,null,1000000000000023,null],"status":["bonded","bonded","unbonding","unbonding"]}},{"ix":57,"action":{"kind":"Delegate","val":3,"amt":3357},"partialState":{"h":6,"t":36,"tokens":[13605,5541,5779,5347],"delegation":[12605,4541,4779,4347],"delegatorTokens":9999999975040}},{"ix":58,"action":{"kind":"Deliver","chain":"provider","numPackets":3},"partialState":{"h":6,"t":36,"tokens":[13605,5541,5779,5347],"delegation":[12605,4541,4779,4347],"delegatorTokens":9999999975040,"jailed":[null,null,1000000000000023,null],"status":["bonded","bonded","unbonding","unbonding"]}},{"ix":59,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":60,"action":{"kind":"Deliver","chain":"consumer","numPackets":6},"partialState":{"h":6,"t":36,"consumerPower":[13605,null,3743,null],"outstandingDowntime":[true,false,true,true]}},{"ix":61,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":62,"action":{"kind":"Undelegate","val":3,"amt":3352},"partialState":{"h":6,"t":36,"tokens":[13605,5541,5779,1995],"delegation":[12605,4541,4779,995],"delegatorTokens":9999999975040}},{"ix":63,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":7,"t":42,"consumerPower":[13605,null,3743,null],"outstandingDowntime":[true,false,true,true]}},{"ix":64,"action":{"kind":"Deliver","chain":"provider","numPackets":2},"partialState":{"h":6,"t":36,"tokens":[13605,5541,5779,1995],"delegation":[12605,4541,4779,995],"delegatorTokens":9999999975040,"jailed":[null,null,1000000000000023,null],"status":["bonded","bonded","unbonding","unbonding"]}},{"ix":65,"action":{"kind":"Delegate","val":0,"amt":4249},"partialState":{"h":6,"t":36,"tokens":[17854,5541,5779,1995],"delegation":[16854,4541,4779,995],"delegatorTokens":9999999970791}},{"ix":66,"action":{"kind":"Delegate","val":0,"amt":4244},"partialState":{"h":6,"t":36,"tokens":[22098,5541,5779,1995],"delegation":[21098,4541,4779,995],"delegatorTokens":9999999966547}},{"ix":67,"action":{"kind":"Delegate","val":3,"amt":3260},"partialState":{"h":6,"t":36,"tokens":[22098,5541,5779,5255],"delegation":[21098,4541,4779,4255],"delegatorTokens":9999999963287}},{"ix":68,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":8,"t":48,"consumerPower":[13605,null,3743,null],"outstandingDowntime":[true,false,true,true]}},{"ix":69,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":70,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":71,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":7,"t":42,"tokens":[22098,5541,5779,5255],"delegation":[21098,4541,4779,4255],"delegatorTokens":9999999963287,"jailed":[null,null,1000000000000023,1000000000000035],"status":["bonded","bonded","unbonding","unbonding"]}},{"ix":72,"action":{"kind":"Delegate","val":1,"amt":4773},"partialState":{"h":7,"t":42,"tokens":[22098,10314,5779,5255],"delegation":[21098,9314,4779,4255],"delegatorTokens":9999999958514}},{"ix":73,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":74,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":9,"t":54,"consumerPower":[13605,null,3743,null],"outstandingDowntime":[true,false,true,true]}},{"ix":75,"action":{"kind":"Undelegate","val":0,"amt":3233},"partialState":{"h":7,"t":42,"tokens":[18865,10314,5779,5255],"delegation":[17865,9314,4779,4255],"delegatorTokens":9999999958514}},{"ix":76,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":77,"action":{"kind":"Deliver","chain":"provider","numPackets":6},"partialState":{"h":7,"t":42,"tokens":[18865,10314,5779,5255],"delegation":[17865,9314,4779,4255],"delegatorTokens":9999999958514,"jailed":[null,null,1000000000000023,1000000000000035],"status":["bonded","bonded","unbonding","unbonding"]}},{"ix":78,"action":{"kind":"Undelegate","val":3,"amt":3800},"partialState":{"h":7,"t":42,"tokens":[18865,10314,5779,1455],"delegation":[17865,9314,4779,455],"delegatorTokens":9999999958514}},{"ix":79,"action":{"kind":"Deliver","chain":"provider","numPackets":4},"partialState":{"h":7,"t":42,"tokens":[18865,10314,5779,1455],"delegation":[17865,9314,4779,455],"delegatorTokens":9999999958514,"jailed":[null,null,1000000000000023,1000000000000035],"status":["bonded","bonded","unbonding","unbonding"]}},{"ix":80,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":81,"action":{"kind":"Deliver","chain":"consumer","numPackets":2},"partialState":{"h":9,"t":54,"consumerPower":[13605,null,3743,null],"outstandingDowntime":[true,false,true,true]}},{"ix":82,"action":{"kind":"Undelegate","val":3,"amt":2692},"partialState":{"h":7,"t":42,"tokens":[18865,10314,5779,1455],"delegation":[17865,9314,4779,455],"delegatorTokens":9999999958514}},{"ix":83,"action":{"kind":"Deliver","chain":"provider","numPackets":4},"partialState":{"h":7,"t":42,"tokens":[18865,10314,5779,1455],"delegation":[17865,9314,4779,455],"delegatorTokens":9999999958514,"jailed":[null,null,1000000000000023,1000000000000035],"status":["bonded","bonded","unbonding","unbonding"]}},{"ix":84,"action":{"kind":"Delegate","val":2,"amt":3542},"partialState":{"h":7,"t":42,"tokens":[18865,10314,9321,1455],"delegation":[17865,9314,8321,455],"delegatorTokens":9999999954972}},{"ix":85,"action":{"kind":"Undelegate","val":1,"amt":1467},"partialState":{"h":7,"t":42,"tokens":[18865,8847,9321,1455],"delegation":[17865,7847,8321,455],"delegatorTokens":9999999954972}},{"ix":86,"action":{"kind":"Undelegate","val":2,"amt":4704},"partialState":{"h":7,"t":42,"tokens":[18865,8847,4617,1455],"delegation":[17865,7847,3617,455],"delegatorTokens":9999999954972}},{"ix":87,"action":{"kind":"Deliver","chain":"provider","numPackets":4},"partialState":{"h":7,"t":42,"tokens":[18865,8847,4617,1455],"delegation":[17865,7847,3617,455],"delegatorTokens":9999999954972,"jailed":[null,null,1000000000000023,1000000000000035],"status":["bonded","bonded","unbonding","unbonding"]}},{"ix":88,"action":{"kind":"Undelegate","val":0,"amt":1884},"partialState":{"h":7,"t":42,"tokens":[16981,8847,4617,1455],"delegation":[15981,7847,3617,455],"delegatorTokens":9999999954972}},{"ix":89,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":10,"t":60,"consumerPower":[13605,5541,null,null],"outstandingDowntime":[true,false,true,true]}},{"ix":90,"action":{"kind":"Delegate","val":1,"amt":4962},"partialState":{"h":7,"t":42,"tokens":[16981,13809,4617,1455],"delegation":[15981,12809,3617,455],"delegatorTokens":9999999950010}},{"ix":91,"action":{"kind":"Deliver","chain":"provider","numPackets":5},"partialState":{"h":7,"t":42,"tokens":[16981,13809,4617,1455],"delegation":[15981,12809,3617,455],"delegatorTokens":9999999950010,"jailed":[null,null,1000000000000023,1000000000000035],"status":["bonded","bonded","unbonding","unbonding"]}},{"ix":92,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":8,"t":48,"tokens":[16981,13809,4617,1455],"delegation":[15981,12809,3617,455],"delegatorTokens":9999999950010,"jailed":[1000000000000041,null,1000000000000041,1000000000000035],"status":["bonded","bonded","unbonding","unbonding"]}},{"ix":93,"action":{"kind":"Deliver","chain":"provider","numPackets":1},"partialState":{"h":8,"t":48,"tokens":[16981,13809,4617,1455],"delegation":[15981,12809,3617,455],"delegatorTokens":9999999950010,"jailed":[1000000000000041,null,1000000000000041,1000000000000035],"status":["bonded","bonded","unbonding","unbonding"]}},{"ix":94,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":95,"action":{"kind":"Delegate","val":3,"amt":2349},"partialState":{"h":8,"t":48,"tokens":[16981,13809,4617,3804],"delegation":[15981,12809,3617,2804],"delegatorTokens":9999999947661}},{"ix":96,"action":{"kind":"Deliver","chain":"provider","numPackets":1},"partialState":{"h":8,"t":48,"tokens":[16981,13809,4617,3804],"delegation":[15981,12809,3617,2804],"delegatorTokens":9999999947661,"jailed":[1000000000000041,null,1000000000000041,1000000000000035],"status":["bonded","bonded","unbonding","unbonding"]}},{"ix":97,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":9,"t":54,"tokens":[16981,13809,4617,3804],"delegation":[15981,12809,3617,2804],"delegatorTokens":9999999947661,"jailed":[1000000000000041,null,1000000000000041,1000000000000035],"status":["unbonding","bonded","unbonding","unbonding"]}},{"ix":98,"action":{"kind":"Delegate","val":0,"amt":3737},"partialState":{"h":9,"t":54,"tokens":[20718,13809,4617,3804],"delegation":[19718,12809,3617,2804],"delegatorTokens":9999999943924}},{"ix":99,"action":{"kind":"Undelegate","val":1,"amt":3994},"partialState":{"h":9,"t":54,"tokens":[20718,9815,4617,3804],"delegation":[19718,8815,3617,2804],"delegatorTokens":9999999943924}},{"ix":100,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":101,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":102,"action":{"kind":"Deliver","chain":"consumer","numPackets":1},"partialState":{"h":10,"t":60,"consumerPower":[13605,5541,null,null],"outstandingDowntime":[true,false,true,false]}},{"ix":103,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":104,"action":{"kind":"Delegate","val":0,"amt":3501},"partialState":{"h":9,"t":54,"tokens":[24219,9815,4617,3804],"delegation":[23219,8815,3617,2804],"delegatorTokens":9999999940423}},{"ix":105,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":11,"t":66,"consumerPower":[22098,5541,null,null],"outstandingDowntime":[true,false,true,false]}},{"ix":106,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":12,"t":72,"consumerPower":[22098,5541,null,null],"outstandingDowntime":[true,false,true,false]}},{"ix":107,"action":{"kind":"Delegate","val":2,"amt":1559},"partialState":{"h":9,"t":54,"tokens":[24219,9815,6176,3804],"delegation":[23219,8815,5176,2804],"delegatorTokens":9999999938864}},{"ix":108,"action":{"kind":"Undelegate","val":0,"amt":3179},"partialState":{"h":9,"t":54,"tokens":[21040,9815,6176,3804],"delegation":[20040,8815,5176,2804],"delegatorTokens":9999999938864}},{"ix":109,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":110,"action":{"kind":"Undelegate","val":1,"amt":3192},"partialState":{"h":9,"t":54,"tokens":[21040,6623,6176,3804],"delegation":[20040,5623,5176,2804],"delegatorTokens":9999999938864}},{"ix":111,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":13,"t":78,"consumerPower":[22098,5541,null,null],"outstandingDowntime":[true,false,true,false]}},{"ix":112,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":10,"t":60,"tokens":[21040,6623,6176,3804],"delegation":[20040,5623,5176,2804],"delegatorTokens":9999999938864,"jailed":[1000000000000041,null,1000000000000041,1000000000000035],"status":["unbonding","bonded","unbonding","unbonding"]}},{"ix":113,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":114,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":115,"action":{"kind":"Delegate","val":1,"amt":4498},"partialState":{"h":10,"t":60,"tokens":[21040,11121,6176,3804],"delegation":[20040,10121,5176,2804],"delegatorTokens":9999999934366}},{"ix":116,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":14,"t":84,"consumerPower":[22098,5541,null,null],"outstandingDowntime":[true,false,true,false]}},{"ix":117,"action":{"kind":"Delegate","val":1,"amt":4326},"partialState":{"h":10,"t":60,"tokens":[21040,15447,6176,3804],"delegation":[20040,14447,5176,2804],"delegatorTokens":9999999930040}},{"ix":118,"action":{"kind":"Undelegate","val":3,"amt":2126},"partialState":{"h":10,"t":60,"tokens":[21040,15447,6176,1678],"delegation":[20040,14447,5176,678],"delegatorTokens":9999999930040}},{"ix":119,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":120,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":121,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":15,"t":90,"consumerPower":[22098,5541,null,null],"outstandingDowntime":[true,false,true,false]}},{"ix":122,"action":{"kind":"Delegate","val":3,"amt":2790},"partialState":{"h":10,"t":60,"tokens":[21040,15447,6176,4468],"delegation":[20040,14447,5176,3468],"delegatorTokens":9999999927250}},{"ix":123,"action":{"kind":"Undelegate","val":3,"amt":2405},"partialState":{"h":10,"t":60,"tokens":[21040,15447,6176,2063],"delegation":[20040,14447,5176,1063],"delegatorTokens":9999999927250}},{"ix":124,"action":{"kind":"Deliver","chain":"consumer","numPackets":1},"partialState":{"h":15,"t":90,"consumerPower":[22098,5541,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":125,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":11,"t":66,"tokens":[21040,15447,6176,2063],"delegation":[20040,14447,5176,1063],"delegatorTokens":9999999927250,"jailed":[1000000000000041,null,1000000000000041,1000000000000035],"status":["unbonding","bonded","unbonding","unbonding"]}},{"ix":126,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":127,"action":{"kind":"Undelegate","val":3,"amt":3583},"partialState":{"h":11,"t":66,"tokens":[21040,15447,6176,2063],"delegation":[20040,14447,5176,1063],"delegatorTokens":9999999927250}},{"ix":128,"action":{"kind":"Delegate","val":3,"amt":3093},"partialState":{"h":11,"t":66,"tokens":[21040,15447,6176,5156],"delegation":[20040,14447,5176,4156],"delegatorTokens":9999999924157}},{"ix":129,"action":{"kind":"Delegate","val":1,"amt":3996},"partialState":{"h":11,"t":66,"tokens":[21040,19443,6176,5156],"delegation":[20040,18443,5176,4156],"delegatorTokens":9999999920161}},{"ix":130,"action":{"kind":"Deliver","chain":"provider","numPackets":5},"partialState":{"h":11,"t":66,"tokens":[21040,19443,6176,5156],"delegation":[20040,18443,5176,4156],"delegatorTokens":9999999920161,"jailed":[1000000000000041,null,1000000000000041,1000000000000035],"status":["unbonding","bonded","unbonding","unbonding"]}},{"ix":131,"action":{"kind":"Undelegate","val":1,"amt":3872},"partialState":{"h":11,"t":66,"tokens":[21040,15571,6176,5156],"delegation":[20040,14571,5176,4156],"delegatorTokens":9999999920161}},{"ix":132,"action":{"kind":"Undelegate","val":2,"amt":1259},"partialState":{"h":11,"t":66,"tokens":[21040,15571,4917,5156],"delegation":[20040,14571,3917,4156],"delegatorTokens":9999999920161}},{"ix":133,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":16,"t":96,"consumerPower":[16981,13809,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":134,"action":{"kind":"Undelegate","val":2,"amt":2914},"partialState":{"h":11,"t":66,"tokens":[21040,15571,2003,5156],"delegation":[20040,14571,1003,4156],"delegatorTokens":9999999920161}},{"ix":135,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":136,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":137,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":17,"t":102,"consumerPower":[16981,13809,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":138,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":12,"t":72,"tokens":[21040,15571,2003,5156],"delegation":[20040,14571,1003,4156],"delegatorTokens":9999999920161,"jailed":[1000000000000041,null,1000000000000041,1000000000000035],"status":["unbonding","bonded","unbonding","unbonding"]}},{"ix":139,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":140,"action":{"kind":"Deliver","chain":"consumer","numPackets":1},"partialState":{"h":17,"t":102,"consumerPower":[16981,13809,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":141,"action":{"kind":"Deliver","chain":"consumer","numPackets":4},"partialState":{"h":17,"t":102,"consumerPower":[16981,13809,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":142,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":18,"t":108,"consumerPower":[null,15447,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":143,"action":{"kind":"Delegate","val":2,"amt":4656},"partialState":{"h":12,"t":72,"tokens":[21040,15571,6659,5156],"delegation":[20040,14571,5659,4156],"delegatorTokens":9999999915505}},{"ix":144,"action":{"kind":"Deliver","chain":"provider","numPackets":6},"partialState":{"h":12,"t":72,"tokens":[21040,15571,6659,5156],"delegation":[20040,14571,5659,4156],"delegatorTokens":9999999915505,"jailed":[1000000000000041,null,1000000000000041,1000000000000035],"status":["unbonding","bonded","unbonding","unbonding"]}},{"ix":145,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":13,"t":78,"tokens":[21040,15571,6659,5156],"delegation":[20040,14571,5659,4156],"delegatorTokens":9999999915505,"jailed":[1000000000000041,null,1000000000000041,1000000000000035],"status":["unbonding","bonded","unbonding","unbonding"]}},{"ix":146,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":147,"action":{"kind":"Delegate","val":0,"amt":2816},"partialState":{"h":13,"t":78,"tokens":[23856,15571,6659,5156],"delegation":[22856,14571,5659,4156],"delegatorTokens":9999999912689}},{"ix":148,"action":{"kind":"Delegate","val":0,"amt":4337},"partialState":{"h":13,"t":78,"tokens":[28193,15571,6659,5156],"delegation":[27193,14571,5659,4156],"delegatorTokens":9999999908352}},{"ix":149,"action":{"kind":"Deliver","chain":"consumer","numPackets":1},"partialState":{"h":18,"t":108,"consumerPower":[null,15447,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":150,"action":{"kind":"Delegate","val":1,"amt":1954},"partialState":{"h":13,"t":78,"tokens":[28193,17525,6659,5156],"delegation":[27193,16525,5659,4156],"delegatorTokens":9999999906398}},{"ix":151,"action":{"kind":"Undelegate","val":1,"amt":4980},"partialState":{"h":13,"t":78,"tokens":[28193,12545,6659,5156],"delegation":[27193,11545,5659,4156],"delegatorTokens":9999999906398}},{"ix":152,"action":{"kind":"Delegate","val":0,"amt":4346},"partialState":{"h":13,"t":78,"tokens":[32539,12545,6659,5156],"delegation":[31539,11545,5659,4156],"delegatorTokens":9999999902052}},{"ix":153,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":154,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":14,"t":84,"tokens":[32539,12545,6659,5156],"delegation":[31539,11545,5659,4156],"delegatorTokens":9999999903315,"jailed":[1000000000000041,null,1000000000000041,1000000000000035],"status":["unbonding","bonded","unbonding","unbonding"]}},{"ix":155,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":156,"action":{"kind":"Delegate","val":3,"amt":1142},"partialState":{"h":14,"t":84,"tokens":[32539,12545,6659,6298],"delegation":[31539,11545,5659,5298],"delegatorTokens":9999999902173}},{"ix":157,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":158,"action":{"kind":"Delegate","val":1,"amt":1572},"partialState":{"h":14,"t":84,"tokens":[32539,14117,6659,6298],"delegation":[31539,13117,5659,5298],"delegatorTokens":9999999900601}},{"ix":159,"action":{"kind":"Undelegate","val":1,"amt":3938},"partialState":{"h":14,"t":84,"tokens":[32539,10179,6659,6298],"delegation":[31539,9179,5659,5298],"delegatorTokens":9999999900601}},{"ix":160,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":15,"t":90,"tokens":[32539,10179,6659,6298],"delegation":[31539,9179,5659,5298],"delegatorTokens":9999999902740,"jailed":[1000000000000041,null,1000000000000041,1000000000000035],"status":["unbonding","bonded","unbonding","unbonded"]}},{"ix":161,"action":{"kind":"Deliver","chain":"provider","numPackets":1},"partialState":{"h":15,"t":90,"tokens":[32539,10179,6659,6298],"delegation":[31539,9179,5659,5298],"delegatorTokens":9999999902740,"jailed":[1000000000000041,null,1000000000000041,1000000000000035],"status":["unbonding","bonded","unbonding","unbonded"]}},{"ix":162,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":163,"action":{"kind":"Undelegate","val":2,"amt":1597},"partialState":{"h":15,"t":90,"tokens":[32539,10179,5062,6298],"delegation":[31539,9179,4062,5298],"delegatorTokens":9999999902740}},{"ix":164,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":165,"action":{"kind":"Undelegate","val":0,"amt":2192},"partialState":{"h":15,"t":90,"tokens":[30347,10179,5062,6298],"delegation":[29347,9179,4062,5298],"delegatorTokens":9999999902740}},{"ix":166,"action":{"kind":"Delegate","val":3,"amt":3363},"partialState":{"h":15,"t":90,"tokens":[30347,10179,5062,9661],"delegation":[29347,9179,4062,8661],"delegatorTokens":9999999899377}},{"ix":167,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":19,"t":114,"consumerPower":[null,15571,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":168,"action":{"kind":"Deliver","chain":"consumer","numPackets":2},"partialState":{"h":19,"t":114,"consumerPower":[null,15571,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":169,"action":{"kind":"Delegate","val":2,"amt":4532},"partialState":{"h":15,"t":90,"tokens":[30347,10179,9594,9661],"delegation":[29347,9179,8594,8661],"delegatorTokens":9999999894845}},{"ix":170,"action":{"kind":"Delegate","val":2,"amt":4911},"partialState":{"h":15,"t":90,"tokens":[30347,10179,14505,9661],"delegation":[29347,9179,13505,8661],"delegatorTokens":9999999889934}},{"ix":171,"action":{"kind":"Deliver","chain":"provider","numPackets":2},"partialState":{"h":15,"t":90,"tokens":[30347,10179,14505,9661],"delegation":[29347,9179,13505,8661],"delegatorTokens":9999999889934,"jailed":[1000000000000041,null,1000000000000041,1000000000000035],"status":["unbonding","bonded","unbonding","unbonded"]}},{"ix":172,"action":{"kind":"Undelegate","val":1,"amt":3347},"partialState":{"h":15,"t":90,"tokens":[30347,6832,14505,9661],"delegation":[29347,5832,13505,8661],"delegatorTokens":9999999889934}},{"ix":173,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":20,"t":120,"consumerPower":[null,12545,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":174,"action":{"kind":"Delegate","val":0,"amt":4690},"partialState":{"h":15,"t":90,"tokens":[35037,6832,14505,9661],"delegation":[34037,5832,13505,8661],"delegatorTokens":9999999885244}},{"ix":175,"action":{"kind":"Undelegate","val":3,"amt":3437},"partialState":{"h":15,"t":90,"tokens":[35037,6832,14505,6224],"delegation":[34037,5832,13505,5224],"delegatorTokens":9999999885244}},{"ix":176,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":177,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":16,"t":96,"tokens":[35037,6832,14505,6224],"delegation":[34037,5832,13505,5224],"delegatorTokens":9999999885244,"jailed":[1000000000000041,null,1000000000000041,1000000000000035],"status":["unbonding","bonded","unbonding","unbonded"]}},{"ix":178,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":179,"action":{"kind":"Deliver","chain":"provider","numPackets":4},"partialState":{"h":16,"t":96,"tokens":[35037,6832,14505,6224],"delegation":[34037,5832,13505,5224],"delegatorTokens":9999999885244,"jailed":[1000000000000041,null,1000000000000041,1000000000000035],"status":["unbonding","bonded","unbonding","unbonded"]}},{"ix":180,"action":{"kind":"Undelegate","val":2,"amt":4460},"partialState":{"h":16,"t":96,"tokens":[35037,6832,10045,6224],"delegation":[34037,5832,9045,5224],"delegatorTokens":9999999885244}},{"ix":181,"action":{"kind":"Undelegate","val":3,"amt":1394},"partialState":{"h":16,"t":96,"tokens":[35037,6832,10045,4830],"delegation":[34037,5832,9045,3830],"delegatorTokens":9999999885244}},{"ix":182,"action":{"kind":"Undelegate","val":1,"amt":2090},"partialState":{"h":16,"t":96,"tokens":[35037,4742,10045,4830],"delegation":[34037,3742,9045,3830],"delegatorTokens":9999999885244}},{"ix":183,"action":{"kind":"Deliver","chain":"provider","numPackets":2},"partialState":{"h":16,"t":96,"tokens":[35037,4742,10045,4830],"delegation":[34037,3742,9045,3830],"delegatorTokens":9999999885244,"jailed":[1000000000000041,null,1000000000000041,1000000000000035],"status":["unbonding","bonded","unbonding","unbonded"]}},{"ix":184,"action":{"kind":"Deliver","chain":"provider","numPackets":5},"partialState":{"h":16,"t":96,"tokens":[35037,4742,10045,4830],"delegation":[34037,3742,9045,3830],"delegatorTokens":9999999885244,"jailed":[1000000000000041,null,1000000000000041,1000000000000035],"status":["unbonding","bonded","unbonding","unbonded"]}},{"ix":185,"action":{"kind":"Undelegate","val":0,"amt":2493},"partialState":{"h":16,"t":96,"tokens":[32544,4742,10045,4830],"delegation":[31544,3742,9045,3830],"delegatorTokens":9999999885244}},{"ix":186,"action":{"kind":"Deliver","chain":"consumer","numPackets":5},"partialState":{"h":20,"t":120,"consumerPower":[null,12545,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":187,"action":{"kind":"Undelegate","val":0,"amt":2363},"partialState":{"h":16,"t":96,"tokens":[30181,4742,10045,4830],"delegation":[29181,3742,9045,3830],"delegatorTokens":9999999885244}},{"ix":188,"action":{"kind":"Undelegate","val":3,"amt":4232},"partialState":{"h":16,"t":96,"tokens":[30181,4742,10045,4830],"delegation":[29181,3742,9045,3830],"delegatorTokens":9999999885244}},{"ix":189,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":21,"t":126,"consumerPower":[null,10179,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":190,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":191,"action":{"kind":"Deliver","chain":"provider","numPackets":2},"partialState":{"h":16,"t":96,"tokens":[30181,4742,10045,4830],"delegation":[29181,3742,9045,3830],"delegatorTokens":9999999885244,"jailed":[1000000000000041,null,1000000000000041,1000000000000035],"status":["unbonding","bonded","unbonding","unbonded"]}},{"ix":192,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":22,"t":132,"consumerPower":[null,10179,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":193,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":194,"action":{"kind":"Undelegate","val":3,"amt":3693},"partialState":{"h":16,"t":96,"tokens":[30181,4742,10045,1137],"delegation":[29181,3742,9045,137],"delegatorTokens":9999999885244}},{"ix":195,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":17,"t":102,"tokens":[30181,4742,10045,1137],"delegation":[29181,3742,9045,137],"delegatorTokens":9999999888248,"jailed":[1000000000000041,null,1000000000000041,1000000000000035],"status":["unbonding","bonded","unbonding","unbonded"]}},{"ix":196,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":23,"t":138,"consumerPower":[null,10179,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":197,"action":{"kind":"Delegate","val":2,"amt":4377},"partialState":{"h":17,"t":102,"tokens":[30181,4742,14422,1137],"delegation":[29181,3742,13422,137],"delegatorTokens":9999999883871}},{"ix":198,"action":{"kind":"Deliver","chain":"consumer","numPackets":4},"partialState":{"h":23,"t":138,"consumerPower":[null,10179,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":199,"action":{"kind":"Undelegate","val":0,"amt":1382},"partialState":{"h":17,"t":102,"tokens":[28799,4742,14422,1137],"delegation":[27799,3742,13422,137],"delegatorTokens":9999999883871}}],"events":["send_vsc_without_downtime_ack","send_downtime_slash_request","send_vsc_without_downtime_ack","insufficient_shares","insufficient_shares","send_vsc_without_downtime_ack","downtime_slash_request_outstanding","send_downtime_slash_request","send_double_sign_slash_request","consumer_update_val","consumer_del_val","consumer_del_val","consumer_add_val","insufficient_shares","receive_downtime_slash_request","jail","send_vsc_with_downtime_ack","downtime_slash_request_outstanding","insufficient_shares","rebond_unval","send_vsc_without_downtime_ack","send_double_sign_slash_request","receive_downtime_slash_ack","consumer_update_val","consumer_update_val","send_double_sign_slash_request","send_downtime_slash_request","send_downtime_slash_request","receive_double_sign_slash_request","receive_double_sign_slash_request","receive_downtime_slash_request","jail","send_vsc_with_downtime_ack","receive_double_sign_slash_request","insufficient_shares","consumer_add_val","consumer_del_val","receive_downtime_slash_request","jail","receive_downtime_slash_request","jail","send_vsc_with_downtime_ack","send_vsc_without_downtime_ack","receive_downtime_slash_ack","consumer_update_val","send_vsc_without_downtime_ack","consumer_send_maturation","consumer_send_maturation","consumer_send_maturation","consumer_send_maturation","receive_downtime_slash_ack","receive_downtime_slash_ack","send_vsc_without_downtime_ack","insufficient_shares","consumer_update_val","consumer_update_val","set_undel_hold_false","set_undel_hold_false","set_unval_hold_false","send_vsc_without_downtime_ack","consumer_del_val","consumer_update_val","set_undel_hold_false","complete_undel_in_endblock","send_vsc_without_downtime_ack","complete_unval_in_endblock","complete_undel_in_endblock","send_vsc_without_downtime_ack","consumer_send_maturation","consumer_update_val","consumer_send_maturation","consumer_update_val","send_vsc_without_downtime_ack","insufficient_shares","consumer_update_val","complete_undel_in_endblock","set_unval_hold_false","set_undel_hold_false","set_undel_hold_false","send_vsc_without_downtime_ack"]},{"meta":{"commit":"7ffd0c04e4205cbc9caf212abfe6c59ee43153bf"},"constants":{"P":"provider","C":"consumer","UNBONDING_SECONDS_P":70,"UNBONDING_SECONDS_C":50,"TRUSTING_SECONDS":49,"NUM_VALIDATORS":4,"MAX_VALIDATORS":2,"SLASH_DOUBLESIGN":0,"SLASH_DOWNTIME":0,"JAIL_SECONDS":999999999999999,"BLOCK_SECONDS":6,"INITIAL_DELEGATOR_TOKENS":10000000000000,"DELEGATE_AMT_MIN":1000,"DELEGATE_AMT_MAX":5000,"UNDELEGATE_AMT_MIN":1000,"UNDELEGATE_AMT_MAX":5000,"ISDOWNTIME_PROBABILITY":0.5,"MAX_NUM_PACKETS_FOR_DELIVER":6},"actions":[{"ix":0,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":2,"t":12,"tokens":[5000,4000,3000,2000],"delegation":[4000,3000,2000,1000],"delegatorTokens":10000000000000,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":1,"action":{"kind":"ConsumerSlash","val":0,"infractionHeight":0,"isDowntime":true},"partialState":{"h":1,"t":6,"outstandingDowntime":[true,false,false,false]}},{"ix":2,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":2,"t":12,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[true,false,false,false]}},{"ix":3,"action":{"kind":"Delegate","val":1,"amt":2103},"partialState":{"h":2,"t":12,"tokens":[5000,6103,3000,2000],"delegation":[4000,5103,2000,1000],"delegatorTokens":9999999997897}},{"ix":4,"action":{"kind":"ConsumerSlash","val":3,"infractionHeight":0,"isDowntime":true},"partialState":{"h":2,"t":12,"outstandingDowntime":[true,false,false,true]}},{"ix":5,"action":{"kind":"ConsumerSlash","val":0,"infractionHeight":0,"isDowntime":false},"partialState":{"h":2,"t":12,"outstandingDowntime":[true,false,false,true]}},{"ix":6,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":3,"t":18,"tokens":[5000,6103,3000,2000],"delegation":[4000,5103,2000,1000],"delegatorTokens":9999999997897,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":7,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":4,"t":24,"tokens":[5000,6103,3000,2000],"delegation":[4000,5103,2000,1000],"delegatorTokens":9999999997897,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":8,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":9,"action":{"kind":"Undelegate","val":2,"amt":1816},"partialState":{"h":4,"t":24,"tokens":[5000,6103,1184,2000],"delegation":[4000,5103,184,1000],"delegatorTokens":9999999997897}},{"ix":10,"action":{"kind":"Deliver","chain":"provider","numPackets":4},"partialState":{"h":4,"t":24,"tokens":[5000,6103,1184,2000],"delegation":[4000,5103,184,1000],"delegatorTokens":9999999997897,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":11,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":3,"t":18,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[true,false,false,true]}},{"ix":12,"action":{"kind":"Undelegate","val":3,"amt":3104},"partialState":{"h":4,"t":24,"tokens":[5000,6103,1184,2000],"delegation":[4000,5103,184,1000],"delegatorTokens":9999999997897}},{"ix":13,"action":{"kind":"Undelegate","val":0,"amt":4824},"partialState":{"h":4,"t":24,"tokens":[5000,6103,1184,2000],"delegation":[4000,5103,184,1000],"delegatorTokens":9999999997897}},{"ix":14,"action":{"kind":"Deliver","chain":"provider","numPackets":1},"partialState":{"h":4,"t":24,"tokens":[5000,6103,1184,2000],"delegation":[4000,5103,184,1000],"delegatorTokens":9999999997897,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":15,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":4,"t":24,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[true,false,false,true]}},{"ix":16,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":17,"action":{"kind":"Undelegate","val":3,"amt":1555},"partialState":{"h":4,"t":24,"tokens":[5000,6103,1184,2000],"delegation":[4000,5103,184,1000],"delegatorTokens":9999999997897}},{"ix":18,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":5,"t":30,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[true,false,false,true]}},{"ix":19,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":20,"action":{"kind":"Delegate","val":0,"amt":4735},"partialState":{"h":4,"t":24,"tokens":[9735,6103,1184,2000],"delegation":[8735,5103,184,1000],"delegatorTokens":9999999993162}},{"ix":21,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":22,"action":{"kind":"Delegate","val":2,"amt":1735},"partialState":{"h":4,"t":24,"tokens":[9735,6103,2919,2000],"delegation":[8735,5103,1919,1000],"delegatorTokens":9999999991427}},{"ix":23,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":5,"t":30,"tokens":[9735,6103,2919,2000],"delegation":[8735,5103,1919,1000],"delegatorTokens":9999999991427,"jailed":[1000000000000023,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":24,"action":{"kind":"ConsumerSlash","val":3,"infractionHeight":4,"isDowntime":false},"partialState":{"h":5,"t":30,"outstandingDowntime":[true,false,false,true]}},{"ix":25,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":26,"action":{"kind":"ConsumerSlash","val":0,"infractionHeight":2,"isDowntime":false},"partialState":{"h":5,"t":30,"outstandingDowntime":[true,false,false,true]}},{"ix":27,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":6,"t":36,"tokens":[9735,6103,2919,2000],"delegation":[8735,5103,1919,1000],"delegatorTokens":9999999991427,"jailed":[1000000000000023,null,null,null],"status":["unbonding","bonded","bonded","unbonded"]}},{"ix":28,"action":{"kind":"ConsumerSlash","val":0,"infractionHeight":0,"isDowntime":true},"partialState":{"h":5,"t":30,"outstandingDowntime":[true,false,false,true]}},{"ix":29,"action":{"kind":"Deliver","chain":"consumer","numPackets":5},"partialState":{"h":5,"t":30,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,false,false,true]}},{"ix":30,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":6,"t":36,"consumerPower":[9735,6103,null,null],"outstandingDowntime":[false,false,false,true]}},{"ix":31,"action":{"kind":"ConsumerSlash","val":3,"infractionHeight":4,"isDowntime":true},"partialState":{"h":6,"t":36,"outstandingDowntime":[false,false,false,true]}},{"ix":32,"action":{"kind":"ConsumerSlash","val":0,"infractionHeight":2,"isDowntime":true},"partialState":{"h":6,"t":36,"outstandingDowntime":[true,false,false,true]}},{"ix":33,"action":{"kind":"ConsumerSlash","val":3,"infractionHeight":5,"isDowntime":true},"partialState":{"h":6,"t":36,"outstandingDowntime":[true,false,false,true]}},{"ix":34,"action":{"kind":"Undelegate","val":3,"amt":4809},"partialState":{"h":6,"t":36,"tokens":[9735,6103,2919,2000],"delegation":[8735,5103,1919,1000],"delegatorTokens":9999999991427}},{"ix":35,"action":{"kind":"Delegate","val":3,"amt":3999},"partialState":{"h":6,"t":36,"tokens":[9735,6103,2919,5999],"delegation":[8735,5103,1919,4999],"delegatorTokens":9999999987428}},{"ix":36,"action":{"kind":"Undelegate","val":2,"amt":3512},"partialState":{"h":6,"t":36,"tokens":[9735,6103,2919,5999],"delegation":[8735,5103,1919,4999],"delegatorTokens":9999999987428}},{"ix":37,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":7,"t":42,"tokens":[9735,6103,2919,5999],"delegation":[8735,5103,1919,4999],"delegatorTokens":9999999987428,"jailed":[1000000000000023,null,null,null],"status":["unbonding","bonded","unbonding","bonded"]}},{"ix":38,"action":{"kind":"ConsumerSlash","val":0,"infractionHeight":1,"isDowntime":true},"partialState":{"h":6,"t":36,"outstandingDowntime":[true,false,false,true]}},{"ix":39,"action":{"kind":"ConsumerSlash","val":1,"infractionHeight":0,"isDowntime":true},"partialState":{"h":6,"t":36,"outstandingDowntime":[true,true,false,true]}},{"ix":40,"action":{"kind":"Undelegate","val":0,"amt":3415},"partialState":{"h":7,"t":42,"tokens":[6320,6103,2919,5999],"delegation":[5320,5103,1919,4999],"delegatorTokens":9999999987428}},{"ix":41,"action":{"kind":"Delegate","val":2,"amt":2957},"partialState":{"h":7,"t":42,"tokens":[6320,6103,5876,5999],"delegation":[5320,5103,4876,4999],"delegatorTokens":9999999984471}},{"ix":42,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":7,"t":42,"consumerPower":[9735,6103,null,null],"outstandingDowntime":[true,true,false,true]}},{"ix":43,"action":{"kind":"Delegate","val":2,"amt":4224},"partialState":{"h":7,"t":42,"tokens":[6320,6103,10100,5999],"delegation":[5320,5103,9100,4999],"delegatorTokens":9999999980247}},{"ix":44,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":8,"t":48,"tokens":[6320,6103,10100,5999],"delegation":[5320,5103,9100,4999],"delegatorTokens":9999999980247,"jailed":[1000000000000023,null,null,null],"status":["unbonding","bonded","bonded","unbonding"]}},{"ix":45,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":46,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":9,"t":54,"tokens":[6320,6103,10100,5999],"delegation":[5320,5103,9100,4999],"delegatorTokens":9999999980247,"jailed":[1000000000000023,null,null,null],"status":["unbonding","bonded","bonded","unbonding"]}},{"ix":47,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":10,"t":60,"tokens":[6320,6103,10100,5999],"delegation":[5320,5103,9100,4999],"delegatorTokens":9999999980247,"jailed":[1000000000000023,null,null,null],"status":["unbonding","bonded","bonded","unbonding"]}},{"ix":48,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":49,"action":{"kind":"Deliver","chain":"provider","numPackets":1},"partialState":{"h":10,"t":60,"tokens":[6320,6103,10100,5999],"delegation":[5320,5103,9100,4999],"delegatorTokens":9999999980247,"jailed":[1000000000000023,null,null,null],"status":["unbonding","bonded","bonded","unbonding"]}},{"ix":50,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":8,"t":48,"consumerPower":[9735,6103,null,null],"outstandingDowntime":[true,true,false,true]}},{"ix":51,"action":{"kind":"Deliver","chain":"consumer","numPackets":1},"partialState":{"h":8,"t":48,"consumerPower":[9735,6103,null,null],"outstandingDowntime":[true,true,false,true]}},{"ix":52,"action":{"kind":"Deliver","chain":"provider","numPackets":3},"partialState":{"h":10,"t":60,"tokens":[6320,6103,10100,5999],"delegation":[5320,5103,9100,4999],"delegatorTokens":9999999980247,"jailed":[1000000000000023,null,null,null],"status":["unbonding","bonded","bonded","unbonding"]}},{"ix":53,"action":{"kind":"Undelegate","val":1,"amt":1001},"partialState":{"h":10,"t":60,"tokens":[6320,5102,10100,5999],"delegation":[5320,4102,9100,4999],"delegatorTokens":9999999980247}},{"ix":54,"action":{"kind":"Deliver","chain":"provider","numPackets":6},"partialState":{"h":10,"t":60,"tokens":[6320,5102,10100,5999],"delegation":[5320,4102,9100,4999],"delegatorTokens":9999999980247,"jailed":[1000000000000023,null,null,null],"status":["unbonding","bonded","bonded","unbonding"]}},{"ix":55,"action":{"kind":"Undelegate","val":3,"amt":4846},"partialState":{"h":10,"t":60,"tokens":[6320,5102,10100,1153],"delegation":[5320,4102,9100,153],"delegatorTokens":9999999980247}},{"ix":56,"action":{"kind":"Deliver","chain":"consumer","numPackets":1},"partialState":{"h":8,"t":48,"consumerPower":[9735,6103,null,null],"outstandingDowntime":[true,true,false,true]}},{"ix":57,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":58,"action":{"kind":"Delegate","val":0,"amt":4149},"partialState":{"h":10,"t":60,"tokens":[10469,5102,10100,1153],"delegation":[9469,4102,9100,153],"delegatorTokens":9999999976098}},{"ix":59,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":60,"action":{"kind":"Delegate","val":0,"amt":3862},"partialState":{"h":10,"t":60,"tokens":[14331,5102,10100,1153],"delegation":[13331,4102,9100,153],"delegatorTokens":9999999972236}},{"ix":61,"action":{"kind":"Undelegate","val":2,"amt":4346},"partialState":{"h":10,"t":60,"tokens":[14331,5102,5754,1153],"delegation":[13331,4102,4754,153],"delegatorTokens":9999999972236}},{"ix":62,"action":{"kind":"Delegate","val":3,"amt":2657},"partialState":{"h":10,"t":60,"tokens":[14331,5102,5754,3810],"delegation":[13331,4102,4754,2810],"delegatorTokens":9999999969579}},{"ix":63,"action":{"kind":"Delegate","val":1,"amt":1279},"partialState":{"h":10,"t":60,"tokens":[14331,6381,5754,3810],"delegation":[13331,5381,4754,2810],"delegatorTokens":9999999968300}},{"ix":64,"action":{"kind":"Undelegate","val":2,"amt":3802},"partialState":{"h":10,"t":60,"tokens":[14331,6381,1952,3810],"delegation":[13331,5381,952,2810],"delegatorTokens":9999999968300}},{"ix":65,"action":{"kind":"Deliver","chain":"provider","numPackets":4},"partialState":{"h":10,"t":60,"tokens":[14331,6381,1952,3810],"delegation":[13331,5381,952,2810],"delegatorTokens":9999999968300,"jailed":[1000000000000023,null,null,null],"status":["unbonding","bonded","bonded","unbonding"]}},{"ix":66,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":67,"action":{"kind":"Undelegate","val":3,"amt":2958},"partialState":{"h":10,"t":60,"tokens":[14331,6381,1952,3810],"delegation":[13331,5381,952,2810],"delegatorTokens":9999999968300}},{"ix":68,"action":{"kind":"Delegate","val":0,"amt":3050},"partialState":{"h":10,"t":60,"tokens":[17381,6381,1952,3810],"delegation":[16381,5381,952,2810],"delegatorTokens":9999999965250}},{"ix":69,"action":{"kind":"Undelegate","val":2,"amt":1318},"partialState":{"h":10,"t":60,"tokens":[17381,6381,1952,3810],"delegation":[16381,5381,952,2810],"delegatorTokens":9999999965250}},{"ix":70,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":9,"t":54,"consumerPower":[null,6103,null,5999],"outstandingDowntime":[true,true,false,true]}},{"ix":71,"action":{"kind":"Delegate","val":3,"amt":1712},"partialState":{"h":10,"t":60,"tokens":[17381,6381,1952,5522],"delegation":[16381,5381,952,4522],"delegatorTokens":9999999963538}},{"ix":72,"action":{"kind":"Delegate","val":3,"amt":1163},"partialState":{"h":10,"t":60,"tokens":[17381,6381,1952,6685],"delegation":[16381,5381,952,5685],"delegatorTokens":9999999962375}},{"ix":73,"action":{"kind":"Undelegate","val":1,"amt":1270},"partialState":{"h":10,"t":60,"tokens":[17381,5111,1952,6685],"delegation":[16381,4111,952,5685],"delegatorTokens":9999999962375}},{"ix":74,"action":{"kind":"Delegate","val":1,"amt":1513},"partialState":{"h":10,"t":60,"tokens":[17381,6624,1952,6685],"delegation":[16381,5624,952,5685],"delegatorTokens":9999999960862}},{"ix":75,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":11,"t":66,"tokens":[17381,6624,1952,6685],"delegation":[16381,5624,952,5685],"delegatorTokens":9999999960862,"jailed":[1000000000000059,1000000000000059,null,1000000000000059],"status":["unbonding","bonded","unbonding","bonded"]}},{"ix":76,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":10,"t":60,"consumerPower":[null,6103,null,5999],"outstandingDowntime":[true,true,false,true]}},{"ix":77,"action":{"kind":"Deliver","chain":"consumer","numPackets":4},"partialState":{"h":10,"t":60,"consumerPower":[null,6103,null,5999],"outstandingDowntime":[true,true,false,true]}},{"ix":78,"action":{"kind":"Deliver","chain":"provider","numPackets":1},"partialState":{"h":11,"t":66,"tokens":[17381,6624,1952,6685],"delegation":[16381,5624,952,5685],"delegatorTokens":9999999960862,"jailed":[1000000000000059,1000000000000059,null,1000000000000059],"status":["unbonding","bonded","unbonding","bonded"]}},{"ix":79,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":12,"t":72,"tokens":[17381,6624,1952,6685],"delegation":[16381,5624,952,5685],"delegatorTokens":9999999960862,"jailed":[1000000000000059,1000000000000059,null,1000000000000059],"status":["unbonding","unbonding","bonded","unbonding"]}},{"ix":80,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":11,"t":66,"consumerPower":[null,6103,10100,null],"outstandingDowntime":[true,true,false,true]}},{"ix":81,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":12,"t":72,"consumerPower":[null,6103,10100,null],"outstandingDowntime":[true,true,false,true]}},{"ix":82,"action":{"kind":"Undelegate","val":0,"amt":2787},"partialState":{"h":12,"t":72,"tokens":[14594,6624,1952,6685],"delegation":[13594,5624,952,5685],"delegatorTokens":9999999960862}},{"ix":83,"action":{"kind":"Delegate","val":2,"amt":4694},"partialState":{"h":12,"t":72,"tokens":[14594,6624,6646,6685],"delegation":[13594,5624,5646,5685],"delegatorTokens":9999999956168}},{"ix":84,"action":{"kind":"Deliver","chain":"consumer","numPackets":2},"partialState":{"h":12,"t":72,"consumerPower":[null,6103,10100,null],"outstandingDowntime":[false,false,false,false]}},{"ix":85,"action":{"kind":"Deliver","chain":"consumer","numPackets":3},"partialState":{"h":12,"t":72,"consumerPower":[null,6103,10100,null],"outstandingDowntime":[false,false,false,false]}},{"ix":86,"action":{"kind":"Undelegate","val":2,"amt":2922},"partialState":{"h":12,"t":72,"tokens":[14594,6624,3724,6685],"delegation":[13594,5624,2724,5685],"delegatorTokens":9999999956168}},{"ix":87,"action":{"kind":"Undelegate","val":1,"amt":3580},"partialState":{"h":12,"t":72,"tokens":[14594,3044,3724,6685],"delegation":[13594,2044,2724,5685],"delegatorTokens":9999999956168}},{"ix":88,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":89,"action":{"kind":"Delegate","val":2,"amt":1076},"partialState":{"h":12,"t":72,"tokens":[14594,3044,4800,6685],"delegation":[13594,2044,3800,5685],"delegatorTokens":9999999955092}},{"ix":90,"action":{"kind":"Undelegate","val":1,"amt":2779},"partialState":{"h":12,"t":72,"tokens":[14594,3044,4800,6685],"delegation":[13594,2044,3800,5685],"delegatorTokens":9999999955092}},{"ix":91,"action":{"kind":"Deliver","chain":"provider","numPackets":2},"partialState":{"h":12,"t":72,"tokens":[14594,3044,4800,6685],"delegation":[13594,2044,3800,5685],"delegatorTokens":9999999955092,"jailed":[1000000000000059,1000000000000059,null,1000000000000059],"status":["unbonding","unbonding","bonded","unbonding"]}},{"ix":92,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":13,"t":78,"consumerPower":[null,6624,null,6685],"outstandingDowntime":[false,false,false,false]}},{"ix":93,"action":{"kind":"Delegate","val":0,"amt":2780},"partialState":{"h":12,"t":72,"tokens":[17374,3044,4800,6685],"delegation":[16374,2044,3800,5685],"delegatorTokens":9999999952312}},{"ix":94,"action":{"kind":"Deliver","chain":"provider","numPackets":1},"partialState":{"h":12,"t":72,"tokens":[17374,3044,4800,6685],"delegation":[16374,2044,3800,5685],"delegatorTokens":9999999952312,"jailed":[1000000000000059,1000000000000059,null,1000000000000059],"status":["unbonding","unbonding","bonded","unbonding"]}},{"ix":95,"action":{"kind":"Deliver","chain":"consumer","numPackets":6},"partialState":{"h":13,"t":78,"consumerPower":[null,6624,null,6685],"outstandingDowntime":[false,false,false,false]}},{"ix":96,"action":{"kind":"Delegate","val":0,"amt":4197},"partialState":{"h":12,"t":72,"tokens":[21571,3044,4800,6685],"delegation":[20571,2044,3800,5685],"delegatorTokens":9999999948115}},{"ix":97,"action":{"kind":"Deliver","chain":"provider","numPackets":3},"partialState":{"h":12,"t":72,"tokens":[21571,3044,4800,6685],"delegation":[20571,2044,3800,5685],"delegatorTokens":9999999948115,"jailed":[1000000000000059,1000000000000059,null,1000000000000059],"status":["unbonding","unbonding","bonded","unbonding"]}},{"ix":98,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":99,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":13,"t":78,"tokens":[21571,3044,4800,6685],"delegation":[20571,2044,3800,5685],"delegatorTokens":9999999948115,"jailed":[1000000000000059,1000000000000059,null,1000000000000059],"status":["unbonding","unbonding","bonded","unbonding"]}},{"ix":100,"action":{"kind":"Undelegate","val":3,"amt":2158},"partialState":{"h":13,"t":78,"tokens":[21571,3044,4800,4527],"delegation":[20571,2044,3800,3527],"delegatorTokens":9999999948115}},{"ix":101,"action":{"kind":"Undelegate","val":3,"amt":2749},"partialState":{"h":13,"t":78,"tokens":[21571,3044,4800,1778],"delegation":[20571,2044,3800,778],"delegatorTokens":9999999948115}},{"ix":102,"action":{"kind":"Delegate","val":2,"amt":4549},"partialState":{"h":13,"t":78,"tokens":[21571,3044,9349,1778],"delegation":[20571,2044,8349,778],"delegatorTokens":9999999943566}},{"ix":103,"action":{"kind":"Undelegate","val":1,"amt":2736},"partialState":{"h":13,"t":78,"tokens":[21571,3044,9349,1778],"delegation":[20571,2044,8349,778],"delegatorTokens":9999999943566}},{"ix":104,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":105,"action":{"kind":"Delegate","val":0,"amt":2475},"partialState":{"h":13,"t":78,"tokens":[24046,3044,9349,1778],"delegation":[23046,2044,8349,778],"delegatorTokens":9999999941091}},{"ix":106,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":107,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":108,"action":{"kind":"Deliver","chain":"provider","numPackets":4},"partialState":{"h":13,"t":78,"tokens":[24046,3044,9349,1778],"delegation":[23046,2044,8349,778],"delegatorTokens":9999999941091,"jailed":[1000000000000059,1000000000000059,null,1000000000000059],"status":["unbonding","unbonding","bonded","unbonding"]}},{"ix":109,"action":{"kind":"Deliver","chain":"provider","numPackets":2},"partialState":{"h":13,"t":78,"tokens":[24046,3044,9349,1778],"delegation":[23046,2044,8349,778],"delegatorTokens":9999999941091,"jailed":[1000000000000059,1000000000000059,null,1000000000000059],"status":["unbonding","unbonding","bonded","unbonding"]}},{"ix":110,"action":{"kind":"Delegate","val":0,"amt":2476},"partialState":{"h":13,"t":78,"tokens":[26522,3044,9349,1778],"delegation":[25522,2044,8349,778],"delegatorTokens":9999999938615}},{"ix":111,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":14,"t":84,"consumerPower":[null,6624,null,6685],"outstandingDowntime":[false,false,false,false]}},{"ix":112,"action":{"kind":"Delegate","val":3,"amt":1630},"partialState":{"h":13,"t":78,"tokens":[26522,3044,9349,3408],"delegation":[25522,2044,8349,2408],"delegatorTokens":9999999936985}},{"ix":113,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":15,"t":90,"consumerPower":[null,6624,null,6685],"outstandingDowntime":[false,false,false,false]}},{"ix":114,"action":{"kind":"Delegate","val":3,"amt":1445},"partialState":{"h":13,"t":78,"tokens":[26522,3044,9349,4853],"delegation":[25522,2044,8349,3853],"delegatorTokens":9999999935540}},{"ix":115,"action":{"kind":"Delegate","val":3,"amt":4905},"partialState":{"h":13,"t":78,"tokens":[26522,3044,9349,9758],"delegation":[25522,2044,8349,8758],"delegatorTokens":9999999930635}},{"ix":116,"action":{"kind":"Undelegate","val":0,"amt":4350},"partialState":{"h":13,"t":78,"tokens":[22172,3044,9349,9758],"delegation":[21172,2044,8349,8758],"delegatorTokens":9999999930635}},{"ix":117,"action":{"kind":"Deliver","chain":"provider","numPackets":5},"partialState":{"h":13,"t":78,"tokens":[22172,3044,9349,9758],"delegation":[21172,2044,8349,8758],"delegatorTokens":9999999930635,"jailed":[1000000000000059,1000000000000059,null,1000000000000059],"status":["unbonding","unbonding","bonded","unbonding"]}},{"ix":118,"action":{"kind":"Undelegate","val":3,"amt":4478},"partialState":{"h":13,"t":78,"tokens":[22172,3044,9349,5280],"delegation":[21172,2044,8349,4280],"delegatorTokens":9999999930635}},{"ix":119,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":16,"t":96,"consumerPower":[null,6624,null,6685],"outstandingDowntime":[false,false,false,false]}},{"ix":120,"action":{"kind":"Delegate","val":1,"amt":1958},"partialState":{"h":13,"t":78,"tokens":[22172,5002,9349,5280],"delegation":[21172,4002,8349,4280],"delegatorTokens":9999999928677}},{"ix":121,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":14,"t":84,"tokens":[22172,5002,9349,5280],"delegation":[21172,4002,8349,4280],"delegatorTokens":9999999928677,"jailed":[1000000000000059,1000000000000059,null,1000000000000059],"status":["unbonding","unbonding","bonded","unbonding"]}},{"ix":122,"action":{"kind":"Undelegate","val":0,"amt":4717},"partialState":{"h":14,"t":84,"tokens":[17455,5002,9349,5280],"delegation":[16455,4002,8349,4280],"delegatorTokens":9999999928677}},{"ix":123,"action":{"kind":"Undelegate","val":1,"amt":4993},"partialState":{"h":14,"t":84,"tokens":[17455,5002,9349,5280],"delegation":[16455,4002,8349,4280],"delegatorTokens":9999999928677}},{"ix":124,"action":{"kind":"Delegate","val":3,"amt":4068},"partialState":{"h":14,"t":84,"tokens":[17455,5002,9349,9348],"delegation":[16455,4002,8349,8348],"delegatorTokens":9999999924609}},{"ix":125,"action":{"kind":"Deliver","chain":"provider","numPackets":6},"partialState":{"h":14,"t":84,"tokens":[17455,5002,9349,9348],"delegation":[16455,4002,8349,8348],"delegatorTokens":9999999924609,"jailed":[1000000000000059,1000000000000059,null,1000000000000059],"status":["unbonding","unbonding","bonded","unbonding"]}},{"ix":126,"action":{"kind":"Delegate","val":0,"amt":1092},"partialState":{"h":14,"t":84,"tokens":[18547,5002,9349,9348],"delegation":[17547,4002,8349,8348],"delegatorTokens":9999999923517}},{"ix":127,"action":{"kind":"Deliver","chain":"consumer","numPackets":6},"partialState":{"h":16,"t":96,"consumerPower":[null,6624,null,6685],"outstandingDowntime":[false,false,false,false]}},{"ix":128,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":129,"action":{"kind":"Deliver","chain":"provider","numPackets":2},"partialState":{"h":14,"t":84,"tokens":[18547,5002,9349,9348],"delegation":[17547,4002,8349,8348],"delegatorTokens":9999999923517,"jailed":[1000000000000059,1000000000000059,null,1000000000000059],"status":["unbonding","unbonding","bonded","unbonding"]}},{"ix":130,"action":{"kind":"Undelegate","val":2,"amt":4101},"partialState":{"h":14,"t":84,"tokens":[18547,5002,5248,9348],"delegation":[17547,4002,4248,8348],"delegatorTokens":9999999923517}},{"ix":131,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":132,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":133,"action":{"kind":"Delegate","val":2,"amt":2837},"partialState":{"h":14,"t":84,"tokens":[18547,5002,8085,9348],"delegation":[17547,4002,7085,8348],"delegatorTokens":9999999920680}},{"ix":134,"action":{"kind":"Undelegate","val":0,"amt":3159},"partialState":{"h":14,"t":84,"tokens":[15388,5002,8085,9348],"delegation":[14388,4002,7085,8348],"delegatorTokens":9999999920680}},{"ix":135,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":15,"t":90,"tokens":[15388,5002,8085,9348],"delegation":[14388,4002,7085,8348],"delegatorTokens":9999999920680,"jailed":[1000000000000059,1000000000000059,null,1000000000000059],"status":["unbonding","unbonding","bonded","unbonding"]}},{"ix":136,"action":{"kind":"Delegate","val":0,"amt":3303},"partialState":{"h":15,"t":90,"tokens":[18691,5002,8085,9348],"delegation":[17691,4002,7085,8348],"delegatorTokens":9999999917377}},{"ix":137,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":138,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":16,"t":96,"tokens":[18691,5002,8085,9348],"delegation":[17691,4002,7085,8348],"delegatorTokens":9999999917377,"jailed":[1000000000000059,1000000000000059,null,1000000000000059],"status":["unbonding","unbonding","bonded","unbonding"]}},{"ix":139,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":140,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":141,"action":{"kind":"Deliver","chain":"consumer","numPackets":6},"partialState":{"h":16,"t":96,"consumerPower":[null,6624,null,6685],"outstandingDowntime":[false,false,false,false]}},{"ix":142,"action":{"kind":"Undelegate","val":1,"amt":4028},"partialState":{"h":16,"t":96,"tokens":[18691,5002,8085,9348],"delegation":[17691,4002,7085,8348],"delegatorTokens":9999999917377}},{"ix":143,"action":{"kind":"Deliver","chain":"consumer","numPackets":1},"partialState":{"h":16,"t":96,"consumerPower":[null,6624,null,6685],"outstandingDowntime":[false,false,false,false]}},{"ix":144,"action":{"kind":"Deliver","chain":"provider","numPackets":1},"partialState":{"h":16,"t":96,"tokens":[18691,5002,8085,9348],"delegation":[17691,4002,7085,8348],"delegatorTokens":9999999917377,"jailed":[1000000000000059,1000000000000059,null,1000000000000059],"status":["unbonding","unbonding","bonded","unbonding"]}},{"ix":145,"action":{"kind":"Undelegate","val":1,"amt":3411},"partialState":{"h":16,"t":96,"tokens":[18691,1591,8085,9348],"delegation":[17691,591,7085,8348],"delegatorTokens":9999999917377}},{"ix":146,"action":{"kind":"Delegate","val":3,"amt":3583},"partialState":{"h":16,"t":96,"tokens":[18691,1591,8085,12931],"delegation":[17691,591,7085,11931],"delegatorTokens":9999999913794}},{"ix":147,"action":{"kind":"Deliver","chain":"consumer","numPackets":1},"partialState":{"h":16,"t":96,"consumerPower":[null,6624,null,6685],"outstandingDowntime":[false,false,false,false]}},{"ix":148,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":17,"t":102,"tokens":[18691,1591,8085,12931],"delegation":[17691,591,7085,11931],"delegatorTokens":9999999915610,"jailed":[1000000000000059,1000000000000059,null,1000000000000059],"status":["unbonding","unbonding","bonded","unbonding"]}},{"ix":149,"action":{"kind":"Deliver","chain":"consumer","numPackets":6},"partialState":{"h":16,"t":96,"consumerPower":[null,6624,null,6685],"outstandingDowntime":[false,false,false,false]}},{"ix":150,"action":{"kind":"Deliver","chain":"provider","numPackets":2},"partialState":{"h":17,"t":102,"tokens":[18691,1591,8085,12931],"delegation":[17691,591,7085,11931],"delegatorTokens":9999999915610,"jailed":[1000000000000059,1000000000000059,null,1000000000000059],"status":["unbonding","unbonding","bonded","unbonding"]}},{"ix":151,"action":{"kind":"Deliver","chain":"provider","numPackets":2},"partialState":{"h":17,"t":102,"tokens":[18691,1591,8085,12931],"delegation":[17691,591,7085,11931],"delegatorTokens":9999999915610,"jailed":[1000000000000059,1000000000000059,null,1000000000000059],"status":["unbonding","unbonding","bonded","unbonding"]}},{"ix":152,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":17,"t":102,"consumerPower":[null,null,8085,null],"outstandingDowntime":[false,false,false,false]}},{"ix":153,"action":{"kind":"Delegate","val":2,"amt":3771},"partialState":{"h":17,"t":102,"tokens":[18691,1591,11856,12931],"delegation":[17691,591,10856,11931],"delegatorTokens":9999999911839}},{"ix":154,"action":{"kind":"Undelegate","val":1,"amt":3861},"partialState":{"h":17,"t":102,"tokens":[18691,1591,11856,12931],"delegation":[17691,591,10856,11931],"delegatorTokens":9999999911839}},{"ix":155,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":18,"t":108,"consumerPower":[null,null,8085,null],"outstandingDowntime":[false,false,false,false]}},{"ix":156,"action":{"kind":"Deliver","chain":"provider","numPackets":2},"partialState":{"h":17,"t":102,"tokens":[18691,1591,11856,12931],"delegation":[17691,591,10856,11931],"delegatorTokens":9999999911839,"jailed":[1000000000000059,1000000000000059,null,1000000000000059],"status":["unbonding","unbonding","bonded","unbonding"]}},{"ix":157,"action":{"kind":"Delegate","val":3,"amt":2106},"partialState":{"h":17,"t":102,"tokens":[18691,1591,11856,15037],"delegation":[17691,591,10856,14037],"delegatorTokens":9999999909733}},{"ix":158,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":159,"action":{"kind":"Undelegate","val":2,"amt":4286},"partialState":{"h":17,"t":102,"tokens":[18691,1591,7570,15037],"delegation":[17691,591,6570,14037],"delegatorTokens":9999999909733}},{"ix":160,"action":{"kind":"Delegate","val":0,"amt":3564},"partialState":{"h":17,"t":102,"tokens":[22255,1591,7570,15037],"delegation":[21255,591,6570,14037],"delegatorTokens":9999999906169}},{"ix":161,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":19,"t":114,"consumerPower":[null,null,8085,null],"outstandingDowntime":[false,false,false,false]}},{"ix":162,"action":{"kind":"Delegate","val":2,"amt":1007},"partialState":{"h":17,"t":102,"tokens":[22255,1591,8577,15037],"delegation":[21255,591,7577,14037],"delegatorTokens":9999999905162}},{"ix":163,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":164,"action":{"kind":"Delegate","val":3,"amt":1248},"partialState":{"h":17,"t":102,"tokens":[22255,1591,8577,16285],"delegation":[21255,591,7577,15285],"delegatorTokens":9999999903914}},{"ix":165,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":18,"t":108,"tokens":[22255,1591,8577,16285],"delegation":[21255,591,7577,15285],"delegatorTokens":9999999903914,"jailed":[1000000000000059,1000000000000059,null,1000000000000059],"status":["unbonding","unbonding","bonded","unbonding"]}},{"ix":166,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":20,"t":120,"consumerPower":[null,null,8085,null],"outstandingDowntime":[false,false,false,false]}},{"ix":167,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":168,"action":{"kind":"Undelegate","val":3,"amt":4487},"partialState":{"h":18,"t":108,"tokens":[22255,1591,8577,11798],"delegation":[21255,591,7577,10798],"delegatorTokens":9999999903914}},{"ix":169,"action":{"kind":"Undelegate","val":3,"amt":4152},"partialState":{"h":18,"t":108,"tokens":[22255,1591,8577,7646],"delegation":[21255,591,7577,6646],"delegatorTokens":9999999903914}},{"ix":170,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":21,"t":126,"consumerPower":[null,null,8085,null],"outstandingDowntime":[false,false,false,false]}},{"ix":171,"action":{"kind":"Delegate","val":3,"amt":1111},"partialState":{"h":18,"t":108,"tokens":[22255,1591,8577,8757],"delegation":[21255,591,7577,7757],"delegatorTokens":9999999902803}},{"ix":172,"action":{"kind":"Delegate","val":0,"amt":1311},"partialState":{"h":18,"t":108,"tokens":[23566,1591,8577,8757],"delegation":[22566,591,7577,7757],"delegatorTokens":9999999901492}},{"ix":173,"action":{"kind":"Delegate","val":1,"amt":3969},"partialState":{"h":18,"t":108,"tokens":[23566,5560,8577,8757],"delegation":[22566,4560,7577,7757],"delegatorTokens":9999999897523}},{"ix":174,"action":{"kind":"Deliver","chain":"consumer","numPackets":4},"partialState":{"h":21,"t":126,"consumerPower":[null,null,8085,null],"outstandingDowntime":[false,false,false,false]}},{"ix":175,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":176,"action":{"kind":"Deliver","chain":"consumer","numPackets":1},"partialState":{"h":21,"t":126,"consumerPower":[null,null,8085,null],"outstandingDowntime":[false,false,false,false]}},{"ix":177,"action":{"kind":"Deliver","chain":"provider","numPackets":6},"partialState":{"h":18,"t":108,"tokens":[23566,5560,8577,8757],"delegation":[22566,4560,7577,7757],"delegatorTokens":9999999897523,"jailed":[1000000000000059,1000000000000059,null,1000000000000059],"status":["unbonding","unbonding","bonded","unbonding"]}},{"ix":178,"action":{"kind":"Deliver","chain":"consumer","numPackets":6},"partialState":{"h":21,"t":126,"consumerPower":[null,null,8085,null],"outstandingDowntime":[false,false,false,false]}},{"ix":179,"action":{"kind":"Undelegate","val":3,"amt":2251},"partialState":{"h":18,"t":108,"tokens":[23566,5560,8577,6506],"delegation":[22566,4560,7577,5506],"delegatorTokens":9999999897523}},{"ix":180,"action":{"kind":"Undelegate","val":1,"amt":2127},"partialState":{"h":18,"t":108,"tokens":[23566,3433,8577,6506],"delegation":[22566,2433,7577,5506],"delegatorTokens":9999999897523}},{"ix":181,"action":{"kind":"Undelegate","val":3,"amt":2188},"partialState":{"h":18,"t":108,"tokens":[23566,3433,8577,4318],"delegation":[22566,2433,7577,3318],"delegatorTokens":9999999897523}},{"ix":182,"action":{"kind":"Undelegate","val":1,"amt":3898},"partialState":{"h":18,"t":108,"tokens":[23566,3433,8577,4318],"delegation":[22566,2433,7577,3318],"delegatorTokens":9999999897523}},{"ix":183,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":19,"t":114,"tokens":[23566,3433,8577,4318],"delegation":[22566,2433,7577,3318],"delegatorTokens":9999999897523,"jailed":[1000000000000059,1000000000000059,null,1000000000000059],"status":["unbonding","unbonding","bonded","unbonding"]}},{"ix":184,"action":{"kind":"Deliver","chain":"provider","numPackets":6},"partialState":{"h":19,"t":114,"tokens":[23566,3433,8577,4318],"delegation":[22566,2433,7577,3318],"delegatorTokens":9999999897523,"jailed":[1000000000000059,1000000000000059,null,1000000000000059],"status":["unbonding","unbonding","bonded","unbonding"]}},{"ix":185,"action":{"kind":"Delegate","val":0,"amt":2306},"partialState":{"h":19,"t":114,"tokens":[25872,3433,8577,4318],"delegation":[24872,2433,7577,3318],"delegatorTokens":9999999895217}},{"ix":186,"action":{"kind":"Undelegate","val":2,"amt":3331},"partialState":{"h":19,"t":114,"tokens":[25872,3433,5246,4318],"delegation":[24872,2433,4246,3318],"delegatorTokens":9999999895217}},{"ix":187,"action":{"kind":"Deliver","chain":"consumer","numPackets":4},"partialState":{"h":21,"t":126,"consumerPower":[null,null,8085,null],"outstandingDowntime":[false,false,false,false]}},{"ix":188,"action":{"kind":"Deliver","chain":"provider","numPackets":5},"partialState":{"h":19,"t":114,"tokens":[25872,3433,5246,4318],"delegation":[24872,2433,4246,3318],"delegatorTokens":9999999895217,"jailed":[1000000000000059,1000000000000059,null,1000000000000059],"status":["unbonding","unbonding","bonded","unbonding"]}},{"ix":189,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":22,"t":132,"consumerPower":[null,null,8577,null],"outstandingDowntime":[false,false,false,false]}},{"ix":190,"action":{"kind":"Undelegate","val":3,"amt":1353},"partialState":{"h":19,"t":114,"tokens":[25872,3433,5246,2965],"delegation":[24872,2433,4246,1965],"delegatorTokens":9999999895217}},{"ix":191,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":20,"t":120,"tokens":[25872,3433,5246,2965],"delegation":[24872,2433,4246,1965],"delegatorTokens":9999999898632,"jailed":[1000000000000059,1000000000000059,null,1000000000000059],"status":["unbonded","unbonding","bonded","unbonding"]}},{"ix":192,"action":{"kind":"Undelegate","val":2,"amt":2731},"partialState":{"h":20,"t":120,"tokens":[25872,3433,2515,2965],"delegation":[24872,2433,1515,1965],"delegatorTokens":9999999898632}},{"ix":193,"action":{"kind":"Deliver","chain":"consumer","numPackets":1},"partialState":{"h":22,"t":132,"consumerPower":[null,null,8577,null],"outstandingDowntime":[false,false,false,false]}},{"ix":194,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":21,"t":126,"tokens":[25872,3433,2515,2965],"delegation":[24872,2433,1515,1965],"delegatorTokens":9999999898632,"jailed":[1000000000000059,1000000000000059,null,1000000000000059],"status":["unbonded","unbonding","bonded","unbonding"]}},{"ix":195,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":196,"action":{"kind":"Delegate","val":0,"amt":1985},"partialState":{"h":21,"t":126,"tokens":[27857,3433,2515,2965],"delegation":[26857,2433,1515,1965],"delegatorTokens":9999999896647}},{"ix":197,"action":{"kind":"Delegate","val":3,"amt":1455},"partialState":{"h":21,"t":126,"tokens":[27857,3433,2515,4420],"delegation":[26857,2433,1515,3420],"delegatorTokens":9999999895192}},{"ix":198,"action":{"kind":"Undelegate","val":1,"amt":2969},"partialState":{"h":21,"t":126,"tokens":[27857,3433,2515,4420],"delegation":[26857,2433,1515,3420],"delegatorTokens":9999999895192}},{"ix":199,"action":{"kind":"Undelegate","val":0,"amt":2430},"partialState":{"h":21,"t":126,"tokens":[25427,3433,2515,4420],"delegation":[24427,2433,1515,3420],"delegatorTokens":9999999895192}}],"events":["send_downtime_slash_request","send_downtime_slash_request","send_double_sign_slash_request","send_vsc_without_downtime_ack","insufficient_shares","insufficient_shares","insufficient_shares","receive_downtime_slash_request","jail","send_vsc_with_downtime_ack","send_double_sign_slash_request","send_double_sign_slash_request","send_vsc_without_downtime_ack","downtime_slash_request_outstanding","receive_downtime_slash_ack","consumer_update_val","consumer_update_val","downtime_slash_request_outstanding","send_downtime_slash_request","downtime_slash_request_outstanding","insufficient_shares","insufficient_shares","more_than_one_third_val_power_change","send_vsc_without_downtime_ack","downtime_slash_request_outstanding","send_downtime_slash_request","more_than_one_third_val_power_change","rebond_unval","send_vsc_without_downtime_ack","receive_double_sign_slash_request","receive_double_sign_slash_request","receive_double_sign_slash_request","insufficient_shares","insufficient_shares","consumer_del_val","consumer_del_val","consumer_add_val","more_than_one_third_val_power_change","rebond_unval","receive_downtime_slash_request","jail","receive_downtime_slash_request","jail","receive_downtime_slash_request","jail","send_vsc_with_downtime_ack","more_than_one_third_val_power_change","rebond_unval","send_vsc_without_downtime_ack","consumer_add_val","consumer_del_val","receive_downtime_slash_ack","receive_downtime_slash_ack","receive_downtime_slash_ack","insufficient_shares","consumer_update_val","consumer_del_val","consumer_add_val","send_vsc_without_downtime_ack","insufficient_shares","consumer_send_maturation","consumer_send_maturation","send_vsc_without_downtime_ack","insufficient_shares","set_undel_hold_false","send_vsc_without_downtime_ack","insufficient_shares","complete_undel_in_endblock","send_vsc_not_because_change","send_vsc_without_downtime_ack","consumer_del_val","consumer_add_val","consumer_del_val","insufficient_shares","consumer_send_maturation","consumer_send_maturation","send_vsc_without_downtime_ack","consumer_send_maturation","insufficient_shares","set_unval_hold_false","set_undel_hold_false","send_vsc_not_because_change","send_vsc_without_downtime_ack","consumer_send_maturation","consumer_update_val","complete_unval_in_endblock","complete_undel_in_endblock","send_vsc_without_downtime_ack","send_vsc_without_downtime_ack","insufficient_shares"]},{"meta":{"commit":"7ffd0c04e4205cbc9caf212abfe6c59ee43153bf"},"constants":{"P":"provider","C":"consumer","UNBONDING_SECONDS_P":70,"UNBONDING_SECONDS_C":50,"TRUSTING_SECONDS":49,"NUM_VALIDATORS":4,"MAX_VALIDATORS":2,"SLASH_DOUBLESIGN":0,"SLASH_DOWNTIME":0,"JAIL_SECONDS":999999999999999,"BLOCK_SECONDS":6,"INITIAL_DELEGATOR_TOKENS":10000000000000,"DELEGATE_AMT_MIN":1000,"DELEGATE_AMT_MAX":5000,"UNDELEGATE_AMT_MIN":1000,"UNDELEGATE_AMT_MAX":5000,"ISDOWNTIME_PROBABILITY":0.5,"MAX_NUM_PACKETS_FOR_DELIVER":6},"actions":[{"ix":0,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":1,"action":{"kind":"ConsumerSlash","val":0,"infractionHeight":0,"isDowntime":true},"partialState":{"h":1,"t":6,"outstandingDowntime":[true,false,false,false]}},{"ix":2,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":2,"t":12,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[true,false,false,false]}},{"ix":3,"action":{"kind":"ConsumerSlash","val":2,"infractionHeight":0,"isDowntime":true},"partialState":{"h":2,"t":12,"outstandingDowntime":[true,false,true,false]}},{"ix":4,"action":{"kind":"ConsumerSlash","val":0,"infractionHeight":1,"isDowntime":false},"partialState":{"h":2,"t":12,"outstandingDowntime":[true,false,true,false]}},{"ix":5,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":3,"t":18,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[true,false,true,false]}},{"ix":6,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":4,"t":24,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[true,false,true,false]}},{"ix":7,"action":{"kind":"Undelegate","val":1,"amt":2370},"partialState":{"h":1,"t":6,"tokens":[5000,1630,3000,2000],"delegation":[4000,630,2000,1000],"delegatorTokens":10000000000000}},{"ix":8,"action":{"kind":"Deliver","chain":"provider","numPackets":5},"partialState":{"h":1,"t":6,"tokens":[5000,1630,3000,2000],"delegation":[4000,630,2000,1000],"delegatorTokens":10000000000000,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":9,"action":{"kind":"ConsumerSlash","val":0,"infractionHeight":2,"isDowntime":true},"partialState":{"h":4,"t":24,"outstandingDowntime":[true,false,true,false]}},{"ix":10,"action":{"kind":"ConsumerSlash","val":0,"infractionHeight":3,"isDowntime":true},"partialState":{"h":4,"t":24,"outstandingDowntime":[true,false,true,false]}},{"ix":11,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":5,"t":30,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[true,false,true,false]}},{"ix":12,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":2,"t":12,"tokens":[5000,1630,3000,2000],"delegation":[4000,630,2000,1000],"delegatorTokens":10000000000000,"jailed":[1000000000000005,null,1000000000000005,null],"status":["bonded","unbonding","bonded","unbonded"]}},{"ix":13,"action":{"kind":"Delegate","val":2,"amt":2782},"partialState":{"h":2,"t":12,"tokens":[5000,1630,5782,2000],"delegation":[4000,630,4782,1000],"delegatorTokens":9999999997218}},{"ix":14,"action":{"kind":"Deliver","chain":"consumer","numPackets":1},"partialState":{"h":5,"t":30,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[true,false,true,false]}},{"ix":15,"action":{"kind":"Deliver","chain":"consumer","numPackets":3},"partialState":{"h":5,"t":30,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[true,false,true,false]}},{"ix":16,"action":{"kind":"ConsumerSlash","val":2,"infractionHeight":1,"isDowntime":false},"partialState":{"h":5,"t":30,"outstandingDowntime":[true,false,true,false]}},{"ix":17,"action":{"kind":"Delegate","val":3,"amt":1876},"partialState":{"h":2,"t":12,"tokens":[5000,1630,5782,3876],"delegation":[4000,630,4782,2876],"delegatorTokens":9999999995342}},{"ix":18,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":3,"t":18,"tokens":[5000,1630,5782,3876],"delegation":[4000,630,4782,2876],"delegatorTokens":9999999995342,"jailed":[1000000000000005,null,1000000000000005,null],"status":["unbonding","bonded","unbonding","bonded"]}},{"ix":19,"action":{"kind":"Deliver","chain":"consumer","numPackets":3},"partialState":{"h":5,"t":30,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":20,"action":{"kind":"Delegate","val":2,"amt":4041},"partialState":{"h":3,"t":18,"tokens":[5000,1630,9823,3876],"delegation":[4000,630,8823,2876],"delegatorTokens":9999999991301}},{"ix":21,"action":{"kind":"Deliver","chain":"provider","numPackets":3},"partialState":{"h":3,"t":18,"tokens":[5000,1630,9823,3876],"delegation":[4000,630,8823,2876],"delegatorTokens":9999999991301,"jailed":[1000000000000005,null,1000000000000005,null],"status":["unbonding","bonded","unbonding","bonded"]}},{"ix":22,"action":{"kind":"Delegate","val":3,"amt":2297},"partialState":{"h":3,"t":18,"tokens":[5000,1630,9823,6173],"delegation":[4000,630,8823,5173],"delegatorTokens":9999999989004}},{"ix":23,"action":{"kind":"ConsumerSlash","val":2,"infractionHeight":0,"isDowntime":false},"partialState":{"h":5,"t":30,"outstandingDowntime":[false,false,false,false]}},{"ix":24,"action":{"kind":"Delegate","val":0,"amt":2120},"partialState":{"h":3,"t":18,"tokens":[7120,1630,9823,6173],"delegation":[6120,630,8823,5173],"delegatorTokens":9999999986884}},{"ix":25,"action":{"kind":"Delegate","val":3,"amt":1454},"partialState":{"h":3,"t":18,"tokens":[7120,1630,9823,7627],"delegation":[6120,630,8823,6627],"delegatorTokens":9999999985430}},{"ix":26,"action":{"kind":"Delegate","val":3,"amt":2857},"partialState":{"h":3,"t":18,"tokens":[7120,1630,9823,10484],"delegation":[6120,630,8823,9484],"delegatorTokens":9999999982573}},{"ix":27,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":4,"t":24,"tokens":[7120,1630,9823,10484],"delegation":[6120,630,8823,9484],"delegatorTokens":9999999982573,"jailed":[1000000000000005,null,1000000000000005,null],"status":["unbonding","bonded","unbonding","bonded"]}},{"ix":28,"action":{"kind":"ConsumerSlash","val":2,"infractionHeight":4,"isDowntime":true},"partialState":{"h":5,"t":30,"outstandingDowntime":[false,false,true,false]}},{"ix":29,"action":{"kind":"Undelegate","val":3,"amt":1938},"partialState":{"h":4,"t":24,"tokens":[7120,1630,9823,8546],"delegation":[6120,630,8823,7546],"delegatorTokens":9999999982573}},{"ix":30,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":31,"action":{"kind":"ConsumerSlash","val":2,"infractionHeight":3,"isDowntime":true},"partialState":{"h":5,"t":30,"outstandingDowntime":[false,false,true,false]}},{"ix":32,"action":{"kind":"Undelegate","val":2,"amt":1483},"partialState":{"h":4,"t":24,"tokens":[7120,1630,8340,8546],"delegation":[6120,630,7340,7546],"delegatorTokens":9999999982573}},{"ix":33,"action":{"kind":"ConsumerSlash","val":2,"infractionHeight":1,"isDowntime":true},"partialState":{"h":5,"t":30,"outstandingDowntime":[false,false,true,false]}},{"ix":34,"action":{"kind":"Undelegate","val":0,"amt":1121},"partialState":{"h":4,"t":24,"tokens":[5999,1630,8340,8546],"delegation":[4999,630,7340,7546],"delegatorTokens":9999999982573}},{"ix":35,"action":{"kind":"Deliver","chain":"consumer","numPackets":1},"partialState":{"h":5,"t":30,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,false,true,false]}},{"ix":36,"action":{"kind":"Delegate","val":0,"amt":3970},"partialState":{"h":4,"t":24,"tokens":[9969,1630,8340,8546],"delegation":[8969,630,7340,7546],"delegatorTokens":9999999978603}},{"ix":37,"action":{"kind":"ConsumerSlash","val":0,"infractionHeight":3,"isDowntime":false},"partialState":{"h":5,"t":30,"outstandingDowntime":[false,false,true,false]}},{"ix":38,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":39,"action":{"kind":"ConsumerSlash","val":0,"infractionHeight":3,"isDowntime":true},"partialState":{"h":5,"t":30,"outstandingDowntime":[true,false,true,false]}},{"ix":40,"action":{"kind":"Delegate","val":1,"amt":1766},"partialState":{"h":4,"t":24,"tokens":[9969,3396,8340,8546],"delegation":[8969,2396,7340,7546],"delegatorTokens":9999999976837}},{"ix":41,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":6,"t":36,"consumerPower":[null,1630,null,3876],"outstandingDowntime":[true,false,true,false]}},{"ix":42,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":7,"t":42,"consumerPower":[null,1630,null,3876],"outstandingDowntime":[true,false,true,false]}},{"ix":43,"action":{"kind":"Delegate","val":0,"amt":4621},"partialState":{"h":4,"t":24,"tokens":[14590,3396,8340,8546],"delegation":[13590,2396,7340,7546],"delegatorTokens":9999999972216}},{"ix":44,"action":{"kind":"ConsumerSlash","val":3,"infractionHeight":5,"isDowntime":false},"partialState":{"h":7,"t":42,"outstandingDowntime":[true,false,true,false]}},{"ix":45,"action":{"kind":"Deliver","chain":"consumer","numPackets":5},"partialState":{"h":7,"t":42,"consumerPower":[null,1630,null,3876],"outstandingDowntime":[true,false,true,false]}},{"ix":46,"action":{"kind":"Deliver","chain":"provider","numPackets":4},"partialState":{"h":4,"t":24,"tokens":[14590,3396,8340,8546],"delegation":[13590,2396,7340,7546],"delegatorTokens":9999999972216,"jailed":[1000000000000005,null,1000000000000005,null],"status":["unbonding","bonded","unbonding","bonded"]}},{"ix":47,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":8,"t":48,"consumerPower":[null,1630,null,3876],"outstandingDowntime":[true,false,true,false]}},{"ix":48,"action":{"kind":"Undelegate","val":0,"amt":3306},"partialState":{"h":4,"t":24,"tokens":[11284,3396,8340,8546],"delegation":[10284,2396,7340,7546],"delegatorTokens":9999999972216}},{"ix":49,"action":{"kind":"Undelegate","val":1,"amt":3983},"partialState":{"h":4,"t":24,"tokens":[11284,3396,8340,8546],"delegation":[10284,2396,7340,7546],"delegatorTokens":9999999972216}},{"ix":50,"action":{"kind":"Undelegate","val":3,"amt":1538},"partialState":{"h":4,"t":24,"tokens":[11284,3396,8340,7008],"delegation":[10284,2396,7340,6008],"delegatorTokens":9999999972216}},{"ix":51,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":52,"action":{"kind":"Deliver","chain":"consumer","numPackets":4},"partialState":{"h":8,"t":48,"consumerPower":[null,1630,null,3876],"outstandingDowntime":[true,false,true,false]}},{"ix":53,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":54,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":55,"action":{"kind":"Delegate","val":0,"amt":1033},"partialState":{"h":4,"t":24,"tokens":[12317,3396,8340,7008],"delegation":[11317,2396,7340,6008],"delegatorTokens":9999999971183}},{"ix":56,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":57,"action":{"kind":"Deliver","chain":"provider","numPackets":5},"partialState":{"h":4,"t":24,"tokens":[12317,3396,8340,7008],"delegation":[11317,2396,7340,6008],"delegatorTokens":9999999971183,"jailed":[1000000000000005,null,1000000000000005,null],"status":["unbonding","bonded","unbonding","bonded"]}},{"ix":58,"action":{"kind":"Undelegate","val":3,"amt":4946},"partialState":{"h":4,"t":24,"tokens":[12317,3396,8340,2062],"delegation":[11317,2396,7340,1062],"delegatorTokens":9999999971183}},{"ix":59,"action":{"kind":"Deliver","chain":"consumer","numPackets":4},"partialState":{"h":8,"t":48,"consumerPower":[null,1630,null,3876],"outstandingDowntime":[true,false,true,false]}},{"ix":60,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":9,"t":54,"consumerPower":[null,1630,null,3876],"outstandingDowntime":[true,false,true,false]}},{"ix":61,"action":{"kind":"Delegate","val":3,"amt":4743},"partialState":{"h":4,"t":24,"tokens":[12317,3396,8340,6805],"delegation":[11317,2396,7340,5805],"delegatorTokens":9999999966440}},{"ix":62,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":5,"t":30,"tokens":[12317,3396,8340,6805],"delegation":[11317,2396,7340,5805],"delegatorTokens":9999999966440,"jailed":[1000000000000023,null,1000000000000023,null],"status":["unbonding","bonded","unbonding","bonded"]}},{"ix":63,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":64,"action":{"kind":"Undelegate","val":2,"amt":3385},"partialState":{"h":5,"t":30,"tokens":[12317,3396,4955,6805],"delegation":[11317,2396,3955,5805],"delegatorTokens":9999999966440}},{"ix":65,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":6,"t":36,"tokens":[12317,3396,4955,6805],"delegation":[11317,2396,3955,5805],"delegatorTokens":9999999966440,"jailed":[1000000000000023,null,1000000000000023,null],"status":["unbonding","bonded","unbonding","bonded"]}},{"ix":66,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":67,"action":{"kind":"Delegate","val":0,"amt":4809},"partialState":{"h":6,"t":36,"tokens":[17126,3396,4955,6805],"delegation":[16126,2396,3955,5805],"delegatorTokens":9999999961631}},{"ix":68,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":7,"t":42,"tokens":[17126,3396,4955,6805],"delegation":[16126,2396,3955,5805],"delegatorTokens":9999999961631,"jailed":[1000000000000023,null,1000000000000023,null],"status":["unbonding","bonded","unbonding","bonded"]}},{"ix":69,"action":{"kind":"Delegate","val":2,"amt":2066},"partialState":{"h":7,"t":42,"tokens":[17126,3396,7021,6805],"delegation":[16126,2396,6021,5805],"delegatorTokens":9999999959565}},{"ix":70,"action":{"kind":"Undelegate","val":3,"amt":4084},"partialState":{"h":7,"t":42,"tokens":[17126,3396,7021,2721],"delegation":[16126,2396,6021,1721],"delegatorTokens":9999999959565}},{"ix":71,"action":{"kind":"Delegate","val":3,"amt":1765},"partialState":{"h":7,"t":42,"tokens":[17126,3396,7021,4486],"delegation":[16126,2396,6021,3486],"delegatorTokens":9999999957800}},{"ix":72,"action":{"kind":"Deliver","chain":"provider","numPackets":6},"partialState":{"h":7,"t":42,"tokens":[17126,3396,7021,4486],"delegation":[16126,2396,6021,3486],"delegatorTokens":9999999957800,"jailed":[1000000000000023,null,1000000000000023,null],"status":["unbonding","bonded","unbonding","bonded"]}},{"ix":73,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":10,"t":60,"consumerPower":[null,1630,null,3876],"outstandingDowntime":[true,false,true,false]}},{"ix":74,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":75,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":11,"t":66,"consumerPower":[null,1630,null,3876],"outstandingDowntime":[true,false,true,false]}},{"ix":76,"action":{"kind":"Deliver","chain":"provider","numPackets":1},"partialState":{"h":7,"t":42,"tokens":[17126,3396,7021,4486],"delegation":[16126,2396,6021,3486],"delegatorTokens":9999999957800,"jailed":[1000000000000023,null,1000000000000023,null],"status":["unbonding","bonded","unbonding","bonded"]}},{"ix":77,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":78,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":79,"action":{"kind":"Delegate","val":1,"amt":4597},"partialState":{"h":7,"t":42,"tokens":[17126,7993,7021,4486],"delegation":[16126,6993,6021,3486],"delegatorTokens":9999999953203}},{"ix":80,"action":{"kind":"Undelegate","val":2,"amt":1402},"partialState":{"h":7,"t":42,"tokens":[17126,7993,5619,4486],"delegation":[16126,6993,4619,3486],"delegatorTokens":9999999953203}},{"ix":81,"action":{"kind":"Undelegate","val":0,"amt":2602},"partialState":{"h":7,"t":42,"tokens":[14524,7993,5619,4486],"delegation":[13524,6993,4619,3486],"delegatorTokens":9999999953203}},{"ix":82,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":83,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":84,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":85,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":8,"t":48,"tokens":[14524,7993,5619,4486],"delegation":[13524,6993,4619,3486],"delegatorTokens":9999999953203,"jailed":[1000000000000023,null,1000000000000023,null],"status":["unbonding","bonded","unbonding","bonded"]}},{"ix":86,"action":{"kind":"Undelegate","val":0,"amt":1038},"partialState":{"h":8,"t":48,"tokens":[13486,7993,5619,4486],"delegation":[12486,6993,4619,3486],"delegatorTokens":9999999953203}},{"ix":87,"action":{"kind":"Deliver","chain":"consumer","numPackets":6},"partialState":{"h":11,"t":66,"consumerPower":[null,1630,null,3876],"outstandingDowntime":[false,false,false,false]}},{"ix":88,"action":{"kind":"Delegate","val":1,"amt":3877},"partialState":{"h":8,"t":48,"tokens":[13486,11870,5619,4486],"delegation":[12486,10870,4619,3486],"delegatorTokens":9999999949326}},{"ix":89,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":90,"action":{"kind":"Delegate","val":1,"amt":1448},"partialState":{"h":8,"t":48,"tokens":[13486,13318,5619,4486],"delegation":[12486,12318,4619,3486],"delegatorTokens":9999999947878}},{"ix":91,"action":{"kind":"Undelegate","val":1,"amt":3657},"partialState":{"h":8,"t":48,"tokens":[13486,9661,5619,4486],"delegation":[12486,8661,4619,3486],"delegatorTokens":9999999947878}},{"ix":92,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":9,"t":54,"tokens":[13486,9661,5619,4486],"delegation":[12486,8661,4619,3486],"delegatorTokens":9999999947878,"jailed":[1000000000000023,null,1000000000000023,null],"status":["unbonding","bonded","unbonding","bonded"]}},{"ix":93,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":10,"t":60,"tokens":[13486,9661,5619,4486],"delegation":[12486,8661,4619,3486],"delegatorTokens":9999999947878,"jailed":[1000000000000023,null,1000000000000023,null],"status":["unbonding","bonded","unbonding","bonded"]}},{"ix":94,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":95,"action":{"kind":"Deliver","chain":"consumer","numPackets":2},"partialState":{"h":11,"t":66,"consumerPower":[null,1630,null,3876],"outstandingDowntime":[false,false,false,false]}},{"ix":96,"action":{"kind":"Undelegate","val":0,"amt":3495},"partialState":{"h":10,"t":60,"tokens":[9991,9661,5619,4486],"delegation":[8991,8661,4619,3486],"delegatorTokens":9999999947878}},{"ix":97,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":11,"t":66,"tokens":[9991,9661,5619,4486],"delegation":[8991,8661,4619,3486],"delegatorTokens":9999999947878,"jailed":[1000000000000023,null,1000000000000023,null],"status":["unbonding","bonded","unbonding","bonded"]}},{"ix":98,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":99,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":12,"t":72,"consumerPower":[null,9661,null,4486],"outstandingDowntime":[false,false,false,false]}},{"ix":100,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":13,"t":78,"consumerPower":[null,9661,null,4486],"outstandingDowntime":[false,false,false,false]}},{"ix":101,"action":{"kind":"Deliver","chain":"provider","numPackets":4},"partialState":{"h":11,"t":66,"tokens":[9991,9661,5619,4486],"delegation":[8991,8661,4619,3486],"delegatorTokens":9999999947878,"jailed":[1000000000000023,null,1000000000000023,null],"status":["unbonding","bonded","unbonding","bonded"]}},{"ix":102,"action":{"kind":"Deliver","chain":"consumer","numPackets":3},"partialState":{"h":13,"t":78,"consumerPower":[null,9661,null,4486],"outstandingDowntime":[false,false,false,false]}},{"ix":103,"action":{"kind":"Delegate","val":0,"amt":4332},"partialState":{"h":11,"t":66,"tokens":[14323,9661,5619,4486],"delegation":[13323,8661,4619,3486],"delegatorTokens":9999999943546}},{"ix":104,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":12,"t":72,"tokens":[14323,9661,5619,4486],"delegation":[13323,8661,4619,3486],"delegatorTokens":9999999943546,"jailed":[1000000000000023,null,1000000000000023,null],"status":["unbonding","bonded","unbonding","bonded"]}},{"ix":105,"action":{"kind":"Deliver","chain":"consumer","numPackets":6},"partialState":{"h":13,"t":78,"consumerPower":[null,9661,null,4486],"outstandingDowntime":[false,false,false,false]}},{"ix":106,"action":{"kind":"Undelegate","val":3,"amt":4835},"partialState":{"h":12,"t":72,"tokens":[14323,9661,5619,4486],"delegation":[13323,8661,4619,3486],"delegatorTokens":9999999943546}},{"ix":107,"action":{"kind":"Deliver","chain":"provider","numPackets":6},"partialState":{"h":12,"t":72,"tokens":[14323,9661,5619,4486],"delegation":[13323,8661,4619,3486],"delegatorTokens":9999999943546,"jailed":[1000000000000023,null,1000000000000023,null],"status":["unbonding","bonded","unbonding","bonded"]}},{"ix":108,"action":{"kind":"Undelegate","val":1,"amt":1887},"partialState":{"h":12,"t":72,"tokens":[14323,7774,5619,4486],"delegation":[13323,6774,4619,3486],"delegatorTokens":9999999943546}},{"ix":109,"action":{"kind":"Undelegate","val":0,"amt":1916},"partialState":{"h":12,"t":72,"tokens":[12407,7774,5619,4486],"delegation":[11407,6774,4619,3486],"delegatorTokens":9999999943546}},{"ix":110,"action":{"kind":"Undelegate","val":1,"amt":3645},"partialState":{"h":12,"t":72,"tokens":[12407,4129,5619,4486],"delegation":[11407,3129,4619,3486],"delegatorTokens":9999999943546}},{"ix":111,"action":{"kind":"Deliver","chain":"provider","numPackets":2},"partialState":{"h":12,"t":72,"tokens":[12407,4129,5619,4486],"delegation":[11407,3129,4619,3486],"delegatorTokens":9999999943546,"jailed":[1000000000000023,null,1000000000000023,null],"status":["unbonding","bonded","unbonding","bonded"]}},{"ix":112,"action":{"kind":"Undelegate","val":2,"amt":2761},"partialState":{"h":12,"t":72,"tokens":[12407,4129,2858,4486],"delegation":[11407,3129,1858,3486],"delegatorTokens":9999999943546}},{"ix":113,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":114,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":115,"action":{"kind":"Deliver","chain":"consumer","numPackets":6},"partialState":{"h":13,"t":78,"consumerPower":[null,9661,null,4486],"outstandingDowntime":[false,false,false,false]}},{"ix":116,"action":{"kind":"Deliver","chain":"provider","numPackets":5},"partialState":{"h":12,"t":72,"tokens":[12407,4129,2858,4486],"delegation":[11407,3129,1858,3486],"delegatorTokens":9999999943546,"jailed":[1000000000000023,null,1000000000000023,null],"status":["unbonding","bonded","unbonding","bonded"]}},{"ix":117,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":118,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":119,"action":{"kind":"Deliver","chain":"provider","numPackets":4},"partialState":{"h":12,"t":72,"tokens":[12407,4129,2858,4486],"delegation":[11407,3129,1858,3486],"delegatorTokens":9999999943546,"jailed":[1000000000000023,null,1000000000000023,null],"status":["unbonding","bonded","unbonding","bonded"]}},{"ix":120,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":13,"t":78,"tokens":[12407,4129,2858,4486],"delegation":[11407,3129,1858,3486],"delegatorTokens":9999999943546,"jailed":[1000000000000023,null,1000000000000023,null],"status":["unbonding","bonded","unbonding","bonded"]}},{"ix":121,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":14,"t":84,"consumerPower":[null,9661,null,4486],"outstandingDowntime":[false,false,false,false]}},{"ix":122,"action":{"kind":"Deliver","chain":"consumer","numPackets":2},"partialState":{"h":14,"t":84,"consumerPower":[null,9661,null,4486],"outstandingDowntime":[false,false,false,false]}},{"ix":123,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":15,"t":90,"consumerPower":[null,9661,null,4486],"outstandingDowntime":[false,false,false,false]}},{"ix":124,"action":{"kind":"Undelegate","val":1,"amt":1040},"partialState":{"h":13,"t":78,"tokens":[12407,3089,2858,4486],"delegation":[11407,2089,1858,3486],"delegatorTokens":9999999943546}},{"ix":125,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":16,"t":96,"consumerPower":[null,9661,null,4486],"outstandingDowntime":[false,false,false,false]}},{"ix":126,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":14,"t":84,"tokens":[12407,3089,2858,4486],"delegation":[11407,2089,1858,3486],"delegatorTokens":9999999943546,"jailed":[1000000000000023,null,1000000000000023,null],"status":["unbonding","bonded","unbonding","bonded"]}},{"ix":127,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":128,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":129,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":17,"t":102,"consumerPower":[null,9661,null,4486],"outstandingDowntime":[false,false,false,false]}},{"ix":130,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":18,"t":108,"consumerPower":[null,9661,null,4486],"outstandingDowntime":[false,false,false,false]}},{"ix":131,"action":{"kind":"Deliver","chain":"provider","numPackets":4},"partialState":{"h":14,"t":84,"tokens":[12407,3089,2858,4486],"delegation":[11407,2089,1858,3486],"delegatorTokens":9999999943546,"jailed":[1000000000000023,null,1000000000000023,null],"status":["unbonding","bonded","unbonding","bonded"]}},{"ix":132,"action":{"kind":"Delegate","val":3,"amt":3157},"partialState":{"h":14,"t":84,"tokens":[12407,3089,2858,7643],"delegation":[11407,2089,1858,6643],"delegatorTokens":9999999940389}},{"ix":133,"action":{"kind":"Undelegate","val":2,"amt":4780},"partialState":{"h":14,"t":84,"tokens":[12407,3089,2858,7643],"delegation":[11407,2089,1858,6643],"delegatorTokens":9999999940389}},{"ix":134,"action":{"kind":"Deliver","chain":"consumer","numPackets":4},"partialState":{"h":18,"t":108,"consumerPower":[null,9661,null,4486],"outstandingDowntime":[false,false,false,false]}},{"ix":135,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":136,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":137,"action":{"kind":"Deliver","chain":"consumer","numPackets":3},"partialState":{"h":18,"t":108,"consumerPower":[null,9661,null,4486],"outstandingDowntime":[false,false,false,false]}},{"ix":138,"action":{"kind":"Deliver","chain":"provider","numPackets":5},"partialState":{"h":14,"t":84,"tokens":[12407,3089,2858,7643],"delegation":[11407,2089,1858,6643],"delegatorTokens":9999999940389,"jailed":[1000000000000023,null,1000000000000023,null],"status":["unbonding","bonded","unbonding","bonded"]}},{"ix":139,"action":{"kind":"Deliver","chain":"consumer","numPackets":4},"partialState":{"h":18,"t":108,"consumerPower":[null,9661,null,4486],"outstandingDowntime":[false,false,false,false]}},{"ix":140,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":19,"t":114,"consumerPower":[null,4129,null,4486],"outstandingDowntime":[false,false,false,false]}},{"ix":141,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":15,"t":90,"tokens":[12407,3089,2858,7643],"delegation":[11407,2089,1858,6643],"delegatorTokens":9999999942759,"jailed":[1000000000000023,null,1000000000000023,null],"status":["unbonding","bonded","unbonding","bonded"]}},{"ix":142,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":143,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":144,"action":{"kind":"Undelegate","val":1,"amt":4574},"partialState":{"h":15,"t":90,"tokens":[12407,3089,2858,7643],"delegation":[11407,2089,1858,6643],"delegatorTokens":9999999942759}},{"ix":145,"action":{"kind":"Undelegate","val":3,"amt":3608},"partialState":{"h":15,"t":90,"tokens":[12407,3089,2858,4035],"delegation":[11407,2089,1858,3035],"delegatorTokens":9999999942759}},{"ix":146,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":147,"action":{"kind":"Undelegate","val":1,"amt":3512},"partialState":{"h":15,"t":90,"tokens":[12407,3089,2858,4035],"delegation":[11407,2089,1858,3035],"delegatorTokens":9999999942759}},{"ix":148,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":20,"t":120,"consumerPower":[null,4129,null,4486],"outstandingDowntime":[false,false,false,false]}},{"ix":149,"action":{"kind":"Deliver","chain":"provider","numPackets":1},"partialState":{"h":15,"t":90,"tokens":[12407,3089,2858,4035],"delegation":[11407,2089,1858,3035],"delegatorTokens":9999999942759,"jailed":[1000000000000023,null,1000000000000023,null],"status":["unbonding","bonded","unbonding","bonded"]}},{"ix":150,"action":{"kind":"Delegate","val":3,"amt":3493},"partialState":{"h":15,"t":90,"tokens":[12407,3089,2858,7528],"delegation":[11407,2089,1858,6528],"delegatorTokens":9999999939266}},{"ix":151,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":152,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":153,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":154,"action":{"kind":"Delegate","val":1,"amt":3792},"partialState":{"h":15,"t":90,"tokens":[12407,6881,2858,7528],"delegation":[11407,5881,1858,6528],"delegatorTokens":9999999935474}},{"ix":155,"action":{"kind":"Delegate","val":3,"amt":1327},"partialState":{"h":15,"t":90,"tokens":[12407,6881,2858,8855],"delegation":[11407,5881,1858,7855],"delegatorTokens":9999999934147}},{"ix":156,"action":{"kind":"Deliver","chain":"consumer","numPackets":4},"partialState":{"h":20,"t":120,"consumerPower":[null,4129,null,4486],"outstandingDowntime":[false,false,false,false]}},{"ix":157,"action":{"kind":"Delegate","val":3,"amt":3113},"partialState":{"h":15,"t":90,"tokens":[12407,6881,2858,11968],"delegation":[11407,5881,1858,10968],"delegatorTokens":9999999931034}},{"ix":158,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":21,"t":126,"consumerPower":[null,3089,null,4486],"outstandingDowntime":[false,false,false,false]}},{"ix":159,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":160,"action":{"kind":"Deliver","chain":"consumer","numPackets":2},"partialState":{"h":21,"t":126,"consumerPower":[null,3089,null,4486],"outstandingDowntime":[false,false,false,false]}},{"ix":161,"action":{"kind":"Deliver","chain":"consumer","numPackets":5},"partialState":{"h":21,"t":126,"consumerPower":[null,3089,null,4486],"outstandingDowntime":[false,false,false,false]}},{"ix":162,"action":{"kind":"Delegate","val":1,"amt":4016},"partialState":{"h":15,"t":90,"tokens":[12407,10897,2858,11968],"delegation":[11407,9897,1858,10968],"delegatorTokens":9999999927018}},{"ix":163,"action":{"kind":"Delegate","val":1,"amt":1508},"partialState":{"h":15,"t":90,"tokens":[12407,12405,2858,11968],"delegation":[11407,11405,1858,10968],"delegatorTokens":9999999925510}},{"ix":164,"action":{"kind":"Delegate","val":2,"amt":1943},"partialState":{"h":15,"t":90,"tokens":[12407,12405,4801,11968],"delegation":[11407,11405,3801,10968],"delegatorTokens":9999999923567}},{"ix":165,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":16,"t":96,"tokens":[12407,12405,4801,11968],"delegation":[11407,11405,3801,10968],"delegatorTokens":9999999923567,"jailed":[1000000000000023,null,1000000000000023,null],"status":["unbonded","bonded","unbonded","bonded"]}},{"ix":166,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":167,"action":{"kind":"Deliver","chain":"consumer","numPackets":3},"partialState":{"h":21,"t":126,"consumerPower":[null,3089,null,4486],"outstandingDowntime":[false,false,false,false]}},{"ix":168,"action":{"kind":"Deliver","chain":"consumer","numPackets":3},"partialState":{"h":21,"t":126,"consumerPower":[null,3089,null,4486],"outstandingDowntime":[false,false,false,false]}},{"ix":169,"action":{"kind":"Delegate","val":1,"amt":2385},"partialState":{"h":16,"t":96,"tokens":[12407,14790,4801,11968],"delegation":[11407,13790,3801,10968],"delegatorTokens":9999999921182}},{"ix":170,"action":{"kind":"Deliver","chain":"consumer","numPackets":5},"partialState":{"h":21,"t":126,"consumerPower":[null,3089,null,4486],"outstandingDowntime":[false,false,false,false]}},{"ix":171,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":22,"t":132,"consumerPower":[null,3089,null,7643],"outstandingDowntime":[false,false,false,false]}},{"ix":172,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":173,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":174,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":23,"t":138,"consumerPower":[null,3089,null,7643],"outstandingDowntime":[false,false,false,false]}},{"ix":175,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":176,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":17,"t":102,"tokens":[12407,14790,4801,11968],"delegation":[11407,13790,3801,10968],"delegatorTokens":9999999921182,"jailed":[1000000000000023,null,1000000000000023,null],"status":["unbonded","bonded","unbonded","bonded"]}},{"ix":177,"action":{"kind":"Undelegate","val":1,"amt":2089},"partialState":{"h":17,"t":102,"tokens":[12407,12701,4801,11968],"delegation":[11407,11701,3801,10968],"delegatorTokens":9999999921182}},{"ix":178,"action":{"kind":"Deliver","chain":"consumer","numPackets":6},"partialState":{"h":23,"t":138,"consumerPower":[null,3089,null,7643],"outstandingDowntime":[false,false,false,false]}},{"ix":179,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":180,"action":{"kind":"Delegate","val":2,"amt":1859},"partialState":{"h":17,"t":102,"tokens":[12407,12701,6660,11968],"delegation":[11407,11701,5660,10968],"delegatorTokens":9999999919323}},{"ix":181,"action":{"kind":"Delegate","val":1,"amt":3772},"partialState":{"h":17,"t":102,"tokens":[12407,16473,6660,11968],"delegation":[11407,15473,5660,10968],"delegatorTokens":9999999915551}},{"ix":182,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":183,"action":{"kind":"Deliver","chain":"provider","numPackets":2},"partialState":{"h":17,"t":102,"tokens":[12407,16473,6660,11968],"delegation":[11407,15473,5660,10968],"delegatorTokens":9999999915551,"jailed":[1000000000000023,null,1000000000000023,null],"status":["unbonded","bonded","unbonded","bonded"]}},{"ix":184,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":185,"action":{"kind":"Delegate","val":3,"amt":4676},"partialState":{"h":17,"t":102,"tokens":[12407,16473,6660,16644],"delegation":[11407,15473,5660,15644],"delegatorTokens":9999999910875}},{"ix":186,"action":{"kind":"Undelegate","val":3,"amt":3674},"partialState":{"h":17,"t":102,"tokens":[12407,16473,6660,12970],"delegation":[11407,15473,5660,11970],"delegatorTokens":9999999910875}},{"ix":187,"action":{"kind":"Deliver","chain":"consumer","numPackets":1},"partialState":{"h":23,"t":138,"consumerPower":[null,3089,null,7643],"outstandingDowntime":[false,false,false,false]}},{"ix":188,"action":{"kind":"Deliver","chain":"provider","numPackets":4},"partialState":{"h":17,"t":102,"tokens":[12407,16473,6660,12970],"delegation":[11407,15473,5660,11970],"delegatorTokens":9999999910875,"jailed":[1000000000000023,null,1000000000000023,null],"status":["unbonded","bonded","unbonded","bonded"]}},{"ix":189,"action":{"kind":"Delegate","val":2,"amt":4806},"partialState":{"h":17,"t":102,"tokens":[12407,16473,11466,12970],"delegation":[11407,15473,10466,11970],"delegatorTokens":9999999906069}},{"ix":190,"action":{"kind":"Delegate","val":1,"amt":3430},"partialState":{"h":17,"t":102,"tokens":[12407,19903,11466,12970],"delegation":[11407,18903,10466,11970],"delegatorTokens":9999999902639}},{"ix":191,"action":{"kind":"Delegate","val":3,"amt":1475},"partialState":{"h":17,"t":102,"tokens":[12407,19903,11466,14445],"delegation":[11407,18903,10466,13445],"delegatorTokens":9999999901164}},{"ix":192,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":24,"t":144,"consumerPower":[null,12405,null,11968],"outstandingDowntime":[false,false,false,false]}},{"ix":193,"action":{"kind":"Deliver","chain":"provider","numPackets":2},"partialState":{"h":17,"t":102,"tokens":[12407,19903,11466,14445],"delegation":[11407,18903,10466,13445],"delegatorTokens":9999999901164,"jailed":[1000000000000023,null,1000000000000023,null],"status":["unbonded","bonded","unbonded","bonded"]}},{"ix":194,"action":{"kind":"Delegate","val":0,"amt":2729},"partialState":{"h":17,"t":102,"tokens":[15136,19903,11466,14445],"delegation":[14136,18903,10466,13445],"delegatorTokens":9999999898435}},{"ix":195,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":196,"action":{"kind":"Deliver","chain":"provider","numPackets":6},"partialState":{"h":17,"t":102,"tokens":[15136,19903,11466,14445],"delegation":[14136,18903,10466,13445],"delegatorTokens":9999999898435,"jailed":[1000000000000023,null,1000000000000023,null],"status":["unbonded","bonded","unbonded","bonded"]}},{"ix":197,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":198,"action":{"kind":"Deliver","chain":"consumer","numPackets":1},"partialState":{"h":24,"t":144,"consumerPower":[null,12405,null,11968],"outstandingDowntime":[false,false,false,false]}},{"ix":199,"action":{"kind":"Delegate","val":3,"amt":1174},"partialState":{"h":17,"t":102,"tokens":[15136,19903,11466,15619],"delegation":[14136,18903,10466,14619],"delegatorTokens":9999999897261}}],"events":["send_downtime_slash_request","send_downtime_slash_request","send_double_sign_slash_request","receive_double_sign_slash_request","downtime_slash_request_outstanding","downtime_slash_request_outstanding","more_than_one_third_val_power_change","receive_downtime_slash_request","jail","receive_downtime_slash_request","jail","send_vsc_with_downtime_ack","send_double_sign_slash_request","more_than_one_third_val_power_change","rebond_unval","send_vsc_without_downtime_ack","receive_downtime_slash_ack","receive_downtime_slash_ack","send_double_sign_slash_request","send_vsc_without_downtime_ack","send_downtime_slash_request","downtime_slash_request_outstanding","downtime_slash_request_outstanding","send_double_sign_slash_request","send_downtime_slash_request","consumer_update_val","consumer_del_val","consumer_del_val","consumer_add_val","send_double_sign_slash_request","receive_double_sign_slash_request","receive_double_sign_slash_request","receive_double_sign_slash_request","insufficient_shares","receive_downtime_slash_request","jail","receive_downtime_slash_request","jail","send_vsc_with_downtime_ack","send_vsc_not_because_change","send_vsc_without_downtime_ack","receive_double_sign_slash_request","send_vsc_without_downtime_ack","receive_downtime_slash_ack","receive_downtime_slash_ack","send_vsc_without_downtime_ack","send_vsc_not_because_change","send_vsc_without_downtime_ack","consumer_update_val","consumer_update_val","insufficient_shares","send_vsc_without_downtime_ack","consumer_send_maturation","consumer_send_maturation","some_undels_expired_but_not_completed","send_vsc_without_downtime_ack","insufficient_shares","consumer_update_val","complete_undel_immediate","set_unval_hold_false","set_unval_hold_false","send_vsc_without_downtime_ack","insufficient_shares","insufficient_shares","consumer_send_maturation","consumer_send_maturation","consumer_send_maturation","consumer_send_maturation","consumer_send_maturation","consumer_update_val","complete_unval_in_endblock","complete_unval_in_endblock","send_vsc_without_downtime_ack","consumer_update_val","consumer_send_maturation","some_undels_expired_but_not_completed","send_vsc_without_downtime_ack","consumer_update_val","consumer_update_val"]},{"meta":{"commit":"7ffd0c04e4205cbc9caf212abfe6c59ee43153bf"},"constants":{"P":"provider","C":"consumer","UNBONDING_SECONDS_P":70,"UNBONDING_SECONDS_C":50,"TRUSTING_SECONDS":49,"NUM_VALIDATORS":4,"MAX_VALIDATORS":2,"SLASH_DOUBLESIGN":0,"SLASH_DOWNTIME":0,"JAIL_SECONDS":999999999999999,"BLOCK_SECONDS":6,"INITIAL_DELEGATOR_TOKENS":10000000000000,"DELEGATE_AMT_MIN":1000,"DELEGATE_AMT_MAX":5000,"UNDELEGATE_AMT_MIN":1000,"UNDELEGATE_AMT_MAX":5000,"ISDOWNTIME_PROBABILITY":0.5,"MAX_NUM_PACKETS_FOR_DELIVER":6},"actions":[{"ix":0,"action":{"kind":"Delegate","val":1,"amt":3977},"partialState":{"h":1,"t":6,"tokens":[5000,7977,3000,2000],"delegation":[4000,6977,2000,1000],"delegatorTokens":9999999996023}},{"ix":1,"action":{"kind":"ConsumerSlash","val":0,"infractionHeight":0,"isDowntime":false},"partialState":{"h":1,"t":6,"outstandingDowntime":[false,false,false,false]}},{"ix":2,"action":{"kind":"Delegate","val":2,"amt":4141},"partialState":{"h":1,"t":6,"tokens":[5000,7977,7141,2000],"delegation":[4000,6977,6141,1000],"delegatorTokens":9999999991882}},{"ix":3,"action":{"kind":"ConsumerSlash","val":0,"infractionHeight":0,"isDowntime":true},"partialState":{"h":1,"t":6,"outstandingDowntime":[true,false,false,false]}},{"ix":4,"action":{"kind":"ConsumerSlash","val":0,"infractionHeight":0,"isDowntime":true},"partialState":{"h":1,"t":6,"outstandingDowntime":[true,false,false,false]}},{"ix":5,"action":{"kind":"Delegate","val":1,"amt":1639},"partialState":{"h":1,"t":6,"tokens":[5000,9616,7141,2000],"delegation":[4000,8616,6141,1000],"delegatorTokens":9999999990243}},{"ix":6,"action":{"kind":"Deliver","chain":"provider","numPackets":3},"partialState":{"h":1,"t":6,"tokens":[5000,9616,7141,2000],"delegation":[4000,8616,6141,1000],"delegatorTokens":9999999990243,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":7,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":2,"t":12,"tokens":[5000,9616,7141,2000],"delegation":[4000,8616,6141,1000],"delegatorTokens":9999999990243,"jailed":[null,null,null,null],"status":["unbonding","bonded","bonded","unbonded"]}},{"ix":8,"action":{"kind":"ConsumerSlash","val":3,"infractionHeight":0,"isDowntime":false},"partialState":{"h":1,"t":6,"outstandingDowntime":[true,false,false,false]}},{"ix":9,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":10,"action":{"kind":"ConsumerSlash","val":0,"infractionHeight":0,"isDowntime":false},"partialState":{"h":1,"t":6,"outstandingDowntime":[true,false,false,false]}},{"ix":11,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":2,"t":12,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[true,false,false,false]}},{"ix":12,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":3,"t":18,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[true,false,false,false]}},{"ix":13,"action":{"kind":"Deliver","chain":"provider","numPackets":3},"partialState":{"h":2,"t":12,"tokens":[5000,9616,7141,2000],"delegation":[4000,8616,6141,1000],"delegatorTokens":9999999990243,"jailed":[null,null,null,null],"status":["unbonding","bonded","bonded","unbonded"]}},{"ix":14,"action":{"kind":"Deliver","chain":"consumer","numPackets":6},"partialState":{"h":3,"t":18,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[true,false,false,false]}},{"ix":15,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":16,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":17,"action":{"kind":"Deliver","chain":"consumer","numPackets":1},"partialState":{"h":3,"t":18,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[true,false,false,false]}},{"ix":18,"action":{"kind":"Undelegate","val":1,"amt":2823},"partialState":{"h":2,"t":12,"tokens":[5000,6793,7141,2000],"delegation":[4000,5793,6141,1000],"delegatorTokens":9999999990243}},{"ix":19,"action":{"kind":"ConsumerSlash","val":0,"infractionHeight":1,"isDowntime":false},"partialState":{"h":3,"t":18,"outstandingDowntime":[true,false,false,false]}},{"ix":20,"action":{"kind":"Delegate","val":1,"amt":1383},"partialState":{"h":2,"t":12,"tokens":[5000,8176,7141,2000],"delegation":[4000,7176,6141,1000],"delegatorTokens":9999999988860}},{"ix":21,"action":{"kind":"ConsumerSlash","val":3,"infractionHeight":1,"isDowntime":true},"partialState":{"h":3,"t":18,"outstandingDowntime":[true,false,false,true]}},{"ix":22,"action":{"kind":"Delegate","val":2,"amt":2511},"partialState":{"h":2,"t":12,"tokens":[5000,8176,9652,2000],"delegation":[4000,7176,8652,1000],"delegatorTokens":9999999986349}},{"ix":23,"action":{"kind":"Undelegate","val":3,"amt":1013},"partialState":{"h":2,"t":12,"tokens":[5000,8176,9652,2000],"delegation":[4000,7176,8652,1000],"delegatorTokens":9999999986349}},{"ix":24,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":4,"t":24,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[true,false,false,true]}},{"ix":25,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":26,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":27,"action":{"kind":"Deliver","chain":"provider","numPackets":4},"partialState":{"h":2,"t":12,"tokens":[5000,8176,9652,2000],"delegation":[4000,7176,8652,1000],"delegatorTokens":9999999986349,"jailed":[null,null,null,null],"status":["unbonding","bonded","bonded","unbonded"]}},{"ix":28,"action":{"kind":"Undelegate","val":2,"amt":4407},"partialState":{"h":2,"t":12,"tokens":[5000,8176,5245,2000],"delegation":[4000,7176,4245,1000],"delegatorTokens":9999999986349}},{"ix":29,"action":{"kind":"Undelegate","val":3,"amt":3019},"partialState":{"h":2,"t":12,"tokens":[5000,8176,5245,2000],"delegation":[4000,7176,4245,1000],"delegatorTokens":9999999986349}},{"ix":30,"action":{"kind":"Deliver","chain":"provider","numPackets":2},"partialState":{"h":2,"t":12,"tokens":[5000,8176,5245,2000],"delegation":[4000,7176,4245,1000],"delegatorTokens":9999999986349,"jailed":[null,null,null,null],"status":["unbonding","bonded","bonded","unbonded"]}},{"ix":31,"action":{"kind":"Undelegate","val":2,"amt":4193},"partialState":{"h":2,"t":12,"tokens":[5000,8176,1052,2000],"delegation":[4000,7176,52,1000],"delegatorTokens":9999999986349}},{"ix":32,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":3,"t":18,"tokens":[5000,8176,1052,2000],"delegation":[4000,7176,52,1000],"delegatorTokens":9999999986349,"jailed":[1000000000000011,null,null,null],"status":["bonded","bonded","unbonding","unbonded"]}},{"ix":33,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":5,"t":30,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[true,false,false,true]}},{"ix":34,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":4,"t":24,"tokens":[5000,8176,1052,2000],"delegation":[4000,7176,52,1000],"delegatorTokens":9999999986349,"jailed":[1000000000000011,null,null,null],"status":["unbonding","bonded","unbonding","bonded"]}},{"ix":35,"action":{"kind":"Delegate","val":0,"amt":4007},"partialState":{"h":4,"t":24,"tokens":[9007,8176,1052,2000],"delegation":[8007,7176,52,1000],"delegatorTokens":9999999982342}},{"ix":36,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":37,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":5,"t":30,"tokens":[9007,8176,1052,2000],"delegation":[8007,7176,52,1000],"delegatorTokens":9999999982342,"jailed":[1000000000000011,null,null,null],"status":["unbonding","bonded","unbonding","bonded"]}},{"ix":38,"action":{"kind":"Deliver","chain":"consumer","numPackets":3},"partialState":{"h":5,"t":30,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,false,false,true]}},{"ix":39,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":40,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":41,"action":{"kind":"ConsumerSlash","val":0,"infractionHeight":3,"isDowntime":true},"partialState":{"h":5,"t":30,"outstandingDowntime":[true,false,false,true]}},{"ix":42,"action":{"kind":"Undelegate","val":0,"amt":3056},"partialState":{"h":5,"t":30,"tokens":[5951,8176,1052,2000],"delegation":[4951,7176,52,1000],"delegatorTokens":9999999982342}},{"ix":43,"action":{"kind":"ConsumerSlash","val":1,"infractionHeight":2,"isDowntime":true},"partialState":{"h":5,"t":30,"outstandingDowntime":[true,true,false,true]}},{"ix":44,"action":{"kind":"Delegate","val":1,"amt":4224},"partialState":{"h":5,"t":30,"tokens":[5951,12400,1052,2000],"delegation":[4951,11400,52,1000],"delegatorTokens":9999999978118}},{"ix":45,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":6,"t":36,"tokens":[5951,12400,1052,2000],"delegation":[4951,11400,52,1000],"delegatorTokens":9999999978118,"jailed":[1000000000000011,null,null,null],"status":["unbonding","bonded","unbonding","bonded"]}},{"ix":46,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":7,"t":42,"tokens":[5951,12400,1052,2000],"delegation":[4951,11400,52,1000],"delegatorTokens":9999999978118,"jailed":[1000000000000011,null,null,null],"status":["unbonding","bonded","unbonding","bonded"]}},{"ix":47,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":8,"t":48,"tokens":[5951,12400,1052,2000],"delegation":[4951,11400,52,1000],"delegatorTokens":9999999978118,"jailed":[1000000000000011,null,null,null],"status":["unbonding","bonded","unbonding","bonded"]}},{"ix":48,"action":{"kind":"Deliver","chain":"consumer","numPackets":1},"partialState":{"h":5,"t":30,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[true,true,false,true]}},{"ix":49,"action":{"kind":"Undelegate","val":1,"amt":1862},"partialState":{"h":8,"t":48,"tokens":[5951,10538,1052,2000],"delegation":[4951,9538,52,1000],"delegatorTokens":9999999978118}},{"ix":50,"action":{"kind":"Undelegate","val":2,"amt":2423},"partialState":{"h":8,"t":48,"tokens":[5951,10538,1052,2000],"delegation":[4951,9538,52,1000],"delegatorTokens":9999999978118}},{"ix":51,"action":{"kind":"Undelegate","val":0,"amt":3835},"partialState":{"h":8,"t":48,"tokens":[2116,10538,1052,2000],"delegation":[1116,9538,52,1000],"delegatorTokens":9999999978118}},{"ix":52,"action":{"kind":"Deliver","chain":"provider","numPackets":2},"partialState":{"h":8,"t":48,"tokens":[2116,10538,1052,2000],"delegation":[1116,9538,52,1000],"delegatorTokens":9999999978118,"jailed":[1000000000000011,null,null,null],"status":["unbonding","bonded","unbonding","bonded"]}},{"ix":53,"action":{"kind":"Undelegate","val":3,"amt":4840},"partialState":{"h":8,"t":48,"tokens":[2116,10538,1052,2000],"delegation":[1116,9538,52,1000],"delegatorTokens":9999999978118}},{"ix":54,"action":{"kind":"Delegate","val":2,"amt":1550},"partialState":{"h":8,"t":48,"tokens":[2116,10538,2602,2000],"delegation":[1116,9538,1602,1000],"delegatorTokens":9999999976568}},{"ix":55,"action":{"kind":"Undelegate","val":3,"amt":3190},"partialState":{"h":8,"t":48,"tokens":[2116,10538,2602,2000],"delegation":[1116,9538,1602,1000],"delegatorTokens":9999999976568}},{"ix":56,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":6,"t":36,"consumerPower":[null,12400,null,2000],"outstandingDowntime":[true,true,false,true]}},{"ix":57,"action":{"kind":"Deliver","chain":"consumer","numPackets":6},"partialState":{"h":6,"t":36,"consumerPower":[null,12400,null,2000],"outstandingDowntime":[true,true,false,true]}},{"ix":58,"action":{"kind":"Deliver","chain":"consumer","numPackets":4},"partialState":{"h":6,"t":36,"consumerPower":[null,12400,null,2000],"outstandingDowntime":[true,true,false,true]}},{"ix":59,"action":{"kind":"Deliver","chain":"consumer","numPackets":6},"partialState":{"h":6,"t":36,"consumerPower":[null,12400,null,2000],"outstandingDowntime":[true,true,false,true]}},{"ix":60,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":9,"t":54,"tokens":[2116,10538,2602,2000],"delegation":[1116,9538,1602,1000],"delegatorTokens":9999999976568,"jailed":[1000000000000011,null,null,1000000000000047],"status":["unbonding","bonded","bonded","unbonding"]}},{"ix":61,"action":{"kind":"Delegate","val":1,"amt":2311},"partialState":{"h":9,"t":54,"tokens":[2116,12849,2602,2000],"delegation":[1116,11849,1602,1000],"delegatorTokens":9999999974257}},{"ix":62,"action":{"kind":"Delegate","val":0,"amt":1941},"partialState":{"h":9,"t":54,"tokens":[4057,12849,2602,2000],"delegation":[3057,11849,1602,1000],"delegatorTokens":9999999972316}},{"ix":63,"action":{"kind":"Deliver","chain":"provider","numPackets":6},"partialState":{"h":9,"t":54,"tokens":[4057,12849,2602,2000],"delegation":[3057,11849,1602,1000],"delegatorTokens":9999999972316,"jailed":[1000000000000011,null,null,1000000000000047],"status":["unbonding","bonded","bonded","unbonding"]}},{"ix":64,"action":{"kind":"Undelegate","val":3,"amt":2272},"partialState":{"h":9,"t":54,"tokens":[4057,12849,2602,2000],"delegation":[3057,11849,1602,1000],"delegatorTokens":9999999972316}},{"ix":65,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":66,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":7,"t":42,"consumerPower":[null,12400,null,2000],"outstandingDowntime":[true,true,false,true]}},{"ix":67,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":10,"t":60,"tokens":[4057,12849,2602,2000],"delegation":[3057,11849,1602,1000],"delegatorTokens":9999999972316,"jailed":[1000000000000011,null,null,1000000000000047],"status":["unbonding","bonded","bonded","unbonding"]}},{"ix":68,"action":{"kind":"Delegate","val":0,"amt":4433},"partialState":{"h":10,"t":60,"tokens":[8490,12849,2602,2000],"delegation":[7490,11849,1602,1000],"delegatorTokens":9999999967883}},{"ix":69,"action":{"kind":"Delegate","val":0,"amt":2627},"partialState":{"h":10,"t":60,"tokens":[11117,12849,2602,2000],"delegation":[10117,11849,1602,1000],"delegatorTokens":9999999965256}},{"ix":70,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":11,"t":66,"tokens":[11117,12849,2602,2000],"delegation":[10117,11849,1602,1000],"delegatorTokens":9999999965256,"jailed":[1000000000000011,null,null,1000000000000047],"status":["unbonding","bonded","bonded","unbonding"]}},{"ix":71,"action":{"kind":"Delegate","val":3,"amt":3422},"partialState":{"h":11,"t":66,"tokens":[11117,12849,2602,5422],"delegation":[10117,11849,1602,4422],"delegatorTokens":9999999961834}},{"ix":72,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":8,"t":48,"consumerPower":[null,12400,null,2000],"outstandingDowntime":[true,true,false,true]}},{"ix":73,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":9,"t":54,"consumerPower":[null,12400,null,2000],"outstandingDowntime":[true,true,false,true]}},{"ix":74,"action":{"kind":"Deliver","chain":"provider","numPackets":6},"partialState":{"h":11,"t":66,"tokens":[11117,12849,2602,5422],"delegation":[10117,11849,1602,4422],"delegatorTokens":9999999961834,"jailed":[1000000000000011,null,null,1000000000000047],"status":["unbonding","bonded","bonded","unbonding"]}},{"ix":75,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":76,"action":{"kind":"Deliver","chain":"consumer","numPackets":4},"partialState":{"h":9,"t":54,"consumerPower":[null,12400,null,2000],"outstandingDowntime":[true,true,false,false]}},{"ix":77,"action":{"kind":"Deliver","chain":"provider","numPackets":2},"partialState":{"h":11,"t":66,"tokens":[11117,12849,2602,5422],"delegation":[10117,11849,1602,4422],"delegatorTokens":9999999961834,"jailed":[1000000000000011,null,null,1000000000000047],"status":["unbonding","bonded","bonded","unbonding"]}},{"ix":78,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":79,"action":{"kind":"Delegate","val":0,"amt":4917},"partialState":{"h":11,"t":66,"tokens":[16034,12849,2602,5422],"delegation":[15034,11849,1602,4422],"delegatorTokens":9999999956917}},{"ix":80,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":10,"t":60,"consumerPower":[null,12849,2602,null],"outstandingDowntime":[true,true,false,false]}},{"ix":81,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":82,"action":{"kind":"Deliver","chain":"consumer","numPackets":1},"partialState":{"h":10,"t":60,"consumerPower":[null,12849,2602,null],"outstandingDowntime":[true,true,false,false]}},{"ix":83,"action":{"kind":"Deliver","chain":"provider","numPackets":5},"partialState":{"h":11,"t":66,"tokens":[16034,12849,2602,5422],"delegation":[15034,11849,1602,4422],"delegatorTokens":9999999956917,"jailed":[1000000000000011,null,null,1000000000000047],"status":["unbonding","bonded","bonded","unbonding"]}},{"ix":84,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":85,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":12,"t":72,"tokens":[16034,12849,2602,5422],"delegation":[15034,11849,1602,4422],"delegatorTokens":9999999956917,"jailed":[1000000000000065,1000000000000065,null,1000000000000047],"status":["unbonding","bonded","bonded","unbonding"]}},{"ix":86,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":13,"t":78,"tokens":[16034,12849,2602,5422],"delegation":[15034,11849,1602,4422],"delegatorTokens":9999999956917,"jailed":[1000000000000065,1000000000000065,null,1000000000000047],"status":["unbonding","unbonding","bonded","unbonding"]}},{"ix":87,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":88,"action":{"kind":"Delegate","val":2,"amt":2352},"partialState":{"h":13,"t":78,"tokens":[16034,12849,4954,5422],"delegation":[15034,11849,3954,4422],"delegatorTokens":9999999954565}},{"ix":89,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":90,"action":{"kind":"Undelegate","val":3,"amt":1229},"partialState":{"h":13,"t":78,"tokens":[16034,12849,4954,4193],"delegation":[15034,11849,3954,3193],"delegatorTokens":9999999954565}},{"ix":91,"action":{"kind":"Undelegate","val":1,"amt":3745},"partialState":{"h":13,"t":78,"tokens":[16034,9104,4954,4193],"delegation":[15034,8104,3954,3193],"delegatorTokens":9999999954565}},{"ix":92,"action":{"kind":"Deliver","chain":"consumer","numPackets":6},"partialState":{"h":10,"t":60,"consumerPower":[null,12849,2602,null],"outstandingDowntime":[true,true,false,false]}},{"ix":93,"action":{"kind":"Delegate","val":3,"amt":2304},"partialState":{"h":13,"t":78,"tokens":[16034,9104,4954,6497],"delegation":[15034,8104,3954,5497],"delegatorTokens":9999999952261}},{"ix":94,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":95,"action":{"kind":"Deliver","chain":"provider","numPackets":5},"partialState":{"h":13,"t":78,"tokens":[16034,9104,4954,6497],"delegation":[15034,8104,3954,5497],"delegatorTokens":9999999952261,"jailed":[1000000000000065,1000000000000065,null,1000000000000047],"status":["unbonding","unbonding","bonded","unbonding"]}},{"ix":96,"action":{"kind":"Delegate","val":3,"amt":4420},"partialState":{"h":13,"t":78,"tokens":[16034,9104,4954,10917],"delegation":[15034,8104,3954,9917],"delegatorTokens":9999999947841}},{"ix":97,"action":{"kind":"Delegate","val":2,"amt":2382},"partialState":{"h":13,"t":78,"tokens":[16034,9104,7336,10917],"delegation":[15034,8104,6336,9917],"delegatorTokens":9999999945459}},{"ix":98,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":11,"t":66,"consumerPower":[null,12849,2602,null],"outstandingDowntime":[true,true,false,false]}},{"ix":99,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":14,"t":84,"tokens":[16034,9104,7336,10917],"delegation":[15034,8104,6336,9917],"delegatorTokens":9999999945459,"jailed":[1000000000000065,1000000000000065,null,1000000000000047],"status":["unbonding","unbonding","bonded","unbonding"]}},{"ix":100,"action":{"kind":"Undelegate","val":2,"amt":3853},"partialState":{"h":14,"t":84,"tokens":[16034,9104,3483,10917],"delegation":[15034,8104,2483,9917],"delegatorTokens":9999999945459}},{"ix":101,"action":{"kind":"Deliver","chain":"consumer","numPackets":5},"partialState":{"h":11,"t":66,"consumerPower":[null,12849,2602,null],"outstandingDowntime":[false,false,false,false]}},{"ix":102,"action":{"kind":"Undelegate","val":2,"amt":4188},"partialState":{"h":14,"t":84,"tokens":[16034,9104,3483,10917],"delegation":[15034,8104,2483,9917],"delegatorTokens":9999999945459}},{"ix":103,"action":{"kind":"Undelegate","val":3,"amt":2733},"partialState":{"h":14,"t":84,"tokens":[16034,9104,3483,8184],"delegation":[15034,8104,2483,7184],"delegatorTokens":9999999945459}},{"ix":104,"action":{"kind":"Undelegate","val":1,"amt":1536},"partialState":{"h":14,"t":84,"tokens":[16034,7568,3483,8184],"delegation":[15034,6568,2483,7184],"delegatorTokens":9999999945459}},{"ix":105,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":12,"t":72,"consumerPower":[null,null,2602,null],"outstandingDowntime":[false,false,false,false]}},{"ix":106,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":13,"t":78,"consumerPower":[null,null,2602,null],"outstandingDowntime":[false,false,false,false]}},{"ix":107,"action":{"kind":"Deliver","chain":"consumer","numPackets":1},"partialState":{"h":13,"t":78,"consumerPower":[null,null,2602,null],"outstandingDowntime":[false,false,false,false]}},{"ix":108,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":109,"action":{"kind":"Undelegate","val":0,"amt":4073},"partialState":{"h":14,"t":84,"tokens":[11961,7568,3483,8184],"delegation":[10961,6568,2483,7184],"delegatorTokens":9999999945459}},{"ix":110,"action":{"kind":"Deliver","chain":"provider","numPackets":6},"partialState":{"h":14,"t":84,"tokens":[11961,7568,3483,8184],"delegation":[10961,6568,2483,7184],"delegatorTokens":9999999945459,"jailed":[1000000000000065,1000000000000065,null,1000000000000047],"status":["unbonding","unbonding","bonded","unbonding"]}},{"ix":111,"action":{"kind":"Delegate","val":0,"amt":4114},"partialState":{"h":14,"t":84,"tokens":[16075,7568,3483,8184],"delegation":[15075,6568,2483,7184],"delegatorTokens":9999999941345}},{"ix":112,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":15,"t":90,"tokens":[16075,7568,3483,8184],"delegation":[15075,6568,2483,7184],"delegatorTokens":9999999941345,"jailed":[1000000000000065,1000000000000065,null,1000000000000047],"status":["unbonding","unbonding","bonded","unbonding"]}},{"ix":113,"action":{"kind":"Delegate","val":3,"amt":4841},"partialState":{"h":15,"t":90,"tokens":[16075,7568,3483,13025],"delegation":[15075,6568,2483,12025],"delegatorTokens":9999999936504}},{"ix":114,"action":{"kind":"Deliver","chain":"consumer","numPackets":4},"partialState":{"h":13,"t":78,"consumerPower":[null,null,2602,null],"outstandingDowntime":[false,false,false,false]}},{"ix":115,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":116,"action":{"kind":"Delegate","val":3,"amt":2418},"partialState":{"h":15,"t":90,"tokens":[16075,7568,3483,15443],"delegation":[15075,6568,2483,14443],"delegatorTokens":9999999934086}},{"ix":117,"action":{"kind":"Delegate","val":2,"amt":4252},"partialState":{"h":15,"t":90,"tokens":[16075,7568,7735,15443],"delegation":[15075,6568,6735,14443],"delegatorTokens":9999999929834}},{"ix":118,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":119,"action":{"kind":"Undelegate","val":1,"amt":1151},"partialState":{"h":15,"t":90,"tokens":[16075,6417,7735,15443],"delegation":[15075,5417,6735,14443],"delegatorTokens":9999999929834}},{"ix":120,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":14,"t":84,"consumerPower":[null,null,7336,null],"outstandingDowntime":[false,false,false,false]}},{"ix":121,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":122,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":123,"action":{"kind":"Delegate","val":2,"amt":4234},"partialState":{"h":15,"t":90,"tokens":[16075,6417,11969,15443],"delegation":[15075,5417,10969,14443],"delegatorTokens":9999999925600}},{"ix":124,"action":{"kind":"Undelegate","val":3,"amt":3250},"partialState":{"h":15,"t":90,"tokens":[16075,6417,11969,12193],"delegation":[15075,5417,10969,11193],"delegatorTokens":9999999925600}},{"ix":125,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":15,"t":90,"consumerPower":[null,null,7336,null],"outstandingDowntime":[false,false,false,false]}},{"ix":126,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":127,"action":{"kind":"Deliver","chain":"provider","numPackets":3},"partialState":{"h":15,"t":90,"tokens":[16075,6417,11969,12193],"delegation":[15075,5417,10969,11193],"delegatorTokens":9999999925600,"jailed":[1000000000000065,1000000000000065,null,1000000000000047],"status":["unbonding","unbonding","bonded","unbonding"]}},{"ix":128,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":16,"t":96,"tokens":[16075,6417,11969,12193],"delegation":[15075,5417,10969,11193],"delegatorTokens":9999999925600,"jailed":[1000000000000065,1000000000000065,null,1000000000000047],"status":["unbonding","unbonding","bonded","unbonding"]}},{"ix":129,"action":{"kind":"Delegate","val":3,"amt":3944},"partialState":{"h":16,"t":96,"tokens":[16075,6417,11969,16137],"delegation":[15075,5417,10969,15137],"delegatorTokens":9999999921656}},{"ix":130,"action":{"kind":"Delegate","val":1,"amt":1332},"partialState":{"h":16,"t":96,"tokens":[16075,7749,11969,16137],"delegation":[15075,6749,10969,15137],"delegatorTokens":9999999920324}},{"ix":131,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":16,"t":96,"consumerPower":[null,null,7336,null],"outstandingDowntime":[false,false,false,false]}},{"ix":132,"action":{"kind":"Delegate","val":2,"amt":3580},"partialState":{"h":16,"t":96,"tokens":[16075,7749,15549,16137],"delegation":[15075,6749,14549,15137],"delegatorTokens":9999999916744}},{"ix":133,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":134,"action":{"kind":"Delegate","val":1,"amt":3393},"partialState":{"h":16,"t":96,"tokens":[16075,11142,15549,16137],"delegation":[15075,10142,14549,15137],"delegatorTokens":9999999913351}},{"ix":135,"action":{"kind":"Delegate","val":2,"amt":2590},"partialState":{"h":16,"t":96,"tokens":[16075,11142,18139,16137],"delegation":[15075,10142,17139,15137],"delegatorTokens":9999999910761}},{"ix":136,"action":{"kind":"Deliver","chain":"provider","numPackets":1},"partialState":{"h":16,"t":96,"tokens":[16075,11142,18139,16137],"delegation":[15075,10142,17139,15137],"delegatorTokens":9999999910761,"jailed":[1000000000000065,1000000000000065,null,1000000000000047],"status":["unbonding","unbonding","bonded","unbonding"]}},{"ix":137,"action":{"kind":"Delegate","val":1,"amt":1626},"partialState":{"h":16,"t":96,"tokens":[16075,12768,18139,16137],"delegation":[15075,11768,17139,15137],"delegatorTokens":9999999909135}},{"ix":138,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":17,"t":102,"tokens":[16075,12768,18139,16137],"delegation":[15075,11768,17139,15137],"delegatorTokens":9999999909135,"jailed":[1000000000000065,1000000000000065,null,1000000000000047],"status":["unbonding","unbonding","bonded","unbonding"]}},{"ix":139,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":140,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":17,"t":102,"consumerPower":[null,null,7336,null],"outstandingDowntime":[false,false,false,false]}},{"ix":141,"action":{"kind":"Deliver","chain":"consumer","numPackets":6},"partialState":{"h":17,"t":102,"consumerPower":[null,null,7336,null],"outstandingDowntime":[false,false,false,false]}},{"ix":142,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":18,"t":108,"consumerPower":[null,null,11969,null],"outstandingDowntime":[false,false,false,false]}},{"ix":143,"action":{"kind":"Undelegate","val":2,"amt":1891},"partialState":{"h":17,"t":102,"tokens":[16075,12768,16248,16137],"delegation":[15075,11768,15248,15137],"delegatorTokens":9999999909135}},{"ix":144,"action":{"kind":"Deliver","chain":"provider","numPackets":1},"partialState":{"h":17,"t":102,"tokens":[16075,12768,16248,16137],"delegation":[15075,11768,15248,15137],"delegatorTokens":9999999909135,"jailed":[1000000000000065,1000000000000065,null,1000000000000047],"status":["unbonding","unbonding","bonded","unbonding"]}},{"ix":145,"action":{"kind":"Undelegate","val":2,"amt":3229},"partialState":{"h":17,"t":102,"tokens":[16075,12768,13019,16137],"delegation":[15075,11768,12019,15137],"delegatorTokens":9999999909135}},{"ix":146,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":147,"action":{"kind":"Delegate","val":2,"amt":2207},"partialState":{"h":17,"t":102,"tokens":[16075,12768,15226,16137],"delegation":[15075,11768,14226,15137],"delegatorTokens":9999999906928}},{"ix":148,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":19,"t":114,"consumerPower":[null,null,11969,null],"outstandingDowntime":[false,false,false,false]}},{"ix":149,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":18,"t":108,"tokens":[16075,12768,15226,16137],"delegation":[15075,11768,14226,15137],"delegatorTokens":9999999918351,"jailed":[1000000000000065,1000000000000065,null,1000000000000047],"status":["unbonding","unbonding","bonded","unbonding"]}},{"ix":150,"action":{"kind":"Undelegate","val":3,"amt":2088},"partialState":{"h":18,"t":108,"tokens":[16075,12768,15226,14049],"delegation":[15075,11768,14226,13049],"delegatorTokens":9999999918351}},{"ix":151,"action":{"kind":"Delegate","val":2,"amt":4400},"partialState":{"h":18,"t":108,"tokens":[16075,12768,19626,14049],"delegation":[15075,11768,18626,13049],"delegatorTokens":9999999913951}},{"ix":152,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":20,"t":120,"consumerPower":[null,null,11969,null],"outstandingDowntime":[false,false,false,false]}},{"ix":153,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":154,"action":{"kind":"Undelegate","val":3,"amt":2315},"partialState":{"h":18,"t":108,"tokens":[16075,12768,19626,11734],"delegation":[15075,11768,18626,10734],"delegatorTokens":9999999913951}},{"ix":155,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":156,"action":{"kind":"Undelegate","val":0,"amt":2854},"partialState":{"h":18,"t":108,"tokens":[13221,12768,19626,11734],"delegation":[12221,11768,18626,10734],"delegatorTokens":9999999913951}},{"ix":157,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":158,"action":{"kind":"Delegate","val":3,"amt":4631},"partialState":{"h":18,"t":108,"tokens":[13221,12768,19626,16365],"delegation":[12221,11768,18626,15365],"delegatorTokens":9999999909320}},{"ix":159,"action":{"kind":"Deliver","chain":"provider","numPackets":5},"partialState":{"h":18,"t":108,"tokens":[13221,12768,19626,16365],"delegation":[12221,11768,18626,15365],"delegatorTokens":9999999909320,"jailed":[1000000000000065,1000000000000065,null,1000000000000047],"status":["unbonding","unbonding","bonded","unbonding"]}},{"ix":160,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":21,"t":126,"consumerPower":[null,null,11969,null],"outstandingDowntime":[false,false,false,false]}},{"ix":161,"action":{"kind":"Undelegate","val":3,"amt":4560},"partialState":{"h":18,"t":108,"tokens":[13221,12768,19626,11805],"delegation":[12221,11768,18626,10805],"delegatorTokens":9999999909320}},{"ix":162,"action":{"kind":"Delegate","val":2,"amt":3022},"partialState":{"h":18,"t":108,"tokens":[13221,12768,22648,11805],"delegation":[12221,11768,21648,10805],"delegatorTokens":9999999906298}},{"ix":163,"action":{"kind":"Delegate","val":1,"amt":1828},"partialState":{"h":18,"t":108,"tokens":[13221,14596,22648,11805],"delegation":[12221,13596,21648,10805],"delegatorTokens":9999999904470}},{"ix":164,"action":{"kind":"Undelegate","val":1,"amt":3574},"partialState":{"h":18,"t":108,"tokens":[13221,11022,22648,11805],"delegation":[12221,10022,21648,10805],"delegatorTokens":9999999904470}},{"ix":165,"action":{"kind":"Deliver","chain":"consumer","numPackets":2},"partialState":{"h":21,"t":126,"consumerPower":[null,null,11969,null],"outstandingDowntime":[false,false,false,false]}},{"ix":166,"action":{"kind":"Deliver","chain":"provider","numPackets":1},"partialState":{"h":18,"t":108,"tokens":[13221,11022,22648,11805],"delegation":[12221,10022,21648,10805],"delegatorTokens":9999999904470,"jailed":[1000000000000065,1000000000000065,null,1000000000000047],"status":["unbonding","unbonding","bonded","unbonding"]}},{"ix":167,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":22,"t":132,"consumerPower":[null,null,18139,null],"outstandingDowntime":[false,false,false,false]}},{"ix":168,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":19,"t":114,"tokens":[13221,11022,22648,11805],"delegation":[12221,10022,21648,10805],"delegatorTokens":9999999907526,"jailed":[1000000000000065,1000000000000065,null,1000000000000047],"status":["unbonding","unbonding","bonded","unbonding"]}},{"ix":169,"action":{"kind":"Deliver","chain":"provider","numPackets":6},"partialState":{"h":19,"t":114,"tokens":[13221,11022,22648,11805],"delegation":[12221,10022,21648,10805],"delegatorTokens":9999999907526,"jailed":[1000000000000065,1000000000000065,null,1000000000000047],"status":["unbonding","unbonding","bonded","unbonding"]}},{"ix":170,"action":{"kind":"Undelegate","val":3,"amt":4969},"partialState":{"h":19,"t":114,"tokens":[13221,11022,22648,6836],"delegation":[12221,10022,21648,5836],"delegatorTokens":9999999907526}},{"ix":171,"action":{"kind":"Deliver","chain":"provider","numPackets":2},"partialState":{"h":19,"t":114,"tokens":[13221,11022,22648,6836],"delegation":[12221,10022,21648,5836],"delegatorTokens":9999999907526,"jailed":[1000000000000065,1000000000000065,null,1000000000000047],"status":["unbonding","unbonding","bonded","unbonding"]}},{"ix":172,"action":{"kind":"Undelegate","val":2,"amt":1519},"partialState":{"h":19,"t":114,"tokens":[13221,11022,21129,6836],"delegation":[12221,10022,20129,5836],"delegatorTokens":9999999907526}},{"ix":173,"action":{"kind":"Delegate","val":3,"amt":3708},"partialState":{"h":19,"t":114,"tokens":[13221,11022,21129,10544],"delegation":[12221,10022,20129,9544],"delegatorTokens":9999999903818}},{"ix":174,"action":{"kind":"Undelegate","val":0,"amt":4456},"partialState":{"h":19,"t":114,"tokens":[8765,11022,21129,10544],"delegation":[7765,10022,20129,9544],"delegatorTokens":9999999903818}},{"ix":175,"action":{"kind":"Undelegate","val":3,"amt":3784},"partialState":{"h":19,"t":114,"tokens":[8765,11022,21129,6760],"delegation":[7765,10022,20129,5760],"delegatorTokens":9999999903818}},{"ix":176,"action":{"kind":"Deliver","chain":"provider","numPackets":2},"partialState":{"h":19,"t":114,"tokens":[8765,11022,21129,6760],"delegation":[7765,10022,20129,5760],"delegatorTokens":9999999903818,"jailed":[1000000000000065,1000000000000065,null,1000000000000047],"status":["unbonding","unbonding","bonded","unbonding"]}},{"ix":177,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":20,"t":120,"tokens":[8765,11022,21129,6760],"delegation":[7765,10022,20129,5760],"delegatorTokens":9999999903818,"jailed":[1000000000000065,1000000000000065,null,1000000000000047],"status":["unbonded","unbonding","bonded","unbonding"]}},{"ix":178,"action":{"kind":"Deliver","chain":"consumer","numPackets":4},"partialState":{"h":22,"t":132,"consumerPower":[null,null,18139,null],"outstandingDowntime":[false,false,false,false]}},{"ix":179,"action":{"kind":"Delegate","val":1,"amt":1386},"partialState":{"h":20,"t":120,"tokens":[8765,12408,21129,6760],"delegation":[7765,11408,20129,5760],"delegatorTokens":9999999902432}},{"ix":180,"action":{"kind":"Delegate","val":1,"amt":1699},"partialState":{"h":20,"t":120,"tokens":[8765,14107,21129,6760],"delegation":[7765,13107,20129,5760],"delegatorTokens":9999999900733}},{"ix":181,"action":{"kind":"Undelegate","val":3,"amt":3006},"partialState":{"h":20,"t":120,"tokens":[8765,14107,21129,3754],"delegation":[7765,13107,20129,2754],"delegatorTokens":9999999900733}},{"ix":182,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":21,"t":126,"tokens":[8765,14107,21129,3754],"delegation":[7765,13107,20129,2754],"delegatorTokens":9999999906430,"jailed":[1000000000000065,1000000000000065,null,1000000000000047],"status":["unbonded","unbonding","bonded","unbonded"]}},{"ix":183,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":22,"t":132,"tokens":[8765,14107,21129,3754],"delegation":[7765,13107,20129,2754],"delegatorTokens":9999999906430,"jailed":[1000000000000065,1000000000000065,null,1000000000000047],"status":["unbonded","unbonding","bonded","unbonded"]}},{"ix":184,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":23,"t":138,"tokens":[8765,14107,21129,3754],"delegation":[7765,13107,20129,2754],"delegatorTokens":9999999906430,"jailed":[1000000000000065,1000000000000065,null,1000000000000047],"status":["unbonded","unbonding","bonded","unbonded"]}},{"ix":185,"action":{"kind":"Undelegate","val":0,"amt":3439},"partialState":{"h":23,"t":138,"tokens":[5326,14107,21129,3754],"delegation":[4326,13107,20129,2754],"delegatorTokens":9999999906430}},{"ix":186,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":23,"t":138,"consumerPower":[null,null,22648,null],"outstandingDowntime":[false,false,false,false]}},{"ix":187,"action":{"kind":"Undelegate","val":1,"amt":3290},"partialState":{"h":23,"t":138,"tokens":[5326,10817,21129,3754],"delegation":[4326,9817,20129,2754],"delegatorTokens":9999999906430}},{"ix":188,"action":{"kind":"Delegate","val":2,"amt":4791},"partialState":{"h":23,"t":138,"tokens":[5326,10817,25920,3754],"delegation":[4326,9817,24920,2754],"delegatorTokens":9999999901639}},{"ix":189,"action":{"kind":"Deliver","chain":"provider","numPackets":5},"partialState":{"h":23,"t":138,"tokens":[5326,10817,25920,3754],"delegation":[4326,9817,24920,2754],"delegatorTokens":9999999901639,"jailed":[1000000000000065,1000000000000065,null,1000000000000047],"status":["unbonded","unbonding","bonded","unbonded"]}},{"ix":190,"action":{"kind":"Deliver","chain":"provider","numPackets":6},"partialState":{"h":23,"t":138,"tokens":[5326,10817,25920,3754],"delegation":[4326,9817,24920,2754],"delegatorTokens":9999999901639,"jailed":[1000000000000065,1000000000000065,null,1000000000000047],"status":["unbonded","unbonding","bonded","unbonded"]}},{"ix":191,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":24,"t":144,"tokens":[5326,10817,25920,3754],"delegation":[4326,9817,24920,2754],"delegatorTokens":9999999901639,"jailed":[1000000000000065,1000000000000065,null,1000000000000047],"status":["unbonded","unbonding","bonded","unbonded"]}},{"ix":192,"action":{"kind":"Deliver","chain":"consumer","numPackets":3},"partialState":{"h":23,"t":138,"consumerPower":[null,null,22648,null],"outstandingDowntime":[false,false,false,false]}},{"ix":193,"action":{"kind":"Delegate","val":2,"amt":2756},"partialState":{"h":24,"t":144,"tokens":[5326,10817,28676,3754],"delegation":[4326,9817,27676,2754],"delegatorTokens":9999999898883}},{"ix":194,"action":{"kind":"Delegate","val":0,"amt":3039},"partialState":{"h":24,"t":144,"tokens":[8365,10817,28676,3754],"delegation":[7365,9817,27676,2754],"delegatorTokens":9999999895844}},{"ix":195,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":196,"action":{"kind":"Deliver","chain":"consumer","numPackets":1},"partialState":{"h":23,"t":138,"consumerPower":[null,null,22648,null],"outstandingDowntime":[false,false,false,false]}},{"ix":197,"action":{"kind":"Delegate","val":2,"amt":3960},"partialState":{"h":24,"t":144,"tokens":[8365,10817,32636,3754],"delegation":[7365,9817,31636,2754],"delegatorTokens":9999999891884}},{"ix":198,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":24,"t":144,"consumerPower":[null,null,21129,null],"outstandingDowntime":[false,false,false,false]}},{"ix":199,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":25,"t":150,"consumerPower":[null,null,21129,null],"outstandingDowntime":[false,false,false,false]}}],"events":["send_double_sign_slash_request","send_downtime_slash_request","downtime_slash_request_outstanding","more_than_one_third_val_power_change","send_vsc_without_downtime_ack","send_double_sign_slash_request","send_double_sign_slash_request","receive_double_sign_slash_request","receive_double_sign_slash_request","send_double_sign_slash_request","send_downtime_slash_request","insufficient_shares","receive_double_sign_slash_request","insufficient_shares","more_than_one_third_val_power_change","rebond_unval","receive_downtime_slash_request","jail","send_vsc_with_downtime_ack","send_vsc_without_downtime_ack","receive_downtime_slash_ack","send_downtime_slash_request","send_downtime_slash_request","send_vsc_without_downtime_ack","insufficient_shares","receive_double_sign_slash_request","insufficient_shares","insufficient_shares","consumer_del_val","consumer_update_val","consumer_del_val","consumer_add_val","rebond_unval","receive_downtime_slash_request","jail","send_vsc_with_downtime_ack","insufficient_shares","send_vsc_without_downtime_ack","receive_downtime_slash_ack","consumer_update_val","consumer_add_val","consumer_del_val","receive_downtime_slash_request","jail","receive_downtime_slash_request","jail","send_vsc_with_downtime_ack","send_vsc_without_downtime_ack","receive_downtime_slash_ack","receive_downtime_slash_ack","insufficient_shares","consumer_del_val","some_undels_expired_but_not_completed","send_vsc_without_downtime_ack","consumer_update_val","consumer_send_maturation","consumer_send_maturation","consumer_send_maturation","consumer_send_maturation","send_vsc_without_downtime_ack","send_vsc_without_downtime_ack","consumer_update_val","consumer_send_maturation","consumer_send_maturation","some_undels_expired_but_not_completed","complete_undel_immediate","complete_undel_immediate","complete_undel_immediate","send_vsc_without_downtime_ack","consumer_send_maturation","consumer_update_val","set_unval_hold_false","complete_undel_immediate","set_undel_hold_false","set_undel_hold_false","set_unval_hold_false","send_vsc_without_downtime_ack","complete_unval_in_endblock","set_unval_hold_false","send_vsc_without_downtime_ack","complete_unval_in_endblock","complete_undel_in_endblock","send_vsc_not_because_change","send_vsc_without_downtime_ack","consumer_send_maturation","consumer_update_val","send_vsc_without_downtime_ack","consumer_update_val"]},{"meta":{"commit":"7ffd0c04e4205cbc9caf212abfe6c59ee43153bf"},"constants":{"P":"provider","C":"consumer","UNBONDING_SECONDS_P":70,"UNBONDING_SECONDS_C":50,"TRUSTING_SECONDS":49,"NUM_VALIDATORS":4,"MAX_VALIDATORS":2,"SLASH_DOUBLESIGN":0,"SLASH_DOWNTIME":0,"JAIL_SECONDS":999999999999999,"BLOCK_SECONDS":6,"INITIAL_DELEGATOR_TOKENS":10000000000000,"DELEGATE_AMT_MIN":1000,"DELEGATE_AMT_MAX":5000,"UNDELEGATE_AMT_MIN":1000,"UNDELEGATE_AMT_MAX":5000,"ISDOWNTIME_PROBABILITY":0.5,"MAX_NUM_PACKETS_FOR_DELIVER":6},"actions":[{"ix":0,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":1,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":2,"t":12,"tokens":[5000,4000,3000,2000],"delegation":[4000,3000,2000,1000],"delegatorTokens":10000000000000,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":2,"action":{"kind":"ConsumerSlash","val":0,"infractionHeight":0,"isDowntime":true},"partialState":{"h":1,"t":6,"outstandingDowntime":[true,false,false,false]}},{"ix":3,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":4,"action":{"kind":"Undelegate","val":3,"amt":3474},"partialState":{"h":2,"t":12,"tokens":[5000,4000,3000,2000],"delegation":[4000,3000,2000,1000],"delegatorTokens":10000000000000}},{"ix":5,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":2,"t":12,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[true,false,false,false]}},{"ix":6,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":3,"t":18,"tokens":[5000,4000,3000,2000],"delegation":[4000,3000,2000,1000],"delegatorTokens":10000000000000,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":7,"action":{"kind":"Deliver","chain":"consumer","numPackets":2},"partialState":{"h":2,"t":12,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[true,false,false,false]}},{"ix":8,"action":{"kind":"Delegate","val":3,"amt":1512},"partialState":{"h":3,"t":18,"tokens":[5000,4000,3000,3512],"delegation":[4000,3000,2000,2512],"delegatorTokens":9999999998488}},{"ix":9,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":3,"t":18,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[true,false,false,false]}},{"ix":10,"action":{"kind":"Deliver","chain":"provider","numPackets":1},"partialState":{"h":3,"t":18,"tokens":[5000,4000,3000,3512],"delegation":[4000,3000,2000,2512],"delegatorTokens":9999999998488,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":11,"action":{"kind":"Deliver","chain":"consumer","numPackets":5},"partialState":{"h":3,"t":18,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[true,false,false,false]}},{"ix":12,"action":{"kind":"Delegate","val":1,"amt":1307},"partialState":{"h":3,"t":18,"tokens":[5000,5307,3000,3512],"delegation":[4000,4307,2000,2512],"delegatorTokens":9999999997181}},{"ix":13,"action":{"kind":"Delegate","val":3,"amt":3998},"partialState":{"h":3,"t":18,"tokens":[5000,5307,3000,7510],"delegation":[4000,4307,2000,6510],"delegatorTokens":9999999993183}},{"ix":14,"action":{"kind":"ConsumerSlash","val":0,"infractionHeight":0,"isDowntime":true},"partialState":{"h":3,"t":18,"outstandingDowntime":[true,false,false,false]}},{"ix":15,"action":{"kind":"ConsumerSlash","val":0,"infractionHeight":2,"isDowntime":true},"partialState":{"h":3,"t":18,"outstandingDowntime":[true,false,false,false]}},{"ix":16,"action":{"kind":"Deliver","chain":"provider","numPackets":1},"partialState":{"h":3,"t":18,"tokens":[5000,5307,3000,7510],"delegation":[4000,4307,2000,6510],"delegatorTokens":9999999993183,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":17,"action":{"kind":"Delegate","val":3,"amt":4675},"partialState":{"h":3,"t":18,"tokens":[5000,5307,3000,12185],"delegation":[4000,4307,2000,11185],"delegatorTokens":9999999988508}},{"ix":18,"action":{"kind":"Delegate","val":0,"amt":4428},"partialState":{"h":3,"t":18,"tokens":[9428,5307,3000,12185],"delegation":[8428,4307,2000,11185],"delegatorTokens":9999999984080}},{"ix":19,"action":{"kind":"Delegate","val":1,"amt":2577},"partialState":{"h":3,"t":18,"tokens":[9428,7884,3000,12185],"delegation":[8428,6884,2000,11185],"delegatorTokens":9999999981503}},{"ix":20,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":4,"t":24,"tokens":[9428,7884,3000,12185],"delegation":[8428,6884,2000,11185],"delegatorTokens":9999999981503,"jailed":[1000000000000017,null,null,null],"status":["bonded","unbonding","unbonded","bonded"]}},{"ix":21,"action":{"kind":"Undelegate","val":3,"amt":2769},"partialState":{"h":4,"t":24,"tokens":[9428,7884,3000,9416],"delegation":[8428,6884,2000,8416],"delegatorTokens":9999999981503}},{"ix":22,"action":{"kind":"Undelegate","val":0,"amt":1624},"partialState":{"h":4,"t":24,"tokens":[7804,7884,3000,9416],"delegation":[6804,6884,2000,8416],"delegatorTokens":9999999981503}},{"ix":23,"action":{"kind":"Deliver","chain":"provider","numPackets":1},"partialState":{"h":4,"t":24,"tokens":[7804,7884,3000,9416],"delegation":[6804,6884,2000,8416],"delegatorTokens":9999999981503,"jailed":[1000000000000017,null,null,null],"status":["bonded","unbonding","unbonded","bonded"]}},{"ix":24,"action":{"kind":"Deliver","chain":"consumer","numPackets":5},"partialState":{"h":3,"t":18,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[true,false,false,false]}},{"ix":25,"action":{"kind":"ConsumerSlash","val":3,"infractionHeight":1,"isDowntime":false},"partialState":{"h":3,"t":18,"outstandingDowntime":[true,false,false,false]}},{"ix":26,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":27,"action":{"kind":"Undelegate","val":0,"amt":1303},"partialState":{"h":4,"t":24,"tokens":[6501,7884,3000,9416],"delegation":[5501,6884,2000,8416],"delegatorTokens":9999999981503}},{"ix":28,"action":{"kind":"Deliver","chain":"provider","numPackets":6},"partialState":{"h":4,"t":24,"tokens":[6501,7884,3000,9416],"delegation":[5501,6884,2000,8416],"delegatorTokens":9999999981503,"jailed":[1000000000000017,null,null,null],"status":["bonded","unbonding","unbonded","bonded"]}},{"ix":29,"action":{"kind":"Deliver","chain":"consumer","numPackets":6},"partialState":{"h":3,"t":18,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[true,false,false,false]}},{"ix":30,"action":{"kind":"Undelegate","val":1,"amt":2172},"partialState":{"h":4,"t":24,"tokens":[6501,5712,3000,9416],"delegation":[5501,4712,2000,8416],"delegatorTokens":9999999981503}},{"ix":31,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":32,"action":{"kind":"Delegate","val":3,"amt":4673},"partialState":{"h":4,"t":24,"tokens":[6501,5712,3000,14089],"delegation":[5501,4712,2000,13089],"delegatorTokens":9999999976830}},{"ix":33,"action":{"kind":"ConsumerSlash","val":3,"infractionHeight":0,"isDowntime":true},"partialState":{"h":3,"t":18,"outstandingDowntime":[true,false,false,true]}},{"ix":34,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":35,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":5,"t":30,"tokens":[6501,5712,3000,14089],"delegation":[5501,4712,2000,13089],"delegatorTokens":9999999976830,"jailed":[1000000000000017,null,null,null],"status":["unbonding","bonded","unbonded","bonded"]}},{"ix":36,"action":{"kind":"Undelegate","val":0,"amt":2048},"partialState":{"h":5,"t":30,"tokens":[4453,5712,3000,14089],"delegation":[3453,4712,2000,13089],"delegatorTokens":9999999976830}},{"ix":37,"action":{"kind":"Delegate","val":0,"amt":2915},"partialState":{"h":5,"t":30,"tokens":[7368,5712,3000,14089],"delegation":[6368,4712,2000,13089],"delegatorTokens":9999999973915}},{"ix":38,"action":{"kind":"Delegate","val":0,"amt":2544},"partialState":{"h":5,"t":30,"tokens":[9912,5712,3000,14089],"delegation":[8912,4712,2000,13089],"delegatorTokens":9999999971371}},{"ix":39,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":6,"t":36,"tokens":[9912,5712,3000,14089],"delegation":[8912,4712,2000,13089],"delegatorTokens":9999999971371,"jailed":[1000000000000017,null,null,null],"status":["unbonding","bonded","unbonded","bonded"]}},{"ix":40,"action":{"kind":"Undelegate","val":2,"amt":2151},"partialState":{"h":6,"t":36,"tokens":[9912,5712,3000,14089],"delegation":[8912,4712,2000,13089],"delegatorTokens":9999999971371}},{"ix":41,"action":{"kind":"Undelegate","val":2,"amt":4184},"partialState":{"h":6,"t":36,"tokens":[9912,5712,3000,14089],"delegation":[8912,4712,2000,13089],"delegatorTokens":9999999971371}},{"ix":42,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":7,"t":42,"tokens":[9912,5712,3000,14089],"delegation":[8912,4712,2000,13089],"delegatorTokens":9999999971371,"jailed":[1000000000000017,null,null,null],"status":["unbonding","bonded","unbonded","bonded"]}},{"ix":43,"action":{"kind":"ConsumerSlash","val":3,"infractionHeight":1,"isDowntime":true},"partialState":{"h":3,"t":18,"outstandingDowntime":[true,false,false,true]}},{"ix":44,"action":{"kind":"Delegate","val":2,"amt":2221},"partialState":{"h":7,"t":42,"tokens":[9912,5712,5221,14089],"delegation":[8912,4712,4221,13089],"delegatorTokens":9999999969150}},{"ix":45,"action":{"kind":"Delegate","val":1,"amt":1281},"partialState":{"h":7,"t":42,"tokens":[9912,6993,5221,14089],"delegation":[8912,5993,4221,13089],"delegatorTokens":9999999967869}},{"ix":46,"action":{"kind":"Delegate","val":2,"amt":3655},"partialState":{"h":7,"t":42,"tokens":[9912,6993,8876,14089],"delegation":[8912,5993,7876,13089],"delegatorTokens":9999999964214}},{"ix":47,"action":{"kind":"Delegate","val":0,"amt":3869},"partialState":{"h":7,"t":42,"tokens":[13781,6993,8876,14089],"delegation":[12781,5993,7876,13089],"delegatorTokens":9999999960345}},{"ix":48,"action":{"kind":"ConsumerSlash","val":3,"infractionHeight":0,"isDowntime":true},"partialState":{"h":3,"t":18,"outstandingDowntime":[true,false,false,true]}},{"ix":49,"action":{"kind":"Deliver","chain":"provider","numPackets":4},"partialState":{"h":7,"t":42,"tokens":[13781,6993,8876,14089],"delegation":[12781,5993,7876,13089],"delegatorTokens":9999999960345,"jailed":[1000000000000017,null,null,null],"status":["unbonding","bonded","unbonded","bonded"]}},{"ix":50,"action":{"kind":"Undelegate","val":0,"amt":3480},"partialState":{"h":7,"t":42,"tokens":[10301,6993,8876,14089],"delegation":[9301,5993,7876,13089],"delegatorTokens":9999999960345}},{"ix":51,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":52,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":53,"action":{"kind":"Undelegate","val":0,"amt":3194},"partialState":{"h":7,"t":42,"tokens":[7107,6993,8876,14089],"delegation":[6107,5993,7876,13089],"delegatorTokens":9999999960345}},{"ix":54,"action":{"kind":"Delegate","val":2,"amt":1481},"partialState":{"h":7,"t":42,"tokens":[7107,6993,10357,14089],"delegation":[6107,5993,9357,13089],"delegatorTokens":9999999958864}},{"ix":55,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":4,"t":24,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[true,false,false,true]}},{"ix":56,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":5,"t":30,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[true,false,false,true]}},{"ix":57,"action":{"kind":"ConsumerSlash","val":2,"infractionHeight":1,"isDowntime":true},"partialState":{"h":5,"t":30,"outstandingDowntime":[true,false,true,true]}},{"ix":58,"action":{"kind":"Delegate","val":0,"amt":4897},"partialState":{"h":7,"t":42,"tokens":[12004,6993,10357,14089],"delegation":[11004,5993,9357,13089],"delegatorTokens":9999999953967}},{"ix":59,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":8,"t":48,"tokens":[12004,6993,10357,14089],"delegation":[11004,5993,9357,13089],"delegatorTokens":9999999953967,"jailed":[1000000000000017,null,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":60,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":6,"t":36,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[true,false,true,true]}},{"ix":61,"action":{"kind":"Delegate","val":1,"amt":1824},"partialState":{"h":8,"t":48,"tokens":[12004,8817,10357,14089],"delegation":[11004,7817,9357,13089],"delegatorTokens":9999999952143}},{"ix":62,"action":{"kind":"Undelegate","val":0,"amt":3951},"partialState":{"h":8,"t":48,"tokens":[8053,8817,10357,14089],"delegation":[7053,7817,9357,13089],"delegatorTokens":9999999952143}},{"ix":63,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":64,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":65,"action":{"kind":"Undelegate","val":1,"amt":1347},"partialState":{"h":8,"t":48,"tokens":[8053,7470,10357,14089],"delegation":[7053,6470,9357,13089],"delegatorTokens":9999999952143}},{"ix":66,"action":{"kind":"Undelegate","val":2,"amt":2393},"partialState":{"h":8,"t":48,"tokens":[8053,7470,7964,14089],"delegation":[7053,6470,6964,13089],"delegatorTokens":9999999952143}},{"ix":67,"action":{"kind":"Deliver","chain":"provider","numPackets":5},"partialState":{"h":8,"t":48,"tokens":[8053,7470,7964,14089],"delegation":[7053,6470,6964,13089],"delegatorTokens":9999999952143,"jailed":[1000000000000017,null,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":68,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":69,"action":{"kind":"Undelegate","val":1,"amt":1698},"partialState":{"h":8,"t":48,"tokens":[8053,5772,7964,14089],"delegation":[7053,4772,6964,13089],"delegatorTokens":9999999952143}},{"ix":70,"action":{"kind":"Deliver","chain":"provider","numPackets":6},"partialState":{"h":8,"t":48,"tokens":[8053,5772,7964,14089],"delegation":[7053,4772,6964,13089],"delegatorTokens":9999999952143,"jailed":[1000000000000017,null,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":71,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":7,"t":42,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[true,false,true,true]}},{"ix":72,"action":{"kind":"Undelegate","val":2,"amt":3645},"partialState":{"h":8,"t":48,"tokens":[8053,5772,4319,14089],"delegation":[7053,4772,3319,13089],"delegatorTokens":9999999952143}},{"ix":73,"action":{"kind":"Undelegate","val":2,"amt":3212},"partialState":{"h":8,"t":48,"tokens":[8053,5772,1107,14089],"delegation":[7053,4772,107,13089],"delegatorTokens":9999999952143}},{"ix":74,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":8,"t":48,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[true,false,true,true]}},{"ix":75,"action":{"kind":"Undelegate","val":1,"amt":3071},"partialState":{"h":8,"t":48,"tokens":[8053,2701,1107,14089],"delegation":[7053,1701,107,13089],"delegatorTokens":9999999952143}},{"ix":76,"action":{"kind":"Delegate","val":2,"amt":1174},"partialState":{"h":8,"t":48,"tokens":[8053,2701,2281,14089],"delegation":[7053,1701,1281,13089],"delegatorTokens":9999999950969}},{"ix":77,"action":{"kind":"Delegate","val":3,"amt":2255},"partialState":{"h":8,"t":48,"tokens":[8053,2701,2281,16344],"delegation":[7053,1701,1281,15344],"delegatorTokens":9999999948714}},{"ix":78,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":79,"action":{"kind":"Deliver","chain":"consumer","numPackets":4},"partialState":{"h":8,"t":48,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,false,true,true]}},{"ix":80,"action":{"kind":"Deliver","chain":"provider","numPackets":4},"partialState":{"h":8,"t":48,"tokens":[8053,2701,2281,16344],"delegation":[7053,1701,1281,15344],"delegatorTokens":9999999948714,"jailed":[1000000000000017,null,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":81,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":9,"t":54,"consumerPower":[null,5712,null,14089],"outstandingDowntime":[false,false,true,true]}},{"ix":82,"action":{"kind":"Undelegate","val":2,"amt":1890},"partialState":{"h":8,"t":48,"tokens":[8053,2701,2281,16344],"delegation":[7053,1701,1281,15344],"delegatorTokens":9999999948714}},{"ix":83,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":9,"t":54,"tokens":[8053,2701,2281,16344],"delegation":[7053,1701,1281,15344],"delegatorTokens":9999999948714,"jailed":[1000000000000017,null,1000000000000047,1000000000000047],"status":["unbonding","bonded","unbonding","bonded"]}},{"ix":84,"action":{"kind":"Delegate","val":2,"amt":1585},"partialState":{"h":9,"t":54,"tokens":[8053,2701,3866,16344],"delegation":[7053,1701,2866,15344],"delegatorTokens":9999999947129}},{"ix":85,"action":{"kind":"Deliver","chain":"consumer","numPackets":1},"partialState":{"h":9,"t":54,"consumerPower":[null,5712,null,14089],"outstandingDowntime":[false,false,true,true]}},{"ix":86,"action":{"kind":"Deliver","chain":"consumer","numPackets":4},"partialState":{"h":9,"t":54,"consumerPower":[null,5712,null,14089],"outstandingDowntime":[false,false,true,true]}},{"ix":87,"action":{"kind":"Deliver","chain":"provider","numPackets":2},"partialState":{"h":9,"t":54,"tokens":[8053,2701,3866,16344],"delegation":[7053,1701,2866,15344],"delegatorTokens":9999999947129,"jailed":[1000000000000017,null,1000000000000047,1000000000000047],"status":["unbonding","bonded","unbonding","bonded"]}},{"ix":88,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":89,"action":{"kind":"Deliver","chain":"consumer","numPackets":5},"partialState":{"h":9,"t":54,"consumerPower":[null,5712,null,14089],"outstandingDowntime":[false,false,true,true]}},{"ix":90,"action":{"kind":"Undelegate","val":0,"amt":2018},"partialState":{"h":9,"t":54,"tokens":[6035,2701,3866,16344],"delegation":[5035,1701,2866,15344],"delegatorTokens":9999999947129}},{"ix":91,"action":{"kind":"Deliver","chain":"consumer","numPackets":3},"partialState":{"h":9,"t":54,"consumerPower":[null,5712,null,14089],"outstandingDowntime":[false,false,true,true]}},{"ix":92,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":10,"t":60,"consumerPower":[null,null,10357,14089],"outstandingDowntime":[false,false,true,true]}},{"ix":93,"action":{"kind":"Undelegate","val":1,"amt":3003},"partialState":{"h":9,"t":54,"tokens":[6035,2701,3866,16344],"delegation":[5035,1701,2866,15344],"delegatorTokens":9999999947129}},{"ix":94,"action":{"kind":"Deliver","chain":"consumer","numPackets":4},"partialState":{"h":10,"t":60,"consumerPower":[null,null,10357,14089],"outstandingDowntime":[false,false,true,true]}},{"ix":95,"action":{"kind":"Undelegate","val":1,"amt":4330},"partialState":{"h":9,"t":54,"tokens":[6035,2701,3866,16344],"delegation":[5035,1701,2866,15344],"delegatorTokens":9999999947129}},{"ix":96,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":11,"t":66,"consumerPower":[null,null,10357,14089],"outstandingDowntime":[false,false,true,true]}},{"ix":97,"action":{"kind":"Undelegate","val":1,"amt":1387},"partialState":{"h":9,"t":54,"tokens":[6035,1314,3866,16344],"delegation":[5035,314,2866,15344],"delegatorTokens":9999999947129}},{"ix":98,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":99,"action":{"kind":"Deliver","chain":"consumer","numPackets":4},"partialState":{"h":11,"t":66,"consumerPower":[null,null,10357,14089],"outstandingDowntime":[false,false,true,true]}},{"ix":100,"action":{"kind":"Deliver","chain":"consumer","numPackets":4},"partialState":{"h":11,"t":66,"consumerPower":[null,null,10357,14089],"outstandingDowntime":[false,false,true,true]}},{"ix":101,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":10,"t":60,"tokens":[6035,1314,3866,16344],"delegation":[5035,314,2866,15344],"delegatorTokens":9999999947129,"jailed":[1000000000000017,null,1000000000000047,1000000000000047],"status":["unbonding","bonded","unbonding","unbonding"]}},{"ix":102,"action":{"kind":"Delegate","val":1,"amt":4960},"partialState":{"h":10,"t":60,"tokens":[6035,6274,3866,16344],"delegation":[5035,5274,2866,15344],"delegatorTokens":9999999942169}},{"ix":103,"action":{"kind":"Deliver","chain":"provider","numPackets":3},"partialState":{"h":10,"t":60,"tokens":[6035,6274,3866,16344],"delegation":[5035,5274,2866,15344],"delegatorTokens":9999999942169,"jailed":[1000000000000017,null,1000000000000047,1000000000000047],"status":["unbonding","bonded","unbonding","unbonding"]}},{"ix":104,"action":{"kind":"Undelegate","val":3,"amt":3568},"partialState":{"h":10,"t":60,"tokens":[6035,6274,3866,12776],"delegation":[5035,5274,2866,11776],"delegatorTokens":9999999942169}},{"ix":105,"action":{"kind":"Delegate","val":1,"amt":2702},"partialState":{"h":10,"t":60,"tokens":[6035,8976,3866,12776],"delegation":[5035,7976,2866,11776],"delegatorTokens":9999999939467}},{"ix":106,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":11,"t":66,"tokens":[6035,8976,3866,12776],"delegation":[5035,7976,2866,11776],"delegatorTokens":9999999939467,"jailed":[1000000000000017,null,1000000000000047,1000000000000047],"status":["unbonding","bonded","unbonding","unbonding"]}},{"ix":107,"action":{"kind":"Deliver","chain":"provider","numPackets":5},"partialState":{"h":11,"t":66,"tokens":[6035,8976,3866,12776],"delegation":[5035,7976,2866,11776],"delegatorTokens":9999999939467,"jailed":[1000000000000017,null,1000000000000047,1000000000000047],"status":["unbonding","bonded","unbonding","unbonding"]}},{"ix":108,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":12,"t":72,"tokens":[6035,8976,3866,12776],"delegation":[5035,7976,2866,11776],"delegatorTokens":9999999939467,"jailed":[1000000000000017,null,1000000000000047,1000000000000047],"status":["unbonding","bonded","unbonding","unbonding"]}},{"ix":109,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":110,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":111,"action":{"kind":"Delegate","val":0,"amt":2025},"partialState":{"h":12,"t":72,"tokens":[8060,8976,3866,12776],"delegation":[7060,7976,2866,11776],"delegatorTokens":9999999937442}},{"ix":112,"action":{"kind":"Undelegate","val":0,"amt":4962},"partialState":{"h":12,"t":72,"tokens":[3098,8976,3866,12776],"delegation":[2098,7976,2866,11776],"delegatorTokens":9999999937442}},{"ix":113,"action":{"kind":"Delegate","val":2,"amt":4317},"partialState":{"h":12,"t":72,"tokens":[3098,8976,8183,12776],"delegation":[2098,7976,7183,11776],"delegatorTokens":9999999933125}},{"ix":114,"action":{"kind":"Undelegate","val":3,"amt":2864},"partialState":{"h":12,"t":72,"tokens":[3098,8976,8183,9912],"delegation":[2098,7976,7183,8912],"delegatorTokens":9999999933125}},{"ix":115,"action":{"kind":"Undelegate","val":0,"amt":3858},"partialState":{"h":12,"t":72,"tokens":[3098,8976,8183,9912],"delegation":[2098,7976,7183,8912],"delegatorTokens":9999999933125}},{"ix":116,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":117,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":118,"action":{"kind":"Deliver","chain":"consumer","numPackets":2},"partialState":{"h":11,"t":66,"consumerPower":[null,null,10357,14089],"outstandingDowntime":[false,false,false,false]}},{"ix":119,"action":{"kind":"Deliver","chain":"consumer","numPackets":5},"partialState":{"h":11,"t":66,"consumerPower":[null,null,10357,14089],"outstandingDowntime":[false,false,false,false]}},{"ix":120,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":121,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":122,"action":{"kind":"Delegate","val":0,"amt":3433},"partialState":{"h":12,"t":72,"tokens":[6531,8976,8183,9912],"delegation":[5531,7976,7183,8912],"delegatorTokens":9999999929692}},{"ix":123,"action":{"kind":"Undelegate","val":0,"amt":1458},"partialState":{"h":12,"t":72,"tokens":[5073,8976,8183,9912],"delegation":[4073,7976,7183,8912],"delegatorTokens":9999999929692}},{"ix":124,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":125,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":12,"t":72,"consumerPower":[null,8976,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":126,"action":{"kind":"Deliver","chain":"consumer","numPackets":1},"partialState":{"h":12,"t":72,"consumerPower":[null,8976,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":127,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":128,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":129,"action":{"kind":"Deliver","chain":"provider","numPackets":6},"partialState":{"h":12,"t":72,"tokens":[5073,8976,8183,9912],"delegation":[4073,7976,7183,8912],"delegatorTokens":9999999929692,"jailed":[1000000000000017,null,1000000000000047,1000000000000047],"status":["unbonding","bonded","unbonding","unbonding"]}},{"ix":130,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":13,"t":78,"tokens":[5073,8976,8183,9912],"delegation":[4073,7976,7183,8912],"delegatorTokens":9999999929692,"jailed":[1000000000000017,null,1000000000000047,1000000000000047],"status":["unbonding","bonded","unbonding","unbonding"]}},{"ix":131,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":14,"t":84,"tokens":[5073,8976,8183,9912],"delegation":[4073,7976,7183,8912],"delegatorTokens":9999999929692,"jailed":[1000000000000017,null,1000000000000047,1000000000000047],"status":["unbonding","bonded","unbonding","unbonding"]}},{"ix":132,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":133,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":13,"t":78,"consumerPower":[null,8976,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":134,"action":{"kind":"Delegate","val":3,"amt":4145},"partialState":{"h":14,"t":84,"tokens":[5073,8976,8183,14057],"delegation":[4073,7976,7183,13057],"delegatorTokens":9999999925547}},{"ix":135,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":14,"t":84,"consumerPower":[null,8976,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":136,"action":{"kind":"Delegate","val":2,"amt":4771},"partialState":{"h":14,"t":84,"tokens":[5073,8976,12954,14057],"delegation":[4073,7976,11954,13057],"delegatorTokens":9999999920776}},{"ix":137,"action":{"kind":"Undelegate","val":3,"amt":3632},"partialState":{"h":14,"t":84,"tokens":[5073,8976,12954,10425],"delegation":[4073,7976,11954,9425],"delegatorTokens":9999999920776}},{"ix":138,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":139,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":15,"t":90,"tokens":[5073,8976,12954,10425],"delegation":[4073,7976,11954,9425],"delegatorTokens":9999999920776,"jailed":[1000000000000017,null,1000000000000047,1000000000000047],"status":["unbonding","bonded","unbonding","unbonding"]}},{"ix":140,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":16,"t":96,"tokens":[5073,8976,12954,10425],"delegation":[4073,7976,11954,9425],"delegatorTokens":9999999920776,"jailed":[1000000000000017,null,1000000000000047,1000000000000047],"status":["unbonding","bonded","unbonding","unbonding"]}},{"ix":141,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":15,"t":90,"consumerPower":[null,8976,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":142,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":143,"action":{"kind":"Delegate","val":1,"amt":3888},"partialState":{"h":16,"t":96,"tokens":[5073,12864,12954,10425],"delegation":[4073,11864,11954,9425],"delegatorTokens":9999999916888}},{"ix":144,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":16,"t":96,"consumerPower":[null,8976,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":145,"action":{"kind":"Deliver","chain":"provider","numPackets":2},"partialState":{"h":16,"t":96,"tokens":[5073,12864,12954,10425],"delegation":[4073,11864,11954,9425],"delegatorTokens":9999999916888,"jailed":[1000000000000017,null,1000000000000047,1000000000000047],"status":["unbonding","bonded","unbonding","unbonding"]}},{"ix":146,"action":{"kind":"Delegate","val":1,"amt":1183},"partialState":{"h":16,"t":96,"tokens":[5073,14047,12954,10425],"delegation":[4073,13047,11954,9425],"delegatorTokens":9999999915705}},{"ix":147,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":148,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":149,"action":{"kind":"Undelegate","val":0,"amt":3825},"partialState":{"h":16,"t":96,"tokens":[1248,14047,12954,10425],"delegation":[248,13047,11954,9425],"delegatorTokens":9999999915705}},{"ix":150,"action":{"kind":"Deliver","chain":"provider","numPackets":6},"partialState":{"h":16,"t":96,"tokens":[1248,14047,12954,10425],"delegation":[248,13047,11954,9425],"delegatorTokens":9999999915705,"jailed":[1000000000000017,null,1000000000000047,1000000000000047],"status":["unbonding","bonded","unbonding","unbonding"]}},{"ix":151,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":152,"action":{"kind":"Undelegate","val":0,"amt":2474},"partialState":{"h":16,"t":96,"tokens":[1248,14047,12954,10425],"delegation":[248,13047,11954,9425],"delegatorTokens":9999999915705}},{"ix":153,"action":{"kind":"Deliver","chain":"provider","numPackets":5},"partialState":{"h":16,"t":96,"tokens":[1248,14047,12954,10425],"delegation":[248,13047,11954,9425],"delegatorTokens":9999999915705,"jailed":[1000000000000017,null,1000000000000047,1000000000000047],"status":["unbonding","bonded","unbonding","unbonding"]}},{"ix":154,"action":{"kind":"Undelegate","val":3,"amt":1958},"partialState":{"h":16,"t":96,"tokens":[1248,14047,12954,8467],"delegation":[248,13047,11954,7467],"delegatorTokens":9999999915705}},{"ix":155,"action":{"kind":"Undelegate","val":0,"amt":4581},"partialState":{"h":16,"t":96,"tokens":[1248,14047,12954,8467],"delegation":[248,13047,11954,7467],"delegatorTokens":9999999915705}},{"ix":156,"action":{"kind":"Undelegate","val":0,"amt":3176},"partialState":{"h":16,"t":96,"tokens":[1248,14047,12954,8467],"delegation":[248,13047,11954,7467],"delegatorTokens":9999999915705}},{"ix":157,"action":{"kind":"Undelegate","val":2,"amt":3661},"partialState":{"h":16,"t":96,"tokens":[1248,14047,9293,8467],"delegation":[248,13047,8293,7467],"delegatorTokens":9999999915705}},{"ix":158,"action":{"kind":"Deliver","chain":"provider","numPackets":2},"partialState":{"h":16,"t":96,"tokens":[1248,14047,9293,8467],"delegation":[248,13047,8293,7467],"delegatorTokens":9999999915705,"jailed":[1000000000000017,null,1000000000000047,1000000000000047],"status":["unbonding","bonded","unbonding","unbonding"]}},{"ix":159,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":160,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":17,"t":102,"consumerPower":[null,8976,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":161,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":18,"t":108,"consumerPower":[null,8976,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":162,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":19,"t":114,"consumerPower":[null,8976,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":163,"action":{"kind":"Undelegate","val":0,"amt":2226},"partialState":{"h":16,"t":96,"tokens":[1248,14047,9293,8467],"delegation":[248,13047,8293,7467],"delegatorTokens":9999999915705}},{"ix":164,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":165,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":20,"t":120,"consumerPower":[null,8976,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":166,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":21,"t":126,"consumerPower":[null,8976,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":167,"action":{"kind":"Delegate","val":2,"amt":4214},"partialState":{"h":16,"t":96,"tokens":[1248,14047,13507,8467],"delegation":[248,13047,12507,7467],"delegatorTokens":9999999911491}},{"ix":168,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":22,"t":132,"consumerPower":[null,8976,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":169,"action":{"kind":"Deliver","chain":"consumer","numPackets":5},"partialState":{"h":22,"t":132,"consumerPower":[null,8976,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":170,"action":{"kind":"Delegate","val":0,"amt":2115},"partialState":{"h":16,"t":96,"tokens":[3363,14047,13507,8467],"delegation":[2363,13047,12507,7467],"delegatorTokens":9999999909376}},{"ix":171,"action":{"kind":"Undelegate","val":3,"amt":1253},"partialState":{"h":16,"t":96,"tokens":[3363,14047,13507,7214],"delegation":[2363,13047,12507,6214],"delegatorTokens":9999999909376}},{"ix":172,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":173,"action":{"kind":"Delegate","val":2,"amt":2736},"partialState":{"h":16,"t":96,"tokens":[3363,14047,16243,7214],"delegation":[2363,13047,15243,6214],"delegatorTokens":9999999906640}},{"ix":174,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":23,"t":138,"consumerPower":[null,8976,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":175,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":176,"action":{"kind":"Undelegate","val":3,"amt":2613},"partialState":{"h":16,"t":96,"tokens":[3363,14047,16243,4601],"delegation":[2363,13047,15243,3601],"delegatorTokens":9999999906640}},{"ix":177,"action":{"kind":"Deliver","chain":"provider","numPackets":5},"partialState":{"h":16,"t":96,"tokens":[3363,14047,16243,4601],"delegation":[2363,13047,15243,3601],"delegatorTokens":9999999906640,"jailed":[1000000000000017,null,1000000000000047,1000000000000047],"status":["unbonding","bonded","unbonding","unbonding"]}},{"ix":178,"action":{"kind":"Undelegate","val":1,"amt":4216},"partialState":{"h":16,"t":96,"tokens":[3363,9831,16243,4601],"delegation":[2363,8831,15243,3601],"delegatorTokens":9999999906640}},{"ix":179,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":180,"action":{"kind":"Undelegate","val":3,"amt":3033},"partialState":{"h":16,"t":96,"tokens":[3363,9831,16243,1568],"delegation":[2363,8831,15243,568],"delegatorTokens":9999999906640}},{"ix":181,"action":{"kind":"Undelegate","val":2,"amt":2528},"partialState":{"h":16,"t":96,"tokens":[3363,9831,13715,1568],"delegation":[2363,8831,12715,568],"delegatorTokens":9999999906640}},{"ix":182,"action":{"kind":"Undelegate","val":3,"amt":2313},"partialState":{"h":16,"t":96,"tokens":[3363,9831,13715,1568],"delegation":[2363,8831,12715,568],"delegatorTokens":9999999906640}},{"ix":183,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":17,"t":102,"tokens":[3363,9831,13715,1568],"delegation":[2363,8831,12715,568],"delegatorTokens":9999999914508,"jailed":[1000000000000017,null,1000000000000047,1000000000000047],"status":["unbonding","bonded","unbonding","unbonding"]}},{"ix":184,"action":{"kind":"Deliver","chain":"consumer","numPackets":4},"partialState":{"h":23,"t":138,"consumerPower":[null,8976,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":185,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":186,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":18,"t":108,"tokens":[3363,9831,13715,1568],"delegation":[2363,8831,12715,568],"delegatorTokens":9999999916556,"jailed":[1000000000000017,null,1000000000000047,1000000000000047],"status":["unbonded","bonded","unbonding","unbonding"]}},{"ix":187,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":24,"t":144,"consumerPower":[null,8976,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":188,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":189,"action":{"kind":"Delegate","val":3,"amt":2131},"partialState":{"h":18,"t":108,"tokens":[3363,9831,13715,3699],"delegation":[2363,8831,12715,2699],"delegatorTokens":9999999914425}},{"ix":190,"action":{"kind":"Undelegate","val":0,"amt":4638},"partialState":{"h":18,"t":108,"tokens":[3363,9831,13715,3699],"delegation":[2363,8831,12715,2699],"delegatorTokens":9999999914425}},{"ix":191,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":19,"t":114,"tokens":[3363,9831,13715,3699],"delegation":[2363,8831,12715,2699],"delegatorTokens":9999999914425,"jailed":[1000000000000017,null,1000000000000047,1000000000000047],"status":["unbonded","bonded","unbonding","unbonding"]}},{"ix":192,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":20,"t":120,"tokens":[3363,9831,13715,3699],"delegation":[2363,8831,12715,2699],"delegatorTokens":9999999921099,"jailed":[1000000000000017,null,1000000000000047,1000000000000047],"status":["unbonded","bonded","unbonding","unbonding"]}},{"ix":193,"action":{"kind":"Deliver","chain":"consumer","numPackets":1},"partialState":{"h":24,"t":144,"consumerPower":[null,8976,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":194,"action":{"kind":"Delegate","val":1,"amt":2984},"partialState":{"h":20,"t":120,"tokens":[3363,12815,13715,3699],"delegation":[2363,11815,12715,2699],"delegatorTokens":9999999918115}},{"ix":195,"action":{"kind":"Delegate","val":3,"amt":3364},"partialState":{"h":20,"t":120,"tokens":[3363,12815,13715,7063],"delegation":[2363,11815,12715,6063],"delegatorTokens":9999999914751}},{"ix":196,"action":{"kind":"Undelegate","val":3,"amt":4122},"partialState":{"h":20,"t":120,"tokens":[3363,12815,13715,2941],"delegation":[2363,11815,12715,1941],"delegatorTokens":9999999914751}},{"ix":197,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":21,"t":126,"tokens":[3363,12815,13715,2941],"delegation":[2363,11815,12715,1941],"delegatorTokens":9999999934068,"jailed":[1000000000000017,null,1000000000000047,1000000000000047],"status":["unbonded","bonded","unbonded","unbonding"]}},{"ix":198,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":199,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":22,"t":132,"tokens":[3363,12815,13715,2941],"delegation":[2363,11815,12715,1941],"delegatorTokens":9999999934068,"jailed":[1000000000000017,null,1000000000000047,1000000000000047],"status":["unbonded","bonded","unbonded","unbonding"]}}],"events":["send_downtime_slash_request","insufficient_shares","downtime_slash_request_outstanding","downtime_slash_request_outstanding","more_than_one_third_val_power_change","receive_downtime_slash_request","jail","send_vsc_with_downtime_ack","send_double_sign_slash_request","send_downtime_slash_request","rebond_unval","send_vsc_without_downtime_ack","send_vsc_not_because_change","send_vsc_without_downtime_ack","insufficient_shares","insufficient_shares","downtime_slash_request_outstanding","downtime_slash_request_outstanding","send_downtime_slash_request","more_than_one_third_val_power_change","send_vsc_without_downtime_ack","receive_double_sign_slash_request","receive_downtime_slash_ack","consumer_del_val","consumer_update_val","consumer_add_val","insufficient_shares","rebond_unval","receive_downtime_slash_request","jail","receive_downtime_slash_request","jail","send_vsc_with_downtime_ack","consumer_del_val","consumer_add_val","insufficient_shares","insufficient_shares","send_vsc_without_downtime_ack","send_vsc_without_downtime_ack","insufficient_shares","receive_downtime_slash_ack","receive_downtime_slash_ack","consumer_add_val","consumer_del_val","consumer_del_val","send_vsc_not_because_change","send_vsc_without_downtime_ack","send_vsc_not_because_change","send_vsc_without_downtime_ack","insufficient_shares","insufficient_shares","insufficient_shares","consumer_send_maturation","consumer_send_maturation","consumer_send_maturation","consumer_send_maturation","insufficient_shares","consumer_send_maturation","consumer_send_maturation","consumer_send_maturation","insufficient_shares","some_undels_expired_but_not_completed","complete_undel_immediate","complete_undel_immediate","complete_undel_immediate","complete_undel_immediate","set_unval_hold_false","set_undel_hold_false","set_undel_hold_false","set_undel_hold_false","set_undel_hold_false","set_undel_hold_false","set_undel_hold_false","set_undel_hold_false","set_undel_hold_false","set_undel_hold_false","set_undel_hold_false","set_unval_hold_false","send_vsc_without_downtime_ack","complete_unval_in_endblock","complete_undel_in_endblock","insufficient_shares","complete_undel_in_endblock","complete_unval_in_endblock","complete_undel_in_endblock","send_vsc_without_downtime_ack","some_undels_expired_but_not_completed"]},{"meta":{"commit":"7ffd0c04e4205cbc9caf212abfe6c59ee43153bf"},"constants":{"P":"provider","C":"consumer","UNBONDING_SECONDS_P":70,"UNBONDING_SECONDS_C":50,"TRUSTING_SECONDS":49,"NUM_VALIDATORS":4,"MAX_VALIDATORS":2,"SLASH_DOUBLESIGN":0,"SLASH_DOWNTIME":0,"JAIL_SECONDS":999999999999999,"BLOCK_SECONDS":6,"INITIAL_DELEGATOR_TOKENS":10000000000000,"DELEGATE_AMT_MIN":1000,"DELEGATE_AMT_MAX":5000,"UNDELEGATE_AMT_MIN":1000,"UNDELEGATE_AMT_MAX":5000,"ISDOWNTIME_PROBABILITY":0.5,"MAX_NUM_PACKETS_FOR_DELIVER":6},"actions":[{"ix":0,"action":{"kind":"Deliver","chain":"consumer","numPackets":6},"partialState":{"h":1,"t":6,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":1,"action":{"kind":"Deliver","chain":"provider","numPackets":4},"partialState":{"h":1,"t":6,"tokens":[5000,4000,3000,2000],"delegation":[4000,3000,2000,1000],"delegatorTokens":10000000000000,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":2,"action":{"kind":"Undelegate","val":0,"amt":4444},"partialState":{"h":1,"t":6,"tokens":[5000,4000,3000,2000],"delegation":[4000,3000,2000,1000],"delegatorTokens":10000000000000}},{"ix":3,"action":{"kind":"Delegate","val":0,"amt":2772},"partialState":{"h":1,"t":6,"tokens":[7772,4000,3000,2000],"delegation":[6772,3000,2000,1000],"delegatorTokens":9999999997228}},{"ix":4,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":2,"t":12,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":5,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":6,"action":{"kind":"ConsumerSlash","val":3,"infractionHeight":1,"isDowntime":true},"partialState":{"h":2,"t":12,"outstandingDowntime":[false,false,false,true]}},{"ix":7,"action":{"kind":"Delegate","val":2,"amt":2462},"partialState":{"h":1,"t":6,"tokens":[7772,4000,5462,2000],"delegation":[6772,3000,4462,1000],"delegatorTokens":9999999994766}},{"ix":8,"action":{"kind":"Delegate","val":3,"amt":3612},"partialState":{"h":1,"t":6,"tokens":[7772,4000,5462,5612],"delegation":[6772,3000,4462,4612],"delegatorTokens":9999999991154}},{"ix":9,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":10,"action":{"kind":"Deliver","chain":"provider","numPackets":1},"partialState":{"h":1,"t":6,"tokens":[7772,4000,5462,5612],"delegation":[6772,3000,4462,4612],"delegatorTokens":9999999991154,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":11,"action":{"kind":"Undelegate","val":2,"amt":2698},"partialState":{"h":1,"t":6,"tokens":[7772,4000,2764,5612],"delegation":[6772,3000,1764,4612],"delegatorTokens":9999999991154}},{"ix":12,"action":{"kind":"ConsumerSlash","val":0,"infractionHeight":1,"isDowntime":true},"partialState":{"h":2,"t":12,"outstandingDowntime":[true,false,false,true]}},{"ix":13,"action":{"kind":"Delegate","val":1,"amt":3214},"partialState":{"h":1,"t":6,"tokens":[7772,7214,2764,5612],"delegation":[6772,6214,1764,4612],"delegatorTokens":9999999987940}},{"ix":14,"action":{"kind":"Undelegate","val":0,"amt":1354},"partialState":{"h":1,"t":6,"tokens":[6418,7214,2764,5612],"delegation":[5418,6214,1764,4612],"delegatorTokens":9999999987940}},{"ix":15,"action":{"kind":"Deliver","chain":"consumer","numPackets":2},"partialState":{"h":2,"t":12,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[true,false,false,true]}},{"ix":16,"action":{"kind":"ConsumerSlash","val":0,"infractionHeight":0,"isDowntime":false},"partialState":{"h":2,"t":12,"outstandingDowntime":[true,false,false,true]}},{"ix":17,"action":{"kind":"Undelegate","val":2,"amt":4922},"partialState":{"h":1,"t":6,"tokens":[6418,7214,2764,5612],"delegation":[5418,6214,1764,4612],"delegatorTokens":9999999987940}},{"ix":18,"action":{"kind":"ConsumerSlash","val":0,"infractionHeight":0,"isDowntime":false},"partialState":{"h":2,"t":12,"outstandingDowntime":[true,false,false,true]}},{"ix":19,"action":{"kind":"Deliver","chain":"consumer","numPackets":3},"partialState":{"h":2,"t":12,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[true,false,false,true]}},{"ix":20,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":2,"t":12,"tokens":[6418,7214,2764,5612],"delegation":[5418,6214,1764,4612],"delegatorTokens":9999999987940,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":21,"action":{"kind":"Deliver","chain":"consumer","numPackets":6},"partialState":{"h":2,"t":12,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[true,false,false,true]}},{"ix":22,"action":{"kind":"Deliver","chain":"provider","numPackets":1},"partialState":{"h":2,"t":12,"tokens":[6418,7214,2764,5612],"delegation":[5418,6214,1764,4612],"delegatorTokens":9999999987940,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":23,"action":{"kind":"Delegate","val":1,"amt":3639},"partialState":{"h":2,"t":12,"tokens":[6418,10853,2764,5612],"delegation":[5418,9853,1764,4612],"delegatorTokens":9999999984301}},{"ix":24,"action":{"kind":"ConsumerSlash","val":3,"infractionHeight":1,"isDowntime":true},"partialState":{"h":2,"t":12,"outstandingDowntime":[true,false,false,true]}},{"ix":25,"action":{"kind":"ConsumerSlash","val":0,"infractionHeight":1,"isDowntime":true},"partialState":{"h":2,"t":12,"outstandingDowntime":[true,false,false,true]}},{"ix":26,"action":{"kind":"Delegate","val":2,"amt":3747},"partialState":{"h":2,"t":12,"tokens":[6418,10853,6511,5612],"delegation":[5418,9853,5511,4612],"delegatorTokens":9999999980554}},{"ix":27,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":3,"t":18,"tokens":[6418,10853,6511,5612],"delegation":[5418,9853,5511,4612],"delegatorTokens":9999999980554,"jailed":[null,null,null,null],"status":["unbonding","bonded","bonded","unbonded"]}},{"ix":28,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":4,"t":24,"tokens":[6418,10853,6511,5612],"delegation":[5418,9853,5511,4612],"delegatorTokens":9999999980554,"jailed":[null,null,null,null],"status":["unbonding","bonded","bonded","unbonded"]}},{"ix":29,"action":{"kind":"Deliver","chain":"provider","numPackets":5},"partialState":{"h":4,"t":24,"tokens":[6418,10853,6511,5612],"delegation":[5418,9853,5511,4612],"delegatorTokens":9999999980554,"jailed":[null,null,null,null],"status":["unbonding","bonded","bonded","unbonded"]}},{"ix":30,"action":{"kind":"Delegate","val":0,"amt":3623},"partialState":{"h":4,"t":24,"tokens":[10041,10853,6511,5612],"delegation":[9041,9853,5511,4612],"delegatorTokens":9999999976931}},{"ix":31,"action":{"kind":"Undelegate","val":0,"amt":3841},"partialState":{"h":4,"t":24,"tokens":[6200,10853,6511,5612],"delegation":[5200,9853,5511,4612],"delegatorTokens":9999999976931}},{"ix":32,"action":{"kind":"Undelegate","val":2,"amt":1488},"partialState":{"h":4,"t":24,"tokens":[6200,10853,5023,5612],"delegation":[5200,9853,4023,4612],"delegatorTokens":9999999976931}},{"ix":33,"action":{"kind":"Undelegate","val":1,"amt":1270},"partialState":{"h":4,"t":24,"tokens":[6200,9583,5023,5612],"delegation":[5200,8583,4023,4612],"delegatorTokens":9999999976931}},{"ix":34,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":5,"t":30,"tokens":[6200,9583,5023,5612],"delegation":[5200,8583,4023,4612],"delegatorTokens":9999999976931,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonding","unbonded"]}},{"ix":35,"action":{"kind":"Undelegate","val":1,"amt":4251},"partialState":{"h":5,"t":30,"tokens":[6200,5332,5023,5612],"delegation":[5200,4332,4023,4612],"delegatorTokens":9999999976931}},{"ix":36,"action":{"kind":"Undelegate","val":2,"amt":2364},"partialState":{"h":5,"t":30,"tokens":[6200,5332,2659,5612],"delegation":[5200,4332,1659,4612],"delegatorTokens":9999999976931}},{"ix":37,"action":{"kind":"ConsumerSlash","val":1,"infractionHeight":0,"isDowntime":true},"partialState":{"h":2,"t":12,"outstandingDowntime":[true,true,false,true]}},{"ix":38,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":39,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":3,"t":18,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[true,true,false,true]}},{"ix":40,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":4,"t":24,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[true,true,false,true]}},{"ix":41,"action":{"kind":"Delegate","val":0,"amt":4019},"partialState":{"h":5,"t":30,"tokens":[10219,5332,2659,5612],"delegation":[9219,4332,1659,4612],"delegatorTokens":9999999972912}},{"ix":42,"action":{"kind":"Deliver","chain":"consumer","numPackets":5},"partialState":{"h":4,"t":24,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[true,true,false,true]}},{"ix":43,"action":{"kind":"Deliver","chain":"consumer","numPackets":2},"partialState":{"h":4,"t":24,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[true,true,false,true]}},{"ix":44,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":45,"action":{"kind":"Undelegate","val":2,"amt":1101},"partialState":{"h":5,"t":30,"tokens":[10219,5332,1558,5612],"delegation":[9219,4332,558,4612],"delegatorTokens":9999999972912}},{"ix":46,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":47,"action":{"kind":"Delegate","val":2,"amt":3040},"partialState":{"h":5,"t":30,"tokens":[10219,5332,4598,5612],"delegation":[9219,4332,3598,4612],"delegatorTokens":9999999969872}},{"ix":48,"action":{"kind":"Delegate","val":1,"amt":1799},"partialState":{"h":5,"t":30,"tokens":[10219,7131,4598,5612],"delegation":[9219,6131,3598,4612],"delegatorTokens":9999999968073}},{"ix":49,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":50,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":51,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":6,"t":36,"tokens":[10219,7131,4598,5612],"delegation":[9219,6131,3598,4612],"delegatorTokens":9999999968073,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonding","unbonded"]}},{"ix":52,"action":{"kind":"Delegate","val":3,"amt":2464},"partialState":{"h":6,"t":36,"tokens":[10219,7131,4598,8076],"delegation":[9219,6131,3598,7076],"delegatorTokens":9999999965609}},{"ix":53,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":5,"t":30,"consumerPower":[null,10853,6511,null],"outstandingDowntime":[true,true,false,true]}},{"ix":54,"action":{"kind":"Deliver","chain":"provider","numPackets":3},"partialState":{"h":6,"t":36,"tokens":[10219,7131,4598,8076],"delegation":[9219,6131,3598,7076],"delegatorTokens":9999999965609,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonding","unbonded"]}},{"ix":55,"action":{"kind":"Undelegate","val":1,"amt":2654},"partialState":{"h":6,"t":36,"tokens":[10219,4477,4598,8076],"delegation":[9219,3477,3598,7076],"delegatorTokens":9999999965609}},{"ix":56,"action":{"kind":"Delegate","val":1,"amt":2025},"partialState":{"h":6,"t":36,"tokens":[10219,6502,4598,8076],"delegation":[9219,5502,3598,7076],"delegatorTokens":9999999963584}},{"ix":57,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":7,"t":42,"tokens":[10219,6502,4598,8076],"delegation":[9219,5502,3598,7076],"delegatorTokens":9999999963584,"jailed":[1000000000000035,null,null,1000000000000035],"status":["bonded","unbonding","unbonding","bonded"]}},{"ix":58,"action":{"kind":"Undelegate","val":1,"amt":1091},"partialState":{"h":7,"t":42,"tokens":[10219,5411,4598,8076],"delegation":[9219,4411,3598,7076],"delegatorTokens":9999999963584}},{"ix":59,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":8,"t":48,"tokens":[10219,5411,4598,8076],"delegation":[9219,4411,3598,7076],"delegatorTokens":9999999963584,"jailed":[1000000000000035,null,null,1000000000000035],"status":["unbonding","bonded","bonded","unbonding"]}},{"ix":60,"action":{"kind":"Undelegate","val":3,"amt":3829},"partialState":{"h":8,"t":48,"tokens":[10219,5411,4598,4247],"delegation":[9219,4411,3598,3247],"delegatorTokens":9999999963584}},{"ix":61,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":62,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":63,"action":{"kind":"Undelegate","val":3,"amt":4059},"partialState":{"h":8,"t":48,"tokens":[10219,5411,4598,4247],"delegation":[9219,4411,3598,3247],"delegatorTokens":9999999963584}},{"ix":64,"action":{"kind":"Undelegate","val":2,"amt":1627},"partialState":{"h":8,"t":48,"tokens":[10219,5411,2971,4247],"delegation":[9219,4411,1971,3247],"delegatorTokens":9999999963584}},{"ix":65,"action":{"kind":"Undelegate","val":0,"amt":2892},"partialState":{"h":8,"t":48,"tokens":[7327,5411,2971,4247],"delegation":[6327,4411,1971,3247],"delegatorTokens":9999999963584}},{"ix":66,"action":{"kind":"Undelegate","val":3,"amt":3313},"partialState":{"h":8,"t":48,"tokens":[7327,5411,2971,4247],"delegation":[6327,4411,1971,3247],"delegatorTokens":9999999963584}},{"ix":67,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":6,"t":36,"consumerPower":[null,10853,6511,null],"outstandingDowntime":[true,true,false,true]}},{"ix":68,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":9,"t":54,"tokens":[7327,5411,2971,4247],"delegation":[6327,4411,1971,3247],"delegatorTokens":9999999963584,"jailed":[1000000000000035,null,null,1000000000000035],"status":["unbonding","bonded","bonded","unbonding"]}},{"ix":69,"action":{"kind":"Deliver","chain":"provider","numPackets":1},"partialState":{"h":9,"t":54,"tokens":[7327,5411,2971,4247],"delegation":[6327,4411,1971,3247],"delegatorTokens":9999999963584,"jailed":[1000000000000035,null,null,1000000000000035],"status":["unbonding","bonded","bonded","unbonding"]}},{"ix":70,"action":{"kind":"Deliver","chain":"consumer","numPackets":1},"partialState":{"h":6,"t":36,"consumerPower":[null,10853,6511,null],"outstandingDowntime":[true,true,false,true]}},{"ix":71,"action":{"kind":"Deliver","chain":"provider","numPackets":5},"partialState":{"h":9,"t":54,"tokens":[7327,5411,2971,4247],"delegation":[6327,4411,1971,3247],"delegatorTokens":9999999963584,"jailed":[1000000000000035,null,null,1000000000000035],"status":["unbonding","bonded","bonded","unbonding"]}},{"ix":72,"action":{"kind":"Deliver","chain":"consumer","numPackets":4},"partialState":{"h":6,"t":36,"consumerPower":[null,10853,6511,null],"outstandingDowntime":[false,true,false,false]}},{"ix":73,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":74,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":75,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":7,"t":42,"consumerPower":[null,5411,4598,null],"outstandingDowntime":[false,true,false,false]}},{"ix":76,"action":{"kind":"Delegate","val":1,"amt":1940},"partialState":{"h":9,"t":54,"tokens":[7327,7351,2971,4247],"delegation":[6327,6351,1971,3247],"delegatorTokens":9999999961644}},{"ix":77,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":78,"action":{"kind":"Delegate","val":2,"amt":3775},"partialState":{"h":9,"t":54,"tokens":[7327,7351,6746,4247],"delegation":[6327,6351,5746,3247],"delegatorTokens":9999999957869}},{"ix":79,"action":{"kind":"Delegate","val":3,"amt":2198},"partialState":{"h":9,"t":54,"tokens":[7327,7351,6746,6445],"delegation":[6327,6351,5746,5445],"delegatorTokens":9999999955671}},{"ix":80,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":81,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":8,"t":48,"consumerPower":[null,5411,4598,null],"outstandingDowntime":[false,true,false,false]}},{"ix":82,"action":{"kind":"Undelegate","val":1,"amt":1944},"partialState":{"h":9,"t":54,"tokens":[7327,5407,6746,6445],"delegation":[6327,4407,5746,5445],"delegatorTokens":9999999955671}},{"ix":83,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":9,"t":54,"consumerPower":[null,5411,4598,null],"outstandingDowntime":[false,true,false,false]}},{"ix":84,"action":{"kind":"Undelegate","val":3,"amt":4168},"partialState":{"h":9,"t":54,"tokens":[7327,5407,6746,2277],"delegation":[6327,4407,5746,1277],"delegatorTokens":9999999955671}},{"ix":85,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":10,"t":60,"consumerPower":[null,5411,4598,null],"outstandingDowntime":[false,true,false,false]}},{"ix":86,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":11,"t":66,"consumerPower":[null,5411,4598,null],"outstandingDowntime":[false,true,false,false]}},{"ix":87,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":10,"t":60,"tokens":[7327,5407,6746,2277],"delegation":[6327,4407,5746,1277],"delegatorTokens":9999999955671,"jailed":[1000000000000035,1000000000000053,null,1000000000000035],"status":["unbonding","bonded","bonded","unbonding"]}},{"ix":88,"action":{"kind":"Undelegate","val":2,"amt":4456},"partialState":{"h":10,"t":60,"tokens":[7327,5407,2290,2277],"delegation":[6327,4407,1290,1277],"delegatorTokens":9999999955671}},{"ix":89,"action":{"kind":"Delegate","val":1,"amt":4271},"partialState":{"h":10,"t":60,"tokens":[7327,9678,2290,2277],"delegation":[6327,8678,1290,1277],"delegatorTokens":9999999951400}},{"ix":90,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":91,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":12,"t":72,"consumerPower":[null,5411,4598,null],"outstandingDowntime":[false,true,false,false]}},{"ix":92,"action":{"kind":"Deliver","chain":"consumer","numPackets":1},"partialState":{"h":12,"t":72,"consumerPower":[null,5411,4598,null],"outstandingDowntime":[false,true,false,false]}},{"ix":93,"action":{"kind":"Deliver","chain":"consumer","numPackets":2},"partialState":{"h":12,"t":72,"consumerPower":[null,5411,4598,null],"outstandingDowntime":[false,true,false,false]}},{"ix":94,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":95,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":96,"action":{"kind":"Delegate","val":3,"amt":1408},"partialState":{"h":10,"t":60,"tokens":[7327,9678,2290,3685],"delegation":[6327,8678,1290,2685],"delegatorTokens":9999999949992}},{"ix":97,"action":{"kind":"Undelegate","val":1,"amt":2713},"partialState":{"h":10,"t":60,"tokens":[7327,6965,2290,3685],"delegation":[6327,5965,1290,2685],"delegatorTokens":9999999949992}},{"ix":98,"action":{"kind":"Deliver","chain":"provider","numPackets":6},"partialState":{"h":10,"t":60,"tokens":[7327,6965,2290,3685],"delegation":[6327,5965,1290,2685],"delegatorTokens":9999999949992,"jailed":[1000000000000035,1000000000000053,null,1000000000000035],"status":["unbonding","bonded","bonded","unbonding"]}},{"ix":99,"action":{"kind":"Undelegate","val":3,"amt":2550},"partialState":{"h":10,"t":60,"tokens":[7327,6965,2290,1135],"delegation":[6327,5965,1290,135],"delegatorTokens":9999999949992}},{"ix":100,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":13,"t":78,"consumerPower":[null,5411,2971,null],"outstandingDowntime":[false,true,false,false]}},{"ix":101,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":102,"action":{"kind":"Deliver","chain":"provider","numPackets":2},"partialState":{"h":10,"t":60,"tokens":[7327,6965,2290,1135],"delegation":[6327,5965,1290,135],"delegatorTokens":9999999949992,"jailed":[1000000000000035,1000000000000053,null,1000000000000035],"status":["unbonding","bonded","bonded","unbonding"]}},{"ix":103,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":14,"t":84,"consumerPower":[null,5411,2971,null],"outstandingDowntime":[false,true,false,false]}},{"ix":104,"action":{"kind":"Deliver","chain":"consumer","numPackets":6},"partialState":{"h":14,"t":84,"consumerPower":[null,5411,2971,null],"outstandingDowntime":[false,true,false,false]}},{"ix":105,"action":{"kind":"Delegate","val":2,"amt":2194},"partialState":{"h":10,"t":60,"tokens":[7327,6965,4484,1135],"delegation":[6327,5965,3484,135],"delegatorTokens":9999999947798}},{"ix":106,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":107,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":108,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":11,"t":66,"tokens":[7327,6965,4484,1135],"delegation":[6327,5965,3484,135],"delegatorTokens":9999999947798,"jailed":[1000000000000035,1000000000000053,null,1000000000000035],"status":["unbonding","unbonding","bonded","unbonding"]}},{"ix":109,"action":{"kind":"Undelegate","val":2,"amt":1681},"partialState":{"h":11,"t":66,"tokens":[7327,6965,2803,1135],"delegation":[6327,5965,1803,135],"delegatorTokens":9999999947798}},{"ix":110,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":15,"t":90,"consumerPower":[null,5411,2971,null],"outstandingDowntime":[false,true,false,false]}},{"ix":111,"action":{"kind":"Deliver","chain":"consumer","numPackets":5},"partialState":{"h":15,"t":90,"consumerPower":[null,5411,2971,null],"outstandingDowntime":[false,false,false,false]}},{"ix":112,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":113,"action":{"kind":"Undelegate","val":3,"amt":4244},"partialState":{"h":11,"t":66,"tokens":[7327,6965,2803,1135],"delegation":[6327,5965,1803,135],"delegatorTokens":9999999947798}},{"ix":114,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":115,"action":{"kind":"Delegate","val":1,"amt":2723},"partialState":{"h":11,"t":66,"tokens":[7327,9688,2803,1135],"delegation":[6327,8688,1803,135],"delegatorTokens":9999999945075}},{"ix":116,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":117,"action":{"kind":"Deliver","chain":"provider","numPackets":3},"partialState":{"h":11,"t":66,"tokens":[7327,9688,2803,1135],"delegation":[6327,8688,1803,135],"delegatorTokens":9999999945075,"jailed":[1000000000000035,1000000000000053,null,1000000000000035],"status":["unbonding","unbonding","bonded","unbonding"]}},{"ix":118,"action":{"kind":"Undelegate","val":3,"amt":2678},"partialState":{"h":11,"t":66,"tokens":[7327,9688,2803,1135],"delegation":[6327,8688,1803,135],"delegatorTokens":9999999945075}},{"ix":119,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":120,"action":{"kind":"Undelegate","val":2,"amt":3325},"partialState":{"h":11,"t":66,"tokens":[7327,9688,2803,1135],"delegation":[6327,8688,1803,135],"delegatorTokens":9999999945075}},{"ix":121,"action":{"kind":"Undelegate","val":3,"amt":2693},"partialState":{"h":11,"t":66,"tokens":[7327,9688,2803,1135],"delegation":[6327,8688,1803,135],"delegatorTokens":9999999945075}},{"ix":122,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":123,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":124,"action":{"kind":"Deliver","chain":"consumer","numPackets":3},"partialState":{"h":15,"t":90,"consumerPower":[null,5411,2971,null],"outstandingDowntime":[false,false,false,false]}},{"ix":125,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":126,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":127,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":16,"t":96,"consumerPower":[null,5407,6746,null],"outstandingDowntime":[false,false,false,false]}},{"ix":128,"action":{"kind":"Delegate","val":3,"amt":1246},"partialState":{"h":11,"t":66,"tokens":[7327,9688,2803,2381],"delegation":[6327,8688,1803,1381],"delegatorTokens":9999999943829}},{"ix":129,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":130,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":131,"action":{"kind":"Delegate","val":1,"amt":3447},"partialState":{"h":11,"t":66,"tokens":[7327,13135,2803,2381],"delegation":[6327,12135,1803,1381],"delegatorTokens":9999999940382}},{"ix":132,"action":{"kind":"Undelegate","val":0,"amt":2495},"partialState":{"h":11,"t":66,"tokens":[4832,13135,2803,2381],"delegation":[3832,12135,1803,1381],"delegatorTokens":9999999940382}},{"ix":133,"action":{"kind":"Deliver","chain":"consumer","numPackets":1},"partialState":{"h":16,"t":96,"consumerPower":[null,5407,6746,null],"outstandingDowntime":[false,false,false,false]}},{"ix":134,"action":{"kind":"Deliver","chain":"consumer","numPackets":1},"partialState":{"h":16,"t":96,"consumerPower":[null,5407,6746,null],"outstandingDowntime":[false,false,false,false]}},{"ix":135,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":136,"action":{"kind":"Deliver","chain":"consumer","numPackets":3},"partialState":{"h":16,"t":96,"consumerPower":[null,5407,6746,null],"outstandingDowntime":[false,false,false,false]}},{"ix":137,"action":{"kind":"Undelegate","val":1,"amt":3300},"partialState":{"h":11,"t":66,"tokens":[4832,9835,2803,2381],"delegation":[3832,8835,1803,1381],"delegatorTokens":9999999940382}},{"ix":138,"action":{"kind":"Undelegate","val":2,"amt":3637},"partialState":{"h":11,"t":66,"tokens":[4832,9835,2803,2381],"delegation":[3832,8835,1803,1381],"delegatorTokens":9999999940382}},{"ix":139,"action":{"kind":"Deliver","chain":"provider","numPackets":1},"partialState":{"h":11,"t":66,"tokens":[4832,9835,2803,2381],"delegation":[3832,8835,1803,1381],"delegatorTokens":9999999940382,"jailed":[1000000000000035,1000000000000053,null,1000000000000035],"status":["unbonding","unbonding","bonded","unbonding"]}},{"ix":140,"action":{"kind":"Delegate","val":3,"amt":1869},"partialState":{"h":11,"t":66,"tokens":[4832,9835,2803,4250],"delegation":[3832,8835,1803,3250],"delegatorTokens":9999999938513}},{"ix":141,"action":{"kind":"Delegate","val":3,"amt":3443},"partialState":{"h":11,"t":66,"tokens":[4832,9835,2803,7693],"delegation":[3832,8835,1803,6693],"delegatorTokens":9999999935070}},{"ix":142,"action":{"kind":"Deliver","chain":"consumer","numPackets":5},"partialState":{"h":16,"t":96,"consumerPower":[null,5407,6746,null],"outstandingDowntime":[false,false,false,false]}},{"ix":143,"action":{"kind":"Deliver","chain":"consumer","numPackets":5},"partialState":{"h":16,"t":96,"consumerPower":[null,5407,6746,null],"outstandingDowntime":[false,false,false,false]}},{"ix":144,"action":{"kind":"Undelegate","val":1,"amt":3435},"partialState":{"h":11,"t":66,"tokens":[4832,6400,2803,7693],"delegation":[3832,5400,1803,6693],"delegatorTokens":9999999935070}},{"ix":145,"action":{"kind":"Delegate","val":0,"amt":1105},"partialState":{"h":11,"t":66,"tokens":[5937,6400,2803,7693],"delegation":[4937,5400,1803,6693],"delegatorTokens":9999999933965}},{"ix":146,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":17,"t":102,"consumerPower":[null,5407,6746,null],"outstandingDowntime":[false,false,false,false]}},{"ix":147,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":148,"action":{"kind":"Undelegate","val":0,"amt":1080},"partialState":{"h":11,"t":66,"tokens":[4857,6400,2803,7693],"delegation":[3857,5400,1803,6693],"delegatorTokens":9999999933965}},{"ix":149,"action":{"kind":"Delegate","val":3,"amt":4826},"partialState":{"h":11,"t":66,"tokens":[4857,6400,2803,12519],"delegation":[3857,5400,1803,11519],"delegatorTokens":9999999929139}},{"ix":150,"action":{"kind":"Delegate","val":0,"amt":4771},"partialState":{"h":11,"t":66,"tokens":[9628,6400,2803,12519],"delegation":[8628,5400,1803,11519],"delegatorTokens":9999999924368}},{"ix":151,"action":{"kind":"Undelegate","val":0,"amt":1733},"partialState":{"h":11,"t":66,"tokens":[7895,6400,2803,12519],"delegation":[6895,5400,1803,11519],"delegatorTokens":9999999924368}},{"ix":152,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":153,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":12,"t":72,"tokens":[7895,6400,2803,12519],"delegation":[6895,5400,1803,11519],"delegatorTokens":9999999924368,"jailed":[1000000000000035,1000000000000053,null,1000000000000035],"status":["unbonding","unbonding","bonded","unbonding"]}},{"ix":154,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":18,"t":108,"consumerPower":[null,5407,6746,null],"outstandingDowntime":[false,false,false,false]}},{"ix":155,"action":{"kind":"Undelegate","val":2,"amt":2859},"partialState":{"h":12,"t":72,"tokens":[7895,6400,2803,12519],"delegation":[6895,5400,1803,11519],"delegatorTokens":9999999924368}},{"ix":156,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":157,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":13,"t":78,"tokens":[7895,6400,2803,12519],"delegation":[6895,5400,1803,11519],"delegatorTokens":9999999924368,"jailed":[1000000000000035,1000000000000053,null,1000000000000035],"status":["unbonding","unbonding","bonded","unbonding"]}},{"ix":158,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":14,"t":84,"tokens":[7895,6400,2803,12519],"delegation":[6895,5400,1803,11519],"delegatorTokens":9999999928420,"jailed":[1000000000000035,1000000000000053,null,1000000000000035],"status":["unbonding","unbonding","bonded","unbonding"]}},{"ix":159,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":160,"action":{"kind":"Deliver","chain":"provider","numPackets":3},"partialState":{"h":14,"t":84,"tokens":[7895,6400,2803,12519],"delegation":[6895,5400,1803,11519],"delegatorTokens":9999999928420,"jailed":[1000000000000035,1000000000000053,null,1000000000000035],"status":["unbonding","unbonding","bonded","unbonding"]}},{"ix":161,"action":{"kind":"Deliver","chain":"provider","numPackets":3},"partialState":{"h":14,"t":84,"tokens":[7895,6400,2803,12519],"delegation":[6895,5400,1803,11519],"delegatorTokens":9999999928420,"jailed":[1000000000000035,1000000000000053,null,1000000000000035],"status":["unbonding","unbonding","bonded","unbonding"]}},{"ix":162,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":163,"action":{"kind":"Undelegate","val":0,"amt":1475},"partialState":{"h":14,"t":84,"tokens":[6420,6400,2803,12519],"delegation":[5420,5400,1803,11519],"delegatorTokens":9999999928420}},{"ix":164,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":19,"t":114,"consumerPower":[null,5407,6746,null],"outstandingDowntime":[false,false,false,false]}},{"ix":165,"action":{"kind":"Undelegate","val":1,"amt":1824},"partialState":{"h":14,"t":84,"tokens":[6420,4576,2803,12519],"delegation":[5420,3576,1803,11519],"delegatorTokens":9999999928420}},{"ix":166,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":15,"t":90,"tokens":[6420,4576,2803,12519],"delegation":[5420,3576,1803,11519],"delegatorTokens":9999999928420,"jailed":[1000000000000035,1000000000000053,null,1000000000000035],"status":["unbonding","unbonding","bonded","unbonding"]}},{"ix":167,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":20,"t":120,"consumerPower":[null,5407,6746,null],"outstandingDowntime":[false,false,false,false]}},{"ix":168,"action":{"kind":"Delegate","val":1,"amt":3264},"partialState":{"h":15,"t":90,"tokens":[6420,7840,2803,12519],"delegation":[5420,6840,1803,11519],"delegatorTokens":9999999925156}},{"ix":169,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":170,"action":{"kind":"Delegate","val":3,"amt":1356},"partialState":{"h":15,"t":90,"tokens":[6420,7840,2803,13875],"delegation":[5420,6840,1803,12875],"delegatorTokens":9999999923800}},{"ix":171,"action":{"kind":"Delegate","val":0,"amt":2635},"partialState":{"h":15,"t":90,"tokens":[9055,7840,2803,13875],"delegation":[8055,6840,1803,12875],"delegatorTokens":9999999921165}},{"ix":172,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":173,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":174,"action":{"kind":"Undelegate","val":2,"amt":4804},"partialState":{"h":15,"t":90,"tokens":[9055,7840,2803,13875],"delegation":[8055,6840,1803,12875],"delegatorTokens":9999999921165}},{"ix":175,"action":{"kind":"Delegate","val":1,"amt":1605},"partialState":{"h":15,"t":90,"tokens":[9055,9445,2803,13875],"delegation":[8055,8445,1803,12875],"delegatorTokens":9999999919560}},{"ix":176,"action":{"kind":"Delegate","val":3,"amt":2566},"partialState":{"h":15,"t":90,"tokens":[9055,9445,2803,16441],"delegation":[8055,8445,1803,15441],"delegatorTokens":9999999916994}},{"ix":177,"action":{"kind":"Delegate","val":1,"amt":1577},"partialState":{"h":15,"t":90,"tokens":[9055,11022,2803,16441],"delegation":[8055,10022,1803,15441],"delegatorTokens":9999999915417}},{"ix":178,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":21,"t":126,"consumerPower":[null,5407,6746,null],"outstandingDowntime":[false,false,false,false]}},{"ix":179,"action":{"kind":"Undelegate","val":0,"amt":2657},"partialState":{"h":15,"t":90,"tokens":[6398,11022,2803,16441],"delegation":[5398,10022,1803,15441],"delegatorTokens":9999999915417}},{"ix":180,"action":{"kind":"Delegate","val":0,"amt":3512},"partialState":{"h":15,"t":90,"tokens":[9910,11022,2803,16441],"delegation":[8910,10022,1803,15441],"delegatorTokens":9999999911905}},{"ix":181,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":16,"t":96,"tokens":[9910,11022,2803,16441],"delegation":[8910,10022,1803,15441],"delegatorTokens":9999999911905,"jailed":[1000000000000035,1000000000000053,null,1000000000000035],"status":["unbonding","unbonding","bonded","unbonding"]}},{"ix":182,"action":{"kind":"Undelegate","val":2,"amt":4946},"partialState":{"h":16,"t":96,"tokens":[9910,11022,2803,16441],"delegation":[8910,10022,1803,15441],"delegatorTokens":9999999911905}},{"ix":183,"action":{"kind":"Deliver","chain":"provider","numPackets":6},"partialState":{"h":16,"t":96,"tokens":[9910,11022,2803,16441],"delegation":[8910,10022,1803,15441],"delegatorTokens":9999999911905,"jailed":[1000000000000035,1000000000000053,null,1000000000000035],"status":["unbonding","unbonding","bonded","unbonding"]}},{"ix":184,"action":{"kind":"Deliver","chain":"provider","numPackets":3},"partialState":{"h":16,"t":96,"tokens":[9910,11022,2803,16441],"delegation":[8910,10022,1803,15441],"delegatorTokens":9999999911905,"jailed":[1000000000000035,1000000000000053,null,1000000000000035],"status":["unbonding","unbonding","bonded","unbonding"]}},{"ix":185,"action":{"kind":"Deliver","chain":"consumer","numPackets":5},"partialState":{"h":21,"t":126,"consumerPower":[null,5407,6746,null],"outstandingDowntime":[false,false,false,false]}},{"ix":186,"action":{"kind":"Undelegate","val":2,"amt":4950},"partialState":{"h":16,"t":96,"tokens":[9910,11022,2803,16441],"delegation":[8910,10022,1803,15441],"delegatorTokens":9999999911905}},{"ix":187,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":188,"action":{"kind":"Undelegate","val":0,"amt":1825},"partialState":{"h":16,"t":96,"tokens":[8085,11022,2803,16441],"delegation":[7085,10022,1803,15441],"delegatorTokens":9999999911905}},{"ix":189,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":17,"t":102,"tokens":[8085,11022,2803,16441],"delegation":[7085,10022,1803,15441],"delegatorTokens":9999999918504,"jailed":[1000000000000035,1000000000000053,null,1000000000000035],"status":["unbonding","unbonding","bonded","unbonding"]}},{"ix":190,"action":{"kind":"Delegate","val":3,"amt":2968},"partialState":{"h":17,"t":102,"tokens":[8085,11022,2803,19409],"delegation":[7085,10022,1803,18409],"delegatorTokens":9999999915536}},{"ix":191,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":18,"t":108,"tokens":[8085,11022,2803,19409],"delegation":[7085,10022,1803,18409],"delegatorTokens":9999999923252,"jailed":[1000000000000035,1000000000000053,null,1000000000000035],"status":["unbonding","unbonding","bonded","unbonding"]}},{"ix":192,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":193,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":194,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":19,"t":114,"tokens":[8085,11022,2803,19409],"delegation":[7085,10022,1803,18409],"delegatorTokens":9999999925906,"jailed":[1000000000000035,1000000000000053,null,1000000000000035],"status":["unbonding","unbonding","bonded","unbonding"]}},{"ix":195,"action":{"kind":"Deliver","chain":"provider","numPackets":3},"partialState":{"h":19,"t":114,"tokens":[8085,11022,2803,19409],"delegation":[7085,10022,1803,18409],"delegatorTokens":9999999925906,"jailed":[1000000000000035,1000000000000053,null,1000000000000035],"status":["unbonding","unbonding","bonded","unbonding"]}},{"ix":196,"action":{"kind":"Deliver","chain":"provider","numPackets":3},"partialState":{"h":19,"t":114,"tokens":[8085,11022,2803,19409],"delegation":[7085,10022,1803,18409],"delegatorTokens":9999999925906,"jailed":[1000000000000035,1000000000000053,null,1000000000000035],"status":["unbonding","unbonding","bonded","unbonding"]}},{"ix":197,"action":{"kind":"Delegate","val":1,"amt":2364},"partialState":{"h":19,"t":114,"tokens":[8085,13386,2803,19409],"delegation":[7085,12386,1803,18409],"delegatorTokens":9999999923542}},{"ix":198,"action":{"kind":"Delegate","val":2,"amt":3640},"partialState":{"h":19,"t":114,"tokens":[8085,13386,6443,19409],"delegation":[7085,12386,5443,18409],"delegatorTokens":9999999919902}},{"ix":199,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":20,"t":120,"tokens":[8085,13386,6443,19409],"delegation":[7085,12386,5443,18409],"delegatorTokens":9999999920993,"jailed":[1000000000000035,1000000000000053,null,1000000000000035],"status":["unbonded","unbonding","bonded","unbonded"]}}],"events":["insufficient_shares","send_downtime_slash_request","send_downtime_slash_request","send_double_sign_slash_request","insufficient_shares","send_double_sign_slash_request","send_vsc_without_downtime_ack","downtime_slash_request_outstanding","downtime_slash_request_outstanding","more_than_one_third_val_power_change","send_vsc_without_downtime_ack","more_than_one_third_val_power_change","rebond_unval","send_vsc_without_downtime_ack","send_downtime_slash_request","send_vsc_without_downtime_ack","consumer_del_val","consumer_update_val","consumer_add_val","receive_double_sign_slash_request","more_than_one_third_val_power_change","receive_downtime_slash_request","jail","receive_downtime_slash_request","jail","send_vsc_with_downtime_ack","more_than_one_third_val_power_change","rebond_unval","rebond_unval","send_vsc_without_downtime_ack","insufficient_shares","insufficient_shares","send_vsc_without_downtime_ack","receive_double_sign_slash_request","receive_downtime_slash_ack","receive_downtime_slash_ack","consumer_del_val","consumer_update_val","consumer_update_val","consumer_del_val","receive_downtime_slash_request","jail","send_vsc_with_downtime_ack","consumer_update_val","consumer_send_maturation","consumer_send_maturation","send_vsc_without_downtime_ack","receive_downtime_slash_ack","insufficient_shares","insufficient_shares","insufficient_shares","insufficient_shares","consumer_send_maturation","consumer_send_maturation","consumer_send_maturation","consumer_send_maturation","consumer_update_val","consumer_update_val","insufficient_shares","set_undel_hold_false","set_undel_hold_false","send_vsc_without_downtime_ack","insufficient_shares","complete_undel_in_endblock","set_undel_hold_false","set_undel_hold_false","set_undel_hold_false","set_undel_hold_false","set_undel_hold_false","set_undel_hold_false","set_undel_hold_false","set_undel_hold_false","set_unval_hold_false","set_unval_hold_false","send_vsc_not_because_change","send_vsc_without_downtime_ack","insufficient_shares","send_vsc_not_because_change","send_vsc_without_downtime_ack","insufficient_shares","insufficient_shares","complete_undel_in_endblock","send_vsc_not_because_change","send_vsc_without_downtime_ack","complete_undel_in_endblock","complete_undel_in_endblock","complete_unval_in_endblock","complete_unval_in_endblock","complete_undel_in_endblock","send_vsc_without_downtime_ack"]},{"meta":{"commit":"7ffd0c04e4205cbc9caf212abfe6c59ee43153bf"},"constants":{"P":"provider","C":"consumer","UNBONDING_SECONDS_P":70,"UNBONDING_SECONDS_C":50,"TRUSTING_SECONDS":49,"NUM_VALIDATORS":4,"MAX_VALIDATORS":2,"SLASH_DOUBLESIGN":0,"SLASH_DOWNTIME":0,"JAIL_SECONDS":999999999999999,"BLOCK_SECONDS":6,"INITIAL_DELEGATOR_TOKENS":10000000000000,"DELEGATE_AMT_MIN":1000,"DELEGATE_AMT_MAX":5000,"UNDELEGATE_AMT_MIN":1000,"UNDELEGATE_AMT_MAX":5000,"ISDOWNTIME_PROBABILITY":0.5,"MAX_NUM_PACKETS_FOR_DELIVER":6},"actions":[{"ix":0,"action":{"kind":"Delegate","val":1,"amt":1778},"partialState":{"h":1,"t":6,"tokens":[5000,5778,3000,2000],"delegation":[4000,4778,2000,1000],"delegatorTokens":9999999998222}},{"ix":1,"action":{"kind":"Delegate","val":2,"amt":2394},"partialState":{"h":1,"t":6,"tokens":[5000,5778,5394,2000],"delegation":[4000,4778,4394,1000],"delegatorTokens":9999999995828}},{"ix":2,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":3,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":2,"t":12,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":4,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":5,"action":{"kind":"Delegate","val":1,"amt":1958},"partialState":{"h":1,"t":6,"tokens":[5000,7736,5394,2000],"delegation":[4000,6736,4394,1000],"delegatorTokens":9999999993870}},{"ix":6,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":3,"t":18,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":7,"action":{"kind":"Deliver","chain":"provider","numPackets":6},"partialState":{"h":1,"t":6,"tokens":[5000,7736,5394,2000],"delegation":[4000,6736,4394,1000],"delegatorTokens":9999999993870,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":8,"action":{"kind":"Undelegate","val":1,"amt":3133},"partialState":{"h":1,"t":6,"tokens":[5000,4603,5394,2000],"delegation":[4000,3603,4394,1000],"delegatorTokens":9999999993870}},{"ix":9,"action":{"kind":"Deliver","chain":"consumer","numPackets":1},"partialState":{"h":3,"t":18,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":10,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":11,"action":{"kind":"ConsumerSlash","val":1,"infractionHeight":0,"isDowntime":true},"partialState":{"h":3,"t":18,"outstandingDowntime":[false,true,false,false]}},{"ix":12,"action":{"kind":"Undelegate","val":2,"amt":1396},"partialState":{"h":1,"t":6,"tokens":[5000,4603,3998,2000],"delegation":[4000,3603,2998,1000],"delegatorTokens":9999999993870}},{"ix":13,"action":{"kind":"Undelegate","val":1,"amt":4134},"partialState":{"h":1,"t":6,"tokens":[5000,4603,3998,2000],"delegation":[4000,3603,2998,1000],"delegatorTokens":9999999993870}},{"ix":14,"action":{"kind":"Delegate","val":0,"amt":1546},"partialState":{"h":1,"t":6,"tokens":[6546,4603,3998,2000],"delegation":[5546,3603,2998,1000],"delegatorTokens":9999999992324}},{"ix":15,"action":{"kind":"ConsumerSlash","val":1,"infractionHeight":1,"isDowntime":true},"partialState":{"h":3,"t":18,"outstandingDowntime":[false,true,false,false]}},{"ix":16,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":4,"t":24,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,true,false,false]}},{"ix":17,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":18,"action":{"kind":"Undelegate","val":1,"amt":4483},"partialState":{"h":1,"t":6,"tokens":[6546,4603,3998,2000],"delegation":[5546,3603,2998,1000],"delegatorTokens":9999999992324}},{"ix":19,"action":{"kind":"Undelegate","val":1,"amt":1181},"partialState":{"h":1,"t":6,"tokens":[6546,3422,3998,2000],"delegation":[5546,2422,2998,1000],"delegatorTokens":9999999992324}},{"ix":20,"action":{"kind":"ConsumerSlash","val":2,"infractionHeight":1,"isDowntime":true},"partialState":{"h":4,"t":24,"outstandingDowntime":[false,true,true,false]}},{"ix":21,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":22,"action":{"kind":"ConsumerSlash","val":3,"infractionHeight":1,"isDowntime":true},"partialState":{"h":4,"t":24,"outstandingDowntime":[false,true,true,true]}},{"ix":23,"action":{"kind":"Delegate","val":3,"amt":3606},"partialState":{"h":1,"t":6,"tokens":[6546,3422,3998,5606],"delegation":[5546,2422,2998,4606],"delegatorTokens":9999999988718}},{"ix":24,"action":{"kind":"Deliver","chain":"consumer","numPackets":2},"partialState":{"h":4,"t":24,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,true,true,true]}},{"ix":25,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":2,"t":12,"tokens":[6546,3422,3998,5606],"delegation":[5546,2422,2998,4606],"delegatorTokens":9999999988718,"jailed":[null,null,null,null],"status":["bonded","unbonding","unbonded","bonded"]}},{"ix":26,"action":{"kind":"Undelegate","val":0,"amt":3508},"partialState":{"h":2,"t":12,"tokens":[3038,3422,3998,5606],"delegation":[2038,2422,2998,4606],"delegatorTokens":9999999988718}},{"ix":27,"action":{"kind":"Undelegate","val":1,"amt":3425},"partialState":{"h":2,"t":12,"tokens":[3038,3422,3998,5606],"delegation":[2038,2422,2998,4606],"delegatorTokens":9999999988718}},{"ix":28,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":5,"t":30,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,true,true,true]}},{"ix":29,"action":{"kind":"Deliver","chain":"provider","numPackets":6},"partialState":{"h":2,"t":12,"tokens":[3038,3422,3998,5606],"delegation":[2038,2422,2998,4606],"delegatorTokens":9999999988718,"jailed":[null,null,null,null],"status":["bonded","unbonding","unbonded","bonded"]}},{"ix":30,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":6,"t":36,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,true,true,true]}},{"ix":31,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":32,"action":{"kind":"Deliver","chain":"consumer","numPackets":1},"partialState":{"h":6,"t":36,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,true,true,true]}},{"ix":33,"action":{"kind":"Deliver","chain":"consumer","numPackets":3},"partialState":{"h":6,"t":36,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,true,true,true]}},{"ix":34,"action":{"kind":"Deliver","chain":"consumer","numPackets":2},"partialState":{"h":6,"t":36,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,true,true,true]}},{"ix":35,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":7,"t":42,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,true,true,true]}},{"ix":36,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":3,"t":18,"tokens":[3038,3422,3998,5606],"delegation":[2038,2422,2998,4606],"delegatorTokens":9999999988718,"jailed":[null,1000000000000011,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":37,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":38,"action":{"kind":"Deliver","chain":"provider","numPackets":2},"partialState":{"h":3,"t":18,"tokens":[3038,3422,3998,5606],"delegation":[2038,2422,2998,4606],"delegatorTokens":9999999988718,"jailed":[null,1000000000000011,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":39,"action":{"kind":"Undelegate","val":1,"amt":4148},"partialState":{"h":3,"t":18,"tokens":[3038,3422,3998,5606],"delegation":[2038,2422,2998,4606],"delegatorTokens":9999999988718}},{"ix":40,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":4,"t":24,"tokens":[3038,3422,3998,5606],"delegation":[2038,2422,2998,4606],"delegatorTokens":9999999988718,"jailed":[null,1000000000000011,1000000000000017,1000000000000017],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":41,"action":{"kind":"Undelegate","val":3,"amt":2259},"partialState":{"h":4,"t":24,"tokens":[3038,3422,3998,3347],"delegation":[2038,2422,2998,2347],"delegatorTokens":9999999988718}},{"ix":42,"action":{"kind":"Deliver","chain":"provider","numPackets":6},"partialState":{"h":4,"t":24,"tokens":[3038,3422,3998,3347],"delegation":[2038,2422,2998,2347],"delegatorTokens":9999999988718,"jailed":[null,1000000000000011,1000000000000017,1000000000000017],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":43,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":5,"t":30,"tokens":[3038,3422,3998,3347],"delegation":[2038,2422,2998,2347],"delegatorTokens":9999999988718,"jailed":[null,1000000000000011,1000000000000017,1000000000000017],"status":["bonded","unbonding","unbonding","unbonding"]}},{"ix":44,"action":{"kind":"Delegate","val":0,"amt":3980},"partialState":{"h":5,"t":30,"tokens":[7018,3422,3998,3347],"delegation":[6018,2422,2998,2347],"delegatorTokens":9999999984738}},{"ix":45,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":8,"t":48,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,true,true,true]}},{"ix":46,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":47,"action":{"kind":"Undelegate","val":0,"amt":1786},"partialState":{"h":5,"t":30,"tokens":[5232,3422,3998,3347],"delegation":[4232,2422,2998,2347],"delegatorTokens":9999999984738}},{"ix":48,"action":{"kind":"Deliver","chain":"provider","numPackets":5},"partialState":{"h":5,"t":30,"tokens":[5232,3422,3998,3347],"delegation":[4232,2422,2998,2347],"delegatorTokens":9999999984738,"jailed":[null,1000000000000011,1000000000000017,1000000000000017],"status":["bonded","unbonding","unbonding","unbonding"]}},{"ix":49,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":6,"t":36,"tokens":[5232,3422,3998,3347],"delegation":[4232,2422,2998,2347],"delegatorTokens":9999999984738,"jailed":[null,1000000000000011,1000000000000017,1000000000000017],"status":["bonded","unbonding","unbonding","unbonding"]}},{"ix":50,"action":{"kind":"Deliver","chain":"provider","numPackets":2},"partialState":{"h":6,"t":36,"tokens":[5232,3422,3998,3347],"delegation":[4232,2422,2998,2347],"delegatorTokens":9999999984738,"jailed":[null,1000000000000011,1000000000000017,1000000000000017],"status":["bonded","unbonding","unbonding","unbonding"]}},{"ix":51,"action":{"kind":"Undelegate","val":1,"amt":3245},"partialState":{"h":6,"t":36,"tokens":[5232,3422,3998,3347],"delegation":[4232,2422,2998,2347],"delegatorTokens":9999999984738}},{"ix":52,"action":{"kind":"Undelegate","val":2,"amt":2932},"partialState":{"h":6,"t":36,"tokens":[5232,3422,1066,3347],"delegation":[4232,2422,66,2347],"delegatorTokens":9999999984738}},{"ix":53,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":54,"action":{"kind":"Delegate","val":1,"amt":2280},"partialState":{"h":6,"t":36,"tokens":[5232,5702,1066,3347],"delegation":[4232,4702,66,2347],"delegatorTokens":9999999982458}},{"ix":55,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":56,"action":{"kind":"Deliver","chain":"consumer","numPackets":1},"partialState":{"h":8,"t":48,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,true,true,true]}},{"ix":57,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":58,"action":{"kind":"Undelegate","val":1,"amt":4878},"partialState":{"h":6,"t":36,"tokens":[5232,5702,1066,3347],"delegation":[4232,4702,66,2347],"delegatorTokens":9999999982458}},{"ix":59,"action":{"kind":"Deliver","chain":"provider","numPackets":2},"partialState":{"h":6,"t":36,"tokens":[5232,5702,1066,3347],"delegation":[4232,4702,66,2347],"delegatorTokens":9999999982458,"jailed":[null,1000000000000011,1000000000000017,1000000000000017],"status":["bonded","unbonding","unbonding","unbonding"]}},{"ix":60,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":7,"t":42,"tokens":[5232,5702,1066,3347],"delegation":[4232,4702,66,2347],"delegatorTokens":9999999982458,"jailed":[null,1000000000000011,1000000000000017,1000000000000017],"status":["bonded","unbonding","unbonding","unbonding"]}},{"ix":61,"action":{"kind":"Undelegate","val":3,"amt":2326},"partialState":{"h":7,"t":42,"tokens":[5232,5702,1066,1021],"delegation":[4232,4702,66,21],"delegatorTokens":9999999982458}},{"ix":62,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":63,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":9,"t":54,"consumerPower":[6546,null,null,5606],"outstandingDowntime":[false,true,true,true]}},{"ix":64,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":8,"t":48,"tokens":[5232,5702,1066,1021],"delegation":[4232,4702,66,21],"delegatorTokens":9999999982458,"jailed":[null,1000000000000011,1000000000000017,1000000000000017],"status":["bonded","unbonding","unbonding","unbonding"]}},{"ix":65,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":9,"t":54,"tokens":[5232,5702,1066,1021],"delegation":[4232,4702,66,21],"delegatorTokens":9999999982458,"jailed":[null,1000000000000011,1000000000000017,1000000000000017],"status":["bonded","unbonding","unbonding","unbonding"]}},{"ix":66,"action":{"kind":"Delegate","val":0,"amt":1961},"partialState":{"h":9,"t":54,"tokens":[7193,5702,1066,1021],"delegation":[6193,4702,66,21],"delegatorTokens":9999999980497}},{"ix":67,"action":{"kind":"Delegate","val":0,"amt":3878},"partialState":{"h":9,"t":54,"tokens":[11071,5702,1066,1021],"delegation":[10071,4702,66,21],"delegatorTokens":9999999976619}},{"ix":68,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":10,"t":60,"tokens":[11071,5702,1066,1021],"delegation":[10071,4702,66,21],"delegatorTokens":9999999976619,"jailed":[null,1000000000000011,1000000000000017,1000000000000017],"status":["bonded","unbonding","unbonding","unbonding"]}},{"ix":69,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":70,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":71,"action":{"kind":"Undelegate","val":1,"amt":3404},"partialState":{"h":10,"t":60,"tokens":[11071,2298,1066,1021],"delegation":[10071,1298,66,21],"delegatorTokens":9999999976619}},{"ix":72,"action":{"kind":"Undelegate","val":1,"amt":2943},"partialState":{"h":10,"t":60,"tokens":[11071,2298,1066,1021],"delegation":[10071,1298,66,21],"delegatorTokens":9999999976619}},{"ix":73,"action":{"kind":"Delegate","val":2,"amt":3708},"partialState":{"h":10,"t":60,"tokens":[11071,2298,4774,1021],"delegation":[10071,1298,3774,21],"delegatorTokens":9999999972911}},{"ix":74,"action":{"kind":"Deliver","chain":"provider","numPackets":3},"partialState":{"h":10,"t":60,"tokens":[11071,2298,4774,1021],"delegation":[10071,1298,3774,21],"delegatorTokens":9999999972911,"jailed":[null,1000000000000011,1000000000000017,1000000000000017],"status":["bonded","unbonding","unbonding","unbonding"]}},{"ix":75,"action":{"kind":"Delegate","val":1,"amt":4956},"partialState":{"h":10,"t":60,"tokens":[11071,7254,4774,1021],"delegation":[10071,6254,3774,21],"delegatorTokens":9999999967955}},{"ix":76,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":77,"action":{"kind":"Undelegate","val":3,"amt":2233},"partialState":{"h":10,"t":60,"tokens":[11071,7254,4774,1021],"delegation":[10071,6254,3774,21],"delegatorTokens":9999999967955}},{"ix":78,"action":{"kind":"Undelegate","val":2,"amt":2925},"partialState":{"h":10,"t":60,"tokens":[11071,7254,1849,1021],"delegation":[10071,6254,849,21],"delegatorTokens":9999999967955}},{"ix":79,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":80,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":81,"action":{"kind":"Deliver","chain":"consumer","numPackets":6},"partialState":{"h":9,"t":54,"consumerPower":[6546,null,null,5606],"outstandingDowntime":[false,false,false,false]}},{"ix":82,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":11,"t":66,"tokens":[11071,7254,1849,1021],"delegation":[10071,6254,849,21],"delegatorTokens":9999999967955,"jailed":[null,1000000000000011,1000000000000017,1000000000000017],"status":["bonded","unbonding","unbonding","unbonding"]}},{"ix":83,"action":{"kind":"Delegate","val":0,"amt":3129},"partialState":{"h":11,"t":66,"tokens":[14200,7254,1849,1021],"delegation":[13200,6254,849,21],"delegatorTokens":9999999964826}},{"ix":84,"action":{"kind":"Delegate","val":2,"amt":4382},"partialState":{"h":11,"t":66,"tokens":[14200,7254,6231,1021],"delegation":[13200,6254,5231,21],"delegatorTokens":9999999960444}},{"ix":85,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":12,"t":72,"tokens":[14200,7254,6231,1021],"delegation":[13200,6254,5231,21],"delegatorTokens":9999999960444,"jailed":[null,1000000000000011,1000000000000017,1000000000000017],"status":["bonded","unbonding","unbonding","unbonding"]}},{"ix":86,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":10,"t":60,"consumerPower":[5232,null,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":87,"action":{"kind":"Deliver","chain":"provider","numPackets":3},"partialState":{"h":12,"t":72,"tokens":[14200,7254,6231,1021],"delegation":[13200,6254,5231,21],"delegatorTokens":9999999960444,"jailed":[null,1000000000000011,1000000000000017,1000000000000017],"status":["bonded","unbonding","unbonding","unbonding"]}},{"ix":88,"action":{"kind":"Deliver","chain":"provider","numPackets":6},"partialState":{"h":12,"t":72,"tokens":[14200,7254,6231,1021],"delegation":[13200,6254,5231,21],"delegatorTokens":9999999960444,"jailed":[null,1000000000000011,1000000000000017,1000000000000017],"status":["bonded","unbonding","unbonding","unbonding"]}},{"ix":89,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":90,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":91,"action":{"kind":"Delegate","val":0,"amt":2193},"partialState":{"h":12,"t":72,"tokens":[16393,7254,6231,1021],"delegation":[15393,6254,5231,21],"delegatorTokens":9999999958251}},{"ix":92,"action":{"kind":"Delegate","val":2,"amt":1177},"partialState":{"h":12,"t":72,"tokens":[16393,7254,7408,1021],"delegation":[15393,6254,6408,21],"delegatorTokens":9999999957074}},{"ix":93,"action":{"kind":"Deliver","chain":"consumer","numPackets":1},"partialState":{"h":10,"t":60,"consumerPower":[5232,null,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":94,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":95,"action":{"kind":"Deliver","chain":"consumer","numPackets":5},"partialState":{"h":10,"t":60,"consumerPower":[5232,null,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":96,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":11,"t":66,"consumerPower":[11071,null,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":97,"action":{"kind":"Undelegate","val":1,"amt":2501},"partialState":{"h":12,"t":72,"tokens":[16393,4753,7408,1021],"delegation":[15393,3753,6408,21],"delegatorTokens":9999999957074}},{"ix":98,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":12,"t":72,"consumerPower":[11071,null,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":99,"action":{"kind":"Deliver","chain":"consumer","numPackets":1},"partialState":{"h":12,"t":72,"consumerPower":[11071,null,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":100,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":101,"action":{"kind":"Deliver","chain":"provider","numPackets":6},"partialState":{"h":12,"t":72,"tokens":[16393,4753,7408,1021],"delegation":[15393,3753,6408,21],"delegatorTokens":9999999957074,"jailed":[null,1000000000000011,1000000000000017,1000000000000017],"status":["bonded","unbonding","unbonding","unbonding"]}},{"ix":102,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":103,"action":{"kind":"Deliver","chain":"provider","numPackets":3},"partialState":{"h":12,"t":72,"tokens":[16393,4753,7408,1021],"delegation":[15393,3753,6408,21],"delegatorTokens":9999999957074,"jailed":[null,1000000000000011,1000000000000017,1000000000000017],"status":["bonded","unbonding","unbonding","unbonding"]}},{"ix":104,"action":{"kind":"Delegate","val":2,"amt":4319},"partialState":{"h":12,"t":72,"tokens":[16393,4753,11727,1021],"delegation":[15393,3753,10727,21],"delegatorTokens":9999999952755}},{"ix":105,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":13,"t":78,"consumerPower":[11071,null,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":106,"action":{"kind":"Delegate","val":0,"amt":1234},"partialState":{"h":12,"t":72,"tokens":[17627,4753,11727,1021],"delegation":[16627,3753,10727,21],"delegatorTokens":9999999951521}},{"ix":107,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":14,"t":84,"consumerPower":[11071,null,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":108,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":109,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":15,"t":90,"consumerPower":[11071,null,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":110,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":111,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":16,"t":96,"consumerPower":[11071,null,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":112,"action":{"kind":"Undelegate","val":1,"amt":3949},"partialState":{"h":12,"t":72,"tokens":[17627,4753,11727,1021],"delegation":[16627,3753,10727,21],"delegatorTokens":9999999951521}},{"ix":113,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":17,"t":102,"consumerPower":[11071,null,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":114,"action":{"kind":"Deliver","chain":"consumer","numPackets":3},"partialState":{"h":17,"t":102,"consumerPower":[11071,null,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":115,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":116,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":117,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":118,"action":{"kind":"Deliver","chain":"consumer","numPackets":2},"partialState":{"h":17,"t":102,"consumerPower":[11071,null,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":119,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":18,"t":108,"consumerPower":[11071,null,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":120,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":121,"action":{"kind":"Delegate","val":0,"amt":1204},"partialState":{"h":12,"t":72,"tokens":[18831,4753,11727,1021],"delegation":[17831,3753,10727,21],"delegatorTokens":9999999950317}},{"ix":122,"action":{"kind":"Undelegate","val":0,"amt":1056},"partialState":{"h":12,"t":72,"tokens":[17775,4753,11727,1021],"delegation":[16775,3753,10727,21],"delegatorTokens":9999999950317}},{"ix":123,"action":{"kind":"Deliver","chain":"consumer","numPackets":4},"partialState":{"h":18,"t":108,"consumerPower":[11071,null,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":124,"action":{"kind":"Delegate","val":0,"amt":4138},"partialState":{"h":12,"t":72,"tokens":[21913,4753,11727,1021],"delegation":[20913,3753,10727,21],"delegatorTokens":9999999946179}},{"ix":125,"action":{"kind":"Delegate","val":2,"amt":4929},"partialState":{"h":12,"t":72,"tokens":[21913,4753,16656,1021],"delegation":[20913,3753,15656,21],"delegatorTokens":9999999941250}},{"ix":126,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":127,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":128,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":129,"action":{"kind":"Delegate","val":3,"amt":2289},"partialState":{"h":12,"t":72,"tokens":[21913,4753,16656,3310],"delegation":[20913,3753,15656,2310],"delegatorTokens":9999999938961}},{"ix":130,"action":{"kind":"Undelegate","val":3,"amt":3092},"partialState":{"h":12,"t":72,"tokens":[21913,4753,16656,3310],"delegation":[20913,3753,15656,2310],"delegatorTokens":9999999938961}},{"ix":131,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":132,"action":{"kind":"Delegate","val":3,"amt":2399},"partialState":{"h":12,"t":72,"tokens":[21913,4753,16656,5709],"delegation":[20913,3753,15656,4709],"delegatorTokens":9999999936562}},{"ix":133,"action":{"kind":"Deliver","chain":"provider","numPackets":2},"partialState":{"h":12,"t":72,"tokens":[21913,4753,16656,5709],"delegation":[20913,3753,15656,4709],"delegatorTokens":9999999936562,"jailed":[null,1000000000000011,1000000000000017,1000000000000017],"status":["bonded","unbonding","unbonding","unbonding"]}},{"ix":134,"action":{"kind":"Deliver","chain":"consumer","numPackets":1},"partialState":{"h":18,"t":108,"consumerPower":[11071,null,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":135,"action":{"kind":"Undelegate","val":3,"amt":1766},"partialState":{"h":12,"t":72,"tokens":[21913,4753,16656,3943],"delegation":[20913,3753,15656,2943],"delegatorTokens":9999999936562}},{"ix":136,"action":{"kind":"Deliver","chain":"provider","numPackets":6},"partialState":{"h":12,"t":72,"tokens":[21913,4753,16656,3943],"delegation":[20913,3753,15656,2943],"delegatorTokens":9999999936562,"jailed":[null,1000000000000011,1000000000000017,1000000000000017],"status":["bonded","unbonding","unbonding","unbonding"]}},{"ix":137,"action":{"kind":"Delegate","val":2,"amt":2507},"partialState":{"h":12,"t":72,"tokens":[21913,4753,19163,3943],"delegation":[20913,3753,18163,2943],"delegatorTokens":9999999934055}},{"ix":138,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":19,"t":114,"consumerPower":[11071,null,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":139,"action":{"kind":"Delegate","val":0,"amt":3898},"partialState":{"h":12,"t":72,"tokens":[25811,4753,19163,3943],"delegation":[24811,3753,18163,2943],"delegatorTokens":9999999930157}},{"ix":140,"action":{"kind":"Delegate","val":2,"amt":2634},"partialState":{"h":12,"t":72,"tokens":[25811,4753,21797,3943],"delegation":[24811,3753,20797,2943],"delegatorTokens":9999999927523}},{"ix":141,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":13,"t":78,"tokens":[25811,4753,21797,3943],"delegation":[24811,3753,20797,2943],"delegatorTokens":9999999927523,"jailed":[null,1000000000000011,1000000000000017,1000000000000017],"status":["bonded","unbonding","unbonding","unbonding"]}},{"ix":142,"action":{"kind":"Delegate","val":3,"amt":2182},"partialState":{"h":13,"t":78,"tokens":[25811,4753,21797,6125],"delegation":[24811,3753,20797,5125],"delegatorTokens":9999999925341}},{"ix":143,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":144,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":14,"t":84,"tokens":[25811,4753,21797,6125],"delegation":[24811,3753,20797,5125],"delegatorTokens":9999999925341,"jailed":[null,1000000000000011,1000000000000017,1000000000000017],"status":["bonded","unbonding","unbonding","unbonding"]}},{"ix":145,"action":{"kind":"Deliver","chain":"consumer","numPackets":5},"partialState":{"h":19,"t":114,"consumerPower":[11071,null,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":146,"action":{"kind":"Delegate","val":0,"amt":3054},"partialState":{"h":14,"t":84,"tokens":[28865,4753,21797,6125],"delegation":[27865,3753,20797,5125],"delegatorTokens":9999999922287}},{"ix":147,"action":{"kind":"Delegate","val":2,"amt":1397},"partialState":{"h":14,"t":84,"tokens":[28865,4753,23194,6125],"delegation":[27865,3753,22194,5125],"delegatorTokens":9999999920890}},{"ix":148,"action":{"kind":"Delegate","val":3,"amt":4619},"partialState":{"h":14,"t":84,"tokens":[28865,4753,23194,10744],"delegation":[27865,3753,22194,9744],"delegatorTokens":9999999916271}},{"ix":149,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":150,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":151,"action":{"kind":"Undelegate","val":0,"amt":4664},"partialState":{"h":14,"t":84,"tokens":[24201,4753,23194,10744],"delegation":[23201,3753,22194,9744],"delegatorTokens":9999999916271}},{"ix":152,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":20,"t":120,"consumerPower":[25811,null,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":153,"action":{"kind":"Undelegate","val":3,"amt":1309},"partialState":{"h":14,"t":84,"tokens":[24201,4753,23194,9435],"delegation":[23201,3753,22194,8435],"delegatorTokens":9999999916271}},{"ix":154,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":21,"t":126,"consumerPower":[25811,null,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":155,"action":{"kind":"Deliver","chain":"consumer","numPackets":2},"partialState":{"h":21,"t":126,"consumerPower":[25811,null,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":156,"action":{"kind":"Deliver","chain":"consumer","numPackets":2},"partialState":{"h":21,"t":126,"consumerPower":[25811,null,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":157,"action":{"kind":"Delegate","val":3,"amt":3779},"partialState":{"h":14,"t":84,"tokens":[24201,4753,23194,13214],"delegation":[23201,3753,22194,12214],"delegatorTokens":9999999912492}},{"ix":158,"action":{"kind":"Deliver","chain":"provider","numPackets":4},"partialState":{"h":14,"t":84,"tokens":[24201,4753,23194,13214],"delegation":[23201,3753,22194,12214],"delegatorTokens":9999999912492,"jailed":[null,1000000000000011,1000000000000017,1000000000000017],"status":["bonded","unbonding","unbonding","unbonding"]}},{"ix":159,"action":{"kind":"Delegate","val":1,"amt":2738},"partialState":{"h":14,"t":84,"tokens":[24201,7491,23194,13214],"delegation":[23201,6491,22194,12214],"delegatorTokens":9999999909754}},{"ix":160,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":161,"action":{"kind":"Delegate","val":3,"amt":2144},"partialState":{"h":14,"t":84,"tokens":[24201,7491,23194,15358],"delegation":[23201,6491,22194,14358],"delegatorTokens":9999999907610}},{"ix":162,"action":{"kind":"Delegate","val":2,"amt":4911},"partialState":{"h":14,"t":84,"tokens":[24201,7491,28105,15358],"delegation":[23201,6491,27105,14358],"delegatorTokens":9999999902699}},{"ix":163,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":164,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":165,"action":{"kind":"Undelegate","val":1,"amt":1382},"partialState":{"h":14,"t":84,"tokens":[24201,6109,28105,15358],"delegation":[23201,5109,27105,14358],"delegatorTokens":9999999902699}},{"ix":166,"action":{"kind":"Delegate","val":3,"amt":1881},"partialState":{"h":14,"t":84,"tokens":[24201,6109,28105,17239],"delegation":[23201,5109,27105,16239],"delegatorTokens":9999999900818}},{"ix":167,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":15,"t":90,"tokens":[24201,6109,28105,17239],"delegation":[23201,5109,27105,16239],"delegatorTokens":9999999910036,"jailed":[null,1000000000000011,1000000000000017,1000000000000017],"status":["bonded","unbonding","unbonding","unbonding"]}},{"ix":168,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":169,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":170,"action":{"kind":"Deliver","chain":"consumer","numPackets":1},"partialState":{"h":21,"t":126,"consumerPower":[25811,null,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":171,"action":{"kind":"Delegate","val":2,"amt":3897},"partialState":{"h":15,"t":90,"tokens":[24201,6109,32002,17239],"delegation":[23201,5109,31002,16239],"delegatorTokens":9999999906139}},{"ix":172,"action":{"kind":"Undelegate","val":2,"amt":1738},"partialState":{"h":15,"t":90,"tokens":[24201,6109,30264,17239],"delegation":[23201,5109,29264,16239],"delegatorTokens":9999999906139}},{"ix":173,"action":{"kind":"Delegate","val":1,"amt":4424},"partialState":{"h":15,"t":90,"tokens":[24201,10533,30264,17239],"delegation":[23201,9533,29264,16239],"delegatorTokens":9999999901715}},{"ix":174,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":22,"t":132,"consumerPower":[25811,null,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":175,"action":{"kind":"Delegate","val":2,"amt":2676},"partialState":{"h":15,"t":90,"tokens":[24201,10533,32940,17239],"delegation":[23201,9533,31940,16239],"delegatorTokens":9999999899039}},{"ix":176,"action":{"kind":"Undelegate","val":1,"amt":1636},"partialState":{"h":15,"t":90,"tokens":[24201,8897,32940,17239],"delegation":[23201,7897,31940,16239],"delegatorTokens":9999999899039}},{"ix":177,"action":{"kind":"Delegate","val":1,"amt":2441},"partialState":{"h":15,"t":90,"tokens":[24201,11338,32940,17239],"delegation":[23201,10338,31940,16239],"delegatorTokens":9999999896598}},{"ix":178,"action":{"kind":"Deliver","chain":"provider","numPackets":2},"partialState":{"h":15,"t":90,"tokens":[24201,11338,32940,17239],"delegation":[23201,10338,31940,16239],"delegatorTokens":9999999896598,"jailed":[null,1000000000000011,1000000000000017,1000000000000017],"status":["bonded","unbonding","unbonding","unbonding"]}},{"ix":179,"action":{"kind":"Deliver","chain":"consumer","numPackets":4},"partialState":{"h":22,"t":132,"consumerPower":[25811,null,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":180,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":181,"action":{"kind":"Undelegate","val":2,"amt":3804},"partialState":{"h":15,"t":90,"tokens":[24201,11338,29136,17239],"delegation":[23201,10338,28136,16239],"delegatorTokens":9999999896598}},{"ix":182,"action":{"kind":"Delegate","val":0,"amt":4931},"partialState":{"h":15,"t":90,"tokens":[29132,11338,29136,17239],"delegation":[28132,10338,28136,16239],"delegatorTokens":9999999891667}},{"ix":183,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":184,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":185,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":16,"t":96,"tokens":[29132,11338,29136,17239],"delegation":[28132,10338,28136,16239],"delegatorTokens":9999999891667,"jailed":[null,1000000000000011,1000000000000017,1000000000000017],"status":["bonded","unbonded","unbonding","unbonding"]}},{"ix":186,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":17,"t":102,"tokens":[29132,11338,29136,17239],"delegation":[28132,10338,28136,16239],"delegatorTokens":9999999893926,"jailed":[null,1000000000000011,1000000000000017,1000000000000017],"status":["bonded","unbonded","unbonded","unbonded"]}},{"ix":187,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":18,"t":108,"tokens":[29132,11338,29136,17239],"delegation":[28132,10338,28136,16239],"delegatorTokens":9999999895712,"jailed":[null,1000000000000011,1000000000000017,1000000000000017],"status":["bonded","unbonded","unbonded","unbonded"]}},{"ix":188,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":189,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":19,"t":114,"tokens":[29132,11338,29136,17239],"delegation":[28132,10338,28136,16239],"delegatorTokens":9999999898644,"jailed":[null,1000000000000011,1000000000000017,1000000000000017],"status":["bonded","unbonded","unbonded","unbonded"]}},{"ix":190,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":23,"t":138,"consumerPower":[25811,null,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":191,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":20,"t":120,"tokens":[29132,11338,29136,17239],"delegation":[28132,10338,28136,16239],"delegatorTokens":9999999900970,"jailed":[null,1000000000000011,1000000000000017,1000000000000017],"status":["bonded","unbonded","unbonded","unbonded"]}},{"ix":192,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":193,"action":{"kind":"Deliver","chain":"provider","numPackets":2},"partialState":{"h":20,"t":120,"tokens":[29132,11338,29136,17239],"delegation":[28132,10338,28136,16239],"delegatorTokens":9999999900970,"jailed":[null,1000000000000011,1000000000000017,1000000000000017],"status":["bonded","unbonded","unbonded","unbonded"]}},{"ix":194,"action":{"kind":"Delegate","val":0,"amt":3368},"partialState":{"h":20,"t":120,"tokens":[32500,11338,29136,17239],"delegation":[31500,10338,28136,16239],"delegatorTokens":9999999897602}},{"ix":195,"action":{"kind":"Undelegate","val":1,"amt":4510},"partialState":{"h":20,"t":120,"tokens":[32500,6828,29136,17239],"delegation":[31500,5828,28136,16239],"delegatorTokens":9999999897602}},{"ix":196,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":197,"action":{"kind":"Deliver","chain":"consumer","numPackets":4},"partialState":{"h":23,"t":138,"consumerPower":[25811,null,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":198,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":24,"t":144,"consumerPower":[29132,null,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":199,"action":{"kind":"Deliver","chain":"provider","numPackets":1},"partialState":{"h":20,"t":120,"tokens":[32500,6828,29136,17239],"delegation":[31500,5828,28136,16239],"delegatorTokens":9999999897602,"jailed":[null,1000000000000011,1000000000000017,1000000000000017],"status":["bonded","unbonded","unbonded","unbonded"]}}],"events":["send_downtime_slash_request","insufficient_shares","downtime_slash_request_outstanding","insufficient_shares","send_downtime_slash_request","send_downtime_slash_request","more_than_one_third_val_power_change","send_vsc_without_downtime_ack","insufficient_shares","more_than_one_third_val_power_change","receive_downtime_slash_request","jail","send_vsc_with_downtime_ack","insufficient_shares","receive_downtime_slash_request","jail","receive_downtime_slash_request","jail","more_than_one_third_val_power_change","rebond_unval","send_vsc_with_downtime_ack","send_vsc_without_downtime_ack","insufficient_shares","insufficient_shares","send_vsc_not_because_change","send_vsc_without_downtime_ack","consumer_update_val","consumer_del_val","consumer_add_val","send_vsc_not_because_change","send_vsc_without_downtime_ack","send_vsc_without_downtime_ack","insufficient_shares","insufficient_shares","receive_downtime_slash_ack","receive_downtime_slash_ack","receive_downtime_slash_ack","send_vsc_not_because_change","send_vsc_without_downtime_ack","send_vsc_without_downtime_ack","consumer_update_val","consumer_del_val","consumer_del_val","consumer_update_val","insufficient_shares","consumer_send_maturation","insufficient_shares","consumer_send_maturation","consumer_send_maturation","consumer_send_maturation","consumer_send_maturation","consumer_send_maturation","send_vsc_without_downtime_ack","some_undels_expired_but_not_completed","consumer_send_maturation","consumer_send_maturation","consumer_update_val","some_undels_expired_but_not_completed","complete_undel_immediate","complete_undel_immediate","complete_undel_immediate","set_unval_hold_false","complete_undel_immediate","set_undel_hold_false","set_unval_hold_false","set_unval_hold_false","set_undel_hold_false","send_vsc_without_downtime_ack","complete_unval_in_endblock","set_undel_hold_false","set_undel_hold_false","send_vsc_without_downtime_ack","complete_unval_in_endblock","complete_unval_in_endblock","complete_undel_in_endblock","complete_undel_in_endblock","complete_undel_in_endblock","complete_undel_in_endblock","consumer_update_val"]},{"meta":{"commit":"7ffd0c04e4205cbc9caf212abfe6c59ee43153bf"},"constants":{"P":"provider","C":"consumer","UNBONDING_SECONDS_P":70,"UNBONDING_SECONDS_C":50,"TRUSTING_SECONDS":49,"NUM_VALIDATORS":4,"MAX_VALIDATORS":2,"SLASH_DOUBLESIGN":0,"SLASH_DOWNTIME":0,"JAIL_SECONDS":999999999999999,"BLOCK_SECONDS":6,"INITIAL_DELEGATOR_TOKENS":10000000000000,"DELEGATE_AMT_MIN":1000,"DELEGATE_AMT_MAX":5000,"UNDELEGATE_AMT_MIN":1000,"UNDELEGATE_AMT_MAX":5000,"ISDOWNTIME_PROBABILITY":0.5,"MAX_NUM_PACKETS_FOR_DELIVER":6},"actions":[{"ix":0,"action":{"kind":"Deliver","chain":"provider","numPackets":3},"partialState":{"h":1,"t":6,"tokens":[5000,4000,3000,2000],"delegation":[4000,3000,2000,1000],"delegatorTokens":10000000000000,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":1,"action":{"kind":"Deliver","chain":"provider","numPackets":5},"partialState":{"h":1,"t":6,"tokens":[5000,4000,3000,2000],"delegation":[4000,3000,2000,1000],"delegatorTokens":10000000000000,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":2,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":3,"action":{"kind":"Undelegate","val":1,"amt":2182},"partialState":{"h":1,"t":6,"tokens":[5000,1818,3000,2000],"delegation":[4000,818,2000,1000],"delegatorTokens":10000000000000}},{"ix":4,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":5,"action":{"kind":"Undelegate","val":0,"amt":1383},"partialState":{"h":1,"t":6,"tokens":[3617,1818,3000,2000],"delegation":[2617,818,2000,1000],"delegatorTokens":10000000000000}},{"ix":6,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":2,"t":12,"tokens":[3617,1818,3000,2000],"delegation":[2617,818,2000,1000],"delegatorTokens":10000000000000,"jailed":[null,null,null,null],"status":["bonded","unbonding","bonded","unbonded"]}},{"ix":7,"action":{"kind":"Deliver","chain":"consumer","numPackets":2},"partialState":{"h":1,"t":6,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":8,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":9,"action":{"kind":"Deliver","chain":"provider","numPackets":1},"partialState":{"h":2,"t":12,"tokens":[3617,1818,3000,2000],"delegation":[2617,818,2000,1000],"delegatorTokens":10000000000000,"jailed":[null,null,null,null],"status":["bonded","unbonding","bonded","unbonded"]}},{"ix":10,"action":{"kind":"Deliver","chain":"consumer","numPackets":2},"partialState":{"h":1,"t":6,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":11,"action":{"kind":"ConsumerSlash","val":0,"infractionHeight":0,"isDowntime":true},"partialState":{"h":1,"t":6,"outstandingDowntime":[true,false,false,false]}},{"ix":12,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":3,"t":18,"tokens":[3617,1818,3000,2000],"delegation":[2617,818,2000,1000],"delegatorTokens":10000000000000,"jailed":[null,null,null,null],"status":["bonded","unbonding","bonded","unbonded"]}},{"ix":13,"action":{"kind":"Deliver","chain":"consumer","numPackets":6},"partialState":{"h":1,"t":6,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[true,false,false,false]}},{"ix":14,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":2,"t":12,"consumerPower":[3617,null,3000,null],"outstandingDowntime":[true,false,false,false]}},{"ix":15,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":3,"t":18,"consumerPower":[3617,null,3000,null],"outstandingDowntime":[true,false,false,false]}},{"ix":16,"action":{"kind":"ConsumerSlash","val":1,"infractionHeight":0,"isDowntime":true},"partialState":{"h":3,"t":18,"outstandingDowntime":[true,true,false,false]}},{"ix":17,"action":{"kind":"Deliver","chain":"consumer","numPackets":4},"partialState":{"h":3,"t":18,"consumerPower":[3617,null,3000,null],"outstandingDowntime":[true,true,false,false]}},{"ix":18,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":4,"t":24,"tokens":[3617,1818,3000,2000],"delegation":[2617,818,2000,1000],"delegatorTokens":10000000000000,"jailed":[null,null,null,null],"status":["bonded","unbonding","bonded","unbonded"]}},{"ix":19,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":20,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":5,"t":30,"tokens":[3617,1818,3000,2000],"delegation":[2617,818,2000,1000],"delegatorTokens":10000000000000,"jailed":[null,null,null,null],"status":["bonded","unbonding","bonded","unbonded"]}},{"ix":21,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":22,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":4,"t":24,"consumerPower":[3617,null,3000,null],"outstandingDowntime":[true,true,false,false]}},{"ix":23,"action":{"kind":"Delegate","val":0,"amt":1482},"partialState":{"h":5,"t":30,"tokens":[5099,1818,3000,2000],"delegation":[4099,818,2000,1000],"delegatorTokens":9999999998518}},{"ix":24,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":25,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":5,"t":30,"consumerPower":[3617,null,3000,null],"outstandingDowntime":[true,true,false,false]}},{"ix":26,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":6,"t":36,"consumerPower":[3617,null,3000,null],"outstandingDowntime":[true,true,false,false]}},{"ix":27,"action":{"kind":"Deliver","chain":"consumer","numPackets":3},"partialState":{"h":6,"t":36,"consumerPower":[3617,null,3000,null],"outstandingDowntime":[true,true,false,false]}},{"ix":28,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":6,"t":36,"tokens":[5099,1818,3000,2000],"delegation":[4099,818,2000,1000],"delegatorTokens":9999999998518,"jailed":[null,null,null,null],"status":["bonded","unbonding","bonded","unbonded"]}},{"ix":29,"action":{"kind":"ConsumerSlash","val":0,"infractionHeight":3,"isDowntime":true},"partialState":{"h":6,"t":36,"outstandingDowntime":[true,true,false,false]}},{"ix":30,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":7,"t":42,"consumerPower":[3617,null,3000,null],"outstandingDowntime":[true,true,false,false]}},{"ix":31,"action":{"kind":"ConsumerSlash","val":0,"infractionHeight":6,"isDowntime":false},"partialState":{"h":7,"t":42,"outstandingDowntime":[true,true,false,false]}},{"ix":32,"action":{"kind":"Delegate","val":1,"amt":3965},"partialState":{"h":6,"t":36,"tokens":[5099,5783,3000,2000],"delegation":[4099,4783,2000,1000],"delegatorTokens":9999999994553}},{"ix":33,"action":{"kind":"Deliver","chain":"provider","numPackets":4},"partialState":{"h":6,"t":36,"tokens":[5099,5783,3000,2000],"delegation":[4099,4783,2000,1000],"delegatorTokens":9999999994553,"jailed":[null,null,null,null],"status":["bonded","unbonding","bonded","unbonded"]}},{"ix":34,"action":{"kind":"Deliver","chain":"consumer","numPackets":3},"partialState":{"h":7,"t":42,"consumerPower":[3617,null,3000,null],"outstandingDowntime":[true,true,false,false]}},{"ix":35,"action":{"kind":"Delegate","val":3,"amt":3602},"partialState":{"h":6,"t":36,"tokens":[5099,5783,3000,5602],"delegation":[4099,4783,2000,4602],"delegatorTokens":9999999990951}},{"ix":36,"action":{"kind":"Delegate","val":1,"amt":2020},"partialState":{"h":6,"t":36,"tokens":[5099,7803,3000,5602],"delegation":[4099,6803,2000,4602],"delegatorTokens":9999999988931}},{"ix":37,"action":{"kind":"Delegate","val":3,"amt":1768},"partialState":{"h":6,"t":36,"tokens":[5099,7803,3000,7370],"delegation":[4099,6803,2000,6370],"delegatorTokens":9999999987163}},{"ix":38,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":7,"t":42,"tokens":[5099,7803,3000,7370],"delegation":[4099,6803,2000,6370],"delegatorTokens":9999999987163,"jailed":[1000000000000035,1000000000000035,null,null],"status":["unbonding","bonded","unbonding","bonded"]}},{"ix":39,"action":{"kind":"Deliver","chain":"consumer","numPackets":4},"partialState":{"h":7,"t":42,"consumerPower":[3617,null,3000,null],"outstandingDowntime":[true,true,false,false]}},{"ix":40,"action":{"kind":"ConsumerSlash","val":0,"infractionHeight":2,"isDowntime":true},"partialState":{"h":7,"t":42,"outstandingDowntime":[true,true,false,false]}},{"ix":41,"action":{"kind":"Deliver","chain":"provider","numPackets":4},"partialState":{"h":7,"t":42,"tokens":[5099,7803,3000,7370],"delegation":[4099,6803,2000,6370],"delegatorTokens":9999999987163,"jailed":[1000000000000035,1000000000000035,null,null],"status":["unbonding","bonded","unbonding","bonded"]}},{"ix":42,"action":{"kind":"ConsumerSlash","val":1,"infractionHeight":1,"isDowntime":false},"partialState":{"h":7,"t":42,"outstandingDowntime":[true,true,false,false]}},{"ix":43,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":8,"t":48,"consumerPower":[5099,null,3000,null],"outstandingDowntime":[true,true,false,false]}},{"ix":44,"action":{"kind":"Undelegate","val":0,"amt":3328},"partialState":{"h":7,"t":42,"tokens":[1771,7803,3000,7370],"delegation":[771,6803,2000,6370],"delegatorTokens":9999999987163}},{"ix":45,"action":{"kind":"Undelegate","val":1,"amt":3818},"partialState":{"h":7,"t":42,"tokens":[1771,3985,3000,7370],"delegation":[771,2985,2000,6370],"delegatorTokens":9999999987163}},{"ix":46,"action":{"kind":"Delegate","val":1,"amt":1983},"partialState":{"h":7,"t":42,"tokens":[1771,5968,3000,7370],"delegation":[771,4968,2000,6370],"delegatorTokens":9999999985180}},{"ix":47,"action":{"kind":"Deliver","chain":"consumer","numPackets":3},"partialState":{"h":8,"t":48,"consumerPower":[5099,null,3000,null],"outstandingDowntime":[true,true,false,false]}},{"ix":48,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":49,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":8,"t":48,"tokens":[1771,5968,3000,7370],"delegation":[771,4968,2000,6370],"delegatorTokens":9999999985180,"jailed":[1000000000000035,1000000000000035,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":50,"action":{"kind":"Undelegate","val":1,"amt":2323},"partialState":{"h":8,"t":48,"tokens":[1771,3645,3000,7370],"delegation":[771,2645,2000,6370],"delegatorTokens":9999999985180}},{"ix":51,"action":{"kind":"Deliver","chain":"provider","numPackets":6},"partialState":{"h":8,"t":48,"tokens":[1771,3645,3000,7370],"delegation":[771,2645,2000,6370],"delegatorTokens":9999999985180,"jailed":[1000000000000035,1000000000000035,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":52,"action":{"kind":"Deliver","chain":"provider","numPackets":6},"partialState":{"h":8,"t":48,"tokens":[1771,3645,3000,7370],"delegation":[771,2645,2000,6370],"delegatorTokens":9999999985180,"jailed":[1000000000000035,1000000000000035,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":53,"action":{"kind":"Undelegate","val":3,"amt":4167},"partialState":{"h":8,"t":48,"tokens":[1771,3645,3000,3203],"delegation":[771,2645,2000,2203],"delegatorTokens":9999999985180}},{"ix":54,"action":{"kind":"Deliver","chain":"provider","numPackets":6},"partialState":{"h":8,"t":48,"tokens":[1771,3645,3000,3203],"delegation":[771,2645,2000,2203],"delegatorTokens":9999999985180,"jailed":[1000000000000035,1000000000000035,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":55,"action":{"kind":"Deliver","chain":"provider","numPackets":5},"partialState":{"h":8,"t":48,"tokens":[1771,3645,3000,3203],"delegation":[771,2645,2000,2203],"delegatorTokens":9999999985180,"jailed":[1000000000000035,1000000000000035,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":56,"action":{"kind":"Deliver","chain":"consumer","numPackets":3},"partialState":{"h":8,"t":48,"consumerPower":[5099,null,3000,null],"outstandingDowntime":[false,false,false,false]}},{"ix":57,"action":{"kind":"Deliver","chain":"provider","numPackets":4},"partialState":{"h":8,"t":48,"tokens":[1771,3645,3000,3203],"delegation":[771,2645,2000,2203],"delegatorTokens":9999999985180,"jailed":[1000000000000035,1000000000000035,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":58,"action":{"kind":"ConsumerSlash","val":1,"infractionHeight":1,"isDowntime":true},"partialState":{"h":8,"t":48,"outstandingDowntime":[false,true,false,false]}},{"ix":59,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":60,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":9,"t":54,"consumerPower":[null,7803,null,7370],"outstandingDowntime":[false,true,false,false]}},{"ix":61,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":10,"t":60,"consumerPower":[null,7803,null,7370],"outstandingDowntime":[false,true,false,false]}},{"ix":62,"action":{"kind":"Undelegate","val":0,"amt":3916},"partialState":{"h":8,"t":48,"tokens":[1771,3645,3000,3203],"delegation":[771,2645,2000,2203],"delegatorTokens":9999999985180}},{"ix":63,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":64,"action":{"kind":"Undelegate","val":1,"amt":2362},"partialState":{"h":8,"t":48,"tokens":[1771,1283,3000,3203],"delegation":[771,283,2000,2203],"delegatorTokens":9999999985180}},{"ix":65,"action":{"kind":"ConsumerSlash","val":3,"infractionHeight":6,"isDowntime":true},"partialState":{"h":10,"t":60,"outstandingDowntime":[false,true,false,true]}},{"ix":66,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":9,"t":54,"tokens":[1771,1283,3000,3203],"delegation":[771,283,2000,2203],"delegatorTokens":9999999985180,"jailed":[1000000000000035,1000000000000035,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":67,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":10,"t":60,"tokens":[1771,1283,3000,3203],"delegation":[771,283,2000,2203],"delegatorTokens":9999999985180,"jailed":[1000000000000035,1000000000000035,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":68,"action":{"kind":"Undelegate","val":2,"amt":3288},"partialState":{"h":10,"t":60,"tokens":[1771,1283,3000,3203],"delegation":[771,283,2000,2203],"delegatorTokens":9999999985180}},{"ix":69,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":70,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":71,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":11,"t":66,"consumerPower":[null,7803,null,7370],"outstandingDowntime":[false,true,false,true]}},{"ix":72,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":12,"t":72,"consumerPower":[null,7803,null,7370],"outstandingDowntime":[false,true,false,true]}},{"ix":73,"action":{"kind":"Delegate","val":0,"amt":4080},"partialState":{"h":10,"t":60,"tokens":[5851,1283,3000,3203],"delegation":[4851,283,2000,2203],"delegatorTokens":9999999981100}},{"ix":74,"action":{"kind":"Undelegate","val":2,"amt":2665},"partialState":{"h":10,"t":60,"tokens":[5851,1283,3000,3203],"delegation":[4851,283,2000,2203],"delegatorTokens":9999999981100}},{"ix":75,"action":{"kind":"Undelegate","val":3,"amt":1723},"partialState":{"h":10,"t":60,"tokens":[5851,1283,3000,1480],"delegation":[4851,283,2000,480],"delegatorTokens":9999999981100}},{"ix":76,"action":{"kind":"Undelegate","val":2,"amt":3302},"partialState":{"h":10,"t":60,"tokens":[5851,1283,3000,1480],"delegation":[4851,283,2000,480],"delegatorTokens":9999999981100}},{"ix":77,"action":{"kind":"Deliver","chain":"consumer","numPackets":3},"partialState":{"h":12,"t":72,"consumerPower":[null,7803,null,7370],"outstandingDowntime":[false,true,false,true]}},{"ix":78,"action":{"kind":"Undelegate","val":1,"amt":3010},"partialState":{"h":10,"t":60,"tokens":[5851,1283,3000,1480],"delegation":[4851,283,2000,480],"delegatorTokens":9999999981100}},{"ix":79,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":80,"action":{"kind":"Undelegate","val":3,"amt":4004},"partialState":{"h":10,"t":60,"tokens":[5851,1283,3000,1480],"delegation":[4851,283,2000,480],"delegatorTokens":9999999981100}},{"ix":81,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":82,"action":{"kind":"Deliver","chain":"provider","numPackets":2},"partialState":{"h":10,"t":60,"tokens":[5851,1283,3000,1480],"delegation":[4851,283,2000,480],"delegatorTokens":9999999981100,"jailed":[1000000000000035,1000000000000035,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":83,"action":{"kind":"Delegate","val":1,"amt":4725},"partialState":{"h":10,"t":60,"tokens":[5851,6008,3000,1480],"delegation":[4851,5008,2000,480],"delegatorTokens":9999999976375}},{"ix":84,"action":{"kind":"Undelegate","val":3,"amt":3807},"partialState":{"h":10,"t":60,"tokens":[5851,6008,3000,1480],"delegation":[4851,5008,2000,480],"delegatorTokens":9999999976375}},{"ix":85,"action":{"kind":"Undelegate","val":2,"amt":1873},"partialState":{"h":10,"t":60,"tokens":[5851,6008,1127,1480],"delegation":[4851,5008,127,480],"delegatorTokens":9999999976375}},{"ix":86,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":13,"t":78,"consumerPower":[null,null,3000,3203],"outstandingDowntime":[false,true,false,true]}},{"ix":87,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":88,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":89,"action":{"kind":"Delegate","val":0,"amt":2742},"partialState":{"h":10,"t":60,"tokens":[8593,6008,1127,1480],"delegation":[7593,5008,127,480],"delegatorTokens":9999999973633}},{"ix":90,"action":{"kind":"Deliver","chain":"provider","numPackets":4},"partialState":{"h":10,"t":60,"tokens":[8593,6008,1127,1480],"delegation":[7593,5008,127,480],"delegatorTokens":9999999973633,"jailed":[1000000000000035,1000000000000035,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":91,"action":{"kind":"Delegate","val":1,"amt":2478},"partialState":{"h":10,"t":60,"tokens":[8593,8486,1127,1480],"delegation":[7593,7486,127,480],"delegatorTokens":9999999971155}},{"ix":92,"action":{"kind":"Deliver","chain":"provider","numPackets":4},"partialState":{"h":10,"t":60,"tokens":[8593,8486,1127,1480],"delegation":[7593,7486,127,480],"delegatorTokens":9999999971155,"jailed":[1000000000000035,1000000000000035,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":93,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":14,"t":84,"consumerPower":[null,null,3000,3203],"outstandingDowntime":[false,true,false,true]}},{"ix":94,"action":{"kind":"Undelegate","val":0,"amt":4916},"partialState":{"h":10,"t":60,"tokens":[3677,8486,1127,1480],"delegation":[2677,7486,127,480],"delegatorTokens":9999999971155}},{"ix":95,"action":{"kind":"Deliver","chain":"consumer","numPackets":4},"partialState":{"h":14,"t":84,"consumerPower":[null,null,3000,3203],"outstandingDowntime":[false,true,false,true]}},{"ix":96,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":11,"t":66,"tokens":[3677,8486,1127,1480],"delegation":[2677,7486,127,480],"delegatorTokens":9999999971155,"jailed":[1000000000000035,1000000000000059,null,1000000000000059],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":97,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":98,"action":{"kind":"Undelegate","val":3,"amt":2477},"partialState":{"h":11,"t":66,"tokens":[3677,8486,1127,1480],"delegation":[2677,7486,127,480],"delegatorTokens":9999999971155}},{"ix":99,"action":{"kind":"Delegate","val":3,"amt":2014},"partialState":{"h":11,"t":66,"tokens":[3677,8486,1127,3494],"delegation":[2677,7486,127,2494],"delegatorTokens":9999999969141}},{"ix":100,"action":{"kind":"Delegate","val":0,"amt":1303},"partialState":{"h":11,"t":66,"tokens":[4980,8486,1127,3494],"delegation":[3980,7486,127,2494],"delegatorTokens":9999999967838}},{"ix":101,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":102,"action":{"kind":"Delegate","val":3,"amt":3658},"partialState":{"h":11,"t":66,"tokens":[4980,8486,1127,7152],"delegation":[3980,7486,127,6152],"delegatorTokens":9999999964180}},{"ix":103,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":104,"action":{"kind":"Undelegate","val":1,"amt":1186},"partialState":{"h":11,"t":66,"tokens":[4980,7300,1127,7152],"delegation":[3980,6300,127,6152],"delegatorTokens":9999999964180}},{"ix":105,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":106,"action":{"kind":"Delegate","val":1,"amt":1398},"partialState":{"h":11,"t":66,"tokens":[4980,8698,1127,7152],"delegation":[3980,7698,127,6152],"delegatorTokens":9999999962782}},{"ix":107,"action":{"kind":"Deliver","chain":"provider","numPackets":2},"partialState":{"h":11,"t":66,"tokens":[4980,8698,1127,7152],"delegation":[3980,7698,127,6152],"delegatorTokens":9999999962782,"jailed":[1000000000000035,1000000000000059,null,1000000000000059],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":108,"action":{"kind":"Delegate","val":1,"amt":2703},"partialState":{"h":11,"t":66,"tokens":[4980,11401,1127,7152],"delegation":[3980,10401,127,6152],"delegatorTokens":9999999960079}},{"ix":109,"action":{"kind":"Deliver","chain":"provider","numPackets":3},"partialState":{"h":11,"t":66,"tokens":[4980,11401,1127,7152],"delegation":[3980,10401,127,6152],"delegatorTokens":9999999960079,"jailed":[1000000000000035,1000000000000059,null,1000000000000059],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":110,"action":{"kind":"Delegate","val":1,"amt":1851},"partialState":{"h":11,"t":66,"tokens":[4980,13252,1127,7152],"delegation":[3980,12252,127,6152],"delegatorTokens":9999999958228}},{"ix":111,"action":{"kind":"Delegate","val":3,"amt":4048},"partialState":{"h":11,"t":66,"tokens":[4980,13252,1127,11200],"delegation":[3980,12252,127,10200],"delegatorTokens":9999999954180}},{"ix":112,"action":{"kind":"Delegate","val":2,"amt":2134},"partialState":{"h":11,"t":66,"tokens":[4980,13252,3261,11200],"delegation":[3980,12252,2261,10200],"delegatorTokens":9999999952046}},{"ix":113,"action":{"kind":"Delegate","val":2,"amt":1376},"partialState":{"h":11,"t":66,"tokens":[4980,13252,4637,11200],"delegation":[3980,12252,3637,10200],"delegatorTokens":9999999950670}},{"ix":114,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":12,"t":72,"tokens":[4980,13252,4637,11200],"delegation":[3980,12252,3637,10200],"delegatorTokens":9999999950670,"jailed":[1000000000000035,1000000000000059,null,1000000000000059],"status":["unbonding","unbonding","bonded","unbonding"]}},{"ix":115,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":13,"t":78,"tokens":[4980,13252,4637,11200],"delegation":[3980,12252,3637,10200],"delegatorTokens":9999999950670,"jailed":[1000000000000035,1000000000000059,null,1000000000000059],"status":["unbonding","unbonding","bonded","unbonding"]}},{"ix":116,"action":{"kind":"Undelegate","val":1,"amt":4991},"partialState":{"h":13,"t":78,"tokens":[4980,8261,4637,11200],"delegation":[3980,7261,3637,10200],"delegatorTokens":9999999950670}},{"ix":117,"action":{"kind":"Undelegate","val":1,"amt":3653},"partialState":{"h":13,"t":78,"tokens":[4980,4608,4637,11200],"delegation":[3980,3608,3637,10200],"delegatorTokens":9999999950670}},{"ix":118,"action":{"kind":"Deliver","chain":"provider","numPackets":5},"partialState":{"h":13,"t":78,"tokens":[4980,4608,4637,11200],"delegation":[3980,3608,3637,10200],"delegatorTokens":9999999950670,"jailed":[1000000000000035,1000000000000059,null,1000000000000059],"status":["unbonding","unbonding","bonded","unbonding"]}},{"ix":119,"action":{"kind":"Undelegate","val":0,"amt":4478},"partialState":{"h":13,"t":78,"tokens":[4980,4608,4637,11200],"delegation":[3980,3608,3637,10200],"delegatorTokens":9999999950670}},{"ix":120,"action":{"kind":"Deliver","chain":"provider","numPackets":5},"partialState":{"h":13,"t":78,"tokens":[4980,4608,4637,11200],"delegation":[3980,3608,3637,10200],"delegatorTokens":9999999950670,"jailed":[1000000000000035,1000000000000059,null,1000000000000059],"status":["unbonding","unbonding","bonded","unbonding"]}},{"ix":121,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":15,"t":90,"consumerPower":[null,null,3000,3203],"outstandingDowntime":[false,true,false,true]}},{"ix":122,"action":{"kind":"Delegate","val":1,"amt":1508},"partialState":{"h":13,"t":78,"tokens":[4980,6116,4637,11200],"delegation":[3980,5116,3637,10200],"delegatorTokens":9999999949162}},{"ix":123,"action":{"kind":"Delegate","val":0,"amt":3052},"partialState":{"h":13,"t":78,"tokens":[8032,6116,4637,11200],"delegation":[7032,5116,3637,10200],"delegatorTokens":9999999946110}},{"ix":124,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":16,"t":96,"consumerPower":[null,null,3000,3203],"outstandingDowntime":[false,true,false,true]}},{"ix":125,"action":{"kind":"Delegate","val":1,"amt":4124},"partialState":{"h":13,"t":78,"tokens":[8032,10240,4637,11200],"delegation":[7032,9240,3637,10200],"delegatorTokens":9999999941986}},{"ix":126,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":17,"t":102,"consumerPower":[null,null,3000,3203],"outstandingDowntime":[false,true,false,true]}},{"ix":127,"action":{"kind":"Deliver","chain":"consumer","numPackets":1},"partialState":{"h":17,"t":102,"consumerPower":[null,null,3000,3203],"outstandingDowntime":[false,false,false,false]}},{"ix":128,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":129,"action":{"kind":"Undelegate","val":2,"amt":2803},"partialState":{"h":13,"t":78,"tokens":[8032,10240,1834,11200],"delegation":[7032,9240,834,10200],"delegatorTokens":9999999941986}},{"ix":130,"action":{"kind":"Undelegate","val":2,"amt":2452},"partialState":{"h":13,"t":78,"tokens":[8032,10240,1834,11200],"delegation":[7032,9240,834,10200],"delegatorTokens":9999999941986}},{"ix":131,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":14,"t":84,"tokens":[8032,10240,1834,11200],"delegation":[7032,9240,834,10200],"delegatorTokens":9999999945551,"jailed":[1000000000000035,1000000000000059,null,1000000000000059],"status":["unbonding","unbonding","bonded","unbonding"]}},{"ix":132,"action":{"kind":"Undelegate","val":3,"amt":2140},"partialState":{"h":14,"t":84,"tokens":[8032,10240,1834,9060],"delegation":[7032,9240,834,8060],"delegatorTokens":9999999945551}},{"ix":133,"action":{"kind":"Deliver","chain":"provider","numPackets":3},"partialState":{"h":14,"t":84,"tokens":[8032,10240,1834,9060],"delegation":[7032,9240,834,8060],"delegatorTokens":9999999945551,"jailed":[1000000000000035,1000000000000059,null,1000000000000059],"status":["unbonding","unbonding","bonded","unbonding"]}},{"ix":134,"action":{"kind":"Undelegate","val":2,"amt":2822},"partialState":{"h":14,"t":84,"tokens":[8032,10240,1834,9060],"delegation":[7032,9240,834,8060],"delegatorTokens":9999999945551}},{"ix":135,"action":{"kind":"Undelegate","val":3,"amt":3630},"partialState":{"h":14,"t":84,"tokens":[8032,10240,1834,5430],"delegation":[7032,9240,834,4430],"delegatorTokens":9999999945551}},{"ix":136,"action":{"kind":"Undelegate","val":2,"amt":2329},"partialState":{"h":14,"t":84,"tokens":[8032,10240,1834,5430],"delegation":[7032,9240,834,4430],"delegatorTokens":9999999945551}},{"ix":137,"action":{"kind":"Undelegate","val":1,"amt":1147},"partialState":{"h":14,"t":84,"tokens":[8032,9093,1834,5430],"delegation":[7032,8093,834,4430],"delegatorTokens":9999999945551}},{"ix":138,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":139,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":18,"t":108,"consumerPower":[null,null,1127,1480],"outstandingDowntime":[false,false,false,false]}},{"ix":140,"action":{"kind":"Deliver","chain":"consumer","numPackets":1},"partialState":{"h":18,"t":108,"consumerPower":[null,null,1127,1480],"outstandingDowntime":[false,false,false,false]}},{"ix":141,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":142,"action":{"kind":"Undelegate","val":1,"amt":1722},"partialState":{"h":14,"t":84,"tokens":[8032,7371,1834,5430],"delegation":[7032,6371,834,4430],"delegatorTokens":9999999945551}},{"ix":143,"action":{"kind":"Delegate","val":0,"amt":2697},"partialState":{"h":14,"t":84,"tokens":[10729,7371,1834,5430],"delegation":[9729,6371,834,4430],"delegatorTokens":9999999942854}},{"ix":144,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":19,"t":114,"consumerPower":[null,null,4637,null],"outstandingDowntime":[false,false,false,false]}},{"ix":145,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":146,"action":{"kind":"Delegate","val":1,"amt":3928},"partialState":{"h":14,"t":84,"tokens":[10729,11299,1834,5430],"delegation":[9729,10299,834,4430],"delegatorTokens":9999999938926}},{"ix":147,"action":{"kind":"Undelegate","val":0,"amt":1824},"partialState":{"h":14,"t":84,"tokens":[8905,11299,1834,5430],"delegation":[7905,10299,834,4430],"delegatorTokens":9999999938926}},{"ix":148,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":15,"t":90,"tokens":[8905,11299,1834,5430],"delegation":[7905,10299,834,4430],"delegatorTokens":9999999938926,"jailed":[1000000000000035,1000000000000059,null,1000000000000059],"status":["unbonding","unbonding","bonded","unbonding"]}},{"ix":149,"action":{"kind":"Undelegate","val":2,"amt":2158},"partialState":{"h":15,"t":90,"tokens":[8905,11299,1834,5430],"delegation":[7905,10299,834,4430],"delegatorTokens":9999999938926}},{"ix":150,"action":{"kind":"Deliver","chain":"consumer","numPackets":1},"partialState":{"h":19,"t":114,"consumerPower":[null,null,4637,null],"outstandingDowntime":[false,false,false,false]}},{"ix":151,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":20,"t":120,"consumerPower":[null,null,1834,null],"outstandingDowntime":[false,false,false,false]}},{"ix":152,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":153,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":16,"t":96,"tokens":[8905,11299,1834,5430],"delegation":[7905,10299,834,4430],"delegatorTokens":9999999938926,"jailed":[1000000000000035,1000000000000059,null,1000000000000059],"status":["unbonding","unbonding","bonded","unbonding"]}},{"ix":154,"action":{"kind":"Deliver","chain":"consumer","numPackets":2},"partialState":{"h":20,"t":120,"consumerPower":[null,null,1834,null],"outstandingDowntime":[false,false,false,false]}},{"ix":155,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":21,"t":126,"consumerPower":[null,null,1834,null],"outstandingDowntime":[false,false,false,false]}},{"ix":156,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":22,"t":132,"consumerPower":[null,null,1834,null],"outstandingDowntime":[false,false,false,false]}},{"ix":157,"action":{"kind":"Undelegate","val":2,"amt":2897},"partialState":{"h":16,"t":96,"tokens":[8905,11299,1834,5430],"delegation":[7905,10299,834,4430],"delegatorTokens":9999999938926}},{"ix":158,"action":{"kind":"Delegate","val":2,"amt":1337},"partialState":{"h":16,"t":96,"tokens":[8905,11299,3171,5430],"delegation":[7905,10299,2171,4430],"delegatorTokens":9999999937589}},{"ix":159,"action":{"kind":"Delegate","val":3,"amt":1536},"partialState":{"h":16,"t":96,"tokens":[8905,11299,3171,6966],"delegation":[7905,10299,2171,5966],"delegatorTokens":9999999936053}},{"ix":160,"action":{"kind":"Delegate","val":0,"amt":3662},"partialState":{"h":16,"t":96,"tokens":[12567,11299,3171,6966],"delegation":[11567,10299,2171,5966],"delegatorTokens":9999999932391}},{"ix":161,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":17,"t":102,"tokens":[12567,11299,3171,6966],"delegation":[11567,10299,2171,5966],"delegatorTokens":9999999932391,"jailed":[1000000000000035,1000000000000059,null,1000000000000059],"status":["unbonding","unbonding","bonded","unbonding"]}},{"ix":162,"action":{"kind":"Delegate","val":3,"amt":4679},"partialState":{"h":17,"t":102,"tokens":[12567,11299,3171,11645],"delegation":[11567,10299,2171,10645],"delegatorTokens":9999999927712}},{"ix":163,"action":{"kind":"Deliver","chain":"provider","numPackets":3},"partialState":{"h":17,"t":102,"tokens":[12567,11299,3171,11645],"delegation":[11567,10299,2171,10645],"delegatorTokens":9999999927712,"jailed":[1000000000000035,1000000000000059,null,1000000000000059],"status":["unbonding","unbonding","bonded","unbonding"]}},{"ix":164,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":23,"t":138,"consumerPower":[null,null,1834,null],"outstandingDowntime":[false,false,false,false]}},{"ix":165,"action":{"kind":"Deliver","chain":"consumer","numPackets":2},"partialState":{"h":23,"t":138,"consumerPower":[null,null,1834,null],"outstandingDowntime":[false,false,false,false]}},{"ix":166,"action":{"kind":"Deliver","chain":"consumer","numPackets":6},"partialState":{"h":23,"t":138,"consumerPower":[null,null,1834,null],"outstandingDowntime":[false,false,false,false]}},{"ix":167,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":24,"t":144,"consumerPower":[null,null,1834,null],"outstandingDowntime":[false,false,false,false]}},{"ix":168,"action":{"kind":"Undelegate","val":1,"amt":2927},"partialState":{"h":17,"t":102,"tokens":[12567,8372,3171,11645],"delegation":[11567,7372,2171,10645],"delegatorTokens":9999999927712}},{"ix":169,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":18,"t":108,"tokens":[12567,8372,3171,11645],"delegation":[11567,7372,2171,10645],"delegatorTokens":9999999927712,"jailed":[1000000000000035,1000000000000059,null,1000000000000059],"status":["unbonding","unbonding","bonded","unbonding"]}},{"ix":170,"action":{"kind":"Deliver","chain":"consumer","numPackets":4},"partialState":{"h":24,"t":144,"consumerPower":[null,null,1834,null],"outstandingDowntime":[false,false,false,false]}},{"ix":171,"action":{"kind":"Undelegate","val":0,"amt":1202},"partialState":{"h":18,"t":108,"tokens":[11365,8372,3171,11645],"delegation":[10365,7372,2171,10645],"delegatorTokens":9999999927712}},{"ix":172,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":173,"action":{"kind":"Undelegate","val":1,"amt":2757},"partialState":{"h":18,"t":108,"tokens":[11365,5615,3171,11645],"delegation":[10365,4615,2171,10645],"delegatorTokens":9999999927712}},{"ix":174,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":25,"t":150,"consumerPower":[null,null,3171,null],"outstandingDowntime":[false,false,false,false]}},{"ix":175,"action":{"kind":"Deliver","chain":"consumer","numPackets":6},"partialState":{"h":25,"t":150,"consumerPower":[null,null,3171,null],"outstandingDowntime":[false,false,false,false]}},{"ix":176,"action":{"kind":"Undelegate","val":1,"amt":2517},"partialState":{"h":18,"t":108,"tokens":[11365,3098,3171,11645],"delegation":[10365,2098,2171,10645],"delegatorTokens":9999999927712}},{"ix":177,"action":{"kind":"Undelegate","val":2,"amt":2027},"partialState":{"h":18,"t":108,"tokens":[11365,3098,1144,11645],"delegation":[10365,2098,144,10645],"delegatorTokens":9999999927712}},{"ix":178,"action":{"kind":"Deliver","chain":"consumer","numPackets":4},"partialState":{"h":25,"t":150,"consumerPower":[null,null,3171,null],"outstandingDowntime":[false,false,false,false]}},{"ix":179,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":180,"action":{"kind":"Undelegate","val":3,"amt":2595},"partialState":{"h":18,"t":108,"tokens":[11365,3098,1144,9050],"delegation":[10365,2098,144,8050],"delegatorTokens":9999999927712}},{"ix":181,"action":{"kind":"Deliver","chain":"consumer","numPackets":1},"partialState":{"h":25,"t":150,"consumerPower":[null,null,3171,null],"outstandingDowntime":[false,false,false,false]}},{"ix":182,"action":{"kind":"Undelegate","val":1,"amt":1893},"partialState":{"h":18,"t":108,"tokens":[11365,1205,1144,9050],"delegation":[10365,205,144,8050],"delegatorTokens":9999999927712}},{"ix":183,"action":{"kind":"Delegate","val":2,"amt":1191},"partialState":{"h":18,"t":108,"tokens":[11365,1205,2335,9050],"delegation":[10365,205,1335,8050],"delegatorTokens":9999999926521}},{"ix":184,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":19,"t":114,"tokens":[11365,1205,2335,9050],"delegation":[10365,205,1335,8050],"delegatorTokens":9999999926521,"jailed":[1000000000000035,1000000000000059,null,1000000000000059],"status":["unbonded","unbonding","bonded","unbonding"]}},{"ix":185,"action":{"kind":"Deliver","chain":"provider","numPackets":1},"partialState":{"h":19,"t":114,"tokens":[11365,1205,2335,9050],"delegation":[10365,205,1335,8050],"delegatorTokens":9999999926521,"jailed":[1000000000000035,1000000000000059,null,1000000000000059],"status":["unbonded","unbonding","bonded","unbonding"]}},{"ix":186,"action":{"kind":"Deliver","chain":"consumer","numPackets":1},"partialState":{"h":25,"t":150,"consumerPower":[null,null,3171,null],"outstandingDowntime":[false,false,false,false]}},{"ix":187,"action":{"kind":"Delegate","val":3,"amt":3273},"partialState":{"h":19,"t":114,"tokens":[11365,1205,2335,12323],"delegation":[10365,205,1335,11323],"delegatorTokens":9999999923248}},{"ix":188,"action":{"kind":"Undelegate","val":2,"amt":3811},"partialState":{"h":19,"t":114,"tokens":[11365,1205,2335,12323],"delegation":[10365,205,1335,11323],"delegatorTokens":9999999923248}},{"ix":189,"action":{"kind":"Deliver","chain":"consumer","numPackets":2},"partialState":{"h":25,"t":150,"consumerPower":[null,null,3171,null],"outstandingDowntime":[false,false,false,false]}},{"ix":190,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":20,"t":120,"tokens":[11365,1205,2335,12323],"delegation":[10365,205,1335,11323],"delegatorTokens":9999999930394,"jailed":[1000000000000035,1000000000000059,null,1000000000000059],"status":["unbonded","unbonding","bonded","unbonding"]}},{"ix":191,"action":{"kind":"Deliver","chain":"provider","numPackets":3},"partialState":{"h":20,"t":120,"tokens":[11365,1205,2335,12323],"delegation":[10365,205,1335,11323],"delegatorTokens":9999999930394,"jailed":[1000000000000035,1000000000000059,null,1000000000000059],"status":["unbonded","unbonding","bonded","unbonding"]}},{"ix":192,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":21,"t":126,"tokens":[11365,1205,2335,12323],"delegation":[10365,205,1335,11323],"delegatorTokens":9999999939246,"jailed":[1000000000000035,1000000000000059,null,1000000000000059],"status":["unbonded","unbonded","bonded","unbonding"]}},{"ix":193,"action":{"kind":"Delegate","val":3,"amt":3448},"partialState":{"h":21,"t":126,"tokens":[11365,1205,2335,15771],"delegation":[10365,205,1335,14771],"delegatorTokens":9999999935798}},{"ix":194,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":26,"t":156,"consumerPower":[null,null,3171,null],"outstandingDowntime":[false,false,false,false]}},{"ix":195,"action":{"kind":"Undelegate","val":2,"amt":3600},"partialState":{"h":21,"t":126,"tokens":[11365,1205,2335,15771],"delegation":[10365,205,1335,14771],"delegatorTokens":9999999935798}},{"ix":196,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":197,"action":{"kind":"Delegate","val":3,"amt":2546},"partialState":{"h":21,"t":126,"tokens":[11365,1205,2335,18317],"delegation":[10365,205,1335,17317],"delegatorTokens":9999999933252}},{"ix":198,"action":{"kind":"Undelegate","val":1,"amt":2391},"partialState":{"h":21,"t":126,"tokens":[11365,1205,2335,18317],"delegation":[10365,205,1335,17317],"delegatorTokens":9999999933252}},{"ix":199,"action":{"kind":"Deliver","chain":"consumer","numPackets":4},"partialState":{"h":26,"t":156,"consumerPower":[null,null,3171,null],"outstandingDowntime":[false,false,false,false]}}],"events":["more_than_one_third_val_power_change","send_vsc_without_downtime_ack","send_downtime_slash_request","consumer_update_val","consumer_del_val","consumer_add_val","send_downtime_slash_request","send_vsc_without_downtime_ack","downtime_slash_request_outstanding","send_double_sign_slash_request","more_than_one_third_val_power_change","rebond_unval","receive_downtime_slash_request","jail","receive_downtime_slash_request","jail","send_vsc_with_downtime_ack","downtime_slash_request_outstanding","send_double_sign_slash_request","consumer_update_val","rebond_unval","send_vsc_without_downtime_ack","receive_downtime_slash_ack","receive_downtime_slash_ack","send_downtime_slash_request","consumer_del_val","consumer_add_val","consumer_del_val","consumer_add_val","insufficient_shares","send_downtime_slash_request","send_vsc_without_downtime_ack","insufficient_shares","consumer_send_maturation","insufficient_shares","insufficient_shares","insufficient_shares","insufficient_shares","receive_double_sign_slash_request","receive_double_sign_slash_request","insufficient_shares","consumer_del_val","consumer_add_val","consumer_update_val","receive_downtime_slash_request","jail","receive_downtime_slash_request","jail","set_undel_hold_false","set_undel_hold_false","send_vsc_with_downtime_ack","insufficient_shares","send_vsc_without_downtime_ack","insufficient_shares","consumer_send_maturation","receive_downtime_slash_ack","receive_downtime_slash_ack","insufficient_shares","complete_undel_in_endblock","send_vsc_without_downtime_ack","insufficient_shares","insufficient_shares","consumer_send_maturation","consumer_update_val","consumer_update_val","consumer_update_val","consumer_del_val","send_vsc_not_because_change","send_vsc_without_downtime_ack","insufficient_shares","consumer_update_val","consumer_send_maturation","consumer_send_maturation","insufficient_shares","send_vsc_without_downtime_ack","set_unval_hold_false","send_vsc_not_because_change","send_vsc_without_downtime_ack","consumer_update_val","complete_unval_in_endblock","send_vsc_without_downtime_ack","insufficient_shares","some_undels_expired_but_not_completed","complete_undel_immediate","complete_undel_immediate","set_unval_hold_false","complete_unval_in_endblock","some_undels_expired_but_not_completed","complete_undel_immediate","complete_undel_immediate","complete_undel_immediate","insufficient_shares","insufficient_shares"]},{"meta":{"commit":"7ffd0c04e4205cbc9caf212abfe6c59ee43153bf"},"constants":{"P":"provider","C":"consumer","UNBONDING_SECONDS_P":70,"UNBONDING_SECONDS_C":50,"TRUSTING_SECONDS":49,"NUM_VALIDATORS":4,"MAX_VALIDATORS":2,"SLASH_DOUBLESIGN":0,"SLASH_DOWNTIME":0,"JAIL_SECONDS":999999999999999,"BLOCK_SECONDS":6,"INITIAL_DELEGATOR_TOKENS":10000000000000,"DELEGATE_AMT_MIN":1000,"DELEGATE_AMT_MAX":5000,"UNDELEGATE_AMT_MIN":1000,"UNDELEGATE_AMT_MAX":5000,"ISDOWNTIME_PROBABILITY":0.5,"MAX_NUM_PACKETS_FOR_DELIVER":6},"actions":[{"ix":0,"action":{"kind":"Deliver","chain":"provider","numPackets":3},"partialState":{"h":1,"t":6,"tokens":[5000,4000,3000,2000],"delegation":[4000,3000,2000,1000],"delegatorTokens":10000000000000,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":1,"action":{"kind":"Undelegate","val":2,"amt":1260},"partialState":{"h":1,"t":6,"tokens":[5000,4000,1740,2000],"delegation":[4000,3000,740,1000],"delegatorTokens":10000000000000}},{"ix":2,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":2,"t":12,"tokens":[5000,4000,1740,2000],"delegation":[4000,3000,740,1000],"delegatorTokens":10000000000000,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":3,"action":{"kind":"Delegate","val":0,"amt":1506},"partialState":{"h":2,"t":12,"tokens":[6506,4000,1740,2000],"delegation":[5506,3000,740,1000],"delegatorTokens":9999999998494}},{"ix":4,"action":{"kind":"Undelegate","val":0,"amt":1526},"partialState":{"h":2,"t":12,"tokens":[4980,4000,1740,2000],"delegation":[3980,3000,740,1000],"delegatorTokens":9999999998494}},{"ix":5,"action":{"kind":"Deliver","chain":"consumer","numPackets":2},"partialState":{"h":1,"t":6,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":6,"action":{"kind":"ConsumerSlash","val":3,"infractionHeight":0,"isDowntime":true},"partialState":{"h":1,"t":6,"outstandingDowntime":[false,false,false,true]}},{"ix":7,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":8,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":9,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":3,"t":18,"tokens":[4980,4000,1740,2000],"delegation":[3980,3000,740,1000],"delegatorTokens":9999999998494,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":10,"action":{"kind":"Deliver","chain":"consumer","numPackets":4},"partialState":{"h":1,"t":6,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,false,false,true]}},{"ix":11,"action":{"kind":"Undelegate","val":3,"amt":1909},"partialState":{"h":3,"t":18,"tokens":[4980,4000,1740,2000],"delegation":[3980,3000,740,1000],"delegatorTokens":9999999998494}},{"ix":12,"action":{"kind":"ConsumerSlash","val":1,"infractionHeight":0,"isDowntime":true},"partialState":{"h":1,"t":6,"outstandingDowntime":[false,true,false,true]}},{"ix":13,"action":{"kind":"Undelegate","val":1,"amt":4603},"partialState":{"h":3,"t":18,"tokens":[4980,4000,1740,2000],"delegation":[3980,3000,740,1000],"delegatorTokens":9999999998494}},{"ix":14,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":2,"t":12,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,true,false,true]}},{"ix":15,"action":{"kind":"Deliver","chain":"consumer","numPackets":1},"partialState":{"h":2,"t":12,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,true,false,true]}},{"ix":16,"action":{"kind":"Deliver","chain":"provider","numPackets":3},"partialState":{"h":3,"t":18,"tokens":[4980,4000,1740,2000],"delegation":[3980,3000,740,1000],"delegatorTokens":9999999998494,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":17,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":4,"t":24,"tokens":[4980,4000,1740,2000],"delegation":[3980,3000,740,1000],"delegatorTokens":9999999998494,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":18,"action":{"kind":"ConsumerSlash","val":0,"infractionHeight":0,"isDowntime":true},"partialState":{"h":2,"t":12,"outstandingDowntime":[true,true,false,true]}},{"ix":19,"action":{"kind":"Delegate","val":1,"amt":1992},"partialState":{"h":4,"t":24,"tokens":[4980,5992,1740,2000],"delegation":[3980,4992,740,1000],"delegatorTokens":9999999996502}},{"ix":20,"action":{"kind":"Undelegate","val":0,"amt":3566},"partialState":{"h":4,"t":24,"tokens":[1414,5992,1740,2000],"delegation":[414,4992,740,1000],"delegatorTokens":9999999996502}},{"ix":21,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":5,"t":30,"tokens":[1414,5992,1740,2000],"delegation":[414,4992,740,1000],"delegatorTokens":9999999996502,"jailed":[null,null,null,null],"status":["unbonding","bonded","unbonded","bonded"]}},{"ix":22,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":23,"action":{"kind":"Deliver","chain":"provider","numPackets":5},"partialState":{"h":5,"t":30,"tokens":[1414,5992,1740,2000],"delegation":[414,4992,740,1000],"delegatorTokens":9999999996502,"jailed":[null,null,null,null],"status":["unbonding","bonded","unbonded","bonded"]}},{"ix":24,"action":{"kind":"Undelegate","val":2,"amt":3666},"partialState":{"h":5,"t":30,"tokens":[1414,5992,1740,2000],"delegation":[414,4992,740,1000],"delegatorTokens":9999999996502}},{"ix":25,"action":{"kind":"Deliver","chain":"provider","numPackets":5},"partialState":{"h":5,"t":30,"tokens":[1414,5992,1740,2000],"delegation":[414,4992,740,1000],"delegatorTokens":9999999996502,"jailed":[null,null,null,null],"status":["unbonding","bonded","unbonded","bonded"]}},{"ix":26,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":3,"t":18,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[true,true,false,true]}},{"ix":27,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":28,"action":{"kind":"Delegate","val":0,"amt":2058},"partialState":{"h":5,"t":30,"tokens":[3472,5992,1740,2000],"delegation":[2472,4992,740,1000],"delegatorTokens":9999999994444}},{"ix":29,"action":{"kind":"Deliver","chain":"consumer","numPackets":2},"partialState":{"h":3,"t":18,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[true,true,false,true]}},{"ix":30,"action":{"kind":"Deliver","chain":"consumer","numPackets":5},"partialState":{"h":3,"t":18,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[true,true,false,true]}},{"ix":31,"action":{"kind":"Deliver","chain":"provider","numPackets":1},"partialState":{"h":5,"t":30,"tokens":[3472,5992,1740,2000],"delegation":[2472,4992,740,1000],"delegatorTokens":9999999994444,"jailed":[null,null,null,null],"status":["unbonding","bonded","unbonded","bonded"]}},{"ix":32,"action":{"kind":"Undelegate","val":3,"amt":4688},"partialState":{"h":5,"t":30,"tokens":[3472,5992,1740,2000],"delegation":[2472,4992,740,1000],"delegatorTokens":9999999994444}},{"ix":33,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":6,"t":36,"tokens":[3472,5992,1740,2000],"delegation":[2472,4992,740,1000],"delegatorTokens":9999999994444,"jailed":[null,null,null,1000000000000029],"status":["bonded","bonded","unbonded","unbonding"]}},{"ix":34,"action":{"kind":"Undelegate","val":0,"amt":1465},"partialState":{"h":6,"t":36,"tokens":[2007,5992,1740,2000],"delegation":[1007,4992,740,1000],"delegatorTokens":9999999994444}},{"ix":35,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":36,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":37,"action":{"kind":"Undelegate","val":2,"amt":3563},"partialState":{"h":6,"t":36,"tokens":[2007,5992,1740,2000],"delegation":[1007,4992,740,1000],"delegatorTokens":9999999994444}},{"ix":38,"action":{"kind":"Undelegate","val":0,"amt":4008},"partialState":{"h":6,"t":36,"tokens":[2007,5992,1740,2000],"delegation":[1007,4992,740,1000],"delegatorTokens":9999999994444}},{"ix":39,"action":{"kind":"Delegate","val":0,"amt":4524},"partialState":{"h":6,"t":36,"tokens":[6531,5992,1740,2000],"delegation":[5531,4992,740,1000],"delegatorTokens":9999999989920}},{"ix":40,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":41,"action":{"kind":"Undelegate","val":2,"amt":1671},"partialState":{"h":6,"t":36,"tokens":[6531,5992,1740,2000],"delegation":[5531,4992,740,1000],"delegatorTokens":9999999989920}},{"ix":42,"action":{"kind":"Deliver","chain":"provider","numPackets":3},"partialState":{"h":6,"t":36,"tokens":[6531,5992,1740,2000],"delegation":[5531,4992,740,1000],"delegatorTokens":9999999989920,"jailed":[null,null,null,1000000000000029],"status":["bonded","bonded","unbonded","unbonding"]}},{"ix":43,"action":{"kind":"Deliver","chain":"consumer","numPackets":4},"partialState":{"h":3,"t":18,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[true,true,false,true]}},{"ix":44,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":7,"t":42,"tokens":[6531,5992,1740,2000],"delegation":[5531,4992,740,1000],"delegatorTokens":9999999989920,"jailed":[null,1000000000000035,null,1000000000000029],"status":["bonded","bonded","unbonded","unbonding"]}},{"ix":45,"action":{"kind":"Undelegate","val":1,"amt":2398},"partialState":{"h":7,"t":42,"tokens":[6531,3594,1740,2000],"delegation":[5531,2594,740,1000],"delegatorTokens":9999999989920}},{"ix":46,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":4,"t":24,"consumerPower":[null,5992,null,2000],"outstandingDowntime":[true,true,false,true]}},{"ix":47,"action":{"kind":"Deliver","chain":"provider","numPackets":4},"partialState":{"h":7,"t":42,"tokens":[6531,3594,1740,2000],"delegation":[5531,2594,740,1000],"delegatorTokens":9999999989920,"jailed":[null,1000000000000035,null,1000000000000029],"status":["bonded","bonded","unbonded","unbonding"]}},{"ix":48,"action":{"kind":"Delegate","val":2,"amt":2329},"partialState":{"h":7,"t":42,"tokens":[6531,3594,4069,2000],"delegation":[5531,2594,3069,1000],"delegatorTokens":9999999987591}},{"ix":49,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":5,"t":30,"consumerPower":[null,5992,null,2000],"outstandingDowntime":[true,true,false,true]}},{"ix":50,"action":{"kind":"Undelegate","val":0,"amt":2637},"partialState":{"h":7,"t":42,"tokens":[3894,3594,4069,2000],"delegation":[2894,2594,3069,1000],"delegatorTokens":9999999987591}},{"ix":51,"action":{"kind":"Undelegate","val":1,"amt":3284},"partialState":{"h":7,"t":42,"tokens":[3894,3594,4069,2000],"delegation":[2894,2594,3069,1000],"delegatorTokens":9999999987591}},{"ix":52,"action":{"kind":"Delegate","val":2,"amt":3504},"partialState":{"h":7,"t":42,"tokens":[3894,3594,7573,2000],"delegation":[2894,2594,6573,1000],"delegatorTokens":9999999984087}},{"ix":53,"action":{"kind":"Delegate","val":1,"amt":3676},"partialState":{"h":7,"t":42,"tokens":[3894,7270,7573,2000],"delegation":[2894,6270,6573,1000],"delegatorTokens":9999999980411}},{"ix":54,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":8,"t":48,"tokens":[3894,7270,7573,2000],"delegation":[2894,6270,6573,1000],"delegatorTokens":9999999980411,"jailed":[1000000000000041,1000000000000035,null,1000000000000029],"status":["bonded","unbonding","bonded","unbonding"]}},{"ix":55,"action":{"kind":"Undelegate","val":3,"amt":3026},"partialState":{"h":8,"t":48,"tokens":[3894,7270,7573,2000],"delegation":[2894,6270,6573,1000],"delegatorTokens":9999999980411}},{"ix":56,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":9,"t":54,"tokens":[3894,7270,7573,2000],"delegation":[2894,6270,6573,1000],"delegatorTokens":9999999980411,"jailed":[1000000000000041,1000000000000035,null,1000000000000029],"status":["unbonding","unbonding","bonded","unbonding"]}},{"ix":57,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":10,"t":60,"tokens":[3894,7270,7573,2000],"delegation":[2894,6270,6573,1000],"delegatorTokens":9999999980411,"jailed":[1000000000000041,1000000000000035,null,1000000000000029],"status":["unbonding","unbonding","bonded","unbonding"]}},{"ix":58,"action":{"kind":"Undelegate","val":0,"amt":2696},"partialState":{"h":10,"t":60,"tokens":[1198,7270,7573,2000],"delegation":[198,6270,6573,1000],"delegatorTokens":9999999980411}},{"ix":59,"action":{"kind":"Deliver","chain":"consumer","numPackets":6},"partialState":{"h":5,"t":30,"consumerPower":[null,5992,null,2000],"outstandingDowntime":[false,false,false,false]}},{"ix":60,"action":{"kind":"Delegate","val":2,"amt":1771},"partialState":{"h":10,"t":60,"tokens":[1198,7270,9344,2000],"delegation":[198,6270,8344,1000],"delegatorTokens":9999999978640}},{"ix":61,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":11,"t":66,"tokens":[1198,7270,9344,2000],"delegation":[198,6270,8344,1000],"delegatorTokens":9999999978640,"jailed":[1000000000000041,1000000000000035,null,1000000000000029],"status":["unbonding","unbonding","bonded","unbonding"]}},{"ix":62,"action":{"kind":"Deliver","chain":"consumer","numPackets":5},"partialState":{"h":5,"t":30,"consumerPower":[null,5992,null,2000],"outstandingDowntime":[false,false,false,false]}},{"ix":63,"action":{"kind":"Undelegate","val":0,"amt":4971},"partialState":{"h":11,"t":66,"tokens":[1198,7270,9344,2000],"delegation":[198,6270,8344,1000],"delegatorTokens":9999999978640}},{"ix":64,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":65,"action":{"kind":"Delegate","val":2,"amt":2446},"partialState":{"h":11,"t":66,"tokens":[1198,7270,11790,2000],"delegation":[198,6270,10790,1000],"delegatorTokens":9999999976194}},{"ix":66,"action":{"kind":"Delegate","val":2,"amt":1489},"partialState":{"h":11,"t":66,"tokens":[1198,7270,13279,2000],"delegation":[198,6270,12279,1000],"delegatorTokens":9999999974705}},{"ix":67,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":6,"t":36,"consumerPower":[null,null,7573,null],"outstandingDowntime":[false,false,false,false]}},{"ix":68,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":7,"t":42,"consumerPower":[null,null,7573,null],"outstandingDowntime":[false,false,false,false]}},{"ix":69,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":8,"t":48,"consumerPower":[null,null,7573,null],"outstandingDowntime":[false,false,false,false]}},{"ix":70,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":71,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":9,"t":54,"consumerPower":[null,null,7573,null],"outstandingDowntime":[false,false,false,false]}},{"ix":72,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":73,"action":{"kind":"Delegate","val":1,"amt":2802},"partialState":{"h":11,"t":66,"tokens":[1198,10072,13279,2000],"delegation":[198,9072,12279,1000],"delegatorTokens":9999999971903}},{"ix":74,"action":{"kind":"Undelegate","val":2,"amt":4744},"partialState":{"h":11,"t":66,"tokens":[1198,10072,8535,2000],"delegation":[198,9072,7535,1000],"delegatorTokens":9999999971903}},{"ix":75,"action":{"kind":"Deliver","chain":"consumer","numPackets":1},"partialState":{"h":9,"t":54,"consumerPower":[null,null,7573,null],"outstandingDowntime":[false,false,false,false]}},{"ix":76,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":10,"t":60,"consumerPower":[null,null,7573,null],"outstandingDowntime":[false,false,false,false]}},{"ix":77,"action":{"kind":"Deliver","chain":"provider","numPackets":2},"partialState":{"h":11,"t":66,"tokens":[1198,10072,8535,2000],"delegation":[198,9072,7535,1000],"delegatorTokens":9999999971903,"jailed":[1000000000000041,1000000000000035,null,1000000000000029],"status":["unbonding","unbonding","bonded","unbonding"]}},{"ix":78,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":79,"action":{"kind":"Delegate","val":1,"amt":3574},"partialState":{"h":11,"t":66,"tokens":[1198,13646,8535,2000],"delegation":[198,12646,7535,1000],"delegatorTokens":9999999968329}},{"ix":80,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":81,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":82,"action":{"kind":"Deliver","chain":"provider","numPackets":5},"partialState":{"h":11,"t":66,"tokens":[1198,13646,8535,2000],"delegation":[198,12646,7535,1000],"delegatorTokens":9999999968329,"jailed":[1000000000000041,1000000000000035,null,1000000000000029],"status":["unbonding","unbonding","bonded","unbonding"]}},{"ix":83,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":11,"t":66,"consumerPower":[null,null,7573,null],"outstandingDowntime":[false,false,false,false]}},{"ix":84,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":12,"t":72,"consumerPower":[null,null,7573,null],"outstandingDowntime":[false,false,false,false]}},{"ix":85,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":86,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":12,"t":72,"tokens":[1198,13646,8535,2000],"delegation":[198,12646,7535,1000],"delegatorTokens":9999999968329,"jailed":[1000000000000041,1000000000000035,null,1000000000000029],"status":["unbonding","unbonding","bonded","unbonding"]}},{"ix":87,"action":{"kind":"Delegate","val":3,"amt":3634},"partialState":{"h":12,"t":72,"tokens":[1198,13646,8535,5634],"delegation":[198,12646,7535,4634],"delegatorTokens":9999999964695}},{"ix":88,"action":{"kind":"Deliver","chain":"consumer","numPackets":5},"partialState":{"h":12,"t":72,"consumerPower":[null,null,7573,null],"outstandingDowntime":[false,false,false,false]}},{"ix":89,"action":{"kind":"Deliver","chain":"provider","numPackets":6},"partialState":{"h":12,"t":72,"tokens":[1198,13646,8535,5634],"delegation":[198,12646,7535,4634],"delegatorTokens":9999999964695,"jailed":[1000000000000041,1000000000000035,null,1000000000000029],"status":["unbonding","unbonding","bonded","unbonding"]}},{"ix":90,"action":{"kind":"Undelegate","val":0,"amt":2408},"partialState":{"h":12,"t":72,"tokens":[1198,13646,8535,5634],"delegation":[198,12646,7535,4634],"delegatorTokens":9999999964695}},{"ix":91,"action":{"kind":"Undelegate","val":2,"amt":4784},"partialState":{"h":12,"t":72,"tokens":[1198,13646,3751,5634],"delegation":[198,12646,2751,4634],"delegatorTokens":9999999964695}},{"ix":92,"action":{"kind":"Undelegate","val":1,"amt":1234},"partialState":{"h":12,"t":72,"tokens":[1198,12412,3751,5634],"delegation":[198,11412,2751,4634],"delegatorTokens":9999999964695}},{"ix":93,"action":{"kind":"Deliver","chain":"provider","numPackets":5},"partialState":{"h":12,"t":72,"tokens":[1198,12412,3751,5634],"delegation":[198,11412,2751,4634],"delegatorTokens":9999999964695,"jailed":[1000000000000041,1000000000000035,null,1000000000000029],"status":["unbonding","unbonding","bonded","unbonding"]}},{"ix":94,"action":{"kind":"Undelegate","val":0,"amt":3837},"partialState":{"h":12,"t":72,"tokens":[1198,12412,3751,5634],"delegation":[198,11412,2751,4634],"delegatorTokens":9999999964695}},{"ix":95,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":13,"t":78,"consumerPower":[null,null,9344,null],"outstandingDowntime":[false,false,false,false]}},{"ix":96,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":97,"action":{"kind":"Deliver","chain":"consumer","numPackets":1},"partialState":{"h":13,"t":78,"consumerPower":[null,null,9344,null],"outstandingDowntime":[false,false,false,false]}},{"ix":98,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":14,"t":84,"consumerPower":[null,null,9344,null],"outstandingDowntime":[false,false,false,false]}},{"ix":99,"action":{"kind":"Delegate","val":2,"amt":1708},"partialState":{"h":12,"t":72,"tokens":[1198,12412,5459,5634],"delegation":[198,11412,4459,4634],"delegatorTokens":9999999962987}},{"ix":100,"action":{"kind":"Deliver","chain":"provider","numPackets":4},"partialState":{"h":12,"t":72,"tokens":[1198,12412,5459,5634],"delegation":[198,11412,4459,4634],"delegatorTokens":9999999962987,"jailed":[1000000000000041,1000000000000035,null,1000000000000029],"status":["unbonding","unbonding","bonded","unbonding"]}},{"ix":101,"action":{"kind":"Delegate","val":0,"amt":1251},"partialState":{"h":12,"t":72,"tokens":[2449,12412,5459,5634],"delegation":[1449,11412,4459,4634],"delegatorTokens":9999999961736}},{"ix":102,"action":{"kind":"Undelegate","val":1,"amt":1883},"partialState":{"h":12,"t":72,"tokens":[2449,10529,5459,5634],"delegation":[1449,9529,4459,4634],"delegatorTokens":9999999961736}},{"ix":103,"action":{"kind":"Undelegate","val":2,"amt":2753},"partialState":{"h":12,"t":72,"tokens":[2449,10529,2706,5634],"delegation":[1449,9529,1706,4634],"delegatorTokens":9999999961736}},{"ix":104,"action":{"kind":"Undelegate","val":1,"amt":4305},"partialState":{"h":12,"t":72,"tokens":[2449,6224,2706,5634],"delegation":[1449,5224,1706,4634],"delegatorTokens":9999999961736}},{"ix":105,"action":{"kind":"Deliver","chain":"consumer","numPackets":4},"partialState":{"h":14,"t":84,"consumerPower":[null,null,9344,null],"outstandingDowntime":[false,false,false,false]}},{"ix":106,"action":{"kind":"Undelegate","val":0,"amt":2868},"partialState":{"h":12,"t":72,"tokens":[2449,6224,2706,5634],"delegation":[1449,5224,1706,4634],"delegatorTokens":9999999961736}},{"ix":107,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":108,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":109,"action":{"kind":"Undelegate","val":2,"amt":1231},"partialState":{"h":12,"t":72,"tokens":[2449,6224,1475,5634],"delegation":[1449,5224,475,4634],"delegatorTokens":9999999961736}},{"ix":110,"action":{"kind":"Delegate","val":2,"amt":4715},"partialState":{"h":12,"t":72,"tokens":[2449,6224,6190,5634],"delegation":[1449,5224,5190,4634],"delegatorTokens":9999999957021}},{"ix":111,"action":{"kind":"Deliver","chain":"consumer","numPackets":6},"partialState":{"h":14,"t":84,"consumerPower":[null,null,9344,null],"outstandingDowntime":[false,false,false,false]}},{"ix":112,"action":{"kind":"Deliver","chain":"consumer","numPackets":6},"partialState":{"h":14,"t":84,"consumerPower":[null,null,9344,null],"outstandingDowntime":[false,false,false,false]}},{"ix":113,"action":{"kind":"Delegate","val":1,"amt":2522},"partialState":{"h":12,"t":72,"tokens":[2449,8746,6190,5634],"delegation":[1449,7746,5190,4634],"delegatorTokens":9999999954499}},{"ix":114,"action":{"kind":"Delegate","val":1,"amt":4877},"partialState":{"h":12,"t":72,"tokens":[2449,13623,6190,5634],"delegation":[1449,12623,5190,4634],"delegatorTokens":9999999949622}},{"ix":115,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":116,"action":{"kind":"Undelegate","val":0,"amt":3997},"partialState":{"h":12,"t":72,"tokens":[2449,13623,6190,5634],"delegation":[1449,12623,5190,4634],"delegatorTokens":9999999949622}},{"ix":117,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":118,"action":{"kind":"Undelegate","val":1,"amt":4516},"partialState":{"h":12,"t":72,"tokens":[2449,9107,6190,5634],"delegation":[1449,8107,5190,4634],"delegatorTokens":9999999949622}},{"ix":119,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":13,"t":78,"tokens":[2449,9107,6190,5634],"delegation":[1449,8107,5190,4634],"delegatorTokens":9999999949622,"jailed":[1000000000000041,1000000000000035,null,1000000000000029],"status":["unbonding","unbonding","bonded","unbonding"]}},{"ix":120,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":121,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":15,"t":90,"consumerPower":[null,null,9344,null],"outstandingDowntime":[false,false,false,false]}},{"ix":122,"action":{"kind":"Undelegate","val":1,"amt":2110},"partialState":{"h":13,"t":78,"tokens":[2449,6997,6190,5634],"delegation":[1449,5997,5190,4634],"delegatorTokens":9999999949622}},{"ix":123,"action":{"kind":"Deliver","chain":"provider","numPackets":3},"partialState":{"h":13,"t":78,"tokens":[2449,6997,6190,5634],"delegation":[1449,5997,5190,4634],"delegatorTokens":9999999949622,"jailed":[1000000000000041,1000000000000035,null,1000000000000029],"status":["unbonding","unbonding","bonded","unbonding"]}},{"ix":124,"action":{"kind":"Undelegate","val":0,"amt":1091},"partialState":{"h":13,"t":78,"tokens":[1358,6997,6190,5634],"delegation":[358,5997,5190,4634],"delegatorTokens":9999999949622}},{"ix":125,"action":{"kind":"Delegate","val":1,"amt":2306},"partialState":{"h":13,"t":78,"tokens":[1358,9303,6190,5634],"delegation":[358,8303,5190,4634],"delegatorTokens":9999999947316}},{"ix":126,"action":{"kind":"Delegate","val":1,"amt":4869},"partialState":{"h":13,"t":78,"tokens":[1358,14172,6190,5634],"delegation":[358,13172,5190,4634],"delegatorTokens":9999999942447}},{"ix":127,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":128,"action":{"kind":"Undelegate","val":1,"amt":1643},"partialState":{"h":13,"t":78,"tokens":[1358,12529,6190,5634],"delegation":[358,11529,5190,4634],"delegatorTokens":9999999942447}},{"ix":129,"action":{"kind":"Undelegate","val":0,"amt":3376},"partialState":{"h":13,"t":78,"tokens":[1358,12529,6190,5634],"delegation":[358,11529,5190,4634],"delegatorTokens":9999999942447}},{"ix":130,"action":{"kind":"Deliver","chain":"provider","numPackets":4},"partialState":{"h":13,"t":78,"tokens":[1358,12529,6190,5634],"delegation":[358,11529,5190,4634],"delegatorTokens":9999999942447,"jailed":[1000000000000041,1000000000000035,null,1000000000000029],"status":["unbonding","unbonding","bonded","unbonding"]}},{"ix":131,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":14,"t":84,"tokens":[1358,12529,6190,5634],"delegation":[358,11529,5190,4634],"delegatorTokens":9999999943707,"jailed":[1000000000000041,1000000000000035,null,1000000000000029],"status":["unbonding","unbonding","bonded","unbonding"]}},{"ix":132,"action":{"kind":"Undelegate","val":1,"amt":4508},"partialState":{"h":14,"t":84,"tokens":[1358,8021,6190,5634],"delegation":[358,7021,5190,4634],"delegatorTokens":9999999943707}},{"ix":133,"action":{"kind":"Undelegate","val":2,"amt":4437},"partialState":{"h":14,"t":84,"tokens":[1358,8021,1753,5634],"delegation":[358,7021,753,4634],"delegatorTokens":9999999943707}},{"ix":134,"action":{"kind":"Undelegate","val":2,"amt":1045},"partialState":{"h":14,"t":84,"tokens":[1358,8021,1753,5634],"delegation":[358,7021,753,4634],"delegatorTokens":9999999943707}},{"ix":135,"action":{"kind":"Deliver","chain":"provider","numPackets":3},"partialState":{"h":14,"t":84,"tokens":[1358,8021,1753,5634],"delegation":[358,7021,753,4634],"delegatorTokens":9999999943707,"jailed":[1000000000000041,1000000000000035,null,1000000000000029],"status":["unbonding","unbonding","bonded","unbonding"]}},{"ix":136,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":15,"t":90,"tokens":[1358,8021,1753,5634],"delegation":[358,7021,753,4634],"delegatorTokens":9999999945233,"jailed":[1000000000000041,1000000000000035,null,1000000000000029],"status":["unbonding","unbonding","bonded","unbonding"]}},{"ix":137,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":16,"t":96,"tokens":[1358,8021,1753,5634],"delegation":[358,7021,753,4634],"delegatorTokens":9999999945233,"jailed":[1000000000000041,1000000000000035,null,1000000000000029],"status":["unbonding","unbonding","bonded","unbonding"]}},{"ix":138,"action":{"kind":"Deliver","chain":"provider","numPackets":4},"partialState":{"h":16,"t":96,"tokens":[1358,8021,1753,5634],"delegation":[358,7021,753,4634],"delegatorTokens":9999999945233,"jailed":[1000000000000041,1000000000000035,null,1000000000000029],"status":["unbonding","unbonding","bonded","unbonding"]}},{"ix":139,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":17,"t":102,"tokens":[1358,8021,1753,5634],"delegation":[358,7021,753,4634],"delegatorTokens":9999999948799,"jailed":[1000000000000041,1000000000000035,null,1000000000000029],"status":["unbonding","unbonding","bonded","unbonding"]}},{"ix":140,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":141,"action":{"kind":"Undelegate","val":3,"amt":1742},"partialState":{"h":17,"t":102,"tokens":[1358,8021,1753,3892],"delegation":[358,7021,753,2892],"delegatorTokens":9999999948799}},{"ix":142,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":16,"t":96,"consumerPower":[null,null,9344,null],"outstandingDowntime":[false,false,false,false]}},{"ix":143,"action":{"kind":"Delegate","val":3,"amt":3144},"partialState":{"h":17,"t":102,"tokens":[1358,8021,1753,7036],"delegation":[358,7021,753,6036],"delegatorTokens":9999999945655}},{"ix":144,"action":{"kind":"Deliver","chain":"consumer","numPackets":1},"partialState":{"h":16,"t":96,"consumerPower":[null,null,9344,null],"outstandingDowntime":[false,false,false,false]}},{"ix":145,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":17,"t":102,"consumerPower":[null,null,8535,null],"outstandingDowntime":[false,false,false,false]}},{"ix":146,"action":{"kind":"Delegate","val":3,"amt":3979},"partialState":{"h":17,"t":102,"tokens":[1358,8021,1753,11015],"delegation":[358,7021,753,10015],"delegatorTokens":9999999941676}},{"ix":147,"action":{"kind":"Delegate","val":1,"amt":1376},"partialState":{"h":17,"t":102,"tokens":[1358,9397,1753,11015],"delegation":[358,8397,753,10015],"delegatorTokens":9999999940300}},{"ix":148,"action":{"kind":"Undelegate","val":2,"amt":3601},"partialState":{"h":17,"t":102,"tokens":[1358,9397,1753,11015],"delegation":[358,8397,753,10015],"delegatorTokens":9999999940300}},{"ix":149,"action":{"kind":"Delegate","val":3,"amt":3168},"partialState":{"h":17,"t":102,"tokens":[1358,9397,1753,14183],"delegation":[358,8397,753,13183],"delegatorTokens":9999999937132}},{"ix":150,"action":{"kind":"Deliver","chain":"consumer","numPackets":3},"partialState":{"h":17,"t":102,"consumerPower":[null,null,8535,null],"outstandingDowntime":[false,false,false,false]}},{"ix":151,"action":{"kind":"Delegate","val":1,"amt":3016},"partialState":{"h":17,"t":102,"tokens":[1358,12413,1753,14183],"delegation":[358,11413,753,13183],"delegatorTokens":9999999934116}},{"ix":152,"action":{"kind":"Undelegate","val":0,"amt":2915},"partialState":{"h":17,"t":102,"tokens":[1358,12413,1753,14183],"delegation":[358,11413,753,13183],"delegatorTokens":9999999934116}},{"ix":153,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":154,"action":{"kind":"Delegate","val":3,"amt":1617},"partialState":{"h":17,"t":102,"tokens":[1358,12413,1753,15800],"delegation":[358,11413,753,14800],"delegatorTokens":9999999932499}},{"ix":155,"action":{"kind":"Deliver","chain":"consumer","numPackets":4},"partialState":{"h":17,"t":102,"consumerPower":[null,null,8535,null],"outstandingDowntime":[false,false,false,false]}},{"ix":156,"action":{"kind":"Deliver","chain":"provider","numPackets":1},"partialState":{"h":17,"t":102,"tokens":[1358,12413,1753,15800],"delegation":[358,11413,753,14800],"delegatorTokens":9999999932499,"jailed":[1000000000000041,1000000000000035,null,1000000000000029],"status":["unbonding","unbonding","bonded","unbonding"]}},{"ix":157,"action":{"kind":"Undelegate","val":3,"amt":2583},"partialState":{"h":17,"t":102,"tokens":[1358,12413,1753,13217],"delegation":[358,11413,753,12217],"delegatorTokens":9999999932499}},{"ix":158,"action":{"kind":"Deliver","chain":"provider","numPackets":5},"partialState":{"h":17,"t":102,"tokens":[1358,12413,1753,13217],"delegation":[358,11413,753,12217],"delegatorTokens":9999999932499,"jailed":[1000000000000041,1000000000000035,null,1000000000000029],"status":["unbonding","unbonding","bonded","unbonding"]}},{"ix":159,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":18,"t":108,"consumerPower":[null,null,1753,null],"outstandingDowntime":[false,false,false,false]}},{"ix":160,"action":{"kind":"Deliver","chain":"provider","numPackets":1},"partialState":{"h":17,"t":102,"tokens":[1358,12413,1753,13217],"delegation":[358,11413,753,12217],"delegatorTokens":9999999932499,"jailed":[1000000000000041,1000000000000035,null,1000000000000029],"status":["unbonding","unbonding","bonded","unbonding"]}},{"ix":161,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":19,"t":114,"consumerPower":[null,null,1753,null],"outstandingDowntime":[false,false,false,false]}},{"ix":162,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":163,"action":{"kind":"Deliver","chain":"consumer","numPackets":2},"partialState":{"h":19,"t":114,"consumerPower":[null,null,1753,null],"outstandingDowntime":[false,false,false,false]}},{"ix":164,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":165,"action":{"kind":"Delegate","val":1,"amt":4770},"partialState":{"h":17,"t":102,"tokens":[1358,17183,1753,13217],"delegation":[358,16183,753,12217],"delegatorTokens":9999999927729}},{"ix":166,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":20,"t":120,"consumerPower":[null,null,1753,null],"outstandingDowntime":[false,false,false,false]}},{"ix":167,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":168,"action":{"kind":"Undelegate","val":2,"amt":1168},"partialState":{"h":17,"t":102,"tokens":[1358,17183,1753,13217],"delegation":[358,16183,753,12217],"delegatorTokens":9999999927729}},{"ix":169,"action":{"kind":"Undelegate","val":2,"amt":1126},"partialState":{"h":17,"t":102,"tokens":[1358,17183,1753,13217],"delegation":[358,16183,753,12217],"delegatorTokens":9999999927729}},{"ix":170,"action":{"kind":"Delegate","val":2,"amt":3076},"partialState":{"h":17,"t":102,"tokens":[1358,17183,4829,13217],"delegation":[358,16183,3829,12217],"delegatorTokens":9999999924653}},{"ix":171,"action":{"kind":"Delegate","val":2,"amt":3038},"partialState":{"h":17,"t":102,"tokens":[1358,17183,7867,13217],"delegation":[358,16183,6867,12217],"delegatorTokens":9999999921615}},{"ix":172,"action":{"kind":"Undelegate","val":0,"amt":4833},"partialState":{"h":17,"t":102,"tokens":[1358,17183,7867,13217],"delegation":[358,16183,6867,12217],"delegatorTokens":9999999921615}},{"ix":173,"action":{"kind":"Delegate","val":0,"amt":4977},"partialState":{"h":17,"t":102,"tokens":[6335,17183,7867,13217],"delegation":[5335,16183,6867,12217],"delegatorTokens":9999999916638}},{"ix":174,"action":{"kind":"Undelegate","val":0,"amt":3894},"partialState":{"h":17,"t":102,"tokens":[2441,17183,7867,13217],"delegation":[1441,16183,6867,12217],"delegatorTokens":9999999916638}},{"ix":175,"action":{"kind":"Undelegate","val":3,"amt":4905},"partialState":{"h":17,"t":102,"tokens":[2441,17183,7867,8312],"delegation":[1441,16183,6867,7312],"delegatorTokens":9999999916638}},{"ix":176,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":177,"action":{"kind":"Undelegate","val":3,"amt":3253},"partialState":{"h":17,"t":102,"tokens":[2441,17183,7867,5059],"delegation":[1441,16183,6867,4059],"delegatorTokens":9999999916638}},{"ix":178,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":21,"t":126,"consumerPower":[null,null,1753,null],"outstandingDowntime":[false,false,false,false]}},{"ix":179,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":22,"t":132,"consumerPower":[null,null,1753,null],"outstandingDowntime":[false,false,false,false]}},{"ix":180,"action":{"kind":"Delegate","val":2,"amt":4303},"partialState":{"h":17,"t":102,"tokens":[2441,17183,12170,5059],"delegation":[1441,16183,11170,4059],"delegatorTokens":9999999912335}},{"ix":181,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":182,"action":{"kind":"Deliver","chain":"consumer","numPackets":3},"partialState":{"h":22,"t":132,"consumerPower":[null,null,1753,null],"outstandingDowntime":[false,false,false,false]}},{"ix":183,"action":{"kind":"Deliver","chain":"provider","numPackets":3},"partialState":{"h":17,"t":102,"tokens":[2441,17183,12170,5059],"delegation":[1441,16183,11170,4059],"delegatorTokens":9999999912335,"jailed":[1000000000000041,1000000000000035,null,1000000000000029],"status":["unbonding","unbonding","bonded","unbonding"]}},{"ix":184,"action":{"kind":"Delegate","val":1,"amt":4181},"partialState":{"h":17,"t":102,"tokens":[2441,21364,12170,5059],"delegation":[1441,20364,11170,4059],"delegatorTokens":9999999908154}},{"ix":185,"action":{"kind":"Deliver","chain":"provider","numPackets":2},"partialState":{"h":17,"t":102,"tokens":[2441,21364,12170,5059],"delegation":[1441,20364,11170,4059],"delegatorTokens":9999999908154,"jailed":[1000000000000041,1000000000000035,null,1000000000000029],"status":["unbonding","unbonding","bonded","unbonding"]}},{"ix":186,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":18,"t":108,"tokens":[2441,21364,12170,5059],"delegation":[1441,20364,11170,4059],"delegatorTokens":9999999908154,"jailed":[1000000000000041,1000000000000035,null,1000000000000029],"status":["unbonding","unbonding","bonded","unbonding"]}},{"ix":187,"action":{"kind":"Delegate","val":0,"amt":1569},"partialState":{"h":18,"t":108,"tokens":[4010,21364,12170,5059],"delegation":[3010,20364,11170,4059],"delegatorTokens":9999999906585}},{"ix":188,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":19,"t":114,"tokens":[4010,21364,12170,5059],"delegation":[3010,20364,11170,4059],"delegatorTokens":9999999908050,"jailed":[1000000000000041,1000000000000035,null,1000000000000029],"status":["unbonding","unbonding","bonded","unbonded"]}},{"ix":189,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":190,"action":{"kind":"Deliver","chain":"provider","numPackets":4},"partialState":{"h":19,"t":114,"tokens":[4010,21364,12170,5059],"delegation":[3010,20364,11170,4059],"delegatorTokens":9999999908050,"jailed":[1000000000000041,1000000000000035,null,1000000000000029],"status":["unbonding","unbonding","bonded","unbonded"]}},{"ix":191,"action":{"kind":"Delegate","val":2,"amt":3482},"partialState":{"h":19,"t":114,"tokens":[4010,21364,15652,5059],"delegation":[3010,20364,14652,4059],"delegatorTokens":9999999904568}},{"ix":192,"action":{"kind":"Delegate","val":3,"amt":1018},"partialState":{"h":19,"t":114,"tokens":[4010,21364,15652,6077],"delegation":[3010,20364,14652,5077],"delegatorTokens":9999999903550}},{"ix":193,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":20,"t":120,"tokens":[4010,21364,15652,6077],"delegation":[3010,20364,14652,5077],"delegatorTokens":9999999908585,"jailed":[1000000000000041,1000000000000035,null,1000000000000029],"status":["unbonding","unbonded","bonded","unbonded"]}},{"ix":194,"action":{"kind":"Delegate","val":2,"amt":3751},"partialState":{"h":20,"t":120,"tokens":[4010,21364,19403,6077],"delegation":[3010,20364,18403,5077],"delegatorTokens":9999999904834}},{"ix":195,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":23,"t":138,"consumerPower":[null,null,1753,null],"outstandingDowntime":[false,false,false,false]}},{"ix":196,"action":{"kind":"Undelegate","val":0,"amt":4556},"partialState":{"h":20,"t":120,"tokens":[4010,21364,19403,6077],"delegation":[3010,20364,18403,5077],"delegatorTokens":9999999904834}},{"ix":197,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":198,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":199,"action":{"kind":"Delegate","val":1,"amt":3983},"partialState":{"h":20,"t":120,"tokens":[4010,25347,19403,6077],"delegation":[3010,24347,18403,5077],"delegatorTokens":9999999900851}}],"events":["send_vsc_not_because_change","send_vsc_without_downtime_ack","send_downtime_slash_request","send_vsc_without_downtime_ack","insufficient_shares","send_downtime_slash_request","insufficient_shares","send_downtime_slash_request","send_vsc_without_downtime_ack","insufficient_shares","insufficient_shares","more_than_one_third_val_power_change","rebond_unval","receive_downtime_slash_request","jail","send_vsc_with_downtime_ack","insufficient_shares","insufficient_shares","insufficient_shares","receive_downtime_slash_request","jail","send_vsc_with_downtime_ack","consumer_del_val","consumer_update_val","consumer_add_val","insufficient_shares","more_than_one_third_val_power_change","receive_downtime_slash_request","jail","send_vsc_with_downtime_ack","insufficient_shares","send_vsc_without_downtime_ack","receive_downtime_slash_ack","receive_downtime_slash_ack","receive_downtime_slash_ack","send_vsc_without_downtime_ack","insufficient_shares","consumer_del_val","consumer_del_val","consumer_del_val","consumer_add_val","consumer_send_maturation","send_vsc_without_downtime_ack","insufficient_shares","insufficient_shares","consumer_send_maturation","consumer_send_maturation","consumer_update_val","insufficient_shares","insufficient_shares","set_undel_hold_false","set_undel_hold_false","set_undel_hold_false","send_vsc_without_downtime_ack","consumer_send_maturation","consumer_send_maturation","consumer_send_maturation","consumer_send_maturation","insufficient_shares","complete_undel_in_endblock","send_vsc_not_because_change","send_vsc_without_downtime_ack","insufficient_shares","complete_undel_in_endblock","send_vsc_without_downtime_ack","complete_undel_in_endblock","consumer_update_val","insufficient_shares","insufficient_shares","consumer_update_val","insufficient_shares","insufficient_shares","insufficient_shares","consumer_send_maturation","set_unval_hold_false","set_undel_hold_false","set_undel_hold_false","set_undel_hold_false","set_unval_hold_false","set_unval_hold_false","send_vsc_without_downtime_ack","complete_unval_in_endblock","complete_undel_in_endblock","complete_unval_in_endblock","complete_undel_in_endblock","send_vsc_without_downtime_ack","insufficient_shares"]},{"meta":{"commit":"7ffd0c04e4205cbc9caf212abfe6c59ee43153bf"},"constants":{"P":"provider","C":"consumer","UNBONDING_SECONDS_P":70,"UNBONDING_SECONDS_C":50,"TRUSTING_SECONDS":49,"NUM_VALIDATORS":4,"MAX_VALIDATORS":2,"SLASH_DOUBLESIGN":0,"SLASH_DOWNTIME":0,"JAIL_SECONDS":999999999999999,"BLOCK_SECONDS":6,"INITIAL_DELEGATOR_TOKENS":10000000000000,"DELEGATE_AMT_MIN":1000,"DELEGATE_AMT_MAX":5000,"UNDELEGATE_AMT_MIN":1000,"UNDELEGATE_AMT_MAX":5000,"ISDOWNTIME_PROBABILITY":0.5,"MAX_NUM_PACKETS_FOR_DELIVER":6},"actions":[{"ix":0,"action":{"kind":"Delegate","val":3,"amt":4669},"partialState":{"h":1,"t":6,"tokens":[5000,4000,3000,6669],"delegation":[4000,3000,2000,5669],"delegatorTokens":9999999995331}},{"ix":1,"action":{"kind":"Deliver","chain":"provider","numPackets":5},"partialState":{"h":1,"t":6,"tokens":[5000,4000,3000,6669],"delegation":[4000,3000,2000,5669],"delegatorTokens":9999999995331,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":2,"action":{"kind":"ConsumerSlash","val":3,"infractionHeight":0,"isDowntime":false},"partialState":{"h":1,"t":6,"outstandingDowntime":[false,false,false,false]}},{"ix":3,"action":{"kind":"Delegate","val":0,"amt":1401},"partialState":{"h":1,"t":6,"tokens":[6401,4000,3000,6669],"delegation":[5401,3000,2000,5669],"delegatorTokens":9999999993930}},{"ix":4,"action":{"kind":"Deliver","chain":"provider","numPackets":5},"partialState":{"h":1,"t":6,"tokens":[6401,4000,3000,6669],"delegation":[5401,3000,2000,5669],"delegatorTokens":9999999993930,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":5,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":6,"action":{"kind":"Deliver","chain":"consumer","numPackets":6},"partialState":{"h":1,"t":6,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":7,"action":{"kind":"Undelegate","val":0,"amt":4949},"partialState":{"h":1,"t":6,"tokens":[1452,4000,3000,6669],"delegation":[452,3000,2000,5669],"delegatorTokens":9999999993930}},{"ix":8,"action":{"kind":"Deliver","chain":"provider","numPackets":4},"partialState":{"h":1,"t":6,"tokens":[1452,4000,3000,6669],"delegation":[452,3000,2000,5669],"delegatorTokens":9999999993930,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":9,"action":{"kind":"Deliver","chain":"provider","numPackets":3},"partialState":{"h":1,"t":6,"tokens":[1452,4000,3000,6669],"delegation":[452,3000,2000,5669],"delegatorTokens":9999999993930,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":10,"action":{"kind":"Undelegate","val":2,"amt":2587},"partialState":{"h":1,"t":6,"tokens":[1452,4000,3000,6669],"delegation":[452,3000,2000,5669],"delegatorTokens":9999999993930}},{"ix":11,"action":{"kind":"Undelegate","val":3,"amt":3550},"partialState":{"h":1,"t":6,"tokens":[1452,4000,3000,3119],"delegation":[452,3000,2000,2119],"delegatorTokens":9999999993930}},{"ix":12,"action":{"kind":"Undelegate","val":3,"amt":4375},"partialState":{"h":1,"t":6,"tokens":[1452,4000,3000,3119],"delegation":[452,3000,2000,2119],"delegatorTokens":9999999993930}},{"ix":13,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":2,"t":12,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":14,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":15,"action":{"kind":"Delegate","val":1,"amt":1470},"partialState":{"h":1,"t":6,"tokens":[1452,5470,3000,3119],"delegation":[452,4470,2000,2119],"delegatorTokens":9999999992460}},{"ix":16,"action":{"kind":"Undelegate","val":3,"amt":1082},"partialState":{"h":1,"t":6,"tokens":[1452,5470,3000,2037],"delegation":[452,4470,2000,1037],"delegatorTokens":9999999992460}},{"ix":17,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":2,"t":12,"tokens":[1452,5470,3000,2037],"delegation":[452,4470,2000,1037],"delegatorTokens":9999999992460,"jailed":[null,null,null,null],"status":["unbonding","bonded","bonded","unbonded"]}},{"ix":18,"action":{"kind":"Delegate","val":1,"amt":2324},"partialState":{"h":2,"t":12,"tokens":[1452,7794,3000,2037],"delegation":[452,6794,2000,1037],"delegatorTokens":9999999990136}},{"ix":19,"action":{"kind":"ConsumerSlash","val":3,"infractionHeight":1,"isDowntime":true},"partialState":{"h":2,"t":12,"outstandingDowntime":[false,false,false,true]}},{"ix":20,"action":{"kind":"Undelegate","val":3,"amt":1790},"partialState":{"h":2,"t":12,"tokens":[1452,7794,3000,2037],"delegation":[452,6794,2000,1037],"delegatorTokens":9999999990136}},{"ix":21,"action":{"kind":"ConsumerSlash","val":3,"infractionHeight":0,"isDowntime":false},"partialState":{"h":2,"t":12,"outstandingDowntime":[false,false,false,true]}},{"ix":22,"action":{"kind":"Deliver","chain":"consumer","numPackets":5},"partialState":{"h":2,"t":12,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,false,false,true]}},{"ix":23,"action":{"kind":"Delegate","val":3,"amt":3858},"partialState":{"h":2,"t":12,"tokens":[1452,7794,3000,5895],"delegation":[452,6794,2000,4895],"delegatorTokens":9999999986278}},{"ix":24,"action":{"kind":"Deliver","chain":"provider","numPackets":6},"partialState":{"h":2,"t":12,"tokens":[1452,7794,3000,5895],"delegation":[452,6794,2000,4895],"delegatorTokens":9999999986278,"jailed":[null,null,null,null],"status":["unbonding","bonded","bonded","unbonded"]}},{"ix":25,"action":{"kind":"Undelegate","val":2,"amt":3483},"partialState":{"h":2,"t":12,"tokens":[1452,7794,3000,5895],"delegation":[452,6794,2000,4895],"delegatorTokens":9999999986278}},{"ix":26,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":3,"t":18,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,false,false,true]}},{"ix":27,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":3,"t":18,"tokens":[1452,7794,3000,5895],"delegation":[452,6794,2000,4895],"delegatorTokens":9999999986278,"jailed":[null,null,null,null],"status":["unbonding","bonded","unbonding","bonded"]}},{"ix":28,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":4,"t":24,"tokens":[1452,7794,3000,5895],"delegation":[452,6794,2000,4895],"delegatorTokens":9999999986278,"jailed":[null,null,null,null],"status":["unbonding","bonded","unbonding","bonded"]}},{"ix":29,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":30,"action":{"kind":"Delegate","val":3,"amt":2208},"partialState":{"h":4,"t":24,"tokens":[1452,7794,3000,8103],"delegation":[452,6794,2000,7103],"delegatorTokens":9999999984070}},{"ix":31,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":4,"t":24,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,false,false,true]}},{"ix":32,"action":{"kind":"ConsumerSlash","val":1,"infractionHeight":1,"isDowntime":true},"partialState":{"h":4,"t":24,"outstandingDowntime":[false,true,false,true]}},{"ix":33,"action":{"kind":"Delegate","val":3,"amt":4623},"partialState":{"h":4,"t":24,"tokens":[1452,7794,3000,12726],"delegation":[452,6794,2000,11726],"delegatorTokens":9999999979447}},{"ix":34,"action":{"kind":"Delegate","val":1,"amt":1524},"partialState":{"h":4,"t":24,"tokens":[1452,9318,3000,12726],"delegation":[452,8318,2000,11726],"delegatorTokens":9999999977923}},{"ix":35,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":5,"t":30,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,true,false,true]}},{"ix":36,"action":{"kind":"Deliver","chain":"consumer","numPackets":3},"partialState":{"h":5,"t":30,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,true,false,true]}},{"ix":37,"action":{"kind":"Undelegate","val":2,"amt":4705},"partialState":{"h":4,"t":24,"tokens":[1452,9318,3000,12726],"delegation":[452,8318,2000,11726],"delegatorTokens":9999999977923}},{"ix":38,"action":{"kind":"Delegate","val":2,"amt":3153},"partialState":{"h":4,"t":24,"tokens":[1452,9318,6153,12726],"delegation":[452,8318,5153,11726],"delegatorTokens":9999999974770}},{"ix":39,"action":{"kind":"ConsumerSlash","val":0,"infractionHeight":0,"isDowntime":true},"partialState":{"h":5,"t":30,"outstandingDowntime":[true,true,false,true]}},{"ix":40,"action":{"kind":"Deliver","chain":"provider","numPackets":6},"partialState":{"h":4,"t":24,"tokens":[1452,9318,6153,12726],"delegation":[452,8318,5153,11726],"delegatorTokens":9999999974770,"jailed":[null,null,null,null],"status":["unbonding","bonded","unbonding","bonded"]}},{"ix":41,"action":{"kind":"Deliver","chain":"consumer","numPackets":1},"partialState":{"h":5,"t":30,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[true,true,false,true]}},{"ix":42,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":43,"action":{"kind":"Undelegate","val":1,"amt":1353},"partialState":{"h":4,"t":24,"tokens":[1452,7965,6153,12726],"delegation":[452,6965,5153,11726],"delegatorTokens":9999999974770}},{"ix":44,"action":{"kind":"Undelegate","val":3,"amt":2397},"partialState":{"h":4,"t":24,"tokens":[1452,7965,6153,10329],"delegation":[452,6965,5153,9329],"delegatorTokens":9999999974770}},{"ix":45,"action":{"kind":"Delegate","val":3,"amt":3409},"partialState":{"h":4,"t":24,"tokens":[1452,7965,6153,13738],"delegation":[452,6965,5153,12738],"delegatorTokens":9999999971361}},{"ix":46,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":47,"action":{"kind":"Undelegate","val":0,"amt":1656},"partialState":{"h":4,"t":24,"tokens":[1452,7965,6153,13738],"delegation":[452,6965,5153,12738],"delegatorTokens":9999999971361}},{"ix":48,"action":{"kind":"Undelegate","val":2,"amt":1321},"partialState":{"h":4,"t":24,"tokens":[1452,7965,4832,13738],"delegation":[452,6965,3832,12738],"delegatorTokens":9999999971361}},{"ix":49,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":5,"t":30,"tokens":[1452,7965,4832,13738],"delegation":[452,6965,3832,12738],"delegatorTokens":9999999971361,"jailed":[null,null,null,1000000000000023],"status":["unbonding","bonded","unbonding","bonded"]}},{"ix":50,"action":{"kind":"Delegate","val":0,"amt":4269},"partialState":{"h":5,"t":30,"tokens":[5721,7965,4832,13738],"delegation":[4721,6965,3832,12738],"delegatorTokens":9999999967092}},{"ix":51,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":52,"action":{"kind":"Undelegate","val":2,"amt":2128},"partialState":{"h":5,"t":30,"tokens":[5721,7965,2704,13738],"delegation":[4721,6965,1704,12738],"delegatorTokens":9999999967092}},{"ix":53,"action":{"kind":"Delegate","val":0,"amt":2198},"partialState":{"h":5,"t":30,"tokens":[7919,7965,2704,13738],"delegation":[6919,6965,1704,12738],"delegatorTokens":9999999964894}},{"ix":54,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":55,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":6,"t":36,"consumerPower":[null,7794,null,5895],"outstandingDowntime":[true,true,false,true]}},{"ix":56,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":6,"t":36,"tokens":[7919,7965,2704,13738],"delegation":[6919,6965,1704,12738],"delegatorTokens":9999999964894,"jailed":[null,null,null,1000000000000023],"status":["bonded","bonded","unbonding","unbonding"]}},{"ix":57,"action":{"kind":"Deliver","chain":"consumer","numPackets":4},"partialState":{"h":6,"t":36,"consumerPower":[null,7794,null,5895],"outstandingDowntime":[true,true,false,false]}},{"ix":58,"action":{"kind":"Deliver","chain":"provider","numPackets":2},"partialState":{"h":6,"t":36,"tokens":[7919,7965,2704,13738],"delegation":[6919,6965,1704,12738],"delegatorTokens":9999999964894,"jailed":[null,null,null,1000000000000023],"status":["bonded","bonded","unbonding","unbonding"]}},{"ix":59,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":7,"t":42,"tokens":[7919,7965,2704,13738],"delegation":[6919,6965,1704,12738],"delegatorTokens":9999999964894,"jailed":[null,1000000000000035,null,1000000000000023],"status":["bonded","bonded","unbonding","unbonding"]}},{"ix":60,"action":{"kind":"Deliver","chain":"provider","numPackets":4},"partialState":{"h":7,"t":42,"tokens":[7919,7965,2704,13738],"delegation":[6919,6965,1704,12738],"delegatorTokens":9999999964894,"jailed":[null,1000000000000035,null,1000000000000023],"status":["bonded","bonded","unbonding","unbonding"]}},{"ix":61,"action":{"kind":"Delegate","val":2,"amt":4637},"partialState":{"h":7,"t":42,"tokens":[7919,7965,7341,13738],"delegation":[6919,6965,6341,12738],"delegatorTokens":9999999960257}},{"ix":62,"action":{"kind":"Deliver","chain":"consumer","numPackets":1},"partialState":{"h":6,"t":36,"consumerPower":[null,7794,null,5895],"outstandingDowntime":[true,true,false,false]}},{"ix":63,"action":{"kind":"Undelegate","val":0,"amt":4238},"partialState":{"h":7,"t":42,"tokens":[3681,7965,7341,13738],"delegation":[2681,6965,6341,12738],"delegatorTokens":9999999960257}},{"ix":64,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":8,"t":48,"tokens":[3681,7965,7341,13738],"delegation":[2681,6965,6341,12738],"delegatorTokens":9999999960257,"jailed":[null,1000000000000035,null,1000000000000023],"status":["bonded","unbonding","bonded","unbonding"]}},{"ix":65,"action":{"kind":"Delegate","val":3,"amt":1695},"partialState":{"h":8,"t":48,"tokens":[3681,7965,7341,15433],"delegation":[2681,6965,6341,14433],"delegatorTokens":9999999958562}},{"ix":66,"action":{"kind":"Delegate","val":3,"amt":1037},"partialState":{"h":8,"t":48,"tokens":[3681,7965,7341,16470],"delegation":[2681,6965,6341,15470],"delegatorTokens":9999999957525}},{"ix":67,"action":{"kind":"Deliver","chain":"consumer","numPackets":5},"partialState":{"h":6,"t":36,"consumerPower":[null,7794,null,5895],"outstandingDowntime":[true,true,false,false]}},{"ix":68,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":9,"t":54,"tokens":[3681,7965,7341,16470],"delegation":[2681,6965,6341,15470],"delegatorTokens":9999999957525,"jailed":[null,1000000000000035,null,1000000000000023],"status":["bonded","unbonding","bonded","unbonding"]}},{"ix":69,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":7,"t":42,"consumerPower":[7919,7965,null,null],"outstandingDowntime":[true,true,false,false]}},{"ix":70,"action":{"kind":"Deliver","chain":"consumer","numPackets":6},"partialState":{"h":7,"t":42,"consumerPower":[7919,7965,null,null],"outstandingDowntime":[true,false,false,false]}},{"ix":71,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":8,"t":48,"consumerPower":[3681,null,7341,null],"outstandingDowntime":[true,false,false,false]}},{"ix":72,"action":{"kind":"Deliver","chain":"provider","numPackets":2},"partialState":{"h":9,"t":54,"tokens":[3681,7965,7341,16470],"delegation":[2681,6965,6341,15470],"delegatorTokens":9999999957525,"jailed":[null,1000000000000035,null,1000000000000023],"status":["bonded","unbonding","bonded","unbonding"]}},{"ix":73,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":74,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":75,"action":{"kind":"Delegate","val":2,"amt":2798},"partialState":{"h":9,"t":54,"tokens":[3681,7965,10139,16470],"delegation":[2681,6965,9139,15470],"delegatorTokens":9999999954727}},{"ix":76,"action":{"kind":"Undelegate","val":3,"amt":1983},"partialState":{"h":9,"t":54,"tokens":[3681,7965,10139,14487],"delegation":[2681,6965,9139,13487],"delegatorTokens":9999999954727}},{"ix":77,"action":{"kind":"Delegate","val":3,"amt":1584},"partialState":{"h":9,"t":54,"tokens":[3681,7965,10139,16071],"delegation":[2681,6965,9139,15071],"delegatorTokens":9999999953143}},{"ix":78,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":9,"t":54,"consumerPower":[3681,null,7341,null],"outstandingDowntime":[true,false,false,false]}},{"ix":79,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":80,"action":{"kind":"Deliver","chain":"provider","numPackets":2},"partialState":{"h":9,"t":54,"tokens":[3681,7965,10139,16071],"delegation":[2681,6965,9139,15071],"delegatorTokens":9999999953143,"jailed":[null,1000000000000035,null,1000000000000023],"status":["bonded","unbonding","bonded","unbonding"]}},{"ix":81,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":82,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":10,"t":60,"tokens":[3681,7965,10139,16071],"delegation":[2681,6965,9139,15071],"delegatorTokens":9999999953143,"jailed":[1000000000000053,1000000000000035,null,1000000000000023],"status":["bonded","unbonding","bonded","unbonding"]}},{"ix":83,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":10,"t":60,"consumerPower":[3681,null,7341,null],"outstandingDowntime":[true,false,false,false]}},{"ix":84,"action":{"kind":"Delegate","val":0,"amt":2691},"partialState":{"h":10,"t":60,"tokens":[6372,7965,10139,16071],"delegation":[5372,6965,9139,15071],"delegatorTokens":9999999950452}},{"ix":85,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":86,"action":{"kind":"Deliver","chain":"consumer","numPackets":6},"partialState":{"h":10,"t":60,"consumerPower":[3681,null,7341,null],"outstandingDowntime":[true,false,false,false]}},{"ix":87,"action":{"kind":"Undelegate","val":2,"amt":4424},"partialState":{"h":10,"t":60,"tokens":[6372,7965,5715,16071],"delegation":[5372,6965,4715,15071],"delegatorTokens":9999999950452}},{"ix":88,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":11,"t":66,"tokens":[6372,7965,5715,16071],"delegation":[5372,6965,4715,15071],"delegatorTokens":9999999950452,"jailed":[1000000000000053,1000000000000035,null,1000000000000023],"status":["unbonding","unbonding","bonded","unbonding"]}},{"ix":89,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":90,"action":{"kind":"Deliver","chain":"provider","numPackets":5},"partialState":{"h":11,"t":66,"tokens":[6372,7965,5715,16071],"delegation":[5372,6965,4715,15071],"delegatorTokens":9999999950452,"jailed":[1000000000000053,1000000000000035,null,1000000000000023],"status":["unbonding","unbonding","bonded","unbonding"]}},{"ix":91,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":12,"t":72,"tokens":[6372,7965,5715,16071],"delegation":[5372,6965,4715,15071],"delegatorTokens":9999999950452,"jailed":[1000000000000053,1000000000000035,null,1000000000000023],"status":["unbonding","unbonding","bonded","unbonding"]}},{"ix":92,"action":{"kind":"Deliver","chain":"consumer","numPackets":2},"partialState":{"h":10,"t":60,"consumerPower":[3681,null,7341,null],"outstandingDowntime":[false,false,false,false]}},{"ix":93,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":11,"t":66,"consumerPower":[null,null,5715,null],"outstandingDowntime":[false,false,false,false]}},{"ix":94,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":95,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":13,"t":78,"tokens":[6372,7965,5715,16071],"delegation":[5372,6965,4715,15071],"delegatorTokens":9999999950452,"jailed":[1000000000000053,1000000000000035,null,1000000000000023],"status":["unbonding","unbonding","bonded","unbonding"]}},{"ix":96,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":97,"action":{"kind":"Undelegate","val":1,"amt":4411},"partialState":{"h":13,"t":78,"tokens":[6372,3554,5715,16071],"delegation":[5372,2554,4715,15071],"delegatorTokens":9999999950452}},{"ix":98,"action":{"kind":"Undelegate","val":3,"amt":2882},"partialState":{"h":13,"t":78,"tokens":[6372,3554,5715,13189],"delegation":[5372,2554,4715,12189],"delegatorTokens":9999999950452}},{"ix":99,"action":{"kind":"Deliver","chain":"consumer","numPackets":3},"partialState":{"h":11,"t":66,"consumerPower":[null,null,5715,null],"outstandingDowntime":[false,false,false,false]}},{"ix":100,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":12,"t":72,"consumerPower":[null,null,5715,null],"outstandingDowntime":[false,false,false,false]}},{"ix":101,"action":{"kind":"Deliver","chain":"provider","numPackets":2},"partialState":{"h":13,"t":78,"tokens":[6372,3554,5715,13189],"delegation":[5372,2554,4715,12189],"delegatorTokens":9999999950452,"jailed":[1000000000000053,1000000000000035,null,1000000000000023],"status":["unbonding","unbonding","bonded","unbonding"]}},{"ix":102,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":103,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":13,"t":78,"consumerPower":[null,null,5715,null],"outstandingDowntime":[false,false,false,false]}},{"ix":104,"action":{"kind":"Delegate","val":2,"amt":3179},"partialState":{"h":13,"t":78,"tokens":[6372,3554,8894,13189],"delegation":[5372,2554,7894,12189],"delegatorTokens":9999999947273}},{"ix":105,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":14,"t":84,"consumerPower":[null,null,5715,null],"outstandingDowntime":[false,false,false,false]}},{"ix":106,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":107,"action":{"kind":"Deliver","chain":"provider","numPackets":6},"partialState":{"h":13,"t":78,"tokens":[6372,3554,8894,13189],"delegation":[5372,2554,7894,12189],"delegatorTokens":9999999947273,"jailed":[1000000000000053,1000000000000035,null,1000000000000023],"status":["unbonding","unbonding","bonded","unbonding"]}},{"ix":108,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":109,"action":{"kind":"Delegate","val":3,"amt":1874},"partialState":{"h":13,"t":78,"tokens":[6372,3554,8894,15063],"delegation":[5372,2554,7894,14063],"delegatorTokens":9999999945399}},{"ix":110,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":111,"action":{"kind":"Delegate","val":0,"amt":1749},"partialState":{"h":13,"t":78,"tokens":[8121,3554,8894,15063],"delegation":[7121,2554,7894,14063],"delegatorTokens":9999999943650}},{"ix":112,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":113,"action":{"kind":"Deliver","chain":"consumer","numPackets":5},"partialState":{"h":14,"t":84,"consumerPower":[null,null,5715,null],"outstandingDowntime":[false,false,false,false]}},{"ix":114,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":115,"action":{"kind":"Undelegate","val":2,"amt":2857},"partialState":{"h":13,"t":78,"tokens":[8121,3554,6037,15063],"delegation":[7121,2554,5037,14063],"delegatorTokens":9999999943650}},{"ix":116,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":15,"t":90,"consumerPower":[null,null,5715,null],"outstandingDowntime":[false,false,false,false]}},{"ix":117,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":16,"t":96,"consumerPower":[null,null,5715,null],"outstandingDowntime":[false,false,false,false]}},{"ix":118,"action":{"kind":"Delegate","val":3,"amt":2675},"partialState":{"h":13,"t":78,"tokens":[8121,3554,6037,17738],"delegation":[7121,2554,5037,16738],"delegatorTokens":9999999940975}},{"ix":119,"action":{"kind":"Deliver","chain":"consumer","numPackets":2},"partialState":{"h":16,"t":96,"consumerPower":[null,null,5715,null],"outstandingDowntime":[false,false,false,false]}},{"ix":120,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":121,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":122,"action":{"kind":"Delegate","val":0,"amt":2510},"partialState":{"h":13,"t":78,"tokens":[10631,3554,6037,17738],"delegation":[9631,2554,5037,16738],"delegatorTokens":9999999938465}},{"ix":123,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":14,"t":84,"tokens":[10631,3554,6037,17738],"delegation":[9631,2554,5037,16738],"delegatorTokens":9999999938465,"jailed":[1000000000000053,1000000000000035,null,1000000000000023],"status":["unbonding","unbonding","bonded","unbonding"]}},{"ix":124,"action":{"kind":"Delegate","val":3,"amt":1947},"partialState":{"h":14,"t":84,"tokens":[10631,3554,6037,19685],"delegation":[9631,2554,5037,18685],"delegatorTokens":9999999936518}},{"ix":125,"action":{"kind":"Undelegate","val":1,"amt":2970},"partialState":{"h":14,"t":84,"tokens":[10631,3554,6037,19685],"delegation":[9631,2554,5037,18685],"delegatorTokens":9999999936518}},{"ix":126,"action":{"kind":"Deliver","chain":"consumer","numPackets":3},"partialState":{"h":16,"t":96,"consumerPower":[null,null,5715,null],"outstandingDowntime":[false,false,false,false]}},{"ix":127,"action":{"kind":"Deliver","chain":"provider","numPackets":5},"partialState":{"h":14,"t":84,"tokens":[10631,3554,6037,19685],"delegation":[9631,2554,5037,18685],"delegatorTokens":9999999936518,"jailed":[1000000000000053,1000000000000035,null,1000000000000023],"status":["unbonding","unbonding","bonded","unbonding"]}},{"ix":128,"action":{"kind":"Delegate","val":3,"amt":1958},"partialState":{"h":14,"t":84,"tokens":[10631,3554,6037,21643],"delegation":[9631,2554,5037,20643],"delegatorTokens":9999999934560}},{"ix":129,"action":{"kind":"Deliver","chain":"provider","numPackets":3},"partialState":{"h":14,"t":84,"tokens":[10631,3554,6037,21643],"delegation":[9631,2554,5037,20643],"delegatorTokens":9999999934560,"jailed":[1000000000000053,1000000000000035,null,1000000000000023],"status":["unbonding","unbonding","bonded","unbonding"]}},{"ix":130,"action":{"kind":"Delegate","val":0,"amt":2977},"partialState":{"h":14,"t":84,"tokens":[13608,3554,6037,21643],"delegation":[12608,2554,5037,20643],"delegatorTokens":9999999931583}},{"ix":131,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":132,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":15,"t":90,"tokens":[13608,3554,6037,21643],"delegation":[12608,2554,5037,20643],"delegatorTokens":9999999941164,"jailed":[1000000000000053,1000000000000035,null,1000000000000023],"status":["unbonding","unbonding","bonded","unbonding"]}},{"ix":133,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":134,"action":{"kind":"Deliver","chain":"consumer","numPackets":6},"partialState":{"h":16,"t":96,"consumerPower":[null,null,5715,null],"outstandingDowntime":[false,false,false,false]}},{"ix":135,"action":{"kind":"Undelegate","val":1,"amt":3976},"partialState":{"h":15,"t":90,"tokens":[13608,3554,6037,21643],"delegation":[12608,2554,5037,20643],"delegatorTokens":9999999941164}},{"ix":136,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":17,"t":102,"consumerPower":[null,null,6037,null],"outstandingDowntime":[false,false,false,false]}},{"ix":137,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":18,"t":108,"consumerPower":[null,null,6037,null],"outstandingDowntime":[false,false,false,false]}},{"ix":138,"action":{"kind":"Deliver","chain":"consumer","numPackets":6},"partialState":{"h":18,"t":108,"consumerPower":[null,null,6037,null],"outstandingDowntime":[false,false,false,false]}},{"ix":139,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":140,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":16,"t":96,"tokens":[13608,3554,6037,21643],"delegation":[12608,2554,5037,20643],"delegatorTokens":9999999941164,"jailed":[1000000000000053,1000000000000035,null,1000000000000023],"status":["unbonding","unbonding","bonded","unbonding"]}},{"ix":141,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":142,"action":{"kind":"Delegate","val":1,"amt":2837},"partialState":{"h":16,"t":96,"tokens":[13608,6391,6037,21643],"delegation":[12608,5391,5037,20643],"delegatorTokens":9999999938327}},{"ix":143,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":144,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":145,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":19,"t":114,"consumerPower":[null,null,6037,null],"outstandingDowntime":[false,false,false,false]}},{"ix":146,"action":{"kind":"Undelegate","val":0,"amt":4784},"partialState":{"h":16,"t":96,"tokens":[8824,6391,6037,21643],"delegation":[7824,5391,5037,20643],"delegatorTokens":9999999938327}},{"ix":147,"action":{"kind":"Deliver","chain":"provider","numPackets":3},"partialState":{"h":16,"t":96,"tokens":[8824,6391,6037,21643],"delegation":[7824,5391,5037,20643],"delegatorTokens":9999999938327,"jailed":[1000000000000053,1000000000000035,null,1000000000000023],"status":["unbonding","unbonding","bonded","unbonding"]}},{"ix":148,"action":{"kind":"Undelegate","val":2,"amt":2152},"partialState":{"h":16,"t":96,"tokens":[8824,6391,3885,21643],"delegation":[7824,5391,2885,20643],"delegatorTokens":9999999938327}},{"ix":149,"action":{"kind":"Undelegate","val":3,"amt":1994},"partialState":{"h":16,"t":96,"tokens":[8824,6391,3885,19649],"delegation":[7824,5391,2885,18649],"delegatorTokens":9999999938327}},{"ix":150,"action":{"kind":"Delegate","val":0,"amt":2916},"partialState":{"h":16,"t":96,"tokens":[11740,6391,3885,19649],"delegation":[10740,5391,2885,18649],"delegatorTokens":9999999935411}},{"ix":151,"action":{"kind":"Delegate","val":1,"amt":3021},"partialState":{"h":16,"t":96,"tokens":[11740,9412,3885,19649],"delegation":[10740,8412,2885,18649],"delegatorTokens":9999999932390}},{"ix":152,"action":{"kind":"Delegate","val":2,"amt":3533},"partialState":{"h":16,"t":96,"tokens":[11740,9412,7418,19649],"delegation":[10740,8412,6418,18649],"delegatorTokens":9999999928857}},{"ix":153,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":154,"action":{"kind":"Deliver","chain":"provider","numPackets":3},"partialState":{"h":16,"t":96,"tokens":[11740,9412,7418,19649],"delegation":[10740,8412,6418,18649],"delegatorTokens":9999999928857,"jailed":[1000000000000053,1000000000000035,null,1000000000000023],"status":["unbonding","unbonding","bonded","unbonding"]}},{"ix":155,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":20,"t":120,"consumerPower":[null,null,6037,null],"outstandingDowntime":[false,false,false,false]}},{"ix":156,"action":{"kind":"Deliver","chain":"provider","numPackets":4},"partialState":{"h":16,"t":96,"tokens":[11740,9412,7418,19649],"delegation":[10740,8412,6418,18649],"delegatorTokens":9999999928857,"jailed":[1000000000000053,1000000000000035,null,1000000000000023],"status":["unbonding","unbonding","bonded","unbonding"]}},{"ix":157,"action":{"kind":"Delegate","val":0,"amt":1510},"partialState":{"h":16,"t":96,"tokens":[13250,9412,7418,19649],"delegation":[12250,8412,6418,18649],"delegatorTokens":9999999927347}},{"ix":158,"action":{"kind":"Delegate","val":0,"amt":4946},"partialState":{"h":16,"t":96,"tokens":[18196,9412,7418,19649],"delegation":[17196,8412,6418,18649],"delegatorTokens":9999999922401}},{"ix":159,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":160,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":161,"action":{"kind":"Undelegate","val":0,"amt":4731},"partialState":{"h":16,"t":96,"tokens":[13465,9412,7418,19649],"delegation":[12465,8412,6418,18649],"delegatorTokens":9999999922401}},{"ix":162,"action":{"kind":"Deliver","chain":"consumer","numPackets":5},"partialState":{"h":20,"t":120,"consumerPower":[null,null,6037,null],"outstandingDowntime":[false,false,false,false]}},{"ix":163,"action":{"kind":"Deliver","chain":"provider","numPackets":4},"partialState":{"h":16,"t":96,"tokens":[13465,9412,7418,19649],"delegation":[12465,8412,6418,18649],"delegatorTokens":9999999922401,"jailed":[1000000000000053,1000000000000035,null,1000000000000023],"status":["unbonding","unbonding","bonded","unbonding"]}},{"ix":164,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":165,"action":{"kind":"Undelegate","val":3,"amt":2853},"partialState":{"h":16,"t":96,"tokens":[13465,9412,7418,16796],"delegation":[12465,8412,6418,15796],"delegatorTokens":9999999922401}},{"ix":166,"action":{"kind":"Delegate","val":3,"amt":4342},"partialState":{"h":16,"t":96,"tokens":[13465,9412,7418,21138],"delegation":[12465,8412,6418,20138],"delegatorTokens":9999999918059}},{"ix":167,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":17,"t":102,"tokens":[13465,9412,7418,21138],"delegation":[12465,8412,6418,20138],"delegatorTokens":9999999923130,"jailed":[1000000000000053,1000000000000035,null,1000000000000023],"status":["unbonding","unbonding","bonded","unbonding"]}},{"ix":168,"action":{"kind":"Deliver","chain":"consumer","numPackets":5},"partialState":{"h":20,"t":120,"consumerPower":[null,null,6037,null],"outstandingDowntime":[false,false,false,false]}},{"ix":169,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":18,"t":108,"tokens":[13465,9412,7418,21138],"delegation":[12465,8412,6418,20138],"delegatorTokens":9999999925258,"jailed":[1000000000000053,1000000000000035,null,1000000000000023],"status":["unbonding","unbonding","bonded","unbonded"]}},{"ix":170,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":19,"t":114,"tokens":[13465,9412,7418,21138],"delegation":[12465,8412,6418,20138],"delegatorTokens":9999999925258,"jailed":[1000000000000053,1000000000000035,null,1000000000000023],"status":["unbonding","unbonding","bonded","unbonded"]}},{"ix":171,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":172,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":21,"t":126,"consumerPower":[null,null,6037,null],"outstandingDowntime":[false,false,false,false]}},{"ix":173,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":174,"action":{"kind":"Undelegate","val":2,"amt":1106},"partialState":{"h":19,"t":114,"tokens":[13465,9412,6312,21138],"delegation":[12465,8412,5312,20138],"delegatorTokens":9999999925258}},{"ix":175,"action":{"kind":"Undelegate","val":2,"amt":3893},"partialState":{"h":19,"t":114,"tokens":[13465,9412,2419,21138],"delegation":[12465,8412,1419,20138],"delegatorTokens":9999999925258}},{"ix":176,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":177,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":178,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":179,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":20,"t":120,"tokens":[13465,9412,2419,21138],"delegation":[12465,8412,1419,20138],"delegatorTokens":9999999929496,"jailed":[1000000000000053,1000000000000035,null,1000000000000023],"status":["unbonding","unbonded","bonded","unbonded"]}},{"ix":180,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":181,"action":{"kind":"Deliver","chain":"provider","numPackets":2},"partialState":{"h":20,"t":120,"tokens":[13465,9412,2419,21138],"delegation":[12465,8412,1419,20138],"delegatorTokens":9999999929496,"jailed":[1000000000000053,1000000000000035,null,1000000000000023],"status":["unbonding","unbonded","bonded","unbonded"]}},{"ix":182,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":21,"t":126,"tokens":[13465,9412,2419,21138],"delegation":[12465,8412,1419,20138],"delegatorTokens":9999999929496,"jailed":[1000000000000053,1000000000000035,null,1000000000000023],"status":["unbonding","unbonded","bonded","unbonded"]}},{"ix":183,"action":{"kind":"Delegate","val":1,"amt":1601},"partialState":{"h":21,"t":126,"tokens":[13465,11013,2419,21138],"delegation":[12465,10013,1419,20138],"delegatorTokens":9999999927895}},{"ix":184,"action":{"kind":"Delegate","val":3,"amt":3180},"partialState":{"h":21,"t":126,"tokens":[13465,11013,2419,24318],"delegation":[12465,10013,1419,23318],"delegatorTokens":9999999924715}},{"ix":185,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":22,"t":132,"tokens":[13465,11013,2419,24318],"delegation":[12465,10013,1419,23318],"delegatorTokens":9999999926698,"jailed":[1000000000000053,1000000000000035,null,1000000000000023],"status":["unbonding","unbonded","bonded","unbonded"]}},{"ix":186,"action":{"kind":"Deliver","chain":"provider","numPackets":2},"partialState":{"h":22,"t":132,"tokens":[13465,11013,2419,24318],"delegation":[12465,10013,1419,23318],"delegatorTokens":9999999926698,"jailed":[1000000000000053,1000000000000035,null,1000000000000023],"status":["unbonding","unbonded","bonded","unbonded"]}},{"ix":187,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":23,"t":138,"tokens":[13465,11013,2419,24318],"delegation":[12465,10013,1419,23318],"delegatorTokens":9999999931122,"jailed":[1000000000000053,1000000000000035,null,1000000000000023],"status":["unbonded","unbonded","bonded","unbonded"]}},{"ix":188,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":189,"action":{"kind":"Undelegate","val":1,"amt":4390},"partialState":{"h":23,"t":138,"tokens":[13465,6623,2419,24318],"delegation":[12465,5623,1419,23318],"delegatorTokens":9999999931122}},{"ix":190,"action":{"kind":"Delegate","val":0,"amt":3631},"partialState":{"h":23,"t":138,"tokens":[17096,6623,2419,24318],"delegation":[16096,5623,1419,23318],"delegatorTokens":9999999927491}},{"ix":191,"action":{"kind":"Delegate","val":3,"amt":4420},"partialState":{"h":23,"t":138,"tokens":[17096,6623,2419,28738],"delegation":[16096,5623,1419,27738],"delegatorTokens":9999999923071}},{"ix":192,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":193,"action":{"kind":"Undelegate","val":1,"amt":1848},"partialState":{"h":23,"t":138,"tokens":[17096,4775,2419,28738],"delegation":[16096,3775,1419,27738],"delegatorTokens":9999999923071}},{"ix":194,"action":{"kind":"Undelegate","val":2,"amt":3690},"partialState":{"h":23,"t":138,"tokens":[17096,4775,2419,28738],"delegation":[16096,3775,1419,27738],"delegatorTokens":9999999923071}},{"ix":195,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":196,"action":{"kind":"Deliver","chain":"consumer","numPackets":3},"partialState":{"h":21,"t":126,"consumerPower":[null,null,6037,null],"outstandingDowntime":[false,false,false,false]}},{"ix":197,"action":{"kind":"Undelegate","val":1,"amt":4144},"partialState":{"h":23,"t":138,"tokens":[17096,4775,2419,28738],"delegation":[16096,3775,1419,27738],"delegatorTokens":9999999923071}},{"ix":198,"action":{"kind":"Undelegate","val":0,"amt":1300},"partialState":{"h":23,"t":138,"tokens":[15796,4775,2419,28738],"delegation":[14796,3775,1419,27738],"delegatorTokens":9999999923071}},{"ix":199,"action":{"kind":"Deliver","chain":"provider","numPackets":5},"partialState":{"h":23,"t":138,"tokens":[15796,4775,2419,28738],"delegation":[14796,3775,1419,27738],"delegatorTokens":9999999923071,"jailed":[1000000000000053,1000000000000035,null,1000000000000023],"status":["unbonded","unbonded","bonded","unbonded"]}}],"events":["send_double_sign_slash_request","insufficient_shares","insufficient_shares","more_than_one_third_val_power_change","send_vsc_without_downtime_ack","send_downtime_slash_request","insufficient_shares","send_double_sign_slash_request","insufficient_shares","more_than_one_third_val_power_change","send_vsc_without_downtime_ack","send_downtime_slash_request","insufficient_shares","send_downtime_slash_request","receive_double_sign_slash_request","receive_double_sign_slash_request","insufficient_shares","receive_downtime_slash_request","jail","send_vsc_with_downtime_ack","consumer_del_val","consumer_update_val","consumer_del_val","consumer_add_val","more_than_one_third_val_power_change","rebond_unval","send_vsc_without_downtime_ack","receive_downtime_slash_ack","receive_downtime_slash_request","jail","more_than_one_third_val_power_change","rebond_unval","send_vsc_with_downtime_ack","consumer_update_val","consumer_del_val","consumer_add_val","receive_downtime_slash_ack","consumer_update_val","consumer_del_val","consumer_add_val","receive_downtime_slash_request","jail","send_vsc_with_downtime_ack","send_vsc_without_downtime_ack","receive_downtime_slash_ack","consumer_update_val","consumer_del_val","consumer_send_maturation","consumer_send_maturation","consumer_send_maturation","consumer_send_maturation","some_undels_expired_but_not_completed","send_vsc_without_downtime_ack","insufficient_shares","complete_undel_immediate","complete_undel_immediate","complete_undel_immediate","insufficient_shares","consumer_send_maturation","consumer_update_val","consumer_send_maturation","consumer_send_maturation","some_undels_expired_but_not_completed","complete_undel_immediate","complete_undel_immediate","complete_undel_immediate","set_undel_hold_false","set_unval_hold_false","set_undel_hold_false","set_unval_hold_false","send_vsc_without_downtime_ack","complete_unval_in_endblock","complete_undel_in_endblock","complete_unval_in_endblock","complete_undel_in_endblock","send_vsc_without_downtime_ack","set_undel_hold_false","set_undel_hold_false","set_unval_hold_false","complete_undel_in_endblock","complete_unval_in_endblock","complete_undel_in_endblock","insufficient_shares","insufficient_shares"]},{"meta":{"commit":"7ffd0c04e4205cbc9caf212abfe6c59ee43153bf"},"constants":{"P":"provider","C":"consumer","UNBONDING_SECONDS_P":70,"UNBONDING_SECONDS_C":50,"TRUSTING_SECONDS":49,"NUM_VALIDATORS":4,"MAX_VALIDATORS":2,"SLASH_DOUBLESIGN":0,"SLASH_DOWNTIME":0,"JAIL_SECONDS":999999999999999,"BLOCK_SECONDS":6,"INITIAL_DELEGATOR_TOKENS":10000000000000,"DELEGATE_AMT_MIN":1000,"DELEGATE_AMT_MAX":5000,"UNDELEGATE_AMT_MIN":1000,"UNDELEGATE_AMT_MAX":5000,"ISDOWNTIME_PROBABILITY":0.5,"MAX_NUM_PACKETS_FOR_DELIVER":6},"actions":[{"ix":0,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":2,"t":12,"tokens":[5000,4000,3000,2000],"delegation":[4000,3000,2000,1000],"delegatorTokens":10000000000000,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":1,"action":{"kind":"Delegate","val":0,"amt":1111},"partialState":{"h":2,"t":12,"tokens":[6111,4000,3000,2000],"delegation":[5111,3000,2000,1000],"delegatorTokens":9999999998889}},{"ix":2,"action":{"kind":"ConsumerSlash","val":2,"infractionHeight":0,"isDowntime":false},"partialState":{"h":1,"t":6,"outstandingDowntime":[false,false,false,false]}},{"ix":3,"action":{"kind":"Delegate","val":0,"amt":4313},"partialState":{"h":2,"t":12,"tokens":[10424,4000,3000,2000],"delegation":[9424,3000,2000,1000],"delegatorTokens":9999999994576}},{"ix":4,"action":{"kind":"Deliver","chain":"provider","numPackets":2},"partialState":{"h":2,"t":12,"tokens":[10424,4000,3000,2000],"delegation":[9424,3000,2000,1000],"delegatorTokens":9999999994576,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":5,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":6,"action":{"kind":"ConsumerSlash","val":2,"infractionHeight":0,"isDowntime":true},"partialState":{"h":1,"t":6,"outstandingDowntime":[false,false,true,false]}},{"ix":7,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":2,"t":12,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,false,true,false]}},{"ix":8,"action":{"kind":"Deliver","chain":"consumer","numPackets":3},"partialState":{"h":2,"t":12,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,false,true,false]}},{"ix":9,"action":{"kind":"Undelegate","val":0,"amt":1001},"partialState":{"h":2,"t":12,"tokens":[9423,4000,3000,2000],"delegation":[8423,3000,2000,1000],"delegatorTokens":9999999994576}},{"ix":10,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":11,"action":{"kind":"Deliver","chain":"provider","numPackets":2},"partialState":{"h":2,"t":12,"tokens":[9423,4000,3000,2000],"delegation":[8423,3000,2000,1000],"delegatorTokens":9999999994576,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":12,"action":{"kind":"Delegate","val":0,"amt":2470},"partialState":{"h":2,"t":12,"tokens":[11893,4000,3000,2000],"delegation":[10893,3000,2000,1000],"delegatorTokens":9999999992106}},{"ix":13,"action":{"kind":"Deliver","chain":"provider","numPackets":1},"partialState":{"h":2,"t":12,"tokens":[11893,4000,3000,2000],"delegation":[10893,3000,2000,1000],"delegatorTokens":9999999992106,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":14,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":15,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":3,"t":18,"tokens":[11893,4000,3000,2000],"delegation":[10893,3000,2000,1000],"delegatorTokens":9999999992106,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":16,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":17,"action":{"kind":"Deliver","chain":"consumer","numPackets":4},"partialState":{"h":2,"t":12,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,false,true,false]}},{"ix":18,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":4,"t":24,"tokens":[11893,4000,3000,2000],"delegation":[10893,3000,2000,1000],"delegatorTokens":9999999992106,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":19,"action":{"kind":"Undelegate","val":0,"amt":4087},"partialState":{"h":4,"t":24,"tokens":[7806,4000,3000,2000],"delegation":[6806,3000,2000,1000],"delegatorTokens":9999999992106}},{"ix":20,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":5,"t":30,"tokens":[7806,4000,3000,2000],"delegation":[6806,3000,2000,1000],"delegatorTokens":9999999992106,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":21,"action":{"kind":"Delegate","val":1,"amt":3800},"partialState":{"h":5,"t":30,"tokens":[7806,7800,3000,2000],"delegation":[6806,6800,2000,1000],"delegatorTokens":9999999988306}},{"ix":22,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":23,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":24,"action":{"kind":"ConsumerSlash","val":2,"infractionHeight":0,"isDowntime":true},"partialState":{"h":2,"t":12,"outstandingDowntime":[false,false,true,false]}},{"ix":25,"action":{"kind":"ConsumerSlash","val":2,"infractionHeight":0,"isDowntime":true},"partialState":{"h":2,"t":12,"outstandingDowntime":[false,false,true,false]}},{"ix":26,"action":{"kind":"Deliver","chain":"provider","numPackets":4},"partialState":{"h":5,"t":30,"tokens":[7806,7800,3000,2000],"delegation":[6806,6800,2000,1000],"delegatorTokens":9999999988306,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":27,"action":{"kind":"Undelegate","val":3,"amt":4436},"partialState":{"h":5,"t":30,"tokens":[7806,7800,3000,2000],"delegation":[6806,6800,2000,1000],"delegatorTokens":9999999988306}},{"ix":28,"action":{"kind":"ConsumerSlash","val":0,"infractionHeight":0,"isDowntime":true},"partialState":{"h":2,"t":12,"outstandingDowntime":[true,false,true,false]}},{"ix":29,"action":{"kind":"Undelegate","val":1,"amt":3229},"partialState":{"h":5,"t":30,"tokens":[7806,4571,3000,2000],"delegation":[6806,3571,2000,1000],"delegatorTokens":9999999988306}},{"ix":30,"action":{"kind":"ConsumerSlash","val":0,"infractionHeight":1,"isDowntime":true},"partialState":{"h":2,"t":12,"outstandingDowntime":[true,false,true,false]}},{"ix":31,"action":{"kind":"Deliver","chain":"consumer","numPackets":1},"partialState":{"h":2,"t":12,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[true,false,true,false]}},{"ix":32,"action":{"kind":"ConsumerSlash","val":0,"infractionHeight":0,"isDowntime":true},"partialState":{"h":2,"t":12,"outstandingDowntime":[true,false,true,false]}},{"ix":33,"action":{"kind":"Deliver","chain":"consumer","numPackets":1},"partialState":{"h":2,"t":12,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[true,false,true,false]}},{"ix":34,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":3,"t":18,"consumerPower":[11893,4000,null,null],"outstandingDowntime":[true,false,true,false]}},{"ix":35,"action":{"kind":"Deliver","chain":"consumer","numPackets":1},"partialState":{"h":3,"t":18,"consumerPower":[11893,4000,null,null],"outstandingDowntime":[true,false,true,false]}},{"ix":36,"action":{"kind":"Undelegate","val":2,"amt":2882},"partialState":{"h":5,"t":30,"tokens":[7806,4571,3000,2000],"delegation":[6806,3571,2000,1000],"delegatorTokens":9999999988306}},{"ix":37,"action":{"kind":"Delegate","val":2,"amt":4165},"partialState":{"h":5,"t":30,"tokens":[7806,4571,7165,2000],"delegation":[6806,3571,6165,1000],"delegatorTokens":9999999984141}},{"ix":38,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":4,"t":24,"consumerPower":[11893,4000,null,null],"outstandingDowntime":[true,false,true,false]}},{"ix":39,"action":{"kind":"Undelegate","val":0,"amt":4276},"partialState":{"h":5,"t":30,"tokens":[3530,4571,7165,2000],"delegation":[2530,3571,6165,1000],"delegatorTokens":9999999984141}},{"ix":40,"action":{"kind":"Deliver","chain":"provider","numPackets":1},"partialState":{"h":5,"t":30,"tokens":[3530,4571,7165,2000],"delegation":[2530,3571,6165,1000],"delegatorTokens":9999999984141,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":41,"action":{"kind":"Delegate","val":1,"amt":3536},"partialState":{"h":5,"t":30,"tokens":[3530,8107,7165,2000],"delegation":[2530,7107,6165,1000],"delegatorTokens":9999999980605}},{"ix":42,"action":{"kind":"ConsumerSlash","val":0,"infractionHeight":3,"isDowntime":false},"partialState":{"h":4,"t":24,"outstandingDowntime":[true,false,true,false]}},{"ix":43,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":5,"t":30,"consumerPower":[11893,4000,null,null],"outstandingDowntime":[true,false,true,false]}},{"ix":44,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":6,"t":36,"consumerPower":[11893,4000,null,null],"outstandingDowntime":[true,false,true,false]}},{"ix":45,"action":{"kind":"ConsumerSlash","val":3,"infractionHeight":1,"isDowntime":false},"partialState":{"h":6,"t":36,"outstandingDowntime":[true,false,true,false]}},{"ix":46,"action":{"kind":"Deliver","chain":"consumer","numPackets":6},"partialState":{"h":6,"t":36,"consumerPower":[11893,4000,null,null],"outstandingDowntime":[true,false,true,false]}},{"ix":47,"action":{"kind":"Deliver","chain":"provider","numPackets":4},"partialState":{"h":5,"t":30,"tokens":[3530,8107,7165,2000],"delegation":[2530,7107,6165,1000],"delegatorTokens":9999999980605,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":48,"action":{"kind":"Deliver","chain":"consumer","numPackets":1},"partialState":{"h":6,"t":36,"consumerPower":[11893,4000,null,null],"outstandingDowntime":[true,false,true,false]}},{"ix":49,"action":{"kind":"Delegate","val":1,"amt":4482},"partialState":{"h":5,"t":30,"tokens":[3530,12589,7165,2000],"delegation":[2530,11589,6165,1000],"delegatorTokens":9999999976123}},{"ix":50,"action":{"kind":"Delegate","val":1,"amt":2636},"partialState":{"h":5,"t":30,"tokens":[3530,15225,7165,2000],"delegation":[2530,14225,6165,1000],"delegatorTokens":9999999973487}},{"ix":51,"action":{"kind":"Deliver","chain":"consumer","numPackets":2},"partialState":{"h":6,"t":36,"consumerPower":[11893,4000,null,null],"outstandingDowntime":[true,false,true,false]}},{"ix":52,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":53,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":6,"t":36,"tokens":[3530,15225,7165,2000],"delegation":[2530,14225,6165,1000],"delegatorTokens":9999999973487,"jailed":[1000000000000029,null,1000000000000029,null],"status":["unbonding","bonded","bonded","unbonded"]}},{"ix":54,"action":{"kind":"Deliver","chain":"consumer","numPackets":3},"partialState":{"h":6,"t":36,"consumerPower":[11893,4000,null,null],"outstandingDowntime":[true,false,true,false]}},{"ix":55,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":56,"action":{"kind":"Delegate","val":3,"amt":4531},"partialState":{"h":6,"t":36,"tokens":[3530,15225,7165,6531],"delegation":[2530,14225,6165,5531],"delegatorTokens":9999999968956}},{"ix":57,"action":{"kind":"Delegate","val":0,"amt":1797},"partialState":{"h":6,"t":36,"tokens":[5327,15225,7165,6531],"delegation":[4327,14225,6165,5531],"delegatorTokens":9999999967159}},{"ix":58,"action":{"kind":"Undelegate","val":1,"amt":4168},"partialState":{"h":6,"t":36,"tokens":[5327,11057,7165,6531],"delegation":[4327,10057,6165,5531],"delegatorTokens":9999999967159}},{"ix":59,"action":{"kind":"Undelegate","val":0,"amt":1718},"partialState":{"h":6,"t":36,"tokens":[3609,11057,7165,6531],"delegation":[2609,10057,6165,5531],"delegatorTokens":9999999967159}},{"ix":60,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":7,"t":42,"tokens":[3609,11057,7165,6531],"delegation":[2609,10057,6165,5531],"delegatorTokens":9999999967159,"jailed":[1000000000000029,null,1000000000000029,null],"status":["unbonding","bonded","unbonding","bonded"]}},{"ix":61,"action":{"kind":"Undelegate","val":3,"amt":2280},"partialState":{"h":7,"t":42,"tokens":[3609,11057,7165,4251],"delegation":[2609,10057,6165,3251],"delegatorTokens":9999999967159}},{"ix":62,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":7,"t":42,"consumerPower":[7806,4000,null,null],"outstandingDowntime":[true,false,true,false]}},{"ix":63,"action":{"kind":"Deliver","chain":"consumer","numPackets":2},"partialState":{"h":7,"t":42,"consumerPower":[7806,4000,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":64,"action":{"kind":"Delegate","val":2,"amt":1340},"partialState":{"h":7,"t":42,"tokens":[3609,11057,8505,4251],"delegation":[2609,10057,7505,3251],"delegatorTokens":9999999965819}},{"ix":65,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":66,"action":{"kind":"Deliver","chain":"consumer","numPackets":6},"partialState":{"h":7,"t":42,"consumerPower":[7806,4000,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":67,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":68,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":8,"t":48,"tokens":[3609,11057,8505,4251],"delegation":[2609,10057,7505,3251],"delegatorTokens":9999999965819,"jailed":[1000000000000029,null,1000000000000029,null],"status":["unbonding","bonded","unbonding","bonded"]}},{"ix":69,"action":{"kind":"Delegate","val":0,"amt":4727},"partialState":{"h":8,"t":48,"tokens":[8336,11057,8505,4251],"delegation":[7336,10057,7505,3251],"delegatorTokens":9999999961092}},{"ix":70,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":9,"t":54,"tokens":[8336,11057,8505,4251],"delegation":[7336,10057,7505,3251],"delegatorTokens":9999999961092,"jailed":[1000000000000029,null,1000000000000029,null],"status":["unbonding","bonded","unbonding","bonded"]}},{"ix":71,"action":{"kind":"Undelegate","val":1,"amt":4879},"partialState":{"h":9,"t":54,"tokens":[8336,6178,8505,4251],"delegation":[7336,5178,7505,3251],"delegatorTokens":9999999961092}},{"ix":72,"action":{"kind":"Undelegate","val":0,"amt":3282},"partialState":{"h":9,"t":54,"tokens":[5054,6178,8505,4251],"delegation":[4054,5178,7505,3251],"delegatorTokens":9999999961092}},{"ix":73,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":10,"t":60,"tokens":[5054,6178,8505,4251],"delegation":[4054,5178,7505,3251],"delegatorTokens":9999999961092,"jailed":[1000000000000029,null,1000000000000029,null],"status":["unbonding","bonded","unbonding","bonded"]}},{"ix":74,"action":{"kind":"Deliver","chain":"provider","numPackets":5},"partialState":{"h":10,"t":60,"tokens":[5054,6178,8505,4251],"delegation":[4054,5178,7505,3251],"delegatorTokens":9999999961092,"jailed":[1000000000000029,null,1000000000000029,null],"status":["unbonding","bonded","unbonding","bonded"]}},{"ix":75,"action":{"kind":"Deliver","chain":"consumer","numPackets":6},"partialState":{"h":7,"t":42,"consumerPower":[7806,4000,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":76,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":77,"action":{"kind":"Undelegate","val":0,"amt":2903},"partialState":{"h":10,"t":60,"tokens":[2151,6178,8505,4251],"delegation":[1151,5178,7505,3251],"delegatorTokens":9999999961092}},{"ix":78,"action":{"kind":"Delegate","val":0,"amt":2106},"partialState":{"h":10,"t":60,"tokens":[4257,6178,8505,4251],"delegation":[3257,5178,7505,3251],"delegatorTokens":9999999958986}},{"ix":79,"action":{"kind":"Deliver","chain":"consumer","numPackets":3},"partialState":{"h":7,"t":42,"consumerPower":[7806,4000,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":80,"action":{"kind":"Delegate","val":2,"amt":4470},"partialState":{"h":10,"t":60,"tokens":[4257,6178,12975,4251],"delegation":[3257,5178,11975,3251],"delegatorTokens":9999999954516}},{"ix":81,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":11,"t":66,"tokens":[4257,6178,12975,4251],"delegation":[3257,5178,11975,3251],"delegatorTokens":9999999954516,"jailed":[1000000000000029,null,1000000000000029,null],"status":["unbonding","bonded","unbonding","bonded"]}},{"ix":82,"action":{"kind":"Undelegate","val":2,"amt":4016},"partialState":{"h":11,"t":66,"tokens":[4257,6178,8959,4251],"delegation":[3257,5178,7959,3251],"delegatorTokens":9999999954516}},{"ix":83,"action":{"kind":"Deliver","chain":"provider","numPackets":3},"partialState":{"h":11,"t":66,"tokens":[4257,6178,8959,4251],"delegation":[3257,5178,7959,3251],"delegatorTokens":9999999954516,"jailed":[1000000000000029,null,1000000000000029,null],"status":["unbonding","bonded","unbonding","bonded"]}},{"ix":84,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":12,"t":72,"tokens":[4257,6178,8959,4251],"delegation":[3257,5178,7959,3251],"delegatorTokens":9999999954516,"jailed":[1000000000000029,null,1000000000000029,null],"status":["unbonding","bonded","unbonding","bonded"]}},{"ix":85,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":8,"t":48,"consumerPower":[null,11057,null,4251],"outstandingDowntime":[false,false,false,false]}},{"ix":86,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":9,"t":54,"consumerPower":[null,11057,null,4251],"outstandingDowntime":[false,false,false,false]}},{"ix":87,"action":{"kind":"Deliver","chain":"provider","numPackets":2},"partialState":{"h":12,"t":72,"tokens":[4257,6178,8959,4251],"delegation":[3257,5178,7959,3251],"delegatorTokens":9999999954516,"jailed":[1000000000000029,null,1000000000000029,null],"status":["unbonding","bonded","unbonding","bonded"]}},{"ix":88,"action":{"kind":"Deliver","chain":"consumer","numPackets":6},"partialState":{"h":9,"t":54,"consumerPower":[null,11057,null,4251],"outstandingDowntime":[false,false,false,false]}},{"ix":89,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":90,"action":{"kind":"Delegate","val":0,"amt":3738},"partialState":{"h":12,"t":72,"tokens":[7995,6178,8959,4251],"delegation":[6995,5178,7959,3251],"delegatorTokens":9999999950778}},{"ix":91,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":10,"t":60,"consumerPower":[null,6178,null,4251],"outstandingDowntime":[false,false,false,false]}},{"ix":92,"action":{"kind":"Undelegate","val":2,"amt":1294},"partialState":{"h":12,"t":72,"tokens":[7995,6178,7665,4251],"delegation":[6995,5178,6665,3251],"delegatorTokens":9999999950778}},{"ix":93,"action":{"kind":"Deliver","chain":"provider","numPackets":1},"partialState":{"h":12,"t":72,"tokens":[7995,6178,7665,4251],"delegation":[6995,5178,6665,3251],"delegatorTokens":9999999950778,"jailed":[1000000000000029,null,1000000000000029,null],"status":["unbonding","bonded","unbonding","bonded"]}},{"ix":94,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":95,"action":{"kind":"Deliver","chain":"consumer","numPackets":4},"partialState":{"h":10,"t":60,"consumerPower":[null,6178,null,4251],"outstandingDowntime":[false,false,false,false]}},{"ix":96,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":11,"t":66,"consumerPower":[null,6178,null,4251],"outstandingDowntime":[false,false,false,false]}},{"ix":97,"action":{"kind":"Undelegate","val":1,"amt":1984},"partialState":{"h":12,"t":72,"tokens":[7995,4194,7665,4251],"delegation":[6995,3194,6665,3251],"delegatorTokens":9999999950778}},{"ix":98,"action":{"kind":"Delegate","val":2,"amt":4067},"partialState":{"h":12,"t":72,"tokens":[7995,4194,11732,4251],"delegation":[6995,3194,10732,3251],"delegatorTokens":9999999946711}},{"ix":99,"action":{"kind":"Undelegate","val":0,"amt":1759},"partialState":{"h":12,"t":72,"tokens":[6236,4194,11732,4251],"delegation":[5236,3194,10732,3251],"delegatorTokens":9999999946711}},{"ix":100,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":101,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":102,"action":{"kind":"Deliver","chain":"consumer","numPackets":4},"partialState":{"h":11,"t":66,"consumerPower":[null,6178,null,4251],"outstandingDowntime":[false,false,false,false]}},{"ix":103,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":13,"t":78,"tokens":[6236,4194,11732,4251],"delegation":[5236,3194,10732,3251],"delegatorTokens":9999999946711,"jailed":[1000000000000029,null,1000000000000029,null],"status":["unbonding","bonded","unbonding","bonded"]}},{"ix":104,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":105,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":106,"action":{"kind":"Deliver","chain":"provider","numPackets":2},"partialState":{"h":13,"t":78,"tokens":[6236,4194,11732,4251],"delegation":[5236,3194,10732,3251],"delegatorTokens":9999999946711,"jailed":[1000000000000029,null,1000000000000029,null],"status":["unbonding","bonded","unbonding","bonded"]}},{"ix":107,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":12,"t":72,"consumerPower":[null,6178,null,4251],"outstandingDowntime":[false,false,false,false]}},{"ix":108,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":13,"t":78,"consumerPower":[null,6178,null,4251],"outstandingDowntime":[false,false,false,false]}},{"ix":109,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":110,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":14,"t":84,"consumerPower":[null,6178,null,4251],"outstandingDowntime":[false,false,false,false]}},{"ix":111,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":15,"t":90,"consumerPower":[null,6178,null,4251],"outstandingDowntime":[false,false,false,false]}},{"ix":112,"action":{"kind":"Deliver","chain":"provider","numPackets":1},"partialState":{"h":13,"t":78,"tokens":[6236,4194,11732,4251],"delegation":[5236,3194,10732,3251],"delegatorTokens":9999999946711,"jailed":[1000000000000029,null,1000000000000029,null],"status":["unbonding","bonded","unbonding","bonded"]}},{"ix":113,"action":{"kind":"Undelegate","val":1,"amt":1775},"partialState":{"h":13,"t":78,"tokens":[6236,2419,11732,4251],"delegation":[5236,1419,10732,3251],"delegatorTokens":9999999946711}},{"ix":114,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":14,"t":84,"tokens":[6236,2419,11732,4251],"delegation":[5236,1419,10732,3251],"delegatorTokens":9999999946711,"jailed":[1000000000000029,null,1000000000000029,null],"status":["unbonding","bonded","unbonding","bonded"]}},{"ix":115,"action":{"kind":"Deliver","chain":"consumer","numPackets":4},"partialState":{"h":15,"t":90,"consumerPower":[null,6178,null,4251],"outstandingDowntime":[false,false,false,false]}},{"ix":116,"action":{"kind":"Deliver","chain":"provider","numPackets":1},"partialState":{"h":14,"t":84,"tokens":[6236,2419,11732,4251],"delegation":[5236,1419,10732,3251],"delegatorTokens":9999999946711,"jailed":[1000000000000029,null,1000000000000029,null],"status":["unbonding","bonded","unbonding","bonded"]}},{"ix":117,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":15,"t":90,"tokens":[6236,2419,11732,4251],"delegation":[5236,1419,10732,3251],"delegatorTokens":9999999947712,"jailed":[1000000000000029,null,1000000000000029,null],"status":["unbonding","bonded","unbonding","bonded"]}},{"ix":118,"action":{"kind":"Undelegate","val":3,"amt":2705},"partialState":{"h":15,"t":90,"tokens":[6236,2419,11732,1546],"delegation":[5236,1419,10732,546],"delegatorTokens":9999999947712}},{"ix":119,"action":{"kind":"Deliver","chain":"provider","numPackets":6},"partialState":{"h":15,"t":90,"tokens":[6236,2419,11732,1546],"delegation":[5236,1419,10732,546],"delegatorTokens":9999999947712,"jailed":[1000000000000029,null,1000000000000029,null],"status":["unbonding","bonded","unbonding","bonded"]}},{"ix":120,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":16,"t":96,"consumerPower":[null,4194,null,4251],"outstandingDowntime":[false,false,false,false]}},{"ix":121,"action":{"kind":"Deliver","chain":"provider","numPackets":1},"partialState":{"h":15,"t":90,"tokens":[6236,2419,11732,1546],"delegation":[5236,1419,10732,546],"delegatorTokens":9999999947712,"jailed":[1000000000000029,null,1000000000000029,null],"status":["unbonding","bonded","unbonding","bonded"]}},{"ix":122,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":123,"action":{"kind":"Delegate","val":3,"amt":3410},"partialState":{"h":15,"t":90,"tokens":[6236,2419,11732,4956],"delegation":[5236,1419,10732,3956],"delegatorTokens":9999999944302}},{"ix":124,"action":{"kind":"Delegate","val":1,"amt":4781},"partialState":{"h":15,"t":90,"tokens":[6236,7200,11732,4956],"delegation":[5236,6200,10732,3956],"delegatorTokens":9999999939521}},{"ix":125,"action":{"kind":"Undelegate","val":0,"amt":3724},"partialState":{"h":15,"t":90,"tokens":[2512,7200,11732,4956],"delegation":[1512,6200,10732,3956],"delegatorTokens":9999999939521}},{"ix":126,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":127,"action":{"kind":"Delegate","val":2,"amt":4522},"partialState":{"h":15,"t":90,"tokens":[2512,7200,16254,4956],"delegation":[1512,6200,15254,3956],"delegatorTokens":9999999934999}},{"ix":128,"action":{"kind":"Delegate","val":3,"amt":2692},"partialState":{"h":15,"t":90,"tokens":[2512,7200,16254,7648],"delegation":[1512,6200,15254,6648],"delegatorTokens":9999999932307}},{"ix":129,"action":{"kind":"Undelegate","val":1,"amt":1712},"partialState":{"h":15,"t":90,"tokens":[2512,5488,16254,7648],"delegation":[1512,4488,15254,6648],"delegatorTokens":9999999932307}},{"ix":130,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":131,"action":{"kind":"Undelegate","val":1,"amt":4701},"partialState":{"h":15,"t":90,"tokens":[2512,5488,16254,7648],"delegation":[1512,4488,15254,6648],"delegatorTokens":9999999932307}},{"ix":132,"action":{"kind":"Undelegate","val":0,"amt":2081},"partialState":{"h":15,"t":90,"tokens":[2512,5488,16254,7648],"delegation":[1512,4488,15254,6648],"delegatorTokens":9999999932307}},{"ix":133,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":17,"t":102,"consumerPower":[null,4194,null,4251],"outstandingDowntime":[false,false,false,false]}},{"ix":134,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":18,"t":108,"consumerPower":[null,4194,null,4251],"outstandingDowntime":[false,false,false,false]}},{"ix":135,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":136,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":19,"t":114,"consumerPower":[null,4194,null,4251],"outstandingDowntime":[false,false,false,false]}},{"ix":137,"action":{"kind":"Delegate","val":2,"amt":2800},"partialState":{"h":15,"t":90,"tokens":[2512,5488,19054,7648],"delegation":[1512,4488,18054,6648],"delegatorTokens":9999999929507}},{"ix":138,"action":{"kind":"Deliver","chain":"provider","numPackets":6},"partialState":{"h":15,"t":90,"tokens":[2512,5488,19054,7648],"delegation":[1512,4488,18054,6648],"delegatorTokens":9999999929507,"jailed":[1000000000000029,null,1000000000000029,null],"status":["unbonding","bonded","unbonding","bonded"]}},{"ix":139,"action":{"kind":"Deliver","chain":"consumer","numPackets":3},"partialState":{"h":19,"t":114,"consumerPower":[null,4194,null,4251],"outstandingDowntime":[false,false,false,false]}},{"ix":140,"action":{"kind":"Deliver","chain":"provider","numPackets":4},"partialState":{"h":15,"t":90,"tokens":[2512,5488,19054,7648],"delegation":[1512,4488,18054,6648],"delegatorTokens":9999999929507,"jailed":[1000000000000029,null,1000000000000029,null],"status":["unbonding","bonded","unbonding","bonded"]}},{"ix":141,"action":{"kind":"Deliver","chain":"provider","numPackets":3},"partialState":{"h":15,"t":90,"tokens":[2512,5488,19054,7648],"delegation":[1512,4488,18054,6648],"delegatorTokens":9999999929507,"jailed":[1000000000000029,null,1000000000000029,null],"status":["unbonding","bonded","unbonding","bonded"]}},{"ix":142,"action":{"kind":"Deliver","chain":"provider","numPackets":1},"partialState":{"h":15,"t":90,"tokens":[2512,5488,19054,7648],"delegation":[1512,4488,18054,6648],"delegatorTokens":9999999929507,"jailed":[1000000000000029,null,1000000000000029,null],"status":["unbonding","bonded","unbonding","bonded"]}},{"ix":143,"action":{"kind":"Delegate","val":3,"amt":3455},"partialState":{"h":15,"t":90,"tokens":[2512,5488,19054,11103],"delegation":[1512,4488,18054,10103],"delegatorTokens":9999999926052}},{"ix":144,"action":{"kind":"Undelegate","val":3,"amt":3645},"partialState":{"h":15,"t":90,"tokens":[2512,5488,19054,7458],"delegation":[1512,4488,18054,6458],"delegatorTokens":9999999926052}},{"ix":145,"action":{"kind":"Undelegate","val":1,"amt":3890},"partialState":{"h":15,"t":90,"tokens":[2512,1598,19054,7458],"delegation":[1512,598,18054,6458],"delegatorTokens":9999999926052}},{"ix":146,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":20,"t":120,"consumerPower":[null,2419,null,4251],"outstandingDowntime":[false,false,false,false]}},{"ix":147,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":16,"t":96,"tokens":[2512,1598,19054,7458],"delegation":[1512,598,18054,6458],"delegatorTokens":9999999926052,"jailed":[1000000000000029,null,1000000000000029,null],"status":["unbonding","bonded","unbonding","bonded"]}},{"ix":148,"action":{"kind":"Deliver","chain":"consumer","numPackets":2},"partialState":{"h":20,"t":120,"consumerPower":[null,2419,null,4251],"outstandingDowntime":[false,false,false,false]}},{"ix":149,"action":{"kind":"Undelegate","val":2,"amt":3705},"partialState":{"h":16,"t":96,"tokens":[2512,1598,15349,7458],"delegation":[1512,598,14349,6458],"delegatorTokens":9999999926052}},{"ix":150,"action":{"kind":"Delegate","val":0,"amt":1581},"partialState":{"h":16,"t":96,"tokens":[4093,1598,15349,7458],"delegation":[3093,598,14349,6458],"delegatorTokens":9999999924471}},{"ix":151,"action":{"kind":"Undelegate","val":0,"amt":1055},"partialState":{"h":16,"t":96,"tokens":[3038,1598,15349,7458],"delegation":[2038,598,14349,6458],"delegatorTokens":9999999924471}},{"ix":152,"action":{"kind":"Undelegate","val":1,"amt":4176},"partialState":{"h":16,"t":96,"tokens":[3038,1598,15349,7458],"delegation":[2038,598,14349,6458],"delegatorTokens":9999999924471}},{"ix":153,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":21,"t":126,"consumerPower":[null,2419,null,4251],"outstandingDowntime":[false,false,false,false]}},{"ix":154,"action":{"kind":"Undelegate","val":2,"amt":2304},"partialState":{"h":16,"t":96,"tokens":[3038,1598,13045,7458],"delegation":[2038,598,12045,6458],"delegatorTokens":9999999924471}},{"ix":155,"action":{"kind":"Undelegate","val":2,"amt":4247},"partialState":{"h":16,"t":96,"tokens":[3038,1598,8798,7458],"delegation":[2038,598,7798,6458],"delegatorTokens":9999999924471}},{"ix":156,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":22,"t":132,"consumerPower":[null,2419,null,4251],"outstandingDowntime":[false,false,false,false]}},{"ix":157,"action":{"kind":"Delegate","val":0,"amt":2536},"partialState":{"h":16,"t":96,"tokens":[5574,1598,8798,7458],"delegation":[4574,598,7798,6458],"delegatorTokens":9999999921935}},{"ix":158,"action":{"kind":"Undelegate","val":0,"amt":1682},"partialState":{"h":16,"t":96,"tokens":[3892,1598,8798,7458],"delegation":[2892,598,7798,6458],"delegatorTokens":9999999921935}},{"ix":159,"action":{"kind":"Undelegate","val":1,"amt":3105},"partialState":{"h":16,"t":96,"tokens":[3892,1598,8798,7458],"delegation":[2892,598,7798,6458],"delegatorTokens":9999999921935}},{"ix":160,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":161,"action":{"kind":"Deliver","chain":"provider","numPackets":4},"partialState":{"h":16,"t":96,"tokens":[3892,1598,8798,7458],"delegation":[2892,598,7798,6458],"delegatorTokens":9999999921935,"jailed":[1000000000000029,null,1000000000000029,null],"status":["unbonding","bonded","unbonding","bonded"]}},{"ix":162,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":163,"action":{"kind":"Deliver","chain":"consumer","numPackets":1},"partialState":{"h":22,"t":132,"consumerPower":[null,2419,null,4251],"outstandingDowntime":[false,false,false,false]}},{"ix":164,"action":{"kind":"Delegate","val":1,"amt":3007},"partialState":{"h":16,"t":96,"tokens":[3892,4605,8798,7458],"delegation":[2892,3605,7798,6458],"delegatorTokens":9999999918928}},{"ix":165,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":166,"action":{"kind":"Undelegate","val":3,"amt":3994},"partialState":{"h":16,"t":96,"tokens":[3892,4605,8798,3464],"delegation":[2892,3605,7798,2464],"delegatorTokens":9999999918928}},{"ix":167,"action":{"kind":"Undelegate","val":2,"amt":2573},"partialState":{"h":16,"t":96,"tokens":[3892,4605,6225,3464],"delegation":[2892,3605,5225,2464],"delegatorTokens":9999999918928}},{"ix":168,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":23,"t":138,"consumerPower":[null,2419,null,4251],"outstandingDowntime":[false,false,false,false]}},{"ix":169,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":170,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":17,"t":102,"tokens":[3892,4605,6225,3464],"delegation":[2892,3605,5225,2464],"delegatorTokens":9999999923015,"jailed":[1000000000000029,null,1000000000000029,null],"status":["unbonding","bonded","unbonding","bonded"]}},{"ix":171,"action":{"kind":"Undelegate","val":3,"amt":4261},"partialState":{"h":17,"t":102,"tokens":[3892,4605,6225,3464],"delegation":[2892,3605,5225,2464],"delegatorTokens":9999999923015}},{"ix":172,"action":{"kind":"Undelegate","val":2,"amt":4239},"partialState":{"h":17,"t":102,"tokens":[3892,4605,1986,3464],"delegation":[2892,3605,986,2464],"delegatorTokens":9999999923015}},{"ix":173,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":18,"t":108,"tokens":[3892,4605,1986,3464],"delegation":[2892,3605,986,2464],"delegatorTokens":9999999930520,"jailed":[1000000000000029,null,1000000000000029,null],"status":["unbonded","bonded","unbonding","bonded"]}},{"ix":174,"action":{"kind":"Undelegate","val":1,"amt":3695},"partialState":{"h":18,"t":108,"tokens":[3892,4605,1986,3464],"delegation":[2892,3605,986,2464],"delegatorTokens":9999999930520}},{"ix":175,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":176,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":177,"action":{"kind":"Deliver","chain":"consumer","numPackets":5},"partialState":{"h":23,"t":138,"consumerPower":[null,2419,null,4251],"outstandingDowntime":[false,false,false,false]}},{"ix":178,"action":{"kind":"Undelegate","val":2,"amt":2209},"partialState":{"h":18,"t":108,"tokens":[3892,4605,1986,3464],"delegation":[2892,3605,986,2464],"delegatorTokens":9999999930520}},{"ix":179,"action":{"kind":"Undelegate","val":0,"amt":1946},"partialState":{"h":18,"t":108,"tokens":[1946,4605,1986,3464],"delegation":[946,3605,986,2464],"delegatorTokens":9999999930520}},{"ix":180,"action":{"kind":"Deliver","chain":"consumer","numPackets":1},"partialState":{"h":23,"t":138,"consumerPower":[null,2419,null,4251],"outstandingDowntime":[false,false,false,false]}},{"ix":181,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":24,"t":144,"consumerPower":[null,4605,null,3464],"outstandingDowntime":[false,false,false,false]}},{"ix":182,"action":{"kind":"Undelegate","val":0,"amt":3210},"partialState":{"h":18,"t":108,"tokens":[1946,4605,1986,3464],"delegation":[946,3605,986,2464],"delegatorTokens":9999999930520}},{"ix":183,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":19,"t":114,"tokens":[1946,4605,1986,3464],"delegation":[946,3605,986,2464],"delegatorTokens":9999999936406,"jailed":[1000000000000029,null,1000000000000029,null],"status":["unbonded","bonded","unbonded","bonded"]}},{"ix":184,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":20,"t":120,"tokens":[1946,4605,1986,3464],"delegation":[946,3605,986,2464],"delegatorTokens":9999999938686,"jailed":[1000000000000029,null,1000000000000029,null],"status":["unbonded","bonded","unbonded","bonded"]}},{"ix":185,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":186,"action":{"kind":"Deliver","chain":"provider","numPackets":4},"partialState":{"h":20,"t":120,"tokens":[1946,4605,1986,3464],"delegation":[946,3605,986,2464],"delegatorTokens":9999999938686,"jailed":[1000000000000029,null,1000000000000029,null],"status":["unbonded","bonded","unbonded","bonded"]}},{"ix":187,"action":{"kind":"Undelegate","val":0,"amt":4931},"partialState":{"h":20,"t":120,"tokens":[1946,4605,1986,3464],"delegation":[946,3605,986,2464],"delegatorTokens":9999999938686}},{"ix":188,"action":{"kind":"Delegate","val":3,"amt":4432},"partialState":{"h":20,"t":120,"tokens":[1946,4605,1986,7896],"delegation":[946,3605,986,6896],"delegatorTokens":9999999934254}},{"ix":189,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":21,"t":126,"tokens":[1946,4605,1986,7896],"delegation":[946,3605,986,6896],"delegatorTokens":9999999934254,"jailed":[1000000000000029,null,1000000000000029,null],"status":["unbonded","bonded","unbonded","bonded"]}},{"ix":190,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":191,"action":{"kind":"Undelegate","val":2,"amt":3249},"partialState":{"h":21,"t":126,"tokens":[1946,4605,1986,7896],"delegation":[946,3605,986,6896],"delegatorTokens":9999999934254}},{"ix":192,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":193,"action":{"kind":"Deliver","chain":"consumer","numPackets":4},"partialState":{"h":24,"t":144,"consumerPower":[null,4605,null,3464],"outstandingDowntime":[false,false,false,false]}},{"ix":194,"action":{"kind":"Deliver","chain":"consumer","numPackets":3},"partialState":{"h":24,"t":144,"consumerPower":[null,4605,null,3464],"outstandingDowntime":[false,false,false,false]}},{"ix":195,"action":{"kind":"Deliver","chain":"provider","numPackets":2},"partialState":{"h":21,"t":126,"tokens":[1946,4605,1986,7896],"delegation":[946,3605,986,6896],"delegatorTokens":9999999934254,"jailed":[1000000000000029,null,1000000000000029,null],"status":["unbonded","bonded","unbonded","bonded"]}},{"ix":196,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":197,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":198,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":199,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":22,"t":132,"tokens":[1946,4605,1986,7896],"delegation":[946,3605,986,6896],"delegatorTokens":9999999942415,"jailed":[1000000000000029,null,1000000000000029,null],"status":["unbonded","bonded","unbonded","bonded"]}}],"events":["send_double_sign_slash_request","send_downtime_slash_request","send_vsc_without_downtime_ack","send_vsc_without_downtime_ack","downtime_slash_request_outstanding","downtime_slash_request_outstanding","insufficient_shares","send_downtime_slash_request","downtime_slash_request_outstanding","downtime_slash_request_outstanding","consumer_update_val","insufficient_shares","receive_double_sign_slash_request","send_double_sign_slash_request","send_double_sign_slash_request","receive_double_sign_slash_request","receive_downtime_slash_request","jail","receive_downtime_slash_request","jail","send_vsc_with_downtime_ack","more_than_one_third_val_power_change","send_vsc_without_downtime_ack","consumer_update_val","receive_downtime_slash_ack","receive_downtime_slash_ack","send_vsc_without_downtime_ack","send_vsc_without_downtime_ack","send_vsc_not_because_change","send_vsc_without_downtime_ack","send_vsc_not_because_change","send_vsc_without_downtime_ack","consumer_del_val","consumer_update_val","consumer_del_val","consumer_add_val","receive_double_sign_slash_request","consumer_update_val","send_vsc_without_downtime_ack","consumer_send_maturation","set_undel_hold_false","send_vsc_without_downtime_ack","complete_undel_in_endblock","consumer_send_maturation","consumer_update_val","insufficient_shares","insufficient_shares","consumer_send_maturation","consumer_send_maturation","consumer_send_maturation","consumer_send_maturation","consumer_send_maturation","consumer_update_val","set_undel_hold_false","set_undel_hold_false","set_undel_hold_false","set_unval_hold_false","set_undel_hold_false","set_undel_hold_false","set_unval_hold_false","set_undel_hold_false","send_vsc_without_downtime_ack","insufficient_shares","insufficient_shares","complete_undel_in_endblock","set_undel_hold_false","set_undel_hold_false","set_undel_hold_false","send_vsc_without_downtime_ack","insufficient_shares","complete_unval_in_endblock","complete_undel_in_endblock","send_vsc_not_because_change","send_vsc_without_downtime_ack","insufficient_shares","insufficient_shares","consumer_update_val","consumer_update_val","insufficient_shares","complete_unval_in_endblock","complete_undel_in_endblock","send_vsc_not_because_change","send_vsc_without_downtime_ack","complete_undel_in_endblock","insufficient_shares","send_vsc_without_downtime_ack","insufficient_shares","complete_undel_in_endblock"]},{"meta":{"commit":"7ffd0c04e4205cbc9caf212abfe6c59ee43153bf"},"constants":{"P":"provider","C":"consumer","UNBONDING_SECONDS_P":70,"UNBONDING_SECONDS_C":50,"TRUSTING_SECONDS":49,"NUM_VALIDATORS":4,"MAX_VALIDATORS":2,"SLASH_DOUBLESIGN":0,"SLASH_DOWNTIME":0,"JAIL_SECONDS":999999999999999,"BLOCK_SECONDS":6,"INITIAL_DELEGATOR_TOKENS":10000000000000,"DELEGATE_AMT_MIN":1000,"DELEGATE_AMT_MAX":5000,"UNDELEGATE_AMT_MIN":1000,"UNDELEGATE_AMT_MAX":5000,"ISDOWNTIME_PROBABILITY":0.5,"MAX_NUM_PACKETS_FOR_DELIVER":6},"actions":[{"ix":0,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":2,"t":12,"tokens":[5000,4000,3000,2000],"delegation":[4000,3000,2000,1000],"delegatorTokens":10000000000000,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":1,"action":{"kind":"Delegate","val":0,"amt":2267},"partialState":{"h":2,"t":12,"tokens":[7267,4000,3000,2000],"delegation":[6267,3000,2000,1000],"delegatorTokens":9999999997733}},{"ix":2,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":3,"action":{"kind":"ConsumerSlash","val":2,"infractionHeight":0,"isDowntime":true},"partialState":{"h":1,"t":6,"outstandingDowntime":[false,false,true,false]}},{"ix":4,"action":{"kind":"Delegate","val":0,"amt":1165},"partialState":{"h":2,"t":12,"tokens":[8432,4000,3000,2000],"delegation":[7432,3000,2000,1000],"delegatorTokens":9999999996568}},{"ix":5,"action":{"kind":"Deliver","chain":"provider","numPackets":5},"partialState":{"h":2,"t":12,"tokens":[8432,4000,3000,2000],"delegation":[7432,3000,2000,1000],"delegatorTokens":9999999996568,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":6,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":3,"t":18,"tokens":[8432,4000,3000,2000],"delegation":[7432,3000,2000,1000],"delegatorTokens":9999999996568,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":7,"action":{"kind":"Delegate","val":1,"amt":3093},"partialState":{"h":3,"t":18,"tokens":[8432,7093,3000,2000],"delegation":[7432,6093,2000,1000],"delegatorTokens":9999999993475}},{"ix":8,"action":{"kind":"Undelegate","val":3,"amt":3269},"partialState":{"h":3,"t":18,"tokens":[8432,7093,3000,2000],"delegation":[7432,6093,2000,1000],"delegatorTokens":9999999993475}},{"ix":9,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":2,"t":12,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,false,true,false]}},{"ix":10,"action":{"kind":"ConsumerSlash","val":2,"infractionHeight":0,"isDowntime":true},"partialState":{"h":2,"t":12,"outstandingDowntime":[false,false,true,false]}},{"ix":11,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":4,"t":24,"tokens":[8432,7093,3000,2000],"delegation":[7432,6093,2000,1000],"delegatorTokens":9999999993475,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":12,"action":{"kind":"ConsumerSlash","val":3,"infractionHeight":1,"isDowntime":false},"partialState":{"h":2,"t":12,"outstandingDowntime":[false,false,true,false]}},{"ix":13,"action":{"kind":"Deliver","chain":"provider","numPackets":2},"partialState":{"h":4,"t":24,"tokens":[8432,7093,3000,2000],"delegation":[7432,6093,2000,1000],"delegatorTokens":9999999993475,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":14,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":15,"action":{"kind":"ConsumerSlash","val":3,"infractionHeight":1,"isDowntime":true},"partialState":{"h":2,"t":12,"outstandingDowntime":[false,false,true,true]}},{"ix":16,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":5,"t":30,"tokens":[8432,7093,3000,2000],"delegation":[7432,6093,2000,1000],"delegatorTokens":9999999993475,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":17,"action":{"kind":"Delegate","val":0,"amt":1331},"partialState":{"h":5,"t":30,"tokens":[9763,7093,3000,2000],"delegation":[8763,6093,2000,1000],"delegatorTokens":9999999992144}},{"ix":18,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":6,"t":36,"tokens":[9763,7093,3000,2000],"delegation":[8763,6093,2000,1000],"delegatorTokens":9999999992144,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":19,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":20,"action":{"kind":"Deliver","chain":"provider","numPackets":5},"partialState":{"h":6,"t":36,"tokens":[9763,7093,3000,2000],"delegation":[8763,6093,2000,1000],"delegatorTokens":9999999992144,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":21,"action":{"kind":"Undelegate","val":3,"amt":4118},"partialState":{"h":6,"t":36,"tokens":[9763,7093,3000,2000],"delegation":[8763,6093,2000,1000],"delegatorTokens":9999999992144}},{"ix":22,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":23,"action":{"kind":"Deliver","chain":"provider","numPackets":2},"partialState":{"h":6,"t":36,"tokens":[9763,7093,3000,2000],"delegation":[8763,6093,2000,1000],"delegatorTokens":9999999992144,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":24,"action":{"kind":"ConsumerSlash","val":2,"infractionHeight":1,"isDowntime":true},"partialState":{"h":2,"t":12,"outstandingDowntime":[false,false,true,true]}},{"ix":25,"action":{"kind":"ConsumerSlash","val":2,"infractionHeight":1,"isDowntime":false},"partialState":{"h":2,"t":12,"outstandingDowntime":[false,false,true,true]}},{"ix":26,"action":{"kind":"Delegate","val":2,"amt":3784},"partialState":{"h":6,"t":36,"tokens":[9763,7093,6784,2000],"delegation":[8763,6093,5784,1000],"delegatorTokens":9999999988360}},{"ix":27,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":3,"t":18,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,false,true,true]}},{"ix":28,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":7,"t":42,"tokens":[9763,7093,6784,2000],"delegation":[8763,6093,5784,1000],"delegatorTokens":9999999988360,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":29,"action":{"kind":"Delegate","val":2,"amt":2009},"partialState":{"h":7,"t":42,"tokens":[9763,7093,8793,2000],"delegation":[8763,6093,7793,1000],"delegatorTokens":9999999986351}},{"ix":30,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":31,"action":{"kind":"Delegate","val":3,"amt":2358},"partialState":{"h":7,"t":42,"tokens":[9763,7093,8793,4358],"delegation":[8763,6093,7793,3358],"delegatorTokens":9999999983993}},{"ix":32,"action":{"kind":"Undelegate","val":2,"amt":3058},"partialState":{"h":7,"t":42,"tokens":[9763,7093,5735,4358],"delegation":[8763,6093,4735,3358],"delegatorTokens":9999999983993}},{"ix":33,"action":{"kind":"Delegate","val":1,"amt":1397},"partialState":{"h":7,"t":42,"tokens":[9763,8490,5735,4358],"delegation":[8763,7490,4735,3358],"delegatorTokens":9999999982596}},{"ix":34,"action":{"kind":"ConsumerSlash","val":2,"infractionHeight":1,"isDowntime":true},"partialState":{"h":3,"t":18,"outstandingDowntime":[false,false,true,true]}},{"ix":35,"action":{"kind":"Deliver","chain":"provider","numPackets":2},"partialState":{"h":7,"t":42,"tokens":[9763,8490,5735,4358],"delegation":[8763,7490,4735,3358],"delegatorTokens":9999999982596,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":36,"action":{"kind":"Undelegate","val":1,"amt":3953},"partialState":{"h":7,"t":42,"tokens":[9763,4537,5735,4358],"delegation":[8763,3537,4735,3358],"delegatorTokens":9999999982596}},{"ix":37,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":8,"t":48,"tokens":[9763,4537,5735,4358],"delegation":[8763,3537,4735,3358],"delegatorTokens":9999999982596,"jailed":[null,null,1000000000000041,null],"status":["bonded","unbonding","bonded","unbonded"]}},{"ix":38,"action":{"kind":"ConsumerSlash","val":0,"infractionHeight":0,"isDowntime":true},"partialState":{"h":3,"t":18,"outstandingDowntime":[true,false,true,true]}},{"ix":39,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":40,"action":{"kind":"Deliver","chain":"provider","numPackets":2},"partialState":{"h":8,"t":48,"tokens":[9763,4537,5735,4358],"delegation":[8763,3537,4735,3358],"delegatorTokens":9999999982596,"jailed":[null,null,1000000000000041,null],"status":["bonded","unbonding","bonded","unbonded"]}},{"ix":41,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":42,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":43,"action":{"kind":"Undelegate","val":0,"amt":1623},"partialState":{"h":8,"t":48,"tokens":[8140,4537,5735,4358],"delegation":[7140,3537,4735,3358],"delegatorTokens":9999999982596}},{"ix":44,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":9,"t":54,"tokens":[8140,4537,5735,4358],"delegation":[7140,3537,4735,3358],"delegatorTokens":9999999982596,"jailed":[null,null,1000000000000041,null],"status":["bonded","bonded","unbonding","unbonded"]}},{"ix":45,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":46,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":47,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":10,"t":60,"tokens":[8140,4537,5735,4358],"delegation":[7140,3537,4735,3358],"delegatorTokens":9999999982596,"jailed":[null,null,1000000000000041,null],"status":["bonded","bonded","unbonding","unbonded"]}},{"ix":48,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":49,"action":{"kind":"Delegate","val":3,"amt":4483},"partialState":{"h":10,"t":60,"tokens":[8140,4537,5735,8841],"delegation":[7140,3537,4735,7841],"delegatorTokens":9999999978113}},{"ix":50,"action":{"kind":"Deliver","chain":"consumer","numPackets":5},"partialState":{"h":3,"t":18,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[true,false,false,true]}},{"ix":51,"action":{"kind":"Delegate","val":1,"amt":4049},"partialState":{"h":10,"t":60,"tokens":[8140,8586,5735,8841],"delegation":[7140,7586,4735,7841],"delegatorTokens":9999999974064}},{"ix":52,"action":{"kind":"Delegate","val":1,"amt":1607},"partialState":{"h":10,"t":60,"tokens":[8140,10193,5735,8841],"delegation":[7140,9193,4735,7841],"delegatorTokens":9999999972457}},{"ix":53,"action":{"kind":"Delegate","val":1,"amt":2838},"partialState":{"h":10,"t":60,"tokens":[8140,13031,5735,8841],"delegation":[7140,12031,4735,7841],"delegatorTokens":9999999969619}},{"ix":54,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":4,"t":24,"consumerPower":[8140,4537,null,null],"outstandingDowntime":[true,false,false,true]}},{"ix":55,"action":{"kind":"Deliver","chain":"provider","numPackets":1},"partialState":{"h":10,"t":60,"tokens":[8140,13031,5735,8841],"delegation":[7140,12031,4735,7841],"delegatorTokens":9999999969619,"jailed":[null,null,1000000000000041,null],"status":["bonded","bonded","unbonding","unbonded"]}},{"ix":56,"action":{"kind":"Deliver","chain":"provider","numPackets":5},"partialState":{"h":10,"t":60,"tokens":[8140,13031,5735,8841],"delegation":[7140,12031,4735,7841],"delegatorTokens":9999999969619,"jailed":[null,null,1000000000000041,null],"status":["bonded","bonded","unbonding","unbonded"]}},{"ix":57,"action":{"kind":"Delegate","val":1,"amt":1938},"partialState":{"h":10,"t":60,"tokens":[8140,14969,5735,8841],"delegation":[7140,13969,4735,7841],"delegatorTokens":9999999967681}},{"ix":58,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":5,"t":30,"consumerPower":[8140,4537,null,null],"outstandingDowntime":[true,false,false,true]}},{"ix":59,"action":{"kind":"Delegate","val":0,"amt":1448},"partialState":{"h":10,"t":60,"tokens":[9588,14969,5735,8841],"delegation":[8588,13969,4735,7841],"delegatorTokens":9999999966233}},{"ix":60,"action":{"kind":"Undelegate","val":3,"amt":2811},"partialState":{"h":10,"t":60,"tokens":[9588,14969,5735,6030],"delegation":[8588,13969,4735,5030],"delegatorTokens":9999999966233}},{"ix":61,"action":{"kind":"Deliver","chain":"consumer","numPackets":6},"partialState":{"h":5,"t":30,"consumerPower":[8140,4537,null,null],"outstandingDowntime":[true,false,false,true]}},{"ix":62,"action":{"kind":"Delegate","val":2,"amt":3575},"partialState":{"h":10,"t":60,"tokens":[9588,14969,9310,6030],"delegation":[8588,13969,8310,5030],"delegatorTokens":9999999962658}},{"ix":63,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":6,"t":36,"consumerPower":[8140,4537,null,null],"outstandingDowntime":[true,false,false,true]}},{"ix":64,"action":{"kind":"Deliver","chain":"provider","numPackets":4},"partialState":{"h":10,"t":60,"tokens":[9588,14969,9310,6030],"delegation":[8588,13969,8310,5030],"delegatorTokens":9999999962658,"jailed":[null,null,1000000000000041,null],"status":["bonded","bonded","unbonding","unbonded"]}},{"ix":65,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":66,"action":{"kind":"Delegate","val":2,"amt":4537},"partialState":{"h":10,"t":60,"tokens":[9588,14969,13847,6030],"delegation":[8588,13969,12847,5030],"delegatorTokens":9999999958121}},{"ix":67,"action":{"kind":"Deliver","chain":"consumer","numPackets":4},"partialState":{"h":6,"t":36,"consumerPower":[8140,4537,null,null],"outstandingDowntime":[true,false,false,true]}},{"ix":68,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":11,"t":66,"tokens":[9588,14969,13847,6030],"delegation":[8588,13969,12847,5030],"delegatorTokens":9999999958121,"jailed":[1000000000000059,null,1000000000000041,null],"status":["bonded","bonded","unbonding","unbonded"]}},{"ix":69,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":7,"t":42,"consumerPower":[8140,4537,null,null],"outstandingDowntime":[true,false,false,true]}},{"ix":70,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":8,"t":48,"consumerPower":[8140,4537,null,null],"outstandingDowntime":[true,false,false,true]}},{"ix":71,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":12,"t":72,"tokens":[9588,14969,13847,6030],"delegation":[8588,13969,12847,5030],"delegatorTokens":9999999958121,"jailed":[1000000000000059,null,1000000000000041,null],"status":["unbonding","bonded","unbonding","bonded"]}},{"ix":72,"action":{"kind":"Deliver","chain":"consumer","numPackets":2},"partialState":{"h":8,"t":48,"consumerPower":[8140,4537,null,null],"outstandingDowntime":[false,false,false,true]}},{"ix":73,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":74,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":9,"t":54,"consumerPower":[9588,14969,null,null],"outstandingDowntime":[false,false,false,true]}},{"ix":75,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":76,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":77,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":10,"t":60,"consumerPower":[9588,14969,null,null],"outstandingDowntime":[false,false,false,true]}},{"ix":78,"action":{"kind":"Deliver","chain":"consumer","numPackets":5},"partialState":{"h":10,"t":60,"consumerPower":[9588,14969,null,null],"outstandingDowntime":[false,false,false,true]}},{"ix":79,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":80,"action":{"kind":"Deliver","chain":"provider","numPackets":5},"partialState":{"h":12,"t":72,"tokens":[9588,14969,13847,6030],"delegation":[8588,13969,12847,5030],"delegatorTokens":9999999958121,"jailed":[1000000000000059,null,1000000000000041,null],"status":["unbonding","bonded","unbonding","bonded"]}},{"ix":81,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":11,"t":66,"consumerPower":[9588,14969,null,null],"outstandingDowntime":[false,false,false,true]}},{"ix":82,"action":{"kind":"Delegate","val":2,"amt":1835},"partialState":{"h":12,"t":72,"tokens":[9588,14969,15682,6030],"delegation":[8588,13969,14682,5030],"delegatorTokens":9999999956286}},{"ix":83,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":13,"t":78,"tokens":[9588,14969,15682,6030],"delegation":[8588,13969,14682,5030],"delegatorTokens":9999999956286,"jailed":[1000000000000059,null,1000000000000041,null],"status":["unbonding","bonded","unbonding","bonded"]}},{"ix":84,"action":{"kind":"Undelegate","val":0,"amt":4716},"partialState":{"h":13,"t":78,"tokens":[4872,14969,15682,6030],"delegation":[3872,13969,14682,5030],"delegatorTokens":9999999956286}},{"ix":85,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":86,"action":{"kind":"Deliver","chain":"provider","numPackets":5},"partialState":{"h":13,"t":78,"tokens":[4872,14969,15682,6030],"delegation":[3872,13969,14682,5030],"delegatorTokens":9999999956286,"jailed":[1000000000000059,null,1000000000000041,null],"status":["unbonding","bonded","unbonding","bonded"]}},{"ix":87,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":12,"t":72,"consumerPower":[9588,14969,null,null],"outstandingDowntime":[false,false,false,true]}},{"ix":88,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":14,"t":84,"tokens":[4872,14969,15682,6030],"delegation":[3872,13969,14682,5030],"delegatorTokens":9999999956286,"jailed":[1000000000000059,null,1000000000000041,null],"status":["unbonding","bonded","unbonding","bonded"]}},{"ix":89,"action":{"kind":"Deliver","chain":"provider","numPackets":2},"partialState":{"h":14,"t":84,"tokens":[4872,14969,15682,6030],"delegation":[3872,13969,14682,5030],"delegatorTokens":9999999956286,"jailed":[1000000000000059,null,1000000000000041,null],"status":["unbonding","bonded","unbonding","bonded"]}},{"ix":90,"action":{"kind":"Deliver","chain":"provider","numPackets":1},"partialState":{"h":14,"t":84,"tokens":[4872,14969,15682,6030],"delegation":[3872,13969,14682,5030],"delegatorTokens":9999999956286,"jailed":[1000000000000059,null,1000000000000041,null],"status":["unbonding","bonded","unbonding","bonded"]}},{"ix":91,"action":{"kind":"Delegate","val":3,"amt":1975},"partialState":{"h":14,"t":84,"tokens":[4872,14969,15682,8005],"delegation":[3872,13969,14682,7005],"delegatorTokens":9999999954311}},{"ix":92,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":15,"t":90,"tokens":[4872,14969,15682,8005],"delegation":[3872,13969,14682,7005],"delegatorTokens":9999999954311,"jailed":[1000000000000059,null,1000000000000041,null],"status":["unbonding","bonded","unbonding","bonded"]}},{"ix":93,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":94,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":13,"t":78,"consumerPower":[9588,14969,null,null],"outstandingDowntime":[false,false,false,true]}},{"ix":95,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":96,"action":{"kind":"Delegate","val":3,"amt":3491},"partialState":{"h":15,"t":90,"tokens":[4872,14969,15682,11496],"delegation":[3872,13969,14682,10496],"delegatorTokens":9999999950820}},{"ix":97,"action":{"kind":"Deliver","chain":"consumer","numPackets":1},"partialState":{"h":13,"t":78,"consumerPower":[9588,14969,null,null],"outstandingDowntime":[false,false,false,true]}},{"ix":98,"action":{"kind":"Delegate","val":2,"amt":2889},"partialState":{"h":15,"t":90,"tokens":[4872,14969,18571,11496],"delegation":[3872,13969,17571,10496],"delegatorTokens":9999999947931}},{"ix":99,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":100,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":14,"t":84,"consumerPower":[null,14969,null,6030],"outstandingDowntime":[false,false,false,true]}},{"ix":101,"action":{"kind":"Deliver","chain":"consumer","numPackets":2},"partialState":{"h":14,"t":84,"consumerPower":[null,14969,null,6030],"outstandingDowntime":[false,false,false,true]}},{"ix":102,"action":{"kind":"Delegate","val":0,"amt":4533},"partialState":{"h":15,"t":90,"tokens":[9405,14969,18571,11496],"delegation":[8405,13969,17571,10496],"delegatorTokens":9999999943398}},{"ix":103,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":104,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":16,"t":96,"tokens":[9405,14969,18571,11496],"delegation":[8405,13969,17571,10496],"delegatorTokens":9999999943398,"jailed":[1000000000000059,null,1000000000000041,null],"status":["unbonding","bonded","unbonding","bonded"]}},{"ix":105,"action":{"kind":"Deliver","chain":"provider","numPackets":4},"partialState":{"h":16,"t":96,"tokens":[9405,14969,18571,11496],"delegation":[8405,13969,17571,10496],"delegatorTokens":9999999943398,"jailed":[1000000000000059,null,1000000000000041,null],"status":["unbonding","bonded","unbonding","bonded"]}},{"ix":106,"action":{"kind":"Delegate","val":0,"amt":4523},"partialState":{"h":16,"t":96,"tokens":[13928,14969,18571,11496],"delegation":[12928,13969,17571,10496],"delegatorTokens":9999999938875}},{"ix":107,"action":{"kind":"Delegate","val":2,"amt":2462},"partialState":{"h":16,"t":96,"tokens":[13928,14969,21033,11496],"delegation":[12928,13969,20033,10496],"delegatorTokens":9999999936413}},{"ix":108,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":15,"t":90,"consumerPower":[null,14969,null,6030],"outstandingDowntime":[false,false,false,true]}},{"ix":109,"action":{"kind":"Deliver","chain":"provider","numPackets":5},"partialState":{"h":16,"t":96,"tokens":[13928,14969,21033,11496],"delegation":[12928,13969,20033,10496],"delegatorTokens":9999999936413,"jailed":[1000000000000059,null,1000000000000041,null],"status":["unbonding","bonded","unbonding","bonded"]}},{"ix":110,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":16,"t":96,"consumerPower":[null,14969,null,6030],"outstandingDowntime":[false,false,false,true]}},{"ix":111,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":112,"action":{"kind":"Undelegate","val":1,"amt":2191},"partialState":{"h":16,"t":96,"tokens":[13928,12778,21033,11496],"delegation":[12928,11778,20033,10496],"delegatorTokens":9999999936413}},{"ix":113,"action":{"kind":"Delegate","val":2,"amt":3000},"partialState":{"h":16,"t":96,"tokens":[13928,12778,24033,11496],"delegation":[12928,11778,23033,10496],"delegatorTokens":9999999933413}},{"ix":114,"action":{"kind":"Deliver","chain":"consumer","numPackets":1},"partialState":{"h":16,"t":96,"consumerPower":[null,14969,null,6030],"outstandingDowntime":[false,false,false,true]}},{"ix":115,"action":{"kind":"Undelegate","val":1,"amt":4131},"partialState":{"h":16,"t":96,"tokens":[13928,8647,24033,11496],"delegation":[12928,7647,23033,10496],"delegatorTokens":9999999933413}},{"ix":116,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":17,"t":102,"consumerPower":[null,14969,null,8005],"outstandingDowntime":[false,false,false,true]}},{"ix":117,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":118,"action":{"kind":"Deliver","chain":"consumer","numPackets":4},"partialState":{"h":17,"t":102,"consumerPower":[null,14969,null,8005],"outstandingDowntime":[false,false,false,true]}},{"ix":119,"action":{"kind":"Deliver","chain":"consumer","numPackets":4},"partialState":{"h":17,"t":102,"consumerPower":[null,14969,null,8005],"outstandingDowntime":[false,false,false,true]}},{"ix":120,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":121,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":122,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":17,"t":102,"tokens":[13928,8647,24033,11496],"delegation":[12928,7647,23033,10496],"delegatorTokens":9999999933413,"jailed":[1000000000000059,null,1000000000000041,null],"status":["unbonding","bonded","unbonding","bonded"]}},{"ix":123,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":18,"t":108,"consumerPower":[null,14969,null,8005],"outstandingDowntime":[false,false,false,true]}},{"ix":124,"action":{"kind":"Deliver","chain":"provider","numPackets":6},"partialState":{"h":17,"t":102,"tokens":[13928,8647,24033,11496],"delegation":[12928,7647,23033,10496],"delegatorTokens":9999999933413,"jailed":[1000000000000059,null,1000000000000041,null],"status":["unbonding","bonded","unbonding","bonded"]}},{"ix":125,"action":{"kind":"Delegate","val":3,"amt":3243},"partialState":{"h":17,"t":102,"tokens":[13928,8647,24033,14739],"delegation":[12928,7647,23033,13739],"delegatorTokens":9999999930170}},{"ix":126,"action":{"kind":"Undelegate","val":2,"amt":1347},"partialState":{"h":17,"t":102,"tokens":[13928,8647,22686,14739],"delegation":[12928,7647,21686,13739],"delegatorTokens":9999999930170}},{"ix":127,"action":{"kind":"Deliver","chain":"consumer","numPackets":6},"partialState":{"h":18,"t":108,"consumerPower":[null,14969,null,8005],"outstandingDowntime":[false,false,false,true]}},{"ix":128,"action":{"kind":"Delegate","val":2,"amt":1623},"partialState":{"h":17,"t":102,"tokens":[13928,8647,24309,14739],"delegation":[12928,7647,23309,13739],"delegatorTokens":9999999928547}},{"ix":129,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":130,"action":{"kind":"Deliver","chain":"provider","numPackets":5},"partialState":{"h":17,"t":102,"tokens":[13928,8647,24309,14739],"delegation":[12928,7647,23309,13739],"delegatorTokens":9999999928547,"jailed":[1000000000000059,null,1000000000000041,null],"status":["unbonding","bonded","unbonding","bonded"]}},{"ix":131,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":132,"action":{"kind":"Undelegate","val":1,"amt":3580},"partialState":{"h":17,"t":102,"tokens":[13928,5067,24309,14739],"delegation":[12928,4067,23309,13739],"delegatorTokens":9999999928547}},{"ix":133,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":18,"t":108,"tokens":[13928,5067,24309,14739],"delegation":[12928,4067,23309,13739],"delegatorTokens":9999999928547,"jailed":[1000000000000059,null,1000000000000041,null],"status":["unbonding","bonded","unbonding","bonded"]}},{"ix":134,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":135,"action":{"kind":"Deliver","chain":"provider","numPackets":6},"partialState":{"h":18,"t":108,"tokens":[13928,5067,24309,14739],"delegation":[12928,4067,23309,13739],"delegatorTokens":9999999928547,"jailed":[1000000000000059,null,1000000000000041,null],"status":["unbonding","bonded","unbonding","bonded"]}},{"ix":136,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":19,"t":114,"consumerPower":[null,14969,null,11496],"outstandingDowntime":[false,false,false,true]}},{"ix":137,"action":{"kind":"Undelegate","val":0,"amt":3108},"partialState":{"h":18,"t":108,"tokens":[10820,5067,24309,14739],"delegation":[9820,4067,23309,13739],"delegatorTokens":9999999928547}},{"ix":138,"action":{"kind":"Undelegate","val":2,"amt":4015},"partialState":{"h":18,"t":108,"tokens":[10820,5067,20294,14739],"delegation":[9820,4067,19294,13739],"delegatorTokens":9999999928547}},{"ix":139,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":20,"t":120,"consumerPower":[null,14969,null,11496],"outstandingDowntime":[false,false,false,true]}},{"ix":140,"action":{"kind":"Undelegate","val":3,"amt":2705},"partialState":{"h":18,"t":108,"tokens":[10820,5067,20294,12034],"delegation":[9820,4067,19294,11034],"delegatorTokens":9999999928547}},{"ix":141,"action":{"kind":"Deliver","chain":"consumer","numPackets":3},"partialState":{"h":20,"t":120,"consumerPower":[null,14969,null,11496],"outstandingDowntime":[false,false,false,true]}},{"ix":142,"action":{"kind":"Deliver","chain":"consumer","numPackets":1},"partialState":{"h":20,"t":120,"consumerPower":[null,14969,null,11496],"outstandingDowntime":[false,false,false,true]}},{"ix":143,"action":{"kind":"Deliver","chain":"consumer","numPackets":6},"partialState":{"h":20,"t":120,"consumerPower":[null,14969,null,11496],"outstandingDowntime":[false,false,false,true]}},{"ix":144,"action":{"kind":"Delegate","val":2,"amt":1116},"partialState":{"h":18,"t":108,"tokens":[10820,5067,21410,12034],"delegation":[9820,4067,20410,11034],"delegatorTokens":9999999927431}},{"ix":145,"action":{"kind":"Delegate","val":1,"amt":4677},"partialState":{"h":18,"t":108,"tokens":[10820,9744,21410,12034],"delegation":[9820,8744,20410,11034],"delegatorTokens":9999999922754}},{"ix":146,"action":{"kind":"Undelegate","val":3,"amt":1009},"partialState":{"h":18,"t":108,"tokens":[10820,9744,21410,11025],"delegation":[9820,8744,20410,10025],"delegatorTokens":9999999922754}},{"ix":147,"action":{"kind":"Delegate","val":0,"amt":2448},"partialState":{"h":18,"t":108,"tokens":[13268,9744,21410,11025],"delegation":[12268,8744,20410,10025],"delegatorTokens":9999999920306}},{"ix":148,"action":{"kind":"Undelegate","val":1,"amt":4567},"partialState":{"h":18,"t":108,"tokens":[13268,5177,21410,11025],"delegation":[12268,4177,20410,10025],"delegatorTokens":9999999920306}},{"ix":149,"action":{"kind":"Deliver","chain":"provider","numPackets":1},"partialState":{"h":18,"t":108,"tokens":[13268,5177,21410,11025],"delegation":[12268,4177,20410,10025],"delegatorTokens":9999999920306,"jailed":[1000000000000059,null,1000000000000041,null],"status":["unbonding","bonded","unbonding","bonded"]}},{"ix":150,"action":{"kind":"Deliver","chain":"provider","numPackets":5},"partialState":{"h":18,"t":108,"tokens":[13268,5177,21410,11025],"delegation":[12268,4177,20410,10025],"delegatorTokens":9999999920306,"jailed":[1000000000000059,null,1000000000000041,null],"status":["unbonding","bonded","unbonding","bonded"]}},{"ix":151,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":152,"action":{"kind":"Deliver","chain":"provider","numPackets":6},"partialState":{"h":18,"t":108,"tokens":[13268,5177,21410,11025],"delegation":[12268,4177,20410,10025],"delegatorTokens":9999999920306,"jailed":[1000000000000059,null,1000000000000041,null],"status":["unbonding","bonded","unbonding","bonded"]}},{"ix":153,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":154,"action":{"kind":"Delegate","val":3,"amt":3594},"partialState":{"h":18,"t":108,"tokens":[13268,5177,21410,14619],"delegation":[12268,4177,20410,13619],"delegatorTokens":9999999916712}},{"ix":155,"action":{"kind":"Undelegate","val":3,"amt":3508},"partialState":{"h":18,"t":108,"tokens":[13268,5177,21410,11111],"delegation":[12268,4177,20410,10111],"delegatorTokens":9999999916712}},{"ix":156,"action":{"kind":"Undelegate","val":0,"amt":1100},"partialState":{"h":18,"t":108,"tokens":[12168,5177,21410,11111],"delegation":[11168,4177,20410,10111],"delegatorTokens":9999999916712}},{"ix":157,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":158,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":19,"t":114,"tokens":[12168,5177,21410,11111],"delegation":[11168,4177,20410,10111],"delegatorTokens":9999999916712,"jailed":[1000000000000059,null,1000000000000041,null],"status":["unbonding","bonded","unbonding","bonded"]}},{"ix":159,"action":{"kind":"Delegate","val":0,"amt":3090},"partialState":{"h":19,"t":114,"tokens":[15258,5177,21410,11111],"delegation":[14258,4177,20410,10111],"delegatorTokens":9999999913622}},{"ix":160,"action":{"kind":"Undelegate","val":0,"amt":3386},"partialState":{"h":19,"t":114,"tokens":[11872,5177,21410,11111],"delegation":[10872,4177,20410,10111],"delegatorTokens":9999999913622}},{"ix":161,"action":{"kind":"Delegate","val":0,"amt":4561},"partialState":{"h":19,"t":114,"tokens":[16433,5177,21410,11111],"delegation":[15433,4177,20410,10111],"delegatorTokens":9999999909061}},{"ix":162,"action":{"kind":"Delegate","val":2,"amt":3056},"partialState":{"h":19,"t":114,"tokens":[16433,5177,24466,11111],"delegation":[15433,4177,23466,10111],"delegatorTokens":9999999906005}},{"ix":163,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":164,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":20,"t":120,"tokens":[16433,5177,24466,11111],"delegation":[15433,4177,23466,10111],"delegatorTokens":9999999913016,"jailed":[1000000000000059,null,1000000000000041,null],"status":["unbonding","bonded","unbonding","bonded"]}},{"ix":165,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":21,"t":126,"consumerPower":[null,8647,null,11496],"outstandingDowntime":[false,false,false,true]}},{"ix":166,"action":{"kind":"Deliver","chain":"provider","numPackets":3},"partialState":{"h":20,"t":120,"tokens":[16433,5177,24466,11111],"delegation":[15433,4177,23466,10111],"delegatorTokens":9999999913016,"jailed":[1000000000000059,null,1000000000000041,null],"status":["unbonding","bonded","unbonding","bonded"]}},{"ix":167,"action":{"kind":"Undelegate","val":1,"amt":3553},"partialState":{"h":20,"t":120,"tokens":[16433,1624,24466,11111],"delegation":[15433,624,23466,10111],"delegatorTokens":9999999913016}},{"ix":168,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":169,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":170,"action":{"kind":"Deliver","chain":"provider","numPackets":2},"partialState":{"h":20,"t":120,"tokens":[16433,1624,24466,11111],"delegation":[15433,624,23466,10111],"delegatorTokens":9999999913016,"jailed":[1000000000000059,null,1000000000000041,null],"status":["unbonding","bonded","unbonding","bonded"]}},{"ix":171,"action":{"kind":"Undelegate","val":2,"amt":1878},"partialState":{"h":20,"t":120,"tokens":[16433,1624,22588,11111],"delegation":[15433,624,21588,10111],"delegatorTokens":9999999913016}},{"ix":172,"action":{"kind":"Deliver","chain":"consumer","numPackets":3},"partialState":{"h":21,"t":126,"consumerPower":[null,8647,null,11496],"outstandingDowntime":[false,false,false,true]}},{"ix":173,"action":{"kind":"Deliver","chain":"provider","numPackets":3},"partialState":{"h":20,"t":120,"tokens":[16433,1624,22588,11111],"delegation":[15433,624,21588,10111],"delegatorTokens":9999999913016,"jailed":[1000000000000059,null,1000000000000041,null],"status":["unbonding","bonded","unbonding","bonded"]}},{"ix":174,"action":{"kind":"Deliver","chain":"consumer","numPackets":5},"partialState":{"h":21,"t":126,"consumerPower":[null,8647,null,11496],"outstandingDowntime":[false,false,false,true]}},{"ix":175,"action":{"kind":"Deliver","chain":"provider","numPackets":3},"partialState":{"h":20,"t":120,"tokens":[16433,1624,22588,11111],"delegation":[15433,624,21588,10111],"delegatorTokens":9999999913016,"jailed":[1000000000000059,null,1000000000000041,null],"status":["unbonding","bonded","unbonding","bonded"]}},{"ix":176,"action":{"kind":"Delegate","val":3,"amt":2548},"partialState":{"h":20,"t":120,"tokens":[16433,1624,22588,13659],"delegation":[15433,624,21588,12659],"delegatorTokens":9999999910468}},{"ix":177,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":21,"t":126,"tokens":[16433,1624,22588,13659],"delegation":[15433,624,21588,12659],"delegatorTokens":9999999912091,"jailed":[1000000000000059,null,1000000000000041,null],"status":["unbonding","bonded","unbonded","bonded"]}},{"ix":178,"action":{"kind":"Delegate","val":0,"amt":2490},"partialState":{"h":21,"t":126,"tokens":[18923,1624,22588,13659],"delegation":[17923,624,21588,12659],"delegatorTokens":9999999909601}},{"ix":179,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":22,"t":132,"consumerPower":[null,5177,null,11111],"outstandingDowntime":[false,false,false,true]}},{"ix":180,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":22,"t":132,"tokens":[18923,1624,22588,13659],"delegation":[17923,624,21588,12659],"delegatorTokens":9999999909601,"jailed":[1000000000000059,null,1000000000000041,null],"status":["unbonding","bonded","unbonded","bonded"]}},{"ix":181,"action":{"kind":"Deliver","chain":"provider","numPackets":1},"partialState":{"h":22,"t":132,"tokens":[18923,1624,22588,13659],"delegation":[17923,624,21588,12659],"delegatorTokens":9999999909601,"jailed":[1000000000000059,null,1000000000000041,null],"status":["unbonding","bonded","unbonded","bonded"]}},{"ix":182,"action":{"kind":"Delegate","val":3,"amt":4394},"partialState":{"h":22,"t":132,"tokens":[18923,1624,22588,18053],"delegation":[17923,624,21588,17053],"delegatorTokens":9999999905207}},{"ix":183,"action":{"kind":"Deliver","chain":"consumer","numPackets":4},"partialState":{"h":22,"t":132,"consumerPower":[null,5177,null,11111],"outstandingDowntime":[false,false,false,true]}},{"ix":184,"action":{"kind":"Undelegate","val":1,"amt":3691},"partialState":{"h":22,"t":132,"tokens":[18923,1624,22588,18053],"delegation":[17923,624,21588,17053],"delegatorTokens":9999999905207}},{"ix":185,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":23,"t":138,"consumerPower":[null,1624,null,13659],"outstandingDowntime":[false,false,false,true]}},{"ix":186,"action":{"kind":"Deliver","chain":"provider","numPackets":3},"partialState":{"h":22,"t":132,"tokens":[18923,1624,22588,18053],"delegation":[17923,624,21588,17053],"delegatorTokens":9999999905207,"jailed":[1000000000000059,null,1000000000000041,null],"status":["unbonding","bonded","unbonded","bonded"]}},{"ix":187,"action":{"kind":"Delegate","val":3,"amt":3499},"partialState":{"h":22,"t":132,"tokens":[18923,1624,22588,21552],"delegation":[17923,624,21588,20552],"delegatorTokens":9999999901708}},{"ix":188,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":24,"t":144,"consumerPower":[null,1624,null,13659],"outstandingDowntime":[false,false,false,true]}},{"ix":189,"action":{"kind":"Undelegate","val":0,"amt":4021},"partialState":{"h":22,"t":132,"tokens":[14902,1624,22588,21552],"delegation":[13902,624,21588,20552],"delegatorTokens":9999999901708}},{"ix":190,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":191,"action":{"kind":"Deliver","chain":"consumer","numPackets":1},"partialState":{"h":24,"t":144,"consumerPower":[null,1624,null,13659],"outstandingDowntime":[false,false,false,true]}},{"ix":192,"action":{"kind":"Delegate","val":1,"amt":3785},"partialState":{"h":22,"t":132,"tokens":[14902,5409,22588,21552],"delegation":[13902,4409,21588,20552],"delegatorTokens":9999999897923}},{"ix":193,"action":{"kind":"Deliver","chain":"provider","numPackets":4},"partialState":{"h":22,"t":132,"tokens":[14902,5409,22588,21552],"delegation":[13902,4409,21588,20552],"delegatorTokens":9999999897923,"jailed":[1000000000000059,null,1000000000000041,null],"status":["unbonding","bonded","unbonded","bonded"]}},{"ix":194,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":23,"t":138,"tokens":[14902,5409,22588,21552],"delegation":[13902,4409,21588,20552],"delegatorTokens":9999999900734,"jailed":[1000000000000059,null,1000000000000041,null],"status":["unbonding","bonded","unbonded","bonded"]}},{"ix":195,"action":{"kind":"Undelegate","val":2,"amt":3821},"partialState":{"h":23,"t":138,"tokens":[14902,5409,18767,21552],"delegation":[13902,4409,17767,20552],"delegatorTokens":9999999900734}},{"ix":196,"action":{"kind":"Delegate","val":1,"amt":2939},"partialState":{"h":23,"t":138,"tokens":[14902,8348,18767,21552],"delegation":[13902,7348,17767,20552],"delegatorTokens":9999999897795}},{"ix":197,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":24,"t":144,"tokens":[14902,8348,18767,21552],"delegation":[13902,7348,17767,20552],"delegatorTokens":9999999897795,"jailed":[1000000000000059,null,1000000000000041,null],"status":["unbonded","bonded","unbonded","bonded"]}},{"ix":198,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":199,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}}],"events":["send_downtime_slash_request","send_vsc_without_downtime_ack","insufficient_shares","downtime_slash_request_outstanding","send_vsc_without_downtime_ack","send_double_sign_slash_request","send_downtime_slash_request","send_vsc_without_downtime_ack","insufficient_shares","downtime_slash_request_outstanding","send_double_sign_slash_request","downtime_slash_request_outstanding","more_than_one_third_val_power_change","receive_downtime_slash_request","jail","send_vsc_with_downtime_ack","send_downtime_slash_request","more_than_one_third_val_power_change","rebond_unval","send_vsc_without_downtime_ack","receive_downtime_slash_ack","consumer_update_val","consumer_update_val","consumer_del_val","receive_double_sign_slash_request","receive_double_sign_slash_request","receive_slash_request_unbonded","receive_downtime_slash_request","jail","send_vsc_with_downtime_ack","send_vsc_without_downtime_ack","receive_downtime_slash_ack","consumer_update_val","consumer_update_val","send_vsc_not_because_change","send_vsc_without_downtime_ack","send_vsc_without_downtime_ack","consumer_send_maturation","consumer_send_maturation","consumer_send_maturation","consumer_send_maturation","consumer_send_maturation","consumer_del_val","consumer_add_val","send_vsc_without_downtime_ack","consumer_update_val","set_undel_hold_false","set_undel_hold_false","set_undel_hold_false","set_unval_hold_false","send_vsc_without_downtime_ack","consumer_send_maturation","send_vsc_without_downtime_ack","consumer_update_val","set_undel_hold_false","send_vsc_without_downtime_ack","complete_undel_in_endblock","send_vsc_not_because_change","send_vsc_without_downtime_ack","consumer_update_val","complete_unval_in_endblock","complete_undel_in_endblock","send_vsc_without_downtime_ack","consumer_update_val","consumer_update_val","insufficient_shares","consumer_send_maturation","consumer_update_val","consumer_update_val","consumer_send_maturation","complete_undel_in_endblock","set_unval_hold_false","send_vsc_without_downtime_ack","complete_unval_in_endblock","send_vsc_without_downtime_ack"]},{"meta":{"commit":"7ffd0c04e4205cbc9caf212abfe6c59ee43153bf"},"constants":{"P":"provider","C":"consumer","UNBONDING_SECONDS_P":70,"UNBONDING_SECONDS_C":50,"TRUSTING_SECONDS":49,"NUM_VALIDATORS":4,"MAX_VALIDATORS":2,"SLASH_DOUBLESIGN":0,"SLASH_DOWNTIME":0,"JAIL_SECONDS":999999999999999,"BLOCK_SECONDS":6,"INITIAL_DELEGATOR_TOKENS":10000000000000,"DELEGATE_AMT_MIN":1000,"DELEGATE_AMT_MAX":5000,"UNDELEGATE_AMT_MIN":1000,"UNDELEGATE_AMT_MAX":5000,"ISDOWNTIME_PROBABILITY":0.5,"MAX_NUM_PACKETS_FOR_DELIVER":6},"actions":[{"ix":0,"action":{"kind":"Deliver","chain":"provider","numPackets":3},"partialState":{"h":1,"t":6,"tokens":[5000,4000,3000,2000],"delegation":[4000,3000,2000,1000],"delegatorTokens":10000000000000,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":1,"action":{"kind":"Delegate","val":1,"amt":2424},"partialState":{"h":1,"t":6,"tokens":[5000,6424,3000,2000],"delegation":[4000,5424,2000,1000],"delegatorTokens":9999999997576}},{"ix":2,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":2,"t":12,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":3,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":3,"t":18,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":4,"action":{"kind":"ConsumerSlash","val":0,"infractionHeight":2,"isDowntime":true},"partialState":{"h":3,"t":18,"outstandingDowntime":[true,false,false,false]}},{"ix":5,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":6,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":7,"action":{"kind":"Delegate","val":0,"amt":3392},"partialState":{"h":1,"t":6,"tokens":[8392,6424,3000,2000],"delegation":[7392,5424,2000,1000],"delegatorTokens":9999999994184}},{"ix":8,"action":{"kind":"Undelegate","val":1,"amt":2951},"partialState":{"h":1,"t":6,"tokens":[8392,3473,3000,2000],"delegation":[7392,2473,2000,1000],"delegatorTokens":9999999994184}},{"ix":9,"action":{"kind":"Deliver","chain":"consumer","numPackets":3},"partialState":{"h":3,"t":18,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[true,false,false,false]}},{"ix":10,"action":{"kind":"Delegate","val":2,"amt":4923},"partialState":{"h":1,"t":6,"tokens":[8392,3473,7923,2000],"delegation":[7392,2473,6923,1000],"delegatorTokens":9999999989261}},{"ix":11,"action":{"kind":"ConsumerSlash","val":2,"infractionHeight":1,"isDowntime":true},"partialState":{"h":3,"t":18,"outstandingDowntime":[true,false,true,false]}},{"ix":12,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":2,"t":12,"tokens":[8392,3473,7923,2000],"delegation":[7392,2473,6923,1000],"delegatorTokens":9999999989261,"jailed":[null,null,null,null],"status":["bonded","unbonding","bonded","unbonded"]}},{"ix":13,"action":{"kind":"Undelegate","val":2,"amt":4157},"partialState":{"h":2,"t":12,"tokens":[8392,3473,3766,2000],"delegation":[7392,2473,2766,1000],"delegatorTokens":9999999989261}},{"ix":14,"action":{"kind":"Delegate","val":3,"amt":4572},"partialState":{"h":2,"t":12,"tokens":[8392,3473,3766,6572],"delegation":[7392,2473,2766,5572],"delegatorTokens":9999999984689}},{"ix":15,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":16,"action":{"kind":"Delegate","val":3,"amt":3757},"partialState":{"h":2,"t":12,"tokens":[8392,3473,3766,10329],"delegation":[7392,2473,2766,9329],"delegatorTokens":9999999980932}},{"ix":17,"action":{"kind":"Deliver","chain":"provider","numPackets":2},"partialState":{"h":2,"t":12,"tokens":[8392,3473,3766,10329],"delegation":[7392,2473,2766,9329],"delegatorTokens":9999999980932,"jailed":[null,null,null,null],"status":["bonded","unbonding","bonded","unbonded"]}},{"ix":18,"action":{"kind":"ConsumerSlash","val":2,"infractionHeight":1,"isDowntime":false},"partialState":{"h":3,"t":18,"outstandingDowntime":[true,false,true,false]}},{"ix":19,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":4,"t":24,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[true,false,true,false]}},{"ix":20,"action":{"kind":"Undelegate","val":2,"amt":2233},"partialState":{"h":2,"t":12,"tokens":[8392,3473,1533,10329],"delegation":[7392,2473,533,9329],"delegatorTokens":9999999980932}},{"ix":21,"action":{"kind":"Undelegate","val":3,"amt":1593},"partialState":{"h":2,"t":12,"tokens":[8392,3473,1533,8736],"delegation":[7392,2473,533,7736],"delegatorTokens":9999999980932}},{"ix":22,"action":{"kind":"Delegate","val":0,"amt":2643},"partialState":{"h":2,"t":12,"tokens":[11035,3473,1533,8736],"delegation":[10035,2473,533,7736],"delegatorTokens":9999999978289}},{"ix":23,"action":{"kind":"ConsumerSlash","val":0,"infractionHeight":2,"isDowntime":true},"partialState":{"h":4,"t":24,"outstandingDowntime":[true,false,true,false]}},{"ix":24,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":5,"t":30,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[true,false,true,false]}},{"ix":25,"action":{"kind":"Delegate","val":1,"amt":1175},"partialState":{"h":2,"t":12,"tokens":[11035,4648,1533,8736],"delegation":[10035,3648,533,7736],"delegatorTokens":9999999977114}},{"ix":26,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":27,"action":{"kind":"Undelegate","val":2,"amt":1046},"partialState":{"h":2,"t":12,"tokens":[11035,4648,1533,8736],"delegation":[10035,3648,533,7736],"delegatorTokens":9999999977114}},{"ix":28,"action":{"kind":"Undelegate","val":3,"amt":4009},"partialState":{"h":2,"t":12,"tokens":[11035,4648,1533,4727],"delegation":[10035,3648,533,3727],"delegatorTokens":9999999977114}},{"ix":29,"action":{"kind":"Deliver","chain":"provider","numPackets":5},"partialState":{"h":2,"t":12,"tokens":[11035,4648,1533,4727],"delegation":[10035,3648,533,3727],"delegatorTokens":9999999977114,"jailed":[null,null,null,null],"status":["bonded","unbonding","bonded","unbonded"]}},{"ix":30,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":31,"action":{"kind":"Delegate","val":1,"amt":4398},"partialState":{"h":2,"t":12,"tokens":[11035,9046,1533,4727],"delegation":[10035,8046,533,3727],"delegatorTokens":9999999972716}},{"ix":32,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":33,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":34,"action":{"kind":"ConsumerSlash","val":3,"infractionHeight":0,"isDowntime":false},"partialState":{"h":5,"t":30,"outstandingDowntime":[true,false,true,false]}},{"ix":35,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":3,"t":18,"tokens":[11035,9046,1533,4727],"delegation":[10035,8046,533,3727],"delegatorTokens":9999999972716,"jailed":[1000000000000011,null,1000000000000011,null],"status":["bonded","bonded","unbonding","unbonded"]}},{"ix":36,"action":{"kind":"Delegate","val":2,"amt":3622},"partialState":{"h":3,"t":18,"tokens":[11035,9046,5155,4727],"delegation":[10035,8046,4155,3727],"delegatorTokens":9999999969094}},{"ix":37,"action":{"kind":"Deliver","chain":"provider","numPackets":5},"partialState":{"h":3,"t":18,"tokens":[11035,9046,5155,4727],"delegation":[10035,8046,4155,3727],"delegatorTokens":9999999969094,"jailed":[1000000000000011,null,1000000000000011,null],"status":["bonded","bonded","unbonding","unbonded"]}},{"ix":38,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":39,"action":{"kind":"Undelegate","val":1,"amt":2868},"partialState":{"h":3,"t":18,"tokens":[11035,6178,5155,4727],"delegation":[10035,5178,4155,3727],"delegatorTokens":9999999969094}},{"ix":40,"action":{"kind":"Undelegate","val":2,"amt":2590},"partialState":{"h":3,"t":18,"tokens":[11035,6178,2565,4727],"delegation":[10035,5178,1565,3727],"delegatorTokens":9999999969094}},{"ix":41,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":4,"t":24,"tokens":[11035,6178,2565,4727],"delegation":[10035,5178,1565,3727],"delegatorTokens":9999999969094,"jailed":[1000000000000011,null,1000000000000011,null],"status":["unbonding","bonded","unbonding","bonded"]}},{"ix":42,"action":{"kind":"Deliver","chain":"provider","numPackets":3},"partialState":{"h":4,"t":24,"tokens":[11035,6178,2565,4727],"delegation":[10035,5178,1565,3727],"delegatorTokens":9999999969094,"jailed":[1000000000000011,null,1000000000000011,null],"status":["unbonding","bonded","unbonding","bonded"]}},{"ix":43,"action":{"kind":"Delegate","val":0,"amt":3807},"partialState":{"h":4,"t":24,"tokens":[14842,6178,2565,4727],"delegation":[13842,5178,1565,3727],"delegatorTokens":9999999965287}},{"ix":44,"action":{"kind":"Deliver","chain":"consumer","numPackets":2},"partialState":{"h":5,"t":30,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":45,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":5,"t":30,"tokens":[14842,6178,2565,4727],"delegation":[13842,5178,1565,3727],"delegatorTokens":9999999965287,"jailed":[1000000000000011,null,1000000000000011,null],"status":["unbonding","bonded","unbonding","bonded"]}},{"ix":46,"action":{"kind":"Delegate","val":3,"amt":2173},"partialState":{"h":5,"t":30,"tokens":[14842,6178,2565,6900],"delegation":[13842,5178,1565,5900],"delegatorTokens":9999999963114}},{"ix":47,"action":{"kind":"Delegate","val":0,"amt":3255},"partialState":{"h":5,"t":30,"tokens":[18097,6178,2565,6900],"delegation":[17097,5178,1565,5900],"delegatorTokens":9999999959859}},{"ix":48,"action":{"kind":"Undelegate","val":1,"amt":1867},"partialState":{"h":5,"t":30,"tokens":[18097,4311,2565,6900],"delegation":[17097,3311,1565,5900],"delegatorTokens":9999999959859}},{"ix":49,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":6,"t":36,"tokens":[18097,4311,2565,6900],"delegation":[17097,3311,1565,5900],"delegatorTokens":9999999959859,"jailed":[1000000000000011,null,1000000000000011,null],"status":["unbonding","bonded","unbonding","bonded"]}},{"ix":50,"action":{"kind":"Undelegate","val":3,"amt":2274},"partialState":{"h":6,"t":36,"tokens":[18097,4311,2565,4626],"delegation":[17097,3311,1565,3626],"delegatorTokens":9999999959859}},{"ix":51,"action":{"kind":"Delegate","val":3,"amt":1024},"partialState":{"h":6,"t":36,"tokens":[18097,4311,2565,5650],"delegation":[17097,3311,1565,4650],"delegatorTokens":9999999958835}},{"ix":52,"action":{"kind":"Delegate","val":0,"amt":2453},"partialState":{"h":6,"t":36,"tokens":[20550,4311,2565,5650],"delegation":[19550,3311,1565,4650],"delegatorTokens":9999999956382}},{"ix":53,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":54,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":55,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":6,"t":36,"consumerPower":[11035,9046,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":56,"action":{"kind":"Deliver","chain":"consumer","numPackets":2},"partialState":{"h":6,"t":36,"consumerPower":[11035,9046,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":57,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":7,"t":42,"consumerPower":[null,6178,null,4727],"outstandingDowntime":[false,false,false,false]}},{"ix":58,"action":{"kind":"Delegate","val":3,"amt":1238},"partialState":{"h":6,"t":36,"tokens":[20550,4311,2565,6888],"delegation":[19550,3311,1565,5888],"delegatorTokens":9999999955144}},{"ix":59,"action":{"kind":"Undelegate","val":0,"amt":3987},"partialState":{"h":6,"t":36,"tokens":[16563,4311,2565,6888],"delegation":[15563,3311,1565,5888],"delegatorTokens":9999999955144}},{"ix":60,"action":{"kind":"Deliver","chain":"provider","numPackets":1},"partialState":{"h":6,"t":36,"tokens":[16563,4311,2565,6888],"delegation":[15563,3311,1565,5888],"delegatorTokens":9999999955144,"jailed":[1000000000000011,null,1000000000000011,null],"status":["unbonding","bonded","unbonding","bonded"]}},{"ix":61,"action":{"kind":"Undelegate","val":0,"amt":1645},"partialState":{"h":6,"t":36,"tokens":[14918,4311,2565,6888],"delegation":[13918,3311,1565,5888],"delegatorTokens":9999999955144}},{"ix":62,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":7,"t":42,"tokens":[14918,4311,2565,6888],"delegation":[13918,3311,1565,5888],"delegatorTokens":9999999955144,"jailed":[1000000000000011,null,1000000000000011,null],"status":["unbonding","bonded","unbonding","bonded"]}},{"ix":63,"action":{"kind":"Deliver","chain":"provider","numPackets":1},"partialState":{"h":7,"t":42,"tokens":[14918,4311,2565,6888],"delegation":[13918,3311,1565,5888],"delegatorTokens":9999999955144,"jailed":[1000000000000011,null,1000000000000011,null],"status":["unbonding","bonded","unbonding","bonded"]}},{"ix":64,"action":{"kind":"Undelegate","val":2,"amt":2156},"partialState":{"h":7,"t":42,"tokens":[14918,4311,2565,6888],"delegation":[13918,3311,1565,5888],"delegatorTokens":9999999955144}},{"ix":65,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":66,"action":{"kind":"Undelegate","val":1,"amt":3349},"partialState":{"h":7,"t":42,"tokens":[14918,4311,2565,6888],"delegation":[13918,3311,1565,5888],"delegatorTokens":9999999955144}},{"ix":67,"action":{"kind":"Delegate","val":3,"amt":3300},"partialState":{"h":7,"t":42,"tokens":[14918,4311,2565,10188],"delegation":[13918,3311,1565,9188],"delegatorTokens":9999999951844}},{"ix":68,"action":{"kind":"Delegate","val":2,"amt":1293},"partialState":{"h":7,"t":42,"tokens":[14918,4311,3858,10188],"delegation":[13918,3311,2858,9188],"delegatorTokens":9999999950551}},{"ix":69,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":8,"t":48,"consumerPower":[null,6178,null,4727],"outstandingDowntime":[false,false,false,false]}},{"ix":70,"action":{"kind":"Undelegate","val":2,"amt":1696},"partialState":{"h":7,"t":42,"tokens":[14918,4311,2162,10188],"delegation":[13918,3311,1162,9188],"delegatorTokens":9999999950551}},{"ix":71,"action":{"kind":"Delegate","val":1,"amt":4748},"partialState":{"h":7,"t":42,"tokens":[14918,9059,2162,10188],"delegation":[13918,8059,1162,9188],"delegatorTokens":9999999945803}},{"ix":72,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":8,"t":48,"tokens":[14918,9059,2162,10188],"delegation":[13918,8059,1162,9188],"delegatorTokens":9999999945803,"jailed":[1000000000000011,null,1000000000000011,null],"status":["unbonding","bonded","unbonding","bonded"]}},{"ix":73,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":74,"action":{"kind":"Undelegate","val":0,"amt":1030},"partialState":{"h":8,"t":48,"tokens":[13888,9059,2162,10188],"delegation":[12888,8059,1162,9188],"delegatorTokens":9999999945803}},{"ix":75,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":76,"action":{"kind":"Deliver","chain":"provider","numPackets":1},"partialState":{"h":8,"t":48,"tokens":[13888,9059,2162,10188],"delegation":[12888,8059,1162,9188],"delegatorTokens":9999999945803,"jailed":[1000000000000011,null,1000000000000011,null],"status":["unbonding","bonded","unbonding","bonded"]}},{"ix":77,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":78,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":79,"action":{"kind":"Deliver","chain":"consumer","numPackets":1},"partialState":{"h":8,"t":48,"consumerPower":[null,6178,null,4727],"outstandingDowntime":[false,false,false,false]}},{"ix":80,"action":{"kind":"Deliver","chain":"provider","numPackets":3},"partialState":{"h":8,"t":48,"tokens":[13888,9059,2162,10188],"delegation":[12888,8059,1162,9188],"delegatorTokens":9999999945803,"jailed":[1000000000000011,null,1000000000000011,null],"status":["unbonding","bonded","unbonding","bonded"]}},{"ix":81,"action":{"kind":"Delegate","val":2,"amt":4166},"partialState":{"h":8,"t":48,"tokens":[13888,9059,6328,10188],"delegation":[12888,8059,5328,9188],"delegatorTokens":9999999941637}},{"ix":82,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":9,"t":54,"tokens":[13888,9059,6328,10188],"delegation":[12888,8059,5328,9188],"delegatorTokens":9999999941637,"jailed":[1000000000000011,null,1000000000000011,null],"status":["unbonding","bonded","unbonding","bonded"]}},{"ix":83,"action":{"kind":"Undelegate","val":0,"amt":3843},"partialState":{"h":9,"t":54,"tokens":[10045,9059,6328,10188],"delegation":[9045,8059,5328,9188],"delegatorTokens":9999999941637}},{"ix":84,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":85,"action":{"kind":"Deliver","chain":"provider","numPackets":2},"partialState":{"h":9,"t":54,"tokens":[10045,9059,6328,10188],"delegation":[9045,8059,5328,9188],"delegatorTokens":9999999941637,"jailed":[1000000000000011,null,1000000000000011,null],"status":["unbonding","bonded","unbonding","bonded"]}},{"ix":86,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":9,"t":54,"consumerPower":[null,4311,null,6900],"outstandingDowntime":[false,false,false,false]}},{"ix":87,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":88,"action":{"kind":"Undelegate","val":3,"amt":1897},"partialState":{"h":9,"t":54,"tokens":[10045,9059,6328,8291],"delegation":[9045,8059,5328,7291],"delegatorTokens":9999999941637}},{"ix":89,"action":{"kind":"Delegate","val":3,"amt":2306},"partialState":{"h":9,"t":54,"tokens":[10045,9059,6328,10597],"delegation":[9045,8059,5328,9597],"delegatorTokens":9999999939331}},{"ix":90,"action":{"kind":"Delegate","val":0,"amt":2730},"partialState":{"h":9,"t":54,"tokens":[12775,9059,6328,10597],"delegation":[11775,8059,5328,9597],"delegatorTokens":9999999936601}},{"ix":91,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":10,"t":60,"tokens":[12775,9059,6328,10597],"delegation":[11775,8059,5328,9597],"delegatorTokens":9999999936601,"jailed":[1000000000000011,null,1000000000000011,null],"status":["unbonding","bonded","unbonding","bonded"]}},{"ix":92,"action":{"kind":"Deliver","chain":"consumer","numPackets":4},"partialState":{"h":9,"t":54,"consumerPower":[null,4311,null,6900],"outstandingDowntime":[false,false,false,false]}},{"ix":93,"action":{"kind":"Delegate","val":1,"amt":4843},"partialState":{"h":10,"t":60,"tokens":[12775,13902,6328,10597],"delegation":[11775,12902,5328,9597],"delegatorTokens":9999999931758}},{"ix":94,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":11,"t":66,"tokens":[12775,13902,6328,10597],"delegation":[11775,12902,5328,9597],"delegatorTokens":9999999931758,"jailed":[1000000000000011,null,1000000000000011,null],"status":["unbonding","bonded","unbonding","bonded"]}},{"ix":95,"action":{"kind":"Undelegate","val":1,"amt":4837},"partialState":{"h":11,"t":66,"tokens":[12775,9065,6328,10597],"delegation":[11775,8065,5328,9597],"delegatorTokens":9999999931758}},{"ix":96,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":10,"t":60,"consumerPower":[null,9059,null,10188],"outstandingDowntime":[false,false,false,false]}},{"ix":97,"action":{"kind":"Undelegate","val":0,"amt":3865},"partialState":{"h":11,"t":66,"tokens":[8910,9065,6328,10597],"delegation":[7910,8065,5328,9597],"delegatorTokens":9999999931758}},{"ix":98,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":99,"action":{"kind":"Deliver","chain":"consumer","numPackets":1},"partialState":{"h":10,"t":60,"consumerPower":[null,9059,null,10188],"outstandingDowntime":[false,false,false,false]}},{"ix":100,"action":{"kind":"Delegate","val":0,"amt":1901},"partialState":{"h":11,"t":66,"tokens":[10811,9065,6328,10597],"delegation":[9811,8065,5328,9597],"delegatorTokens":9999999929857}},{"ix":101,"action":{"kind":"Delegate","val":3,"amt":1104},"partialState":{"h":11,"t":66,"tokens":[10811,9065,6328,11701],"delegation":[9811,8065,5328,10701],"delegatorTokens":9999999928753}},{"ix":102,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":11,"t":66,"consumerPower":[null,9059,null,10597],"outstandingDowntime":[false,false,false,false]}},{"ix":103,"action":{"kind":"Deliver","chain":"provider","numPackets":4},"partialState":{"h":11,"t":66,"tokens":[10811,9065,6328,11701],"delegation":[9811,8065,5328,10701],"delegatorTokens":9999999928753,"jailed":[1000000000000011,null,1000000000000011,null],"status":["unbonding","bonded","unbonding","bonded"]}},{"ix":104,"action":{"kind":"Delegate","val":2,"amt":1040},"partialState":{"h":11,"t":66,"tokens":[10811,9065,7368,11701],"delegation":[9811,8065,6368,10701],"delegatorTokens":9999999927713}},{"ix":105,"action":{"kind":"Undelegate","val":3,"amt":3627},"partialState":{"h":11,"t":66,"tokens":[10811,9065,7368,8074],"delegation":[9811,8065,6368,7074],"delegatorTokens":9999999927713}},{"ix":106,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":107,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":12,"t":72,"consumerPower":[null,9059,null,10597],"outstandingDowntime":[false,false,false,false]}},{"ix":108,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":13,"t":78,"consumerPower":[null,9059,null,10597],"outstandingDowntime":[false,false,false,false]}},{"ix":109,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":110,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":111,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":112,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":113,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":14,"t":84,"consumerPower":[null,9059,null,10597],"outstandingDowntime":[false,false,false,false]}},{"ix":114,"action":{"kind":"Delegate","val":1,"amt":4569},"partialState":{"h":11,"t":66,"tokens":[10811,13634,7368,8074],"delegation":[9811,12634,6368,7074],"delegatorTokens":9999999923144}},{"ix":115,"action":{"kind":"Deliver","chain":"provider","numPackets":5},"partialState":{"h":11,"t":66,"tokens":[10811,13634,7368,8074],"delegation":[9811,12634,6368,7074],"delegatorTokens":9999999923144,"jailed":[1000000000000011,null,1000000000000011,null],"status":["unbonding","bonded","unbonding","bonded"]}},{"ix":116,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":15,"t":90,"consumerPower":[null,9059,null,10597],"outstandingDowntime":[false,false,false,false]}},{"ix":117,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":12,"t":72,"tokens":[10811,13634,7368,8074],"delegation":[9811,12634,6368,7074],"delegatorTokens":9999999923144,"jailed":[1000000000000011,null,1000000000000011,null],"status":["unbonding","bonded","unbonding","bonded"]}},{"ix":118,"action":{"kind":"Delegate","val":0,"amt":2766},"partialState":{"h":12,"t":72,"tokens":[13577,13634,7368,8074],"delegation":[12577,12634,6368,7074],"delegatorTokens":9999999920378}},{"ix":119,"action":{"kind":"Deliver","chain":"consumer","numPackets":1},"partialState":{"h":15,"t":90,"consumerPower":[null,9059,null,10597],"outstandingDowntime":[false,false,false,false]}},{"ix":120,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":16,"t":96,"consumerPower":[null,13902,null,10597],"outstandingDowntime":[false,false,false,false]}},{"ix":121,"action":{"kind":"Deliver","chain":"consumer","numPackets":6},"partialState":{"h":16,"t":96,"consumerPower":[null,13902,null,10597],"outstandingDowntime":[false,false,false,false]}},{"ix":122,"action":{"kind":"Deliver","chain":"provider","numPackets":5},"partialState":{"h":12,"t":72,"tokens":[13577,13634,7368,8074],"delegation":[12577,12634,6368,7074],"delegatorTokens":9999999920378,"jailed":[1000000000000011,null,1000000000000011,null],"status":["unbonding","bonded","unbonding","bonded"]}},{"ix":123,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":124,"action":{"kind":"Undelegate","val":3,"amt":4299},"partialState":{"h":12,"t":72,"tokens":[13577,13634,7368,3775],"delegation":[12577,12634,6368,2775],"delegatorTokens":9999999920378}},{"ix":125,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":126,"action":{"kind":"Undelegate","val":0,"amt":1855},"partialState":{"h":12,"t":72,"tokens":[11722,13634,7368,3775],"delegation":[10722,12634,6368,2775],"delegatorTokens":9999999920378}},{"ix":127,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":17,"t":102,"consumerPower":[null,13902,null,10597],"outstandingDowntime":[false,false,false,false]}},{"ix":128,"action":{"kind":"Deliver","chain":"consumer","numPackets":6},"partialState":{"h":17,"t":102,"consumerPower":[null,13902,null,10597],"outstandingDowntime":[false,false,false,false]}},{"ix":129,"action":{"kind":"Undelegate","val":3,"amt":1656},"partialState":{"h":12,"t":72,"tokens":[11722,13634,7368,2119],"delegation":[10722,12634,6368,1119],"delegatorTokens":9999999920378}},{"ix":130,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":13,"t":78,"tokens":[11722,13634,7368,2119],"delegation":[10722,12634,6368,1119],"delegatorTokens":9999999920378,"jailed":[1000000000000011,null,1000000000000011,null],"status":["unbonding","bonded","unbonding","bonded"]}},{"ix":131,"action":{"kind":"Deliver","chain":"consumer","numPackets":6},"partialState":{"h":17,"t":102,"consumerPower":[null,13902,null,10597],"outstandingDowntime":[false,false,false,false]}},{"ix":132,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":133,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":18,"t":108,"consumerPower":[null,13634,null,8074],"outstandingDowntime":[false,false,false,false]}},{"ix":134,"action":{"kind":"Delegate","val":0,"amt":2879},"partialState":{"h":13,"t":78,"tokens":[14601,13634,7368,2119],"delegation":[13601,12634,6368,1119],"delegatorTokens":9999999917499}},{"ix":135,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":19,"t":114,"consumerPower":[null,13634,null,8074],"outstandingDowntime":[false,false,false,false]}},{"ix":136,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":14,"t":84,"tokens":[14601,13634,7368,2119],"delegation":[13601,12634,6368,1119],"delegatorTokens":9999999920450,"jailed":[1000000000000011,null,1000000000000011,null],"status":["unbonding","bonded","unbonding","bonded"]}},{"ix":137,"action":{"kind":"Delegate","val":1,"amt":4558},"partialState":{"h":14,"t":84,"tokens":[14601,18192,7368,2119],"delegation":[13601,17192,6368,1119],"delegatorTokens":9999999915892}},{"ix":138,"action":{"kind":"Delegate","val":0,"amt":4679},"partialState":{"h":14,"t":84,"tokens":[19280,18192,7368,2119],"delegation":[18280,17192,6368,1119],"delegatorTokens":9999999911213}},{"ix":139,"action":{"kind":"Deliver","chain":"consumer","numPackets":5},"partialState":{"h":19,"t":114,"consumerPower":[null,13634,null,8074],"outstandingDowntime":[false,false,false,false]}},{"ix":140,"action":{"kind":"Undelegate","val":1,"amt":3431},"partialState":{"h":14,"t":84,"tokens":[19280,14761,7368,2119],"delegation":[18280,13761,6368,1119],"delegatorTokens":9999999911213}},{"ix":141,"action":{"kind":"Deliver","chain":"consumer","numPackets":5},"partialState":{"h":19,"t":114,"consumerPower":[null,13634,null,8074],"outstandingDowntime":[false,false,false,false]}},{"ix":142,"action":{"kind":"Delegate","val":0,"amt":2535},"partialState":{"h":14,"t":84,"tokens":[21815,14761,7368,2119],"delegation":[20815,13761,6368,1119],"delegatorTokens":9999999908678}},{"ix":143,"action":{"kind":"Delegate","val":0,"amt":4988},"partialState":{"h":14,"t":84,"tokens":[26803,14761,7368,2119],"delegation":[25803,13761,6368,1119],"delegatorTokens":9999999903690}},{"ix":144,"action":{"kind":"Delegate","val":0,"amt":3966},"partialState":{"h":14,"t":84,"tokens":[30769,14761,7368,2119],"delegation":[29769,13761,6368,1119],"delegatorTokens":9999999899724}},{"ix":145,"action":{"kind":"Delegate","val":2,"amt":2583},"partialState":{"h":14,"t":84,"tokens":[30769,14761,9951,2119],"delegation":[29769,13761,8951,1119],"delegatorTokens":9999999897141}},{"ix":146,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":20,"t":120,"consumerPower":[null,13634,null,2119],"outstandingDowntime":[false,false,false,false]}},{"ix":147,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":15,"t":90,"tokens":[30769,14761,9951,2119],"delegation":[29769,13761,8951,1119],"delegatorTokens":9999999909133,"jailed":[1000000000000011,null,1000000000000011,null],"status":["unbonding","bonded","unbonded","bonded"]}},{"ix":148,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":21,"t":126,"consumerPower":[null,13634,null,2119],"outstandingDowntime":[false,false,false,false]}},{"ix":149,"action":{"kind":"Deliver","chain":"consumer","numPackets":6},"partialState":{"h":21,"t":126,"consumerPower":[null,13634,null,2119],"outstandingDowntime":[false,false,false,false]}},{"ix":150,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":151,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":152,"action":{"kind":"Undelegate","val":0,"amt":2592},"partialState":{"h":15,"t":90,"tokens":[28177,14761,9951,2119],"delegation":[27177,13761,8951,1119],"delegatorTokens":9999999909133}},{"ix":153,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":154,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":16,"t":96,"tokens":[28177,14761,9951,2119],"delegation":[27177,13761,8951,1119],"delegatorTokens":9999999909133,"jailed":[1000000000000011,null,1000000000000011,null],"status":["unbonding","bonded","unbonded","bonded"]}},{"ix":155,"action":{"kind":"Deliver","chain":"provider","numPackets":6},"partialState":{"h":16,"t":96,"tokens":[28177,14761,9951,2119],"delegation":[27177,13761,8951,1119],"delegatorTokens":9999999909133,"jailed":[1000000000000011,null,1000000000000011,null],"status":["unbonding","bonded","unbonded","bonded"]}},{"ix":156,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":157,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":158,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":17,"t":102,"tokens":[28177,14761,9951,2119],"delegation":[27177,13761,8951,1119],"delegatorTokens":9999999914591,"jailed":[1000000000000011,null,1000000000000011,null],"status":["unbonding","bonded","unbonded","bonded"]}},{"ix":159,"action":{"kind":"Deliver","chain":"consumer","numPackets":1},"partialState":{"h":21,"t":126,"consumerPower":[null,13634,null,2119],"outstandingDowntime":[false,false,false,false]}},{"ix":160,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":161,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":162,"action":{"kind":"Deliver","chain":"provider","numPackets":3},"partialState":{"h":17,"t":102,"tokens":[28177,14761,9951,2119],"delegation":[27177,13761,8951,1119],"delegatorTokens":9999999914591,"jailed":[1000000000000011,null,1000000000000011,null],"status":["unbonding","bonded","unbonded","bonded"]}},{"ix":163,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":18,"t":108,"tokens":[28177,14761,9951,2119],"delegation":[27177,13761,8951,1119],"delegatorTokens":9999999916458,"jailed":[1000000000000011,null,1000000000000011,null],"status":["unbonded","bonded","unbonded","bonded"]}},{"ix":164,"action":{"kind":"Undelegate","val":0,"amt":1734},"partialState":{"h":18,"t":108,"tokens":[26443,14761,9951,2119],"delegation":[25443,13761,8951,1119],"delegatorTokens":9999999916458}},{"ix":165,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":22,"t":132,"consumerPower":[null,14761,null,2119],"outstandingDowntime":[false,false,false,false]}},{"ix":166,"action":{"kind":"Undelegate","val":2,"amt":1190},"partialState":{"h":18,"t":108,"tokens":[26443,14761,8761,2119],"delegation":[25443,13761,7761,1119],"delegatorTokens":9999999916458}},{"ix":167,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":19,"t":114,"tokens":[26443,14761,8761,2119],"delegation":[25443,13761,7761,1119],"delegatorTokens":9999999924364,"jailed":[1000000000000011,null,1000000000000011,null],"status":["unbonded","bonded","unbonded","bonded"]}},{"ix":168,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":169,"action":{"kind":"Deliver","chain":"provider","numPackets":6},"partialState":{"h":19,"t":114,"tokens":[26443,14761,8761,2119],"delegation":[25443,13761,7761,1119],"delegatorTokens":9999999924364,"jailed":[1000000000000011,null,1000000000000011,null],"status":["unbonded","bonded","unbonded","bonded"]}},{"ix":170,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":20,"t":120,"tokens":[26443,14761,8761,2119],"delegation":[25443,13761,7761,1119],"delegatorTokens":9999999926060,"jailed":[1000000000000011,null,1000000000000011,null],"status":["unbonded","bonded","unbonded","bonded"]}},{"ix":171,"action":{"kind":"Delegate","val":1,"amt":4907},"partialState":{"h":20,"t":120,"tokens":[26443,19668,8761,2119],"delegation":[25443,18668,7761,1119],"delegatorTokens":9999999921153}},{"ix":172,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":23,"t":138,"consumerPower":[null,14761,null,2119],"outstandingDowntime":[false,false,false,false]}},{"ix":173,"action":{"kind":"Undelegate","val":2,"amt":1060},"partialState":{"h":20,"t":120,"tokens":[26443,19668,7701,2119],"delegation":[25443,18668,6701,1119],"delegatorTokens":9999999921153}},{"ix":174,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":21,"t":126,"tokens":[26443,19668,7701,2119],"delegation":[25443,18668,6701,1119],"delegatorTokens":9999999922183,"jailed":[1000000000000011,null,1000000000000011,null],"status":["unbonded","bonded","unbonded","bonded"]}},{"ix":175,"action":{"kind":"Delegate","val":2,"amt":1678},"partialState":{"h":21,"t":126,"tokens":[26443,19668,9379,2119],"delegation":[25443,18668,8379,1119],"delegatorTokens":9999999920505}},{"ix":176,"action":{"kind":"Deliver","chain":"consumer","numPackets":1},"partialState":{"h":23,"t":138,"consumerPower":[null,14761,null,2119],"outstandingDowntime":[false,false,false,false]}},{"ix":177,"action":{"kind":"Undelegate","val":2,"amt":2803},"partialState":{"h":21,"t":126,"tokens":[26443,19668,6576,2119],"delegation":[25443,18668,5576,1119],"delegatorTokens":9999999920505}},{"ix":178,"action":{"kind":"Delegate","val":1,"amt":4104},"partialState":{"h":21,"t":126,"tokens":[26443,23772,6576,2119],"delegation":[25443,22772,5576,1119],"delegatorTokens":9999999916401}},{"ix":179,"action":{"kind":"Deliver","chain":"consumer","numPackets":5},"partialState":{"h":23,"t":138,"consumerPower":[null,14761,null,2119],"outstandingDowntime":[false,false,false,false]}},{"ix":180,"action":{"kind":"Delegate","val":2,"amt":3757},"partialState":{"h":21,"t":126,"tokens":[26443,23772,10333,2119],"delegation":[25443,22772,9333,1119],"delegatorTokens":9999999912644}},{"ix":181,"action":{"kind":"Deliver","chain":"consumer","numPackets":3},"partialState":{"h":23,"t":138,"consumerPower":[null,14761,null,2119],"outstandingDowntime":[false,false,false,false]}},{"ix":182,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":22,"t":132,"tokens":[26443,23772,10333,2119],"delegation":[25443,22772,9333,1119],"delegatorTokens":9999999918384,"jailed":[1000000000000011,null,1000000000000011,null],"status":["unbonded","bonded","unbonded","bonded"]}},{"ix":183,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":24,"t":144,"consumerPower":[null,14761,null,2119],"outstandingDowntime":[false,false,false,false]}},{"ix":184,"action":{"kind":"Delegate","val":0,"amt":4465},"partialState":{"h":22,"t":132,"tokens":[30908,23772,10333,2119],"delegation":[29908,22772,9333,1119],"delegatorTokens":9999999913919}},{"ix":185,"action":{"kind":"Deliver","chain":"provider","numPackets":5},"partialState":{"h":22,"t":132,"tokens":[30908,23772,10333,2119],"delegation":[29908,22772,9333,1119],"delegatorTokens":9999999913919,"jailed":[1000000000000011,null,1000000000000011,null],"status":["unbonded","bonded","unbonded","bonded"]}},{"ix":186,"action":{"kind":"Deliver","chain":"provider","numPackets":6},"partialState":{"h":22,"t":132,"tokens":[30908,23772,10333,2119],"delegation":[29908,22772,9333,1119],"delegatorTokens":9999999913919,"jailed":[1000000000000011,null,1000000000000011,null],"status":["unbonded","bonded","unbonded","bonded"]}},{"ix":187,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":188,"action":{"kind":"Undelegate","val":1,"amt":4977},"partialState":{"h":22,"t":132,"tokens":[30908,18795,10333,2119],"delegation":[29908,17795,9333,1119],"delegatorTokens":9999999913919}},{"ix":189,"action":{"kind":"Delegate","val":2,"amt":2197},"partialState":{"h":22,"t":132,"tokens":[30908,18795,12530,2119],"delegation":[29908,17795,11530,1119],"delegatorTokens":9999999911722}},{"ix":190,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":23,"t":138,"tokens":[30908,18795,12530,2119],"delegation":[29908,17795,11530,1119],"delegatorTokens":9999999911722,"jailed":[1000000000000011,null,1000000000000011,null],"status":["unbonded","bonded","unbonded","bonded"]}},{"ix":191,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":192,"action":{"kind":"Deliver","chain":"consumer","numPackets":2},"partialState":{"h":24,"t":144,"consumerPower":[null,14761,null,2119],"outstandingDowntime":[false,false,false,false]}},{"ix":193,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":24,"t":144,"tokens":[30908,18795,12530,2119],"delegation":[29908,17795,11530,1119],"delegatorTokens":9999999911722,"jailed":[1000000000000011,null,1000000000000011,null],"status":["unbonded","bonded","unbonded","bonded"]}},{"ix":194,"action":{"kind":"Deliver","chain":"provider","numPackets":2},"partialState":{"h":24,"t":144,"tokens":[30908,18795,12530,2119],"delegation":[29908,17795,11530,1119],"delegatorTokens":9999999911722,"jailed":[1000000000000011,null,1000000000000011,null],"status":["unbonded","bonded","unbonded","bonded"]}},{"ix":195,"action":{"kind":"Delegate","val":3,"amt":2206},"partialState":{"h":24,"t":144,"tokens":[30908,18795,12530,4325],"delegation":[29908,17795,11530,3325],"delegatorTokens":9999999909516}},{"ix":196,"action":{"kind":"Delegate","val":1,"amt":2002},"partialState":{"h":24,"t":144,"tokens":[30908,20797,12530,4325],"delegation":[29908,19797,11530,3325],"delegatorTokens":9999999907514}},{"ix":197,"action":{"kind":"Delegate","val":1,"amt":2693},"partialState":{"h":24,"t":144,"tokens":[30908,23490,12530,4325],"delegation":[29908,22490,11530,3325],"delegatorTokens":9999999904821}},{"ix":198,"action":{"kind":"Delegate","val":2,"amt":4894},"partialState":{"h":24,"t":144,"tokens":[30908,23490,17424,4325],"delegation":[29908,22490,16424,3325],"delegatorTokens":9999999899927}},{"ix":199,"action":{"kind":"Undelegate","val":1,"amt":4329},"partialState":{"h":24,"t":144,"tokens":[30908,19161,17424,4325],"delegation":[29908,18161,16424,3325],"delegatorTokens":9999999899927}}],"events":["send_downtime_slash_request","send_downtime_slash_request","more_than_one_third_val_power_change","send_vsc_without_downtime_ack","send_double_sign_slash_request","downtime_slash_request_outstanding","insufficient_shares","receive_double_sign_slash_request","send_double_sign_slash_request","more_than_one_third_val_power_change","rebond_unval","receive_downtime_slash_request","jail","receive_downtime_slash_request","jail","send_vsc_with_downtime_ack","more_than_one_third_val_power_change","send_vsc_without_downtime_ack","receive_downtime_slash_ack","receive_downtime_slash_ack","send_vsc_without_downtime_ack","consumer_update_val","consumer_update_val","consumer_del_val","consumer_del_val","consumer_update_val","consumer_add_val","receive_double_sign_slash_request","send_vsc_without_downtime_ack","insufficient_shares","insufficient_shares","send_vsc_without_downtime_ack","send_vsc_not_because_change","send_vsc_without_downtime_ack","consumer_update_val","consumer_update_val","send_vsc_without_downtime_ack","send_vsc_without_downtime_ack","consumer_update_val","consumer_update_val","consumer_update_val","consumer_send_maturation","consumer_send_maturation","send_vsc_without_downtime_ack","consumer_send_maturation","consumer_update_val","set_undel_hold_false","set_undel_hold_false","set_undel_hold_false","set_undel_hold_false","set_undel_hold_false","set_unval_hold_false","send_vsc_without_downtime_ack","consumer_send_maturation","consumer_update_val","consumer_update_val","consumer_send_maturation","consumer_send_maturation","consumer_send_maturation","complete_undel_in_endblock","consumer_send_maturation","consumer_update_val","complete_unval_in_endblock","complete_undel_in_endblock","send_vsc_without_downtime_ack","some_undels_expired_but_not_completed","send_vsc_not_because_change","send_vsc_without_downtime_ack","complete_undel_immediate","complete_undel_immediate","set_unval_hold_false","set_undel_hold_false","set_undel_hold_false","set_undel_hold_false","set_undel_hold_false","set_undel_hold_false","set_undel_hold_false","set_undel_hold_false","set_undel_hold_false","complete_unval_in_endblock","complete_undel_in_endblock","consumer_update_val","complete_undel_in_endblock","send_vsc_not_because_change","send_vsc_without_downtime_ack","complete_undel_in_endblock","complete_undel_in_endblock","send_vsc_without_downtime_ack","complete_undel_in_endblock","send_vsc_without_downtime_ack","send_vsc_without_downtime_ack","some_undels_expired_but_not_completed"]},{"meta":{"commit":"7ffd0c04e4205cbc9caf212abfe6c59ee43153bf"},"constants":{"P":"provider","C":"consumer","UNBONDING_SECONDS_P":70,"UNBONDING_SECONDS_C":50,"TRUSTING_SECONDS":49,"NUM_VALIDATORS":4,"MAX_VALIDATORS":2,"SLASH_DOUBLESIGN":0,"SLASH_DOWNTIME":0,"JAIL_SECONDS":999999999999999,"BLOCK_SECONDS":6,"INITIAL_DELEGATOR_TOKENS":10000000000000,"DELEGATE_AMT_MIN":1000,"DELEGATE_AMT_MAX":5000,"UNDELEGATE_AMT_MIN":1000,"UNDELEGATE_AMT_MAX":5000,"ISDOWNTIME_PROBABILITY":0.5,"MAX_NUM_PACKETS_FOR_DELIVER":6},"actions":[{"ix":0,"action":{"kind":"Deliver","chain":"consumer","numPackets":4},"partialState":{"h":1,"t":6,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":1,"action":{"kind":"Delegate","val":2,"amt":3384},"partialState":{"h":1,"t":6,"tokens":[5000,4000,6384,2000],"delegation":[4000,3000,5384,1000],"delegatorTokens":9999999996616}},{"ix":2,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":2,"t":12,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":3,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":2,"t":12,"tokens":[5000,4000,6384,2000],"delegation":[4000,3000,5384,1000],"delegatorTokens":9999999996616,"jailed":[null,null,null,null],"status":["bonded","unbonding","bonded","unbonded"]}},{"ix":4,"action":{"kind":"Undelegate","val":1,"amt":2592},"partialState":{"h":2,"t":12,"tokens":[5000,1408,6384,2000],"delegation":[4000,408,5384,1000],"delegatorTokens":9999999996616}},{"ix":5,"action":{"kind":"Deliver","chain":"provider","numPackets":5},"partialState":{"h":2,"t":12,"tokens":[5000,1408,6384,2000],"delegation":[4000,408,5384,1000],"delegatorTokens":9999999996616,"jailed":[null,null,null,null],"status":["bonded","unbonding","bonded","unbonded"]}},{"ix":6,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":7,"action":{"kind":"Undelegate","val":3,"amt":1714},"partialState":{"h":2,"t":12,"tokens":[5000,1408,6384,2000],"delegation":[4000,408,5384,1000],"delegatorTokens":9999999996616}},{"ix":8,"action":{"kind":"Deliver","chain":"provider","numPackets":2},"partialState":{"h":2,"t":12,"tokens":[5000,1408,6384,2000],"delegation":[4000,408,5384,1000],"delegatorTokens":9999999996616,"jailed":[null,null,null,null],"status":["bonded","unbonding","bonded","unbonded"]}},{"ix":9,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":10,"action":{"kind":"Undelegate","val":2,"amt":1984},"partialState":{"h":2,"t":12,"tokens":[5000,1408,4400,2000],"delegation":[4000,408,3400,1000],"delegatorTokens":9999999996616}},{"ix":11,"action":{"kind":"Deliver","chain":"consumer","numPackets":5},"partialState":{"h":2,"t":12,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":12,"action":{"kind":"Deliver","chain":"consumer","numPackets":2},"partialState":{"h":2,"t":12,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":13,"action":{"kind":"ConsumerSlash","val":0,"infractionHeight":1,"isDowntime":true},"partialState":{"h":2,"t":12,"outstandingDowntime":[true,false,false,false]}},{"ix":14,"action":{"kind":"Delegate","val":2,"amt":1856},"partialState":{"h":2,"t":12,"tokens":[5000,1408,6256,2000],"delegation":[4000,408,5256,1000],"delegatorTokens":9999999994760}},{"ix":15,"action":{"kind":"Delegate","val":3,"amt":1307},"partialState":{"h":2,"t":12,"tokens":[5000,1408,6256,3307],"delegation":[4000,408,5256,2307],"delegatorTokens":9999999993453}},{"ix":16,"action":{"kind":"Undelegate","val":0,"amt":1242},"partialState":{"h":2,"t":12,"tokens":[3758,1408,6256,3307],"delegation":[2758,408,5256,2307],"delegatorTokens":9999999993453}},{"ix":17,"action":{"kind":"ConsumerSlash","val":2,"infractionHeight":1,"isDowntime":true},"partialState":{"h":2,"t":12,"outstandingDowntime":[true,false,true,false]}},{"ix":18,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":3,"t":18,"tokens":[3758,1408,6256,3307],"delegation":[2758,408,5256,2307],"delegatorTokens":9999999993453,"jailed":[null,null,null,null],"status":["bonded","unbonding","bonded","unbonded"]}},{"ix":19,"action":{"kind":"Deliver","chain":"provider","numPackets":5},"partialState":{"h":3,"t":18,"tokens":[3758,1408,6256,3307],"delegation":[2758,408,5256,2307],"delegatorTokens":9999999993453,"jailed":[null,null,null,null],"status":["bonded","unbonding","bonded","unbonded"]}},{"ix":20,"action":{"kind":"Undelegate","val":2,"amt":2730},"partialState":{"h":3,"t":18,"tokens":[3758,1408,3526,3307],"delegation":[2758,408,2526,2307],"delegatorTokens":9999999993453}},{"ix":21,"action":{"kind":"Delegate","val":0,"amt":3195},"partialState":{"h":3,"t":18,"tokens":[6953,1408,3526,3307],"delegation":[5953,408,2526,2307],"delegatorTokens":9999999990258}},{"ix":22,"action":{"kind":"Delegate","val":2,"amt":1372},"partialState":{"h":3,"t":18,"tokens":[6953,1408,4898,3307],"delegation":[5953,408,3898,2307],"delegatorTokens":9999999988886}},{"ix":23,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":3,"t":18,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[true,false,true,false]}},{"ix":24,"action":{"kind":"Deliver","chain":"provider","numPackets":1},"partialState":{"h":3,"t":18,"tokens":[6953,1408,4898,3307],"delegation":[5953,408,3898,2307],"delegatorTokens":9999999988886,"jailed":[null,null,null,null],"status":["bonded","unbonding","bonded","unbonded"]}},{"ix":25,"action":{"kind":"ConsumerSlash","val":2,"infractionHeight":0,"isDowntime":true},"partialState":{"h":3,"t":18,"outstandingDowntime":[true,false,true,false]}},{"ix":26,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":27,"action":{"kind":"ConsumerSlash","val":0,"infractionHeight":2,"isDowntime":true},"partialState":{"h":3,"t":18,"outstandingDowntime":[true,false,true,false]}},{"ix":28,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":4,"t":24,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[true,false,true,false]}},{"ix":29,"action":{"kind":"Delegate","val":2,"amt":1919},"partialState":{"h":3,"t":18,"tokens":[6953,1408,6817,3307],"delegation":[5953,408,5817,2307],"delegatorTokens":9999999986967}},{"ix":30,"action":{"kind":"Undelegate","val":3,"amt":4782},"partialState":{"h":3,"t":18,"tokens":[6953,1408,6817,3307],"delegation":[5953,408,5817,2307],"delegatorTokens":9999999986967}},{"ix":31,"action":{"kind":"ConsumerSlash","val":2,"infractionHeight":0,"isDowntime":true},"partialState":{"h":4,"t":24,"outstandingDowntime":[true,false,true,false]}},{"ix":32,"action":{"kind":"ConsumerSlash","val":2,"infractionHeight":2,"isDowntime":true},"partialState":{"h":4,"t":24,"outstandingDowntime":[true,false,true,false]}},{"ix":33,"action":{"kind":"Delegate","val":3,"amt":1098},"partialState":{"h":3,"t":18,"tokens":[6953,1408,6817,4405],"delegation":[5953,408,5817,3405],"delegatorTokens":9999999985869}},{"ix":34,"action":{"kind":"Deliver","chain":"provider","numPackets":2},"partialState":{"h":3,"t":18,"tokens":[6953,1408,6817,4405],"delegation":[5953,408,5817,3405],"delegatorTokens":9999999985869,"jailed":[null,null,null,null],"status":["bonded","unbonding","bonded","unbonded"]}},{"ix":35,"action":{"kind":"ConsumerSlash","val":2,"infractionHeight":2,"isDowntime":false},"partialState":{"h":4,"t":24,"outstandingDowntime":[true,false,true,false]}},{"ix":36,"action":{"kind":"ConsumerSlash","val":0,"infractionHeight":2,"isDowntime":true},"partialState":{"h":4,"t":24,"outstandingDowntime":[true,false,true,false]}},{"ix":37,"action":{"kind":"Deliver","chain":"provider","numPackets":4},"partialState":{"h":3,"t":18,"tokens":[6953,1408,6817,4405],"delegation":[5953,408,5817,3405],"delegatorTokens":9999999985869,"jailed":[null,null,null,null],"status":["bonded","unbonding","bonded","unbonded"]}},{"ix":38,"action":{"kind":"Deliver","chain":"consumer","numPackets":4},"partialState":{"h":4,"t":24,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[true,false,true,false]}},{"ix":39,"action":{"kind":"ConsumerSlash","val":1,"infractionHeight":3,"isDowntime":false},"partialState":{"h":4,"t":24,"outstandingDowntime":[true,false,true,false]}},{"ix":40,"action":{"kind":"Deliver","chain":"consumer","numPackets":6},"partialState":{"h":4,"t":24,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[true,false,true,false]}},{"ix":41,"action":{"kind":"Delegate","val":1,"amt":4832},"partialState":{"h":3,"t":18,"tokens":[6953,6240,6817,4405],"delegation":[5953,5240,5817,3405],"delegatorTokens":9999999981037}},{"ix":42,"action":{"kind":"Undelegate","val":2,"amt":1078},"partialState":{"h":3,"t":18,"tokens":[6953,6240,5739,4405],"delegation":[5953,5240,4739,3405],"delegatorTokens":9999999981037}},{"ix":43,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":44,"action":{"kind":"Delegate","val":2,"amt":1618},"partialState":{"h":3,"t":18,"tokens":[6953,6240,7357,4405],"delegation":[5953,5240,6357,3405],"delegatorTokens":9999999979419}},{"ix":45,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":5,"t":30,"consumerPower":[5000,null,6384,null],"outstandingDowntime":[true,false,true,false]}},{"ix":46,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":47,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":48,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":4,"t":24,"tokens":[6953,6240,7357,4405],"delegation":[5953,5240,6357,3405],"delegatorTokens":9999999979419,"jailed":[1000000000000017,null,1000000000000017,null],"status":["bonded","unbonding","bonded","unbonded"]}},{"ix":49,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":50,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":51,"action":{"kind":"Delegate","val":1,"amt":1191},"partialState":{"h":4,"t":24,"tokens":[6953,7431,7357,4405],"delegation":[5953,6431,6357,3405],"delegatorTokens":9999999978228}},{"ix":52,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":53,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":6,"t":36,"consumerPower":[5000,null,6384,null],"outstandingDowntime":[true,false,true,false]}},{"ix":54,"action":{"kind":"Deliver","chain":"provider","numPackets":4},"partialState":{"h":4,"t":24,"tokens":[6953,7431,7357,4405],"delegation":[5953,6431,6357,3405],"delegatorTokens":9999999978228,"jailed":[1000000000000017,null,1000000000000017,null],"status":["bonded","unbonding","bonded","unbonded"]}},{"ix":55,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":5,"t":30,"tokens":[6953,7431,7357,4405],"delegation":[5953,6431,6357,3405],"delegatorTokens":9999999978228,"jailed":[1000000000000017,null,1000000000000017,null],"status":["unbonding","bonded","unbonding","bonded"]}},{"ix":56,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":6,"t":36,"tokens":[6953,7431,7357,4405],"delegation":[5953,6431,6357,3405],"delegatorTokens":9999999978228,"jailed":[1000000000000017,null,1000000000000017,null],"status":["unbonding","bonded","unbonding","bonded"]}},{"ix":57,"action":{"kind":"Deliver","chain":"consumer","numPackets":4},"partialState":{"h":6,"t":36,"consumerPower":[5000,null,6384,null],"outstandingDowntime":[false,false,false,false]}},{"ix":58,"action":{"kind":"Undelegate","val":3,"amt":4469},"partialState":{"h":6,"t":36,"tokens":[6953,7431,7357,4405],"delegation":[5953,6431,6357,3405],"delegatorTokens":9999999978228}},{"ix":59,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":7,"t":42,"consumerPower":[null,7431,null,4405],"outstandingDowntime":[false,false,false,false]}},{"ix":60,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":61,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":62,"action":{"kind":"Deliver","chain":"provider","numPackets":1},"partialState":{"h":6,"t":36,"tokens":[6953,7431,7357,4405],"delegation":[5953,6431,6357,3405],"delegatorTokens":9999999978228,"jailed":[1000000000000017,null,1000000000000017,null],"status":["unbonding","bonded","unbonding","bonded"]}},{"ix":63,"action":{"kind":"Undelegate","val":2,"amt":2441},"partialState":{"h":6,"t":36,"tokens":[6953,7431,4916,4405],"delegation":[5953,6431,3916,3405],"delegatorTokens":9999999978228}},{"ix":64,"action":{"kind":"Delegate","val":2,"amt":2217},"partialState":{"h":6,"t":36,"tokens":[6953,7431,7133,4405],"delegation":[5953,6431,6133,3405],"delegatorTokens":9999999976011}},{"ix":65,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":8,"t":48,"consumerPower":[null,7431,null,4405],"outstandingDowntime":[false,false,false,false]}},{"ix":66,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":7,"t":42,"tokens":[6953,7431,7133,4405],"delegation":[5953,6431,6133,3405],"delegatorTokens":9999999976011,"jailed":[1000000000000017,null,1000000000000017,null],"status":["unbonding","bonded","unbonding","bonded"]}},{"ix":67,"action":{"kind":"Delegate","val":3,"amt":4800},"partialState":{"h":7,"t":42,"tokens":[6953,7431,7133,9205],"delegation":[5953,6431,6133,8205],"delegatorTokens":9999999971211}},{"ix":68,"action":{"kind":"Deliver","chain":"consumer","numPackets":2},"partialState":{"h":8,"t":48,"consumerPower":[null,7431,null,4405],"outstandingDowntime":[false,false,false,false]}},{"ix":69,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":8,"t":48,"tokens":[6953,7431,7133,9205],"delegation":[5953,6431,6133,8205],"delegatorTokens":9999999971211,"jailed":[1000000000000017,null,1000000000000017,null],"status":["unbonding","bonded","unbonding","bonded"]}},{"ix":70,"action":{"kind":"Delegate","val":2,"amt":4834},"partialState":{"h":8,"t":48,"tokens":[6953,7431,11967,9205],"delegation":[5953,6431,10967,8205],"delegatorTokens":9999999966377}},{"ix":71,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":9,"t":54,"consumerPower":[null,7431,null,4405],"outstandingDowntime":[false,false,false,false]}},{"ix":72,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":10,"t":60,"consumerPower":[null,7431,null,4405],"outstandingDowntime":[false,false,false,false]}},{"ix":73,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":74,"action":{"kind":"Undelegate","val":3,"amt":1123},"partialState":{"h":8,"t":48,"tokens":[6953,7431,11967,8082],"delegation":[5953,6431,10967,7082],"delegatorTokens":9999999966377}},{"ix":75,"action":{"kind":"Undelegate","val":0,"amt":1252},"partialState":{"h":8,"t":48,"tokens":[5701,7431,11967,8082],"delegation":[4701,6431,10967,7082],"delegatorTokens":9999999966377}},{"ix":76,"action":{"kind":"Undelegate","val":2,"amt":1739},"partialState":{"h":8,"t":48,"tokens":[5701,7431,10228,8082],"delegation":[4701,6431,9228,7082],"delegatorTokens":9999999966377}},{"ix":77,"action":{"kind":"Undelegate","val":3,"amt":3123},"partialState":{"h":8,"t":48,"tokens":[5701,7431,10228,4959],"delegation":[4701,6431,9228,3959],"delegatorTokens":9999999966377}},{"ix":78,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":11,"t":66,"consumerPower":[null,7431,null,4405],"outstandingDowntime":[false,false,false,false]}},{"ix":79,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":9,"t":54,"tokens":[5701,7431,10228,4959],"delegation":[4701,6431,9228,3959],"delegatorTokens":9999999966377,"jailed":[1000000000000017,null,1000000000000017,null],"status":["unbonding","bonded","unbonding","bonded"]}},{"ix":80,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":10,"t":60,"tokens":[5701,7431,10228,4959],"delegation":[4701,6431,9228,3959],"delegatorTokens":9999999966377,"jailed":[1000000000000017,null,1000000000000017,null],"status":["unbonding","bonded","unbonding","bonded"]}},{"ix":81,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":12,"t":72,"consumerPower":[null,7431,null,4405],"outstandingDowntime":[false,false,false,false]}},{"ix":82,"action":{"kind":"Undelegate","val":0,"amt":4225},"partialState":{"h":10,"t":60,"tokens":[1476,7431,10228,4959],"delegation":[476,6431,9228,3959],"delegatorTokens":9999999966377}},{"ix":83,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":13,"t":78,"consumerPower":[null,7431,null,4405],"outstandingDowntime":[false,false,false,false]}},{"ix":84,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":85,"action":{"kind":"Deliver","chain":"consumer","numPackets":1},"partialState":{"h":13,"t":78,"consumerPower":[null,7431,null,4405],"outstandingDowntime":[false,false,false,false]}},{"ix":86,"action":{"kind":"Deliver","chain":"consumer","numPackets":4},"partialState":{"h":13,"t":78,"consumerPower":[null,7431,null,4405],"outstandingDowntime":[false,false,false,false]}},{"ix":87,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":14,"t":84,"consumerPower":[null,7431,null,4959],"outstandingDowntime":[false,false,false,false]}},{"ix":88,"action":{"kind":"Undelegate","val":1,"amt":2036},"partialState":{"h":10,"t":60,"tokens":[1476,5395,10228,4959],"delegation":[476,4395,9228,3959],"delegatorTokens":9999999966377}},{"ix":89,"action":{"kind":"Delegate","val":3,"amt":4649},"partialState":{"h":10,"t":60,"tokens":[1476,5395,10228,9608],"delegation":[476,4395,9228,8608],"delegatorTokens":9999999961728}},{"ix":90,"action":{"kind":"Delegate","val":1,"amt":1744},"partialState":{"h":10,"t":60,"tokens":[1476,7139,10228,9608],"delegation":[476,6139,9228,8608],"delegatorTokens":9999999959984}},{"ix":91,"action":{"kind":"Delegate","val":2,"amt":1784},"partialState":{"h":10,"t":60,"tokens":[1476,7139,12012,9608],"delegation":[476,6139,11012,8608],"delegatorTokens":9999999958200}},{"ix":92,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":93,"action":{"kind":"Undelegate","val":3,"amt":4177},"partialState":{"h":10,"t":60,"tokens":[1476,7139,12012,5431],"delegation":[476,6139,11012,4431],"delegatorTokens":9999999958200}},{"ix":94,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":15,"t":90,"consumerPower":[null,7431,null,4959],"outstandingDowntime":[false,false,false,false]}},{"ix":95,"action":{"kind":"Deliver","chain":"provider","numPackets":6},"partialState":{"h":10,"t":60,"tokens":[1476,7139,12012,5431],"delegation":[476,6139,11012,4431],"delegatorTokens":9999999958200,"jailed":[1000000000000017,null,1000000000000017,null],"status":["unbonding","bonded","unbonding","bonded"]}},{"ix":96,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":97,"action":{"kind":"Deliver","chain":"provider","numPackets":2},"partialState":{"h":10,"t":60,"tokens":[1476,7139,12012,5431],"delegation":[476,6139,11012,4431],"delegatorTokens":9999999958200,"jailed":[1000000000000017,null,1000000000000017,null],"status":["unbonding","bonded","unbonding","bonded"]}},{"ix":98,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":99,"action":{"kind":"Deliver","chain":"consumer","numPackets":3},"partialState":{"h":15,"t":90,"consumerPower":[null,7431,null,4959],"outstandingDowntime":[false,false,false,false]}},{"ix":100,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":101,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":11,"t":66,"tokens":[1476,7139,12012,5431],"delegation":[476,6139,11012,4431],"delegatorTokens":9999999958200,"jailed":[1000000000000017,null,1000000000000017,null],"status":["unbonding","bonded","unbonding","bonded"]}},{"ix":102,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":12,"t":72,"tokens":[1476,7139,12012,5431],"delegation":[476,6139,11012,4431],"delegatorTokens":9999999958200,"jailed":[1000000000000017,null,1000000000000017,null],"status":["unbonding","bonded","unbonding","bonded"]}},{"ix":103,"action":{"kind":"Undelegate","val":2,"amt":4705},"partialState":{"h":12,"t":72,"tokens":[1476,7139,7307,5431],"delegation":[476,6139,6307,4431],"delegatorTokens":9999999958200}},{"ix":104,"action":{"kind":"Undelegate","val":3,"amt":2724},"partialState":{"h":12,"t":72,"tokens":[1476,7139,7307,2707],"delegation":[476,6139,6307,1707],"delegatorTokens":9999999958200}},{"ix":105,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":16,"t":96,"consumerPower":[null,7431,null,4959],"outstandingDowntime":[false,false,false,false]}},{"ix":106,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":17,"t":102,"consumerPower":[null,7431,null,4959],"outstandingDowntime":[false,false,false,false]}},{"ix":107,"action":{"kind":"Delegate","val":2,"amt":2836},"partialState":{"h":12,"t":72,"tokens":[1476,7139,10143,2707],"delegation":[476,6139,9143,1707],"delegatorTokens":9999999955364}},{"ix":108,"action":{"kind":"Delegate","val":3,"amt":1400},"partialState":{"h":12,"t":72,"tokens":[1476,7139,10143,4107],"delegation":[476,6139,9143,3107],"delegatorTokens":9999999953964}},{"ix":109,"action":{"kind":"Delegate","val":2,"amt":3058},"partialState":{"h":12,"t":72,"tokens":[1476,7139,13201,4107],"delegation":[476,6139,12201,3107],"delegatorTokens":9999999950906}},{"ix":110,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":13,"t":78,"tokens":[1476,7139,13201,4107],"delegation":[476,6139,12201,3107],"delegatorTokens":9999999950906,"jailed":[1000000000000017,null,1000000000000017,null],"status":["unbonding","bonded","unbonding","bonded"]}},{"ix":111,"action":{"kind":"Deliver","chain":"consumer","numPackets":4},"partialState":{"h":17,"t":102,"consumerPower":[null,7431,null,4959],"outstandingDowntime":[false,false,false,false]}},{"ix":112,"action":{"kind":"Deliver","chain":"consumer","numPackets":3},"partialState":{"h":17,"t":102,"consumerPower":[null,7431,null,4959],"outstandingDowntime":[false,false,false,false]}},{"ix":113,"action":{"kind":"Delegate","val":0,"amt":4262},"partialState":{"h":13,"t":78,"tokens":[5738,7139,13201,4107],"delegation":[4738,6139,12201,3107],"delegatorTokens":9999999946644}},{"ix":114,"action":{"kind":"Delegate","val":3,"amt":4107},"partialState":{"h":13,"t":78,"tokens":[5738,7139,13201,8214],"delegation":[4738,6139,12201,7214],"delegatorTokens":9999999942537}},{"ix":115,"action":{"kind":"Undelegate","val":1,"amt":3191},"partialState":{"h":13,"t":78,"tokens":[5738,3948,13201,8214],"delegation":[4738,2948,12201,7214],"delegatorTokens":9999999942537}},{"ix":116,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":18,"t":108,"consumerPower":[null,7139,null,5431],"outstandingDowntime":[false,false,false,false]}},{"ix":117,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":19,"t":114,"consumerPower":[null,7139,null,5431],"outstandingDowntime":[false,false,false,false]}},{"ix":118,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":119,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":120,"action":{"kind":"Delegate","val":3,"amt":3011},"partialState":{"h":13,"t":78,"tokens":[5738,3948,13201,11225],"delegation":[4738,2948,12201,10225],"delegatorTokens":9999999939526}},{"ix":121,"action":{"kind":"Deliver","chain":"provider","numPackets":2},"partialState":{"h":13,"t":78,"tokens":[5738,3948,13201,11225],"delegation":[4738,2948,12201,10225],"delegatorTokens":9999999939526,"jailed":[1000000000000017,null,1000000000000017,null],"status":["unbonding","bonded","unbonding","bonded"]}},{"ix":122,"action":{"kind":"Undelegate","val":3,"amt":4440},"partialState":{"h":13,"t":78,"tokens":[5738,3948,13201,6785],"delegation":[4738,2948,12201,5785],"delegatorTokens":9999999939526}},{"ix":123,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":20,"t":120,"consumerPower":[null,7139,null,5431],"outstandingDowntime":[false,false,false,false]}},{"ix":124,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":14,"t":84,"tokens":[5738,3948,13201,6785],"delegation":[4738,2948,12201,5785],"delegatorTokens":9999999939526,"jailed":[1000000000000017,null,1000000000000017,null],"status":["unbonding","bonded","unbonding","bonded"]}},{"ix":125,"action":{"kind":"Undelegate","val":2,"amt":4388},"partialState":{"h":14,"t":84,"tokens":[5738,3948,8813,6785],"delegation":[4738,2948,7813,5785],"delegatorTokens":9999999939526}},{"ix":126,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":127,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":128,"action":{"kind":"Deliver","chain":"consumer","numPackets":5},"partialState":{"h":20,"t":120,"consumerPower":[null,7139,null,5431],"outstandingDowntime":[false,false,false,false]}},{"ix":129,"action":{"kind":"Undelegate","val":3,"amt":4571},"partialState":{"h":14,"t":84,"tokens":[5738,3948,8813,2214],"delegation":[4738,2948,7813,1214],"delegatorTokens":9999999939526}},{"ix":130,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":131,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":15,"t":90,"tokens":[5738,3948,8813,2214],"delegation":[4738,2948,7813,1214],"delegatorTokens":9999999945344,"jailed":[1000000000000017,null,1000000000000017,null],"status":["unbonding","bonded","unbonding","bonded"]}},{"ix":132,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":133,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":134,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":16,"t":96,"tokens":[5738,3948,8813,2214],"delegation":[4738,2948,7813,1214],"delegatorTokens":9999999949152,"jailed":[1000000000000017,null,1000000000000017,null],"status":["unbonding","bonded","unbonding","bonded"]}},{"ix":135,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":21,"t":126,"consumerPower":[null,7139,null,4107],"outstandingDowntime":[false,false,false,false]}},{"ix":136,"action":{"kind":"Deliver","chain":"consumer","numPackets":5},"partialState":{"h":21,"t":126,"consumerPower":[null,7139,null,4107],"outstandingDowntime":[false,false,false,false]}},{"ix":137,"action":{"kind":"Deliver","chain":"provider","numPackets":5},"partialState":{"h":16,"t":96,"tokens":[5738,3948,8813,2214],"delegation":[4738,2948,7813,1214],"delegatorTokens":9999999949152,"jailed":[1000000000000017,null,1000000000000017,null],"status":["unbonding","bonded","unbonding","bonded"]}},{"ix":138,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":17,"t":102,"tokens":[5738,3948,8813,2214],"delegation":[4738,2948,7813,1214],"delegatorTokens":9999999949152,"jailed":[1000000000000017,null,1000000000000017,null],"status":["unbonding","bonded","unbonding","bonded"]}},{"ix":139,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":140,"action":{"kind":"Undelegate","val":2,"amt":3559},"partialState":{"h":17,"t":102,"tokens":[5738,3948,5254,2214],"delegation":[4738,2948,4254,1214],"delegatorTokens":9999999949152}},{"ix":141,"action":{"kind":"Deliver","chain":"consumer","numPackets":4},"partialState":{"h":21,"t":126,"consumerPower":[null,7139,null,4107],"outstandingDowntime":[false,false,false,false]}},{"ix":142,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":143,"action":{"kind":"Undelegate","val":2,"amt":3991},"partialState":{"h":17,"t":102,"tokens":[5738,3948,1263,2214],"delegation":[4738,2948,263,1214],"delegatorTokens":9999999949152}},{"ix":144,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":22,"t":132,"consumerPower":[null,3948,null,2214],"outstandingDowntime":[false,false,false,false]}},{"ix":145,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":146,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":147,"action":{"kind":"Deliver","chain":"provider","numPackets":6},"partialState":{"h":17,"t":102,"tokens":[5738,3948,1263,2214],"delegation":[4738,2948,263,1214],"delegatorTokens":9999999949152,"jailed":[1000000000000017,null,1000000000000017,null],"status":["unbonding","bonded","unbonding","bonded"]}},{"ix":148,"action":{"kind":"Delegate","val":2,"amt":1099},"partialState":{"h":17,"t":102,"tokens":[5738,3948,2362,2214],"delegation":[4738,2948,1362,1214],"delegatorTokens":9999999948053}},{"ix":149,"action":{"kind":"Undelegate","val":2,"amt":3449},"partialState":{"h":17,"t":102,"tokens":[5738,3948,2362,2214],"delegation":[4738,2948,1362,1214],"delegatorTokens":9999999948053}},{"ix":150,"action":{"kind":"Delegate","val":1,"amt":2774},"partialState":{"h":17,"t":102,"tokens":[5738,6722,2362,2214],"delegation":[4738,5722,1362,1214],"delegatorTokens":9999999945279}},{"ix":151,"action":{"kind":"Delegate","val":0,"amt":3585},"partialState":{"h":17,"t":102,"tokens":[9323,6722,2362,2214],"delegation":[8323,5722,1362,1214],"delegatorTokens":9999999941694}},{"ix":152,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":153,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":23,"t":138,"consumerPower":[null,3948,null,2214],"outstandingDowntime":[false,false,false,false]}},{"ix":154,"action":{"kind":"Deliver","chain":"consumer","numPackets":4},"partialState":{"h":23,"t":138,"consumerPower":[null,3948,null,2214],"outstandingDowntime":[false,false,false,false]}},{"ix":155,"action":{"kind":"Deliver","chain":"consumer","numPackets":5},"partialState":{"h":23,"t":138,"consumerPower":[null,3948,null,2214],"outstandingDowntime":[false,false,false,false]}},{"ix":156,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":157,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":24,"t":144,"consumerPower":[null,3948,null,2214],"outstandingDowntime":[false,false,false,false]}},{"ix":158,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":18,"t":108,"tokens":[9323,6722,2362,2214],"delegation":[8323,5722,1362,1214],"delegatorTokens":9999999941694,"jailed":[1000000000000017,null,1000000000000017,null],"status":["unbonded","bonded","unbonded","bonded"]}},{"ix":159,"action":{"kind":"Delegate","val":0,"amt":2379},"partialState":{"h":18,"t":108,"tokens":[11702,6722,2362,2214],"delegation":[10702,5722,1362,1214],"delegatorTokens":9999999939315}},{"ix":160,"action":{"kind":"Deliver","chain":"provider","numPackets":3},"partialState":{"h":18,"t":108,"tokens":[11702,6722,2362,2214],"delegation":[10702,5722,1362,1214],"delegatorTokens":9999999939315,"jailed":[1000000000000017,null,1000000000000017,null],"status":["unbonded","bonded","unbonded","bonded"]}},{"ix":161,"action":{"kind":"Undelegate","val":0,"amt":4811},"partialState":{"h":18,"t":108,"tokens":[6891,6722,2362,2214],"delegation":[5891,5722,1362,1214],"delegatorTokens":9999999939315}},{"ix":162,"action":{"kind":"Undelegate","val":2,"amt":4288},"partialState":{"h":18,"t":108,"tokens":[6891,6722,2362,2214],"delegation":[5891,5722,1362,1214],"delegatorTokens":9999999939315}},{"ix":163,"action":{"kind":"Deliver","chain":"consumer","numPackets":4},"partialState":{"h":24,"t":144,"consumerPower":[null,3948,null,2214],"outstandingDowntime":[false,false,false,false]}},{"ix":164,"action":{"kind":"Deliver","chain":"consumer","numPackets":1},"partialState":{"h":24,"t":144,"consumerPower":[null,3948,null,2214],"outstandingDowntime":[false,false,false,false]}},{"ix":165,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":166,"action":{"kind":"Undelegate","val":1,"amt":3457},"partialState":{"h":18,"t":108,"tokens":[6891,3265,2362,2214],"delegation":[5891,2265,1362,1214],"delegatorTokens":9999999939315}},{"ix":167,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":168,"action":{"kind":"Delegate","val":0,"amt":4919},"partialState":{"h":18,"t":108,"tokens":[11810,3265,2362,2214],"delegation":[10810,2265,1362,1214],"delegatorTokens":9999999934396}},{"ix":169,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":170,"action":{"kind":"Deliver","chain":"provider","numPackets":2},"partialState":{"h":18,"t":108,"tokens":[11810,3265,2362,2214],"delegation":[10810,2265,1362,1214],"delegatorTokens":9999999934396,"jailed":[1000000000000017,null,1000000000000017,null],"status":["unbonded","bonded","unbonded","bonded"]}},{"ix":171,"action":{"kind":"Undelegate","val":1,"amt":2922},"partialState":{"h":18,"t":108,"tokens":[11810,3265,2362,2214],"delegation":[10810,2265,1362,1214],"delegatorTokens":9999999934396}},{"ix":172,"action":{"kind":"Undelegate","val":1,"amt":4938},"partialState":{"h":18,"t":108,"tokens":[11810,3265,2362,2214],"delegation":[10810,2265,1362,1214],"delegatorTokens":9999999934396}},{"ix":173,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":25,"t":150,"consumerPower":[null,3948,null,2214],"outstandingDowntime":[false,false,false,false]}},{"ix":174,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":19,"t":114,"tokens":[11810,3265,2362,2214],"delegation":[10810,2265,1362,1214],"delegatorTokens":9999999936837,"jailed":[1000000000000017,null,1000000000000017,null],"status":["unbonded","bonded","unbonded","bonded"]}},{"ix":175,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":176,"action":{"kind":"Delegate","val":1,"amt":4110},"partialState":{"h":19,"t":114,"tokens":[11810,7375,2362,2214],"delegation":[10810,6375,1362,1214],"delegatorTokens":9999999932727}},{"ix":177,"action":{"kind":"Delegate","val":3,"amt":1339},"partialState":{"h":19,"t":114,"tokens":[11810,7375,2362,3553],"delegation":[10810,6375,1362,2553],"delegatorTokens":9999999931388}},{"ix":178,"action":{"kind":"Undelegate","val":3,"amt":1541},"partialState":{"h":19,"t":114,"tokens":[11810,7375,2362,2012],"delegation":[10810,6375,1362,1012],"delegatorTokens":9999999931388}},{"ix":179,"action":{"kind":"Delegate","val":2,"amt":1057},"partialState":{"h":19,"t":114,"tokens":[11810,7375,3419,2012],"delegation":[10810,6375,2419,1012],"delegatorTokens":9999999930331}},{"ix":180,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":20,"t":120,"tokens":[11810,7375,3419,2012],"delegation":[10810,6375,2419,1012],"delegatorTokens":9999999930331,"jailed":[1000000000000017,null,1000000000000017,null],"status":["unbonded","bonded","unbonded","bonded"]}},{"ix":181,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":21,"t":126,"tokens":[11810,7375,3419,2012],"delegation":[10810,6375,2419,1012],"delegatorTokens":9999999937568,"jailed":[1000000000000017,null,1000000000000017,null],"status":["unbonded","bonded","unbonded","bonded"]}},{"ix":182,"action":{"kind":"Deliver","chain":"provider","numPackets":3},"partialState":{"h":21,"t":126,"tokens":[11810,7375,3419,2012],"delegation":[10810,6375,2419,1012],"delegatorTokens":9999999937568,"jailed":[1000000000000017,null,1000000000000017,null],"status":["unbonded","bonded","unbonded","bonded"]}},{"ix":183,"action":{"kind":"Deliver","chain":"provider","numPackets":2},"partialState":{"h":21,"t":126,"tokens":[11810,7375,3419,2012],"delegation":[10810,6375,2419,1012],"delegatorTokens":9999999937568,"jailed":[1000000000000017,null,1000000000000017,null],"status":["unbonded","bonded","unbonded","bonded"]}},{"ix":184,"action":{"kind":"Deliver","chain":"provider","numPackets":4},"partialState":{"h":21,"t":126,"tokens":[11810,7375,3419,2012],"delegation":[10810,6375,2419,1012],"delegatorTokens":9999999937568,"jailed":[1000000000000017,null,1000000000000017,null],"status":["unbonded","bonded","unbonded","bonded"]}},{"ix":185,"action":{"kind":"Undelegate","val":2,"amt":3405},"partialState":{"h":21,"t":126,"tokens":[11810,7375,3419,2012],"delegation":[10810,6375,2419,1012],"delegatorTokens":9999999937568}},{"ix":186,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":187,"action":{"kind":"Delegate","val":2,"amt":2791},"partialState":{"h":21,"t":126,"tokens":[11810,7375,6210,2012],"delegation":[10810,6375,5210,1012],"delegatorTokens":9999999934777}},{"ix":188,"action":{"kind":"Delegate","val":3,"amt":2946},"partialState":{"h":21,"t":126,"tokens":[11810,7375,6210,4958],"delegation":[10810,6375,5210,3958],"delegatorTokens":9999999931831}},{"ix":189,"action":{"kind":"Deliver","chain":"consumer","numPackets":1},"partialState":{"h":25,"t":150,"consumerPower":[null,3948,null,2214],"outstandingDowntime":[false,false,false,false]}},{"ix":190,"action":{"kind":"Delegate","val":2,"amt":3676},"partialState":{"h":21,"t":126,"tokens":[11810,7375,9886,4958],"delegation":[10810,6375,8886,3958],"delegatorTokens":9999999928155}},{"ix":191,"action":{"kind":"Undelegate","val":1,"amt":2417},"partialState":{"h":21,"t":126,"tokens":[11810,4958,9886,4958],"delegation":[10810,3958,8886,3958],"delegatorTokens":9999999928155}},{"ix":192,"action":{"kind":"Deliver","chain":"provider","numPackets":4},"partialState":{"h":21,"t":126,"tokens":[11810,4958,9886,4958],"delegation":[10810,3958,8886,3958],"delegatorTokens":9999999928155,"jailed":[1000000000000017,null,1000000000000017,null],"status":["unbonded","bonded","unbonded","bonded"]}},{"ix":193,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":26,"t":156,"consumerPower":[null,6722,null,2214],"outstandingDowntime":[false,false,false,false]}},{"ix":194,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":27,"t":162,"consumerPower":[null,6722,null,2214],"outstandingDowntime":[false,false,false,false]}},{"ix":195,"action":{"kind":"Delegate","val":0,"amt":2220},"partialState":{"h":21,"t":126,"tokens":[14030,4958,9886,4958],"delegation":[13030,3958,8886,3958],"delegatorTokens":9999999925935}},{"ix":196,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":197,"action":{"kind":"Deliver","chain":"provider","numPackets":1},"partialState":{"h":21,"t":126,"tokens":[14030,4958,9886,4958],"delegation":[13030,3958,8886,3958],"delegatorTokens":9999999925935,"jailed":[1000000000000017,null,1000000000000017,null],"status":["unbonded","bonded","unbonded","bonded"]}},{"ix":198,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":28,"t":168,"consumerPower":[null,6722,null,2214],"outstandingDowntime":[false,false,false,false]}},{"ix":199,"action":{"kind":"Deliver","chain":"consumer","numPackets":2},"partialState":{"h":28,"t":168,"consumerPower":[null,6722,null,2214],"outstandingDowntime":[false,false,false,false]}}],"events":["more_than_one_third_val_power_change","send_vsc_without_downtime_ack","insufficient_shares","send_downtime_slash_request","send_downtime_slash_request","send_vsc_without_downtime_ack","downtime_slash_request_outstanding","downtime_slash_request_outstanding","insufficient_shares","downtime_slash_request_outstanding","downtime_slash_request_outstanding","send_double_sign_slash_request","downtime_slash_request_outstanding","send_double_sign_slash_request","consumer_del_val","consumer_add_val","receive_downtime_slash_request","jail","receive_downtime_slash_request","jail","send_vsc_with_downtime_ack","receive_double_sign_slash_request","receive_double_sign_slash_request","more_than_one_third_val_power_change","rebond_unval","send_vsc_without_downtime_ack","receive_downtime_slash_ack","receive_downtime_slash_ack","insufficient_shares","consumer_del_val","consumer_del_val","consumer_add_val","consumer_add_val","send_vsc_not_because_change","send_vsc_without_downtime_ack","send_vsc_without_downtime_ack","send_vsc_without_downtime_ack","consumer_send_maturation","consumer_update_val","send_vsc_without_downtime_ack","consumer_send_maturation","consumer_send_maturation","consumer_send_maturation","send_vsc_without_downtime_ack","consumer_update_val","consumer_update_val","set_undel_hold_false","set_undel_hold_false","set_undel_hold_false","set_undel_hold_false","set_undel_hold_false","send_vsc_without_downtime_ack","complete_undel_in_endblock","send_vsc_without_downtime_ack","complete_undel_in_endblock","consumer_update_val","set_unval_hold_false","set_unval_hold_false","consumer_update_val","consumer_update_val","insufficient_shares","consumer_send_maturation","consumer_send_maturation","consumer_send_maturation","complete_unval_in_endblock","complete_unval_in_endblock","send_vsc_without_downtime_ack","insufficient_shares","insufficient_shares","insufficient_shares","some_undels_expired_but_not_completed","complete_undel_immediate","set_undel_hold_false","set_undel_hold_false","set_undel_hold_false","set_undel_hold_false","send_vsc_without_downtime_ack","send_vsc_without_downtime_ack","complete_undel_in_endblock","insufficient_shares","consumer_update_val","consumer_send_maturation"]},{"meta":{"commit":"7ffd0c04e4205cbc9caf212abfe6c59ee43153bf"},"constants":{"P":"provider","C":"consumer","UNBONDING_SECONDS_P":70,"UNBONDING_SECONDS_C":50,"TRUSTING_SECONDS":49,"NUM_VALIDATORS":4,"MAX_VALIDATORS":2,"SLASH_DOUBLESIGN":0,"SLASH_DOWNTIME":0,"JAIL_SECONDS":999999999999999,"BLOCK_SECONDS":6,"INITIAL_DELEGATOR_TOKENS":10000000000000,"DELEGATE_AMT_MIN":1000,"DELEGATE_AMT_MAX":5000,"UNDELEGATE_AMT_MIN":1000,"UNDELEGATE_AMT_MAX":5000,"ISDOWNTIME_PROBABILITY":0.5,"MAX_NUM_PACKETS_FOR_DELIVER":6},"actions":[{"ix":0,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":2,"t":12,"tokens":[5000,4000,3000,2000],"delegation":[4000,3000,2000,1000],"delegatorTokens":10000000000000,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":1,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":2,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":3,"t":18,"tokens":[5000,4000,3000,2000],"delegation":[4000,3000,2000,1000],"delegatorTokens":10000000000000,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":3,"action":{"kind":"Undelegate","val":2,"amt":4324},"partialState":{"h":3,"t":18,"tokens":[5000,4000,3000,2000],"delegation":[4000,3000,2000,1000],"delegatorTokens":10000000000000}},{"ix":4,"action":{"kind":"Deliver","chain":"provider","numPackets":6},"partialState":{"h":3,"t":18,"tokens":[5000,4000,3000,2000],"delegation":[4000,3000,2000,1000],"delegatorTokens":10000000000000,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":5,"action":{"kind":"Deliver","chain":"provider","numPackets":4},"partialState":{"h":3,"t":18,"tokens":[5000,4000,3000,2000],"delegation":[4000,3000,2000,1000],"delegatorTokens":10000000000000,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":6,"action":{"kind":"Undelegate","val":1,"amt":2484},"partialState":{"h":3,"t":18,"tokens":[5000,1516,3000,2000],"delegation":[4000,516,2000,1000],"delegatorTokens":10000000000000}},{"ix":7,"action":{"kind":"ConsumerSlash","val":2,"infractionHeight":0,"isDowntime":true},"partialState":{"h":1,"t":6,"outstandingDowntime":[false,false,true,false]}},{"ix":8,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":4,"t":24,"tokens":[5000,1516,3000,2000],"delegation":[4000,516,2000,1000],"delegatorTokens":10000000000000,"jailed":[null,null,null,null],"status":["bonded","unbonding","bonded","unbonded"]}},{"ix":9,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":2,"t":12,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,false,true,false]}},{"ix":10,"action":{"kind":"Undelegate","val":0,"amt":2641},"partialState":{"h":4,"t":24,"tokens":[2359,1516,3000,2000],"delegation":[1359,516,2000,1000],"delegatorTokens":10000000000000}},{"ix":11,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":12,"action":{"kind":"Deliver","chain":"provider","numPackets":4},"partialState":{"h":4,"t":24,"tokens":[2359,1516,3000,2000],"delegation":[1359,516,2000,1000],"delegatorTokens":10000000000000,"jailed":[null,null,null,null],"status":["bonded","unbonding","bonded","unbonded"]}},{"ix":13,"action":{"kind":"ConsumerSlash","val":2,"infractionHeight":0,"isDowntime":false},"partialState":{"h":2,"t":12,"outstandingDowntime":[false,false,true,false]}},{"ix":14,"action":{"kind":"ConsumerSlash","val":2,"infractionHeight":1,"isDowntime":true},"partialState":{"h":2,"t":12,"outstandingDowntime":[false,false,true,false]}},{"ix":15,"action":{"kind":"Deliver","chain":"provider","numPackets":4},"partialState":{"h":4,"t":24,"tokens":[2359,1516,3000,2000],"delegation":[1359,516,2000,1000],"delegatorTokens":10000000000000,"jailed":[null,null,null,null],"status":["bonded","unbonding","bonded","unbonded"]}},{"ix":16,"action":{"kind":"Delegate","val":0,"amt":3161},"partialState":{"h":4,"t":24,"tokens":[5520,1516,3000,2000],"delegation":[4520,516,2000,1000],"delegatorTokens":9999999996839}},{"ix":17,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":18,"action":{"kind":"Delegate","val":2,"amt":1464},"partialState":{"h":4,"t":24,"tokens":[5520,1516,4464,2000],"delegation":[4520,516,3464,1000],"delegatorTokens":9999999995375}},{"ix":19,"action":{"kind":"Deliver","chain":"consumer","numPackets":6},"partialState":{"h":2,"t":12,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,false,true,false]}},{"ix":20,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":21,"action":{"kind":"ConsumerSlash","val":0,"infractionHeight":0,"isDowntime":true},"partialState":{"h":2,"t":12,"outstandingDowntime":[true,false,true,false]}},{"ix":22,"action":{"kind":"Delegate","val":0,"amt":1290},"partialState":{"h":4,"t":24,"tokens":[6810,1516,4464,2000],"delegation":[5810,516,3464,1000],"delegatorTokens":9999999994085}},{"ix":23,"action":{"kind":"ConsumerSlash","val":0,"infractionHeight":0,"isDowntime":true},"partialState":{"h":2,"t":12,"outstandingDowntime":[true,false,true,false]}},{"ix":24,"action":{"kind":"Deliver","chain":"consumer","numPackets":1},"partialState":{"h":2,"t":12,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[true,false,true,false]}},{"ix":25,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":26,"action":{"kind":"ConsumerSlash","val":0,"infractionHeight":0,"isDowntime":true},"partialState":{"h":2,"t":12,"outstandingDowntime":[true,false,true,false]}},{"ix":27,"action":{"kind":"Undelegate","val":3,"amt":1702},"partialState":{"h":4,"t":24,"tokens":[6810,1516,4464,2000],"delegation":[5810,516,3464,1000],"delegatorTokens":9999999994085}},{"ix":28,"action":{"kind":"Delegate","val":0,"amt":1282},"partialState":{"h":4,"t":24,"tokens":[8092,1516,4464,2000],"delegation":[7092,516,3464,1000],"delegatorTokens":9999999992803}},{"ix":29,"action":{"kind":"Deliver","chain":"consumer","numPackets":6},"partialState":{"h":2,"t":12,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[true,false,true,false]}},{"ix":30,"action":{"kind":"Delegate","val":3,"amt":2885},"partialState":{"h":4,"t":24,"tokens":[8092,1516,4464,4885],"delegation":[7092,516,3464,3885],"delegatorTokens":9999999989918}},{"ix":31,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":32,"action":{"kind":"Deliver","chain":"consumer","numPackets":6},"partialState":{"h":2,"t":12,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[true,false,true,false]}},{"ix":33,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":5,"t":30,"tokens":[8092,1516,4464,4885],"delegation":[7092,516,3464,3885],"delegatorTokens":9999999989918,"jailed":[null,null,null,null],"status":["bonded","unbonding","unbonding","bonded"]}},{"ix":34,"action":{"kind":"Deliver","chain":"consumer","numPackets":6},"partialState":{"h":2,"t":12,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[true,false,true,false]}},{"ix":35,"action":{"kind":"Deliver","chain":"provider","numPackets":6},"partialState":{"h":5,"t":30,"tokens":[8092,1516,4464,4885],"delegation":[7092,516,3464,3885],"delegatorTokens":9999999989918,"jailed":[null,null,null,null],"status":["bonded","unbonding","unbonding","bonded"]}},{"ix":36,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":37,"action":{"kind":"Undelegate","val":2,"amt":4511},"partialState":{"h":5,"t":30,"tokens":[8092,1516,4464,4885],"delegation":[7092,516,3464,3885],"delegatorTokens":9999999989918}},{"ix":38,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":6,"t":36,"tokens":[8092,1516,4464,4885],"delegation":[7092,516,3464,3885],"delegatorTokens":9999999989918,"jailed":[null,null,null,null],"status":["bonded","unbonding","unbonding","bonded"]}},{"ix":39,"action":{"kind":"ConsumerSlash","val":0,"infractionHeight":1,"isDowntime":true},"partialState":{"h":2,"t":12,"outstandingDowntime":[true,false,true,false]}},{"ix":40,"action":{"kind":"Undelegate","val":2,"amt":2941},"partialState":{"h":6,"t":36,"tokens":[8092,1516,1523,4885],"delegation":[7092,516,523,3885],"delegatorTokens":9999999989918}},{"ix":41,"action":{"kind":"Undelegate","val":3,"amt":3697},"partialState":{"h":6,"t":36,"tokens":[8092,1516,1523,1188],"delegation":[7092,516,523,188],"delegatorTokens":9999999989918}},{"ix":42,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":3,"t":18,"consumerPower":[5000,null,3000,null],"outstandingDowntime":[true,false,true,false]}},{"ix":43,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":44,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":45,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":7,"t":42,"tokens":[8092,1516,1523,1188],"delegation":[7092,516,523,188],"delegatorTokens":9999999989918,"jailed":[null,null,null,null],"status":["bonded","unbonding","bonded","unbonding"]}},{"ix":46,"action":{"kind":"Undelegate","val":2,"amt":4009},"partialState":{"h":7,"t":42,"tokens":[8092,1516,1523,1188],"delegation":[7092,516,523,188],"delegatorTokens":9999999989918}},{"ix":47,"action":{"kind":"Deliver","chain":"provider","numPackets":2},"partialState":{"h":7,"t":42,"tokens":[8092,1516,1523,1188],"delegation":[7092,516,523,188],"delegatorTokens":9999999989918,"jailed":[null,null,null,null],"status":["bonded","unbonding","bonded","unbonding"]}},{"ix":48,"action":{"kind":"Deliver","chain":"provider","numPackets":5},"partialState":{"h":7,"t":42,"tokens":[8092,1516,1523,1188],"delegation":[7092,516,523,188],"delegatorTokens":9999999989918,"jailed":[null,null,null,null],"status":["bonded","unbonding","bonded","unbonding"]}},{"ix":49,"action":{"kind":"Deliver","chain":"provider","numPackets":2},"partialState":{"h":7,"t":42,"tokens":[8092,1516,1523,1188],"delegation":[7092,516,523,188],"delegatorTokens":9999999989918,"jailed":[null,null,null,null],"status":["bonded","unbonding","bonded","unbonding"]}},{"ix":50,"action":{"kind":"Delegate","val":0,"amt":2044},"partialState":{"h":7,"t":42,"tokens":[10136,1516,1523,1188],"delegation":[9136,516,523,188],"delegatorTokens":9999999987874}},{"ix":51,"action":{"kind":"Deliver","chain":"provider","numPackets":4},"partialState":{"h":7,"t":42,"tokens":[10136,1516,1523,1188],"delegation":[9136,516,523,188],"delegatorTokens":9999999987874,"jailed":[null,null,null,null],"status":["bonded","unbonding","bonded","unbonding"]}},{"ix":52,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":4,"t":24,"consumerPower":[5000,null,3000,null],"outstandingDowntime":[true,false,true,false]}},{"ix":53,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":8,"t":48,"tokens":[10136,1516,1523,1188],"delegation":[9136,516,523,188],"delegatorTokens":9999999987874,"jailed":[null,null,1000000000000041,null],"status":["bonded","unbonding","bonded","unbonding"]}},{"ix":54,"action":{"kind":"Delegate","val":0,"amt":2056},"partialState":{"h":8,"t":48,"tokens":[12192,1516,1523,1188],"delegation":[11192,516,523,188],"delegatorTokens":9999999985818}},{"ix":55,"action":{"kind":"Undelegate","val":2,"amt":3463},"partialState":{"h":8,"t":48,"tokens":[12192,1516,1523,1188],"delegation":[11192,516,523,188],"delegatorTokens":9999999985818}},{"ix":56,"action":{"kind":"Undelegate","val":2,"amt":3126},"partialState":{"h":8,"t":48,"tokens":[12192,1516,1523,1188],"delegation":[11192,516,523,188],"delegatorTokens":9999999985818}},{"ix":57,"action":{"kind":"ConsumerSlash","val":0,"infractionHeight":1,"isDowntime":true},"partialState":{"h":4,"t":24,"outstandingDowntime":[true,false,true,false]}},{"ix":58,"action":{"kind":"Undelegate","val":0,"amt":4661},"partialState":{"h":8,"t":48,"tokens":[7531,1516,1523,1188],"delegation":[6531,516,523,188],"delegatorTokens":9999999985818}},{"ix":59,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":60,"action":{"kind":"Delegate","val":1,"amt":1251},"partialState":{"h":8,"t":48,"tokens":[7531,2767,1523,1188],"delegation":[6531,1767,523,188],"delegatorTokens":9999999984567}},{"ix":61,"action":{"kind":"Undelegate","val":2,"amt":3107},"partialState":{"h":8,"t":48,"tokens":[7531,2767,1523,1188],"delegation":[6531,1767,523,188],"delegatorTokens":9999999984567}},{"ix":62,"action":{"kind":"Deliver","chain":"provider","numPackets":1},"partialState":{"h":8,"t":48,"tokens":[7531,2767,1523,1188],"delegation":[6531,1767,523,188],"delegatorTokens":9999999984567,"jailed":[null,null,1000000000000041,null],"status":["bonded","unbonding","bonded","unbonding"]}},{"ix":63,"action":{"kind":"Deliver","chain":"provider","numPackets":5},"partialState":{"h":8,"t":48,"tokens":[7531,2767,1523,1188],"delegation":[6531,1767,523,188],"delegatorTokens":9999999984567,"jailed":[null,null,1000000000000041,null],"status":["bonded","unbonding","bonded","unbonding"]}},{"ix":64,"action":{"kind":"Undelegate","val":1,"amt":1758},"partialState":{"h":8,"t":48,"tokens":[7531,1009,1523,1188],"delegation":[6531,9,523,188],"delegatorTokens":9999999984567}},{"ix":65,"action":{"kind":"Delegate","val":1,"amt":2362},"partialState":{"h":8,"t":48,"tokens":[7531,3371,1523,1188],"delegation":[6531,2371,523,188],"delegatorTokens":9999999982205}},{"ix":66,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":67,"action":{"kind":"Undelegate","val":1,"amt":3936},"partialState":{"h":8,"t":48,"tokens":[7531,3371,1523,1188],"delegation":[6531,2371,523,188],"delegatorTokens":9999999982205}},{"ix":68,"action":{"kind":"Delegate","val":0,"amt":1841},"partialState":{"h":8,"t":48,"tokens":[9372,3371,1523,1188],"delegation":[8372,2371,523,188],"delegatorTokens":9999999980364}},{"ix":69,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":9,"t":54,"tokens":[9372,3371,1523,1188],"delegation":[8372,2371,523,188],"delegatorTokens":9999999980364,"jailed":[1000000000000047,null,1000000000000041,null],"status":["bonded","bonded","unbonding","unbonding"]}},{"ix":70,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":71,"action":{"kind":"Undelegate","val":3,"amt":2318},"partialState":{"h":9,"t":54,"tokens":[9372,3371,1523,1188],"delegation":[8372,2371,523,188],"delegatorTokens":9999999980364}},{"ix":72,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":73,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":74,"action":{"kind":"Undelegate","val":1,"amt":1347},"partialState":{"h":9,"t":54,"tokens":[9372,2024,1523,1188],"delegation":[8372,1024,523,188],"delegatorTokens":9999999980364}},{"ix":75,"action":{"kind":"Undelegate","val":1,"amt":2029},"partialState":{"h":9,"t":54,"tokens":[9372,2024,1523,1188],"delegation":[8372,1024,523,188],"delegatorTokens":9999999980364}},{"ix":76,"action":{"kind":"Undelegate","val":1,"amt":3184},"partialState":{"h":9,"t":54,"tokens":[9372,2024,1523,1188],"delegation":[8372,1024,523,188],"delegatorTokens":9999999980364}},{"ix":77,"action":{"kind":"ConsumerSlash","val":0,"infractionHeight":2,"isDowntime":true},"partialState":{"h":4,"t":24,"outstandingDowntime":[true,false,true,false]}},{"ix":78,"action":{"kind":"Delegate","val":1,"amt":1556},"partialState":{"h":9,"t":54,"tokens":[9372,3580,1523,1188],"delegation":[8372,2580,523,188],"delegatorTokens":9999999978808}},{"ix":79,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":80,"action":{"kind":"Delegate","val":3,"amt":2839},"partialState":{"h":9,"t":54,"tokens":[9372,3580,1523,4027],"delegation":[8372,2580,523,3027],"delegatorTokens":9999999975969}},{"ix":81,"action":{"kind":"Delegate","val":3,"amt":4542},"partialState":{"h":9,"t":54,"tokens":[9372,3580,1523,8569],"delegation":[8372,2580,523,7569],"delegatorTokens":9999999971427}},{"ix":82,"action":{"kind":"Deliver","chain":"consumer","numPackets":3},"partialState":{"h":4,"t":24,"consumerPower":[5000,null,3000,null],"outstandingDowntime":[true,false,false,false]}},{"ix":83,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":10,"t":60,"tokens":[9372,3580,1523,8569],"delegation":[8372,2580,523,7569],"delegatorTokens":9999999971427,"jailed":[1000000000000047,null,1000000000000041,null],"status":["unbonding","bonded","unbonding","bonded"]}},{"ix":84,"action":{"kind":"Delegate","val":0,"amt":3766},"partialState":{"h":10,"t":60,"tokens":[13138,3580,1523,8569],"delegation":[12138,2580,523,7569],"delegatorTokens":9999999967661}},{"ix":85,"action":{"kind":"ConsumerSlash","val":3,"infractionHeight":0,"isDowntime":false},"partialState":{"h":4,"t":24,"outstandingDowntime":[true,false,false,false]}},{"ix":86,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":11,"t":66,"tokens":[13138,3580,1523,8569],"delegation":[12138,2580,523,7569],"delegatorTokens":9999999967661,"jailed":[1000000000000047,null,1000000000000041,null],"status":["unbonding","bonded","unbonding","bonded"]}},{"ix":87,"action":{"kind":"Undelegate","val":0,"amt":1453},"partialState":{"h":11,"t":66,"tokens":[11685,3580,1523,8569],"delegation":[10685,2580,523,7569],"delegatorTokens":9999999967661}},{"ix":88,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":89,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":5,"t":30,"consumerPower":[10136,null,1523,null],"outstandingDowntime":[true,false,false,false]}},{"ix":90,"action":{"kind":"Deliver","chain":"provider","numPackets":2},"partialState":{"h":11,"t":66,"tokens":[11685,3580,1523,8569],"delegation":[10685,2580,523,7569],"delegatorTokens":9999999967661,"jailed":[1000000000000047,null,1000000000000041,null],"status":["unbonding","bonded","unbonding","bonded"]}},{"ix":91,"action":{"kind":"Undelegate","val":3,"amt":4188},"partialState":{"h":11,"t":66,"tokens":[11685,3580,1523,4381],"delegation":[10685,2580,523,3381],"delegatorTokens":9999999967661}},{"ix":92,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":93,"action":{"kind":"Deliver","chain":"provider","numPackets":2},"partialState":{"h":11,"t":66,"tokens":[11685,3580,1523,4381],"delegation":[10685,2580,523,3381],"delegatorTokens":9999999967661,"jailed":[1000000000000047,null,1000000000000041,null],"status":["unbonding","bonded","unbonding","bonded"]}},{"ix":94,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":95,"action":{"kind":"Deliver","chain":"consumer","numPackets":6},"partialState":{"h":5,"t":30,"consumerPower":[10136,null,1523,null],"outstandingDowntime":[false,false,false,false]}},{"ix":96,"action":{"kind":"Delegate","val":1,"amt":3277},"partialState":{"h":11,"t":66,"tokens":[11685,6857,1523,4381],"delegation":[10685,5857,523,3381],"delegatorTokens":9999999964384}},{"ix":97,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":98,"action":{"kind":"Deliver","chain":"consumer","numPackets":1},"partialState":{"h":5,"t":30,"consumerPower":[10136,null,1523,null],"outstandingDowntime":[false,false,false,false]}},{"ix":99,"action":{"kind":"Delegate","val":1,"amt":3927},"partialState":{"h":11,"t":66,"tokens":[11685,10784,1523,4381],"delegation":[10685,9784,523,3381],"delegatorTokens":9999999960457}},{"ix":100,"action":{"kind":"Delegate","val":0,"amt":1877},"partialState":{"h":11,"t":66,"tokens":[13562,10784,1523,4381],"delegation":[12562,9784,523,3381],"delegatorTokens":9999999958580}},{"ix":101,"action":{"kind":"Undelegate","val":1,"amt":2151},"partialState":{"h":11,"t":66,"tokens":[13562,8633,1523,4381],"delegation":[12562,7633,523,3381],"delegatorTokens":9999999958580}},{"ix":102,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":6,"t":36,"consumerPower":[null,3580,null,8569],"outstandingDowntime":[false,false,false,false]}},{"ix":103,"action":{"kind":"Undelegate","val":2,"amt":4812},"partialState":{"h":11,"t":66,"tokens":[13562,8633,1523,4381],"delegation":[12562,7633,523,3381],"delegatorTokens":9999999958580}},{"ix":104,"action":{"kind":"Delegate","val":3,"amt":4589},"partialState":{"h":11,"t":66,"tokens":[13562,8633,1523,8970],"delegation":[12562,7633,523,7970],"delegatorTokens":9999999953991}},{"ix":105,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":12,"t":72,"tokens":[13562,8633,1523,8970],"delegation":[12562,7633,523,7970],"delegatorTokens":9999999953991,"jailed":[1000000000000047,null,1000000000000041,null],"status":["unbonding","bonded","unbonding","bonded"]}},{"ix":106,"action":{"kind":"Undelegate","val":1,"amt":1654},"partialState":{"h":12,"t":72,"tokens":[13562,6979,1523,8970],"delegation":[12562,5979,523,7970],"delegatorTokens":9999999953991}},{"ix":107,"action":{"kind":"Deliver","chain":"consumer","numPackets":4},"partialState":{"h":6,"t":36,"consumerPower":[null,3580,null,8569],"outstandingDowntime":[false,false,false,false]}},{"ix":108,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":7,"t":42,"consumerPower":[null,3580,null,8569],"outstandingDowntime":[false,false,false,false]}},{"ix":109,"action":{"kind":"Deliver","chain":"consumer","numPackets":5},"partialState":{"h":7,"t":42,"consumerPower":[null,3580,null,8569],"outstandingDowntime":[false,false,false,false]}},{"ix":110,"action":{"kind":"Delegate","val":2,"amt":1701},"partialState":{"h":12,"t":72,"tokens":[13562,6979,3224,8970],"delegation":[12562,5979,2224,7970],"delegatorTokens":9999999952290}},{"ix":111,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":112,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":113,"action":{"kind":"Deliver","chain":"provider","numPackets":4},"partialState":{"h":12,"t":72,"tokens":[13562,6979,3224,8970],"delegation":[12562,5979,2224,7970],"delegatorTokens":9999999952290,"jailed":[1000000000000047,null,1000000000000041,null],"status":["unbonding","bonded","unbonding","bonded"]}},{"ix":114,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":8,"t":48,"consumerPower":[null,3580,null,8569],"outstandingDowntime":[false,false,false,false]}},{"ix":115,"action":{"kind":"Deliver","chain":"consumer","numPackets":2},"partialState":{"h":8,"t":48,"consumerPower":[null,3580,null,8569],"outstandingDowntime":[false,false,false,false]}},{"ix":116,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":13,"t":78,"tokens":[13562,6979,3224,8970],"delegation":[12562,5979,2224,7970],"delegatorTokens":9999999952290,"jailed":[1000000000000047,null,1000000000000041,null],"status":["unbonding","bonded","unbonding","bonded"]}},{"ix":117,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":9,"t":54,"consumerPower":[null,3580,null,8569],"outstandingDowntime":[false,false,false,false]}},{"ix":118,"action":{"kind":"Deliver","chain":"provider","numPackets":3},"partialState":{"h":13,"t":78,"tokens":[13562,6979,3224,8970],"delegation":[12562,5979,2224,7970],"delegatorTokens":9999999952290,"jailed":[1000000000000047,null,1000000000000041,null],"status":["unbonding","bonded","unbonding","bonded"]}},{"ix":119,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":120,"action":{"kind":"Undelegate","val":2,"amt":4685},"partialState":{"h":13,"t":78,"tokens":[13562,6979,3224,8970],"delegation":[12562,5979,2224,7970],"delegatorTokens":9999999952290}},{"ix":121,"action":{"kind":"Delegate","val":0,"amt":1394},"partialState":{"h":13,"t":78,"tokens":[14956,6979,3224,8970],"delegation":[13956,5979,2224,7970],"delegatorTokens":9999999950896}},{"ix":122,"action":{"kind":"Deliver","chain":"provider","numPackets":3},"partialState":{"h":13,"t":78,"tokens":[14956,6979,3224,8970],"delegation":[13956,5979,2224,7970],"delegatorTokens":9999999950896,"jailed":[1000000000000047,null,1000000000000041,null],"status":["unbonding","bonded","unbonding","bonded"]}},{"ix":123,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":14,"t":84,"tokens":[14956,6979,3224,8970],"delegation":[13956,5979,2224,7970],"delegatorTokens":9999999950896,"jailed":[1000000000000047,null,1000000000000041,null],"status":["unbonding","bonded","unbonding","bonded"]}},{"ix":124,"action":{"kind":"Delegate","val":1,"amt":2885},"partialState":{"h":14,"t":84,"tokens":[14956,9864,3224,8970],"delegation":[13956,8864,2224,7970],"delegatorTokens":9999999948011}},{"ix":125,"action":{"kind":"Undelegate","val":0,"amt":3626},"partialState":{"h":14,"t":84,"tokens":[11330,9864,3224,8970],"delegation":[10330,8864,2224,7970],"delegatorTokens":9999999948011}},{"ix":126,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":15,"t":90,"tokens":[11330,9864,3224,8970],"delegation":[10330,8864,2224,7970],"delegatorTokens":9999999948011,"jailed":[1000000000000047,null,1000000000000041,null],"status":["unbonding","bonded","unbonding","bonded"]}},{"ix":127,"action":{"kind":"Undelegate","val":2,"amt":2722},"partialState":{"h":15,"t":90,"tokens":[11330,9864,3224,8970],"delegation":[10330,8864,2224,7970],"delegatorTokens":9999999948011}},{"ix":128,"action":{"kind":"Undelegate","val":3,"amt":4744},"partialState":{"h":15,"t":90,"tokens":[11330,9864,3224,4226],"delegation":[10330,8864,2224,3226],"delegatorTokens":9999999948011}},{"ix":129,"action":{"kind":"Undelegate","val":3,"amt":3167},"partialState":{"h":15,"t":90,"tokens":[11330,9864,3224,1059],"delegation":[10330,8864,2224,59],"delegatorTokens":9999999948011}},{"ix":130,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":131,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":132,"action":{"kind":"Deliver","chain":"provider","numPackets":4},"partialState":{"h":15,"t":90,"tokens":[11330,9864,3224,1059],"delegation":[10330,8864,2224,59],"delegatorTokens":9999999948011,"jailed":[1000000000000047,null,1000000000000041,null],"status":["unbonding","bonded","unbonding","bonded"]}},{"ix":133,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":10,"t":60,"consumerPower":[null,3580,null,8569],"outstandingDowntime":[false,false,false,false]}},{"ix":134,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":16,"t":96,"tokens":[11330,9864,3224,1059],"delegation":[10330,8864,2224,59],"delegatorTokens":9999999948011,"jailed":[1000000000000047,null,1000000000000041,null],"status":["unbonding","bonded","unbonding","bonded"]}},{"ix":135,"action":{"kind":"Undelegate","val":0,"amt":1778},"partialState":{"h":16,"t":96,"tokens":[9552,9864,3224,1059],"delegation":[8552,8864,2224,59],"delegatorTokens":9999999948011}},{"ix":136,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":137,"action":{"kind":"Undelegate","val":1,"amt":3647},"partialState":{"h":16,"t":96,"tokens":[9552,6217,3224,1059],"delegation":[8552,5217,2224,59],"delegatorTokens":9999999948011}},{"ix":138,"action":{"kind":"Deliver","chain":"consumer","numPackets":3},"partialState":{"h":10,"t":60,"consumerPower":[null,3580,null,8569],"outstandingDowntime":[false,false,false,false]}},{"ix":139,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":140,"action":{"kind":"Deliver","chain":"provider","numPackets":4},"partialState":{"h":16,"t":96,"tokens":[9552,6217,3224,1059],"delegation":[8552,5217,2224,59],"delegatorTokens":9999999948011,"jailed":[1000000000000047,null,1000000000000041,null],"status":["unbonding","bonded","unbonding","bonded"]}},{"ix":141,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":142,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":143,"action":{"kind":"Delegate","val":3,"amt":4882},"partialState":{"h":16,"t":96,"tokens":[9552,6217,3224,5941],"delegation":[8552,5217,2224,4941],"delegatorTokens":9999999943129}},{"ix":144,"action":{"kind":"Deliver","chain":"provider","numPackets":1},"partialState":{"h":16,"t":96,"tokens":[9552,6217,3224,5941],"delegation":[8552,5217,2224,4941],"delegatorTokens":9999999943129,"jailed":[1000000000000047,null,1000000000000041,null],"status":["unbonding","bonded","unbonding","bonded"]}},{"ix":145,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":17,"t":102,"tokens":[9552,6217,3224,5941],"delegation":[8552,5217,2224,4941],"delegatorTokens":9999999943129,"jailed":[1000000000000047,null,1000000000000041,null],"status":["unbonding","bonded","unbonding","bonded"]}},{"ix":146,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":147,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":148,"action":{"kind":"Delegate","val":1,"amt":1419},"partialState":{"h":17,"t":102,"tokens":[9552,7636,3224,5941],"delegation":[8552,6636,2224,4941],"delegatorTokens":9999999941710}},{"ix":149,"action":{"kind":"Delegate","val":2,"amt":3295},"partialState":{"h":17,"t":102,"tokens":[9552,7636,6519,5941],"delegation":[8552,6636,5519,4941],"delegatorTokens":9999999938415}},{"ix":150,"action":{"kind":"Undelegate","val":3,"amt":1096},"partialState":{"h":17,"t":102,"tokens":[9552,7636,6519,4845],"delegation":[8552,6636,5519,3845],"delegatorTokens":9999999938415}},{"ix":151,"action":{"kind":"Undelegate","val":0,"amt":2802},"partialState":{"h":17,"t":102,"tokens":[6750,7636,6519,4845],"delegation":[5750,6636,5519,3845],"delegatorTokens":9999999938415}},{"ix":152,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":153,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":154,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":155,"action":{"kind":"Undelegate","val":1,"amt":1695},"partialState":{"h":17,"t":102,"tokens":[6750,5941,6519,4845],"delegation":[5750,4941,5519,3845],"delegatorTokens":9999999938415}},{"ix":156,"action":{"kind":"Delegate","val":1,"amt":4283},"partialState":{"h":17,"t":102,"tokens":[6750,10224,6519,4845],"delegation":[5750,9224,5519,3845],"delegatorTokens":9999999934132}},{"ix":157,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":158,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":11,"t":66,"consumerPower":[null,9864,null,8970],"outstandingDowntime":[false,false,false,false]}},{"ix":159,"action":{"kind":"Deliver","chain":"provider","numPackets":3},"partialState":{"h":17,"t":102,"tokens":[6750,10224,6519,4845],"delegation":[5750,9224,5519,3845],"delegatorTokens":9999999934132,"jailed":[1000000000000047,null,1000000000000041,null],"status":["unbonding","bonded","unbonding","bonded"]}},{"ix":160,"action":{"kind":"Undelegate","val":0,"amt":3661},"partialState":{"h":17,"t":102,"tokens":[3089,10224,6519,4845],"delegation":[2089,9224,5519,3845],"delegatorTokens":9999999934132}},{"ix":161,"action":{"kind":"Deliver","chain":"consumer","numPackets":3},"partialState":{"h":11,"t":66,"consumerPower":[null,9864,null,8970],"outstandingDowntime":[false,false,false,false]}},{"ix":162,"action":{"kind":"Deliver","chain":"consumer","numPackets":5},"partialState":{"h":11,"t":66,"consumerPower":[null,9864,null,8970],"outstandingDowntime":[false,false,false,false]}},{"ix":163,"action":{"kind":"Delegate","val":2,"amt":2256},"partialState":{"h":17,"t":102,"tokens":[3089,10224,8775,4845],"delegation":[2089,9224,7775,3845],"delegatorTokens":9999999931876}},{"ix":164,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":18,"t":108,"tokens":[3089,10224,8775,4845],"delegation":[2089,9224,7775,3845],"delegatorTokens":9999999931876,"jailed":[1000000000000047,null,1000000000000041,null],"status":["unbonding","bonded","unbonding","bonded"]}},{"ix":165,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":12,"t":72,"consumerPower":[null,9864,null,1059],"outstandingDowntime":[false,false,false,false]}},{"ix":166,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":13,"t":78,"consumerPower":[null,9864,null,1059],"outstandingDowntime":[false,false,false,false]}},{"ix":167,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":14,"t":84,"consumerPower":[null,9864,null,1059],"outstandingDowntime":[false,false,false,false]}},{"ix":168,"action":{"kind":"Undelegate","val":1,"amt":3506},"partialState":{"h":18,"t":108,"tokens":[3089,6718,8775,4845],"delegation":[2089,5718,7775,3845],"delegatorTokens":9999999931876}},{"ix":169,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":15,"t":90,"consumerPower":[null,9864,null,1059],"outstandingDowntime":[false,false,false,false]}},{"ix":170,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":171,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":16,"t":96,"consumerPower":[null,9864,null,1059],"outstandingDowntime":[false,false,false,false]}},{"ix":172,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":17,"t":102,"consumerPower":[null,9864,null,1059],"outstandingDowntime":[false,false,false,false]}},{"ix":173,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":19,"t":114,"tokens":[3089,6718,8775,4845],"delegation":[2089,5718,7775,3845],"delegatorTokens":9999999931876,"jailed":[1000000000000047,null,1000000000000041,null],"status":["unbonding","bonded","unbonding","bonded"]}},{"ix":174,"action":{"kind":"Undelegate","val":1,"amt":1953},"partialState":{"h":19,"t":114,"tokens":[3089,4765,8775,4845],"delegation":[2089,3765,7775,3845],"delegatorTokens":9999999931876}},{"ix":175,"action":{"kind":"Deliver","chain":"consumer","numPackets":3},"partialState":{"h":17,"t":102,"consumerPower":[null,9864,null,1059],"outstandingDowntime":[false,false,false,false]}},{"ix":176,"action":{"kind":"Undelegate","val":2,"amt":4923},"partialState":{"h":19,"t":114,"tokens":[3089,4765,3852,4845],"delegation":[2089,3765,2852,3845],"delegatorTokens":9999999931876}},{"ix":177,"action":{"kind":"Delegate","val":3,"amt":4131},"partialState":{"h":19,"t":114,"tokens":[3089,4765,3852,8976],"delegation":[2089,3765,2852,7976],"delegatorTokens":9999999927745}},{"ix":178,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":20,"t":120,"tokens":[3089,4765,3852,8976],"delegation":[2089,3765,2852,7976],"delegatorTokens":9999999927745,"jailed":[1000000000000047,null,1000000000000041,null],"status":["unbonding","bonded","unbonding","bonded"]}},{"ix":179,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":18,"t":108,"consumerPower":[null,10224,null,4845],"outstandingDowntime":[false,false,false,false]}},{"ix":180,"action":{"kind":"Deliver","chain":"provider","numPackets":6},"partialState":{"h":20,"t":120,"tokens":[3089,4765,3852,8976],"delegation":[2089,3765,2852,7976],"delegatorTokens":9999999927745,"jailed":[1000000000000047,null,1000000000000041,null],"status":["unbonding","bonded","unbonding","bonded"]}},{"ix":181,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":21,"t":126,"tokens":[3089,4765,3852,8976],"delegation":[2089,3765,2852,7976],"delegatorTokens":9999999945927,"jailed":[1000000000000047,null,1000000000000041,null],"status":["unbonding","bonded","unbonding","bonded"]}},{"ix":182,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":22,"t":132,"tokens":[3089,4765,3852,8976],"delegation":[2089,3765,2852,7976],"delegatorTokens":9999999947274,"jailed":[1000000000000047,null,1000000000000041,null],"status":["unbonded","bonded","unbonded","bonded"]}},{"ix":183,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":184,"action":{"kind":"Undelegate","val":0,"amt":1010},"partialState":{"h":22,"t":132,"tokens":[2079,4765,3852,8976],"delegation":[1079,3765,2852,7976],"delegatorTokens":9999999947274}},{"ix":185,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":19,"t":114,"consumerPower":[null,10224,null,4845],"outstandingDowntime":[false,false,false,false]}},{"ix":186,"action":{"kind":"Undelegate","val":1,"amt":1505},"partialState":{"h":22,"t":132,"tokens":[2079,3260,3852,8976],"delegation":[1079,2260,2852,7976],"delegatorTokens":9999999947274}},{"ix":187,"action":{"kind":"Delegate","val":3,"amt":4863},"partialState":{"h":22,"t":132,"tokens":[2079,3260,3852,13839],"delegation":[1079,2260,2852,12839],"delegatorTokens":9999999942411}},{"ix":188,"action":{"kind":"Undelegate","val":1,"amt":3702},"partialState":{"h":22,"t":132,"tokens":[2079,3260,3852,13839],"delegation":[1079,2260,2852,12839],"delegatorTokens":9999999942411}},{"ix":189,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":190,"action":{"kind":"Undelegate","val":0,"amt":1004},"partialState":{"h":22,"t":132,"tokens":[1075,3260,3852,13839],"delegation":[75,2260,2852,12839],"delegatorTokens":9999999942411}},{"ix":191,"action":{"kind":"Undelegate","val":2,"amt":2232},"partialState":{"h":22,"t":132,"tokens":[1075,3260,1620,13839],"delegation":[75,2260,620,12839],"delegatorTokens":9999999942411}},{"ix":192,"action":{"kind":"Delegate","val":3,"amt":2373},"partialState":{"h":22,"t":132,"tokens":[1075,3260,1620,16212],"delegation":[75,2260,620,15212],"delegatorTokens":9999999940038}},{"ix":193,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":20,"t":120,"consumerPower":[null,10224,null,4845],"outstandingDowntime":[false,false,false,false]}},{"ix":194,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":195,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":196,"action":{"kind":"Deliver","chain":"consumer","numPackets":1},"partialState":{"h":20,"t":120,"consumerPower":[null,10224,null,4845],"outstandingDowntime":[false,false,false,false]}},{"ix":197,"action":{"kind":"Undelegate","val":3,"amt":3593},"partialState":{"h":22,"t":132,"tokens":[1075,3260,1620,12619],"delegation":[75,2260,620,11619],"delegatorTokens":9999999940038}},{"ix":198,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":199,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":23,"t":138,"tokens":[1075,3260,1620,12619],"delegation":[75,2260,620,11619],"delegatorTokens":9999999940038,"jailed":[1000000000000047,null,1000000000000041,null],"status":["unbonded","bonded","unbonded","bonded"]}}],"events":["insufficient_shares","send_downtime_slash_request","more_than_one_third_val_power_change","send_vsc_without_downtime_ack","send_double_sign_slash_request","downtime_slash_request_outstanding","send_downtime_slash_request","downtime_slash_request_outstanding","downtime_slash_request_outstanding","insufficient_shares","more_than_one_third_val_power_change","send_vsc_without_downtime_ack","insufficient_shares","downtime_slash_request_outstanding","consumer_del_val","consumer_add_val","rebond_unval","send_vsc_without_downtime_ack","insufficient_shares","receive_downtime_slash_request","jail","send_vsc_with_downtime_ack","insufficient_shares","insufficient_shares","downtime_slash_request_outstanding","insufficient_shares","receive_double_sign_slash_request","insufficient_shares","rebond_unval","receive_downtime_slash_request","jail","send_vsc_with_downtime_ack","insufficient_shares","insufficient_shares","insufficient_shares","downtime_slash_request_outstanding","receive_downtime_slash_ack","more_than_one_third_val_power_change","rebond_unval","send_vsc_without_downtime_ack","send_double_sign_slash_request","consumer_update_val","consumer_update_val","consumer_del_val","receive_downtime_slash_ack","consumer_del_val","consumer_add_val","consumer_del_val","consumer_add_val","insufficient_shares","send_vsc_without_downtime_ack","receive_double_sign_slash_request","send_vsc_without_downtime_ack","insufficient_shares","send_vsc_without_downtime_ack","insufficient_shares","some_undels_expired_but_not_completed","send_vsc_without_downtime_ack","some_undels_expired_but_not_completed","send_vsc_without_downtime_ack","consumer_update_val","consumer_update_val","send_vsc_without_downtime_ack","consumer_send_maturation","consumer_update_val","consumer_send_maturation","consumer_send_maturation","consumer_send_maturation","consumer_send_maturation","consumer_send_maturation","some_undels_expired_but_not_completed","send_vsc_without_downtime_ack","send_vsc_without_downtime_ack","consumer_update_val","consumer_update_val","some_undels_expired_but_not_completed","complete_undel_immediate","complete_undel_immediate","complete_undel_immediate","complete_undel_immediate","complete_undel_immediate","complete_undel_immediate","set_unval_hold_false","set_undel_hold_false","set_unval_hold_false","complete_unval_in_endblock","complete_unval_in_endblock","complete_undel_in_endblock","insufficient_shares","consumer_send_maturation","consumer_send_maturation","consumer_send_maturation","send_vsc_without_downtime_ack"]},{"meta":{"commit":"7ffd0c04e4205cbc9caf212abfe6c59ee43153bf"},"constants":{"P":"provider","C":"consumer","UNBONDING_SECONDS_P":70,"UNBONDING_SECONDS_C":50,"TRUSTING_SECONDS":49,"NUM_VALIDATORS":4,"MAX_VALIDATORS":2,"SLASH_DOUBLESIGN":0,"SLASH_DOWNTIME":0,"JAIL_SECONDS":999999999999999,"BLOCK_SECONDS":6,"INITIAL_DELEGATOR_TOKENS":10000000000000,"DELEGATE_AMT_MIN":1000,"DELEGATE_AMT_MAX":5000,"UNDELEGATE_AMT_MIN":1000,"UNDELEGATE_AMT_MAX":5000,"ISDOWNTIME_PROBABILITY":0.5,"MAX_NUM_PACKETS_FOR_DELIVER":6},"actions":[{"ix":0,"action":{"kind":"ConsumerSlash","val":3,"infractionHeight":0,"isDowntime":true},"partialState":{"h":1,"t":6,"outstandingDowntime":[false,false,false,true]}},{"ix":1,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":2,"action":{"kind":"Undelegate","val":1,"amt":3677},"partialState":{"h":1,"t":6,"tokens":[5000,4000,3000,2000],"delegation":[4000,3000,2000,1000],"delegatorTokens":10000000000000}},{"ix":3,"action":{"kind":"Deliver","chain":"provider","numPackets":3},"partialState":{"h":1,"t":6,"tokens":[5000,4000,3000,2000],"delegation":[4000,3000,2000,1000],"delegatorTokens":10000000000000,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":4,"action":{"kind":"ConsumerSlash","val":1,"infractionHeight":0,"isDowntime":true},"partialState":{"h":1,"t":6,"outstandingDowntime":[false,true,false,true]}},{"ix":5,"action":{"kind":"Undelegate","val":1,"amt":2695},"partialState":{"h":1,"t":6,"tokens":[5000,1305,3000,2000],"delegation":[4000,305,2000,1000],"delegatorTokens":10000000000000}},{"ix":6,"action":{"kind":"ConsumerSlash","val":0,"infractionHeight":0,"isDowntime":false},"partialState":{"h":1,"t":6,"outstandingDowntime":[false,true,false,true]}},{"ix":7,"action":{"kind":"Undelegate","val":2,"amt":4834},"partialState":{"h":1,"t":6,"tokens":[5000,1305,3000,2000],"delegation":[4000,305,2000,1000],"delegatorTokens":10000000000000}},{"ix":8,"action":{"kind":"Undelegate","val":3,"amt":2526},"partialState":{"h":1,"t":6,"tokens":[5000,1305,3000,2000],"delegation":[4000,305,2000,1000],"delegatorTokens":10000000000000}},{"ix":9,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":2,"t":12,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,true,false,true]}},{"ix":10,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":2,"t":12,"tokens":[5000,1305,3000,2000],"delegation":[4000,305,2000,1000],"delegatorTokens":10000000000000,"jailed":[null,null,null,null],"status":["bonded","unbonding","bonded","unbonded"]}},{"ix":11,"action":{"kind":"Deliver","chain":"consumer","numPackets":1},"partialState":{"h":2,"t":12,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,true,false,true]}},{"ix":12,"action":{"kind":"Delegate","val":2,"amt":2385},"partialState":{"h":2,"t":12,"tokens":[5000,1305,5385,2000],"delegation":[4000,305,4385,1000],"delegatorTokens":9999999997615}},{"ix":13,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":3,"t":18,"tokens":[5000,1305,5385,2000],"delegation":[4000,305,4385,1000],"delegatorTokens":9999999997615,"jailed":[null,null,null,null],"status":["bonded","unbonding","bonded","unbonded"]}},{"ix":14,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":4,"t":24,"tokens":[5000,1305,5385,2000],"delegation":[4000,305,4385,1000],"delegatorTokens":9999999997615,"jailed":[null,null,null,null],"status":["bonded","unbonding","bonded","unbonded"]}},{"ix":15,"action":{"kind":"Delegate","val":0,"amt":4313},"partialState":{"h":4,"t":24,"tokens":[9313,1305,5385,2000],"delegation":[8313,305,4385,1000],"delegatorTokens":9999999993302}},{"ix":16,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":17,"action":{"kind":"Deliver","chain":"provider","numPackets":3},"partialState":{"h":4,"t":24,"tokens":[9313,1305,5385,2000],"delegation":[8313,305,4385,1000],"delegatorTokens":9999999993302,"jailed":[null,null,null,null],"status":["bonded","unbonding","bonded","unbonded"]}},{"ix":18,"action":{"kind":"Undelegate","val":2,"amt":1909},"partialState":{"h":4,"t":24,"tokens":[9313,1305,3476,2000],"delegation":[8313,305,2476,1000],"delegatorTokens":9999999993302}},{"ix":19,"action":{"kind":"Deliver","chain":"provider","numPackets":6},"partialState":{"h":4,"t":24,"tokens":[9313,1305,3476,2000],"delegation":[8313,305,2476,1000],"delegatorTokens":9999999993302,"jailed":[null,null,null,null],"status":["bonded","unbonding","bonded","unbonded"]}},{"ix":20,"action":{"kind":"Delegate","val":2,"amt":3084},"partialState":{"h":4,"t":24,"tokens":[9313,1305,6560,2000],"delegation":[8313,305,5560,1000],"delegatorTokens":9999999990218}},{"ix":21,"action":{"kind":"Deliver","chain":"provider","numPackets":6},"partialState":{"h":4,"t":24,"tokens":[9313,1305,6560,2000],"delegation":[8313,305,5560,1000],"delegatorTokens":9999999990218,"jailed":[null,null,null,null],"status":["bonded","unbonding","bonded","unbonded"]}},{"ix":22,"action":{"kind":"Deliver","chain":"consumer","numPackets":3},"partialState":{"h":2,"t":12,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,true,false,true]}},{"ix":23,"action":{"kind":"Delegate","val":3,"amt":3478},"partialState":{"h":4,"t":24,"tokens":[9313,1305,6560,5478],"delegation":[8313,305,5560,4478],"delegatorTokens":9999999986740}},{"ix":24,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":25,"action":{"kind":"Delegate","val":3,"amt":2534},"partialState":{"h":4,"t":24,"tokens":[9313,1305,6560,8012],"delegation":[8313,305,5560,7012],"delegatorTokens":9999999984206}},{"ix":26,"action":{"kind":"Delegate","val":3,"amt":1480},"partialState":{"h":4,"t":24,"tokens":[9313,1305,6560,9492],"delegation":[8313,305,5560,8492],"delegatorTokens":9999999982726}},{"ix":27,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":5,"t":30,"tokens":[9313,1305,6560,9492],"delegation":[8313,305,5560,8492],"delegatorTokens":9999999982726,"jailed":[null,null,null,null],"status":["bonded","unbonding","unbonding","bonded"]}},{"ix":28,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":29,"action":{"kind":"Deliver","chain":"consumer","numPackets":3},"partialState":{"h":2,"t":12,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,true,false,true]}},{"ix":30,"action":{"kind":"Undelegate","val":1,"amt":1558},"partialState":{"h":5,"t":30,"tokens":[9313,1305,6560,9492],"delegation":[8313,305,5560,8492],"delegatorTokens":9999999982726}},{"ix":31,"action":{"kind":"Deliver","chain":"consumer","numPackets":1},"partialState":{"h":2,"t":12,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,true,false,true]}},{"ix":32,"action":{"kind":"Undelegate","val":0,"amt":2523},"partialState":{"h":5,"t":30,"tokens":[6790,1305,6560,9492],"delegation":[5790,305,5560,8492],"delegatorTokens":9999999982726}},{"ix":33,"action":{"kind":"Deliver","chain":"provider","numPackets":1},"partialState":{"h":5,"t":30,"tokens":[6790,1305,6560,9492],"delegation":[5790,305,5560,8492],"delegatorTokens":9999999982726,"jailed":[null,null,null,null],"status":["bonded","unbonding","unbonding","bonded"]}},{"ix":34,"action":{"kind":"Deliver","chain":"consumer","numPackets":4},"partialState":{"h":2,"t":12,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,true,false,true]}},{"ix":35,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":3,"t":18,"consumerPower":[5000,null,5385,null],"outstandingDowntime":[false,true,false,true]}},{"ix":36,"action":{"kind":"Deliver","chain":"consumer","numPackets":3},"partialState":{"h":3,"t":18,"consumerPower":[5000,null,5385,null],"outstandingDowntime":[false,true,false,true]}},{"ix":37,"action":{"kind":"Deliver","chain":"consumer","numPackets":5},"partialState":{"h":3,"t":18,"consumerPower":[5000,null,5385,null],"outstandingDowntime":[false,true,false,true]}},{"ix":38,"action":{"kind":"Undelegate","val":1,"amt":3539},"partialState":{"h":5,"t":30,"tokens":[6790,1305,6560,9492],"delegation":[5790,305,5560,8492],"delegatorTokens":9999999982726}},{"ix":39,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":40,"action":{"kind":"Deliver","chain":"provider","numPackets":1},"partialState":{"h":5,"t":30,"tokens":[6790,1305,6560,9492],"delegation":[5790,305,5560,8492],"delegatorTokens":9999999982726,"jailed":[null,null,null,null],"status":["bonded","unbonding","unbonding","bonded"]}},{"ix":41,"action":{"kind":"Undelegate","val":3,"amt":4688},"partialState":{"h":5,"t":30,"tokens":[6790,1305,6560,4804],"delegation":[5790,305,5560,3804],"delegatorTokens":9999999982726}},{"ix":42,"action":{"kind":"Delegate","val":2,"amt":4056},"partialState":{"h":5,"t":30,"tokens":[6790,1305,10616,4804],"delegation":[5790,305,9616,3804],"delegatorTokens":9999999978670}},{"ix":43,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":44,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":6,"t":36,"tokens":[6790,1305,10616,4804],"delegation":[5790,305,9616,3804],"delegatorTokens":9999999978670,"jailed":[null,null,null,1000000000000029],"status":["bonded","unbonding","bonded","unbonding"]}},{"ix":45,"action":{"kind":"Deliver","chain":"provider","numPackets":3},"partialState":{"h":6,"t":36,"tokens":[6790,1305,10616,4804],"delegation":[5790,305,9616,3804],"delegatorTokens":9999999978670,"jailed":[null,null,null,1000000000000029],"status":["bonded","unbonding","bonded","unbonding"]}},{"ix":46,"action":{"kind":"Delegate","val":1,"amt":1436},"partialState":{"h":6,"t":36,"tokens":[6790,2741,10616,4804],"delegation":[5790,1741,9616,3804],"delegatorTokens":9999999977234}},{"ix":47,"action":{"kind":"Undelegate","val":2,"amt":4604},"partialState":{"h":6,"t":36,"tokens":[6790,2741,6012,4804],"delegation":[5790,1741,5012,3804],"delegatorTokens":9999999977234}},{"ix":48,"action":{"kind":"Undelegate","val":3,"amt":2918},"partialState":{"h":6,"t":36,"tokens":[6790,2741,6012,1886],"delegation":[5790,1741,5012,886],"delegatorTokens":9999999977234}},{"ix":49,"action":{"kind":"Undelegate","val":3,"amt":1947},"partialState":{"h":6,"t":36,"tokens":[6790,2741,6012,1886],"delegation":[5790,1741,5012,886],"delegatorTokens":9999999977234}},{"ix":50,"action":{"kind":"Delegate","val":1,"amt":3387},"partialState":{"h":6,"t":36,"tokens":[6790,6128,6012,1886],"delegation":[5790,5128,5012,886],"delegatorTokens":9999999973847}},{"ix":51,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":52,"action":{"kind":"Delegate","val":2,"amt":3058},"partialState":{"h":6,"t":36,"tokens":[6790,6128,9070,1886],"delegation":[5790,5128,8070,886],"delegatorTokens":9999999970789}},{"ix":53,"action":{"kind":"Delegate","val":1,"amt":1420},"partialState":{"h":6,"t":36,"tokens":[6790,7548,9070,1886],"delegation":[5790,6548,8070,886],"delegatorTokens":9999999969369}},{"ix":54,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":4,"t":24,"consumerPower":[5000,null,5385,null],"outstandingDowntime":[false,true,false,true]}},{"ix":55,"action":{"kind":"Undelegate","val":2,"amt":3762},"partialState":{"h":6,"t":36,"tokens":[6790,7548,5308,1886],"delegation":[5790,6548,4308,886],"delegatorTokens":9999999969369}},{"ix":56,"action":{"kind":"Deliver","chain":"consumer","numPackets":4},"partialState":{"h":4,"t":24,"consumerPower":[5000,null,5385,null],"outstandingDowntime":[false,true,false,true]}},{"ix":57,"action":{"kind":"Deliver","chain":"consumer","numPackets":4},"partialState":{"h":4,"t":24,"consumerPower":[5000,null,5385,null],"outstandingDowntime":[false,true,false,true]}},{"ix":58,"action":{"kind":"Undelegate","val":1,"amt":2938},"partialState":{"h":6,"t":36,"tokens":[6790,4610,5308,1886],"delegation":[5790,3610,4308,886],"delegatorTokens":9999999969369}},{"ix":59,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":60,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":61,"action":{"kind":"Delegate","val":0,"amt":4269},"partialState":{"h":6,"t":36,"tokens":[11059,4610,5308,1886],"delegation":[10059,3610,4308,886],"delegatorTokens":9999999965100}},{"ix":62,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":7,"t":42,"tokens":[11059,4610,5308,1886],"delegation":[10059,3610,4308,886],"delegatorTokens":9999999965100,"jailed":[null,1000000000000035,null,1000000000000029],"status":["bonded","unbonding","bonded","unbonding"]}},{"ix":63,"action":{"kind":"Delegate","val":3,"amt":2863},"partialState":{"h":7,"t":42,"tokens":[11059,4610,5308,4749],"delegation":[10059,3610,4308,3749],"delegatorTokens":9999999962237}},{"ix":64,"action":{"kind":"Deliver","chain":"consumer","numPackets":2},"partialState":{"h":4,"t":24,"consumerPower":[5000,null,5385,null],"outstandingDowntime":[false,true,false,false]}},{"ix":65,"action":{"kind":"Deliver","chain":"consumer","numPackets":4},"partialState":{"h":4,"t":24,"consumerPower":[5000,null,5385,null],"outstandingDowntime":[false,true,false,false]}},{"ix":66,"action":{"kind":"Delegate","val":1,"amt":3838},"partialState":{"h":7,"t":42,"tokens":[11059,8448,5308,4749],"delegation":[10059,7448,4308,3749],"delegatorTokens":9999999958399}},{"ix":67,"action":{"kind":"Undelegate","val":0,"amt":4077},"partialState":{"h":7,"t":42,"tokens":[6982,8448,5308,4749],"delegation":[5982,7448,4308,3749],"delegatorTokens":9999999958399}},{"ix":68,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":8,"t":48,"tokens":[6982,8448,5308,4749],"delegation":[5982,7448,4308,3749],"delegatorTokens":9999999958399,"jailed":[null,1000000000000035,null,1000000000000029],"status":["bonded","unbonding","bonded","unbonding"]}},{"ix":69,"action":{"kind":"Delegate","val":2,"amt":3415},"partialState":{"h":8,"t":48,"tokens":[6982,8448,8723,4749],"delegation":[5982,7448,7723,3749],"delegatorTokens":9999999954984}},{"ix":70,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":5,"t":30,"consumerPower":[6790,null,10616,null],"outstandingDowntime":[false,true,false,false]}},{"ix":71,"action":{"kind":"Deliver","chain":"consumer","numPackets":4},"partialState":{"h":5,"t":30,"consumerPower":[6790,null,10616,null],"outstandingDowntime":[false,false,false,false]}},{"ix":72,"action":{"kind":"Undelegate","val":3,"amt":3887},"partialState":{"h":8,"t":48,"tokens":[6982,8448,8723,4749],"delegation":[5982,7448,7723,3749],"delegatorTokens":9999999954984}},{"ix":73,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":6,"t":36,"consumerPower":[11059,null,5308,null],"outstandingDowntime":[false,false,false,false]}},{"ix":74,"action":{"kind":"Deliver","chain":"provider","numPackets":6},"partialState":{"h":8,"t":48,"tokens":[6982,8448,8723,4749],"delegation":[5982,7448,7723,3749],"delegatorTokens":9999999954984,"jailed":[null,1000000000000035,null,1000000000000029],"status":["bonded","unbonding","bonded","unbonding"]}},{"ix":75,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":76,"action":{"kind":"Undelegate","val":1,"amt":4956},"partialState":{"h":8,"t":48,"tokens":[6982,3492,8723,4749],"delegation":[5982,2492,7723,3749],"delegatorTokens":9999999954984}},{"ix":77,"action":{"kind":"Deliver","chain":"consumer","numPackets":5},"partialState":{"h":6,"t":36,"consumerPower":[11059,null,5308,null],"outstandingDowntime":[false,false,false,false]}},{"ix":78,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":7,"t":42,"consumerPower":[11059,null,5308,null],"outstandingDowntime":[false,false,false,false]}},{"ix":79,"action":{"kind":"Delegate","val":3,"amt":3050},"partialState":{"h":8,"t":48,"tokens":[6982,3492,8723,7799],"delegation":[5982,2492,7723,6799],"delegatorTokens":9999999951934}},{"ix":80,"action":{"kind":"Undelegate","val":0,"amt":4933},"partialState":{"h":8,"t":48,"tokens":[2049,3492,8723,7799],"delegation":[1049,2492,7723,6799],"delegatorTokens":9999999951934}},{"ix":81,"action":{"kind":"Delegate","val":0,"amt":2521},"partialState":{"h":8,"t":48,"tokens":[4570,3492,8723,7799],"delegation":[3570,2492,7723,6799],"delegatorTokens":9999999949413}},{"ix":82,"action":{"kind":"Delegate","val":2,"amt":1533},"partialState":{"h":8,"t":48,"tokens":[4570,3492,10256,7799],"delegation":[3570,2492,9256,6799],"delegatorTokens":9999999947880}},{"ix":83,"action":{"kind":"Deliver","chain":"consumer","numPackets":2},"partialState":{"h":7,"t":42,"consumerPower":[11059,null,5308,null],"outstandingDowntime":[false,false,false,false]}},{"ix":84,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":85,"action":{"kind":"Delegate","val":0,"amt":1319},"partialState":{"h":8,"t":48,"tokens":[5889,3492,10256,7799],"delegation":[4889,2492,9256,6799],"delegatorTokens":9999999946561}},{"ix":86,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":9,"t":54,"tokens":[5889,3492,10256,7799],"delegation":[4889,2492,9256,6799],"delegatorTokens":9999999946561,"jailed":[null,1000000000000035,null,1000000000000029],"status":["bonded","unbonding","bonded","unbonding"]}},{"ix":87,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":88,"action":{"kind":"Undelegate","val":0,"amt":3673},"partialState":{"h":9,"t":54,"tokens":[2216,3492,10256,7799],"delegation":[1216,2492,9256,6799],"delegatorTokens":9999999946561}},{"ix":89,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":8,"t":48,"consumerPower":[11059,null,5308,null],"outstandingDowntime":[false,false,false,false]}},{"ix":90,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":10,"t":60,"tokens":[2216,3492,10256,7799],"delegation":[1216,2492,9256,6799],"delegatorTokens":9999999946561,"jailed":[null,1000000000000035,null,1000000000000029],"status":["bonded","unbonding","bonded","unbonding"]}},{"ix":91,"action":{"kind":"Deliver","chain":"consumer","numPackets":3},"partialState":{"h":8,"t":48,"consumerPower":[11059,null,5308,null],"outstandingDowntime":[false,false,false,false]}},{"ix":92,"action":{"kind":"Deliver","chain":"consumer","numPackets":3},"partialState":{"h":8,"t":48,"consumerPower":[11059,null,5308,null],"outstandingDowntime":[false,false,false,false]}},{"ix":93,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":11,"t":66,"tokens":[2216,3492,10256,7799],"delegation":[1216,2492,9256,6799],"delegatorTokens":9999999946561,"jailed":[null,1000000000000035,null,1000000000000029],"status":["bonded","unbonding","bonded","unbonding"]}},{"ix":94,"action":{"kind":"Deliver","chain":"provider","numPackets":1},"partialState":{"h":11,"t":66,"tokens":[2216,3492,10256,7799],"delegation":[1216,2492,9256,6799],"delegatorTokens":9999999946561,"jailed":[null,1000000000000035,null,1000000000000029],"status":["bonded","unbonding","bonded","unbonding"]}},{"ix":95,"action":{"kind":"Deliver","chain":"provider","numPackets":5},"partialState":{"h":11,"t":66,"tokens":[2216,3492,10256,7799],"delegation":[1216,2492,9256,6799],"delegatorTokens":9999999946561,"jailed":[null,1000000000000035,null,1000000000000029],"status":["bonded","unbonding","bonded","unbonding"]}},{"ix":96,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":9,"t":54,"consumerPower":[5889,null,10256,null],"outstandingDowntime":[false,false,false,false]}},{"ix":97,"action":{"kind":"Deliver","chain":"consumer","numPackets":6},"partialState":{"h":9,"t":54,"consumerPower":[5889,null,10256,null],"outstandingDowntime":[false,false,false,false]}},{"ix":98,"action":{"kind":"Delegate","val":3,"amt":3547},"partialState":{"h":11,"t":66,"tokens":[2216,3492,10256,11346],"delegation":[1216,2492,9256,10346],"delegatorTokens":9999999943014}},{"ix":99,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":10,"t":60,"consumerPower":[2216,null,10256,null],"outstandingDowntime":[false,false,false,false]}},{"ix":100,"action":{"kind":"Deliver","chain":"consumer","numPackets":6},"partialState":{"h":10,"t":60,"consumerPower":[2216,null,10256,null],"outstandingDowntime":[false,false,false,false]}},{"ix":101,"action":{"kind":"Deliver","chain":"consumer","numPackets":4},"partialState":{"h":10,"t":60,"consumerPower":[2216,null,10256,null],"outstandingDowntime":[false,false,false,false]}},{"ix":102,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":11,"t":66,"consumerPower":[2216,null,10256,null],"outstandingDowntime":[false,false,false,false]}},{"ix":103,"action":{"kind":"Deliver","chain":"consumer","numPackets":6},"partialState":{"h":11,"t":66,"consumerPower":[2216,null,10256,null],"outstandingDowntime":[false,false,false,false]}},{"ix":104,"action":{"kind":"Deliver","chain":"consumer","numPackets":2},"partialState":{"h":11,"t":66,"consumerPower":[2216,null,10256,null],"outstandingDowntime":[false,false,false,false]}},{"ix":105,"action":{"kind":"Undelegate","val":0,"amt":2578},"partialState":{"h":11,"t":66,"tokens":[2216,3492,10256,11346],"delegation":[1216,2492,9256,10346],"delegatorTokens":9999999943014}},{"ix":106,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":12,"t":72,"tokens":[2216,3492,10256,11346],"delegation":[1216,2492,9256,10346],"delegatorTokens":9999999943014,"jailed":[null,1000000000000035,null,1000000000000029],"status":["bonded","unbonding","bonded","unbonding"]}},{"ix":107,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":12,"t":72,"consumerPower":[2216,null,10256,null],"outstandingDowntime":[false,false,false,false]}},{"ix":108,"action":{"kind":"Delegate","val":1,"amt":4314},"partialState":{"h":12,"t":72,"tokens":[2216,7806,10256,11346],"delegation":[1216,6806,9256,10346],"delegatorTokens":9999999938700}},{"ix":109,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":110,"action":{"kind":"Deliver","chain":"provider","numPackets":3},"partialState":{"h":12,"t":72,"tokens":[2216,7806,10256,11346],"delegation":[1216,6806,9256,10346],"delegatorTokens":9999999938700,"jailed":[null,1000000000000035,null,1000000000000029],"status":["bonded","unbonding","bonded","unbonding"]}},{"ix":111,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":112,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":113,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":114,"action":{"kind":"Delegate","val":1,"amt":2261},"partialState":{"h":12,"t":72,"tokens":[2216,10067,10256,11346],"delegation":[1216,9067,9256,10346],"delegatorTokens":9999999936439}},{"ix":115,"action":{"kind":"Deliver","chain":"consumer","numPackets":5},"partialState":{"h":12,"t":72,"consumerPower":[2216,null,10256,null],"outstandingDowntime":[false,false,false,false]}},{"ix":116,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":117,"action":{"kind":"Deliver","chain":"consumer","numPackets":5},"partialState":{"h":12,"t":72,"consumerPower":[2216,null,10256,null],"outstandingDowntime":[false,false,false,false]}},{"ix":118,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":119,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":13,"t":78,"consumerPower":[2216,null,10256,null],"outstandingDowntime":[false,false,false,false]}},{"ix":120,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":14,"t":84,"consumerPower":[2216,null,10256,null],"outstandingDowntime":[false,false,false,false]}},{"ix":121,"action":{"kind":"Deliver","chain":"provider","numPackets":6},"partialState":{"h":12,"t":72,"tokens":[2216,10067,10256,11346],"delegation":[1216,9067,9256,10346],"delegatorTokens":9999999936439,"jailed":[null,1000000000000035,null,1000000000000029],"status":["bonded","unbonding","bonded","unbonding"]}},{"ix":122,"action":{"kind":"Undelegate","val":0,"amt":3631},"partialState":{"h":12,"t":72,"tokens":[2216,10067,10256,11346],"delegation":[1216,9067,9256,10346],"delegatorTokens":9999999936439}},{"ix":123,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":13,"t":78,"tokens":[2216,10067,10256,11346],"delegation":[1216,9067,9256,10346],"delegatorTokens":9999999936439,"jailed":[null,1000000000000035,null,1000000000000029],"status":["bonded","unbonding","bonded","unbonding"]}},{"ix":124,"action":{"kind":"Undelegate","val":3,"amt":4134},"partialState":{"h":13,"t":78,"tokens":[2216,10067,10256,7212],"delegation":[1216,9067,9256,6212],"delegatorTokens":9999999936439}},{"ix":125,"action":{"kind":"Delegate","val":2,"amt":3005},"partialState":{"h":13,"t":78,"tokens":[2216,10067,13261,7212],"delegation":[1216,9067,12261,6212],"delegatorTokens":9999999933434}},{"ix":126,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":127,"action":{"kind":"Deliver","chain":"provider","numPackets":1},"partialState":{"h":13,"t":78,"tokens":[2216,10067,13261,7212],"delegation":[1216,9067,12261,6212],"delegatorTokens":9999999933434,"jailed":[null,1000000000000035,null,1000000000000029],"status":["bonded","unbonding","bonded","unbonding"]}},{"ix":128,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":129,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":15,"t":90,"consumerPower":[2216,null,10256,null],"outstandingDowntime":[false,false,false,false]}},{"ix":130,"action":{"kind":"Undelegate","val":3,"amt":4479},"partialState":{"h":13,"t":78,"tokens":[2216,10067,13261,2733],"delegation":[1216,9067,12261,1733],"delegatorTokens":9999999933434}},{"ix":131,"action":{"kind":"Undelegate","val":1,"amt":1581},"partialState":{"h":13,"t":78,"tokens":[2216,8486,13261,2733],"delegation":[1216,7486,12261,1733],"delegatorTokens":9999999933434}},{"ix":132,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":133,"action":{"kind":"Deliver","chain":"provider","numPackets":4},"partialState":{"h":13,"t":78,"tokens":[2216,8486,13261,2733],"delegation":[1216,7486,12261,1733],"delegatorTokens":9999999933434,"jailed":[null,1000000000000035,null,1000000000000029],"status":["bonded","unbonding","bonded","unbonding"]}},{"ix":134,"action":{"kind":"Deliver","chain":"provider","numPackets":5},"partialState":{"h":13,"t":78,"tokens":[2216,8486,13261,2733],"delegation":[1216,7486,12261,1733],"delegatorTokens":9999999933434,"jailed":[null,1000000000000035,null,1000000000000029],"status":["bonded","unbonding","bonded","unbonding"]}},{"ix":135,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":16,"t":96,"consumerPower":[2216,null,10256,null],"outstandingDowntime":[false,false,false,false]}},{"ix":136,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":137,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":138,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":14,"t":84,"tokens":[2216,8486,13261,2733],"delegation":[1216,7486,12261,1733],"delegatorTokens":9999999936129,"jailed":[null,1000000000000035,null,1000000000000029],"status":["bonded","unbonded","bonded","unbonding"]}},{"ix":139,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":140,"action":{"kind":"Deliver","chain":"consumer","numPackets":4},"partialState":{"h":16,"t":96,"consumerPower":[2216,null,10256,null],"outstandingDowntime":[false,false,false,false]}},{"ix":141,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":17,"t":102,"consumerPower":[2216,null,10256,null],"outstandingDowntime":[false,false,false,false]}},{"ix":142,"action":{"kind":"Undelegate","val":2,"amt":4945},"partialState":{"h":14,"t":84,"tokens":[2216,8486,8316,2733],"delegation":[1216,7486,7316,1733],"delegatorTokens":9999999936129}},{"ix":143,"action":{"kind":"Undelegate","val":2,"amt":4159},"partialState":{"h":14,"t":84,"tokens":[2216,8486,4157,2733],"delegation":[1216,7486,3157,1733],"delegatorTokens":9999999936129}},{"ix":144,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":145,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":18,"t":108,"consumerPower":[2216,null,10256,null],"outstandingDowntime":[false,false,false,false]}},{"ix":146,"action":{"kind":"Deliver","chain":"consumer","numPackets":2},"partialState":{"h":18,"t":108,"consumerPower":[2216,null,10256,null],"outstandingDowntime":[false,false,false,false]}},{"ix":147,"action":{"kind":"Deliver","chain":"provider","numPackets":6},"partialState":{"h":14,"t":84,"tokens":[2216,8486,4157,2733],"delegation":[1216,7486,3157,1733],"delegatorTokens":9999999936129,"jailed":[null,1000000000000035,null,1000000000000029],"status":["bonded","unbonded","bonded","unbonding"]}},{"ix":148,"action":{"kind":"Undelegate","val":3,"amt":4137},"partialState":{"h":14,"t":84,"tokens":[2216,8486,4157,2733],"delegation":[1216,7486,3157,1733],"delegatorTokens":9999999936129}},{"ix":149,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":19,"t":114,"consumerPower":[2216,null,10256,null],"outstandingDowntime":[false,false,false,false]}},{"ix":150,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":15,"t":90,"tokens":[2216,8486,4157,2733],"delegation":[1216,7486,3157,1733],"delegatorTokens":9999999936129,"jailed":[null,1000000000000035,null,1000000000000029],"status":["bonded","unbonded","bonded","unbonding"]}},{"ix":151,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":16,"t":96,"tokens":[2216,8486,4157,2733],"delegation":[1216,7486,3157,1733],"delegatorTokens":9999999936129,"jailed":[null,1000000000000035,null,1000000000000029],"status":["bonded","unbonded","bonded","unbonding"]}},{"ix":152,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":153,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":154,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":17,"t":102,"tokens":[2216,8486,4157,2733],"delegation":[1216,7486,3157,1733],"delegatorTokens":9999999938038,"jailed":[null,1000000000000035,null,1000000000000029],"status":["bonded","unbonded","bonded","unbonding"]}},{"ix":155,"action":{"kind":"Undelegate","val":1,"amt":2190},"partialState":{"h":17,"t":102,"tokens":[2216,6296,4157,2733],"delegation":[1216,5296,3157,1733],"delegatorTokens":9999999938038}},{"ix":156,"action":{"kind":"Deliver","chain":"provider","numPackets":4},"partialState":{"h":17,"t":102,"tokens":[2216,6296,4157,2733],"delegation":[1216,5296,3157,1733],"delegatorTokens":9999999938038,"jailed":[null,1000000000000035,null,1000000000000029],"status":["bonded","unbonded","bonded","unbonding"]}},{"ix":157,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":20,"t":120,"consumerPower":[2216,null,10256,null],"outstandingDowntime":[false,false,false,false]}},{"ix":158,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":159,"action":{"kind":"Deliver","chain":"provider","numPackets":6},"partialState":{"h":17,"t":102,"tokens":[2216,6296,4157,2733],"delegation":[1216,5296,3157,1733],"delegatorTokens":9999999938038,"jailed":[null,1000000000000035,null,1000000000000029],"status":["bonded","unbonded","bonded","unbonding"]}},{"ix":160,"action":{"kind":"Undelegate","val":2,"amt":1858},"partialState":{"h":17,"t":102,"tokens":[2216,6296,2299,2733],"delegation":[1216,5296,1299,1733],"delegatorTokens":9999999938038}},{"ix":161,"action":{"kind":"Delegate","val":1,"amt":2169},"partialState":{"h":17,"t":102,"tokens":[2216,8465,2299,2733],"delegation":[1216,7465,1299,1733],"delegatorTokens":9999999935869}},{"ix":162,"action":{"kind":"Delegate","val":1,"amt":4847},"partialState":{"h":17,"t":102,"tokens":[2216,13312,2299,2733],"delegation":[1216,12312,1299,1733],"delegatorTokens":9999999931022}},{"ix":163,"action":{"kind":"Delegate","val":0,"amt":3348},"partialState":{"h":17,"t":102,"tokens":[5564,13312,2299,2733],"delegation":[4564,12312,1299,1733],"delegatorTokens":9999999927674}},{"ix":164,"action":{"kind":"Deliver","chain":"consumer","numPackets":4},"partialState":{"h":20,"t":120,"consumerPower":[2216,null,10256,null],"outstandingDowntime":[false,false,false,false]}},{"ix":165,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":166,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":167,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":18,"t":108,"tokens":[5564,13312,2299,2733],"delegation":[4564,12312,1299,1733],"delegatorTokens":9999999934885,"jailed":[null,1000000000000035,null,1000000000000029],"status":["bonded","unbonded","bonded","unbonded"]}},{"ix":168,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":169,"action":{"kind":"Deliver","chain":"consumer","numPackets":5},"partialState":{"h":20,"t":120,"consumerPower":[2216,null,10256,null],"outstandingDowntime":[false,false,false,false]}},{"ix":170,"action":{"kind":"Undelegate","val":2,"amt":1094},"partialState":{"h":18,"t":108,"tokens":[5564,13312,1205,2733],"delegation":[4564,12312,205,1733],"delegatorTokens":9999999934885}},{"ix":171,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":19,"t":114,"tokens":[5564,13312,1205,2733],"delegation":[4564,12312,205,1733],"delegatorTokens":9999999949107,"jailed":[null,1000000000000035,null,1000000000000029],"status":["bonded","unbonded","bonded","unbonded"]}},{"ix":172,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":173,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":20,"t":120,"tokens":[5564,13312,1205,2733],"delegation":[4564,12312,205,1733],"delegatorTokens":9999999953184,"jailed":[null,1000000000000035,null,1000000000000029],"status":["bonded","unbonded","bonded","unbonded"]}},{"ix":174,"action":{"kind":"Undelegate","val":2,"amt":1169},"partialState":{"h":20,"t":120,"tokens":[5564,13312,1205,2733],"delegation":[4564,12312,205,1733],"delegatorTokens":9999999953184}},{"ix":175,"action":{"kind":"Deliver","chain":"consumer","numPackets":4},"partialState":{"h":20,"t":120,"consumerPower":[2216,null,10256,null],"outstandingDowntime":[false,false,false,false]}},{"ix":176,"action":{"kind":"Deliver","chain":"provider","numPackets":3},"partialState":{"h":20,"t":120,"tokens":[5564,13312,1205,2733],"delegation":[4564,12312,205,1733],"delegatorTokens":9999999953184,"jailed":[null,1000000000000035,null,1000000000000029],"status":["bonded","unbonded","bonded","unbonded"]}},{"ix":177,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":21,"t":126,"consumerPower":[5564,null,1205,null],"outstandingDowntime":[false,false,false,false]}},{"ix":178,"action":{"kind":"Undelegate","val":0,"amt":4506},"partialState":{"h":20,"t":120,"tokens":[1058,13312,1205,2733],"delegation":[58,12312,205,1733],"delegatorTokens":9999999953184}},{"ix":179,"action":{"kind":"Delegate","val":2,"amt":1898},"partialState":{"h":20,"t":120,"tokens":[1058,13312,3103,2733],"delegation":[58,12312,2103,1733],"delegatorTokens":9999999951286}},{"ix":180,"action":{"kind":"Deliver","chain":"consumer","numPackets":3},"partialState":{"h":21,"t":126,"consumerPower":[5564,null,1205,null],"outstandingDowntime":[false,false,false,false]}},{"ix":181,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":182,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":21,"t":126,"tokens":[1058,13312,3103,2733],"delegation":[58,12312,2103,1733],"delegatorTokens":9999999961175,"jailed":[null,1000000000000035,null,1000000000000029],"status":["bonded","unbonded","bonded","unbonded"]}},{"ix":183,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":184,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":22,"t":132,"tokens":[1058,13312,3103,2733],"delegation":[58,12312,2103,1733],"delegatorTokens":9999999964848,"jailed":[null,1000000000000035,null,1000000000000029],"status":["bonded","unbonded","bonded","unbonded"]}},{"ix":185,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":186,"action":{"kind":"Undelegate","val":1,"amt":4464},"partialState":{"h":22,"t":132,"tokens":[1058,8848,3103,2733],"delegation":[58,7848,2103,1733],"delegatorTokens":9999999964848}},{"ix":187,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":188,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":22,"t":132,"consumerPower":[5564,null,1205,null],"outstandingDowntime":[false,false,false,false]}},{"ix":189,"action":{"kind":"Delegate","val":0,"amt":4423},"partialState":{"h":22,"t":132,"tokens":[5481,8848,3103,2733],"delegation":[4481,7848,2103,1733],"delegatorTokens":9999999960425}},{"ix":190,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":191,"action":{"kind":"Deliver","chain":"consumer","numPackets":4},"partialState":{"h":22,"t":132,"consumerPower":[5564,null,1205,null],"outstandingDowntime":[false,false,false,false]}},{"ix":192,"action":{"kind":"Deliver","chain":"provider","numPackets":1},"partialState":{"h":22,"t":132,"tokens":[5481,8848,3103,2733],"delegation":[4481,7848,2103,1733],"delegatorTokens":9999999960425,"jailed":[null,1000000000000035,null,1000000000000029],"status":["bonded","unbonded","bonded","unbonded"]}},{"ix":193,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":194,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":195,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":196,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":23,"t":138,"tokens":[5481,8848,3103,2733],"delegation":[4481,7848,2103,1733],"delegatorTokens":9999999960425,"jailed":[null,1000000000000035,null,1000000000000029],"status":["bonded","unbonded","bonded","unbonded"]}},{"ix":197,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":198,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":199,"action":{"kind":"Deliver","chain":"consumer","numPackets":1},"partialState":{"h":22,"t":132,"consumerPower":[5564,null,1205,null],"outstandingDowntime":[false,false,false,false]}}],"events":["send_downtime_slash_request","insufficient_shares","send_downtime_slash_request","send_double_sign_slash_request","insufficient_shares","insufficient_shares","more_than_one_third_val_power_change","send_vsc_without_downtime_ack","send_vsc_without_downtime_ack","more_than_one_third_val_power_change","send_vsc_without_downtime_ack","insufficient_shares","consumer_del_val","consumer_add_val","insufficient_shares","more_than_one_third_val_power_change","rebond_unval","receive_downtime_slash_request","jail","send_vsc_with_downtime_ack","receive_double_sign_slash_request","insufficient_shares","receive_downtime_slash_request","jail","send_vsc_with_downtime_ack","receive_downtime_slash_ack","send_vsc_without_downtime_ack","consumer_update_val","consumer_update_val","consumer_del_val","receive_downtime_slash_ack","insufficient_shares","consumer_update_val","consumer_update_val","send_vsc_without_downtime_ack","send_vsc_without_downtime_ack","consumer_update_val","consumer_update_val","consumer_update_val","insufficient_shares","consumer_send_maturation","consumer_send_maturation","consumer_send_maturation","consumer_send_maturation","insufficient_shares","set_undel_hold_false","set_unval_hold_false","consumer_send_maturation","complete_unval_in_endblock","complete_undel_in_endblock","set_undel_hold_false","set_undel_hold_false","set_undel_hold_false","set_unval_hold_false","send_vsc_without_downtime_ack","consumer_send_maturation","consumer_send_maturation","insufficient_shares","consumer_send_maturation","set_undel_hold_false","set_undel_hold_false","set_undel_hold_false","set_undel_hold_false","send_vsc_without_downtime_ack","complete_undel_in_endblock","complete_unval_in_endblock","complete_undel_in_endblock","set_undel_hold_false","set_undel_hold_false","set_undel_hold_false","set_undel_hold_false","send_vsc_without_downtime_ack","complete_undel_in_endblock","send_vsc_without_downtime_ack","complete_undel_in_endblock","insufficient_shares","consumer_update_val","consumer_update_val","complete_undel_in_endblock","send_vsc_without_downtime_ack","complete_undel_in_endblock","send_vsc_without_downtime_ack"]},{"meta":{"commit":"7ffd0c04e4205cbc9caf212abfe6c59ee43153bf"},"constants":{"P":"provider","C":"consumer","UNBONDING_SECONDS_P":70,"UNBONDING_SECONDS_C":50,"TRUSTING_SECONDS":49,"NUM_VALIDATORS":4,"MAX_VALIDATORS":2,"SLASH_DOUBLESIGN":0,"SLASH_DOWNTIME":0,"JAIL_SECONDS":999999999999999,"BLOCK_SECONDS":6,"INITIAL_DELEGATOR_TOKENS":10000000000000,"DELEGATE_AMT_MIN":1000,"DELEGATE_AMT_MAX":5000,"UNDELEGATE_AMT_MIN":1000,"UNDELEGATE_AMT_MAX":5000,"ISDOWNTIME_PROBABILITY":0.5,"MAX_NUM_PACKETS_FOR_DELIVER":6},"actions":[{"ix":0,"action":{"kind":"ConsumerSlash","val":3,"infractionHeight":0,"isDowntime":true},"partialState":{"h":1,"t":6,"outstandingDowntime":[false,false,false,true]}},{"ix":1,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":2,"action":{"kind":"ConsumerSlash","val":3,"infractionHeight":0,"isDowntime":true},"partialState":{"h":1,"t":6,"outstandingDowntime":[false,false,false,true]}},{"ix":3,"action":{"kind":"ConsumerSlash","val":0,"infractionHeight":0,"isDowntime":true},"partialState":{"h":1,"t":6,"outstandingDowntime":[true,false,false,true]}},{"ix":4,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":5,"action":{"kind":"Deliver","chain":"provider","numPackets":1},"partialState":{"h":1,"t":6,"tokens":[5000,4000,3000,2000],"delegation":[4000,3000,2000,1000],"delegatorTokens":10000000000000,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":6,"action":{"kind":"Undelegate","val":2,"amt":1238},"partialState":{"h":1,"t":6,"tokens":[5000,4000,1762,2000],"delegation":[4000,3000,762,1000],"delegatorTokens":10000000000000}},{"ix":7,"action":{"kind":"Deliver","chain":"provider","numPackets":4},"partialState":{"h":1,"t":6,"tokens":[5000,4000,1762,2000],"delegation":[4000,3000,762,1000],"delegatorTokens":10000000000000,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":8,"action":{"kind":"Deliver","chain":"provider","numPackets":2},"partialState":{"h":1,"t":6,"tokens":[5000,4000,1762,2000],"delegation":[4000,3000,762,1000],"delegatorTokens":10000000000000,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":9,"action":{"kind":"ConsumerSlash","val":3,"infractionHeight":0,"isDowntime":true},"partialState":{"h":1,"t":6,"outstandingDowntime":[true,false,false,true]}},{"ix":10,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":2,"t":12,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[true,false,false,true]}},{"ix":11,"action":{"kind":"Deliver","chain":"consumer","numPackets":4},"partialState":{"h":2,"t":12,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[true,false,false,true]}},{"ix":12,"action":{"kind":"Undelegate","val":0,"amt":4728},"partialState":{"h":1,"t":6,"tokens":[5000,4000,1762,2000],"delegation":[4000,3000,762,1000],"delegatorTokens":10000000000000}},{"ix":13,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":14,"action":{"kind":"Deliver","chain":"provider","numPackets":3},"partialState":{"h":1,"t":6,"tokens":[5000,4000,1762,2000],"delegation":[4000,3000,762,1000],"delegatorTokens":10000000000000,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":15,"action":{"kind":"ConsumerSlash","val":3,"infractionHeight":1,"isDowntime":true},"partialState":{"h":2,"t":12,"outstandingDowntime":[true,false,false,true]}},{"ix":16,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":2,"t":12,"tokens":[5000,4000,1762,2000],"delegation":[4000,3000,762,1000],"delegatorTokens":10000000000000,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":17,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":3,"t":18,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[true,false,false,true]}},{"ix":18,"action":{"kind":"ConsumerSlash","val":3,"infractionHeight":0,"isDowntime":true},"partialState":{"h":3,"t":18,"outstandingDowntime":[true,false,false,true]}},{"ix":19,"action":{"kind":"Undelegate","val":3,"amt":2260},"partialState":{"h":2,"t":12,"tokens":[5000,4000,1762,2000],"delegation":[4000,3000,762,1000],"delegatorTokens":10000000000000}},{"ix":20,"action":{"kind":"Undelegate","val":2,"amt":1966},"partialState":{"h":2,"t":12,"tokens":[5000,4000,1762,2000],"delegation":[4000,3000,762,1000],"delegatorTokens":10000000000000}},{"ix":21,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":4,"t":24,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[true,false,false,true]}},{"ix":22,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":23,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":5,"t":30,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[true,false,false,true]}},{"ix":24,"action":{"kind":"Deliver","chain":"provider","numPackets":4},"partialState":{"h":2,"t":12,"tokens":[5000,4000,1762,2000],"delegation":[4000,3000,762,1000],"delegatorTokens":10000000000000,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":25,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":26,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":3,"t":18,"tokens":[5000,4000,1762,2000],"delegation":[4000,3000,762,1000],"delegatorTokens":10000000000000,"jailed":[1000000000000011,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":27,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":28,"action":{"kind":"Deliver","chain":"provider","numPackets":1},"partialState":{"h":3,"t":18,"tokens":[5000,4000,1762,2000],"delegation":[4000,3000,762,1000],"delegatorTokens":10000000000000,"jailed":[1000000000000011,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":29,"action":{"kind":"Delegate","val":2,"amt":2819},"partialState":{"h":3,"t":18,"tokens":[5000,4000,4581,2000],"delegation":[4000,3000,3581,1000],"delegatorTokens":9999999997181}},{"ix":30,"action":{"kind":"ConsumerSlash","val":2,"infractionHeight":3,"isDowntime":true},"partialState":{"h":5,"t":30,"outstandingDowntime":[true,false,true,true]}},{"ix":31,"action":{"kind":"Delegate","val":3,"amt":3278},"partialState":{"h":3,"t":18,"tokens":[5000,4000,4581,5278],"delegation":[4000,3000,3581,4278],"delegatorTokens":9999999993903}},{"ix":32,"action":{"kind":"Deliver","chain":"consumer","numPackets":3},"partialState":{"h":5,"t":30,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[true,false,true,true]}},{"ix":33,"action":{"kind":"Deliver","chain":"provider","numPackets":2},"partialState":{"h":3,"t":18,"tokens":[5000,4000,4581,5278],"delegation":[4000,3000,3581,4278],"delegatorTokens":9999999993903,"jailed":[1000000000000011,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":34,"action":{"kind":"Undelegate","val":0,"amt":3959},"partialState":{"h":3,"t":18,"tokens":[1041,4000,4581,5278],"delegation":[41,3000,3581,4278],"delegatorTokens":9999999993903}},{"ix":35,"action":{"kind":"Delegate","val":1,"amt":3211},"partialState":{"h":3,"t":18,"tokens":[1041,7211,4581,5278],"delegation":[41,6211,3581,4278],"delegatorTokens":9999999990692}},{"ix":36,"action":{"kind":"Deliver","chain":"provider","numPackets":4},"partialState":{"h":3,"t":18,"tokens":[1041,7211,4581,5278],"delegation":[41,6211,3581,4278],"delegatorTokens":9999999990692,"jailed":[1000000000000011,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":37,"action":{"kind":"Undelegate","val":0,"amt":3361},"partialState":{"h":3,"t":18,"tokens":[1041,7211,4581,5278],"delegation":[41,6211,3581,4278],"delegatorTokens":9999999990692}},{"ix":38,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":4,"t":24,"tokens":[1041,7211,4581,5278],"delegation":[41,6211,3581,4278],"delegatorTokens":9999999990692,"jailed":[1000000000000011,null,null,null],"status":["unbonding","bonded","unbonded","bonded"]}},{"ix":39,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":5,"t":30,"tokens":[1041,7211,4581,5278],"delegation":[41,6211,3581,4278],"delegatorTokens":9999999990692,"jailed":[1000000000000011,null,null,null],"status":["unbonding","bonded","unbonded","bonded"]}},{"ix":40,"action":{"kind":"Delegate","val":3,"amt":4851},"partialState":{"h":5,"t":30,"tokens":[1041,7211,4581,10129],"delegation":[41,6211,3581,9129],"delegatorTokens":9999999985841}},{"ix":41,"action":{"kind":"Undelegate","val":1,"amt":1299},"partialState":{"h":5,"t":30,"tokens":[1041,5912,4581,10129],"delegation":[41,4912,3581,9129],"delegatorTokens":9999999985841}},{"ix":42,"action":{"kind":"Deliver","chain":"consumer","numPackets":2},"partialState":{"h":5,"t":30,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,false,true,true]}},{"ix":43,"action":{"kind":"Deliver","chain":"provider","numPackets":6},"partialState":{"h":5,"t":30,"tokens":[1041,5912,4581,10129],"delegation":[41,4912,3581,9129],"delegatorTokens":9999999985841,"jailed":[1000000000000011,null,null,null],"status":["unbonding","bonded","unbonded","bonded"]}},{"ix":44,"action":{"kind":"Deliver","chain":"provider","numPackets":5},"partialState":{"h":5,"t":30,"tokens":[1041,5912,4581,10129],"delegation":[41,4912,3581,9129],"delegatorTokens":9999999985841,"jailed":[1000000000000011,null,null,null],"status":["unbonding","bonded","unbonded","bonded"]}},{"ix":45,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":46,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":47,"action":{"kind":"Undelegate","val":1,"amt":2148},"partialState":{"h":5,"t":30,"tokens":[1041,3764,4581,10129],"delegation":[41,2764,3581,9129],"delegatorTokens":9999999985841}},{"ix":48,"action":{"kind":"Deliver","chain":"consumer","numPackets":3},"partialState":{"h":5,"t":30,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,false,true,true]}},{"ix":49,"action":{"kind":"Delegate","val":3,"amt":4040},"partialState":{"h":5,"t":30,"tokens":[1041,3764,4581,14169],"delegation":[41,2764,3581,13169],"delegatorTokens":9999999981801}},{"ix":50,"action":{"kind":"Undelegate","val":1,"amt":1504},"partialState":{"h":5,"t":30,"tokens":[1041,2260,4581,14169],"delegation":[41,1260,3581,13169],"delegatorTokens":9999999981801}},{"ix":51,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":52,"action":{"kind":"Delegate","val":3,"amt":2929},"partialState":{"h":5,"t":30,"tokens":[1041,2260,4581,17098],"delegation":[41,1260,3581,16098],"delegatorTokens":9999999978872}},{"ix":53,"action":{"kind":"Deliver","chain":"consumer","numPackets":4},"partialState":{"h":5,"t":30,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,false,true,true]}},{"ix":54,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":6,"t":36,"consumerPower":[null,7211,null,5278],"outstandingDowntime":[false,false,true,true]}},{"ix":55,"action":{"kind":"Undelegate","val":3,"amt":4251},"partialState":{"h":5,"t":30,"tokens":[1041,2260,4581,12847],"delegation":[41,1260,3581,11847],"delegatorTokens":9999999978872}},{"ix":56,"action":{"kind":"Delegate","val":0,"amt":1655},"partialState":{"h":5,"t":30,"tokens":[2696,2260,4581,12847],"delegation":[1696,1260,3581,11847],"delegatorTokens":9999999977217}},{"ix":57,"action":{"kind":"Delegate","val":3,"amt":4823},"partialState":{"h":5,"t":30,"tokens":[2696,2260,4581,17670],"delegation":[1696,1260,3581,16670],"delegatorTokens":9999999972394}},{"ix":58,"action":{"kind":"Delegate","val":2,"amt":1064},"partialState":{"h":5,"t":30,"tokens":[2696,2260,5645,17670],"delegation":[1696,1260,4645,16670],"delegatorTokens":9999999971330}},{"ix":59,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":7,"t":42,"consumerPower":[null,7211,null,5278],"outstandingDowntime":[false,false,true,true]}},{"ix":60,"action":{"kind":"Delegate","val":1,"amt":2424},"partialState":{"h":5,"t":30,"tokens":[2696,4684,5645,17670],"delegation":[1696,3684,4645,16670],"delegatorTokens":9999999968906}},{"ix":61,"action":{"kind":"Delegate","val":1,"amt":1904},"partialState":{"h":5,"t":30,"tokens":[2696,6588,5645,17670],"delegation":[1696,5588,4645,16670],"delegatorTokens":9999999967002}},{"ix":62,"action":{"kind":"Deliver","chain":"provider","numPackets":2},"partialState":{"h":5,"t":30,"tokens":[2696,6588,5645,17670],"delegation":[1696,5588,4645,16670],"delegatorTokens":9999999967002,"jailed":[1000000000000011,null,null,null],"status":["unbonding","bonded","unbonded","bonded"]}},{"ix":63,"action":{"kind":"Undelegate","val":3,"amt":4692},"partialState":{"h":5,"t":30,"tokens":[2696,6588,5645,12978],"delegation":[1696,5588,4645,11978],"delegatorTokens":9999999967002}},{"ix":64,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":6,"t":36,"tokens":[2696,6588,5645,12978],"delegation":[1696,5588,4645,11978],"delegatorTokens":9999999967002,"jailed":[1000000000000011,null,null,null],"status":["unbonding","bonded","unbonded","bonded"]}},{"ix":65,"action":{"kind":"Undelegate","val":3,"amt":4606},"partialState":{"h":6,"t":36,"tokens":[2696,6588,5645,8372],"delegation":[1696,5588,4645,7372],"delegatorTokens":9999999967002}},{"ix":66,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":67,"action":{"kind":"Delegate","val":2,"amt":2659},"partialState":{"h":6,"t":36,"tokens":[2696,6588,8304,8372],"delegation":[1696,5588,7304,7372],"delegatorTokens":9999999964343}},{"ix":68,"action":{"kind":"Undelegate","val":0,"amt":2133},"partialState":{"h":6,"t":36,"tokens":[2696,6588,8304,8372],"delegation":[1696,5588,7304,7372],"delegatorTokens":9999999964343}},{"ix":69,"action":{"kind":"Delegate","val":1,"amt":1200},"partialState":{"h":6,"t":36,"tokens":[2696,7788,8304,8372],"delegation":[1696,6788,7304,7372],"delegatorTokens":9999999963143}},{"ix":70,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":7,"t":42,"tokens":[2696,7788,8304,8372],"delegation":[1696,6788,7304,7372],"delegatorTokens":9999999963143,"jailed":[1000000000000011,null,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":71,"action":{"kind":"Undelegate","val":2,"amt":4762},"partialState":{"h":7,"t":42,"tokens":[2696,7788,3542,8372],"delegation":[1696,6788,2542,7372],"delegatorTokens":9999999963143}},{"ix":72,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":8,"t":48,"tokens":[2696,7788,3542,8372],"delegation":[1696,6788,2542,7372],"delegatorTokens":9999999963143,"jailed":[1000000000000011,null,null,null],"status":["unbonding","bonded","unbonding","bonded"]}},{"ix":73,"action":{"kind":"Deliver","chain":"consumer","numPackets":2},"partialState":{"h":7,"t":42,"consumerPower":[null,7211,null,5278],"outstandingDowntime":[false,false,true,true]}},{"ix":74,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":9,"t":54,"tokens":[2696,7788,3542,8372],"delegation":[1696,6788,2542,7372],"delegatorTokens":9999999963143,"jailed":[1000000000000011,null,null,null],"status":["unbonding","bonded","unbonding","bonded"]}},{"ix":75,"action":{"kind":"Undelegate","val":3,"amt":4319},"partialState":{"h":9,"t":54,"tokens":[2696,7788,3542,4053],"delegation":[1696,6788,2542,3053],"delegatorTokens":9999999963143}},{"ix":76,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":77,"action":{"kind":"Undelegate","val":1,"amt":2538},"partialState":{"h":9,"t":54,"tokens":[2696,5250,3542,4053],"delegation":[1696,4250,2542,3053],"delegatorTokens":9999999963143}},{"ix":78,"action":{"kind":"Deliver","chain":"consumer","numPackets":2},"partialState":{"h":7,"t":42,"consumerPower":[null,7211,null,5278],"outstandingDowntime":[false,false,true,true]}},{"ix":79,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":10,"t":60,"tokens":[2696,5250,3542,4053],"delegation":[1696,4250,2542,3053],"delegatorTokens":9999999963143,"jailed":[1000000000000011,null,null,null],"status":["unbonding","bonded","unbonding","bonded"]}},{"ix":80,"action":{"kind":"Deliver","chain":"consumer","numPackets":4},"partialState":{"h":7,"t":42,"consumerPower":[null,7211,null,5278],"outstandingDowntime":[false,false,true,true]}},{"ix":81,"action":{"kind":"Deliver","chain":"provider","numPackets":5},"partialState":{"h":10,"t":60,"tokens":[2696,5250,3542,4053],"delegation":[1696,4250,2542,3053],"delegatorTokens":9999999963143,"jailed":[1000000000000011,null,null,null],"status":["unbonding","bonded","unbonding","bonded"]}},{"ix":82,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":83,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":8,"t":48,"consumerPower":[null,7788,null,8372],"outstandingDowntime":[false,false,true,true]}},{"ix":84,"action":{"kind":"Delegate","val":1,"amt":2361},"partialState":{"h":10,"t":60,"tokens":[2696,7611,3542,4053],"delegation":[1696,6611,2542,3053],"delegatorTokens":9999999960782}},{"ix":85,"action":{"kind":"Delegate","val":3,"amt":2335},"partialState":{"h":10,"t":60,"tokens":[2696,7611,3542,6388],"delegation":[1696,6611,2542,5388],"delegatorTokens":9999999958447}},{"ix":86,"action":{"kind":"Undelegate","val":2,"amt":3896},"partialState":{"h":10,"t":60,"tokens":[2696,7611,3542,6388],"delegation":[1696,6611,2542,5388],"delegatorTokens":9999999958447}},{"ix":87,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":9,"t":54,"consumerPower":[null,7788,null,8372],"outstandingDowntime":[false,false,true,true]}},{"ix":88,"action":{"kind":"Delegate","val":0,"amt":2278},"partialState":{"h":10,"t":60,"tokens":[4974,7611,3542,6388],"delegation":[3974,6611,2542,5388],"delegatorTokens":9999999956169}},{"ix":89,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":90,"action":{"kind":"Delegate","val":1,"amt":4676},"partialState":{"h":10,"t":60,"tokens":[4974,12287,3542,6388],"delegation":[3974,11287,2542,5388],"delegatorTokens":9999999951493}},{"ix":91,"action":{"kind":"Deliver","chain":"provider","numPackets":2},"partialState":{"h":10,"t":60,"tokens":[4974,12287,3542,6388],"delegation":[3974,11287,2542,5388],"delegatorTokens":9999999951493,"jailed":[1000000000000011,null,null,null],"status":["unbonding","bonded","unbonding","bonded"]}},{"ix":92,"action":{"kind":"Undelegate","val":3,"amt":4864},"partialState":{"h":10,"t":60,"tokens":[4974,12287,3542,1524],"delegation":[3974,11287,2542,524],"delegatorTokens":9999999951493}},{"ix":93,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":10,"t":60,"consumerPower":[null,7788,null,8372],"outstandingDowntime":[false,false,true,true]}},{"ix":94,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":95,"action":{"kind":"Undelegate","val":1,"amt":3582},"partialState":{"h":10,"t":60,"tokens":[4974,8705,3542,1524],"delegation":[3974,7705,2542,524],"delegatorTokens":9999999951493}},{"ix":96,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":97,"action":{"kind":"Delegate","val":1,"amt":2207},"partialState":{"h":10,"t":60,"tokens":[4974,10912,3542,1524],"delegation":[3974,9912,2542,524],"delegatorTokens":9999999949286}},{"ix":98,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":99,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":100,"action":{"kind":"Deliver","chain":"provider","numPackets":2},"partialState":{"h":10,"t":60,"tokens":[4974,10912,3542,1524],"delegation":[3974,9912,2542,524],"delegatorTokens":9999999949286,"jailed":[1000000000000011,null,null,null],"status":["unbonding","bonded","unbonding","bonded"]}},{"ix":101,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":102,"action":{"kind":"Deliver","chain":"provider","numPackets":4},"partialState":{"h":10,"t":60,"tokens":[4974,10912,3542,1524],"delegation":[3974,9912,2542,524],"delegatorTokens":9999999949286,"jailed":[1000000000000011,null,null,null],"status":["unbonding","bonded","unbonding","bonded"]}},{"ix":103,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":104,"action":{"kind":"Undelegate","val":0,"amt":1429},"partialState":{"h":10,"t":60,"tokens":[3545,10912,3542,1524],"delegation":[2545,9912,2542,524],"delegatorTokens":9999999949286}},{"ix":105,"action":{"kind":"Undelegate","val":1,"amt":1401},"partialState":{"h":10,"t":60,"tokens":[3545,9511,3542,1524],"delegation":[2545,8511,2542,524],"delegatorTokens":9999999949286}},{"ix":106,"action":{"kind":"Delegate","val":3,"amt":4334},"partialState":{"h":10,"t":60,"tokens":[3545,9511,3542,5858],"delegation":[2545,8511,2542,4858],"delegatorTokens":9999999944952}},{"ix":107,"action":{"kind":"Delegate","val":1,"amt":3336},"partialState":{"h":10,"t":60,"tokens":[3545,12847,3542,5858],"delegation":[2545,11847,2542,4858],"delegatorTokens":9999999941616}},{"ix":108,"action":{"kind":"Delegate","val":2,"amt":4250},"partialState":{"h":10,"t":60,"tokens":[3545,12847,7792,5858],"delegation":[2545,11847,6792,4858],"delegatorTokens":9999999937366}},{"ix":109,"action":{"kind":"Delegate","val":3,"amt":2589},"partialState":{"h":10,"t":60,"tokens":[3545,12847,7792,8447],"delegation":[2545,11847,6792,7447],"delegatorTokens":9999999934777}},{"ix":110,"action":{"kind":"Undelegate","val":0,"amt":3559},"partialState":{"h":10,"t":60,"tokens":[3545,12847,7792,8447],"delegation":[2545,11847,6792,7447],"delegatorTokens":9999999934777}},{"ix":111,"action":{"kind":"Undelegate","val":2,"amt":2209},"partialState":{"h":10,"t":60,"tokens":[3545,12847,5583,8447],"delegation":[2545,11847,4583,7447],"delegatorTokens":9999999934777}},{"ix":112,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":113,"action":{"kind":"Delegate","val":2,"amt":3278},"partialState":{"h":10,"t":60,"tokens":[3545,12847,8861,8447],"delegation":[2545,11847,7861,7447],"delegatorTokens":9999999931499}},{"ix":114,"action":{"kind":"Deliver","chain":"provider","numPackets":5},"partialState":{"h":10,"t":60,"tokens":[3545,12847,8861,8447],"delegation":[2545,11847,7861,7447],"delegatorTokens":9999999931499,"jailed":[1000000000000011,null,null,null],"status":["unbonding","bonded","unbonding","bonded"]}},{"ix":115,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":11,"t":66,"consumerPower":[null,7788,null,8372],"outstandingDowntime":[false,false,true,true]}},{"ix":116,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":12,"t":72,"consumerPower":[null,7788,null,8372],"outstandingDowntime":[false,false,true,true]}},{"ix":117,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":11,"t":66,"tokens":[3545,12847,8861,8447],"delegation":[2545,11847,7861,7447],"delegatorTokens":9999999931499,"jailed":[1000000000000011,null,null,null],"status":["unbonding","bonded","bonded","unbonding"]}},{"ix":118,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":119,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":13,"t":78,"consumerPower":[null,7788,null,8372],"outstandingDowntime":[false,false,true,true]}},{"ix":120,"action":{"kind":"Delegate","val":0,"amt":3249},"partialState":{"h":11,"t":66,"tokens":[6794,12847,8861,8447],"delegation":[5794,11847,7861,7447],"delegatorTokens":9999999928250}},{"ix":121,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":122,"action":{"kind":"Deliver","chain":"provider","numPackets":1},"partialState":{"h":11,"t":66,"tokens":[6794,12847,8861,8447],"delegation":[5794,11847,7861,7447],"delegatorTokens":9999999928250,"jailed":[1000000000000011,null,null,null],"status":["unbonding","bonded","bonded","unbonding"]}},{"ix":123,"action":{"kind":"Undelegate","val":1,"amt":4875},"partialState":{"h":11,"t":66,"tokens":[6794,7972,8861,8447],"delegation":[5794,6972,7861,7447],"delegatorTokens":9999999928250}},{"ix":124,"action":{"kind":"Undelegate","val":1,"amt":1675},"partialState":{"h":11,"t":66,"tokens":[6794,6297,8861,8447],"delegation":[5794,5297,7861,7447],"delegatorTokens":9999999928250}},{"ix":125,"action":{"kind":"Undelegate","val":0,"amt":4416},"partialState":{"h":11,"t":66,"tokens":[2378,6297,8861,8447],"delegation":[1378,5297,7861,7447],"delegatorTokens":9999999928250}},{"ix":126,"action":{"kind":"Undelegate","val":3,"amt":2145},"partialState":{"h":11,"t":66,"tokens":[2378,6297,8861,6302],"delegation":[1378,5297,7861,5302],"delegatorTokens":9999999928250}},{"ix":127,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":128,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":14,"t":84,"consumerPower":[null,7788,null,8372],"outstandingDowntime":[false,false,true,true]}},{"ix":129,"action":{"kind":"Undelegate","val":2,"amt":1270},"partialState":{"h":11,"t":66,"tokens":[2378,6297,7591,6302],"delegation":[1378,5297,6591,5302],"delegatorTokens":9999999928250}},{"ix":130,"action":{"kind":"Deliver","chain":"consumer","numPackets":3},"partialState":{"h":14,"t":84,"consumerPower":[null,7788,null,8372],"outstandingDowntime":[false,false,true,true]}},{"ix":131,"action":{"kind":"Deliver","chain":"provider","numPackets":3},"partialState":{"h":11,"t":66,"tokens":[2378,6297,7591,6302],"delegation":[1378,5297,6591,5302],"delegatorTokens":9999999928250,"jailed":[1000000000000011,null,null,null],"status":["unbonding","bonded","bonded","unbonding"]}},{"ix":132,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":15,"t":90,"consumerPower":[null,5250,null,4053],"outstandingDowntime":[false,false,true,true]}},{"ix":133,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":134,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":16,"t":96,"consumerPower":[null,5250,null,4053],"outstandingDowntime":[false,false,true,true]}},{"ix":135,"action":{"kind":"Deliver","chain":"provider","numPackets":6},"partialState":{"h":11,"t":66,"tokens":[2378,6297,7591,6302],"delegation":[1378,5297,6591,5302],"delegatorTokens":9999999928250,"jailed":[1000000000000011,null,null,null],"status":["unbonding","bonded","bonded","unbonding"]}},{"ix":136,"action":{"kind":"Delegate","val":2,"amt":2845},"partialState":{"h":11,"t":66,"tokens":[2378,6297,10436,6302],"delegation":[1378,5297,9436,5302],"delegatorTokens":9999999925405}},{"ix":137,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":138,"action":{"kind":"Deliver","chain":"provider","numPackets":2},"partialState":{"h":11,"t":66,"tokens":[2378,6297,10436,6302],"delegation":[1378,5297,9436,5302],"delegatorTokens":9999999925405,"jailed":[1000000000000011,null,null,null],"status":["unbonding","bonded","bonded","unbonding"]}},{"ix":139,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":140,"action":{"kind":"Undelegate","val":1,"amt":3778},"partialState":{"h":11,"t":66,"tokens":[2378,2519,10436,6302],"delegation":[1378,1519,9436,5302],"delegatorTokens":9999999925405}},{"ix":141,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":142,"action":{"kind":"Delegate","val":0,"amt":1989},"partialState":{"h":11,"t":66,"tokens":[4367,2519,10436,6302],"delegation":[3367,1519,9436,5302],"delegatorTokens":9999999923416}},{"ix":143,"action":{"kind":"Deliver","chain":"provider","numPackets":2},"partialState":{"h":11,"t":66,"tokens":[4367,2519,10436,6302],"delegation":[3367,1519,9436,5302],"delegatorTokens":9999999923416,"jailed":[1000000000000011,null,null,null],"status":["unbonding","bonded","bonded","unbonding"]}},{"ix":144,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":12,"t":72,"tokens":[4367,2519,10436,6302],"delegation":[3367,1519,9436,5302],"delegatorTokens":9999999923416,"jailed":[1000000000000011,null,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":145,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":13,"t":78,"tokens":[4367,2519,10436,6302],"delegation":[3367,1519,9436,5302],"delegatorTokens":9999999923416,"jailed":[1000000000000011,null,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":146,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":147,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":148,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":14,"t":84,"tokens":[4367,2519,10436,6302],"delegation":[3367,1519,9436,5302],"delegatorTokens":9999999924654,"jailed":[1000000000000011,null,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":149,"action":{"kind":"Undelegate","val":3,"amt":4075},"partialState":{"h":14,"t":84,"tokens":[4367,2519,10436,2227],"delegation":[3367,1519,9436,1227],"delegatorTokens":9999999924654}},{"ix":150,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":151,"action":{"kind":"Delegate","val":0,"amt":2294},"partialState":{"h":14,"t":84,"tokens":[6661,2519,10436,2227],"delegation":[5661,1519,9436,1227],"delegatorTokens":9999999922360}},{"ix":152,"action":{"kind":"Delegate","val":2,"amt":3549},"partialState":{"h":14,"t":84,"tokens":[6661,2519,13985,2227],"delegation":[5661,1519,12985,1227],"delegatorTokens":9999999918811}},{"ix":153,"action":{"kind":"Deliver","chain":"provider","numPackets":6},"partialState":{"h":14,"t":84,"tokens":[6661,2519,13985,2227],"delegation":[5661,1519,12985,1227],"delegatorTokens":9999999918811,"jailed":[1000000000000011,null,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":154,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":155,"action":{"kind":"Delegate","val":2,"amt":1462},"partialState":{"h":14,"t":84,"tokens":[6661,2519,15447,2227],"delegation":[5661,1519,14447,1227],"delegatorTokens":9999999917349}},{"ix":156,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":157,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":15,"t":90,"tokens":[6661,2519,15447,2227],"delegation":[5661,1519,14447,1227],"delegatorTokens":9999999917349,"jailed":[1000000000000011,null,null,null],"status":["unbonding","bonded","bonded","unbonding"]}},{"ix":158,"action":{"kind":"Undelegate","val":2,"amt":4498},"partialState":{"h":15,"t":90,"tokens":[6661,2519,10949,2227],"delegation":[5661,1519,9949,1227],"delegatorTokens":9999999917349}},{"ix":159,"action":{"kind":"Deliver","chain":"provider","numPackets":6},"partialState":{"h":15,"t":90,"tokens":[6661,2519,10949,2227],"delegation":[5661,1519,9949,1227],"delegatorTokens":9999999917349,"jailed":[1000000000000011,null,null,null],"status":["unbonding","bonded","bonded","unbonding"]}},{"ix":160,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":17,"t":102,"consumerPower":[null,5250,null,4053],"outstandingDowntime":[false,false,true,true]}},{"ix":161,"action":{"kind":"Undelegate","val":3,"amt":3759},"partialState":{"h":15,"t":90,"tokens":[6661,2519,10949,2227],"delegation":[5661,1519,9949,1227],"delegatorTokens":9999999917349}},{"ix":162,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":163,"action":{"kind":"Deliver","chain":"consumer","numPackets":3},"partialState":{"h":17,"t":102,"consumerPower":[null,5250,null,4053],"outstandingDowntime":[false,false,true,true]}},{"ix":164,"action":{"kind":"Undelegate","val":2,"amt":2758},"partialState":{"h":15,"t":90,"tokens":[6661,2519,8191,2227],"delegation":[5661,1519,7191,1227],"delegatorTokens":9999999917349}},{"ix":165,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":18,"t":108,"consumerPower":[null,null,10436,6302],"outstandingDowntime":[false,false,true,true]}},{"ix":166,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":167,"action":{"kind":"Undelegate","val":3,"amt":1612},"partialState":{"h":15,"t":90,"tokens":[6661,2519,8191,2227],"delegation":[5661,1519,7191,1227],"delegatorTokens":9999999917349}},{"ix":168,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":169,"action":{"kind":"Delegate","val":1,"amt":1992},"partialState":{"h":15,"t":90,"tokens":[6661,4511,8191,2227],"delegation":[5661,3511,7191,1227],"delegatorTokens":9999999915357}},{"ix":170,"action":{"kind":"Delegate","val":2,"amt":1733},"partialState":{"h":15,"t":90,"tokens":[6661,4511,9924,2227],"delegation":[5661,3511,8924,1227],"delegatorTokens":9999999913624}},{"ix":171,"action":{"kind":"Undelegate","val":0,"amt":3478},"partialState":{"h":15,"t":90,"tokens":[3183,4511,9924,2227],"delegation":[2183,3511,8924,1227],"delegatorTokens":9999999913624}},{"ix":172,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":16,"t":96,"tokens":[3183,4511,9924,2227],"delegation":[2183,3511,8924,1227],"delegatorTokens":9999999917583,"jailed":[1000000000000011,null,null,null],"status":["unbonded","bonded","bonded","unbonding"]}},{"ix":173,"action":{"kind":"Delegate","val":3,"amt":1676},"partialState":{"h":16,"t":96,"tokens":[3183,4511,9924,3903],"delegation":[2183,3511,8924,2903],"delegatorTokens":9999999915907}},{"ix":174,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":175,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":176,"action":{"kind":"Delegate","val":1,"amt":3504},"partialState":{"h":16,"t":96,"tokens":[3183,8015,9924,3903],"delegation":[2183,7015,8924,2903],"delegatorTokens":9999999912403}},{"ix":177,"action":{"kind":"Deliver","chain":"provider","numPackets":2},"partialState":{"h":16,"t":96,"tokens":[3183,8015,9924,3903],"delegation":[2183,7015,8924,2903],"delegatorTokens":9999999912403,"jailed":[1000000000000011,null,null,null],"status":["unbonded","bonded","bonded","unbonding"]}},{"ix":178,"action":{"kind":"Delegate","val":0,"amt":4435},"partialState":{"h":16,"t":96,"tokens":[7618,8015,9924,3903],"delegation":[6618,7015,8924,2903],"delegatorTokens":9999999907968}},{"ix":179,"action":{"kind":"Undelegate","val":3,"amt":1347},"partialState":{"h":16,"t":96,"tokens":[7618,8015,9924,2556],"delegation":[6618,7015,8924,1556],"delegatorTokens":9999999907968}},{"ix":180,"action":{"kind":"Undelegate","val":0,"amt":3589},"partialState":{"h":16,"t":96,"tokens":[4029,8015,9924,2556],"delegation":[3029,7015,8924,1556],"delegatorTokens":9999999907968}},{"ix":181,"action":{"kind":"Undelegate","val":1,"amt":2587},"partialState":{"h":16,"t":96,"tokens":[4029,5428,9924,2556],"delegation":[3029,4428,8924,1556],"delegatorTokens":9999999907968}},{"ix":182,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":183,"action":{"kind":"Deliver","chain":"consumer","numPackets":3},"partialState":{"h":18,"t":108,"consumerPower":[null,null,10436,6302],"outstandingDowntime":[false,false,true,true]}},{"ix":184,"action":{"kind":"Delegate","val":3,"amt":3766},"partialState":{"h":16,"t":96,"tokens":[4029,5428,9924,6322],"delegation":[3029,4428,8924,5322],"delegatorTokens":9999999904202}},{"ix":185,"action":{"kind":"Deliver","chain":"consumer","numPackets":1},"partialState":{"h":18,"t":108,"consumerPower":[null,null,10436,6302],"outstandingDowntime":[false,false,true,true]}},{"ix":186,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":17,"t":102,"tokens":[4029,5428,9924,6322],"delegation":[3029,4428,8924,5322],"delegatorTokens":9999999904202,"jailed":[1000000000000011,null,null,null],"status":["unbonded","unbonding","bonded","bonded"]}},{"ix":187,"action":{"kind":"Undelegate","val":2,"amt":2675},"partialState":{"h":17,"t":102,"tokens":[4029,5428,7249,6322],"delegation":[3029,4428,6249,5322],"delegatorTokens":9999999904202}},{"ix":188,"action":{"kind":"Delegate","val":3,"amt":2136},"partialState":{"h":17,"t":102,"tokens":[4029,5428,7249,8458],"delegation":[3029,4428,6249,7458],"delegatorTokens":9999999902066}},{"ix":189,"action":{"kind":"Delegate","val":0,"amt":3335},"partialState":{"h":17,"t":102,"tokens":[7364,5428,7249,8458],"delegation":[6364,4428,6249,7458],"delegatorTokens":9999999898731}},{"ix":190,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":19,"t":114,"consumerPower":[null,2519,15447,null],"outstandingDowntime":[false,false,true,true]}},{"ix":191,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":192,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":18,"t":108,"tokens":[7364,5428,7249,8458],"delegation":[6364,4428,6249,7458],"delegatorTokens":9999999912625,"jailed":[1000000000000011,null,null,null],"status":["unbonded","unbonding","bonded","bonded"]}},{"ix":193,"action":{"kind":"Delegate","val":3,"amt":1327},"partialState":{"h":18,"t":108,"tokens":[7364,5428,7249,9785],"delegation":[6364,4428,6249,8785],"delegatorTokens":9999999911298}},{"ix":194,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":19,"t":114,"tokens":[7364,5428,7249,9785],"delegation":[6364,4428,6249,8785],"delegatorTokens":9999999915904,"jailed":[1000000000000011,null,null,null],"status":["unbonded","unbonding","bonded","bonded"]}},{"ix":195,"action":{"kind":"Delegate","val":1,"amt":1497},"partialState":{"h":19,"t":114,"tokens":[7364,6925,7249,9785],"delegation":[6364,5925,6249,8785],"delegatorTokens":9999999914407}},{"ix":196,"action":{"kind":"Deliver","chain":"consumer","numPackets":2},"partialState":{"h":19,"t":114,"consumerPower":[null,2519,15447,null],"outstandingDowntime":[false,false,true,true]}},{"ix":197,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":20,"t":120,"consumerPower":[null,null,9924,6322],"outstandingDowntime":[false,false,true,true]}},{"ix":198,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":20,"t":120,"tokens":[7364,6925,7249,9785],"delegation":[6364,5925,6249,8785],"delegatorTokens":9999999914407,"jailed":[1000000000000011,null,null,null],"status":["unbonded","unbonding","bonded","bonded"]}},{"ix":199,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":21,"t":126,"tokens":[7364,6925,7249,9785],"delegation":[6364,5925,6249,8785],"delegatorTokens":9999999914407,"jailed":[1000000000000011,null,null,null],"status":["unbonded","unbonding","bonded","bonded"]}}],"events":["send_downtime_slash_request","downtime_slash_request_outstanding","send_downtime_slash_request","downtime_slash_request_outstanding","insufficient_shares","downtime_slash_request_outstanding","send_vsc_not_because_change","send_vsc_without_downtime_ack","downtime_slash_request_outstanding","insufficient_shares","insufficient_shares","receive_slash_request_unbonded","receive_downtime_slash_request","jail","send_downtime_slash_request","insufficient_shares","more_than_one_third_val_power_change","send_vsc_with_downtime_ack","receive_downtime_slash_ack","consumer_del_val","consumer_update_val","consumer_add_val","receive_slash_request_unbonded","send_vsc_without_downtime_ack","insufficient_shares","more_than_one_third_val_power_change","send_vsc_without_downtime_ack","more_than_one_third_val_power_change","rebond_unval","send_vsc_without_downtime_ack","send_vsc_without_downtime_ack","consumer_update_val","consumer_update_val","consumer_del_val","insufficient_shares","insufficient_shares","more_than_one_third_val_power_change","rebond_unval","send_vsc_without_downtime_ack","consumer_send_maturation","consumer_send_maturation","consumer_update_val","consumer_update_val","more_than_one_third_val_power_change","rebond_unval","set_undel_hold_false","set_undel_hold_false","set_unval_hold_false","send_vsc_without_downtime_ack","complete_undel_in_endblock","rebond_unval","send_vsc_without_downtime_ack","consumer_send_maturation","consumer_send_maturation","consumer_send_maturation","insufficient_shares","consumer_del_val","consumer_add_val","consumer_update_val","insufficient_shares","complete_unval_in_endblock","complete_undel_in_endblock","send_vsc_without_downtime_ack","more_than_one_third_val_power_change","rebond_unval","set_undel_hold_false","set_undel_hold_false","set_undel_hold_false","set_undel_hold_false","set_undel_hold_false","set_undel_hold_false","send_vsc_without_downtime_ack","consumer_add_val","consumer_update_val","consumer_del_val","complete_undel_in_endblock","send_vsc_without_downtime_ack","complete_undel_in_endblock","send_vsc_without_downtime_ack","consumer_del_val","consumer_update_val","consumer_add_val","some_undels_expired_but_not_completed"]},{"meta":{"commit":"7ffd0c04e4205cbc9caf212abfe6c59ee43153bf"},"constants":{"P":"provider","C":"consumer","UNBONDING_SECONDS_P":70,"UNBONDING_SECONDS_C":50,"TRUSTING_SECONDS":49,"NUM_VALIDATORS":4,"MAX_VALIDATORS":2,"SLASH_DOUBLESIGN":0,"SLASH_DOWNTIME":0,"JAIL_SECONDS":999999999999999,"BLOCK_SECONDS":6,"INITIAL_DELEGATOR_TOKENS":10000000000000,"DELEGATE_AMT_MIN":1000,"DELEGATE_AMT_MAX":5000,"UNDELEGATE_AMT_MIN":1000,"UNDELEGATE_AMT_MAX":5000,"ISDOWNTIME_PROBABILITY":0.5,"MAX_NUM_PACKETS_FOR_DELIVER":6},"actions":[{"ix":0,"action":{"kind":"Delegate","val":2,"amt":4592},"partialState":{"h":1,"t":6,"tokens":[5000,4000,7592,2000],"delegation":[4000,3000,6592,1000],"delegatorTokens":9999999995408}},{"ix":1,"action":{"kind":"Undelegate","val":0,"amt":3611},"partialState":{"h":1,"t":6,"tokens":[1389,4000,7592,2000],"delegation":[389,3000,6592,1000],"delegatorTokens":9999999995408}},{"ix":2,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":3,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":4,"action":{"kind":"Delegate","val":2,"amt":1687},"partialState":{"h":1,"t":6,"tokens":[1389,4000,9279,2000],"delegation":[389,3000,8279,1000],"delegatorTokens":9999999993721}},{"ix":5,"action":{"kind":"ConsumerSlash","val":1,"infractionHeight":0,"isDowntime":true},"partialState":{"h":1,"t":6,"outstandingDowntime":[false,true,false,false]}},{"ix":6,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":2,"t":12,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,true,false,false]}},{"ix":7,"action":{"kind":"Delegate","val":3,"amt":4115},"partialState":{"h":1,"t":6,"tokens":[1389,4000,9279,6115],"delegation":[389,3000,8279,5115],"delegatorTokens":9999999989606}},{"ix":8,"action":{"kind":"Deliver","chain":"provider","numPackets":5},"partialState":{"h":1,"t":6,"tokens":[1389,4000,9279,6115],"delegation":[389,3000,8279,5115],"delegatorTokens":9999999989606,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":9,"action":{"kind":"Delegate","val":0,"amt":3675},"partialState":{"h":1,"t":6,"tokens":[5064,4000,9279,6115],"delegation":[4064,3000,8279,5115],"delegatorTokens":9999999985931}},{"ix":10,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":11,"action":{"kind":"Deliver","chain":"consumer","numPackets":2},"partialState":{"h":2,"t":12,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,true,false,false]}},{"ix":12,"action":{"kind":"Delegate","val":1,"amt":4235},"partialState":{"h":1,"t":6,"tokens":[5064,8235,9279,6115],"delegation":[4064,7235,8279,5115],"delegatorTokens":9999999981696}},{"ix":13,"action":{"kind":"ConsumerSlash","val":1,"infractionHeight":0,"isDowntime":true},"partialState":{"h":2,"t":12,"outstandingDowntime":[false,true,false,false]}},{"ix":14,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":2,"t":12,"tokens":[5064,8235,9279,6115],"delegation":[4064,7235,8279,5115],"delegatorTokens":9999999981696,"jailed":[null,null,null,null],"status":["unbonding","bonded","bonded","unbonded"]}},{"ix":15,"action":{"kind":"Undelegate","val":1,"amt":1662},"partialState":{"h":2,"t":12,"tokens":[5064,6573,9279,6115],"delegation":[4064,5573,8279,5115],"delegatorTokens":9999999981696}},{"ix":16,"action":{"kind":"Undelegate","val":1,"amt":2271},"partialState":{"h":2,"t":12,"tokens":[5064,4302,9279,6115],"delegation":[4064,3302,8279,5115],"delegatorTokens":9999999981696}},{"ix":17,"action":{"kind":"ConsumerSlash","val":2,"infractionHeight":1,"isDowntime":true},"partialState":{"h":2,"t":12,"outstandingDowntime":[false,true,true,false]}},{"ix":18,"action":{"kind":"Undelegate","val":3,"amt":1756},"partialState":{"h":2,"t":12,"tokens":[5064,4302,9279,4359],"delegation":[4064,3302,8279,3359],"delegatorTokens":9999999981696}},{"ix":19,"action":{"kind":"Deliver","chain":"consumer","numPackets":2},"partialState":{"h":2,"t":12,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,true,true,false]}},{"ix":20,"action":{"kind":"ConsumerSlash","val":3,"infractionHeight":0,"isDowntime":true},"partialState":{"h":2,"t":12,"outstandingDowntime":[false,true,true,true]}},{"ix":21,"action":{"kind":"Deliver","chain":"provider","numPackets":6},"partialState":{"h":2,"t":12,"tokens":[5064,4302,9279,4359],"delegation":[4064,3302,8279,3359],"delegatorTokens":9999999981696,"jailed":[null,null,null,null],"status":["unbonding","bonded","bonded","unbonded"]}},{"ix":22,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":23,"action":{"kind":"Deliver","chain":"provider","numPackets":6},"partialState":{"h":2,"t":12,"tokens":[5064,4302,9279,4359],"delegation":[4064,3302,8279,3359],"delegatorTokens":9999999981696,"jailed":[null,null,null,null],"status":["unbonding","bonded","bonded","unbonded"]}},{"ix":24,"action":{"kind":"Undelegate","val":3,"amt":2629},"partialState":{"h":2,"t":12,"tokens":[5064,4302,9279,1730],"delegation":[4064,3302,8279,730],"delegatorTokens":9999999981696}},{"ix":25,"action":{"kind":"Undelegate","val":0,"amt":4290},"partialState":{"h":2,"t":12,"tokens":[5064,4302,9279,1730],"delegation":[4064,3302,8279,730],"delegatorTokens":9999999981696}},{"ix":26,"action":{"kind":"Deliver","chain":"consumer","numPackets":6},"partialState":{"h":2,"t":12,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,true,true,true]}},{"ix":27,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":28,"action":{"kind":"Delegate","val":1,"amt":2508},"partialState":{"h":2,"t":12,"tokens":[5064,6810,9279,1730],"delegation":[4064,5810,8279,730],"delegatorTokens":9999999979188}},{"ix":29,"action":{"kind":"Undelegate","val":3,"amt":3083},"partialState":{"h":2,"t":12,"tokens":[5064,6810,9279,1730],"delegation":[4064,5810,8279,730],"delegatorTokens":9999999979188}},{"ix":30,"action":{"kind":"Undelegate","val":1,"amt":1562},"partialState":{"h":2,"t":12,"tokens":[5064,5248,9279,1730],"delegation":[4064,4248,8279,730],"delegatorTokens":9999999979188}},{"ix":31,"action":{"kind":"Deliver","chain":"consumer","numPackets":5},"partialState":{"h":2,"t":12,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,true,true,true]}},{"ix":32,"action":{"kind":"Delegate","val":3,"amt":1120},"partialState":{"h":2,"t":12,"tokens":[5064,5248,9279,2850],"delegation":[4064,4248,8279,1850],"delegatorTokens":9999999978068}},{"ix":33,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":3,"t":18,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,true,true,true]}},{"ix":34,"action":{"kind":"Delegate","val":2,"amt":3941},"partialState":{"h":2,"t":12,"tokens":[5064,5248,13220,2850],"delegation":[4064,4248,12220,1850],"delegatorTokens":9999999974127}},{"ix":35,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":3,"t":18,"tokens":[5064,5248,13220,2850],"delegation":[4064,4248,12220,1850],"delegatorTokens":9999999974127,"jailed":[null,null,null,null],"status":["unbonding","bonded","bonded","unbonded"]}},{"ix":36,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":4,"t":24,"tokens":[5064,5248,13220,2850],"delegation":[4064,4248,12220,1850],"delegatorTokens":9999999974127,"jailed":[null,null,null,null],"status":["unbonding","bonded","bonded","unbonded"]}},{"ix":37,"action":{"kind":"Deliver","chain":"provider","numPackets":3},"partialState":{"h":4,"t":24,"tokens":[5064,5248,13220,2850],"delegation":[4064,4248,12220,1850],"delegatorTokens":9999999974127,"jailed":[null,null,null,null],"status":["unbonding","bonded","bonded","unbonded"]}},{"ix":38,"action":{"kind":"Deliver","chain":"consumer","numPackets":4},"partialState":{"h":3,"t":18,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,true,true,true]}},{"ix":39,"action":{"kind":"Deliver","chain":"provider","numPackets":5},"partialState":{"h":4,"t":24,"tokens":[5064,5248,13220,2850],"delegation":[4064,4248,12220,1850],"delegatorTokens":9999999974127,"jailed":[null,null,null,null],"status":["unbonding","bonded","bonded","unbonded"]}},{"ix":40,"action":{"kind":"Delegate","val":2,"amt":4344},"partialState":{"h":4,"t":24,"tokens":[5064,5248,17564,2850],"delegation":[4064,4248,16564,1850],"delegatorTokens":9999999969783}},{"ix":41,"action":{"kind":"Delegate","val":3,"amt":1487},"partialState":{"h":4,"t":24,"tokens":[5064,5248,17564,4337],"delegation":[4064,4248,16564,3337],"delegatorTokens":9999999968296}},{"ix":42,"action":{"kind":"Undelegate","val":1,"amt":2646},"partialState":{"h":4,"t":24,"tokens":[5064,2602,17564,4337],"delegation":[4064,1602,16564,3337],"delegatorTokens":9999999968296}},{"ix":43,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":4,"t":24,"consumerPower":[null,5248,13220,null],"outstandingDowntime":[false,true,true,true]}},{"ix":44,"action":{"kind":"Deliver","chain":"provider","numPackets":1},"partialState":{"h":4,"t":24,"tokens":[5064,2602,17564,4337],"delegation":[4064,1602,16564,3337],"delegatorTokens":9999999968296,"jailed":[null,null,null,null],"status":["unbonding","bonded","bonded","unbonded"]}},{"ix":45,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":46,"action":{"kind":"Delegate","val":3,"amt":1894},"partialState":{"h":4,"t":24,"tokens":[5064,2602,17564,6231],"delegation":[4064,1602,16564,5231],"delegatorTokens":9999999966402}},{"ix":47,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":48,"action":{"kind":"Deliver","chain":"provider","numPackets":6},"partialState":{"h":4,"t":24,"tokens":[5064,2602,17564,6231],"delegation":[4064,1602,16564,5231],"delegatorTokens":9999999966402,"jailed":[null,null,null,null],"status":["unbonding","bonded","bonded","unbonded"]}},{"ix":49,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":5,"t":30,"tokens":[5064,2602,17564,6231],"delegation":[4064,1602,16564,5231],"delegatorTokens":9999999966402,"jailed":[null,1000000000000023,1000000000000023,1000000000000023],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":50,"action":{"kind":"Undelegate","val":0,"amt":2618},"partialState":{"h":5,"t":30,"tokens":[2446,2602,17564,6231],"delegation":[1446,1602,16564,5231],"delegatorTokens":9999999966402}},{"ix":51,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":6,"t":36,"tokens":[2446,2602,17564,6231],"delegation":[1446,1602,16564,5231],"delegatorTokens":9999999966402,"jailed":[null,1000000000000023,1000000000000023,1000000000000023],"status":["bonded","unbonding","unbonding","unbonding"]}},{"ix":52,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":7,"t":42,"tokens":[2446,2602,17564,6231],"delegation":[1446,1602,16564,5231],"delegatorTokens":9999999966402,"jailed":[null,1000000000000023,1000000000000023,1000000000000023],"status":["bonded","unbonding","unbonding","unbonding"]}},{"ix":53,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":5,"t":30,"consumerPower":[null,5248,13220,null],"outstandingDowntime":[false,true,true,true]}},{"ix":54,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":6,"t":36,"consumerPower":[null,5248,13220,null],"outstandingDowntime":[false,true,true,true]}},{"ix":55,"action":{"kind":"Delegate","val":2,"amt":4100},"partialState":{"h":7,"t":42,"tokens":[2446,2602,21664,6231],"delegation":[1446,1602,20664,5231],"delegatorTokens":9999999962302}},{"ix":56,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":8,"t":48,"tokens":[2446,2602,21664,6231],"delegation":[1446,1602,20664,5231],"delegatorTokens":9999999962302,"jailed":[null,1000000000000023,1000000000000023,1000000000000023],"status":["bonded","unbonding","unbonding","unbonding"]}},{"ix":57,"action":{"kind":"Delegate","val":3,"amt":1760},"partialState":{"h":8,"t":48,"tokens":[2446,2602,21664,7991],"delegation":[1446,1602,20664,6991],"delegatorTokens":9999999960542}},{"ix":58,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":59,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":9,"t":54,"tokens":[2446,2602,21664,7991],"delegation":[1446,1602,20664,6991],"delegatorTokens":9999999960542,"jailed":[null,1000000000000023,1000000000000023,1000000000000023],"status":["bonded","unbonding","unbonding","unbonding"]}},{"ix":60,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":7,"t":42,"consumerPower":[null,5248,13220,null],"outstandingDowntime":[false,true,true,true]}},{"ix":61,"action":{"kind":"Deliver","chain":"provider","numPackets":5},"partialState":{"h":9,"t":54,"tokens":[2446,2602,21664,7991],"delegation":[1446,1602,20664,6991],"delegatorTokens":9999999960542,"jailed":[null,1000000000000023,1000000000000023,1000000000000023],"status":["bonded","unbonding","unbonding","unbonding"]}},{"ix":62,"action":{"kind":"Delegate","val":0,"amt":1238},"partialState":{"h":9,"t":54,"tokens":[3684,2602,21664,7991],"delegation":[2684,1602,20664,6991],"delegatorTokens":9999999959304}},{"ix":63,"action":{"kind":"Deliver","chain":"provider","numPackets":1},"partialState":{"h":9,"t":54,"tokens":[3684,2602,21664,7991],"delegation":[2684,1602,20664,6991],"delegatorTokens":9999999959304,"jailed":[null,1000000000000023,1000000000000023,1000000000000023],"status":["bonded","unbonding","unbonding","unbonding"]}},{"ix":64,"action":{"kind":"Delegate","val":3,"amt":1295},"partialState":{"h":9,"t":54,"tokens":[3684,2602,21664,9286],"delegation":[2684,1602,20664,8286],"delegatorTokens":9999999958009}},{"ix":65,"action":{"kind":"Deliver","chain":"provider","numPackets":1},"partialState":{"h":9,"t":54,"tokens":[3684,2602,21664,9286],"delegation":[2684,1602,20664,8286],"delegatorTokens":9999999958009,"jailed":[null,1000000000000023,1000000000000023,1000000000000023],"status":["bonded","unbonding","unbonding","unbonding"]}},{"ix":66,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":67,"action":{"kind":"Undelegate","val":1,"amt":4328},"partialState":{"h":9,"t":54,"tokens":[3684,2602,21664,9286],"delegation":[2684,1602,20664,8286],"delegatorTokens":9999999958009}},{"ix":68,"action":{"kind":"Delegate","val":2,"amt":3348},"partialState":{"h":9,"t":54,"tokens":[3684,2602,25012,9286],"delegation":[2684,1602,24012,8286],"delegatorTokens":9999999954661}},{"ix":69,"action":{"kind":"Delegate","val":1,"amt":1129},"partialState":{"h":9,"t":54,"tokens":[3684,3731,25012,9286],"delegation":[2684,2731,24012,8286],"delegatorTokens":9999999953532}},{"ix":70,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":10,"t":60,"tokens":[3684,3731,25012,9286],"delegation":[2684,2731,24012,8286],"delegatorTokens":9999999953532,"jailed":[null,1000000000000023,1000000000000023,1000000000000023],"status":["bonded","unbonding","unbonding","unbonding"]}},{"ix":71,"action":{"kind":"Undelegate","val":2,"amt":3771},"partialState":{"h":10,"t":60,"tokens":[3684,3731,21241,9286],"delegation":[2684,2731,20241,8286],"delegatorTokens":9999999953532}},{"ix":72,"action":{"kind":"Deliver","chain":"consumer","numPackets":1},"partialState":{"h":7,"t":42,"consumerPower":[null,5248,13220,null],"outstandingDowntime":[false,false,false,false]}},{"ix":73,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":74,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":75,"action":{"kind":"Delegate","val":0,"amt":3343},"partialState":{"h":10,"t":60,"tokens":[7027,3731,21241,9286],"delegation":[6027,2731,20241,8286],"delegatorTokens":9999999950189}},{"ix":76,"action":{"kind":"Deliver","chain":"consumer","numPackets":6},"partialState":{"h":7,"t":42,"consumerPower":[null,5248,13220,null],"outstandingDowntime":[false,false,false,false]}},{"ix":77,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":78,"action":{"kind":"Delegate","val":0,"amt":1582},"partialState":{"h":10,"t":60,"tokens":[8609,3731,21241,9286],"delegation":[7609,2731,20241,8286],"delegatorTokens":9999999948607}},{"ix":79,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":8,"t":48,"consumerPower":[2446,null,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":80,"action":{"kind":"Delegate","val":2,"amt":3524},"partialState":{"h":10,"t":60,"tokens":[8609,3731,24765,9286],"delegation":[7609,2731,23765,8286],"delegatorTokens":9999999945083}},{"ix":81,"action":{"kind":"Deliver","chain":"consumer","numPackets":2},"partialState":{"h":8,"t":48,"consumerPower":[2446,null,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":82,"action":{"kind":"Deliver","chain":"provider","numPackets":6},"partialState":{"h":10,"t":60,"tokens":[8609,3731,24765,9286],"delegation":[7609,2731,23765,8286],"delegatorTokens":9999999945083,"jailed":[null,1000000000000023,1000000000000023,1000000000000023],"status":["bonded","unbonding","unbonding","unbonding"]}},{"ix":83,"action":{"kind":"Delegate","val":0,"amt":2224},"partialState":{"h":10,"t":60,"tokens":[10833,3731,24765,9286],"delegation":[9833,2731,23765,8286],"delegatorTokens":9999999942859}},{"ix":84,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":85,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":86,"action":{"kind":"Deliver","chain":"provider","numPackets":2},"partialState":{"h":10,"t":60,"tokens":[10833,3731,24765,9286],"delegation":[9833,2731,23765,8286],"delegatorTokens":9999999942859,"jailed":[null,1000000000000023,1000000000000023,1000000000000023],"status":["bonded","unbonding","unbonding","unbonding"]}},{"ix":87,"action":{"kind":"Delegate","val":1,"amt":3302},"partialState":{"h":10,"t":60,"tokens":[10833,7033,24765,9286],"delegation":[9833,6033,23765,8286],"delegatorTokens":9999999939557}},{"ix":88,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":9,"t":54,"consumerPower":[2446,null,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":89,"action":{"kind":"Delegate","val":2,"amt":1512},"partialState":{"h":10,"t":60,"tokens":[10833,7033,26277,9286],"delegation":[9833,6033,25277,8286],"delegatorTokens":9999999938045}},{"ix":90,"action":{"kind":"Deliver","chain":"consumer","numPackets":3},"partialState":{"h":9,"t":54,"consumerPower":[2446,null,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":91,"action":{"kind":"Deliver","chain":"consumer","numPackets":1},"partialState":{"h":9,"t":54,"consumerPower":[2446,null,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":92,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":93,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":10,"t":60,"consumerPower":[2446,null,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":94,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":11,"t":66,"consumerPower":[2446,null,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":95,"action":{"kind":"Deliver","chain":"provider","numPackets":5},"partialState":{"h":10,"t":60,"tokens":[10833,7033,26277,9286],"delegation":[9833,6033,25277,8286],"delegatorTokens":9999999938045,"jailed":[null,1000000000000023,1000000000000023,1000000000000023],"status":["bonded","unbonding","unbonding","unbonding"]}},{"ix":96,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":12,"t":72,"consumerPower":[2446,null,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":97,"action":{"kind":"Undelegate","val":0,"amt":1989},"partialState":{"h":10,"t":60,"tokens":[8844,7033,26277,9286],"delegation":[7844,6033,25277,8286],"delegatorTokens":9999999938045}},{"ix":98,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":13,"t":78,"consumerPower":[2446,null,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":99,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":100,"action":{"kind":"Undelegate","val":3,"amt":2976},"partialState":{"h":10,"t":60,"tokens":[8844,7033,26277,6310],"delegation":[7844,6033,25277,5310],"delegatorTokens":9999999938045}},{"ix":101,"action":{"kind":"Deliver","chain":"consumer","numPackets":3},"partialState":{"h":13,"t":78,"consumerPower":[2446,null,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":102,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":11,"t":66,"tokens":[8844,7033,26277,6310],"delegation":[7844,6033,25277,5310],"delegatorTokens":9999999938045,"jailed":[null,1000000000000023,1000000000000023,1000000000000023],"status":["bonded","unbonding","unbonding","unbonding"]}},{"ix":103,"action":{"kind":"Undelegate","val":3,"amt":1860},"partialState":{"h":11,"t":66,"tokens":[8844,7033,26277,4450],"delegation":[7844,6033,25277,3450],"delegatorTokens":9999999938045}},{"ix":104,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":105,"action":{"kind":"Delegate","val":3,"amt":3142},"partialState":{"h":11,"t":66,"tokens":[8844,7033,26277,7592],"delegation":[7844,6033,25277,6592],"delegatorTokens":9999999934903}},{"ix":106,"action":{"kind":"Deliver","chain":"consumer","numPackets":4},"partialState":{"h":13,"t":78,"consumerPower":[2446,null,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":107,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":12,"t":72,"tokens":[8844,7033,26277,7592],"delegation":[7844,6033,25277,6592],"delegatorTokens":9999999934903,"jailed":[null,1000000000000023,1000000000000023,1000000000000023],"status":["bonded","unbonding","unbonding","unbonding"]}},{"ix":108,"action":{"kind":"Delegate","val":3,"amt":4072},"partialState":{"h":12,"t":72,"tokens":[8844,7033,26277,11664],"delegation":[7844,6033,25277,10664],"delegatorTokens":9999999930831}},{"ix":109,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":14,"t":84,"consumerPower":[3684,null,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":110,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":111,"action":{"kind":"Undelegate","val":2,"amt":2137},"partialState":{"h":12,"t":72,"tokens":[8844,7033,24140,11664],"delegation":[7844,6033,23140,10664],"delegatorTokens":9999999930831}},{"ix":112,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":113,"action":{"kind":"Delegate","val":1,"amt":1438},"partialState":{"h":12,"t":72,"tokens":[8844,8471,24140,11664],"delegation":[7844,7471,23140,10664],"delegatorTokens":9999999929393}},{"ix":114,"action":{"kind":"Deliver","chain":"provider","numPackets":1},"partialState":{"h":12,"t":72,"tokens":[8844,8471,24140,11664],"delegation":[7844,7471,23140,10664],"delegatorTokens":9999999929393,"jailed":[null,1000000000000023,1000000000000023,1000000000000023],"status":["bonded","unbonding","unbonding","unbonding"]}},{"ix":115,"action":{"kind":"Delegate","val":1,"amt":1310},"partialState":{"h":12,"t":72,"tokens":[8844,9781,24140,11664],"delegation":[7844,8781,23140,10664],"delegatorTokens":9999999928083}},{"ix":116,"action":{"kind":"Deliver","chain":"consumer","numPackets":2},"partialState":{"h":14,"t":84,"consumerPower":[3684,null,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":117,"action":{"kind":"Deliver","chain":"consumer","numPackets":2},"partialState":{"h":14,"t":84,"consumerPower":[3684,null,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":118,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":15,"t":90,"consumerPower":[8844,null,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":119,"action":{"kind":"Delegate","val":0,"amt":4843},"partialState":{"h":12,"t":72,"tokens":[13687,9781,24140,11664],"delegation":[12687,8781,23140,10664],"delegatorTokens":9999999923240}},{"ix":120,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":16,"t":96,"consumerPower":[8844,null,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":121,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":17,"t":102,"consumerPower":[8844,null,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":122,"action":{"kind":"Deliver","chain":"provider","numPackets":3},"partialState":{"h":12,"t":72,"tokens":[13687,9781,24140,11664],"delegation":[12687,8781,23140,10664],"delegatorTokens":9999999923240,"jailed":[null,1000000000000023,1000000000000023,1000000000000023],"status":["bonded","unbonding","unbonding","unbonding"]}},{"ix":123,"action":{"kind":"Deliver","chain":"consumer","numPackets":1},"partialState":{"h":17,"t":102,"consumerPower":[8844,null,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":124,"action":{"kind":"Undelegate","val":0,"amt":1183},"partialState":{"h":12,"t":72,"tokens":[12504,9781,24140,11664],"delegation":[11504,8781,23140,10664],"delegatorTokens":9999999923240}},{"ix":125,"action":{"kind":"Undelegate","val":0,"amt":2565},"partialState":{"h":12,"t":72,"tokens":[9939,9781,24140,11664],"delegation":[8939,8781,23140,10664],"delegatorTokens":9999999923240}},{"ix":126,"action":{"kind":"Delegate","val":3,"amt":3281},"partialState":{"h":12,"t":72,"tokens":[9939,9781,24140,14945],"delegation":[8939,8781,23140,13945],"delegatorTokens":9999999919959}},{"ix":127,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":128,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":129,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":130,"action":{"kind":"Undelegate","val":3,"amt":4199},"partialState":{"h":12,"t":72,"tokens":[9939,9781,24140,10746],"delegation":[8939,8781,23140,9746],"delegatorTokens":9999999919959}},{"ix":131,"action":{"kind":"Delegate","val":0,"amt":2146},"partialState":{"h":12,"t":72,"tokens":[12085,9781,24140,10746],"delegation":[11085,8781,23140,9746],"delegatorTokens":9999999917813}},{"ix":132,"action":{"kind":"Deliver","chain":"provider","numPackets":5},"partialState":{"h":12,"t":72,"tokens":[12085,9781,24140,10746],"delegation":[11085,8781,23140,9746],"delegatorTokens":9999999917813,"jailed":[null,1000000000000023,1000000000000023,1000000000000023],"status":["bonded","unbonding","unbonding","unbonding"]}},{"ix":133,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":18,"t":108,"consumerPower":[8844,null,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":134,"action":{"kind":"Delegate","val":2,"amt":4641},"partialState":{"h":12,"t":72,"tokens":[12085,9781,28781,10746],"delegation":[11085,8781,27781,9746],"delegatorTokens":9999999913172}},{"ix":135,"action":{"kind":"Delegate","val":2,"amt":1218},"partialState":{"h":12,"t":72,"tokens":[12085,9781,29999,10746],"delegation":[11085,8781,28999,9746],"delegatorTokens":9999999911954}},{"ix":136,"action":{"kind":"Delegate","val":3,"amt":4408},"partialState":{"h":12,"t":72,"tokens":[12085,9781,29999,15154],"delegation":[11085,8781,28999,14154],"delegatorTokens":9999999907546}},{"ix":137,"action":{"kind":"Deliver","chain":"consumer","numPackets":4},"partialState":{"h":18,"t":108,"consumerPower":[8844,null,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":138,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":19,"t":114,"consumerPower":[8844,null,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":139,"action":{"kind":"Undelegate","val":0,"amt":4161},"partialState":{"h":12,"t":72,"tokens":[7924,9781,29999,15154],"delegation":[6924,8781,28999,14154],"delegatorTokens":9999999907546}},{"ix":140,"action":{"kind":"Deliver","chain":"provider","numPackets":4},"partialState":{"h":12,"t":72,"tokens":[7924,9781,29999,15154],"delegation":[6924,8781,28999,14154],"delegatorTokens":9999999907546,"jailed":[null,1000000000000023,1000000000000023,1000000000000023],"status":["bonded","unbonding","unbonding","unbonding"]}},{"ix":141,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":142,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":143,"action":{"kind":"Delegate","val":2,"amt":4806},"partialState":{"h":12,"t":72,"tokens":[7924,9781,34805,15154],"delegation":[6924,8781,33805,14154],"delegatorTokens":9999999902740}},{"ix":144,"action":{"kind":"Delegate","val":2,"amt":3182},"partialState":{"h":12,"t":72,"tokens":[7924,9781,37987,15154],"delegation":[6924,8781,36987,14154],"delegatorTokens":9999999899558}},{"ix":145,"action":{"kind":"Undelegate","val":0,"amt":1501},"partialState":{"h":12,"t":72,"tokens":[6423,9781,37987,15154],"delegation":[5423,8781,36987,14154],"delegatorTokens":9999999899558}},{"ix":146,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":147,"action":{"kind":"Delegate","val":1,"amt":4816},"partialState":{"h":12,"t":72,"tokens":[6423,14597,37987,15154],"delegation":[5423,13597,36987,14154],"delegatorTokens":9999999894742}},{"ix":148,"action":{"kind":"Deliver","chain":"consumer","numPackets":3},"partialState":{"h":19,"t":114,"consumerPower":[8844,null,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":149,"action":{"kind":"Delegate","val":0,"amt":1787},"partialState":{"h":12,"t":72,"tokens":[8210,14597,37987,15154],"delegation":[7210,13597,36987,14154],"delegatorTokens":9999999892955}},{"ix":150,"action":{"kind":"Deliver","chain":"provider","numPackets":3},"partialState":{"h":12,"t":72,"tokens":[8210,14597,37987,15154],"delegation":[7210,13597,36987,14154],"delegatorTokens":9999999892955,"jailed":[null,1000000000000023,1000000000000023,1000000000000023],"status":["bonded","unbonding","unbonding","unbonding"]}},{"ix":151,"action":{"kind":"Undelegate","val":0,"amt":1910},"partialState":{"h":12,"t":72,"tokens":[6300,14597,37987,15154],"delegation":[5300,13597,36987,14154],"delegatorTokens":9999999892955}},{"ix":152,"action":{"kind":"Delegate","val":0,"amt":3579},"partialState":{"h":12,"t":72,"tokens":[9879,14597,37987,15154],"delegation":[8879,13597,36987,14154],"delegatorTokens":9999999889376}},{"ix":153,"action":{"kind":"Undelegate","val":2,"amt":4216},"partialState":{"h":12,"t":72,"tokens":[9879,14597,33771,15154],"delegation":[8879,13597,32771,14154],"delegatorTokens":9999999889376}},{"ix":154,"action":{"kind":"Undelegate","val":1,"amt":2075},"partialState":{"h":12,"t":72,"tokens":[9879,12522,33771,15154],"delegation":[8879,11522,32771,14154],"delegatorTokens":9999999889376}},{"ix":155,"action":{"kind":"Undelegate","val":0,"amt":3071},"partialState":{"h":12,"t":72,"tokens":[6808,12522,33771,15154],"delegation":[5808,11522,32771,14154],"delegatorTokens":9999999889376}},{"ix":156,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":157,"action":{"kind":"Undelegate","val":2,"amt":1872},"partialState":{"h":12,"t":72,"tokens":[6808,12522,31899,15154],"delegation":[5808,11522,30899,14154],"delegatorTokens":9999999889376}},{"ix":158,"action":{"kind":"Undelegate","val":0,"amt":4807},"partialState":{"h":12,"t":72,"tokens":[2001,12522,31899,15154],"delegation":[1001,11522,30899,14154],"delegatorTokens":9999999889376}},{"ix":159,"action":{"kind":"Delegate","val":3,"amt":2996},"partialState":{"h":12,"t":72,"tokens":[2001,12522,31899,18150],"delegation":[1001,11522,30899,17150],"delegatorTokens":9999999886380}},{"ix":160,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":161,"action":{"kind":"Deliver","chain":"consumer","numPackets":1},"partialState":{"h":19,"t":114,"consumerPower":[8844,null,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":162,"action":{"kind":"Undelegate","val":3,"amt":1449},"partialState":{"h":12,"t":72,"tokens":[2001,12522,31899,16701],"delegation":[1001,11522,30899,15701],"delegatorTokens":9999999886380}},{"ix":163,"action":{"kind":"Delegate","val":3,"amt":1577},"partialState":{"h":12,"t":72,"tokens":[2001,12522,31899,18278],"delegation":[1001,11522,30899,17278],"delegatorTokens":9999999884803}},{"ix":164,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":13,"t":78,"tokens":[2001,12522,31899,18278],"delegation":[1001,11522,30899,17278],"delegatorTokens":9999999884803,"jailed":[null,1000000000000023,1000000000000023,1000000000000023],"status":["bonded","unbonding","unbonding","unbonding"]}},{"ix":165,"action":{"kind":"Deliver","chain":"provider","numPackets":3},"partialState":{"h":13,"t":78,"tokens":[2001,12522,31899,18278],"delegation":[1001,11522,30899,17278],"delegatorTokens":9999999884803,"jailed":[null,1000000000000023,1000000000000023,1000000000000023],"status":["bonded","unbonding","unbonding","unbonding"]}},{"ix":166,"action":{"kind":"Undelegate","val":3,"amt":3580},"partialState":{"h":13,"t":78,"tokens":[2001,12522,31899,14698],"delegation":[1001,11522,30899,13698],"delegatorTokens":9999999884803}},{"ix":167,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":168,"action":{"kind":"Deliver","chain":"consumer","numPackets":1},"partialState":{"h":19,"t":114,"consumerPower":[8844,null,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":169,"action":{"kind":"Delegate","val":1,"amt":1167},"partialState":{"h":13,"t":78,"tokens":[2001,13689,31899,14698],"delegation":[1001,12689,30899,13698],"delegatorTokens":9999999883636}},{"ix":170,"action":{"kind":"Deliver","chain":"consumer","numPackets":2},"partialState":{"h":19,"t":114,"consumerPower":[8844,null,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":171,"action":{"kind":"Deliver","chain":"provider","numPackets":2},"partialState":{"h":13,"t":78,"tokens":[2001,13689,31899,14698],"delegation":[1001,12689,30899,13698],"delegatorTokens":9999999883636,"jailed":[null,1000000000000023,1000000000000023,1000000000000023],"status":["bonded","unbonding","unbonding","unbonding"]}},{"ix":172,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":14,"t":84,"tokens":[2001,13689,31899,14698],"delegation":[1001,12689,30899,13698],"delegatorTokens":9999999887247,"jailed":[null,1000000000000023,1000000000000023,1000000000000023],"status":["bonded","unbonding","unbonding","unbonding"]}},{"ix":173,"action":{"kind":"Deliver","chain":"provider","numPackets":2},"partialState":{"h":14,"t":84,"tokens":[2001,13689,31899,14698],"delegation":[1001,12689,30899,13698],"delegatorTokens":9999999887247,"jailed":[null,1000000000000023,1000000000000023,1000000000000023],"status":["bonded","unbonding","unbonding","unbonding"]}},{"ix":174,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":175,"action":{"kind":"Undelegate","val":2,"amt":4319},"partialState":{"h":14,"t":84,"tokens":[2001,13689,27580,14698],"delegation":[1001,12689,26580,13698],"delegatorTokens":9999999887247}},{"ix":176,"action":{"kind":"Deliver","chain":"provider","numPackets":6},"partialState":{"h":14,"t":84,"tokens":[2001,13689,27580,14698],"delegation":[1001,12689,26580,13698],"delegatorTokens":9999999887247,"jailed":[null,1000000000000023,1000000000000023,1000000000000023],"status":["bonded","unbonding","unbonding","unbonding"]}},{"ix":177,"action":{"kind":"Undelegate","val":0,"amt":3194},"partialState":{"h":14,"t":84,"tokens":[2001,13689,27580,14698],"delegation":[1001,12689,26580,13698],"delegatorTokens":9999999887247}},{"ix":178,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":15,"t":90,"tokens":[2001,13689,27580,14698],"delegation":[1001,12689,26580,13698],"delegatorTokens":9999999897127,"jailed":[null,1000000000000023,1000000000000023,1000000000000023],"status":["bonded","unbonding","unbonding","unbonding"]}},{"ix":179,"action":{"kind":"Deliver","chain":"consumer","numPackets":3},"partialState":{"h":19,"t":114,"consumerPower":[8844,null,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":180,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":20,"t":120,"consumerPower":[2001,null,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":181,"action":{"kind":"Delegate","val":1,"amt":1103},"partialState":{"h":15,"t":90,"tokens":[2001,14792,27580,14698],"delegation":[1001,13792,26580,13698],"delegatorTokens":9999999896024}},{"ix":182,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":183,"action":{"kind":"Delegate","val":3,"amt":3412},"partialState":{"h":15,"t":90,"tokens":[2001,14792,27580,18110],"delegation":[1001,13792,26580,17110],"delegatorTokens":9999999892612}},{"ix":184,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":21,"t":126,"consumerPower":[2001,null,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":185,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":16,"t":96,"tokens":[2001,14792,27580,18110],"delegation":[1001,13792,26580,17110],"delegatorTokens":9999999892612,"jailed":[null,1000000000000023,1000000000000023,1000000000000023],"status":["bonded","unbonding","unbonding","unbonding"]}},{"ix":186,"action":{"kind":"Undelegate","val":2,"amt":1597},"partialState":{"h":16,"t":96,"tokens":[2001,14792,25983,18110],"delegation":[1001,13792,24983,17110],"delegatorTokens":9999999892612}},{"ix":187,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":22,"t":132,"consumerPower":[2001,null,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":188,"action":{"kind":"Deliver","chain":"consumer","numPackets":6},"partialState":{"h":22,"t":132,"consumerPower":[2001,null,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":189,"action":{"kind":"Deliver","chain":"provider","numPackets":1},"partialState":{"h":16,"t":96,"tokens":[2001,14792,25983,18110],"delegation":[1001,13792,24983,17110],"delegatorTokens":9999999892612,"jailed":[null,1000000000000023,1000000000000023,1000000000000023],"status":["bonded","unbonding","unbonding","unbonding"]}},{"ix":190,"action":{"kind":"Deliver","chain":"provider","numPackets":4},"partialState":{"h":16,"t":96,"tokens":[2001,14792,25983,18110],"delegation":[1001,13792,24983,17110],"delegatorTokens":9999999892612,"jailed":[null,1000000000000023,1000000000000023,1000000000000023],"status":["bonded","unbonding","unbonding","unbonding"]}},{"ix":191,"action":{"kind":"Deliver","chain":"consumer","numPackets":5},"partialState":{"h":22,"t":132,"consumerPower":[2001,null,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":192,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":193,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":23,"t":138,"consumerPower":[2001,null,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":194,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":17,"t":102,"tokens":[2001,14792,25983,18110],"delegation":[1001,13792,24983,17110],"delegatorTokens":9999999895258,"jailed":[null,1000000000000023,1000000000000023,1000000000000023],"status":["bonded","unbonded","unbonding","unbonding"]}},{"ix":195,"action":{"kind":"Deliver","chain":"provider","numPackets":5},"partialState":{"h":17,"t":102,"tokens":[2001,14792,25983,18110],"delegation":[1001,13792,24983,17110],"delegatorTokens":9999999895258,"jailed":[null,1000000000000023,1000000000000023,1000000000000023],"status":["bonded","unbonded","unbonding","unbonding"]}},{"ix":196,"action":{"kind":"Undelegate","val":3,"amt":3298},"partialState":{"h":17,"t":102,"tokens":[2001,14792,25983,14812],"delegation":[1001,13792,24983,13812],"delegatorTokens":9999999895258}},{"ix":197,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":198,"action":{"kind":"Deliver","chain":"provider","numPackets":5},"partialState":{"h":17,"t":102,"tokens":[2001,14792,25983,14812],"delegation":[1001,13792,24983,13812],"delegatorTokens":9999999895258,"jailed":[null,1000000000000023,1000000000000023,1000000000000023],"status":["bonded","unbonded","unbonding","unbonding"]}},{"ix":199,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":18,"t":108,"tokens":[2001,14792,25983,14812],"delegation":[1001,13792,24983,13812],"delegatorTokens":9999999897876,"jailed":[null,1000000000000023,1000000000000023,1000000000000023],"status":["bonded","unbonded","unbonded","unbonded"]}}],"events":["send_downtime_slash_request","downtime_slash_request_outstanding","more_than_one_third_val_power_change","send_vsc_without_downtime_ack","send_downtime_slash_request","send_downtime_slash_request","insufficient_shares","insufficient_shares","send_vsc_without_downtime_ack","consumer_del_val","consumer_update_val","consumer_add_val","receive_downtime_slash_request","jail","receive_downtime_slash_request","jail","receive_downtime_slash_request","jail","send_vsc_with_downtime_ack","more_than_one_third_val_power_change","rebond_unval","send_vsc_without_downtime_ack","insufficient_shares","send_vsc_without_downtime_ack","receive_downtime_slash_ack","receive_downtime_slash_ack","receive_downtime_slash_ack","consumer_del_val","consumer_del_val","consumer_del_val","consumer_add_val","consumer_send_maturation","consumer_send_maturation","send_vsc_without_downtime_ack","send_vsc_not_because_change","send_vsc_without_downtime_ack","consumer_update_val","consumer_update_val","consumer_send_maturation","consumer_send_maturation","set_undel_hold_false","set_undel_hold_false","set_undel_hold_false","set_undel_hold_false","set_undel_hold_false","set_undel_hold_false","set_undel_hold_false","set_unval_hold_false","set_undel_hold_false","set_unval_hold_false","set_unval_hold_false","send_vsc_without_downtime_ack","complete_undel_in_endblock","send_vsc_not_because_change","send_vsc_without_downtime_ack","insufficient_shares","complete_undel_in_endblock","send_vsc_not_because_change","send_vsc_without_downtime_ack","consumer_update_val","consumer_send_maturation","complete_unval_in_endblock","complete_undel_in_endblock","send_vsc_not_because_change","send_vsc_without_downtime_ack","complete_unval_in_endblock","complete_unval_in_endblock","complete_undel_in_endblock","send_vsc_not_because_change","send_vsc_without_downtime_ack"]},{"meta":{"commit":"7ffd0c04e4205cbc9caf212abfe6c59ee43153bf"},"constants":{"P":"provider","C":"consumer","UNBONDING_SECONDS_P":70,"UNBONDING_SECONDS_C":50,"TRUSTING_SECONDS":49,"NUM_VALIDATORS":4,"MAX_VALIDATORS":2,"SLASH_DOUBLESIGN":0,"SLASH_DOWNTIME":0,"JAIL_SECONDS":999999999999999,"BLOCK_SECONDS":6,"INITIAL_DELEGATOR_TOKENS":10000000000000,"DELEGATE_AMT_MIN":1000,"DELEGATE_AMT_MAX":5000,"UNDELEGATE_AMT_MIN":1000,"UNDELEGATE_AMT_MAX":5000,"ISDOWNTIME_PROBABILITY":0.5,"MAX_NUM_PACKETS_FOR_DELIVER":6},"actions":[{"ix":0,"action":{"kind":"Undelegate","val":2,"amt":1985},"partialState":{"h":1,"t":6,"tokens":[5000,4000,1015,2000],"delegation":[4000,3000,15,1000],"delegatorTokens":10000000000000}},{"ix":1,"action":{"kind":"ConsumerSlash","val":1,"infractionHeight":0,"isDowntime":false},"partialState":{"h":1,"t":6,"outstandingDowntime":[false,false,false,false]}},{"ix":2,"action":{"kind":"Undelegate","val":1,"amt":2051},"partialState":{"h":1,"t":6,"tokens":[5000,1949,1015,2000],"delegation":[4000,949,15,1000],"delegatorTokens":10000000000000}},{"ix":3,"action":{"kind":"Deliver","chain":"consumer","numPackets":2},"partialState":{"h":1,"t":6,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":4,"action":{"kind":"ConsumerSlash","val":3,"infractionHeight":0,"isDowntime":true},"partialState":{"h":1,"t":6,"outstandingDowntime":[false,false,false,true]}},{"ix":5,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":2,"t":12,"tokens":[5000,1949,1015,2000],"delegation":[4000,949,15,1000],"delegatorTokens":10000000000000,"jailed":[null,null,null,null],"status":["bonded","unbonding","unbonded","bonded"]}},{"ix":6,"action":{"kind":"Delegate","val":1,"amt":4859},"partialState":{"h":2,"t":12,"tokens":[5000,6808,1015,2000],"delegation":[4000,5808,15,1000],"delegatorTokens":9999999995141}},{"ix":7,"action":{"kind":"ConsumerSlash","val":3,"infractionHeight":0,"isDowntime":true},"partialState":{"h":1,"t":6,"outstandingDowntime":[false,false,false,true]}},{"ix":8,"action":{"kind":"Undelegate","val":1,"amt":1471},"partialState":{"h":2,"t":12,"tokens":[5000,5337,1015,2000],"delegation":[4000,4337,15,1000],"delegatorTokens":9999999995141}},{"ix":9,"action":{"kind":"Deliver","chain":"provider","numPackets":4},"partialState":{"h":2,"t":12,"tokens":[5000,5337,1015,2000],"delegation":[4000,4337,15,1000],"delegatorTokens":9999999995141,"jailed":[null,null,null,null],"status":["bonded","unbonding","unbonded","bonded"]}},{"ix":10,"action":{"kind":"Undelegate","val":1,"amt":1320},"partialState":{"h":2,"t":12,"tokens":[5000,4017,1015,2000],"delegation":[4000,3017,15,1000],"delegatorTokens":9999999995141}},{"ix":11,"action":{"kind":"Undelegate","val":2,"amt":1898},"partialState":{"h":2,"t":12,"tokens":[5000,4017,1015,2000],"delegation":[4000,3017,15,1000],"delegatorTokens":9999999995141}},{"ix":12,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":2,"t":12,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,false,false,true]}},{"ix":13,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":3,"t":18,"tokens":[5000,4017,1015,2000],"delegation":[4000,3017,15,1000],"delegatorTokens":9999999995141,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonding"]}},{"ix":14,"action":{"kind":"ConsumerSlash","val":1,"infractionHeight":0,"isDowntime":true},"partialState":{"h":2,"t":12,"outstandingDowntime":[false,true,false,true]}},{"ix":15,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":16,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":4,"t":24,"tokens":[5000,4017,1015,2000],"delegation":[4000,3017,15,1000],"delegatorTokens":9999999995141,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonding"]}},{"ix":17,"action":{"kind":"Delegate","val":0,"amt":1617},"partialState":{"h":4,"t":24,"tokens":[6617,4017,1015,2000],"delegation":[5617,3017,15,1000],"delegatorTokens":9999999993524}},{"ix":18,"action":{"kind":"Deliver","chain":"provider","numPackets":2},"partialState":{"h":4,"t":24,"tokens":[6617,4017,1015,2000],"delegation":[5617,3017,15,1000],"delegatorTokens":9999999993524,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonding"]}},{"ix":19,"action":{"kind":"Undelegate","val":0,"amt":4438},"partialState":{"h":4,"t":24,"tokens":[2179,4017,1015,2000],"delegation":[1179,3017,15,1000],"delegatorTokens":9999999993524}},{"ix":20,"action":{"kind":"Undelegate","val":3,"amt":1784},"partialState":{"h":4,"t":24,"tokens":[2179,4017,1015,2000],"delegation":[1179,3017,15,1000],"delegatorTokens":9999999993524}},{"ix":21,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":22,"action":{"kind":"Undelegate","val":3,"amt":1794},"partialState":{"h":4,"t":24,"tokens":[2179,4017,1015,2000],"delegation":[1179,3017,15,1000],"delegatorTokens":9999999993524}},{"ix":23,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":24,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":25,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":3,"t":18,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,true,false,true]}},{"ix":26,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":4,"t":24,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,true,false,true]}},{"ix":27,"action":{"kind":"Deliver","chain":"consumer","numPackets":6},"partialState":{"h":4,"t":24,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,true,false,true]}},{"ix":28,"action":{"kind":"Delegate","val":2,"amt":1287},"partialState":{"h":4,"t":24,"tokens":[2179,4017,2302,2000],"delegation":[1179,3017,1302,1000],"delegatorTokens":9999999992237}},{"ix":29,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":30,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":31,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":5,"t":30,"tokens":[2179,4017,2302,2000],"delegation":[1179,3017,1302,1000],"delegatorTokens":9999999992237,"jailed":[null,null,null,null],"status":["unbonding","bonded","bonded","unbonding"]}},{"ix":32,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":6,"t":36,"tokens":[2179,4017,2302,2000],"delegation":[1179,3017,1302,1000],"delegatorTokens":9999999992237,"jailed":[null,null,null,null],"status":["unbonding","bonded","bonded","unbonding"]}},{"ix":33,"action":{"kind":"Delegate","val":2,"amt":1315},"partialState":{"h":6,"t":36,"tokens":[2179,4017,3617,2000],"delegation":[1179,3017,2617,1000],"delegatorTokens":9999999990922}},{"ix":34,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":5,"t":30,"consumerPower":[5000,4017,null,null],"outstandingDowntime":[false,true,false,true]}},{"ix":35,"action":{"kind":"Undelegate","val":1,"amt":4568},"partialState":{"h":6,"t":36,"tokens":[2179,4017,3617,2000],"delegation":[1179,3017,2617,1000],"delegatorTokens":9999999990922}},{"ix":36,"action":{"kind":"Delegate","val":3,"amt":1519},"partialState":{"h":6,"t":36,"tokens":[2179,4017,3617,3519],"delegation":[1179,3017,2617,2519],"delegatorTokens":9999999989403}},{"ix":37,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":7,"t":42,"tokens":[2179,4017,3617,3519],"delegation":[1179,3017,2617,2519],"delegatorTokens":9999999989403,"jailed":[null,null,null,null],"status":["unbonding","bonded","bonded","unbonding"]}},{"ix":38,"action":{"kind":"Undelegate","val":3,"amt":4384},"partialState":{"h":7,"t":42,"tokens":[2179,4017,3617,3519],"delegation":[1179,3017,2617,2519],"delegatorTokens":9999999989403}},{"ix":39,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":8,"t":48,"tokens":[2179,4017,3617,3519],"delegation":[1179,3017,2617,2519],"delegatorTokens":9999999989403,"jailed":[null,null,null,null],"status":["unbonding","bonded","bonded","unbonding"]}},{"ix":40,"action":{"kind":"Deliver","chain":"consumer","numPackets":1},"partialState":{"h":5,"t":30,"consumerPower":[5000,4017,null,null],"outstandingDowntime":[false,true,false,true]}},{"ix":41,"action":{"kind":"ConsumerSlash","val":3,"infractionHeight":1,"isDowntime":false},"partialState":{"h":5,"t":30,"outstandingDowntime":[false,true,false,true]}},{"ix":42,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":43,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":6,"t":36,"consumerPower":[null,4017,2302,null],"outstandingDowntime":[false,true,false,true]}},{"ix":44,"action":{"kind":"Delegate","val":3,"amt":3540},"partialState":{"h":8,"t":48,"tokens":[2179,4017,3617,7059],"delegation":[1179,3017,2617,6059],"delegatorTokens":9999999985863}},{"ix":45,"action":{"kind":"Delegate","val":0,"amt":3701},"partialState":{"h":8,"t":48,"tokens":[5880,4017,3617,7059],"delegation":[4880,3017,2617,6059],"delegatorTokens":9999999982162}},{"ix":46,"action":{"kind":"Deliver","chain":"consumer","numPackets":6},"partialState":{"h":6,"t":36,"consumerPower":[null,4017,2302,null],"outstandingDowntime":[false,true,false,true]}},{"ix":47,"action":{"kind":"Undelegate","val":2,"amt":2430},"partialState":{"h":8,"t":48,"tokens":[5880,4017,1187,7059],"delegation":[4880,3017,187,6059],"delegatorTokens":9999999982162}},{"ix":48,"action":{"kind":"Deliver","chain":"provider","numPackets":2},"partialState":{"h":8,"t":48,"tokens":[5880,4017,1187,7059],"delegation":[4880,3017,187,6059],"delegatorTokens":9999999982162,"jailed":[null,null,null,null],"status":["unbonding","bonded","bonded","unbonding"]}},{"ix":49,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":7,"t":42,"consumerPower":[null,4017,3617,null],"outstandingDowntime":[false,true,false,true]}},{"ix":50,"action":{"kind":"Deliver","chain":"consumer","numPackets":1},"partialState":{"h":7,"t":42,"consumerPower":[null,4017,3617,null],"outstandingDowntime":[false,true,false,true]}},{"ix":51,"action":{"kind":"Deliver","chain":"provider","numPackets":3},"partialState":{"h":8,"t":48,"tokens":[5880,4017,1187,7059],"delegation":[4880,3017,187,6059],"delegatorTokens":9999999982162,"jailed":[null,null,null,null],"status":["unbonding","bonded","bonded","unbonding"]}},{"ix":52,"action":{"kind":"ConsumerSlash","val":2,"infractionHeight":1,"isDowntime":true},"partialState":{"h":7,"t":42,"outstandingDowntime":[false,true,true,true]}},{"ix":53,"action":{"kind":"Deliver","chain":"provider","numPackets":4},"partialState":{"h":8,"t":48,"tokens":[5880,4017,1187,7059],"delegation":[4880,3017,187,6059],"delegatorTokens":9999999982162,"jailed":[null,null,null,null],"status":["unbonding","bonded","bonded","unbonding"]}},{"ix":54,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":8,"t":48,"consumerPower":[null,4017,3617,null],"outstandingDowntime":[false,true,true,true]}},{"ix":55,"action":{"kind":"Undelegate","val":0,"amt":4609},"partialState":{"h":8,"t":48,"tokens":[1271,4017,1187,7059],"delegation":[271,3017,187,6059],"delegatorTokens":9999999982162}},{"ix":56,"action":{"kind":"Undelegate","val":2,"amt":4786},"partialState":{"h":8,"t":48,"tokens":[1271,4017,1187,7059],"delegation":[271,3017,187,6059],"delegatorTokens":9999999982162}},{"ix":57,"action":{"kind":"Undelegate","val":2,"amt":4223},"partialState":{"h":8,"t":48,"tokens":[1271,4017,1187,7059],"delegation":[271,3017,187,6059],"delegatorTokens":9999999982162}},{"ix":58,"action":{"kind":"Delegate","val":2,"amt":3127},"partialState":{"h":8,"t":48,"tokens":[1271,4017,4314,7059],"delegation":[271,3017,3314,6059],"delegatorTokens":9999999979035}},{"ix":59,"action":{"kind":"Delegate","val":3,"amt":1131},"partialState":{"h":8,"t":48,"tokens":[1271,4017,4314,8190],"delegation":[271,3017,3314,7190],"delegatorTokens":9999999977904}},{"ix":60,"action":{"kind":"Deliver","chain":"provider","numPackets":3},"partialState":{"h":8,"t":48,"tokens":[1271,4017,4314,8190],"delegation":[271,3017,3314,7190],"delegatorTokens":9999999977904,"jailed":[null,null,null,null],"status":["unbonding","bonded","bonded","unbonding"]}},{"ix":61,"action":{"kind":"Delegate","val":1,"amt":4302},"partialState":{"h":8,"t":48,"tokens":[1271,8319,4314,8190],"delegation":[271,7319,3314,7190],"delegatorTokens":9999999973602}},{"ix":62,"action":{"kind":"Delegate","val":0,"amt":4767},"partialState":{"h":8,"t":48,"tokens":[6038,8319,4314,8190],"delegation":[5038,7319,3314,7190],"delegatorTokens":9999999968835}},{"ix":63,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":9,"t":54,"tokens":[6038,8319,4314,8190],"delegation":[5038,7319,3314,7190],"delegatorTokens":9999999968835,"jailed":[null,1000000000000047,null,1000000000000047],"status":["unbonding","bonded","unbonding","bonded"]}},{"ix":64,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":65,"action":{"kind":"Undelegate","val":3,"amt":4630},"partialState":{"h":9,"t":54,"tokens":[6038,8319,4314,3560],"delegation":[5038,7319,3314,2560],"delegatorTokens":9999999968835}},{"ix":66,"action":{"kind":"Deliver","chain":"provider","numPackets":6},"partialState":{"h":9,"t":54,"tokens":[6038,8319,4314,3560],"delegation":[5038,7319,3314,2560],"delegatorTokens":9999999968835,"jailed":[null,1000000000000047,null,1000000000000047],"status":["unbonding","bonded","unbonding","bonded"]}},{"ix":67,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":9,"t":54,"consumerPower":[null,4017,3617,null],"outstandingDowntime":[false,true,true,true]}},{"ix":68,"action":{"kind":"Delegate","val":2,"amt":4913},"partialState":{"h":9,"t":54,"tokens":[6038,8319,9227,3560],"delegation":[5038,7319,8227,2560],"delegatorTokens":9999999963922}},{"ix":69,"action":{"kind":"Undelegate","val":0,"amt":2226},"partialState":{"h":9,"t":54,"tokens":[3812,8319,9227,3560],"delegation":[2812,7319,8227,2560],"delegatorTokens":9999999963922}},{"ix":70,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":10,"t":60,"consumerPower":[null,4017,3617,null],"outstandingDowntime":[false,true,true,true]}},{"ix":71,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":11,"t":66,"consumerPower":[null,4017,3617,null],"outstandingDowntime":[false,true,true,true]}},{"ix":72,"action":{"kind":"Undelegate","val":0,"amt":1266},"partialState":{"h":9,"t":54,"tokens":[2546,8319,9227,3560],"delegation":[1546,7319,8227,2560],"delegatorTokens":9999999963922}},{"ix":73,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":12,"t":72,"consumerPower":[null,4017,3617,null],"outstandingDowntime":[false,true,true,true]}},{"ix":74,"action":{"kind":"Delegate","val":2,"amt":4583},"partialState":{"h":9,"t":54,"tokens":[2546,8319,13810,3560],"delegation":[1546,7319,12810,2560],"delegatorTokens":9999999959339}},{"ix":75,"action":{"kind":"Delegate","val":2,"amt":2660},"partialState":{"h":9,"t":54,"tokens":[2546,8319,16470,3560],"delegation":[1546,7319,15470,2560],"delegatorTokens":9999999956679}},{"ix":76,"action":{"kind":"Delegate","val":0,"amt":1463},"partialState":{"h":9,"t":54,"tokens":[4009,8319,16470,3560],"delegation":[3009,7319,15470,2560],"delegatorTokens":9999999955216}},{"ix":77,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":78,"action":{"kind":"Delegate","val":3,"amt":3153},"partialState":{"h":9,"t":54,"tokens":[4009,8319,16470,6713],"delegation":[3009,7319,15470,5713],"delegatorTokens":9999999952063}},{"ix":79,"action":{"kind":"Undelegate","val":3,"amt":4869},"partialState":{"h":9,"t":54,"tokens":[4009,8319,16470,1844],"delegation":[3009,7319,15470,844],"delegatorTokens":9999999952063}},{"ix":80,"action":{"kind":"Undelegate","val":2,"amt":4664},"partialState":{"h":9,"t":54,"tokens":[4009,8319,11806,1844],"delegation":[3009,7319,10806,844],"delegatorTokens":9999999952063}},{"ix":81,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":10,"t":60,"tokens":[4009,8319,11806,1844],"delegation":[3009,7319,10806,844],"delegatorTokens":9999999952063,"jailed":[null,1000000000000047,null,1000000000000047],"status":["bonded","unbonding","bonded","unbonding"]}},{"ix":82,"action":{"kind":"Deliver","chain":"provider","numPackets":3},"partialState":{"h":10,"t":60,"tokens":[4009,8319,11806,1844],"delegation":[3009,7319,10806,844],"delegatorTokens":9999999952063,"jailed":[null,1000000000000047,null,1000000000000047],"status":["bonded","unbonding","bonded","unbonding"]}},{"ix":83,"action":{"kind":"Deliver","chain":"consumer","numPackets":4},"partialState":{"h":12,"t":72,"consumerPower":[null,4017,3617,null],"outstandingDowntime":[false,false,true,false]}},{"ix":84,"action":{"kind":"Undelegate","val":1,"amt":3395},"partialState":{"h":10,"t":60,"tokens":[4009,4924,11806,1844],"delegation":[3009,3924,10806,844],"delegatorTokens":9999999952063}},{"ix":85,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":13,"t":78,"consumerPower":[null,8319,null,8190],"outstandingDowntime":[false,false,true,false]}},{"ix":86,"action":{"kind":"Undelegate","val":1,"amt":1515},"partialState":{"h":10,"t":60,"tokens":[4009,3409,11806,1844],"delegation":[3009,2409,10806,844],"delegatorTokens":9999999952063}},{"ix":87,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":11,"t":66,"tokens":[4009,3409,11806,1844],"delegation":[3009,2409,10806,844],"delegatorTokens":9999999952063,"jailed":[null,1000000000000047,1000000000000059,1000000000000047],"status":["bonded","unbonding","bonded","unbonding"]}},{"ix":88,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":12,"t":72,"tokens":[4009,3409,11806,1844],"delegation":[3009,2409,10806,844],"delegatorTokens":9999999952063,"jailed":[null,1000000000000047,1000000000000059,1000000000000047],"status":["bonded","unbonding","unbonding","unbonding"]}},{"ix":89,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":13,"t":78,"tokens":[4009,3409,11806,1844],"delegation":[3009,2409,10806,844],"delegatorTokens":9999999952063,"jailed":[null,1000000000000047,1000000000000059,1000000000000047],"status":["bonded","unbonding","unbonding","unbonding"]}},{"ix":90,"action":{"kind":"Deliver","chain":"consumer","numPackets":4},"partialState":{"h":13,"t":78,"consumerPower":[null,8319,null,8190],"outstandingDowntime":[false,false,false,false]}},{"ix":91,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":14,"t":84,"consumerPower":[4009,null,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":92,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":15,"t":90,"consumerPower":[4009,null,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":93,"action":{"kind":"Undelegate","val":0,"amt":2868},"partialState":{"h":13,"t":78,"tokens":[1141,3409,11806,1844],"delegation":[141,2409,10806,844],"delegatorTokens":9999999952063}},{"ix":94,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":16,"t":96,"consumerPower":[4009,null,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":95,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":14,"t":84,"tokens":[1141,3409,11806,1844],"delegation":[141,2409,10806,844],"delegatorTokens":9999999952063,"jailed":[null,1000000000000047,1000000000000059,1000000000000047],"status":["bonded","unbonding","unbonding","unbonding"]}},{"ix":96,"action":{"kind":"Undelegate","val":1,"amt":2955},"partialState":{"h":14,"t":84,"tokens":[1141,3409,11806,1844],"delegation":[141,2409,10806,844],"delegatorTokens":9999999952063}},{"ix":97,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":17,"t":102,"consumerPower":[4009,null,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":98,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":99,"action":{"kind":"Undelegate","val":3,"amt":4212},"partialState":{"h":14,"t":84,"tokens":[1141,3409,11806,1844],"delegation":[141,2409,10806,844],"delegatorTokens":9999999952063}},{"ix":100,"action":{"kind":"Delegate","val":3,"amt":2148},"partialState":{"h":14,"t":84,"tokens":[1141,3409,11806,3992],"delegation":[141,2409,10806,2992],"delegatorTokens":9999999949915}},{"ix":101,"action":{"kind":"Delegate","val":3,"amt":3187},"partialState":{"h":14,"t":84,"tokens":[1141,3409,11806,7179],"delegation":[141,2409,10806,6179],"delegatorTokens":9999999946728}},{"ix":102,"action":{"kind":"Deliver","chain":"provider","numPackets":1},"partialState":{"h":14,"t":84,"tokens":[1141,3409,11806,7179],"delegation":[141,2409,10806,6179],"delegatorTokens":9999999946728,"jailed":[null,1000000000000047,1000000000000059,1000000000000047],"status":["bonded","unbonding","unbonding","unbonding"]}},{"ix":103,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":18,"t":108,"consumerPower":[4009,null,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":104,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":105,"action":{"kind":"Undelegate","val":2,"amt":2388},"partialState":{"h":14,"t":84,"tokens":[1141,3409,9418,7179],"delegation":[141,2409,8418,6179],"delegatorTokens":9999999946728}},{"ix":106,"action":{"kind":"Undelegate","val":2,"amt":3726},"partialState":{"h":14,"t":84,"tokens":[1141,3409,5692,7179],"delegation":[141,2409,4692,6179],"delegatorTokens":9999999946728}},{"ix":107,"action":{"kind":"Delegate","val":2,"amt":2273},"partialState":{"h":14,"t":84,"tokens":[1141,3409,7965,7179],"delegation":[141,2409,6965,6179],"delegatorTokens":9999999944455}},{"ix":108,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":19,"t":114,"consumerPower":[4009,null,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":109,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":20,"t":120,"consumerPower":[4009,null,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":110,"action":{"kind":"Deliver","chain":"consumer","numPackets":6},"partialState":{"h":20,"t":120,"consumerPower":[4009,null,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":111,"action":{"kind":"Undelegate","val":3,"amt":3573},"partialState":{"h":14,"t":84,"tokens":[1141,3409,7965,3606],"delegation":[141,2409,6965,2606],"delegatorTokens":9999999944455}},{"ix":112,"action":{"kind":"Undelegate","val":0,"amt":4670},"partialState":{"h":14,"t":84,"tokens":[1141,3409,7965,3606],"delegation":[141,2409,6965,2606],"delegatorTokens":9999999944455}},{"ix":113,"action":{"kind":"Delegate","val":1,"amt":1789},"partialState":{"h":14,"t":84,"tokens":[1141,5198,7965,3606],"delegation":[141,4198,6965,2606],"delegatorTokens":9999999942666}},{"ix":114,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":21,"t":126,"consumerPower":[4009,null,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":115,"action":{"kind":"Deliver","chain":"consumer","numPackets":3},"partialState":{"h":21,"t":126,"consumerPower":[4009,null,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":116,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":117,"action":{"kind":"Deliver","chain":"provider","numPackets":5},"partialState":{"h":14,"t":84,"tokens":[1141,5198,7965,3606],"delegation":[141,4198,6965,2606],"delegatorTokens":9999999942666,"jailed":[null,1000000000000047,1000000000000059,1000000000000047],"status":["bonded","unbonding","unbonding","unbonding"]}},{"ix":118,"action":{"kind":"Delegate","val":3,"amt":2257},"partialState":{"h":14,"t":84,"tokens":[1141,5198,7965,5863],"delegation":[141,4198,6965,4863],"delegatorTokens":9999999940409}},{"ix":119,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":15,"t":90,"tokens":[1141,5198,7965,5863],"delegation":[141,4198,6965,4863],"delegatorTokens":9999999947236,"jailed":[null,1000000000000047,1000000000000059,1000000000000047],"status":["bonded","unbonding","unbonding","unbonding"]}},{"ix":120,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":16,"t":96,"tokens":[1141,5198,7965,5863],"delegation":[141,4198,6965,4863],"delegatorTokens":9999999947236,"jailed":[null,1000000000000047,1000000000000059,1000000000000047],"status":["bonded","unbonding","unbonding","unbonding"]}},{"ix":121,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":17,"t":102,"tokens":[1141,5198,7965,5863],"delegation":[141,4198,6965,4863],"delegatorTokens":9999999951674,"jailed":[null,1000000000000047,1000000000000059,1000000000000047],"status":["bonded","unbonding","unbonding","unbonding"]}},{"ix":122,"action":{"kind":"Deliver","chain":"provider","numPackets":3},"partialState":{"h":17,"t":102,"tokens":[1141,5198,7965,5863],"delegation":[141,4198,6965,4863],"delegatorTokens":9999999951674,"jailed":[null,1000000000000047,1000000000000059,1000000000000047],"status":["bonded","unbonding","unbonding","unbonding"]}},{"ix":123,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":124,"action":{"kind":"Delegate","val":2,"amt":4618},"partialState":{"h":17,"t":102,"tokens":[1141,5198,12583,5863],"delegation":[141,4198,11583,4863],"delegatorTokens":9999999947056}},{"ix":125,"action":{"kind":"Undelegate","val":2,"amt":3981},"partialState":{"h":17,"t":102,"tokens":[1141,5198,8602,5863],"delegation":[141,4198,7602,4863],"delegatorTokens":9999999947056}},{"ix":126,"action":{"kind":"Deliver","chain":"provider","numPackets":1},"partialState":{"h":17,"t":102,"tokens":[1141,5198,8602,5863],"delegation":[141,4198,7602,4863],"delegatorTokens":9999999947056,"jailed":[null,1000000000000047,1000000000000059,1000000000000047],"status":["bonded","unbonding","unbonding","unbonding"]}},{"ix":127,"action":{"kind":"Delegate","val":3,"amt":4138},"partialState":{"h":17,"t":102,"tokens":[1141,5198,8602,10001],"delegation":[141,4198,7602,9001],"delegatorTokens":9999999942918}},{"ix":128,"action":{"kind":"Undelegate","val":3,"amt":2247},"partialState":{"h":17,"t":102,"tokens":[1141,5198,8602,7754],"delegation":[141,4198,7602,6754],"delegatorTokens":9999999942918}},{"ix":129,"action":{"kind":"Undelegate","val":3,"amt":3694},"partialState":{"h":17,"t":102,"tokens":[1141,5198,8602,4060],"delegation":[141,4198,7602,3060],"delegatorTokens":9999999942918}},{"ix":130,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":131,"action":{"kind":"Undelegate","val":2,"amt":4671},"partialState":{"h":17,"t":102,"tokens":[1141,5198,3931,4060],"delegation":[141,4198,2931,3060],"delegatorTokens":9999999942918}},{"ix":132,"action":{"kind":"Undelegate","val":0,"amt":1607},"partialState":{"h":17,"t":102,"tokens":[1141,5198,3931,4060],"delegation":[141,4198,2931,3060],"delegatorTokens":9999999942918}},{"ix":133,"action":{"kind":"Delegate","val":2,"amt":4002},"partialState":{"h":17,"t":102,"tokens":[1141,5198,7933,4060],"delegation":[141,4198,6933,3060],"delegatorTokens":9999999938916}},{"ix":134,"action":{"kind":"Undelegate","val":3,"amt":4145},"partialState":{"h":17,"t":102,"tokens":[1141,5198,7933,4060],"delegation":[141,4198,6933,3060],"delegatorTokens":9999999938916}},{"ix":135,"action":{"kind":"Undelegate","val":1,"amt":2192},"partialState":{"h":17,"t":102,"tokens":[1141,3006,7933,4060],"delegation":[141,2006,6933,3060],"delegatorTokens":9999999938916}},{"ix":136,"action":{"kind":"Delegate","val":1,"amt":2311},"partialState":{"h":17,"t":102,"tokens":[1141,5317,7933,4060],"delegation":[141,4317,6933,3060],"delegatorTokens":9999999936605}},{"ix":137,"action":{"kind":"Undelegate","val":1,"amt":3263},"partialState":{"h":17,"t":102,"tokens":[1141,2054,7933,4060],"delegation":[141,1054,6933,3060],"delegatorTokens":9999999936605}},{"ix":138,"action":{"kind":"Deliver","chain":"provider","numPackets":2},"partialState":{"h":17,"t":102,"tokens":[1141,2054,7933,4060],"delegation":[141,1054,6933,3060],"delegatorTokens":9999999936605,"jailed":[null,1000000000000047,1000000000000059,1000000000000047],"status":["bonded","unbonding","unbonding","unbonding"]}},{"ix":139,"action":{"kind":"Delegate","val":0,"amt":1470},"partialState":{"h":17,"t":102,"tokens":[2611,2054,7933,4060],"delegation":[1611,1054,6933,3060],"delegatorTokens":9999999935135}},{"ix":140,"action":{"kind":"Deliver","chain":"provider","numPackets":4},"partialState":{"h":17,"t":102,"tokens":[2611,2054,7933,4060],"delegation":[1611,1054,6933,3060],"delegatorTokens":9999999935135,"jailed":[null,1000000000000047,1000000000000059,1000000000000047],"status":["bonded","unbonding","unbonding","unbonding"]}},{"ix":141,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":22,"t":132,"consumerPower":[4009,null,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":142,"action":{"kind":"Undelegate","val":3,"amt":1287},"partialState":{"h":17,"t":102,"tokens":[2611,2054,7933,2773],"delegation":[1611,1054,6933,1773],"delegatorTokens":9999999935135}},{"ix":143,"action":{"kind":"Delegate","val":0,"amt":1378},"partialState":{"h":17,"t":102,"tokens":[3989,2054,7933,2773],"delegation":[2989,1054,6933,1773],"delegatorTokens":9999999933757}},{"ix":144,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":23,"t":138,"consumerPower":[4009,null,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":145,"action":{"kind":"Deliver","chain":"provider","numPackets":4},"partialState":{"h":17,"t":102,"tokens":[3989,2054,7933,2773],"delegation":[2989,1054,6933,1773],"delegatorTokens":9999999933757,"jailed":[null,1000000000000047,1000000000000059,1000000000000047],"status":["bonded","unbonding","unbonding","unbonding"]}},{"ix":146,"action":{"kind":"Deliver","chain":"consumer","numPackets":4},"partialState":{"h":23,"t":138,"consumerPower":[4009,null,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":147,"action":{"kind":"Undelegate","val":1,"amt":1235},"partialState":{"h":17,"t":102,"tokens":[3989,2054,7933,2773],"delegation":[2989,1054,6933,1773],"delegatorTokens":9999999933757}},{"ix":148,"action":{"kind":"Undelegate","val":3,"amt":1630},"partialState":{"h":17,"t":102,"tokens":[3989,2054,7933,1143],"delegation":[2989,1054,6933,143],"delegatorTokens":9999999933757}},{"ix":149,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":18,"t":108,"tokens":[3989,2054,7933,1143],"delegation":[2989,1054,6933,143],"delegatorTokens":9999999933757,"jailed":[null,1000000000000047,1000000000000059,1000000000000047],"status":["bonded","unbonding","unbonding","unbonding"]}},{"ix":150,"action":{"kind":"Delegate","val":2,"amt":2869},"partialState":{"h":18,"t":108,"tokens":[3989,2054,10802,1143],"delegation":[2989,1054,9802,143],"delegatorTokens":9999999930888}},{"ix":151,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":24,"t":144,"consumerPower":[1141,null,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":152,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":153,"action":{"kind":"Deliver","chain":"consumer","numPackets":6},"partialState":{"h":24,"t":144,"consumerPower":[1141,null,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":154,"action":{"kind":"Delegate","val":2,"amt":3850},"partialState":{"h":18,"t":108,"tokens":[3989,2054,14652,1143],"delegation":[2989,1054,13652,143],"delegatorTokens":9999999927038}},{"ix":155,"action":{"kind":"Undelegate","val":0,"amt":3808},"partialState":{"h":18,"t":108,"tokens":[3989,2054,14652,1143],"delegation":[2989,1054,13652,143],"delegatorTokens":9999999927038}},{"ix":156,"action":{"kind":"Undelegate","val":0,"amt":3856},"partialState":{"h":18,"t":108,"tokens":[3989,2054,14652,1143],"delegation":[2989,1054,13652,143],"delegatorTokens":9999999927038}},{"ix":157,"action":{"kind":"Deliver","chain":"consumer","numPackets":6},"partialState":{"h":24,"t":144,"consumerPower":[1141,null,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":158,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":19,"t":114,"tokens":[3989,2054,14652,1143],"delegation":[2989,1054,13652,143],"delegatorTokens":9999999927038,"jailed":[null,1000000000000047,1000000000000059,1000000000000047],"status":["bonded","unbonding","unbonding","unbonding"]}},{"ix":159,"action":{"kind":"Undelegate","val":2,"amt":2509},"partialState":{"h":19,"t":114,"tokens":[3989,2054,12143,1143],"delegation":[2989,1054,11143,143],"delegatorTokens":9999999927038}},{"ix":160,"action":{"kind":"Delegate","val":3,"amt":4299},"partialState":{"h":19,"t":114,"tokens":[3989,2054,12143,5442],"delegation":[2989,1054,11143,4442],"delegatorTokens":9999999922739}},{"ix":161,"action":{"kind":"Delegate","val":0,"amt":3007},"partialState":{"h":19,"t":114,"tokens":[6996,2054,12143,5442],"delegation":[5996,1054,11143,4442],"delegatorTokens":9999999919732}},{"ix":162,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":25,"t":150,"consumerPower":[1141,null,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":163,"action":{"kind":"Delegate","val":0,"amt":3490},"partialState":{"h":19,"t":114,"tokens":[10486,2054,12143,5442],"delegation":[9486,1054,11143,4442],"delegatorTokens":9999999916242}},{"ix":164,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":20,"t":120,"tokens":[10486,2054,12143,5442],"delegation":[9486,1054,11143,4442],"delegatorTokens":9999999916242,"jailed":[null,1000000000000047,1000000000000059,1000000000000047],"status":["bonded","unbonding","unbonding","unbonding"]}},{"ix":165,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":166,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":21,"t":126,"tokens":[10486,2054,12143,5442],"delegation":[9486,1054,11143,4442],"delegatorTokens":9999999923281,"jailed":[null,1000000000000047,1000000000000059,1000000000000047],"status":["bonded","unbonding","unbonding","unbonding"]}},{"ix":167,"action":{"kind":"Deliver","chain":"provider","numPackets":5},"partialState":{"h":21,"t":126,"tokens":[10486,2054,12143,5442],"delegation":[9486,1054,11143,4442],"delegatorTokens":9999999923281,"jailed":[null,1000000000000047,1000000000000059,1000000000000047],"status":["bonded","unbonding","unbonding","unbonding"]}},{"ix":168,"action":{"kind":"Undelegate","val":0,"amt":3597},"partialState":{"h":21,"t":126,"tokens":[6889,2054,12143,5442],"delegation":[5889,1054,11143,4442],"delegatorTokens":9999999923281}},{"ix":169,"action":{"kind":"Deliver","chain":"consumer","numPackets":2},"partialState":{"h":25,"t":150,"consumerPower":[1141,null,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":170,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":171,"action":{"kind":"Deliver","chain":"consumer","numPackets":5},"partialState":{"h":25,"t":150,"consumerPower":[1141,null,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":172,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":22,"t":132,"tokens":[6889,2054,12143,5442],"delegation":[5889,1054,11143,4442],"delegatorTokens":9999999940936,"jailed":[null,1000000000000047,1000000000000059,1000000000000047],"status":["bonded","unbonding","unbonding","unbonding"]}},{"ix":173,"action":{"kind":"Delegate","val":2,"amt":1421},"partialState":{"h":22,"t":132,"tokens":[6889,2054,13564,5442],"delegation":[5889,1054,12564,4442],"delegatorTokens":9999999939515}},{"ix":174,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":26,"t":156,"consumerPower":[10486,null,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":175,"action":{"kind":"Deliver","chain":"consumer","numPackets":4},"partialState":{"h":26,"t":156,"consumerPower":[10486,null,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":176,"action":{"kind":"Deliver","chain":"provider","numPackets":1},"partialState":{"h":22,"t":132,"tokens":[6889,2054,13564,5442],"delegation":[5889,1054,12564,4442],"delegatorTokens":9999999939515,"jailed":[null,1000000000000047,1000000000000059,1000000000000047],"status":["bonded","unbonding","unbonding","unbonding"]}},{"ix":177,"action":{"kind":"Undelegate","val":2,"amt":4528},"partialState":{"h":22,"t":132,"tokens":[6889,2054,9036,5442],"delegation":[5889,1054,8036,4442],"delegatorTokens":9999999939515}},{"ix":178,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":179,"action":{"kind":"Delegate","val":0,"amt":4220},"partialState":{"h":22,"t":132,"tokens":[11109,2054,9036,5442],"delegation":[10109,1054,8036,4442],"delegatorTokens":9999999935295}},{"ix":180,"action":{"kind":"Delegate","val":2,"amt":2041},"partialState":{"h":22,"t":132,"tokens":[11109,2054,11077,5442],"delegation":[10109,1054,10077,4442],"delegatorTokens":9999999933254}},{"ix":181,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":23,"t":138,"tokens":[11109,2054,11077,5442],"delegation":[10109,1054,10077,4442],"delegatorTokens":9999999938164,"jailed":[null,1000000000000047,1000000000000059,1000000000000047],"status":["bonded","unbonded","unbonding","unbonded"]}},{"ix":182,"action":{"kind":"Deliver","chain":"consumer","numPackets":3},"partialState":{"h":26,"t":156,"consumerPower":[10486,null,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":183,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":27,"t":162,"consumerPower":[6889,null,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":184,"action":{"kind":"Delegate","val":1,"amt":2972},"partialState":{"h":23,"t":138,"tokens":[11109,5026,11077,5442],"delegation":[10109,4026,10077,4442],"delegatorTokens":9999999935192}},{"ix":185,"action":{"kind":"Undelegate","val":3,"amt":4466},"partialState":{"h":23,"t":138,"tokens":[11109,5026,11077,5442],"delegation":[10109,4026,10077,4442],"delegatorTokens":9999999935192}},{"ix":186,"action":{"kind":"Undelegate","val":3,"amt":2858},"partialState":{"h":23,"t":138,"tokens":[11109,5026,11077,2584],"delegation":[10109,4026,10077,1584],"delegatorTokens":9999999935192}},{"ix":187,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":24,"t":144,"tokens":[11109,5026,11077,2584],"delegation":[10109,4026,10077,1584],"delegatorTokens":9999999935192,"jailed":[null,1000000000000047,1000000000000059,1000000000000047],"status":["bonded","unbonded","unbonded","unbonded"]}},{"ix":188,"action":{"kind":"Deliver","chain":"provider","numPackets":5},"partialState":{"h":24,"t":144,"tokens":[11109,5026,11077,2584],"delegation":[10109,4026,10077,1584],"delegatorTokens":9999999935192,"jailed":[null,1000000000000047,1000000000000059,1000000000000047],"status":["bonded","unbonded","unbonded","unbonded"]}},{"ix":189,"action":{"kind":"Delegate","val":3,"amt":2480},"partialState":{"h":24,"t":144,"tokens":[11109,5026,11077,5064],"delegation":[10109,4026,10077,4064],"delegatorTokens":9999999932712}},{"ix":190,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":191,"action":{"kind":"Undelegate","val":2,"amt":1496},"partialState":{"h":24,"t":144,"tokens":[11109,5026,9581,5064],"delegation":[10109,4026,8581,4064],"delegatorTokens":9999999932712}},{"ix":192,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":193,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":194,"action":{"kind":"Undelegate","val":3,"amt":1864},"partialState":{"h":24,"t":144,"tokens":[11109,5026,9581,3200],"delegation":[10109,4026,8581,2200],"delegatorTokens":9999999932712}},{"ix":195,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":25,"t":150,"tokens":[11109,5026,9581,3200],"delegation":[10109,4026,8581,2200],"delegatorTokens":9999999932712,"jailed":[null,1000000000000047,1000000000000059,1000000000000047],"status":["bonded","unbonded","unbonded","unbonded"]}},{"ix":196,"action":{"kind":"Undelegate","val":0,"amt":4297},"partialState":{"h":25,"t":150,"tokens":[6812,5026,9581,3200],"delegation":[5812,4026,8581,2200],"delegatorTokens":9999999932712}},{"ix":197,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":198,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":199,"action":{"kind":"Delegate","val":0,"amt":1749},"partialState":{"h":25,"t":150,"tokens":[8561,5026,9581,3200],"delegation":[7561,4026,8581,2200],"delegatorTokens":9999999930963}}],"events":["send_double_sign_slash_request","send_downtime_slash_request","send_vsc_without_downtime_ack","downtime_slash_request_outstanding","insufficient_shares","more_than_one_third_val_power_change","rebond_unval","send_vsc_without_downtime_ack","send_downtime_slash_request","insufficient_shares","insufficient_shares","more_than_one_third_val_power_change","send_vsc_without_downtime_ack","consumer_update_val","consumer_del_val","insufficient_shares","send_vsc_without_downtime_ack","insufficient_shares","send_double_sign_slash_request","consumer_del_val","consumer_add_val","receive_double_sign_slash_request","consumer_update_val","receive_double_sign_slash_request","send_downtime_slash_request","insufficient_shares","insufficient_shares","more_than_one_third_val_power_change","rebond_unval","receive_downtime_slash_request","jail","receive_downtime_slash_request","jail","send_vsc_with_downtime_ack","more_than_one_third_val_power_change","rebond_unval","rebond_unval","send_vsc_without_downtime_ack","receive_downtime_slash_ack","receive_downtime_slash_ack","consumer_update_val","consumer_del_val","consumer_add_val","receive_downtime_slash_request","jail","send_vsc_not_because_change","send_vsc_with_downtime_ack","send_vsc_without_downtime_ack","receive_downtime_slash_ack","consumer_send_maturation","consumer_send_maturation","consumer_add_val","consumer_del_val","consumer_del_val","consumer_del_val","consumer_send_maturation","consumer_send_maturation","some_undels_expired_but_not_completed","send_vsc_without_downtime_ack","insufficient_shares","insufficient_shares","insufficient_shares","some_undels_expired_but_not_completed","complete_undel_immediate","complete_undel_immediate","complete_undel_immediate","complete_undel_immediate","set_undel_hold_false","send_vsc_not_because_change","send_vsc_without_downtime_ack","complete_undel_in_endblock","insufficient_shares","insufficient_shares","consumer_send_maturation","consumer_send_maturation","consumer_send_maturation","consumer_send_maturation","insufficient_shares","set_undel_hold_false","set_undel_hold_false","send_vsc_without_downtime_ack","consumer_update_val","insufficient_shares","insufficient_shares","send_vsc_without_downtime_ack","complete_undel_in_endblock","some_undels_expired_but_not_completed","complete_undel_immediate","complete_undel_immediate","complete_undel_immediate","complete_undel_immediate","complete_undel_immediate","set_unval_hold_false","set_unval_hold_false","set_undel_hold_false","set_undel_hold_false","set_unval_hold_false","send_vsc_without_downtime_ack","consumer_update_val","complete_unval_in_endblock","complete_unval_in_endblock","complete_undel_in_endblock","send_vsc_without_downtime_ack","consumer_update_val","insufficient_shares","complete_unval_in_endblock","send_vsc_not_because_change","send_vsc_without_downtime_ack","send_vsc_not_because_change","send_vsc_without_downtime_ack"]},{"meta":{"commit":"7ffd0c04e4205cbc9caf212abfe6c59ee43153bf"},"constants":{"P":"provider","C":"consumer","UNBONDING_SECONDS_P":70,"UNBONDING_SECONDS_C":50,"TRUSTING_SECONDS":49,"NUM_VALIDATORS":4,"MAX_VALIDATORS":2,"SLASH_DOUBLESIGN":0,"SLASH_DOWNTIME":0,"JAIL_SECONDS":999999999999999,"BLOCK_SECONDS":6,"INITIAL_DELEGATOR_TOKENS":10000000000000,"DELEGATE_AMT_MIN":1000,"DELEGATE_AMT_MAX":5000,"UNDELEGATE_AMT_MIN":1000,"UNDELEGATE_AMT_MAX":5000,"ISDOWNTIME_PROBABILITY":0.5,"MAX_NUM_PACKETS_FOR_DELIVER":6},"actions":[{"ix":0,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":2,"t":12,"tokens":[5000,4000,3000,2000],"delegation":[4000,3000,2000,1000],"delegatorTokens":10000000000000,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":1,"action":{"kind":"Deliver","chain":"consumer","numPackets":6},"partialState":{"h":1,"t":6,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":2,"action":{"kind":"ConsumerSlash","val":3,"infractionHeight":0,"isDowntime":true},"partialState":{"h":1,"t":6,"outstandingDowntime":[false,false,false,true]}},{"ix":3,"action":{"kind":"Delegate","val":2,"amt":2652},"partialState":{"h":2,"t":12,"tokens":[5000,4000,5652,2000],"delegation":[4000,3000,4652,1000],"delegatorTokens":9999999997348}},{"ix":4,"action":{"kind":"ConsumerSlash","val":0,"infractionHeight":0,"isDowntime":true},"partialState":{"h":1,"t":6,"outstandingDowntime":[true,false,false,true]}},{"ix":5,"action":{"kind":"ConsumerSlash","val":0,"infractionHeight":0,"isDowntime":false},"partialState":{"h":1,"t":6,"outstandingDowntime":[true,false,false,true]}},{"ix":6,"action":{"kind":"Delegate","val":0,"amt":4568},"partialState":{"h":2,"t":12,"tokens":[9568,4000,5652,2000],"delegation":[8568,3000,4652,1000],"delegatorTokens":9999999992780}},{"ix":7,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":8,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":9,"action":{"kind":"Deliver","chain":"provider","numPackets":5},"partialState":{"h":2,"t":12,"tokens":[9568,4000,5652,2000],"delegation":[8568,3000,4652,1000],"delegatorTokens":9999999992780,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":10,"action":{"kind":"Delegate","val":3,"amt":3800},"partialState":{"h":2,"t":12,"tokens":[9568,4000,5652,5800],"delegation":[8568,3000,4652,4800],"delegatorTokens":9999999988980}},{"ix":11,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":12,"action":{"kind":"Deliver","chain":"consumer","numPackets":6},"partialState":{"h":1,"t":6,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[true,false,false,true]}},{"ix":13,"action":{"kind":"Deliver","chain":"consumer","numPackets":2},"partialState":{"h":1,"t":6,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[true,false,false,true]}},{"ix":14,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":3,"t":18,"tokens":[9568,4000,5652,5800],"delegation":[8568,3000,4652,4800],"delegatorTokens":9999999988980,"jailed":[null,null,null,null],"status":["bonded","unbonding","unbonded","bonded"]}},{"ix":15,"action":{"kind":"Deliver","chain":"consumer","numPackets":3},"partialState":{"h":1,"t":6,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[true,false,false,true]}},{"ix":16,"action":{"kind":"Deliver","chain":"consumer","numPackets":4},"partialState":{"h":1,"t":6,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[true,false,false,true]}},{"ix":17,"action":{"kind":"Delegate","val":1,"amt":1567},"partialState":{"h":3,"t":18,"tokens":[9568,5567,5652,5800],"delegation":[8568,4567,4652,4800],"delegatorTokens":9999999987413}},{"ix":18,"action":{"kind":"ConsumerSlash","val":0,"infractionHeight":0,"isDowntime":false},"partialState":{"h":1,"t":6,"outstandingDowntime":[true,false,false,true]}},{"ix":19,"action":{"kind":"Undelegate","val":2,"amt":2926},"partialState":{"h":3,"t":18,"tokens":[9568,5567,2726,5800],"delegation":[8568,4567,1726,4800],"delegatorTokens":9999999987413}},{"ix":20,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":21,"action":{"kind":"Deliver","chain":"provider","numPackets":3},"partialState":{"h":3,"t":18,"tokens":[9568,5567,2726,5800],"delegation":[8568,4567,1726,4800],"delegatorTokens":9999999987413,"jailed":[null,null,null,null],"status":["bonded","unbonding","unbonded","bonded"]}},{"ix":22,"action":{"kind":"Deliver","chain":"provider","numPackets":4},"partialState":{"h":3,"t":18,"tokens":[9568,5567,2726,5800],"delegation":[8568,4567,1726,4800],"delegatorTokens":9999999987413,"jailed":[null,null,null,null],"status":["bonded","unbonding","unbonded","bonded"]}},{"ix":23,"action":{"kind":"ConsumerSlash","val":1,"infractionHeight":0,"isDowntime":true},"partialState":{"h":1,"t":6,"outstandingDowntime":[true,true,false,true]}},{"ix":24,"action":{"kind":"Delegate","val":2,"amt":1924},"partialState":{"h":3,"t":18,"tokens":[9568,5567,4650,5800],"delegation":[8568,4567,3650,4800],"delegatorTokens":9999999985489}},{"ix":25,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":2,"t":12,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[true,true,false,true]}},{"ix":26,"action":{"kind":"Delegate","val":0,"amt":2552},"partialState":{"h":3,"t":18,"tokens":[12120,5567,4650,5800],"delegation":[11120,4567,3650,4800],"delegatorTokens":9999999982937}},{"ix":27,"action":{"kind":"Undelegate","val":1,"amt":3058},"partialState":{"h":3,"t":18,"tokens":[12120,2509,4650,5800],"delegation":[11120,1509,3650,4800],"delegatorTokens":9999999982937}},{"ix":28,"action":{"kind":"Delegate","val":3,"amt":4725},"partialState":{"h":3,"t":18,"tokens":[12120,2509,4650,10525],"delegation":[11120,1509,3650,9525],"delegatorTokens":9999999978212}},{"ix":29,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":4,"t":24,"tokens":[12120,2509,4650,10525],"delegation":[11120,1509,3650,9525],"delegatorTokens":9999999978212,"jailed":[null,null,null,null],"status":["bonded","unbonding","unbonded","bonded"]}},{"ix":30,"action":{"kind":"Delegate","val":1,"amt":2874},"partialState":{"h":4,"t":24,"tokens":[12120,5383,4650,10525],"delegation":[11120,4383,3650,9525],"delegatorTokens":9999999975338}},{"ix":31,"action":{"kind":"Delegate","val":3,"amt":3559},"partialState":{"h":4,"t":24,"tokens":[12120,5383,4650,14084],"delegation":[11120,4383,3650,13084],"delegatorTokens":9999999971779}},{"ix":32,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":3,"t":18,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[true,true,false,true]}},{"ix":33,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":5,"t":30,"tokens":[12120,5383,4650,14084],"delegation":[11120,4383,3650,13084],"delegatorTokens":9999999971779,"jailed":[null,null,null,null],"status":["bonded","unbonding","unbonded","bonded"]}},{"ix":34,"action":{"kind":"Delegate","val":2,"amt":3148},"partialState":{"h":5,"t":30,"tokens":[12120,5383,7798,14084],"delegation":[11120,4383,6798,13084],"delegatorTokens":9999999968631}},{"ix":35,"action":{"kind":"Delegate","val":2,"amt":2329},"partialState":{"h":5,"t":30,"tokens":[12120,5383,10127,14084],"delegation":[11120,4383,9127,13084],"delegatorTokens":9999999966302}},{"ix":36,"action":{"kind":"Deliver","chain":"consumer","numPackets":4},"partialState":{"h":3,"t":18,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[true,true,false,true]}},{"ix":37,"action":{"kind":"Delegate","val":1,"amt":3862},"partialState":{"h":5,"t":30,"tokens":[12120,9245,10127,14084],"delegation":[11120,8245,9127,13084],"delegatorTokens":9999999962440}},{"ix":38,"action":{"kind":"Delegate","val":1,"amt":4590},"partialState":{"h":5,"t":30,"tokens":[12120,13835,10127,14084],"delegation":[11120,12835,9127,13084],"delegatorTokens":9999999957850}},{"ix":39,"action":{"kind":"Deliver","chain":"provider","numPackets":3},"partialState":{"h":5,"t":30,"tokens":[12120,13835,10127,14084],"delegation":[11120,12835,9127,13084],"delegatorTokens":9999999957850,"jailed":[null,null,null,null],"status":["bonded","unbonding","unbonded","bonded"]}},{"ix":40,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":6,"t":36,"tokens":[12120,13835,10127,14084],"delegation":[11120,12835,9127,13084],"delegatorTokens":9999999957850,"jailed":[1000000000000029,null,null,1000000000000029],"status":["unbonding","bonded","unbonded","bonded"]}},{"ix":41,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":4,"t":24,"consumerPower":[12120,null,null,10525],"outstandingDowntime":[true,true,false,true]}},{"ix":42,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":43,"action":{"kind":"Undelegate","val":3,"amt":2909},"partialState":{"h":6,"t":36,"tokens":[12120,13835,10127,11175],"delegation":[11120,12835,9127,10175],"delegatorTokens":9999999957850}},{"ix":44,"action":{"kind":"Undelegate","val":0,"amt":1676},"partialState":{"h":6,"t":36,"tokens":[10444,13835,10127,11175],"delegation":[9444,12835,9127,10175],"delegatorTokens":9999999957850}},{"ix":45,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":5,"t":30,"consumerPower":[12120,null,null,10525],"outstandingDowntime":[true,true,false,true]}},{"ix":46,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":47,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":6,"t":36,"consumerPower":[12120,null,null,10525],"outstandingDowntime":[true,true,false,true]}},{"ix":48,"action":{"kind":"Undelegate","val":3,"amt":3968},"partialState":{"h":6,"t":36,"tokens":[10444,13835,10127,7207],"delegation":[9444,12835,9127,6207],"delegatorTokens":9999999957850}},{"ix":49,"action":{"kind":"Deliver","chain":"consumer","numPackets":5},"partialState":{"h":6,"t":36,"consumerPower":[12120,null,null,10525],"outstandingDowntime":[true,true,false,true]}},{"ix":50,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":51,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":7,"t":42,"tokens":[10444,13835,10127,7207],"delegation":[9444,12835,9127,6207],"delegatorTokens":9999999957850,"jailed":[1000000000000029,null,null,1000000000000029],"status":["unbonding","bonded","bonded","unbonding"]}},{"ix":52,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":8,"t":48,"tokens":[10444,13835,10127,7207],"delegation":[9444,12835,9127,6207],"delegatorTokens":9999999957850,"jailed":[1000000000000029,null,null,1000000000000029],"status":["unbonding","bonded","bonded","unbonding"]}},{"ix":53,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":54,"action":{"kind":"Deliver","chain":"consumer","numPackets":4},"partialState":{"h":6,"t":36,"consumerPower":[12120,null,null,10525],"outstandingDowntime":[false,true,false,false]}},{"ix":55,"action":{"kind":"Deliver","chain":"provider","numPackets":2},"partialState":{"h":8,"t":48,"tokens":[10444,13835,10127,7207],"delegation":[9444,12835,9127,6207],"delegatorTokens":9999999957850,"jailed":[1000000000000029,null,null,1000000000000029],"status":["unbonding","bonded","bonded","unbonding"]}},{"ix":56,"action":{"kind":"Deliver","chain":"provider","numPackets":3},"partialState":{"h":8,"t":48,"tokens":[10444,13835,10127,7207],"delegation":[9444,12835,9127,6207],"delegatorTokens":9999999957850,"jailed":[1000000000000029,null,null,1000000000000029],"status":["unbonding","bonded","bonded","unbonding"]}},{"ix":57,"action":{"kind":"Deliver","chain":"consumer","numPackets":2},"partialState":{"h":6,"t":36,"consumerPower":[12120,null,null,10525],"outstandingDowntime":[false,true,false,false]}},{"ix":58,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":7,"t":42,"consumerPower":[null,13835,10127,null],"outstandingDowntime":[false,true,false,false]}},{"ix":59,"action":{"kind":"Delegate","val":0,"amt":3325},"partialState":{"h":8,"t":48,"tokens":[13769,13835,10127,7207],"delegation":[12769,12835,9127,6207],"delegatorTokens":9999999954525}},{"ix":60,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":61,"action":{"kind":"Deliver","chain":"provider","numPackets":2},"partialState":{"h":8,"t":48,"tokens":[13769,13835,10127,7207],"delegation":[12769,12835,9127,6207],"delegatorTokens":9999999954525,"jailed":[1000000000000029,null,null,1000000000000029],"status":["unbonding","bonded","bonded","unbonding"]}},{"ix":62,"action":{"kind":"Undelegate","val":0,"amt":3143},"partialState":{"h":8,"t":48,"tokens":[10626,13835,10127,7207],"delegation":[9626,12835,9127,6207],"delegatorTokens":9999999954525}},{"ix":63,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":64,"action":{"kind":"Undelegate","val":3,"amt":3606},"partialState":{"h":8,"t":48,"tokens":[10626,13835,10127,3601],"delegation":[9626,12835,9127,2601],"delegatorTokens":9999999954525}},{"ix":65,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":66,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":67,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":68,"action":{"kind":"Deliver","chain":"consumer","numPackets":4},"partialState":{"h":7,"t":42,"consumerPower":[null,13835,10127,null],"outstandingDowntime":[false,true,false,false]}},{"ix":69,"action":{"kind":"Deliver","chain":"provider","numPackets":4},"partialState":{"h":8,"t":48,"tokens":[10626,13835,10127,3601],"delegation":[9626,12835,9127,2601],"delegatorTokens":9999999954525,"jailed":[1000000000000029,null,null,1000000000000029],"status":["unbonding","bonded","bonded","unbonding"]}},{"ix":70,"action":{"kind":"Undelegate","val":2,"amt":3322},"partialState":{"h":8,"t":48,"tokens":[10626,13835,6805,3601],"delegation":[9626,12835,5805,2601],"delegatorTokens":9999999954525}},{"ix":71,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":72,"action":{"kind":"Undelegate","val":1,"amt":3511},"partialState":{"h":8,"t":48,"tokens":[10626,10324,6805,3601],"delegation":[9626,9324,5805,2601],"delegatorTokens":9999999954525}},{"ix":73,"action":{"kind":"Deliver","chain":"provider","numPackets":5},"partialState":{"h":8,"t":48,"tokens":[10626,10324,6805,3601],"delegation":[9626,9324,5805,2601],"delegatorTokens":9999999954525,"jailed":[1000000000000029,null,null,1000000000000029],"status":["unbonding","bonded","bonded","unbonding"]}},{"ix":74,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":75,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":76,"action":{"kind":"Undelegate","val":1,"amt":3139},"partialState":{"h":8,"t":48,"tokens":[10626,7185,6805,3601],"delegation":[9626,6185,5805,2601],"delegatorTokens":9999999954525}},{"ix":77,"action":{"kind":"Deliver","chain":"consumer","numPackets":6},"partialState":{"h":7,"t":42,"consumerPower":[null,13835,10127,null],"outstandingDowntime":[false,true,false,false]}},{"ix":78,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":8,"t":48,"consumerPower":[null,13835,10127,null],"outstandingDowntime":[false,true,false,false]}},{"ix":79,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":9,"t":54,"tokens":[10626,7185,6805,3601],"delegation":[9626,6185,5805,2601],"delegatorTokens":9999999954525,"jailed":[1000000000000029,1000000000000047,null,1000000000000029],"status":["unbonding","bonded","bonded","unbonding"]}},{"ix":80,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":10,"t":60,"tokens":[10626,7185,6805,3601],"delegation":[9626,6185,5805,2601],"delegatorTokens":9999999954525,"jailed":[1000000000000029,1000000000000047,null,1000000000000029],"status":["unbonding","unbonding","bonded","unbonding"]}},{"ix":81,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":9,"t":54,"consumerPower":[null,13835,10127,null],"outstandingDowntime":[false,true,false,false]}},{"ix":82,"action":{"kind":"Delegate","val":1,"amt":1816},"partialState":{"h":10,"t":60,"tokens":[10626,9001,6805,3601],"delegation":[9626,8001,5805,2601],"delegatorTokens":9999999952709}},{"ix":83,"action":{"kind":"Delegate","val":0,"amt":1622},"partialState":{"h":10,"t":60,"tokens":[12248,9001,6805,3601],"delegation":[11248,8001,5805,2601],"delegatorTokens":9999999951087}},{"ix":84,"action":{"kind":"Undelegate","val":0,"amt":4105},"partialState":{"h":10,"t":60,"tokens":[8143,9001,6805,3601],"delegation":[7143,8001,5805,2601],"delegatorTokens":9999999951087}},{"ix":85,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":11,"t":66,"tokens":[8143,9001,6805,3601],"delegation":[7143,8001,5805,2601],"delegatorTokens":9999999951087,"jailed":[1000000000000029,1000000000000047,null,1000000000000029],"status":["unbonding","unbonding","bonded","unbonding"]}},{"ix":86,"action":{"kind":"Deliver","chain":"consumer","numPackets":2},"partialState":{"h":9,"t":54,"consumerPower":[null,13835,10127,null],"outstandingDowntime":[false,false,false,false]}},{"ix":87,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":12,"t":72,"tokens":[8143,9001,6805,3601],"delegation":[7143,8001,5805,2601],"delegatorTokens":9999999951087,"jailed":[1000000000000029,1000000000000047,null,1000000000000029],"status":["unbonding","unbonding","bonded","unbonding"]}},{"ix":88,"action":{"kind":"Delegate","val":2,"amt":3633},"partialState":{"h":12,"t":72,"tokens":[8143,9001,10438,3601],"delegation":[7143,8001,9438,2601],"delegatorTokens":9999999947454}},{"ix":89,"action":{"kind":"Delegate","val":3,"amt":1990},"partialState":{"h":12,"t":72,"tokens":[8143,9001,10438,5591],"delegation":[7143,8001,9438,4591],"delegatorTokens":9999999945464}},{"ix":90,"action":{"kind":"Deliver","chain":"consumer","numPackets":6},"partialState":{"h":9,"t":54,"consumerPower":[null,13835,10127,null],"outstandingDowntime":[false,false,false,false]}},{"ix":91,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":10,"t":60,"consumerPower":[null,null,6805,null],"outstandingDowntime":[false,false,false,false]}},{"ix":92,"action":{"kind":"Delegate","val":1,"amt":1443},"partialState":{"h":12,"t":72,"tokens":[8143,10444,10438,5591],"delegation":[7143,9444,9438,4591],"delegatorTokens":9999999944021}},{"ix":93,"action":{"kind":"Delegate","val":3,"amt":3637},"partialState":{"h":12,"t":72,"tokens":[8143,10444,10438,9228],"delegation":[7143,9444,9438,8228],"delegatorTokens":9999999940384}},{"ix":94,"action":{"kind":"Deliver","chain":"provider","numPackets":3},"partialState":{"h":12,"t":72,"tokens":[8143,10444,10438,9228],"delegation":[7143,9444,9438,8228],"delegatorTokens":9999999940384,"jailed":[1000000000000029,1000000000000047,null,1000000000000029],"status":["unbonding","unbonding","bonded","unbonding"]}},{"ix":95,"action":{"kind":"Undelegate","val":1,"amt":3563},"partialState":{"h":12,"t":72,"tokens":[8143,6881,10438,9228],"delegation":[7143,5881,9438,8228],"delegatorTokens":9999999940384}},{"ix":96,"action":{"kind":"Deliver","chain":"provider","numPackets":3},"partialState":{"h":12,"t":72,"tokens":[8143,6881,10438,9228],"delegation":[7143,5881,9438,8228],"delegatorTokens":9999999940384,"jailed":[1000000000000029,1000000000000047,null,1000000000000029],"status":["unbonding","unbonding","bonded","unbonding"]}},{"ix":97,"action":{"kind":"Undelegate","val":3,"amt":2668},"partialState":{"h":12,"t":72,"tokens":[8143,6881,10438,6560],"delegation":[7143,5881,9438,5560],"delegatorTokens":9999999940384}},{"ix":98,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":11,"t":66,"consumerPower":[null,null,6805,null],"outstandingDowntime":[false,false,false,false]}},{"ix":99,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":12,"t":72,"consumerPower":[null,null,6805,null],"outstandingDowntime":[false,false,false,false]}},{"ix":100,"action":{"kind":"Undelegate","val":2,"amt":2522},"partialState":{"h":12,"t":72,"tokens":[8143,6881,7916,6560],"delegation":[7143,5881,6916,5560],"delegatorTokens":9999999940384}},{"ix":101,"action":{"kind":"Undelegate","val":1,"amt":2575},"partialState":{"h":12,"t":72,"tokens":[8143,4306,7916,6560],"delegation":[7143,3306,6916,5560],"delegatorTokens":9999999940384}},{"ix":102,"action":{"kind":"Undelegate","val":3,"amt":4073},"partialState":{"h":12,"t":72,"tokens":[8143,4306,7916,2487],"delegation":[7143,3306,6916,1487],"delegatorTokens":9999999940384}},{"ix":103,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":104,"action":{"kind":"Delegate","val":3,"amt":2230},"partialState":{"h":12,"t":72,"tokens":[8143,4306,7916,4717],"delegation":[7143,3306,6916,3717],"delegatorTokens":9999999938154}},{"ix":105,"action":{"kind":"Delegate","val":0,"amt":4605},"partialState":{"h":12,"t":72,"tokens":[12748,4306,7916,4717],"delegation":[11748,3306,6916,3717],"delegatorTokens":9999999933549}},{"ix":106,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":107,"action":{"kind":"Deliver","chain":"consumer","numPackets":6},"partialState":{"h":12,"t":72,"consumerPower":[null,null,6805,null],"outstandingDowntime":[false,false,false,false]}},{"ix":108,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":109,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":110,"action":{"kind":"Delegate","val":2,"amt":4477},"partialState":{"h":12,"t":72,"tokens":[12748,4306,12393,4717],"delegation":[11748,3306,11393,3717],"delegatorTokens":9999999929072}},{"ix":111,"action":{"kind":"Undelegate","val":2,"amt":3531},"partialState":{"h":12,"t":72,"tokens":[12748,4306,8862,4717],"delegation":[11748,3306,7862,3717],"delegatorTokens":9999999929072}},{"ix":112,"action":{"kind":"Delegate","val":0,"amt":4827},"partialState":{"h":12,"t":72,"tokens":[17575,4306,8862,4717],"delegation":[16575,3306,7862,3717],"delegatorTokens":9999999924245}},{"ix":113,"action":{"kind":"Undelegate","val":1,"amt":3635},"partialState":{"h":12,"t":72,"tokens":[17575,4306,8862,4717],"delegation":[16575,3306,7862,3717],"delegatorTokens":9999999924245}},{"ix":114,"action":{"kind":"Delegate","val":2,"amt":1718},"partialState":{"h":12,"t":72,"tokens":[17575,4306,10580,4717],"delegation":[16575,3306,9580,3717],"delegatorTokens":9999999922527}},{"ix":115,"action":{"kind":"Deliver","chain":"consumer","numPackets":3},"partialState":{"h":12,"t":72,"consumerPower":[null,null,6805,null],"outstandingDowntime":[false,false,false,false]}},{"ix":116,"action":{"kind":"Undelegate","val":3,"amt":2779},"partialState":{"h":12,"t":72,"tokens":[17575,4306,10580,1938],"delegation":[16575,3306,9580,938],"delegatorTokens":9999999922527}},{"ix":117,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":118,"action":{"kind":"Deliver","chain":"consumer","numPackets":1},"partialState":{"h":12,"t":72,"consumerPower":[null,null,6805,null],"outstandingDowntime":[false,false,false,false]}},{"ix":119,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":120,"action":{"kind":"Delegate","val":0,"amt":4358},"partialState":{"h":12,"t":72,"tokens":[21933,4306,10580,1938],"delegation":[20933,3306,9580,938],"delegatorTokens":9999999918169}},{"ix":121,"action":{"kind":"Undelegate","val":0,"amt":1782},"partialState":{"h":12,"t":72,"tokens":[20151,4306,10580,1938],"delegation":[19151,3306,9580,938],"delegatorTokens":9999999918169}},{"ix":122,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":13,"t":78,"tokens":[20151,4306,10580,1938],"delegation":[19151,3306,9580,938],"delegatorTokens":9999999918169,"jailed":[1000000000000029,1000000000000047,null,1000000000000029],"status":["unbonding","unbonding","bonded","unbonding"]}},{"ix":123,"action":{"kind":"Undelegate","val":3,"amt":4091},"partialState":{"h":13,"t":78,"tokens":[20151,4306,10580,1938],"delegation":[19151,3306,9580,938],"delegatorTokens":9999999918169}},{"ix":124,"action":{"kind":"Undelegate","val":2,"amt":3807},"partialState":{"h":13,"t":78,"tokens":[20151,4306,6773,1938],"delegation":[19151,3306,5773,938],"delegatorTokens":9999999918169}},{"ix":125,"action":{"kind":"Delegate","val":3,"amt":4055},"partialState":{"h":13,"t":78,"tokens":[20151,4306,6773,5993],"delegation":[19151,3306,5773,4993],"delegatorTokens":9999999914114}},{"ix":126,"action":{"kind":"Undelegate","val":2,"amt":1035},"partialState":{"h":13,"t":78,"tokens":[20151,4306,5738,5993],"delegation":[19151,3306,4738,4993],"delegatorTokens":9999999914114}},{"ix":127,"action":{"kind":"Delegate","val":0,"amt":3132},"partialState":{"h":13,"t":78,"tokens":[23283,4306,5738,5993],"delegation":[22283,3306,4738,4993],"delegatorTokens":9999999910982}},{"ix":128,"action":{"kind":"Deliver","chain":"consumer","numPackets":5},"partialState":{"h":12,"t":72,"consumerPower":[null,null,6805,null],"outstandingDowntime":[false,false,false,false]}},{"ix":129,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":13,"t":78,"consumerPower":[null,null,6805,null],"outstandingDowntime":[false,false,false,false]}},{"ix":130,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":131,"action":{"kind":"Deliver","chain":"provider","numPackets":4},"partialState":{"h":13,"t":78,"tokens":[23283,4306,5738,5993],"delegation":[22283,3306,4738,4993],"delegatorTokens":9999999910982,"jailed":[1000000000000029,1000000000000047,null,1000000000000029],"status":["unbonding","unbonding","bonded","unbonding"]}},{"ix":132,"action":{"kind":"Deliver","chain":"consumer","numPackets":5},"partialState":{"h":13,"t":78,"consumerPower":[null,null,6805,null],"outstandingDowntime":[false,false,false,false]}},{"ix":133,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":14,"t":84,"consumerPower":[null,null,6805,null],"outstandingDowntime":[false,false,false,false]}},{"ix":134,"action":{"kind":"Deliver","chain":"consumer","numPackets":5},"partialState":{"h":14,"t":84,"consumerPower":[null,null,6805,null],"outstandingDowntime":[false,false,false,false]}},{"ix":135,"action":{"kind":"Undelegate","val":3,"amt":1699},"partialState":{"h":13,"t":78,"tokens":[23283,4306,5738,4294],"delegation":[22283,3306,4738,3294],"delegatorTokens":9999999910982}},{"ix":136,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":137,"action":{"kind":"Undelegate","val":3,"amt":2785},"partialState":{"h":13,"t":78,"tokens":[23283,4306,5738,1509],"delegation":[22283,3306,4738,509],"delegatorTokens":9999999910982}},{"ix":138,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":15,"t":90,"consumerPower":[null,null,6805,null],"outstandingDowntime":[false,false,false,false]}},{"ix":139,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":140,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":16,"t":96,"consumerPower":[null,null,6805,null],"outstandingDowntime":[false,false,false,false]}},{"ix":141,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":14,"t":84,"tokens":[23283,4306,5738,1509],"delegation":[22283,3306,4738,509],"delegatorTokens":9999999910982,"jailed":[1000000000000029,1000000000000047,null,1000000000000029],"status":["unbonding","unbonding","bonded","unbonding"]}},{"ix":142,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":17,"t":102,"consumerPower":[null,null,6805,null],"outstandingDowntime":[false,false,false,false]}},{"ix":143,"action":{"kind":"Deliver","chain":"provider","numPackets":4},"partialState":{"h":14,"t":84,"tokens":[23283,4306,5738,1509],"delegation":[22283,3306,4738,509],"delegatorTokens":9999999910982,"jailed":[1000000000000029,1000000000000047,null,1000000000000029],"status":["unbonding","unbonding","bonded","unbonding"]}},{"ix":144,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":18,"t":108,"consumerPower":[null,null,6805,null],"outstandingDowntime":[false,false,false,false]}},{"ix":145,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":15,"t":90,"tokens":[23283,4306,5738,1509],"delegation":[22283,3306,4738,509],"delegatorTokens":9999999910982,"jailed":[1000000000000029,1000000000000047,null,1000000000000029],"status":["unbonding","unbonding","bonded","unbonding"]}},{"ix":146,"action":{"kind":"Deliver","chain":"provider","numPackets":4},"partialState":{"h":15,"t":90,"tokens":[23283,4306,5738,1509],"delegation":[22283,3306,4738,509],"delegatorTokens":9999999910982,"jailed":[1000000000000029,1000000000000047,null,1000000000000029],"status":["unbonding","unbonding","bonded","unbonding"]}},{"ix":147,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":148,"action":{"kind":"Delegate","val":3,"amt":4549},"partialState":{"h":15,"t":90,"tokens":[23283,4306,5738,6058],"delegation":[22283,3306,4738,5058],"delegatorTokens":9999999906433}},{"ix":149,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":16,"t":96,"tokens":[23283,4306,5738,6058],"delegation":[22283,3306,4738,5058],"delegatorTokens":9999999912417,"jailed":[1000000000000029,1000000000000047,null,1000000000000029],"status":["unbonding","unbonding","bonded","unbonding"]}},{"ix":150,"action":{"kind":"Undelegate","val":2,"amt":4245},"partialState":{"h":16,"t":96,"tokens":[23283,4306,1493,6058],"delegation":[22283,3306,493,5058],"delegatorTokens":9999999912417}},{"ix":151,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":152,"action":{"kind":"Deliver","chain":"consumer","numPackets":2},"partialState":{"h":18,"t":108,"consumerPower":[null,null,6805,null],"outstandingDowntime":[false,false,false,false]}},{"ix":153,"action":{"kind":"Undelegate","val":3,"amt":4344},"partialState":{"h":16,"t":96,"tokens":[23283,4306,1493,1714],"delegation":[22283,3306,493,714],"delegatorTokens":9999999912417}},{"ix":154,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":19,"t":114,"consumerPower":[null,null,5738,null],"outstandingDowntime":[false,false,false,false]}},{"ix":155,"action":{"kind":"Undelegate","val":3,"amt":1925},"partialState":{"h":16,"t":96,"tokens":[23283,4306,1493,1714],"delegation":[22283,3306,493,714],"delegatorTokens":9999999912417}},{"ix":156,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":20,"t":120,"consumerPower":[null,null,5738,null],"outstandingDowntime":[false,false,false,false]}},{"ix":157,"action":{"kind":"Deliver","chain":"consumer","numPackets":3},"partialState":{"h":20,"t":120,"consumerPower":[null,null,5738,null],"outstandingDowntime":[false,false,false,false]}},{"ix":158,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":17,"t":102,"tokens":[23283,4306,1493,1714],"delegation":[22283,3306,493,714],"delegatorTokens":9999999912417,"jailed":[1000000000000029,1000000000000047,null,1000000000000029],"status":["unbonding","unbonding","bonded","unbonding"]}},{"ix":159,"action":{"kind":"Deliver","chain":"consumer","numPackets":4},"partialState":{"h":20,"t":120,"consumerPower":[null,null,5738,null],"outstandingDowntime":[false,false,false,false]}},{"ix":160,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":161,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":162,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":21,"t":126,"consumerPower":[null,null,5738,null],"outstandingDowntime":[false,false,false,false]}},{"ix":163,"action":{"kind":"Deliver","chain":"provider","numPackets":2},"partialState":{"h":17,"t":102,"tokens":[23283,4306,1493,1714],"delegation":[22283,3306,493,714],"delegatorTokens":9999999912417,"jailed":[1000000000000029,1000000000000047,null,1000000000000029],"status":["unbonding","unbonding","bonded","unbonding"]}},{"ix":164,"action":{"kind":"Undelegate","val":3,"amt":3538},"partialState":{"h":17,"t":102,"tokens":[23283,4306,1493,1714],"delegation":[22283,3306,493,714],"delegatorTokens":9999999912417}},{"ix":165,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":18,"t":108,"tokens":[23283,4306,1493,1714],"delegation":[22283,3306,493,714],"delegatorTokens":9999999912417,"jailed":[1000000000000029,1000000000000047,null,1000000000000029],"status":["unbonded","unbonding","bonded","unbonding"]}},{"ix":166,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":19,"t":114,"tokens":[23283,4306,1493,1714],"delegation":[22283,3306,493,714],"delegatorTokens":9999999920970,"jailed":[1000000000000029,1000000000000047,null,1000000000000029],"status":["unbonded","unbonding","bonded","unbonded"]}},{"ix":167,"action":{"kind":"Deliver","chain":"consumer","numPackets":3},"partialState":{"h":21,"t":126,"consumerPower":[null,null,5738,null],"outstandingDowntime":[false,false,false,false]}},{"ix":168,"action":{"kind":"Delegate","val":1,"amt":3881},"partialState":{"h":19,"t":114,"tokens":[23283,8187,1493,1714],"delegation":[22283,7187,493,714],"delegatorTokens":9999999917089}},{"ix":169,"action":{"kind":"Deliver","chain":"consumer","numPackets":3},"partialState":{"h":21,"t":126,"consumerPower":[null,null,5738,null],"outstandingDowntime":[false,false,false,false]}},{"ix":170,"action":{"kind":"Undelegate","val":0,"amt":3381},"partialState":{"h":19,"t":114,"tokens":[19902,8187,1493,1714],"delegation":[18902,7187,493,714],"delegatorTokens":9999999917089}},{"ix":171,"action":{"kind":"Deliver","chain":"provider","numPackets":4},"partialState":{"h":19,"t":114,"tokens":[19902,8187,1493,1714],"delegation":[18902,7187,493,714],"delegatorTokens":9999999917089,"jailed":[1000000000000029,1000000000000047,null,1000000000000029],"status":["unbonded","unbonding","bonded","unbonded"]}},{"ix":172,"action":{"kind":"Delegate","val":1,"amt":3960},"partialState":{"h":19,"t":114,"tokens":[19902,12147,1493,1714],"delegation":[18902,11147,493,714],"delegatorTokens":9999999913129}},{"ix":173,"action":{"kind":"Deliver","chain":"consumer","numPackets":3},"partialState":{"h":21,"t":126,"consumerPower":[null,null,5738,null],"outstandingDowntime":[false,false,false,false]}},{"ix":174,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":20,"t":120,"tokens":[19902,12147,1493,1714],"delegation":[18902,11147,493,714],"delegatorTokens":9999999913129,"jailed":[1000000000000029,1000000000000047,null,1000000000000029],"status":["unbonded","unbonding","bonded","unbonded"]}},{"ix":175,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":22,"t":132,"consumerPower":[null,null,1493,null],"outstandingDowntime":[false,false,false,false]}},{"ix":176,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":23,"t":138,"consumerPower":[null,null,1493,null],"outstandingDowntime":[false,false,false,false]}},{"ix":177,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":21,"t":126,"tokens":[19902,12147,1493,1714],"delegation":[18902,11147,493,714],"delegatorTokens":9999999929850,"jailed":[1000000000000029,1000000000000047,null,1000000000000029],"status":["unbonded","unbonding","bonded","unbonded"]}},{"ix":178,"action":{"kind":"Delegate","val":0,"amt":4410},"partialState":{"h":21,"t":126,"tokens":[24312,12147,1493,1714],"delegation":[23312,11147,493,714],"delegatorTokens":9999999925440}},{"ix":179,"action":{"kind":"Delegate","val":0,"amt":4999},"partialState":{"h":21,"t":126,"tokens":[29311,12147,1493,1714],"delegation":[28311,11147,493,714],"delegatorTokens":9999999920441}},{"ix":180,"action":{"kind":"Deliver","chain":"consumer","numPackets":6},"partialState":{"h":23,"t":138,"consumerPower":[null,null,1493,null],"outstandingDowntime":[false,false,false,false]}},{"ix":181,"action":{"kind":"Undelegate","val":0,"amt":4413},"partialState":{"h":21,"t":126,"tokens":[24898,12147,1493,1714],"delegation":[23898,11147,493,714],"delegatorTokens":9999999920441}},{"ix":182,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":183,"action":{"kind":"Deliver","chain":"consumer","numPackets":5},"partialState":{"h":23,"t":138,"consumerPower":[null,null,1493,null],"outstandingDowntime":[false,false,false,false]}},{"ix":184,"action":{"kind":"Deliver","chain":"provider","numPackets":1},"partialState":{"h":21,"t":126,"tokens":[24898,12147,1493,1714],"delegation":[23898,11147,493,714],"delegatorTokens":9999999920441,"jailed":[1000000000000029,1000000000000047,null,1000000000000029],"status":["unbonded","unbonding","bonded","unbonded"]}},{"ix":185,"action":{"kind":"Undelegate","val":2,"amt":3046},"partialState":{"h":21,"t":126,"tokens":[24898,12147,1493,1714],"delegation":[23898,11147,493,714],"delegatorTokens":9999999920441}},{"ix":186,"action":{"kind":"Undelegate","val":0,"amt":2576},"partialState":{"h":21,"t":126,"tokens":[22322,12147,1493,1714],"delegation":[21322,11147,493,714],"delegatorTokens":9999999920441}},{"ix":187,"action":{"kind":"Undelegate","val":0,"amt":4990},"partialState":{"h":21,"t":126,"tokens":[17332,12147,1493,1714],"delegation":[16332,11147,493,714],"delegatorTokens":9999999920441}},{"ix":188,"action":{"kind":"Deliver","chain":"consumer","numPackets":6},"partialState":{"h":23,"t":138,"consumerPower":[null,null,1493,null],"outstandingDowntime":[false,false,false,false]}},{"ix":189,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":190,"action":{"kind":"Deliver","chain":"consumer","numPackets":1},"partialState":{"h":23,"t":138,"consumerPower":[null,null,1493,null],"outstandingDowntime":[false,false,false,false]}},{"ix":191,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":22,"t":132,"tokens":[17332,12147,1493,1714],"delegation":[16332,11147,493,714],"delegatorTokens":9999999920441,"jailed":[1000000000000029,1000000000000047,null,1000000000000029],"status":["unbonded","unbonded","bonded","unbonded"]}},{"ix":192,"action":{"kind":"Undelegate","val":0,"amt":2805},"partialState":{"h":22,"t":132,"tokens":[14527,12147,1493,1714],"delegation":[13527,11147,493,714],"delegatorTokens":9999999920441}},{"ix":193,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":194,"action":{"kind":"Deliver","chain":"consumer","numPackets":2},"partialState":{"h":23,"t":138,"consumerPower":[null,null,1493,null],"outstandingDowntime":[false,false,false,false]}},{"ix":195,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":23,"t":138,"tokens":[14527,12147,1493,1714],"delegation":[13527,11147,493,714],"delegatorTokens":9999999924546,"jailed":[1000000000000029,1000000000000047,null,1000000000000029],"status":["unbonded","unbonded","bonded","unbonded"]}},{"ix":196,"action":{"kind":"Undelegate","val":2,"amt":1461},"partialState":{"h":23,"t":138,"tokens":[14527,12147,1493,1714],"delegation":[13527,11147,493,714],"delegatorTokens":9999999924546}},{"ix":197,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":198,"action":{"kind":"Deliver","chain":"consumer","numPackets":5},"partialState":{"h":23,"t":138,"consumerPower":[null,null,1493,null],"outstandingDowntime":[false,false,false,false]}},{"ix":199,"action":{"kind":"Deliver","chain":"provider","numPackets":2},"partialState":{"h":23,"t":138,"tokens":[14527,12147,1493,1714],"delegation":[13527,11147,493,714],"delegatorTokens":9999999924546,"jailed":[1000000000000029,1000000000000047,null,1000000000000029],"status":["unbonded","unbonded","bonded","unbonded"]}}],"events":["send_downtime_slash_request","send_downtime_slash_request","send_double_sign_slash_request","more_than_one_third_val_power_change","send_vsc_without_downtime_ack","send_double_sign_slash_request","send_downtime_slash_request","send_vsc_without_downtime_ack","send_vsc_without_downtime_ack","receive_double_sign_slash_request","more_than_one_third_val_power_change","rebond_unval","receive_downtime_slash_request","jail","receive_downtime_slash_request","jail","send_vsc_with_downtime_ack","consumer_update_val","consumer_del_val","consumer_add_val","more_than_one_third_val_power_change","send_vsc_without_downtime_ack","receive_downtime_slash_ack","receive_downtime_slash_ack","receive_double_sign_slash_request","consumer_del_val","consumer_del_val","consumer_add_val","consumer_add_val","receive_downtime_slash_request","jail","send_vsc_with_downtime_ack","send_vsc_without_downtime_ack","send_vsc_not_because_change","send_vsc_without_downtime_ack","receive_downtime_slash_ack","consumer_del_val","consumer_update_val","insufficient_shares","send_vsc_without_downtime_ack","insufficient_shares","consumer_send_maturation","consumer_send_maturation","consumer_send_maturation","consumer_send_maturation","consumer_send_maturation","send_vsc_without_downtime_ack","set_undel_hold_false","set_undel_hold_false","set_unval_hold_false","complete_undel_in_endblock","set_undel_hold_false","set_undel_hold_false","set_undel_hold_false","set_unval_hold_false","consumer_send_maturation","consumer_send_maturation","consumer_send_maturation","consumer_update_val","insufficient_shares","send_vsc_without_downtime_ack","insufficient_shares","complete_unval_in_endblock","set_undel_hold_false","set_undel_hold_false","set_undel_hold_false","set_undel_hold_false","set_undel_hold_false","set_unval_hold_false","complete_unval_in_endblock","complete_undel_in_endblock","set_undel_hold_false","send_vsc_not_because_change","send_vsc_without_downtime_ack","consumer_update_val","complete_undel_in_endblock","insufficient_shares","complete_unval_in_endblock","send_vsc_not_because_change","send_vsc_without_downtime_ack","complete_undel_in_endblock","send_vsc_not_because_change","send_vsc_without_downtime_ack","insufficient_shares"]},{"meta":{"commit":"7ffd0c04e4205cbc9caf212abfe6c59ee43153bf"},"constants":{"P":"provider","C":"consumer","UNBONDING_SECONDS_P":70,"UNBONDING_SECONDS_C":50,"TRUSTING_SECONDS":49,"NUM_VALIDATORS":4,"MAX_VALIDATORS":2,"SLASH_DOUBLESIGN":0,"SLASH_DOWNTIME":0,"JAIL_SECONDS":999999999999999,"BLOCK_SECONDS":6,"INITIAL_DELEGATOR_TOKENS":10000000000000,"DELEGATE_AMT_MIN":1000,"DELEGATE_AMT_MAX":5000,"UNDELEGATE_AMT_MIN":1000,"UNDELEGATE_AMT_MAX":5000,"ISDOWNTIME_PROBABILITY":0.5,"MAX_NUM_PACKETS_FOR_DELIVER":6},"actions":[{"ix":0,"action":{"kind":"Undelegate","val":0,"amt":4127},"partialState":{"h":1,"t":6,"tokens":[5000,4000,3000,2000],"delegation":[4000,3000,2000,1000],"delegatorTokens":10000000000000}},{"ix":1,"action":{"kind":"Deliver","chain":"consumer","numPackets":5},"partialState":{"h":1,"t":6,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":2,"action":{"kind":"Deliver","chain":"consumer","numPackets":2},"partialState":{"h":1,"t":6,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":3,"action":{"kind":"ConsumerSlash","val":1,"infractionHeight":0,"isDowntime":true},"partialState":{"h":1,"t":6,"outstandingDowntime":[false,true,false,false]}},{"ix":4,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":2,"t":12,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,true,false,false]}},{"ix":5,"action":{"kind":"Deliver","chain":"provider","numPackets":2},"partialState":{"h":1,"t":6,"tokens":[5000,4000,3000,2000],"delegation":[4000,3000,2000,1000],"delegatorTokens":10000000000000,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":6,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":7,"action":{"kind":"Delegate","val":3,"amt":4194},"partialState":{"h":1,"t":6,"tokens":[5000,4000,3000,6194],"delegation":[4000,3000,2000,5194],"delegatorTokens":9999999995806}},{"ix":8,"action":{"kind":"ConsumerSlash","val":0,"infractionHeight":0,"isDowntime":true},"partialState":{"h":2,"t":12,"outstandingDowntime":[true,true,false,false]}},{"ix":9,"action":{"kind":"Deliver","chain":"consumer","numPackets":5},"partialState":{"h":2,"t":12,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[true,true,false,false]}},{"ix":10,"action":{"kind":"Delegate","val":2,"amt":2428},"partialState":{"h":1,"t":6,"tokens":[5000,4000,5428,6194],"delegation":[4000,3000,4428,5194],"delegatorTokens":9999999993378}},{"ix":11,"action":{"kind":"Deliver","chain":"provider","numPackets":2},"partialState":{"h":1,"t":6,"tokens":[5000,4000,5428,6194],"delegation":[4000,3000,4428,5194],"delegatorTokens":9999999993378,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":12,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":3,"t":18,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[true,true,false,false]}},{"ix":13,"action":{"kind":"Delegate","val":0,"amt":1892},"partialState":{"h":1,"t":6,"tokens":[6892,4000,5428,6194],"delegation":[5892,3000,4428,5194],"delegatorTokens":9999999991486}},{"ix":14,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":15,"action":{"kind":"ConsumerSlash","val":0,"infractionHeight":0,"isDowntime":true},"partialState":{"h":3,"t":18,"outstandingDowntime":[true,true,false,false]}},{"ix":16,"action":{"kind":"Delegate","val":2,"amt":2844},"partialState":{"h":1,"t":6,"tokens":[6892,4000,8272,6194],"delegation":[5892,3000,7272,5194],"delegatorTokens":9999999988642}},{"ix":17,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":18,"action":{"kind":"ConsumerSlash","val":1,"infractionHeight":2,"isDowntime":true},"partialState":{"h":3,"t":18,"outstandingDowntime":[true,true,false,false]}},{"ix":19,"action":{"kind":"Undelegate","val":3,"amt":2181},"partialState":{"h":1,"t":6,"tokens":[6892,4000,8272,4013],"delegation":[5892,3000,7272,3013],"delegatorTokens":9999999988642}},{"ix":20,"action":{"kind":"Deliver","chain":"consumer","numPackets":1},"partialState":{"h":3,"t":18,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[true,true,false,false]}},{"ix":21,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":22,"action":{"kind":"Undelegate","val":0,"amt":1486},"partialState":{"h":1,"t":6,"tokens":[5406,4000,8272,4013],"delegation":[4406,3000,7272,3013],"delegatorTokens":9999999988642}},{"ix":23,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":24,"action":{"kind":"Deliver","chain":"consumer","numPackets":5},"partialState":{"h":3,"t":18,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[true,true,false,false]}},{"ix":25,"action":{"kind":"Undelegate","val":0,"amt":3829},"partialState":{"h":1,"t":6,"tokens":[1577,4000,8272,4013],"delegation":[577,3000,7272,3013],"delegatorTokens":9999999988642}},{"ix":26,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":4,"t":24,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[true,true,false,false]}},{"ix":27,"action":{"kind":"ConsumerSlash","val":0,"infractionHeight":0,"isDowntime":false},"partialState":{"h":4,"t":24,"outstandingDowntime":[true,true,false,false]}},{"ix":28,"action":{"kind":"Undelegate","val":1,"amt":4580},"partialState":{"h":1,"t":6,"tokens":[1577,4000,8272,4013],"delegation":[577,3000,7272,3013],"delegatorTokens":9999999988642}},{"ix":29,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":30,"action":{"kind":"Undelegate","val":3,"amt":4989},"partialState":{"h":1,"t":6,"tokens":[1577,4000,8272,4013],"delegation":[577,3000,7272,3013],"delegatorTokens":9999999988642}},{"ix":31,"action":{"kind":"Undelegate","val":2,"amt":1599},"partialState":{"h":1,"t":6,"tokens":[1577,4000,6673,4013],"delegation":[577,3000,5673,3013],"delegatorTokens":9999999988642}},{"ix":32,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":33,"action":{"kind":"Deliver","chain":"consumer","numPackets":1},"partialState":{"h":4,"t":24,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[true,true,false,false]}},{"ix":34,"action":{"kind":"Undelegate","val":0,"amt":1778},"partialState":{"h":1,"t":6,"tokens":[1577,4000,6673,4013],"delegation":[577,3000,5673,3013],"delegatorTokens":9999999988642}},{"ix":35,"action":{"kind":"Delegate","val":0,"amt":3419},"partialState":{"h":1,"t":6,"tokens":[4996,4000,6673,4013],"delegation":[3996,3000,5673,3013],"delegatorTokens":9999999985223}},{"ix":36,"action":{"kind":"Undelegate","val":1,"amt":2273},"partialState":{"h":1,"t":6,"tokens":[4996,1727,6673,4013],"delegation":[3996,727,5673,3013],"delegatorTokens":9999999985223}},{"ix":37,"action":{"kind":"Undelegate","val":2,"amt":1103},"partialState":{"h":1,"t":6,"tokens":[4996,1727,5570,4013],"delegation":[3996,727,4570,3013],"delegatorTokens":9999999985223}},{"ix":38,"action":{"kind":"Undelegate","val":3,"amt":1223},"partialState":{"h":1,"t":6,"tokens":[4996,1727,5570,2790],"delegation":[3996,727,4570,1790],"delegatorTokens":9999999985223}},{"ix":39,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":2,"t":12,"tokens":[4996,1727,5570,2790],"delegation":[3996,727,4570,1790],"delegatorTokens":9999999985223,"jailed":[null,null,null,null],"status":["bonded","unbonding","bonded","unbonded"]}},{"ix":40,"action":{"kind":"ConsumerSlash","val":3,"infractionHeight":2,"isDowntime":true},"partialState":{"h":4,"t":24,"outstandingDowntime":[true,true,false,true]}},{"ix":41,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":42,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":43,"action":{"kind":"Undelegate","val":2,"amt":1043},"partialState":{"h":2,"t":12,"tokens":[4996,1727,4527,2790],"delegation":[3996,727,3527,1790],"delegatorTokens":9999999985223}},{"ix":44,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":5,"t":30,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[true,true,false,true]}},{"ix":45,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":46,"action":{"kind":"Delegate","val":0,"amt":2351},"partialState":{"h":2,"t":12,"tokens":[7347,1727,4527,2790],"delegation":[6347,727,3527,1790],"delegatorTokens":9999999982872}},{"ix":47,"action":{"kind":"Undelegate","val":0,"amt":2277},"partialState":{"h":2,"t":12,"tokens":[5070,1727,4527,2790],"delegation":[4070,727,3527,1790],"delegatorTokens":9999999982872}},{"ix":48,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":3,"t":18,"tokens":[5070,1727,4527,2790],"delegation":[4070,727,3527,1790],"delegatorTokens":9999999982872,"jailed":[null,null,null,null],"status":["bonded","unbonding","bonded","unbonded"]}},{"ix":49,"action":{"kind":"Delegate","val":3,"amt":4549},"partialState":{"h":3,"t":18,"tokens":[5070,1727,4527,7339],"delegation":[4070,727,3527,6339],"delegatorTokens":9999999978323}},{"ix":50,"action":{"kind":"Deliver","chain":"provider","numPackets":1},"partialState":{"h":3,"t":18,"tokens":[5070,1727,4527,7339],"delegation":[4070,727,3527,6339],"delegatorTokens":9999999978323,"jailed":[null,null,null,null],"status":["bonded","unbonding","bonded","unbonded"]}},{"ix":51,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":4,"t":24,"tokens":[5070,1727,4527,7339],"delegation":[4070,727,3527,6339],"delegatorTokens":9999999978323,"jailed":[null,1000000000000017,null,null],"status":["bonded","unbonding","unbonding","bonded"]}},{"ix":52,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":53,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":5,"t":30,"tokens":[5070,1727,4527,7339],"delegation":[4070,727,3527,6339],"delegatorTokens":9999999978323,"jailed":[null,1000000000000017,null,null],"status":["bonded","unbonding","unbonding","bonded"]}},{"ix":54,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":6,"t":36,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[true,true,false,true]}},{"ix":55,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":6,"t":36,"tokens":[5070,1727,4527,7339],"delegation":[4070,727,3527,6339],"delegatorTokens":9999999978323,"jailed":[null,1000000000000017,null,null],"status":["bonded","unbonding","unbonding","bonded"]}},{"ix":56,"action":{"kind":"Undelegate","val":1,"amt":4241},"partialState":{"h":6,"t":36,"tokens":[5070,1727,4527,7339],"delegation":[4070,727,3527,6339],"delegatorTokens":9999999978323}},{"ix":57,"action":{"kind":"Delegate","val":3,"amt":3703},"partialState":{"h":6,"t":36,"tokens":[5070,1727,4527,11042],"delegation":[4070,727,3527,10042],"delegatorTokens":9999999974620}},{"ix":58,"action":{"kind":"Undelegate","val":1,"amt":3064},"partialState":{"h":6,"t":36,"tokens":[5070,1727,4527,11042],"delegation":[4070,727,3527,10042],"delegatorTokens":9999999974620}},{"ix":59,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":60,"action":{"kind":"Undelegate","val":2,"amt":4058},"partialState":{"h":6,"t":36,"tokens":[5070,1727,4527,11042],"delegation":[4070,727,3527,10042],"delegatorTokens":9999999974620}},{"ix":61,"action":{"kind":"Undelegate","val":0,"amt":1507},"partialState":{"h":6,"t":36,"tokens":[3563,1727,4527,11042],"delegation":[2563,727,3527,10042],"delegatorTokens":9999999974620}},{"ix":62,"action":{"kind":"Deliver","chain":"provider","numPackets":2},"partialState":{"h":6,"t":36,"tokens":[3563,1727,4527,11042],"delegation":[2563,727,3527,10042],"delegatorTokens":9999999974620,"jailed":[null,1000000000000017,null,null],"status":["bonded","unbonding","unbonding","bonded"]}},{"ix":63,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":64,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":65,"action":{"kind":"Delegate","val":3,"amt":2187},"partialState":{"h":6,"t":36,"tokens":[3563,1727,4527,13229],"delegation":[2563,727,3527,12229],"delegatorTokens":9999999972433}},{"ix":66,"action":{"kind":"Undelegate","val":0,"amt":3806},"partialState":{"h":6,"t":36,"tokens":[3563,1727,4527,13229],"delegation":[2563,727,3527,12229],"delegatorTokens":9999999972433}},{"ix":67,"action":{"kind":"Undelegate","val":1,"amt":2772},"partialState":{"h":6,"t":36,"tokens":[3563,1727,4527,13229],"delegation":[2563,727,3527,12229],"delegatorTokens":9999999972433}},{"ix":68,"action":{"kind":"Undelegate","val":2,"amt":3669},"partialState":{"h":6,"t":36,"tokens":[3563,1727,4527,13229],"delegation":[2563,727,3527,12229],"delegatorTokens":9999999972433}},{"ix":69,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":70,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":7,"t":42,"tokens":[3563,1727,4527,13229],"delegation":[2563,727,3527,12229],"delegatorTokens":9999999972433,"jailed":[1000000000000035,1000000000000017,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":71,"action":{"kind":"Delegate","val":2,"amt":1359},"partialState":{"h":7,"t":42,"tokens":[3563,1727,5886,13229],"delegation":[2563,727,4886,12229],"delegatorTokens":9999999971074}},{"ix":72,"action":{"kind":"Deliver","chain":"provider","numPackets":3},"partialState":{"h":7,"t":42,"tokens":[3563,1727,5886,13229],"delegation":[2563,727,4886,12229],"delegatorTokens":9999999971074,"jailed":[1000000000000035,1000000000000017,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":73,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":74,"action":{"kind":"Delegate","val":3,"amt":1065},"partialState":{"h":7,"t":42,"tokens":[3563,1727,5886,14294],"delegation":[2563,727,4886,13294],"delegatorTokens":9999999970009}},{"ix":75,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":8,"t":48,"tokens":[3563,1727,5886,14294],"delegation":[2563,727,4886,13294],"delegatorTokens":9999999970009,"jailed":[1000000000000035,1000000000000017,null,1000000000000041],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":76,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":77,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":78,"action":{"kind":"Undelegate","val":2,"amt":1768},"partialState":{"h":8,"t":48,"tokens":[3563,1727,4118,14294],"delegation":[2563,727,3118,13294],"delegatorTokens":9999999970009}},{"ix":79,"action":{"kind":"Deliver","chain":"provider","numPackets":2},"partialState":{"h":8,"t":48,"tokens":[3563,1727,4118,14294],"delegation":[2563,727,3118,13294],"delegatorTokens":9999999970009,"jailed":[1000000000000035,1000000000000017,null,1000000000000041],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":80,"action":{"kind":"Undelegate","val":2,"amt":3799},"partialState":{"h":8,"t":48,"tokens":[3563,1727,4118,14294],"delegation":[2563,727,3118,13294],"delegatorTokens":9999999970009}},{"ix":81,"action":{"kind":"Deliver","chain":"provider","numPackets":4},"partialState":{"h":8,"t":48,"tokens":[3563,1727,4118,14294],"delegation":[2563,727,3118,13294],"delegatorTokens":9999999970009,"jailed":[1000000000000035,1000000000000017,null,1000000000000041],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":82,"action":{"kind":"Undelegate","val":2,"amt":1613},"partialState":{"h":8,"t":48,"tokens":[3563,1727,2505,14294],"delegation":[2563,727,1505,13294],"delegatorTokens":9999999970009}},{"ix":83,"action":{"kind":"Delegate","val":3,"amt":4210},"partialState":{"h":8,"t":48,"tokens":[3563,1727,2505,18504],"delegation":[2563,727,1505,17504],"delegatorTokens":9999999965799}},{"ix":84,"action":{"kind":"Deliver","chain":"provider","numPackets":5},"partialState":{"h":8,"t":48,"tokens":[3563,1727,2505,18504],"delegation":[2563,727,1505,17504],"delegatorTokens":9999999965799,"jailed":[1000000000000035,1000000000000017,null,1000000000000041],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":85,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":7,"t":42,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[true,true,false,true]}},{"ix":86,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":9,"t":54,"tokens":[3563,1727,2505,18504],"delegation":[2563,727,1505,17504],"delegatorTokens":9999999965799,"jailed":[1000000000000035,1000000000000017,null,1000000000000041],"status":["unbonding","unbonding","bonded","unbonding"]}},{"ix":87,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":10,"t":60,"tokens":[3563,1727,2505,18504],"delegation":[2563,727,1505,17504],"delegatorTokens":9999999965799,"jailed":[1000000000000035,1000000000000017,null,1000000000000041],"status":["unbonding","unbonding","bonded","unbonding"]}},{"ix":88,"action":{"kind":"Delegate","val":0,"amt":3463},"partialState":{"h":10,"t":60,"tokens":[7026,1727,2505,18504],"delegation":[6026,727,1505,17504],"delegatorTokens":9999999962336}},{"ix":89,"action":{"kind":"Deliver","chain":"consumer","numPackets":5},"partialState":{"h":7,"t":42,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":90,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":91,"action":{"kind":"Delegate","val":3,"amt":4326},"partialState":{"h":10,"t":60,"tokens":[7026,1727,2505,22830],"delegation":[6026,727,1505,21830],"delegatorTokens":9999999958010}},{"ix":92,"action":{"kind":"Delegate","val":0,"amt":2966},"partialState":{"h":10,"t":60,"tokens":[9992,1727,2505,22830],"delegation":[8992,727,1505,21830],"delegatorTokens":9999999955044}},{"ix":93,"action":{"kind":"Deliver","chain":"provider","numPackets":3},"partialState":{"h":10,"t":60,"tokens":[9992,1727,2505,22830],"delegation":[8992,727,1505,21830],"delegatorTokens":9999999955044,"jailed":[1000000000000035,1000000000000017,null,1000000000000041],"status":["unbonding","unbonding","bonded","unbonding"]}},{"ix":94,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":8,"t":48,"consumerPower":[null,null,5886,14294],"outstandingDowntime":[false,false,false,false]}},{"ix":95,"action":{"kind":"Deliver","chain":"provider","numPackets":1},"partialState":{"h":10,"t":60,"tokens":[9992,1727,2505,22830],"delegation":[8992,727,1505,21830],"delegatorTokens":9999999955044,"jailed":[1000000000000035,1000000000000017,null,1000000000000041],"status":["unbonding","unbonding","bonded","unbonding"]}},{"ix":96,"action":{"kind":"Deliver","chain":"consumer","numPackets":1},"partialState":{"h":8,"t":48,"consumerPower":[null,null,5886,14294],"outstandingDowntime":[false,false,false,false]}},{"ix":97,"action":{"kind":"Deliver","chain":"provider","numPackets":5},"partialState":{"h":10,"t":60,"tokens":[9992,1727,2505,22830],"delegation":[8992,727,1505,21830],"delegatorTokens":9999999955044,"jailed":[1000000000000035,1000000000000017,null,1000000000000041],"status":["unbonding","unbonding","bonded","unbonding"]}},{"ix":98,"action":{"kind":"Deliver","chain":"provider","numPackets":5},"partialState":{"h":10,"t":60,"tokens":[9992,1727,2505,22830],"delegation":[8992,727,1505,21830],"delegatorTokens":9999999955044,"jailed":[1000000000000035,1000000000000017,null,1000000000000041],"status":["unbonding","unbonding","bonded","unbonding"]}},{"ix":99,"action":{"kind":"Delegate","val":1,"amt":1050},"partialState":{"h":10,"t":60,"tokens":[9992,2777,2505,22830],"delegation":[8992,1777,1505,21830],"delegatorTokens":9999999953994}},{"ix":100,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":101,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":9,"t":54,"consumerPower":[null,null,2505,null],"outstandingDowntime":[false,false,false,false]}},{"ix":102,"action":{"kind":"Deliver","chain":"provider","numPackets":3},"partialState":{"h":10,"t":60,"tokens":[9992,2777,2505,22830],"delegation":[8992,1777,1505,21830],"delegatorTokens":9999999953994,"jailed":[1000000000000035,1000000000000017,null,1000000000000041],"status":["unbonding","unbonding","bonded","unbonding"]}},{"ix":103,"action":{"kind":"Deliver","chain":"provider","numPackets":3},"partialState":{"h":10,"t":60,"tokens":[9992,2777,2505,22830],"delegation":[8992,1777,1505,21830],"delegatorTokens":9999999953994,"jailed":[1000000000000035,1000000000000017,null,1000000000000041],"status":["unbonding","unbonding","bonded","unbonding"]}},{"ix":104,"action":{"kind":"Delegate","val":1,"amt":3680},"partialState":{"h":10,"t":60,"tokens":[9992,6457,2505,22830],"delegation":[8992,5457,1505,21830],"delegatorTokens":9999999950314}},{"ix":105,"action":{"kind":"Delegate","val":0,"amt":2864},"partialState":{"h":10,"t":60,"tokens":[12856,6457,2505,22830],"delegation":[11856,5457,1505,21830],"delegatorTokens":9999999947450}},{"ix":106,"action":{"kind":"Deliver","chain":"provider","numPackets":2},"partialState":{"h":10,"t":60,"tokens":[12856,6457,2505,22830],"delegation":[11856,5457,1505,21830],"delegatorTokens":9999999947450,"jailed":[1000000000000035,1000000000000017,null,1000000000000041],"status":["unbonding","unbonding","bonded","unbonding"]}},{"ix":107,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":11,"t":66,"tokens":[12856,6457,2505,22830],"delegation":[11856,5457,1505,21830],"delegatorTokens":9999999947450,"jailed":[1000000000000035,1000000000000017,null,1000000000000041],"status":["unbonding","unbonding","bonded","unbonding"]}},{"ix":108,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":10,"t":60,"consumerPower":[null,null,2505,null],"outstandingDowntime":[false,false,false,false]}},{"ix":109,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":110,"action":{"kind":"Delegate","val":3,"amt":4532},"partialState":{"h":11,"t":66,"tokens":[12856,6457,2505,27362],"delegation":[11856,5457,1505,26362],"delegatorTokens":9999999942918}},{"ix":111,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":112,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":113,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":114,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":11,"t":66,"consumerPower":[null,null,2505,null],"outstandingDowntime":[false,false,false,false]}},{"ix":115,"action":{"kind":"Deliver","chain":"consumer","numPackets":2},"partialState":{"h":11,"t":66,"consumerPower":[null,null,2505,null],"outstandingDowntime":[false,false,false,false]}},{"ix":116,"action":{"kind":"Deliver","chain":"consumer","numPackets":2},"partialState":{"h":11,"t":66,"consumerPower":[null,null,2505,null],"outstandingDowntime":[false,false,false,false]}},{"ix":117,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":118,"action":{"kind":"Deliver","chain":"provider","numPackets":4},"partialState":{"h":11,"t":66,"tokens":[12856,6457,2505,27362],"delegation":[11856,5457,1505,26362],"delegatorTokens":9999999942918,"jailed":[1000000000000035,1000000000000017,null,1000000000000041],"status":["unbonding","unbonding","bonded","unbonding"]}},{"ix":119,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":12,"t":72,"consumerPower":[null,null,2505,null],"outstandingDowntime":[false,false,false,false]}},{"ix":120,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":121,"action":{"kind":"Deliver","chain":"consumer","numPackets":2},"partialState":{"h":12,"t":72,"consumerPower":[null,null,2505,null],"outstandingDowntime":[false,false,false,false]}},{"ix":122,"action":{"kind":"Deliver","chain":"provider","numPackets":2},"partialState":{"h":11,"t":66,"tokens":[12856,6457,2505,27362],"delegation":[11856,5457,1505,26362],"delegatorTokens":9999999942918,"jailed":[1000000000000035,1000000000000017,null,1000000000000041],"status":["unbonding","unbonding","bonded","unbonding"]}},{"ix":123,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":13,"t":78,"consumerPower":[null,null,2505,null],"outstandingDowntime":[false,false,false,false]}},{"ix":124,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":12,"t":72,"tokens":[12856,6457,2505,27362],"delegation":[11856,5457,1505,26362],"delegatorTokens":9999999942918,"jailed":[1000000000000035,1000000000000017,null,1000000000000041],"status":["unbonding","unbonding","bonded","unbonding"]}},{"ix":125,"action":{"kind":"Deliver","chain":"provider","numPackets":4},"partialState":{"h":12,"t":72,"tokens":[12856,6457,2505,27362],"delegation":[11856,5457,1505,26362],"delegatorTokens":9999999942918,"jailed":[1000000000000035,1000000000000017,null,1000000000000041],"status":["unbonding","unbonding","bonded","unbonding"]}},{"ix":126,"action":{"kind":"Undelegate","val":0,"amt":3115},"partialState":{"h":12,"t":72,"tokens":[9741,6457,2505,27362],"delegation":[8741,5457,1505,26362],"delegatorTokens":9999999942918}},{"ix":127,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":14,"t":84,"consumerPower":[null,null,2505,null],"outstandingDowntime":[false,false,false,false]}},{"ix":128,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":129,"action":{"kind":"Delegate","val":3,"amt":1440},"partialState":{"h":12,"t":72,"tokens":[9741,6457,2505,28802],"delegation":[8741,5457,1505,27802],"delegatorTokens":9999999941478}},{"ix":130,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":15,"t":90,"consumerPower":[null,null,2505,null],"outstandingDowntime":[false,false,false,false]}},{"ix":131,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":16,"t":96,"consumerPower":[null,null,2505,null],"outstandingDowntime":[false,false,false,false]}},{"ix":132,"action":{"kind":"Undelegate","val":3,"amt":1303},"partialState":{"h":12,"t":72,"tokens":[9741,6457,2505,27499],"delegation":[8741,5457,1505,26499],"delegatorTokens":9999999941478}},{"ix":133,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":134,"action":{"kind":"Delegate","val":1,"amt":4725},"partialState":{"h":12,"t":72,"tokens":[9741,11182,2505,27499],"delegation":[8741,10182,1505,26499],"delegatorTokens":9999999936753}},{"ix":135,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":17,"t":102,"consumerPower":[null,null,2505,null],"outstandingDowntime":[false,false,false,false]}},{"ix":136,"action":{"kind":"Undelegate","val":3,"amt":1789},"partialState":{"h":12,"t":72,"tokens":[9741,11182,2505,25710],"delegation":[8741,10182,1505,24710],"delegatorTokens":9999999936753}},{"ix":137,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":18,"t":108,"consumerPower":[null,null,2505,null],"outstandingDowntime":[false,false,false,false]}},{"ix":138,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":13,"t":78,"tokens":[9741,11182,2505,25710],"delegation":[8741,10182,1505,24710],"delegatorTokens":9999999936753,"jailed":[1000000000000035,1000000000000017,null,1000000000000041],"status":["unbonding","unbonding","bonded","unbonding"]}},{"ix":139,"action":{"kind":"Delegate","val":3,"amt":1238},"partialState":{"h":13,"t":78,"tokens":[9741,11182,2505,26948],"delegation":[8741,10182,1505,25948],"delegatorTokens":9999999935515}},{"ix":140,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":14,"t":84,"tokens":[9741,11182,2505,26948],"delegation":[8741,10182,1505,25948],"delegatorTokens":9999999935515,"jailed":[1000000000000035,1000000000000017,null,1000000000000041],"status":["unbonding","unbonding","bonded","unbonding"]}},{"ix":141,"action":{"kind":"Deliver","chain":"consumer","numPackets":6},"partialState":{"h":18,"t":108,"consumerPower":[null,null,2505,null],"outstandingDowntime":[false,false,false,false]}},{"ix":142,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":15,"t":90,"tokens":[9741,11182,2505,26948],"delegation":[8741,10182,1505,25948],"delegatorTokens":9999999935515,"jailed":[1000000000000035,1000000000000017,null,1000000000000041],"status":["unbonding","unbonding","bonded","unbonding"]}},{"ix":143,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":144,"action":{"kind":"Delegate","val":1,"amt":1810},"partialState":{"h":15,"t":90,"tokens":[9741,12992,2505,26948],"delegation":[8741,11992,1505,25948],"delegatorTokens":9999999933705}},{"ix":145,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":146,"action":{"kind":"Undelegate","val":2,"amt":3095},"partialState":{"h":15,"t":90,"tokens":[9741,12992,2505,26948],"delegation":[8741,11992,1505,25948],"delegatorTokens":9999999933705}},{"ix":147,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":148,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":149,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":16,"t":96,"tokens":[9741,12992,2505,26948],"delegation":[8741,11992,1505,25948],"delegatorTokens":9999999933705,"jailed":[1000000000000035,1000000000000017,null,1000000000000041],"status":["unbonding","unbonding","bonded","unbonding"]}},{"ix":150,"action":{"kind":"Undelegate","val":1,"amt":4322},"partialState":{"h":16,"t":96,"tokens":[9741,8670,2505,26948],"delegation":[8741,7670,1505,25948],"delegatorTokens":9999999933705}},{"ix":151,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":152,"action":{"kind":"Undelegate","val":1,"amt":2415},"partialState":{"h":16,"t":96,"tokens":[9741,6255,2505,26948],"delegation":[8741,5255,1505,25948],"delegatorTokens":9999999933705}},{"ix":153,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":17,"t":102,"tokens":[9741,6255,2505,26948],"delegation":[8741,5255,1505,25948],"delegatorTokens":9999999933705,"jailed":[1000000000000035,1000000000000017,null,1000000000000041],"status":["unbonding","unbonding","bonded","unbonding"]}},{"ix":154,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":19,"t":114,"consumerPower":[null,null,2505,null],"outstandingDowntime":[false,false,false,false]}},{"ix":155,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":18,"t":108,"tokens":[9741,6255,2505,26948],"delegation":[8741,5255,1505,25948],"delegatorTokens":9999999933705,"jailed":[1000000000000035,1000000000000017,null,1000000000000041],"status":["unbonding","unbonding","bonded","unbonding"]}},{"ix":156,"action":{"kind":"Deliver","chain":"consumer","numPackets":1},"partialState":{"h":19,"t":114,"consumerPower":[null,null,2505,null],"outstandingDowntime":[false,false,false,false]}},{"ix":157,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":20,"t":120,"consumerPower":[null,null,2505,null],"outstandingDowntime":[false,false,false,false]}},{"ix":158,"action":{"kind":"Undelegate","val":0,"amt":4129},"partialState":{"h":18,"t":108,"tokens":[5612,6255,2505,26948],"delegation":[4612,5255,1505,25948],"delegatorTokens":9999999933705}},{"ix":159,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":160,"action":{"kind":"Undelegate","val":2,"amt":2758},"partialState":{"h":18,"t":108,"tokens":[5612,6255,2505,26948],"delegation":[4612,5255,1505,25948],"delegatorTokens":9999999933705}},{"ix":161,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":162,"action":{"kind":"Delegate","val":0,"amt":3122},"partialState":{"h":18,"t":108,"tokens":[8734,6255,2505,26948],"delegation":[7734,5255,1505,25948],"delegatorTokens":9999999930583}},{"ix":163,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":21,"t":126,"consumerPower":[null,null,2505,null],"outstandingDowntime":[false,false,false,false]}},{"ix":164,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":22,"t":132,"consumerPower":[null,null,2505,null],"outstandingDowntime":[false,false,false,false]}},{"ix":165,"action":{"kind":"Deliver","chain":"provider","numPackets":6},"partialState":{"h":18,"t":108,"tokens":[8734,6255,2505,26948],"delegation":[7734,5255,1505,25948],"delegatorTokens":9999999930583,"jailed":[1000000000000035,1000000000000017,null,1000000000000041],"status":["unbonding","unbonding","bonded","unbonding"]}},{"ix":166,"action":{"kind":"Deliver","chain":"provider","numPackets":2},"partialState":{"h":18,"t":108,"tokens":[8734,6255,2505,26948],"delegation":[7734,5255,1505,25948],"delegatorTokens":9999999930583,"jailed":[1000000000000035,1000000000000017,null,1000000000000041],"status":["unbonding","unbonding","bonded","unbonding"]}},{"ix":167,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":19,"t":114,"tokens":[8734,6255,2505,26948],"delegation":[7734,5255,1505,25948],"delegatorTokens":9999999949104,"jailed":[1000000000000035,1000000000000017,null,1000000000000041],"status":["unbonding","unbonding","bonded","unbonding"]}},{"ix":168,"action":{"kind":"Deliver","chain":"consumer","numPackets":5},"partialState":{"h":22,"t":132,"consumerPower":[null,null,2505,null],"outstandingDowntime":[false,false,false,false]}},{"ix":169,"action":{"kind":"Deliver","chain":"provider","numPackets":2},"partialState":{"h":19,"t":114,"tokens":[8734,6255,2505,26948],"delegation":[7734,5255,1505,25948],"delegatorTokens":9999999949104,"jailed":[1000000000000035,1000000000000017,null,1000000000000041],"status":["unbonding","unbonding","bonded","unbonding"]}},{"ix":170,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":20,"t":120,"tokens":[8734,6255,2505,26948],"delegation":[7734,5255,1505,25948],"delegatorTokens":9999999949104,"jailed":[1000000000000035,1000000000000017,null,1000000000000041],"status":["unbonded","unbonded","bonded","unbonding"]}},{"ix":171,"action":{"kind":"Deliver","chain":"provider","numPackets":2},"partialState":{"h":20,"t":120,"tokens":[8734,6255,2505,26948],"delegation":[7734,5255,1505,25948],"delegatorTokens":9999999949104,"jailed":[1000000000000035,1000000000000017,null,1000000000000041],"status":["unbonded","unbonded","bonded","unbonding"]}},{"ix":172,"action":{"kind":"Undelegate","val":1,"amt":2695},"partialState":{"h":20,"t":120,"tokens":[8734,3560,2505,26948],"delegation":[7734,2560,1505,25948],"delegatorTokens":9999999949104}},{"ix":173,"action":{"kind":"Deliver","chain":"provider","numPackets":1},"partialState":{"h":20,"t":120,"tokens":[8734,3560,2505,26948],"delegation":[7734,2560,1505,25948],"delegatorTokens":9999999949104,"jailed":[1000000000000035,1000000000000017,null,1000000000000041],"status":["unbonded","unbonded","bonded","unbonding"]}},{"ix":174,"action":{"kind":"Deliver","chain":"provider","numPackets":5},"partialState":{"h":20,"t":120,"tokens":[8734,3560,2505,26948],"delegation":[7734,2560,1505,25948],"delegatorTokens":9999999949104,"jailed":[1000000000000035,1000000000000017,null,1000000000000041],"status":["unbonded","unbonded","bonded","unbonding"]}},{"ix":175,"action":{"kind":"Delegate","val":0,"amt":4415},"partialState":{"h":20,"t":120,"tokens":[13149,3560,2505,26948],"delegation":[12149,2560,1505,25948],"delegatorTokens":9999999944689}},{"ix":176,"action":{"kind":"Undelegate","val":2,"amt":4113},"partialState":{"h":20,"t":120,"tokens":[13149,3560,2505,26948],"delegation":[12149,2560,1505,25948],"delegatorTokens":9999999944689}},{"ix":177,"action":{"kind":"Undelegate","val":3,"amt":3351},"partialState":{"h":20,"t":120,"tokens":[13149,3560,2505,23597],"delegation":[12149,2560,1505,22597],"delegatorTokens":9999999944689}},{"ix":178,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":21,"t":126,"tokens":[13149,3560,2505,23597],"delegation":[12149,2560,1505,22597],"delegatorTokens":9999999948070,"jailed":[1000000000000035,1000000000000017,null,1000000000000041],"status":["unbonded","unbonded","bonded","unbonded"]}},{"ix":179,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":180,"action":{"kind":"Deliver","chain":"provider","numPackets":2},"partialState":{"h":21,"t":126,"tokens":[13149,3560,2505,23597],"delegation":[12149,2560,1505,22597],"delegatorTokens":9999999948070,"jailed":[1000000000000035,1000000000000017,null,1000000000000041],"status":["unbonded","unbonded","bonded","unbonded"]}},{"ix":181,"action":{"kind":"Deliver","chain":"consumer","numPackets":3},"partialState":{"h":22,"t":132,"consumerPower":[null,null,2505,null],"outstandingDowntime":[false,false,false,false]}},{"ix":182,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":183,"action":{"kind":"Undelegate","val":1,"amt":1377},"partialState":{"h":21,"t":126,"tokens":[13149,2183,2505,23597],"delegation":[12149,1183,1505,22597],"delegatorTokens":9999999948070}},{"ix":184,"action":{"kind":"Undelegate","val":0,"amt":1042},"partialState":{"h":21,"t":126,"tokens":[12107,2183,2505,23597],"delegation":[11107,1183,1505,22597],"delegatorTokens":9999999948070}},{"ix":185,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":23,"t":138,"consumerPower":[null,null,2505,null],"outstandingDowntime":[false,false,false,false]}},{"ix":186,"action":{"kind":"Undelegate","val":1,"amt":1272},"partialState":{"h":21,"t":126,"tokens":[12107,2183,2505,23597],"delegation":[11107,1183,1505,22597],"delegatorTokens":9999999948070}},{"ix":187,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":188,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":189,"action":{"kind":"Delegate","val":1,"amt":3272},"partialState":{"h":21,"t":126,"tokens":[12107,5455,2505,23597],"delegation":[11107,4455,1505,22597],"delegatorTokens":9999999944798}},{"ix":190,"action":{"kind":"Undelegate","val":0,"amt":1899},"partialState":{"h":21,"t":126,"tokens":[10208,5455,2505,23597],"delegation":[9208,4455,1505,22597],"delegatorTokens":9999999944798}},{"ix":191,"action":{"kind":"Undelegate","val":3,"amt":4237},"partialState":{"h":21,"t":126,"tokens":[10208,5455,2505,19360],"delegation":[9208,4455,1505,18360],"delegatorTokens":9999999944798}},{"ix":192,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":193,"action":{"kind":"Delegate","val":0,"amt":2729},"partialState":{"h":21,"t":126,"tokens":[12937,5455,2505,19360],"delegation":[11937,4455,1505,18360],"delegatorTokens":9999999942069}},{"ix":194,"action":{"kind":"Deliver","chain":"consumer","numPackets":4},"partialState":{"h":23,"t":138,"consumerPower":[null,null,2505,null],"outstandingDowntime":[false,false,false,false]}},{"ix":195,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":196,"action":{"kind":"Deliver","chain":"consumer","numPackets":6},"partialState":{"h":23,"t":138,"consumerPower":[null,null,2505,null],"outstandingDowntime":[false,false,false,false]}},{"ix":197,"action":{"kind":"Deliver","chain":"provider","numPackets":3},"partialState":{"h":21,"t":126,"tokens":[12937,5455,2505,19360],"delegation":[11937,4455,1505,18360],"delegatorTokens":9999999942069,"jailed":[1000000000000035,1000000000000017,null,1000000000000041],"status":["unbonded","unbonded","bonded","unbonded"]}},{"ix":198,"action":{"kind":"Undelegate","val":3,"amt":3507},"partialState":{"h":21,"t":126,"tokens":[12937,5455,2505,15853],"delegation":[11937,4455,1505,14853],"delegatorTokens":9999999942069}},{"ix":199,"action":{"kind":"Deliver","chain":"provider","numPackets":5},"partialState":{"h":21,"t":126,"tokens":[12937,5455,2505,15853],"delegation":[11937,4455,1505,14853],"delegatorTokens":9999999942069,"jailed":[1000000000000035,1000000000000017,null,1000000000000041],"status":["unbonded","unbonded","bonded","unbonded"]}}],"events":["insufficient_shares","send_downtime_slash_request","send_downtime_slash_request","downtime_slash_request_outstanding","downtime_slash_request_outstanding","send_double_sign_slash_request","insufficient_shares","insufficient_shares","insufficient_shares","more_than_one_third_val_power_change","send_vsc_without_downtime_ack","send_downtime_slash_request","send_vsc_without_downtime_ack","more_than_one_third_val_power_change","receive_downtime_slash_request","jail","send_vsc_with_downtime_ack","insufficient_shares","insufficient_shares","insufficient_shares","receive_double_sign_slash_request","insufficient_shares","insufficient_shares","insufficient_shares","rebond_unval","receive_downtime_slash_request","jail","send_vsc_with_downtime_ack","receive_downtime_slash_request","jail","send_vsc_with_downtime_ack","insufficient_shares","send_vsc_without_downtime_ack","receive_downtime_slash_ack","receive_downtime_slash_ack","receive_downtime_slash_ack","consumer_del_val","consumer_del_val","consumer_add_val","consumer_add_val","consumer_update_val","consumer_del_val","consumer_send_maturation","consumer_send_maturation","consumer_send_maturation","consumer_send_maturation","consumer_send_maturation","consumer_send_maturation","send_vsc_not_because_change","send_vsc_without_downtime_ack","some_undels_expired_but_not_completed","some_undels_expired_but_not_completed","insufficient_shares","send_vsc_not_because_change","send_vsc_without_downtime_ack","insufficient_shares","some_undels_expired_but_not_completed","complete_undel_immediate","complete_undel_immediate","complete_undel_immediate","complete_undel_immediate","complete_undel_immediate","complete_undel_immediate","complete_undel_immediate","set_unval_hold_false","complete_undel_immediate","complete_undel_immediate","complete_undel_immediate","set_unval_hold_false","set_undel_hold_false","set_undel_hold_false","set_unval_hold_false","send_vsc_not_because_change","send_vsc_without_downtime_ack","complete_unval_in_endblock","complete_unval_in_endblock","insufficient_shares","complete_unval_in_endblock","complete_undel_in_endblock","send_vsc_not_because_change","send_vsc_without_downtime_ack","insufficient_shares"]},{"meta":{"commit":"7ffd0c04e4205cbc9caf212abfe6c59ee43153bf"},"constants":{"P":"provider","C":"consumer","UNBONDING_SECONDS_P":70,"UNBONDING_SECONDS_C":50,"TRUSTING_SECONDS":49,"NUM_VALIDATORS":4,"MAX_VALIDATORS":2,"SLASH_DOUBLESIGN":0,"SLASH_DOWNTIME":0,"JAIL_SECONDS":999999999999999,"BLOCK_SECONDS":6,"INITIAL_DELEGATOR_TOKENS":10000000000000,"DELEGATE_AMT_MIN":1000,"DELEGATE_AMT_MAX":5000,"UNDELEGATE_AMT_MIN":1000,"UNDELEGATE_AMT_MAX":5000,"ISDOWNTIME_PROBABILITY":0.5,"MAX_NUM_PACKETS_FOR_DELIVER":6},"actions":[{"ix":0,"action":{"kind":"ConsumerSlash","val":2,"infractionHeight":0,"isDowntime":true},"partialState":{"h":1,"t":6,"outstandingDowntime":[false,false,true,false]}},{"ix":1,"action":{"kind":"Delegate","val":2,"amt":4508},"partialState":{"h":1,"t":6,"tokens":[5000,4000,7508,2000],"delegation":[4000,3000,6508,1000],"delegatorTokens":9999999995492}},{"ix":2,"action":{"kind":"Undelegate","val":2,"amt":1048},"partialState":{"h":1,"t":6,"tokens":[5000,4000,6460,2000],"delegation":[4000,3000,5460,1000],"delegatorTokens":9999999995492}},{"ix":3,"action":{"kind":"ConsumerSlash","val":2,"infractionHeight":0,"isDowntime":true},"partialState":{"h":1,"t":6,"outstandingDowntime":[false,false,true,false]}},{"ix":4,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":5,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":6,"action":{"kind":"Undelegate","val":0,"amt":2945},"partialState":{"h":1,"t":6,"tokens":[2055,4000,6460,2000],"delegation":[1055,3000,5460,1000],"delegatorTokens":9999999995492}},{"ix":7,"action":{"kind":"Delegate","val":2,"amt":2815},"partialState":{"h":1,"t":6,"tokens":[2055,4000,9275,2000],"delegation":[1055,3000,8275,1000],"delegatorTokens":9999999992677}},{"ix":8,"action":{"kind":"ConsumerSlash","val":2,"infractionHeight":0,"isDowntime":true},"partialState":{"h":1,"t":6,"outstandingDowntime":[false,false,true,false]}},{"ix":9,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":10,"action":{"kind":"Delegate","val":1,"amt":1837},"partialState":{"h":1,"t":6,"tokens":[2055,5837,9275,2000],"delegation":[1055,4837,8275,1000],"delegatorTokens":9999999990840}},{"ix":11,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":12,"action":{"kind":"Deliver","chain":"provider","numPackets":3},"partialState":{"h":1,"t":6,"tokens":[2055,5837,9275,2000],"delegation":[1055,4837,8275,1000],"delegatorTokens":9999999990840,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":13,"action":{"kind":"Deliver","chain":"consumer","numPackets":5},"partialState":{"h":1,"t":6,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,false,true,false]}},{"ix":14,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":2,"t":12,"tokens":[2055,5837,9275,2000],"delegation":[1055,4837,8275,1000],"delegatorTokens":9999999990840,"jailed":[null,null,null,null],"status":["unbonding","bonded","bonded","unbonded"]}},{"ix":15,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":2,"t":12,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,false,true,false]}},{"ix":16,"action":{"kind":"ConsumerSlash","val":0,"infractionHeight":0,"isDowntime":false},"partialState":{"h":2,"t":12,"outstandingDowntime":[false,false,true,false]}},{"ix":17,"action":{"kind":"Undelegate","val":0,"amt":2126},"partialState":{"h":2,"t":12,"tokens":[2055,5837,9275,2000],"delegation":[1055,4837,8275,1000],"delegatorTokens":9999999990840}},{"ix":18,"action":{"kind":"Delegate","val":1,"amt":1550},"partialState":{"h":2,"t":12,"tokens":[2055,7387,9275,2000],"delegation":[1055,6387,8275,1000],"delegatorTokens":9999999989290}},{"ix":19,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":20,"action":{"kind":"Delegate","val":3,"amt":4563},"partialState":{"h":2,"t":12,"tokens":[2055,7387,9275,6563],"delegation":[1055,6387,8275,5563],"delegatorTokens":9999999984727}},{"ix":21,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":3,"t":18,"tokens":[2055,7387,9275,6563],"delegation":[1055,6387,8275,5563],"delegatorTokens":9999999984727,"jailed":[null,null,null,null],"status":["unbonding","bonded","bonded","unbonded"]}},{"ix":22,"action":{"kind":"ConsumerSlash","val":2,"infractionHeight":1,"isDowntime":true},"partialState":{"h":2,"t":12,"outstandingDowntime":[false,false,true,false]}},{"ix":23,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":24,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":25,"action":{"kind":"ConsumerSlash","val":0,"infractionHeight":0,"isDowntime":true},"partialState":{"h":2,"t":12,"outstandingDowntime":[true,false,true,false]}},{"ix":26,"action":{"kind":"Delegate","val":1,"amt":4128},"partialState":{"h":3,"t":18,"tokens":[2055,11515,9275,6563],"delegation":[1055,10515,8275,5563],"delegatorTokens":9999999980599}},{"ix":27,"action":{"kind":"ConsumerSlash","val":0,"infractionHeight":1,"isDowntime":true},"partialState":{"h":2,"t":12,"outstandingDowntime":[true,false,true,false]}},{"ix":28,"action":{"kind":"Delegate","val":2,"amt":1988},"partialState":{"h":3,"t":18,"tokens":[2055,11515,11263,6563],"delegation":[1055,10515,10263,5563],"delegatorTokens":9999999978611}},{"ix":29,"action":{"kind":"Deliver","chain":"provider","numPackets":6},"partialState":{"h":3,"t":18,"tokens":[2055,11515,11263,6563],"delegation":[1055,10515,10263,5563],"delegatorTokens":9999999978611,"jailed":[null,null,null,null],"status":["unbonding","bonded","bonded","unbonded"]}},{"ix":30,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":3,"t":18,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[true,false,true,false]}},{"ix":31,"action":{"kind":"Delegate","val":3,"amt":4458},"partialState":{"h":3,"t":18,"tokens":[2055,11515,11263,11021],"delegation":[1055,10515,10263,10021],"delegatorTokens":9999999974153}},{"ix":32,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":4,"t":24,"tokens":[2055,11515,11263,11021],"delegation":[1055,10515,10263,10021],"delegatorTokens":9999999974153,"jailed":[null,null,null,null],"status":["unbonding","bonded","bonded","unbonded"]}},{"ix":33,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":34,"action":{"kind":"Undelegate","val":2,"amt":3530},"partialState":{"h":4,"t":24,"tokens":[2055,11515,7733,11021],"delegation":[1055,10515,6733,10021],"delegatorTokens":9999999974153}},{"ix":35,"action":{"kind":"Undelegate","val":1,"amt":4972},"partialState":{"h":4,"t":24,"tokens":[2055,6543,7733,11021],"delegation":[1055,5543,6733,10021],"delegatorTokens":9999999974153}},{"ix":36,"action":{"kind":"Deliver","chain":"provider","numPackets":3},"partialState":{"h":4,"t":24,"tokens":[2055,6543,7733,11021],"delegation":[1055,5543,6733,10021],"delegatorTokens":9999999974153,"jailed":[null,null,null,null],"status":["unbonding","bonded","bonded","unbonded"]}},{"ix":37,"action":{"kind":"Deliver","chain":"consumer","numPackets":3},"partialState":{"h":3,"t":18,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[true,false,true,false]}},{"ix":38,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":4,"t":24,"consumerPower":[null,7387,9275,null],"outstandingDowntime":[true,false,true,false]}},{"ix":39,"action":{"kind":"Deliver","chain":"provider","numPackets":3},"partialState":{"h":4,"t":24,"tokens":[2055,6543,7733,11021],"delegation":[1055,5543,6733,10021],"delegatorTokens":9999999974153,"jailed":[null,null,null,null],"status":["unbonding","bonded","bonded","unbonded"]}},{"ix":40,"action":{"kind":"Deliver","chain":"provider","numPackets":6},"partialState":{"h":4,"t":24,"tokens":[2055,6543,7733,11021],"delegation":[1055,5543,6733,10021],"delegatorTokens":9999999974153,"jailed":[null,null,null,null],"status":["unbonding","bonded","bonded","unbonded"]}},{"ix":41,"action":{"kind":"Undelegate","val":1,"amt":2136},"partialState":{"h":4,"t":24,"tokens":[2055,4407,7733,11021],"delegation":[1055,3407,6733,10021],"delegatorTokens":9999999974153}},{"ix":42,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":43,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":44,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":45,"action":{"kind":"Delegate","val":2,"amt":4162},"partialState":{"h":4,"t":24,"tokens":[2055,4407,11895,11021],"delegation":[1055,3407,10895,10021],"delegatorTokens":9999999969991}},{"ix":46,"action":{"kind":"Delegate","val":3,"amt":4510},"partialState":{"h":4,"t":24,"tokens":[2055,4407,11895,15531],"delegation":[1055,3407,10895,14531],"delegatorTokens":9999999965481}},{"ix":47,"action":{"kind":"Delegate","val":0,"amt":1305},"partialState":{"h":4,"t":24,"tokens":[3360,4407,11895,15531],"delegation":[2360,3407,10895,14531],"delegatorTokens":9999999964176}},{"ix":48,"action":{"kind":"Undelegate","val":0,"amt":1662},"partialState":{"h":4,"t":24,"tokens":[1698,4407,11895,15531],"delegation":[698,3407,10895,14531],"delegatorTokens":9999999964176}},{"ix":49,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":5,"t":30,"tokens":[1698,4407,11895,15531],"delegation":[698,3407,10895,14531],"delegatorTokens":9999999964176,"jailed":[1000000000000023,null,1000000000000023,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":50,"action":{"kind":"Delegate","val":3,"amt":4832},"partialState":{"h":5,"t":30,"tokens":[1698,4407,11895,20363],"delegation":[698,3407,10895,19363],"delegatorTokens":9999999959344}},{"ix":51,"action":{"kind":"Delegate","val":2,"amt":1658},"partialState":{"h":5,"t":30,"tokens":[1698,4407,13553,20363],"delegation":[698,3407,12553,19363],"delegatorTokens":9999999957686}},{"ix":52,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":5,"t":30,"consumerPower":[null,7387,9275,null],"outstandingDowntime":[true,false,true,false]}},{"ix":53,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":6,"t":36,"consumerPower":[null,7387,9275,null],"outstandingDowntime":[true,false,true,false]}},{"ix":54,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":55,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":56,"action":{"kind":"Undelegate","val":0,"amt":4289},"partialState":{"h":5,"t":30,"tokens":[1698,4407,13553,20363],"delegation":[698,3407,12553,19363],"delegatorTokens":9999999957686}},{"ix":57,"action":{"kind":"ConsumerSlash","val":0,"infractionHeight":3,"isDowntime":true},"partialState":{"h":6,"t":36,"outstandingDowntime":[true,false,true,false]}},{"ix":58,"action":{"kind":"Delegate","val":1,"amt":2638},"partialState":{"h":5,"t":30,"tokens":[1698,7045,13553,20363],"delegation":[698,6045,12553,19363],"delegatorTokens":9999999955048}},{"ix":59,"action":{"kind":"Deliver","chain":"provider","numPackets":4},"partialState":{"h":5,"t":30,"tokens":[1698,7045,13553,20363],"delegation":[698,6045,12553,19363],"delegatorTokens":9999999955048,"jailed":[1000000000000023,null,1000000000000023,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":60,"action":{"kind":"Undelegate","val":2,"amt":3683},"partialState":{"h":5,"t":30,"tokens":[1698,7045,9870,20363],"delegation":[698,6045,8870,19363],"delegatorTokens":9999999955048}},{"ix":61,"action":{"kind":"Undelegate","val":2,"amt":2729},"partialState":{"h":5,"t":30,"tokens":[1698,7045,7141,20363],"delegation":[698,6045,6141,19363],"delegatorTokens":9999999955048}},{"ix":62,"action":{"kind":"Delegate","val":0,"amt":4893},"partialState":{"h":5,"t":30,"tokens":[6591,7045,7141,20363],"delegation":[5591,6045,6141,19363],"delegatorTokens":9999999950155}},{"ix":63,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":64,"action":{"kind":"ConsumerSlash","val":2,"infractionHeight":1,"isDowntime":true},"partialState":{"h":6,"t":36,"outstandingDowntime":[true,false,true,false]}},{"ix":65,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":6,"t":36,"tokens":[6591,7045,7141,20363],"delegation":[5591,6045,6141,19363],"delegatorTokens":9999999950155,"jailed":[1000000000000023,null,1000000000000023,null],"status":["unbonding","bonded","unbonding","bonded"]}},{"ix":66,"action":{"kind":"ConsumerSlash","val":0,"infractionHeight":0,"isDowntime":true},"partialState":{"h":6,"t":36,"outstandingDowntime":[true,false,true,false]}},{"ix":67,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":68,"action":{"kind":"Delegate","val":1,"amt":2675},"partialState":{"h":6,"t":36,"tokens":[6591,9720,7141,20363],"delegation":[5591,8720,6141,19363],"delegatorTokens":9999999947480}},{"ix":69,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":7,"t":42,"consumerPower":[null,7387,9275,null],"outstandingDowntime":[true,false,true,false]}},{"ix":70,"action":{"kind":"Undelegate","val":3,"amt":4868},"partialState":{"h":6,"t":36,"tokens":[6591,9720,7141,15495],"delegation":[5591,8720,6141,14495],"delegatorTokens":9999999947480}},{"ix":71,"action":{"kind":"Deliver","chain":"provider","numPackets":2},"partialState":{"h":6,"t":36,"tokens":[6591,9720,7141,15495],"delegation":[5591,8720,6141,14495],"delegatorTokens":9999999947480,"jailed":[1000000000000023,null,1000000000000023,null],"status":["unbonding","bonded","unbonding","bonded"]}},{"ix":72,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":73,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":8,"t":48,"consumerPower":[null,7387,9275,null],"outstandingDowntime":[true,false,true,false]}},{"ix":74,"action":{"kind":"Deliver","chain":"provider","numPackets":4},"partialState":{"h":6,"t":36,"tokens":[6591,9720,7141,15495],"delegation":[5591,8720,6141,14495],"delegatorTokens":9999999947480,"jailed":[1000000000000023,null,1000000000000023,null],"status":["unbonding","bonded","unbonding","bonded"]}},{"ix":75,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":76,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":77,"action":{"kind":"Undelegate","val":0,"amt":1585},"partialState":{"h":6,"t":36,"tokens":[5006,9720,7141,15495],"delegation":[4006,8720,6141,14495],"delegatorTokens":9999999947480}},{"ix":78,"action":{"kind":"ConsumerSlash","val":3,"infractionHeight":2,"isDowntime":true},"partialState":{"h":8,"t":48,"outstandingDowntime":[true,false,true,true]}},{"ix":79,"action":{"kind":"Deliver","chain":"provider","numPackets":3},"partialState":{"h":6,"t":36,"tokens":[5006,9720,7141,15495],"delegation":[4006,8720,6141,14495],"delegatorTokens":9999999947480,"jailed":[1000000000000023,null,1000000000000023,null],"status":["unbonding","bonded","unbonding","bonded"]}},{"ix":80,"action":{"kind":"Deliver","chain":"consumer","numPackets":1},"partialState":{"h":8,"t":48,"consumerPower":[null,7387,9275,null],"outstandingDowntime":[true,false,true,true]}},{"ix":81,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":82,"action":{"kind":"Deliver","chain":"provider","numPackets":3},"partialState":{"h":6,"t":36,"tokens":[5006,9720,7141,15495],"delegation":[4006,8720,6141,14495],"delegatorTokens":9999999947480,"jailed":[1000000000000023,null,1000000000000023,null],"status":["unbonding","bonded","unbonding","bonded"]}},{"ix":83,"action":{"kind":"Deliver","chain":"provider","numPackets":1},"partialState":{"h":6,"t":36,"tokens":[5006,9720,7141,15495],"delegation":[4006,8720,6141,14495],"delegatorTokens":9999999947480,"jailed":[1000000000000023,null,1000000000000023,null],"status":["unbonding","bonded","unbonding","bonded"]}},{"ix":84,"action":{"kind":"Delegate","val":0,"amt":4551},"partialState":{"h":6,"t":36,"tokens":[9557,9720,7141,15495],"delegation":[8557,8720,6141,14495],"delegatorTokens":9999999942929}},{"ix":85,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":86,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":87,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":7,"t":42,"tokens":[9557,9720,7141,15495],"delegation":[8557,8720,6141,14495],"delegatorTokens":9999999942929,"jailed":[1000000000000023,null,1000000000000023,null],"status":["unbonding","bonded","unbonding","bonded"]}},{"ix":88,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":8,"t":48,"tokens":[9557,9720,7141,15495],"delegation":[8557,8720,6141,14495],"delegatorTokens":9999999942929,"jailed":[1000000000000023,null,1000000000000023,null],"status":["unbonding","bonded","unbonding","bonded"]}},{"ix":89,"action":{"kind":"Deliver","chain":"consumer","numPackets":1},"partialState":{"h":8,"t":48,"consumerPower":[null,7387,9275,null],"outstandingDowntime":[false,false,false,true]}},{"ix":90,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":9,"t":54,"consumerPower":[null,null,11895,15531],"outstandingDowntime":[false,false,false,true]}},{"ix":91,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":92,"action":{"kind":"Undelegate","val":1,"amt":1510},"partialState":{"h":8,"t":48,"tokens":[9557,8210,7141,15495],"delegation":[8557,7210,6141,14495],"delegatorTokens":9999999942929}},{"ix":93,"action":{"kind":"Undelegate","val":2,"amt":4935},"partialState":{"h":8,"t":48,"tokens":[9557,8210,2206,15495],"delegation":[8557,7210,1206,14495],"delegatorTokens":9999999942929}},{"ix":94,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":10,"t":60,"consumerPower":[null,null,11895,15531],"outstandingDowntime":[false,false,false,true]}},{"ix":95,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":11,"t":66,"consumerPower":[null,null,11895,15531],"outstandingDowntime":[false,false,false,true]}},{"ix":96,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":12,"t":72,"consumerPower":[null,null,11895,15531],"outstandingDowntime":[false,false,false,true]}},{"ix":97,"action":{"kind":"Deliver","chain":"provider","numPackets":3},"partialState":{"h":8,"t":48,"tokens":[9557,8210,2206,15495],"delegation":[8557,7210,1206,14495],"delegatorTokens":9999999942929,"jailed":[1000000000000023,null,1000000000000023,null],"status":["unbonding","bonded","unbonding","bonded"]}},{"ix":98,"action":{"kind":"Delegate","val":3,"amt":3390},"partialState":{"h":8,"t":48,"tokens":[9557,8210,2206,18885],"delegation":[8557,7210,1206,17885],"delegatorTokens":9999999939539}},{"ix":99,"action":{"kind":"Undelegate","val":3,"amt":2871},"partialState":{"h":8,"t":48,"tokens":[9557,8210,2206,16014],"delegation":[8557,7210,1206,15014],"delegatorTokens":9999999939539}},{"ix":100,"action":{"kind":"Undelegate","val":1,"amt":4366},"partialState":{"h":8,"t":48,"tokens":[9557,3844,2206,16014],"delegation":[8557,2844,1206,15014],"delegatorTokens":9999999939539}},{"ix":101,"action":{"kind":"Deliver","chain":"consumer","numPackets":4},"partialState":{"h":12,"t":72,"consumerPower":[null,null,11895,15531],"outstandingDowntime":[false,false,false,true]}},{"ix":102,"action":{"kind":"Deliver","chain":"consumer","numPackets":1},"partialState":{"h":12,"t":72,"consumerPower":[null,null,11895,15531],"outstandingDowntime":[false,false,false,true]}},{"ix":103,"action":{"kind":"Undelegate","val":0,"amt":3472},"partialState":{"h":8,"t":48,"tokens":[6085,3844,2206,16014],"delegation":[5085,2844,1206,15014],"delegatorTokens":9999999939539}},{"ix":104,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":13,"t":78,"consumerPower":[null,9720,null,15495],"outstandingDowntime":[false,false,false,true]}},{"ix":105,"action":{"kind":"Undelegate","val":3,"amt":2820},"partialState":{"h":8,"t":48,"tokens":[6085,3844,2206,13194],"delegation":[5085,2844,1206,12194],"delegatorTokens":9999999939539}},{"ix":106,"action":{"kind":"Undelegate","val":3,"amt":1910},"partialState":{"h":8,"t":48,"tokens":[6085,3844,2206,11284],"delegation":[5085,2844,1206,10284],"delegatorTokens":9999999939539}},{"ix":107,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":9,"t":54,"tokens":[6085,3844,2206,11284],"delegation":[5085,2844,1206,10284],"delegatorTokens":9999999939539,"jailed":[1000000000000023,null,1000000000000023,1000000000000047],"status":["unbonding","bonded","unbonding","bonded"]}},{"ix":108,"action":{"kind":"Delegate","val":1,"amt":4755},"partialState":{"h":9,"t":54,"tokens":[6085,8599,2206,11284],"delegation":[5085,7599,1206,10284],"delegatorTokens":9999999934784}},{"ix":109,"action":{"kind":"Deliver","chain":"consumer","numPackets":3},"partialState":{"h":13,"t":78,"consumerPower":[null,9720,null,15495],"outstandingDowntime":[false,false,false,true]}},{"ix":110,"action":{"kind":"Undelegate","val":0,"amt":4088},"partialState":{"h":9,"t":54,"tokens":[1997,8599,2206,11284],"delegation":[997,7599,1206,10284],"delegatorTokens":9999999934784}},{"ix":111,"action":{"kind":"Delegate","val":2,"amt":1531},"partialState":{"h":9,"t":54,"tokens":[1997,8599,3737,11284],"delegation":[997,7599,2737,10284],"delegatorTokens":9999999933253}},{"ix":112,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":10,"t":60,"tokens":[1997,8599,3737,11284],"delegation":[997,7599,2737,10284],"delegatorTokens":9999999933253,"jailed":[1000000000000023,null,1000000000000023,1000000000000047],"status":["unbonding","bonded","unbonding","unbonding"]}},{"ix":113,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":114,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":11,"t":66,"tokens":[1997,8599,3737,11284],"delegation":[997,7599,2737,10284],"delegatorTokens":9999999933253,"jailed":[1000000000000023,null,1000000000000023,1000000000000047],"status":["unbonding","bonded","unbonding","unbonding"]}},{"ix":115,"action":{"kind":"Delegate","val":0,"amt":2950},"partialState":{"h":11,"t":66,"tokens":[4947,8599,3737,11284],"delegation":[3947,7599,2737,10284],"delegatorTokens":9999999930303}},{"ix":116,"action":{"kind":"Deliver","chain":"consumer","numPackets":2},"partialState":{"h":13,"t":78,"consumerPower":[null,9720,null,15495],"outstandingDowntime":[false,false,false,false]}},{"ix":117,"action":{"kind":"Delegate","val":2,"amt":1587},"partialState":{"h":11,"t":66,"tokens":[4947,8599,5324,11284],"delegation":[3947,7599,4324,10284],"delegatorTokens":9999999928716}},{"ix":118,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":119,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":12,"t":72,"tokens":[4947,8599,5324,11284],"delegation":[3947,7599,4324,10284],"delegatorTokens":9999999928716,"jailed":[1000000000000023,null,1000000000000023,1000000000000047],"status":["unbonding","bonded","unbonding","unbonding"]}},{"ix":120,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":14,"t":84,"consumerPower":[null,8599,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":121,"action":{"kind":"Undelegate","val":0,"amt":1474},"partialState":{"h":12,"t":72,"tokens":[3473,8599,5324,11284],"delegation":[2473,7599,4324,10284],"delegatorTokens":9999999928716}},{"ix":122,"action":{"kind":"Deliver","chain":"provider","numPackets":1},"partialState":{"h":12,"t":72,"tokens":[3473,8599,5324,11284],"delegation":[2473,7599,4324,10284],"delegatorTokens":9999999928716,"jailed":[1000000000000023,null,1000000000000023,1000000000000047],"status":["unbonding","bonded","unbonding","unbonding"]}},{"ix":123,"action":{"kind":"Delegate","val":2,"amt":4397},"partialState":{"h":12,"t":72,"tokens":[3473,8599,9721,11284],"delegation":[2473,7599,8721,10284],"delegatorTokens":9999999924319}},{"ix":124,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":13,"t":78,"tokens":[3473,8599,9721,11284],"delegation":[2473,7599,8721,10284],"delegatorTokens":9999999924319,"jailed":[1000000000000023,null,1000000000000023,1000000000000047],"status":["unbonding","bonded","unbonding","unbonding"]}},{"ix":125,"action":{"kind":"Deliver","chain":"consumer","numPackets":2},"partialState":{"h":14,"t":84,"consumerPower":[null,8599,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":126,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":127,"action":{"kind":"Undelegate","val":0,"amt":4646},"partialState":{"h":13,"t":78,"tokens":[3473,8599,9721,11284],"delegation":[2473,7599,8721,10284],"delegatorTokens":9999999924319}},{"ix":128,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":129,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":130,"action":{"kind":"Delegate","val":0,"amt":2971},"partialState":{"h":13,"t":78,"tokens":[6444,8599,9721,11284],"delegation":[5444,7599,8721,10284],"delegatorTokens":9999999921348}},{"ix":131,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":132,"action":{"kind":"Undelegate","val":3,"amt":3165},"partialState":{"h":13,"t":78,"tokens":[6444,8599,9721,8119],"delegation":[5444,7599,8721,7119],"delegatorTokens":9999999921348}},{"ix":133,"action":{"kind":"Deliver","chain":"consumer","numPackets":2},"partialState":{"h":14,"t":84,"consumerPower":[null,8599,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":134,"action":{"kind":"Delegate","val":0,"amt":4840},"partialState":{"h":13,"t":78,"tokens":[11284,8599,9721,8119],"delegation":[10284,7599,8721,7119],"delegatorTokens":9999999916508}},{"ix":135,"action":{"kind":"Undelegate","val":1,"amt":3539},"partialState":{"h":13,"t":78,"tokens":[11284,5060,9721,8119],"delegation":[10284,4060,8721,7119],"delegatorTokens":9999999916508}},{"ix":136,"action":{"kind":"Undelegate","val":1,"amt":1346},"partialState":{"h":13,"t":78,"tokens":[11284,3714,9721,8119],"delegation":[10284,2714,8721,7119],"delegatorTokens":9999999916508}},{"ix":137,"action":{"kind":"Deliver","chain":"provider","numPackets":5},"partialState":{"h":13,"t":78,"tokens":[11284,3714,9721,8119],"delegation":[10284,2714,8721,7119],"delegatorTokens":9999999916508,"jailed":[1000000000000023,null,1000000000000023,1000000000000047],"status":["unbonding","bonded","unbonding","unbonding"]}},{"ix":138,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":15,"t":90,"consumerPower":[null,8599,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":139,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":140,"action":{"kind":"Delegate","val":0,"amt":3117},"partialState":{"h":13,"t":78,"tokens":[14401,3714,9721,8119],"delegation":[13401,2714,8721,7119],"delegatorTokens":9999999913391}},{"ix":141,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":16,"t":96,"consumerPower":[null,8599,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":142,"action":{"kind":"Undelegate","val":2,"amt":1613},"partialState":{"h":13,"t":78,"tokens":[14401,3714,8108,8119],"delegation":[13401,2714,7108,7119],"delegatorTokens":9999999913391}},{"ix":143,"action":{"kind":"Delegate","val":0,"amt":2208},"partialState":{"h":13,"t":78,"tokens":[16609,3714,8108,8119],"delegation":[15609,2714,7108,7119],"delegatorTokens":9999999911183}},{"ix":144,"action":{"kind":"Deliver","chain":"consumer","numPackets":6},"partialState":{"h":16,"t":96,"consumerPower":[null,8599,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":145,"action":{"kind":"Delegate","val":0,"amt":3422},"partialState":{"h":13,"t":78,"tokens":[20031,3714,8108,8119],"delegation":[19031,2714,7108,7119],"delegatorTokens":9999999907761}},{"ix":146,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":147,"action":{"kind":"Delegate","val":2,"amt":3339},"partialState":{"h":13,"t":78,"tokens":[20031,3714,11447,8119],"delegation":[19031,2714,10447,7119],"delegatorTokens":9999999904422}},{"ix":148,"action":{"kind":"Undelegate","val":1,"amt":3306},"partialState":{"h":13,"t":78,"tokens":[20031,3714,11447,8119],"delegation":[19031,2714,10447,7119],"delegatorTokens":9999999904422}},{"ix":149,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":150,"action":{"kind":"Deliver","chain":"provider","numPackets":5},"partialState":{"h":13,"t":78,"tokens":[20031,3714,11447,8119],"delegation":[19031,2714,10447,7119],"delegatorTokens":9999999904422,"jailed":[1000000000000023,null,1000000000000023,1000000000000047],"status":["unbonding","bonded","unbonding","unbonding"]}},{"ix":151,"action":{"kind":"Undelegate","val":1,"amt":3753},"partialState":{"h":13,"t":78,"tokens":[20031,3714,11447,8119],"delegation":[19031,2714,10447,7119],"delegatorTokens":9999999904422}},{"ix":152,"action":{"kind":"Undelegate","val":0,"amt":4714},"partialState":{"h":13,"t":78,"tokens":[15317,3714,11447,8119],"delegation":[14317,2714,10447,7119],"delegatorTokens":9999999904422}},{"ix":153,"action":{"kind":"Delegate","val":2,"amt":2032},"partialState":{"h":13,"t":78,"tokens":[15317,3714,13479,8119],"delegation":[14317,2714,12479,7119],"delegatorTokens":9999999902390}},{"ix":154,"action":{"kind":"Delegate","val":3,"amt":2523},"partialState":{"h":13,"t":78,"tokens":[15317,3714,13479,10642],"delegation":[14317,2714,12479,9642],"delegatorTokens":9999999899867}},{"ix":155,"action":{"kind":"Delegate","val":3,"amt":3347},"partialState":{"h":13,"t":78,"tokens":[15317,3714,13479,13989],"delegation":[14317,2714,12479,12989],"delegatorTokens":9999999896520}},{"ix":156,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":157,"action":{"kind":"Undelegate","val":1,"amt":2347},"partialState":{"h":13,"t":78,"tokens":[15317,1367,13479,13989],"delegation":[14317,367,12479,12989],"delegatorTokens":9999999896520}},{"ix":158,"action":{"kind":"Delegate","val":2,"amt":4218},"partialState":{"h":13,"t":78,"tokens":[15317,1367,17697,13989],"delegation":[14317,367,16697,12989],"delegatorTokens":9999999892302}},{"ix":159,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":160,"action":{"kind":"Undelegate","val":3,"amt":3009},"partialState":{"h":13,"t":78,"tokens":[15317,1367,17697,10980],"delegation":[14317,367,16697,9980],"delegatorTokens":9999999892302}},{"ix":161,"action":{"kind":"Undelegate","val":2,"amt":2695},"partialState":{"h":13,"t":78,"tokens":[15317,1367,15002,10980],"delegation":[14317,367,14002,9980],"delegatorTokens":9999999892302}},{"ix":162,"action":{"kind":"Delegate","val":1,"amt":4592},"partialState":{"h":13,"t":78,"tokens":[15317,5959,15002,10980],"delegation":[14317,4959,14002,9980],"delegatorTokens":9999999887710}},{"ix":163,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":164,"action":{"kind":"Undelegate","val":1,"amt":3549},"partialState":{"h":13,"t":78,"tokens":[15317,2410,15002,10980],"delegation":[14317,1410,14002,9980],"delegatorTokens":9999999887710}},{"ix":165,"action":{"kind":"Delegate","val":0,"amt":1006},"partialState":{"h":13,"t":78,"tokens":[16323,2410,15002,10980],"delegation":[15323,1410,14002,9980],"delegatorTokens":9999999886704}},{"ix":166,"action":{"kind":"Undelegate","val":3,"amt":1421},"partialState":{"h":13,"t":78,"tokens":[16323,2410,15002,9559],"delegation":[15323,1410,14002,8559],"delegatorTokens":9999999886704}},{"ix":167,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":168,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":169,"action":{"kind":"Delegate","val":0,"amt":1059},"partialState":{"h":13,"t":78,"tokens":[17382,2410,15002,9559],"delegation":[16382,1410,14002,8559],"delegatorTokens":9999999885645}},{"ix":170,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":171,"action":{"kind":"Deliver","chain":"consumer","numPackets":1},"partialState":{"h":16,"t":96,"consumerPower":[null,8599,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":172,"action":{"kind":"Delegate","val":3,"amt":1911},"partialState":{"h":13,"t":78,"tokens":[17382,2410,15002,11470],"delegation":[16382,1410,14002,10470],"delegatorTokens":9999999883734}},{"ix":173,"action":{"kind":"Deliver","chain":"consumer","numPackets":3},"partialState":{"h":16,"t":96,"consumerPower":[null,8599,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":174,"action":{"kind":"Deliver","chain":"consumer","numPackets":4},"partialState":{"h":16,"t":96,"consumerPower":[null,8599,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":175,"action":{"kind":"Undelegate","val":3,"amt":4039},"partialState":{"h":13,"t":78,"tokens":[17382,2410,15002,7431],"delegation":[16382,1410,14002,6431],"delegatorTokens":9999999883734}},{"ix":176,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":17,"t":102,"consumerPower":[null,8599,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":177,"action":{"kind":"Undelegate","val":1,"amt":4912},"partialState":{"h":13,"t":78,"tokens":[17382,2410,15002,7431],"delegation":[16382,1410,14002,6431],"delegatorTokens":9999999883734}},{"ix":178,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":14,"t":84,"tokens":[17382,2410,15002,7431],"delegation":[16382,1410,14002,6431],"delegatorTokens":9999999887727,"jailed":[1000000000000023,null,1000000000000023,1000000000000047],"status":["unbonded","bonded","unbonding","unbonding"]}},{"ix":179,"action":{"kind":"Undelegate","val":0,"amt":1308},"partialState":{"h":14,"t":84,"tokens":[16074,2410,15002,7431],"delegation":[15074,1410,14002,6431],"delegatorTokens":9999999887727}},{"ix":180,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":18,"t":108,"consumerPower":[null,8599,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":181,"action":{"kind":"Deliver","chain":"consumer","numPackets":1},"partialState":{"h":18,"t":108,"consumerPower":[null,8599,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":182,"action":{"kind":"Undelegate","val":3,"amt":1288},"partialState":{"h":14,"t":84,"tokens":[16074,2410,15002,6143],"delegation":[15074,1410,14002,5143],"delegatorTokens":9999999887727}},{"ix":183,"action":{"kind":"Delegate","val":1,"amt":4077},"partialState":{"h":14,"t":84,"tokens":[16074,6487,15002,6143],"delegation":[15074,5487,14002,5143],"delegatorTokens":9999999883650}},{"ix":184,"action":{"kind":"Delegate","val":1,"amt":4294},"partialState":{"h":14,"t":84,"tokens":[16074,10781,15002,6143],"delegation":[15074,9781,14002,5143],"delegatorTokens":9999999879356}},{"ix":185,"action":{"kind":"Deliver","chain":"consumer","numPackets":6},"partialState":{"h":18,"t":108,"consumerPower":[null,8599,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":186,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":187,"action":{"kind":"Deliver","chain":"provider","numPackets":4},"partialState":{"h":14,"t":84,"tokens":[16074,10781,15002,6143],"delegation":[15074,9781,14002,5143],"delegatorTokens":9999999879356,"jailed":[1000000000000023,null,1000000000000023,1000000000000047],"status":["unbonded","bonded","unbonding","unbonding"]}},{"ix":188,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":19,"t":114,"consumerPower":[null,8599,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":189,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":190,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":15,"t":90,"tokens":[16074,10781,15002,6143],"delegation":[15074,9781,14002,5143],"delegatorTokens":9999999879356,"jailed":[1000000000000023,null,1000000000000023,1000000000000047],"status":["unbonded","bonded","unbonding","unbonding"]}},{"ix":191,"action":{"kind":"Undelegate","val":1,"amt":4152},"partialState":{"h":15,"t":90,"tokens":[16074,6629,15002,6143],"delegation":[15074,5629,14002,5143],"delegatorTokens":9999999879356}},{"ix":192,"action":{"kind":"Undelegate","val":1,"amt":4270},"partialState":{"h":15,"t":90,"tokens":[16074,2359,15002,6143],"delegation":[15074,1359,14002,5143],"delegatorTokens":9999999879356}},{"ix":193,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":194,"action":{"kind":"Deliver","chain":"provider","numPackets":5},"partialState":{"h":15,"t":90,"tokens":[16074,2359,15002,6143],"delegation":[15074,1359,14002,5143],"delegatorTokens":9999999879356,"jailed":[1000000000000023,null,1000000000000023,1000000000000047],"status":["unbonded","bonded","unbonding","unbonding"]}},{"ix":195,"action":{"kind":"Delegate","val":1,"amt":3108},"partialState":{"h":15,"t":90,"tokens":[16074,5467,15002,6143],"delegation":[15074,4467,14002,5143],"delegatorTokens":9999999876248}},{"ix":196,"action":{"kind":"Delegate","val":3,"amt":4923},"partialState":{"h":15,"t":90,"tokens":[16074,5467,15002,11066],"delegation":[15074,4467,14002,10066],"delegatorTokens":9999999871325}},{"ix":197,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":198,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":199,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":16,"t":96,"tokens":[16074,5467,15002,11066],"delegation":[15074,4467,14002,10066],"delegatorTokens":9999999871325,"jailed":[1000000000000023,null,1000000000000023,1000000000000047],"status":["unbonded","bonded","unbonding","unbonding"]}}],"events":["send_downtime_slash_request","downtime_slash_request_outstanding","downtime_slash_request_outstanding","more_than_one_third_val_power_change","send_vsc_without_downtime_ack","send_double_sign_slash_request","insufficient_shares","send_vsc_without_downtime_ack","downtime_slash_request_outstanding","send_downtime_slash_request","downtime_slash_request_outstanding","send_vsc_without_downtime_ack","consumer_del_val","consumer_update_val","consumer_add_val","receive_double_sign_slash_request","more_than_one_third_val_power_change","receive_downtime_slash_request","jail","receive_downtime_slash_request","jail","send_vsc_with_downtime_ack","insufficient_shares","downtime_slash_request_outstanding","downtime_slash_request_outstanding","rebond_unval","send_vsc_without_downtime_ack","downtime_slash_request_outstanding","send_downtime_slash_request","send_vsc_without_downtime_ack","receive_downtime_slash_ack","receive_downtime_slash_ack","consumer_del_val","consumer_update_val","consumer_add_val","consumer_send_maturation","consumer_send_maturation","consumer_add_val","consumer_del_val","consumer_update_val","receive_downtime_slash_request","jail","send_vsc_with_downtime_ack","send_vsc_without_downtime_ack","receive_downtime_slash_ack","consumer_update_val","consumer_del_val","set_undel_hold_false","set_undel_hold_false","set_unval_hold_false","send_vsc_not_because_change","send_vsc_without_downtime_ack","insufficient_shares","insufficient_shares","insufficient_shares","insufficient_shares","complete_unval_in_endblock","complete_undel_in_endblock","send_vsc_without_downtime_ack","consumer_send_maturation","consumer_send_maturation","send_vsc_without_downtime_ack","set_undel_hold_false","set_undel_hold_false","set_undel_hold_false","set_undel_hold_false","send_vsc_without_downtime_ack"]},{"meta":{"commit":"7ffd0c04e4205cbc9caf212abfe6c59ee43153bf"},"constants":{"P":"provider","C":"consumer","UNBONDING_SECONDS_P":70,"UNBONDING_SECONDS_C":50,"TRUSTING_SECONDS":49,"NUM_VALIDATORS":4,"MAX_VALIDATORS":2,"SLASH_DOUBLESIGN":0,"SLASH_DOWNTIME":0,"JAIL_SECONDS":999999999999999,"BLOCK_SECONDS":6,"INITIAL_DELEGATOR_TOKENS":10000000000000,"DELEGATE_AMT_MIN":1000,"DELEGATE_AMT_MAX":5000,"UNDELEGATE_AMT_MIN":1000,"UNDELEGATE_AMT_MAX":5000,"ISDOWNTIME_PROBABILITY":0.5,"MAX_NUM_PACKETS_FOR_DELIVER":6},"actions":[{"ix":0,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":2,"t":12,"tokens":[5000,4000,3000,2000],"delegation":[4000,3000,2000,1000],"delegatorTokens":10000000000000,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":1,"action":{"kind":"Undelegate","val":3,"amt":2341},"partialState":{"h":2,"t":12,"tokens":[5000,4000,3000,2000],"delegation":[4000,3000,2000,1000],"delegatorTokens":10000000000000}},{"ix":2,"action":{"kind":"ConsumerSlash","val":2,"infractionHeight":0,"isDowntime":true},"partialState":{"h":1,"t":6,"outstandingDowntime":[false,false,true,false]}},{"ix":3,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":2,"t":12,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,false,true,false]}},{"ix":4,"action":{"kind":"Undelegate","val":0,"amt":1829},"partialState":{"h":2,"t":12,"tokens":[3171,4000,3000,2000],"delegation":[2171,3000,2000,1000],"delegatorTokens":10000000000000}},{"ix":5,"action":{"kind":"Undelegate","val":2,"amt":2926},"partialState":{"h":2,"t":12,"tokens":[3171,4000,3000,2000],"delegation":[2171,3000,2000,1000],"delegatorTokens":10000000000000}},{"ix":6,"action":{"kind":"Undelegate","val":1,"amt":1652},"partialState":{"h":2,"t":12,"tokens":[3171,2348,3000,2000],"delegation":[2171,1348,2000,1000],"delegatorTokens":10000000000000}},{"ix":7,"action":{"kind":"ConsumerSlash","val":2,"infractionHeight":0,"isDowntime":false},"partialState":{"h":2,"t":12,"outstandingDowntime":[false,false,true,false]}},{"ix":8,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":9,"action":{"kind":"ConsumerSlash","val":0,"infractionHeight":0,"isDowntime":true},"partialState":{"h":2,"t":12,"outstandingDowntime":[true,false,true,false]}},{"ix":10,"action":{"kind":"Deliver","chain":"provider","numPackets":6},"partialState":{"h":2,"t":12,"tokens":[3171,2348,3000,2000],"delegation":[2171,1348,2000,1000],"delegatorTokens":10000000000000,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":11,"action":{"kind":"Undelegate","val":2,"amt":4851},"partialState":{"h":2,"t":12,"tokens":[3171,2348,3000,2000],"delegation":[2171,1348,2000,1000],"delegatorTokens":10000000000000}},{"ix":12,"action":{"kind":"ConsumerSlash","val":2,"infractionHeight":0,"isDowntime":true},"partialState":{"h":2,"t":12,"outstandingDowntime":[true,false,true,false]}},{"ix":13,"action":{"kind":"Undelegate","val":0,"amt":2767},"partialState":{"h":2,"t":12,"tokens":[3171,2348,3000,2000],"delegation":[2171,1348,2000,1000],"delegatorTokens":10000000000000}},{"ix":14,"action":{"kind":"ConsumerSlash","val":2,"infractionHeight":1,"isDowntime":false},"partialState":{"h":2,"t":12,"outstandingDowntime":[true,false,true,false]}},{"ix":15,"action":{"kind":"Undelegate","val":1,"amt":1768},"partialState":{"h":2,"t":12,"tokens":[3171,2348,3000,2000],"delegation":[2171,1348,2000,1000],"delegatorTokens":10000000000000}},{"ix":16,"action":{"kind":"Undelegate","val":1,"amt":2559},"partialState":{"h":2,"t":12,"tokens":[3171,2348,3000,2000],"delegation":[2171,1348,2000,1000],"delegatorTokens":10000000000000}},{"ix":17,"action":{"kind":"Deliver","chain":"provider","numPackets":5},"partialState":{"h":2,"t":12,"tokens":[3171,2348,3000,2000],"delegation":[2171,1348,2000,1000],"delegatorTokens":10000000000000,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":18,"action":{"kind":"Undelegate","val":3,"amt":3201},"partialState":{"h":2,"t":12,"tokens":[3171,2348,3000,2000],"delegation":[2171,1348,2000,1000],"delegatorTokens":10000000000000}},{"ix":19,"action":{"kind":"ConsumerSlash","val":2,"infractionHeight":1,"isDowntime":true},"partialState":{"h":2,"t":12,"outstandingDowntime":[true,false,true,false]}},{"ix":20,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":21,"action":{"kind":"Deliver","chain":"provider","numPackets":2},"partialState":{"h":2,"t":12,"tokens":[3171,2348,3000,2000],"delegation":[2171,1348,2000,1000],"delegatorTokens":10000000000000,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":22,"action":{"kind":"ConsumerSlash","val":1,"infractionHeight":1,"isDowntime":true},"partialState":{"h":2,"t":12,"outstandingDowntime":[true,true,true,false]}},{"ix":23,"action":{"kind":"Deliver","chain":"consumer","numPackets":3},"partialState":{"h":2,"t":12,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[true,true,true,false]}},{"ix":24,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":3,"t":18,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[true,true,true,false]}},{"ix":25,"action":{"kind":"Deliver","chain":"provider","numPackets":5},"partialState":{"h":2,"t":12,"tokens":[3171,2348,3000,2000],"delegation":[2171,1348,2000,1000],"delegatorTokens":10000000000000,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":26,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":3,"t":18,"tokens":[3171,2348,3000,2000],"delegation":[2171,1348,2000,1000],"delegatorTokens":10000000000000,"jailed":[null,null,1000000000000011,null],"status":["bonded","unbonding","bonded","unbonded"]}},{"ix":27,"action":{"kind":"Undelegate","val":0,"amt":1266},"partialState":{"h":3,"t":18,"tokens":[1905,2348,3000,2000],"delegation":[905,1348,2000,1000],"delegatorTokens":10000000000000}},{"ix":28,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":4,"t":24,"tokens":[1905,2348,3000,2000],"delegation":[905,1348,2000,1000],"delegatorTokens":10000000000000,"jailed":[null,null,1000000000000011,null],"status":["unbonding","bonded","unbonding","bonded"]}},{"ix":29,"action":{"kind":"Deliver","chain":"consumer","numPackets":3},"partialState":{"h":3,"t":18,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[true,true,false,false]}},{"ix":30,"action":{"kind":"Delegate","val":0,"amt":3957},"partialState":{"h":4,"t":24,"tokens":[5862,2348,3000,2000],"delegation":[4862,1348,2000,1000],"delegatorTokens":9999999996043}},{"ix":31,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":32,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":4,"t":24,"consumerPower":[3171,null,3000,null],"outstandingDowntime":[true,true,false,false]}},{"ix":33,"action":{"kind":"Deliver","chain":"provider","numPackets":2},"partialState":{"h":4,"t":24,"tokens":[5862,2348,3000,2000],"delegation":[4862,1348,2000,1000],"delegatorTokens":9999999996043,"jailed":[null,null,1000000000000011,null],"status":["unbonding","bonded","unbonding","bonded"]}},{"ix":34,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":35,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":36,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":5,"t":30,"tokens":[5862,2348,3000,2000],"delegation":[4862,1348,2000,1000],"delegatorTokens":9999999996043,"jailed":[1000000000000023,null,1000000000000011,null],"status":["bonded","bonded","unbonding","unbonding"]}},{"ix":37,"action":{"kind":"Deliver","chain":"provider","numPackets":4},"partialState":{"h":5,"t":30,"tokens":[5862,2348,3000,2000],"delegation":[4862,1348,2000,1000],"delegatorTokens":9999999996043,"jailed":[1000000000000023,null,1000000000000011,null],"status":["bonded","bonded","unbonding","unbonding"]}},{"ix":38,"action":{"kind":"Delegate","val":3,"amt":4024},"partialState":{"h":5,"t":30,"tokens":[5862,2348,3000,6024],"delegation":[4862,1348,2000,5024],"delegatorTokens":9999999992019}},{"ix":39,"action":{"kind":"Delegate","val":3,"amt":4331},"partialState":{"h":5,"t":30,"tokens":[5862,2348,3000,10355],"delegation":[4862,1348,2000,9355],"delegatorTokens":9999999987688}},{"ix":40,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":5,"t":30,"consumerPower":[3171,null,3000,null],"outstandingDowntime":[true,true,false,false]}},{"ix":41,"action":{"kind":"Undelegate","val":3,"amt":2505},"partialState":{"h":5,"t":30,"tokens":[5862,2348,3000,7850],"delegation":[4862,1348,2000,6850],"delegatorTokens":9999999987688}},{"ix":42,"action":{"kind":"Undelegate","val":2,"amt":1688},"partialState":{"h":5,"t":30,"tokens":[5862,2348,1312,7850],"delegation":[4862,1348,312,6850],"delegatorTokens":9999999987688}},{"ix":43,"action":{"kind":"Deliver","chain":"consumer","numPackets":4},"partialState":{"h":5,"t":30,"consumerPower":[3171,null,3000,null],"outstandingDowntime":[true,true,false,false]}},{"ix":44,"action":{"kind":"Delegate","val":1,"amt":3307},"partialState":{"h":5,"t":30,"tokens":[5862,5655,1312,7850],"delegation":[4862,4655,312,6850],"delegatorTokens":9999999984381}},{"ix":45,"action":{"kind":"Undelegate","val":3,"amt":4450},"partialState":{"h":5,"t":30,"tokens":[5862,5655,1312,3400],"delegation":[4862,4655,312,2400],"delegatorTokens":9999999984381}},{"ix":46,"action":{"kind":"Delegate","val":2,"amt":4120},"partialState":{"h":5,"t":30,"tokens":[5862,5655,5432,3400],"delegation":[4862,4655,4432,2400],"delegatorTokens":9999999980261}},{"ix":47,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":6,"t":36,"tokens":[5862,5655,5432,3400],"delegation":[4862,4655,4432,2400],"delegatorTokens":9999999980261,"jailed":[1000000000000023,1000000000000029,1000000000000011,null],"status":["unbonding","bonded","unbonding","bonded"]}},{"ix":48,"action":{"kind":"Deliver","chain":"consumer","numPackets":3},"partialState":{"h":5,"t":30,"consumerPower":[3171,null,3000,null],"outstandingDowntime":[false,true,false,false]}},{"ix":49,"action":{"kind":"Delegate","val":3,"amt":3997},"partialState":{"h":6,"t":36,"tokens":[5862,5655,5432,7397],"delegation":[4862,4655,4432,6397],"delegatorTokens":9999999976264}},{"ix":50,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":7,"t":42,"tokens":[5862,5655,5432,7397],"delegation":[4862,4655,4432,6397],"delegatorTokens":9999999976264,"jailed":[1000000000000023,1000000000000029,1000000000000011,null],"status":["unbonding","unbonding","unbonding","bonded"]}},{"ix":51,"action":{"kind":"Delegate","val":3,"amt":2383},"partialState":{"h":7,"t":42,"tokens":[5862,5655,5432,9780],"delegation":[4862,4655,4432,8780],"delegatorTokens":9999999973881}},{"ix":52,"action":{"kind":"Deliver","chain":"consumer","numPackets":3},"partialState":{"h":5,"t":30,"consumerPower":[3171,null,3000,null],"outstandingDowntime":[false,false,false,false]}},{"ix":53,"action":{"kind":"Deliver","chain":"provider","numPackets":4},"partialState":{"h":7,"t":42,"tokens":[5862,5655,5432,9780],"delegation":[4862,4655,4432,8780],"delegatorTokens":9999999973881,"jailed":[1000000000000023,1000000000000029,1000000000000011,null],"status":["unbonding","unbonding","unbonding","bonded"]}},{"ix":54,"action":{"kind":"Deliver","chain":"consumer","numPackets":3},"partialState":{"h":5,"t":30,"consumerPower":[3171,null,3000,null],"outstandingDowntime":[false,false,false,false]}},{"ix":55,"action":{"kind":"Undelegate","val":1,"amt":3444},"partialState":{"h":7,"t":42,"tokens":[5862,2211,5432,9780],"delegation":[4862,1211,4432,8780],"delegatorTokens":9999999973881}},{"ix":56,"action":{"kind":"Deliver","chain":"consumer","numPackets":5},"partialState":{"h":5,"t":30,"consumerPower":[3171,null,3000,null],"outstandingDowntime":[false,false,false,false]}},{"ix":57,"action":{"kind":"Delegate","val":1,"amt":2531},"partialState":{"h":7,"t":42,"tokens":[5862,4742,5432,9780],"delegation":[4862,3742,4432,8780],"delegatorTokens":9999999971350}},{"ix":58,"action":{"kind":"Undelegate","val":0,"amt":1281},"partialState":{"h":7,"t":42,"tokens":[4581,4742,5432,9780],"delegation":[3581,3742,4432,8780],"delegatorTokens":9999999971350}},{"ix":59,"action":{"kind":"Deliver","chain":"consumer","numPackets":5},"partialState":{"h":5,"t":30,"consumerPower":[3171,null,3000,null],"outstandingDowntime":[false,false,false,false]}},{"ix":60,"action":{"kind":"Deliver","chain":"consumer","numPackets":4},"partialState":{"h":5,"t":30,"consumerPower":[3171,null,3000,null],"outstandingDowntime":[false,false,false,false]}},{"ix":61,"action":{"kind":"Undelegate","val":3,"amt":1968},"partialState":{"h":7,"t":42,"tokens":[4581,4742,5432,7812],"delegation":[3581,3742,4432,6812],"delegatorTokens":9999999971350}},{"ix":62,"action":{"kind":"Delegate","val":1,"amt":4555},"partialState":{"h":7,"t":42,"tokens":[4581,9297,5432,7812],"delegation":[3581,8297,4432,6812],"delegatorTokens":9999999966795}},{"ix":63,"action":{"kind":"Delegate","val":3,"amt":3991},"partialState":{"h":7,"t":42,"tokens":[4581,9297,5432,11803],"delegation":[3581,8297,4432,10803],"delegatorTokens":9999999962804}},{"ix":64,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":65,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":66,"action":{"kind":"Undelegate","val":2,"amt":1161},"partialState":{"h":7,"t":42,"tokens":[4581,9297,4271,11803],"delegation":[3581,8297,3271,10803],"delegatorTokens":9999999962804}},{"ix":67,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":8,"t":48,"tokens":[4581,9297,4271,11803],"delegation":[3581,8297,3271,10803],"delegatorTokens":9999999962804,"jailed":[1000000000000023,1000000000000029,1000000000000011,null],"status":["unbonding","unbonding","unbonding","bonded"]}},{"ix":68,"action":{"kind":"Delegate","val":1,"amt":3144},"partialState":{"h":8,"t":48,"tokens":[4581,12441,4271,11803],"delegation":[3581,11441,3271,10803],"delegatorTokens":9999999959660}},{"ix":69,"action":{"kind":"Delegate","val":3,"amt":2384},"partialState":{"h":8,"t":48,"tokens":[4581,12441,4271,14187],"delegation":[3581,11441,3271,13187],"delegatorTokens":9999999957276}},{"ix":70,"action":{"kind":"Undelegate","val":2,"amt":3183},"partialState":{"h":8,"t":48,"tokens":[4581,12441,1088,14187],"delegation":[3581,11441,88,13187],"delegatorTokens":9999999957276}},{"ix":71,"action":{"kind":"Deliver","chain":"provider","numPackets":4},"partialState":{"h":8,"t":48,"tokens":[4581,12441,1088,14187],"delegation":[3581,11441,88,13187],"delegatorTokens":9999999957276,"jailed":[1000000000000023,1000000000000029,1000000000000011,null],"status":["unbonding","unbonding","unbonding","bonded"]}},{"ix":72,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":73,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":74,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":75,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":76,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":77,"action":{"kind":"Delegate","val":3,"amt":2394},"partialState":{"h":8,"t":48,"tokens":[4581,12441,1088,16581],"delegation":[3581,11441,88,15581],"delegatorTokens":9999999954882}},{"ix":78,"action":{"kind":"Delegate","val":0,"amt":3431},"partialState":{"h":8,"t":48,"tokens":[8012,12441,1088,16581],"delegation":[7012,11441,88,15581],"delegatorTokens":9999999951451}},{"ix":79,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":80,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":81,"action":{"kind":"Deliver","chain":"provider","numPackets":1},"partialState":{"h":8,"t":48,"tokens":[8012,12441,1088,16581],"delegation":[7012,11441,88,15581],"delegatorTokens":9999999951451,"jailed":[1000000000000023,1000000000000029,1000000000000011,null],"status":["unbonding","unbonding","unbonding","bonded"]}},{"ix":82,"action":{"kind":"Delegate","val":1,"amt":4945},"partialState":{"h":8,"t":48,"tokens":[8012,17386,1088,16581],"delegation":[7012,16386,88,15581],"delegatorTokens":9999999946506}},{"ix":83,"action":{"kind":"Undelegate","val":2,"amt":2361},"partialState":{"h":8,"t":48,"tokens":[8012,17386,1088,16581],"delegation":[7012,16386,88,15581],"delegatorTokens":9999999946506}},{"ix":84,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":85,"action":{"kind":"Delegate","val":2,"amt":1589},"partialState":{"h":8,"t":48,"tokens":[8012,17386,2677,16581],"delegation":[7012,16386,1677,15581],"delegatorTokens":9999999944917}},{"ix":86,"action":{"kind":"Undelegate","val":2,"amt":1596},"partialState":{"h":8,"t":48,"tokens":[8012,17386,1081,16581],"delegation":[7012,16386,81,15581],"delegatorTokens":9999999944917}},{"ix":87,"action":{"kind":"Deliver","chain":"consumer","numPackets":4},"partialState":{"h":5,"t":30,"consumerPower":[3171,null,3000,null],"outstandingDowntime":[false,false,false,false]}},{"ix":88,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":9,"t":54,"tokens":[8012,17386,1081,16581],"delegation":[7012,16386,81,15581],"delegatorTokens":9999999944917,"jailed":[1000000000000023,1000000000000029,1000000000000011,null],"status":["unbonding","unbonding","unbonding","bonded"]}},{"ix":89,"action":{"kind":"Deliver","chain":"provider","numPackets":1},"partialState":{"h":9,"t":54,"tokens":[8012,17386,1081,16581],"delegation":[7012,16386,81,15581],"delegatorTokens":9999999944917,"jailed":[1000000000000023,1000000000000029,1000000000000011,null],"status":["unbonding","unbonding","unbonding","bonded"]}},{"ix":90,"action":{"kind":"Undelegate","val":3,"amt":2931},"partialState":{"h":9,"t":54,"tokens":[8012,17386,1081,13650],"delegation":[7012,16386,81,12650],"delegatorTokens":9999999944917}},{"ix":91,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":92,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":10,"t":60,"tokens":[8012,17386,1081,13650],"delegation":[7012,16386,81,12650],"delegatorTokens":9999999944917,"jailed":[1000000000000023,1000000000000029,1000000000000011,null],"status":["unbonding","unbonding","unbonding","bonded"]}},{"ix":93,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":11,"t":66,"tokens":[8012,17386,1081,13650],"delegation":[7012,16386,81,12650],"delegatorTokens":9999999944917,"jailed":[1000000000000023,1000000000000029,1000000000000011,null],"status":["unbonding","unbonding","unbonding","bonded"]}},{"ix":94,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":6,"t":36,"consumerPower":[null,null,null,7397],"outstandingDowntime":[false,false,false,false]}},{"ix":95,"action":{"kind":"Delegate","val":0,"amt":3976},"partialState":{"h":11,"t":66,"tokens":[11988,17386,1081,13650],"delegation":[10988,16386,81,12650],"delegatorTokens":9999999940941}},{"ix":96,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":12,"t":72,"tokens":[11988,17386,1081,13650],"delegation":[10988,16386,81,12650],"delegatorTokens":9999999940941,"jailed":[1000000000000023,1000000000000029,1000000000000011,null],"status":["unbonding","unbonding","unbonding","bonded"]}},{"ix":97,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":7,"t":42,"consumerPower":[null,null,null,7397],"outstandingDowntime":[false,false,false,false]}},{"ix":98,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":8,"t":48,"consumerPower":[null,null,null,7397],"outstandingDowntime":[false,false,false,false]}},{"ix":99,"action":{"kind":"Delegate","val":1,"amt":2665},"partialState":{"h":12,"t":72,"tokens":[11988,20051,1081,13650],"delegation":[10988,19051,81,12650],"delegatorTokens":9999999938276}},{"ix":100,"action":{"kind":"Delegate","val":3,"amt":1369},"partialState":{"h":12,"t":72,"tokens":[11988,20051,1081,15019],"delegation":[10988,19051,81,14019],"delegatorTokens":9999999936907}},{"ix":101,"action":{"kind":"Delegate","val":3,"amt":2389},"partialState":{"h":12,"t":72,"tokens":[11988,20051,1081,17408],"delegation":[10988,19051,81,16408],"delegatorTokens":9999999934518}},{"ix":102,"action":{"kind":"Deliver","chain":"provider","numPackets":4},"partialState":{"h":12,"t":72,"tokens":[11988,20051,1081,17408],"delegation":[10988,19051,81,16408],"delegatorTokens":9999999934518,"jailed":[1000000000000023,1000000000000029,1000000000000011,null],"status":["unbonding","unbonding","unbonding","bonded"]}},{"ix":103,"action":{"kind":"Undelegate","val":0,"amt":3374},"partialState":{"h":12,"t":72,"tokens":[8614,20051,1081,17408],"delegation":[7614,19051,81,16408],"delegatorTokens":9999999934518}},{"ix":104,"action":{"kind":"Deliver","chain":"consumer","numPackets":4},"partialState":{"h":8,"t":48,"consumerPower":[null,null,null,7397],"outstandingDowntime":[false,false,false,false]}},{"ix":105,"action":{"kind":"Deliver","chain":"consumer","numPackets":2},"partialState":{"h":8,"t":48,"consumerPower":[null,null,null,7397],"outstandingDowntime":[false,false,false,false]}},{"ix":106,"action":{"kind":"Deliver","chain":"consumer","numPackets":2},"partialState":{"h":8,"t":48,"consumerPower":[null,null,null,7397],"outstandingDowntime":[false,false,false,false]}},{"ix":107,"action":{"kind":"Undelegate","val":1,"amt":1318},"partialState":{"h":12,"t":72,"tokens":[8614,18733,1081,17408],"delegation":[7614,17733,81,16408],"delegatorTokens":9999999934518}},{"ix":108,"action":{"kind":"Deliver","chain":"provider","numPackets":3},"partialState":{"h":12,"t":72,"tokens":[8614,18733,1081,17408],"delegation":[7614,17733,81,16408],"delegatorTokens":9999999934518,"jailed":[1000000000000023,1000000000000029,1000000000000011,null],"status":["unbonding","unbonding","unbonding","bonded"]}},{"ix":109,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":9,"t":54,"consumerPower":[null,null,null,13650],"outstandingDowntime":[false,false,false,false]}},{"ix":110,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":13,"t":78,"tokens":[8614,18733,1081,17408],"delegation":[7614,17733,81,16408],"delegatorTokens":9999999934518,"jailed":[1000000000000023,1000000000000029,1000000000000011,null],"status":["unbonding","unbonding","unbonding","bonded"]}},{"ix":111,"action":{"kind":"Undelegate","val":3,"amt":3175},"partialState":{"h":13,"t":78,"tokens":[8614,18733,1081,14233],"delegation":[7614,17733,81,13233],"delegatorTokens":9999999934518}},{"ix":112,"action":{"kind":"Delegate","val":3,"amt":3074},"partialState":{"h":13,"t":78,"tokens":[8614,18733,1081,17307],"delegation":[7614,17733,81,16307],"delegatorTokens":9999999931444}},{"ix":113,"action":{"kind":"Delegate","val":1,"amt":1422},"partialState":{"h":13,"t":78,"tokens":[8614,20155,1081,17307],"delegation":[7614,19155,81,16307],"delegatorTokens":9999999930022}},{"ix":114,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":14,"t":84,"tokens":[8614,20155,1081,17307],"delegation":[7614,19155,81,16307],"delegatorTokens":9999999930022,"jailed":[1000000000000023,1000000000000029,1000000000000011,null],"status":["unbonding","unbonding","unbonding","bonded"]}},{"ix":115,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":116,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":10,"t":60,"consumerPower":[null,null,null,13650],"outstandingDowntime":[false,false,false,false]}},{"ix":117,"action":{"kind":"Deliver","chain":"provider","numPackets":5},"partialState":{"h":14,"t":84,"tokens":[8614,20155,1081,17307],"delegation":[7614,19155,81,16307],"delegatorTokens":9999999930022,"jailed":[1000000000000023,1000000000000029,1000000000000011,null],"status":["unbonding","unbonding","unbonding","bonded"]}},{"ix":118,"action":{"kind":"Deliver","chain":"provider","numPackets":3},"partialState":{"h":14,"t":84,"tokens":[8614,20155,1081,17307],"delegation":[7614,19155,81,16307],"delegatorTokens":9999999930022,"jailed":[1000000000000023,1000000000000029,1000000000000011,null],"status":["unbonding","unbonding","unbonding","bonded"]}},{"ix":119,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":120,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":121,"action":{"kind":"Deliver","chain":"consumer","numPackets":6},"partialState":{"h":10,"t":60,"consumerPower":[null,null,null,13650],"outstandingDowntime":[false,false,false,false]}},{"ix":122,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":123,"action":{"kind":"Delegate","val":1,"amt":2030},"partialState":{"h":14,"t":84,"tokens":[8614,22185,1081,17307],"delegation":[7614,21185,81,16307],"delegatorTokens":9999999927992}},{"ix":124,"action":{"kind":"Undelegate","val":2,"amt":4573},"partialState":{"h":14,"t":84,"tokens":[8614,22185,1081,17307],"delegation":[7614,21185,81,16307],"delegatorTokens":9999999927992}},{"ix":125,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":126,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":11,"t":66,"consumerPower":[null,null,null,17408],"outstandingDowntime":[false,false,false,false]}},{"ix":127,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":12,"t":72,"consumerPower":[null,null,null,17408],"outstandingDowntime":[false,false,false,false]}},{"ix":128,"action":{"kind":"Delegate","val":2,"amt":1251},"partialState":{"h":14,"t":84,"tokens":[8614,22185,2332,17307],"delegation":[7614,21185,1332,16307],"delegatorTokens":9999999926741}},{"ix":129,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":15,"t":90,"tokens":[8614,22185,2332,17307],"delegation":[7614,21185,1332,16307],"delegatorTokens":9999999926741,"jailed":[1000000000000023,1000000000000029,1000000000000011,null],"status":["unbonding","unbonding","unbonding","bonded"]}},{"ix":130,"action":{"kind":"Deliver","chain":"provider","numPackets":4},"partialState":{"h":15,"t":90,"tokens":[8614,22185,2332,17307],"delegation":[7614,21185,1332,16307],"delegatorTokens":9999999926741,"jailed":[1000000000000023,1000000000000029,1000000000000011,null],"status":["unbonding","unbonding","unbonding","bonded"]}},{"ix":131,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":13,"t":78,"consumerPower":[null,null,null,17408],"outstandingDowntime":[false,false,false,false]}},{"ix":132,"action":{"kind":"Delegate","val":2,"amt":1123},"partialState":{"h":15,"t":90,"tokens":[8614,22185,3455,17307],"delegation":[7614,21185,2455,16307],"delegatorTokens":9999999925618}},{"ix":133,"action":{"kind":"Delegate","val":1,"amt":2278},"partialState":{"h":15,"t":90,"tokens":[8614,24463,3455,17307],"delegation":[7614,23463,2455,16307],"delegatorTokens":9999999923340}},{"ix":134,"action":{"kind":"Delegate","val":2,"amt":3631},"partialState":{"h":15,"t":90,"tokens":[8614,24463,7086,17307],"delegation":[7614,23463,6086,16307],"delegatorTokens":9999999919709}},{"ix":135,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":136,"action":{"kind":"Delegate","val":1,"amt":2740},"partialState":{"h":15,"t":90,"tokens":[8614,27203,7086,17307],"delegation":[7614,26203,6086,16307],"delegatorTokens":9999999916969}},{"ix":137,"action":{"kind":"Deliver","chain":"provider","numPackets":6},"partialState":{"h":15,"t":90,"tokens":[8614,27203,7086,17307],"delegation":[7614,26203,6086,16307],"delegatorTokens":9999999916969,"jailed":[1000000000000023,1000000000000029,1000000000000011,null],"status":["unbonding","unbonding","unbonding","bonded"]}},{"ix":138,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":139,"action":{"kind":"Undelegate","val":2,"amt":2009},"partialState":{"h":15,"t":90,"tokens":[8614,27203,5077,17307],"delegation":[7614,26203,4077,16307],"delegatorTokens":9999999916969}},{"ix":140,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":14,"t":84,"consumerPower":[null,null,null,17408],"outstandingDowntime":[false,false,false,false]}},{"ix":141,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":15,"t":90,"consumerPower":[null,null,null,17408],"outstandingDowntime":[false,false,false,false]}},{"ix":142,"action":{"kind":"Undelegate","val":1,"amt":1106},"partialState":{"h":15,"t":90,"tokens":[8614,26097,5077,17307],"delegation":[7614,25097,4077,16307],"delegatorTokens":9999999916969}},{"ix":143,"action":{"kind":"Delegate","val":2,"amt":2831},"partialState":{"h":15,"t":90,"tokens":[8614,26097,7908,17307],"delegation":[7614,25097,6908,16307],"delegatorTokens":9999999914138}},{"ix":144,"action":{"kind":"Delegate","val":1,"amt":1511},"partialState":{"h":15,"t":90,"tokens":[8614,27608,7908,17307],"delegation":[7614,26608,6908,16307],"delegatorTokens":9999999912627}},{"ix":145,"action":{"kind":"Undelegate","val":1,"amt":4604},"partialState":{"h":15,"t":90,"tokens":[8614,23004,7908,17307],"delegation":[7614,22004,6908,16307],"delegatorTokens":9999999912627}},{"ix":146,"action":{"kind":"Undelegate","val":2,"amt":4302},"partialState":{"h":15,"t":90,"tokens":[8614,23004,3606,17307],"delegation":[7614,22004,2606,16307],"delegatorTokens":9999999912627}},{"ix":147,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":148,"action":{"kind":"Delegate","val":3,"amt":1846},"partialState":{"h":15,"t":90,"tokens":[8614,23004,3606,19153],"delegation":[7614,22004,2606,18153],"delegatorTokens":9999999910781}},{"ix":149,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":16,"t":96,"consumerPower":[null,null,null,17408],"outstandingDowntime":[false,false,false,false]}},{"ix":150,"action":{"kind":"Undelegate","val":0,"amt":2697},"partialState":{"h":15,"t":90,"tokens":[5917,23004,3606,19153],"delegation":[4917,22004,2606,18153],"delegatorTokens":9999999910781}},{"ix":151,"action":{"kind":"Deliver","chain":"consumer","numPackets":3},"partialState":{"h":16,"t":96,"consumerPower":[null,null,null,17408],"outstandingDowntime":[false,false,false,false]}},{"ix":152,"action":{"kind":"Delegate","val":1,"amt":3753},"partialState":{"h":15,"t":90,"tokens":[5917,26757,3606,19153],"delegation":[4917,25757,2606,18153],"delegatorTokens":9999999907028}},{"ix":153,"action":{"kind":"Deliver","chain":"consumer","numPackets":4},"partialState":{"h":16,"t":96,"consumerPower":[null,null,null,17408],"outstandingDowntime":[false,false,false,false]}},{"ix":154,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":17,"t":102,"consumerPower":[null,null,null,17307],"outstandingDowntime":[false,false,false,false]}},{"ix":155,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":16,"t":96,"tokens":[5917,26757,3606,19153],"delegation":[4917,25757,2606,18153],"delegatorTokens":9999999907028,"jailed":[1000000000000023,1000000000000029,1000000000000011,null],"status":["unbonding","unbonding","unbonding","bonded"]}},{"ix":156,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":18,"t":108,"consumerPower":[null,null,null,17307],"outstandingDowntime":[false,false,false,false]}},{"ix":157,"action":{"kind":"Deliver","chain":"provider","numPackets":4},"partialState":{"h":16,"t":96,"tokens":[5917,26757,3606,19153],"delegation":[4917,25757,2606,18153],"delegatorTokens":9999999907028,"jailed":[1000000000000023,1000000000000029,1000000000000011,null],"status":["unbonding","unbonding","unbonding","bonded"]}},{"ix":158,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":159,"action":{"kind":"Deliver","chain":"consumer","numPackets":5},"partialState":{"h":18,"t":108,"consumerPower":[null,null,null,17307],"outstandingDowntime":[false,false,false,false]}},{"ix":160,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":19,"t":114,"consumerPower":[null,null,null,17307],"outstandingDowntime":[false,false,false,false]}},{"ix":161,"action":{"kind":"Delegate","val":2,"amt":4057},"partialState":{"h":16,"t":96,"tokens":[5917,26757,7663,19153],"delegation":[4917,25757,6663,18153],"delegatorTokens":9999999902971}},{"ix":162,"action":{"kind":"Delegate","val":1,"amt":3383},"partialState":{"h":16,"t":96,"tokens":[5917,30140,7663,19153],"delegation":[4917,29140,6663,18153],"delegatorTokens":9999999899588}},{"ix":163,"action":{"kind":"Delegate","val":3,"amt":2161},"partialState":{"h":16,"t":96,"tokens":[5917,30140,7663,21314],"delegation":[4917,29140,6663,20314],"delegatorTokens":9999999897427}},{"ix":164,"action":{"kind":"Deliver","chain":"provider","numPackets":6},"partialState":{"h":16,"t":96,"tokens":[5917,30140,7663,21314],"delegation":[4917,29140,6663,20314],"delegatorTokens":9999999897427,"jailed":[1000000000000023,1000000000000029,1000000000000011,null],"status":["unbonding","unbonding","unbonding","bonded"]}},{"ix":165,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":166,"action":{"kind":"Deliver","chain":"provider","numPackets":2},"partialState":{"h":16,"t":96,"tokens":[5917,30140,7663,21314],"delegation":[4917,29140,6663,20314],"delegatorTokens":9999999897427,"jailed":[1000000000000023,1000000000000029,1000000000000011,null],"status":["unbonding","unbonding","unbonding","bonded"]}},{"ix":167,"action":{"kind":"Delegate","val":3,"amt":2589},"partialState":{"h":16,"t":96,"tokens":[5917,30140,7663,23903],"delegation":[4917,29140,6663,22903],"delegatorTokens":9999999894838}},{"ix":168,"action":{"kind":"Deliver","chain":"provider","numPackets":1},"partialState":{"h":16,"t":96,"tokens":[5917,30140,7663,23903],"delegation":[4917,29140,6663,22903],"delegatorTokens":9999999894838,"jailed":[1000000000000023,1000000000000029,1000000000000011,null],"status":["unbonding","unbonding","unbonding","bonded"]}},{"ix":169,"action":{"kind":"Undelegate","val":2,"amt":2424},"partialState":{"h":16,"t":96,"tokens":[5917,30140,5239,23903],"delegation":[4917,29140,4239,22903],"delegatorTokens":9999999894838}},{"ix":170,"action":{"kind":"Undelegate","val":2,"amt":3143},"partialState":{"h":16,"t":96,"tokens":[5917,30140,2096,23903],"delegation":[4917,29140,1096,22903],"delegatorTokens":9999999894838}},{"ix":171,"action":{"kind":"Undelegate","val":2,"amt":4885},"partialState":{"h":16,"t":96,"tokens":[5917,30140,2096,23903],"delegation":[4917,29140,1096,22903],"delegatorTokens":9999999894838}},{"ix":172,"action":{"kind":"Undelegate","val":3,"amt":3658},"partialState":{"h":16,"t":96,"tokens":[5917,30140,2096,20245],"delegation":[4917,29140,1096,19245],"delegatorTokens":9999999894838}},{"ix":173,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":20,"t":120,"consumerPower":[null,null,null,17307],"outstandingDowntime":[false,false,false,false]}},{"ix":174,"action":{"kind":"Deliver","chain":"consumer","numPackets":3},"partialState":{"h":20,"t":120,"consumerPower":[null,null,null,17307],"outstandingDowntime":[false,false,false,false]}},{"ix":175,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":17,"t":102,"tokens":[5917,30140,2096,20245],"delegation":[4917,29140,1096,19245],"delegatorTokens":9999999899585,"jailed":[1000000000000023,1000000000000029,1000000000000011,null],"status":["unbonding","unbonding","unbonding","bonded"]}},{"ix":176,"action":{"kind":"Deliver","chain":"provider","numPackets":5},"partialState":{"h":17,"t":102,"tokens":[5917,30140,2096,20245],"delegation":[4917,29140,1096,19245],"delegatorTokens":9999999899585,"jailed":[1000000000000023,1000000000000029,1000000000000011,null],"status":["unbonding","unbonding","unbonding","bonded"]}},{"ix":177,"action":{"kind":"Deliver","chain":"consumer","numPackets":4},"partialState":{"h":20,"t":120,"consumerPower":[null,null,null,17307],"outstandingDowntime":[false,false,false,false]}},{"ix":178,"action":{"kind":"Undelegate","val":1,"amt":3349},"partialState":{"h":17,"t":102,"tokens":[5917,26791,2096,20245],"delegation":[4917,25791,1096,19245],"delegatorTokens":9999999899585}},{"ix":179,"action":{"kind":"Deliver","chain":"consumer","numPackets":2},"partialState":{"h":20,"t":120,"consumerPower":[null,null,null,17307],"outstandingDowntime":[false,false,false,false]}},{"ix":180,"action":{"kind":"Deliver","chain":"consumer","numPackets":4},"partialState":{"h":20,"t":120,"consumerPower":[null,null,null,17307],"outstandingDowntime":[false,false,false,false]}},{"ix":181,"action":{"kind":"Delegate","val":1,"amt":2753},"partialState":{"h":17,"t":102,"tokens":[5917,29544,2096,20245],"delegation":[4917,28544,1096,19245],"delegatorTokens":9999999896832}},{"ix":182,"action":{"kind":"Undelegate","val":0,"amt":1601},"partialState":{"h":17,"t":102,"tokens":[4316,29544,2096,20245],"delegation":[3316,28544,1096,19245],"delegatorTokens":9999999896832}},{"ix":183,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":184,"action":{"kind":"Delegate","val":0,"amt":1593},"partialState":{"h":17,"t":102,"tokens":[5909,29544,2096,20245],"delegation":[4909,28544,1096,19245],"delegatorTokens":9999999895239}},{"ix":185,"action":{"kind":"Delegate","val":1,"amt":4747},"partialState":{"h":17,"t":102,"tokens":[5909,34291,2096,20245],"delegation":[4909,33291,1096,19245],"delegatorTokens":9999999890492}},{"ix":186,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":21,"t":126,"consumerPower":[null,null,null,19153],"outstandingDowntime":[false,false,false,false]}},{"ix":187,"action":{"kind":"Deliver","chain":"provider","numPackets":5},"partialState":{"h":17,"t":102,"tokens":[5909,34291,2096,20245],"delegation":[4909,33291,1096,19245],"delegatorTokens":9999999890492,"jailed":[1000000000000023,1000000000000029,1000000000000011,null],"status":["unbonding","unbonding","unbonding","bonded"]}},{"ix":188,"action":{"kind":"Deliver","chain":"consumer","numPackets":6},"partialState":{"h":21,"t":126,"consumerPower":[null,null,null,19153],"outstandingDowntime":[false,false,false,false]}},{"ix":189,"action":{"kind":"Deliver","chain":"consumer","numPackets":2},"partialState":{"h":21,"t":126,"consumerPower":[null,null,null,19153],"outstandingDowntime":[false,false,false,false]}},{"ix":190,"action":{"kind":"Delegate","val":3,"amt":3146},"partialState":{"h":17,"t":102,"tokens":[5909,34291,2096,23391],"delegation":[4909,33291,1096,22391],"delegatorTokens":9999999887346}},{"ix":191,"action":{"kind":"Deliver","chain":"consumer","numPackets":6},"partialState":{"h":21,"t":126,"consumerPower":[null,null,null,19153],"outstandingDowntime":[false,false,false,false]}},{"ix":192,"action":{"kind":"Undelegate","val":3,"amt":2272},"partialState":{"h":17,"t":102,"tokens":[5909,34291,2096,21119],"delegation":[4909,33291,1096,20119],"delegatorTokens":9999999887346}},{"ix":193,"action":{"kind":"Deliver","chain":"provider","numPackets":4},"partialState":{"h":17,"t":102,"tokens":[5909,34291,2096,21119],"delegation":[4909,33291,1096,20119],"delegatorTokens":9999999887346,"jailed":[1000000000000023,1000000000000029,1000000000000011,null],"status":["unbonding","unbonding","unbonding","bonded"]}},{"ix":194,"action":{"kind":"Undelegate","val":2,"amt":2553},"partialState":{"h":17,"t":102,"tokens":[5909,34291,2096,21119],"delegation":[4909,33291,1096,20119],"delegatorTokens":9999999887346}},{"ix":195,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":22,"t":132,"consumerPower":[null,null,null,19153],"outstandingDowntime":[false,false,false,false]}},{"ix":196,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":18,"t":108,"tokens":[5909,34291,2096,21119],"delegation":[4909,33291,1096,20119],"delegatorTokens":9999999895989,"jailed":[1000000000000023,1000000000000029,1000000000000011,null],"status":["unbonded","unbonding","unbonded","bonded"]}},{"ix":197,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":19,"t":114,"tokens":[5909,34291,2096,21119],"delegation":[4909,33291,1096,20119],"delegatorTokens":9999999895989,"jailed":[1000000000000023,1000000000000029,1000000000000011,null],"status":["unbonded","unbonded","unbonded","bonded"]}},{"ix":198,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":199,"action":{"kind":"Deliver","chain":"consumer","numPackets":2},"partialState":{"h":22,"t":132,"consumerPower":[null,null,null,19153],"outstandingDowntime":[false,false,false,false]}}],"events":["insufficient_shares","send_downtime_slash_request","insufficient_shares","send_double_sign_slash_request","send_downtime_slash_request","insufficient_shares","downtime_slash_request_outstanding","insufficient_shares","send_double_sign_slash_request","insufficient_shares","insufficient_shares","insufficient_shares","downtime_slash_request_outstanding","send_downtime_slash_request","more_than_one_third_val_power_change","receive_downtime_slash_request","jail","send_vsc_with_downtime_ack","more_than_one_third_val_power_change","rebond_unval","send_vsc_without_downtime_ack","receive_downtime_slash_ack","consumer_update_val","consumer_del_val","consumer_add_val","receive_double_sign_slash_request","more_than_one_third_val_power_change","rebond_unval","receive_downtime_slash_request","jail","send_vsc_with_downtime_ack","receive_double_sign_slash_request","more_than_one_third_val_power_change","rebond_unval","receive_downtime_slash_request","jail","send_vsc_with_downtime_ack","receive_downtime_slash_ack","send_vsc_without_downtime_ack","receive_downtime_slash_ack","send_vsc_without_downtime_ack","insufficient_shares","send_vsc_without_downtime_ack","send_vsc_without_downtime_ack","consumer_del_val","consumer_del_val","consumer_del_val","consumer_add_val","consumer_update_val","send_vsc_without_downtime_ack","send_vsc_without_downtime_ack","insufficient_shares","consumer_update_val","some_undels_expired_but_not_completed","consumer_send_maturation","consumer_send_maturation","consumer_send_maturation","consumer_send_maturation","consumer_send_maturation","consumer_update_val","some_undels_expired_but_not_completed","send_vsc_without_downtime_ack","consumer_send_maturation","consumer_send_maturation","consumer_send_maturation","insufficient_shares","consumer_send_maturation","complete_undel_immediate","complete_undel_immediate","complete_undel_immediate","set_unval_hold_false","set_undel_hold_false","set_undel_hold_false","set_undel_hold_false","set_unval_hold_false","set_unval_hold_false","set_undel_hold_false","set_undel_hold_false","set_undel_hold_false","set_undel_hold_false","set_undel_hold_false","set_undel_hold_false","set_undel_hold_false","send_vsc_without_downtime_ack","consumer_update_val","insufficient_shares","complete_unval_in_endblock","complete_unval_in_endblock","complete_undel_in_endblock","set_undel_hold_false","set_undel_hold_false","send_vsc_without_downtime_ack","complete_unval_in_endblock"]},{"meta":{"commit":"7ffd0c04e4205cbc9caf212abfe6c59ee43153bf"},"constants":{"P":"provider","C":"consumer","UNBONDING_SECONDS_P":70,"UNBONDING_SECONDS_C":50,"TRUSTING_SECONDS":49,"NUM_VALIDATORS":4,"MAX_VALIDATORS":2,"SLASH_DOUBLESIGN":0,"SLASH_DOWNTIME":0,"JAIL_SECONDS":999999999999999,"BLOCK_SECONDS":6,"INITIAL_DELEGATOR_TOKENS":10000000000000,"DELEGATE_AMT_MIN":1000,"DELEGATE_AMT_MAX":5000,"UNDELEGATE_AMT_MIN":1000,"UNDELEGATE_AMT_MAX":5000,"ISDOWNTIME_PROBABILITY":0.5,"MAX_NUM_PACKETS_FOR_DELIVER":6},"actions":[{"ix":0,"action":{"kind":"Undelegate","val":3,"amt":2240},"partialState":{"h":1,"t":6,"tokens":[5000,4000,3000,2000],"delegation":[4000,3000,2000,1000],"delegatorTokens":10000000000000}},{"ix":1,"action":{"kind":"ConsumerSlash","val":3,"infractionHeight":0,"isDowntime":true},"partialState":{"h":1,"t":6,"outstandingDowntime":[false,false,false,true]}},{"ix":2,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":2,"t":12,"tokens":[5000,4000,3000,2000],"delegation":[4000,3000,2000,1000],"delegatorTokens":10000000000000,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":3,"action":{"kind":"Delegate","val":3,"amt":2486},"partialState":{"h":2,"t":12,"tokens":[5000,4000,3000,4486],"delegation":[4000,3000,2000,3486],"delegatorTokens":9999999997514}},{"ix":4,"action":{"kind":"Undelegate","val":0,"amt":2297},"partialState":{"h":2,"t":12,"tokens":[2703,4000,3000,4486],"delegation":[1703,3000,2000,3486],"delegatorTokens":9999999997514}},{"ix":5,"action":{"kind":"Delegate","val":1,"amt":1764},"partialState":{"h":2,"t":12,"tokens":[2703,5764,3000,4486],"delegation":[1703,4764,2000,3486],"delegatorTokens":9999999995750}},{"ix":6,"action":{"kind":"ConsumerSlash","val":3,"infractionHeight":0,"isDowntime":true},"partialState":{"h":1,"t":6,"outstandingDowntime":[false,false,false,true]}},{"ix":7,"action":{"kind":"Delegate","val":1,"amt":4080},"partialState":{"h":2,"t":12,"tokens":[2703,9844,3000,4486],"delegation":[1703,8844,2000,3486],"delegatorTokens":9999999991670}},{"ix":8,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":9,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":3,"t":18,"tokens":[2703,9844,3000,4486],"delegation":[1703,8844,2000,3486],"delegatorTokens":9999999991670,"jailed":[null,null,null,null],"status":["unbonding","bonded","unbonded","bonded"]}},{"ix":10,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":4,"t":24,"tokens":[2703,9844,3000,4486],"delegation":[1703,8844,2000,3486],"delegatorTokens":9999999991670,"jailed":[null,null,null,null],"status":["unbonding","bonded","unbonded","bonded"]}},{"ix":11,"action":{"kind":"Undelegate","val":2,"amt":1661},"partialState":{"h":4,"t":24,"tokens":[2703,9844,1339,4486],"delegation":[1703,8844,339,3486],"delegatorTokens":9999999991670}},{"ix":12,"action":{"kind":"ConsumerSlash","val":2,"infractionHeight":0,"isDowntime":true},"partialState":{"h":1,"t":6,"outstandingDowntime":[false,false,true,true]}},{"ix":13,"action":{"kind":"ConsumerSlash","val":3,"infractionHeight":0,"isDowntime":true},"partialState":{"h":1,"t":6,"outstandingDowntime":[false,false,true,true]}},{"ix":14,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":2,"t":12,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,false,true,true]}},{"ix":15,"action":{"kind":"Delegate","val":2,"amt":4747},"partialState":{"h":4,"t":24,"tokens":[2703,9844,6086,4486],"delegation":[1703,8844,5086,3486],"delegatorTokens":9999999986923}},{"ix":16,"action":{"kind":"Deliver","chain":"consumer","numPackets":4},"partialState":{"h":2,"t":12,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,false,true,true]}},{"ix":17,"action":{"kind":"Undelegate","val":2,"amt":4500},"partialState":{"h":4,"t":24,"tokens":[2703,9844,1586,4486],"delegation":[1703,8844,586,3486],"delegatorTokens":9999999986923}},{"ix":18,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":19,"action":{"kind":"Delegate","val":1,"amt":3604},"partialState":{"h":4,"t":24,"tokens":[2703,13448,1586,4486],"delegation":[1703,12448,586,3486],"delegatorTokens":9999999983319}},{"ix":20,"action":{"kind":"Undelegate","val":2,"amt":2014},"partialState":{"h":4,"t":24,"tokens":[2703,13448,1586,4486],"delegation":[1703,12448,586,3486],"delegatorTokens":9999999983319}},{"ix":21,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":3,"t":18,"consumerPower":[null,9844,null,4486],"outstandingDowntime":[false,false,true,true]}},{"ix":22,"action":{"kind":"ConsumerSlash","val":2,"infractionHeight":0,"isDowntime":true},"partialState":{"h":3,"t":18,"outstandingDowntime":[false,false,true,true]}},{"ix":23,"action":{"kind":"Deliver","chain":"provider","numPackets":1},"partialState":{"h":4,"t":24,"tokens":[2703,13448,1586,4486],"delegation":[1703,12448,586,3486],"delegatorTokens":9999999983319,"jailed":[null,null,null,null],"status":["unbonding","bonded","unbonded","bonded"]}},{"ix":24,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":5,"t":30,"tokens":[2703,13448,1586,4486],"delegation":[1703,12448,586,3486],"delegatorTokens":9999999983319,"jailed":[null,null,null,1000000000000023],"status":["unbonding","bonded","unbonded","bonded"]}},{"ix":25,"action":{"kind":"ConsumerSlash","val":3,"infractionHeight":2,"isDowntime":true},"partialState":{"h":3,"t":18,"outstandingDowntime":[false,false,true,true]}},{"ix":26,"action":{"kind":"Deliver","chain":"provider","numPackets":1},"partialState":{"h":5,"t":30,"tokens":[2703,13448,1586,4486],"delegation":[1703,12448,586,3486],"delegatorTokens":9999999983319,"jailed":[null,null,null,1000000000000023],"status":["unbonding","bonded","unbonded","bonded"]}},{"ix":27,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":28,"action":{"kind":"Undelegate","val":0,"amt":4029},"partialState":{"h":5,"t":30,"tokens":[2703,13448,1586,4486],"delegation":[1703,12448,586,3486],"delegatorTokens":9999999983319}},{"ix":29,"action":{"kind":"ConsumerSlash","val":0,"infractionHeight":2,"isDowntime":true},"partialState":{"h":3,"t":18,"outstandingDowntime":[true,false,true,true]}},{"ix":30,"action":{"kind":"Deliver","chain":"provider","numPackets":4},"partialState":{"h":5,"t":30,"tokens":[2703,13448,1586,4486],"delegation":[1703,12448,586,3486],"delegatorTokens":9999999983319,"jailed":[null,null,null,1000000000000023],"status":["unbonding","bonded","unbonded","bonded"]}},{"ix":31,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":6,"t":36,"tokens":[2703,13448,1586,4486],"delegation":[1703,12448,586,3486],"delegatorTokens":9999999983319,"jailed":[null,null,null,1000000000000023],"status":["bonded","bonded","unbonded","unbonding"]}},{"ix":32,"action":{"kind":"Deliver","chain":"consumer","numPackets":2},"partialState":{"h":3,"t":18,"consumerPower":[null,9844,null,4486],"outstandingDowntime":[true,false,true,false]}},{"ix":33,"action":{"kind":"Delegate","val":3,"amt":3083},"partialState":{"h":6,"t":36,"tokens":[2703,13448,1586,7569],"delegation":[1703,12448,586,6569],"delegatorTokens":9999999980236}},{"ix":34,"action":{"kind":"Undelegate","val":0,"amt":1628},"partialState":{"h":6,"t":36,"tokens":[1075,13448,1586,7569],"delegation":[75,12448,586,6569],"delegatorTokens":9999999980236}},{"ix":35,"action":{"kind":"Deliver","chain":"provider","numPackets":1},"partialState":{"h":6,"t":36,"tokens":[1075,13448,1586,7569],"delegation":[75,12448,586,6569],"delegatorTokens":9999999980236,"jailed":[null,null,null,1000000000000023],"status":["bonded","bonded","unbonded","unbonding"]}},{"ix":36,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":4,"t":24,"consumerPower":[null,13448,null,4486],"outstandingDowntime":[true,false,true,false]}},{"ix":37,"action":{"kind":"Deliver","chain":"provider","numPackets":4},"partialState":{"h":6,"t":36,"tokens":[1075,13448,1586,7569],"delegation":[75,12448,586,6569],"delegatorTokens":9999999980236,"jailed":[null,null,null,1000000000000023],"status":["bonded","bonded","unbonded","unbonding"]}},{"ix":38,"action":{"kind":"Undelegate","val":2,"amt":1768},"partialState":{"h":6,"t":36,"tokens":[1075,13448,1586,7569],"delegation":[75,12448,586,6569],"delegatorTokens":9999999980236}},{"ix":39,"action":{"kind":"Undelegate","val":3,"amt":1341},"partialState":{"h":6,"t":36,"tokens":[1075,13448,1586,6228],"delegation":[75,12448,586,5228],"delegatorTokens":9999999980236}},{"ix":40,"action":{"kind":"Delegate","val":0,"amt":2361},"partialState":{"h":6,"t":36,"tokens":[3436,13448,1586,6228],"delegation":[2436,12448,586,5228],"delegatorTokens":9999999977875}},{"ix":41,"action":{"kind":"Delegate","val":0,"amt":3342},"partialState":{"h":6,"t":36,"tokens":[6778,13448,1586,6228],"delegation":[5778,12448,586,5228],"delegatorTokens":9999999974533}},{"ix":42,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":43,"action":{"kind":"Undelegate","val":2,"amt":4580},"partialState":{"h":6,"t":36,"tokens":[6778,13448,1586,6228],"delegation":[5778,12448,586,5228],"delegatorTokens":9999999974533}},{"ix":44,"action":{"kind":"Undelegate","val":1,"amt":4065},"partialState":{"h":6,"t":36,"tokens":[6778,9383,1586,6228],"delegation":[5778,8383,586,5228],"delegatorTokens":9999999974533}},{"ix":45,"action":{"kind":"Deliver","chain":"provider","numPackets":6},"partialState":{"h":6,"t":36,"tokens":[6778,9383,1586,6228],"delegation":[5778,8383,586,5228],"delegatorTokens":9999999974533,"jailed":[null,null,null,1000000000000023],"status":["bonded","bonded","unbonded","unbonding"]}},{"ix":46,"action":{"kind":"Delegate","val":3,"amt":2768},"partialState":{"h":6,"t":36,"tokens":[6778,9383,1586,8996],"delegation":[5778,8383,586,7996],"delegatorTokens":9999999971765}},{"ix":47,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":48,"action":{"kind":"Undelegate","val":1,"amt":1526},"partialState":{"h":6,"t":36,"tokens":[6778,7857,1586,8996],"delegation":[5778,6857,586,7996],"delegatorTokens":9999999971765}},{"ix":49,"action":{"kind":"Delegate","val":3,"amt":3220},"partialState":{"h":6,"t":36,"tokens":[6778,7857,1586,12216],"delegation":[5778,6857,586,11216],"delegatorTokens":9999999968545}},{"ix":50,"action":{"kind":"Deliver","chain":"consumer","numPackets":2},"partialState":{"h":4,"t":24,"consumerPower":[null,13448,null,4486],"outstandingDowntime":[true,false,true,false]}},{"ix":51,"action":{"kind":"Delegate","val":3,"amt":4427},"partialState":{"h":6,"t":36,"tokens":[6778,7857,1586,16643],"delegation":[5778,6857,586,15643],"delegatorTokens":9999999964118}},{"ix":52,"action":{"kind":"Deliver","chain":"provider","numPackets":2},"partialState":{"h":6,"t":36,"tokens":[6778,7857,1586,16643],"delegation":[5778,6857,586,15643],"delegatorTokens":9999999964118,"jailed":[null,null,null,1000000000000023],"status":["bonded","bonded","unbonded","unbonding"]}},{"ix":53,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":5,"t":30,"consumerPower":[null,13448,null,4486],"outstandingDowntime":[true,false,true,false]}},{"ix":54,"action":{"kind":"Undelegate","val":1,"amt":1657},"partialState":{"h":6,"t":36,"tokens":[6778,6200,1586,16643],"delegation":[5778,5200,586,15643],"delegatorTokens":9999999964118}},{"ix":55,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":6,"t":36,"consumerPower":[null,13448,null,4486],"outstandingDowntime":[true,false,true,false]}},{"ix":56,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":57,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":7,"t":42,"tokens":[6778,6200,1586,16643],"delegation":[5778,5200,586,15643],"delegatorTokens":9999999964118,"jailed":[null,null,null,1000000000000023],"status":["bonded","bonded","unbonded","unbonding"]}},{"ix":58,"action":{"kind":"Delegate","val":2,"amt":4093},"partialState":{"h":7,"t":42,"tokens":[6778,6200,5679,16643],"delegation":[5778,5200,4679,15643],"delegatorTokens":9999999960025}},{"ix":59,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":8,"t":48,"tokens":[6778,6200,5679,16643],"delegation":[5778,5200,4679,15643],"delegatorTokens":9999999960025,"jailed":[null,null,null,1000000000000023],"status":["bonded","bonded","unbonded","unbonding"]}},{"ix":60,"action":{"kind":"Deliver","chain":"consumer","numPackets":1},"partialState":{"h":6,"t":36,"consumerPower":[null,13448,null,4486],"outstandingDowntime":[true,false,true,false]}},{"ix":61,"action":{"kind":"Deliver","chain":"consumer","numPackets":1},"partialState":{"h":6,"t":36,"consumerPower":[null,13448,null,4486],"outstandingDowntime":[true,false,true,false]}},{"ix":62,"action":{"kind":"Deliver","chain":"provider","numPackets":5},"partialState":{"h":8,"t":48,"tokens":[6778,6200,5679,16643],"delegation":[5778,5200,4679,15643],"delegatorTokens":9999999960025,"jailed":[null,null,null,1000000000000023],"status":["bonded","bonded","unbonded","unbonding"]}},{"ix":63,"action":{"kind":"Deliver","chain":"provider","numPackets":4},"partialState":{"h":8,"t":48,"tokens":[6778,6200,5679,16643],"delegation":[5778,5200,4679,15643],"delegatorTokens":9999999960025,"jailed":[null,null,null,1000000000000023],"status":["bonded","bonded","unbonded","unbonding"]}},{"ix":64,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":7,"t":42,"consumerPower":[6778,6200,null,null],"outstandingDowntime":[true,false,true,false]}},{"ix":65,"action":{"kind":"Deliver","chain":"consumer","numPackets":4},"partialState":{"h":7,"t":42,"consumerPower":[6778,6200,null,null],"outstandingDowntime":[true,false,true,false]}},{"ix":66,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":9,"t":54,"tokens":[6778,6200,5679,16643],"delegation":[5778,5200,4679,15643],"delegatorTokens":9999999960025,"jailed":[1000000000000047,null,null,1000000000000023],"status":["bonded","bonded","unbonded","unbonding"]}},{"ix":67,"action":{"kind":"Undelegate","val":1,"amt":3476},"partialState":{"h":9,"t":54,"tokens":[6778,2724,5679,16643],"delegation":[5778,1724,4679,15643],"delegatorTokens":9999999960025}},{"ix":68,"action":{"kind":"Deliver","chain":"provider","numPackets":6},"partialState":{"h":9,"t":54,"tokens":[6778,2724,5679,16643],"delegation":[5778,1724,4679,15643],"delegatorTokens":9999999960025,"jailed":[1000000000000047,null,null,1000000000000023],"status":["bonded","bonded","unbonded","unbonding"]}},{"ix":69,"action":{"kind":"Delegate","val":3,"amt":2468},"partialState":{"h":9,"t":54,"tokens":[6778,2724,5679,19111],"delegation":[5778,1724,4679,18111],"delegatorTokens":9999999957557}},{"ix":70,"action":{"kind":"Delegate","val":2,"amt":3287},"partialState":{"h":9,"t":54,"tokens":[6778,2724,8966,19111],"delegation":[5778,1724,7966,18111],"delegatorTokens":9999999954270}},{"ix":71,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":72,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":73,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":74,"action":{"kind":"Delegate","val":3,"amt":2264},"partialState":{"h":9,"t":54,"tokens":[6778,2724,8966,21375],"delegation":[5778,1724,7966,20375],"delegatorTokens":9999999952006}},{"ix":75,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":8,"t":48,"consumerPower":[6778,6200,null,null],"outstandingDowntime":[true,false,true,false]}},{"ix":76,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":10,"t":60,"tokens":[6778,2724,8966,21375],"delegation":[5778,1724,7966,20375],"delegatorTokens":9999999952006,"jailed":[1000000000000047,null,null,1000000000000023],"status":["unbonding","bonded","bonded","unbonding"]}},{"ix":77,"action":{"kind":"Delegate","val":2,"amt":4318},"partialState":{"h":10,"t":60,"tokens":[6778,2724,13284,21375],"delegation":[5778,1724,12284,20375],"delegatorTokens":9999999947688}},{"ix":78,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":11,"t":66,"tokens":[6778,2724,13284,21375],"delegation":[5778,1724,12284,20375],"delegatorTokens":9999999947688,"jailed":[1000000000000047,null,null,1000000000000023],"status":["unbonding","bonded","bonded","unbonding"]}},{"ix":79,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":80,"action":{"kind":"Delegate","val":2,"amt":2183},"partialState":{"h":11,"t":66,"tokens":[6778,2724,15467,21375],"delegation":[5778,1724,14467,20375],"delegatorTokens":9999999945505}},{"ix":81,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":82,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":12,"t":72,"tokens":[6778,2724,15467,21375],"delegation":[5778,1724,14467,20375],"delegatorTokens":9999999945505,"jailed":[1000000000000047,null,null,1000000000000023],"status":["unbonding","bonded","bonded","unbonding"]}},{"ix":83,"action":{"kind":"Deliver","chain":"consumer","numPackets":2},"partialState":{"h":8,"t":48,"consumerPower":[6778,6200,null,null],"outstandingDowntime":[false,false,true,false]}},{"ix":84,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":85,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":9,"t":54,"consumerPower":[null,2724,13284,null],"outstandingDowntime":[false,false,true,false]}},{"ix":86,"action":{"kind":"Undelegate","val":1,"amt":1093},"partialState":{"h":12,"t":72,"tokens":[6778,1631,15467,21375],"delegation":[5778,631,14467,20375],"delegatorTokens":9999999945505}},{"ix":87,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":13,"t":78,"tokens":[6778,1631,15467,21375],"delegation":[5778,631,14467,20375],"delegatorTokens":9999999945505,"jailed":[1000000000000047,null,null,1000000000000023],"status":["unbonding","bonded","bonded","unbonding"]}},{"ix":88,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":14,"t":84,"tokens":[6778,1631,15467,21375],"delegation":[5778,631,14467,20375],"delegatorTokens":9999999945505,"jailed":[1000000000000047,null,null,1000000000000023],"status":["unbonding","bonded","bonded","unbonding"]}},{"ix":89,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":10,"t":60,"consumerPower":[null,2724,13284,null],"outstandingDowntime":[false,false,true,false]}},{"ix":90,"action":{"kind":"Undelegate","val":0,"amt":1999},"partialState":{"h":14,"t":84,"tokens":[4779,1631,15467,21375],"delegation":[3779,631,14467,20375],"delegatorTokens":9999999945505}},{"ix":91,"action":{"kind":"Delegate","val":2,"amt":4508},"partialState":{"h":14,"t":84,"tokens":[4779,1631,19975,21375],"delegation":[3779,631,18975,20375],"delegatorTokens":9999999940997}},{"ix":92,"action":{"kind":"Delegate","val":3,"amt":2005},"partialState":{"h":14,"t":84,"tokens":[4779,1631,19975,23380],"delegation":[3779,631,18975,22380],"delegatorTokens":9999999938992}},{"ix":93,"action":{"kind":"Delegate","val":3,"amt":1394},"partialState":{"h":14,"t":84,"tokens":[4779,1631,19975,24774],"delegation":[3779,631,18975,23774],"delegatorTokens":9999999937598}},{"ix":94,"action":{"kind":"Undelegate","val":3,"amt":3423},"partialState":{"h":14,"t":84,"tokens":[4779,1631,19975,21351],"delegation":[3779,631,18975,20351],"delegatorTokens":9999999937598}},{"ix":95,"action":{"kind":"Deliver","chain":"provider","numPackets":2},"partialState":{"h":14,"t":84,"tokens":[4779,1631,19975,21351],"delegation":[3779,631,18975,20351],"delegatorTokens":9999999937598,"jailed":[1000000000000047,null,null,1000000000000023],"status":["unbonding","bonded","bonded","unbonding"]}},{"ix":96,"action":{"kind":"Undelegate","val":0,"amt":2759},"partialState":{"h":14,"t":84,"tokens":[2020,1631,19975,21351],"delegation":[1020,631,18975,20351],"delegatorTokens":9999999937598}},{"ix":97,"action":{"kind":"Deliver","chain":"provider","numPackets":1},"partialState":{"h":14,"t":84,"tokens":[2020,1631,19975,21351],"delegation":[1020,631,18975,20351],"delegatorTokens":9999999937598,"jailed":[1000000000000047,null,null,1000000000000023],"status":["unbonding","bonded","bonded","unbonding"]}},{"ix":98,"action":{"kind":"Delegate","val":1,"amt":3109},"partialState":{"h":14,"t":84,"tokens":[2020,4740,19975,21351],"delegation":[1020,3740,18975,20351],"delegatorTokens":9999999934489}},{"ix":99,"action":{"kind":"Undelegate","val":0,"amt":3843},"partialState":{"h":14,"t":84,"tokens":[2020,4740,19975,21351],"delegation":[1020,3740,18975,20351],"delegatorTokens":9999999934489}},{"ix":100,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":11,"t":66,"consumerPower":[null,2724,13284,null],"outstandingDowntime":[false,false,true,false]}},{"ix":101,"action":{"kind":"Undelegate","val":3,"amt":1139},"partialState":{"h":14,"t":84,"tokens":[2020,4740,19975,20212],"delegation":[1020,3740,18975,19212],"delegatorTokens":9999999934489}},{"ix":102,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":15,"t":90,"tokens":[2020,4740,19975,20212],"delegation":[1020,3740,18975,19212],"delegatorTokens":9999999934489,"jailed":[1000000000000047,null,null,1000000000000023],"status":["unbonding","bonded","bonded","unbonding"]}},{"ix":103,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":12,"t":72,"consumerPower":[null,2724,13284,null],"outstandingDowntime":[false,false,true,false]}},{"ix":104,"action":{"kind":"Delegate","val":0,"amt":3168},"partialState":{"h":15,"t":90,"tokens":[5188,4740,19975,20212],"delegation":[4188,3740,18975,19212],"delegatorTokens":9999999931321}},{"ix":105,"action":{"kind":"Undelegate","val":1,"amt":1408},"partialState":{"h":15,"t":90,"tokens":[5188,3332,19975,20212],"delegation":[4188,2332,18975,19212],"delegatorTokens":9999999931321}},{"ix":106,"action":{"kind":"Deliver","chain":"consumer","numPackets":2},"partialState":{"h":12,"t":72,"consumerPower":[null,2724,13284,null],"outstandingDowntime":[false,false,true,false]}},{"ix":107,"action":{"kind":"Undelegate","val":3,"amt":1367},"partialState":{"h":15,"t":90,"tokens":[5188,3332,19975,18845],"delegation":[4188,2332,18975,17845],"delegatorTokens":9999999931321}},{"ix":108,"action":{"kind":"Delegate","val":1,"amt":3492},"partialState":{"h":15,"t":90,"tokens":[5188,6824,19975,18845],"delegation":[4188,5824,18975,17845],"delegatorTokens":9999999927829}},{"ix":109,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":110,"action":{"kind":"Delegate","val":1,"amt":4745},"partialState":{"h":15,"t":90,"tokens":[5188,11569,19975,18845],"delegation":[4188,10569,18975,17845],"delegatorTokens":9999999923084}},{"ix":111,"action":{"kind":"Delegate","val":0,"amt":1672},"partialState":{"h":15,"t":90,"tokens":[6860,11569,19975,18845],"delegation":[5860,10569,18975,17845],"delegatorTokens":9999999921412}},{"ix":112,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":113,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":114,"action":{"kind":"Delegate","val":1,"amt":2436},"partialState":{"h":15,"t":90,"tokens":[6860,14005,19975,18845],"delegation":[5860,13005,18975,17845],"delegatorTokens":9999999918976}},{"ix":115,"action":{"kind":"Undelegate","val":2,"amt":3078},"partialState":{"h":15,"t":90,"tokens":[6860,14005,16897,18845],"delegation":[5860,13005,15897,17845],"delegatorTokens":9999999918976}},{"ix":116,"action":{"kind":"Delegate","val":3,"amt":1435},"partialState":{"h":15,"t":90,"tokens":[6860,14005,16897,20280],"delegation":[5860,13005,15897,19280],"delegatorTokens":9999999917541}},{"ix":117,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":16,"t":96,"tokens":[6860,14005,16897,20280],"delegation":[5860,13005,15897,19280],"delegatorTokens":9999999917541,"jailed":[1000000000000047,null,null,1000000000000023],"status":["unbonding","bonded","bonded","unbonding"]}},{"ix":118,"action":{"kind":"Delegate","val":0,"amt":1052},"partialState":{"h":16,"t":96,"tokens":[7912,14005,16897,20280],"delegation":[6912,13005,15897,19280],"delegatorTokens":9999999916489}},{"ix":119,"action":{"kind":"Undelegate","val":1,"amt":3463},"partialState":{"h":16,"t":96,"tokens":[7912,10542,16897,20280],"delegation":[6912,9542,15897,19280],"delegatorTokens":9999999916489}},{"ix":120,"action":{"kind":"Delegate","val":2,"amt":4488},"partialState":{"h":16,"t":96,"tokens":[7912,10542,21385,20280],"delegation":[6912,9542,20385,19280],"delegatorTokens":9999999912001}},{"ix":121,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":13,"t":78,"consumerPower":[null,1631,15467,null],"outstandingDowntime":[false,false,true,false]}},{"ix":122,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":123,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":124,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":17,"t":102,"tokens":[7912,10542,21385,20280],"delegation":[6912,9542,20385,19280],"delegatorTokens":9999999912001,"jailed":[1000000000000047,null,null,1000000000000023],"status":["unbonding","bonded","bonded","unbonding"]}},{"ix":125,"action":{"kind":"Delegate","val":3,"amt":1374},"partialState":{"h":17,"t":102,"tokens":[7912,10542,21385,21654],"delegation":[6912,9542,20385,20654],"delegatorTokens":9999999910627}},{"ix":126,"action":{"kind":"Delegate","val":1,"amt":2634},"partialState":{"h":17,"t":102,"tokens":[7912,13176,21385,21654],"delegation":[6912,12176,20385,20654],"delegatorTokens":9999999907993}},{"ix":127,"action":{"kind":"Deliver","chain":"consumer","numPackets":1},"partialState":{"h":13,"t":78,"consumerPower":[null,1631,15467,null],"outstandingDowntime":[false,false,true,false]}},{"ix":128,"action":{"kind":"Undelegate","val":2,"amt":4648},"partialState":{"h":17,"t":102,"tokens":[7912,13176,16737,21654],"delegation":[6912,12176,15737,20654],"delegatorTokens":9999999907993}},{"ix":129,"action":{"kind":"Undelegate","val":1,"amt":3804},"partialState":{"h":17,"t":102,"tokens":[7912,9372,16737,21654],"delegation":[6912,8372,15737,20654],"delegatorTokens":9999999907993}},{"ix":130,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":14,"t":84,"consumerPower":[null,4740,19975,null],"outstandingDowntime":[false,false,true,false]}},{"ix":131,"action":{"kind":"Delegate","val":3,"amt":4009},"partialState":{"h":17,"t":102,"tokens":[7912,9372,16737,25663],"delegation":[6912,8372,15737,24663],"delegatorTokens":9999999903984}},{"ix":132,"action":{"kind":"Deliver","chain":"consumer","numPackets":4},"partialState":{"h":14,"t":84,"consumerPower":[null,4740,19975,null],"outstandingDowntime":[false,false,true,false]}},{"ix":133,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":134,"action":{"kind":"Deliver","chain":"provider","numPackets":1},"partialState":{"h":17,"t":102,"tokens":[7912,9372,16737,25663],"delegation":[6912,8372,15737,24663],"delegatorTokens":9999999903984,"jailed":[1000000000000047,null,null,1000000000000023],"status":["unbonding","bonded","bonded","unbonding"]}},{"ix":135,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":136,"action":{"kind":"Undelegate","val":0,"amt":4919},"partialState":{"h":17,"t":102,"tokens":[2993,9372,16737,25663],"delegation":[1993,8372,15737,24663],"delegatorTokens":9999999903984}},{"ix":137,"action":{"kind":"Undelegate","val":0,"amt":3876},"partialState":{"h":17,"t":102,"tokens":[2993,9372,16737,25663],"delegation":[1993,8372,15737,24663],"delegatorTokens":9999999903984}},{"ix":138,"action":{"kind":"Deliver","chain":"provider","numPackets":5},"partialState":{"h":17,"t":102,"tokens":[2993,9372,16737,25663],"delegation":[1993,8372,15737,24663],"delegatorTokens":9999999903984,"jailed":[1000000000000047,null,null,1000000000000023],"status":["unbonding","bonded","bonded","unbonding"]}},{"ix":139,"action":{"kind":"Delegate","val":2,"amt":1964},"partialState":{"h":17,"t":102,"tokens":[2993,9372,18701,25663],"delegation":[1993,8372,17701,24663],"delegatorTokens":9999999902020}},{"ix":140,"action":{"kind":"Undelegate","val":1,"amt":3036},"partialState":{"h":17,"t":102,"tokens":[2993,6336,18701,25663],"delegation":[1993,5336,17701,24663],"delegatorTokens":9999999902020}},{"ix":141,"action":{"kind":"Undelegate","val":1,"amt":1266},"partialState":{"h":17,"t":102,"tokens":[2993,5070,18701,25663],"delegation":[1993,4070,17701,24663],"delegatorTokens":9999999902020}},{"ix":142,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":15,"t":90,"consumerPower":[null,14005,16897,null],"outstandingDowntime":[false,false,true,false]}},{"ix":143,"action":{"kind":"Undelegate","val":0,"amt":2376},"partialState":{"h":17,"t":102,"tokens":[2993,5070,18701,25663],"delegation":[1993,4070,17701,24663],"delegatorTokens":9999999902020}},{"ix":144,"action":{"kind":"Delegate","val":3,"amt":1039},"partialState":{"h":17,"t":102,"tokens":[2993,5070,18701,26702],"delegation":[1993,4070,17701,25702],"delegatorTokens":9999999900981}},{"ix":145,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":146,"action":{"kind":"Undelegate","val":2,"amt":2549},"partialState":{"h":17,"t":102,"tokens":[2993,5070,16152,26702],"delegation":[1993,4070,15152,25702],"delegatorTokens":9999999900981}},{"ix":147,"action":{"kind":"Deliver","chain":"provider","numPackets":3},"partialState":{"h":17,"t":102,"tokens":[2993,5070,16152,26702],"delegation":[1993,4070,15152,25702],"delegatorTokens":9999999900981,"jailed":[1000000000000047,null,null,1000000000000023],"status":["unbonding","bonded","bonded","unbonding"]}},{"ix":148,"action":{"kind":"Undelegate","val":2,"amt":4006},"partialState":{"h":17,"t":102,"tokens":[2993,5070,12146,26702],"delegation":[1993,4070,11146,25702],"delegatorTokens":9999999900981}},{"ix":149,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":18,"t":108,"tokens":[2993,5070,12146,26702],"delegation":[1993,4070,11146,25702],"delegatorTokens":9999999909439,"jailed":[1000000000000047,null,null,1000000000000023],"status":["unbonding","bonded","bonded","unbonding"]}},{"ix":150,"action":{"kind":"Deliver","chain":"provider","numPackets":4},"partialState":{"h":18,"t":108,"tokens":[2993,5070,12146,26702],"delegation":[1993,4070,11146,25702],"delegatorTokens":9999999909439,"jailed":[1000000000000047,null,null,1000000000000023],"status":["unbonding","bonded","bonded","unbonding"]}},{"ix":151,"action":{"kind":"Undelegate","val":0,"amt":1805},"partialState":{"h":18,"t":108,"tokens":[1188,5070,12146,26702],"delegation":[188,4070,11146,25702],"delegatorTokens":9999999909439}},{"ix":152,"action":{"kind":"Delegate","val":3,"amt":2879},"partialState":{"h":18,"t":108,"tokens":[1188,5070,12146,29581],"delegation":[188,4070,11146,28581],"delegatorTokens":9999999906560}},{"ix":153,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":154,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":155,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":156,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":157,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":158,"action":{"kind":"Delegate","val":1,"amt":3176},"partialState":{"h":18,"t":108,"tokens":[1188,8246,12146,29581],"delegation":[188,7246,11146,28581],"delegatorTokens":9999999903384}},{"ix":159,"action":{"kind":"Undelegate","val":3,"amt":4987},"partialState":{"h":18,"t":108,"tokens":[1188,8246,12146,24594],"delegation":[188,7246,11146,23594],"delegatorTokens":9999999903384}},{"ix":160,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":19,"t":114,"tokens":[1188,8246,12146,24594],"delegation":[188,7246,11146,23594],"delegatorTokens":9999999903384,"jailed":[1000000000000047,null,null,1000000000000023],"status":["unbonding","bonded","bonded","unbonding"]}},{"ix":161,"action":{"kind":"Delegate","val":1,"amt":3858},"partialState":{"h":19,"t":114,"tokens":[1188,12104,12146,24594],"delegation":[188,11104,11146,23594],"delegatorTokens":9999999899526}},{"ix":162,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":20,"t":120,"tokens":[1188,12104,12146,24594],"delegation":[188,11104,11146,23594],"delegatorTokens":9999999899526,"jailed":[1000000000000047,null,null,1000000000000023],"status":["unbonding","bonded","bonded","unbonding"]}},{"ix":163,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":16,"t":96,"consumerPower":[null,14005,16897,null],"outstandingDowntime":[false,false,true,false]}},{"ix":164,"action":{"kind":"Deliver","chain":"consumer","numPackets":1},"partialState":{"h":16,"t":96,"consumerPower":[null,14005,16897,null],"outstandingDowntime":[false,false,true,false]}},{"ix":165,"action":{"kind":"Delegate","val":2,"amt":2340},"partialState":{"h":20,"t":120,"tokens":[1188,12104,14486,24594],"delegation":[188,11104,13486,23594],"delegatorTokens":9999999897186}},{"ix":166,"action":{"kind":"Delegate","val":1,"amt":1245},"partialState":{"h":20,"t":120,"tokens":[1188,13349,14486,24594],"delegation":[188,12349,13486,23594],"delegatorTokens":9999999895941}},{"ix":167,"action":{"kind":"Delegate","val":2,"amt":2451},"partialState":{"h":20,"t":120,"tokens":[1188,13349,16937,24594],"delegation":[188,12349,15937,23594],"delegatorTokens":9999999893490}},{"ix":168,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":17,"t":102,"consumerPower":[null,10542,21385,null],"outstandingDowntime":[false,false,true,false]}},{"ix":169,"action":{"kind":"Delegate","val":1,"amt":3006},"partialState":{"h":20,"t":120,"tokens":[1188,16355,16937,24594],"delegation":[188,15355,15937,23594],"delegatorTokens":9999999890484}},{"ix":170,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":18,"t":108,"consumerPower":[null,10542,21385,null],"outstandingDowntime":[false,false,true,false]}},{"ix":171,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":19,"t":114,"consumerPower":[null,10542,21385,null],"outstandingDowntime":[false,false,true,false]}},{"ix":172,"action":{"kind":"Undelegate","val":3,"amt":1824},"partialState":{"h":20,"t":120,"tokens":[1188,16355,16937,22770],"delegation":[188,15355,15937,21770],"delegatorTokens":9999999890484}},{"ix":173,"action":{"kind":"Deliver","chain":"provider","numPackets":4},"partialState":{"h":20,"t":120,"tokens":[1188,16355,16937,22770],"delegation":[188,15355,15937,21770],"delegatorTokens":9999999890484,"jailed":[1000000000000047,null,null,1000000000000023],"status":["unbonding","bonded","bonded","unbonding"]}},{"ix":174,"action":{"kind":"Undelegate","val":2,"amt":3283},"partialState":{"h":20,"t":120,"tokens":[1188,16355,13654,22770],"delegation":[188,15355,12654,21770],"delegatorTokens":9999999890484}},{"ix":175,"action":{"kind":"Deliver","chain":"consumer","numPackets":2},"partialState":{"h":19,"t":114,"consumerPower":[null,10542,21385,null],"outstandingDowntime":[false,false,true,false]}},{"ix":176,"action":{"kind":"Delegate","val":3,"amt":3832},"partialState":{"h":20,"t":120,"tokens":[1188,16355,13654,26602],"delegation":[188,15355,12654,25602],"delegatorTokens":9999999886652}},{"ix":177,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":21,"t":126,"tokens":[1188,16355,13654,26602],"delegation":[188,15355,12654,25602],"delegatorTokens":9999999896869,"jailed":[1000000000000047,null,null,1000000000000023],"status":["unbonding","bonded","bonded","unbonding"]}},{"ix":178,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":20,"t":120,"consumerPower":[null,8246,12146,null],"outstandingDowntime":[false,false,true,false]}},{"ix":179,"action":{"kind":"Undelegate","val":3,"amt":4249},"partialState":{"h":21,"t":126,"tokens":[1188,16355,13654,22353],"delegation":[188,15355,12654,21353],"delegatorTokens":9999999896869}},{"ix":180,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":22,"t":132,"tokens":[1188,16355,13654,22353],"delegation":[188,15355,12654,21353],"delegatorTokens":9999999900345,"jailed":[1000000000000047,null,null,1000000000000023],"status":["unbonded","bonded","bonded","unbonded"]}},{"ix":181,"action":{"kind":"Delegate","val":0,"amt":1492},"partialState":{"h":22,"t":132,"tokens":[2680,16355,13654,22353],"delegation":[1680,15355,12654,21353],"delegatorTokens":9999999898853}},{"ix":182,"action":{"kind":"Undelegate","val":0,"amt":2588},"partialState":{"h":22,"t":132,"tokens":[2680,16355,13654,22353],"delegation":[1680,15355,12654,21353],"delegatorTokens":9999999898853}},{"ix":183,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":21,"t":126,"consumerPower":[null,8246,12146,null],"outstandingDowntime":[false,false,true,false]}},{"ix":184,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":185,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":186,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":22,"t":132,"consumerPower":[null,8246,12146,null],"outstandingDowntime":[false,false,true,false]}},{"ix":187,"action":{"kind":"Deliver","chain":"provider","numPackets":3},"partialState":{"h":22,"t":132,"tokens":[2680,16355,13654,22353],"delegation":[1680,15355,12654,21353],"delegatorTokens":9999999898853,"jailed":[1000000000000047,null,null,1000000000000023],"status":["unbonded","bonded","bonded","unbonded"]}},{"ix":188,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":23,"t":138,"consumerPower":[null,8246,12146,null],"outstandingDowntime":[false,false,true,false]}},{"ix":189,"action":{"kind":"Deliver","chain":"provider","numPackets":5},"partialState":{"h":22,"t":132,"tokens":[2680,16355,13654,22353],"delegation":[1680,15355,12654,21353],"delegatorTokens":9999999898853,"jailed":[1000000000000047,null,null,1000000000000023],"status":["unbonded","bonded","bonded","unbonded"]}},{"ix":190,"action":{"kind":"Undelegate","val":2,"amt":4427},"partialState":{"h":22,"t":132,"tokens":[2680,16355,9227,22353],"delegation":[1680,15355,8227,21353],"delegatorTokens":9999999898853}},{"ix":191,"action":{"kind":"Delegate","val":1,"amt":3334},"partialState":{"h":22,"t":132,"tokens":[2680,19689,9227,22353],"delegation":[1680,18689,8227,21353],"delegatorTokens":9999999895519}},{"ix":192,"action":{"kind":"Undelegate","val":1,"amt":4006},"partialState":{"h":22,"t":132,"tokens":[2680,15683,9227,22353],"delegation":[1680,14683,8227,21353],"delegatorTokens":9999999895519}},{"ix":193,"action":{"kind":"Undelegate","val":0,"amt":2254},"partialState":{"h":22,"t":132,"tokens":[2680,15683,9227,22353],"delegation":[1680,14683,8227,21353],"delegatorTokens":9999999895519}},{"ix":194,"action":{"kind":"Undelegate","val":0,"amt":4186},"partialState":{"h":22,"t":132,"tokens":[2680,15683,9227,22353],"delegation":[1680,14683,8227,21353],"delegatorTokens":9999999895519}},{"ix":195,"action":{"kind":"Undelegate","val":3,"amt":1101},"partialState":{"h":22,"t":132,"tokens":[2680,15683,9227,21252],"delegation":[1680,14683,8227,20252],"delegatorTokens":9999999895519}},{"ix":196,"action":{"kind":"Undelegate","val":3,"amt":1000},"partialState":{"h":22,"t":132,"tokens":[2680,15683,9227,20252],"delegation":[1680,14683,8227,19252],"delegatorTokens":9999999895519}},{"ix":197,"action":{"kind":"Undelegate","val":2,"amt":2031},"partialState":{"h":22,"t":132,"tokens":[2680,15683,7196,20252],"delegation":[1680,14683,6196,19252],"delegatorTokens":9999999895519}},{"ix":198,"action":{"kind":"Delegate","val":1,"amt":2592},"partialState":{"h":22,"t":132,"tokens":[2680,18275,7196,20252],"delegation":[1680,17275,6196,19252],"delegatorTokens":9999999892927}},{"ix":199,"action":{"kind":"Delegate","val":3,"amt":3905},"partialState":{"h":22,"t":132,"tokens":[2680,18275,7196,24157],"delegation":[1680,17275,6196,23157],"delegatorTokens":9999999889022}}],"events":["insufficient_shares","send_downtime_slash_request","downtime_slash_request_outstanding","send_vsc_without_downtime_ack","send_downtime_slash_request","downtime_slash_request_outstanding","insufficient_shares","consumer_del_val","consumer_update_val","consumer_add_val","downtime_slash_request_outstanding","receive_downtime_slash_request","jail","send_vsc_with_downtime_ack","downtime_slash_request_outstanding","insufficient_shares","send_downtime_slash_request","rebond_unval","receive_slash_request_unbonded","send_vsc_without_downtime_ack","receive_downtime_slash_ack","consumer_update_val","insufficient_shares","insufficient_shares","send_vsc_without_downtime_ack","consumer_add_val","consumer_del_val","consumer_update_val","receive_downtime_slash_request","jail","more_than_one_third_val_power_change","send_vsc_with_downtime_ack","send_vsc_without_downtime_ack","send_vsc_without_downtime_ack","receive_downtime_slash_ack","consumer_del_val","consumer_update_val","consumer_add_val","send_vsc_without_downtime_ack","insufficient_shares","some_undels_expired_but_not_completed","send_vsc_without_downtime_ack","consumer_send_maturation","send_vsc_without_downtime_ack","consumer_send_maturation","consumer_update_val","consumer_update_val","some_undels_expired_but_not_completed","send_vsc_without_downtime_ack","consumer_update_val","consumer_update_val","insufficient_shares","consumer_update_val","consumer_update_val","insufficient_shares","complete_undel_immediate","complete_undel_immediate","complete_undel_immediate","send_vsc_without_downtime_ack","some_undels_expired_but_not_completed","send_vsc_without_downtime_ack","send_vsc_without_downtime_ack","consumer_send_maturation","consumer_send_maturation","consumer_update_val","consumer_update_val","consumer_send_maturation","consumer_send_maturation","set_unval_hold_false","complete_undel_immediate","complete_undel_immediate","complete_undel_immediate","complete_undel_immediate","complete_undel_immediate","set_undel_hold_false","set_unval_hold_false","send_vsc_without_downtime_ack","consumer_update_val","consumer_update_val","complete_unval_in_endblock","complete_unval_in_endblock","complete_undel_in_endblock","send_vsc_not_because_change","send_vsc_without_downtime_ack","insufficient_shares","consumer_send_maturation","consumer_send_maturation","consumer_send_maturation","insufficient_shares","insufficient_shares"]},{"meta":{"commit":"7ffd0c04e4205cbc9caf212abfe6c59ee43153bf"},"constants":{"P":"provider","C":"consumer","UNBONDING_SECONDS_P":70,"UNBONDING_SECONDS_C":50,"TRUSTING_SECONDS":49,"NUM_VALIDATORS":4,"MAX_VALIDATORS":2,"SLASH_DOUBLESIGN":0,"SLASH_DOWNTIME":0,"JAIL_SECONDS":999999999999999,"BLOCK_SECONDS":6,"INITIAL_DELEGATOR_TOKENS":10000000000000,"DELEGATE_AMT_MIN":1000,"DELEGATE_AMT_MAX":5000,"UNDELEGATE_AMT_MIN":1000,"UNDELEGATE_AMT_MAX":5000,"ISDOWNTIME_PROBABILITY":0.5,"MAX_NUM_PACKETS_FOR_DELIVER":6},"actions":[{"ix":0,"action":{"kind":"Delegate","val":3,"amt":2240},"partialState":{"h":1,"t":6,"tokens":[5000,4000,3000,4240],"delegation":[4000,3000,2000,3240],"delegatorTokens":9999999997760}},{"ix":1,"action":{"kind":"Deliver","chain":"provider","numPackets":4},"partialState":{"h":1,"t":6,"tokens":[5000,4000,3000,4240],"delegation":[4000,3000,2000,3240],"delegatorTokens":9999999997760,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":2,"action":{"kind":"Delegate","val":3,"amt":2942},"partialState":{"h":1,"t":6,"tokens":[5000,4000,3000,7182],"delegation":[4000,3000,2000,6182],"delegatorTokens":9999999994818}},{"ix":3,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":4,"action":{"kind":"ConsumerSlash","val":2,"infractionHeight":0,"isDowntime":true},"partialState":{"h":1,"t":6,"outstandingDowntime":[false,false,true,false]}},{"ix":5,"action":{"kind":"ConsumerSlash","val":2,"infractionHeight":0,"isDowntime":true},"partialState":{"h":1,"t":6,"outstandingDowntime":[false,false,true,false]}},{"ix":6,"action":{"kind":"ConsumerSlash","val":0,"infractionHeight":0,"isDowntime":true},"partialState":{"h":1,"t":6,"outstandingDowntime":[true,false,true,false]}},{"ix":7,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":2,"t":12,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[true,false,true,false]}},{"ix":8,"action":{"kind":"Undelegate","val":3,"amt":4165},"partialState":{"h":1,"t":6,"tokens":[5000,4000,3000,3017],"delegation":[4000,3000,2000,2017],"delegatorTokens":9999999994818}},{"ix":9,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":10,"action":{"kind":"Deliver","chain":"consumer","numPackets":6},"partialState":{"h":2,"t":12,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[true,false,true,false]}},{"ix":11,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":12,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":13,"action":{"kind":"ConsumerSlash","val":2,"infractionHeight":1,"isDowntime":true},"partialState":{"h":2,"t":12,"outstandingDowntime":[true,false,true,false]}},{"ix":14,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":3,"t":18,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[true,false,true,false]}},{"ix":15,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":4,"t":24,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[true,false,true,false]}},{"ix":16,"action":{"kind":"Deliver","chain":"provider","numPackets":4},"partialState":{"h":1,"t":6,"tokens":[5000,4000,3000,3017],"delegation":[4000,3000,2000,2017],"delegatorTokens":9999999994818,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":17,"action":{"kind":"ConsumerSlash","val":0,"infractionHeight":3,"isDowntime":true},"partialState":{"h":4,"t":24,"outstandingDowntime":[true,false,true,false]}},{"ix":18,"action":{"kind":"Deliver","chain":"consumer","numPackets":4},"partialState":{"h":4,"t":24,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[true,false,true,false]}},{"ix":19,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":20,"action":{"kind":"Undelegate","val":3,"amt":4563},"partialState":{"h":1,"t":6,"tokens":[5000,4000,3000,3017],"delegation":[4000,3000,2000,2017],"delegatorTokens":9999999994818}},{"ix":21,"action":{"kind":"Undelegate","val":1,"amt":4491},"partialState":{"h":1,"t":6,"tokens":[5000,4000,3000,3017],"delegation":[4000,3000,2000,2017],"delegatorTokens":9999999994818}},{"ix":22,"action":{"kind":"Delegate","val":0,"amt":1378},"partialState":{"h":1,"t":6,"tokens":[6378,4000,3000,3017],"delegation":[5378,3000,2000,2017],"delegatorTokens":9999999993440}},{"ix":23,"action":{"kind":"Undelegate","val":0,"amt":3873},"partialState":{"h":1,"t":6,"tokens":[2505,4000,3000,3017],"delegation":[1505,3000,2000,2017],"delegatorTokens":9999999993440}},{"ix":24,"action":{"kind":"Undelegate","val":0,"amt":2450},"partialState":{"h":1,"t":6,"tokens":[2505,4000,3000,3017],"delegation":[1505,3000,2000,2017],"delegatorTokens":9999999993440}},{"ix":25,"action":{"kind":"Deliver","chain":"consumer","numPackets":6},"partialState":{"h":4,"t":24,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[true,false,true,false]}},{"ix":26,"action":{"kind":"Undelegate","val":1,"amt":2940},"partialState":{"h":1,"t":6,"tokens":[2505,1060,3000,3017],"delegation":[1505,60,2000,2017],"delegatorTokens":9999999993440}},{"ix":27,"action":{"kind":"Delegate","val":0,"amt":1194},"partialState":{"h":1,"t":6,"tokens":[3699,1060,3000,3017],"delegation":[2699,60,2000,2017],"delegatorTokens":9999999992246}},{"ix":28,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":29,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":5,"t":30,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[true,false,true,false]}},{"ix":30,"action":{"kind":"ConsumerSlash","val":3,"infractionHeight":0,"isDowntime":true},"partialState":{"h":5,"t":30,"outstandingDowntime":[true,false,true,true]}},{"ix":31,"action":{"kind":"Deliver","chain":"provider","numPackets":3},"partialState":{"h":1,"t":6,"tokens":[3699,1060,3000,3017],"delegation":[2699,60,2000,2017],"delegatorTokens":9999999992246,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":32,"action":{"kind":"Deliver","chain":"consumer","numPackets":5},"partialState":{"h":5,"t":30,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[true,false,true,true]}},{"ix":33,"action":{"kind":"Undelegate","val":1,"amt":1005},"partialState":{"h":1,"t":6,"tokens":[3699,1060,3000,3017],"delegation":[2699,60,2000,2017],"delegatorTokens":9999999992246}},{"ix":34,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":35,"action":{"kind":"Undelegate","val":3,"amt":1912},"partialState":{"h":1,"t":6,"tokens":[3699,1060,3000,1105],"delegation":[2699,60,2000,105],"delegatorTokens":9999999992246}},{"ix":36,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":37,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":6,"t":36,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[true,false,true,true]}},{"ix":38,"action":{"kind":"Deliver","chain":"provider","numPackets":1},"partialState":{"h":1,"t":6,"tokens":[3699,1060,3000,1105],"delegation":[2699,60,2000,105],"delegatorTokens":9999999992246,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":39,"action":{"kind":"Delegate","val":2,"amt":1937},"partialState":{"h":1,"t":6,"tokens":[3699,1060,4937,1105],"delegation":[2699,60,3937,105],"delegatorTokens":9999999990309}},{"ix":40,"action":{"kind":"Undelegate","val":2,"amt":3087},"partialState":{"h":1,"t":6,"tokens":[3699,1060,1850,1105],"delegation":[2699,60,850,105],"delegatorTokens":9999999990309}},{"ix":41,"action":{"kind":"Delegate","val":2,"amt":4817},"partialState":{"h":1,"t":6,"tokens":[3699,1060,6667,1105],"delegation":[2699,60,5667,105],"delegatorTokens":9999999985492}},{"ix":42,"action":{"kind":"Deliver","chain":"provider","numPackets":4},"partialState":{"h":1,"t":6,"tokens":[3699,1060,6667,1105],"delegation":[2699,60,5667,105],"delegatorTokens":9999999985492,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":43,"action":{"kind":"Deliver","chain":"consumer","numPackets":3},"partialState":{"h":6,"t":36,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[true,false,true,true]}},{"ix":44,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":45,"action":{"kind":"Undelegate","val":2,"amt":3564},"partialState":{"h":1,"t":6,"tokens":[3699,1060,3103,1105],"delegation":[2699,60,2103,105],"delegatorTokens":9999999985492}},{"ix":46,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":2,"t":12,"tokens":[3699,1060,3103,1105],"delegation":[2699,60,2103,105],"delegatorTokens":9999999985492,"jailed":[1000000000000005,null,1000000000000005,null],"status":["bonded","unbonding","bonded","unbonded"]}},{"ix":47,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":7,"t":42,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[true,false,true,true]}},{"ix":48,"action":{"kind":"Undelegate","val":3,"amt":1930},"partialState":{"h":2,"t":12,"tokens":[3699,1060,3103,1105],"delegation":[2699,60,2103,105],"delegatorTokens":9999999985492}},{"ix":49,"action":{"kind":"Undelegate","val":0,"amt":2700},"partialState":{"h":2,"t":12,"tokens":[3699,1060,3103,1105],"delegation":[2699,60,2103,105],"delegatorTokens":9999999985492}},{"ix":50,"action":{"kind":"Deliver","chain":"provider","numPackets":5},"partialState":{"h":2,"t":12,"tokens":[3699,1060,3103,1105],"delegation":[2699,60,2103,105],"delegatorTokens":9999999985492,"jailed":[1000000000000005,null,1000000000000005,null],"status":["bonded","unbonding","bonded","unbonded"]}},{"ix":51,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":52,"action":{"kind":"Deliver","chain":"provider","numPackets":3},"partialState":{"h":2,"t":12,"tokens":[3699,1060,3103,1105],"delegation":[2699,60,2103,105],"delegatorTokens":9999999985492,"jailed":[1000000000000005,null,1000000000000005,null],"status":["bonded","unbonding","bonded","unbonded"]}},{"ix":53,"action":{"kind":"Undelegate","val":0,"amt":3112},"partialState":{"h":2,"t":12,"tokens":[3699,1060,3103,1105],"delegation":[2699,60,2103,105],"delegatorTokens":9999999985492}},{"ix":54,"action":{"kind":"Undelegate","val":1,"amt":1467},"partialState":{"h":2,"t":12,"tokens":[3699,1060,3103,1105],"delegation":[2699,60,2103,105],"delegatorTokens":9999999985492}},{"ix":55,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":56,"action":{"kind":"Undelegate","val":2,"amt":1620},"partialState":{"h":2,"t":12,"tokens":[3699,1060,1483,1105],"delegation":[2699,60,483,105],"delegatorTokens":9999999985492}},{"ix":57,"action":{"kind":"Delegate","val":1,"amt":4951},"partialState":{"h":2,"t":12,"tokens":[3699,6011,1483,1105],"delegation":[2699,5011,483,105],"delegatorTokens":9999999980541}},{"ix":58,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":59,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":60,"action":{"kind":"Undelegate","val":1,"amt":4366},"partialState":{"h":2,"t":12,"tokens":[3699,1645,1483,1105],"delegation":[2699,645,483,105],"delegatorTokens":9999999980541}},{"ix":61,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":3,"t":18,"tokens":[3699,1645,1483,1105],"delegation":[2699,645,483,105],"delegatorTokens":9999999980541,"jailed":[1000000000000005,null,1000000000000005,1000000000000011],"status":["unbonding","bonded","unbonding","bonded"]}},{"ix":62,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":8,"t":48,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[true,false,true,true]}},{"ix":63,"action":{"kind":"Deliver","chain":"provider","numPackets":1},"partialState":{"h":3,"t":18,"tokens":[3699,1645,1483,1105],"delegation":[2699,645,483,105],"delegatorTokens":9999999980541,"jailed":[1000000000000005,null,1000000000000005,1000000000000011],"status":["unbonding","bonded","unbonding","bonded"]}},{"ix":64,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":65,"action":{"kind":"Delegate","val":1,"amt":2722},"partialState":{"h":3,"t":18,"tokens":[3699,4367,1483,1105],"delegation":[2699,3367,483,105],"delegatorTokens":9999999977819}},{"ix":66,"action":{"kind":"Delegate","val":2,"amt":4693},"partialState":{"h":3,"t":18,"tokens":[3699,4367,6176,1105],"delegation":[2699,3367,5176,105],"delegatorTokens":9999999973126}},{"ix":67,"action":{"kind":"Deliver","chain":"provider","numPackets":1},"partialState":{"h":3,"t":18,"tokens":[3699,4367,6176,1105],"delegation":[2699,3367,5176,105],"delegatorTokens":9999999973126,"jailed":[1000000000000005,null,1000000000000005,1000000000000011],"status":["unbonding","bonded","unbonding","bonded"]}},{"ix":68,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":4,"t":24,"tokens":[3699,4367,6176,1105],"delegation":[2699,3367,5176,105],"delegatorTokens":9999999973126,"jailed":[1000000000000005,null,1000000000000005,1000000000000011],"status":["unbonding","bonded","unbonding","unbonding"]}},{"ix":69,"action":{"kind":"Deliver","chain":"provider","numPackets":5},"partialState":{"h":4,"t":24,"tokens":[3699,4367,6176,1105],"delegation":[2699,3367,5176,105],"delegatorTokens":9999999973126,"jailed":[1000000000000005,null,1000000000000005,1000000000000011],"status":["unbonding","bonded","unbonding","unbonding"]}},{"ix":70,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":71,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":5,"t":30,"tokens":[3699,4367,6176,1105],"delegation":[2699,3367,5176,105],"delegatorTokens":9999999973126,"jailed":[1000000000000005,null,1000000000000005,1000000000000011],"status":["unbonding","bonded","unbonding","unbonding"]}},{"ix":72,"action":{"kind":"Undelegate","val":3,"amt":3524},"partialState":{"h":5,"t":30,"tokens":[3699,4367,6176,1105],"delegation":[2699,3367,5176,105],"delegatorTokens":9999999973126}},{"ix":73,"action":{"kind":"Deliver","chain":"consumer","numPackets":3},"partialState":{"h":8,"t":48,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":74,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":75,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":76,"action":{"kind":"Delegate","val":1,"amt":2818},"partialState":{"h":5,"t":30,"tokens":[3699,7185,6176,1105],"delegation":[2699,6185,5176,105],"delegatorTokens":9999999970308}},{"ix":77,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":78,"action":{"kind":"Delegate","val":1,"amt":4244},"partialState":{"h":5,"t":30,"tokens":[3699,11429,6176,1105],"delegation":[2699,10429,5176,105],"delegatorTokens":9999999966064}},{"ix":79,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":6,"t":36,"tokens":[3699,11429,6176,1105],"delegation":[2699,10429,5176,105],"delegatorTokens":9999999966064,"jailed":[1000000000000005,null,1000000000000005,1000000000000011],"status":["unbonding","bonded","unbonding","unbonding"]}},{"ix":80,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":9,"t":54,"consumerPower":[null,4367,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":81,"action":{"kind":"Delegate","val":2,"amt":3324},"partialState":{"h":6,"t":36,"tokens":[3699,11429,9500,1105],"delegation":[2699,10429,8500,105],"delegatorTokens":9999999962740}},{"ix":82,"action":{"kind":"Undelegate","val":3,"amt":2496},"partialState":{"h":6,"t":36,"tokens":[3699,11429,9500,1105],"delegation":[2699,10429,8500,105],"delegatorTokens":9999999962740}},{"ix":83,"action":{"kind":"Undelegate","val":1,"amt":4252},"partialState":{"h":6,"t":36,"tokens":[3699,7177,9500,1105],"delegation":[2699,6177,8500,105],"delegatorTokens":9999999962740}},{"ix":84,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":7,"t":42,"tokens":[3699,7177,9500,1105],"delegation":[2699,6177,8500,105],"delegatorTokens":9999999962740,"jailed":[1000000000000005,null,1000000000000005,1000000000000011],"status":["unbonding","bonded","unbonding","unbonding"]}},{"ix":85,"action":{"kind":"Delegate","val":1,"amt":3502},"partialState":{"h":7,"t":42,"tokens":[3699,10679,9500,1105],"delegation":[2699,9679,8500,105],"delegatorTokens":9999999959238}},{"ix":86,"action":{"kind":"Deliver","chain":"provider","numPackets":4},"partialState":{"h":7,"t":42,"tokens":[3699,10679,9500,1105],"delegation":[2699,9679,8500,105],"delegatorTokens":9999999959238,"jailed":[1000000000000005,null,1000000000000005,1000000000000011],"status":["unbonding","bonded","unbonding","unbonding"]}},{"ix":87,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":10,"t":60,"consumerPower":[null,4367,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":88,"action":{"kind":"Deliver","chain":"consumer","numPackets":1},"partialState":{"h":10,"t":60,"consumerPower":[null,4367,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":89,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":90,"action":{"kind":"Deliver","chain":"consumer","numPackets":6},"partialState":{"h":10,"t":60,"consumerPower":[null,4367,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":91,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":92,"action":{"kind":"Delegate","val":2,"amt":4330},"partialState":{"h":7,"t":42,"tokens":[3699,10679,13830,1105],"delegation":[2699,9679,12830,105],"delegatorTokens":9999999954908}},{"ix":93,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":8,"t":48,"tokens":[3699,10679,13830,1105],"delegation":[2699,9679,12830,105],"delegatorTokens":9999999954908,"jailed":[1000000000000005,null,1000000000000005,1000000000000011],"status":["unbonding","bonded","unbonding","unbonding"]}},{"ix":94,"action":{"kind":"Undelegate","val":2,"amt":1529},"partialState":{"h":8,"t":48,"tokens":[3699,10679,12301,1105],"delegation":[2699,9679,11301,105],"delegatorTokens":9999999954908}},{"ix":95,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":9,"t":54,"tokens":[3699,10679,12301,1105],"delegation":[2699,9679,11301,105],"delegatorTokens":9999999954908,"jailed":[1000000000000005,null,1000000000000005,1000000000000011],"status":["unbonding","bonded","unbonding","unbonding"]}},{"ix":96,"action":{"kind":"Delegate","val":0,"amt":3450},"partialState":{"h":9,"t":54,"tokens":[7149,10679,12301,1105],"delegation":[6149,9679,11301,105],"delegatorTokens":9999999951458}},{"ix":97,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":98,"action":{"kind":"Undelegate","val":3,"amt":2745},"partialState":{"h":9,"t":54,"tokens":[7149,10679,12301,1105],"delegation":[6149,9679,11301,105],"delegatorTokens":9999999951458}},{"ix":99,"action":{"kind":"Deliver","chain":"consumer","numPackets":3},"partialState":{"h":10,"t":60,"consumerPower":[null,4367,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":100,"action":{"kind":"Deliver","chain":"provider","numPackets":4},"partialState":{"h":9,"t":54,"tokens":[7149,10679,12301,1105],"delegation":[6149,9679,11301,105],"delegatorTokens":9999999951458,"jailed":[1000000000000005,null,1000000000000005,1000000000000011],"status":["unbonding","bonded","unbonding","unbonding"]}},{"ix":101,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":102,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":103,"action":{"kind":"Undelegate","val":2,"amt":3845},"partialState":{"h":9,"t":54,"tokens":[7149,10679,8456,1105],"delegation":[6149,9679,7456,105],"delegatorTokens":9999999951458}},{"ix":104,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":10,"t":60,"tokens":[7149,10679,8456,1105],"delegation":[6149,9679,7456,105],"delegatorTokens":9999999951458,"jailed":[1000000000000005,null,1000000000000005,1000000000000011],"status":["unbonding","bonded","unbonding","unbonding"]}},{"ix":105,"action":{"kind":"Delegate","val":1,"amt":4062},"partialState":{"h":10,"t":60,"tokens":[7149,14741,8456,1105],"delegation":[6149,13741,7456,105],"delegatorTokens":9999999947396}},{"ix":106,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":107,"action":{"kind":"Delegate","val":2,"amt":1895},"partialState":{"h":10,"t":60,"tokens":[7149,14741,10351,1105],"delegation":[6149,13741,9351,105],"delegatorTokens":9999999945501}},{"ix":108,"action":{"kind":"Deliver","chain":"provider","numPackets":3},"partialState":{"h":10,"t":60,"tokens":[7149,14741,10351,1105],"delegation":[6149,13741,9351,105],"delegatorTokens":9999999945501,"jailed":[1000000000000005,null,1000000000000005,1000000000000011],"status":["unbonding","bonded","unbonding","unbonding"]}},{"ix":109,"action":{"kind":"Delegate","val":1,"amt":1465},"partialState":{"h":10,"t":60,"tokens":[7149,16206,10351,1105],"delegation":[6149,15206,9351,105],"delegatorTokens":9999999944036}},{"ix":110,"action":{"kind":"Deliver","chain":"consumer","numPackets":4},"partialState":{"h":10,"t":60,"consumerPower":[null,4367,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":111,"action":{"kind":"Undelegate","val":2,"amt":1725},"partialState":{"h":10,"t":60,"tokens":[7149,16206,8626,1105],"delegation":[6149,15206,7626,105],"delegatorTokens":9999999944036}},{"ix":112,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":11,"t":66,"tokens":[7149,16206,8626,1105],"delegation":[6149,15206,7626,105],"delegatorTokens":9999999944036,"jailed":[1000000000000005,null,1000000000000005,1000000000000011],"status":["unbonding","bonded","unbonding","unbonding"]}},{"ix":113,"action":{"kind":"Delegate","val":0,"amt":2148},"partialState":{"h":11,"t":66,"tokens":[9297,16206,8626,1105],"delegation":[8297,15206,7626,105],"delegatorTokens":9999999941888}},{"ix":114,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":11,"t":66,"consumerPower":[null,10679,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":115,"action":{"kind":"Undelegate","val":1,"amt":1668},"partialState":{"h":11,"t":66,"tokens":[9297,14538,8626,1105],"delegation":[8297,13538,7626,105],"delegatorTokens":9999999941888}},{"ix":116,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":12,"t":72,"tokens":[9297,14538,8626,1105],"delegation":[8297,13538,7626,105],"delegatorTokens":9999999941888,"jailed":[1000000000000005,null,1000000000000005,1000000000000011],"status":["unbonding","bonded","unbonding","unbonding"]}},{"ix":117,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":12,"t":72,"consumerPower":[null,10679,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":118,"action":{"kind":"Delegate","val":2,"amt":3508},"partialState":{"h":12,"t":72,"tokens":[9297,14538,12134,1105],"delegation":[8297,13538,11134,105],"delegatorTokens":9999999938380}},{"ix":119,"action":{"kind":"Undelegate","val":2,"amt":2292},"partialState":{"h":12,"t":72,"tokens":[9297,14538,9842,1105],"delegation":[8297,13538,8842,105],"delegatorTokens":9999999938380}},{"ix":120,"action":{"kind":"Undelegate","val":0,"amt":3607},"partialState":{"h":12,"t":72,"tokens":[5690,14538,9842,1105],"delegation":[4690,13538,8842,105],"delegatorTokens":9999999938380}},{"ix":121,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":13,"t":78,"consumerPower":[null,10679,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":122,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":123,"action":{"kind":"Deliver","chain":"provider","numPackets":1},"partialState":{"h":12,"t":72,"tokens":[5690,14538,9842,1105],"delegation":[4690,13538,8842,105],"delegatorTokens":9999999938380,"jailed":[1000000000000005,null,1000000000000005,1000000000000011],"status":["unbonding","bonded","unbonding","unbonding"]}},{"ix":124,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":14,"t":84,"consumerPower":[null,10679,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":125,"action":{"kind":"Delegate","val":1,"amt":3925},"partialState":{"h":12,"t":72,"tokens":[5690,18463,9842,1105],"delegation":[4690,17463,8842,105],"delegatorTokens":9999999934455}},{"ix":126,"action":{"kind":"Delegate","val":1,"amt":1862},"partialState":{"h":12,"t":72,"tokens":[5690,20325,9842,1105],"delegation":[4690,19325,8842,105],"delegatorTokens":9999999932593}},{"ix":127,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":128,"action":{"kind":"Undelegate","val":1,"amt":2409},"partialState":{"h":12,"t":72,"tokens":[5690,17916,9842,1105],"delegation":[4690,16916,8842,105],"delegatorTokens":9999999932593}},{"ix":129,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":15,"t":90,"consumerPower":[null,10679,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":130,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":131,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":13,"t":78,"tokens":[5690,17916,9842,1105],"delegation":[4690,16916,8842,105],"delegatorTokens":9999999932593,"jailed":[1000000000000005,null,1000000000000005,1000000000000011],"status":["unbonding","bonded","unbonding","unbonding"]}},{"ix":132,"action":{"kind":"Undelegate","val":0,"amt":4043},"partialState":{"h":13,"t":78,"tokens":[1647,17916,9842,1105],"delegation":[647,16916,8842,105],"delegatorTokens":9999999932593}},{"ix":133,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":134,"action":{"kind":"Deliver","chain":"provider","numPackets":5},"partialState":{"h":13,"t":78,"tokens":[1647,17916,9842,1105],"delegation":[647,16916,8842,105],"delegatorTokens":9999999932593,"jailed":[1000000000000005,null,1000000000000005,1000000000000011],"status":["unbonding","bonded","unbonding","unbonding"]}},{"ix":135,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":136,"action":{"kind":"Deliver","chain":"provider","numPackets":4},"partialState":{"h":13,"t":78,"tokens":[1647,17916,9842,1105],"delegation":[647,16916,8842,105],"delegatorTokens":9999999932593,"jailed":[1000000000000005,null,1000000000000005,1000000000000011],"status":["unbonding","bonded","unbonding","unbonding"]}},{"ix":137,"action":{"kind":"Undelegate","val":2,"amt":1532},"partialState":{"h":13,"t":78,"tokens":[1647,17916,8310,1105],"delegation":[647,16916,7310,105],"delegatorTokens":9999999932593}},{"ix":138,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":139,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":14,"t":84,"tokens":[1647,17916,8310,1105],"delegation":[647,16916,7310,105],"delegatorTokens":9999999932593,"jailed":[1000000000000005,null,1000000000000005,1000000000000011],"status":["unbonding","bonded","unbonding","unbonding"]}},{"ix":140,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":16,"t":96,"consumerPower":[null,10679,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":141,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":142,"action":{"kind":"Undelegate","val":0,"amt":2701},"partialState":{"h":14,"t":84,"tokens":[1647,17916,8310,1105],"delegation":[647,16916,7310,105],"delegatorTokens":9999999932593}},{"ix":143,"action":{"kind":"Delegate","val":2,"amt":3992},"partialState":{"h":14,"t":84,"tokens":[1647,17916,12302,1105],"delegation":[647,16916,11302,105],"delegatorTokens":9999999928601}},{"ix":144,"action":{"kind":"Deliver","chain":"consumer","numPackets":3},"partialState":{"h":16,"t":96,"consumerPower":[null,10679,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":145,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":15,"t":90,"tokens":[1647,17916,12302,1105],"delegation":[647,16916,11302,105],"delegatorTokens":9999999928601,"jailed":[1000000000000005,null,1000000000000005,1000000000000011],"status":["unbonding","bonded","unbonding","unbonding"]}},{"ix":146,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":147,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":17,"t":102,"consumerPower":[null,14538,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":148,"action":{"kind":"Undelegate","val":0,"amt":2804},"partialState":{"h":15,"t":90,"tokens":[1647,17916,12302,1105],"delegation":[647,16916,11302,105],"delegatorTokens":9999999928601}},{"ix":149,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":150,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":151,"action":{"kind":"Deliver","chain":"provider","numPackets":5},"partialState":{"h":15,"t":90,"tokens":[1647,17916,12302,1105],"delegation":[647,16916,11302,105],"delegatorTokens":9999999928601,"jailed":[1000000000000005,null,1000000000000005,1000000000000011],"status":["unbonding","bonded","unbonding","unbonding"]}},{"ix":152,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":18,"t":108,"consumerPower":[null,14538,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":153,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":154,"action":{"kind":"Undelegate","val":0,"amt":4766},"partialState":{"h":15,"t":90,"tokens":[1647,17916,12302,1105],"delegation":[647,16916,11302,105],"delegatorTokens":9999999928601}},{"ix":155,"action":{"kind":"Deliver","chain":"consumer","numPackets":1},"partialState":{"h":18,"t":108,"consumerPower":[null,14538,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":156,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":157,"action":{"kind":"Delegate","val":0,"amt":3036},"partialState":{"h":15,"t":90,"tokens":[4683,17916,12302,1105],"delegation":[3683,16916,11302,105],"delegatorTokens":9999999925565}},{"ix":158,"action":{"kind":"Deliver","chain":"provider","numPackets":6},"partialState":{"h":15,"t":90,"tokens":[4683,17916,12302,1105],"delegation":[3683,16916,11302,105],"delegatorTokens":9999999925565,"jailed":[1000000000000005,null,1000000000000005,1000000000000011],"status":["unbonding","bonded","unbonding","unbonding"]}},{"ix":159,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":19,"t":114,"consumerPower":[null,17916,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":160,"action":{"kind":"Undelegate","val":1,"amt":3192},"partialState":{"h":15,"t":90,"tokens":[4683,14724,12302,1105],"delegation":[3683,13724,11302,105],"delegatorTokens":9999999925565}},{"ix":161,"action":{"kind":"Undelegate","val":1,"amt":4280},"partialState":{"h":15,"t":90,"tokens":[4683,10444,12302,1105],"delegation":[3683,9444,11302,105],"delegatorTokens":9999999925565}},{"ix":162,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":20,"t":120,"consumerPower":[null,17916,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":163,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":21,"t":126,"consumerPower":[null,17916,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":164,"action":{"kind":"Deliver","chain":"consumer","numPackets":3},"partialState":{"h":21,"t":126,"consumerPower":[null,17916,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":165,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":166,"action":{"kind":"Delegate","val":2,"amt":3882},"partialState":{"h":15,"t":90,"tokens":[4683,10444,16184,1105],"delegation":[3683,9444,15184,105],"delegatorTokens":9999999921683}},{"ix":167,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":16,"t":96,"tokens":[4683,10444,16184,1105],"delegation":[3683,9444,15184,105],"delegatorTokens":9999999921683,"jailed":[1000000000000005,null,1000000000000005,1000000000000011],"status":["unbonding","bonded","unbonding","unbonding"]}},{"ix":168,"action":{"kind":"Delegate","val":0,"amt":3200},"partialState":{"h":16,"t":96,"tokens":[7883,10444,16184,1105],"delegation":[6883,9444,15184,105],"delegatorTokens":9999999918483}},{"ix":169,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":170,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":22,"t":132,"consumerPower":[null,17916,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":171,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":17,"t":102,"tokens":[7883,10444,16184,1105],"delegation":[6883,9444,15184,105],"delegatorTokens":9999999918483,"jailed":[1000000000000005,null,1000000000000005,1000000000000011],"status":["unbonding","bonded","unbonding","unbonding"]}},{"ix":172,"action":{"kind":"Delegate","val":2,"amt":1847},"partialState":{"h":17,"t":102,"tokens":[7883,10444,18031,1105],"delegation":[6883,9444,17031,105],"delegatorTokens":9999999916636}},{"ix":173,"action":{"kind":"Deliver","chain":"consumer","numPackets":4},"partialState":{"h":22,"t":132,"consumerPower":[null,17916,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":174,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":18,"t":108,"tokens":[7883,10444,18031,1105],"delegation":[6883,9444,17031,105],"delegatorTokens":9999999916636,"jailed":[1000000000000005,null,1000000000000005,1000000000000011],"status":["unbonding","bonded","unbonding","unbonding"]}},{"ix":175,"action":{"kind":"Deliver","chain":"provider","numPackets":4},"partialState":{"h":18,"t":108,"tokens":[7883,10444,18031,1105],"delegation":[6883,9444,17031,105],"delegatorTokens":9999999916636,"jailed":[1000000000000005,null,1000000000000005,1000000000000011],"status":["unbonding","bonded","unbonding","unbonding"]}},{"ix":176,"action":{"kind":"Delegate","val":2,"amt":1906},"partialState":{"h":18,"t":108,"tokens":[7883,10444,19937,1105],"delegation":[6883,9444,18937,105],"delegatorTokens":9999999914730}},{"ix":177,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":23,"t":138,"consumerPower":[null,10444,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":178,"action":{"kind":"Deliver","chain":"provider","numPackets":2},"partialState":{"h":18,"t":108,"tokens":[7883,10444,19937,1105],"delegation":[6883,9444,18937,105],"delegatorTokens":9999999914730,"jailed":[1000000000000005,null,1000000000000005,1000000000000011],"status":["unbonding","bonded","unbonding","unbonding"]}},{"ix":179,"action":{"kind":"Undelegate","val":2,"amt":2626},"partialState":{"h":18,"t":108,"tokens":[7883,10444,17311,1105],"delegation":[6883,9444,16311,105],"delegatorTokens":9999999914730}},{"ix":180,"action":{"kind":"Undelegate","val":2,"amt":2545},"partialState":{"h":18,"t":108,"tokens":[7883,10444,14766,1105],"delegation":[6883,9444,13766,105],"delegatorTokens":9999999914730}},{"ix":181,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":19,"t":114,"tokens":[7883,10444,14766,1105],"delegation":[6883,9444,13766,105],"delegatorTokens":9999999944509,"jailed":[1000000000000005,null,1000000000000005,1000000000000011],"status":["unbonding","bonded","unbonding","unbonding"]}},{"ix":182,"action":{"kind":"Undelegate","val":2,"amt":2622},"partialState":{"h":19,"t":114,"tokens":[7883,10444,12144,1105],"delegation":[6883,9444,11144,105],"delegatorTokens":9999999944509}},{"ix":183,"action":{"kind":"Deliver","chain":"consumer","numPackets":5},"partialState":{"h":23,"t":138,"consumerPower":[null,10444,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":184,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":20,"t":120,"tokens":[7883,10444,12144,1105],"delegation":[6883,9444,11144,105],"delegatorTokens":9999999944509,"jailed":[1000000000000005,null,1000000000000005,1000000000000011],"status":["unbonded","bonded","unbonded","unbonded"]}},{"ix":185,"action":{"kind":"Deliver","chain":"consumer","numPackets":2},"partialState":{"h":23,"t":138,"consumerPower":[null,10444,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":186,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":187,"action":{"kind":"Undelegate","val":2,"amt":3921},"partialState":{"h":20,"t":120,"tokens":[7883,10444,8223,1105],"delegation":[6883,9444,7223,105],"delegatorTokens":9999999944509}},{"ix":188,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":189,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":190,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":21,"t":126,"tokens":[7883,10444,8223,1105],"delegation":[6883,9444,7223,105],"delegatorTokens":9999999944509,"jailed":[1000000000000005,null,1000000000000005,1000000000000011],"status":["unbonded","bonded","unbonded","unbonded"]}},{"ix":191,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":24,"t":144,"consumerPower":[null,10444,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":192,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":25,"t":150,"consumerPower":[null,10444,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":193,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":26,"t":156,"consumerPower":[null,10444,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":194,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":195,"action":{"kind":"Deliver","chain":"provider","numPackets":3},"partialState":{"h":21,"t":126,"tokens":[7883,10444,8223,1105],"delegation":[6883,9444,7223,105],"delegatorTokens":9999999944509,"jailed":[1000000000000005,null,1000000000000005,1000000000000011],"status":["unbonded","bonded","unbonded","unbonded"]}},{"ix":196,"action":{"kind":"Undelegate","val":2,"amt":1454},"partialState":{"h":21,"t":126,"tokens":[7883,10444,6769,1105],"delegation":[6883,9444,5769,105],"delegatorTokens":9999999944509}},{"ix":197,"action":{"kind":"Deliver","chain":"provider","numPackets":4},"partialState":{"h":21,"t":126,"tokens":[7883,10444,6769,1105],"delegation":[6883,9444,5769,105],"delegatorTokens":9999999944509,"jailed":[1000000000000005,null,1000000000000005,1000000000000011],"status":["unbonded","bonded","unbonded","unbonded"]}},{"ix":198,"action":{"kind":"Delegate","val":1,"amt":2614},"partialState":{"h":21,"t":126,"tokens":[7883,13058,6769,1105],"delegation":[6883,12058,5769,105],"delegatorTokens":9999999941895}},{"ix":199,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}}],"events":["send_downtime_slash_request","downtime_slash_request_outstanding","send_downtime_slash_request","downtime_slash_request_outstanding","downtime_slash_request_outstanding","insufficient_shares","insufficient_shares","insufficient_shares","send_downtime_slash_request","insufficient_shares","more_than_one_third_val_power_change","receive_downtime_slash_request","jail","receive_downtime_slash_request","jail","send_vsc_with_downtime_ack","insufficient_shares","insufficient_shares","insufficient_shares","insufficient_shares","more_than_one_third_val_power_change","rebond_unval","receive_downtime_slash_request","jail","send_vsc_with_downtime_ack","send_vsc_without_downtime_ack","insufficient_shares","receive_downtime_slash_ack","receive_downtime_slash_ack","receive_downtime_slash_ack","send_vsc_without_downtime_ack","consumer_del_val","consumer_update_val","consumer_del_val","consumer_del_val","insufficient_shares","send_vsc_without_downtime_ack","send_vsc_without_downtime_ack","send_vsc_not_because_change","send_vsc_without_downtime_ack","insufficient_shares","send_vsc_not_because_change","send_vsc_without_downtime_ack","send_vsc_without_downtime_ack","consumer_update_val","send_vsc_without_downtime_ack","send_vsc_without_downtime_ack","some_undels_expired_but_not_completed","send_vsc_not_because_change","send_vsc_without_downtime_ack","insufficient_shares","some_undels_expired_but_not_completed","consumer_update_val","insufficient_shares","consumer_send_maturation","consumer_send_maturation","consumer_send_maturation","insufficient_shares","consumer_update_val","consumer_send_maturation","consumer_send_maturation","consumer_send_maturation","consumer_send_maturation","send_vsc_without_downtime_ack","consumer_update_val","some_undels_expired_but_not_completed","complete_undel_immediate","complete_undel_immediate","complete_undel_immediate","complete_undel_immediate","complete_undel_immediate","complete_undel_immediate","complete_undel_immediate","complete_undel_immediate","set_unval_hold_false","set_unval_hold_false","set_unval_hold_false","complete_undel_immediate","send_vsc_not_because_change","send_vsc_without_downtime_ack","complete_unval_in_endblock","complete_unval_in_endblock","complete_unval_in_endblock","send_vsc_not_because_change","send_vsc_without_downtime_ack","some_undels_expired_but_not_completed","send_vsc_not_because_change","send_vsc_without_downtime_ack","consumer_send_maturation","consumer_send_maturation","consumer_send_maturation"]},{"meta":{"commit":"7ffd0c04e4205cbc9caf212abfe6c59ee43153bf"},"constants":{"P":"provider","C":"consumer","UNBONDING_SECONDS_P":70,"UNBONDING_SECONDS_C":50,"TRUSTING_SECONDS":49,"NUM_VALIDATORS":4,"MAX_VALIDATORS":2,"SLASH_DOUBLESIGN":0,"SLASH_DOWNTIME":0,"JAIL_SECONDS":999999999999999,"BLOCK_SECONDS":6,"INITIAL_DELEGATOR_TOKENS":10000000000000,"DELEGATE_AMT_MIN":1000,"DELEGATE_AMT_MAX":5000,"UNDELEGATE_AMT_MIN":1000,"UNDELEGATE_AMT_MAX":5000,"ISDOWNTIME_PROBABILITY":0.5,"MAX_NUM_PACKETS_FOR_DELIVER":6},"actions":[{"ix":0,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":1,"action":{"kind":"Deliver","chain":"consumer","numPackets":6},"partialState":{"h":1,"t":6,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":2,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":3,"action":{"kind":"Undelegate","val":2,"amt":3642},"partialState":{"h":1,"t":6,"tokens":[5000,4000,3000,2000],"delegation":[4000,3000,2000,1000],"delegatorTokens":10000000000000}},{"ix":4,"action":{"kind":"Undelegate","val":1,"amt":3301},"partialState":{"h":1,"t":6,"tokens":[5000,4000,3000,2000],"delegation":[4000,3000,2000,1000],"delegatorTokens":10000000000000}},{"ix":5,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":2,"t":12,"tokens":[5000,4000,3000,2000],"delegation":[4000,3000,2000,1000],"delegatorTokens":10000000000000,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":6,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":2,"t":12,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":7,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":3,"t":18,"tokens":[5000,4000,3000,2000],"delegation":[4000,3000,2000,1000],"delegatorTokens":10000000000000,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":8,"action":{"kind":"ConsumerSlash","val":1,"infractionHeight":0,"isDowntime":true},"partialState":{"h":2,"t":12,"outstandingDowntime":[false,true,false,false]}},{"ix":9,"action":{"kind":"Deliver","chain":"provider","numPackets":4},"partialState":{"h":3,"t":18,"tokens":[5000,4000,3000,2000],"delegation":[4000,3000,2000,1000],"delegatorTokens":10000000000000,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":10,"action":{"kind":"ConsumerSlash","val":3,"infractionHeight":0,"isDowntime":true},"partialState":{"h":2,"t":12,"outstandingDowntime":[false,true,false,true]}},{"ix":11,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":12,"action":{"kind":"Undelegate","val":2,"amt":1207},"partialState":{"h":3,"t":18,"tokens":[5000,4000,1793,2000],"delegation":[4000,3000,793,1000],"delegatorTokens":10000000000000}},{"ix":13,"action":{"kind":"ConsumerSlash","val":1,"infractionHeight":0,"isDowntime":false},"partialState":{"h":2,"t":12,"outstandingDowntime":[false,true,false,true]}},{"ix":14,"action":{"kind":"Deliver","chain":"provider","numPackets":2},"partialState":{"h":3,"t":18,"tokens":[5000,4000,1793,2000],"delegation":[4000,3000,793,1000],"delegatorTokens":10000000000000,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":15,"action":{"kind":"Delegate","val":0,"amt":4678},"partialState":{"h":3,"t":18,"tokens":[9678,4000,1793,2000],"delegation":[8678,3000,793,1000],"delegatorTokens":9999999995322}},{"ix":16,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":4,"t":24,"tokens":[9678,4000,1793,2000],"delegation":[8678,3000,793,1000],"delegatorTokens":9999999995322,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":17,"action":{"kind":"Deliver","chain":"consumer","numPackets":4},"partialState":{"h":2,"t":12,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,true,false,true]}},{"ix":18,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":3,"t":18,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,true,false,true]}},{"ix":19,"action":{"kind":"ConsumerSlash","val":1,"infractionHeight":0,"isDowntime":false},"partialState":{"h":3,"t":18,"outstandingDowntime":[false,true,false,true]}},{"ix":20,"action":{"kind":"Delegate","val":3,"amt":4971},"partialState":{"h":4,"t":24,"tokens":[9678,4000,1793,6971],"delegation":[8678,3000,793,5971],"delegatorTokens":9999999990351}},{"ix":21,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":22,"action":{"kind":"Deliver","chain":"consumer","numPackets":1},"partialState":{"h":3,"t":18,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,true,false,true]}},{"ix":23,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":24,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":4,"t":24,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,true,false,true]}},{"ix":25,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":5,"t":30,"tokens":[9678,4000,1793,6971],"delegation":[8678,3000,793,5971],"delegatorTokens":9999999990351,"jailed":[null,null,null,null],"status":["bonded","unbonding","unbonded","bonded"]}},{"ix":26,"action":{"kind":"Undelegate","val":0,"amt":1619},"partialState":{"h":5,"t":30,"tokens":[8059,4000,1793,6971],"delegation":[7059,3000,793,5971],"delegatorTokens":9999999990351}},{"ix":27,"action":{"kind":"ConsumerSlash","val":1,"infractionHeight":3,"isDowntime":true},"partialState":{"h":4,"t":24,"outstandingDowntime":[false,true,false,true]}},{"ix":28,"action":{"kind":"Undelegate","val":3,"amt":3773},"partialState":{"h":5,"t":30,"tokens":[8059,4000,1793,3198],"delegation":[7059,3000,793,2198],"delegatorTokens":9999999990351}},{"ix":29,"action":{"kind":"Undelegate","val":1,"amt":1476},"partialState":{"h":5,"t":30,"tokens":[8059,2524,1793,3198],"delegation":[7059,1524,793,2198],"delegatorTokens":9999999990351}},{"ix":30,"action":{"kind":"ConsumerSlash","val":3,"infractionHeight":1,"isDowntime":false},"partialState":{"h":4,"t":24,"outstandingDowntime":[false,true,false,true]}},{"ix":31,"action":{"kind":"Delegate","val":0,"amt":1102},"partialState":{"h":5,"t":30,"tokens":[9161,2524,1793,3198],"delegation":[8161,1524,793,2198],"delegatorTokens":9999999989249}},{"ix":32,"action":{"kind":"ConsumerSlash","val":1,"infractionHeight":0,"isDowntime":true},"partialState":{"h":4,"t":24,"outstandingDowntime":[false,true,false,true]}},{"ix":33,"action":{"kind":"ConsumerSlash","val":3,"infractionHeight":1,"isDowntime":true},"partialState":{"h":4,"t":24,"outstandingDowntime":[false,true,false,true]}},{"ix":34,"action":{"kind":"ConsumerSlash","val":3,"infractionHeight":0,"isDowntime":false},"partialState":{"h":4,"t":24,"outstandingDowntime":[false,true,false,true]}},{"ix":35,"action":{"kind":"Undelegate","val":2,"amt":1969},"partialState":{"h":5,"t":30,"tokens":[9161,2524,1793,3198],"delegation":[8161,1524,793,2198],"delegatorTokens":9999999989249}},{"ix":36,"action":{"kind":"Undelegate","val":1,"amt":2938},"partialState":{"h":5,"t":30,"tokens":[9161,2524,1793,3198],"delegation":[8161,1524,793,2198],"delegatorTokens":9999999989249}},{"ix":37,"action":{"kind":"Undelegate","val":2,"amt":4300},"partialState":{"h":5,"t":30,"tokens":[9161,2524,1793,3198],"delegation":[8161,1524,793,2198],"delegatorTokens":9999999989249}},{"ix":38,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":6,"t":36,"tokens":[9161,2524,1793,3198],"delegation":[8161,1524,793,2198],"delegatorTokens":9999999989249,"jailed":[null,null,null,null],"status":["bonded","unbonding","unbonded","bonded"]}},{"ix":39,"action":{"kind":"ConsumerSlash","val":1,"infractionHeight":1,"isDowntime":true},"partialState":{"h":4,"t":24,"outstandingDowntime":[false,true,false,true]}},{"ix":40,"action":{"kind":"Deliver","chain":"provider","numPackets":5},"partialState":{"h":6,"t":36,"tokens":[9161,2524,1793,3198],"delegation":[8161,1524,793,2198],"delegatorTokens":9999999989249,"jailed":[null,null,null,null],"status":["bonded","unbonding","unbonded","bonded"]}},{"ix":41,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":7,"t":42,"tokens":[9161,2524,1793,3198],"delegation":[8161,1524,793,2198],"delegatorTokens":9999999989249,"jailed":[null,1000000000000035,null,1000000000000035],"status":["bonded","unbonding","unbonded","bonded"]}},{"ix":42,"action":{"kind":"ConsumerSlash","val":0,"infractionHeight":0,"isDowntime":true},"partialState":{"h":4,"t":24,"outstandingDowntime":[true,true,false,true]}},{"ix":43,"action":{"kind":"Deliver","chain":"provider","numPackets":6},"partialState":{"h":7,"t":42,"tokens":[9161,2524,1793,3198],"delegation":[8161,1524,793,2198],"delegatorTokens":9999999989249,"jailed":[null,1000000000000035,null,1000000000000035],"status":["bonded","unbonding","unbonded","bonded"]}},{"ix":44,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":45,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":46,"action":{"kind":"Deliver","chain":"consumer","numPackets":2},"partialState":{"h":4,"t":24,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[true,true,false,true]}},{"ix":47,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":5,"t":30,"consumerPower":[9678,null,null,6971],"outstandingDowntime":[true,true,false,true]}},{"ix":48,"action":{"kind":"Undelegate","val":2,"amt":1472},"partialState":{"h":7,"t":42,"tokens":[9161,2524,1793,3198],"delegation":[8161,1524,793,2198],"delegatorTokens":9999999989249}},{"ix":49,"action":{"kind":"Deliver","chain":"provider","numPackets":2},"partialState":{"h":7,"t":42,"tokens":[9161,2524,1793,3198],"delegation":[8161,1524,793,2198],"delegatorTokens":9999999989249,"jailed":[null,1000000000000035,null,1000000000000035],"status":["bonded","unbonding","unbonded","bonded"]}},{"ix":50,"action":{"kind":"Deliver","chain":"consumer","numPackets":4},"partialState":{"h":5,"t":30,"consumerPower":[9678,null,null,6971],"outstandingDowntime":[true,true,false,true]}},{"ix":51,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":52,"action":{"kind":"Deliver","chain":"provider","numPackets":3},"partialState":{"h":7,"t":42,"tokens":[9161,2524,1793,3198],"delegation":[8161,1524,793,2198],"delegatorTokens":9999999989249,"jailed":[null,1000000000000035,null,1000000000000035],"status":["bonded","unbonding","unbonded","bonded"]}},{"ix":53,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":8,"t":48,"tokens":[9161,2524,1793,3198],"delegation":[8161,1524,793,2198],"delegatorTokens":9999999989249,"jailed":[null,1000000000000035,null,1000000000000035],"status":["bonded","unbonding","bonded","unbonding"]}},{"ix":54,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":55,"action":{"kind":"Undelegate","val":1,"amt":3687},"partialState":{"h":8,"t":48,"tokens":[9161,2524,1793,3198],"delegation":[8161,1524,793,2198],"delegatorTokens":9999999989249}},{"ix":56,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":57,"action":{"kind":"Undelegate","val":3,"amt":2431},"partialState":{"h":8,"t":48,"tokens":[9161,2524,1793,3198],"delegation":[8161,1524,793,2198],"delegatorTokens":9999999989249}},{"ix":58,"action":{"kind":"Deliver","chain":"consumer","numPackets":4},"partialState":{"h":5,"t":30,"consumerPower":[9678,null,null,6971],"outstandingDowntime":[true,true,false,true]}},{"ix":59,"action":{"kind":"Undelegate","val":3,"amt":3274},"partialState":{"h":8,"t":48,"tokens":[9161,2524,1793,3198],"delegation":[8161,1524,793,2198],"delegatorTokens":9999999989249}},{"ix":60,"action":{"kind":"Undelegate","val":3,"amt":4072},"partialState":{"h":8,"t":48,"tokens":[9161,2524,1793,3198],"delegation":[8161,1524,793,2198],"delegatorTokens":9999999989249}},{"ix":61,"action":{"kind":"Delegate","val":0,"amt":4570},"partialState":{"h":8,"t":48,"tokens":[13731,2524,1793,3198],"delegation":[12731,1524,793,2198],"delegatorTokens":9999999984679}},{"ix":62,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":63,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":6,"t":36,"consumerPower":[9161,null,null,3198],"outstandingDowntime":[true,true,false,true]}},{"ix":64,"action":{"kind":"Undelegate","val":3,"amt":4863},"partialState":{"h":8,"t":48,"tokens":[13731,2524,1793,3198],"delegation":[12731,1524,793,2198],"delegatorTokens":9999999984679}},{"ix":65,"action":{"kind":"Undelegate","val":2,"amt":1952},"partialState":{"h":8,"t":48,"tokens":[13731,2524,1793,3198],"delegation":[12731,1524,793,2198],"delegatorTokens":9999999984679}},{"ix":66,"action":{"kind":"Deliver","chain":"provider","numPackets":2},"partialState":{"h":8,"t":48,"tokens":[13731,2524,1793,3198],"delegation":[12731,1524,793,2198],"delegatorTokens":9999999984679,"jailed":[null,1000000000000035,null,1000000000000035],"status":["bonded","unbonding","bonded","unbonding"]}},{"ix":67,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":9,"t":54,"tokens":[13731,2524,1793,3198],"delegation":[12731,1524,793,2198],"delegatorTokens":9999999984679,"jailed":[null,1000000000000035,null,1000000000000035],"status":["bonded","unbonding","bonded","unbonding"]}},{"ix":68,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":69,"action":{"kind":"Delegate","val":1,"amt":1303},"partialState":{"h":9,"t":54,"tokens":[13731,3827,1793,3198],"delegation":[12731,2827,793,2198],"delegatorTokens":9999999983376}},{"ix":70,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":71,"action":{"kind":"Deliver","chain":"consumer","numPackets":6},"partialState":{"h":6,"t":36,"consumerPower":[9161,null,null,3198],"outstandingDowntime":[true,false,false,false]}},{"ix":72,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":73,"action":{"kind":"Delegate","val":3,"amt":3656},"partialState":{"h":9,"t":54,"tokens":[13731,3827,1793,6854],"delegation":[12731,2827,793,5854],"delegatorTokens":9999999979720}},{"ix":74,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":75,"action":{"kind":"Deliver","chain":"consumer","numPackets":1},"partialState":{"h":6,"t":36,"consumerPower":[9161,null,null,3198],"outstandingDowntime":[true,false,false,false]}},{"ix":76,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":77,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":78,"action":{"kind":"Delegate","val":0,"amt":1593},"partialState":{"h":9,"t":54,"tokens":[15324,3827,1793,6854],"delegation":[14324,2827,793,5854],"delegatorTokens":9999999978127}},{"ix":79,"action":{"kind":"Delegate","val":3,"amt":4698},"partialState":{"h":9,"t":54,"tokens":[15324,3827,1793,11552],"delegation":[14324,2827,793,10552],"delegatorTokens":9999999973429}},{"ix":80,"action":{"kind":"Deliver","chain":"provider","numPackets":4},"partialState":{"h":9,"t":54,"tokens":[15324,3827,1793,11552],"delegation":[14324,2827,793,10552],"delegatorTokens":9999999973429,"jailed":[null,1000000000000035,null,1000000000000035],"status":["bonded","unbonding","bonded","unbonding"]}},{"ix":81,"action":{"kind":"Deliver","chain":"provider","numPackets":1},"partialState":{"h":9,"t":54,"tokens":[15324,3827,1793,11552],"delegation":[14324,2827,793,10552],"delegatorTokens":9999999973429,"jailed":[null,1000000000000035,null,1000000000000035],"status":["bonded","unbonding","bonded","unbonding"]}},{"ix":82,"action":{"kind":"Delegate","val":2,"amt":1001},"partialState":{"h":9,"t":54,"tokens":[15324,3827,2794,11552],"delegation":[14324,2827,1794,10552],"delegatorTokens":9999999972428}},{"ix":83,"action":{"kind":"Delegate","val":1,"amt":2731},"partialState":{"h":9,"t":54,"tokens":[15324,6558,2794,11552],"delegation":[14324,5558,1794,10552],"delegatorTokens":9999999969697}},{"ix":84,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":10,"t":60,"tokens":[15324,6558,2794,11552],"delegation":[14324,5558,1794,10552],"delegatorTokens":9999999969697,"jailed":[1000000000000053,1000000000000035,null,1000000000000035],"status":["bonded","unbonding","bonded","unbonding"]}},{"ix":85,"action":{"kind":"Deliver","chain":"provider","numPackets":5},"partialState":{"h":10,"t":60,"tokens":[15324,6558,2794,11552],"delegation":[14324,5558,1794,10552],"delegatorTokens":9999999969697,"jailed":[1000000000000053,1000000000000035,null,1000000000000035],"status":["bonded","unbonding","bonded","unbonding"]}},{"ix":86,"action":{"kind":"Deliver","chain":"consumer","numPackets":1},"partialState":{"h":6,"t":36,"consumerPower":[9161,null,null,3198],"outstandingDowntime":[true,false,false,false]}},{"ix":87,"action":{"kind":"Deliver","chain":"consumer","numPackets":1},"partialState":{"h":6,"t":36,"consumerPower":[9161,null,null,3198],"outstandingDowntime":[true,false,false,false]}},{"ix":88,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":89,"action":{"kind":"Undelegate","val":0,"amt":2535},"partialState":{"h":10,"t":60,"tokens":[12789,6558,2794,11552],"delegation":[11789,5558,1794,10552],"delegatorTokens":9999999969697}},{"ix":90,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":11,"t":66,"tokens":[12789,6558,2794,11552],"delegation":[11789,5558,1794,10552],"delegatorTokens":9999999969697,"jailed":[1000000000000053,1000000000000035,null,1000000000000035],"status":["unbonding","unbonding","bonded","unbonding"]}},{"ix":91,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":12,"t":72,"tokens":[12789,6558,2794,11552],"delegation":[11789,5558,1794,10552],"delegatorTokens":9999999969697,"jailed":[1000000000000053,1000000000000035,null,1000000000000035],"status":["unbonding","unbonding","bonded","unbonding"]}},{"ix":92,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":93,"action":{"kind":"Delegate","val":3,"amt":4455},"partialState":{"h":12,"t":72,"tokens":[12789,6558,2794,16007],"delegation":[11789,5558,1794,15007],"delegatorTokens":9999999965242}},{"ix":94,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":95,"action":{"kind":"Deliver","chain":"consumer","numPackets":3},"partialState":{"h":6,"t":36,"consumerPower":[9161,null,null,3198],"outstandingDowntime":[false,false,false,false]}},{"ix":96,"action":{"kind":"Delegate","val":0,"amt":1797},"partialState":{"h":12,"t":72,"tokens":[14586,6558,2794,16007],"delegation":[13586,5558,1794,15007],"delegatorTokens":9999999963445}},{"ix":97,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":98,"action":{"kind":"Undelegate","val":0,"amt":4596},"partialState":{"h":12,"t":72,"tokens":[9990,6558,2794,16007],"delegation":[8990,5558,1794,15007],"delegatorTokens":9999999963445}},{"ix":99,"action":{"kind":"Delegate","val":0,"amt":2845},"partialState":{"h":12,"t":72,"tokens":[12835,6558,2794,16007],"delegation":[11835,5558,1794,15007],"delegatorTokens":9999999960600}},{"ix":100,"action":{"kind":"Undelegate","val":1,"amt":4212},"partialState":{"h":12,"t":72,"tokens":[12835,2346,2794,16007],"delegation":[11835,1346,1794,15007],"delegatorTokens":9999999960600}},{"ix":101,"action":{"kind":"Deliver","chain":"provider","numPackets":4},"partialState":{"h":12,"t":72,"tokens":[12835,2346,2794,16007],"delegation":[11835,1346,1794,15007],"delegatorTokens":9999999960600,"jailed":[1000000000000053,1000000000000035,null,1000000000000035],"status":["unbonding","unbonding","bonded","unbonding"]}},{"ix":102,"action":{"kind":"Undelegate","val":1,"amt":3509},"partialState":{"h":12,"t":72,"tokens":[12835,2346,2794,16007],"delegation":[11835,1346,1794,15007],"delegatorTokens":9999999960600}},{"ix":103,"action":{"kind":"Undelegate","val":3,"amt":3254},"partialState":{"h":12,"t":72,"tokens":[12835,2346,2794,12753],"delegation":[11835,1346,1794,11753],"delegatorTokens":9999999960600}},{"ix":104,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":105,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":106,"action":{"kind":"Undelegate","val":1,"amt":3583},"partialState":{"h":12,"t":72,"tokens":[12835,2346,2794,12753],"delegation":[11835,1346,1794,11753],"delegatorTokens":9999999960600}},{"ix":107,"action":{"kind":"Deliver","chain":"provider","numPackets":1},"partialState":{"h":12,"t":72,"tokens":[12835,2346,2794,12753],"delegation":[11835,1346,1794,11753],"delegatorTokens":9999999960600,"jailed":[1000000000000053,1000000000000035,null,1000000000000035],"status":["unbonding","unbonding","bonded","unbonding"]}},{"ix":108,"action":{"kind":"Deliver","chain":"provider","numPackets":4},"partialState":{"h":12,"t":72,"tokens":[12835,2346,2794,12753],"delegation":[11835,1346,1794,11753],"delegatorTokens":9999999960600,"jailed":[1000000000000053,1000000000000035,null,1000000000000035],"status":["unbonding","unbonding","bonded","unbonding"]}},{"ix":109,"action":{"kind":"Delegate","val":2,"amt":2796},"partialState":{"h":12,"t":72,"tokens":[12835,2346,5590,12753],"delegation":[11835,1346,4590,11753],"delegatorTokens":9999999957804}},{"ix":110,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":13,"t":78,"tokens":[12835,2346,5590,12753],"delegation":[11835,1346,4590,11753],"delegatorTokens":9999999957804,"jailed":[1000000000000053,1000000000000035,null,1000000000000035],"status":["unbonding","unbonding","bonded","unbonding"]}},{"ix":111,"action":{"kind":"Deliver","chain":"consumer","numPackets":1},"partialState":{"h":6,"t":36,"consumerPower":[9161,null,null,3198],"outstandingDowntime":[false,false,false,false]}},{"ix":112,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":7,"t":42,"consumerPower":[null,null,2794,null],"outstandingDowntime":[false,false,false,false]}},{"ix":113,"action":{"kind":"Delegate","val":0,"amt":3931},"partialState":{"h":13,"t":78,"tokens":[16766,2346,5590,12753],"delegation":[15766,1346,4590,11753],"delegatorTokens":9999999953873}},{"ix":114,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":115,"action":{"kind":"Deliver","chain":"provider","numPackets":4},"partialState":{"h":13,"t":78,"tokens":[16766,2346,5590,12753],"delegation":[15766,1346,4590,11753],"delegatorTokens":9999999953873,"jailed":[1000000000000053,1000000000000035,null,1000000000000035],"status":["unbonding","unbonding","bonded","unbonding"]}},{"ix":116,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":117,"action":{"kind":"Undelegate","val":2,"amt":2473},"partialState":{"h":13,"t":78,"tokens":[16766,2346,3117,12753],"delegation":[15766,1346,2117,11753],"delegatorTokens":9999999953873}},{"ix":118,"action":{"kind":"Deliver","chain":"consumer","numPackets":6},"partialState":{"h":7,"t":42,"consumerPower":[null,null,2794,null],"outstandingDowntime":[false,false,false,false]}},{"ix":119,"action":{"kind":"Delegate","val":0,"amt":3767},"partialState":{"h":13,"t":78,"tokens":[20533,2346,3117,12753],"delegation":[19533,1346,2117,11753],"delegatorTokens":9999999950106}},{"ix":120,"action":{"kind":"Deliver","chain":"provider","numPackets":6},"partialState":{"h":13,"t":78,"tokens":[20533,2346,3117,12753],"delegation":[19533,1346,2117,11753],"delegatorTokens":9999999950106,"jailed":[1000000000000053,1000000000000035,null,1000000000000035],"status":["unbonding","unbonding","bonded","unbonding"]}},{"ix":121,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":8,"t":48,"consumerPower":[null,null,2794,null],"outstandingDowntime":[false,false,false,false]}},{"ix":122,"action":{"kind":"Deliver","chain":"provider","numPackets":1},"partialState":{"h":13,"t":78,"tokens":[20533,2346,3117,12753],"delegation":[19533,1346,2117,11753],"delegatorTokens":9999999950106,"jailed":[1000000000000053,1000000000000035,null,1000000000000035],"status":["unbonding","unbonding","bonded","unbonding"]}},{"ix":123,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":9,"t":54,"consumerPower":[null,null,2794,null],"outstandingDowntime":[false,false,false,false]}},{"ix":124,"action":{"kind":"Delegate","val":3,"amt":1355},"partialState":{"h":13,"t":78,"tokens":[20533,2346,3117,14108],"delegation":[19533,1346,2117,13108],"delegatorTokens":9999999948751}},{"ix":125,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":126,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":14,"t":84,"tokens":[20533,2346,3117,14108],"delegation":[19533,1346,2117,13108],"delegatorTokens":9999999948751,"jailed":[1000000000000053,1000000000000035,null,1000000000000035],"status":["unbonding","unbonding","bonded","unbonding"]}},{"ix":127,"action":{"kind":"Deliver","chain":"provider","numPackets":4},"partialState":{"h":14,"t":84,"tokens":[20533,2346,3117,14108],"delegation":[19533,1346,2117,13108],"delegatorTokens":9999999948751,"jailed":[1000000000000053,1000000000000035,null,1000000000000035],"status":["unbonding","unbonding","bonded","unbonding"]}},{"ix":128,"action":{"kind":"Undelegate","val":1,"amt":1573},"partialState":{"h":14,"t":84,"tokens":[20533,2346,3117,14108],"delegation":[19533,1346,2117,13108],"delegatorTokens":9999999948751}},{"ix":129,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":130,"action":{"kind":"Deliver","chain":"provider","numPackets":3},"partialState":{"h":14,"t":84,"tokens":[20533,2346,3117,14108],"delegation":[19533,1346,2117,13108],"delegatorTokens":9999999948751,"jailed":[1000000000000053,1000000000000035,null,1000000000000035],"status":["unbonding","unbonding","bonded","unbonding"]}},{"ix":131,"action":{"kind":"Undelegate","val":0,"amt":3194},"partialState":{"h":14,"t":84,"tokens":[17339,2346,3117,14108],"delegation":[16339,1346,2117,13108],"delegatorTokens":9999999948751}},{"ix":132,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":10,"t":60,"consumerPower":[null,null,2794,null],"outstandingDowntime":[false,false,false,false]}},{"ix":133,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":11,"t":66,"consumerPower":[null,null,2794,null],"outstandingDowntime":[false,false,false,false]}},{"ix":134,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":15,"t":90,"tokens":[17339,2346,3117,14108],"delegation":[16339,1346,2117,13108],"delegatorTokens":9999999948751,"jailed":[1000000000000053,1000000000000035,null,1000000000000035],"status":["unbonding","unbonding","bonded","unbonding"]}},{"ix":135,"action":{"kind":"Deliver","chain":"consumer","numPackets":5},"partialState":{"h":11,"t":66,"consumerPower":[null,null,2794,null],"outstandingDowntime":[false,false,false,false]}},{"ix":136,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":12,"t":72,"consumerPower":[null,null,3117,null],"outstandingDowntime":[false,false,false,false]}},{"ix":137,"action":{"kind":"Delegate","val":3,"amt":3764},"partialState":{"h":15,"t":90,"tokens":[17339,2346,3117,17872],"delegation":[16339,1346,2117,16872],"delegatorTokens":9999999944987}},{"ix":138,"action":{"kind":"Delegate","val":1,"amt":4200},"partialState":{"h":15,"t":90,"tokens":[17339,6546,3117,17872],"delegation":[16339,5546,2117,16872],"delegatorTokens":9999999940787}},{"ix":139,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":16,"t":96,"tokens":[17339,6546,3117,17872],"delegation":[16339,5546,2117,16872],"delegatorTokens":9999999940787,"jailed":[1000000000000053,1000000000000035,null,1000000000000035],"status":["unbonding","unbonding","bonded","unbonding"]}},{"ix":140,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":13,"t":78,"consumerPower":[null,null,3117,null],"outstandingDowntime":[false,false,false,false]}},{"ix":141,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":142,"action":{"kind":"Deliver","chain":"consumer","numPackets":4},"partialState":{"h":13,"t":78,"consumerPower":[null,null,3117,null],"outstandingDowntime":[false,false,false,false]}},{"ix":143,"action":{"kind":"Delegate","val":1,"amt":3853},"partialState":{"h":16,"t":96,"tokens":[17339,10399,3117,17872],"delegation":[16339,9399,2117,16872],"delegatorTokens":9999999936934}},{"ix":144,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":145,"action":{"kind":"Undelegate","val":2,"amt":3422},"partialState":{"h":16,"t":96,"tokens":[17339,10399,3117,17872],"delegation":[16339,9399,2117,16872],"delegatorTokens":9999999936934}},{"ix":146,"action":{"kind":"Deliver","chain":"provider","numPackets":5},"partialState":{"h":16,"t":96,"tokens":[17339,10399,3117,17872],"delegation":[16339,9399,2117,16872],"delegatorTokens":9999999936934,"jailed":[1000000000000053,1000000000000035,null,1000000000000035],"status":["unbonding","unbonding","bonded","unbonding"]}},{"ix":147,"action":{"kind":"Undelegate","val":1,"amt":3090},"partialState":{"h":16,"t":96,"tokens":[17339,7309,3117,17872],"delegation":[16339,6309,2117,16872],"delegatorTokens":9999999936934}},{"ix":148,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":14,"t":84,"consumerPower":[null,null,3117,null],"outstandingDowntime":[false,false,false,false]}},{"ix":149,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":15,"t":90,"consumerPower":[null,null,3117,null],"outstandingDowntime":[false,false,false,false]}},{"ix":150,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":151,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":152,"action":{"kind":"Undelegate","val":1,"amt":3061},"partialState":{"h":16,"t":96,"tokens":[17339,4248,3117,17872],"delegation":[16339,3248,2117,16872],"delegatorTokens":9999999936934}},{"ix":153,"action":{"kind":"Delegate","val":3,"amt":1631},"partialState":{"h":16,"t":96,"tokens":[17339,4248,3117,19503],"delegation":[16339,3248,2117,18503],"delegatorTokens":9999999935303}},{"ix":154,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":155,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":156,"action":{"kind":"Undelegate","val":2,"amt":3609},"partialState":{"h":16,"t":96,"tokens":[17339,4248,3117,19503],"delegation":[16339,3248,2117,18503],"delegatorTokens":9999999935303}},{"ix":157,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":16,"t":96,"consumerPower":[null,null,3117,null],"outstandingDowntime":[false,false,false,false]}},{"ix":158,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":159,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":160,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":161,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":17,"t":102,"tokens":[17339,4248,3117,19503],"delegation":[16339,3248,2117,18503],"delegatorTokens":9999999935303,"jailed":[1000000000000053,1000000000000035,null,1000000000000035],"status":["unbonding","unbonding","bonded","unbonding"]}},{"ix":162,"action":{"kind":"Deliver","chain":"provider","numPackets":4},"partialState":{"h":17,"t":102,"tokens":[17339,4248,3117,19503],"delegation":[16339,3248,2117,18503],"delegatorTokens":9999999935303,"jailed":[1000000000000053,1000000000000035,null,1000000000000035],"status":["unbonding","unbonding","bonded","unbonding"]}},{"ix":163,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":17,"t":102,"consumerPower":[null,null,3117,null],"outstandingDowntime":[false,false,false,false]}},{"ix":164,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":18,"t":108,"tokens":[17339,4248,3117,19503],"delegation":[16339,3248,2117,18503],"delegatorTokens":9999999943378,"jailed":[1000000000000053,1000000000000035,null,1000000000000035],"status":["unbonding","unbonding","bonded","unbonding"]}},{"ix":165,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":18,"t":108,"consumerPower":[null,null,3117,null],"outstandingDowntime":[false,false,false,false]}},{"ix":166,"action":{"kind":"Undelegate","val":1,"amt":4885},"partialState":{"h":18,"t":108,"tokens":[17339,4248,3117,19503],"delegation":[16339,3248,2117,18503],"delegatorTokens":9999999943378}},{"ix":167,"action":{"kind":"Delegate","val":0,"amt":3269},"partialState":{"h":18,"t":108,"tokens":[20608,4248,3117,19503],"delegation":[19608,3248,2117,18503],"delegatorTokens":9999999940109}},{"ix":168,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":19,"t":114,"consumerPower":[null,null,3117,null],"outstandingDowntime":[false,false,false,false]}},{"ix":169,"action":{"kind":"Delegate","val":3,"amt":1005},"partialState":{"h":18,"t":108,"tokens":[20608,4248,3117,20508],"delegation":[19608,3248,2117,19508],"delegatorTokens":9999999939104}},{"ix":170,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":171,"action":{"kind":"Delegate","val":3,"amt":2802},"partialState":{"h":18,"t":108,"tokens":[20608,4248,3117,23310],"delegation":[19608,3248,2117,22310],"delegatorTokens":9999999936302}},{"ix":172,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":20,"t":120,"consumerPower":[null,null,3117,null],"outstandingDowntime":[false,false,false,false]}},{"ix":173,"action":{"kind":"Undelegate","val":1,"amt":4667},"partialState":{"h":18,"t":108,"tokens":[20608,4248,3117,23310],"delegation":[19608,3248,2117,22310],"delegatorTokens":9999999936302}},{"ix":174,"action":{"kind":"Deliver","chain":"consumer","numPackets":3},"partialState":{"h":20,"t":120,"consumerPower":[null,null,3117,null],"outstandingDowntime":[false,false,false,false]}},{"ix":175,"action":{"kind":"Undelegate","val":3,"amt":3932},"partialState":{"h":18,"t":108,"tokens":[20608,4248,3117,19378],"delegation":[19608,3248,2117,18378],"delegatorTokens":9999999936302}},{"ix":176,"action":{"kind":"Undelegate","val":2,"amt":2255},"partialState":{"h":18,"t":108,"tokens":[20608,4248,3117,19378],"delegation":[19608,3248,2117,18378],"delegatorTokens":9999999936302}},{"ix":177,"action":{"kind":"Undelegate","val":1,"amt":1569},"partialState":{"h":18,"t":108,"tokens":[20608,2679,3117,19378],"delegation":[19608,1679,2117,18378],"delegatorTokens":9999999936302}},{"ix":178,"action":{"kind":"Delegate","val":3,"amt":3177},"partialState":{"h":18,"t":108,"tokens":[20608,2679,3117,22555],"delegation":[19608,1679,2117,21555],"delegatorTokens":9999999933125}},{"ix":179,"action":{"kind":"Deliver","chain":"provider","numPackets":2},"partialState":{"h":18,"t":108,"tokens":[20608,2679,3117,22555],"delegation":[19608,1679,2117,21555],"delegatorTokens":9999999933125,"jailed":[1000000000000053,1000000000000035,null,1000000000000035],"status":["unbonding","unbonding","bonded","unbonding"]}},{"ix":180,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":19,"t":114,"tokens":[20608,2679,3117,22555],"delegation":[19608,1679,2117,21555],"delegatorTokens":9999999933125,"jailed":[1000000000000053,1000000000000035,null,1000000000000035],"status":["unbonding","unbonded","bonded","unbonding"]}},{"ix":181,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":182,"action":{"kind":"Deliver","chain":"consumer","numPackets":6},"partialState":{"h":20,"t":120,"consumerPower":[null,null,3117,null],"outstandingDowntime":[false,false,false,false]}},{"ix":183,"action":{"kind":"Delegate","val":0,"amt":4717},"partialState":{"h":19,"t":114,"tokens":[25325,2679,3117,22555],"delegation":[24325,1679,2117,21555],"delegatorTokens":9999999928408}},{"ix":184,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":185,"action":{"kind":"Deliver","chain":"consumer","numPackets":4},"partialState":{"h":20,"t":120,"consumerPower":[null,null,3117,null],"outstandingDowntime":[false,false,false,false]}},{"ix":186,"action":{"kind":"Delegate","val":0,"amt":3071},"partialState":{"h":19,"t":114,"tokens":[28396,2679,3117,22555],"delegation":[27396,1679,2117,21555],"delegatorTokens":9999999925337}},{"ix":187,"action":{"kind":"Undelegate","val":3,"amt":2572},"partialState":{"h":19,"t":114,"tokens":[28396,2679,3117,19983],"delegation":[27396,1679,2117,18983],"delegatorTokens":9999999925337}},{"ix":188,"action":{"kind":"Undelegate","val":1,"amt":3530},"partialState":{"h":19,"t":114,"tokens":[28396,2679,3117,19983],"delegation":[27396,1679,2117,18983],"delegatorTokens":9999999925337}},{"ix":189,"action":{"kind":"Deliver","chain":"provider","numPackets":5},"partialState":{"h":19,"t":114,"tokens":[28396,2679,3117,19983],"delegation":[27396,1679,2117,18983],"delegatorTokens":9999999925337,"jailed":[1000000000000053,1000000000000035,null,1000000000000035],"status":["unbonding","unbonded","bonded","unbonding"]}},{"ix":190,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":191,"action":{"kind":"Deliver","chain":"provider","numPackets":5},"partialState":{"h":19,"t":114,"tokens":[28396,2679,3117,19983],"delegation":[27396,1679,2117,18983],"delegatorTokens":9999999925337,"jailed":[1000000000000053,1000000000000035,null,1000000000000035],"status":["unbonding","unbonded","bonded","unbonding"]}},{"ix":192,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":20,"t":120,"tokens":[28396,2679,3117,19983],"delegation":[27396,1679,2117,18983],"delegatorTokens":9999999925337,"jailed":[1000000000000053,1000000000000035,null,1000000000000035],"status":["unbonding","unbonded","bonded","unbonded"]}},{"ix":193,"action":{"kind":"Undelegate","val":3,"amt":2776},"partialState":{"h":20,"t":120,"tokens":[28396,2679,3117,17207],"delegation":[27396,1679,2117,16207],"delegatorTokens":9999999925337}},{"ix":194,"action":{"kind":"Deliver","chain":"consumer","numPackets":3},"partialState":{"h":20,"t":120,"consumerPower":[null,null,3117,null],"outstandingDowntime":[false,false,false,false]}},{"ix":195,"action":{"kind":"Delegate","val":0,"amt":2835},"partialState":{"h":20,"t":120,"tokens":[31231,2679,3117,17207],"delegation":[30231,1679,2117,16207],"delegatorTokens":9999999922502}},{"ix":196,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":21,"t":126,"tokens":[31231,2679,3117,17207],"delegation":[30231,1679,2117,16207],"delegatorTokens":9999999922502,"jailed":[1000000000000053,1000000000000035,null,1000000000000035],"status":["unbonding","unbonded","bonded","unbonded"]}},{"ix":197,"action":{"kind":"Delegate","val":1,"amt":3753},"partialState":{"h":21,"t":126,"tokens":[31231,6432,3117,17207],"delegation":[30231,5432,2117,16207],"delegatorTokens":9999999918749}},{"ix":198,"action":{"kind":"Undelegate","val":2,"amt":2511},"partialState":{"h":21,"t":126,"tokens":[31231,6432,3117,17207],"delegation":[30231,5432,2117,16207],"delegatorTokens":9999999918749}},{"ix":199,"action":{"kind":"Undelegate","val":2,"amt":2752},"partialState":{"h":21,"t":126,"tokens":[31231,6432,3117,17207],"delegation":[30231,5432,2117,16207],"delegatorTokens":9999999918749}}],"events":["insufficient_shares","insufficient_shares","send_downtime_slash_request","send_downtime_slash_request","send_double_sign_slash_request","send_vsc_without_downtime_ack","send_double_sign_slash_request","more_than_one_third_val_power_change","send_vsc_without_downtime_ack","downtime_slash_request_outstanding","send_double_sign_slash_request","downtime_slash_request_outstanding","downtime_slash_request_outstanding","send_double_sign_slash_request","insufficient_shares","insufficient_shares","insufficient_shares","send_vsc_without_downtime_ack","downtime_slash_request_outstanding","receive_double_sign_slash_request","receive_downtime_slash_request","jail","receive_downtime_slash_request","jail","send_downtime_slash_request","consumer_update_val","consumer_del_val","consumer_add_val","insufficient_shares","receive_double_sign_slash_request","send_vsc_with_downtime_ack","insufficient_shares","insufficient_shares","insufficient_shares","insufficient_shares","consumer_update_val","consumer_update_val","insufficient_shares","insufficient_shares","receive_double_sign_slash_request","receive_double_sign_slash_request","send_vsc_without_downtime_ack","receive_downtime_slash_ack","receive_downtime_slash_ack","receive_downtime_slash_request","jail","send_vsc_with_downtime_ack","send_vsc_without_downtime_ack","receive_downtime_slash_ack","insufficient_shares","insufficient_shares","send_vsc_without_downtime_ack","consumer_add_val","consumer_del_val","consumer_del_val","send_vsc_without_downtime_ack","insufficient_shares","send_vsc_not_because_change","send_vsc_without_downtime_ack","consumer_update_val","some_undels_expired_but_not_completed","insufficient_shares","consumer_send_maturation","consumer_send_maturation","consumer_send_maturation","insufficient_shares","consumer_send_maturation","consumer_send_maturation","consumer_send_maturation","consumer_send_maturation","send_vsc_not_because_change","send_vsc_without_downtime_ack","some_undels_expired_but_not_completed","complete_undel_immediate","set_unval_hold_false","complete_undel_immediate","complete_undel_immediate","complete_undel_immediate","insufficient_shares","insufficient_shares","insufficient_shares","complete_unval_in_endblock","set_unval_hold_false","send_vsc_not_because_change","send_vsc_without_downtime_ack","insufficient_shares","complete_unval_in_endblock","set_undel_hold_false","set_unval_hold_false","send_vsc_not_because_change","send_vsc_without_downtime_ack","send_vsc_not_because_change","send_vsc_without_downtime_ack","insufficient_shares","insufficient_shares"]},{"meta":{"commit":"7ffd0c04e4205cbc9caf212abfe6c59ee43153bf"},"constants":{"P":"provider","C":"consumer","UNBONDING_SECONDS_P":70,"UNBONDING_SECONDS_C":50,"TRUSTING_SECONDS":49,"NUM_VALIDATORS":4,"MAX_VALIDATORS":2,"SLASH_DOUBLESIGN":0,"SLASH_DOWNTIME":0,"JAIL_SECONDS":999999999999999,"BLOCK_SECONDS":6,"INITIAL_DELEGATOR_TOKENS":10000000000000,"DELEGATE_AMT_MIN":1000,"DELEGATE_AMT_MAX":5000,"UNDELEGATE_AMT_MIN":1000,"UNDELEGATE_AMT_MAX":5000,"ISDOWNTIME_PROBABILITY":0.5,"MAX_NUM_PACKETS_FOR_DELIVER":6},"actions":[{"ix":0,"action":{"kind":"ConsumerSlash","val":0,"infractionHeight":0,"isDowntime":true},"partialState":{"h":1,"t":6,"outstandingDowntime":[true,false,false,false]}},{"ix":1,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":2,"t":12,"tokens":[5000,4000,3000,2000],"delegation":[4000,3000,2000,1000],"delegatorTokens":10000000000000,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":2,"action":{"kind":"Delegate","val":2,"amt":4635},"partialState":{"h":2,"t":12,"tokens":[5000,4000,7635,2000],"delegation":[4000,3000,6635,1000],"delegatorTokens":9999999995365}},{"ix":3,"action":{"kind":"ConsumerSlash","val":3,"infractionHeight":0,"isDowntime":true},"partialState":{"h":1,"t":6,"outstandingDowntime":[true,false,false,true]}},{"ix":4,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":5,"action":{"kind":"Undelegate","val":0,"amt":2974},"partialState":{"h":2,"t":12,"tokens":[2026,4000,7635,2000],"delegation":[1026,3000,6635,1000],"delegatorTokens":9999999995365}},{"ix":6,"action":{"kind":"Deliver","chain":"provider","numPackets":4},"partialState":{"h":2,"t":12,"tokens":[2026,4000,7635,2000],"delegation":[1026,3000,6635,1000],"delegatorTokens":9999999995365,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":7,"action":{"kind":"Undelegate","val":2,"amt":2094},"partialState":{"h":2,"t":12,"tokens":[2026,4000,5541,2000],"delegation":[1026,3000,4541,1000],"delegatorTokens":9999999995365}},{"ix":8,"action":{"kind":"ConsumerSlash","val":3,"infractionHeight":0,"isDowntime":true},"partialState":{"h":1,"t":6,"outstandingDowntime":[true,false,false,true]}},{"ix":9,"action":{"kind":"ConsumerSlash","val":3,"infractionHeight":0,"isDowntime":true},"partialState":{"h":1,"t":6,"outstandingDowntime":[true,false,false,true]}},{"ix":10,"action":{"kind":"Delegate","val":0,"amt":3416},"partialState":{"h":2,"t":12,"tokens":[5442,4000,5541,2000],"delegation":[4442,3000,4541,1000],"delegatorTokens":9999999991949}},{"ix":11,"action":{"kind":"Delegate","val":2,"amt":3899},"partialState":{"h":2,"t":12,"tokens":[5442,4000,9440,2000],"delegation":[4442,3000,8440,1000],"delegatorTokens":9999999988050}},{"ix":12,"action":{"kind":"Delegate","val":3,"amt":4264},"partialState":{"h":2,"t":12,"tokens":[5442,4000,9440,6264],"delegation":[4442,3000,8440,5264],"delegatorTokens":9999999983786}},{"ix":13,"action":{"kind":"ConsumerSlash","val":0,"infractionHeight":0,"isDowntime":true},"partialState":{"h":1,"t":6,"outstandingDowntime":[true,false,false,true]}},{"ix":14,"action":{"kind":"Delegate","val":0,"amt":2272},"partialState":{"h":2,"t":12,"tokens":[7714,4000,9440,6264],"delegation":[6714,3000,8440,5264],"delegatorTokens":9999999981514}},{"ix":15,"action":{"kind":"Undelegate","val":1,"amt":3624},"partialState":{"h":2,"t":12,"tokens":[7714,4000,9440,6264],"delegation":[6714,3000,8440,5264],"delegatorTokens":9999999981514}},{"ix":16,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":17,"action":{"kind":"Undelegate","val":1,"amt":1827},"partialState":{"h":2,"t":12,"tokens":[7714,2173,9440,6264],"delegation":[6714,1173,8440,5264],"delegatorTokens":9999999981514}},{"ix":18,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":2,"t":12,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[true,false,false,true]}},{"ix":19,"action":{"kind":"Deliver","chain":"provider","numPackets":6},"partialState":{"h":2,"t":12,"tokens":[7714,2173,9440,6264],"delegation":[6714,1173,8440,5264],"delegatorTokens":9999999981514,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":20,"action":{"kind":"Deliver","chain":"provider","numPackets":1},"partialState":{"h":2,"t":12,"tokens":[7714,2173,9440,6264],"delegation":[6714,1173,8440,5264],"delegatorTokens":9999999981514,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":21,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":22,"action":{"kind":"Delegate","val":2,"amt":3386},"partialState":{"h":2,"t":12,"tokens":[7714,2173,12826,6264],"delegation":[6714,1173,11826,5264],"delegatorTokens":9999999978128}},{"ix":23,"action":{"kind":"ConsumerSlash","val":3,"infractionHeight":0,"isDowntime":false},"partialState":{"h":2,"t":12,"outstandingDowntime":[true,false,false,true]}},{"ix":24,"action":{"kind":"ConsumerSlash","val":3,"infractionHeight":1,"isDowntime":false},"partialState":{"h":2,"t":12,"outstandingDowntime":[true,false,false,true]}},{"ix":25,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":3,"t":18,"tokens":[7714,2173,12826,6264],"delegation":[6714,1173,11826,5264],"delegatorTokens":9999999978128,"jailed":[null,null,null,null],"status":["bonded","unbonding","bonded","unbonded"]}},{"ix":26,"action":{"kind":"Deliver","chain":"consumer","numPackets":5},"partialState":{"h":2,"t":12,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[true,false,false,true]}},{"ix":27,"action":{"kind":"Undelegate","val":2,"amt":3698},"partialState":{"h":3,"t":18,"tokens":[7714,2173,9128,6264],"delegation":[6714,1173,8128,5264],"delegatorTokens":9999999978128}},{"ix":28,"action":{"kind":"Undelegate","val":1,"amt":1546},"partialState":{"h":3,"t":18,"tokens":[7714,2173,9128,6264],"delegation":[6714,1173,8128,5264],"delegatorTokens":9999999978128}},{"ix":29,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":30,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":4,"t":24,"tokens":[7714,2173,9128,6264],"delegation":[6714,1173,8128,5264],"delegatorTokens":9999999978128,"jailed":[null,null,null,null],"status":["bonded","unbonding","bonded","unbonded"]}},{"ix":31,"action":{"kind":"Delegate","val":1,"amt":2909},"partialState":{"h":4,"t":24,"tokens":[7714,5082,9128,6264],"delegation":[6714,4082,8128,5264],"delegatorTokens":9999999975219}},{"ix":32,"action":{"kind":"Deliver","chain":"provider","numPackets":3},"partialState":{"h":4,"t":24,"tokens":[7714,5082,9128,6264],"delegation":[6714,4082,8128,5264],"delegatorTokens":9999999975219,"jailed":[null,null,null,null],"status":["bonded","unbonding","bonded","unbonded"]}},{"ix":33,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":3,"t":18,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[true,false,false,true]}},{"ix":34,"action":{"kind":"Deliver","chain":"provider","numPackets":1},"partialState":{"h":4,"t":24,"tokens":[7714,5082,9128,6264],"delegation":[6714,4082,8128,5264],"delegatorTokens":9999999975219,"jailed":[null,null,null,null],"status":["bonded","unbonding","bonded","unbonded"]}},{"ix":35,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":36,"action":{"kind":"Delegate","val":0,"amt":1093},"partialState":{"h":4,"t":24,"tokens":[8807,5082,9128,6264],"delegation":[7807,4082,8128,5264],"delegatorTokens":9999999974126}},{"ix":37,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":38,"action":{"kind":"Delegate","val":2,"amt":1815},"partialState":{"h":4,"t":24,"tokens":[8807,5082,10943,6264],"delegation":[7807,4082,9943,5264],"delegatorTokens":9999999972311}},{"ix":39,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":5,"t":30,"tokens":[8807,5082,10943,6264],"delegation":[7807,4082,9943,5264],"delegatorTokens":9999999972311,"jailed":[1000000000000023,null,null,null],"status":["bonded","unbonding","bonded","unbonded"]}},{"ix":40,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":41,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":42,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":4,"t":24,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[true,false,false,true]}},{"ix":43,"action":{"kind":"Delegate","val":2,"amt":4736},"partialState":{"h":5,"t":30,"tokens":[8807,5082,15679,6264],"delegation":[7807,4082,14679,5264],"delegatorTokens":9999999967575}},{"ix":44,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":45,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":6,"t":36,"tokens":[8807,5082,15679,6264],"delegation":[7807,4082,14679,5264],"delegatorTokens":9999999967575,"jailed":[1000000000000023,null,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":46,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":47,"action":{"kind":"Undelegate","val":2,"amt":1290},"partialState":{"h":6,"t":36,"tokens":[8807,5082,14389,6264],"delegation":[7807,4082,13389,5264],"delegatorTokens":9999999967575}},{"ix":48,"action":{"kind":"Deliver","chain":"consumer","numPackets":2},"partialState":{"h":4,"t":24,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[true,false,false,true]}},{"ix":49,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":50,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":51,"action":{"kind":"Delegate","val":0,"amt":2370},"partialState":{"h":6,"t":36,"tokens":[11177,5082,14389,6264],"delegation":[10177,4082,13389,5264],"delegatorTokens":9999999965205}},{"ix":52,"action":{"kind":"Delegate","val":3,"amt":1608},"partialState":{"h":6,"t":36,"tokens":[11177,5082,14389,7872],"delegation":[10177,4082,13389,6872],"delegatorTokens":9999999963597}},{"ix":53,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":7,"t":42,"tokens":[11177,5082,14389,7872],"delegation":[10177,4082,13389,6872],"delegatorTokens":9999999963597,"jailed":[1000000000000023,null,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":54,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":8,"t":48,"tokens":[11177,5082,14389,7872],"delegation":[10177,4082,13389,6872],"delegatorTokens":9999999963597,"jailed":[1000000000000023,null,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":55,"action":{"kind":"Deliver","chain":"consumer","numPackets":4},"partialState":{"h":4,"t":24,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,false,false,true]}},{"ix":56,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":9,"t":54,"tokens":[11177,5082,14389,7872],"delegation":[10177,4082,13389,6872],"delegatorTokens":9999999963597,"jailed":[1000000000000023,null,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":57,"action":{"kind":"Delegate","val":1,"amt":1893},"partialState":{"h":9,"t":54,"tokens":[11177,6975,14389,7872],"delegation":[10177,5975,13389,6872],"delegatorTokens":9999999961704}},{"ix":58,"action":{"kind":"ConsumerSlash","val":0,"infractionHeight":2,"isDowntime":true},"partialState":{"h":4,"t":24,"outstandingDowntime":[true,false,false,true]}},{"ix":59,"action":{"kind":"Delegate","val":1,"amt":2515},"partialState":{"h":9,"t":54,"tokens":[11177,9490,14389,7872],"delegation":[10177,8490,13389,6872],"delegatorTokens":9999999959189}},{"ix":60,"action":{"kind":"Undelegate","val":0,"amt":2775},"partialState":{"h":9,"t":54,"tokens":[8402,9490,14389,7872],"delegation":[7402,8490,13389,6872],"delegatorTokens":9999999959189}},{"ix":61,"action":{"kind":"Deliver","chain":"consumer","numPackets":5},"partialState":{"h":4,"t":24,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[true,false,false,true]}},{"ix":62,"action":{"kind":"Delegate","val":3,"amt":4931},"partialState":{"h":9,"t":54,"tokens":[8402,9490,14389,12803],"delegation":[7402,8490,13389,11803],"delegatorTokens":9999999954258}},{"ix":63,"action":{"kind":"Undelegate","val":0,"amt":2995},"partialState":{"h":9,"t":54,"tokens":[5407,9490,14389,12803],"delegation":[4407,8490,13389,11803],"delegatorTokens":9999999954258}},{"ix":64,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":65,"action":{"kind":"ConsumerSlash","val":3,"infractionHeight":0,"isDowntime":false},"partialState":{"h":4,"t":24,"outstandingDowntime":[true,false,false,true]}},{"ix":66,"action":{"kind":"Delegate","val":3,"amt":2182},"partialState":{"h":9,"t":54,"tokens":[5407,9490,14389,14985],"delegation":[4407,8490,13389,13985],"delegatorTokens":9999999952076}},{"ix":67,"action":{"kind":"Undelegate","val":1,"amt":1413},"partialState":{"h":9,"t":54,"tokens":[5407,8077,14389,14985],"delegation":[4407,7077,13389,13985],"delegatorTokens":9999999952076}},{"ix":68,"action":{"kind":"Delegate","val":2,"amt":4614},"partialState":{"h":9,"t":54,"tokens":[5407,8077,19003,14985],"delegation":[4407,7077,18003,13985],"delegatorTokens":9999999947462}},{"ix":69,"action":{"kind":"Undelegate","val":2,"amt":3499},"partialState":{"h":9,"t":54,"tokens":[5407,8077,15504,14985],"delegation":[4407,7077,14504,13985],"delegatorTokens":9999999947462}},{"ix":70,"action":{"kind":"Undelegate","val":3,"amt":2065},"partialState":{"h":9,"t":54,"tokens":[5407,8077,15504,12920],"delegation":[4407,7077,14504,11920],"delegatorTokens":9999999947462}},{"ix":71,"action":{"kind":"Delegate","val":0,"amt":4219},"partialState":{"h":9,"t":54,"tokens":[9626,8077,15504,12920],"delegation":[8626,7077,14504,11920],"delegatorTokens":9999999943243}},{"ix":72,"action":{"kind":"Delegate","val":2,"amt":1972},"partialState":{"h":9,"t":54,"tokens":[9626,8077,17476,12920],"delegation":[8626,7077,16476,11920],"delegatorTokens":9999999941271}},{"ix":73,"action":{"kind":"ConsumerSlash","val":3,"infractionHeight":2,"isDowntime":true},"partialState":{"h":4,"t":24,"outstandingDowntime":[true,false,false,true]}},{"ix":74,"action":{"kind":"ConsumerSlash","val":3,"infractionHeight":1,"isDowntime":true},"partialState":{"h":4,"t":24,"outstandingDowntime":[true,false,false,true]}},{"ix":75,"action":{"kind":"Delegate","val":0,"amt":3744},"partialState":{"h":9,"t":54,"tokens":[13370,8077,17476,12920],"delegation":[12370,7077,16476,11920],"delegatorTokens":9999999937527}},{"ix":76,"action":{"kind":"Deliver","chain":"consumer","numPackets":2},"partialState":{"h":4,"t":24,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[true,false,false,true]}},{"ix":77,"action":{"kind":"Undelegate","val":2,"amt":4029},"partialState":{"h":9,"t":54,"tokens":[13370,8077,13447,12920],"delegation":[12370,7077,12447,11920],"delegatorTokens":9999999937527}},{"ix":78,"action":{"kind":"Undelegate","val":3,"amt":3518},"partialState":{"h":9,"t":54,"tokens":[13370,8077,13447,9402],"delegation":[12370,7077,12447,8402],"delegatorTokens":9999999937527}},{"ix":79,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":5,"t":30,"consumerPower":[null,null,14389,7872],"outstandingDowntime":[true,false,false,true]}},{"ix":80,"action":{"kind":"Undelegate","val":1,"amt":2847},"partialState":{"h":9,"t":54,"tokens":[13370,5230,13447,9402],"delegation":[12370,4230,12447,8402],"delegatorTokens":9999999937527}},{"ix":81,"action":{"kind":"Delegate","val":2,"amt":2132},"partialState":{"h":9,"t":54,"tokens":[13370,5230,15579,9402],"delegation":[12370,4230,14579,8402],"delegatorTokens":9999999935395}},{"ix":82,"action":{"kind":"Deliver","chain":"consumer","numPackets":5},"partialState":{"h":5,"t":30,"consumerPower":[null,null,14389,7872],"outstandingDowntime":[true,false,false,true]}},{"ix":83,"action":{"kind":"Undelegate","val":2,"amt":1167},"partialState":{"h":9,"t":54,"tokens":[13370,5230,14412,9402],"delegation":[12370,4230,13412,8402],"delegatorTokens":9999999935395}},{"ix":84,"action":{"kind":"Deliver","chain":"consumer","numPackets":3},"partialState":{"h":5,"t":30,"consumerPower":[null,null,14389,7872],"outstandingDowntime":[true,false,false,true]}},{"ix":85,"action":{"kind":"ConsumerSlash","val":0,"infractionHeight":2,"isDowntime":true},"partialState":{"h":5,"t":30,"outstandingDowntime":[true,false,false,true]}},{"ix":86,"action":{"kind":"Delegate","val":3,"amt":4785},"partialState":{"h":9,"t":54,"tokens":[13370,5230,14412,14187],"delegation":[12370,4230,13412,13187],"delegatorTokens":9999999930610}},{"ix":87,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":6,"t":36,"consumerPower":[null,null,14389,7872],"outstandingDowntime":[true,false,false,true]}},{"ix":88,"action":{"kind":"ConsumerSlash","val":3,"infractionHeight":1,"isDowntime":true},"partialState":{"h":6,"t":36,"outstandingDowntime":[true,false,false,true]}},{"ix":89,"action":{"kind":"Undelegate","val":0,"amt":4884},"partialState":{"h":9,"t":54,"tokens":[8486,5230,14412,14187],"delegation":[7486,4230,13412,13187],"delegatorTokens":9999999930610}},{"ix":90,"action":{"kind":"ConsumerSlash","val":0,"infractionHeight":0,"isDowntime":true},"partialState":{"h":6,"t":36,"outstandingDowntime":[true,false,false,true]}},{"ix":91,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":92,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":10,"t":60,"tokens":[8486,5230,14412,14187],"delegation":[7486,4230,13412,13187],"delegatorTokens":9999999930610,"jailed":[1000000000000023,null,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":93,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":7,"t":42,"consumerPower":[null,null,14389,7872],"outstandingDowntime":[true,false,false,true]}},{"ix":94,"action":{"kind":"ConsumerSlash","val":2,"infractionHeight":6,"isDowntime":false},"partialState":{"h":7,"t":42,"outstandingDowntime":[true,false,false,true]}},{"ix":95,"action":{"kind":"Delegate","val":2,"amt":4205},"partialState":{"h":10,"t":60,"tokens":[8486,5230,18617,14187],"delegation":[7486,4230,17617,13187],"delegatorTokens":9999999926405}},{"ix":96,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":97,"action":{"kind":"Deliver","chain":"consumer","numPackets":1},"partialState":{"h":7,"t":42,"consumerPower":[null,null,14389,7872],"outstandingDowntime":[true,false,false,true]}},{"ix":98,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":99,"action":{"kind":"Delegate","val":2,"amt":4716},"partialState":{"h":10,"t":60,"tokens":[8486,5230,23333,14187],"delegation":[7486,4230,22333,13187],"delegatorTokens":9999999921689}},{"ix":100,"action":{"kind":"Delegate","val":2,"amt":2064},"partialState":{"h":10,"t":60,"tokens":[8486,5230,25397,14187],"delegation":[7486,4230,24397,13187],"delegatorTokens":9999999919625}},{"ix":101,"action":{"kind":"Undelegate","val":0,"amt":2542},"partialState":{"h":10,"t":60,"tokens":[5944,5230,25397,14187],"delegation":[4944,4230,24397,13187],"delegatorTokens":9999999919625}},{"ix":102,"action":{"kind":"Delegate","val":0,"amt":3454},"partialState":{"h":10,"t":60,"tokens":[9398,5230,25397,14187],"delegation":[8398,4230,24397,13187],"delegatorTokens":9999999916171}},{"ix":103,"action":{"kind":"Delegate","val":1,"amt":1197},"partialState":{"h":10,"t":60,"tokens":[9398,6427,25397,14187],"delegation":[8398,5427,24397,13187],"delegatorTokens":9999999914974}},{"ix":104,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":105,"action":{"kind":"Undelegate","val":2,"amt":3705},"partialState":{"h":10,"t":60,"tokens":[9398,6427,21692,14187],"delegation":[8398,5427,20692,13187],"delegatorTokens":9999999914974}},{"ix":106,"action":{"kind":"Deliver","chain":"consumer","numPackets":2},"partialState":{"h":7,"t":42,"consumerPower":[null,null,14389,7872],"outstandingDowntime":[true,false,false,true]}},{"ix":107,"action":{"kind":"Delegate","val":2,"amt":2716},"partialState":{"h":10,"t":60,"tokens":[9398,6427,24408,14187],"delegation":[8398,5427,23408,13187],"delegatorTokens":9999999912258}},{"ix":108,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":109,"action":{"kind":"Undelegate","val":0,"amt":4249},"partialState":{"h":10,"t":60,"tokens":[5149,6427,24408,14187],"delegation":[4149,5427,23408,13187],"delegatorTokens":9999999912258}},{"ix":110,"action":{"kind":"Undelegate","val":0,"amt":4689},"partialState":{"h":10,"t":60,"tokens":[5149,6427,24408,14187],"delegation":[4149,5427,23408,13187],"delegatorTokens":9999999912258}},{"ix":111,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":8,"t":48,"consumerPower":[null,null,14389,7872],"outstandingDowntime":[true,false,false,true]}},{"ix":112,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":11,"t":66,"tokens":[5149,6427,24408,14187],"delegation":[4149,5427,23408,13187],"delegatorTokens":9999999912258,"jailed":[1000000000000023,null,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":113,"action":{"kind":"Undelegate","val":3,"amt":2697},"partialState":{"h":11,"t":66,"tokens":[5149,6427,24408,11490],"delegation":[4149,5427,23408,10490],"delegatorTokens":9999999912258}},{"ix":114,"action":{"kind":"Delegate","val":1,"amt":3427},"partialState":{"h":11,"t":66,"tokens":[5149,9854,24408,11490],"delegation":[4149,8854,23408,10490],"delegatorTokens":9999999908831}},{"ix":115,"action":{"kind":"Undelegate","val":1,"amt":3598},"partialState":{"h":11,"t":66,"tokens":[5149,6256,24408,11490],"delegation":[4149,5256,23408,10490],"delegatorTokens":9999999908831}},{"ix":116,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":9,"t":54,"consumerPower":[null,null,14389,7872],"outstandingDowntime":[true,false,false,true]}},{"ix":117,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":12,"t":72,"tokens":[5149,6256,24408,11490],"delegation":[4149,5256,23408,10490],"delegatorTokens":9999999908831,"jailed":[1000000000000023,null,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":118,"action":{"kind":"Delegate","val":2,"amt":3648},"partialState":{"h":12,"t":72,"tokens":[5149,6256,28056,11490],"delegation":[4149,5256,27056,10490],"delegatorTokens":9999999905183}},{"ix":119,"action":{"kind":"Delegate","val":1,"amt":3495},"partialState":{"h":12,"t":72,"tokens":[5149,9751,28056,11490],"delegation":[4149,8751,27056,10490],"delegatorTokens":9999999901688}},{"ix":120,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":10,"t":60,"consumerPower":[null,null,14389,7872],"outstandingDowntime":[true,false,false,true]}},{"ix":121,"action":{"kind":"Deliver","chain":"provider","numPackets":3},"partialState":{"h":12,"t":72,"tokens":[5149,9751,28056,11490],"delegation":[4149,8751,27056,10490],"delegatorTokens":9999999901688,"jailed":[1000000000000023,null,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":122,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":13,"t":78,"tokens":[5149,9751,28056,11490],"delegation":[4149,8751,27056,10490],"delegatorTokens":9999999901688,"jailed":[1000000000000023,null,null,1000000000000071],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":123,"action":{"kind":"Deliver","chain":"consumer","numPackets":3},"partialState":{"h":10,"t":60,"consumerPower":[null,null,14389,7872],"outstandingDowntime":[true,false,false,true]}},{"ix":124,"action":{"kind":"Deliver","chain":"consumer","numPackets":3},"partialState":{"h":10,"t":60,"consumerPower":[null,null,14389,7872],"outstandingDowntime":[true,false,false,true]}},{"ix":125,"action":{"kind":"Delegate","val":0,"amt":2324},"partialState":{"h":13,"t":78,"tokens":[7473,9751,28056,11490],"delegation":[6473,8751,27056,10490],"delegatorTokens":9999999899364}},{"ix":126,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":14,"t":84,"tokens":[7473,9751,28056,11490],"delegation":[6473,8751,27056,10490],"delegatorTokens":9999999899364,"jailed":[1000000000000023,null,null,1000000000000071],"status":["unbonding","bonded","bonded","unbonding"]}},{"ix":127,"action":{"kind":"Delegate","val":2,"amt":2169},"partialState":{"h":14,"t":84,"tokens":[7473,9751,30225,11490],"delegation":[6473,8751,29225,10490],"delegatorTokens":9999999897195}},{"ix":128,"action":{"kind":"Deliver","chain":"consumer","numPackets":2},"partialState":{"h":10,"t":60,"consumerPower":[null,null,14389,7872],"outstandingDowntime":[true,false,false,false]}},{"ix":129,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":15,"t":90,"tokens":[7473,9751,30225,11490],"delegation":[6473,8751,29225,10490],"delegatorTokens":9999999897195,"jailed":[1000000000000023,null,null,1000000000000071],"status":["unbonding","bonded","bonded","unbonding"]}},{"ix":130,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":131,"action":{"kind":"Delegate","val":3,"amt":4328},"partialState":{"h":15,"t":90,"tokens":[7473,9751,30225,15818],"delegation":[6473,8751,29225,14818],"delegatorTokens":9999999892867}},{"ix":132,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":133,"action":{"kind":"Deliver","chain":"consumer","numPackets":1},"partialState":{"h":10,"t":60,"consumerPower":[null,null,14389,7872],"outstandingDowntime":[true,false,false,false]}},{"ix":134,"action":{"kind":"Undelegate","val":0,"amt":3364},"partialState":{"h":15,"t":90,"tokens":[4109,9751,30225,15818],"delegation":[3109,8751,29225,14818],"delegatorTokens":9999999892867}},{"ix":135,"action":{"kind":"Undelegate","val":1,"amt":4411},"partialState":{"h":15,"t":90,"tokens":[4109,5340,30225,15818],"delegation":[3109,4340,29225,14818],"delegatorTokens":9999999892867}},{"ix":136,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":137,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":16,"t":96,"tokens":[4109,5340,30225,15818],"delegation":[3109,4340,29225,14818],"delegatorTokens":9999999892867,"jailed":[1000000000000023,null,null,1000000000000071],"status":["unbonding","bonded","bonded","unbonding"]}},{"ix":138,"action":{"kind":"Deliver","chain":"provider","numPackets":5},"partialState":{"h":16,"t":96,"tokens":[4109,5340,30225,15818],"delegation":[3109,4340,29225,14818],"delegatorTokens":9999999892867,"jailed":[1000000000000023,null,null,1000000000000071],"status":["unbonding","bonded","bonded","unbonding"]}},{"ix":139,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":140,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":17,"t":102,"tokens":[4109,5340,30225,15818],"delegation":[3109,4340,29225,14818],"delegatorTokens":9999999892867,"jailed":[1000000000000095,null,null,1000000000000071],"status":["unbonding","bonded","bonded","unbonding"]}},{"ix":141,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":11,"t":66,"consumerPower":[null,9751,28056,null],"outstandingDowntime":[true,false,false,false]}},{"ix":142,"action":{"kind":"Delegate","val":0,"amt":1843},"partialState":{"h":17,"t":102,"tokens":[5952,5340,30225,15818],"delegation":[4952,4340,29225,14818],"delegatorTokens":9999999891024}},{"ix":143,"action":{"kind":"Undelegate","val":1,"amt":1712},"partialState":{"h":17,"t":102,"tokens":[5952,3628,30225,15818],"delegation":[4952,2628,29225,14818],"delegatorTokens":9999999891024}},{"ix":144,"action":{"kind":"Deliver","chain":"consumer","numPackets":6},"partialState":{"h":11,"t":66,"consumerPower":[null,9751,28056,null],"outstandingDowntime":[true,false,false,false]}},{"ix":145,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":146,"action":{"kind":"Deliver","chain":"provider","numPackets":4},"partialState":{"h":17,"t":102,"tokens":[5952,3628,30225,15818],"delegation":[4952,2628,29225,14818],"delegatorTokens":9999999891024,"jailed":[1000000000000095,null,null,1000000000000071],"status":["unbonding","bonded","bonded","unbonding"]}},{"ix":147,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":12,"t":72,"consumerPower":[null,5340,30225,null],"outstandingDowntime":[true,false,false,false]}},{"ix":148,"action":{"kind":"Undelegate","val":0,"amt":4526},"partialState":{"h":17,"t":102,"tokens":[1426,3628,30225,15818],"delegation":[426,2628,29225,14818],"delegatorTokens":9999999891024}},{"ix":149,"action":{"kind":"Deliver","chain":"consumer","numPackets":6},"partialState":{"h":12,"t":72,"consumerPower":[null,5340,30225,null],"outstandingDowntime":[true,false,false,false]}},{"ix":150,"action":{"kind":"Undelegate","val":1,"amt":1612},"partialState":{"h":17,"t":102,"tokens":[1426,2016,30225,15818],"delegation":[426,1016,29225,14818],"delegatorTokens":9999999891024}},{"ix":151,"action":{"kind":"Delegate","val":3,"amt":1917},"partialState":{"h":17,"t":102,"tokens":[1426,2016,30225,17735],"delegation":[426,1016,29225,16735],"delegatorTokens":9999999889107}},{"ix":152,"action":{"kind":"Delegate","val":0,"amt":3729},"partialState":{"h":17,"t":102,"tokens":[5155,2016,30225,17735],"delegation":[4155,1016,29225,16735],"delegatorTokens":9999999885378}},{"ix":153,"action":{"kind":"Delegate","val":3,"amt":2267},"partialState":{"h":17,"t":102,"tokens":[5155,2016,30225,20002],"delegation":[4155,1016,29225,19002],"delegatorTokens":9999999883111}},{"ix":154,"action":{"kind":"Deliver","chain":"consumer","numPackets":6},"partialState":{"h":12,"t":72,"consumerPower":[null,5340,30225,null],"outstandingDowntime":[true,false,false,false]}},{"ix":155,"action":{"kind":"Deliver","chain":"provider","numPackets":4},"partialState":{"h":17,"t":102,"tokens":[5155,2016,30225,20002],"delegation":[4155,1016,29225,19002],"delegatorTokens":9999999883111,"jailed":[1000000000000095,null,null,1000000000000071],"status":["unbonding","bonded","bonded","unbonding"]}},{"ix":156,"action":{"kind":"Deliver","chain":"consumer","numPackets":4},"partialState":{"h":12,"t":72,"consumerPower":[null,5340,30225,null],"outstandingDowntime":[true,false,false,false]}},{"ix":157,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":158,"action":{"kind":"Deliver","chain":"provider","numPackets":4},"partialState":{"h":17,"t":102,"tokens":[5155,2016,30225,20002],"delegation":[4155,1016,29225,19002],"delegatorTokens":9999999883111,"jailed":[1000000000000095,null,null,1000000000000071],"status":["unbonding","bonded","bonded","unbonding"]}},{"ix":159,"action":{"kind":"Delegate","val":0,"amt":2898},"partialState":{"h":17,"t":102,"tokens":[8053,2016,30225,20002],"delegation":[7053,1016,29225,19002],"delegatorTokens":9999999880213}},{"ix":160,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":161,"action":{"kind":"Delegate","val":1,"amt":2336},"partialState":{"h":17,"t":102,"tokens":[8053,4352,30225,20002],"delegation":[7053,3352,29225,19002],"delegatorTokens":9999999877877}},{"ix":162,"action":{"kind":"Deliver","chain":"provider","numPackets":6},"partialState":{"h":17,"t":102,"tokens":[8053,4352,30225,20002],"delegation":[7053,3352,29225,19002],"delegatorTokens":9999999877877,"jailed":[1000000000000095,null,null,1000000000000071],"status":["unbonding","bonded","bonded","unbonding"]}},{"ix":163,"action":{"kind":"Undelegate","val":1,"amt":4078},"partialState":{"h":17,"t":102,"tokens":[8053,4352,30225,20002],"delegation":[7053,3352,29225,19002],"delegatorTokens":9999999877877}},{"ix":164,"action":{"kind":"Delegate","val":1,"amt":1189},"partialState":{"h":17,"t":102,"tokens":[8053,5541,30225,20002],"delegation":[7053,4541,29225,19002],"delegatorTokens":9999999876688}},{"ix":165,"action":{"kind":"Undelegate","val":3,"amt":2410},"partialState":{"h":17,"t":102,"tokens":[8053,5541,30225,17592],"delegation":[7053,4541,29225,16592],"delegatorTokens":9999999876688}},{"ix":166,"action":{"kind":"Undelegate","val":0,"amt":2509},"partialState":{"h":17,"t":102,"tokens":[5544,5541,30225,17592],"delegation":[4544,4541,29225,16592],"delegatorTokens":9999999876688}},{"ix":167,"action":{"kind":"Undelegate","val":2,"amt":4768},"partialState":{"h":17,"t":102,"tokens":[5544,5541,25457,17592],"delegation":[4544,4541,24457,16592],"delegatorTokens":9999999876688}},{"ix":168,"action":{"kind":"Undelegate","val":2,"amt":2077},"partialState":{"h":17,"t":102,"tokens":[5544,5541,23380,17592],"delegation":[4544,4541,22380,16592],"delegatorTokens":9999999876688}},{"ix":169,"action":{"kind":"Deliver","chain":"consumer","numPackets":5},"partialState":{"h":12,"t":72,"consumerPower":[null,5340,30225,null],"outstandingDowntime":[true,false,false,false]}},{"ix":170,"action":{"kind":"Delegate","val":2,"amt":3636},"partialState":{"h":17,"t":102,"tokens":[5544,5541,27016,17592],"delegation":[4544,4541,26016,16592],"delegatorTokens":9999999873052}},{"ix":171,"action":{"kind":"Delegate","val":1,"amt":2408},"partialState":{"h":17,"t":102,"tokens":[5544,7949,27016,17592],"delegation":[4544,6949,26016,16592],"delegatorTokens":9999999870644}},{"ix":172,"action":{"kind":"Deliver","chain":"provider","numPackets":6},"partialState":{"h":17,"t":102,"tokens":[5544,7949,27016,17592],"delegation":[4544,6949,26016,16592],"delegatorTokens":9999999870644,"jailed":[1000000000000095,null,null,1000000000000071],"status":["unbonding","bonded","bonded","unbonding"]}},{"ix":173,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":18,"t":108,"tokens":[5544,7949,27016,17592],"delegation":[4544,6949,26016,16592],"delegatorTokens":9999999870644,"jailed":[1000000000000095,null,null,1000000000000071],"status":["unbonding","bonded","bonded","unbonding"]}},{"ix":174,"action":{"kind":"Undelegate","val":1,"amt":4712},"partialState":{"h":18,"t":108,"tokens":[5544,3237,27016,17592],"delegation":[4544,2237,26016,16592],"delegatorTokens":9999999870644}},{"ix":175,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":176,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":177,"action":{"kind":"Deliver","chain":"provider","numPackets":6},"partialState":{"h":18,"t":108,"tokens":[5544,3237,27016,17592],"delegation":[4544,2237,26016,16592],"delegatorTokens":9999999870644,"jailed":[1000000000000095,null,null,1000000000000071],"status":["unbonding","bonded","bonded","unbonding"]}},{"ix":178,"action":{"kind":"Undelegate","val":0,"amt":2725},"partialState":{"h":18,"t":108,"tokens":[2819,3237,27016,17592],"delegation":[1819,2237,26016,16592],"delegatorTokens":9999999870644}},{"ix":179,"action":{"kind":"Deliver","chain":"provider","numPackets":5},"partialState":{"h":18,"t":108,"tokens":[2819,3237,27016,17592],"delegation":[1819,2237,26016,16592],"delegatorTokens":9999999870644,"jailed":[1000000000000095,null,null,1000000000000071],"status":["unbonding","bonded","bonded","unbonding"]}},{"ix":180,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":13,"t":78,"consumerPower":[null,5340,30225,null],"outstandingDowntime":[true,false,false,false]}},{"ix":181,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":182,"action":{"kind":"Undelegate","val":1,"amt":4492},"partialState":{"h":18,"t":108,"tokens":[2819,3237,27016,17592],"delegation":[1819,2237,26016,16592],"delegatorTokens":9999999870644}},{"ix":183,"action":{"kind":"Undelegate","val":2,"amt":2635},"partialState":{"h":18,"t":108,"tokens":[2819,3237,24381,17592],"delegation":[1819,2237,23381,16592],"delegatorTokens":9999999870644}},{"ix":184,"action":{"kind":"Deliver","chain":"provider","numPackets":4},"partialState":{"h":18,"t":108,"tokens":[2819,3237,24381,17592],"delegation":[1819,2237,23381,16592],"delegatorTokens":9999999870644,"jailed":[1000000000000095,null,null,1000000000000071],"status":["unbonding","bonded","bonded","unbonding"]}},{"ix":185,"action":{"kind":"Undelegate","val":3,"amt":1079},"partialState":{"h":18,"t":108,"tokens":[2819,3237,24381,16513],"delegation":[1819,2237,23381,15513],"delegatorTokens":9999999870644}},{"ix":186,"action":{"kind":"Delegate","val":3,"amt":3262},"partialState":{"h":18,"t":108,"tokens":[2819,3237,24381,19775],"delegation":[1819,2237,23381,18775],"delegatorTokens":9999999867382}},{"ix":187,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":14,"t":84,"consumerPower":[null,5340,30225,null],"outstandingDowntime":[true,false,false,false]}},{"ix":188,"action":{"kind":"Deliver","chain":"provider","numPackets":5},"partialState":{"h":18,"t":108,"tokens":[2819,3237,24381,19775],"delegation":[1819,2237,23381,18775],"delegatorTokens":9999999867382,"jailed":[1000000000000095,null,null,1000000000000071],"status":["unbonding","bonded","bonded","unbonding"]}},{"ix":189,"action":{"kind":"Undelegate","val":1,"amt":1070},"partialState":{"h":18,"t":108,"tokens":[2819,2167,24381,19775],"delegation":[1819,1167,23381,18775],"delegatorTokens":9999999867382}},{"ix":190,"action":{"kind":"Undelegate","val":2,"amt":1632},"partialState":{"h":18,"t":108,"tokens":[2819,2167,22749,19775],"delegation":[1819,1167,21749,18775],"delegatorTokens":9999999867382}},{"ix":191,"action":{"kind":"Undelegate","val":3,"amt":3702},"partialState":{"h":18,"t":108,"tokens":[2819,2167,22749,16073],"delegation":[1819,1167,21749,15073],"delegatorTokens":9999999867382}},{"ix":192,"action":{"kind":"Undelegate","val":2,"amt":1935},"partialState":{"h":18,"t":108,"tokens":[2819,2167,20814,16073],"delegation":[1819,1167,19814,15073],"delegatorTokens":9999999867382}},{"ix":193,"action":{"kind":"Deliver","chain":"provider","numPackets":5},"partialState":{"h":18,"t":108,"tokens":[2819,2167,20814,16073],"delegation":[1819,1167,19814,15073],"delegatorTokens":9999999867382,"jailed":[1000000000000095,null,null,1000000000000071],"status":["unbonding","bonded","bonded","unbonding"]}},{"ix":194,"action":{"kind":"Undelegate","val":3,"amt":1654},"partialState":{"h":18,"t":108,"tokens":[2819,2167,20814,14419],"delegation":[1819,1167,19814,13419],"delegatorTokens":9999999867382}},{"ix":195,"action":{"kind":"Undelegate","val":0,"amt":2435},"partialState":{"h":18,"t":108,"tokens":[2819,2167,20814,14419],"delegation":[1819,1167,19814,13419],"delegatorTokens":9999999867382}},{"ix":196,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":15,"t":90,"consumerPower":[null,5340,30225,null],"outstandingDowntime":[true,false,false,false]}},{"ix":197,"action":{"kind":"Deliver","chain":"consumer","numPackets":6},"partialState":{"h":15,"t":90,"consumerPower":[null,5340,30225,null],"outstandingDowntime":[true,false,false,false]}},{"ix":198,"action":{"kind":"Deliver","chain":"consumer","numPackets":4},"partialState":{"h":15,"t":90,"consumerPower":[null,5340,30225,null],"outstandingDowntime":[true,false,false,false]}},{"ix":199,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}}],"events":["send_downtime_slash_request","send_downtime_slash_request","downtime_slash_request_outstanding","downtime_slash_request_outstanding","downtime_slash_request_outstanding","insufficient_shares","send_double_sign_slash_request","send_double_sign_slash_request","more_than_one_third_val_power_change","send_vsc_without_downtime_ack","insufficient_shares","send_vsc_without_downtime_ack","receive_downtime_slash_request","jail","send_vsc_with_downtime_ack","send_vsc_without_downtime_ack","send_vsc_without_downtime_ack","receive_downtime_slash_ack","send_downtime_slash_request","send_double_sign_slash_request","downtime_slash_request_outstanding","downtime_slash_request_outstanding","consumer_del_val","consumer_del_val","consumer_add_val","consumer_add_val","downtime_slash_request_outstanding","downtime_slash_request_outstanding","downtime_slash_request_outstanding","send_vsc_without_downtime_ack","send_double_sign_slash_request","insufficient_shares","send_vsc_without_downtime_ack","send_vsc_without_downtime_ack","receive_double_sign_slash_request","receive_double_sign_slash_request","receive_downtime_slash_request","jail","send_vsc_with_downtime_ack","rebond_unval","send_vsc_without_downtime_ack","receive_downtime_slash_ack","some_undels_expired_but_not_completed","send_vsc_without_downtime_ack","some_undels_expired_but_not_completed","send_vsc_without_downtime_ack","receive_double_sign_slash_request","receive_double_sign_slash_request","receive_downtime_slash_request","jail","consumer_update_val","consumer_del_val","consumer_add_val","consumer_update_val","consumer_update_val","insufficient_shares","send_vsc_with_downtime_ack","insufficient_shares","consumer_send_maturation","consumer_send_maturation","consumer_send_maturation","consumer_send_maturation","consumer_send_maturation","insufficient_shares"]},{"meta":{"commit":"7ffd0c04e4205cbc9caf212abfe6c59ee43153bf"},"constants":{"P":"provider","C":"consumer","UNBONDING_SECONDS_P":70,"UNBONDING_SECONDS_C":50,"TRUSTING_SECONDS":49,"NUM_VALIDATORS":4,"MAX_VALIDATORS":2,"SLASH_DOUBLESIGN":0,"SLASH_DOWNTIME":0,"JAIL_SECONDS":999999999999999,"BLOCK_SECONDS":6,"INITIAL_DELEGATOR_TOKENS":10000000000000,"DELEGATE_AMT_MIN":1000,"DELEGATE_AMT_MAX":5000,"UNDELEGATE_AMT_MIN":1000,"UNDELEGATE_AMT_MAX":5000,"ISDOWNTIME_PROBABILITY":0.5,"MAX_NUM_PACKETS_FOR_DELIVER":6},"actions":[{"ix":0,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":2,"t":12,"tokens":[5000,4000,3000,2000],"delegation":[4000,3000,2000,1000],"delegatorTokens":10000000000000,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":1,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":2,"t":12,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":2,"action":{"kind":"Undelegate","val":0,"amt":2369},"partialState":{"h":2,"t":12,"tokens":[2631,4000,3000,2000],"delegation":[1631,3000,2000,1000],"delegatorTokens":10000000000000}},{"ix":3,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":4,"action":{"kind":"ConsumerSlash","val":3,"infractionHeight":1,"isDowntime":false},"partialState":{"h":2,"t":12,"outstandingDowntime":[false,false,false,false]}},{"ix":5,"action":{"kind":"Delegate","val":3,"amt":4661},"partialState":{"h":2,"t":12,"tokens":[2631,4000,3000,6661],"delegation":[1631,3000,2000,5661],"delegatorTokens":9999999995339}},{"ix":6,"action":{"kind":"ConsumerSlash","val":1,"infractionHeight":1,"isDowntime":true},"partialState":{"h":2,"t":12,"outstandingDowntime":[false,true,false,false]}},{"ix":7,"action":{"kind":"Deliver","chain":"consumer","numPackets":2},"partialState":{"h":2,"t":12,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,true,false,false]}},{"ix":8,"action":{"kind":"ConsumerSlash","val":1,"infractionHeight":1,"isDowntime":true},"partialState":{"h":2,"t":12,"outstandingDowntime":[false,true,false,false]}},{"ix":9,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":3,"t":18,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,true,false,false]}},{"ix":10,"action":{"kind":"Deliver","chain":"consumer","numPackets":5},"partialState":{"h":3,"t":18,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,true,false,false]}},{"ix":11,"action":{"kind":"Undelegate","val":0,"amt":1439},"partialState":{"h":2,"t":12,"tokens":[1192,4000,3000,6661],"delegation":[192,3000,2000,5661],"delegatorTokens":9999999995339}},{"ix":12,"action":{"kind":"ConsumerSlash","val":3,"infractionHeight":0,"isDowntime":true},"partialState":{"h":3,"t":18,"outstandingDowntime":[false,true,false,true]}},{"ix":13,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":4,"t":24,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,true,false,true]}},{"ix":14,"action":{"kind":"ConsumerSlash","val":3,"infractionHeight":2,"isDowntime":true},"partialState":{"h":4,"t":24,"outstandingDowntime":[false,true,false,true]}},{"ix":15,"action":{"kind":"Delegate","val":2,"amt":1057},"partialState":{"h":2,"t":12,"tokens":[1192,4000,4057,6661],"delegation":[192,3000,3057,5661],"delegatorTokens":9999999994282}},{"ix":16,"action":{"kind":"Deliver","chain":"provider","numPackets":2},"partialState":{"h":2,"t":12,"tokens":[1192,4000,4057,6661],"delegation":[192,3000,3057,5661],"delegatorTokens":9999999994282,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":17,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":18,"action":{"kind":"ConsumerSlash","val":3,"infractionHeight":3,"isDowntime":false},"partialState":{"h":4,"t":24,"outstandingDowntime":[false,true,false,true]}},{"ix":19,"action":{"kind":"Undelegate","val":1,"amt":4016},"partialState":{"h":2,"t":12,"tokens":[1192,4000,4057,6661],"delegation":[192,3000,3057,5661],"delegatorTokens":9999999994282}},{"ix":20,"action":{"kind":"ConsumerSlash","val":1,"infractionHeight":0,"isDowntime":true},"partialState":{"h":4,"t":24,"outstandingDowntime":[false,true,false,true]}},{"ix":21,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":22,"action":{"kind":"ConsumerSlash","val":0,"infractionHeight":1,"isDowntime":true},"partialState":{"h":4,"t":24,"outstandingDowntime":[true,true,false,true]}},{"ix":23,"action":{"kind":"Deliver","chain":"consumer","numPackets":4},"partialState":{"h":4,"t":24,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[true,true,false,true]}},{"ix":24,"action":{"kind":"Undelegate","val":2,"amt":4389},"partialState":{"h":2,"t":12,"tokens":[1192,4000,4057,6661],"delegation":[192,3000,3057,5661],"delegatorTokens":9999999994282}},{"ix":25,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":3,"t":18,"tokens":[1192,4000,4057,6661],"delegation":[192,3000,3057,5661],"delegatorTokens":9999999994282,"jailed":[null,1000000000000011,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":26,"action":{"kind":"Deliver","chain":"consumer","numPackets":2},"partialState":{"h":4,"t":24,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[true,true,false,true]}},{"ix":27,"action":{"kind":"Delegate","val":1,"amt":4892},"partialState":{"h":3,"t":18,"tokens":[1192,8892,4057,6661],"delegation":[192,7892,3057,5661],"delegatorTokens":9999999989390}},{"ix":28,"action":{"kind":"Undelegate","val":3,"amt":2279},"partialState":{"h":3,"t":18,"tokens":[1192,8892,4057,4382],"delegation":[192,7892,3057,3382],"delegatorTokens":9999999989390}},{"ix":29,"action":{"kind":"Delegate","val":1,"amt":3330},"partialState":{"h":3,"t":18,"tokens":[1192,12222,4057,4382],"delegation":[192,11222,3057,3382],"delegatorTokens":9999999986060}},{"ix":30,"action":{"kind":"Undelegate","val":0,"amt":1798},"partialState":{"h":3,"t":18,"tokens":[1192,12222,4057,4382],"delegation":[192,11222,3057,3382],"delegatorTokens":9999999986060}},{"ix":31,"action":{"kind":"Deliver","chain":"consumer","numPackets":3},"partialState":{"h":4,"t":24,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[true,true,false,true]}},{"ix":32,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":4,"t":24,"tokens":[1192,12222,4057,4382],"delegation":[192,11222,3057,3382],"delegatorTokens":9999999986060,"jailed":[null,1000000000000011,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":33,"action":{"kind":"Undelegate","val":2,"amt":4995},"partialState":{"h":4,"t":24,"tokens":[1192,12222,4057,4382],"delegation":[192,11222,3057,3382],"delegatorTokens":9999999986060}},{"ix":34,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":35,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":36,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":5,"t":30,"tokens":[1192,12222,4057,4382],"delegation":[192,11222,3057,3382],"delegatorTokens":9999999986060,"jailed":[null,1000000000000011,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":37,"action":{"kind":"Delegate","val":1,"amt":1994},"partialState":{"h":5,"t":30,"tokens":[1192,14216,4057,4382],"delegation":[192,13216,3057,3382],"delegatorTokens":9999999984066}},{"ix":38,"action":{"kind":"Delegate","val":0,"amt":1395},"partialState":{"h":5,"t":30,"tokens":[2587,14216,4057,4382],"delegation":[1587,13216,3057,3382],"delegatorTokens":9999999982671}},{"ix":39,"action":{"kind":"Undelegate","val":3,"amt":3954},"partialState":{"h":5,"t":30,"tokens":[2587,14216,4057,4382],"delegation":[1587,13216,3057,3382],"delegatorTokens":9999999982671}},{"ix":40,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":6,"t":36,"tokens":[2587,14216,4057,4382],"delegation":[1587,13216,3057,3382],"delegatorTokens":9999999982671,"jailed":[null,1000000000000011,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":41,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":42,"action":{"kind":"Undelegate","val":0,"amt":2862},"partialState":{"h":6,"t":36,"tokens":[2587,14216,4057,4382],"delegation":[1587,13216,3057,3382],"delegatorTokens":9999999982671}},{"ix":43,"action":{"kind":"Undelegate","val":0,"amt":1064},"partialState":{"h":6,"t":36,"tokens":[1523,14216,4057,4382],"delegation":[523,13216,3057,3382],"delegatorTokens":9999999982671}},{"ix":44,"action":{"kind":"Deliver","chain":"provider","numPackets":2},"partialState":{"h":6,"t":36,"tokens":[1523,14216,4057,4382],"delegation":[523,13216,3057,3382],"delegatorTokens":9999999982671,"jailed":[null,1000000000000011,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":45,"action":{"kind":"Delegate","val":2,"amt":4581},"partialState":{"h":6,"t":36,"tokens":[1523,14216,8638,4382],"delegation":[523,13216,7638,3382],"delegatorTokens":9999999978090}},{"ix":46,"action":{"kind":"Deliver","chain":"provider","numPackets":5},"partialState":{"h":6,"t":36,"tokens":[1523,14216,8638,4382],"delegation":[523,13216,7638,3382],"delegatorTokens":9999999978090,"jailed":[null,1000000000000011,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":47,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":7,"t":42,"tokens":[1523,14216,8638,4382],"delegation":[523,13216,7638,3382],"delegatorTokens":9999999978090,"jailed":[null,1000000000000011,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":48,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":49,"action":{"kind":"Deliver","chain":"consumer","numPackets":2},"partialState":{"h":4,"t":24,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[true,false,false,true]}},{"ix":50,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":8,"t":48,"tokens":[1523,14216,8638,4382],"delegation":[523,13216,7638,3382],"delegatorTokens":9999999978090,"jailed":[null,1000000000000011,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":51,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":5,"t":30,"consumerPower":[null,null,4057,4382],"outstandingDowntime":[true,false,false,true]}},{"ix":52,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":9,"t":54,"tokens":[1523,14216,8638,4382],"delegation":[523,13216,7638,3382],"delegatorTokens":9999999978090,"jailed":[null,1000000000000011,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":53,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":54,"action":{"kind":"Delegate","val":2,"amt":1348},"partialState":{"h":9,"t":54,"tokens":[1523,14216,9986,4382],"delegation":[523,13216,8986,3382],"delegatorTokens":9999999976742}},{"ix":55,"action":{"kind":"Deliver","chain":"provider","numPackets":1},"partialState":{"h":9,"t":54,"tokens":[1523,14216,9986,4382],"delegation":[523,13216,8986,3382],"delegatorTokens":9999999976742,"jailed":[null,1000000000000011,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":56,"action":{"kind":"Deliver","chain":"consumer","numPackets":6},"partialState":{"h":5,"t":30,"consumerPower":[null,null,4057,4382],"outstandingDowntime":[true,false,false,true]}},{"ix":57,"action":{"kind":"Delegate","val":3,"amt":2657},"partialState":{"h":9,"t":54,"tokens":[1523,14216,9986,7039],"delegation":[523,13216,8986,6039],"delegatorTokens":9999999974085}},{"ix":58,"action":{"kind":"Delegate","val":1,"amt":1318},"partialState":{"h":9,"t":54,"tokens":[1523,15534,9986,7039],"delegation":[523,14534,8986,6039],"delegatorTokens":9999999972767}},{"ix":59,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":10,"t":60,"tokens":[1523,15534,9986,7039],"delegation":[523,14534,8986,6039],"delegatorTokens":9999999972767,"jailed":[null,1000000000000011,null,1000000000000053],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":60,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":61,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":6,"t":36,"consumerPower":[null,null,8638,4382],"outstandingDowntime":[true,false,false,true]}},{"ix":62,"action":{"kind":"Delegate","val":1,"amt":4855},"partialState":{"h":10,"t":60,"tokens":[1523,20389,9986,7039],"delegation":[523,19389,8986,6039],"delegatorTokens":9999999967912}},{"ix":63,"action":{"kind":"Undelegate","val":0,"amt":1922},"partialState":{"h":10,"t":60,"tokens":[1523,20389,9986,7039],"delegation":[523,19389,8986,6039],"delegatorTokens":9999999967912}},{"ix":64,"action":{"kind":"Deliver","chain":"provider","numPackets":2},"partialState":{"h":10,"t":60,"tokens":[1523,20389,9986,7039],"delegation":[523,19389,8986,6039],"delegatorTokens":9999999967912,"jailed":[null,1000000000000011,null,1000000000000053],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":65,"action":{"kind":"Delegate","val":1,"amt":4756},"partialState":{"h":10,"t":60,"tokens":[1523,25145,9986,7039],"delegation":[523,24145,8986,6039],"delegatorTokens":9999999963156}},{"ix":66,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":7,"t":42,"consumerPower":[null,null,8638,4382],"outstandingDowntime":[true,false,false,true]}},{"ix":67,"action":{"kind":"Delegate","val":2,"amt":3002},"partialState":{"h":10,"t":60,"tokens":[1523,25145,12988,7039],"delegation":[523,24145,11988,6039],"delegatorTokens":9999999960154}},{"ix":68,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":69,"action":{"kind":"Deliver","chain":"consumer","numPackets":5},"partialState":{"h":7,"t":42,"consumerPower":[null,null,8638,4382],"outstandingDowntime":[true,false,false,true]}},{"ix":70,"action":{"kind":"Delegate","val":2,"amt":4519},"partialState":{"h":10,"t":60,"tokens":[1523,25145,17507,7039],"delegation":[523,24145,16507,6039],"delegatorTokens":9999999955635}},{"ix":71,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":72,"action":{"kind":"Deliver","chain":"consumer","numPackets":6},"partialState":{"h":7,"t":42,"consumerPower":[null,null,8638,4382],"outstandingDowntime":[true,false,false,true]}},{"ix":73,"action":{"kind":"Delegate","val":3,"amt":1418},"partialState":{"h":10,"t":60,"tokens":[1523,25145,17507,8457],"delegation":[523,24145,16507,7457],"delegatorTokens":9999999954217}},{"ix":74,"action":{"kind":"Deliver","chain":"consumer","numPackets":4},"partialState":{"h":7,"t":42,"consumerPower":[null,null,8638,4382],"outstandingDowntime":[true,false,false,true]}},{"ix":75,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":76,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":77,"action":{"kind":"Undelegate","val":1,"amt":3404},"partialState":{"h":10,"t":60,"tokens":[1523,21741,17507,8457],"delegation":[523,20741,16507,7457],"delegatorTokens":9999999954217}},{"ix":78,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":8,"t":48,"consumerPower":[null,null,8638,4382],"outstandingDowntime":[true,false,false,true]}},{"ix":79,"action":{"kind":"Delegate","val":0,"amt":3853},"partialState":{"h":10,"t":60,"tokens":[5376,21741,17507,8457],"delegation":[4376,20741,16507,7457],"delegatorTokens":9999999950364}},{"ix":80,"action":{"kind":"Deliver","chain":"provider","numPackets":3},"partialState":{"h":10,"t":60,"tokens":[5376,21741,17507,8457],"delegation":[4376,20741,16507,7457],"delegatorTokens":9999999950364,"jailed":[null,1000000000000011,null,1000000000000053],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":81,"action":{"kind":"Delegate","val":0,"amt":2224},"partialState":{"h":10,"t":60,"tokens":[7600,21741,17507,8457],"delegation":[6600,20741,16507,7457],"delegatorTokens":9999999948140}},{"ix":82,"action":{"kind":"Deliver","chain":"consumer","numPackets":3},"partialState":{"h":8,"t":48,"consumerPower":[null,null,8638,4382],"outstandingDowntime":[true,false,false,true]}},{"ix":83,"action":{"kind":"Deliver","chain":"provider","numPackets":6},"partialState":{"h":10,"t":60,"tokens":[7600,21741,17507,8457],"delegation":[6600,20741,16507,7457],"delegatorTokens":9999999948140,"jailed":[null,1000000000000011,null,1000000000000053],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":84,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":11,"t":66,"tokens":[7600,21741,17507,8457],"delegation":[6600,20741,16507,7457],"delegatorTokens":9999999948140,"jailed":[1000000000000059,1000000000000011,null,1000000000000053],"status":["bonded","unbonding","bonded","unbonding"]}},{"ix":85,"action":{"kind":"Delegate","val":0,"amt":4099},"partialState":{"h":11,"t":66,"tokens":[11699,21741,17507,8457],"delegation":[10699,20741,16507,7457],"delegatorTokens":9999999944041}},{"ix":86,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":12,"t":72,"tokens":[11699,21741,17507,8457],"delegation":[10699,20741,16507,7457],"delegatorTokens":9999999944041,"jailed":[1000000000000059,1000000000000011,null,1000000000000053],"status":["unbonding","unbonding","bonded","unbonding"]}},{"ix":87,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":88,"action":{"kind":"Undelegate","val":1,"amt":2768},"partialState":{"h":12,"t":72,"tokens":[11699,18973,17507,8457],"delegation":[10699,17973,16507,7457],"delegatorTokens":9999999944041}},{"ix":89,"action":{"kind":"Deliver","chain":"consumer","numPackets":5},"partialState":{"h":8,"t":48,"consumerPower":[null,null,8638,4382],"outstandingDowntime":[false,false,false,false]}},{"ix":90,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":91,"action":{"kind":"Delegate","val":1,"amt":3461},"partialState":{"h":12,"t":72,"tokens":[11699,22434,17507,8457],"delegation":[10699,21434,16507,7457],"delegatorTokens":9999999940580}},{"ix":92,"action":{"kind":"Delegate","val":2,"amt":3789},"partialState":{"h":12,"t":72,"tokens":[11699,22434,21296,8457],"delegation":[10699,21434,20296,7457],"delegatorTokens":9999999936791}},{"ix":93,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":9,"t":54,"consumerPower":[7600,null,17507,null],"outstandingDowntime":[false,false,false,false]}},{"ix":94,"action":{"kind":"Undelegate","val":3,"amt":3187},"partialState":{"h":12,"t":72,"tokens":[11699,22434,21296,5270],"delegation":[10699,21434,20296,4270],"delegatorTokens":9999999936791}},{"ix":95,"action":{"kind":"Deliver","chain":"provider","numPackets":2},"partialState":{"h":12,"t":72,"tokens":[11699,22434,21296,5270],"delegation":[10699,21434,20296,4270],"delegatorTokens":9999999936791,"jailed":[1000000000000059,1000000000000011,null,1000000000000053],"status":["unbonding","unbonding","bonded","unbonding"]}},{"ix":96,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":10,"t":60,"consumerPower":[7600,null,17507,null],"outstandingDowntime":[false,false,false,false]}},{"ix":97,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":98,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":99,"action":{"kind":"Undelegate","val":3,"amt":3999},"partialState":{"h":12,"t":72,"tokens":[11699,22434,21296,1271],"delegation":[10699,21434,20296,271],"delegatorTokens":9999999936791}},{"ix":100,"action":{"kind":"Undelegate","val":3,"amt":4136},"partialState":{"h":12,"t":72,"tokens":[11699,22434,21296,1271],"delegation":[10699,21434,20296,271],"delegatorTokens":9999999936791}},{"ix":101,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":102,"action":{"kind":"Delegate","val":1,"amt":3975},"partialState":{"h":12,"t":72,"tokens":[11699,26409,21296,1271],"delegation":[10699,25409,20296,271],"delegatorTokens":9999999932816}},{"ix":103,"action":{"kind":"Deliver","chain":"consumer","numPackets":4},"partialState":{"h":10,"t":60,"consumerPower":[7600,null,17507,null],"outstandingDowntime":[false,false,false,false]}},{"ix":104,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":105,"action":{"kind":"Deliver","chain":"provider","numPackets":5},"partialState":{"h":12,"t":72,"tokens":[11699,26409,21296,1271],"delegation":[10699,25409,20296,271],"delegatorTokens":9999999932816,"jailed":[1000000000000059,1000000000000011,null,1000000000000053],"status":["unbonding","unbonding","bonded","unbonding"]}},{"ix":106,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":107,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":13,"t":78,"tokens":[11699,26409,21296,1271],"delegation":[10699,25409,20296,271],"delegatorTokens":9999999932816,"jailed":[1000000000000059,1000000000000011,null,1000000000000053],"status":["unbonding","unbonding","bonded","unbonding"]}},{"ix":108,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":109,"action":{"kind":"Deliver","chain":"consumer","numPackets":5},"partialState":{"h":10,"t":60,"consumerPower":[7600,null,17507,null],"outstandingDowntime":[false,false,false,false]}},{"ix":110,"action":{"kind":"Undelegate","val":3,"amt":1478},"partialState":{"h":13,"t":78,"tokens":[11699,26409,21296,1271],"delegation":[10699,25409,20296,271],"delegatorTokens":9999999932816}},{"ix":111,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":112,"action":{"kind":"Deliver","chain":"consumer","numPackets":4},"partialState":{"h":10,"t":60,"consumerPower":[7600,null,17507,null],"outstandingDowntime":[false,false,false,false]}},{"ix":113,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":114,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":11,"t":66,"consumerPower":[null,null,17507,null],"outstandingDowntime":[false,false,false,false]}},{"ix":115,"action":{"kind":"Deliver","chain":"consumer","numPackets":1},"partialState":{"h":11,"t":66,"consumerPower":[null,null,17507,null],"outstandingDowntime":[false,false,false,false]}},{"ix":116,"action":{"kind":"Undelegate","val":3,"amt":4019},"partialState":{"h":13,"t":78,"tokens":[11699,26409,21296,1271],"delegation":[10699,25409,20296,271],"delegatorTokens":9999999932816}},{"ix":117,"action":{"kind":"Delegate","val":1,"amt":4473},"partialState":{"h":13,"t":78,"tokens":[11699,30882,21296,1271],"delegation":[10699,29882,20296,271],"delegatorTokens":9999999928343}},{"ix":118,"action":{"kind":"Delegate","val":0,"amt":2940},"partialState":{"h":13,"t":78,"tokens":[14639,30882,21296,1271],"delegation":[13639,29882,20296,271],"delegatorTokens":9999999925403}},{"ix":119,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":12,"t":72,"consumerPower":[null,null,17507,null],"outstandingDowntime":[false,false,false,false]}},{"ix":120,"action":{"kind":"Delegate","val":0,"amt":3628},"partialState":{"h":13,"t":78,"tokens":[18267,30882,21296,1271],"delegation":[17267,29882,20296,271],"delegatorTokens":9999999921775}},{"ix":121,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":122,"action":{"kind":"Undelegate","val":0,"amt":4602},"partialState":{"h":13,"t":78,"tokens":[13665,30882,21296,1271],"delegation":[12665,29882,20296,271],"delegatorTokens":9999999921775}},{"ix":123,"action":{"kind":"Deliver","chain":"provider","numPackets":5},"partialState":{"h":13,"t":78,"tokens":[13665,30882,21296,1271],"delegation":[12665,29882,20296,271],"delegatorTokens":9999999921775,"jailed":[1000000000000059,1000000000000011,null,1000000000000053],"status":["unbonding","unbonding","bonded","unbonding"]}},{"ix":124,"action":{"kind":"Deliver","chain":"consumer","numPackets":6},"partialState":{"h":12,"t":72,"consumerPower":[null,null,17507,null],"outstandingDowntime":[false,false,false,false]}},{"ix":125,"action":{"kind":"Undelegate","val":3,"amt":2891},"partialState":{"h":13,"t":78,"tokens":[13665,30882,21296,1271],"delegation":[12665,29882,20296,271],"delegatorTokens":9999999921775}},{"ix":126,"action":{"kind":"Delegate","val":3,"amt":2075},"partialState":{"h":13,"t":78,"tokens":[13665,30882,21296,3346],"delegation":[12665,29882,20296,2346],"delegatorTokens":9999999919700}},{"ix":127,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":13,"t":78,"consumerPower":[null,null,17507,null],"outstandingDowntime":[false,false,false,false]}},{"ix":128,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":14,"t":84,"tokens":[13665,30882,21296,3346],"delegation":[12665,29882,20296,2346],"delegatorTokens":9999999919700,"jailed":[1000000000000059,1000000000000011,null,1000000000000053],"status":["unbonding","unbonding","bonded","unbonding"]}},{"ix":129,"action":{"kind":"Undelegate","val":2,"amt":1273},"partialState":{"h":14,"t":84,"tokens":[13665,30882,20023,3346],"delegation":[12665,29882,19023,2346],"delegatorTokens":9999999919700}},{"ix":130,"action":{"kind":"Deliver","chain":"provider","numPackets":2},"partialState":{"h":14,"t":84,"tokens":[13665,30882,20023,3346],"delegation":[12665,29882,19023,2346],"delegatorTokens":9999999919700,"jailed":[1000000000000059,1000000000000011,null,1000000000000053],"status":["unbonding","unbonding","bonded","unbonding"]}},{"ix":131,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":14,"t":84,"consumerPower":[null,null,17507,null],"outstandingDowntime":[false,false,false,false]}},{"ix":132,"action":{"kind":"Delegate","val":2,"amt":2707},"partialState":{"h":14,"t":84,"tokens":[13665,30882,22730,3346],"delegation":[12665,29882,21730,2346],"delegatorTokens":9999999916993}},{"ix":133,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":15,"t":90,"consumerPower":[null,null,17507,null],"outstandingDowntime":[false,false,false,false]}},{"ix":134,"action":{"kind":"Deliver","chain":"consumer","numPackets":5},"partialState":{"h":15,"t":90,"consumerPower":[null,null,17507,null],"outstandingDowntime":[false,false,false,false]}},{"ix":135,"action":{"kind":"Deliver","chain":"provider","numPackets":5},"partialState":{"h":14,"t":84,"tokens":[13665,30882,22730,3346],"delegation":[12665,29882,21730,2346],"delegatorTokens":9999999916993,"jailed":[1000000000000059,1000000000000011,null,1000000000000053],"status":["unbonding","unbonding","bonded","unbonding"]}},{"ix":136,"action":{"kind":"Deliver","chain":"provider","numPackets":5},"partialState":{"h":14,"t":84,"tokens":[13665,30882,22730,3346],"delegation":[12665,29882,21730,2346],"delegatorTokens":9999999916993,"jailed":[1000000000000059,1000000000000011,null,1000000000000053],"status":["unbonding","unbonding","bonded","unbonding"]}},{"ix":137,"action":{"kind":"Delegate","val":3,"amt":4704},"partialState":{"h":14,"t":84,"tokens":[13665,30882,22730,8050],"delegation":[12665,29882,21730,7050],"delegatorTokens":9999999912289}},{"ix":138,"action":{"kind":"Delegate","val":2,"amt":2958},"partialState":{"h":14,"t":84,"tokens":[13665,30882,25688,8050],"delegation":[12665,29882,24688,7050],"delegatorTokens":9999999909331}},{"ix":139,"action":{"kind":"Deliver","chain":"consumer","numPackets":2},"partialState":{"h":15,"t":90,"consumerPower":[null,null,17507,null],"outstandingDowntime":[false,false,false,false]}},{"ix":140,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":141,"action":{"kind":"Deliver","chain":"consumer","numPackets":6},"partialState":{"h":15,"t":90,"consumerPower":[null,null,17507,null],"outstandingDowntime":[false,false,false,false]}},{"ix":142,"action":{"kind":"Delegate","val":0,"amt":3118},"partialState":{"h":14,"t":84,"tokens":[16783,30882,25688,8050],"delegation":[15783,29882,24688,7050],"delegatorTokens":9999999906213}},{"ix":143,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":16,"t":96,"consumerPower":[null,null,21296,null],"outstandingDowntime":[false,false,false,false]}},{"ix":144,"action":{"kind":"Undelegate","val":3,"amt":2177},"partialState":{"h":14,"t":84,"tokens":[16783,30882,25688,5873],"delegation":[15783,29882,24688,4873],"delegatorTokens":9999999906213}},{"ix":145,"action":{"kind":"Delegate","val":0,"amt":1020},"partialState":{"h":14,"t":84,"tokens":[17803,30882,25688,5873],"delegation":[16803,29882,24688,4873],"delegatorTokens":9999999905193}},{"ix":146,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":147,"action":{"kind":"Deliver","chain":"provider","numPackets":4},"partialState":{"h":14,"t":84,"tokens":[17803,30882,25688,5873],"delegation":[16803,29882,24688,4873],"delegatorTokens":9999999905193,"jailed":[1000000000000059,1000000000000011,null,1000000000000053],"status":["unbonding","unbonding","bonded","unbonding"]}},{"ix":148,"action":{"kind":"Delegate","val":3,"amt":1663},"partialState":{"h":14,"t":84,"tokens":[17803,30882,25688,7536],"delegation":[16803,29882,24688,6536],"delegatorTokens":9999999903530}},{"ix":149,"action":{"kind":"Delegate","val":3,"amt":2726},"partialState":{"h":14,"t":84,"tokens":[17803,30882,25688,10262],"delegation":[16803,29882,24688,9262],"delegatorTokens":9999999900804}},{"ix":150,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":17,"t":102,"consumerPower":[null,null,21296,null],"outstandingDowntime":[false,false,false,false]}},{"ix":151,"action":{"kind":"Delegate","val":1,"amt":1558},"partialState":{"h":14,"t":84,"tokens":[17803,32440,25688,10262],"delegation":[16803,31440,24688,9262],"delegatorTokens":9999999899246}},{"ix":152,"action":{"kind":"Deliver","chain":"provider","numPackets":6},"partialState":{"h":14,"t":84,"tokens":[17803,32440,25688,10262],"delegation":[16803,31440,24688,9262],"delegatorTokens":9999999899246,"jailed":[1000000000000059,1000000000000011,null,1000000000000053],"status":["unbonding","unbonding","bonded","unbonding"]}},{"ix":153,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":18,"t":108,"consumerPower":[null,null,21296,null],"outstandingDowntime":[false,false,false,false]}},{"ix":154,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":15,"t":90,"tokens":[17803,32440,25688,10262],"delegation":[16803,31440,24688,9262],"delegatorTokens":9999999903054,"jailed":[1000000000000059,1000000000000011,null,1000000000000053],"status":["unbonding","unbonding","bonded","unbonding"]}},{"ix":155,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":19,"t":114,"consumerPower":[null,null,21296,null],"outstandingDowntime":[false,false,false,false]}},{"ix":156,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":20,"t":120,"consumerPower":[null,null,21296,null],"outstandingDowntime":[false,false,false,false]}},{"ix":157,"action":{"kind":"Delegate","val":2,"amt":3867},"partialState":{"h":15,"t":90,"tokens":[17803,32440,29555,10262],"delegation":[16803,31440,28555,9262],"delegatorTokens":9999999899187}},{"ix":158,"action":{"kind":"Undelegate","val":1,"amt":4923},"partialState":{"h":15,"t":90,"tokens":[17803,27517,29555,10262],"delegation":[16803,26517,28555,9262],"delegatorTokens":9999999899187}},{"ix":159,"action":{"kind":"Deliver","chain":"provider","numPackets":3},"partialState":{"h":15,"t":90,"tokens":[17803,27517,29555,10262],"delegation":[16803,26517,28555,9262],"delegatorTokens":9999999899187,"jailed":[1000000000000059,1000000000000011,null,1000000000000053],"status":["unbonding","unbonding","bonded","unbonding"]}},{"ix":160,"action":{"kind":"Undelegate","val":1,"amt":4643},"partialState":{"h":15,"t":90,"tokens":[17803,22874,29555,10262],"delegation":[16803,21874,28555,9262],"delegatorTokens":9999999899187}},{"ix":161,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":162,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":21,"t":126,"consumerPower":[null,null,21296,null],"outstandingDowntime":[false,false,false,false]}},{"ix":163,"action":{"kind":"Delegate","val":0,"amt":2743},"partialState":{"h":15,"t":90,"tokens":[20546,22874,29555,10262],"delegation":[19546,21874,28555,9262],"delegatorTokens":9999999896444}},{"ix":164,"action":{"kind":"Undelegate","val":3,"amt":4879},"partialState":{"h":15,"t":90,"tokens":[20546,22874,29555,5383],"delegation":[19546,21874,28555,4383],"delegatorTokens":9999999896444}},{"ix":165,"action":{"kind":"Deliver","chain":"provider","numPackets":1},"partialState":{"h":15,"t":90,"tokens":[20546,22874,29555,5383],"delegation":[19546,21874,28555,4383],"delegatorTokens":9999999896444,"jailed":[1000000000000059,1000000000000011,null,1000000000000053],"status":["unbonding","unbonding","bonded","unbonding"]}},{"ix":166,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":167,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":22,"t":132,"consumerPower":[null,null,21296,null],"outstandingDowntime":[false,false,false,false]}},{"ix":168,"action":{"kind":"Delegate","val":1,"amt":4986},"partialState":{"h":15,"t":90,"tokens":[20546,27860,29555,5383],"delegation":[19546,26860,28555,4383],"delegatorTokens":9999999891458}},{"ix":169,"action":{"kind":"Delegate","val":1,"amt":1120},"partialState":{"h":15,"t":90,"tokens":[20546,28980,29555,5383],"delegation":[19546,27980,28555,4383],"delegatorTokens":9999999890338}},{"ix":170,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":171,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":16,"t":96,"tokens":[20546,28980,29555,5383],"delegation":[19546,27980,28555,4383],"delegatorTokens":9999999892617,"jailed":[1000000000000059,1000000000000011,null,1000000000000053],"status":["unbonding","unbonded","bonded","unbonding"]}},{"ix":172,"action":{"kind":"Deliver","chain":"consumer","numPackets":5},"partialState":{"h":22,"t":132,"consumerPower":[null,null,21296,null],"outstandingDowntime":[false,false,false,false]}},{"ix":173,"action":{"kind":"Delegate","val":0,"amt":1791},"partialState":{"h":16,"t":96,"tokens":[22337,28980,29555,5383],"delegation":[21337,27980,28555,4383],"delegatorTokens":9999999890826}},{"ix":174,"action":{"kind":"Undelegate","val":1,"amt":2499},"partialState":{"h":16,"t":96,"tokens":[22337,26481,29555,5383],"delegation":[21337,25481,28555,4383],"delegatorTokens":9999999890826}},{"ix":175,"action":{"kind":"Undelegate","val":2,"amt":2217},"partialState":{"h":16,"t":96,"tokens":[22337,26481,27338,5383],"delegation":[21337,25481,26338,4383],"delegatorTokens":9999999890826}},{"ix":176,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":17,"t":102,"tokens":[22337,26481,27338,5383],"delegation":[21337,25481,26338,4383],"delegatorTokens":9999999890826,"jailed":[1000000000000059,1000000000000011,null,1000000000000053],"status":["unbonding","unbonded","bonded","unbonding"]}},{"ix":177,"action":{"kind":"Undelegate","val":3,"amt":3827},"partialState":{"h":17,"t":102,"tokens":[22337,26481,27338,1556],"delegation":[21337,25481,26338,556],"delegatorTokens":9999999890826}},{"ix":178,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":179,"action":{"kind":"Undelegate","val":1,"amt":1130},"partialState":{"h":17,"t":102,"tokens":[22337,25351,27338,1556],"delegation":[21337,24351,26338,556],"delegatorTokens":9999999890826}},{"ix":180,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":181,"action":{"kind":"Deliver","chain":"consumer","numPackets":3},"partialState":{"h":22,"t":132,"consumerPower":[null,null,21296,null],"outstandingDowntime":[false,false,false,false]}},{"ix":182,"action":{"kind":"Undelegate","val":0,"amt":2918},"partialState":{"h":17,"t":102,"tokens":[19419,25351,27338,1556],"delegation":[18419,24351,26338,556],"delegatorTokens":9999999890826}},{"ix":183,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":184,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":185,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":186,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":18,"t":108,"tokens":[19419,25351,27338,1556],"delegation":[18419,24351,26338,556],"delegatorTokens":9999999890826,"jailed":[1000000000000059,1000000000000011,null,1000000000000053],"status":["unbonding","unbonded","bonded","unbonding"]}},{"ix":187,"action":{"kind":"Undelegate","val":3,"amt":1475},"partialState":{"h":18,"t":108,"tokens":[19419,25351,27338,1556],"delegation":[18419,24351,26338,556],"delegatorTokens":9999999890826}},{"ix":188,"action":{"kind":"Undelegate","val":2,"amt":1712},"partialState":{"h":18,"t":108,"tokens":[19419,25351,25626,1556],"delegation":[18419,24351,24626,556],"delegatorTokens":9999999890826}},{"ix":189,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":190,"action":{"kind":"Undelegate","val":0,"amt":1995},"partialState":{"h":18,"t":108,"tokens":[17424,25351,25626,1556],"delegation":[16424,24351,24626,556],"delegatorTokens":9999999890826}},{"ix":191,"action":{"kind":"Delegate","val":1,"amt":2761},"partialState":{"h":18,"t":108,"tokens":[17424,28112,25626,1556],"delegation":[16424,27112,24626,556],"delegatorTokens":9999999888065}},{"ix":192,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":23,"t":138,"consumerPower":[null,null,29555,null],"outstandingDowntime":[false,false,false,false]}},{"ix":193,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":19,"t":114,"tokens":[17424,28112,25626,1556],"delegation":[16424,27112,24626,556],"delegatorTokens":9999999889129,"jailed":[1000000000000059,1000000000000011,null,1000000000000053],"status":["unbonding","unbonded","bonded","unbonding"]}},{"ix":194,"action":{"kind":"Delegate","val":3,"amt":3167},"partialState":{"h":19,"t":114,"tokens":[17424,28112,25626,4723],"delegation":[16424,27112,24626,3723],"delegatorTokens":9999999885962}},{"ix":195,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":196,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":197,"action":{"kind":"Undelegate","val":3,"amt":2094},"partialState":{"h":19,"t":114,"tokens":[17424,28112,25626,2629],"delegation":[16424,27112,24626,1629],"delegatorTokens":9999999885962}},{"ix":198,"action":{"kind":"Deliver","chain":"provider","numPackets":4},"partialState":{"h":19,"t":114,"tokens":[17424,28112,25626,2629],"delegation":[16424,27112,24626,1629],"delegatorTokens":9999999885962,"jailed":[1000000000000059,1000000000000011,null,1000000000000053],"status":["unbonding","unbonded","bonded","unbonding"]}},{"ix":199,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":20,"t":120,"tokens":[17424,28112,25626,2629],"delegation":[16424,27112,24626,1629],"delegatorTokens":9999999885962,"jailed":[1000000000000059,1000000000000011,null,1000000000000053],"status":["unbonding","unbonded","bonded","unbonding"]}}],"events":["send_double_sign_slash_request","send_downtime_slash_request","downtime_slash_request_outstanding","send_downtime_slash_request","downtime_slash_request_outstanding","receive_double_sign_slash_request","send_double_sign_slash_request","insufficient_shares","downtime_slash_request_outstanding","send_downtime_slash_request","insufficient_shares","more_than_one_third_val_power_change","receive_downtime_slash_request","jail","send_vsc_with_downtime_ack","insufficient_shares","send_vsc_without_downtime_ack","insufficient_shares","insufficient_shares","insufficient_shares","send_vsc_without_downtime_ack","receive_downtime_slash_ack","consumer_del_val","consumer_del_val","consumer_add_val","consumer_add_val","receive_downtime_slash_request","jail","send_vsc_with_downtime_ack","consumer_update_val","insufficient_shares","receive_double_sign_slash_request","rebond_unval","receive_downtime_slash_request","jail","send_vsc_with_downtime_ack","send_vsc_without_downtime_ack","receive_downtime_slash_ack","receive_downtime_slash_ack","consumer_update_val","consumer_del_val","consumer_add_val","insufficient_shares","send_vsc_without_downtime_ack","insufficient_shares","consumer_del_val","insufficient_shares","insufficient_shares","send_vsc_not_because_change","send_vsc_without_downtime_ack","consumer_send_maturation","consumer_send_maturation","consumer_send_maturation","consumer_update_val","consumer_send_maturation","consumer_send_maturation","some_undels_expired_but_not_completed","complete_undel_immediate","complete_undel_immediate","set_unval_hold_false","set_undel_hold_false","set_undel_hold_false","send_vsc_without_downtime_ack","consumer_send_maturation","complete_unval_in_endblock","complete_undel_in_endblock","set_undel_hold_false","set_unval_hold_false","set_unval_hold_false","send_vsc_without_downtime_ack","send_vsc_without_downtime_ack","send_vsc_not_because_change","send_vsc_without_downtime_ack","insufficient_shares","consumer_update_val","complete_undel_in_endblock","send_vsc_without_downtime_ack","send_vsc_not_because_change","send_vsc_without_downtime_ack"]},{"meta":{"commit":"7ffd0c04e4205cbc9caf212abfe6c59ee43153bf"},"constants":{"P":"provider","C":"consumer","UNBONDING_SECONDS_P":70,"UNBONDING_SECONDS_C":50,"TRUSTING_SECONDS":49,"NUM_VALIDATORS":4,"MAX_VALIDATORS":2,"SLASH_DOUBLESIGN":0,"SLASH_DOWNTIME":0,"JAIL_SECONDS":999999999999999,"BLOCK_SECONDS":6,"INITIAL_DELEGATOR_TOKENS":10000000000000,"DELEGATE_AMT_MIN":1000,"DELEGATE_AMT_MAX":5000,"UNDELEGATE_AMT_MIN":1000,"UNDELEGATE_AMT_MAX":5000,"ISDOWNTIME_PROBABILITY":0.5,"MAX_NUM_PACKETS_FOR_DELIVER":6},"actions":[{"ix":0,"action":{"kind":"ConsumerSlash","val":0,"infractionHeight":0,"isDowntime":true},"partialState":{"h":1,"t":6,"outstandingDowntime":[true,false,false,false]}},{"ix":1,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":2,"t":12,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[true,false,false,false]}},{"ix":2,"action":{"kind":"Delegate","val":0,"amt":2041},"partialState":{"h":1,"t":6,"tokens":[7041,4000,3000,2000],"delegation":[6041,3000,2000,1000],"delegatorTokens":9999999997959}},{"ix":3,"action":{"kind":"ConsumerSlash","val":3,"infractionHeight":0,"isDowntime":true},"partialState":{"h":2,"t":12,"outstandingDowntime":[true,false,false,true]}},{"ix":4,"action":{"kind":"Undelegate","val":0,"amt":4049},"partialState":{"h":1,"t":6,"tokens":[2992,4000,3000,2000],"delegation":[1992,3000,2000,1000],"delegatorTokens":9999999997959}},{"ix":5,"action":{"kind":"Undelegate","val":0,"amt":2588},"partialState":{"h":1,"t":6,"tokens":[2992,4000,3000,2000],"delegation":[1992,3000,2000,1000],"delegatorTokens":9999999997959}},{"ix":6,"action":{"kind":"ConsumerSlash","val":3,"infractionHeight":0,"isDowntime":true},"partialState":{"h":2,"t":12,"outstandingDowntime":[true,false,false,true]}},{"ix":7,"action":{"kind":"Delegate","val":3,"amt":1687},"partialState":{"h":1,"t":6,"tokens":[2992,4000,3000,3687],"delegation":[1992,3000,2000,2687],"delegatorTokens":9999999996272}},{"ix":8,"action":{"kind":"Deliver","chain":"provider","numPackets":6},"partialState":{"h":1,"t":6,"tokens":[2992,4000,3000,3687],"delegation":[1992,3000,2000,2687],"delegatorTokens":9999999996272,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":9,"action":{"kind":"Delegate","val":0,"amt":1312},"partialState":{"h":1,"t":6,"tokens":[4304,4000,3000,3687],"delegation":[3304,3000,2000,2687],"delegatorTokens":9999999994960}},{"ix":10,"action":{"kind":"Deliver","chain":"provider","numPackets":2},"partialState":{"h":1,"t":6,"tokens":[4304,4000,3000,3687],"delegation":[3304,3000,2000,2687],"delegatorTokens":9999999994960,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":11,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":3,"t":18,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[true,false,false,true]}},{"ix":12,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":13,"action":{"kind":"Undelegate","val":0,"amt":3669},"partialState":{"h":1,"t":6,"tokens":[4304,4000,3000,3687],"delegation":[3304,3000,2000,2687],"delegatorTokens":9999999994960}},{"ix":14,"action":{"kind":"ConsumerSlash","val":0,"infractionHeight":1,"isDowntime":true},"partialState":{"h":3,"t":18,"outstandingDowntime":[true,false,false,true]}},{"ix":15,"action":{"kind":"Delegate","val":0,"amt":4037},"partialState":{"h":1,"t":6,"tokens":[8341,4000,3000,3687],"delegation":[7341,3000,2000,2687],"delegatorTokens":9999999990923}},{"ix":16,"action":{"kind":"Undelegate","val":0,"amt":1436},"partialState":{"h":1,"t":6,"tokens":[6905,4000,3000,3687],"delegation":[5905,3000,2000,2687],"delegatorTokens":9999999990923}},{"ix":17,"action":{"kind":"Deliver","chain":"consumer","numPackets":2},"partialState":{"h":3,"t":18,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[true,false,false,true]}},{"ix":18,"action":{"kind":"ConsumerSlash","val":0,"infractionHeight":0,"isDowntime":true},"partialState":{"h":3,"t":18,"outstandingDowntime":[true,false,false,true]}},{"ix":19,"action":{"kind":"Delegate","val":1,"amt":1588},"partialState":{"h":1,"t":6,"tokens":[6905,5588,3000,3687],"delegation":[5905,4588,2000,2687],"delegatorTokens":9999999989335}},{"ix":20,"action":{"kind":"Deliver","chain":"provider","numPackets":6},"partialState":{"h":1,"t":6,"tokens":[6905,5588,3000,3687],"delegation":[5905,4588,2000,2687],"delegatorTokens":9999999989335,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":21,"action":{"kind":"ConsumerSlash","val":3,"infractionHeight":2,"isDowntime":true},"partialState":{"h":3,"t":18,"outstandingDowntime":[true,false,false,true]}},{"ix":22,"action":{"kind":"Delegate","val":0,"amt":2880},"partialState":{"h":1,"t":6,"tokens":[9785,5588,3000,3687],"delegation":[8785,4588,2000,2687],"delegatorTokens":9999999986455}},{"ix":23,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":24,"action":{"kind":"Delegate","val":3,"amt":1396},"partialState":{"h":1,"t":6,"tokens":[9785,5588,3000,5083],"delegation":[8785,4588,2000,4083],"delegatorTokens":9999999985059}},{"ix":25,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":26,"action":{"kind":"Delegate","val":3,"amt":3053},"partialState":{"h":1,"t":6,"tokens":[9785,5588,3000,8136],"delegation":[8785,4588,2000,7136],"delegatorTokens":9999999982006}},{"ix":27,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":2,"t":12,"tokens":[9785,5588,3000,8136],"delegation":[8785,4588,2000,7136],"delegatorTokens":9999999982006,"jailed":[1000000000000005,null,null,null],"status":["bonded","unbonding","unbonded","bonded"]}},{"ix":28,"action":{"kind":"Delegate","val":1,"amt":3092},"partialState":{"h":2,"t":12,"tokens":[9785,8680,3000,8136],"delegation":[8785,7680,2000,7136],"delegatorTokens":9999999978914}},{"ix":29,"action":{"kind":"ConsumerSlash","val":0,"infractionHeight":0,"isDowntime":false},"partialState":{"h":3,"t":18,"outstandingDowntime":[true,false,false,true]}},{"ix":30,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":4,"t":24,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[true,false,false,true]}},{"ix":31,"action":{"kind":"Undelegate","val":2,"amt":2184},"partialState":{"h":2,"t":12,"tokens":[9785,8680,3000,8136],"delegation":[8785,7680,2000,7136],"delegatorTokens":9999999978914}},{"ix":32,"action":{"kind":"Undelegate","val":3,"amt":4655},"partialState":{"h":2,"t":12,"tokens":[9785,8680,3000,3481],"delegation":[8785,7680,2000,2481],"delegatorTokens":9999999978914}},{"ix":33,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":34,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":35,"action":{"kind":"Delegate","val":0,"amt":4640},"partialState":{"h":2,"t":12,"tokens":[14425,8680,3000,3481],"delegation":[13425,7680,2000,2481],"delegatorTokens":9999999974274}},{"ix":36,"action":{"kind":"Undelegate","val":2,"amt":2908},"partialState":{"h":2,"t":12,"tokens":[14425,8680,3000,3481],"delegation":[13425,7680,2000,2481],"delegatorTokens":9999999974274}},{"ix":37,"action":{"kind":"Deliver","chain":"consumer","numPackets":4},"partialState":{"h":4,"t":24,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[true,false,false,true]}},{"ix":38,"action":{"kind":"Deliver","chain":"consumer","numPackets":6},"partialState":{"h":4,"t":24,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[true,false,false,true]}},{"ix":39,"action":{"kind":"Delegate","val":1,"amt":4752},"partialState":{"h":2,"t":12,"tokens":[14425,13432,3000,3481],"delegation":[13425,12432,2000,2481],"delegatorTokens":9999999969522}},{"ix":40,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":41,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":42,"action":{"kind":"Undelegate","val":2,"amt":2013},"partialState":{"h":2,"t":12,"tokens":[14425,13432,3000,3481],"delegation":[13425,12432,2000,2481],"delegatorTokens":9999999969522}},{"ix":43,"action":{"kind":"ConsumerSlash","val":3,"infractionHeight":3,"isDowntime":true},"partialState":{"h":4,"t":24,"outstandingDowntime":[true,false,false,true]}},{"ix":44,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":45,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":46,"action":{"kind":"Deliver","chain":"provider","numPackets":1},"partialState":{"h":2,"t":12,"tokens":[14425,13432,3000,3481],"delegation":[13425,12432,2000,2481],"delegatorTokens":9999999969522,"jailed":[1000000000000005,null,null,null],"status":["bonded","unbonding","unbonded","bonded"]}},{"ix":47,"action":{"kind":"Deliver","chain":"provider","numPackets":6},"partialState":{"h":2,"t":12,"tokens":[14425,13432,3000,3481],"delegation":[13425,12432,2000,2481],"delegatorTokens":9999999969522,"jailed":[1000000000000005,null,null,null],"status":["bonded","unbonding","unbonded","bonded"]}},{"ix":48,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":3,"t":18,"tokens":[14425,13432,3000,3481],"delegation":[13425,12432,2000,2481],"delegatorTokens":9999999969522,"jailed":[1000000000000005,null,null,1000000000000011],"status":["unbonding","bonded","unbonded","bonded"]}},{"ix":49,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":50,"action":{"kind":"Undelegate","val":1,"amt":2756},"partialState":{"h":3,"t":18,"tokens":[14425,10676,3000,3481],"delegation":[13425,9676,2000,2481],"delegatorTokens":9999999969522}},{"ix":51,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":52,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":4,"t":24,"tokens":[14425,10676,3000,3481],"delegation":[13425,9676,2000,2481],"delegatorTokens":9999999969522,"jailed":[1000000000000005,null,null,1000000000000011],"status":["unbonding","bonded","bonded","unbonding"]}},{"ix":53,"action":{"kind":"Undelegate","val":3,"amt":3375},"partialState":{"h":4,"t":24,"tokens":[14425,10676,3000,3481],"delegation":[13425,9676,2000,2481],"delegatorTokens":9999999969522}},{"ix":54,"action":{"kind":"Deliver","chain":"provider","numPackets":6},"partialState":{"h":4,"t":24,"tokens":[14425,10676,3000,3481],"delegation":[13425,9676,2000,2481],"delegatorTokens":9999999969522,"jailed":[1000000000000005,null,null,1000000000000011],"status":["unbonding","bonded","bonded","unbonding"]}},{"ix":55,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":56,"action":{"kind":"Deliver","chain":"provider","numPackets":6},"partialState":{"h":4,"t":24,"tokens":[14425,10676,3000,3481],"delegation":[13425,9676,2000,2481],"delegatorTokens":9999999969522,"jailed":[1000000000000005,null,null,1000000000000011],"status":["unbonding","bonded","bonded","unbonding"]}},{"ix":57,"action":{"kind":"Delegate","val":3,"amt":4997},"partialState":{"h":4,"t":24,"tokens":[14425,10676,3000,8478],"delegation":[13425,9676,2000,7478],"delegatorTokens":9999999964525}},{"ix":58,"action":{"kind":"Deliver","chain":"consumer","numPackets":1},"partialState":{"h":4,"t":24,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,false,false,true]}},{"ix":59,"action":{"kind":"Undelegate","val":0,"amt":3462},"partialState":{"h":4,"t":24,"tokens":[10963,10676,3000,8478],"delegation":[9963,9676,2000,7478],"delegatorTokens":9999999964525}},{"ix":60,"action":{"kind":"Deliver","chain":"consumer","numPackets":4},"partialState":{"h":4,"t":24,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":61,"action":{"kind":"ConsumerSlash","val":1,"infractionHeight":0,"isDowntime":false},"partialState":{"h":4,"t":24,"outstandingDowntime":[false,false,false,false]}},{"ix":62,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":63,"action":{"kind":"Deliver","chain":"provider","numPackets":4},"partialState":{"h":4,"t":24,"tokens":[10963,10676,3000,8478],"delegation":[9963,9676,2000,7478],"delegatorTokens":9999999964525,"jailed":[1000000000000005,null,null,1000000000000011],"status":["unbonding","bonded","bonded","unbonding"]}},{"ix":64,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":5,"t":30,"tokens":[10963,10676,3000,8478],"delegation":[9963,9676,2000,7478],"delegatorTokens":9999999964525,"jailed":[1000000000000005,null,null,1000000000000011],"status":["unbonding","bonded","bonded","unbonding"]}},{"ix":65,"action":{"kind":"Deliver","chain":"provider","numPackets":3},"partialState":{"h":5,"t":30,"tokens":[10963,10676,3000,8478],"delegation":[9963,9676,2000,7478],"delegatorTokens":9999999964525,"jailed":[1000000000000005,null,null,1000000000000011],"status":["unbonding","bonded","bonded","unbonding"]}},{"ix":66,"action":{"kind":"Undelegate","val":0,"amt":2734},"partialState":{"h":5,"t":30,"tokens":[8229,10676,3000,8478],"delegation":[7229,9676,2000,7478],"delegatorTokens":9999999964525}},{"ix":67,"action":{"kind":"Deliver","chain":"provider","numPackets":3},"partialState":{"h":5,"t":30,"tokens":[8229,10676,3000,8478],"delegation":[7229,9676,2000,7478],"delegatorTokens":9999999964525,"jailed":[1000000000000005,null,null,1000000000000011],"status":["unbonding","bonded","bonded","unbonding"]}},{"ix":68,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":5,"t":30,"consumerPower":[null,13432,null,3481],"outstandingDowntime":[false,false,false,false]}},{"ix":69,"action":{"kind":"Deliver","chain":"consumer","numPackets":1},"partialState":{"h":5,"t":30,"consumerPower":[null,13432,null,3481],"outstandingDowntime":[false,false,false,false]}},{"ix":70,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":6,"t":36,"tokens":[8229,10676,3000,8478],"delegation":[7229,9676,2000,7478],"delegatorTokens":9999999964525,"jailed":[1000000000000005,null,null,1000000000000011],"status":["unbonding","bonded","bonded","unbonding"]}},{"ix":71,"action":{"kind":"Undelegate","val":3,"amt":3795},"partialState":{"h":6,"t":36,"tokens":[8229,10676,3000,4683],"delegation":[7229,9676,2000,3683],"delegatorTokens":9999999964525}},{"ix":72,"action":{"kind":"Undelegate","val":2,"amt":3689},"partialState":{"h":6,"t":36,"tokens":[8229,10676,3000,4683],"delegation":[7229,9676,2000,3683],"delegatorTokens":9999999964525}},{"ix":73,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":74,"action":{"kind":"Undelegate","val":2,"amt":1051},"partialState":{"h":6,"t":36,"tokens":[8229,10676,1949,4683],"delegation":[7229,9676,949,3683],"delegatorTokens":9999999964525}},{"ix":75,"action":{"kind":"Deliver","chain":"consumer","numPackets":5},"partialState":{"h":5,"t":30,"consumerPower":[null,13432,null,3481],"outstandingDowntime":[false,false,false,false]}},{"ix":76,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":77,"action":{"kind":"Deliver","chain":"provider","numPackets":1},"partialState":{"h":6,"t":36,"tokens":[8229,10676,1949,4683],"delegation":[7229,9676,949,3683],"delegatorTokens":9999999964525,"jailed":[1000000000000005,null,null,1000000000000011],"status":["unbonding","bonded","bonded","unbonding"]}},{"ix":78,"action":{"kind":"Delegate","val":2,"amt":2895},"partialState":{"h":6,"t":36,"tokens":[8229,10676,4844,4683],"delegation":[7229,9676,3844,3683],"delegatorTokens":9999999961630}},{"ix":79,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":6,"t":36,"consumerPower":[null,10676,3000,null],"outstandingDowntime":[false,false,false,false]}},{"ix":80,"action":{"kind":"Deliver","chain":"consumer","numPackets":1},"partialState":{"h":6,"t":36,"consumerPower":[null,10676,3000,null],"outstandingDowntime":[false,false,false,false]}},{"ix":81,"action":{"kind":"Deliver","chain":"provider","numPackets":4},"partialState":{"h":6,"t":36,"tokens":[8229,10676,4844,4683],"delegation":[7229,9676,3844,3683],"delegatorTokens":9999999961630,"jailed":[1000000000000005,null,null,1000000000000011],"status":["unbonding","bonded","bonded","unbonding"]}},{"ix":82,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":83,"action":{"kind":"Undelegate","val":1,"amt":3268},"partialState":{"h":6,"t":36,"tokens":[8229,7408,4844,4683],"delegation":[7229,6408,3844,3683],"delegatorTokens":9999999961630}},{"ix":84,"action":{"kind":"Delegate","val":1,"amt":1338},"partialState":{"h":6,"t":36,"tokens":[8229,8746,4844,4683],"delegation":[7229,7746,3844,3683],"delegatorTokens":9999999960292}},{"ix":85,"action":{"kind":"Deliver","chain":"consumer","numPackets":2},"partialState":{"h":6,"t":36,"consumerPower":[null,10676,3000,null],"outstandingDowntime":[false,false,false,false]}},{"ix":86,"action":{"kind":"Deliver","chain":"provider","numPackets":5},"partialState":{"h":6,"t":36,"tokens":[8229,8746,4844,4683],"delegation":[7229,7746,3844,3683],"delegatorTokens":9999999960292,"jailed":[1000000000000005,null,null,1000000000000011],"status":["unbonding","bonded","bonded","unbonding"]}},{"ix":87,"action":{"kind":"Delegate","val":2,"amt":1638},"partialState":{"h":6,"t":36,"tokens":[8229,8746,6482,4683],"delegation":[7229,7746,5482,3683],"delegatorTokens":9999999958654}},{"ix":88,"action":{"kind":"Deliver","chain":"provider","numPackets":3},"partialState":{"h":6,"t":36,"tokens":[8229,8746,6482,4683],"delegation":[7229,7746,5482,3683],"delegatorTokens":9999999958654,"jailed":[1000000000000005,null,null,1000000000000011],"status":["unbonding","bonded","bonded","unbonding"]}},{"ix":89,"action":{"kind":"Undelegate","val":3,"amt":1364},"partialState":{"h":6,"t":36,"tokens":[8229,8746,6482,3319],"delegation":[7229,7746,5482,2319],"delegatorTokens":9999999958654}},{"ix":90,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":91,"action":{"kind":"Undelegate","val":3,"amt":1483},"partialState":{"h":6,"t":36,"tokens":[8229,8746,6482,1836],"delegation":[7229,7746,5482,836],"delegatorTokens":9999999958654}},{"ix":92,"action":{"kind":"Deliver","chain":"consumer","numPackets":3},"partialState":{"h":6,"t":36,"consumerPower":[null,10676,3000,null],"outstandingDowntime":[false,false,false,false]}},{"ix":93,"action":{"kind":"Deliver","chain":"consumer","numPackets":2},"partialState":{"h":6,"t":36,"consumerPower":[null,10676,3000,null],"outstandingDowntime":[false,false,false,false]}},{"ix":94,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":7,"t":42,"tokens":[8229,8746,6482,1836],"delegation":[7229,7746,5482,836],"delegatorTokens":9999999958654,"jailed":[1000000000000005,null,null,1000000000000011],"status":["unbonding","bonded","bonded","unbonding"]}},{"ix":95,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":7,"t":42,"consumerPower":[null,10676,3000,null],"outstandingDowntime":[false,false,false,false]}},{"ix":96,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":97,"action":{"kind":"Delegate","val":2,"amt":4024},"partialState":{"h":7,"t":42,"tokens":[8229,8746,10506,1836],"delegation":[7229,7746,9506,836],"delegatorTokens":9999999954630}},{"ix":98,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":8,"t":48,"consumerPower":[null,10676,3000,null],"outstandingDowntime":[false,false,false,false]}},{"ix":99,"action":{"kind":"Undelegate","val":1,"amt":2284},"partialState":{"h":7,"t":42,"tokens":[8229,6462,10506,1836],"delegation":[7229,5462,9506,836],"delegatorTokens":9999999954630}},{"ix":100,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":101,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":102,"action":{"kind":"Deliver","chain":"consumer","numPackets":4},"partialState":{"h":8,"t":48,"consumerPower":[null,10676,3000,null],"outstandingDowntime":[false,false,false,false]}},{"ix":103,"action":{"kind":"Delegate","val":3,"amt":3648},"partialState":{"h":7,"t":42,"tokens":[8229,6462,10506,5484],"delegation":[7229,5462,9506,4484],"delegatorTokens":9999999950982}},{"ix":104,"action":{"kind":"Undelegate","val":2,"amt":3025},"partialState":{"h":7,"t":42,"tokens":[8229,6462,7481,5484],"delegation":[7229,5462,6481,4484],"delegatorTokens":9999999950982}},{"ix":105,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":106,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":107,"action":{"kind":"Undelegate","val":2,"amt":4845},"partialState":{"h":7,"t":42,"tokens":[8229,6462,2636,5484],"delegation":[7229,5462,1636,4484],"delegatorTokens":9999999950982}},{"ix":108,"action":{"kind":"Delegate","val":0,"amt":2628},"partialState":{"h":7,"t":42,"tokens":[10857,6462,2636,5484],"delegation":[9857,5462,1636,4484],"delegatorTokens":9999999948354}},{"ix":109,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":110,"action":{"kind":"Deliver","chain":"provider","numPackets":5},"partialState":{"h":7,"t":42,"tokens":[10857,6462,2636,5484],"delegation":[9857,5462,1636,4484],"delegatorTokens":9999999948354,"jailed":[1000000000000005,null,null,1000000000000011],"status":["unbonding","bonded","bonded","unbonding"]}},{"ix":111,"action":{"kind":"Deliver","chain":"consumer","numPackets":3},"partialState":{"h":8,"t":48,"consumerPower":[null,10676,3000,null],"outstandingDowntime":[false,false,false,false]}},{"ix":112,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":9,"t":54,"consumerPower":[null,10676,3000,null],"outstandingDowntime":[false,false,false,false]}},{"ix":113,"action":{"kind":"Deliver","chain":"provider","numPackets":5},"partialState":{"h":7,"t":42,"tokens":[10857,6462,2636,5484],"delegation":[9857,5462,1636,4484],"delegatorTokens":9999999948354,"jailed":[1000000000000005,null,null,1000000000000011],"status":["unbonding","bonded","bonded","unbonding"]}},{"ix":114,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":115,"action":{"kind":"Undelegate","val":1,"amt":1892},"partialState":{"h":7,"t":42,"tokens":[10857,4570,2636,5484],"delegation":[9857,3570,1636,4484],"delegatorTokens":9999999948354}},{"ix":116,"action":{"kind":"Deliver","chain":"provider","numPackets":1},"partialState":{"h":7,"t":42,"tokens":[10857,4570,2636,5484],"delegation":[9857,3570,1636,4484],"delegatorTokens":9999999948354,"jailed":[1000000000000005,null,null,1000000000000011],"status":["unbonding","bonded","bonded","unbonding"]}},{"ix":117,"action":{"kind":"Delegate","val":3,"amt":2204},"partialState":{"h":7,"t":42,"tokens":[10857,4570,2636,7688],"delegation":[9857,3570,1636,6688],"delegatorTokens":9999999946150}},{"ix":118,"action":{"kind":"Delegate","val":0,"amt":3826},"partialState":{"h":7,"t":42,"tokens":[14683,4570,2636,7688],"delegation":[13683,3570,1636,6688],"delegatorTokens":9999999942324}},{"ix":119,"action":{"kind":"Deliver","chain":"consumer","numPackets":2},"partialState":{"h":9,"t":54,"consumerPower":[null,10676,3000,null],"outstandingDowntime":[false,false,false,false]}},{"ix":120,"action":{"kind":"Undelegate","val":1,"amt":1046},"partialState":{"h":7,"t":42,"tokens":[14683,3524,2636,7688],"delegation":[13683,2524,1636,6688],"delegatorTokens":9999999942324}},{"ix":121,"action":{"kind":"Delegate","val":2,"amt":1311},"partialState":{"h":7,"t":42,"tokens":[14683,3524,3947,7688],"delegation":[13683,2524,2947,6688],"delegatorTokens":9999999941013}},{"ix":122,"action":{"kind":"Delegate","val":1,"amt":4765},"partialState":{"h":7,"t":42,"tokens":[14683,8289,3947,7688],"delegation":[13683,7289,2947,6688],"delegatorTokens":9999999936248}},{"ix":123,"action":{"kind":"Undelegate","val":2,"amt":1597},"partialState":{"h":7,"t":42,"tokens":[14683,8289,2350,7688],"delegation":[13683,7289,1350,6688],"delegatorTokens":9999999936248}},{"ix":124,"action":{"kind":"Undelegate","val":1,"amt":2997},"partialState":{"h":7,"t":42,"tokens":[14683,5292,2350,7688],"delegation":[13683,4292,1350,6688],"delegatorTokens":9999999936248}},{"ix":125,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":126,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":10,"t":60,"consumerPower":[null,10676,3000,null],"outstandingDowntime":[false,false,false,false]}},{"ix":127,"action":{"kind":"Delegate","val":0,"amt":3729},"partialState":{"h":7,"t":42,"tokens":[18412,5292,2350,7688],"delegation":[17412,4292,1350,6688],"delegatorTokens":9999999932519}},{"ix":128,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":129,"action":{"kind":"Delegate","val":2,"amt":2126},"partialState":{"h":7,"t":42,"tokens":[18412,5292,4476,7688],"delegation":[17412,4292,3476,6688],"delegatorTokens":9999999930393}},{"ix":130,"action":{"kind":"Undelegate","val":0,"amt":3910},"partialState":{"h":7,"t":42,"tokens":[14502,5292,4476,7688],"delegation":[13502,4292,3476,6688],"delegatorTokens":9999999930393}},{"ix":131,"action":{"kind":"Delegate","val":1,"amt":1893},"partialState":{"h":7,"t":42,"tokens":[14502,7185,4476,7688],"delegation":[13502,6185,3476,6688],"delegatorTokens":9999999928500}},{"ix":132,"action":{"kind":"Deliver","chain":"provider","numPackets":1},"partialState":{"h":7,"t":42,"tokens":[14502,7185,4476,7688],"delegation":[13502,6185,3476,6688],"delegatorTokens":9999999928500,"jailed":[1000000000000005,null,null,1000000000000011],"status":["unbonding","bonded","bonded","unbonding"]}},{"ix":133,"action":{"kind":"Deliver","chain":"provider","numPackets":4},"partialState":{"h":7,"t":42,"tokens":[14502,7185,4476,7688],"delegation":[13502,6185,3476,6688],"delegatorTokens":9999999928500,"jailed":[1000000000000005,null,null,1000000000000011],"status":["unbonding","bonded","bonded","unbonding"]}},{"ix":134,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":135,"action":{"kind":"Undelegate","val":1,"amt":4156},"partialState":{"h":7,"t":42,"tokens":[14502,3029,4476,7688],"delegation":[13502,2029,3476,6688],"delegatorTokens":9999999928500}},{"ix":136,"action":{"kind":"Undelegate","val":1,"amt":2144},"partialState":{"h":7,"t":42,"tokens":[14502,3029,4476,7688],"delegation":[13502,2029,3476,6688],"delegatorTokens":9999999928500}},{"ix":137,"action":{"kind":"Undelegate","val":0,"amt":1708},"partialState":{"h":7,"t":42,"tokens":[12794,3029,4476,7688],"delegation":[11794,2029,3476,6688],"delegatorTokens":9999999928500}},{"ix":138,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":8,"t":48,"tokens":[12794,3029,4476,7688],"delegation":[11794,2029,3476,6688],"delegatorTokens":9999999928500,"jailed":[1000000000000005,null,null,1000000000000011],"status":["unbonding","bonded","bonded","unbonding"]}},{"ix":139,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":11,"t":66,"consumerPower":[null,10676,3000,null],"outstandingDowntime":[false,false,false,false]}},{"ix":140,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":141,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":9,"t":54,"tokens":[12794,3029,4476,7688],"delegation":[11794,2029,3476,6688],"delegatorTokens":9999999928500,"jailed":[1000000000000005,null,null,1000000000000011],"status":["unbonding","bonded","bonded","unbonding"]}},{"ix":142,"action":{"kind":"Undelegate","val":0,"amt":2259},"partialState":{"h":9,"t":54,"tokens":[10535,3029,4476,7688],"delegation":[9535,2029,3476,6688],"delegatorTokens":9999999928500}},{"ix":143,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":12,"t":72,"consumerPower":[null,10676,3000,null],"outstandingDowntime":[false,false,false,false]}},{"ix":144,"action":{"kind":"Delegate","val":3,"amt":3585},"partialState":{"h":9,"t":54,"tokens":[10535,3029,4476,11273],"delegation":[9535,2029,3476,10273],"delegatorTokens":9999999924915}},{"ix":145,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":146,"action":{"kind":"Deliver","chain":"provider","numPackets":6},"partialState":{"h":9,"t":54,"tokens":[10535,3029,4476,11273],"delegation":[9535,2029,3476,10273],"delegatorTokens":9999999924915,"jailed":[1000000000000005,null,null,1000000000000011],"status":["unbonding","bonded","bonded","unbonding"]}},{"ix":147,"action":{"kind":"Delegate","val":0,"amt":1404},"partialState":{"h":9,"t":54,"tokens":[11939,3029,4476,11273],"delegation":[10939,2029,3476,10273],"delegatorTokens":9999999923511}},{"ix":148,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":13,"t":78,"consumerPower":[null,10676,3000,null],"outstandingDowntime":[false,false,false,false]}},{"ix":149,"action":{"kind":"Deliver","chain":"provider","numPackets":4},"partialState":{"h":9,"t":54,"tokens":[11939,3029,4476,11273],"delegation":[10939,2029,3476,10273],"delegatorTokens":9999999923511,"jailed":[1000000000000005,null,null,1000000000000011],"status":["unbonding","bonded","bonded","unbonding"]}},{"ix":150,"action":{"kind":"Undelegate","val":0,"amt":4604},"partialState":{"h":9,"t":54,"tokens":[7335,3029,4476,11273],"delegation":[6335,2029,3476,10273],"delegatorTokens":9999999923511}},{"ix":151,"action":{"kind":"Deliver","chain":"consumer","numPackets":6},"partialState":{"h":13,"t":78,"consumerPower":[null,10676,3000,null],"outstandingDowntime":[false,false,false,false]}},{"ix":152,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":153,"action":{"kind":"Deliver","chain":"provider","numPackets":2},"partialState":{"h":9,"t":54,"tokens":[7335,3029,4476,11273],"delegation":[6335,2029,3476,10273],"delegatorTokens":9999999923511,"jailed":[1000000000000005,null,null,1000000000000011],"status":["unbonding","bonded","bonded","unbonding"]}},{"ix":154,"action":{"kind":"Delegate","val":1,"amt":1927},"partialState":{"h":9,"t":54,"tokens":[7335,4956,4476,11273],"delegation":[6335,3956,3476,10273],"delegatorTokens":9999999921584}},{"ix":155,"action":{"kind":"Deliver","chain":"consumer","numPackets":1},"partialState":{"h":13,"t":78,"consumerPower":[null,10676,3000,null],"outstandingDowntime":[false,false,false,false]}},{"ix":156,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":10,"t":60,"tokens":[7335,4956,4476,11273],"delegation":[6335,3956,3476,10273],"delegatorTokens":9999999921584,"jailed":[1000000000000005,null,null,1000000000000011],"status":["unbonding","bonded","bonded","unbonding"]}},{"ix":157,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":14,"t":84,"consumerPower":[null,3029,4476,null],"outstandingDowntime":[false,false,false,false]}},{"ix":158,"action":{"kind":"Deliver","chain":"consumer","numPackets":4},"partialState":{"h":14,"t":84,"consumerPower":[null,3029,4476,null],"outstandingDowntime":[false,false,false,false]}},{"ix":159,"action":{"kind":"Undelegate","val":0,"amt":4798},"partialState":{"h":10,"t":60,"tokens":[2537,4956,4476,11273],"delegation":[1537,3956,3476,10273],"delegatorTokens":9999999921584}},{"ix":160,"action":{"kind":"Undelegate","val":0,"amt":1027},"partialState":{"h":10,"t":60,"tokens":[1510,4956,4476,11273],"delegation":[510,3956,3476,10273],"delegatorTokens":9999999921584}},{"ix":161,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":15,"t":90,"consumerPower":[null,3029,4476,null],"outstandingDowntime":[false,false,false,false]}},{"ix":162,"action":{"kind":"Undelegate","val":3,"amt":3684},"partialState":{"h":10,"t":60,"tokens":[1510,4956,4476,7589],"delegation":[510,3956,3476,6589],"delegatorTokens":9999999921584}},{"ix":163,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":164,"action":{"kind":"Undelegate","val":0,"amt":2102},"partialState":{"h":10,"t":60,"tokens":[1510,4956,4476,7589],"delegation":[510,3956,3476,6589],"delegatorTokens":9999999921584}},{"ix":165,"action":{"kind":"Undelegate","val":3,"amt":3046},"partialState":{"h":10,"t":60,"tokens":[1510,4956,4476,4543],"delegation":[510,3956,3476,3543],"delegatorTokens":9999999921584}},{"ix":166,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":11,"t":66,"tokens":[1510,4956,4476,4543],"delegation":[510,3956,3476,3543],"delegatorTokens":9999999921584,"jailed":[1000000000000005,null,null,1000000000000011],"status":["unbonding","bonded","bonded","unbonding"]}},{"ix":167,"action":{"kind":"Delegate","val":1,"amt":4011},"partialState":{"h":11,"t":66,"tokens":[1510,8967,4476,4543],"delegation":[510,7967,3476,3543],"delegatorTokens":9999999917573}},{"ix":168,"action":{"kind":"Undelegate","val":1,"amt":4950},"partialState":{"h":11,"t":66,"tokens":[1510,4017,4476,4543],"delegation":[510,3017,3476,3543],"delegatorTokens":9999999917573}},{"ix":169,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":16,"t":96,"consumerPower":[null,3029,4476,null],"outstandingDowntime":[false,false,false,false]}},{"ix":170,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":17,"t":102,"consumerPower":[null,3029,4476,null],"outstandingDowntime":[false,false,false,false]}},{"ix":171,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":172,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":12,"t":72,"tokens":[1510,4017,4476,4543],"delegation":[510,3017,3476,3543],"delegatorTokens":9999999917573,"jailed":[1000000000000005,null,null,1000000000000011],"status":["unbonding","bonded","bonded","unbonding"]}},{"ix":173,"action":{"kind":"Undelegate","val":0,"amt":2582},"partialState":{"h":12,"t":72,"tokens":[1510,4017,4476,4543],"delegation":[510,3017,3476,3543],"delegatorTokens":9999999917573}},{"ix":174,"action":{"kind":"Deliver","chain":"provider","numPackets":5},"partialState":{"h":12,"t":72,"tokens":[1510,4017,4476,4543],"delegation":[510,3017,3476,3543],"delegatorTokens":9999999917573,"jailed":[1000000000000005,null,null,1000000000000011],"status":["unbonding","bonded","bonded","unbonding"]}},{"ix":175,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":176,"action":{"kind":"Undelegate","val":3,"amt":4285},"partialState":{"h":12,"t":72,"tokens":[1510,4017,4476,4543],"delegation":[510,3017,3476,3543],"delegatorTokens":9999999917573}},{"ix":177,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":178,"action":{"kind":"Undelegate","val":1,"amt":2059},"partialState":{"h":12,"t":72,"tokens":[1510,1958,4476,4543],"delegation":[510,958,3476,3543],"delegatorTokens":9999999917573}},{"ix":179,"action":{"kind":"Deliver","chain":"provider","numPackets":2},"partialState":{"h":12,"t":72,"tokens":[1510,1958,4476,4543],"delegation":[510,958,3476,3543],"delegatorTokens":9999999917573,"jailed":[1000000000000005,null,null,1000000000000011],"status":["unbonding","bonded","bonded","unbonding"]}},{"ix":180,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":181,"action":{"kind":"Delegate","val":2,"amt":1454},"partialState":{"h":12,"t":72,"tokens":[1510,1958,5930,4543],"delegation":[510,958,4930,3543],"delegatorTokens":9999999916119}},{"ix":182,"action":{"kind":"Undelegate","val":3,"amt":1874},"partialState":{"h":12,"t":72,"tokens":[1510,1958,5930,2669],"delegation":[510,958,4930,1669],"delegatorTokens":9999999916119}},{"ix":183,"action":{"kind":"Deliver","chain":"provider","numPackets":5},"partialState":{"h":12,"t":72,"tokens":[1510,1958,5930,2669],"delegation":[510,958,4930,1669],"delegatorTokens":9999999916119,"jailed":[1000000000000005,null,null,1000000000000011],"status":["unbonding","bonded","bonded","unbonding"]}},{"ix":184,"action":{"kind":"Deliver","chain":"consumer","numPackets":1},"partialState":{"h":17,"t":102,"consumerPower":[null,3029,4476,null],"outstandingDowntime":[false,false,false,false]}},{"ix":185,"action":{"kind":"Deliver","chain":"consumer","numPackets":3},"partialState":{"h":17,"t":102,"consumerPower":[null,3029,4476,null],"outstandingDowntime":[false,false,false,false]}},{"ix":186,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":13,"t":78,"tokens":[1510,1958,5930,2669],"delegation":[510,958,4930,1669],"delegatorTokens":9999999916119,"jailed":[1000000000000005,null,null,1000000000000011],"status":["unbonding","bonded","bonded","unbonding"]}},{"ix":187,"action":{"kind":"Deliver","chain":"consumer","numPackets":6},"partialState":{"h":17,"t":102,"consumerPower":[null,3029,4476,null],"outstandingDowntime":[false,false,false,false]}},{"ix":188,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":189,"action":{"kind":"Undelegate","val":0,"amt":3701},"partialState":{"h":13,"t":78,"tokens":[1510,1958,5930,2669],"delegation":[510,958,4930,1669],"delegatorTokens":9999999916119}},{"ix":190,"action":{"kind":"Undelegate","val":0,"amt":4740},"partialState":{"h":13,"t":78,"tokens":[1510,1958,5930,2669],"delegation":[510,958,4930,1669],"delegatorTokens":9999999916119}},{"ix":191,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":14,"t":84,"tokens":[1510,1958,5930,2669],"delegation":[510,958,4930,1669],"delegatorTokens":9999999921604,"jailed":[1000000000000005,null,null,1000000000000011],"status":["unbonding","bonded","bonded","unbonding"]}},{"ix":192,"action":{"kind":"Delegate","val":0,"amt":1976},"partialState":{"h":14,"t":84,"tokens":[3486,1958,5930,2669],"delegation":[2486,958,4930,1669],"delegatorTokens":9999999919628}},{"ix":193,"action":{"kind":"Undelegate","val":0,"amt":3967},"partialState":{"h":14,"t":84,"tokens":[3486,1958,5930,2669],"delegation":[2486,958,4930,1669],"delegatorTokens":9999999919628}},{"ix":194,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":195,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":196,"action":{"kind":"Delegate","val":3,"amt":1867},"partialState":{"h":14,"t":84,"tokens":[3486,1958,5930,4536],"delegation":[2486,958,4930,3536],"delegatorTokens":9999999917761}},{"ix":197,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":18,"t":108,"consumerPower":[null,4017,4476,null],"outstandingDowntime":[false,false,false,false]}},{"ix":198,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":15,"t":90,"tokens":[3486,1958,5930,4536],"delegation":[2486,958,4930,3536],"delegatorTokens":9999999922416,"jailed":[1000000000000005,null,null,1000000000000011],"status":["unbonded","bonded","bonded","unbonding"]}},{"ix":199,"action":{"kind":"Deliver","chain":"consumer","numPackets":6},"partialState":{"h":18,"t":108,"consumerPower":[null,4017,4476,null],"outstandingDowntime":[false,false,false,false]}}],"events":["send_downtime_slash_request","send_downtime_slash_request","insufficient_shares","downtime_slash_request_outstanding","insufficient_shares","downtime_slash_request_outstanding","downtime_slash_request_outstanding","downtime_slash_request_outstanding","more_than_one_third_val_power_change","receive_downtime_slash_request","jail","send_vsc_with_downtime_ack","send_double_sign_slash_request","insufficient_shares","insufficient_shares","insufficient_shares","downtime_slash_request_outstanding","more_than_one_third_val_power_change","rebond_unval","receive_downtime_slash_request","jail","send_vsc_with_downtime_ack","send_vsc_without_downtime_ack","insufficient_shares","receive_downtime_slash_ack","receive_downtime_slash_ack","send_double_sign_slash_request","send_vsc_not_because_change","send_vsc_without_downtime_ack","consumer_del_val","consumer_update_val","consumer_add_val","send_vsc_not_because_change","send_vsc_without_downtime_ack","insufficient_shares","receive_double_sign_slash_request","consumer_update_val","consumer_add_val","consumer_del_val","receive_double_sign_slash_request","send_vsc_without_downtime_ack","insufficient_shares","send_vsc_without_downtime_ack","send_vsc_without_downtime_ack","consumer_send_maturation","consumer_send_maturation","consumer_update_val","consumer_update_val","consumer_send_maturation","consumer_send_maturation","insufficient_shares","send_vsc_not_because_change","send_vsc_without_downtime_ack","send_vsc_without_downtime_ack","insufficient_shares","insufficient_shares","set_undel_hold_false","set_undel_hold_false","set_undel_hold_false","set_unval_hold_false","set_undel_hold_false","set_unval_hold_false","set_undel_hold_false","send_vsc_without_downtime_ack","insufficient_shares","insufficient_shares","complete_undel_in_endblock","insufficient_shares","consumer_send_maturation","consumer_update_val","complete_unval_in_endblock","complete_undel_in_endblock"]},{"meta":{"commit":"7ffd0c04e4205cbc9caf212abfe6c59ee43153bf"},"constants":{"P":"provider","C":"consumer","UNBONDING_SECONDS_P":70,"UNBONDING_SECONDS_C":50,"TRUSTING_SECONDS":49,"NUM_VALIDATORS":4,"MAX_VALIDATORS":2,"SLASH_DOUBLESIGN":0,"SLASH_DOWNTIME":0,"JAIL_SECONDS":999999999999999,"BLOCK_SECONDS":6,"INITIAL_DELEGATOR_TOKENS":10000000000000,"DELEGATE_AMT_MIN":1000,"DELEGATE_AMT_MAX":5000,"UNDELEGATE_AMT_MIN":1000,"UNDELEGATE_AMT_MAX":5000,"ISDOWNTIME_PROBABILITY":0.5,"MAX_NUM_PACKETS_FOR_DELIVER":6},"actions":[{"ix":0,"action":{"kind":"ConsumerSlash","val":3,"infractionHeight":0,"isDowntime":true},"partialState":{"h":1,"t":6,"outstandingDowntime":[false,false,false,true]}},{"ix":1,"action":{"kind":"Deliver","chain":"consumer","numPackets":3},"partialState":{"h":1,"t":6,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,false,false,true]}},{"ix":2,"action":{"kind":"Undelegate","val":1,"amt":4632},"partialState":{"h":1,"t":6,"tokens":[5000,4000,3000,2000],"delegation":[4000,3000,2000,1000],"delegatorTokens":10000000000000}},{"ix":3,"action":{"kind":"Delegate","val":1,"amt":2328},"partialState":{"h":1,"t":6,"tokens":[5000,6328,3000,2000],"delegation":[4000,5328,2000,1000],"delegatorTokens":9999999997672}},{"ix":4,"action":{"kind":"Undelegate","val":2,"amt":1777},"partialState":{"h":1,"t":6,"tokens":[5000,6328,1223,2000],"delegation":[4000,5328,223,1000],"delegatorTokens":9999999997672}},{"ix":5,"action":{"kind":"Undelegate","val":3,"amt":3368},"partialState":{"h":1,"t":6,"tokens":[5000,6328,1223,2000],"delegation":[4000,5328,223,1000],"delegatorTokens":9999999997672}},{"ix":6,"action":{"kind":"Undelegate","val":1,"amt":3550},"partialState":{"h":1,"t":6,"tokens":[5000,2778,1223,2000],"delegation":[4000,1778,223,1000],"delegatorTokens":9999999997672}},{"ix":7,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":8,"action":{"kind":"Deliver","chain":"provider","numPackets":1},"partialState":{"h":1,"t":6,"tokens":[5000,2778,1223,2000],"delegation":[4000,1778,223,1000],"delegatorTokens":9999999997672,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":9,"action":{"kind":"Undelegate","val":2,"amt":2601},"partialState":{"h":1,"t":6,"tokens":[5000,2778,1223,2000],"delegation":[4000,1778,223,1000],"delegatorTokens":9999999997672}},{"ix":10,"action":{"kind":"Delegate","val":3,"amt":4687},"partialState":{"h":1,"t":6,"tokens":[5000,2778,1223,6687],"delegation":[4000,1778,223,5687],"delegatorTokens":9999999992985}},{"ix":11,"action":{"kind":"Deliver","chain":"consumer","numPackets":3},"partialState":{"h":1,"t":6,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,false,false,true]}},{"ix":12,"action":{"kind":"ConsumerSlash","val":1,"infractionHeight":0,"isDowntime":false},"partialState":{"h":1,"t":6,"outstandingDowntime":[false,false,false,true]}},{"ix":13,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":2,"t":12,"tokens":[5000,2778,1223,6687],"delegation":[4000,1778,223,5687],"delegatorTokens":9999999992985,"jailed":[null,null,null,null],"status":["bonded","unbonding","unbonded","bonded"]}},{"ix":14,"action":{"kind":"ConsumerSlash","val":1,"infractionHeight":0,"isDowntime":false},"partialState":{"h":1,"t":6,"outstandingDowntime":[false,false,false,true]}},{"ix":15,"action":{"kind":"ConsumerSlash","val":3,"infractionHeight":0,"isDowntime":true},"partialState":{"h":1,"t":6,"outstandingDowntime":[false,false,false,true]}},{"ix":16,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":3,"t":18,"tokens":[5000,2778,1223,6687],"delegation":[4000,1778,223,5687],"delegatorTokens":9999999992985,"jailed":[null,null,null,null],"status":["bonded","unbonding","unbonded","bonded"]}},{"ix":17,"action":{"kind":"Deliver","chain":"consumer","numPackets":1},"partialState":{"h":1,"t":6,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,false,false,true]}},{"ix":18,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":2,"t":12,"consumerPower":[5000,null,null,6687],"outstandingDowntime":[false,false,false,true]}},{"ix":19,"action":{"kind":"ConsumerSlash","val":3,"infractionHeight":1,"isDowntime":false},"partialState":{"h":2,"t":12,"outstandingDowntime":[false,false,false,true]}},{"ix":20,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":21,"action":{"kind":"Delegate","val":2,"amt":1468},"partialState":{"h":3,"t":18,"tokens":[5000,2778,2691,6687],"delegation":[4000,1778,1691,5687],"delegatorTokens":9999999991517}},{"ix":22,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":3,"t":18,"consumerPower":[5000,null,null,6687],"outstandingDowntime":[false,false,false,true]}},{"ix":23,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":4,"t":24,"tokens":[5000,2778,2691,6687],"delegation":[4000,1778,1691,5687],"delegatorTokens":9999999991517,"jailed":[null,null,null,null],"status":["bonded","unbonding","unbonded","bonded"]}},{"ix":24,"action":{"kind":"ConsumerSlash","val":1,"infractionHeight":1,"isDowntime":true},"partialState":{"h":3,"t":18,"outstandingDowntime":[false,true,false,true]}},{"ix":25,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":26,"action":{"kind":"ConsumerSlash","val":1,"infractionHeight":0,"isDowntime":true},"partialState":{"h":3,"t":18,"outstandingDowntime":[false,true,false,true]}},{"ix":27,"action":{"kind":"Deliver","chain":"consumer","numPackets":2},"partialState":{"h":3,"t":18,"consumerPower":[5000,null,null,6687],"outstandingDowntime":[false,true,false,true]}},{"ix":28,"action":{"kind":"Deliver","chain":"provider","numPackets":3},"partialState":{"h":4,"t":24,"tokens":[5000,2778,2691,6687],"delegation":[4000,1778,1691,5687],"delegatorTokens":9999999991517,"jailed":[null,null,null,null],"status":["bonded","unbonding","unbonded","bonded"]}},{"ix":29,"action":{"kind":"Delegate","val":2,"amt":4059},"partialState":{"h":4,"t":24,"tokens":[5000,2778,6750,6687],"delegation":[4000,1778,5750,5687],"delegatorTokens":9999999987458}},{"ix":30,"action":{"kind":"Undelegate","val":1,"amt":3029},"partialState":{"h":4,"t":24,"tokens":[5000,2778,6750,6687],"delegation":[4000,1778,5750,5687],"delegatorTokens":9999999987458}},{"ix":31,"action":{"kind":"Delegate","val":3,"amt":2835},"partialState":{"h":4,"t":24,"tokens":[5000,2778,6750,9522],"delegation":[4000,1778,5750,8522],"delegatorTokens":9999999984623}},{"ix":32,"action":{"kind":"Delegate","val":2,"amt":3629},"partialState":{"h":4,"t":24,"tokens":[5000,2778,10379,9522],"delegation":[4000,1778,9379,8522],"delegatorTokens":9999999980994}},{"ix":33,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":4,"t":24,"consumerPower":[5000,null,null,6687],"outstandingDowntime":[false,true,false,true]}},{"ix":34,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":5,"t":30,"consumerPower":[5000,null,null,6687],"outstandingDowntime":[false,true,false,true]}},{"ix":35,"action":{"kind":"Deliver","chain":"consumer","numPackets":5},"partialState":{"h":5,"t":30,"consumerPower":[5000,null,null,6687],"outstandingDowntime":[false,true,false,true]}},{"ix":36,"action":{"kind":"ConsumerSlash","val":1,"infractionHeight":1,"isDowntime":true},"partialState":{"h":5,"t":30,"outstandingDowntime":[false,true,false,true]}},{"ix":37,"action":{"kind":"Deliver","chain":"consumer","numPackets":5},"partialState":{"h":5,"t":30,"consumerPower":[5000,null,null,6687],"outstandingDowntime":[false,true,false,true]}},{"ix":38,"action":{"kind":"Delegate","val":1,"amt":4202},"partialState":{"h":4,"t":24,"tokens":[5000,6980,10379,9522],"delegation":[4000,5980,9379,8522],"delegatorTokens":9999999976792}},{"ix":39,"action":{"kind":"Undelegate","val":1,"amt":4419},"partialState":{"h":4,"t":24,"tokens":[5000,2561,10379,9522],"delegation":[4000,1561,9379,8522],"delegatorTokens":9999999976792}},{"ix":40,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":5,"t":30,"tokens":[5000,2561,10379,9522],"delegation":[4000,1561,9379,8522],"delegatorTokens":9999999976792,"jailed":[null,null,null,1000000000000023],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":41,"action":{"kind":"Delegate","val":1,"amt":2257},"partialState":{"h":5,"t":30,"tokens":[5000,4818,10379,9522],"delegation":[4000,3818,9379,8522],"delegatorTokens":9999999974535}},{"ix":42,"action":{"kind":"ConsumerSlash","val":3,"infractionHeight":1,"isDowntime":false},"partialState":{"h":5,"t":30,"outstandingDowntime":[false,true,false,true]}},{"ix":43,"action":{"kind":"Delegate","val":2,"amt":4180},"partialState":{"h":5,"t":30,"tokens":[5000,4818,14559,9522],"delegation":[4000,3818,13559,8522],"delegatorTokens":9999999970355}},{"ix":44,"action":{"kind":"Delegate","val":0,"amt":1863},"partialState":{"h":5,"t":30,"tokens":[6863,4818,14559,9522],"delegation":[5863,3818,13559,8522],"delegatorTokens":9999999968492}},{"ix":45,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":6,"t":36,"consumerPower":[5000,null,null,6687],"outstandingDowntime":[false,true,false,true]}},{"ix":46,"action":{"kind":"Undelegate","val":3,"amt":3861},"partialState":{"h":5,"t":30,"tokens":[6863,4818,14559,5661],"delegation":[5863,3818,13559,4661],"delegatorTokens":9999999968492}},{"ix":47,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":7,"t":42,"consumerPower":[5000,null,null,6687],"outstandingDowntime":[false,true,false,true]}},{"ix":48,"action":{"kind":"ConsumerSlash","val":1,"infractionHeight":3,"isDowntime":true},"partialState":{"h":7,"t":42,"outstandingDowntime":[false,true,false,true]}},{"ix":49,"action":{"kind":"Deliver","chain":"provider","numPackets":6},"partialState":{"h":5,"t":30,"tokens":[6863,4818,14559,5661],"delegation":[5863,3818,13559,4661],"delegatorTokens":9999999968492,"jailed":[null,null,null,1000000000000023],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":50,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":51,"action":{"kind":"Deliver","chain":"provider","numPackets":5},"partialState":{"h":5,"t":30,"tokens":[6863,4818,14559,5661],"delegation":[5863,3818,13559,4661],"delegatorTokens":9999999968492,"jailed":[null,null,null,1000000000000023],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":52,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":6,"t":36,"tokens":[6863,4818,14559,5661],"delegation":[5863,3818,13559,4661],"delegatorTokens":9999999968492,"jailed":[null,1000000000000029,null,1000000000000023],"status":["bonded","unbonding","bonded","unbonding"]}},{"ix":53,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":54,"action":{"kind":"ConsumerSlash","val":1,"infractionHeight":2,"isDowntime":false},"partialState":{"h":7,"t":42,"outstandingDowntime":[false,true,false,true]}},{"ix":55,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":56,"action":{"kind":"ConsumerSlash","val":0,"infractionHeight":6,"isDowntime":false},"partialState":{"h":7,"t":42,"outstandingDowntime":[false,true,false,true]}},{"ix":57,"action":{"kind":"Undelegate","val":1,"amt":3688},"partialState":{"h":6,"t":36,"tokens":[6863,1130,14559,5661],"delegation":[5863,130,13559,4661],"delegatorTokens":9999999968492}},{"ix":58,"action":{"kind":"Delegate","val":0,"amt":2854},"partialState":{"h":6,"t":36,"tokens":[9717,1130,14559,5661],"delegation":[8717,130,13559,4661],"delegatorTokens":9999999965638}},{"ix":59,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":60,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":7,"t":42,"tokens":[9717,1130,14559,5661],"delegation":[8717,130,13559,4661],"delegatorTokens":9999999965638,"jailed":[null,1000000000000029,null,1000000000000023],"status":["bonded","unbonding","bonded","unbonding"]}},{"ix":61,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":62,"action":{"kind":"Delegate","val":0,"amt":3437},"partialState":{"h":7,"t":42,"tokens":[13154,1130,14559,5661],"delegation":[12154,130,13559,4661],"delegatorTokens":9999999962201}},{"ix":63,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":8,"t":48,"consumerPower":[5000,null,null,6687],"outstandingDowntime":[false,true,false,true]}},{"ix":64,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":9,"t":54,"consumerPower":[5000,null,null,6687],"outstandingDowntime":[false,true,false,true]}},{"ix":65,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":66,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":67,"action":{"kind":"Delegate","val":0,"amt":3493},"partialState":{"h":7,"t":42,"tokens":[16647,1130,14559,5661],"delegation":[15647,130,13559,4661],"delegatorTokens":9999999958708}},{"ix":68,"action":{"kind":"Delegate","val":1,"amt":4785},"partialState":{"h":7,"t":42,"tokens":[16647,5915,14559,5661],"delegation":[15647,4915,13559,4661],"delegatorTokens":9999999953923}},{"ix":69,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":10,"t":60,"consumerPower":[5000,null,null,6687],"outstandingDowntime":[false,true,false,true]}},{"ix":70,"action":{"kind":"Deliver","chain":"provider","numPackets":5},"partialState":{"h":7,"t":42,"tokens":[16647,5915,14559,5661],"delegation":[15647,4915,13559,4661],"delegatorTokens":9999999953923,"jailed":[null,1000000000000029,null,1000000000000023],"status":["bonded","unbonding","bonded","unbonding"]}},{"ix":71,"action":{"kind":"Undelegate","val":3,"amt":4831},"partialState":{"h":7,"t":42,"tokens":[16647,5915,14559,5661],"delegation":[15647,4915,13559,4661],"delegatorTokens":9999999953923}},{"ix":72,"action":{"kind":"Deliver","chain":"provider","numPackets":1},"partialState":{"h":7,"t":42,"tokens":[16647,5915,14559,5661],"delegation":[15647,4915,13559,4661],"delegatorTokens":9999999953923,"jailed":[null,1000000000000029,null,1000000000000023],"status":["bonded","unbonding","bonded","unbonding"]}},{"ix":73,"action":{"kind":"Delegate","val":2,"amt":4181},"partialState":{"h":7,"t":42,"tokens":[16647,5915,18740,5661],"delegation":[15647,4915,17740,4661],"delegatorTokens":9999999949742}},{"ix":74,"action":{"kind":"Undelegate","val":2,"amt":4210},"partialState":{"h":7,"t":42,"tokens":[16647,5915,14530,5661],"delegation":[15647,4915,13530,4661],"delegatorTokens":9999999949742}},{"ix":75,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":76,"action":{"kind":"Undelegate","val":1,"amt":3767},"partialState":{"h":7,"t":42,"tokens":[16647,2148,14530,5661],"delegation":[15647,1148,13530,4661],"delegatorTokens":9999999949742}},{"ix":77,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":78,"action":{"kind":"Deliver","chain":"consumer","numPackets":4},"partialState":{"h":10,"t":60,"consumerPower":[5000,null,null,6687],"outstandingDowntime":[false,false,false,false]}},{"ix":79,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":11,"t":66,"consumerPower":[6863,null,14559,null],"outstandingDowntime":[false,false,false,false]}},{"ix":80,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":8,"t":48,"tokens":[16647,2148,14530,5661],"delegation":[15647,1148,13530,4661],"delegatorTokens":9999999949742,"jailed":[null,1000000000000029,null,1000000000000023],"status":["bonded","unbonding","bonded","unbonding"]}},{"ix":81,"action":{"kind":"Undelegate","val":0,"amt":1138},"partialState":{"h":8,"t":48,"tokens":[15509,2148,14530,5661],"delegation":[14509,1148,13530,4661],"delegatorTokens":9999999949742}},{"ix":82,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":9,"t":54,"tokens":[15509,2148,14530,5661],"delegation":[14509,1148,13530,4661],"delegatorTokens":9999999949742,"jailed":[null,1000000000000029,null,1000000000000023],"status":["bonded","unbonding","bonded","unbonding"]}},{"ix":83,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":84,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":10,"t":60,"tokens":[15509,2148,14530,5661],"delegation":[14509,1148,13530,4661],"delegatorTokens":9999999949742,"jailed":[null,1000000000000029,null,1000000000000023],"status":["bonded","unbonding","bonded","unbonding"]}},{"ix":85,"action":{"kind":"Undelegate","val":0,"amt":2187},"partialState":{"h":10,"t":60,"tokens":[13322,2148,14530,5661],"delegation":[12322,1148,13530,4661],"delegatorTokens":9999999949742}},{"ix":86,"action":{"kind":"Undelegate","val":3,"amt":2822},"partialState":{"h":10,"t":60,"tokens":[13322,2148,14530,2839],"delegation":[12322,1148,13530,1839],"delegatorTokens":9999999949742}},{"ix":87,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":88,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":89,"action":{"kind":"Delegate","val":2,"amt":1957},"partialState":{"h":10,"t":60,"tokens":[13322,2148,16487,2839],"delegation":[12322,1148,15487,1839],"delegatorTokens":9999999947785}},{"ix":90,"action":{"kind":"Deliver","chain":"provider","numPackets":2},"partialState":{"h":10,"t":60,"tokens":[13322,2148,16487,2839],"delegation":[12322,1148,15487,1839],"delegatorTokens":9999999947785,"jailed":[null,1000000000000029,null,1000000000000023],"status":["bonded","unbonding","bonded","unbonding"]}},{"ix":91,"action":{"kind":"Undelegate","val":0,"amt":4403},"partialState":{"h":10,"t":60,"tokens":[8919,2148,16487,2839],"delegation":[7919,1148,15487,1839],"delegatorTokens":9999999947785}},{"ix":92,"action":{"kind":"Undelegate","val":3,"amt":4257},"partialState":{"h":10,"t":60,"tokens":[8919,2148,16487,2839],"delegation":[7919,1148,15487,1839],"delegatorTokens":9999999947785}},{"ix":93,"action":{"kind":"Delegate","val":3,"amt":1781},"partialState":{"h":10,"t":60,"tokens":[8919,2148,16487,4620],"delegation":[7919,1148,15487,3620],"delegatorTokens":9999999946004}},{"ix":94,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":95,"action":{"kind":"Delegate","val":1,"amt":4167},"partialState":{"h":10,"t":60,"tokens":[8919,6315,16487,4620],"delegation":[7919,5315,15487,3620],"delegatorTokens":9999999941837}},{"ix":96,"action":{"kind":"Undelegate","val":3,"amt":3100},"partialState":{"h":10,"t":60,"tokens":[8919,6315,16487,1520],"delegation":[7919,5315,15487,520],"delegatorTokens":9999999941837}},{"ix":97,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":98,"action":{"kind":"Undelegate","val":1,"amt":1685},"partialState":{"h":10,"t":60,"tokens":[8919,4630,16487,1520],"delegation":[7919,3630,15487,520],"delegatorTokens":9999999941837}},{"ix":99,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":11,"t":66,"tokens":[8919,4630,16487,1520],"delegation":[7919,3630,15487,520],"delegatorTokens":9999999941837,"jailed":[null,1000000000000029,null,1000000000000023],"status":["bonded","unbonding","bonded","unbonding"]}},{"ix":100,"action":{"kind":"Deliver","chain":"consumer","numPackets":4},"partialState":{"h":11,"t":66,"consumerPower":[6863,null,14559,null],"outstandingDowntime":[false,false,false,false]}},{"ix":101,"action":{"kind":"Deliver","chain":"provider","numPackets":5},"partialState":{"h":11,"t":66,"tokens":[8919,4630,16487,1520],"delegation":[7919,3630,15487,520],"delegatorTokens":9999999941837,"jailed":[null,1000000000000029,null,1000000000000023],"status":["bonded","unbonding","bonded","unbonding"]}},{"ix":102,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":103,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":12,"t":72,"consumerPower":[15509,null,14530,null],"outstandingDowntime":[false,false,false,false]}},{"ix":104,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":12,"t":72,"tokens":[8919,4630,16487,1520],"delegation":[7919,3630,15487,520],"delegatorTokens":9999999941837,"jailed":[null,1000000000000029,null,1000000000000023],"status":["bonded","unbonding","bonded","unbonding"]}},{"ix":105,"action":{"kind":"Deliver","chain":"provider","numPackets":4},"partialState":{"h":12,"t":72,"tokens":[8919,4630,16487,1520],"delegation":[7919,3630,15487,520],"delegatorTokens":9999999941837,"jailed":[null,1000000000000029,null,1000000000000023],"status":["bonded","unbonding","bonded","unbonding"]}},{"ix":106,"action":{"kind":"Delegate","val":3,"amt":3239},"partialState":{"h":12,"t":72,"tokens":[8919,4630,16487,4759],"delegation":[7919,3630,15487,3759],"delegatorTokens":9999999938598}},{"ix":107,"action":{"kind":"Deliver","chain":"provider","numPackets":1},"partialState":{"h":12,"t":72,"tokens":[8919,4630,16487,4759],"delegation":[7919,3630,15487,3759],"delegatorTokens":9999999938598,"jailed":[null,1000000000000029,null,1000000000000023],"status":["bonded","unbonding","bonded","unbonding"]}},{"ix":108,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":13,"t":78,"consumerPower":[15509,null,14530,null],"outstandingDowntime":[false,false,false,false]}},{"ix":109,"action":{"kind":"Deliver","chain":"provider","numPackets":1},"partialState":{"h":12,"t":72,"tokens":[8919,4630,16487,4759],"delegation":[7919,3630,15487,3759],"delegatorTokens":9999999938598,"jailed":[null,1000000000000029,null,1000000000000023],"status":["bonded","unbonding","bonded","unbonding"]}},{"ix":110,"action":{"kind":"Undelegate","val":2,"amt":2371},"partialState":{"h":12,"t":72,"tokens":[8919,4630,14116,4759],"delegation":[7919,3630,13116,3759],"delegatorTokens":9999999938598}},{"ix":111,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":13,"t":78,"tokens":[8919,4630,14116,4759],"delegation":[7919,3630,13116,3759],"delegatorTokens":9999999938598,"jailed":[null,1000000000000029,null,1000000000000023],"status":["bonded","unbonding","bonded","unbonding"]}},{"ix":112,"action":{"kind":"Undelegate","val":3,"amt":4493},"partialState":{"h":13,"t":78,"tokens":[8919,4630,14116,4759],"delegation":[7919,3630,13116,3759],"delegatorTokens":9999999938598}},{"ix":113,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":14,"t":84,"tokens":[8919,4630,14116,4759],"delegation":[7919,3630,13116,3759],"delegatorTokens":9999999943925,"jailed":[null,1000000000000029,null,1000000000000023],"status":["bonded","unbonded","bonded","unbonding"]}},{"ix":114,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":115,"action":{"kind":"Undelegate","val":1,"amt":1914},"partialState":{"h":14,"t":84,"tokens":[8919,2716,14116,4759],"delegation":[7919,1716,13116,3759],"delegatorTokens":9999999943925}},{"ix":116,"action":{"kind":"Delegate","val":0,"amt":4369},"partialState":{"h":14,"t":84,"tokens":[13288,2716,14116,4759],"delegation":[12288,1716,13116,3759],"delegatorTokens":9999999939556}},{"ix":117,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":14,"t":84,"consumerPower":[15509,null,14530,null],"outstandingDowntime":[false,false,false,false]}},{"ix":118,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":119,"action":{"kind":"Undelegate","val":2,"amt":3619},"partialState":{"h":14,"t":84,"tokens":[13288,2716,10497,4759],"delegation":[12288,1716,9497,3759],"delegatorTokens":9999999939556}},{"ix":120,"action":{"kind":"Deliver","chain":"provider","numPackets":3},"partialState":{"h":14,"t":84,"tokens":[13288,2716,10497,4759],"delegation":[12288,1716,9497,3759],"delegatorTokens":9999999939556,"jailed":[null,1000000000000029,null,1000000000000023],"status":["bonded","unbonded","bonded","unbonding"]}},{"ix":121,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":15,"t":90,"tokens":[13288,2716,10497,4759],"delegation":[12288,1716,9497,3759],"delegatorTokens":9999999939556,"jailed":[null,1000000000000029,null,1000000000000023],"status":["bonded","unbonded","bonded","unbonding"]}},{"ix":122,"action":{"kind":"Deliver","chain":"consumer","numPackets":5},"partialState":{"h":14,"t":84,"consumerPower":[15509,null,14530,null],"outstandingDowntime":[false,false,false,false]}},{"ix":123,"action":{"kind":"Undelegate","val":2,"amt":2559},"partialState":{"h":15,"t":90,"tokens":[13288,2716,7938,4759],"delegation":[12288,1716,6938,3759],"delegatorTokens":9999999939556}},{"ix":124,"action":{"kind":"Undelegate","val":0,"amt":2897},"partialState":{"h":15,"t":90,"tokens":[10391,2716,7938,4759],"delegation":[9391,1716,6938,3759],"delegatorTokens":9999999939556}},{"ix":125,"action":{"kind":"Delegate","val":2,"amt":2580},"partialState":{"h":15,"t":90,"tokens":[10391,2716,10518,4759],"delegation":[9391,1716,9518,3759],"delegatorTokens":9999999936976}},{"ix":126,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":127,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":15,"t":90,"consumerPower":[8919,null,14116,null],"outstandingDowntime":[false,false,false,false]}},{"ix":128,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":16,"t":96,"consumerPower":[8919,null,14116,null],"outstandingDowntime":[false,false,false,false]}},{"ix":129,"action":{"kind":"Undelegate","val":0,"amt":2706},"partialState":{"h":15,"t":90,"tokens":[7685,2716,10518,4759],"delegation":[6685,1716,9518,3759],"delegatorTokens":9999999936976}},{"ix":130,"action":{"kind":"Deliver","chain":"provider","numPackets":4},"partialState":{"h":15,"t":90,"tokens":[7685,2716,10518,4759],"delegation":[6685,1716,9518,3759],"delegatorTokens":9999999936976,"jailed":[null,1000000000000029,null,1000000000000023],"status":["bonded","unbonded","bonded","unbonding"]}},{"ix":131,"action":{"kind":"Deliver","chain":"provider","numPackets":5},"partialState":{"h":15,"t":90,"tokens":[7685,2716,10518,4759],"delegation":[6685,1716,9518,3759],"delegatorTokens":9999999936976,"jailed":[null,1000000000000029,null,1000000000000023],"status":["bonded","unbonded","bonded","unbonding"]}},{"ix":132,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":17,"t":102,"consumerPower":[8919,null,14116,null],"outstandingDowntime":[false,false,false,false]}},{"ix":133,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":134,"action":{"kind":"Undelegate","val":0,"amt":2849},"partialState":{"h":15,"t":90,"tokens":[4836,2716,10518,4759],"delegation":[3836,1716,9518,3759],"delegatorTokens":9999999936976}},{"ix":135,"action":{"kind":"Deliver","chain":"provider","numPackets":2},"partialState":{"h":15,"t":90,"tokens":[4836,2716,10518,4759],"delegation":[3836,1716,9518,3759],"delegatorTokens":9999999936976,"jailed":[null,1000000000000029,null,1000000000000023],"status":["bonded","unbonded","bonded","unbonding"]}},{"ix":136,"action":{"kind":"Delegate","val":2,"amt":3593},"partialState":{"h":15,"t":90,"tokens":[4836,2716,14111,4759],"delegation":[3836,1716,13111,3759],"delegatorTokens":9999999933383}},{"ix":137,"action":{"kind":"Delegate","val":2,"amt":2531},"partialState":{"h":15,"t":90,"tokens":[4836,2716,16642,4759],"delegation":[3836,1716,15642,3759],"delegatorTokens":9999999930852}},{"ix":138,"action":{"kind":"Delegate","val":2,"amt":3852},"partialState":{"h":15,"t":90,"tokens":[4836,2716,20494,4759],"delegation":[3836,1716,19494,3759],"delegatorTokens":9999999927000}},{"ix":139,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":18,"t":108,"consumerPower":[8919,null,14116,null],"outstandingDowntime":[false,false,false,false]}},{"ix":140,"action":{"kind":"Undelegate","val":2,"amt":4098},"partialState":{"h":15,"t":90,"tokens":[4836,2716,16396,4759],"delegation":[3836,1716,15396,3759],"delegatorTokens":9999999927000}},{"ix":141,"action":{"kind":"Deliver","chain":"provider","numPackets":1},"partialState":{"h":15,"t":90,"tokens":[4836,2716,16396,4759],"delegation":[3836,1716,15396,3759],"delegatorTokens":9999999927000,"jailed":[null,1000000000000029,null,1000000000000023],"status":["bonded","unbonded","bonded","unbonding"]}},{"ix":142,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":19,"t":114,"consumerPower":[8919,null,14116,null],"outstandingDowntime":[false,false,false,false]}},{"ix":143,"action":{"kind":"Delegate","val":0,"amt":2161},"partialState":{"h":15,"t":90,"tokens":[6997,2716,16396,4759],"delegation":[5997,1716,15396,3759],"delegatorTokens":9999999924839}},{"ix":144,"action":{"kind":"Delegate","val":0,"amt":2405},"partialState":{"h":15,"t":90,"tokens":[9402,2716,16396,4759],"delegation":[8402,1716,15396,3759],"delegatorTokens":9999999922434}},{"ix":145,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":20,"t":120,"consumerPower":[8919,null,14116,null],"outstandingDowntime":[false,false,false,false]}},{"ix":146,"action":{"kind":"Deliver","chain":"consumer","numPackets":4},"partialState":{"h":20,"t":120,"consumerPower":[8919,null,14116,null],"outstandingDowntime":[false,false,false,false]}},{"ix":147,"action":{"kind":"Deliver","chain":"provider","numPackets":2},"partialState":{"h":15,"t":90,"tokens":[9402,2716,16396,4759],"delegation":[8402,1716,15396,3759],"delegatorTokens":9999999922434,"jailed":[null,1000000000000029,null,1000000000000023],"status":["bonded","unbonded","bonded","unbonding"]}},{"ix":148,"action":{"kind":"Deliver","chain":"provider","numPackets":3},"partialState":{"h":15,"t":90,"tokens":[9402,2716,16396,4759],"delegation":[8402,1716,15396,3759],"delegatorTokens":9999999922434,"jailed":[null,1000000000000029,null,1000000000000023],"status":["bonded","unbonded","bonded","unbonding"]}},{"ix":149,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":150,"action":{"kind":"Deliver","chain":"consumer","numPackets":1},"partialState":{"h":20,"t":120,"consumerPower":[8919,null,14116,null],"outstandingDowntime":[false,false,false,false]}},{"ix":151,"action":{"kind":"Deliver","chain":"provider","numPackets":2},"partialState":{"h":15,"t":90,"tokens":[9402,2716,16396,4759],"delegation":[8402,1716,15396,3759],"delegatorTokens":9999999922434,"jailed":[null,1000000000000029,null,1000000000000023],"status":["bonded","unbonded","bonded","unbonding"]}},{"ix":152,"action":{"kind":"Deliver","chain":"provider","numPackets":4},"partialState":{"h":15,"t":90,"tokens":[9402,2716,16396,4759],"delegation":[8402,1716,15396,3759],"delegatorTokens":9999999922434,"jailed":[null,1000000000000029,null,1000000000000023],"status":["bonded","unbonded","bonded","unbonding"]}},{"ix":153,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":16,"t":96,"tokens":[9402,2716,16396,4759],"delegation":[8402,1716,15396,3759],"delegatorTokens":9999999922434,"jailed":[null,1000000000000029,null,1000000000000023],"status":["bonded","unbonded","bonded","unbonding"]}},{"ix":154,"action":{"kind":"Undelegate","val":2,"amt":2226},"partialState":{"h":16,"t":96,"tokens":[9402,2716,14170,4759],"delegation":[8402,1716,13170,3759],"delegatorTokens":9999999922434}},{"ix":155,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":156,"action":{"kind":"Delegate","val":2,"amt":4613},"partialState":{"h":16,"t":96,"tokens":[9402,2716,18783,4759],"delegation":[8402,1716,17783,3759],"delegatorTokens":9999999917821}},{"ix":157,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":158,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":159,"action":{"kind":"Delegate","val":0,"amt":1336},"partialState":{"h":16,"t":96,"tokens":[10738,2716,18783,4759],"delegation":[9738,1716,17783,3759],"delegatorTokens":9999999916485}},{"ix":160,"action":{"kind":"Undelegate","val":0,"amt":4382},"partialState":{"h":16,"t":96,"tokens":[6356,2716,18783,4759],"delegation":[5356,1716,17783,3759],"delegatorTokens":9999999916485}},{"ix":161,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":17,"t":102,"tokens":[6356,2716,18783,4759],"delegation":[5356,1716,17783,3759],"delegatorTokens":9999999916485,"jailed":[null,1000000000000029,null,1000000000000023],"status":["bonded","unbonded","bonded","unbonding"]}},{"ix":162,"action":{"kind":"Undelegate","val":1,"amt":1640},"partialState":{"h":17,"t":102,"tokens":[6356,1076,18783,4759],"delegation":[5356,76,17783,3759],"delegatorTokens":9999999916485}},{"ix":163,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":21,"t":126,"consumerPower":[8919,null,14116,null],"outstandingDowntime":[false,false,false,false]}},{"ix":164,"action":{"kind":"Delegate","val":2,"amt":3929},"partialState":{"h":17,"t":102,"tokens":[6356,1076,22712,4759],"delegation":[5356,76,21712,3759],"delegatorTokens":9999999912556}},{"ix":165,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":166,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":167,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":22,"t":132,"consumerPower":[8919,null,14116,null],"outstandingDowntime":[false,false,false,false]}},{"ix":168,"action":{"kind":"Deliver","chain":"provider","numPackets":2},"partialState":{"h":17,"t":102,"tokens":[6356,1076,22712,4759],"delegation":[5356,76,21712,3759],"delegatorTokens":9999999912556,"jailed":[null,1000000000000029,null,1000000000000023],"status":["bonded","unbonded","bonded","unbonding"]}},{"ix":169,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":18,"t":108,"tokens":[6356,1076,22712,4759],"delegation":[5356,76,21712,3759],"delegatorTokens":9999999920836,"jailed":[null,1000000000000029,null,1000000000000023],"status":["bonded","unbonded","bonded","unbonding"]}},{"ix":170,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":23,"t":138,"consumerPower":[8919,null,14116,null],"outstandingDowntime":[false,false,false,false]}},{"ix":171,"action":{"kind":"Deliver","chain":"consumer","numPackets":1},"partialState":{"h":23,"t":138,"consumerPower":[8919,null,14116,null],"outstandingDowntime":[false,false,false,false]}},{"ix":172,"action":{"kind":"Undelegate","val":0,"amt":2225},"partialState":{"h":18,"t":108,"tokens":[4131,1076,22712,4759],"delegation":[3131,76,21712,3759],"delegatorTokens":9999999920836}},{"ix":173,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":24,"t":144,"consumerPower":[13288,null,10497,null],"outstandingDowntime":[false,false,false,false]}},{"ix":174,"action":{"kind":"Deliver","chain":"provider","numPackets":4},"partialState":{"h":18,"t":108,"tokens":[4131,1076,22712,4759],"delegation":[3131,76,21712,3759],"delegatorTokens":9999999920836,"jailed":[null,1000000000000029,null,1000000000000023],"status":["bonded","unbonded","bonded","unbonding"]}},{"ix":175,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":25,"t":150,"consumerPower":[13288,null,10497,null],"outstandingDowntime":[false,false,false,false]}},{"ix":176,"action":{"kind":"Undelegate","val":3,"amt":3913},"partialState":{"h":18,"t":108,"tokens":[4131,1076,22712,4759],"delegation":[3131,76,21712,3759],"delegatorTokens":9999999920836}},{"ix":177,"action":{"kind":"Undelegate","val":3,"amt":2849},"partialState":{"h":18,"t":108,"tokens":[4131,1076,22712,1910],"delegation":[3131,76,21712,910],"delegatorTokens":9999999920836}},{"ix":178,"action":{"kind":"Deliver","chain":"consumer","numPackets":6},"partialState":{"h":25,"t":150,"consumerPower":[13288,null,10497,null],"outstandingDowntime":[false,false,false,false]}},{"ix":179,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":180,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":181,"action":{"kind":"Undelegate","val":0,"amt":4903},"partialState":{"h":18,"t":108,"tokens":[4131,1076,22712,1910],"delegation":[3131,76,21712,910],"delegatorTokens":9999999920836}},{"ix":182,"action":{"kind":"Deliver","chain":"consumer","numPackets":1},"partialState":{"h":25,"t":150,"consumerPower":[13288,null,10497,null],"outstandingDowntime":[false,false,false,false]}},{"ix":183,"action":{"kind":"Deliver","chain":"provider","numPackets":4},"partialState":{"h":18,"t":108,"tokens":[4131,1076,22712,1910],"delegation":[3131,76,21712,910],"delegatorTokens":9999999920836,"jailed":[null,1000000000000029,null,1000000000000023],"status":["bonded","unbonded","bonded","unbonding"]}},{"ix":184,"action":{"kind":"Deliver","chain":"consumer","numPackets":4},"partialState":{"h":25,"t":150,"consumerPower":[13288,null,10497,null],"outstandingDowntime":[false,false,false,false]}},{"ix":185,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":186,"action":{"kind":"Undelegate","val":0,"amt":3022},"partialState":{"h":18,"t":108,"tokens":[1109,1076,22712,1910],"delegation":[109,76,21712,910],"delegatorTokens":9999999920836}},{"ix":187,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":188,"action":{"kind":"Deliver","chain":"consumer","numPackets":5},"partialState":{"h":25,"t":150,"consumerPower":[13288,null,10497,null],"outstandingDowntime":[false,false,false,false]}},{"ix":189,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":190,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":191,"action":{"kind":"Delegate","val":3,"amt":2271},"partialState":{"h":18,"t":108,"tokens":[1109,1076,22712,4181],"delegation":[109,76,21712,3181],"delegatorTokens":9999999918565}},{"ix":192,"action":{"kind":"Undelegate","val":0,"amt":3436},"partialState":{"h":18,"t":108,"tokens":[1109,1076,22712,4181],"delegation":[109,76,21712,3181],"delegatorTokens":9999999918565}},{"ix":193,"action":{"kind":"Undelegate","val":2,"amt":2982},"partialState":{"h":18,"t":108,"tokens":[1109,1076,19730,4181],"delegation":[109,76,18730,3181],"delegatorTokens":9999999918565}},{"ix":194,"action":{"kind":"Undelegate","val":0,"amt":1827},"partialState":{"h":18,"t":108,"tokens":[1109,1076,19730,4181],"delegation":[109,76,18730,3181],"delegatorTokens":9999999918565}},{"ix":195,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":19,"t":114,"tokens":[1109,1076,19730,4181],"delegation":[109,76,18730,3181],"delegatorTokens":9999999922253,"jailed":[null,1000000000000029,null,1000000000000023],"status":["bonded","unbonded","bonded","unbonded"]}},{"ix":196,"action":{"kind":"Deliver","chain":"consumer","numPackets":6},"partialState":{"h":25,"t":150,"consumerPower":[13288,null,10497,null],"outstandingDowntime":[false,false,false,false]}},{"ix":197,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":20,"t":120,"tokens":[1109,1076,19730,4181],"delegation":[109,76,18730,3181],"delegatorTokens":9999999930230,"jailed":[null,1000000000000029,null,1000000000000023],"status":["bonded","unbonded","bonded","unbonded"]}},{"ix":198,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":199,"action":{"kind":"Delegate","val":2,"amt":1192},"partialState":{"h":20,"t":120,"tokens":[1109,1076,20922,4181],"delegation":[109,76,19922,3181],"delegatorTokens":9999999929038}}],"events":["send_downtime_slash_request","insufficient_shares","insufficient_shares","insufficient_shares","send_double_sign_slash_request","more_than_one_third_val_power_change","send_vsc_without_downtime_ack","send_double_sign_slash_request","downtime_slash_request_outstanding","consumer_del_val","consumer_add_val","send_double_sign_slash_request","send_downtime_slash_request","downtime_slash_request_outstanding","receive_double_sign_slash_request","receive_double_sign_slash_request","insufficient_shares","downtime_slash_request_outstanding","more_than_one_third_val_power_change","receive_downtime_slash_request","jail","send_vsc_with_downtime_ack","send_double_sign_slash_request","downtime_slash_request_outstanding","receive_double_sign_slash_request","receive_double_sign_slash_request","rebond_unval","receive_downtime_slash_request","jail","send_vsc_with_downtime_ack","send_double_sign_slash_request","send_double_sign_slash_request","send_vsc_without_downtime_ack","receive_double_sign_slash_request","receive_double_sign_slash_request","insufficient_shares","receive_downtime_slash_ack","receive_downtime_slash_ack","consumer_send_maturation","consumer_update_val","consumer_add_val","consumer_del_val","send_vsc_without_downtime_ack","send_vsc_without_downtime_ack","insufficient_shares","send_vsc_without_downtime_ack","consumer_update_val","consumer_update_val","set_undel_hold_false","set_undel_hold_false","set_unval_hold_false","send_vsc_without_downtime_ack","insufficient_shares","complete_unval_in_endblock","complete_undel_in_endblock","send_vsc_without_downtime_ack","consumer_update_val","consumer_update_val","consumer_send_maturation","consumer_send_maturation","send_vsc_without_downtime_ack","some_undels_expired_but_not_completed","send_vsc_without_downtime_ack","consumer_send_maturation","consumer_send_maturation","consumer_send_maturation","some_undels_expired_but_not_completed","complete_undel_immediate","complete_undel_immediate","set_unval_hold_false","send_vsc_without_downtime_ack","consumer_send_maturation","consumer_send_maturation","consumer_update_val","consumer_update_val","insufficient_shares","insufficient_shares","insufficient_shares","insufficient_shares","complete_unval_in_endblock","some_undels_expired_but_not_completed","complete_undel_immediate","set_undel_hold_false","set_undel_hold_false","set_undel_hold_false","set_undel_hold_false","set_undel_hold_false","set_undel_hold_false","set_undel_hold_false","set_undel_hold_false","set_undel_hold_false","send_vsc_without_downtime_ack","complete_undel_in_endblock"]},{"meta":{"commit":"7ffd0c04e4205cbc9caf212abfe6c59ee43153bf"},"constants":{"P":"provider","C":"consumer","UNBONDING_SECONDS_P":70,"UNBONDING_SECONDS_C":50,"TRUSTING_SECONDS":49,"NUM_VALIDATORS":4,"MAX_VALIDATORS":2,"SLASH_DOUBLESIGN":0,"SLASH_DOWNTIME":0,"JAIL_SECONDS":999999999999999,"BLOCK_SECONDS":6,"INITIAL_DELEGATOR_TOKENS":10000000000000,"DELEGATE_AMT_MIN":1000,"DELEGATE_AMT_MAX":5000,"UNDELEGATE_AMT_MIN":1000,"UNDELEGATE_AMT_MAX":5000,"ISDOWNTIME_PROBABILITY":0.5,"MAX_NUM_PACKETS_FOR_DELIVER":6},"actions":[{"ix":0,"action":{"kind":"ConsumerSlash","val":3,"infractionHeight":0,"isDowntime":true},"partialState":{"h":1,"t":6,"outstandingDowntime":[false,false,false,true]}},{"ix":1,"action":{"kind":"Deliver","chain":"consumer","numPackets":6},"partialState":{"h":1,"t":6,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,false,false,true]}},{"ix":2,"action":{"kind":"Undelegate","val":1,"amt":2338},"partialState":{"h":1,"t":6,"tokens":[5000,1662,3000,2000],"delegation":[4000,662,2000,1000],"delegatorTokens":10000000000000}},{"ix":3,"action":{"kind":"Undelegate","val":2,"amt":4917},"partialState":{"h":1,"t":6,"tokens":[5000,1662,3000,2000],"delegation":[4000,662,2000,1000],"delegatorTokens":10000000000000}},{"ix":4,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":2,"t":12,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,false,false,true]}},{"ix":5,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":2,"t":12,"tokens":[5000,1662,3000,2000],"delegation":[4000,662,2000,1000],"delegatorTokens":10000000000000,"jailed":[null,null,null,null],"status":["bonded","unbonding","bonded","unbonded"]}},{"ix":6,"action":{"kind":"Delegate","val":0,"amt":4339},"partialState":{"h":2,"t":12,"tokens":[9339,1662,3000,2000],"delegation":[8339,662,2000,1000],"delegatorTokens":9999999995661}},{"ix":7,"action":{"kind":"ConsumerSlash","val":3,"infractionHeight":0,"isDowntime":true},"partialState":{"h":2,"t":12,"outstandingDowntime":[false,false,false,true]}},{"ix":8,"action":{"kind":"ConsumerSlash","val":3,"infractionHeight":1,"isDowntime":true},"partialState":{"h":2,"t":12,"outstandingDowntime":[false,false,false,true]}},{"ix":9,"action":{"kind":"Delegate","val":3,"amt":4781},"partialState":{"h":2,"t":12,"tokens":[9339,1662,3000,6781],"delegation":[8339,662,2000,5781],"delegatorTokens":9999999990880}},{"ix":10,"action":{"kind":"ConsumerSlash","val":3,"infractionHeight":1,"isDowntime":false},"partialState":{"h":2,"t":12,"outstandingDowntime":[false,false,false,true]}},{"ix":11,"action":{"kind":"Undelegate","val":0,"amt":3406},"partialState":{"h":2,"t":12,"tokens":[5933,1662,3000,6781],"delegation":[4933,662,2000,5781],"delegatorTokens":9999999990880}},{"ix":12,"action":{"kind":"Delegate","val":2,"amt":3356},"partialState":{"h":2,"t":12,"tokens":[5933,1662,6356,6781],"delegation":[4933,662,5356,5781],"delegatorTokens":9999999987524}},{"ix":13,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":14,"action":{"kind":"Undelegate","val":2,"amt":1614},"partialState":{"h":2,"t":12,"tokens":[5933,1662,4742,6781],"delegation":[4933,662,3742,5781],"delegatorTokens":9999999987524}},{"ix":15,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":16,"action":{"kind":"Deliver","chain":"provider","numPackets":5},"partialState":{"h":2,"t":12,"tokens":[5933,1662,4742,6781],"delegation":[4933,662,3742,5781],"delegatorTokens":9999999987524,"jailed":[null,null,null,null],"status":["bonded","unbonding","bonded","unbonded"]}},{"ix":17,"action":{"kind":"ConsumerSlash","val":1,"infractionHeight":0,"isDowntime":true},"partialState":{"h":2,"t":12,"outstandingDowntime":[false,true,false,true]}},{"ix":18,"action":{"kind":"Deliver","chain":"consumer","numPackets":2},"partialState":{"h":2,"t":12,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,true,false,true]}},{"ix":19,"action":{"kind":"Delegate","val":3,"amt":2721},"partialState":{"h":2,"t":12,"tokens":[5933,1662,4742,9502],"delegation":[4933,662,3742,8502],"delegatorTokens":9999999984803}},{"ix":20,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":3,"t":18,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,true,false,true]}},{"ix":21,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":4,"t":24,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,true,false,true]}},{"ix":22,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":3,"t":18,"tokens":[5933,1662,4742,9502],"delegation":[4933,662,3742,8502],"delegatorTokens":9999999984803,"jailed":[null,null,null,null],"status":["bonded","unbonding","unbonding","bonded"]}},{"ix":23,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":24,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":4,"t":24,"tokens":[5933,1662,4742,9502],"delegation":[4933,662,3742,8502],"delegatorTokens":9999999984803,"jailed":[null,null,null,null],"status":["bonded","unbonding","unbonding","bonded"]}},{"ix":25,"action":{"kind":"Delegate","val":0,"amt":3256},"partialState":{"h":4,"t":24,"tokens":[9189,1662,4742,9502],"delegation":[8189,662,3742,8502],"delegatorTokens":9999999981547}},{"ix":26,"action":{"kind":"ConsumerSlash","val":2,"infractionHeight":1,"isDowntime":true},"partialState":{"h":4,"t":24,"outstandingDowntime":[false,true,true,true]}},{"ix":27,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":28,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":5,"t":30,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,true,true,true]}},{"ix":29,"action":{"kind":"Undelegate","val":2,"amt":1887},"partialState":{"h":4,"t":24,"tokens":[9189,1662,2855,9502],"delegation":[8189,662,1855,8502],"delegatorTokens":9999999981547}},{"ix":30,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":5,"t":30,"tokens":[9189,1662,2855,9502],"delegation":[8189,662,1855,8502],"delegatorTokens":9999999981547,"jailed":[null,null,null,null],"status":["bonded","unbonding","unbonding","bonded"]}},{"ix":31,"action":{"kind":"Delegate","val":3,"amt":3772},"partialState":{"h":5,"t":30,"tokens":[9189,1662,2855,13274],"delegation":[8189,662,1855,12274],"delegatorTokens":9999999977775}},{"ix":32,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":33,"action":{"kind":"Delegate","val":0,"amt":1574},"partialState":{"h":5,"t":30,"tokens":[10763,1662,2855,13274],"delegation":[9763,662,1855,12274],"delegatorTokens":9999999976201}},{"ix":34,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":35,"action":{"kind":"Undelegate","val":0,"amt":3932},"partialState":{"h":5,"t":30,"tokens":[6831,1662,2855,13274],"delegation":[5831,662,1855,12274],"delegatorTokens":9999999976201}},{"ix":36,"action":{"kind":"Deliver","chain":"provider","numPackets":3},"partialState":{"h":5,"t":30,"tokens":[6831,1662,2855,13274],"delegation":[5831,662,1855,12274],"delegatorTokens":9999999976201,"jailed":[null,null,null,null],"status":["bonded","unbonding","unbonding","bonded"]}},{"ix":37,"action":{"kind":"Delegate","val":0,"amt":2100},"partialState":{"h":5,"t":30,"tokens":[8931,1662,2855,13274],"delegation":[7931,662,1855,12274],"delegatorTokens":9999999974101}},{"ix":38,"action":{"kind":"Deliver","chain":"provider","numPackets":2},"partialState":{"h":5,"t":30,"tokens":[8931,1662,2855,13274],"delegation":[7931,662,1855,12274],"delegatorTokens":9999999974101,"jailed":[null,null,null,null],"status":["bonded","unbonding","unbonding","bonded"]}},{"ix":39,"action":{"kind":"Delegate","val":2,"amt":2639},"partialState":{"h":5,"t":30,"tokens":[8931,1662,5494,13274],"delegation":[7931,662,4494,12274],"delegatorTokens":9999999971462}},{"ix":40,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":6,"t":36,"tokens":[8931,1662,5494,13274],"delegation":[7931,662,4494,12274],"delegatorTokens":9999999971462,"jailed":[null,1000000000000029,null,1000000000000029],"status":["bonded","unbonding","unbonding","bonded"]}},{"ix":41,"action":{"kind":"Deliver","chain":"consumer","numPackets":4},"partialState":{"h":5,"t":30,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,true,true,true]}},{"ix":42,"action":{"kind":"Undelegate","val":2,"amt":3055},"partialState":{"h":6,"t":36,"tokens":[8931,1662,2439,13274],"delegation":[7931,662,1439,12274],"delegatorTokens":9999999971462}},{"ix":43,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":44,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":7,"t":42,"tokens":[8931,1662,2439,13274],"delegation":[7931,662,1439,12274],"delegatorTokens":9999999971462,"jailed":[null,1000000000000029,null,1000000000000029],"status":["bonded","unbonding","bonded","unbonding"]}},{"ix":45,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":6,"t":36,"consumerPower":[9189,null,null,9502],"outstandingDowntime":[false,true,true,true]}},{"ix":46,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":8,"t":48,"tokens":[8931,1662,2439,13274],"delegation":[7931,662,1439,12274],"delegatorTokens":9999999971462,"jailed":[null,1000000000000029,null,1000000000000029],"status":["bonded","unbonding","bonded","unbonding"]}},{"ix":47,"action":{"kind":"Deliver","chain":"consumer","numPackets":6},"partialState":{"h":6,"t":36,"consumerPower":[9189,null,null,9502],"outstandingDowntime":[false,false,true,false]}},{"ix":48,"action":{"kind":"Delegate","val":0,"amt":3026},"partialState":{"h":8,"t":48,"tokens":[11957,1662,2439,13274],"delegation":[10957,662,1439,12274],"delegatorTokens":9999999968436}},{"ix":49,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":9,"t":54,"tokens":[11957,1662,2439,13274],"delegation":[10957,662,1439,12274],"delegatorTokens":9999999968436,"jailed":[null,1000000000000029,null,1000000000000029],"status":["bonded","unbonding","bonded","unbonding"]}},{"ix":50,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":51,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":52,"action":{"kind":"Undelegate","val":3,"amt":2181},"partialState":{"h":9,"t":54,"tokens":[11957,1662,2439,11093],"delegation":[10957,662,1439,10093],"delegatorTokens":9999999968436}},{"ix":53,"action":{"kind":"Deliver","chain":"consumer","numPackets":2},"partialState":{"h":6,"t":36,"consumerPower":[9189,null,null,9502],"outstandingDowntime":[false,false,true,false]}},{"ix":54,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":10,"t":60,"tokens":[11957,1662,2439,11093],"delegation":[10957,662,1439,10093],"delegatorTokens":9999999968436,"jailed":[null,1000000000000029,null,1000000000000029],"status":["bonded","unbonding","bonded","unbonding"]}},{"ix":55,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":56,"action":{"kind":"Undelegate","val":3,"amt":3655},"partialState":{"h":10,"t":60,"tokens":[11957,1662,2439,7438],"delegation":[10957,662,1439,6438],"delegatorTokens":9999999968436}},{"ix":57,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":11,"t":66,"tokens":[11957,1662,2439,7438],"delegation":[10957,662,1439,6438],"delegatorTokens":9999999968436,"jailed":[null,1000000000000029,null,1000000000000029],"status":["bonded","unbonding","bonded","unbonding"]}},{"ix":58,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":7,"t":42,"consumerPower":[8931,null,2439,null],"outstandingDowntime":[false,false,true,false]}},{"ix":59,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":8,"t":48,"consumerPower":[8931,null,2439,null],"outstandingDowntime":[false,false,true,false]}},{"ix":60,"action":{"kind":"Undelegate","val":1,"amt":3368},"partialState":{"h":11,"t":66,"tokens":[11957,1662,2439,7438],"delegation":[10957,662,1439,6438],"delegatorTokens":9999999968436}},{"ix":61,"action":{"kind":"Deliver","chain":"consumer","numPackets":2},"partialState":{"h":8,"t":48,"consumerPower":[8931,null,2439,null],"outstandingDowntime":[false,false,true,false]}},{"ix":62,"action":{"kind":"Deliver","chain":"consumer","numPackets":4},"partialState":{"h":8,"t":48,"consumerPower":[8931,null,2439,null],"outstandingDowntime":[false,false,true,false]}},{"ix":63,"action":{"kind":"Deliver","chain":"consumer","numPackets":2},"partialState":{"h":8,"t":48,"consumerPower":[8931,null,2439,null],"outstandingDowntime":[false,false,true,false]}},{"ix":64,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":12,"t":72,"tokens":[11957,1662,2439,7438],"delegation":[10957,662,1439,6438],"delegatorTokens":9999999968436,"jailed":[null,1000000000000029,null,1000000000000029],"status":["bonded","unbonding","bonded","unbonding"]}},{"ix":65,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":66,"action":{"kind":"Delegate","val":0,"amt":3549},"partialState":{"h":12,"t":72,"tokens":[15506,1662,2439,7438],"delegation":[14506,662,1439,6438],"delegatorTokens":9999999964887}},{"ix":67,"action":{"kind":"Deliver","chain":"provider","numPackets":2},"partialState":{"h":12,"t":72,"tokens":[15506,1662,2439,7438],"delegation":[14506,662,1439,6438],"delegatorTokens":9999999964887,"jailed":[null,1000000000000029,null,1000000000000029],"status":["bonded","unbonding","bonded","unbonding"]}},{"ix":68,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":9,"t":54,"consumerPower":[11957,null,2439,null],"outstandingDowntime":[false,false,true,false]}},{"ix":69,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":10,"t":60,"consumerPower":[11957,null,2439,null],"outstandingDowntime":[false,false,true,false]}},{"ix":70,"action":{"kind":"Undelegate","val":3,"amt":2095},"partialState":{"h":12,"t":72,"tokens":[15506,1662,2439,5343],"delegation":[14506,662,1439,4343],"delegatorTokens":9999999964887}},{"ix":71,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":72,"action":{"kind":"Deliver","chain":"consumer","numPackets":3},"partialState":{"h":10,"t":60,"consumerPower":[11957,null,2439,null],"outstandingDowntime":[false,false,true,false]}},{"ix":73,"action":{"kind":"Undelegate","val":2,"amt":4456},"partialState":{"h":12,"t":72,"tokens":[15506,1662,2439,5343],"delegation":[14506,662,1439,4343],"delegatorTokens":9999999964887}},{"ix":74,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":75,"action":{"kind":"Delegate","val":2,"amt":1379},"partialState":{"h":12,"t":72,"tokens":[15506,1662,3818,5343],"delegation":[14506,662,2818,4343],"delegatorTokens":9999999963508}},{"ix":76,"action":{"kind":"Undelegate","val":0,"amt":1890},"partialState":{"h":12,"t":72,"tokens":[13616,1662,3818,5343],"delegation":[12616,662,2818,4343],"delegatorTokens":9999999963508}},{"ix":77,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":78,"action":{"kind":"Deliver","chain":"provider","numPackets":5},"partialState":{"h":12,"t":72,"tokens":[13616,1662,3818,5343],"delegation":[12616,662,2818,4343],"delegatorTokens":9999999963508,"jailed":[null,1000000000000029,null,1000000000000029],"status":["bonded","unbonding","bonded","unbonding"]}},{"ix":79,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":11,"t":66,"consumerPower":[11957,null,2439,null],"outstandingDowntime":[false,false,true,false]}},{"ix":80,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":13,"t":78,"tokens":[13616,1662,3818,5343],"delegation":[12616,662,2818,4343],"delegatorTokens":9999999963508,"jailed":[null,1000000000000029,1000000000000071,1000000000000029],"status":["bonded","unbonding","bonded","unbonding"]}},{"ix":81,"action":{"kind":"Delegate","val":2,"amt":2852},"partialState":{"h":13,"t":78,"tokens":[13616,1662,6670,5343],"delegation":[12616,662,5670,4343],"delegatorTokens":9999999960656}},{"ix":82,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":14,"t":84,"tokens":[13616,1662,6670,5343],"delegation":[12616,662,5670,4343],"delegatorTokens":9999999960656,"jailed":[null,1000000000000029,1000000000000071,1000000000000029],"status":["bonded","unbonding","unbonding","unbonding"]}},{"ix":83,"action":{"kind":"Undelegate","val":0,"amt":1583},"partialState":{"h":14,"t":84,"tokens":[12033,1662,6670,5343],"delegation":[11033,662,5670,4343],"delegatorTokens":9999999960656}},{"ix":84,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":85,"action":{"kind":"Undelegate","val":3,"amt":1562},"partialState":{"h":14,"t":84,"tokens":[12033,1662,6670,3781],"delegation":[11033,662,5670,2781],"delegatorTokens":9999999960656}},{"ix":86,"action":{"kind":"Delegate","val":0,"amt":3636},"partialState":{"h":14,"t":84,"tokens":[15669,1662,6670,3781],"delegation":[14669,662,5670,2781],"delegatorTokens":9999999957020}},{"ix":87,"action":{"kind":"Undelegate","val":1,"amt":2211},"partialState":{"h":14,"t":84,"tokens":[15669,1662,6670,3781],"delegation":[14669,662,5670,2781],"delegatorTokens":9999999957020}},{"ix":88,"action":{"kind":"Delegate","val":0,"amt":4136},"partialState":{"h":14,"t":84,"tokens":[19805,1662,6670,3781],"delegation":[18805,662,5670,2781],"delegatorTokens":9999999952884}},{"ix":89,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":90,"action":{"kind":"Undelegate","val":0,"amt":3431},"partialState":{"h":14,"t":84,"tokens":[16374,1662,6670,3781],"delegation":[15374,662,5670,2781],"delegatorTokens":9999999952884}},{"ix":91,"action":{"kind":"Deliver","chain":"consumer","numPackets":6},"partialState":{"h":11,"t":66,"consumerPower":[11957,null,2439,null],"outstandingDowntime":[false,false,false,false]}},{"ix":92,"action":{"kind":"Undelegate","val":2,"amt":1921},"partialState":{"h":14,"t":84,"tokens":[16374,1662,4749,3781],"delegation":[15374,662,3749,2781],"delegatorTokens":9999999952884}},{"ix":93,"action":{"kind":"Delegate","val":0,"amt":4441},"partialState":{"h":14,"t":84,"tokens":[20815,1662,4749,3781],"delegation":[19815,662,3749,2781],"delegatorTokens":9999999948443}},{"ix":94,"action":{"kind":"Delegate","val":3,"amt":1120},"partialState":{"h":14,"t":84,"tokens":[20815,1662,4749,4901],"delegation":[19815,662,3749,3901],"delegatorTokens":9999999947323}},{"ix":95,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":12,"t":72,"consumerPower":[13616,null,3818,null],"outstandingDowntime":[false,false,false,false]}},{"ix":96,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":97,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":13,"t":78,"consumerPower":[13616,null,3818,null],"outstandingDowntime":[false,false,false,false]}},{"ix":98,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":14,"t":84,"consumerPower":[13616,null,3818,null],"outstandingDowntime":[false,false,false,false]}},{"ix":99,"action":{"kind":"Delegate","val":0,"amt":2457},"partialState":{"h":14,"t":84,"tokens":[23272,1662,4749,4901],"delegation":[22272,662,3749,3901],"delegatorTokens":9999999944866}},{"ix":100,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":15,"t":90,"tokens":[23272,1662,4749,4901],"delegation":[22272,662,3749,3901],"delegatorTokens":9999999944866,"jailed":[null,1000000000000029,1000000000000071,1000000000000029],"status":["bonded","unbonding","unbonding","unbonding"]}},{"ix":101,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":15,"t":90,"consumerPower":[13616,null,3818,null],"outstandingDowntime":[false,false,false,false]}},{"ix":102,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":103,"action":{"kind":"Deliver","chain":"provider","numPackets":3},"partialState":{"h":15,"t":90,"tokens":[23272,1662,4749,4901],"delegation":[22272,662,3749,3901],"delegatorTokens":9999999944866,"jailed":[null,1000000000000029,1000000000000071,1000000000000029],"status":["bonded","unbonding","unbonding","unbonding"]}},{"ix":104,"action":{"kind":"Deliver","chain":"consumer","numPackets":1},"partialState":{"h":15,"t":90,"consumerPower":[13616,null,3818,null],"outstandingDowntime":[false,false,false,false]}},{"ix":105,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":16,"t":96,"tokens":[23272,1662,4749,4901],"delegation":[22272,662,3749,3901],"delegatorTokens":9999999944866,"jailed":[null,1000000000000029,1000000000000071,1000000000000029],"status":["bonded","unbonding","unbonding","unbonding"]}},{"ix":106,"action":{"kind":"Undelegate","val":1,"amt":3078},"partialState":{"h":16,"t":96,"tokens":[23272,1662,4749,4901],"delegation":[22272,662,3749,3901],"delegatorTokens":9999999944866}},{"ix":107,"action":{"kind":"Undelegate","val":0,"amt":3752},"partialState":{"h":16,"t":96,"tokens":[19520,1662,4749,4901],"delegation":[18520,662,3749,3901],"delegatorTokens":9999999944866}},{"ix":108,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":17,"t":102,"tokens":[19520,1662,4749,4901],"delegation":[18520,662,3749,3901],"delegatorTokens":9999999944866,"jailed":[null,1000000000000029,1000000000000071,1000000000000029],"status":["bonded","unbonding","unbonding","unbonding"]}},{"ix":109,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":18,"t":108,"tokens":[19520,1662,4749,4901],"delegation":[18520,662,3749,3901],"delegatorTokens":9999999944866,"jailed":[null,1000000000000029,1000000000000071,1000000000000029],"status":["bonded","unbonding","unbonding","unbonding"]}},{"ix":110,"action":{"kind":"Deliver","chain":"consumer","numPackets":4},"partialState":{"h":15,"t":90,"consumerPower":[13616,null,3818,null],"outstandingDowntime":[false,false,false,false]}},{"ix":111,"action":{"kind":"Delegate","val":1,"amt":4239},"partialState":{"h":18,"t":108,"tokens":[19520,5901,4749,4901],"delegation":[18520,4901,3749,3901],"delegatorTokens":9999999940627}},{"ix":112,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":113,"action":{"kind":"Undelegate","val":2,"amt":1303},"partialState":{"h":18,"t":108,"tokens":[19520,5901,3446,4901],"delegation":[18520,4901,2446,3901],"delegatorTokens":9999999940627}},{"ix":114,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":115,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":16,"t":96,"consumerPower":[19520,null,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":116,"action":{"kind":"Deliver","chain":"provider","numPackets":1},"partialState":{"h":18,"t":108,"tokens":[19520,5901,3446,4901],"delegation":[18520,4901,2446,3901],"delegatorTokens":9999999940627,"jailed":[null,1000000000000029,1000000000000071,1000000000000029],"status":["bonded","unbonding","unbonding","unbonding"]}},{"ix":117,"action":{"kind":"Delegate","val":3,"amt":2536},"partialState":{"h":18,"t":108,"tokens":[19520,5901,3446,7437],"delegation":[18520,4901,2446,6437],"delegatorTokens":9999999938091}},{"ix":118,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":17,"t":102,"consumerPower":[19520,null,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":119,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":19,"t":114,"tokens":[19520,5901,3446,7437],"delegation":[18520,4901,2446,6437],"delegatorTokens":9999999940429,"jailed":[null,1000000000000029,1000000000000071,1000000000000029],"status":["bonded","unbonding","unbonding","unbonding"]}},{"ix":120,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":121,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":122,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":123,"action":{"kind":"Undelegate","val":1,"amt":2252},"partialState":{"h":19,"t":114,"tokens":[19520,3649,3446,7437],"delegation":[18520,2649,2446,6437],"delegatorTokens":9999999940429}},{"ix":124,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":125,"action":{"kind":"Deliver","chain":"provider","numPackets":6},"partialState":{"h":19,"t":114,"tokens":[19520,3649,3446,7437],"delegation":[18520,2649,2446,6437],"delegatorTokens":9999999940429,"jailed":[null,1000000000000029,1000000000000071,1000000000000029],"status":["bonded","unbonding","unbonding","unbonding"]}},{"ix":126,"action":{"kind":"Undelegate","val":1,"amt":4700},"partialState":{"h":19,"t":114,"tokens":[19520,3649,3446,7437],"delegation":[18520,2649,2446,6437],"delegatorTokens":9999999940429}},{"ix":127,"action":{"kind":"Undelegate","val":3,"amt":2067},"partialState":{"h":19,"t":114,"tokens":[19520,3649,3446,5370],"delegation":[18520,2649,2446,4370],"delegatorTokens":9999999940429}},{"ix":128,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":18,"t":108,"consumerPower":[19520,null,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":129,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":19,"t":114,"consumerPower":[19520,null,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":130,"action":{"kind":"Undelegate","val":1,"amt":1193},"partialState":{"h":19,"t":114,"tokens":[19520,2456,3446,5370],"delegation":[18520,1456,2446,4370],"delegatorTokens":9999999940429}},{"ix":131,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":20,"t":120,"tokens":[19520,2456,3446,5370],"delegation":[18520,1456,2446,4370],"delegatorTokens":9999999954323,"jailed":[null,1000000000000029,1000000000000071,1000000000000029],"status":["bonded","unbonded","unbonding","unbonding"]}},{"ix":132,"action":{"kind":"Undelegate","val":1,"amt":3987},"partialState":{"h":20,"t":120,"tokens":[19520,2456,3446,5370],"delegation":[18520,1456,2446,4370],"delegatorTokens":9999999954323}},{"ix":133,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":21,"t":126,"tokens":[19520,2456,3446,5370],"delegation":[18520,1456,2446,4370],"delegatorTokens":9999999954323,"jailed":[null,1000000000000029,1000000000000071,1000000000000029],"status":["bonded","unbonded","unbonding","unbonded"]}},{"ix":134,"action":{"kind":"Delegate","val":0,"amt":2974},"partialState":{"h":21,"t":126,"tokens":[22494,2456,3446,5370],"delegation":[21494,1456,2446,4370],"delegatorTokens":9999999951349}},{"ix":135,"action":{"kind":"Delegate","val":0,"amt":4902},"partialState":{"h":21,"t":126,"tokens":[27396,2456,3446,5370],"delegation":[26396,1456,2446,4370],"delegatorTokens":9999999946447}},{"ix":136,"action":{"kind":"Delegate","val":0,"amt":4052},"partialState":{"h":21,"t":126,"tokens":[31448,2456,3446,5370],"delegation":[30448,1456,2446,4370],"delegatorTokens":9999999942395}},{"ix":137,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":138,"action":{"kind":"Deliver","chain":"provider","numPackets":3},"partialState":{"h":21,"t":126,"tokens":[31448,2456,3446,5370],"delegation":[30448,1456,2446,4370],"delegatorTokens":9999999942395,"jailed":[null,1000000000000029,1000000000000071,1000000000000029],"status":["bonded","unbonded","unbonding","unbonded"]}},{"ix":139,"action":{"kind":"Undelegate","val":1,"amt":4007},"partialState":{"h":21,"t":126,"tokens":[31448,2456,3446,5370],"delegation":[30448,1456,2446,4370],"delegatorTokens":9999999942395}},{"ix":140,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":22,"t":132,"tokens":[31448,2456,3446,5370],"delegation":[30448,1456,2446,4370],"delegatorTokens":9999999944576,"jailed":[null,1000000000000029,1000000000000071,1000000000000029],"status":["bonded","unbonded","unbonding","unbonded"]}},{"ix":141,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":23,"t":138,"tokens":[31448,2456,3446,5370],"delegation":[30448,1456,2446,4370],"delegatorTokens":9999999944576,"jailed":[null,1000000000000029,1000000000000071,1000000000000029],"status":["bonded","unbonded","unbonding","unbonded"]}},{"ix":142,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":143,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":144,"action":{"kind":"Delegate","val":2,"amt":3823},"partialState":{"h":23,"t":138,"tokens":[31448,2456,7269,5370],"delegation":[30448,1456,6269,4370],"delegatorTokens":9999999940753}},{"ix":145,"action":{"kind":"Deliver","chain":"provider","numPackets":5},"partialState":{"h":23,"t":138,"tokens":[31448,2456,7269,5370],"delegation":[30448,1456,6269,4370],"delegatorTokens":9999999940753,"jailed":[null,1000000000000029,1000000000000071,1000000000000029],"status":["bonded","unbonded","unbonding","unbonded"]}},{"ix":146,"action":{"kind":"Deliver","chain":"consumer","numPackets":3},"partialState":{"h":19,"t":114,"consumerPower":[19520,null,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":147,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":20,"t":120,"consumerPower":[31448,null,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":148,"action":{"kind":"Delegate","val":3,"amt":1549},"partialState":{"h":23,"t":138,"tokens":[31448,2456,7269,6919],"delegation":[30448,1456,6269,5919],"delegatorTokens":9999999939204}},{"ix":149,"action":{"kind":"Deliver","chain":"provider","numPackets":6},"partialState":{"h":23,"t":138,"tokens":[31448,2456,7269,6919],"delegation":[30448,1456,6269,5919],"delegatorTokens":9999999939204,"jailed":[null,1000000000000029,1000000000000071,1000000000000029],"status":["bonded","unbonded","unbonding","unbonded"]}},{"ix":150,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":151,"action":{"kind":"Delegate","val":1,"amt":2055},"partialState":{"h":23,"t":138,"tokens":[31448,4511,7269,6919],"delegation":[30448,3511,6269,5919],"delegatorTokens":9999999937149}},{"ix":152,"action":{"kind":"Delegate","val":0,"amt":3715},"partialState":{"h":23,"t":138,"tokens":[35163,4511,7269,6919],"delegation":[34163,3511,6269,5919],"delegatorTokens":9999999933434}},{"ix":153,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":21,"t":126,"consumerPower":[31448,null,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":154,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":24,"t":144,"tokens":[35163,4511,7269,6919],"delegation":[34163,3511,6269,5919],"delegatorTokens":9999999933434,"jailed":[null,1000000000000029,1000000000000071,1000000000000029],"status":["bonded","unbonded","unbonding","unbonded"]}},{"ix":155,"action":{"kind":"Undelegate","val":2,"amt":3884},"partialState":{"h":24,"t":144,"tokens":[35163,4511,3385,6919],"delegation":[34163,3511,2385,5919],"delegatorTokens":9999999933434}},{"ix":156,"action":{"kind":"Undelegate","val":0,"amt":2107},"partialState":{"h":24,"t":144,"tokens":[33056,4511,3385,6919],"delegation":[32056,3511,2385,5919],"delegatorTokens":9999999933434}},{"ix":157,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":22,"t":132,"consumerPower":[31448,null,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":158,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":159,"action":{"kind":"Delegate","val":1,"amt":2733},"partialState":{"h":24,"t":144,"tokens":[33056,7244,3385,6919],"delegation":[32056,6244,2385,5919],"delegatorTokens":9999999930701}},{"ix":160,"action":{"kind":"Delegate","val":1,"amt":1245},"partialState":{"h":24,"t":144,"tokens":[33056,8489,3385,6919],"delegation":[32056,7489,2385,5919],"delegatorTokens":9999999929456}},{"ix":161,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":162,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":23,"t":138,"consumerPower":[31448,null,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":163,"action":{"kind":"Delegate","val":1,"amt":2357},"partialState":{"h":24,"t":144,"tokens":[33056,10846,3385,6919],"delegation":[32056,9846,2385,5919],"delegatorTokens":9999999927099}},{"ix":164,"action":{"kind":"Delegate","val":2,"amt":3219},"partialState":{"h":24,"t":144,"tokens":[33056,10846,6604,6919],"delegation":[32056,9846,5604,5919],"delegatorTokens":9999999923880}},{"ix":165,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":24,"t":144,"consumerPower":[31448,null,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":166,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":25,"t":150,"consumerPower":[31448,null,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":167,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":168,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":26,"t":156,"consumerPower":[31448,null,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":169,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":170,"action":{"kind":"Undelegate","val":2,"amt":1997},"partialState":{"h":24,"t":144,"tokens":[33056,10846,4607,6919],"delegation":[32056,9846,3607,5919],"delegatorTokens":9999999923880}},{"ix":171,"action":{"kind":"Delegate","val":0,"amt":2845},"partialState":{"h":24,"t":144,"tokens":[35901,10846,4607,6919],"delegation":[34901,9846,3607,5919],"delegatorTokens":9999999921035}},{"ix":172,"action":{"kind":"Deliver","chain":"consumer","numPackets":1},"partialState":{"h":26,"t":156,"consumerPower":[31448,null,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":173,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":174,"action":{"kind":"Undelegate","val":2,"amt":1480},"partialState":{"h":24,"t":144,"tokens":[35901,10846,3127,6919],"delegation":[34901,9846,2127,5919],"delegatorTokens":9999999921035}},{"ix":175,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":25,"t":150,"tokens":[35901,10846,3127,6919],"delegation":[34901,9846,2127,5919],"delegatorTokens":9999999921035,"jailed":[null,1000000000000029,1000000000000071,1000000000000029],"status":["bonded","unbonded","unbonding","unbonded"]}},{"ix":176,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":26,"t":156,"tokens":[35901,10846,3127,6919],"delegation":[34901,9846,2127,5919],"delegatorTokens":9999999921035,"jailed":[null,1000000000000029,1000000000000071,1000000000000029],"status":["bonded","unbonded","unbonding","unbonded"]}},{"ix":177,"action":{"kind":"Deliver","chain":"provider","numPackets":5},"partialState":{"h":26,"t":156,"tokens":[35901,10846,3127,6919],"delegation":[34901,9846,2127,5919],"delegatorTokens":9999999921035,"jailed":[null,1000000000000029,1000000000000071,1000000000000029],"status":["bonded","unbonded","unbonding","unbonded"]}},{"ix":178,"action":{"kind":"Delegate","val":2,"amt":4829},"partialState":{"h":26,"t":156,"tokens":[35901,10846,7956,6919],"delegation":[34901,9846,6956,5919],"delegatorTokens":9999999916206}},{"ix":179,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":180,"action":{"kind":"Delegate","val":0,"amt":4846},"partialState":{"h":26,"t":156,"tokens":[40747,10846,7956,6919],"delegation":[39747,9846,6956,5919],"delegatorTokens":9999999911360}},{"ix":181,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":27,"t":162,"tokens":[40747,10846,7956,6919],"delegation":[39747,9846,6956,5919],"delegatorTokens":9999999927497,"jailed":[null,1000000000000029,1000000000000071,1000000000000029],"status":["bonded","unbonded","unbonding","unbonded"]}},{"ix":182,"action":{"kind":"Deliver","chain":"consumer","numPackets":2},"partialState":{"h":26,"t":156,"consumerPower":[31448,null,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":183,"action":{"kind":"Delegate","val":3,"amt":1226},"partialState":{"h":27,"t":162,"tokens":[40747,10846,7956,8145],"delegation":[39747,9846,6956,7145],"delegatorTokens":9999999926271}},{"ix":184,"action":{"kind":"Delegate","val":1,"amt":1025},"partialState":{"h":27,"t":162,"tokens":[40747,11871,7956,8145],"delegation":[39747,10871,6956,7145],"delegatorTokens":9999999925246}},{"ix":185,"action":{"kind":"Undelegate","val":1,"amt":1911},"partialState":{"h":27,"t":162,"tokens":[40747,9960,7956,8145],"delegation":[39747,8960,6956,7145],"delegatorTokens":9999999925246}},{"ix":186,"action":{"kind":"Delegate","val":2,"amt":2117},"partialState":{"h":27,"t":162,"tokens":[40747,9960,10073,8145],"delegation":[39747,8960,9073,7145],"delegatorTokens":9999999923129}},{"ix":187,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":188,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":27,"t":162,"consumerPower":[35901,null,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":189,"action":{"kind":"Undelegate","val":1,"amt":1184},"partialState":{"h":27,"t":162,"tokens":[40747,8776,10073,8145],"delegation":[39747,7776,9073,7145],"delegatorTokens":9999999923129}},{"ix":190,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":191,"action":{"kind":"Deliver","chain":"consumer","numPackets":4},"partialState":{"h":27,"t":162,"consumerPower":[35901,null,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":192,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":28,"t":168,"consumerPower":[35901,null,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":193,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":28,"t":168,"tokens":[40747,8776,10073,8145],"delegation":[39747,7776,9073,7145],"delegatorTokens":9999999923129,"jailed":[null,1000000000000029,1000000000000071,1000000000000029],"status":["bonded","unbonded","unbonded","unbonded"]}},{"ix":194,"action":{"kind":"Delegate","val":1,"amt":4003},"partialState":{"h":28,"t":168,"tokens":[40747,12779,10073,8145],"delegation":[39747,11779,9073,7145],"delegatorTokens":9999999919126}},{"ix":195,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":29,"t":174,"tokens":[40747,12779,10073,8145],"delegation":[39747,11779,9073,7145],"delegatorTokens":9999999922878,"jailed":[null,1000000000000029,1000000000000071,1000000000000029],"status":["bonded","unbonded","unbonded","unbonded"]}},{"ix":196,"action":{"kind":"Deliver","chain":"provider","numPackets":4},"partialState":{"h":29,"t":174,"tokens":[40747,12779,10073,8145],"delegation":[39747,11779,9073,7145],"delegatorTokens":9999999922878,"jailed":[null,1000000000000029,1000000000000071,1000000000000029],"status":["bonded","unbonded","unbonded","unbonded"]}},{"ix":197,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":29,"t":174,"consumerPower":[35901,null,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":198,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":30,"t":180,"tokens":[40747,12779,10073,8145],"delegation":[39747,11779,9073,7145],"delegatorTokens":9999999922878,"jailed":[null,1000000000000029,1000000000000071,1000000000000029],"status":["bonded","unbonded","unbonded","unbonded"]}},{"ix":199,"action":{"kind":"Undelegate","val":1,"amt":3200},"partialState":{"h":30,"t":180,"tokens":[40747,9579,10073,8145],"delegation":[39747,8579,9073,7145],"delegatorTokens":9999999922878}}],"events":["send_downtime_slash_request","insufficient_shares","more_than_one_third_val_power_change","send_vsc_without_downtime_ack","downtime_slash_request_outstanding","downtime_slash_request_outstanding","send_double_sign_slash_request","send_downtime_slash_request","more_than_one_third_val_power_change","send_vsc_without_downtime_ack","send_downtime_slash_request","send_vsc_without_downtime_ack","receive_double_sign_slash_request","receive_downtime_slash_request","jail","receive_downtime_slash_request","jail","send_vsc_with_downtime_ack","rebond_unval","send_vsc_without_downtime_ack","consumer_del_val","consumer_del_val","consumer_update_val","consumer_add_val","receive_downtime_slash_ack","receive_downtime_slash_ack","send_vsc_without_downtime_ack","send_vsc_not_because_change","send_vsc_without_downtime_ack","send_vsc_not_because_change","send_vsc_without_downtime_ack","consumer_update_val","consumer_del_val","consumer_add_val","insufficient_shares","consumer_update_val","insufficient_shares","receive_downtime_slash_request","jail","send_vsc_with_downtime_ack","some_undels_expired_but_not_completed","send_vsc_without_downtime_ack","insufficient_shares","receive_downtime_slash_ack","consumer_update_val","consumer_update_val","some_undels_expired_but_not_completed","send_vsc_without_downtime_ack","consumer_send_maturation","consumer_send_maturation","consumer_send_maturation","insufficient_shares","some_undels_expired_but_not_completed","send_vsc_without_downtime_ack","some_undels_expired_but_not_completed","consumer_send_maturation","consumer_send_maturation","consumer_del_val","consumer_update_val","some_undels_expired_but_not_completed","complete_undel_immediate","set_unval_hold_false","send_vsc_not_because_change","send_vsc_without_downtime_ack","insufficient_shares","consumer_send_maturation","consumer_send_maturation","complete_unval_in_endblock","complete_undel_immediate","complete_undel_immediate","complete_undel_immediate","complete_undel_immediate","complete_undel_immediate","set_unval_hold_false","send_vsc_not_because_change","send_vsc_without_downtime_ack","insufficient_shares","complete_unval_in_endblock","insufficient_shares","some_undels_expired_but_not_completed","complete_undel_immediate","send_vsc_without_downtime_ack","some_undels_expired_but_not_completed","consumer_send_maturation","consumer_update_val","consumer_send_maturation","send_vsc_without_downtime_ack","consumer_send_maturation","consumer_send_maturation","consumer_send_maturation","some_undels_expired_but_not_completed","send_vsc_without_downtime_ack","some_undels_expired_but_not_completed","complete_undel_immediate","complete_undel_immediate","complete_undel_immediate","set_unval_hold_false","complete_undel_immediate","complete_undel_immediate","complete_undel_immediate","complete_undel_immediate","set_undel_hold_false","send_vsc_without_downtime_ack","consumer_update_val","complete_unval_in_endblock","send_vsc_not_because_change","send_vsc_without_downtime_ack","complete_undel_in_endblock","consumer_send_maturation","consumer_send_maturation","consumer_send_maturation"]},{"meta":{"commit":"7ffd0c04e4205cbc9caf212abfe6c59ee43153bf"},"constants":{"P":"provider","C":"consumer","UNBONDING_SECONDS_P":70,"UNBONDING_SECONDS_C":50,"TRUSTING_SECONDS":49,"NUM_VALIDATORS":4,"MAX_VALIDATORS":2,"SLASH_DOUBLESIGN":0,"SLASH_DOWNTIME":0,"JAIL_SECONDS":999999999999999,"BLOCK_SECONDS":6,"INITIAL_DELEGATOR_TOKENS":10000000000000,"DELEGATE_AMT_MIN":1000,"DELEGATE_AMT_MAX":5000,"UNDELEGATE_AMT_MIN":1000,"UNDELEGATE_AMT_MAX":5000,"ISDOWNTIME_PROBABILITY":0.5,"MAX_NUM_PACKETS_FOR_DELIVER":6},"actions":[{"ix":0,"action":{"kind":"ConsumerSlash","val":1,"infractionHeight":0,"isDowntime":false},"partialState":{"h":1,"t":6,"outstandingDowntime":[false,false,false,false]}},{"ix":1,"action":{"kind":"Delegate","val":3,"amt":2173},"partialState":{"h":1,"t":6,"tokens":[5000,4000,3000,4173],"delegation":[4000,3000,2000,3173],"delegatorTokens":9999999997827}},{"ix":2,"action":{"kind":"Delegate","val":1,"amt":2119},"partialState":{"h":1,"t":6,"tokens":[5000,6119,3000,4173],"delegation":[4000,5119,2000,3173],"delegatorTokens":9999999995708}},{"ix":3,"action":{"kind":"ConsumerSlash","val":0,"infractionHeight":0,"isDowntime":true},"partialState":{"h":1,"t":6,"outstandingDowntime":[true,false,false,false]}},{"ix":4,"action":{"kind":"Delegate","val":1,"amt":1651},"partialState":{"h":1,"t":6,"tokens":[5000,7770,3000,4173],"delegation":[4000,6770,2000,3173],"delegatorTokens":9999999994057}},{"ix":5,"action":{"kind":"Deliver","chain":"consumer","numPackets":3},"partialState":{"h":1,"t":6,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[true,false,false,false]}},{"ix":6,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":7,"action":{"kind":"ConsumerSlash","val":1,"infractionHeight":0,"isDowntime":true},"partialState":{"h":1,"t":6,"outstandingDowntime":[true,true,false,false]}},{"ix":8,"action":{"kind":"Deliver","chain":"consumer","numPackets":3},"partialState":{"h":1,"t":6,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[true,true,false,false]}},{"ix":9,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":10,"action":{"kind":"ConsumerSlash","val":2,"infractionHeight":0,"isDowntime":true},"partialState":{"h":1,"t":6,"outstandingDowntime":[true,true,true,false]}},{"ix":11,"action":{"kind":"Deliver","chain":"provider","numPackets":1},"partialState":{"h":1,"t":6,"tokens":[5000,7770,3000,4173],"delegation":[4000,6770,2000,3173],"delegatorTokens":9999999994057,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":12,"action":{"kind":"Deliver","chain":"consumer","numPackets":4},"partialState":{"h":1,"t":6,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[true,true,true,false]}},{"ix":13,"action":{"kind":"Delegate","val":3,"amt":4945},"partialState":{"h":1,"t":6,"tokens":[5000,7770,3000,9118],"delegation":[4000,6770,2000,8118],"delegatorTokens":9999999989112}},{"ix":14,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":2,"t":12,"tokens":[5000,7770,3000,9118],"delegation":[4000,6770,2000,8118],"delegatorTokens":9999999989112,"jailed":[null,null,null,null],"status":["unbonding","bonded","unbonded","bonded"]}},{"ix":15,"action":{"kind":"Delegate","val":1,"amt":3332},"partialState":{"h":2,"t":12,"tokens":[5000,11102,3000,9118],"delegation":[4000,10102,2000,8118],"delegatorTokens":9999999985780}},{"ix":16,"action":{"kind":"Undelegate","val":1,"amt":4718},"partialState":{"h":2,"t":12,"tokens":[5000,6384,3000,9118],"delegation":[4000,5384,2000,8118],"delegatorTokens":9999999985780}},{"ix":17,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":3,"t":18,"tokens":[5000,6384,3000,9118],"delegation":[4000,5384,2000,8118],"delegatorTokens":9999999985780,"jailed":[null,null,null,null],"status":["unbonding","bonded","unbonded","bonded"]}},{"ix":18,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":19,"action":{"kind":"Delegate","val":0,"amt":3295},"partialState":{"h":3,"t":18,"tokens":[8295,6384,3000,9118],"delegation":[7295,5384,2000,8118],"delegatorTokens":9999999982485}},{"ix":20,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":2,"t":12,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[true,true,true,false]}},{"ix":21,"action":{"kind":"Deliver","chain":"provider","numPackets":6},"partialState":{"h":3,"t":18,"tokens":[8295,6384,3000,9118],"delegation":[7295,5384,2000,8118],"delegatorTokens":9999999982485,"jailed":[null,null,null,null],"status":["unbonding","bonded","unbonded","bonded"]}},{"ix":22,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":23,"action":{"kind":"Deliver","chain":"consumer","numPackets":3},"partialState":{"h":2,"t":12,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[true,true,true,false]}},{"ix":24,"action":{"kind":"Undelegate","val":3,"amt":2434},"partialState":{"h":3,"t":18,"tokens":[8295,6384,3000,6684],"delegation":[7295,5384,2000,5684],"delegatorTokens":9999999982485}},{"ix":25,"action":{"kind":"Deliver","chain":"provider","numPackets":3},"partialState":{"h":3,"t":18,"tokens":[8295,6384,3000,6684],"delegation":[7295,5384,2000,5684],"delegatorTokens":9999999982485,"jailed":[null,null,null,null],"status":["unbonding","bonded","unbonded","bonded"]}},{"ix":26,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":3,"t":18,"consumerPower":[null,7770,null,9118],"outstandingDowntime":[true,true,true,false]}},{"ix":27,"action":{"kind":"Delegate","val":3,"amt":1334},"partialState":{"h":3,"t":18,"tokens":[8295,6384,3000,8018],"delegation":[7295,5384,2000,7018],"delegatorTokens":9999999981151}},{"ix":28,"action":{"kind":"Delegate","val":2,"amt":2930},"partialState":{"h":3,"t":18,"tokens":[8295,6384,5930,8018],"delegation":[7295,5384,4930,7018],"delegatorTokens":9999999978221}},{"ix":29,"action":{"kind":"Delegate","val":2,"amt":3521},"partialState":{"h":3,"t":18,"tokens":[8295,6384,9451,8018],"delegation":[7295,5384,8451,7018],"delegatorTokens":9999999974700}},{"ix":30,"action":{"kind":"Deliver","chain":"provider","numPackets":2},"partialState":{"h":3,"t":18,"tokens":[8295,6384,9451,8018],"delegation":[7295,5384,8451,7018],"delegatorTokens":9999999974700,"jailed":[null,null,null,null],"status":["unbonding","bonded","unbonded","bonded"]}},{"ix":31,"action":{"kind":"Undelegate","val":1,"amt":2076},"partialState":{"h":3,"t":18,"tokens":[8295,4308,9451,8018],"delegation":[7295,3308,8451,7018],"delegatorTokens":9999999974700}},{"ix":32,"action":{"kind":"Delegate","val":3,"amt":2006},"partialState":{"h":3,"t":18,"tokens":[8295,4308,9451,10024],"delegation":[7295,3308,8451,9024],"delegatorTokens":9999999972694}},{"ix":33,"action":{"kind":"Undelegate","val":2,"amt":3828},"partialState":{"h":3,"t":18,"tokens":[8295,4308,5623,10024],"delegation":[7295,3308,4623,9024],"delegatorTokens":9999999972694}},{"ix":34,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":4,"t":24,"tokens":[8295,4308,5623,10024],"delegation":[7295,3308,4623,9024],"delegatorTokens":9999999972694,"jailed":[1000000000000017,null,null,null],"status":["bonded","unbonding","unbonded","bonded"]}},{"ix":35,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":36,"action":{"kind":"Deliver","chain":"provider","numPackets":1},"partialState":{"h":4,"t":24,"tokens":[8295,4308,5623,10024],"delegation":[7295,3308,4623,9024],"delegatorTokens":9999999972694,"jailed":[1000000000000017,null,null,null],"status":["bonded","unbonding","unbonded","bonded"]}},{"ix":37,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":38,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":39,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":4,"t":24,"consumerPower":[null,7770,null,9118],"outstandingDowntime":[true,true,true,false]}},{"ix":40,"action":{"kind":"Delegate","val":2,"amt":3391},"partialState":{"h":4,"t":24,"tokens":[8295,4308,9014,10024],"delegation":[7295,3308,8014,9024],"delegatorTokens":9999999969303}},{"ix":41,"action":{"kind":"Delegate","val":3,"amt":1442},"partialState":{"h":4,"t":24,"tokens":[8295,4308,9014,11466],"delegation":[7295,3308,8014,10466],"delegatorTokens":9999999967861}},{"ix":42,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":5,"t":30,"tokens":[8295,4308,9014,11466],"delegation":[7295,3308,8014,10466],"delegatorTokens":9999999967861,"jailed":[1000000000000017,1000000000000023,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":43,"action":{"kind":"Deliver","chain":"provider","numPackets":6},"partialState":{"h":5,"t":30,"tokens":[8295,4308,9014,11466],"delegation":[7295,3308,8014,10466],"delegatorTokens":9999999967861,"jailed":[1000000000000017,1000000000000023,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":44,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":45,"action":{"kind":"Delegate","val":1,"amt":3728},"partialState":{"h":5,"t":30,"tokens":[8295,8036,9014,11466],"delegation":[7295,7036,8014,10466],"delegatorTokens":9999999964133}},{"ix":46,"action":{"kind":"Deliver","chain":"provider","numPackets":2},"partialState":{"h":5,"t":30,"tokens":[8295,8036,9014,11466],"delegation":[7295,7036,8014,10466],"delegatorTokens":9999999964133,"jailed":[1000000000000017,1000000000000023,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":47,"action":{"kind":"Delegate","val":0,"amt":4060},"partialState":{"h":5,"t":30,"tokens":[12355,8036,9014,11466],"delegation":[11355,7036,8014,10466],"delegatorTokens":9999999960073}},{"ix":48,"action":{"kind":"Deliver","chain":"provider","numPackets":6},"partialState":{"h":5,"t":30,"tokens":[12355,8036,9014,11466],"delegation":[11355,7036,8014,10466],"delegatorTokens":9999999960073,"jailed":[1000000000000017,1000000000000023,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":49,"action":{"kind":"Undelegate","val":1,"amt":4216},"partialState":{"h":5,"t":30,"tokens":[12355,3820,9014,11466],"delegation":[11355,2820,8014,10466],"delegatorTokens":9999999960073}},{"ix":50,"action":{"kind":"Deliver","chain":"provider","numPackets":6},"partialState":{"h":5,"t":30,"tokens":[12355,3820,9014,11466],"delegation":[11355,2820,8014,10466],"delegatorTokens":9999999960073,"jailed":[1000000000000017,1000000000000023,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":51,"action":{"kind":"Deliver","chain":"consumer","numPackets":5},"partialState":{"h":4,"t":24,"consumerPower":[null,7770,null,9118],"outstandingDowntime":[false,true,true,false]}},{"ix":52,"action":{"kind":"Deliver","chain":"provider","numPackets":1},"partialState":{"h":5,"t":30,"tokens":[12355,3820,9014,11466],"delegation":[11355,2820,8014,10466],"delegatorTokens":9999999960073,"jailed":[1000000000000017,1000000000000023,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":53,"action":{"kind":"Delegate","val":2,"amt":4416},"partialState":{"h":5,"t":30,"tokens":[12355,3820,13430,11466],"delegation":[11355,2820,12430,10466],"delegatorTokens":9999999955657}},{"ix":54,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":6,"t":36,"tokens":[12355,3820,13430,11466],"delegation":[11355,2820,12430,10466],"delegatorTokens":9999999955657,"jailed":[1000000000000017,1000000000000023,1000000000000029,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":55,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":56,"action":{"kind":"Deliver","chain":"provider","numPackets":2},"partialState":{"h":6,"t":36,"tokens":[12355,3820,13430,11466],"delegation":[11355,2820,12430,10466],"delegatorTokens":9999999955657,"jailed":[1000000000000017,1000000000000023,1000000000000029,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":57,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":58,"action":{"kind":"Delegate","val":3,"amt":1529},"partialState":{"h":6,"t":36,"tokens":[12355,3820,13430,12995],"delegation":[11355,2820,12430,11995],"delegatorTokens":9999999954128}},{"ix":59,"action":{"kind":"Deliver","chain":"provider","numPackets":4},"partialState":{"h":6,"t":36,"tokens":[12355,3820,13430,12995],"delegation":[11355,2820,12430,11995],"delegatorTokens":9999999954128,"jailed":[1000000000000017,1000000000000023,1000000000000029,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":60,"action":{"kind":"Undelegate","val":3,"amt":2153},"partialState":{"h":6,"t":36,"tokens":[12355,3820,13430,10842],"delegation":[11355,2820,12430,9842],"delegatorTokens":9999999954128}},{"ix":61,"action":{"kind":"Deliver","chain":"consumer","numPackets":5},"partialState":{"h":4,"t":24,"consumerPower":[null,7770,null,9118],"outstandingDowntime":[false,false,true,false]}},{"ix":62,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":5,"t":30,"consumerPower":[null,null,9014,11466],"outstandingDowntime":[false,false,true,false]}},{"ix":63,"action":{"kind":"Delegate","val":3,"amt":1100},"partialState":{"h":6,"t":36,"tokens":[12355,3820,13430,11942],"delegation":[11355,2820,12430,10942],"delegatorTokens":9999999953028}},{"ix":64,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":6,"t":36,"consumerPower":[null,null,9014,11466],"outstandingDowntime":[false,false,true,false]}},{"ix":65,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":7,"t":42,"tokens":[12355,3820,13430,11942],"delegation":[11355,2820,12430,10942],"delegatorTokens":9999999953028,"jailed":[1000000000000017,1000000000000023,1000000000000029,null],"status":["unbonding","unbonding","unbonding","bonded"]}},{"ix":66,"action":{"kind":"Undelegate","val":1,"amt":4764},"partialState":{"h":7,"t":42,"tokens":[12355,3820,13430,11942],"delegation":[11355,2820,12430,10942],"delegatorTokens":9999999953028}},{"ix":67,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":68,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":8,"t":48,"tokens":[12355,3820,13430,11942],"delegation":[11355,2820,12430,10942],"delegatorTokens":9999999953028,"jailed":[1000000000000017,1000000000000023,1000000000000029,null],"status":["unbonding","unbonding","unbonding","bonded"]}},{"ix":69,"action":{"kind":"Deliver","chain":"consumer","numPackets":5},"partialState":{"h":6,"t":36,"consumerPower":[null,null,9014,11466],"outstandingDowntime":[false,false,false,false]}},{"ix":70,"action":{"kind":"Undelegate","val":3,"amt":1381},"partialState":{"h":8,"t":48,"tokens":[12355,3820,13430,10561],"delegation":[11355,2820,12430,9561],"delegatorTokens":9999999953028}},{"ix":71,"action":{"kind":"Delegate","val":3,"amt":1474},"partialState":{"h":8,"t":48,"tokens":[12355,3820,13430,12035],"delegation":[11355,2820,12430,11035],"delegatorTokens":9999999951554}},{"ix":72,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":73,"action":{"kind":"Undelegate","val":1,"amt":3167},"partialState":{"h":8,"t":48,"tokens":[12355,3820,13430,12035],"delegation":[11355,2820,12430,11035],"delegatorTokens":9999999951554}},{"ix":74,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":75,"action":{"kind":"Undelegate","val":3,"amt":1065},"partialState":{"h":8,"t":48,"tokens":[12355,3820,13430,10970],"delegation":[11355,2820,12430,9970],"delegatorTokens":9999999951554}},{"ix":76,"action":{"kind":"Deliver","chain":"consumer","numPackets":5},"partialState":{"h":6,"t":36,"consumerPower":[null,null,9014,11466],"outstandingDowntime":[false,false,false,false]}},{"ix":77,"action":{"kind":"Delegate","val":2,"amt":4357},"partialState":{"h":8,"t":48,"tokens":[12355,3820,17787,10970],"delegation":[11355,2820,16787,9970],"delegatorTokens":9999999947197}},{"ix":78,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":79,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":7,"t":42,"consumerPower":[null,null,null,11942],"outstandingDowntime":[false,false,false,false]}},{"ix":80,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":81,"action":{"kind":"Undelegate","val":0,"amt":3641},"partialState":{"h":8,"t":48,"tokens":[8714,3820,17787,10970],"delegation":[7714,2820,16787,9970],"delegatorTokens":9999999947197}},{"ix":82,"action":{"kind":"Deliver","chain":"consumer","numPackets":5},"partialState":{"h":7,"t":42,"consumerPower":[null,null,null,11942],"outstandingDowntime":[false,false,false,false]}},{"ix":83,"action":{"kind":"Undelegate","val":3,"amt":4507},"partialState":{"h":8,"t":48,"tokens":[8714,3820,17787,6463],"delegation":[7714,2820,16787,5463],"delegatorTokens":9999999947197}},{"ix":84,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":85,"action":{"kind":"Delegate","val":3,"amt":4850},"partialState":{"h":8,"t":48,"tokens":[8714,3820,17787,11313],"delegation":[7714,2820,16787,10313],"delegatorTokens":9999999942347}},{"ix":86,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":87,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":88,"action":{"kind":"Deliver","chain":"provider","numPackets":1},"partialState":{"h":8,"t":48,"tokens":[8714,3820,17787,11313],"delegation":[7714,2820,16787,10313],"delegatorTokens":9999999942347,"jailed":[1000000000000017,1000000000000023,1000000000000029,null],"status":["unbonding","unbonding","unbonding","bonded"]}},{"ix":89,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":9,"t":54,"tokens":[8714,3820,17787,11313],"delegation":[7714,2820,16787,10313],"delegatorTokens":9999999942347,"jailed":[1000000000000017,1000000000000023,1000000000000029,null],"status":["unbonding","unbonding","unbonding","bonded"]}},{"ix":90,"action":{"kind":"Undelegate","val":0,"amt":2573},"partialState":{"h":9,"t":54,"tokens":[6141,3820,17787,11313],"delegation":[5141,2820,16787,10313],"delegatorTokens":9999999942347}},{"ix":91,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":10,"t":60,"tokens":[6141,3820,17787,11313],"delegation":[5141,2820,16787,10313],"delegatorTokens":9999999942347,"jailed":[1000000000000017,1000000000000023,1000000000000029,null],"status":["unbonding","unbonding","unbonding","bonded"]}},{"ix":92,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":11,"t":66,"tokens":[6141,3820,17787,11313],"delegation":[5141,2820,16787,10313],"delegatorTokens":9999999942347,"jailed":[1000000000000017,1000000000000023,1000000000000029,null],"status":["unbonding","unbonding","unbonding","bonded"]}},{"ix":93,"action":{"kind":"Deliver","chain":"provider","numPackets":2},"partialState":{"h":11,"t":66,"tokens":[6141,3820,17787,11313],"delegation":[5141,2820,16787,10313],"delegatorTokens":9999999942347,"jailed":[1000000000000017,1000000000000023,1000000000000029,null],"status":["unbonding","unbonding","unbonding","bonded"]}},{"ix":94,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":12,"t":72,"tokens":[6141,3820,17787,11313],"delegation":[5141,2820,16787,10313],"delegatorTokens":9999999942347,"jailed":[1000000000000017,1000000000000023,1000000000000029,null],"status":["unbonding","unbonding","unbonding","bonded"]}},{"ix":95,"action":{"kind":"Deliver","chain":"provider","numPackets":1},"partialState":{"h":12,"t":72,"tokens":[6141,3820,17787,11313],"delegation":[5141,2820,16787,10313],"delegatorTokens":9999999942347,"jailed":[1000000000000017,1000000000000023,1000000000000029,null],"status":["unbonding","unbonding","unbonding","bonded"]}},{"ix":96,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":97,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":98,"action":{"kind":"Deliver","chain":"consumer","numPackets":5},"partialState":{"h":7,"t":42,"consumerPower":[null,null,null,11942],"outstandingDowntime":[false,false,false,false]}},{"ix":99,"action":{"kind":"Delegate","val":3,"amt":4654},"partialState":{"h":12,"t":72,"tokens":[6141,3820,17787,15967],"delegation":[5141,2820,16787,14967],"delegatorTokens":9999999937693}},{"ix":100,"action":{"kind":"Delegate","val":3,"amt":3386},"partialState":{"h":12,"t":72,"tokens":[6141,3820,17787,19353],"delegation":[5141,2820,16787,18353],"delegatorTokens":9999999934307}},{"ix":101,"action":{"kind":"Delegate","val":0,"amt":3161},"partialState":{"h":12,"t":72,"tokens":[9302,3820,17787,19353],"delegation":[8302,2820,16787,18353],"delegatorTokens":9999999931146}},{"ix":102,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":13,"t":78,"tokens":[9302,3820,17787,19353],"delegation":[8302,2820,16787,18353],"delegatorTokens":9999999931146,"jailed":[1000000000000017,1000000000000023,1000000000000029,null],"status":["unbonding","unbonding","unbonding","bonded"]}},{"ix":103,"action":{"kind":"Deliver","chain":"provider","numPackets":5},"partialState":{"h":13,"t":78,"tokens":[9302,3820,17787,19353],"delegation":[8302,2820,16787,18353],"delegatorTokens":9999999931146,"jailed":[1000000000000017,1000000000000023,1000000000000029,null],"status":["unbonding","unbonding","unbonding","bonded"]}},{"ix":104,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":14,"t":84,"tokens":[9302,3820,17787,19353],"delegation":[8302,2820,16787,18353],"delegatorTokens":9999999931146,"jailed":[1000000000000017,1000000000000023,1000000000000029,null],"status":["unbonding","unbonding","unbonding","bonded"]}},{"ix":105,"action":{"kind":"Delegate","val":0,"amt":4316},"partialState":{"h":14,"t":84,"tokens":[13618,3820,17787,19353],"delegation":[12618,2820,16787,18353],"delegatorTokens":9999999926830}},{"ix":106,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":8,"t":48,"consumerPower":[null,null,null,11313],"outstandingDowntime":[false,false,false,false]}},{"ix":107,"action":{"kind":"Delegate","val":3,"amt":2207},"partialState":{"h":14,"t":84,"tokens":[13618,3820,17787,21560],"delegation":[12618,2820,16787,20560],"delegatorTokens":9999999924623}},{"ix":108,"action":{"kind":"Deliver","chain":"consumer","numPackets":1},"partialState":{"h":8,"t":48,"consumerPower":[null,null,null,11313],"outstandingDowntime":[false,false,false,false]}},{"ix":109,"action":{"kind":"Deliver","chain":"provider","numPackets":5},"partialState":{"h":14,"t":84,"tokens":[13618,3820,17787,21560],"delegation":[12618,2820,16787,20560],"delegatorTokens":9999999924623,"jailed":[1000000000000017,1000000000000023,1000000000000029,null],"status":["unbonding","unbonding","unbonding","bonded"]}},{"ix":110,"action":{"kind":"Undelegate","val":2,"amt":3585},"partialState":{"h":14,"t":84,"tokens":[13618,3820,14202,21560],"delegation":[12618,2820,13202,20560],"delegatorTokens":9999999924623}},{"ix":111,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":9,"t":54,"consumerPower":[null,null,null,19353],"outstandingDowntime":[false,false,false,false]}},{"ix":112,"action":{"kind":"Deliver","chain":"provider","numPackets":4},"partialState":{"h":14,"t":84,"tokens":[13618,3820,14202,21560],"delegation":[12618,2820,13202,20560],"delegatorTokens":9999999924623,"jailed":[1000000000000017,1000000000000023,1000000000000029,null],"status":["unbonding","unbonding","unbonding","bonded"]}},{"ix":113,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":114,"action":{"kind":"Deliver","chain":"provider","numPackets":3},"partialState":{"h":14,"t":84,"tokens":[13618,3820,14202,21560],"delegation":[12618,2820,13202,20560],"delegatorTokens":9999999924623,"jailed":[1000000000000017,1000000000000023,1000000000000029,null],"status":["unbonding","unbonding","unbonding","bonded"]}},{"ix":115,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":10,"t":60,"consumerPower":[null,null,null,19353],"outstandingDowntime":[false,false,false,false]}},{"ix":116,"action":{"kind":"Delegate","val":2,"amt":1035},"partialState":{"h":14,"t":84,"tokens":[13618,3820,15237,21560],"delegation":[12618,2820,14237,20560],"delegatorTokens":9999999923588}},{"ix":117,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":118,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":119,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":120,"action":{"kind":"Deliver","chain":"provider","numPackets":3},"partialState":{"h":14,"t":84,"tokens":[13618,3820,15237,21560],"delegation":[12618,2820,14237,20560],"delegatorTokens":9999999923588,"jailed":[1000000000000017,1000000000000023,1000000000000029,null],"status":["unbonding","unbonding","unbonding","bonded"]}},{"ix":121,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":122,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":123,"action":{"kind":"Undelegate","val":1,"amt":2703},"partialState":{"h":14,"t":84,"tokens":[13618,1117,15237,21560],"delegation":[12618,117,14237,20560],"delegatorTokens":9999999923588}},{"ix":124,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":11,"t":66,"consumerPower":[null,null,null,19353],"outstandingDowntime":[false,false,false,false]}},{"ix":125,"action":{"kind":"Delegate","val":2,"amt":3764},"partialState":{"h":14,"t":84,"tokens":[13618,1117,19001,21560],"delegation":[12618,117,18001,20560],"delegatorTokens":9999999919824}},{"ix":126,"action":{"kind":"Deliver","chain":"consumer","numPackets":6},"partialState":{"h":11,"t":66,"consumerPower":[null,null,null,19353],"outstandingDowntime":[false,false,false,false]}},{"ix":127,"action":{"kind":"Deliver","chain":"consumer","numPackets":1},"partialState":{"h":11,"t":66,"consumerPower":[null,null,null,19353],"outstandingDowntime":[false,false,false,false]}},{"ix":128,"action":{"kind":"Deliver","chain":"provider","numPackets":2},"partialState":{"h":14,"t":84,"tokens":[13618,1117,19001,21560],"delegation":[12618,117,18001,20560],"delegatorTokens":9999999919824,"jailed":[1000000000000017,1000000000000023,1000000000000029,null],"status":["unbonding","unbonding","unbonding","bonded"]}},{"ix":129,"action":{"kind":"Delegate","val":1,"amt":2664},"partialState":{"h":14,"t":84,"tokens":[13618,3781,19001,21560],"delegation":[12618,2781,18001,20560],"delegatorTokens":9999999917160}},{"ix":130,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":12,"t":72,"consumerPower":[null,null,null,19353],"outstandingDowntime":[false,false,false,false]}},{"ix":131,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":132,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":133,"action":{"kind":"Deliver","chain":"consumer","numPackets":3},"partialState":{"h":12,"t":72,"consumerPower":[null,null,null,19353],"outstandingDowntime":[false,false,false,false]}},{"ix":134,"action":{"kind":"Undelegate","val":2,"amt":2283},"partialState":{"h":14,"t":84,"tokens":[13618,3781,16718,21560],"delegation":[12618,2781,15718,20560],"delegatorTokens":9999999917160}},{"ix":135,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":13,"t":78,"consumerPower":[null,null,null,19353],"outstandingDowntime":[false,false,false,false]}},{"ix":136,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":137,"action":{"kind":"Delegate","val":1,"amt":1588},"partialState":{"h":14,"t":84,"tokens":[13618,5369,16718,21560],"delegation":[12618,4369,15718,20560],"delegatorTokens":9999999915572}},{"ix":138,"action":{"kind":"Delegate","val":1,"amt":4513},"partialState":{"h":14,"t":84,"tokens":[13618,9882,16718,21560],"delegation":[12618,8882,15718,20560],"delegatorTokens":9999999911059}},{"ix":139,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":15,"t":90,"tokens":[13618,9882,16718,21560],"delegation":[12618,8882,15718,20560],"delegatorTokens":9999999911059,"jailed":[1000000000000017,1000000000000023,1000000000000029,null],"status":["unbonding","unbonding","unbonding","bonded"]}},{"ix":140,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":16,"t":96,"tokens":[13618,9882,16718,21560],"delegation":[12618,8882,15718,20560],"delegatorTokens":9999999911059,"jailed":[1000000000000017,1000000000000023,1000000000000029,null],"status":["unbonding","unbonding","unbonding","bonded"]}},{"ix":141,"action":{"kind":"Deliver","chain":"provider","numPackets":6},"partialState":{"h":16,"t":96,"tokens":[13618,9882,16718,21560],"delegation":[12618,8882,15718,20560],"delegatorTokens":9999999911059,"jailed":[1000000000000017,1000000000000023,1000000000000029,null],"status":["unbonding","unbonding","unbonding","bonded"]}},{"ix":142,"action":{"kind":"Delegate","val":2,"amt":1178},"partialState":{"h":16,"t":96,"tokens":[13618,9882,17896,21560],"delegation":[12618,8882,16896,20560],"delegatorTokens":9999999909881}},{"ix":143,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":144,"action":{"kind":"Undelegate","val":1,"amt":4425},"partialState":{"h":16,"t":96,"tokens":[13618,5457,17896,21560],"delegation":[12618,4457,16896,20560],"delegatorTokens":9999999909881}},{"ix":145,"action":{"kind":"Undelegate","val":2,"amt":4141},"partialState":{"h":16,"t":96,"tokens":[13618,5457,13755,21560],"delegation":[12618,4457,12755,20560],"delegatorTokens":9999999909881}},{"ix":146,"action":{"kind":"Delegate","val":1,"amt":1786},"partialState":{"h":16,"t":96,"tokens":[13618,7243,13755,21560],"delegation":[12618,6243,12755,20560],"delegatorTokens":9999999908095}},{"ix":147,"action":{"kind":"Deliver","chain":"consumer","numPackets":2},"partialState":{"h":13,"t":78,"consumerPower":[null,null,null,19353],"outstandingDowntime":[false,false,false,false]}},{"ix":148,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":14,"t":84,"consumerPower":[null,null,null,21560],"outstandingDowntime":[false,false,false,false]}},{"ix":149,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":17,"t":102,"tokens":[13618,7243,13755,21560],"delegation":[12618,6243,12755,20560],"delegatorTokens":9999999908095,"jailed":[1000000000000017,1000000000000023,1000000000000029,null],"status":["unbonding","unbonding","unbonding","bonded"]}},{"ix":150,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":151,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":15,"t":90,"consumerPower":[null,null,null,21560],"outstandingDowntime":[false,false,false,false]}},{"ix":152,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":16,"t":96,"consumerPower":[null,null,null,21560],"outstandingDowntime":[false,false,false,false]}},{"ix":153,"action":{"kind":"Undelegate","val":1,"amt":4990},"partialState":{"h":17,"t":102,"tokens":[13618,2253,13755,21560],"delegation":[12618,1253,12755,20560],"delegatorTokens":9999999908095}},{"ix":154,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":18,"t":108,"tokens":[13618,2253,13755,21560],"delegation":[12618,1253,12755,20560],"delegatorTokens":9999999908095,"jailed":[1000000000000017,1000000000000023,1000000000000029,null],"status":["unbonding","unbonding","unbonding","bonded"]}},{"ix":155,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":19,"t":114,"tokens":[13618,2253,13755,21560],"delegation":[12618,1253,12755,20560],"delegatorTokens":9999999908095,"jailed":[1000000000000017,1000000000000023,1000000000000029,null],"status":["unbonding","unbonding","unbonding","bonded"]}},{"ix":156,"action":{"kind":"Deliver","chain":"consumer","numPackets":4},"partialState":{"h":16,"t":96,"consumerPower":[null,null,null,21560],"outstandingDowntime":[false,false,false,false]}},{"ix":157,"action":{"kind":"Delegate","val":0,"amt":2521},"partialState":{"h":19,"t":114,"tokens":[16139,2253,13755,21560],"delegation":[15139,1253,12755,20560],"delegatorTokens":9999999905574}},{"ix":158,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":159,"action":{"kind":"Deliver","chain":"consumer","numPackets":1},"partialState":{"h":16,"t":96,"consumerPower":[null,null,null,21560],"outstandingDowntime":[false,false,false,false]}},{"ix":160,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":161,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":17,"t":102,"consumerPower":[null,null,null,21560],"outstandingDowntime":[false,false,false,false]}},{"ix":162,"action":{"kind":"Undelegate","val":2,"amt":4267},"partialState":{"h":19,"t":114,"tokens":[16139,2253,9488,21560],"delegation":[15139,1253,8488,20560],"delegatorTokens":9999999905574}},{"ix":163,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":18,"t":108,"consumerPower":[null,null,null,21560],"outstandingDowntime":[false,false,false,false]}},{"ix":164,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":19,"t":114,"consumerPower":[null,null,null,21560],"outstandingDowntime":[false,false,false,false]}},{"ix":165,"action":{"kind":"Delegate","val":2,"amt":4479},"partialState":{"h":19,"t":114,"tokens":[16139,2253,13967,21560],"delegation":[15139,1253,12967,20560],"delegatorTokens":9999999901095}},{"ix":166,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":20,"t":120,"consumerPower":[null,null,null,21560],"outstandingDowntime":[false,false,false,false]}},{"ix":167,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":168,"action":{"kind":"Delegate","val":3,"amt":2305},"partialState":{"h":19,"t":114,"tokens":[16139,2253,13967,23865],"delegation":[15139,1253,12967,22865],"delegatorTokens":9999999898790}},{"ix":169,"action":{"kind":"Delegate","val":3,"amt":1381},"partialState":{"h":19,"t":114,"tokens":[16139,2253,13967,25246],"delegation":[15139,1253,12967,24246],"delegatorTokens":9999999897409}},{"ix":170,"action":{"kind":"Deliver","chain":"provider","numPackets":6},"partialState":{"h":19,"t":114,"tokens":[16139,2253,13967,25246],"delegation":[15139,1253,12967,24246],"delegatorTokens":9999999897409,"jailed":[1000000000000017,1000000000000023,1000000000000029,null],"status":["unbonding","unbonding","unbonding","bonded"]}},{"ix":171,"action":{"kind":"Undelegate","val":2,"amt":4882},"partialState":{"h":19,"t":114,"tokens":[16139,2253,9085,25246],"delegation":[15139,1253,8085,24246],"delegatorTokens":9999999897409}},{"ix":172,"action":{"kind":"Deliver","chain":"provider","numPackets":3},"partialState":{"h":19,"t":114,"tokens":[16139,2253,9085,25246],"delegation":[15139,1253,8085,24246],"delegatorTokens":9999999897409,"jailed":[1000000000000017,1000000000000023,1000000000000029,null],"status":["unbonding","unbonding","unbonding","bonded"]}},{"ix":173,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":20,"t":120,"tokens":[16139,2253,9085,25246],"delegation":[15139,1253,8085,24246],"delegatorTokens":9999999916834,"jailed":[1000000000000017,1000000000000023,1000000000000029,null],"status":["unbonding","unbonding","unbonding","bonded"]}},{"ix":174,"action":{"kind":"Undelegate","val":2,"amt":2851},"partialState":{"h":20,"t":120,"tokens":[16139,2253,6234,25246],"delegation":[15139,1253,5234,24246],"delegatorTokens":9999999916834}},{"ix":175,"action":{"kind":"Deliver","chain":"provider","numPackets":1},"partialState":{"h":20,"t":120,"tokens":[16139,2253,6234,25246],"delegation":[15139,1253,5234,24246],"delegatorTokens":9999999916834,"jailed":[1000000000000017,1000000000000023,1000000000000029,null],"status":["unbonding","unbonding","unbonding","bonded"]}},{"ix":176,"action":{"kind":"Deliver","chain":"provider","numPackets":1},"partialState":{"h":20,"t":120,"tokens":[16139,2253,6234,25246],"delegation":[15139,1253,5234,24246],"delegatorTokens":9999999916834,"jailed":[1000000000000017,1000000000000023,1000000000000029,null],"status":["unbonding","unbonding","unbonding","bonded"]}},{"ix":177,"action":{"kind":"Deliver","chain":"consumer","numPackets":5},"partialState":{"h":20,"t":120,"consumerPower":[null,null,null,21560],"outstandingDowntime":[false,false,false,false]}},{"ix":178,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":21,"t":126,"consumerPower":[null,null,null,21560],"outstandingDowntime":[false,false,false,false]}},{"ix":179,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":180,"action":{"kind":"Deliver","chain":"provider","numPackets":2},"partialState":{"h":20,"t":120,"tokens":[16139,2253,6234,25246],"delegation":[15139,1253,5234,24246],"delegatorTokens":9999999916834,"jailed":[1000000000000017,1000000000000023,1000000000000029,null],"status":["unbonding","unbonding","unbonding","bonded"]}},{"ix":181,"action":{"kind":"Undelegate","val":0,"amt":2504},"partialState":{"h":20,"t":120,"tokens":[13635,2253,6234,25246],"delegation":[12635,1253,5234,24246],"delegatorTokens":9999999916834}},{"ix":182,"action":{"kind":"Delegate","val":3,"amt":1054},"partialState":{"h":20,"t":120,"tokens":[13635,2253,6234,26300],"delegation":[12635,1253,5234,25300],"delegatorTokens":9999999915780}},{"ix":183,"action":{"kind":"Undelegate","val":3,"amt":1902},"partialState":{"h":20,"t":120,"tokens":[13635,2253,6234,24398],"delegation":[12635,1253,5234,23398],"delegatorTokens":9999999915780}},{"ix":184,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":22,"t":132,"consumerPower":[null,null,null,21560],"outstandingDowntime":[false,false,false,false]}},{"ix":185,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":23,"t":138,"consumerPower":[null,null,null,21560],"outstandingDowntime":[false,false,false,false]}},{"ix":186,"action":{"kind":"Delegate","val":3,"amt":4494},"partialState":{"h":20,"t":120,"tokens":[13635,2253,6234,28892],"delegation":[12635,1253,5234,27892],"delegatorTokens":9999999911286}},{"ix":187,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":21,"t":126,"tokens":[13635,2253,6234,28892],"delegation":[12635,1253,5234,27892],"delegatorTokens":9999999921880,"jailed":[1000000000000017,1000000000000023,1000000000000029,null],"status":["unbonded","unbonded","unbonded","bonded"]}},{"ix":188,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":24,"t":144,"consumerPower":[null,null,null,21560],"outstandingDowntime":[false,false,false,false]}},{"ix":189,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":190,"action":{"kind":"Delegate","val":0,"amt":1164},"partialState":{"h":21,"t":126,"tokens":[14799,2253,6234,28892],"delegation":[13799,1253,5234,27892],"delegatorTokens":9999999920716}},{"ix":191,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":25,"t":150,"consumerPower":[null,null,null,21560],"outstandingDowntime":[false,false,false,false]}},{"ix":192,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":22,"t":132,"tokens":[14799,2253,6234,28892],"delegation":[13799,1253,5234,27892],"delegatorTokens":9999999923289,"jailed":[1000000000000017,1000000000000023,1000000000000029,null],"status":["unbonded","unbonded","unbonded","bonded"]}},{"ix":193,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":194,"action":{"kind":"Undelegate","val":3,"amt":1449},"partialState":{"h":22,"t":132,"tokens":[14799,2253,6234,27443],"delegation":[13799,1253,5234,26443],"delegatorTokens":9999999923289}},{"ix":195,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":26,"t":156,"consumerPower":[null,null,null,21560],"outstandingDowntime":[false,false,false,false]}},{"ix":196,"action":{"kind":"Delegate","val":2,"amt":4326},"partialState":{"h":22,"t":132,"tokens":[14799,2253,10560,27443],"delegation":[13799,1253,9560,26443],"delegatorTokens":9999999918963}},{"ix":197,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":23,"t":138,"tokens":[14799,2253,10560,27443],"delegation":[13799,1253,9560,26443],"delegatorTokens":9999999918963,"jailed":[1000000000000017,1000000000000023,1000000000000029,null],"status":["unbonded","unbonded","unbonded","bonded"]}},{"ix":198,"action":{"kind":"Deliver","chain":"provider","numPackets":1},"partialState":{"h":23,"t":138,"tokens":[14799,2253,10560,27443],"delegation":[13799,1253,9560,26443],"delegatorTokens":9999999918963,"jailed":[1000000000000017,1000000000000023,1000000000000029,null],"status":["unbonded","unbonded","unbonded","bonded"]}},{"ix":199,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":27,"t":162,"consumerPower":[null,null,null,21560],"outstandingDowntime":[false,false,false,false]}}],"events":["send_double_sign_slash_request","send_downtime_slash_request","send_downtime_slash_request","send_downtime_slash_request","more_than_one_third_val_power_change","send_vsc_without_downtime_ack","send_vsc_without_downtime_ack","consumer_del_val","consumer_update_val","consumer_add_val","receive_double_sign_slash_request","more_than_one_third_val_power_change","rebond_unval","receive_downtime_slash_request","jail","send_vsc_with_downtime_ack","more_than_one_third_val_power_change","receive_downtime_slash_request","jail","send_vsc_with_downtime_ack","receive_downtime_slash_ack","receive_downtime_slash_request","jail","send_vsc_with_downtime_ack","receive_downtime_slash_ack","consumer_del_val","consumer_del_val","consumer_update_val","consumer_add_val","send_vsc_without_downtime_ack","insufficient_shares","receive_downtime_slash_ack","insufficient_shares","consumer_del_val","consumer_update_val","send_vsc_without_downtime_ack","send_vsc_not_because_change","send_vsc_without_downtime_ack","send_vsc_without_downtime_ack","consumer_update_val","consumer_update_val","consumer_send_maturation","some_undels_expired_but_not_completed","send_vsc_without_downtime_ack","some_undels_expired_but_not_completed","consumer_send_maturation","consumer_send_maturation","consumer_send_maturation","consumer_update_val","send_vsc_not_because_change","send_vsc_without_downtime_ack","consumer_send_maturation","consumer_send_maturation","some_undels_expired_but_not_completed","send_vsc_not_because_change","send_vsc_without_downtime_ack","some_undels_expired_but_not_completed","consumer_send_maturation","consumer_send_maturation","consumer_send_maturation","complete_undel_immediate","complete_undel_immediate","complete_undel_immediate","complete_undel_immediate","set_unval_hold_false","set_unval_hold_false","complete_undel_immediate","complete_undel_immediate","set_unval_hold_false","set_undel_hold_false","set_undel_hold_false","set_undel_hold_false","set_undel_hold_false","set_undel_hold_false","send_vsc_without_downtime_ack","consumer_send_maturation","complete_unval_in_endblock","complete_unval_in_endblock","complete_unval_in_endblock","complete_undel_in_endblock","send_vsc_without_downtime_ack","complete_undel_in_endblock","consumer_send_maturation","consumer_send_maturation","send_vsc_without_downtime_ack"]},{"meta":{"commit":"7ffd0c04e4205cbc9caf212abfe6c59ee43153bf"},"constants":{"P":"provider","C":"consumer","UNBONDING_SECONDS_P":70,"UNBONDING_SECONDS_C":50,"TRUSTING_SECONDS":49,"NUM_VALIDATORS":4,"MAX_VALIDATORS":2,"SLASH_DOUBLESIGN":0,"SLASH_DOWNTIME":0,"JAIL_SECONDS":999999999999999,"BLOCK_SECONDS":6,"INITIAL_DELEGATOR_TOKENS":10000000000000,"DELEGATE_AMT_MIN":1000,"DELEGATE_AMT_MAX":5000,"UNDELEGATE_AMT_MIN":1000,"UNDELEGATE_AMT_MAX":5000,"ISDOWNTIME_PROBABILITY":0.5,"MAX_NUM_PACKETS_FOR_DELIVER":6},"actions":[{"ix":0,"action":{"kind":"Deliver","chain":"consumer","numPackets":5},"partialState":{"h":1,"t":6,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":1,"action":{"kind":"Delegate","val":2,"amt":2726},"partialState":{"h":1,"t":6,"tokens":[5000,4000,5726,2000],"delegation":[4000,3000,4726,1000],"delegatorTokens":9999999997274}},{"ix":2,"action":{"kind":"Deliver","chain":"provider","numPackets":4},"partialState":{"h":1,"t":6,"tokens":[5000,4000,5726,2000],"delegation":[4000,3000,4726,1000],"delegatorTokens":9999999997274,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":3,"action":{"kind":"ConsumerSlash","val":1,"infractionHeight":0,"isDowntime":true},"partialState":{"h":1,"t":6,"outstandingDowntime":[false,true,false,false]}},{"ix":4,"action":{"kind":"Undelegate","val":3,"amt":3160},"partialState":{"h":1,"t":6,"tokens":[5000,4000,5726,2000],"delegation":[4000,3000,4726,1000],"delegatorTokens":9999999997274}},{"ix":5,"action":{"kind":"Undelegate","val":0,"amt":1028},"partialState":{"h":1,"t":6,"tokens":[3972,4000,5726,2000],"delegation":[2972,3000,4726,1000],"delegatorTokens":9999999997274}},{"ix":6,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":7,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":2,"t":12,"tokens":[3972,4000,5726,2000],"delegation":[2972,3000,4726,1000],"delegatorTokens":9999999997274,"jailed":[null,null,null,null],"status":["unbonding","bonded","bonded","unbonded"]}},{"ix":8,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":2,"t":12,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,true,false,false]}},{"ix":9,"action":{"kind":"Deliver","chain":"provider","numPackets":5},"partialState":{"h":2,"t":12,"tokens":[3972,4000,5726,2000],"delegation":[2972,3000,4726,1000],"delegatorTokens":9999999997274,"jailed":[null,null,null,null],"status":["unbonding","bonded","bonded","unbonded"]}},{"ix":10,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":11,"action":{"kind":"Undelegate","val":1,"amt":2492},"partialState":{"h":2,"t":12,"tokens":[3972,1508,5726,2000],"delegation":[2972,508,4726,1000],"delegatorTokens":9999999997274}},{"ix":12,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":3,"t":18,"tokens":[3972,1508,5726,2000],"delegation":[2972,508,4726,1000],"delegatorTokens":9999999997274,"jailed":[null,null,null,null],"status":["bonded","unbonding","bonded","unbonded"]}},{"ix":13,"action":{"kind":"Undelegate","val":2,"amt":4842},"partialState":{"h":3,"t":18,"tokens":[3972,1508,5726,2000],"delegation":[2972,508,4726,1000],"delegatorTokens":9999999997274}},{"ix":14,"action":{"kind":"Deliver","chain":"provider","numPackets":1},"partialState":{"h":3,"t":18,"tokens":[3972,1508,5726,2000],"delegation":[2972,508,4726,1000],"delegatorTokens":9999999997274,"jailed":[null,null,null,null],"status":["bonded","unbonding","bonded","unbonded"]}},{"ix":15,"action":{"kind":"Undelegate","val":1,"amt":2912},"partialState":{"h":3,"t":18,"tokens":[3972,1508,5726,2000],"delegation":[2972,508,4726,1000],"delegatorTokens":9999999997274}},{"ix":16,"action":{"kind":"ConsumerSlash","val":0,"infractionHeight":0,"isDowntime":true},"partialState":{"h":2,"t":12,"outstandingDowntime":[true,true,false,false]}},{"ix":17,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":3,"t":18,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[true,true,false,false]}},{"ix":18,"action":{"kind":"Deliver","chain":"provider","numPackets":6},"partialState":{"h":3,"t":18,"tokens":[3972,1508,5726,2000],"delegation":[2972,508,4726,1000],"delegatorTokens":9999999997274,"jailed":[null,null,null,null],"status":["bonded","unbonding","bonded","unbonded"]}},{"ix":19,"action":{"kind":"Undelegate","val":1,"amt":3353},"partialState":{"h":3,"t":18,"tokens":[3972,1508,5726,2000],"delegation":[2972,508,4726,1000],"delegatorTokens":9999999997274}},{"ix":20,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":4,"t":24,"tokens":[3972,1508,5726,2000],"delegation":[2972,508,4726,1000],"delegatorTokens":9999999997274,"jailed":[null,1000000000000017,null,null],"status":["bonded","unbonding","bonded","unbonded"]}},{"ix":21,"action":{"kind":"Undelegate","val":1,"amt":2363},"partialState":{"h":4,"t":24,"tokens":[3972,1508,5726,2000],"delegation":[2972,508,4726,1000],"delegatorTokens":9999999997274}},{"ix":22,"action":{"kind":"Delegate","val":2,"amt":4560},"partialState":{"h":4,"t":24,"tokens":[3972,1508,10286,2000],"delegation":[2972,508,9286,1000],"delegatorTokens":9999999992714}},{"ix":23,"action":{"kind":"ConsumerSlash","val":0,"infractionHeight":0,"isDowntime":false},"partialState":{"h":3,"t":18,"outstandingDowntime":[true,true,false,false]}},{"ix":24,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":25,"action":{"kind":"Undelegate","val":1,"amt":2231},"partialState":{"h":4,"t":24,"tokens":[3972,1508,10286,2000],"delegation":[2972,508,9286,1000],"delegatorTokens":9999999992714}},{"ix":26,"action":{"kind":"Deliver","chain":"consumer","numPackets":2},"partialState":{"h":3,"t":18,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[true,true,false,false]}},{"ix":27,"action":{"kind":"ConsumerSlash","val":3,"infractionHeight":0,"isDowntime":true},"partialState":{"h":3,"t":18,"outstandingDowntime":[true,true,false,true]}},{"ix":28,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":5,"t":30,"tokens":[3972,1508,10286,2000],"delegation":[2972,508,9286,1000],"delegatorTokens":9999999992714,"jailed":[null,1000000000000017,null,null],"status":["bonded","unbonding","bonded","unbonded"]}},{"ix":29,"action":{"kind":"Undelegate","val":0,"amt":2163},"partialState":{"h":5,"t":30,"tokens":[1809,1508,10286,2000],"delegation":[809,508,9286,1000],"delegatorTokens":9999999992714}},{"ix":30,"action":{"kind":"Deliver","chain":"provider","numPackets":4},"partialState":{"h":5,"t":30,"tokens":[1809,1508,10286,2000],"delegation":[809,508,9286,1000],"delegatorTokens":9999999992714,"jailed":[null,1000000000000017,null,null],"status":["bonded","unbonding","bonded","unbonded"]}},{"ix":31,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":4,"t":24,"consumerPower":[3972,null,5726,null],"outstandingDowntime":[true,true,false,true]}},{"ix":32,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":6,"t":36,"tokens":[1809,1508,10286,2000],"delegation":[809,508,9286,1000],"delegatorTokens":9999999992714,"jailed":[null,1000000000000017,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":33,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":34,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":7,"t":42,"tokens":[1809,1508,10286,2000],"delegation":[809,508,9286,1000],"delegatorTokens":9999999992714,"jailed":[null,1000000000000017,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":35,"action":{"kind":"Deliver","chain":"consumer","numPackets":5},"partialState":{"h":4,"t":24,"consumerPower":[3972,null,5726,null],"outstandingDowntime":[true,false,false,true]}},{"ix":36,"action":{"kind":"Undelegate","val":3,"amt":2867},"partialState":{"h":7,"t":42,"tokens":[1809,1508,10286,2000],"delegation":[809,508,9286,1000],"delegatorTokens":9999999992714}},{"ix":37,"action":{"kind":"Deliver","chain":"consumer","numPackets":6},"partialState":{"h":4,"t":24,"consumerPower":[3972,null,5726,null],"outstandingDowntime":[true,false,false,true]}},{"ix":38,"action":{"kind":"Delegate","val":1,"amt":3998},"partialState":{"h":7,"t":42,"tokens":[1809,5506,10286,2000],"delegation":[809,4506,9286,1000],"delegatorTokens":9999999988716}},{"ix":39,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":40,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":41,"action":{"kind":"Deliver","chain":"consumer","numPackets":1},"partialState":{"h":4,"t":24,"consumerPower":[3972,null,5726,null],"outstandingDowntime":[true,false,false,true]}},{"ix":42,"action":{"kind":"Delegate","val":0,"amt":2909},"partialState":{"h":7,"t":42,"tokens":[4718,5506,10286,2000],"delegation":[3718,4506,9286,1000],"delegatorTokens":9999999985807}},{"ix":43,"action":{"kind":"Undelegate","val":1,"amt":1348},"partialState":{"h":7,"t":42,"tokens":[4718,4158,10286,2000],"delegation":[3718,3158,9286,1000],"delegatorTokens":9999999985807}},{"ix":44,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":45,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":5,"t":30,"consumerPower":[null,null,10286,2000],"outstandingDowntime":[true,false,false,true]}},{"ix":46,"action":{"kind":"Deliver","chain":"provider","numPackets":1},"partialState":{"h":7,"t":42,"tokens":[4718,4158,10286,2000],"delegation":[3718,3158,9286,1000],"delegatorTokens":9999999985807,"jailed":[null,1000000000000017,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":47,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":6,"t":36,"consumerPower":[null,null,10286,2000],"outstandingDowntime":[true,false,false,true]}},{"ix":48,"action":{"kind":"Undelegate","val":1,"amt":4880},"partialState":{"h":7,"t":42,"tokens":[4718,4158,10286,2000],"delegation":[3718,3158,9286,1000],"delegatorTokens":9999999985807}},{"ix":49,"action":{"kind":"Undelegate","val":3,"amt":1047},"partialState":{"h":7,"t":42,"tokens":[4718,4158,10286,2000],"delegation":[3718,3158,9286,1000],"delegatorTokens":9999999985807}},{"ix":50,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":51,"action":{"kind":"Undelegate","val":0,"amt":4322},"partialState":{"h":7,"t":42,"tokens":[4718,4158,10286,2000],"delegation":[3718,3158,9286,1000],"delegatorTokens":9999999985807}},{"ix":52,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":8,"t":48,"tokens":[4718,4158,10286,2000],"delegation":[3718,3158,9286,1000],"delegatorTokens":9999999985807,"jailed":[1000000000000041,1000000000000017,null,null],"status":["bonded","unbonding","bonded","unbonding"]}},{"ix":53,"action":{"kind":"Deliver","chain":"consumer","numPackets":6},"partialState":{"h":6,"t":36,"consumerPower":[null,null,10286,2000],"outstandingDowntime":[true,false,false,true]}},{"ix":54,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":55,"action":{"kind":"Undelegate","val":0,"amt":1884},"partialState":{"h":8,"t":48,"tokens":[2834,4158,10286,2000],"delegation":[1834,3158,9286,1000],"delegatorTokens":9999999985807}},{"ix":56,"action":{"kind":"Undelegate","val":1,"amt":1520},"partialState":{"h":8,"t":48,"tokens":[2834,2638,10286,2000],"delegation":[1834,1638,9286,1000],"delegatorTokens":9999999985807}},{"ix":57,"action":{"kind":"Delegate","val":0,"amt":3077},"partialState":{"h":8,"t":48,"tokens":[5911,2638,10286,2000],"delegation":[4911,1638,9286,1000],"delegatorTokens":9999999982730}},{"ix":58,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":7,"t":42,"consumerPower":[null,null,10286,2000],"outstandingDowntime":[true,false,false,true]}},{"ix":59,"action":{"kind":"Deliver","chain":"provider","numPackets":3},"partialState":{"h":8,"t":48,"tokens":[5911,2638,10286,2000],"delegation":[4911,1638,9286,1000],"delegatorTokens":9999999982730,"jailed":[1000000000000041,1000000000000017,null,null],"status":["bonded","unbonding","bonded","unbonding"]}},{"ix":60,"action":{"kind":"Undelegate","val":0,"amt":4525},"partialState":{"h":8,"t":48,"tokens":[1386,2638,10286,2000],"delegation":[386,1638,9286,1000],"delegatorTokens":9999999982730}},{"ix":61,"action":{"kind":"Delegate","val":2,"amt":3444},"partialState":{"h":8,"t":48,"tokens":[1386,2638,13730,2000],"delegation":[386,1638,12730,1000],"delegatorTokens":9999999979286}},{"ix":62,"action":{"kind":"Undelegate","val":2,"amt":1125},"partialState":{"h":8,"t":48,"tokens":[1386,2638,12605,2000],"delegation":[386,1638,11605,1000],"delegatorTokens":9999999979286}},{"ix":63,"action":{"kind":"Undelegate","val":3,"amt":4758},"partialState":{"h":8,"t":48,"tokens":[1386,2638,12605,2000],"delegation":[386,1638,11605,1000],"delegatorTokens":9999999979286}},{"ix":64,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":9,"t":54,"tokens":[1386,2638,12605,2000],"delegation":[386,1638,11605,1000],"delegatorTokens":9999999979286,"jailed":[1000000000000041,1000000000000017,null,1000000000000047],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":65,"action":{"kind":"Deliver","chain":"provider","numPackets":2},"partialState":{"h":9,"t":54,"tokens":[1386,2638,12605,2000],"delegation":[386,1638,11605,1000],"delegatorTokens":9999999979286,"jailed":[1000000000000041,1000000000000017,null,1000000000000047],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":66,"action":{"kind":"Deliver","chain":"consumer","numPackets":1},"partialState":{"h":7,"t":42,"consumerPower":[null,null,10286,2000],"outstandingDowntime":[false,false,false,true]}},{"ix":67,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":68,"action":{"kind":"Deliver","chain":"consumer","numPackets":6},"partialState":{"h":7,"t":42,"consumerPower":[null,null,10286,2000],"outstandingDowntime":[false,false,false,true]}},{"ix":69,"action":{"kind":"Undelegate","val":0,"amt":3446},"partialState":{"h":9,"t":54,"tokens":[1386,2638,12605,2000],"delegation":[386,1638,11605,1000],"delegatorTokens":9999999979286}},{"ix":70,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":8,"t":48,"consumerPower":[4718,null,10286,null],"outstandingDowntime":[false,false,false,true]}},{"ix":71,"action":{"kind":"Deliver","chain":"consumer","numPackets":4},"partialState":{"h":8,"t":48,"consumerPower":[4718,null,10286,null],"outstandingDowntime":[false,false,false,true]}},{"ix":72,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":73,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":74,"action":{"kind":"Undelegate","val":0,"amt":2031},"partialState":{"h":9,"t":54,"tokens":[1386,2638,12605,2000],"delegation":[386,1638,11605,1000],"delegatorTokens":9999999979286}},{"ix":75,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":76,"action":{"kind":"Deliver","chain":"provider","numPackets":4},"partialState":{"h":9,"t":54,"tokens":[1386,2638,12605,2000],"delegation":[386,1638,11605,1000],"delegatorTokens":9999999979286,"jailed":[1000000000000041,1000000000000017,null,1000000000000047],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":77,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":78,"action":{"kind":"Deliver","chain":"consumer","numPackets":6},"partialState":{"h":8,"t":48,"consumerPower":[4718,null,10286,null],"outstandingDowntime":[false,false,false,true]}},{"ix":79,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":10,"t":60,"tokens":[1386,2638,12605,2000],"delegation":[386,1638,11605,1000],"delegatorTokens":9999999979286,"jailed":[1000000000000041,1000000000000017,null,1000000000000047],"status":["unbonding","unbonding","bonded","unbonding"]}},{"ix":80,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":81,"action":{"kind":"Undelegate","val":2,"amt":2193},"partialState":{"h":10,"t":60,"tokens":[1386,2638,10412,2000],"delegation":[386,1638,9412,1000],"delegatorTokens":9999999979286}},{"ix":82,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":83,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":84,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":11,"t":66,"tokens":[1386,2638,10412,2000],"delegation":[386,1638,9412,1000],"delegatorTokens":9999999979286,"jailed":[1000000000000041,1000000000000017,null,1000000000000047],"status":["unbonding","unbonding","bonded","unbonding"]}},{"ix":85,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":86,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":9,"t":54,"consumerPower":[4718,null,10286,null],"outstandingDowntime":[false,false,false,true]}},{"ix":87,"action":{"kind":"Undelegate","val":1,"amt":1650},"partialState":{"h":11,"t":66,"tokens":[1386,2638,10412,2000],"delegation":[386,1638,9412,1000],"delegatorTokens":9999999979286}},{"ix":88,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":12,"t":72,"tokens":[1386,2638,10412,2000],"delegation":[386,1638,9412,1000],"delegatorTokens":9999999979286,"jailed":[1000000000000041,1000000000000017,null,1000000000000047],"status":["unbonding","unbonding","bonded","unbonding"]}},{"ix":89,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":90,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":10,"t":60,"consumerPower":[4718,null,10286,null],"outstandingDowntime":[false,false,false,true]}},{"ix":91,"action":{"kind":"Deliver","chain":"consumer","numPackets":1},"partialState":{"h":10,"t":60,"consumerPower":[4718,null,10286,null],"outstandingDowntime":[false,false,false,false]}},{"ix":92,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":93,"action":{"kind":"Undelegate","val":2,"amt":1753},"partialState":{"h":12,"t":72,"tokens":[1386,2638,8659,2000],"delegation":[386,1638,7659,1000],"delegatorTokens":9999999979286}},{"ix":94,"action":{"kind":"Deliver","chain":"provider","numPackets":2},"partialState":{"h":12,"t":72,"tokens":[1386,2638,8659,2000],"delegation":[386,1638,7659,1000],"delegatorTokens":9999999979286,"jailed":[1000000000000041,1000000000000017,null,1000000000000047],"status":["unbonding","unbonding","bonded","unbonding"]}},{"ix":95,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":13,"t":78,"tokens":[1386,2638,8659,2000],"delegation":[386,1638,7659,1000],"delegatorTokens":9999999979286,"jailed":[1000000000000041,1000000000000017,null,1000000000000047],"status":["unbonding","unbonding","bonded","unbonding"]}},{"ix":96,"action":{"kind":"Delegate","val":3,"amt":3383},"partialState":{"h":13,"t":78,"tokens":[1386,2638,8659,5383],"delegation":[386,1638,7659,4383],"delegatorTokens":9999999975903}},{"ix":97,"action":{"kind":"Deliver","chain":"consumer","numPackets":5},"partialState":{"h":10,"t":60,"consumerPower":[4718,null,10286,null],"outstandingDowntime":[false,false,false,false]}},{"ix":98,"action":{"kind":"Delegate","val":0,"amt":1575},"partialState":{"h":13,"t":78,"tokens":[2961,2638,8659,5383],"delegation":[1961,1638,7659,4383],"delegatorTokens":9999999974328}},{"ix":99,"action":{"kind":"Delegate","val":1,"amt":2889},"partialState":{"h":13,"t":78,"tokens":[2961,5527,8659,5383],"delegation":[1961,4527,7659,4383],"delegatorTokens":9999999971439}},{"ix":100,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":14,"t":84,"tokens":[2961,5527,8659,5383],"delegation":[1961,4527,7659,4383],"delegatorTokens":9999999971439,"jailed":[1000000000000041,1000000000000017,null,1000000000000047],"status":["unbonding","unbonding","bonded","unbonding"]}},{"ix":101,"action":{"kind":"Delegate","val":3,"amt":4195},"partialState":{"h":14,"t":84,"tokens":[2961,5527,8659,9578],"delegation":[1961,4527,7659,8578],"delegatorTokens":9999999967244}},{"ix":102,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":15,"t":90,"tokens":[2961,5527,8659,9578],"delegation":[1961,4527,7659,8578],"delegatorTokens":9999999967244,"jailed":[1000000000000041,1000000000000017,null,1000000000000047],"status":["unbonding","unbonding","bonded","unbonding"]}},{"ix":103,"action":{"kind":"Undelegate","val":2,"amt":4198},"partialState":{"h":15,"t":90,"tokens":[2961,5527,4461,9578],"delegation":[1961,4527,3461,8578],"delegatorTokens":9999999967244}},{"ix":104,"action":{"kind":"Deliver","chain":"provider","numPackets":2},"partialState":{"h":15,"t":90,"tokens":[2961,5527,4461,9578],"delegation":[1961,4527,3461,8578],"delegatorTokens":9999999967244,"jailed":[1000000000000041,1000000000000017,null,1000000000000047],"status":["unbonding","unbonding","bonded","unbonding"]}},{"ix":105,"action":{"kind":"Delegate","val":2,"amt":4620},"partialState":{"h":15,"t":90,"tokens":[2961,5527,9081,9578],"delegation":[1961,4527,8081,8578],"delegatorTokens":9999999962624}},{"ix":106,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":107,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":108,"action":{"kind":"Delegate","val":2,"amt":1960},"partialState":{"h":15,"t":90,"tokens":[2961,5527,11041,9578],"delegation":[1961,4527,10041,8578],"delegatorTokens":9999999960664}},{"ix":109,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":16,"t":96,"tokens":[2961,5527,11041,9578],"delegation":[1961,4527,10041,8578],"delegatorTokens":9999999960664,"jailed":[1000000000000041,1000000000000017,null,1000000000000047],"status":["unbonding","unbonding","bonded","unbonding"]}},{"ix":110,"action":{"kind":"Deliver","chain":"consumer","numPackets":2},"partialState":{"h":10,"t":60,"consumerPower":[4718,null,10286,null],"outstandingDowntime":[false,false,false,false]}},{"ix":111,"action":{"kind":"Deliver","chain":"provider","numPackets":4},"partialState":{"h":16,"t":96,"tokens":[2961,5527,11041,9578],"delegation":[1961,4527,10041,8578],"delegatorTokens":9999999960664,"jailed":[1000000000000041,1000000000000017,null,1000000000000047],"status":["unbonding","unbonding","bonded","unbonding"]}},{"ix":112,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":11,"t":66,"consumerPower":[null,null,8659,null],"outstandingDowntime":[false,false,false,false]}},{"ix":113,"action":{"kind":"Delegate","val":3,"amt":4554},"partialState":{"h":16,"t":96,"tokens":[2961,5527,11041,14132],"delegation":[1961,4527,10041,13132],"delegatorTokens":9999999956110}},{"ix":114,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":12,"t":72,"consumerPower":[null,null,8659,null],"outstandingDowntime":[false,false,false,false]}},{"ix":115,"action":{"kind":"Undelegate","val":0,"amt":4357},"partialState":{"h":16,"t":96,"tokens":[2961,5527,11041,14132],"delegation":[1961,4527,10041,13132],"delegatorTokens":9999999956110}},{"ix":116,"action":{"kind":"Delegate","val":3,"amt":4763},"partialState":{"h":16,"t":96,"tokens":[2961,5527,11041,18895],"delegation":[1961,4527,10041,17895],"delegatorTokens":9999999951347}},{"ix":117,"action":{"kind":"Undelegate","val":3,"amt":2920},"partialState":{"h":16,"t":96,"tokens":[2961,5527,11041,15975],"delegation":[1961,4527,10041,14975],"delegatorTokens":9999999951347}},{"ix":118,"action":{"kind":"Undelegate","val":0,"amt":1081},"partialState":{"h":16,"t":96,"tokens":[1880,5527,11041,15975],"delegation":[880,4527,10041,14975],"delegatorTokens":9999999951347}},{"ix":119,"action":{"kind":"Deliver","chain":"provider","numPackets":3},"partialState":{"h":16,"t":96,"tokens":[1880,5527,11041,15975],"delegation":[880,4527,10041,14975],"delegatorTokens":9999999951347,"jailed":[1000000000000041,1000000000000017,null,1000000000000047],"status":["unbonding","unbonding","bonded","unbonding"]}},{"ix":120,"action":{"kind":"Deliver","chain":"provider","numPackets":6},"partialState":{"h":16,"t":96,"tokens":[1880,5527,11041,15975],"delegation":[880,4527,10041,14975],"delegatorTokens":9999999951347,"jailed":[1000000000000041,1000000000000017,null,1000000000000047],"status":["unbonding","unbonding","bonded","unbonding"]}},{"ix":121,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":17,"t":102,"tokens":[1880,5527,11041,15975],"delegation":[880,4527,10041,14975],"delegatorTokens":9999999951347,"jailed":[1000000000000041,1000000000000017,null,1000000000000047],"status":["unbonding","unbonding","bonded","unbonding"]}},{"ix":122,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":123,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":18,"t":108,"tokens":[1880,5527,11041,15975],"delegation":[880,4527,10041,14975],"delegatorTokens":9999999951347,"jailed":[1000000000000041,1000000000000017,null,1000000000000047],"status":["unbonding","unbonding","bonded","unbonding"]}},{"ix":124,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":13,"t":78,"consumerPower":[null,null,8659,null],"outstandingDowntime":[false,false,false,false]}},{"ix":125,"action":{"kind":"Deliver","chain":"consumer","numPackets":6},"partialState":{"h":13,"t":78,"consumerPower":[null,null,8659,null],"outstandingDowntime":[false,false,false,false]}},{"ix":126,"action":{"kind":"Deliver","chain":"provider","numPackets":6},"partialState":{"h":18,"t":108,"tokens":[1880,5527,11041,15975],"delegation":[880,4527,10041,14975],"delegatorTokens":9999999951347,"jailed":[1000000000000041,1000000000000017,null,1000000000000047],"status":["unbonding","unbonding","bonded","unbonding"]}},{"ix":127,"action":{"kind":"Delegate","val":2,"amt":1335},"partialState":{"h":18,"t":108,"tokens":[1880,5527,12376,15975],"delegation":[880,4527,11376,14975],"delegatorTokens":9999999950012}},{"ix":128,"action":{"kind":"Undelegate","val":0,"amt":1280},"partialState":{"h":18,"t":108,"tokens":[1880,5527,12376,15975],"delegation":[880,4527,11376,14975],"delegatorTokens":9999999950012}},{"ix":129,"action":{"kind":"Delegate","val":1,"amt":1823},"partialState":{"h":18,"t":108,"tokens":[1880,7350,12376,15975],"delegation":[880,6350,11376,14975],"delegatorTokens":9999999948189}},{"ix":130,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":14,"t":84,"consumerPower":[null,null,11041,null],"outstandingDowntime":[false,false,false,false]}},{"ix":131,"action":{"kind":"Undelegate","val":0,"amt":2126},"partialState":{"h":18,"t":108,"tokens":[1880,7350,12376,15975],"delegation":[880,6350,11376,14975],"delegatorTokens":9999999948189}},{"ix":132,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":15,"t":90,"consumerPower":[null,null,11041,null],"outstandingDowntime":[false,false,false,false]}},{"ix":133,"action":{"kind":"Delegate","val":0,"amt":2123},"partialState":{"h":18,"t":108,"tokens":[4003,7350,12376,15975],"delegation":[3003,6350,11376,14975],"delegatorTokens":9999999946066}},{"ix":134,"action":{"kind":"Deliver","chain":"consumer","numPackets":5},"partialState":{"h":15,"t":90,"consumerPower":[null,null,11041,null],"outstandingDowntime":[false,false,false,false]}},{"ix":135,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":136,"action":{"kind":"Deliver","chain":"provider","numPackets":1},"partialState":{"h":18,"t":108,"tokens":[4003,7350,12376,15975],"delegation":[3003,6350,11376,14975],"delegatorTokens":9999999946066,"jailed":[1000000000000041,1000000000000017,null,1000000000000047],"status":["unbonding","unbonding","bonded","unbonding"]}},{"ix":137,"action":{"kind":"Undelegate","val":2,"amt":1782},"partialState":{"h":18,"t":108,"tokens":[4003,7350,10594,15975],"delegation":[3003,6350,9594,14975],"delegatorTokens":9999999946066}},{"ix":138,"action":{"kind":"Delegate","val":2,"amt":1094},"partialState":{"h":18,"t":108,"tokens":[4003,7350,11688,15975],"delegation":[3003,6350,10688,14975],"delegatorTokens":9999999944972}},{"ix":139,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":16,"t":96,"consumerPower":[null,null,11041,null],"outstandingDowntime":[false,false,false,false]}},{"ix":140,"action":{"kind":"Delegate","val":2,"amt":1495},"partialState":{"h":18,"t":108,"tokens":[4003,7350,13183,15975],"delegation":[3003,6350,12183,14975],"delegatorTokens":9999999943477}},{"ix":141,"action":{"kind":"Undelegate","val":1,"amt":2249},"partialState":{"h":18,"t":108,"tokens":[4003,5101,13183,15975],"delegation":[3003,4101,12183,14975],"delegatorTokens":9999999943477}},{"ix":142,"action":{"kind":"Deliver","chain":"consumer","numPackets":3},"partialState":{"h":16,"t":96,"consumerPower":[null,null,11041,null],"outstandingDowntime":[false,false,false,false]}},{"ix":143,"action":{"kind":"Deliver","chain":"consumer","numPackets":1},"partialState":{"h":16,"t":96,"consumerPower":[null,null,11041,null],"outstandingDowntime":[false,false,false,false]}},{"ix":144,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":145,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":146,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":147,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":148,"action":{"kind":"Undelegate","val":2,"amt":1269},"partialState":{"h":18,"t":108,"tokens":[4003,5101,11914,15975],"delegation":[3003,4101,10914,14975],"delegatorTokens":9999999943477}},{"ix":149,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":150,"action":{"kind":"Deliver","chain":"provider","numPackets":6},"partialState":{"h":18,"t":108,"tokens":[4003,5101,11914,15975],"delegation":[3003,4101,10914,14975],"delegatorTokens":9999999943477,"jailed":[1000000000000041,1000000000000017,null,1000000000000047],"status":["unbonding","unbonding","bonded","unbonding"]}},{"ix":151,"action":{"kind":"Undelegate","val":0,"amt":1538},"partialState":{"h":18,"t":108,"tokens":[2465,5101,11914,15975],"delegation":[1465,4101,10914,14975],"delegatorTokens":9999999943477}},{"ix":152,"action":{"kind":"Delegate","val":3,"amt":3236},"partialState":{"h":18,"t":108,"tokens":[2465,5101,11914,19211],"delegation":[1465,4101,10914,18211],"delegatorTokens":9999999940241}},{"ix":153,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":17,"t":102,"consumerPower":[null,null,11041,null],"outstandingDowntime":[false,false,false,false]}},{"ix":154,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":18,"t":108,"consumerPower":[null,null,11041,null],"outstandingDowntime":[false,false,false,false]}},{"ix":155,"action":{"kind":"Deliver","chain":"provider","numPackets":2},"partialState":{"h":18,"t":108,"tokens":[2465,5101,11914,19211],"delegation":[1465,4101,10914,18211],"delegatorTokens":9999999940241,"jailed":[1000000000000041,1000000000000017,null,1000000000000047],"status":["unbonding","unbonding","bonded","unbonding"]}},{"ix":156,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":157,"action":{"kind":"Delegate","val":0,"amt":3102},"partialState":{"h":18,"t":108,"tokens":[5567,5101,11914,19211],"delegation":[4567,4101,10914,18211],"delegatorTokens":9999999937139}},{"ix":158,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":19,"t":114,"tokens":[5567,5101,11914,19211],"delegation":[4567,4101,10914,18211],"delegatorTokens":9999999942822,"jailed":[1000000000000041,1000000000000017,null,1000000000000047],"status":["unbonding","unbonding","bonded","unbonding"]}},{"ix":159,"action":{"kind":"Deliver","chain":"consumer","numPackets":3},"partialState":{"h":18,"t":108,"consumerPower":[null,null,11041,null],"outstandingDowntime":[false,false,false,false]}},{"ix":160,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":161,"action":{"kind":"Deliver","chain":"provider","numPackets":1},"partialState":{"h":19,"t":114,"tokens":[5567,5101,11914,19211],"delegation":[4567,4101,10914,18211],"delegatorTokens":9999999942822,"jailed":[1000000000000041,1000000000000017,null,1000000000000047],"status":["unbonding","unbonding","bonded","unbonding"]}},{"ix":162,"action":{"kind":"Delegate","val":3,"amt":3227},"partialState":{"h":19,"t":114,"tokens":[5567,5101,11914,22438],"delegation":[4567,4101,10914,21438],"delegatorTokens":9999999939595}},{"ix":163,"action":{"kind":"Undelegate","val":1,"amt":4858},"partialState":{"h":19,"t":114,"tokens":[5567,5101,11914,22438],"delegation":[4567,4101,10914,21438],"delegatorTokens":9999999939595}},{"ix":164,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":19,"t":114,"consumerPower":[null,null,11041,null],"outstandingDowntime":[false,false,false,false]}},{"ix":165,"action":{"kind":"Undelegate","val":1,"amt":2345},"partialState":{"h":19,"t":114,"tokens":[5567,2756,11914,22438],"delegation":[4567,1756,10914,21438],"delegatorTokens":9999999939595}},{"ix":166,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":20,"t":120,"consumerPower":[null,null,11041,null],"outstandingDowntime":[false,false,false,false]}},{"ix":167,"action":{"kind":"Deliver","chain":"provider","numPackets":5},"partialState":{"h":19,"t":114,"tokens":[5567,2756,11914,22438],"delegation":[4567,1756,10914,21438],"delegatorTokens":9999999939595,"jailed":[1000000000000041,1000000000000017,null,1000000000000047],"status":["unbonding","unbonding","bonded","unbonding"]}},{"ix":168,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":169,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":21,"t":126,"consumerPower":[null,null,11041,null],"outstandingDowntime":[false,false,false,false]}},{"ix":170,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":171,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":20,"t":120,"tokens":[5567,2756,11914,22438],"delegation":[4567,1756,10914,21438],"delegatorTokens":9999999940943,"jailed":[1000000000000041,1000000000000017,null,1000000000000047],"status":["unbonding","unbonded","bonded","unbonding"]}},{"ix":172,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":173,"action":{"kind":"Deliver","chain":"consumer","numPackets":2},"partialState":{"h":21,"t":126,"consumerPower":[null,null,11041,null],"outstandingDowntime":[false,false,false,false]}},{"ix":174,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":22,"t":132,"consumerPower":[null,null,11914,null],"outstandingDowntime":[false,false,false,false]}},{"ix":175,"action":{"kind":"Deliver","chain":"provider","numPackets":1},"partialState":{"h":20,"t":120,"tokens":[5567,2756,11914,22438],"delegation":[4567,1756,10914,21438],"delegatorTokens":9999999940943,"jailed":[1000000000000041,1000000000000017,null,1000000000000047],"status":["unbonding","unbonded","bonded","unbonding"]}},{"ix":176,"action":{"kind":"Delegate","val":3,"amt":2872},"partialState":{"h":20,"t":120,"tokens":[5567,2756,11914,25310],"delegation":[4567,1756,10914,24310],"delegatorTokens":9999999938071}},{"ix":177,"action":{"kind":"Undelegate","val":2,"amt":1199},"partialState":{"h":20,"t":120,"tokens":[5567,2756,10715,25310],"delegation":[4567,1756,9715,24310],"delegatorTokens":9999999938071}},{"ix":178,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":23,"t":138,"consumerPower":[null,null,11914,null],"outstandingDowntime":[false,false,false,false]}},{"ix":179,"action":{"kind":"Deliver","chain":"provider","numPackets":6},"partialState":{"h":20,"t":120,"tokens":[5567,2756,10715,25310],"delegation":[4567,1756,9715,24310],"delegatorTokens":9999999938071,"jailed":[1000000000000041,1000000000000017,null,1000000000000047],"status":["unbonding","unbonded","bonded","unbonding"]}},{"ix":180,"action":{"kind":"Delegate","val":1,"amt":1196},"partialState":{"h":20,"t":120,"tokens":[5567,3952,10715,25310],"delegation":[4567,2952,9715,24310],"delegatorTokens":9999999936875}},{"ix":181,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":182,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":21,"t":126,"tokens":[5567,3952,10715,25310],"delegation":[4567,2952,9715,24310],"delegatorTokens":9999999945929,"jailed":[1000000000000041,1000000000000017,null,1000000000000047],"status":["unbonding","unbonded","bonded","unbonding"]}},{"ix":183,"action":{"kind":"Undelegate","val":3,"amt":2972},"partialState":{"h":21,"t":126,"tokens":[5567,3952,10715,22338],"delegation":[4567,2952,9715,21338],"delegatorTokens":9999999945929}},{"ix":184,"action":{"kind":"Delegate","val":3,"amt":3917},"partialState":{"h":21,"t":126,"tokens":[5567,3952,10715,26255],"delegation":[4567,2952,9715,25255],"delegatorTokens":9999999942012}},{"ix":185,"action":{"kind":"Deliver","chain":"consumer","numPackets":4},"partialState":{"h":23,"t":138,"consumerPower":[null,null,11914,null],"outstandingDowntime":[false,false,false,false]}},{"ix":186,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":187,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":188,"action":{"kind":"Deliver","chain":"consumer","numPackets":1},"partialState":{"h":23,"t":138,"consumerPower":[null,null,11914,null],"outstandingDowntime":[false,false,false,false]}},{"ix":189,"action":{"kind":"Undelegate","val":2,"amt":2667},"partialState":{"h":21,"t":126,"tokens":[5567,3952,8048,26255],"delegation":[4567,2952,7048,25255],"delegatorTokens":9999999942012}},{"ix":190,"action":{"kind":"Undelegate","val":3,"amt":1433},"partialState":{"h":21,"t":126,"tokens":[5567,3952,8048,24822],"delegation":[4567,2952,7048,23822],"delegatorTokens":9999999942012}},{"ix":191,"action":{"kind":"Delegate","val":0,"amt":2343},"partialState":{"h":21,"t":126,"tokens":[7910,3952,8048,24822],"delegation":[6910,2952,7048,23822],"delegatorTokens":9999999939669}},{"ix":192,"action":{"kind":"Undelegate","val":0,"amt":4930},"partialState":{"h":21,"t":126,"tokens":[2980,3952,8048,24822],"delegation":[1980,2952,7048,23822],"delegatorTokens":9999999939669}},{"ix":193,"action":{"kind":"Delegate","val":0,"amt":3936},"partialState":{"h":21,"t":126,"tokens":[6916,3952,8048,24822],"delegation":[5916,2952,7048,23822],"delegatorTokens":9999999935733}},{"ix":194,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":22,"t":132,"tokens":[6916,3952,8048,24822],"delegation":[5916,2952,7048,23822],"delegatorTokens":9999999935733,"jailed":[1000000000000041,1000000000000017,null,1000000000000047],"status":["unbonded","unbonded","bonded","unbonded"]}},{"ix":195,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":24,"t":144,"consumerPower":[null,null,11914,null],"outstandingDowntime":[false,false,false,false]}},{"ix":196,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":23,"t":138,"tokens":[6916,3952,8048,24822],"delegation":[5916,2952,7048,23822],"delegatorTokens":9999999937926,"jailed":[1000000000000041,1000000000000017,null,1000000000000047],"status":["unbonded","unbonded","bonded","unbonded"]}},{"ix":197,"action":{"kind":"Delegate","val":0,"amt":4809},"partialState":{"h":23,"t":138,"tokens":[11725,3952,8048,24822],"delegation":[10725,2952,7048,23822],"delegatorTokens":9999999933117}},{"ix":198,"action":{"kind":"Undelegate","val":0,"amt":2810},"partialState":{"h":23,"t":138,"tokens":[8915,3952,8048,24822],"delegation":[7915,2952,7048,23822],"delegatorTokens":9999999933117}},{"ix":199,"action":{"kind":"Deliver","chain":"provider","numPackets":3},"partialState":{"h":23,"t":138,"tokens":[8915,3952,8048,24822],"delegation":[7915,2952,7048,23822],"delegatorTokens":9999999933117,"jailed":[1000000000000041,1000000000000017,null,1000000000000047],"status":["unbonded","unbonded","bonded","unbonded"]}}],"events":["send_downtime_slash_request","insufficient_shares","more_than_one_third_val_power_change","send_vsc_without_downtime_ack","more_than_one_third_val_power_change","rebond_unval","send_vsc_without_downtime_ack","insufficient_shares","insufficient_shares","send_downtime_slash_request","insufficient_shares","receive_downtime_slash_request","jail","insufficient_shares","send_double_sign_slash_request","insufficient_shares","send_downtime_slash_request","send_vsc_with_downtime_ack","consumer_update_val","consumer_add_val","consumer_del_val","send_vsc_without_downtime_ack","receive_downtime_slash_ack","insufficient_shares","consumer_update_val","consumer_del_val","consumer_add_val","insufficient_shares","insufficient_shares","insufficient_shares","rebond_unval","receive_downtime_slash_request","jail","send_vsc_with_downtime_ack","receive_double_sign_slash_request","insufficient_shares","rebond_unval","receive_downtime_slash_request","jail","send_vsc_with_downtime_ack","receive_downtime_slash_ack","insufficient_shares","consumer_add_val","consumer_del_val","insufficient_shares","send_vsc_without_downtime_ack","send_vsc_without_downtime_ack","insufficient_shares","receive_downtime_slash_ack","send_vsc_without_downtime_ack","some_undels_expired_but_not_completed","some_undels_expired_but_not_completed","send_vsc_without_downtime_ack","consumer_del_val","consumer_update_val","consumer_del_val","insufficient_shares","send_vsc_not_because_change","send_vsc_without_downtime_ack","some_undels_expired_but_not_completed","consumer_send_maturation","consumer_send_maturation","insufficient_shares","consumer_send_maturation","consumer_send_maturation","consumer_update_val","insufficient_shares","consumer_send_maturation","complete_undel_immediate","complete_undel_immediate","set_unval_hold_false","complete_undel_immediate","set_undel_hold_false","send_vsc_without_downtime_ack","insufficient_shares","consumer_send_maturation","consumer_send_maturation","consumer_send_maturation","consumer_send_maturation","complete_unval_in_endblock","complete_undel_in_endblock","send_vsc_not_because_change","send_vsc_without_downtime_ack","consumer_update_val","consumer_send_maturation","consumer_send_maturation","some_undels_expired_but_not_completed","complete_undel_immediate","complete_undel_immediate","complete_undel_immediate","complete_undel_immediate","set_unval_hold_false","set_unval_hold_false","set_undel_hold_false","set_undel_hold_false","send_vsc_without_downtime_ack","complete_unval_in_endblock","complete_unval_in_endblock","send_vsc_without_downtime_ack","complete_undel_in_endblock"]},{"meta":{"commit":"7ffd0c04e4205cbc9caf212abfe6c59ee43153bf"},"constants":{"P":"provider","C":"consumer","UNBONDING_SECONDS_P":70,"UNBONDING_SECONDS_C":50,"TRUSTING_SECONDS":49,"NUM_VALIDATORS":4,"MAX_VALIDATORS":2,"SLASH_DOUBLESIGN":0,"SLASH_DOWNTIME":0,"JAIL_SECONDS":999999999999999,"BLOCK_SECONDS":6,"INITIAL_DELEGATOR_TOKENS":10000000000000,"DELEGATE_AMT_MIN":1000,"DELEGATE_AMT_MAX":5000,"UNDELEGATE_AMT_MIN":1000,"UNDELEGATE_AMT_MAX":5000,"ISDOWNTIME_PROBABILITY":0.5,"MAX_NUM_PACKETS_FOR_DELIVER":6},"actions":[{"ix":0,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":2,"t":12,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":1,"action":{"kind":"ConsumerSlash","val":1,"infractionHeight":1,"isDowntime":false},"partialState":{"h":2,"t":12,"outstandingDowntime":[false,false,false,false]}},{"ix":2,"action":{"kind":"ConsumerSlash","val":3,"infractionHeight":0,"isDowntime":false},"partialState":{"h":2,"t":12,"outstandingDowntime":[false,false,false,false]}},{"ix":3,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":2,"t":12,"tokens":[5000,4000,3000,2000],"delegation":[4000,3000,2000,1000],"delegatorTokens":10000000000000,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":4,"action":{"kind":"Delegate","val":3,"amt":2263},"partialState":{"h":2,"t":12,"tokens":[5000,4000,3000,4263],"delegation":[4000,3000,2000,3263],"delegatorTokens":9999999997737}},{"ix":5,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":6,"action":{"kind":"ConsumerSlash","val":3,"infractionHeight":0,"isDowntime":true},"partialState":{"h":2,"t":12,"outstandingDowntime":[false,false,false,true]}},{"ix":7,"action":{"kind":"Undelegate","val":2,"amt":4520},"partialState":{"h":2,"t":12,"tokens":[5000,4000,3000,4263],"delegation":[4000,3000,2000,3263],"delegatorTokens":9999999997737}},{"ix":8,"action":{"kind":"Deliver","chain":"provider","numPackets":5},"partialState":{"h":2,"t":12,"tokens":[5000,4000,3000,4263],"delegation":[4000,3000,2000,3263],"delegatorTokens":9999999997737,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":9,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":3,"t":18,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,false,false,true]}},{"ix":10,"action":{"kind":"Deliver","chain":"provider","numPackets":1},"partialState":{"h":2,"t":12,"tokens":[5000,4000,3000,4263],"delegation":[4000,3000,2000,3263],"delegatorTokens":9999999997737,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":11,"action":{"kind":"ConsumerSlash","val":1,"infractionHeight":1,"isDowntime":true},"partialState":{"h":3,"t":18,"outstandingDowntime":[false,true,false,true]}},{"ix":12,"action":{"kind":"ConsumerSlash","val":2,"infractionHeight":2,"isDowntime":true},"partialState":{"h":3,"t":18,"outstandingDowntime":[false,true,true,true]}},{"ix":13,"action":{"kind":"Deliver","chain":"consumer","numPackets":5},"partialState":{"h":3,"t":18,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,true,true,true]}},{"ix":14,"action":{"kind":"Undelegate","val":3,"amt":4417},"partialState":{"h":2,"t":12,"tokens":[5000,4000,3000,4263],"delegation":[4000,3000,2000,3263],"delegatorTokens":9999999997737}},{"ix":15,"action":{"kind":"Delegate","val":3,"amt":4821},"partialState":{"h":2,"t":12,"tokens":[5000,4000,3000,9084],"delegation":[4000,3000,2000,8084],"delegatorTokens":9999999992916}},{"ix":16,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":17,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":4,"t":24,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,true,true,true]}},{"ix":18,"action":{"kind":"Undelegate","val":1,"amt":3111},"partialState":{"h":2,"t":12,"tokens":[5000,4000,3000,9084],"delegation":[4000,3000,2000,8084],"delegatorTokens":9999999992916}},{"ix":19,"action":{"kind":"Deliver","chain":"provider","numPackets":6},"partialState":{"h":2,"t":12,"tokens":[5000,4000,3000,9084],"delegation":[4000,3000,2000,8084],"delegatorTokens":9999999992916,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":20,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":21,"action":{"kind":"Delegate","val":0,"amt":4622},"partialState":{"h":2,"t":12,"tokens":[9622,4000,3000,9084],"delegation":[8622,3000,2000,8084],"delegatorTokens":9999999988294}},{"ix":22,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":23,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":24,"action":{"kind":"Delegate","val":0,"amt":1934},"partialState":{"h":2,"t":12,"tokens":[11556,4000,3000,9084],"delegation":[10556,3000,2000,8084],"delegatorTokens":9999999986360}},{"ix":25,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":3,"t":18,"tokens":[11556,4000,3000,9084],"delegation":[10556,3000,2000,8084],"delegatorTokens":9999999986360,"jailed":[null,null,null,1000000000000011],"status":["bonded","unbonding","unbonded","bonded"]}},{"ix":26,"action":{"kind":"Undelegate","val":2,"amt":2518},"partialState":{"h":3,"t":18,"tokens":[11556,4000,3000,9084],"delegation":[10556,3000,2000,8084],"delegatorTokens":9999999986360}},{"ix":27,"action":{"kind":"Delegate","val":2,"amt":1625},"partialState":{"h":3,"t":18,"tokens":[11556,4000,4625,9084],"delegation":[10556,3000,3625,8084],"delegatorTokens":9999999984735}},{"ix":28,"action":{"kind":"Deliver","chain":"consumer","numPackets":4},"partialState":{"h":4,"t":24,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,true,true,true]}},{"ix":29,"action":{"kind":"Undelegate","val":1,"amt":1047},"partialState":{"h":3,"t":18,"tokens":[11556,2953,4625,9084],"delegation":[10556,1953,3625,8084],"delegatorTokens":9999999984735}},{"ix":30,"action":{"kind":"Delegate","val":3,"amt":1706},"partialState":{"h":3,"t":18,"tokens":[11556,2953,4625,10790],"delegation":[10556,1953,3625,9790],"delegatorTokens":9999999983029}},{"ix":31,"action":{"kind":"Deliver","chain":"provider","numPackets":2},"partialState":{"h":3,"t":18,"tokens":[11556,2953,4625,10790],"delegation":[10556,1953,3625,9790],"delegatorTokens":9999999983029,"jailed":[null,null,null,1000000000000011],"status":["bonded","unbonding","unbonded","bonded"]}},{"ix":32,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":33,"action":{"kind":"Deliver","chain":"consumer","numPackets":3},"partialState":{"h":4,"t":24,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,true,true,true]}},{"ix":34,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":35,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":5,"t":30,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,true,true,true]}},{"ix":36,"action":{"kind":"Deliver","chain":"provider","numPackets":1},"partialState":{"h":3,"t":18,"tokens":[11556,2953,4625,10790],"delegation":[10556,1953,3625,9790],"delegatorTokens":9999999983029,"jailed":[null,null,null,1000000000000011],"status":["bonded","unbonding","unbonded","bonded"]}},{"ix":37,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":4,"t":24,"tokens":[11556,2953,4625,10790],"delegation":[10556,1953,3625,9790],"delegatorTokens":9999999983029,"jailed":[null,1000000000000017,null,1000000000000011],"status":["bonded","unbonding","bonded","unbonding"]}},{"ix":38,"action":{"kind":"Deliver","chain":"consumer","numPackets":1},"partialState":{"h":5,"t":30,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,true,true,false]}},{"ix":39,"action":{"kind":"Deliver","chain":"provider","numPackets":4},"partialState":{"h":4,"t":24,"tokens":[11556,2953,4625,10790],"delegation":[10556,1953,3625,9790],"delegatorTokens":9999999983029,"jailed":[null,1000000000000017,null,1000000000000011],"status":["bonded","unbonding","bonded","unbonding"]}},{"ix":40,"action":{"kind":"Deliver","chain":"consumer","numPackets":3},"partialState":{"h":5,"t":30,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,true,true,false]}},{"ix":41,"action":{"kind":"Undelegate","val":3,"amt":1065},"partialState":{"h":4,"t":24,"tokens":[11556,2953,4625,9725],"delegation":[10556,1953,3625,8725],"delegatorTokens":9999999983029}},{"ix":42,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":43,"action":{"kind":"Delegate","val":0,"amt":3229},"partialState":{"h":4,"t":24,"tokens":[14785,2953,4625,9725],"delegation":[13785,1953,3625,8725],"delegatorTokens":9999999979800}},{"ix":44,"action":{"kind":"Deliver","chain":"consumer","numPackets":1},"partialState":{"h":5,"t":30,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,true,true,false]}},{"ix":45,"action":{"kind":"Deliver","chain":"provider","numPackets":4},"partialState":{"h":4,"t":24,"tokens":[14785,2953,4625,9725],"delegation":[13785,1953,3625,8725],"delegatorTokens":9999999979800,"jailed":[null,1000000000000017,null,1000000000000011],"status":["bonded","unbonding","bonded","unbonding"]}},{"ix":46,"action":{"kind":"Delegate","val":0,"amt":1360},"partialState":{"h":4,"t":24,"tokens":[16145,2953,4625,9725],"delegation":[15145,1953,3625,8725],"delegatorTokens":9999999978440}},{"ix":47,"action":{"kind":"Delegate","val":0,"amt":2158},"partialState":{"h":4,"t":24,"tokens":[18303,2953,4625,9725],"delegation":[17303,1953,3625,8725],"delegatorTokens":9999999976282}},{"ix":48,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":5,"t":30,"tokens":[18303,2953,4625,9725],"delegation":[17303,1953,3625,8725],"delegatorTokens":9999999976282,"jailed":[null,1000000000000017,1000000000000023,1000000000000011],"status":["bonded","unbonding","bonded","unbonding"]}},{"ix":49,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":6,"t":36,"consumerPower":[11556,null,null,9084],"outstandingDowntime":[false,true,true,false]}},{"ix":50,"action":{"kind":"Deliver","chain":"consumer","numPackets":5},"partialState":{"h":6,"t":36,"consumerPower":[11556,null,null,9084],"outstandingDowntime":[false,false,true,false]}},{"ix":51,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":6,"t":36,"tokens":[18303,2953,4625,9725],"delegation":[17303,1953,3625,8725],"delegatorTokens":9999999976282,"jailed":[null,1000000000000017,1000000000000023,1000000000000011],"status":["bonded","unbonding","unbonding","unbonding"]}},{"ix":52,"action":{"kind":"Deliver","chain":"consumer","numPackets":4},"partialState":{"h":6,"t":36,"consumerPower":[11556,null,null,9084],"outstandingDowntime":[false,false,false,false]}},{"ix":53,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":7,"t":42,"consumerPower":[18303,null,4625,null],"outstandingDowntime":[false,false,false,false]}},{"ix":54,"action":{"kind":"Delegate","val":1,"amt":1338},"partialState":{"h":6,"t":36,"tokens":[18303,4291,4625,9725],"delegation":[17303,3291,3625,8725],"delegatorTokens":9999999974944}},{"ix":55,"action":{"kind":"Delegate","val":1,"amt":3966},"partialState":{"h":6,"t":36,"tokens":[18303,8257,4625,9725],"delegation":[17303,7257,3625,8725],"delegatorTokens":9999999970978}},{"ix":56,"action":{"kind":"Delegate","val":3,"amt":4188},"partialState":{"h":6,"t":36,"tokens":[18303,8257,4625,13913],"delegation":[17303,7257,3625,12913],"delegatorTokens":9999999966790}},{"ix":57,"action":{"kind":"Deliver","chain":"consumer","numPackets":5},"partialState":{"h":7,"t":42,"consumerPower":[18303,null,4625,null],"outstandingDowntime":[false,false,false,false]}},{"ix":58,"action":{"kind":"Delegate","val":0,"amt":1507},"partialState":{"h":6,"t":36,"tokens":[19810,8257,4625,13913],"delegation":[18810,7257,3625,12913],"delegatorTokens":9999999965283}},{"ix":59,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":60,"action":{"kind":"Delegate","val":3,"amt":1810},"partialState":{"h":6,"t":36,"tokens":[19810,8257,4625,15723],"delegation":[18810,7257,3625,14723],"delegatorTokens":9999999963473}},{"ix":61,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":7,"t":42,"tokens":[19810,8257,4625,15723],"delegation":[18810,7257,3625,14723],"delegatorTokens":9999999963473,"jailed":[null,1000000000000017,1000000000000023,1000000000000011],"status":["bonded","unbonding","unbonding","unbonding"]}},{"ix":62,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":63,"action":{"kind":"Deliver","chain":"provider","numPackets":2},"partialState":{"h":7,"t":42,"tokens":[19810,8257,4625,15723],"delegation":[18810,7257,3625,14723],"delegatorTokens":9999999963473,"jailed":[null,1000000000000017,1000000000000023,1000000000000011],"status":["bonded","unbonding","unbonding","unbonding"]}},{"ix":64,"action":{"kind":"Undelegate","val":1,"amt":1559},"partialState":{"h":7,"t":42,"tokens":[19810,6698,4625,15723],"delegation":[18810,5698,3625,14723],"delegatorTokens":9999999963473}},{"ix":65,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":66,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":8,"t":48,"tokens":[19810,6698,4625,15723],"delegation":[18810,5698,3625,14723],"delegatorTokens":9999999963473,"jailed":[null,1000000000000017,1000000000000023,1000000000000011],"status":["bonded","unbonding","unbonding","unbonding"]}},{"ix":67,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":68,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":9,"t":54,"tokens":[19810,6698,4625,15723],"delegation":[18810,5698,3625,14723],"delegatorTokens":9999999963473,"jailed":[null,1000000000000017,1000000000000023,1000000000000011],"status":["bonded","unbonding","unbonding","unbonding"]}},{"ix":69,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":70,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":71,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":8,"t":48,"consumerPower":[18303,null,4625,null],"outstandingDowntime":[false,false,false,false]}},{"ix":72,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":10,"t":60,"tokens":[19810,6698,4625,15723],"delegation":[18810,5698,3625,14723],"delegatorTokens":9999999963473,"jailed":[null,1000000000000017,1000000000000023,1000000000000011],"status":["bonded","unbonding","unbonding","unbonding"]}},{"ix":73,"action":{"kind":"Undelegate","val":3,"amt":3932},"partialState":{"h":10,"t":60,"tokens":[19810,6698,4625,11791],"delegation":[18810,5698,3625,10791],"delegatorTokens":9999999963473}},{"ix":74,"action":{"kind":"Deliver","chain":"provider","numPackets":1},"partialState":{"h":10,"t":60,"tokens":[19810,6698,4625,11791],"delegation":[18810,5698,3625,10791],"delegatorTokens":9999999963473,"jailed":[null,1000000000000017,1000000000000023,1000000000000011],"status":["bonded","unbonding","unbonding","unbonding"]}},{"ix":75,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":11,"t":66,"tokens":[19810,6698,4625,11791],"delegation":[18810,5698,3625,10791],"delegatorTokens":9999999963473,"jailed":[null,1000000000000017,1000000000000023,1000000000000011],"status":["bonded","unbonding","unbonding","unbonding"]}},{"ix":76,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":77,"action":{"kind":"Deliver","chain":"consumer","numPackets":4},"partialState":{"h":8,"t":48,"consumerPower":[18303,null,4625,null],"outstandingDowntime":[false,false,false,false]}},{"ix":78,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":9,"t":54,"consumerPower":[19810,null,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":79,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":80,"action":{"kind":"Deliver","chain":"consumer","numPackets":4},"partialState":{"h":9,"t":54,"consumerPower":[19810,null,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":81,"action":{"kind":"Undelegate","val":2,"amt":4232},"partialState":{"h":11,"t":66,"tokens":[19810,6698,4625,11791],"delegation":[18810,5698,3625,10791],"delegatorTokens":9999999963473}},{"ix":82,"action":{"kind":"Deliver","chain":"consumer","numPackets":4},"partialState":{"h":9,"t":54,"consumerPower":[19810,null,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":83,"action":{"kind":"Deliver","chain":"consumer","numPackets":3},"partialState":{"h":9,"t":54,"consumerPower":[19810,null,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":84,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":10,"t":60,"consumerPower":[19810,null,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":85,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":11,"t":66,"consumerPower":[19810,null,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":86,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":87,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":88,"action":{"kind":"Undelegate","val":3,"amt":4068},"partialState":{"h":11,"t":66,"tokens":[19810,6698,4625,7723],"delegation":[18810,5698,3625,6723],"delegatorTokens":9999999963473}},{"ix":89,"action":{"kind":"Deliver","chain":"consumer","numPackets":1},"partialState":{"h":11,"t":66,"consumerPower":[19810,null,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":90,"action":{"kind":"Delegate","val":3,"amt":2743},"partialState":{"h":11,"t":66,"tokens":[19810,6698,4625,10466],"delegation":[18810,5698,3625,9466],"delegatorTokens":9999999960730}},{"ix":91,"action":{"kind":"Undelegate","val":1,"amt":2704},"partialState":{"h":11,"t":66,"tokens":[19810,3994,4625,10466],"delegation":[18810,2994,3625,9466],"delegatorTokens":9999999960730}},{"ix":92,"action":{"kind":"Deliver","chain":"consumer","numPackets":1},"partialState":{"h":11,"t":66,"consumerPower":[19810,null,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":93,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":94,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":12,"t":72,"consumerPower":[19810,null,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":95,"action":{"kind":"Undelegate","val":2,"amt":3278},"partialState":{"h":11,"t":66,"tokens":[19810,3994,1347,10466],"delegation":[18810,2994,347,9466],"delegatorTokens":9999999960730}},{"ix":96,"action":{"kind":"Delegate","val":1,"amt":1595},"partialState":{"h":11,"t":66,"tokens":[19810,5589,1347,10466],"delegation":[18810,4589,347,9466],"delegatorTokens":9999999959135}},{"ix":97,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":98,"action":{"kind":"Deliver","chain":"consumer","numPackets":4},"partialState":{"h":12,"t":72,"consumerPower":[19810,null,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":99,"action":{"kind":"Delegate","val":1,"amt":3768},"partialState":{"h":11,"t":66,"tokens":[19810,9357,1347,10466],"delegation":[18810,8357,347,9466],"delegatorTokens":9999999955367}},{"ix":100,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":101,"action":{"kind":"Delegate","val":0,"amt":3497},"partialState":{"h":11,"t":66,"tokens":[23307,9357,1347,10466],"delegation":[22307,8357,347,9466],"delegatorTokens":9999999951870}},{"ix":102,"action":{"kind":"Deliver","chain":"consumer","numPackets":6},"partialState":{"h":12,"t":72,"consumerPower":[19810,null,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":103,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":104,"action":{"kind":"Undelegate","val":2,"amt":1491},"partialState":{"h":11,"t":66,"tokens":[23307,9357,1347,10466],"delegation":[22307,8357,347,9466],"delegatorTokens":9999999951870}},{"ix":105,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":12,"t":72,"tokens":[23307,9357,1347,10466],"delegation":[22307,8357,347,9466],"delegatorTokens":9999999951870,"jailed":[null,1000000000000017,1000000000000023,1000000000000011],"status":["bonded","unbonding","unbonding","unbonding"]}},{"ix":106,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":13,"t":78,"tokens":[23307,9357,1347,10466],"delegation":[22307,8357,347,9466],"delegatorTokens":9999999951870,"jailed":[null,1000000000000017,1000000000000023,1000000000000011],"status":["bonded","unbonding","unbonding","unbonding"]}},{"ix":107,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":14,"t":84,"tokens":[23307,9357,1347,10466],"delegation":[22307,8357,347,9466],"delegatorTokens":9999999951870,"jailed":[null,1000000000000017,1000000000000023,1000000000000011],"status":["bonded","unbonding","unbonding","unbonding"]}},{"ix":108,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":15,"t":90,"tokens":[23307,9357,1347,10466],"delegation":[22307,8357,347,9466],"delegatorTokens":9999999951870,"jailed":[null,1000000000000017,1000000000000023,1000000000000011],"status":["bonded","unbonding","unbonding","unbonding"]}},{"ix":109,"action":{"kind":"Deliver","chain":"consumer","numPackets":5},"partialState":{"h":12,"t":72,"consumerPower":[19810,null,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":110,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":111,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":16,"t":96,"tokens":[23307,9357,1347,10466],"delegation":[22307,8357,347,9466],"delegatorTokens":9999999951870,"jailed":[null,1000000000000017,1000000000000023,1000000000000011],"status":["bonded","unbonding","unbonding","unbonding"]}},{"ix":112,"action":{"kind":"Delegate","val":2,"amt":1311},"partialState":{"h":16,"t":96,"tokens":[23307,9357,2658,10466],"delegation":[22307,8357,1658,9466],"delegatorTokens":9999999950559}},{"ix":113,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":17,"t":102,"tokens":[23307,9357,2658,10466],"delegation":[22307,8357,1658,9466],"delegatorTokens":9999999950559,"jailed":[null,1000000000000017,1000000000000023,1000000000000011],"status":["bonded","unbonding","unbonding","unbonding"]}},{"ix":114,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":13,"t":78,"consumerPower":[23307,null,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":115,"action":{"kind":"Undelegate","val":2,"amt":1991},"partialState":{"h":17,"t":102,"tokens":[23307,9357,2658,10466],"delegation":[22307,8357,1658,9466],"delegatorTokens":9999999950559}},{"ix":116,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":18,"t":108,"tokens":[23307,9357,2658,10466],"delegation":[22307,8357,1658,9466],"delegatorTokens":9999999950559,"jailed":[null,1000000000000017,1000000000000023,1000000000000011],"status":["bonded","unbonding","unbonding","unbonding"]}},{"ix":117,"action":{"kind":"Undelegate","val":3,"amt":1759},"partialState":{"h":18,"t":108,"tokens":[23307,9357,2658,8707],"delegation":[22307,8357,1658,7707],"delegatorTokens":9999999950559}},{"ix":118,"action":{"kind":"Delegate","val":2,"amt":1638},"partialState":{"h":18,"t":108,"tokens":[23307,9357,4296,8707],"delegation":[22307,8357,3296,7707],"delegatorTokens":9999999948921}},{"ix":119,"action":{"kind":"Delegate","val":1,"amt":1672},"partialState":{"h":18,"t":108,"tokens":[23307,11029,4296,8707],"delegation":[22307,10029,3296,7707],"delegatorTokens":9999999947249}},{"ix":120,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":14,"t":84,"consumerPower":[23307,null,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":121,"action":{"kind":"Deliver","chain":"consumer","numPackets":5},"partialState":{"h":14,"t":84,"consumerPower":[23307,null,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":122,"action":{"kind":"Delegate","val":1,"amt":2343},"partialState":{"h":18,"t":108,"tokens":[23307,13372,4296,8707],"delegation":[22307,12372,3296,7707],"delegatorTokens":9999999944906}},{"ix":123,"action":{"kind":"Delegate","val":1,"amt":1743},"partialState":{"h":18,"t":108,"tokens":[23307,15115,4296,8707],"delegation":[22307,14115,3296,7707],"delegatorTokens":9999999943163}},{"ix":124,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":125,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":126,"action":{"kind":"Delegate","val":1,"amt":3585},"partialState":{"h":18,"t":108,"tokens":[23307,18700,4296,8707],"delegation":[22307,17700,3296,7707],"delegatorTokens":9999999939578}},{"ix":127,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":15,"t":90,"consumerPower":[23307,null,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":128,"action":{"kind":"Delegate","val":0,"amt":4281},"partialState":{"h":18,"t":108,"tokens":[27588,18700,4296,8707],"delegation":[26588,17700,3296,7707],"delegatorTokens":9999999935297}},{"ix":129,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":16,"t":96,"consumerPower":[23307,null,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":130,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":19,"t":114,"tokens":[27588,18700,4296,8707],"delegation":[26588,17700,3296,7707],"delegatorTokens":9999999935297,"jailed":[null,1000000000000017,1000000000000023,1000000000000011],"status":["bonded","unbonding","unbonding","unbonding"]}},{"ix":131,"action":{"kind":"Undelegate","val":1,"amt":1439},"partialState":{"h":19,"t":114,"tokens":[27588,17261,4296,8707],"delegation":[26588,16261,3296,7707],"delegatorTokens":9999999935297}},{"ix":132,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":17,"t":102,"consumerPower":[23307,null,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":133,"action":{"kind":"Undelegate","val":0,"amt":2235},"partialState":{"h":19,"t":114,"tokens":[25353,17261,4296,8707],"delegation":[24353,16261,3296,7707],"delegatorTokens":9999999935297}},{"ix":134,"action":{"kind":"Undelegate","val":1,"amt":1259},"partialState":{"h":19,"t":114,"tokens":[25353,16002,4296,8707],"delegation":[24353,15002,3296,7707],"delegatorTokens":9999999935297}},{"ix":135,"action":{"kind":"Deliver","chain":"consumer","numPackets":3},"partialState":{"h":17,"t":102,"consumerPower":[23307,null,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":136,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":18,"t":108,"consumerPower":[23307,null,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":137,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":20,"t":120,"tokens":[25353,16002,4296,8707],"delegation":[24353,15002,3296,7707],"delegatorTokens":9999999935297,"jailed":[null,1000000000000017,1000000000000023,1000000000000011],"status":["bonded","unbonding","unbonding","unbonding"]}},{"ix":138,"action":{"kind":"Deliver","chain":"provider","numPackets":1},"partialState":{"h":20,"t":120,"tokens":[25353,16002,4296,8707],"delegation":[24353,15002,3296,7707],"delegatorTokens":9999999935297,"jailed":[null,1000000000000017,1000000000000023,1000000000000011],"status":["bonded","unbonding","unbonding","unbonding"]}},{"ix":139,"action":{"kind":"Delegate","val":3,"amt":1955},"partialState":{"h":20,"t":120,"tokens":[25353,16002,4296,10662],"delegation":[24353,15002,3296,9662],"delegatorTokens":9999999933342}},{"ix":140,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":141,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":142,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":143,"action":{"kind":"Delegate","val":1,"amt":1295},"partialState":{"h":20,"t":120,"tokens":[25353,17297,4296,10662],"delegation":[24353,16297,3296,9662],"delegatorTokens":9999999932047}},{"ix":144,"action":{"kind":"Undelegate","val":0,"amt":2326},"partialState":{"h":20,"t":120,"tokens":[23027,17297,4296,10662],"delegation":[22027,16297,3296,9662],"delegatorTokens":9999999932047}},{"ix":145,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":19,"t":114,"consumerPower":[23307,null,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":146,"action":{"kind":"Undelegate","val":1,"amt":4812},"partialState":{"h":20,"t":120,"tokens":[23027,12485,4296,10662],"delegation":[22027,11485,3296,9662],"delegatorTokens":9999999932047}},{"ix":147,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":148,"action":{"kind":"Delegate","val":3,"amt":4699},"partialState":{"h":20,"t":120,"tokens":[23027,12485,4296,15361],"delegation":[22027,11485,3296,14361],"delegatorTokens":9999999927348}},{"ix":149,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":20,"t":120,"consumerPower":[23307,null,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":150,"action":{"kind":"Deliver","chain":"provider","numPackets":6},"partialState":{"h":20,"t":120,"tokens":[23027,12485,4296,15361],"delegation":[22027,11485,3296,14361],"delegatorTokens":9999999927348,"jailed":[null,1000000000000017,1000000000000023,1000000000000011],"status":["bonded","unbonding","unbonding","unbonding"]}},{"ix":151,"action":{"kind":"Delegate","val":1,"amt":2892},"partialState":{"h":20,"t":120,"tokens":[23027,15377,4296,15361],"delegation":[22027,14377,3296,14361],"delegatorTokens":9999999924456}},{"ix":152,"action":{"kind":"Deliver","chain":"consumer","numPackets":4},"partialState":{"h":20,"t":120,"consumerPower":[23307,null,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":153,"action":{"kind":"Delegate","val":3,"amt":3020},"partialState":{"h":20,"t":120,"tokens":[23027,15377,4296,18381],"delegation":[22027,14377,3296,17381],"delegatorTokens":9999999921436}},{"ix":154,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":155,"action":{"kind":"Deliver","chain":"consumer","numPackets":5},"partialState":{"h":20,"t":120,"consumerPower":[23307,null,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":156,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":157,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":158,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":159,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":21,"t":126,"tokens":[23027,15377,4296,18381],"delegation":[22027,14377,3296,17381],"delegatorTokens":9999999925107,"jailed":[null,1000000000000017,1000000000000023,1000000000000011],"status":["bonded","unbonding","unbonding","unbonding"]}},{"ix":160,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":161,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":162,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":163,"action":{"kind":"Undelegate","val":0,"amt":4504},"partialState":{"h":21,"t":126,"tokens":[18523,15377,4296,18381],"delegation":[17523,14377,3296,17381],"delegatorTokens":9999999925107}},{"ix":164,"action":{"kind":"Undelegate","val":1,"amt":3563},"partialState":{"h":21,"t":126,"tokens":[18523,11814,4296,18381],"delegation":[17523,10814,3296,17381],"delegatorTokens":9999999925107}},{"ix":165,"action":{"kind":"Delegate","val":1,"amt":4115},"partialState":{"h":21,"t":126,"tokens":[18523,15929,4296,18381],"delegation":[17523,14929,3296,17381],"delegatorTokens":9999999920992}},{"ix":166,"action":{"kind":"Delegate","val":2,"amt":3182},"partialState":{"h":21,"t":126,"tokens":[18523,15929,7478,18381],"delegation":[17523,14929,6478,17381],"delegatorTokens":9999999917810}},{"ix":167,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":168,"action":{"kind":"Delegate","val":0,"amt":3065},"partialState":{"h":21,"t":126,"tokens":[21588,15929,7478,18381],"delegation":[20588,14929,6478,17381],"delegatorTokens":9999999914745}},{"ix":169,"action":{"kind":"Deliver","chain":"consumer","numPackets":1},"partialState":{"h":20,"t":120,"consumerPower":[23307,null,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":170,"action":{"kind":"Undelegate","val":1,"amt":3367},"partialState":{"h":21,"t":126,"tokens":[21588,12562,7478,18381],"delegation":[20588,11562,6478,17381],"delegatorTokens":9999999914745}},{"ix":171,"action":{"kind":"Undelegate","val":1,"amt":4004},"partialState":{"h":21,"t":126,"tokens":[21588,8558,7478,18381],"delegation":[20588,7558,6478,17381],"delegatorTokens":9999999914745}},{"ix":172,"action":{"kind":"Deliver","chain":"provider","numPackets":6},"partialState":{"h":21,"t":126,"tokens":[21588,8558,7478,18381],"delegation":[20588,7558,6478,17381],"delegatorTokens":9999999914745,"jailed":[null,1000000000000017,1000000000000023,1000000000000011],"status":["bonded","unbonding","unbonding","unbonding"]}},{"ix":173,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":174,"action":{"kind":"Delegate","val":3,"amt":2677},"partialState":{"h":21,"t":126,"tokens":[21588,8558,7478,21058],"delegation":[20588,7558,6478,20058],"delegatorTokens":9999999912068}},{"ix":175,"action":{"kind":"Delegate","val":2,"amt":1133},"partialState":{"h":21,"t":126,"tokens":[21588,8558,8611,21058],"delegation":[20588,7558,7611,20058],"delegatorTokens":9999999910935}},{"ix":176,"action":{"kind":"Delegate","val":3,"amt":3214},"partialState":{"h":21,"t":126,"tokens":[21588,8558,8611,24272],"delegation":[20588,7558,7611,23272],"delegatorTokens":9999999907721}},{"ix":177,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":22,"t":132,"tokens":[21588,8558,8611,24272],"delegation":[20588,7558,7611,23272],"delegatorTokens":9999999907721,"jailed":[null,1000000000000017,1000000000000023,1000000000000011],"status":["bonded","unbonded","unbonded","unbonded"]}},{"ix":178,"action":{"kind":"Undelegate","val":3,"amt":2618},"partialState":{"h":22,"t":132,"tokens":[21588,8558,8611,21654],"delegation":[20588,7558,7611,20654],"delegatorTokens":9999999907721}},{"ix":179,"action":{"kind":"Undelegate","val":2,"amt":1749},"partialState":{"h":22,"t":132,"tokens":[21588,8558,6862,21654],"delegation":[20588,7558,5862,20654],"delegatorTokens":9999999907721}},{"ix":180,"action":{"kind":"Undelegate","val":2,"amt":4046},"partialState":{"h":22,"t":132,"tokens":[21588,8558,2816,21654],"delegation":[20588,7558,1816,20654],"delegatorTokens":9999999907721}},{"ix":181,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":182,"action":{"kind":"Undelegate","val":1,"amt":1441},"partialState":{"h":22,"t":132,"tokens":[21588,7117,2816,21654],"delegation":[20588,6117,1816,20654],"delegatorTokens":9999999907721}},{"ix":183,"action":{"kind":"Delegate","val":1,"amt":4090},"partialState":{"h":22,"t":132,"tokens":[21588,11207,2816,21654],"delegation":[20588,10207,1816,20654],"delegatorTokens":9999999903631}},{"ix":184,"action":{"kind":"Deliver","chain":"provider","numPackets":5},"partialState":{"h":22,"t":132,"tokens":[21588,11207,2816,21654],"delegation":[20588,10207,1816,20654],"delegatorTokens":9999999903631,"jailed":[null,1000000000000017,1000000000000023,1000000000000011],"status":["bonded","unbonded","unbonded","unbonded"]}},{"ix":185,"action":{"kind":"Delegate","val":2,"amt":3188},"partialState":{"h":22,"t":132,"tokens":[21588,11207,6004,21654],"delegation":[20588,10207,5004,20654],"delegatorTokens":9999999900443}},{"ix":186,"action":{"kind":"Undelegate","val":0,"amt":3961},"partialState":{"h":22,"t":132,"tokens":[17627,11207,6004,21654],"delegation":[16627,10207,5004,20654],"delegatorTokens":9999999900443}},{"ix":187,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":21,"t":126,"consumerPower":[25353,null,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":188,"action":{"kind":"Undelegate","val":0,"amt":3250},"partialState":{"h":22,"t":132,"tokens":[14377,11207,6004,21654],"delegation":[13377,10207,5004,20654],"delegatorTokens":9999999900443}},{"ix":189,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":22,"t":132,"consumerPower":[25353,null,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":190,"action":{"kind":"Delegate","val":1,"amt":3037},"partialState":{"h":22,"t":132,"tokens":[14377,14244,6004,21654],"delegation":[13377,13244,5004,20654],"delegatorTokens":9999999897406}},{"ix":191,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":192,"action":{"kind":"Deliver","chain":"provider","numPackets":4},"partialState":{"h":22,"t":132,"tokens":[14377,14244,6004,21654],"delegation":[13377,13244,5004,20654],"delegatorTokens":9999999897406,"jailed":[null,1000000000000017,1000000000000023,1000000000000011],"status":["bonded","unbonded","unbonded","unbonded"]}},{"ix":193,"action":{"kind":"Delegate","val":1,"amt":2885},"partialState":{"h":22,"t":132,"tokens":[14377,17129,6004,21654],"delegation":[13377,16129,5004,20654],"delegatorTokens":9999999894521}},{"ix":194,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":195,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":196,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":197,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":198,"action":{"kind":"Delegate","val":3,"amt":1173},"partialState":{"h":22,"t":132,"tokens":[14377,17129,6004,22827],"delegation":[13377,16129,5004,21827],"delegatorTokens":9999999893348}},{"ix":199,"action":{"kind":"Delegate","val":0,"amt":4299},"partialState":{"h":22,"t":132,"tokens":[18676,17129,6004,22827],"delegation":[17676,16129,5004,21827],"delegatorTokens":9999999889049}}],"events":["send_double_sign_slash_request","send_double_sign_slash_request","send_downtime_slash_request","insufficient_shares","send_downtime_slash_request","send_downtime_slash_request","insufficient_shares","insufficient_shares","receive_double_sign_slash_request","receive_double_sign_slash_request","more_than_one_third_val_power_change","receive_downtime_slash_request","jail","send_vsc_with_downtime_ack","insufficient_shares","receive_downtime_slash_request","jail","send_vsc_with_downtime_ack","receive_downtime_slash_ack","receive_downtime_slash_request","jail","send_vsc_with_downtime_ack","consumer_update_val","consumer_del_val","consumer_add_val","receive_downtime_slash_ack","send_vsc_without_downtime_ack","receive_downtime_slash_ack","consumer_add_val","consumer_del_val","consumer_update_val","send_vsc_without_downtime_ack","send_vsc_not_because_change","send_vsc_without_downtime_ack","send_vsc_not_because_change","send_vsc_without_downtime_ack","consumer_del_val","consumer_update_val","insufficient_shares","insufficient_shares","send_vsc_without_downtime_ack","some_undels_expired_but_not_completed","some_undels_expired_but_not_completed","consumer_update_val","insufficient_shares","consumer_send_maturation","consumer_send_maturation","consumer_send_maturation","send_vsc_without_downtime_ack","consumer_send_maturation","consumer_send_maturation","consumer_send_maturation","some_undels_expired_but_not_completed","send_vsc_without_downtime_ack","set_unval_hold_false","complete_undel_immediate","set_unval_hold_false","complete_undel_immediate","set_unval_hold_false","complete_undel_immediate","send_vsc_without_downtime_ack","complete_unval_in_endblock","complete_unval_in_endblock","complete_unval_in_endblock","send_vsc_without_downtime_ack","consumer_update_val","consumer_send_maturation","consumer_send_maturation"]},{"meta":{"commit":"7ffd0c04e4205cbc9caf212abfe6c59ee43153bf"},"constants":{"P":"provider","C":"consumer","UNBONDING_SECONDS_P":70,"UNBONDING_SECONDS_C":50,"TRUSTING_SECONDS":49,"NUM_VALIDATORS":4,"MAX_VALIDATORS":2,"SLASH_DOUBLESIGN":0,"SLASH_DOWNTIME":0,"JAIL_SECONDS":999999999999999,"BLOCK_SECONDS":6,"INITIAL_DELEGATOR_TOKENS":10000000000000,"DELEGATE_AMT_MIN":1000,"DELEGATE_AMT_MAX":5000,"UNDELEGATE_AMT_MIN":1000,"UNDELEGATE_AMT_MAX":5000,"ISDOWNTIME_PROBABILITY":0.5,"MAX_NUM_PACKETS_FOR_DELIVER":6},"actions":[{"ix":0,"action":{"kind":"Deliver","chain":"provider","numPackets":4},"partialState":{"h":1,"t":6,"tokens":[5000,4000,3000,2000],"delegation":[4000,3000,2000,1000],"delegatorTokens":10000000000000,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":1,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":2,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":3,"action":{"kind":"Undelegate","val":1,"amt":2586},"partialState":{"h":1,"t":6,"tokens":[5000,1414,3000,2000],"delegation":[4000,414,2000,1000],"delegatorTokens":10000000000000}},{"ix":4,"action":{"kind":"Delegate","val":2,"amt":3089},"partialState":{"h":1,"t":6,"tokens":[5000,1414,6089,2000],"delegation":[4000,414,5089,1000],"delegatorTokens":9999999996911}},{"ix":5,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":2,"t":12,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":6,"action":{"kind":"Deliver","chain":"consumer","numPackets":6},"partialState":{"h":2,"t":12,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":7,"action":{"kind":"Deliver","chain":"provider","numPackets":3},"partialState":{"h":1,"t":6,"tokens":[5000,1414,6089,2000],"delegation":[4000,414,5089,1000],"delegatorTokens":9999999996911,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":8,"action":{"kind":"Deliver","chain":"provider","numPackets":1},"partialState":{"h":1,"t":6,"tokens":[5000,1414,6089,2000],"delegation":[4000,414,5089,1000],"delegatorTokens":9999999996911,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":9,"action":{"kind":"Deliver","chain":"provider","numPackets":4},"partialState":{"h":1,"t":6,"tokens":[5000,1414,6089,2000],"delegation":[4000,414,5089,1000],"delegatorTokens":9999999996911,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":10,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":11,"action":{"kind":"Undelegate","val":2,"amt":4207},"partialState":{"h":1,"t":6,"tokens":[5000,1414,1882,2000],"delegation":[4000,414,882,1000],"delegatorTokens":9999999996911}},{"ix":12,"action":{"kind":"ConsumerSlash","val":2,"infractionHeight":1,"isDowntime":true},"partialState":{"h":2,"t":12,"outstandingDowntime":[false,false,true,false]}},{"ix":13,"action":{"kind":"Deliver","chain":"provider","numPackets":1},"partialState":{"h":1,"t":6,"tokens":[5000,1414,1882,2000],"delegation":[4000,414,882,1000],"delegatorTokens":9999999996911,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":14,"action":{"kind":"Undelegate","val":0,"amt":2235},"partialState":{"h":1,"t":6,"tokens":[2765,1414,1882,2000],"delegation":[1765,414,882,1000],"delegatorTokens":9999999996911}},{"ix":15,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":3,"t":18,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,false,true,false]}},{"ix":16,"action":{"kind":"ConsumerSlash","val":3,"infractionHeight":0,"isDowntime":true},"partialState":{"h":3,"t":18,"outstandingDowntime":[false,false,true,true]}},{"ix":17,"action":{"kind":"ConsumerSlash","val":3,"infractionHeight":0,"isDowntime":true},"partialState":{"h":3,"t":18,"outstandingDowntime":[false,false,true,true]}},{"ix":18,"action":{"kind":"Undelegate","val":2,"amt":4135},"partialState":{"h":1,"t":6,"tokens":[2765,1414,1882,2000],"delegation":[1765,414,882,1000],"delegatorTokens":9999999996911}},{"ix":19,"action":{"kind":"ConsumerSlash","val":2,"infractionHeight":0,"isDowntime":true},"partialState":{"h":3,"t":18,"outstandingDowntime":[false,false,true,true]}},{"ix":20,"action":{"kind":"Delegate","val":3,"amt":2712},"partialState":{"h":1,"t":6,"tokens":[2765,1414,1882,4712],"delegation":[1765,414,882,3712],"delegatorTokens":9999999994199}},{"ix":21,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":22,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":2,"t":12,"tokens":[2765,1414,1882,4712],"delegation":[1765,414,882,3712],"delegatorTokens":9999999994199,"jailed":[null,null,null,null],"status":["bonded","unbonding","unbonded","bonded"]}},{"ix":23,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":4,"t":24,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,false,true,true]}},{"ix":24,"action":{"kind":"Deliver","chain":"provider","numPackets":5},"partialState":{"h":2,"t":12,"tokens":[2765,1414,1882,4712],"delegation":[1765,414,882,3712],"delegatorTokens":9999999994199,"jailed":[null,null,null,null],"status":["bonded","unbonding","unbonded","bonded"]}},{"ix":25,"action":{"kind":"ConsumerSlash","val":0,"infractionHeight":2,"isDowntime":true},"partialState":{"h":4,"t":24,"outstandingDowntime":[true,false,true,true]}},{"ix":26,"action":{"kind":"Delegate","val":3,"amt":3121},"partialState":{"h":2,"t":12,"tokens":[2765,1414,1882,7833],"delegation":[1765,414,882,6833],"delegatorTokens":9999999991078}},{"ix":27,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":5,"t":30,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[true,false,true,true]}},{"ix":28,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":6,"t":36,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[true,false,true,true]}},{"ix":29,"action":{"kind":"Delegate","val":2,"amt":2935},"partialState":{"h":2,"t":12,"tokens":[2765,1414,4817,7833],"delegation":[1765,414,3817,6833],"delegatorTokens":9999999988143}},{"ix":30,"action":{"kind":"Undelegate","val":2,"amt":1330},"partialState":{"h":2,"t":12,"tokens":[2765,1414,3487,7833],"delegation":[1765,414,2487,6833],"delegatorTokens":9999999988143}},{"ix":31,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":3,"t":18,"tokens":[2765,1414,3487,7833],"delegation":[1765,414,2487,6833],"delegatorTokens":9999999988143,"jailed":[null,null,1000000000000011,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":32,"action":{"kind":"Undelegate","val":1,"amt":4656},"partialState":{"h":3,"t":18,"tokens":[2765,1414,3487,7833],"delegation":[1765,414,2487,6833],"delegatorTokens":9999999988143}},{"ix":33,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":34,"action":{"kind":"Undelegate","val":2,"amt":4246},"partialState":{"h":3,"t":18,"tokens":[2765,1414,3487,7833],"delegation":[1765,414,2487,6833],"delegatorTokens":9999999988143}},{"ix":35,"action":{"kind":"Delegate","val":0,"amt":4320},"partialState":{"h":3,"t":18,"tokens":[7085,1414,3487,7833],"delegation":[6085,414,2487,6833],"delegatorTokens":9999999983823}},{"ix":36,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":7,"t":42,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[true,false,true,true]}},{"ix":37,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":38,"action":{"kind":"Undelegate","val":3,"amt":3477},"partialState":{"h":3,"t":18,"tokens":[7085,1414,3487,4356],"delegation":[6085,414,2487,3356],"delegatorTokens":9999999983823}},{"ix":39,"action":{"kind":"Undelegate","val":3,"amt":2231},"partialState":{"h":3,"t":18,"tokens":[7085,1414,3487,2125],"delegation":[6085,414,2487,1125],"delegatorTokens":9999999983823}},{"ix":40,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":41,"action":{"kind":"Undelegate","val":1,"amt":2914},"partialState":{"h":3,"t":18,"tokens":[7085,1414,3487,2125],"delegation":[6085,414,2487,1125],"delegatorTokens":9999999983823}},{"ix":42,"action":{"kind":"Deliver","chain":"consumer","numPackets":5},"partialState":{"h":7,"t":42,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[true,false,true,true]}},{"ix":43,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":4,"t":24,"tokens":[7085,1414,3487,2125],"delegation":[6085,414,2487,1125],"delegatorTokens":9999999983823,"jailed":[null,null,1000000000000011,null],"status":["bonded","unbonding","unbonding","bonded"]}},{"ix":44,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":45,"action":{"kind":"Undelegate","val":0,"amt":2521},"partialState":{"h":4,"t":24,"tokens":[4564,1414,3487,2125],"delegation":[3564,414,2487,1125],"delegatorTokens":9999999983823}},{"ix":46,"action":{"kind":"Undelegate","val":3,"amt":2931},"partialState":{"h":4,"t":24,"tokens":[4564,1414,3487,2125],"delegation":[3564,414,2487,1125],"delegatorTokens":9999999983823}},{"ix":47,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":5,"t":30,"tokens":[4564,1414,3487,2125],"delegation":[3564,414,2487,1125],"delegatorTokens":9999999983823,"jailed":[null,null,1000000000000011,null],"status":["bonded","unbonding","unbonding","bonded"]}},{"ix":48,"action":{"kind":"Delegate","val":1,"amt":3956},"partialState":{"h":5,"t":30,"tokens":[4564,5370,3487,2125],"delegation":[3564,4370,2487,1125],"delegatorTokens":9999999979867}},{"ix":49,"action":{"kind":"Undelegate","val":2,"amt":3883},"partialState":{"h":5,"t":30,"tokens":[4564,5370,3487,2125],"delegation":[3564,4370,2487,1125],"delegatorTokens":9999999979867}},{"ix":50,"action":{"kind":"Deliver","chain":"provider","numPackets":5},"partialState":{"h":5,"t":30,"tokens":[4564,5370,3487,2125],"delegation":[3564,4370,2487,1125],"delegatorTokens":9999999979867,"jailed":[null,null,1000000000000011,null],"status":["bonded","unbonding","unbonding","bonded"]}},{"ix":51,"action":{"kind":"Delegate","val":3,"amt":1285},"partialState":{"h":5,"t":30,"tokens":[4564,5370,3487,3410],"delegation":[3564,4370,2487,2410],"delegatorTokens":9999999978582}},{"ix":52,"action":{"kind":"Delegate","val":3,"amt":1985},"partialState":{"h":5,"t":30,"tokens":[4564,5370,3487,5395],"delegation":[3564,4370,2487,4395],"delegatorTokens":9999999976597}},{"ix":53,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":54,"action":{"kind":"Delegate","val":0,"amt":4194},"partialState":{"h":5,"t":30,"tokens":[8758,5370,3487,5395],"delegation":[7758,4370,2487,4395],"delegatorTokens":9999999972403}},{"ix":55,"action":{"kind":"Delegate","val":0,"amt":1324},"partialState":{"h":5,"t":30,"tokens":[10082,5370,3487,5395],"delegation":[9082,4370,2487,4395],"delegatorTokens":9999999971079}},{"ix":56,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":57,"action":{"kind":"Delegate","val":1,"amt":2008},"partialState":{"h":5,"t":30,"tokens":[10082,7378,3487,5395],"delegation":[9082,6378,2487,4395],"delegatorTokens":9999999969071}},{"ix":58,"action":{"kind":"Deliver","chain":"provider","numPackets":2},"partialState":{"h":5,"t":30,"tokens":[10082,7378,3487,5395],"delegation":[9082,6378,2487,4395],"delegatorTokens":9999999969071,"jailed":[null,null,1000000000000011,null],"status":["bonded","unbonding","unbonding","bonded"]}},{"ix":59,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":6,"t":36,"tokens":[10082,7378,3487,5395],"delegation":[9082,6378,2487,4395],"delegatorTokens":9999999969071,"jailed":[1000000000000029,null,1000000000000011,1000000000000029],"status":["bonded","bonded","unbonding","unbonding"]}},{"ix":60,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":7,"t":42,"tokens":[10082,7378,3487,5395],"delegation":[9082,6378,2487,4395],"delegatorTokens":9999999969071,"jailed":[1000000000000029,null,1000000000000011,1000000000000029],"status":["unbonding","bonded","unbonding","unbonding"]}},{"ix":61,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":8,"t":48,"consumerPower":[2765,null,null,4712],"outstandingDowntime":[true,false,true,true]}},{"ix":62,"action":{"kind":"Deliver","chain":"consumer","numPackets":1},"partialState":{"h":8,"t":48,"consumerPower":[2765,null,null,4712],"outstandingDowntime":[true,false,false,true]}},{"ix":63,"action":{"kind":"Deliver","chain":"consumer","numPackets":6},"partialState":{"h":8,"t":48,"consumerPower":[2765,null,null,4712],"outstandingDowntime":[false,false,false,false]}},{"ix":64,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":65,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":66,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":67,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":68,"action":{"kind":"Delegate","val":2,"amt":2150},"partialState":{"h":7,"t":42,"tokens":[10082,7378,5637,5395],"delegation":[9082,6378,4637,4395],"delegatorTokens":9999999966921}},{"ix":69,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":8,"t":48,"tokens":[10082,7378,5637,5395],"delegation":[9082,6378,4637,4395],"delegatorTokens":9999999966921,"jailed":[1000000000000029,null,1000000000000011,1000000000000029],"status":["unbonding","bonded","unbonding","unbonding"]}},{"ix":70,"action":{"kind":"Delegate","val":1,"amt":2380},"partialState":{"h":8,"t":48,"tokens":[10082,9758,5637,5395],"delegation":[9082,8758,4637,4395],"delegatorTokens":9999999964541}},{"ix":71,"action":{"kind":"Undelegate","val":3,"amt":1267},"partialState":{"h":8,"t":48,"tokens":[10082,9758,5637,4128],"delegation":[9082,8758,4637,3128],"delegatorTokens":9999999964541}},{"ix":72,"action":{"kind":"Undelegate","val":1,"amt":2821},"partialState":{"h":8,"t":48,"tokens":[10082,6937,5637,4128],"delegation":[9082,5937,4637,3128],"delegatorTokens":9999999964541}},{"ix":73,"action":{"kind":"Undelegate","val":0,"amt":2671},"partialState":{"h":8,"t":48,"tokens":[7411,6937,5637,4128],"delegation":[6411,5937,4637,3128],"delegatorTokens":9999999964541}},{"ix":74,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":9,"t":54,"consumerPower":[10082,7378,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":75,"action":{"kind":"Delegate","val":1,"amt":1806},"partialState":{"h":8,"t":48,"tokens":[7411,8743,5637,4128],"delegation":[6411,7743,4637,3128],"delegatorTokens":9999999962735}},{"ix":76,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":9,"t":54,"tokens":[7411,8743,5637,4128],"delegation":[6411,7743,4637,3128],"delegatorTokens":9999999962735,"jailed":[1000000000000029,null,1000000000000011,1000000000000029],"status":["unbonding","bonded","unbonding","unbonding"]}},{"ix":77,"action":{"kind":"Undelegate","val":0,"amt":4323},"partialState":{"h":9,"t":54,"tokens":[3088,8743,5637,4128],"delegation":[2088,7743,4637,3128],"delegatorTokens":9999999962735}},{"ix":78,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":10,"t":60,"consumerPower":[10082,7378,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":79,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":10,"t":60,"tokens":[3088,8743,5637,4128],"delegation":[2088,7743,4637,3128],"delegatorTokens":9999999962735,"jailed":[1000000000000029,null,1000000000000011,1000000000000029],"status":["unbonding","bonded","unbonding","unbonding"]}},{"ix":80,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":81,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":82,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":11,"t":66,"consumerPower":[10082,7378,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":83,"action":{"kind":"Undelegate","val":3,"amt":1354},"partialState":{"h":10,"t":60,"tokens":[3088,8743,5637,2774],"delegation":[2088,7743,4637,1774],"delegatorTokens":9999999962735}},{"ix":84,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":11,"t":66,"tokens":[3088,8743,5637,2774],"delegation":[2088,7743,4637,1774],"delegatorTokens":9999999962735,"jailed":[1000000000000029,null,1000000000000011,1000000000000029],"status":["unbonding","bonded","unbonding","unbonding"]}},{"ix":85,"action":{"kind":"Deliver","chain":"provider","numPackets":1},"partialState":{"h":11,"t":66,"tokens":[3088,8743,5637,2774],"delegation":[2088,7743,4637,1774],"delegatorTokens":9999999962735,"jailed":[1000000000000029,null,1000000000000011,1000000000000029],"status":["unbonding","bonded","unbonding","unbonding"]}},{"ix":86,"action":{"kind":"Delegate","val":2,"amt":2489},"partialState":{"h":11,"t":66,"tokens":[3088,8743,8126,2774],"delegation":[2088,7743,7126,1774],"delegatorTokens":9999999960246}},{"ix":87,"action":{"kind":"Delegate","val":0,"amt":1318},"partialState":{"h":11,"t":66,"tokens":[4406,8743,8126,2774],"delegation":[3406,7743,7126,1774],"delegatorTokens":9999999958928}},{"ix":88,"action":{"kind":"Deliver","chain":"consumer","numPackets":6},"partialState":{"h":11,"t":66,"consumerPower":[10082,7378,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":89,"action":{"kind":"Undelegate","val":1,"amt":2522},"partialState":{"h":11,"t":66,"tokens":[4406,6221,8126,2774],"delegation":[3406,5221,7126,1774],"delegatorTokens":9999999958928}},{"ix":90,"action":{"kind":"Delegate","val":3,"amt":2400},"partialState":{"h":11,"t":66,"tokens":[4406,6221,8126,5174],"delegation":[3406,5221,7126,4174],"delegatorTokens":9999999956528}},{"ix":91,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":92,"action":{"kind":"Undelegate","val":1,"amt":2421},"partialState":{"h":11,"t":66,"tokens":[4406,3800,8126,5174],"delegation":[3406,2800,7126,4174],"delegatorTokens":9999999956528}},{"ix":93,"action":{"kind":"Deliver","chain":"provider","numPackets":6},"partialState":{"h":11,"t":66,"tokens":[4406,3800,8126,5174],"delegation":[3406,2800,7126,4174],"delegatorTokens":9999999956528,"jailed":[1000000000000029,null,1000000000000011,1000000000000029],"status":["unbonding","bonded","unbonding","unbonding"]}},{"ix":94,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":95,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":12,"t":72,"consumerPower":[null,8743,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":96,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":13,"t":78,"consumerPower":[null,8743,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":97,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":12,"t":72,"tokens":[4406,3800,8126,5174],"delegation":[3406,2800,7126,4174],"delegatorTokens":9999999956528,"jailed":[1000000000000029,null,1000000000000011,1000000000000029],"status":["unbonding","bonded","unbonding","unbonding"]}},{"ix":98,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":14,"t":84,"consumerPower":[null,8743,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":99,"action":{"kind":"Undelegate","val":3,"amt":2019},"partialState":{"h":12,"t":72,"tokens":[4406,3800,8126,3155],"delegation":[3406,2800,7126,2155],"delegatorTokens":9999999956528}},{"ix":100,"action":{"kind":"Delegate","val":2,"amt":3769},"partialState":{"h":12,"t":72,"tokens":[4406,3800,11895,3155],"delegation":[3406,2800,10895,2155],"delegatorTokens":9999999952759}},{"ix":101,"action":{"kind":"Deliver","chain":"provider","numPackets":1},"partialState":{"h":12,"t":72,"tokens":[4406,3800,11895,3155],"delegation":[3406,2800,10895,2155],"delegatorTokens":9999999952759,"jailed":[1000000000000029,null,1000000000000011,1000000000000029],"status":["unbonding","bonded","unbonding","unbonding"]}},{"ix":102,"action":{"kind":"Deliver","chain":"provider","numPackets":6},"partialState":{"h":12,"t":72,"tokens":[4406,3800,11895,3155],"delegation":[3406,2800,10895,2155],"delegatorTokens":9999999952759,"jailed":[1000000000000029,null,1000000000000011,1000000000000029],"status":["unbonding","bonded","unbonding","unbonding"]}},{"ix":103,"action":{"kind":"Deliver","chain":"consumer","numPackets":5},"partialState":{"h":14,"t":84,"consumerPower":[null,8743,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":104,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":15,"t":90,"consumerPower":[null,8743,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":105,"action":{"kind":"Delegate","val":2,"amt":1567},"partialState":{"h":12,"t":72,"tokens":[4406,3800,13462,3155],"delegation":[3406,2800,12462,2155],"delegatorTokens":9999999951192}},{"ix":106,"action":{"kind":"Delegate","val":3,"amt":2080},"partialState":{"h":12,"t":72,"tokens":[4406,3800,13462,5235],"delegation":[3406,2800,12462,4235],"delegatorTokens":9999999949112}},{"ix":107,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":108,"action":{"kind":"Delegate","val":3,"amt":2164},"partialState":{"h":12,"t":72,"tokens":[4406,3800,13462,7399],"delegation":[3406,2800,12462,6399],"delegatorTokens":9999999946948}},{"ix":109,"action":{"kind":"Deliver","chain":"provider","numPackets":1},"partialState":{"h":12,"t":72,"tokens":[4406,3800,13462,7399],"delegation":[3406,2800,12462,6399],"delegatorTokens":9999999946948,"jailed":[1000000000000029,null,1000000000000011,1000000000000029],"status":["unbonding","bonded","unbonding","unbonding"]}},{"ix":110,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":16,"t":96,"consumerPower":[null,8743,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":111,"action":{"kind":"Deliver","chain":"consumer","numPackets":4},"partialState":{"h":16,"t":96,"consumerPower":[null,8743,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":112,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":113,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":13,"t":78,"tokens":[4406,3800,13462,7399],"delegation":[3406,2800,12462,6399],"delegatorTokens":9999999946948,"jailed":[1000000000000029,null,1000000000000011,1000000000000029],"status":["unbonding","bonded","unbonding","unbonding"]}},{"ix":114,"action":{"kind":"Delegate","val":1,"amt":1935},"partialState":{"h":13,"t":78,"tokens":[4406,5735,13462,7399],"delegation":[3406,4735,12462,6399],"delegatorTokens":9999999945013}},{"ix":115,"action":{"kind":"Undelegate","val":0,"amt":2085},"partialState":{"h":13,"t":78,"tokens":[2321,5735,13462,7399],"delegation":[1321,4735,12462,6399],"delegatorTokens":9999999945013}},{"ix":116,"action":{"kind":"Deliver","chain":"consumer","numPackets":6},"partialState":{"h":16,"t":96,"consumerPower":[null,8743,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":117,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":118,"action":{"kind":"Delegate","val":3,"amt":1723},"partialState":{"h":13,"t":78,"tokens":[2321,5735,13462,9122],"delegation":[1321,4735,12462,8122],"delegatorTokens":9999999943290}},{"ix":119,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":120,"action":{"kind":"Delegate","val":1,"amt":2250},"partialState":{"h":13,"t":78,"tokens":[2321,7985,13462,9122],"delegation":[1321,6985,12462,8122],"delegatorTokens":9999999941040}},{"ix":121,"action":{"kind":"Deliver","chain":"provider","numPackets":6},"partialState":{"h":13,"t":78,"tokens":[2321,7985,13462,9122],"delegation":[1321,6985,12462,8122],"delegatorTokens":9999999941040,"jailed":[1000000000000029,null,1000000000000011,1000000000000029],"status":["unbonding","bonded","unbonding","unbonding"]}},{"ix":122,"action":{"kind":"Deliver","chain":"consumer","numPackets":6},"partialState":{"h":16,"t":96,"consumerPower":[null,8743,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":123,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":124,"action":{"kind":"Undelegate","val":3,"amt":1532},"partialState":{"h":13,"t":78,"tokens":[2321,7985,13462,7590],"delegation":[1321,6985,12462,6590],"delegatorTokens":9999999941040}},{"ix":125,"action":{"kind":"Deliver","chain":"provider","numPackets":3},"partialState":{"h":13,"t":78,"tokens":[2321,7985,13462,7590],"delegation":[1321,6985,12462,6590],"delegatorTokens":9999999941040,"jailed":[1000000000000029,null,1000000000000011,1000000000000029],"status":["unbonding","bonded","unbonding","unbonding"]}},{"ix":126,"action":{"kind":"Deliver","chain":"provider","numPackets":6},"partialState":{"h":13,"t":78,"tokens":[2321,7985,13462,7590],"delegation":[1321,6985,12462,6590],"delegatorTokens":9999999941040,"jailed":[1000000000000029,null,1000000000000011,1000000000000029],"status":["unbonding","bonded","unbonding","unbonding"]}},{"ix":127,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":128,"action":{"kind":"Delegate","val":3,"amt":3313},"partialState":{"h":13,"t":78,"tokens":[2321,7985,13462,10903],"delegation":[1321,6985,12462,9903],"delegatorTokens":9999999937727}},{"ix":129,"action":{"kind":"Deliver","chain":"consumer","numPackets":4},"partialState":{"h":16,"t":96,"consumerPower":[null,8743,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":130,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":131,"action":{"kind":"Undelegate","val":1,"amt":2691},"partialState":{"h":13,"t":78,"tokens":[2321,5294,13462,10903],"delegation":[1321,4294,12462,9903],"delegatorTokens":9999999937727}},{"ix":132,"action":{"kind":"Delegate","val":0,"amt":1657},"partialState":{"h":13,"t":78,"tokens":[3978,5294,13462,10903],"delegation":[2978,4294,12462,9903],"delegatorTokens":9999999936070}},{"ix":133,"action":{"kind":"Undelegate","val":2,"amt":3424},"partialState":{"h":13,"t":78,"tokens":[3978,5294,10038,10903],"delegation":[2978,4294,9038,9903],"delegatorTokens":9999999936070}},{"ix":134,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":135,"action":{"kind":"Delegate","val":3,"amt":1619},"partialState":{"h":13,"t":78,"tokens":[3978,5294,10038,12522],"delegation":[2978,4294,9038,11522],"delegatorTokens":9999999934451}},{"ix":136,"action":{"kind":"Undelegate","val":1,"amt":3572},"partialState":{"h":13,"t":78,"tokens":[3978,1722,10038,12522],"delegation":[2978,722,9038,11522],"delegatorTokens":9999999934451}},{"ix":137,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":138,"action":{"kind":"Delegate","val":2,"amt":1534},"partialState":{"h":13,"t":78,"tokens":[3978,1722,11572,12522],"delegation":[2978,722,10572,11522],"delegatorTokens":9999999932917}},{"ix":139,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":140,"action":{"kind":"Deliver","chain":"provider","numPackets":1},"partialState":{"h":13,"t":78,"tokens":[3978,1722,11572,12522],"delegation":[2978,722,10572,11522],"delegatorTokens":9999999932917,"jailed":[1000000000000029,null,1000000000000011,1000000000000029],"status":["unbonding","bonded","unbonding","unbonding"]}},{"ix":141,"action":{"kind":"Deliver","chain":"provider","numPackets":6},"partialState":{"h":13,"t":78,"tokens":[3978,1722,11572,12522],"delegation":[2978,722,10572,11522],"delegatorTokens":9999999932917,"jailed":[1000000000000029,null,1000000000000011,1000000000000029],"status":["unbonding","bonded","unbonding","unbonding"]}},{"ix":142,"action":{"kind":"Delegate","val":0,"amt":1264},"partialState":{"h":13,"t":78,"tokens":[5242,1722,11572,12522],"delegation":[4242,722,10572,11522],"delegatorTokens":9999999931653}},{"ix":143,"action":{"kind":"Undelegate","val":3,"amt":4988},"partialState":{"h":13,"t":78,"tokens":[5242,1722,11572,7534],"delegation":[4242,722,10572,6534],"delegatorTokens":9999999931653}},{"ix":144,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":145,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":17,"t":102,"consumerPower":[null,3800,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":146,"action":{"kind":"Deliver","chain":"consumer","numPackets":1},"partialState":{"h":17,"t":102,"consumerPower":[null,3800,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":147,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":18,"t":108,"consumerPower":[null,3800,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":148,"action":{"kind":"Undelegate","val":0,"amt":3947},"partialState":{"h":13,"t":78,"tokens":[1295,1722,11572,7534],"delegation":[295,722,10572,6534],"delegatorTokens":9999999931653}},{"ix":149,"action":{"kind":"Delegate","val":3,"amt":3814},"partialState":{"h":13,"t":78,"tokens":[1295,1722,11572,11348],"delegation":[295,722,10572,10348],"delegatorTokens":9999999927839}},{"ix":150,"action":{"kind":"Undelegate","val":3,"amt":4586},"partialState":{"h":13,"t":78,"tokens":[1295,1722,11572,6762],"delegation":[295,722,10572,5762],"delegatorTokens":9999999927839}},{"ix":151,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":14,"t":84,"tokens":[1295,1722,11572,6762],"delegation":[295,722,10572,5762],"delegatorTokens":9999999927839,"jailed":[1000000000000029,null,1000000000000011,1000000000000029],"status":["unbonding","bonded","unbonding","unbonding"]}},{"ix":152,"action":{"kind":"Deliver","chain":"provider","numPackets":1},"partialState":{"h":14,"t":84,"tokens":[1295,1722,11572,6762],"delegation":[295,722,10572,5762],"delegatorTokens":9999999927839,"jailed":[1000000000000029,null,1000000000000011,1000000000000029],"status":["unbonding","bonded","unbonding","unbonding"]}},{"ix":153,"action":{"kind":"Delegate","val":3,"amt":4942},"partialState":{"h":14,"t":84,"tokens":[1295,1722,11572,11704],"delegation":[295,722,10572,10704],"delegatorTokens":9999999922897}},{"ix":154,"action":{"kind":"Undelegate","val":3,"amt":1594},"partialState":{"h":14,"t":84,"tokens":[1295,1722,11572,10110],"delegation":[295,722,10572,9110],"delegatorTokens":9999999922897}},{"ix":155,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":15,"t":90,"tokens":[1295,1722,11572,10110],"delegation":[295,722,10572,9110],"delegatorTokens":9999999931925,"jailed":[1000000000000029,null,1000000000000011,1000000000000029],"status":["unbonding","bonded","unbonding","unbonding"]}},{"ix":156,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":19,"t":114,"consumerPower":[null,3800,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":157,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":158,"action":{"kind":"Delegate","val":2,"amt":4881},"partialState":{"h":15,"t":90,"tokens":[1295,1722,16453,10110],"delegation":[295,722,15453,9110],"delegatorTokens":9999999927044}},{"ix":159,"action":{"kind":"Deliver","chain":"consumer","numPackets":3},"partialState":{"h":19,"t":114,"consumerPower":[null,3800,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":160,"action":{"kind":"Undelegate","val":1,"amt":1802},"partialState":{"h":15,"t":90,"tokens":[1295,1722,16453,10110],"delegation":[295,722,15453,9110],"delegatorTokens":9999999927044}},{"ix":161,"action":{"kind":"Undelegate","val":2,"amt":4527},"partialState":{"h":15,"t":90,"tokens":[1295,1722,11926,10110],"delegation":[295,722,10926,9110],"delegatorTokens":9999999927044}},{"ix":162,"action":{"kind":"Undelegate","val":1,"amt":4769},"partialState":{"h":15,"t":90,"tokens":[1295,1722,11926,10110],"delegation":[295,722,10926,9110],"delegatorTokens":9999999927044}},{"ix":163,"action":{"kind":"Deliver","chain":"provider","numPackets":3},"partialState":{"h":15,"t":90,"tokens":[1295,1722,11926,10110],"delegation":[295,722,10926,9110],"delegatorTokens":9999999927044,"jailed":[1000000000000029,null,1000000000000011,1000000000000029],"status":["unbonding","bonded","unbonding","unbonding"]}},{"ix":164,"action":{"kind":"Deliver","chain":"consumer","numPackets":1},"partialState":{"h":19,"t":114,"consumerPower":[null,3800,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":165,"action":{"kind":"Deliver","chain":"provider","numPackets":4},"partialState":{"h":15,"t":90,"tokens":[1295,1722,11926,10110],"delegation":[295,722,10926,9110],"delegatorTokens":9999999927044,"jailed":[1000000000000029,null,1000000000000011,1000000000000029],"status":["unbonding","bonded","unbonding","unbonding"]}},{"ix":166,"action":{"kind":"Delegate","val":0,"amt":3546},"partialState":{"h":15,"t":90,"tokens":[4841,1722,11926,10110],"delegation":[3841,722,10926,9110],"delegatorTokens":9999999923498}},{"ix":167,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":20,"t":120,"consumerPower":[null,1722,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":168,"action":{"kind":"Deliver","chain":"consumer","numPackets":5},"partialState":{"h":20,"t":120,"consumerPower":[null,1722,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":169,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":21,"t":126,"consumerPower":[null,1722,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":170,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":171,"action":{"kind":"Delegate","val":3,"amt":2098},"partialState":{"h":15,"t":90,"tokens":[4841,1722,11926,12208],"delegation":[3841,722,10926,11208],"delegatorTokens":9999999921400}},{"ix":172,"action":{"kind":"Delegate","val":1,"amt":1515},"partialState":{"h":15,"t":90,"tokens":[4841,3237,11926,12208],"delegation":[3841,2237,10926,11208],"delegatorTokens":9999999919885}},{"ix":173,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":16,"t":96,"tokens":[4841,3237,11926,12208],"delegation":[3841,2237,10926,11208],"delegatorTokens":9999999926923,"jailed":[1000000000000029,null,1000000000000011,1000000000000029],"status":["unbonding","bonded","unbonding","unbonding"]}},{"ix":174,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":175,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":176,"action":{"kind":"Deliver","chain":"provider","numPackets":3},"partialState":{"h":16,"t":96,"tokens":[4841,3237,11926,12208],"delegation":[3841,2237,10926,11208],"delegatorTokens":9999999926923,"jailed":[1000000000000029,null,1000000000000011,1000000000000029],"status":["unbonding","bonded","unbonding","unbonding"]}},{"ix":177,"action":{"kind":"Undelegate","val":3,"amt":3534},"partialState":{"h":16,"t":96,"tokens":[4841,3237,11926,8674],"delegation":[3841,2237,10926,7674],"delegatorTokens":9999999926923}},{"ix":178,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":22,"t":132,"consumerPower":[null,1722,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":179,"action":{"kind":"Deliver","chain":"provider","numPackets":2},"partialState":{"h":16,"t":96,"tokens":[4841,3237,11926,8674],"delegation":[3841,2237,10926,7674],"delegatorTokens":9999999926923,"jailed":[1000000000000029,null,1000000000000011,1000000000000029],"status":["unbonding","bonded","unbonding","unbonding"]}},{"ix":180,"action":{"kind":"Deliver","chain":"consumer","numPackets":5},"partialState":{"h":22,"t":132,"consumerPower":[null,1722,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":181,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":17,"t":102,"tokens":[4841,3237,11926,8674],"delegation":[3841,2237,10926,7674],"delegatorTokens":9999999929444,"jailed":[1000000000000029,null,1000000000000011,1000000000000029],"status":["unbonding","bonded","unbonded","unbonding"]}},{"ix":182,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":23,"t":138,"consumerPower":[null,1722,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":183,"action":{"kind":"Deliver","chain":"provider","numPackets":1},"partialState":{"h":17,"t":102,"tokens":[4841,3237,11926,8674],"delegation":[3841,2237,10926,7674],"delegatorTokens":9999999929444,"jailed":[1000000000000029,null,1000000000000011,1000000000000029],"status":["unbonding","bonded","unbonded","unbonding"]}},{"ix":184,"action":{"kind":"Delegate","val":2,"amt":2168},"partialState":{"h":17,"t":102,"tokens":[4841,3237,14094,8674],"delegation":[3841,2237,13094,7674],"delegatorTokens":9999999927276}},{"ix":185,"action":{"kind":"Delegate","val":1,"amt":3319},"partialState":{"h":17,"t":102,"tokens":[4841,6556,14094,8674],"delegation":[3841,5556,13094,7674],"delegatorTokens":9999999923957}},{"ix":186,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":187,"action":{"kind":"Delegate","val":1,"amt":3555},"partialState":{"h":17,"t":102,"tokens":[4841,10111,14094,8674],"delegation":[3841,9111,13094,7674],"delegatorTokens":9999999920402}},{"ix":188,"action":{"kind":"Delegate","val":0,"amt":1188},"partialState":{"h":17,"t":102,"tokens":[6029,10111,14094,8674],"delegation":[5029,9111,13094,7674],"delegatorTokens":9999999919214}},{"ix":189,"action":{"kind":"Undelegate","val":3,"amt":3348},"partialState":{"h":17,"t":102,"tokens":[6029,10111,14094,5326],"delegation":[5029,9111,13094,4326],"delegatorTokens":9999999919214}},{"ix":190,"action":{"kind":"Delegate","val":0,"amt":1978},"partialState":{"h":17,"t":102,"tokens":[8007,10111,14094,5326],"delegation":[7007,9111,13094,4326],"delegatorTokens":9999999917236}},{"ix":191,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":18,"t":108,"tokens":[8007,10111,14094,5326],"delegation":[7007,9111,13094,4326],"delegatorTokens":9999999917236,"jailed":[1000000000000029,null,1000000000000011,1000000000000029],"status":["unbonding","bonded","unbonded","unbonded"]}},{"ix":192,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":193,"action":{"kind":"Delegate","val":1,"amt":3630},"partialState":{"h":18,"t":108,"tokens":[8007,13741,14094,5326],"delegation":[7007,12741,13094,4326],"delegatorTokens":9999999913606}},{"ix":194,"action":{"kind":"Undelegate","val":0,"amt":1856},"partialState":{"h":18,"t":108,"tokens":[6151,13741,14094,5326],"delegation":[5151,12741,13094,4326],"delegatorTokens":9999999913606}},{"ix":195,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":196,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":19,"t":114,"tokens":[6151,13741,14094,5326],"delegation":[5151,12741,13094,4326],"delegatorTokens":9999999913606,"jailed":[1000000000000029,null,1000000000000011,1000000000000029],"status":["unbonded","bonded","unbonded","unbonded"]}},{"ix":197,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":20,"t":120,"tokens":[6151,13741,14094,5326],"delegation":[5151,12741,13094,4326],"delegatorTokens":9999999913606,"jailed":[1000000000000029,null,1000000000000011,1000000000000029],"status":["unbonded","bonded","unbonded","unbonded"]}},{"ix":198,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":199,"action":{"kind":"Undelegate","val":2,"amt":1684},"partialState":{"h":20,"t":120,"tokens":[6151,13741,12410,5326],"delegation":[5151,12741,11410,4326],"delegatorTokens":9999999913606}}],"events":["send_downtime_slash_request","send_downtime_slash_request","downtime_slash_request_outstanding","insufficient_shares","downtime_slash_request_outstanding","more_than_one_third_val_power_change","send_vsc_without_downtime_ack","send_downtime_slash_request","receive_downtime_slash_request","jail","send_vsc_with_downtime_ack","insufficient_shares","insufficient_shares","insufficient_shares","more_than_one_third_val_power_change","rebond_unval","send_vsc_without_downtime_ack","insufficient_shares","send_vsc_without_downtime_ack","insufficient_shares","more_than_one_third_val_power_change","rebond_unval","receive_downtime_slash_request","jail","receive_downtime_slash_request","jail","send_vsc_with_downtime_ack","send_vsc_without_downtime_ack","consumer_update_val","consumer_del_val","consumer_add_val","receive_downtime_slash_ack","receive_downtime_slash_ack","receive_downtime_slash_ack","consumer_update_val","consumer_del_val","consumer_del_val","consumer_add_val","send_vsc_without_downtime_ack","send_vsc_not_because_change","send_vsc_without_downtime_ack","send_vsc_not_because_change","send_vsc_without_downtime_ack","consumer_del_val","consumer_update_val","send_vsc_without_downtime_ack","send_vsc_not_because_change","send_vsc_without_downtime_ack","consumer_send_maturation","consumer_update_val","consumer_send_maturation","consumer_send_maturation","consumer_send_maturation","consumer_send_maturation","some_undels_expired_but_not_completed","send_vsc_without_downtime_ack","some_undels_expired_but_not_completed","complete_undel_immediate","complete_undel_immediate","complete_undel_immediate","send_vsc_not_because_change","send_vsc_without_downtime_ack","insufficient_shares","insufficient_shares","consumer_update_val","consumer_send_maturation","consumer_send_maturation","consumer_send_maturation","some_undels_expired_but_not_completed","complete_undel_immediate","complete_undel_immediate","complete_undel_immediate","set_unval_hold_false","set_undel_hold_false","set_unval_hold_false","send_vsc_without_downtime_ack","complete_unval_in_endblock","complete_undel_in_endblock","set_unval_hold_false","set_undel_hold_false","set_undel_hold_false","set_undel_hold_false","send_vsc_not_because_change","send_vsc_without_downtime_ack","complete_unval_in_endblock","set_undel_hold_false","send_vsc_without_downtime_ack","complete_unval_in_endblock","send_vsc_without_downtime_ack"]},{"meta":{"commit":"7ffd0c04e4205cbc9caf212abfe6c59ee43153bf"},"constants":{"P":"provider","C":"consumer","UNBONDING_SECONDS_P":70,"UNBONDING_SECONDS_C":50,"TRUSTING_SECONDS":49,"NUM_VALIDATORS":4,"MAX_VALIDATORS":2,"SLASH_DOUBLESIGN":0,"SLASH_DOWNTIME":0,"JAIL_SECONDS":999999999999999,"BLOCK_SECONDS":6,"INITIAL_DELEGATOR_TOKENS":10000000000000,"DELEGATE_AMT_MIN":1000,"DELEGATE_AMT_MAX":5000,"UNDELEGATE_AMT_MIN":1000,"UNDELEGATE_AMT_MAX":5000,"ISDOWNTIME_PROBABILITY":0.5,"MAX_NUM_PACKETS_FOR_DELIVER":6},"actions":[{"ix":0,"action":{"kind":"Undelegate","val":0,"amt":4581},"partialState":{"h":1,"t":6,"tokens":[5000,4000,3000,2000],"delegation":[4000,3000,2000,1000],"delegatorTokens":10000000000000}},{"ix":1,"action":{"kind":"Deliver","chain":"provider","numPackets":6},"partialState":{"h":1,"t":6,"tokens":[5000,4000,3000,2000],"delegation":[4000,3000,2000,1000],"delegatorTokens":10000000000000,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":2,"action":{"kind":"Undelegate","val":3,"amt":2483},"partialState":{"h":1,"t":6,"tokens":[5000,4000,3000,2000],"delegation":[4000,3000,2000,1000],"delegatorTokens":10000000000000}},{"ix":3,"action":{"kind":"Undelegate","val":2,"amt":4953},"partialState":{"h":1,"t":6,"tokens":[5000,4000,3000,2000],"delegation":[4000,3000,2000,1000],"delegatorTokens":10000000000000}},{"ix":4,"action":{"kind":"ConsumerSlash","val":0,"infractionHeight":0,"isDowntime":false},"partialState":{"h":1,"t":6,"outstandingDowntime":[false,false,false,false]}},{"ix":5,"action":{"kind":"Undelegate","val":3,"amt":2534},"partialState":{"h":1,"t":6,"tokens":[5000,4000,3000,2000],"delegation":[4000,3000,2000,1000],"delegatorTokens":10000000000000}},{"ix":6,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":2,"t":12,"tokens":[5000,4000,3000,2000],"delegation":[4000,3000,2000,1000],"delegatorTokens":10000000000000,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":7,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":3,"t":18,"tokens":[5000,4000,3000,2000],"delegation":[4000,3000,2000,1000],"delegatorTokens":10000000000000,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":8,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":4,"t":24,"tokens":[5000,4000,3000,2000],"delegation":[4000,3000,2000,1000],"delegatorTokens":10000000000000,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":9,"action":{"kind":"Undelegate","val":0,"amt":4651},"partialState":{"h":4,"t":24,"tokens":[5000,4000,3000,2000],"delegation":[4000,3000,2000,1000],"delegatorTokens":10000000000000}},{"ix":10,"action":{"kind":"Undelegate","val":0,"amt":4566},"partialState":{"h":4,"t":24,"tokens":[5000,4000,3000,2000],"delegation":[4000,3000,2000,1000],"delegatorTokens":10000000000000}},{"ix":11,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":12,"action":{"kind":"Undelegate","val":1,"amt":4850},"partialState":{"h":4,"t":24,"tokens":[5000,4000,3000,2000],"delegation":[4000,3000,2000,1000],"delegatorTokens":10000000000000}},{"ix":13,"action":{"kind":"Delegate","val":1,"amt":3522},"partialState":{"h":4,"t":24,"tokens":[5000,7522,3000,2000],"delegation":[4000,6522,2000,1000],"delegatorTokens":9999999996478}},{"ix":14,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":2,"t":12,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":15,"action":{"kind":"Deliver","chain":"provider","numPackets":1},"partialState":{"h":4,"t":24,"tokens":[5000,7522,3000,2000],"delegation":[4000,6522,2000,1000],"delegatorTokens":9999999996478,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":16,"action":{"kind":"Deliver","chain":"provider","numPackets":4},"partialState":{"h":4,"t":24,"tokens":[5000,7522,3000,2000],"delegation":[4000,6522,2000,1000],"delegatorTokens":9999999996478,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":17,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":5,"t":30,"tokens":[5000,7522,3000,2000],"delegation":[4000,6522,2000,1000],"delegatorTokens":9999999996478,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":18,"action":{"kind":"Undelegate","val":2,"amt":2522},"partialState":{"h":5,"t":30,"tokens":[5000,7522,3000,2000],"delegation":[4000,6522,2000,1000],"delegatorTokens":9999999996478}},{"ix":19,"action":{"kind":"Undelegate","val":3,"amt":1923},"partialState":{"h":5,"t":30,"tokens":[5000,7522,3000,2000],"delegation":[4000,6522,2000,1000],"delegatorTokens":9999999996478}},{"ix":20,"action":{"kind":"Deliver","chain":"consumer","numPackets":1},"partialState":{"h":2,"t":12,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":21,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":3,"t":18,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":22,"action":{"kind":"ConsumerSlash","val":0,"infractionHeight":2,"isDowntime":true},"partialState":{"h":3,"t":18,"outstandingDowntime":[true,false,false,false]}},{"ix":23,"action":{"kind":"Delegate","val":2,"amt":2722},"partialState":{"h":5,"t":30,"tokens":[5000,7522,5722,2000],"delegation":[4000,6522,4722,1000],"delegatorTokens":9999999993756}},{"ix":24,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":25,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":26,"action":{"kind":"ConsumerSlash","val":2,"infractionHeight":1,"isDowntime":true},"partialState":{"h":3,"t":18,"outstandingDowntime":[true,false,true,false]}},{"ix":27,"action":{"kind":"Deliver","chain":"provider","numPackets":3},"partialState":{"h":5,"t":30,"tokens":[5000,7522,5722,2000],"delegation":[4000,6522,4722,1000],"delegatorTokens":9999999993756,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":28,"action":{"kind":"ConsumerSlash","val":2,"infractionHeight":2,"isDowntime":true},"partialState":{"h":3,"t":18,"outstandingDowntime":[true,false,true,false]}},{"ix":29,"action":{"kind":"Undelegate","val":3,"amt":4870},"partialState":{"h":5,"t":30,"tokens":[5000,7522,5722,2000],"delegation":[4000,6522,4722,1000],"delegatorTokens":9999999993756}},{"ix":30,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":31,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":32,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":6,"t":36,"tokens":[5000,7522,5722,2000],"delegation":[4000,6522,4722,1000],"delegatorTokens":9999999993756,"jailed":[null,null,null,null],"status":["unbonding","bonded","bonded","unbonded"]}},{"ix":33,"action":{"kind":"ConsumerSlash","val":2,"infractionHeight":0,"isDowntime":true},"partialState":{"h":3,"t":18,"outstandingDowntime":[true,false,true,false]}},{"ix":34,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":4,"t":24,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[true,false,true,false]}},{"ix":35,"action":{"kind":"Delegate","val":0,"amt":3421},"partialState":{"h":6,"t":36,"tokens":[8421,7522,5722,2000],"delegation":[7421,6522,4722,1000],"delegatorTokens":9999999990335}},{"ix":36,"action":{"kind":"Delegate","val":1,"amt":2833},"partialState":{"h":6,"t":36,"tokens":[8421,10355,5722,2000],"delegation":[7421,9355,4722,1000],"delegatorTokens":9999999987502}},{"ix":37,"action":{"kind":"Deliver","chain":"provider","numPackets":3},"partialState":{"h":6,"t":36,"tokens":[8421,10355,5722,2000],"delegation":[7421,9355,4722,1000],"delegatorTokens":9999999987502,"jailed":[null,null,null,null],"status":["unbonding","bonded","bonded","unbonded"]}},{"ix":38,"action":{"kind":"Undelegate","val":1,"amt":4464},"partialState":{"h":6,"t":36,"tokens":[8421,5891,5722,2000],"delegation":[7421,4891,4722,1000],"delegatorTokens":9999999987502}},{"ix":39,"action":{"kind":"Deliver","chain":"provider","numPackets":3},"partialState":{"h":6,"t":36,"tokens":[8421,5891,5722,2000],"delegation":[7421,4891,4722,1000],"delegatorTokens":9999999987502,"jailed":[null,null,null,null],"status":["unbonding","bonded","bonded","unbonded"]}},{"ix":40,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":5,"t":30,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[true,false,true,false]}},{"ix":41,"action":{"kind":"ConsumerSlash","val":2,"infractionHeight":1,"isDowntime":false},"partialState":{"h":5,"t":30,"outstandingDowntime":[true,false,true,false]}},{"ix":42,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":6,"t":36,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[true,false,true,false]}},{"ix":43,"action":{"kind":"Undelegate","val":3,"amt":3095},"partialState":{"h":6,"t":36,"tokens":[8421,5891,5722,2000],"delegation":[7421,4891,4722,1000],"delegatorTokens":9999999987502}},{"ix":44,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":7,"t":42,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[true,false,true,false]}},{"ix":45,"action":{"kind":"ConsumerSlash","val":3,"infractionHeight":3,"isDowntime":true},"partialState":{"h":7,"t":42,"outstandingDowntime":[true,false,true,true]}},{"ix":46,"action":{"kind":"Deliver","chain":"provider","numPackets":5},"partialState":{"h":6,"t":36,"tokens":[8421,5891,5722,2000],"delegation":[7421,4891,4722,1000],"delegatorTokens":9999999987502,"jailed":[null,null,null,null],"status":["unbonding","bonded","bonded","unbonded"]}},{"ix":47,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":8,"t":48,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[true,false,true,true]}},{"ix":48,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":49,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":7,"t":42,"tokens":[8421,5891,5722,2000],"delegation":[7421,4891,4722,1000],"delegatorTokens":9999999987502,"jailed":[1000000000000035,null,1000000000000035,null],"status":["bonded","bonded","unbonding","unbonded"]}},{"ix":50,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":51,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":9,"t":54,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[true,false,true,true]}},{"ix":52,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":8,"t":48,"tokens":[8421,5891,5722,2000],"delegation":[7421,4891,4722,1000],"delegatorTokens":9999999987502,"jailed":[1000000000000035,null,1000000000000035,null],"status":["unbonding","bonded","unbonding","bonded"]}},{"ix":53,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":9,"t":54,"tokens":[8421,5891,5722,2000],"delegation":[7421,4891,4722,1000],"delegatorTokens":9999999987502,"jailed":[1000000000000035,null,1000000000000035,null],"status":["unbonding","bonded","unbonding","bonded"]}},{"ix":54,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":55,"action":{"kind":"Delegate","val":3,"amt":2712},"partialState":{"h":9,"t":54,"tokens":[8421,5891,5722,4712],"delegation":[7421,4891,4722,3712],"delegatorTokens":9999999984790}},{"ix":56,"action":{"kind":"Undelegate","val":2,"amt":1638},"partialState":{"h":9,"t":54,"tokens":[8421,5891,4084,4712],"delegation":[7421,4891,3084,3712],"delegatorTokens":9999999984790}},{"ix":57,"action":{"kind":"Undelegate","val":1,"amt":2475},"partialState":{"h":9,"t":54,"tokens":[8421,3416,4084,4712],"delegation":[7421,2416,3084,3712],"delegatorTokens":9999999984790}},{"ix":58,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":10,"t":60,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[true,false,true,true]}},{"ix":59,"action":{"kind":"Deliver","chain":"provider","numPackets":2},"partialState":{"h":9,"t":54,"tokens":[8421,3416,4084,4712],"delegation":[7421,2416,3084,3712],"delegatorTokens":9999999984790,"jailed":[1000000000000035,null,1000000000000035,null],"status":["unbonding","bonded","unbonding","bonded"]}},{"ix":60,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":10,"t":60,"tokens":[8421,3416,4084,4712],"delegation":[7421,2416,3084,3712],"delegatorTokens":9999999984790,"jailed":[1000000000000035,null,1000000000000035,1000000000000053],"status":["unbonding","bonded","unbonding","bonded"]}},{"ix":61,"action":{"kind":"Delegate","val":2,"amt":1869},"partialState":{"h":10,"t":60,"tokens":[8421,3416,5953,4712],"delegation":[7421,2416,4953,3712],"delegatorTokens":9999999982921}},{"ix":62,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":63,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":11,"t":66,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[true,false,true,true]}},{"ix":64,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":65,"action":{"kind":"Undelegate","val":0,"amt":2941},"partialState":{"h":10,"t":60,"tokens":[5480,3416,5953,4712],"delegation":[4480,2416,4953,3712],"delegatorTokens":9999999982921}},{"ix":66,"action":{"kind":"Undelegate","val":0,"amt":1474},"partialState":{"h":10,"t":60,"tokens":[4006,3416,5953,4712],"delegation":[3006,2416,4953,3712],"delegatorTokens":9999999982921}},{"ix":67,"action":{"kind":"Delegate","val":3,"amt":3037},"partialState":{"h":10,"t":60,"tokens":[4006,3416,5953,7749],"delegation":[3006,2416,4953,6749],"delegatorTokens":9999999979884}},{"ix":68,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":11,"t":66,"tokens":[4006,3416,5953,7749],"delegation":[3006,2416,4953,6749],"delegatorTokens":9999999979884,"jailed":[1000000000000035,null,1000000000000035,1000000000000053],"status":["unbonding","bonded","unbonding","unbonding"]}},{"ix":69,"action":{"kind":"Delegate","val":3,"amt":4574},"partialState":{"h":11,"t":66,"tokens":[4006,3416,5953,12323],"delegation":[3006,2416,4953,11323],"delegatorTokens":9999999975310}},{"ix":70,"action":{"kind":"Deliver","chain":"provider","numPackets":3},"partialState":{"h":11,"t":66,"tokens":[4006,3416,5953,12323],"delegation":[3006,2416,4953,11323],"delegatorTokens":9999999975310,"jailed":[1000000000000035,null,1000000000000035,1000000000000053],"status":["unbonding","bonded","unbonding","unbonding"]}},{"ix":71,"action":{"kind":"Delegate","val":1,"amt":3351},"partialState":{"h":11,"t":66,"tokens":[4006,6767,5953,12323],"delegation":[3006,5767,4953,11323],"delegatorTokens":9999999971959}},{"ix":72,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":12,"t":72,"tokens":[4006,6767,5953,12323],"delegation":[3006,5767,4953,11323],"delegatorTokens":9999999971959,"jailed":[1000000000000035,null,1000000000000035,1000000000000053],"status":["unbonding","bonded","unbonding","unbonding"]}},{"ix":73,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":74,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":75,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":13,"t":78,"tokens":[4006,6767,5953,12323],"delegation":[3006,5767,4953,11323],"delegatorTokens":9999999971959,"jailed":[1000000000000035,null,1000000000000035,1000000000000053],"status":["unbonding","bonded","unbonding","unbonding"]}},{"ix":76,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":12,"t":72,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[true,false,true,true]}},{"ix":77,"action":{"kind":"Undelegate","val":1,"amt":3115},"partialState":{"h":13,"t":78,"tokens":[4006,3652,5953,12323],"delegation":[3006,2652,4953,11323],"delegatorTokens":9999999971959}},{"ix":78,"action":{"kind":"Undelegate","val":1,"amt":4592},"partialState":{"h":13,"t":78,"tokens":[4006,3652,5953,12323],"delegation":[3006,2652,4953,11323],"delegatorTokens":9999999971959}},{"ix":79,"action":{"kind":"Undelegate","val":2,"amt":4410},"partialState":{"h":13,"t":78,"tokens":[4006,3652,1543,12323],"delegation":[3006,2652,543,11323],"delegatorTokens":9999999971959}},{"ix":80,"action":{"kind":"Deliver","chain":"consumer","numPackets":5},"partialState":{"h":12,"t":72,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":81,"action":{"kind":"Delegate","val":3,"amt":1396},"partialState":{"h":13,"t":78,"tokens":[4006,3652,1543,13719],"delegation":[3006,2652,543,12719],"delegatorTokens":9999999970563}},{"ix":82,"action":{"kind":"Undelegate","val":3,"amt":2794},"partialState":{"h":13,"t":78,"tokens":[4006,3652,1543,10925],"delegation":[3006,2652,543,9925],"delegatorTokens":9999999970563}},{"ix":83,"action":{"kind":"Undelegate","val":2,"amt":4780},"partialState":{"h":13,"t":78,"tokens":[4006,3652,1543,10925],"delegation":[3006,2652,543,9925],"delegatorTokens":9999999970563}},{"ix":84,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":85,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":86,"action":{"kind":"Deliver","chain":"consumer","numPackets":1},"partialState":{"h":12,"t":72,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":87,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":14,"t":84,"tokens":[4006,3652,1543,10925],"delegation":[3006,2652,543,9925],"delegatorTokens":9999999970563,"jailed":[1000000000000035,null,1000000000000035,1000000000000053],"status":["unbonding","bonded","unbonding","unbonding"]}},{"ix":88,"action":{"kind":"Delegate","val":1,"amt":3008},"partialState":{"h":14,"t":84,"tokens":[4006,6660,1543,10925],"delegation":[3006,5660,543,9925],"delegatorTokens":9999999967555}},{"ix":89,"action":{"kind":"Deliver","chain":"provider","numPackets":2},"partialState":{"h":14,"t":84,"tokens":[4006,6660,1543,10925],"delegation":[3006,5660,543,9925],"delegatorTokens":9999999967555,"jailed":[1000000000000035,null,1000000000000035,1000000000000053],"status":["unbonding","bonded","unbonding","unbonding"]}},{"ix":90,"action":{"kind":"Undelegate","val":1,"amt":4195},"partialState":{"h":14,"t":84,"tokens":[4006,2465,1543,10925],"delegation":[3006,1465,543,9925],"delegatorTokens":9999999967555}},{"ix":91,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":13,"t":78,"consumerPower":[null,3416,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":92,"action":{"kind":"Deliver","chain":"consumer","numPackets":1},"partialState":{"h":13,"t":78,"consumerPower":[null,3416,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":93,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":15,"t":90,"tokens":[4006,2465,1543,10925],"delegation":[3006,1465,543,9925],"delegatorTokens":9999999967555,"jailed":[1000000000000035,null,1000000000000035,1000000000000053],"status":["unbonding","bonded","unbonding","unbonding"]}},{"ix":94,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":14,"t":84,"consumerPower":[null,6767,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":95,"action":{"kind":"Deliver","chain":"consumer","numPackets":6},"partialState":{"h":14,"t":84,"consumerPower":[null,6767,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":96,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":15,"t":90,"consumerPower":[null,3652,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":97,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":16,"t":96,"consumerPower":[null,3652,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":98,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":17,"t":102,"consumerPower":[null,3652,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":99,"action":{"kind":"Undelegate","val":3,"amt":4642},"partialState":{"h":15,"t":90,"tokens":[4006,2465,1543,6283],"delegation":[3006,1465,543,5283],"delegatorTokens":9999999967555}},{"ix":100,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":101,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":18,"t":108,"consumerPower":[null,3652,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":102,"action":{"kind":"Undelegate","val":3,"amt":4341},"partialState":{"h":15,"t":90,"tokens":[4006,2465,1543,1942],"delegation":[3006,1465,543,942],"delegatorTokens":9999999967555}},{"ix":103,"action":{"kind":"Delegate","val":2,"amt":1125},"partialState":{"h":15,"t":90,"tokens":[4006,2465,2668,1942],"delegation":[3006,1465,1668,942],"delegatorTokens":9999999966430}},{"ix":104,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":105,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":106,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":16,"t":96,"tokens":[4006,2465,2668,1942],"delegation":[3006,1465,1668,942],"delegatorTokens":9999999966430,"jailed":[1000000000000035,null,1000000000000035,1000000000000053],"status":["unbonding","bonded","unbonding","unbonding"]}},{"ix":107,"action":{"kind":"Deliver","chain":"consumer","numPackets":2},"partialState":{"h":18,"t":108,"consumerPower":[null,3652,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":108,"action":{"kind":"Undelegate","val":1,"amt":3783},"partialState":{"h":16,"t":96,"tokens":[4006,2465,2668,1942],"delegation":[3006,1465,1668,942],"delegatorTokens":9999999966430}},{"ix":109,"action":{"kind":"Undelegate","val":3,"amt":3385},"partialState":{"h":16,"t":96,"tokens":[4006,2465,2668,1942],"delegation":[3006,1465,1668,942],"delegatorTokens":9999999966430}},{"ix":110,"action":{"kind":"Undelegate","val":1,"amt":3163},"partialState":{"h":16,"t":96,"tokens":[4006,2465,2668,1942],"delegation":[3006,1465,1668,942],"delegatorTokens":9999999966430}},{"ix":111,"action":{"kind":"Deliver","chain":"provider","numPackets":5},"partialState":{"h":16,"t":96,"tokens":[4006,2465,2668,1942],"delegation":[3006,1465,1668,942],"delegatorTokens":9999999966430,"jailed":[1000000000000035,null,1000000000000035,1000000000000053],"status":["unbonding","bonded","unbonding","unbonding"]}},{"ix":112,"action":{"kind":"Delegate","val":2,"amt":2813},"partialState":{"h":16,"t":96,"tokens":[4006,2465,5481,1942],"delegation":[3006,1465,4481,942],"delegatorTokens":9999999963617}},{"ix":113,"action":{"kind":"Deliver","chain":"provider","numPackets":6},"partialState":{"h":16,"t":96,"tokens":[4006,2465,5481,1942],"delegation":[3006,1465,4481,942],"delegatorTokens":9999999963617,"jailed":[1000000000000035,null,1000000000000035,1000000000000053],"status":["unbonding","bonded","unbonding","unbonding"]}},{"ix":114,"action":{"kind":"Deliver","chain":"consumer","numPackets":6},"partialState":{"h":18,"t":108,"consumerPower":[null,3652,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":115,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":17,"t":102,"tokens":[4006,2465,5481,1942],"delegation":[3006,1465,4481,942],"delegatorTokens":9999999963617,"jailed":[1000000000000035,null,1000000000000035,1000000000000053],"status":["unbonding","bonded","unbonding","unbonding"]}},{"ix":116,"action":{"kind":"Delegate","val":1,"amt":2315},"partialState":{"h":17,"t":102,"tokens":[4006,4780,5481,1942],"delegation":[3006,3780,4481,942],"delegatorTokens":9999999961302}},{"ix":117,"action":{"kind":"Delegate","val":0,"amt":4888},"partialState":{"h":17,"t":102,"tokens":[8894,4780,5481,1942],"delegation":[7894,3780,4481,942],"delegatorTokens":9999999956414}},{"ix":118,"action":{"kind":"Undelegate","val":2,"amt":4017},"partialState":{"h":17,"t":102,"tokens":[8894,4780,1464,1942],"delegation":[7894,3780,464,942],"delegatorTokens":9999999956414}},{"ix":119,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":120,"action":{"kind":"Undelegate","val":0,"amt":2747},"partialState":{"h":17,"t":102,"tokens":[6147,4780,1464,1942],"delegation":[5147,3780,464,942],"delegatorTokens":9999999956414}},{"ix":121,"action":{"kind":"Delegate","val":2,"amt":2642},"partialState":{"h":17,"t":102,"tokens":[6147,4780,4106,1942],"delegation":[5147,3780,3106,942],"delegatorTokens":9999999953772}},{"ix":122,"action":{"kind":"Deliver","chain":"consumer","numPackets":6},"partialState":{"h":18,"t":108,"consumerPower":[null,3652,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":123,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":124,"action":{"kind":"Undelegate","val":0,"amt":1695},"partialState":{"h":17,"t":102,"tokens":[4452,4780,4106,1942],"delegation":[3452,3780,3106,942],"delegatorTokens":9999999953772}},{"ix":125,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":19,"t":114,"consumerPower":[null,2465,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":126,"action":{"kind":"Undelegate","val":3,"amt":1478},"partialState":{"h":17,"t":102,"tokens":[4452,4780,4106,1942],"delegation":[3452,3780,3106,942],"delegatorTokens":9999999953772}},{"ix":127,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":20,"t":120,"consumerPower":[null,2465,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":128,"action":{"kind":"Undelegate","val":2,"amt":1632},"partialState":{"h":17,"t":102,"tokens":[4452,4780,2474,1942],"delegation":[3452,3780,1474,942],"delegatorTokens":9999999953772}},{"ix":129,"action":{"kind":"Delegate","val":1,"amt":4939},"partialState":{"h":17,"t":102,"tokens":[4452,9719,2474,1942],"delegation":[3452,8719,1474,942],"delegatorTokens":9999999948833}},{"ix":130,"action":{"kind":"Undelegate","val":3,"amt":2111},"partialState":{"h":17,"t":102,"tokens":[4452,9719,2474,1942],"delegation":[3452,8719,1474,942],"delegatorTokens":9999999948833}},{"ix":131,"action":{"kind":"Undelegate","val":2,"amt":1046},"partialState":{"h":17,"t":102,"tokens":[4452,9719,1428,1942],"delegation":[3452,8719,428,942],"delegatorTokens":9999999948833}},{"ix":132,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":133,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":18,"t":108,"tokens":[4452,9719,1428,1942],"delegation":[3452,8719,428,942],"delegatorTokens":9999999948833,"jailed":[1000000000000035,null,1000000000000035,1000000000000053],"status":["unbonding","bonded","unbonding","unbonding"]}},{"ix":134,"action":{"kind":"Delegate","val":2,"amt":1353},"partialState":{"h":18,"t":108,"tokens":[4452,9719,2781,1942],"delegation":[3452,8719,1781,942],"delegatorTokens":9999999947480}},{"ix":135,"action":{"kind":"Delegate","val":3,"amt":2900},"partialState":{"h":18,"t":108,"tokens":[4452,9719,2781,4842],"delegation":[3452,8719,1781,3842],"delegatorTokens":9999999944580}},{"ix":136,"action":{"kind":"Delegate","val":0,"amt":1571},"partialState":{"h":18,"t":108,"tokens":[6023,9719,2781,4842],"delegation":[5023,8719,1781,3842],"delegatorTokens":9999999943009}},{"ix":137,"action":{"kind":"Undelegate","val":0,"amt":1541},"partialState":{"h":18,"t":108,"tokens":[4482,9719,2781,4842],"delegation":[3482,8719,1781,3842],"delegatorTokens":9999999943009}},{"ix":138,"action":{"kind":"Delegate","val":3,"amt":2458},"partialState":{"h":18,"t":108,"tokens":[4482,9719,2781,7300],"delegation":[3482,8719,1781,6300],"delegatorTokens":9999999940551}},{"ix":139,"action":{"kind":"Undelegate","val":0,"amt":4954},"partialState":{"h":18,"t":108,"tokens":[4482,9719,2781,7300],"delegation":[3482,8719,1781,6300],"delegatorTokens":9999999940551}},{"ix":140,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":141,"action":{"kind":"Undelegate","val":0,"amt":4313},"partialState":{"h":18,"t":108,"tokens":[4482,9719,2781,7300],"delegation":[3482,8719,1781,6300],"delegatorTokens":9999999940551}},{"ix":142,"action":{"kind":"Deliver","chain":"provider","numPackets":1},"partialState":{"h":18,"t":108,"tokens":[4482,9719,2781,7300],"delegation":[3482,8719,1781,6300],"delegatorTokens":9999999940551,"jailed":[1000000000000035,null,1000000000000035,1000000000000053],"status":["unbonding","bonded","unbonding","unbonding"]}},{"ix":143,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":21,"t":126,"consumerPower":[null,2465,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":144,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":19,"t":114,"tokens":[4482,9719,2781,7300],"delegation":[3482,8719,1781,6300],"delegatorTokens":9999999940551,"jailed":[1000000000000035,null,1000000000000035,1000000000000053],"status":["unbonding","bonded","unbonding","unbonding"]}},{"ix":145,"action":{"kind":"Delegate","val":3,"amt":2268},"partialState":{"h":19,"t":114,"tokens":[4482,9719,2781,9568],"delegation":[3482,8719,1781,8568],"delegatorTokens":9999999938283}},{"ix":146,"action":{"kind":"Delegate","val":2,"amt":4097},"partialState":{"h":19,"t":114,"tokens":[4482,9719,6878,9568],"delegation":[3482,8719,5878,8568],"delegatorTokens":9999999934186}},{"ix":147,"action":{"kind":"Deliver","chain":"consumer","numPackets":1},"partialState":{"h":21,"t":126,"consumerPower":[null,2465,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":148,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":22,"t":132,"consumerPower":[null,9719,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":149,"action":{"kind":"Undelegate","val":0,"amt":1060},"partialState":{"h":19,"t":114,"tokens":[3422,9719,6878,9568],"delegation":[2422,8719,5878,8568],"delegatorTokens":9999999934186}},{"ix":150,"action":{"kind":"Deliver","chain":"consumer","numPackets":4},"partialState":{"h":22,"t":132,"consumerPower":[null,9719,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":151,"action":{"kind":"Deliver","chain":"consumer","numPackets":6},"partialState":{"h":22,"t":132,"consumerPower":[null,9719,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":152,"action":{"kind":"Delegate","val":0,"amt":2098},"partialState":{"h":19,"t":114,"tokens":[5520,9719,6878,9568],"delegation":[4520,8719,5878,8568],"delegatorTokens":9999999932088}},{"ix":153,"action":{"kind":"Delegate","val":3,"amt":1279},"partialState":{"h":19,"t":114,"tokens":[5520,9719,6878,10847],"delegation":[4520,8719,5878,9847],"delegatorTokens":9999999930809}},{"ix":154,"action":{"kind":"Delegate","val":1,"amt":1702},"partialState":{"h":19,"t":114,"tokens":[5520,11421,6878,10847],"delegation":[4520,10421,5878,9847],"delegatorTokens":9999999929107}},{"ix":155,"action":{"kind":"Deliver","chain":"provider","numPackets":5},"partialState":{"h":19,"t":114,"tokens":[5520,11421,6878,10847],"delegation":[4520,10421,5878,9847],"delegatorTokens":9999999929107,"jailed":[1000000000000035,null,1000000000000035,1000000000000053],"status":["unbonding","bonded","unbonding","unbonding"]}},{"ix":156,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":23,"t":138,"consumerPower":[null,9719,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":157,"action":{"kind":"Undelegate","val":2,"amt":2345},"partialState":{"h":19,"t":114,"tokens":[5520,11421,4533,10847],"delegation":[4520,10421,3533,9847],"delegatorTokens":9999999929107}},{"ix":158,"action":{"kind":"Delegate","val":2,"amt":4061},"partialState":{"h":19,"t":114,"tokens":[5520,11421,8594,10847],"delegation":[4520,10421,7594,9847],"delegatorTokens":9999999925046}},{"ix":159,"action":{"kind":"Undelegate","val":2,"amt":2530},"partialState":{"h":19,"t":114,"tokens":[5520,11421,6064,10847],"delegation":[4520,10421,5064,9847],"delegatorTokens":9999999925046}},{"ix":160,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":20,"t":120,"tokens":[5520,11421,6064,10847],"delegation":[4520,10421,5064,9847],"delegatorTokens":9999999925046,"jailed":[1000000000000035,null,1000000000000035,1000000000000053],"status":["unbonding","bonded","unbonding","unbonding"]}},{"ix":161,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":162,"action":{"kind":"Delegate","val":2,"amt":4935},"partialState":{"h":20,"t":120,"tokens":[5520,11421,10999,10847],"delegation":[4520,10421,9999,9847],"delegatorTokens":9999999920111}},{"ix":163,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":24,"t":144,"consumerPower":[null,9719,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":164,"action":{"kind":"Delegate","val":3,"amt":3212},"partialState":{"h":20,"t":120,"tokens":[5520,11421,10999,14059],"delegation":[4520,10421,9999,13059],"delegatorTokens":9999999916899}},{"ix":165,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":166,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":25,"t":150,"consumerPower":[null,9719,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":167,"action":{"kind":"Undelegate","val":3,"amt":3924},"partialState":{"h":20,"t":120,"tokens":[5520,11421,10999,10135],"delegation":[4520,10421,9999,9135],"delegatorTokens":9999999916899}},{"ix":168,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":169,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":170,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":171,"action":{"kind":"Deliver","chain":"consumer","numPackets":2},"partialState":{"h":25,"t":150,"consumerPower":[null,9719,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":172,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":26,"t":156,"consumerPower":[null,9719,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":173,"action":{"kind":"Undelegate","val":1,"amt":2941},"partialState":{"h":20,"t":120,"tokens":[5520,8480,10999,10135],"delegation":[4520,7480,9999,9135],"delegatorTokens":9999999916899}},{"ix":174,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":21,"t":126,"tokens":[5520,8480,10999,10135],"delegation":[4520,7480,9999,9135],"delegatorTokens":9999999916899,"jailed":[1000000000000035,null,1000000000000035,1000000000000053],"status":["unbonding","bonded","unbonding","unbonding"]}},{"ix":175,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":22,"t":132,"tokens":[5520,8480,10999,10135],"delegation":[4520,7480,9999,9135],"delegatorTokens":9999999916899,"jailed":[1000000000000035,null,1000000000000035,1000000000000053],"status":["unbonding","bonded","unbonding","unbonding"]}},{"ix":176,"action":{"kind":"Undelegate","val":3,"amt":3054},"partialState":{"h":22,"t":132,"tokens":[5520,8480,10999,7081],"delegation":[4520,7480,9999,6081],"delegatorTokens":9999999916899}},{"ix":177,"action":{"kind":"Delegate","val":0,"amt":3634},"partialState":{"h":22,"t":132,"tokens":[9154,8480,10999,7081],"delegation":[8154,7480,9999,6081],"delegatorTokens":9999999913265}},{"ix":178,"action":{"kind":"Undelegate","val":2,"amt":3958},"partialState":{"h":22,"t":132,"tokens":[9154,8480,7041,7081],"delegation":[8154,7480,6041,6081],"delegatorTokens":9999999913265}},{"ix":179,"action":{"kind":"Undelegate","val":3,"amt":1925},"partialState":{"h":22,"t":132,"tokens":[9154,8480,7041,5156],"delegation":[8154,7480,6041,4156],"delegatorTokens":9999999913265}},{"ix":180,"action":{"kind":"Undelegate","val":2,"amt":3721},"partialState":{"h":22,"t":132,"tokens":[9154,8480,3320,5156],"delegation":[8154,7480,2320,4156],"delegatorTokens":9999999913265}},{"ix":181,"action":{"kind":"Delegate","val":2,"amt":3420},"partialState":{"h":22,"t":132,"tokens":[9154,8480,6740,5156],"delegation":[8154,7480,5740,4156],"delegatorTokens":9999999909845}},{"ix":182,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":183,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":184,"action":{"kind":"Deliver","chain":"provider","numPackets":3},"partialState":{"h":22,"t":132,"tokens":[9154,8480,6740,5156],"delegation":[8154,7480,5740,4156],"delegatorTokens":9999999909845,"jailed":[1000000000000035,null,1000000000000035,1000000000000053],"status":["unbonding","bonded","unbonding","unbonding"]}},{"ix":185,"action":{"kind":"Undelegate","val":0,"amt":1814},"partialState":{"h":22,"t":132,"tokens":[7340,8480,6740,5156],"delegation":[6340,7480,5740,4156],"delegatorTokens":9999999909845}},{"ix":186,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":187,"action":{"kind":"Deliver","chain":"consumer","numPackets":5},"partialState":{"h":26,"t":156,"consumerPower":[null,9719,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":188,"action":{"kind":"Deliver","chain":"provider","numPackets":1},"partialState":{"h":22,"t":132,"tokens":[7340,8480,6740,5156],"delegation":[6340,7480,5740,4156],"delegatorTokens":9999999909845,"jailed":[1000000000000035,null,1000000000000035,1000000000000053],"status":["unbonding","bonded","unbonding","unbonding"]}},{"ix":189,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":23,"t":138,"tokens":[7340,8480,6740,5156],"delegation":[6340,7480,5740,4156],"delegatorTokens":9999999914309,"jailed":[1000000000000035,null,1000000000000035,1000000000000053],"status":["unbonding","bonded","unbonding","unbonding"]}},{"ix":190,"action":{"kind":"Delegate","val":1,"amt":1618},"partialState":{"h":23,"t":138,"tokens":[7340,10098,6740,5156],"delegation":[6340,9098,5740,4156],"delegatorTokens":9999999912691}},{"ix":191,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":192,"action":{"kind":"Delegate","val":3,"amt":3214},"partialState":{"h":23,"t":138,"tokens":[7340,10098,6740,8370],"delegation":[6340,9098,5740,7370],"delegatorTokens":9999999909477}},{"ix":193,"action":{"kind":"Deliver","chain":"provider","numPackets":6},"partialState":{"h":23,"t":138,"tokens":[7340,10098,6740,8370],"delegation":[6340,9098,5740,7370],"delegatorTokens":9999999909477,"jailed":[1000000000000035,null,1000000000000035,1000000000000053],"status":["unbonding","bonded","unbonding","unbonding"]}},{"ix":194,"action":{"kind":"Deliver","chain":"provider","numPackets":1},"partialState":{"h":23,"t":138,"tokens":[7340,10098,6740,8370],"delegation":[6340,9098,5740,7370],"delegatorTokens":9999999909477,"jailed":[1000000000000035,null,1000000000000035,1000000000000053],"status":["unbonding","bonded","unbonding","unbonding"]}},{"ix":195,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":24,"t":144,"tokens":[7340,10098,6740,8370],"delegation":[6340,9098,5740,7370],"delegatorTokens":9999999918005,"jailed":[1000000000000035,null,1000000000000035,1000000000000053],"status":["unbonded","bonded","unbonded","unbonding"]}},{"ix":196,"action":{"kind":"Undelegate","val":1,"amt":2318},"partialState":{"h":24,"t":144,"tokens":[7340,7780,6740,8370],"delegation":[6340,6780,5740,7370],"delegatorTokens":9999999918005}},{"ix":197,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":25,"t":150,"tokens":[7340,7780,6740,8370],"delegation":[6340,6780,5740,7370],"delegatorTokens":9999999918005,"jailed":[1000000000000035,null,1000000000000035,1000000000000053],"status":["unbonded","bonded","unbonded","unbonded"]}},{"ix":198,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":26,"t":156,"tokens":[7340,7780,6740,8370],"delegation":[6340,6780,5740,7370],"delegatorTokens":9999999928324,"jailed":[1000000000000035,null,1000000000000035,1000000000000053],"status":["unbonded","bonded","unbonded","unbonded"]}},{"ix":199,"action":{"kind":"Deliver","chain":"consumer","numPackets":1},"partialState":{"h":26,"t":156,"consumerPower":[null,9719,null,null],"outstandingDowntime":[false,false,false,false]}}],"events":["insufficient_shares","insufficient_shares","insufficient_shares","send_double_sign_slash_request","insufficient_shares","insufficient_shares","insufficient_shares","insufficient_shares","send_vsc_without_downtime_ack","insufficient_shares","insufficient_shares","send_downtime_slash_request","send_downtime_slash_request","receive_double_sign_slash_request","downtime_slash_request_outstanding","insufficient_shares","more_than_one_third_val_power_change","send_vsc_without_downtime_ack","downtime_slash_request_outstanding","send_double_sign_slash_request","insufficient_shares","send_downtime_slash_request","receive_double_sign_slash_request","more_than_one_third_val_power_change","rebond_unval","receive_downtime_slash_request","jail","receive_downtime_slash_request","jail","send_vsc_with_downtime_ack","send_vsc_without_downtime_ack","receive_downtime_slash_request","jail","send_vsc_with_downtime_ack","send_vsc_without_downtime_ack","send_vsc_without_downtime_ack","insufficient_shares","receive_downtime_slash_ack","receive_downtime_slash_ack","receive_downtime_slash_ack","insufficient_shares","send_vsc_without_downtime_ack","consumer_update_val","consumer_del_val","consumer_del_val","consumer_del_val","send_vsc_without_downtime_ack","consumer_update_val","consumer_update_val","send_vsc_not_because_change","send_vsc_without_downtime_ack","insufficient_shares","insufficient_shares","insufficient_shares","consumer_update_val","insufficient_shares","insufficient_shares","send_vsc_without_downtime_ack","insufficient_shares","insufficient_shares","some_undels_expired_but_not_completed","send_vsc_not_because_change","send_vsc_without_downtime_ack","consumer_send_maturation","consumer_send_maturation","consumer_send_maturation","consumer_send_maturation","consumer_send_maturation","consumer_send_maturation","consumer_update_val","consumer_send_maturation","send_vsc_without_downtime_ack","consumer_send_maturation","send_vsc_without_downtime_ack","some_undels_expired_but_not_completed","some_undels_expired_but_not_completed","complete_undel_immediate","set_unval_hold_false","set_unval_hold_false","send_vsc_not_because_change","send_vsc_without_downtime_ack","complete_unval_in_endblock","complete_unval_in_endblock","complete_undel_immediate","complete_undel_immediate","complete_undel_immediate","complete_undel_immediate","set_unval_hold_false","set_undel_hold_false","set_undel_hold_false","set_undel_hold_false","send_vsc_without_downtime_ack","complete_unval_in_endblock","send_vsc_without_downtime_ack","complete_undel_in_endblock"]},{"meta":{"commit":"7ffd0c04e4205cbc9caf212abfe6c59ee43153bf"},"constants":{"P":"provider","C":"consumer","UNBONDING_SECONDS_P":70,"UNBONDING_SECONDS_C":50,"TRUSTING_SECONDS":49,"NUM_VALIDATORS":4,"MAX_VALIDATORS":2,"SLASH_DOUBLESIGN":0,"SLASH_DOWNTIME":0,"JAIL_SECONDS":999999999999999,"BLOCK_SECONDS":6,"INITIAL_DELEGATOR_TOKENS":10000000000000,"DELEGATE_AMT_MIN":1000,"DELEGATE_AMT_MAX":5000,"UNDELEGATE_AMT_MIN":1000,"UNDELEGATE_AMT_MAX":5000,"ISDOWNTIME_PROBABILITY":0.5,"MAX_NUM_PACKETS_FOR_DELIVER":6},"actions":[{"ix":0,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":2,"t":12,"tokens":[5000,4000,3000,2000],"delegation":[4000,3000,2000,1000],"delegatorTokens":10000000000000,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":1,"action":{"kind":"Delegate","val":2,"amt":4150},"partialState":{"h":2,"t":12,"tokens":[5000,4000,7150,2000],"delegation":[4000,3000,6150,1000],"delegatorTokens":9999999995850}},{"ix":2,"action":{"kind":"Delegate","val":1,"amt":2281},"partialState":{"h":2,"t":12,"tokens":[5000,6281,7150,2000],"delegation":[4000,5281,6150,1000],"delegatorTokens":9999999993569}},{"ix":3,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":2,"t":12,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":4,"action":{"kind":"Deliver","chain":"consumer","numPackets":4},"partialState":{"h":2,"t":12,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":5,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":6,"action":{"kind":"Delegate","val":3,"amt":2444},"partialState":{"h":2,"t":12,"tokens":[5000,6281,7150,4444],"delegation":[4000,5281,6150,3444],"delegatorTokens":9999999991125}},{"ix":7,"action":{"kind":"Undelegate","val":1,"amt":1430},"partialState":{"h":2,"t":12,"tokens":[5000,4851,7150,4444],"delegation":[4000,3851,6150,3444],"delegatorTokens":9999999991125}},{"ix":8,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":9,"action":{"kind":"ConsumerSlash","val":0,"infractionHeight":0,"isDowntime":true},"partialState":{"h":2,"t":12,"outstandingDowntime":[true,false,false,false]}},{"ix":10,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":11,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":12,"action":{"kind":"ConsumerSlash","val":1,"infractionHeight":1,"isDowntime":true},"partialState":{"h":2,"t":12,"outstandingDowntime":[true,true,false,false]}},{"ix":13,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":14,"action":{"kind":"Delegate","val":2,"amt":3842},"partialState":{"h":2,"t":12,"tokens":[5000,4851,10992,4444],"delegation":[4000,3851,9992,3444],"delegatorTokens":9999999987283}},{"ix":15,"action":{"kind":"Deliver","chain":"consumer","numPackets":2},"partialState":{"h":2,"t":12,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[true,true,false,false]}},{"ix":16,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":17,"action":{"kind":"ConsumerSlash","val":1,"infractionHeight":1,"isDowntime":true},"partialState":{"h":2,"t":12,"outstandingDowntime":[true,true,false,false]}},{"ix":18,"action":{"kind":"ConsumerSlash","val":0,"infractionHeight":0,"isDowntime":false},"partialState":{"h":2,"t":12,"outstandingDowntime":[true,true,false,false]}},{"ix":19,"action":{"kind":"Undelegate","val":2,"amt":1724},"partialState":{"h":2,"t":12,"tokens":[5000,4851,9268,4444],"delegation":[4000,3851,8268,3444],"delegatorTokens":9999999987283}},{"ix":20,"action":{"kind":"ConsumerSlash","val":0,"infractionHeight":0,"isDowntime":true},"partialState":{"h":2,"t":12,"outstandingDowntime":[true,true,false,false]}},{"ix":21,"action":{"kind":"Undelegate","val":3,"amt":3990},"partialState":{"h":2,"t":12,"tokens":[5000,4851,9268,4444],"delegation":[4000,3851,8268,3444],"delegatorTokens":9999999987283}},{"ix":22,"action":{"kind":"Undelegate","val":1,"amt":1902},"partialState":{"h":2,"t":12,"tokens":[5000,2949,9268,4444],"delegation":[4000,1949,8268,3444],"delegatorTokens":9999999987283}},{"ix":23,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":3,"t":18,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[true,true,false,false]}},{"ix":24,"action":{"kind":"Deliver","chain":"consumer","numPackets":6},"partialState":{"h":3,"t":18,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[true,true,false,false]}},{"ix":25,"action":{"kind":"Deliver","chain":"provider","numPackets":1},"partialState":{"h":2,"t":12,"tokens":[5000,2949,9268,4444],"delegation":[4000,1949,8268,3444],"delegatorTokens":9999999987283,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":26,"action":{"kind":"ConsumerSlash","val":2,"infractionHeight":0,"isDowntime":true},"partialState":{"h":3,"t":18,"outstandingDowntime":[true,true,true,false]}},{"ix":27,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":28,"action":{"kind":"Deliver","chain":"provider","numPackets":5},"partialState":{"h":2,"t":12,"tokens":[5000,2949,9268,4444],"delegation":[4000,1949,8268,3444],"delegatorTokens":9999999987283,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":29,"action":{"kind":"Delegate","val":2,"amt":1176},"partialState":{"h":2,"t":12,"tokens":[5000,2949,10444,4444],"delegation":[4000,1949,9444,3444],"delegatorTokens":9999999986107}},{"ix":30,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":4,"t":24,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[true,true,true,false]}},{"ix":31,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":5,"t":30,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[true,true,true,false]}},{"ix":32,"action":{"kind":"Delegate","val":3,"amt":4951},"partialState":{"h":2,"t":12,"tokens":[5000,2949,10444,9395],"delegation":[4000,1949,9444,8395],"delegatorTokens":9999999981156}},{"ix":33,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":3,"t":18,"tokens":[5000,2949,10444,9395],"delegation":[4000,1949,9444,8395],"delegatorTokens":9999999981156,"jailed":[null,null,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":34,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":4,"t":24,"tokens":[5000,2949,10444,9395],"delegation":[4000,1949,9444,8395],"delegatorTokens":9999999981156,"jailed":[null,null,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":35,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":6,"t":36,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[true,true,true,false]}},{"ix":36,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":7,"t":42,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[true,true,true,false]}},{"ix":37,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":5,"t":30,"tokens":[5000,2949,10444,9395],"delegation":[4000,1949,9444,8395],"delegatorTokens":9999999981156,"jailed":[null,null,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":38,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":39,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":8,"t":48,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[true,true,true,false]}},{"ix":40,"action":{"kind":"Deliver","chain":"provider","numPackets":1},"partialState":{"h":5,"t":30,"tokens":[5000,2949,10444,9395],"delegation":[4000,1949,9444,8395],"delegatorTokens":9999999981156,"jailed":[null,null,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":41,"action":{"kind":"Delegate","val":0,"amt":4618},"partialState":{"h":5,"t":30,"tokens":[9618,2949,10444,9395],"delegation":[8618,1949,9444,8395],"delegatorTokens":9999999976538}},{"ix":42,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":6,"t":36,"tokens":[9618,2949,10444,9395],"delegation":[8618,1949,9444,8395],"delegatorTokens":9999999976538,"jailed":[1000000000000029,null,null,null],"status":["bonded","unbonding","bonded","unbonding"]}},{"ix":43,"action":{"kind":"Deliver","chain":"provider","numPackets":4},"partialState":{"h":6,"t":36,"tokens":[9618,2949,10444,9395],"delegation":[8618,1949,9444,8395],"delegatorTokens":9999999976538,"jailed":[1000000000000029,null,null,null],"status":["bonded","unbonding","bonded","unbonding"]}},{"ix":44,"action":{"kind":"Deliver","chain":"consumer","numPackets":3},"partialState":{"h":8,"t":48,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[true,true,true,false]}},{"ix":45,"action":{"kind":"Delegate","val":2,"amt":2202},"partialState":{"h":6,"t":36,"tokens":[9618,2949,12646,9395],"delegation":[8618,1949,11646,8395],"delegatorTokens":9999999974336}},{"ix":46,"action":{"kind":"Deliver","chain":"provider","numPackets":4},"partialState":{"h":6,"t":36,"tokens":[9618,2949,12646,9395],"delegation":[8618,1949,11646,8395],"delegatorTokens":9999999974336,"jailed":[1000000000000029,null,null,null],"status":["bonded","unbonding","bonded","unbonding"]}},{"ix":47,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":9,"t":54,"consumerPower":[null,null,10444,9395],"outstandingDowntime":[true,true,true,false]}},{"ix":48,"action":{"kind":"Delegate","val":1,"amt":3104},"partialState":{"h":6,"t":36,"tokens":[9618,6053,12646,9395],"delegation":[8618,5053,11646,8395],"delegatorTokens":9999999971232}},{"ix":49,"action":{"kind":"Delegate","val":0,"amt":3826},"partialState":{"h":6,"t":36,"tokens":[13444,6053,12646,9395],"delegation":[12444,5053,11646,8395],"delegatorTokens":9999999967406}},{"ix":50,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":7,"t":42,"tokens":[13444,6053,12646,9395],"delegation":[12444,5053,11646,8395],"delegatorTokens":9999999967406,"jailed":[1000000000000029,1000000000000035,1000000000000035,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":51,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":10,"t":60,"consumerPower":[null,null,10444,9395],"outstandingDowntime":[true,true,true,false]}},{"ix":52,"action":{"kind":"Deliver","chain":"consumer","numPackets":6},"partialState":{"h":10,"t":60,"consumerPower":[null,null,10444,9395],"outstandingDowntime":[false,true,true,false]}},{"ix":53,"action":{"kind":"Deliver","chain":"provider","numPackets":6},"partialState":{"h":7,"t":42,"tokens":[13444,6053,12646,9395],"delegation":[12444,5053,11646,8395],"delegatorTokens":9999999967406,"jailed":[1000000000000029,1000000000000035,1000000000000035,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":54,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":11,"t":66,"consumerPower":[9618,null,10444,null],"outstandingDowntime":[false,true,true,false]}},{"ix":55,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":12,"t":72,"consumerPower":[9618,null,10444,null],"outstandingDowntime":[false,true,true,false]}},{"ix":56,"action":{"kind":"Delegate","val":2,"amt":3943},"partialState":{"h":7,"t":42,"tokens":[13444,6053,16589,9395],"delegation":[12444,5053,15589,8395],"delegatorTokens":9999999963463}},{"ix":57,"action":{"kind":"Undelegate","val":3,"amt":1929},"partialState":{"h":7,"t":42,"tokens":[13444,6053,16589,7466],"delegation":[12444,5053,15589,6466],"delegatorTokens":9999999963463}},{"ix":58,"action":{"kind":"Undelegate","val":1,"amt":1604},"partialState":{"h":7,"t":42,"tokens":[13444,4449,16589,7466],"delegation":[12444,3449,15589,6466],"delegatorTokens":9999999963463}},{"ix":59,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":13,"t":78,"consumerPower":[9618,null,10444,null],"outstandingDowntime":[false,true,true,false]}},{"ix":60,"action":{"kind":"Delegate","val":2,"amt":1155},"partialState":{"h":7,"t":42,"tokens":[13444,4449,17744,7466],"delegation":[12444,3449,16744,6466],"delegatorTokens":9999999962308}},{"ix":61,"action":{"kind":"Deliver","chain":"consumer","numPackets":6},"partialState":{"h":13,"t":78,"consumerPower":[9618,null,10444,null],"outstandingDowntime":[false,true,true,false]}},{"ix":62,"action":{"kind":"Undelegate","val":2,"amt":4148},"partialState":{"h":7,"t":42,"tokens":[13444,4449,13596,7466],"delegation":[12444,3449,12596,6466],"delegatorTokens":9999999962308}},{"ix":63,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":8,"t":48,"tokens":[13444,4449,13596,7466],"delegation":[12444,3449,12596,6466],"delegatorTokens":9999999962308,"jailed":[1000000000000029,1000000000000035,1000000000000035,null],"status":["unbonding","unbonding","unbonding","bonded"]}},{"ix":64,"action":{"kind":"Delegate","val":0,"amt":2010},"partialState":{"h":8,"t":48,"tokens":[15454,4449,13596,7466],"delegation":[14454,3449,12596,6466],"delegatorTokens":9999999960298}},{"ix":65,"action":{"kind":"Delegate","val":1,"amt":4072},"partialState":{"h":8,"t":48,"tokens":[15454,8521,13596,7466],"delegation":[14454,7521,12596,6466],"delegatorTokens":9999999956226}},{"ix":66,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":67,"action":{"kind":"Undelegate","val":3,"amt":2404},"partialState":{"h":8,"t":48,"tokens":[15454,8521,13596,5062],"delegation":[14454,7521,12596,4062],"delegatorTokens":9999999956226}},{"ix":68,"action":{"kind":"Undelegate","val":3,"amt":1580},"partialState":{"h":8,"t":48,"tokens":[15454,8521,13596,3482],"delegation":[14454,7521,12596,2482],"delegatorTokens":9999999956226}},{"ix":69,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":14,"t":84,"consumerPower":[9618,null,10444,null],"outstandingDowntime":[false,true,true,false]}},{"ix":70,"action":{"kind":"Deliver","chain":"consumer","numPackets":4},"partialState":{"h":14,"t":84,"consumerPower":[9618,null,10444,null],"outstandingDowntime":[false,false,false,false]}},{"ix":71,"action":{"kind":"Undelegate","val":3,"amt":2730},"partialState":{"h":8,"t":48,"tokens":[15454,8521,13596,3482],"delegation":[14454,7521,12596,2482],"delegatorTokens":9999999956226}},{"ix":72,"action":{"kind":"Delegate","val":2,"amt":2753},"partialState":{"h":8,"t":48,"tokens":[15454,8521,16349,3482],"delegation":[14454,7521,15349,2482],"delegatorTokens":9999999953473}},{"ix":73,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":74,"action":{"kind":"Delegate","val":1,"amt":3345},"partialState":{"h":8,"t":48,"tokens":[15454,11866,16349,3482],"delegation":[14454,10866,15349,2482],"delegatorTokens":9999999950128}},{"ix":75,"action":{"kind":"Deliver","chain":"provider","numPackets":4},"partialState":{"h":8,"t":48,"tokens":[15454,11866,16349,3482],"delegation":[14454,10866,15349,2482],"delegatorTokens":9999999950128,"jailed":[1000000000000029,1000000000000035,1000000000000035,null],"status":["unbonding","unbonding","unbonding","bonded"]}},{"ix":76,"action":{"kind":"Undelegate","val":3,"amt":4026},"partialState":{"h":8,"t":48,"tokens":[15454,11866,16349,3482],"delegation":[14454,10866,15349,2482],"delegatorTokens":9999999950128}},{"ix":77,"action":{"kind":"Delegate","val":0,"amt":2142},"partialState":{"h":8,"t":48,"tokens":[17596,11866,16349,3482],"delegation":[16596,10866,15349,2482],"delegatorTokens":9999999947986}},{"ix":78,"action":{"kind":"Delegate","val":3,"amt":2335},"partialState":{"h":8,"t":48,"tokens":[17596,11866,16349,5817],"delegation":[16596,10866,15349,4817],"delegatorTokens":9999999945651}},{"ix":79,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":80,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":9,"t":54,"tokens":[17596,11866,16349,5817],"delegation":[16596,10866,15349,4817],"delegatorTokens":9999999945651,"jailed":[1000000000000029,1000000000000035,1000000000000035,null],"status":["unbonding","unbonding","unbonding","bonded"]}},{"ix":81,"action":{"kind":"Delegate","val":0,"amt":1986},"partialState":{"h":9,"t":54,"tokens":[19582,11866,16349,5817],"delegation":[18582,10866,15349,4817],"delegatorTokens":9999999943665}},{"ix":82,"action":{"kind":"Deliver","chain":"consumer","numPackets":4},"partialState":{"h":14,"t":84,"consumerPower":[9618,null,10444,null],"outstandingDowntime":[false,false,false,false]}},{"ix":83,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":10,"t":60,"tokens":[19582,11866,16349,5817],"delegation":[18582,10866,15349,4817],"delegatorTokens":9999999943665,"jailed":[1000000000000029,1000000000000035,1000000000000035,null],"status":["unbonding","unbonding","unbonding","bonded"]}},{"ix":84,"action":{"kind":"Undelegate","val":3,"amt":2569},"partialState":{"h":10,"t":60,"tokens":[19582,11866,16349,3248],"delegation":[18582,10866,15349,2248],"delegatorTokens":9999999943665}},{"ix":85,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":86,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":87,"action":{"kind":"Undelegate","val":0,"amt":2311},"partialState":{"h":10,"t":60,"tokens":[17271,11866,16349,3248],"delegation":[16271,10866,15349,2248],"delegatorTokens":9999999943665}},{"ix":88,"action":{"kind":"Delegate","val":1,"amt":1584},"partialState":{"h":10,"t":60,"tokens":[17271,13450,16349,3248],"delegation":[16271,12450,15349,2248],"delegatorTokens":9999999942081}},{"ix":89,"action":{"kind":"Deliver","chain":"provider","numPackets":6},"partialState":{"h":10,"t":60,"tokens":[17271,13450,16349,3248],"delegation":[16271,12450,15349,2248],"delegatorTokens":9999999942081,"jailed":[1000000000000029,1000000000000035,1000000000000035,null],"status":["unbonding","unbonding","unbonding","bonded"]}},{"ix":90,"action":{"kind":"Deliver","chain":"provider","numPackets":3},"partialState":{"h":10,"t":60,"tokens":[17271,13450,16349,3248],"delegation":[16271,12450,15349,2248],"delegatorTokens":9999999942081,"jailed":[1000000000000029,1000000000000035,1000000000000035,null],"status":["unbonding","unbonding","unbonding","bonded"]}},{"ix":91,"action":{"kind":"Deliver","chain":"provider","numPackets":4},"partialState":{"h":10,"t":60,"tokens":[17271,13450,16349,3248],"delegation":[16271,12450,15349,2248],"delegatorTokens":9999999942081,"jailed":[1000000000000029,1000000000000035,1000000000000035,null],"status":["unbonding","unbonding","unbonding","bonded"]}},{"ix":92,"action":{"kind":"Deliver","chain":"consumer","numPackets":2},"partialState":{"h":14,"t":84,"consumerPower":[9618,null,10444,null],"outstandingDowntime":[false,false,false,false]}},{"ix":93,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":94,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":11,"t":66,"tokens":[17271,13450,16349,3248],"delegation":[16271,12450,15349,2248],"delegatorTokens":9999999942081,"jailed":[1000000000000029,1000000000000035,1000000000000035,null],"status":["unbonding","unbonding","unbonding","bonded"]}},{"ix":95,"action":{"kind":"Delegate","val":2,"amt":2120},"partialState":{"h":11,"t":66,"tokens":[17271,13450,18469,3248],"delegation":[16271,12450,17469,2248],"delegatorTokens":9999999939961}},{"ix":96,"action":{"kind":"Delegate","val":0,"amt":2377},"partialState":{"h":11,"t":66,"tokens":[19648,13450,18469,3248],"delegation":[18648,12450,17469,2248],"delegatorTokens":9999999937584}},{"ix":97,"action":{"kind":"Undelegate","val":0,"amt":4616},"partialState":{"h":11,"t":66,"tokens":[15032,13450,18469,3248],"delegation":[14032,12450,17469,2248],"delegatorTokens":9999999937584}},{"ix":98,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":99,"action":{"kind":"Undelegate","val":2,"amt":2559},"partialState":{"h":11,"t":66,"tokens":[15032,13450,15910,3248],"delegation":[14032,12450,14910,2248],"delegatorTokens":9999999937584}},{"ix":100,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":101,"action":{"kind":"Deliver","chain":"consumer","numPackets":2},"partialState":{"h":14,"t":84,"consumerPower":[9618,null,10444,null],"outstandingDowntime":[false,false,false,false]}},{"ix":102,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":12,"t":72,"tokens":[15032,13450,15910,3248],"delegation":[14032,12450,14910,2248],"delegatorTokens":9999999937584,"jailed":[1000000000000029,1000000000000035,1000000000000035,null],"status":["unbonding","unbonding","unbonding","bonded"]}},{"ix":103,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":104,"action":{"kind":"Delegate","val":2,"amt":3386},"partialState":{"h":12,"t":72,"tokens":[15032,13450,19296,3248],"delegation":[14032,12450,18296,2248],"delegatorTokens":9999999934198}},{"ix":105,"action":{"kind":"Undelegate","val":3,"amt":1836},"partialState":{"h":12,"t":72,"tokens":[15032,13450,19296,1412],"delegation":[14032,12450,18296,412],"delegatorTokens":9999999934198}},{"ix":106,"action":{"kind":"Delegate","val":3,"amt":3009},"partialState":{"h":12,"t":72,"tokens":[15032,13450,19296,4421],"delegation":[14032,12450,18296,3421],"delegatorTokens":9999999931189}},{"ix":107,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":13,"t":78,"tokens":[15032,13450,19296,4421],"delegation":[14032,12450,18296,3421],"delegatorTokens":9999999931189,"jailed":[1000000000000029,1000000000000035,1000000000000035,null],"status":["unbonding","unbonding","unbonding","bonded"]}},{"ix":108,"action":{"kind":"Delegate","val":2,"amt":3768},"partialState":{"h":13,"t":78,"tokens":[15032,13450,23064,4421],"delegation":[14032,12450,22064,3421],"delegatorTokens":9999999927421}},{"ix":109,"action":{"kind":"Undelegate","val":2,"amt":1915},"partialState":{"h":13,"t":78,"tokens":[15032,13450,21149,4421],"delegation":[14032,12450,20149,3421],"delegatorTokens":9999999927421}},{"ix":110,"action":{"kind":"Delegate","val":0,"amt":4857},"partialState":{"h":13,"t":78,"tokens":[19889,13450,21149,4421],"delegation":[18889,12450,20149,3421],"delegatorTokens":9999999922564}},{"ix":111,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":14,"t":84,"tokens":[19889,13450,21149,4421],"delegation":[18889,12450,20149,3421],"delegatorTokens":9999999922564,"jailed":[1000000000000029,1000000000000035,1000000000000035,null],"status":["unbonding","unbonding","unbonding","bonded"]}},{"ix":112,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":113,"action":{"kind":"Undelegate","val":0,"amt":4593},"partialState":{"h":14,"t":84,"tokens":[15296,13450,21149,4421],"delegation":[14296,12450,20149,3421],"delegatorTokens":9999999922564}},{"ix":114,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":15,"t":90,"consumerPower":[null,null,null,5817],"outstandingDowntime":[false,false,false,false]}},{"ix":115,"action":{"kind":"Delegate","val":3,"amt":2833},"partialState":{"h":14,"t":84,"tokens":[15296,13450,21149,7254],"delegation":[14296,12450,20149,6254],"delegatorTokens":9999999919731}},{"ix":116,"action":{"kind":"Delegate","val":0,"amt":3305},"partialState":{"h":14,"t":84,"tokens":[18601,13450,21149,7254],"delegation":[17601,12450,20149,6254],"delegatorTokens":9999999916426}},{"ix":117,"action":{"kind":"Deliver","chain":"consumer","numPackets":1},"partialState":{"h":15,"t":90,"consumerPower":[null,null,null,5817],"outstandingDowntime":[false,false,false,false]}},{"ix":118,"action":{"kind":"Delegate","val":0,"amt":4837},"partialState":{"h":14,"t":84,"tokens":[23438,13450,21149,7254],"delegation":[22438,12450,20149,6254],"delegatorTokens":9999999911589}},{"ix":119,"action":{"kind":"Delegate","val":3,"amt":3833},"partialState":{"h":14,"t":84,"tokens":[23438,13450,21149,11087],"delegation":[22438,12450,20149,10087],"delegatorTokens":9999999907756}},{"ix":120,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":15,"t":90,"tokens":[23438,13450,21149,11087],"delegation":[22438,12450,20149,10087],"delegatorTokens":9999999907756,"jailed":[1000000000000029,1000000000000035,1000000000000035,null],"status":["unbonding","unbonding","unbonding","bonded"]}},{"ix":121,"action":{"kind":"Deliver","chain":"consumer","numPackets":6},"partialState":{"h":15,"t":90,"consumerPower":[null,null,null,5817],"outstandingDowntime":[false,false,false,false]}},{"ix":122,"action":{"kind":"Deliver","chain":"consumer","numPackets":5},"partialState":{"h":15,"t":90,"consumerPower":[null,null,null,5817],"outstandingDowntime":[false,false,false,false]}},{"ix":123,"action":{"kind":"Deliver","chain":"provider","numPackets":3},"partialState":{"h":15,"t":90,"tokens":[23438,13450,21149,11087],"delegation":[22438,12450,20149,10087],"delegatorTokens":9999999907756,"jailed":[1000000000000029,1000000000000035,1000000000000035,null],"status":["unbonding","unbonding","unbonding","bonded"]}},{"ix":124,"action":{"kind":"Delegate","val":3,"amt":1128},"partialState":{"h":15,"t":90,"tokens":[23438,13450,21149,12215],"delegation":[22438,12450,20149,11215],"delegatorTokens":9999999906628}},{"ix":125,"action":{"kind":"Deliver","chain":"provider","numPackets":6},"partialState":{"h":15,"t":90,"tokens":[23438,13450,21149,12215],"delegation":[22438,12450,20149,11215],"delegatorTokens":9999999906628,"jailed":[1000000000000029,1000000000000035,1000000000000035,null],"status":["unbonding","unbonding","unbonding","bonded"]}},{"ix":126,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":16,"t":96,"consumerPower":[null,null,null,4421],"outstandingDowntime":[false,false,false,false]}},{"ix":127,"action":{"kind":"Delegate","val":2,"amt":3622},"partialState":{"h":15,"t":90,"tokens":[23438,13450,24771,12215],"delegation":[22438,12450,23771,11215],"delegatorTokens":9999999903006}},{"ix":128,"action":{"kind":"Delegate","val":3,"amt":2147},"partialState":{"h":15,"t":90,"tokens":[23438,13450,24771,14362],"delegation":[22438,12450,23771,13362],"delegatorTokens":9999999900859}},{"ix":129,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":130,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":16,"t":96,"tokens":[23438,13450,24771,14362],"delegation":[22438,12450,23771,13362],"delegatorTokens":9999999900859,"jailed":[1000000000000029,1000000000000035,1000000000000035,null],"status":["unbonding","unbonding","unbonding","bonded"]}},{"ix":131,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":132,"action":{"kind":"Undelegate","val":2,"amt":4242},"partialState":{"h":16,"t":96,"tokens":[23438,13450,20529,14362],"delegation":[22438,12450,19529,13362],"delegatorTokens":9999999900859}},{"ix":133,"action":{"kind":"Delegate","val":2,"amt":1667},"partialState":{"h":16,"t":96,"tokens":[23438,13450,22196,14362],"delegation":[22438,12450,21196,13362],"delegatorTokens":9999999899192}},{"ix":134,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":135,"action":{"kind":"Undelegate","val":3,"amt":4601},"partialState":{"h":16,"t":96,"tokens":[23438,13450,22196,9761],"delegation":[22438,12450,21196,8761],"delegatorTokens":9999999899192}},{"ix":136,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":137,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":138,"action":{"kind":"Deliver","chain":"provider","numPackets":2},"partialState":{"h":16,"t":96,"tokens":[23438,13450,22196,9761],"delegation":[22438,12450,21196,8761],"delegatorTokens":9999999899192,"jailed":[1000000000000029,1000000000000035,1000000000000035,null],"status":["unbonding","unbonding","unbonding","bonded"]}},{"ix":139,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":17,"t":102,"consumerPower":[null,null,null,4421],"outstandingDowntime":[false,false,false,false]}},{"ix":140,"action":{"kind":"Deliver","chain":"provider","numPackets":6},"partialState":{"h":16,"t":96,"tokens":[23438,13450,22196,9761],"delegation":[22438,12450,21196,8761],"delegatorTokens":9999999899192,"jailed":[1000000000000029,1000000000000035,1000000000000035,null],"status":["unbonding","unbonding","unbonding","bonded"]}},{"ix":141,"action":{"kind":"Undelegate","val":1,"amt":4845},"partialState":{"h":16,"t":96,"tokens":[23438,8605,22196,9761],"delegation":[22438,7605,21196,8761],"delegatorTokens":9999999899192}},{"ix":142,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":18,"t":108,"consumerPower":[null,null,null,4421],"outstandingDowntime":[false,false,false,false]}},{"ix":143,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":144,"action":{"kind":"Delegate","val":0,"amt":4081},"partialState":{"h":16,"t":96,"tokens":[27519,8605,22196,9761],"delegation":[26519,7605,21196,8761],"delegatorTokens":9999999895111}},{"ix":145,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":19,"t":114,"consumerPower":[null,null,null,4421],"outstandingDowntime":[false,false,false,false]}},{"ix":146,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":20,"t":120,"consumerPower":[null,null,null,4421],"outstandingDowntime":[false,false,false,false]}},{"ix":147,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":17,"t":102,"tokens":[27519,8605,22196,9761],"delegation":[26519,7605,21196,8761],"delegatorTokens":9999999895111,"jailed":[1000000000000029,1000000000000035,1000000000000035,null],"status":["unbonding","unbonding","unbonding","bonded"]}},{"ix":148,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":149,"action":{"kind":"Deliver","chain":"consumer","numPackets":2},"partialState":{"h":20,"t":120,"consumerPower":[null,null,null,4421],"outstandingDowntime":[false,false,false,false]}},{"ix":150,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":21,"t":126,"consumerPower":[null,null,null,14362],"outstandingDowntime":[false,false,false,false]}},{"ix":151,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":22,"t":132,"consumerPower":[null,null,null,14362],"outstandingDowntime":[false,false,false,false]}},{"ix":152,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":23,"t":138,"consumerPower":[null,null,null,14362],"outstandingDowntime":[false,false,false,false]}},{"ix":153,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":24,"t":144,"consumerPower":[null,null,null,14362],"outstandingDowntime":[false,false,false,false]}},{"ix":154,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":155,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":18,"t":108,"tokens":[27519,8605,22196,9761],"delegation":[26519,7605,21196,8761],"delegatorTokens":9999999895111,"jailed":[1000000000000029,1000000000000035,1000000000000035,null],"status":["unbonding","unbonding","unbonding","bonded"]}},{"ix":156,"action":{"kind":"Deliver","chain":"consumer","numPackets":5},"partialState":{"h":24,"t":144,"consumerPower":[null,null,null,14362],"outstandingDowntime":[false,false,false,false]}},{"ix":157,"action":{"kind":"Delegate","val":0,"amt":2124},"partialState":{"h":18,"t":108,"tokens":[29643,8605,22196,9761],"delegation":[28643,7605,21196,8761],"delegatorTokens":9999999892987}},{"ix":158,"action":{"kind":"Delegate","val":3,"amt":3141},"partialState":{"h":18,"t":108,"tokens":[29643,8605,22196,12902],"delegation":[28643,7605,21196,11902],"delegatorTokens":9999999889846}},{"ix":159,"action":{"kind":"Deliver","chain":"provider","numPackets":6},"partialState":{"h":18,"t":108,"tokens":[29643,8605,22196,12902],"delegation":[28643,7605,21196,11902],"delegatorTokens":9999999889846,"jailed":[1000000000000029,1000000000000035,1000000000000035,null],"status":["unbonding","unbonding","unbonding","bonded"]}},{"ix":160,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":25,"t":150,"consumerPower":[null,null,null,9761],"outstandingDowntime":[false,false,false,false]}},{"ix":161,"action":{"kind":"Delegate","val":3,"amt":3494},"partialState":{"h":18,"t":108,"tokens":[29643,8605,22196,16396],"delegation":[28643,7605,21196,15396],"delegatorTokens":9999999886352}},{"ix":162,"action":{"kind":"Deliver","chain":"provider","numPackets":6},"partialState":{"h":18,"t":108,"tokens":[29643,8605,22196,16396],"delegation":[28643,7605,21196,15396],"delegatorTokens":9999999886352,"jailed":[1000000000000029,1000000000000035,1000000000000035,null],"status":["unbonding","unbonding","unbonding","bonded"]}},{"ix":163,"action":{"kind":"Deliver","chain":"provider","numPackets":2},"partialState":{"h":18,"t":108,"tokens":[29643,8605,22196,16396],"delegation":[28643,7605,21196,15396],"delegatorTokens":9999999886352,"jailed":[1000000000000029,1000000000000035,1000000000000035,null],"status":["unbonding","unbonding","unbonding","bonded"]}},{"ix":164,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":165,"action":{"kind":"Delegate","val":0,"amt":4144},"partialState":{"h":18,"t":108,"tokens":[33787,8605,22196,16396],"delegation":[32787,7605,21196,15396],"delegatorTokens":9999999882208}},{"ix":166,"action":{"kind":"Undelegate","val":1,"amt":3403},"partialState":{"h":18,"t":108,"tokens":[33787,5202,22196,16396],"delegation":[32787,4202,21196,15396],"delegatorTokens":9999999882208}},{"ix":167,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":168,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":19,"t":114,"tokens":[33787,5202,22196,16396],"delegation":[32787,4202,21196,15396],"delegatorTokens":9999999887264,"jailed":[1000000000000029,1000000000000035,1000000000000035,null],"status":["unbonding","unbonding","unbonding","bonded"]}},{"ix":169,"action":{"kind":"Delegate","val":1,"amt":3172},"partialState":{"h":19,"t":114,"tokens":[33787,8374,22196,16396],"delegation":[32787,7374,21196,15396],"delegatorTokens":9999999884092}},{"ix":170,"action":{"kind":"Delegate","val":2,"amt":3227},"partialState":{"h":19,"t":114,"tokens":[33787,8374,25423,16396],"delegation":[32787,7374,24423,15396],"delegatorTokens":9999999880865}},{"ix":171,"action":{"kind":"Undelegate","val":1,"amt":3493},"partialState":{"h":19,"t":114,"tokens":[33787,4881,25423,16396],"delegation":[32787,3881,24423,15396],"delegatorTokens":9999999880865}},{"ix":172,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":173,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":174,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":175,"action":{"kind":"Deliver","chain":"provider","numPackets":1},"partialState":{"h":19,"t":114,"tokens":[33787,4881,25423,16396],"delegation":[32787,3881,24423,15396],"delegatorTokens":9999999880865,"jailed":[1000000000000029,1000000000000035,1000000000000035,null],"status":["unbonding","unbonding","unbonding","bonded"]}},{"ix":176,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":26,"t":156,"consumerPower":[null,null,null,9761],"outstandingDowntime":[false,false,false,false]}},{"ix":177,"action":{"kind":"Deliver","chain":"provider","numPackets":2},"partialState":{"h":19,"t":114,"tokens":[33787,4881,25423,16396],"delegation":[32787,3881,24423,15396],"delegatorTokens":9999999880865,"jailed":[1000000000000029,1000000000000035,1000000000000035,null],"status":["unbonding","unbonding","unbonding","bonded"]}},{"ix":178,"action":{"kind":"Delegate","val":1,"amt":2545},"partialState":{"h":19,"t":114,"tokens":[33787,7426,25423,16396],"delegation":[32787,6426,24423,15396],"delegatorTokens":9999999878320}},{"ix":179,"action":{"kind":"Undelegate","val":0,"amt":4394},"partialState":{"h":19,"t":114,"tokens":[29393,7426,25423,16396],"delegation":[28393,6426,24423,15396],"delegatorTokens":9999999878320}},{"ix":180,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":181,"action":{"kind":"Delegate","val":2,"amt":2233},"partialState":{"h":19,"t":114,"tokens":[29393,7426,27656,16396],"delegation":[28393,6426,26656,15396],"delegatorTokens":9999999876087}},{"ix":182,"action":{"kind":"Delegate","val":0,"amt":1970},"partialState":{"h":19,"t":114,"tokens":[31363,7426,27656,16396],"delegation":[30363,6426,26656,15396],"delegatorTokens":9999999874117}},{"ix":183,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":184,"action":{"kind":"Undelegate","val":1,"amt":4012},"partialState":{"h":19,"t":114,"tokens":[31363,3414,27656,16396],"delegation":[30363,2414,26656,15396],"delegatorTokens":9999999874117}},{"ix":185,"action":{"kind":"Deliver","chain":"consumer","numPackets":3},"partialState":{"h":26,"t":156,"consumerPower":[null,null,null,9761],"outstandingDowntime":[false,false,false,false]}},{"ix":186,"action":{"kind":"Undelegate","val":2,"amt":3509},"partialState":{"h":19,"t":114,"tokens":[31363,3414,24147,16396],"delegation":[30363,2414,23147,15396],"delegatorTokens":9999999874117}},{"ix":187,"action":{"kind":"Deliver","chain":"consumer","numPackets":1},"partialState":{"h":26,"t":156,"consumerPower":[null,null,null,9761],"outstandingDowntime":[false,false,false,false]}},{"ix":188,"action":{"kind":"Delegate","val":3,"amt":2749},"partialState":{"h":19,"t":114,"tokens":[31363,3414,24147,19145],"delegation":[30363,2414,23147,18145],"delegatorTokens":9999999871368}},{"ix":189,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":20,"t":120,"tokens":[31363,3414,24147,19145],"delegation":[30363,2414,23147,18145],"delegatorTokens":9999999879049,"jailed":[1000000000000029,1000000000000035,1000000000000035,null],"status":["unbonded","unbonded","unbonded","bonded"]}},{"ix":190,"action":{"kind":"Delegate","val":1,"amt":3191},"partialState":{"h":20,"t":120,"tokens":[31363,6605,24147,19145],"delegation":[30363,5605,23147,18145],"delegatorTokens":9999999875858}},{"ix":191,"action":{"kind":"Delegate","val":2,"amt":2798},"partialState":{"h":20,"t":120,"tokens":[31363,6605,26945,19145],"delegation":[30363,5605,25945,18145],"delegatorTokens":9999999873060}},{"ix":192,"action":{"kind":"Deliver","chain":"provider","numPackets":3},"partialState":{"h":20,"t":120,"tokens":[31363,6605,26945,19145],"delegation":[30363,5605,25945,18145],"delegatorTokens":9999999873060,"jailed":[1000000000000029,1000000000000035,1000000000000035,null],"status":["unbonded","unbonded","unbonded","bonded"]}},{"ix":193,"action":{"kind":"Delegate","val":0,"amt":1382},"partialState":{"h":20,"t":120,"tokens":[32745,6605,26945,19145],"delegation":[31745,5605,25945,18145],"delegatorTokens":9999999871678}},{"ix":194,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":195,"action":{"kind":"Undelegate","val":3,"amt":2693},"partialState":{"h":20,"t":120,"tokens":[32745,6605,26945,16452],"delegation":[31745,5605,25945,15452],"delegatorTokens":9999999871678}},{"ix":196,"action":{"kind":"Undelegate","val":0,"amt":3133},"partialState":{"h":20,"t":120,"tokens":[29612,6605,26945,16452],"delegation":[28612,5605,25945,15452],"delegatorTokens":9999999871678}},{"ix":197,"action":{"kind":"Delegate","val":2,"amt":3902},"partialState":{"h":20,"t":120,"tokens":[29612,6605,30847,16452],"delegation":[28612,5605,29847,15452],"delegatorTokens":9999999867776}},{"ix":198,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":199,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}}],"events":["send_downtime_slash_request","send_downtime_slash_request","downtime_slash_request_outstanding","send_double_sign_slash_request","downtime_slash_request_outstanding","insufficient_shares","send_downtime_slash_request","more_than_one_third_val_power_change","send_vsc_without_downtime_ack","more_than_one_third_val_power_change","rebond_unval","receive_downtime_slash_request","jail","send_vsc_with_downtime_ack","receive_double_sign_slash_request","consumer_del_val","consumer_del_val","consumer_add_val","consumer_add_val","more_than_one_third_val_power_change","rebond_unval","receive_downtime_slash_request","jail","receive_downtime_slash_request","jail","send_vsc_with_downtime_ack","receive_downtime_slash_ack","consumer_add_val","consumer_del_val","send_vsc_without_downtime_ack","receive_downtime_slash_ack","receive_downtime_slash_ack","insufficient_shares","insufficient_shares","send_vsc_without_downtime_ack","send_vsc_without_downtime_ack","send_vsc_not_because_change","send_vsc_without_downtime_ack","send_vsc_without_downtime_ack","send_vsc_not_because_change","send_vsc_without_downtime_ack","consumer_del_val","consumer_del_val","consumer_add_val","some_undels_expired_but_not_completed","send_vsc_without_downtime_ack","consumer_update_val","send_vsc_without_downtime_ack","consumer_send_maturation","consumer_send_maturation","send_vsc_without_downtime_ack","consumer_update_val","consumer_send_maturation","consumer_send_maturation","consumer_send_maturation","consumer_send_maturation","consumer_send_maturation","consumer_send_maturation","consumer_send_maturation","consumer_update_val","complete_undel_immediate","complete_undel_immediate","complete_undel_immediate","set_unval_hold_false","set_unval_hold_false","set_undel_hold_false","set_undel_hold_false","set_undel_hold_false","set_unval_hold_false","set_undel_hold_false","set_undel_hold_false","send_vsc_without_downtime_ack","complete_unval_in_endblock","complete_unval_in_endblock","complete_unval_in_endblock","complete_undel_in_endblock","set_undel_hold_false","set_undel_hold_false","set_undel_hold_false","set_undel_hold_false","send_vsc_without_downtime_ack"]},{"meta":{"commit":"7ffd0c04e4205cbc9caf212abfe6c59ee43153bf"},"constants":{"P":"provider","C":"consumer","UNBONDING_SECONDS_P":70,"UNBONDING_SECONDS_C":50,"TRUSTING_SECONDS":49,"NUM_VALIDATORS":4,"MAX_VALIDATORS":2,"SLASH_DOUBLESIGN":0,"SLASH_DOWNTIME":0,"JAIL_SECONDS":999999999999999,"BLOCK_SECONDS":6,"INITIAL_DELEGATOR_TOKENS":10000000000000,"DELEGATE_AMT_MIN":1000,"DELEGATE_AMT_MAX":5000,"UNDELEGATE_AMT_MIN":1000,"UNDELEGATE_AMT_MAX":5000,"ISDOWNTIME_PROBABILITY":0.5,"MAX_NUM_PACKETS_FOR_DELIVER":6},"actions":[{"ix":0,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":2,"t":12,"tokens":[5000,4000,3000,2000],"delegation":[4000,3000,2000,1000],"delegatorTokens":10000000000000,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":1,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":3,"t":18,"tokens":[5000,4000,3000,2000],"delegation":[4000,3000,2000,1000],"delegatorTokens":10000000000000,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":2,"action":{"kind":"Delegate","val":3,"amt":4720},"partialState":{"h":3,"t":18,"tokens":[5000,4000,3000,6720],"delegation":[4000,3000,2000,5720],"delegatorTokens":9999999995280}},{"ix":3,"action":{"kind":"Delegate","val":2,"amt":4539},"partialState":{"h":3,"t":18,"tokens":[5000,4000,7539,6720],"delegation":[4000,3000,6539,5720],"delegatorTokens":9999999990741}},{"ix":4,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":5,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":6,"action":{"kind":"ConsumerSlash","val":3,"infractionHeight":0,"isDowntime":true},"partialState":{"h":1,"t":6,"outstandingDowntime":[false,false,false,true]}},{"ix":7,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":4,"t":24,"tokens":[5000,4000,7539,6720],"delegation":[4000,3000,6539,5720],"delegatorTokens":9999999990741,"jailed":[null,null,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":8,"action":{"kind":"Undelegate","val":1,"amt":3457},"partialState":{"h":4,"t":24,"tokens":[5000,4000,7539,6720],"delegation":[4000,3000,6539,5720],"delegatorTokens":9999999990741}},{"ix":9,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":2,"t":12,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,false,false,true]}},{"ix":10,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":5,"t":30,"tokens":[5000,4000,7539,6720],"delegation":[4000,3000,6539,5720],"delegatorTokens":9999999990741,"jailed":[null,null,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":11,"action":{"kind":"ConsumerSlash","val":1,"infractionHeight":1,"isDowntime":true},"partialState":{"h":2,"t":12,"outstandingDowntime":[false,true,false,true]}},{"ix":12,"action":{"kind":"Deliver","chain":"consumer","numPackets":2},"partialState":{"h":2,"t":12,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,true,false,true]}},{"ix":13,"action":{"kind":"Undelegate","val":1,"amt":2588},"partialState":{"h":5,"t":30,"tokens":[5000,1412,7539,6720],"delegation":[4000,412,6539,5720],"delegatorTokens":9999999990741}},{"ix":14,"action":{"kind":"ConsumerSlash","val":3,"infractionHeight":1,"isDowntime":false},"partialState":{"h":2,"t":12,"outstandingDowntime":[false,true,false,true]}},{"ix":15,"action":{"kind":"ConsumerSlash","val":3,"infractionHeight":1,"isDowntime":true},"partialState":{"h":2,"t":12,"outstandingDowntime":[false,true,false,true]}},{"ix":16,"action":{"kind":"Delegate","val":1,"amt":1015},"partialState":{"h":5,"t":30,"tokens":[5000,2427,7539,6720],"delegation":[4000,1427,6539,5720],"delegatorTokens":9999999989726}},{"ix":17,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":3,"t":18,"consumerPower":[null,null,7539,6720],"outstandingDowntime":[false,true,false,true]}},{"ix":18,"action":{"kind":"Deliver","chain":"provider","numPackets":1},"partialState":{"h":5,"t":30,"tokens":[5000,2427,7539,6720],"delegation":[4000,1427,6539,5720],"delegatorTokens":9999999989726,"jailed":[null,null,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":19,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":6,"t":36,"tokens":[5000,2427,7539,6720],"delegation":[4000,1427,6539,5720],"delegatorTokens":9999999989726,"jailed":[null,null,null,1000000000000029],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":20,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":21,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":22,"action":{"kind":"Undelegate","val":2,"amt":1473},"partialState":{"h":6,"t":36,"tokens":[5000,2427,6066,6720],"delegation":[4000,1427,5066,5720],"delegatorTokens":9999999989726}},{"ix":23,"action":{"kind":"Deliver","chain":"provider","numPackets":3},"partialState":{"h":6,"t":36,"tokens":[5000,2427,6066,6720],"delegation":[4000,1427,5066,5720],"delegatorTokens":9999999989726,"jailed":[null,null,null,1000000000000029],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":24,"action":{"kind":"Undelegate","val":1,"amt":1648},"partialState":{"h":6,"t":36,"tokens":[5000,2427,6066,6720],"delegation":[4000,1427,5066,5720],"delegatorTokens":9999999989726}},{"ix":25,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":26,"action":{"kind":"ConsumerSlash","val":2,"infractionHeight":0,"isDowntime":true},"partialState":{"h":3,"t":18,"outstandingDowntime":[false,true,true,true]}},{"ix":27,"action":{"kind":"Deliver","chain":"consumer","numPackets":1},"partialState":{"h":3,"t":18,"consumerPower":[null,null,7539,6720],"outstandingDowntime":[false,true,true,true]}},{"ix":28,"action":{"kind":"Undelegate","val":0,"amt":3205},"partialState":{"h":6,"t":36,"tokens":[1795,2427,6066,6720],"delegation":[795,1427,5066,5720],"delegatorTokens":9999999989726}},{"ix":29,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":4,"t":24,"consumerPower":[null,null,7539,6720],"outstandingDowntime":[false,true,true,true]}},{"ix":30,"action":{"kind":"Delegate","val":1,"amt":3260},"partialState":{"h":6,"t":36,"tokens":[1795,5687,6066,6720],"delegation":[795,4687,5066,5720],"delegatorTokens":9999999986466}},{"ix":31,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":7,"t":42,"tokens":[1795,5687,6066,6720],"delegation":[795,4687,5066,5720],"delegatorTokens":9999999986466,"jailed":[null,null,null,1000000000000029],"status":["unbonding","bonded","bonded","unbonding"]}},{"ix":32,"action":{"kind":"Delegate","val":0,"amt":3115},"partialState":{"h":7,"t":42,"tokens":[4910,5687,6066,6720],"delegation":[3910,4687,5066,5720],"delegatorTokens":9999999983351}},{"ix":33,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":8,"t":48,"tokens":[4910,5687,6066,6720],"delegation":[3910,4687,5066,5720],"delegatorTokens":9999999983351,"jailed":[null,null,null,1000000000000029],"status":["unbonding","bonded","bonded","unbonding"]}},{"ix":34,"action":{"kind":"Deliver","chain":"consumer","numPackets":5},"partialState":{"h":4,"t":24,"consumerPower":[null,null,7539,6720],"outstandingDowntime":[false,true,true,false]}},{"ix":35,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":5,"t":30,"consumerPower":[null,5687,6066,null],"outstandingDowntime":[false,true,true,false]}},{"ix":36,"action":{"kind":"Deliver","chain":"consumer","numPackets":3},"partialState":{"h":5,"t":30,"consumerPower":[null,5687,6066,null],"outstandingDowntime":[false,true,true,false]}},{"ix":37,"action":{"kind":"Undelegate","val":0,"amt":3088},"partialState":{"h":8,"t":48,"tokens":[1822,5687,6066,6720],"delegation":[822,4687,5066,5720],"delegatorTokens":9999999983351}},{"ix":38,"action":{"kind":"Undelegate","val":2,"amt":1999},"partialState":{"h":8,"t":48,"tokens":[1822,5687,4067,6720],"delegation":[822,4687,3067,5720],"delegatorTokens":9999999983351}},{"ix":39,"action":{"kind":"Delegate","val":1,"amt":4552},"partialState":{"h":8,"t":48,"tokens":[1822,10239,4067,6720],"delegation":[822,9239,3067,5720],"delegatorTokens":9999999978799}},{"ix":40,"action":{"kind":"Undelegate","val":0,"amt":1148},"partialState":{"h":8,"t":48,"tokens":[1822,10239,4067,6720],"delegation":[822,9239,3067,5720],"delegatorTokens":9999999978799}},{"ix":41,"action":{"kind":"Undelegate","val":1,"amt":1896},"partialState":{"h":8,"t":48,"tokens":[1822,8343,4067,6720],"delegation":[822,7343,3067,5720],"delegatorTokens":9999999978799}},{"ix":42,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":9,"t":54,"tokens":[1822,8343,4067,6720],"delegation":[822,7343,3067,5720],"delegatorTokens":9999999978799,"jailed":[null,null,null,1000000000000029],"status":["unbonding","bonded","bonded","unbonding"]}},{"ix":43,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":6,"t":36,"consumerPower":[null,5687,6066,null],"outstandingDowntime":[false,true,true,false]}},{"ix":44,"action":{"kind":"Deliver","chain":"provider","numPackets":3},"partialState":{"h":9,"t":54,"tokens":[1822,8343,4067,6720],"delegation":[822,7343,3067,5720],"delegatorTokens":9999999978799,"jailed":[null,null,null,1000000000000029],"status":["unbonding","bonded","bonded","unbonding"]}},{"ix":45,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":46,"action":{"kind":"Undelegate","val":2,"amt":4949},"partialState":{"h":9,"t":54,"tokens":[1822,8343,4067,6720],"delegation":[822,7343,3067,5720],"delegatorTokens":9999999978799}},{"ix":47,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":48,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":49,"action":{"kind":"Deliver","chain":"provider","numPackets":2},"partialState":{"h":9,"t":54,"tokens":[1822,8343,4067,6720],"delegation":[822,7343,3067,5720],"delegatorTokens":9999999978799,"jailed":[null,null,null,1000000000000029],"status":["unbonding","bonded","bonded","unbonding"]}},{"ix":50,"action":{"kind":"Deliver","chain":"consumer","numPackets":4},"partialState":{"h":6,"t":36,"consumerPower":[null,5687,6066,null],"outstandingDowntime":[false,true,true,false]}},{"ix":51,"action":{"kind":"Deliver","chain":"provider","numPackets":5},"partialState":{"h":9,"t":54,"tokens":[1822,8343,4067,6720],"delegation":[822,7343,3067,5720],"delegatorTokens":9999999978799,"jailed":[null,null,null,1000000000000029],"status":["unbonding","bonded","bonded","unbonding"]}},{"ix":52,"action":{"kind":"Undelegate","val":1,"amt":4330},"partialState":{"h":9,"t":54,"tokens":[1822,4013,4067,6720],"delegation":[822,3013,3067,5720],"delegatorTokens":9999999978799}},{"ix":53,"action":{"kind":"Deliver","chain":"consumer","numPackets":2},"partialState":{"h":6,"t":36,"consumerPower":[null,5687,6066,null],"outstandingDowntime":[false,true,true,false]}},{"ix":54,"action":{"kind":"Delegate","val":1,"amt":4458},"partialState":{"h":9,"t":54,"tokens":[1822,8471,4067,6720],"delegation":[822,7471,3067,5720],"delegatorTokens":9999999974341}},{"ix":55,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":10,"t":60,"tokens":[1822,8471,4067,6720],"delegation":[822,7471,3067,5720],"delegatorTokens":9999999974341,"jailed":[null,1000000000000053,1000000000000053,1000000000000029],"status":["unbonding","bonded","bonded","unbonding"]}},{"ix":56,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":7,"t":42,"consumerPower":[null,5687,6066,null],"outstandingDowntime":[false,true,true,false]}},{"ix":57,"action":{"kind":"Deliver","chain":"consumer","numPackets":4},"partialState":{"h":7,"t":42,"consumerPower":[null,5687,6066,null],"outstandingDowntime":[false,true,true,false]}},{"ix":58,"action":{"kind":"Deliver","chain":"consumer","numPackets":3},"partialState":{"h":7,"t":42,"consumerPower":[null,5687,6066,null],"outstandingDowntime":[false,true,true,false]}},{"ix":59,"action":{"kind":"Delegate","val":0,"amt":2907},"partialState":{"h":10,"t":60,"tokens":[4729,8471,4067,6720],"delegation":[3729,7471,3067,5720],"delegatorTokens":9999999971434}},{"ix":60,"action":{"kind":"Delegate","val":0,"amt":1959},"partialState":{"h":10,"t":60,"tokens":[6688,8471,4067,6720],"delegation":[5688,7471,3067,5720],"delegatorTokens":9999999969475}},{"ix":61,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":11,"t":66,"tokens":[6688,8471,4067,6720],"delegation":[5688,7471,3067,5720],"delegatorTokens":9999999969475,"jailed":[null,1000000000000053,1000000000000053,1000000000000029],"status":["bonded","unbonding","unbonding","unbonding"]}},{"ix":62,"action":{"kind":"Delegate","val":1,"amt":3441},"partialState":{"h":11,"t":66,"tokens":[6688,11912,4067,6720],"delegation":[5688,10912,3067,5720],"delegatorTokens":9999999966034}},{"ix":63,"action":{"kind":"Delegate","val":0,"amt":4318},"partialState":{"h":11,"t":66,"tokens":[11006,11912,4067,6720],"delegation":[10006,10912,3067,5720],"delegatorTokens":9999999961716}},{"ix":64,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":8,"t":48,"consumerPower":[null,8343,4067,null],"outstandingDowntime":[false,true,true,false]}},{"ix":65,"action":{"kind":"Deliver","chain":"consumer","numPackets":5},"partialState":{"h":8,"t":48,"consumerPower":[null,8343,4067,null],"outstandingDowntime":[false,false,false,false]}},{"ix":66,"action":{"kind":"Delegate","val":1,"amt":1661},"partialState":{"h":11,"t":66,"tokens":[11006,13573,4067,6720],"delegation":[10006,12573,3067,5720],"delegatorTokens":9999999960055}},{"ix":67,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":9,"t":54,"consumerPower":[null,8471,4067,null],"outstandingDowntime":[false,false,false,false]}},{"ix":68,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":69,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":70,"action":{"kind":"Undelegate","val":0,"amt":1406},"partialState":{"h":11,"t":66,"tokens":[9600,13573,4067,6720],"delegation":[8600,12573,3067,5720],"delegatorTokens":9999999960055}},{"ix":71,"action":{"kind":"Deliver","chain":"consumer","numPackets":1},"partialState":{"h":9,"t":54,"consumerPower":[null,8471,4067,null],"outstandingDowntime":[false,false,false,false]}},{"ix":72,"action":{"kind":"Delegate","val":1,"amt":4529},"partialState":{"h":11,"t":66,"tokens":[9600,18102,4067,6720],"delegation":[8600,17102,3067,5720],"delegatorTokens":9999999955526}},{"ix":73,"action":{"kind":"Undelegate","val":3,"amt":3159},"partialState":{"h":11,"t":66,"tokens":[9600,18102,4067,3561],"delegation":[8600,17102,3067,2561],"delegatorTokens":9999999955526}},{"ix":74,"action":{"kind":"Delegate","val":1,"amt":3406},"partialState":{"h":11,"t":66,"tokens":[9600,21508,4067,3561],"delegation":[8600,20508,3067,2561],"delegatorTokens":9999999952120}},{"ix":75,"action":{"kind":"Undelegate","val":3,"amt":3864},"partialState":{"h":11,"t":66,"tokens":[9600,21508,4067,3561],"delegation":[8600,20508,3067,2561],"delegatorTokens":9999999952120}},{"ix":76,"action":{"kind":"Delegate","val":2,"amt":3583},"partialState":{"h":11,"t":66,"tokens":[9600,21508,7650,3561],"delegation":[8600,20508,6650,2561],"delegatorTokens":9999999948537}},{"ix":77,"action":{"kind":"Delegate","val":1,"amt":3862},"partialState":{"h":11,"t":66,"tokens":[9600,25370,7650,3561],"delegation":[8600,24370,6650,2561],"delegatorTokens":9999999944675}},{"ix":78,"action":{"kind":"Undelegate","val":2,"amt":4828},"partialState":{"h":11,"t":66,"tokens":[9600,25370,2822,3561],"delegation":[8600,24370,1822,2561],"delegatorTokens":9999999944675}},{"ix":79,"action":{"kind":"Deliver","chain":"provider","numPackets":1},"partialState":{"h":11,"t":66,"tokens":[9600,25370,2822,3561],"delegation":[8600,24370,1822,2561],"delegatorTokens":9999999944675,"jailed":[null,1000000000000053,1000000000000053,1000000000000029],"status":["bonded","unbonding","unbonding","unbonding"]}},{"ix":80,"action":{"kind":"Delegate","val":1,"amt":1285},"partialState":{"h":11,"t":66,"tokens":[9600,26655,2822,3561],"delegation":[8600,25655,1822,2561],"delegatorTokens":9999999943390}},{"ix":81,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":82,"action":{"kind":"Undelegate","val":2,"amt":4235},"partialState":{"h":11,"t":66,"tokens":[9600,26655,2822,3561],"delegation":[8600,25655,1822,2561],"delegatorTokens":9999999943390}},{"ix":83,"action":{"kind":"Deliver","chain":"provider","numPackets":5},"partialState":{"h":11,"t":66,"tokens":[9600,26655,2822,3561],"delegation":[8600,25655,1822,2561],"delegatorTokens":9999999943390,"jailed":[null,1000000000000053,1000000000000053,1000000000000029],"status":["bonded","unbonding","unbonding","unbonding"]}},{"ix":84,"action":{"kind":"Deliver","chain":"consumer","numPackets":3},"partialState":{"h":9,"t":54,"consumerPower":[null,8471,4067,null],"outstandingDowntime":[false,false,false,false]}},{"ix":85,"action":{"kind":"Delegate","val":3,"amt":4084},"partialState":{"h":11,"t":66,"tokens":[9600,26655,2822,7645],"delegation":[8600,25655,1822,6645],"delegatorTokens":9999999939306}},{"ix":86,"action":{"kind":"Deliver","chain":"consumer","numPackets":1},"partialState":{"h":9,"t":54,"consumerPower":[null,8471,4067,null],"outstandingDowntime":[false,false,false,false]}},{"ix":87,"action":{"kind":"Undelegate","val":0,"amt":2411},"partialState":{"h":11,"t":66,"tokens":[7189,26655,2822,7645],"delegation":[6189,25655,1822,6645],"delegatorTokens":9999999939306}},{"ix":88,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":12,"t":72,"tokens":[7189,26655,2822,7645],"delegation":[6189,25655,1822,6645],"delegatorTokens":9999999939306,"jailed":[null,1000000000000053,1000000000000053,1000000000000029],"status":["bonded","unbonding","unbonding","unbonding"]}},{"ix":89,"action":{"kind":"Deliver","chain":"provider","numPackets":4},"partialState":{"h":12,"t":72,"tokens":[7189,26655,2822,7645],"delegation":[6189,25655,1822,6645],"delegatorTokens":9999999939306,"jailed":[null,1000000000000053,1000000000000053,1000000000000029],"status":["bonded","unbonding","unbonding","unbonding"]}},{"ix":90,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":13,"t":78,"tokens":[7189,26655,2822,7645],"delegation":[6189,25655,1822,6645],"delegatorTokens":9999999939306,"jailed":[null,1000000000000053,1000000000000053,1000000000000029],"status":["bonded","unbonding","unbonding","unbonding"]}},{"ix":91,"action":{"kind":"Deliver","chain":"consumer","numPackets":3},"partialState":{"h":9,"t":54,"consumerPower":[null,8471,4067,null],"outstandingDowntime":[false,false,false,false]}},{"ix":92,"action":{"kind":"Undelegate","val":0,"amt":4619},"partialState":{"h":13,"t":78,"tokens":[2570,26655,2822,7645],"delegation":[1570,25655,1822,6645],"delegatorTokens":9999999939306}},{"ix":93,"action":{"kind":"Delegate","val":1,"amt":2619},"partialState":{"h":13,"t":78,"tokens":[2570,29274,2822,7645],"delegation":[1570,28274,1822,6645],"delegatorTokens":9999999936687}},{"ix":94,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":14,"t":84,"tokens":[2570,29274,2822,7645],"delegation":[1570,28274,1822,6645],"delegatorTokens":9999999936687,"jailed":[null,1000000000000053,1000000000000053,1000000000000029],"status":["bonded","unbonding","unbonding","unbonding"]}},{"ix":95,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":96,"action":{"kind":"Undelegate","val":0,"amt":1472},"partialState":{"h":14,"t":84,"tokens":[1098,29274,2822,7645],"delegation":[98,28274,1822,6645],"delegatorTokens":9999999936687}},{"ix":97,"action":{"kind":"Undelegate","val":3,"amt":3031},"partialState":{"h":14,"t":84,"tokens":[1098,29274,2822,4614],"delegation":[98,28274,1822,3614],"delegatorTokens":9999999936687}},{"ix":98,"action":{"kind":"Delegate","val":0,"amt":1143},"partialState":{"h":14,"t":84,"tokens":[2241,29274,2822,4614],"delegation":[1241,28274,1822,3614],"delegatorTokens":9999999935544}},{"ix":99,"action":{"kind":"Delegate","val":0,"amt":1547},"partialState":{"h":14,"t":84,"tokens":[3788,29274,2822,4614],"delegation":[2788,28274,1822,3614],"delegatorTokens":9999999933997}},{"ix":100,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":15,"t":90,"tokens":[3788,29274,2822,4614],"delegation":[2788,28274,1822,3614],"delegatorTokens":9999999933997,"jailed":[null,1000000000000053,1000000000000053,1000000000000029],"status":["bonded","unbonding","unbonding","unbonding"]}},{"ix":101,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":102,"action":{"kind":"Delegate","val":1,"amt":4772},"partialState":{"h":15,"t":90,"tokens":[3788,34046,2822,4614],"delegation":[2788,33046,1822,3614],"delegatorTokens":9999999929225}},{"ix":103,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":104,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":10,"t":60,"consumerPower":[7189,null,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":105,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":106,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":11,"t":66,"consumerPower":[7189,null,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":107,"action":{"kind":"Undelegate","val":1,"amt":4347},"partialState":{"h":15,"t":90,"tokens":[3788,29699,2822,4614],"delegation":[2788,28699,1822,3614],"delegatorTokens":9999999929225}},{"ix":108,"action":{"kind":"Deliver","chain":"consumer","numPackets":2},"partialState":{"h":11,"t":66,"consumerPower":[7189,null,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":109,"action":{"kind":"Undelegate","val":0,"amt":3708},"partialState":{"h":15,"t":90,"tokens":[3788,29699,2822,4614],"delegation":[2788,28699,1822,3614],"delegatorTokens":9999999929225}},{"ix":110,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":16,"t":96,"tokens":[3788,29699,2822,4614],"delegation":[2788,28699,1822,3614],"delegatorTokens":9999999929225,"jailed":[null,1000000000000053,1000000000000053,1000000000000029],"status":["bonded","unbonding","unbonding","unbonding"]}},{"ix":111,"action":{"kind":"Delegate","val":3,"amt":3522},"partialState":{"h":16,"t":96,"tokens":[3788,29699,2822,8136],"delegation":[2788,28699,1822,7136],"delegatorTokens":9999999925703}},{"ix":112,"action":{"kind":"Delegate","val":0,"amt":3835},"partialState":{"h":16,"t":96,"tokens":[7623,29699,2822,8136],"delegation":[6623,28699,1822,7136],"delegatorTokens":9999999921868}},{"ix":113,"action":{"kind":"Undelegate","val":1,"amt":4344},"partialState":{"h":16,"t":96,"tokens":[7623,25355,2822,8136],"delegation":[6623,24355,1822,7136],"delegatorTokens":9999999921868}},{"ix":114,"action":{"kind":"Deliver","chain":"consumer","numPackets":1},"partialState":{"h":11,"t":66,"consumerPower":[7189,null,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":115,"action":{"kind":"Delegate","val":3,"amt":2714},"partialState":{"h":16,"t":96,"tokens":[7623,25355,2822,10850],"delegation":[6623,24355,1822,9850],"delegatorTokens":9999999919154}},{"ix":116,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":117,"action":{"kind":"Undelegate","val":2,"amt":4548},"partialState":{"h":16,"t":96,"tokens":[7623,25355,2822,10850],"delegation":[6623,24355,1822,9850],"delegatorTokens":9999999919154}},{"ix":118,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":119,"action":{"kind":"Deliver","chain":"provider","numPackets":6},"partialState":{"h":16,"t":96,"tokens":[7623,25355,2822,10850],"delegation":[6623,24355,1822,9850],"delegatorTokens":9999999919154,"jailed":[null,1000000000000053,1000000000000053,1000000000000029],"status":["bonded","unbonding","unbonding","unbonding"]}},{"ix":120,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":17,"t":102,"tokens":[7623,25355,2822,10850],"delegation":[6623,24355,1822,9850],"delegatorTokens":9999999919154,"jailed":[null,1000000000000053,1000000000000053,1000000000000029],"status":["bonded","unbonding","unbonding","unbonding"]}},{"ix":121,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":12,"t":72,"consumerPower":[3788,null,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":122,"action":{"kind":"Deliver","chain":"consumer","numPackets":6},"partialState":{"h":12,"t":72,"consumerPower":[3788,null,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":123,"action":{"kind":"Undelegate","val":1,"amt":4382},"partialState":{"h":17,"t":102,"tokens":[7623,20973,2822,10850],"delegation":[6623,19973,1822,9850],"delegatorTokens":9999999919154}},{"ix":124,"action":{"kind":"Deliver","chain":"provider","numPackets":2},"partialState":{"h":17,"t":102,"tokens":[7623,20973,2822,10850],"delegation":[6623,19973,1822,9850],"delegatorTokens":9999999919154,"jailed":[null,1000000000000053,1000000000000053,1000000000000029],"status":["bonded","unbonding","unbonding","unbonding"]}},{"ix":125,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":13,"t":78,"consumerPower":[3788,null,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":126,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":14,"t":84,"consumerPower":[3788,null,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":127,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":128,"action":{"kind":"Deliver","chain":"provider","numPackets":6},"partialState":{"h":17,"t":102,"tokens":[7623,20973,2822,10850],"delegation":[6623,19973,1822,9850],"delegatorTokens":9999999919154,"jailed":[null,1000000000000053,1000000000000053,1000000000000029],"status":["bonded","unbonding","unbonding","unbonding"]}},{"ix":129,"action":{"kind":"Delegate","val":0,"amt":3272},"partialState":{"h":17,"t":102,"tokens":[10895,20973,2822,10850],"delegation":[9895,19973,1822,9850],"delegatorTokens":9999999915882}},{"ix":130,"action":{"kind":"Deliver","chain":"provider","numPackets":2},"partialState":{"h":17,"t":102,"tokens":[10895,20973,2822,10850],"delegation":[9895,19973,1822,9850],"delegatorTokens":9999999915882,"jailed":[null,1000000000000053,1000000000000053,1000000000000029],"status":["bonded","unbonding","unbonding","unbonding"]}},{"ix":131,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":132,"action":{"kind":"Deliver","chain":"consumer","numPackets":6},"partialState":{"h":14,"t":84,"consumerPower":[3788,null,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":133,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":134,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":18,"t":108,"tokens":[10895,20973,2822,10850],"delegation":[9895,19973,1822,9850],"delegatorTokens":9999999915882,"jailed":[null,1000000000000053,1000000000000053,1000000000000029],"status":["bonded","unbonding","unbonding","unbonding"]}},{"ix":135,"action":{"kind":"Undelegate","val":0,"amt":4721},"partialState":{"h":18,"t":108,"tokens":[6174,20973,2822,10850],"delegation":[5174,19973,1822,9850],"delegatorTokens":9999999915882}},{"ix":136,"action":{"kind":"Deliver","chain":"provider","numPackets":3},"partialState":{"h":18,"t":108,"tokens":[6174,20973,2822,10850],"delegation":[5174,19973,1822,9850],"delegatorTokens":9999999915882,"jailed":[null,1000000000000053,1000000000000053,1000000000000029],"status":["bonded","unbonding","unbonding","unbonding"]}},{"ix":137,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":138,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":15,"t":90,"consumerPower":[3788,null,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":139,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":140,"action":{"kind":"Delegate","val":0,"amt":1712},"partialState":{"h":18,"t":108,"tokens":[7886,20973,2822,10850],"delegation":[6886,19973,1822,9850],"delegatorTokens":9999999914170}},{"ix":141,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":142,"action":{"kind":"Deliver","chain":"provider","numPackets":5},"partialState":{"h":18,"t":108,"tokens":[7886,20973,2822,10850],"delegation":[6886,19973,1822,9850],"delegatorTokens":9999999914170,"jailed":[null,1000000000000053,1000000000000053,1000000000000029],"status":["bonded","unbonding","unbonding","unbonding"]}},{"ix":143,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":144,"action":{"kind":"Undelegate","val":1,"amt":3764},"partialState":{"h":18,"t":108,"tokens":[7886,17209,2822,10850],"delegation":[6886,16209,1822,9850],"delegatorTokens":9999999914170}},{"ix":145,"action":{"kind":"Deliver","chain":"consumer","numPackets":2},"partialState":{"h":15,"t":90,"consumerPower":[3788,null,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":146,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":147,"action":{"kind":"Undelegate","val":2,"amt":2830},"partialState":{"h":18,"t":108,"tokens":[7886,17209,2822,10850],"delegation":[6886,16209,1822,9850],"delegatorTokens":9999999914170}},{"ix":148,"action":{"kind":"Delegate","val":2,"amt":1779},"partialState":{"h":18,"t":108,"tokens":[7886,17209,4601,10850],"delegation":[6886,16209,3601,9850],"delegatorTokens":9999999912391}},{"ix":149,"action":{"kind":"Delegate","val":3,"amt":4424},"partialState":{"h":18,"t":108,"tokens":[7886,17209,4601,15274],"delegation":[6886,16209,3601,14274],"delegatorTokens":9999999907967}},{"ix":150,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":151,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":152,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":16,"t":96,"consumerPower":[7623,null,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":153,"action":{"kind":"Delegate","val":3,"amt":4751},"partialState":{"h":18,"t":108,"tokens":[7886,17209,4601,20025],"delegation":[6886,16209,3601,19025],"delegatorTokens":9999999903216}},{"ix":154,"action":{"kind":"Undelegate","val":3,"amt":4492},"partialState":{"h":18,"t":108,"tokens":[7886,17209,4601,15533],"delegation":[6886,16209,3601,14533],"delegatorTokens":9999999903216}},{"ix":155,"action":{"kind":"Deliver","chain":"provider","numPackets":1},"partialState":{"h":18,"t":108,"tokens":[7886,17209,4601,15533],"delegation":[6886,16209,3601,14533],"delegatorTokens":9999999903216,"jailed":[null,1000000000000053,1000000000000053,1000000000000029],"status":["bonded","unbonding","unbonding","unbonding"]}},{"ix":156,"action":{"kind":"Deliver","chain":"provider","numPackets":2},"partialState":{"h":18,"t":108,"tokens":[7886,17209,4601,15533],"delegation":[6886,16209,3601,14533],"delegatorTokens":9999999903216,"jailed":[null,1000000000000053,1000000000000053,1000000000000029],"status":["bonded","unbonding","unbonding","unbonding"]}},{"ix":157,"action":{"kind":"Deliver","chain":"provider","numPackets":5},"partialState":{"h":18,"t":108,"tokens":[7886,17209,4601,15533],"delegation":[6886,16209,3601,14533],"delegatorTokens":9999999903216,"jailed":[null,1000000000000053,1000000000000053,1000000000000029],"status":["bonded","unbonding","unbonding","unbonding"]}},{"ix":158,"action":{"kind":"Delegate","val":0,"amt":3053},"partialState":{"h":18,"t":108,"tokens":[10939,17209,4601,15533],"delegation":[9939,16209,3601,14533],"delegatorTokens":9999999900163}},{"ix":159,"action":{"kind":"Deliver","chain":"consumer","numPackets":3},"partialState":{"h":16,"t":96,"consumerPower":[7623,null,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":160,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":17,"t":102,"consumerPower":[7623,null,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":161,"action":{"kind":"Deliver","chain":"consumer","numPackets":1},"partialState":{"h":17,"t":102,"consumerPower":[7623,null,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":162,"action":{"kind":"Deliver","chain":"provider","numPackets":2},"partialState":{"h":18,"t":108,"tokens":[10939,17209,4601,15533],"delegation":[9939,16209,3601,14533],"delegatorTokens":9999999900163,"jailed":[null,1000000000000053,1000000000000053,1000000000000029],"status":["bonded","unbonding","unbonding","unbonding"]}},{"ix":163,"action":{"kind":"Delegate","val":1,"amt":2259},"partialState":{"h":18,"t":108,"tokens":[10939,19468,4601,15533],"delegation":[9939,18468,3601,14533],"delegatorTokens":9999999897904}},{"ix":164,"action":{"kind":"Undelegate","val":1,"amt":2975},"partialState":{"h":18,"t":108,"tokens":[10939,16493,4601,15533],"delegation":[9939,15493,3601,14533],"delegatorTokens":9999999897904}},{"ix":165,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":19,"t":114,"tokens":[10939,16493,4601,15533],"delegation":[9939,15493,3601,14533],"delegatorTokens":9999999905170,"jailed":[null,1000000000000053,1000000000000053,1000000000000029],"status":["bonded","unbonding","unbonding","unbonding"]}},{"ix":166,"action":{"kind":"Undelegate","val":3,"amt":3106},"partialState":{"h":19,"t":114,"tokens":[10939,16493,4601,12427],"delegation":[9939,15493,3601,11427],"delegatorTokens":9999999905170}},{"ix":167,"action":{"kind":"Delegate","val":1,"amt":4750},"partialState":{"h":19,"t":114,"tokens":[10939,21243,4601,12427],"delegation":[9939,20243,3601,11427],"delegatorTokens":9999999900420}},{"ix":168,"action":{"kind":"Delegate","val":2,"amt":4065},"partialState":{"h":19,"t":114,"tokens":[10939,21243,8666,12427],"delegation":[9939,20243,7666,11427],"delegatorTokens":9999999896355}},{"ix":169,"action":{"kind":"Delegate","val":0,"amt":1516},"partialState":{"h":19,"t":114,"tokens":[12455,21243,8666,12427],"delegation":[11455,20243,7666,11427],"delegatorTokens":9999999894839}},{"ix":170,"action":{"kind":"Undelegate","val":2,"amt":2830},"partialState":{"h":19,"t":114,"tokens":[12455,21243,5836,12427],"delegation":[11455,20243,4836,11427],"delegatorTokens":9999999894839}},{"ix":171,"action":{"kind":"Undelegate","val":1,"amt":3367},"partialState":{"h":19,"t":114,"tokens":[12455,17876,5836,12427],"delegation":[11455,16876,4836,11427],"delegatorTokens":9999999894839}},{"ix":172,"action":{"kind":"Undelegate","val":2,"amt":2901},"partialState":{"h":19,"t":114,"tokens":[12455,17876,2935,12427],"delegation":[11455,16876,1935,11427],"delegatorTokens":9999999894839}},{"ix":173,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":174,"action":{"kind":"Deliver","chain":"provider","numPackets":2},"partialState":{"h":19,"t":114,"tokens":[12455,17876,2935,12427],"delegation":[11455,16876,1935,11427],"delegatorTokens":9999999894839,"jailed":[null,1000000000000053,1000000000000053,1000000000000029],"status":["bonded","unbonding","unbonding","unbonding"]}},{"ix":175,"action":{"kind":"Delegate","val":0,"amt":1052},"partialState":{"h":19,"t":114,"tokens":[13507,17876,2935,12427],"delegation":[12507,16876,1935,11427],"delegatorTokens":9999999893787}},{"ix":176,"action":{"kind":"Delegate","val":0,"amt":2431},"partialState":{"h":19,"t":114,"tokens":[15938,17876,2935,12427],"delegation":[14938,16876,1935,11427],"delegatorTokens":9999999891356}},{"ix":177,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":178,"action":{"kind":"Undelegate","val":0,"amt":2343},"partialState":{"h":19,"t":114,"tokens":[13595,17876,2935,12427],"delegation":[12595,16876,1935,11427],"delegatorTokens":9999999891356}},{"ix":179,"action":{"kind":"Undelegate","val":3,"amt":1706},"partialState":{"h":19,"t":114,"tokens":[13595,17876,2935,10721],"delegation":[12595,16876,1935,9721],"delegatorTokens":9999999891356}},{"ix":180,"action":{"kind":"Deliver","chain":"consumer","numPackets":3},"partialState":{"h":17,"t":102,"consumerPower":[7623,null,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":181,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":18,"t":108,"consumerPower":[10895,null,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":182,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":19,"t":114,"consumerPower":[10895,null,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":183,"action":{"kind":"Deliver","chain":"provider","numPackets":2},"partialState":{"h":19,"t":114,"tokens":[13595,17876,2935,10721],"delegation":[12595,16876,1935,9721],"delegatorTokens":9999999891356,"jailed":[null,1000000000000053,1000000000000053,1000000000000029],"status":["bonded","unbonding","unbonding","unbonding"]}},{"ix":184,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":20,"t":120,"consumerPower":[10895,null,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":185,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":186,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":187,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":20,"t":120,"tokens":[13595,17876,2935,10721],"delegation":[12595,16876,1935,9721],"delegatorTokens":9999999891356,"jailed":[null,1000000000000053,1000000000000053,1000000000000029],"status":["bonded","unbonding","unbonding","unbonded"]}},{"ix":188,"action":{"kind":"Deliver","chain":"consumer","numPackets":6},"partialState":{"h":20,"t":120,"consumerPower":[10895,null,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":189,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":21,"t":126,"tokens":[13595,17876,2935,10721],"delegation":[12595,16876,1935,9721],"delegatorTokens":9999999898339,"jailed":[null,1000000000000053,1000000000000053,1000000000000029],"status":["bonded","unbonding","unbonding","unbonded"]}},{"ix":190,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":22,"t":132,"tokens":[13595,17876,2935,10721],"delegation":[12595,16876,1935,9721],"delegatorTokens":9999999902669,"jailed":[null,1000000000000053,1000000000000053,1000000000000029],"status":["bonded","unbonding","unbonding","unbonded"]}},{"ix":191,"action":{"kind":"Undelegate","val":2,"amt":4652},"partialState":{"h":22,"t":132,"tokens":[13595,17876,2935,10721],"delegation":[12595,16876,1935,9721],"delegatorTokens":9999999902669}},{"ix":192,"action":{"kind":"Delegate","val":1,"amt":3909},"partialState":{"h":22,"t":132,"tokens":[13595,21785,2935,10721],"delegation":[12595,20785,1935,9721],"delegatorTokens":9999999898760}},{"ix":193,"action":{"kind":"Deliver","chain":"provider","numPackets":6},"partialState":{"h":22,"t":132,"tokens":[13595,21785,2935,10721],"delegation":[12595,20785,1935,9721],"delegatorTokens":9999999898760,"jailed":[null,1000000000000053,1000000000000053,1000000000000029],"status":["bonded","unbonding","unbonding","unbonded"]}},{"ix":194,"action":{"kind":"Delegate","val":2,"amt":2044},"partialState":{"h":22,"t":132,"tokens":[13595,21785,4979,10721],"delegation":[12595,20785,3979,9721],"delegatorTokens":9999999896716}},{"ix":195,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":23,"t":138,"tokens":[13595,21785,4979,10721],"delegation":[12595,20785,3979,9721],"delegatorTokens":9999999896716,"jailed":[null,1000000000000053,1000000000000053,1000000000000029],"status":["bonded","unbonding","unbonding","unbonded"]}},{"ix":196,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":24,"t":144,"tokens":[13595,21785,4979,10721],"delegation":[12595,20785,3979,9721],"delegatorTokens":9999999908520,"jailed":[null,1000000000000053,1000000000000053,1000000000000029],"status":["bonded","unbonded","unbonded","unbonded"]}},{"ix":197,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":21,"t":126,"consumerPower":[10939,null,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":198,"action":{"kind":"Delegate","val":0,"amt":2511},"partialState":{"h":24,"t":144,"tokens":[16106,21785,4979,10721],"delegation":[15106,20785,3979,9721],"delegatorTokens":9999999906009}},{"ix":199,"action":{"kind":"Delegate","val":0,"amt":2526},"partialState":{"h":24,"t":144,"tokens":[18632,21785,4979,10721],"delegation":[17632,20785,3979,9721],"delegatorTokens":9999999903483}}],"events":["send_downtime_slash_request","more_than_one_third_val_power_change","send_vsc_without_downtime_ack","insufficient_shares","send_downtime_slash_request","send_double_sign_slash_request","downtime_slash_request_outstanding","consumer_del_val","consumer_del_val","consumer_add_val","consumer_add_val","receive_downtime_slash_request","jail","send_vsc_not_because_change","send_vsc_with_downtime_ack","insufficient_shares","send_downtime_slash_request","more_than_one_third_val_power_change","rebond_unval","send_vsc_without_downtime_ack","receive_downtime_slash_ack","consumer_add_val","consumer_update_val","consumer_del_val","insufficient_shares","send_vsc_without_downtime_ack","receive_double_sign_slash_request","insufficient_shares","receive_downtime_slash_request","jail","receive_downtime_slash_request","jail","send_vsc_with_downtime_ack","more_than_one_third_val_power_change","rebond_unval","send_vsc_without_downtime_ack","consumer_update_val","consumer_update_val","receive_downtime_slash_ack","receive_downtime_slash_ack","consumer_update_val","insufficient_shares","insufficient_shares","send_vsc_without_downtime_ack","send_vsc_without_downtime_ack","send_vsc_without_downtime_ack","consumer_add_val","consumer_del_val","consumer_del_val","insufficient_shares","send_vsc_not_because_change","send_vsc_without_downtime_ack","insufficient_shares","send_vsc_without_downtime_ack","consumer_send_maturation","consumer_update_val","consumer_send_maturation","consumer_send_maturation","some_undels_expired_but_not_completed","send_vsc_without_downtime_ack","insufficient_shares","consumer_update_val","consumer_send_maturation","some_undels_expired_but_not_completed","complete_undel_immediate","complete_undel_immediate","complete_undel_immediate","set_unval_hold_false","send_vsc_without_downtime_ack","consumer_send_maturation","consumer_update_val","consumer_send_maturation","consumer_send_maturation","complete_unval_in_endblock","set_undel_hold_false","set_undel_hold_false","set_undel_hold_false","set_undel_hold_false","send_vsc_without_downtime_ack","complete_undel_in_endblock","complete_undel_in_endblock","insufficient_shares","set_unval_hold_false","set_unval_hold_false","set_undel_hold_false","set_undel_hold_false","set_undel_hold_false","set_undel_hold_false","complete_unval_in_endblock","complete_unval_in_endblock","complete_undel_in_endblock","consumer_send_maturation","consumer_send_maturation","consumer_update_val"]},{"meta":{"commit":"7ffd0c04e4205cbc9caf212abfe6c59ee43153bf"},"constants":{"P":"provider","C":"consumer","UNBONDING_SECONDS_P":70,"UNBONDING_SECONDS_C":50,"TRUSTING_SECONDS":49,"NUM_VALIDATORS":4,"MAX_VALIDATORS":2,"SLASH_DOUBLESIGN":0,"SLASH_DOWNTIME":0,"JAIL_SECONDS":999999999999999,"BLOCK_SECONDS":6,"INITIAL_DELEGATOR_TOKENS":10000000000000,"DELEGATE_AMT_MIN":1000,"DELEGATE_AMT_MAX":5000,"UNDELEGATE_AMT_MIN":1000,"UNDELEGATE_AMT_MAX":5000,"ISDOWNTIME_PROBABILITY":0.5,"MAX_NUM_PACKETS_FOR_DELIVER":6},"actions":[{"ix":0,"action":{"kind":"Deliver","chain":"provider","numPackets":3},"partialState":{"h":1,"t":6,"tokens":[5000,4000,3000,2000],"delegation":[4000,3000,2000,1000],"delegatorTokens":10000000000000,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":1,"action":{"kind":"ConsumerSlash","val":0,"infractionHeight":0,"isDowntime":true},"partialState":{"h":1,"t":6,"outstandingDowntime":[true,false,false,false]}},{"ix":2,"action":{"kind":"Deliver","chain":"consumer","numPackets":2},"partialState":{"h":1,"t":6,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[true,false,false,false]}},{"ix":3,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":2,"t":12,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[true,false,false,false]}},{"ix":4,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":3,"t":18,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[true,false,false,false]}},{"ix":5,"action":{"kind":"Deliver","chain":"provider","numPackets":1},"partialState":{"h":1,"t":6,"tokens":[5000,4000,3000,2000],"delegation":[4000,3000,2000,1000],"delegatorTokens":10000000000000,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":6,"action":{"kind":"Deliver","chain":"consumer","numPackets":3},"partialState":{"h":3,"t":18,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[true,false,false,false]}},{"ix":7,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":4,"t":24,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[true,false,false,false]}},{"ix":8,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":9,"action":{"kind":"Undelegate","val":3,"amt":1162},"partialState":{"h":1,"t":6,"tokens":[5000,4000,3000,2000],"delegation":[4000,3000,2000,1000],"delegatorTokens":10000000000000}},{"ix":10,"action":{"kind":"Undelegate","val":0,"amt":1649},"partialState":{"h":1,"t":6,"tokens":[3351,4000,3000,2000],"delegation":[2351,3000,2000,1000],"delegatorTokens":10000000000000}},{"ix":11,"action":{"kind":"Deliver","chain":"consumer","numPackets":4},"partialState":{"h":4,"t":24,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[true,false,false,false]}},{"ix":12,"action":{"kind":"Delegate","val":0,"amt":3547},"partialState":{"h":1,"t":6,"tokens":[6898,4000,3000,2000],"delegation":[5898,3000,2000,1000],"delegatorTokens":9999999996453}},{"ix":13,"action":{"kind":"Deliver","chain":"provider","numPackets":1},"partialState":{"h":1,"t":6,"tokens":[6898,4000,3000,2000],"delegation":[5898,3000,2000,1000],"delegatorTokens":9999999996453,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":14,"action":{"kind":"Delegate","val":0,"amt":1700},"partialState":{"h":1,"t":6,"tokens":[8598,4000,3000,2000],"delegation":[7598,3000,2000,1000],"delegatorTokens":9999999994753}},{"ix":15,"action":{"kind":"Delegate","val":3,"amt":1715},"partialState":{"h":1,"t":6,"tokens":[8598,4000,3000,3715],"delegation":[7598,3000,2000,2715],"delegatorTokens":9999999993038}},{"ix":16,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":2,"t":12,"tokens":[8598,4000,3000,3715],"delegation":[7598,3000,2000,2715],"delegatorTokens":9999999993038,"jailed":[1000000000000005,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":17,"action":{"kind":"Undelegate","val":0,"amt":3824},"partialState":{"h":2,"t":12,"tokens":[4774,4000,3000,3715],"delegation":[3774,3000,2000,2715],"delegatorTokens":9999999993038}},{"ix":18,"action":{"kind":"Deliver","chain":"consumer","numPackets":6},"partialState":{"h":4,"t":24,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[true,false,false,false]}},{"ix":19,"action":{"kind":"Deliver","chain":"consumer","numPackets":6},"partialState":{"h":4,"t":24,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[true,false,false,false]}},{"ix":20,"action":{"kind":"ConsumerSlash","val":3,"infractionHeight":2,"isDowntime":true},"partialState":{"h":4,"t":24,"outstandingDowntime":[true,false,false,true]}},{"ix":21,"action":{"kind":"Undelegate","val":2,"amt":4450},"partialState":{"h":2,"t":12,"tokens":[4774,4000,3000,3715],"delegation":[3774,3000,2000,2715],"delegatorTokens":9999999993038}},{"ix":22,"action":{"kind":"Undelegate","val":2,"amt":3041},"partialState":{"h":2,"t":12,"tokens":[4774,4000,3000,3715],"delegation":[3774,3000,2000,2715],"delegatorTokens":9999999993038}},{"ix":23,"action":{"kind":"Undelegate","val":1,"amt":2753},"partialState":{"h":2,"t":12,"tokens":[4774,1247,3000,3715],"delegation":[3774,247,2000,2715],"delegatorTokens":9999999993038}},{"ix":24,"action":{"kind":"Undelegate","val":2,"amt":4540},"partialState":{"h":2,"t":12,"tokens":[4774,1247,3000,3715],"delegation":[3774,247,2000,2715],"delegatorTokens":9999999993038}},{"ix":25,"action":{"kind":"ConsumerSlash","val":3,"infractionHeight":2,"isDowntime":true},"partialState":{"h":4,"t":24,"outstandingDowntime":[true,false,false,true]}},{"ix":26,"action":{"kind":"Deliver","chain":"provider","numPackets":5},"partialState":{"h":2,"t":12,"tokens":[4774,1247,3000,3715],"delegation":[3774,247,2000,2715],"delegatorTokens":9999999993038,"jailed":[1000000000000005,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":27,"action":{"kind":"ConsumerSlash","val":2,"infractionHeight":3,"isDowntime":true},"partialState":{"h":4,"t":24,"outstandingDowntime":[true,false,true,true]}},{"ix":28,"action":{"kind":"Delegate","val":1,"amt":4488},"partialState":{"h":2,"t":12,"tokens":[4774,5735,3000,3715],"delegation":[3774,4735,2000,2715],"delegatorTokens":9999999988550}},{"ix":29,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":5,"t":30,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[true,false,true,true]}},{"ix":30,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":31,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":32,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":3,"t":18,"tokens":[4774,5735,3000,3715],"delegation":[3774,4735,2000,2715],"delegatorTokens":9999999988550,"jailed":[1000000000000005,null,null,null],"status":["unbonding","bonded","unbonded","bonded"]}},{"ix":33,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":4,"t":24,"tokens":[4774,5735,3000,3715],"delegation":[3774,4735,2000,2715],"delegatorTokens":9999999988550,"jailed":[1000000000000005,null,null,null],"status":["unbonding","bonded","unbonded","bonded"]}},{"ix":34,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":35,"action":{"kind":"Undelegate","val":0,"amt":3964},"partialState":{"h":4,"t":24,"tokens":[4774,5735,3000,3715],"delegation":[3774,4735,2000,2715],"delegatorTokens":9999999988550}},{"ix":36,"action":{"kind":"Deliver","chain":"consumer","numPackets":1},"partialState":{"h":5,"t":30,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,false,true,true]}},{"ix":37,"action":{"kind":"Deliver","chain":"provider","numPackets":6},"partialState":{"h":4,"t":24,"tokens":[4774,5735,3000,3715],"delegation":[3774,4735,2000,2715],"delegatorTokens":9999999988550,"jailed":[1000000000000005,null,null,null],"status":["unbonding","bonded","unbonded","bonded"]}},{"ix":38,"action":{"kind":"Deliver","chain":"provider","numPackets":6},"partialState":{"h":4,"t":24,"tokens":[4774,5735,3000,3715],"delegation":[3774,4735,2000,2715],"delegatorTokens":9999999988550,"jailed":[1000000000000005,null,null,null],"status":["unbonding","bonded","unbonded","bonded"]}},{"ix":39,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":5,"t":30,"tokens":[4774,5735,3000,3715],"delegation":[3774,4735,2000,2715],"delegatorTokens":9999999988550,"jailed":[1000000000000005,null,null,null],"status":["unbonding","bonded","unbonded","bonded"]}},{"ix":40,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":6,"t":36,"consumerPower":[8598,4000,null,null],"outstandingDowntime":[false,false,true,true]}},{"ix":41,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":6,"t":36,"tokens":[4774,5735,3000,3715],"delegation":[3774,4735,2000,2715],"delegatorTokens":9999999988550,"jailed":[1000000000000005,null,null,null],"status":["unbonding","bonded","unbonded","bonded"]}},{"ix":42,"action":{"kind":"Undelegate","val":3,"amt":2666},"partialState":{"h":6,"t":36,"tokens":[4774,5735,3000,1049],"delegation":[3774,4735,2000,49],"delegatorTokens":9999999988550}},{"ix":43,"action":{"kind":"Undelegate","val":3,"amt":4221},"partialState":{"h":6,"t":36,"tokens":[4774,5735,3000,1049],"delegation":[3774,4735,2000,49],"delegatorTokens":9999999988550}},{"ix":44,"action":{"kind":"Delegate","val":2,"amt":4358},"partialState":{"h":6,"t":36,"tokens":[4774,5735,7358,1049],"delegation":[3774,4735,6358,49],"delegatorTokens":9999999984192}},{"ix":45,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":7,"t":42,"tokens":[4774,5735,7358,1049],"delegation":[3774,4735,6358,49],"delegatorTokens":9999999984192,"jailed":[1000000000000005,null,null,null],"status":["unbonding","bonded","bonded","unbonding"]}},{"ix":46,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":8,"t":48,"tokens":[4774,5735,7358,1049],"delegation":[3774,4735,6358,49],"delegatorTokens":9999999984192,"jailed":[1000000000000005,null,null,null],"status":["unbonding","bonded","bonded","unbonding"]}},{"ix":47,"action":{"kind":"Deliver","chain":"consumer","numPackets":6},"partialState":{"h":6,"t":36,"consumerPower":[8598,4000,null,null],"outstandingDowntime":[false,false,true,true]}},{"ix":48,"action":{"kind":"Deliver","chain":"provider","numPackets":4},"partialState":{"h":8,"t":48,"tokens":[4774,5735,7358,1049],"delegation":[3774,4735,6358,49],"delegatorTokens":9999999984192,"jailed":[1000000000000005,null,null,null],"status":["unbonding","bonded","bonded","unbonding"]}},{"ix":49,"action":{"kind":"Undelegate","val":3,"amt":2004},"partialState":{"h":8,"t":48,"tokens":[4774,5735,7358,1049],"delegation":[3774,4735,6358,49],"delegatorTokens":9999999984192}},{"ix":50,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":51,"action":{"kind":"Undelegate","val":1,"amt":4018},"partialState":{"h":8,"t":48,"tokens":[4774,1717,7358,1049],"delegation":[3774,717,6358,49],"delegatorTokens":9999999984192}},{"ix":52,"action":{"kind":"Deliver","chain":"consumer","numPackets":4},"partialState":{"h":6,"t":36,"consumerPower":[8598,4000,null,null],"outstandingDowntime":[false,false,true,true]}},{"ix":53,"action":{"kind":"Undelegate","val":3,"amt":2738},"partialState":{"h":8,"t":48,"tokens":[4774,1717,7358,1049],"delegation":[3774,717,6358,49],"delegatorTokens":9999999984192}},{"ix":54,"action":{"kind":"Delegate","val":0,"amt":3789},"partialState":{"h":8,"t":48,"tokens":[8563,1717,7358,1049],"delegation":[7563,717,6358,49],"delegatorTokens":9999999980403}},{"ix":55,"action":{"kind":"Delegate","val":1,"amt":3288},"partialState":{"h":8,"t":48,"tokens":[8563,5005,7358,1049],"delegation":[7563,4005,6358,49],"delegatorTokens":9999999977115}},{"ix":56,"action":{"kind":"Delegate","val":1,"amt":3902},"partialState":{"h":8,"t":48,"tokens":[8563,8907,7358,1049],"delegation":[7563,7907,6358,49],"delegatorTokens":9999999973213}},{"ix":57,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":58,"action":{"kind":"Undelegate","val":2,"amt":2175},"partialState":{"h":8,"t":48,"tokens":[8563,8907,5183,1049],"delegation":[7563,7907,4183,49],"delegatorTokens":9999999973213}},{"ix":59,"action":{"kind":"Undelegate","val":2,"amt":3418},"partialState":{"h":8,"t":48,"tokens":[8563,8907,1765,1049],"delegation":[7563,7907,765,49],"delegatorTokens":9999999973213}},{"ix":60,"action":{"kind":"Deliver","chain":"provider","numPackets":6},"partialState":{"h":8,"t":48,"tokens":[8563,8907,1765,1049],"delegation":[7563,7907,765,49],"delegatorTokens":9999999973213,"jailed":[1000000000000005,null,null,null],"status":["unbonding","bonded","bonded","unbonding"]}},{"ix":61,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":62,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":9,"t":54,"tokens":[8563,8907,1765,1049],"delegation":[7563,7907,765,49],"delegatorTokens":9999999973213,"jailed":[1000000000000005,null,1000000000000047,1000000000000047],"status":["unbonding","bonded","bonded","unbonding"]}},{"ix":63,"action":{"kind":"Deliver","chain":"provider","numPackets":6},"partialState":{"h":9,"t":54,"tokens":[8563,8907,1765,1049],"delegation":[7563,7907,765,49],"delegatorTokens":9999999973213,"jailed":[1000000000000005,null,1000000000000047,1000000000000047],"status":["unbonding","bonded","bonded","unbonding"]}},{"ix":64,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":65,"action":{"kind":"Undelegate","val":1,"amt":2450},"partialState":{"h":9,"t":54,"tokens":[8563,6457,1765,1049],"delegation":[7563,5457,765,49],"delegatorTokens":9999999973213}},{"ix":66,"action":{"kind":"Deliver","chain":"provider","numPackets":6},"partialState":{"h":9,"t":54,"tokens":[8563,6457,1765,1049],"delegation":[7563,5457,765,49],"delegatorTokens":9999999973213,"jailed":[1000000000000005,null,1000000000000047,1000000000000047],"status":["unbonding","bonded","bonded","unbonding"]}},{"ix":67,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":7,"t":42,"consumerPower":[null,5735,7358,null],"outstandingDowntime":[false,false,true,true]}},{"ix":68,"action":{"kind":"Delegate","val":0,"amt":4959},"partialState":{"h":9,"t":54,"tokens":[13522,6457,1765,1049],"delegation":[12522,5457,765,49],"delegatorTokens":9999999968254}},{"ix":69,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":10,"t":60,"tokens":[13522,6457,1765,1049],"delegation":[12522,5457,765,49],"delegatorTokens":9999999968254,"jailed":[1000000000000005,null,1000000000000047,1000000000000047],"status":["unbonding","bonded","unbonding","unbonding"]}},{"ix":70,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":11,"t":66,"tokens":[13522,6457,1765,1049],"delegation":[12522,5457,765,49],"delegatorTokens":9999999968254,"jailed":[1000000000000005,null,1000000000000047,1000000000000047],"status":["unbonding","bonded","unbonding","unbonding"]}},{"ix":71,"action":{"kind":"Deliver","chain":"provider","numPackets":3},"partialState":{"h":11,"t":66,"tokens":[13522,6457,1765,1049],"delegation":[12522,5457,765,49],"delegatorTokens":9999999968254,"jailed":[1000000000000005,null,1000000000000047,1000000000000047],"status":["unbonding","bonded","unbonding","unbonding"]}},{"ix":72,"action":{"kind":"Deliver","chain":"provider","numPackets":6},"partialState":{"h":11,"t":66,"tokens":[13522,6457,1765,1049],"delegation":[12522,5457,765,49],"delegatorTokens":9999999968254,"jailed":[1000000000000005,null,1000000000000047,1000000000000047],"status":["unbonding","bonded","unbonding","unbonding"]}},{"ix":73,"action":{"kind":"Delegate","val":2,"amt":1127},"partialState":{"h":11,"t":66,"tokens":[13522,6457,2892,1049],"delegation":[12522,5457,1892,49],"delegatorTokens":9999999967127}},{"ix":74,"action":{"kind":"Delegate","val":0,"amt":2828},"partialState":{"h":11,"t":66,"tokens":[16350,6457,2892,1049],"delegation":[15350,5457,1892,49],"delegatorTokens":9999999964299}},{"ix":75,"action":{"kind":"Delegate","val":1,"amt":2679},"partialState":{"h":11,"t":66,"tokens":[16350,9136,2892,1049],"delegation":[15350,8136,1892,49],"delegatorTokens":9999999961620}},{"ix":76,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":77,"action":{"kind":"Deliver","chain":"consumer","numPackets":2},"partialState":{"h":7,"t":42,"consumerPower":[null,5735,7358,null],"outstandingDowntime":[false,false,false,false]}},{"ix":78,"action":{"kind":"Delegate","val":1,"amt":1957},"partialState":{"h":11,"t":66,"tokens":[16350,11093,2892,1049],"delegation":[15350,10093,1892,49],"delegatorTokens":9999999959663}},{"ix":79,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":8,"t":48,"consumerPower":[null,6457,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":80,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":81,"action":{"kind":"Deliver","chain":"provider","numPackets":5},"partialState":{"h":11,"t":66,"tokens":[16350,11093,2892,1049],"delegation":[15350,10093,1892,49],"delegatorTokens":9999999959663,"jailed":[1000000000000005,null,1000000000000047,1000000000000047],"status":["unbonding","bonded","unbonding","unbonding"]}},{"ix":82,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":9,"t":54,"consumerPower":[null,6457,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":83,"action":{"kind":"Deliver","chain":"provider","numPackets":4},"partialState":{"h":11,"t":66,"tokens":[16350,11093,2892,1049],"delegation":[15350,10093,1892,49],"delegatorTokens":9999999959663,"jailed":[1000000000000005,null,1000000000000047,1000000000000047],"status":["unbonding","bonded","unbonding","unbonding"]}},{"ix":84,"action":{"kind":"Undelegate","val":3,"amt":4548},"partialState":{"h":11,"t":66,"tokens":[16350,11093,2892,1049],"delegation":[15350,10093,1892,49],"delegatorTokens":9999999959663}},{"ix":85,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":10,"t":60,"consumerPower":[null,6457,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":86,"action":{"kind":"Delegate","val":2,"amt":1220},"partialState":{"h":11,"t":66,"tokens":[16350,11093,4112,1049],"delegation":[15350,10093,3112,49],"delegatorTokens":9999999958443}},{"ix":87,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":88,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":89,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":90,"action":{"kind":"Deliver","chain":"provider","numPackets":1},"partialState":{"h":11,"t":66,"tokens":[16350,11093,4112,1049],"delegation":[15350,10093,3112,49],"delegatorTokens":9999999958443,"jailed":[1000000000000005,null,1000000000000047,1000000000000047],"status":["unbonding","bonded","unbonding","unbonding"]}},{"ix":91,"action":{"kind":"Delegate","val":3,"amt":4552},"partialState":{"h":11,"t":66,"tokens":[16350,11093,4112,5601],"delegation":[15350,10093,3112,4601],"delegatorTokens":9999999953891}},{"ix":92,"action":{"kind":"Deliver","chain":"provider","numPackets":6},"partialState":{"h":11,"t":66,"tokens":[16350,11093,4112,5601],"delegation":[15350,10093,3112,4601],"delegatorTokens":9999999953891,"jailed":[1000000000000005,null,1000000000000047,1000000000000047],"status":["unbonding","bonded","unbonding","unbonding"]}},{"ix":93,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":12,"t":72,"tokens":[16350,11093,4112,5601],"delegation":[15350,10093,3112,4601],"delegatorTokens":9999999953891,"jailed":[1000000000000005,null,1000000000000047,1000000000000047],"status":["unbonding","bonded","unbonding","unbonding"]}},{"ix":94,"action":{"kind":"Undelegate","val":3,"amt":2871},"partialState":{"h":12,"t":72,"tokens":[16350,11093,4112,2730],"delegation":[15350,10093,3112,1730],"delegatorTokens":9999999953891}},{"ix":95,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":11,"t":66,"consumerPower":[null,6457,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":96,"action":{"kind":"Delegate","val":1,"amt":1332},"partialState":{"h":12,"t":72,"tokens":[16350,12425,4112,2730],"delegation":[15350,11425,3112,1730],"delegatorTokens":9999999952559}},{"ix":97,"action":{"kind":"Delegate","val":3,"amt":3877},"partialState":{"h":12,"t":72,"tokens":[16350,12425,4112,6607],"delegation":[15350,11425,3112,5607],"delegatorTokens":9999999948682}},{"ix":98,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":13,"t":78,"tokens":[16350,12425,4112,6607],"delegation":[15350,11425,3112,5607],"delegatorTokens":9999999948682,"jailed":[1000000000000005,null,1000000000000047,1000000000000047],"status":["unbonding","bonded","unbonding","unbonding"]}},{"ix":99,"action":{"kind":"Deliver","chain":"consumer","numPackets":6},"partialState":{"h":11,"t":66,"consumerPower":[null,6457,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":100,"action":{"kind":"Undelegate","val":1,"amt":1053},"partialState":{"h":13,"t":78,"tokens":[16350,11372,4112,6607],"delegation":[15350,10372,3112,5607],"delegatorTokens":9999999948682}},{"ix":101,"action":{"kind":"Deliver","chain":"consumer","numPackets":5},"partialState":{"h":11,"t":66,"consumerPower":[null,6457,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":102,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":103,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":12,"t":72,"consumerPower":[null,11093,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":104,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":105,"action":{"kind":"Delegate","val":3,"amt":1420},"partialState":{"h":13,"t":78,"tokens":[16350,11372,4112,8027],"delegation":[15350,10372,3112,7027],"delegatorTokens":9999999947262}},{"ix":106,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":107,"action":{"kind":"Deliver","chain":"consumer","numPackets":3},"partialState":{"h":12,"t":72,"consumerPower":[null,11093,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":108,"action":{"kind":"Deliver","chain":"consumer","numPackets":4},"partialState":{"h":12,"t":72,"consumerPower":[null,11093,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":109,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":13,"t":78,"consumerPower":[null,11093,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":110,"action":{"kind":"Undelegate","val":2,"amt":3375},"partialState":{"h":13,"t":78,"tokens":[16350,11372,4112,8027],"delegation":[15350,10372,3112,7027],"delegatorTokens":9999999947262}},{"ix":111,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":14,"t":84,"tokens":[16350,11372,4112,8027],"delegation":[15350,10372,3112,7027],"delegatorTokens":9999999947262,"jailed":[1000000000000005,null,1000000000000047,1000000000000047],"status":["unbonding","bonded","unbonding","unbonding"]}},{"ix":112,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":113,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":15,"t":90,"tokens":[16350,11372,4112,8027],"delegation":[15350,10372,3112,7027],"delegatorTokens":9999999947262,"jailed":[1000000000000005,null,1000000000000047,1000000000000047],"status":["unbonding","bonded","unbonding","unbonding"]}},{"ix":114,"action":{"kind":"Undelegate","val":1,"amt":1768},"partialState":{"h":15,"t":90,"tokens":[16350,9604,4112,8027],"delegation":[15350,8604,3112,7027],"delegatorTokens":9999999947262}},{"ix":115,"action":{"kind":"Undelegate","val":0,"amt":3164},"partialState":{"h":15,"t":90,"tokens":[13186,9604,4112,8027],"delegation":[12186,8604,3112,7027],"delegatorTokens":9999999947262}},{"ix":116,"action":{"kind":"Undelegate","val":1,"amt":4968},"partialState":{"h":15,"t":90,"tokens":[13186,4636,4112,8027],"delegation":[12186,3636,3112,7027],"delegatorTokens":9999999947262}},{"ix":117,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":118,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":16,"t":96,"tokens":[13186,4636,4112,8027],"delegation":[12186,3636,3112,7027],"delegatorTokens":9999999947262,"jailed":[1000000000000005,null,1000000000000047,1000000000000047],"status":["unbonding","bonded","unbonding","unbonding"]}},{"ix":119,"action":{"kind":"Deliver","chain":"provider","numPackets":6},"partialState":{"h":16,"t":96,"tokens":[13186,4636,4112,8027],"delegation":[12186,3636,3112,7027],"delegatorTokens":9999999947262,"jailed":[1000000000000005,null,1000000000000047,1000000000000047],"status":["unbonding","bonded","unbonding","unbonding"]}},{"ix":120,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":14,"t":84,"consumerPower":[null,11093,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":121,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":122,"action":{"kind":"Delegate","val":2,"amt":1693},"partialState":{"h":16,"t":96,"tokens":[13186,4636,5805,8027],"delegation":[12186,3636,4805,7027],"delegatorTokens":9999999945569}},{"ix":123,"action":{"kind":"Delegate","val":3,"amt":4596},"partialState":{"h":16,"t":96,"tokens":[13186,4636,5805,12623],"delegation":[12186,3636,4805,11623],"delegatorTokens":9999999940973}},{"ix":124,"action":{"kind":"Deliver","chain":"consumer","numPackets":2},"partialState":{"h":14,"t":84,"consumerPower":[null,11093,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":125,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":17,"t":102,"tokens":[13186,4636,5805,12623],"delegation":[12186,3636,4805,11623],"delegatorTokens":9999999940973,"jailed":[1000000000000005,null,1000000000000047,1000000000000047],"status":["unbonding","bonded","unbonding","unbonding"]}},{"ix":126,"action":{"kind":"Deliver","chain":"consumer","numPackets":4},"partialState":{"h":14,"t":84,"consumerPower":[null,11093,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":127,"action":{"kind":"Deliver","chain":"consumer","numPackets":6},"partialState":{"h":14,"t":84,"consumerPower":[null,11093,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":128,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":15,"t":90,"consumerPower":[null,4636,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":129,"action":{"kind":"Delegate","val":2,"amt":2917},"partialState":{"h":17,"t":102,"tokens":[13186,4636,8722,12623],"delegation":[12186,3636,7722,11623],"delegatorTokens":9999999938056}},{"ix":130,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":131,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":16,"t":96,"consumerPower":[null,4636,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":132,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":133,"action":{"kind":"Deliver","chain":"provider","numPackets":5},"partialState":{"h":17,"t":102,"tokens":[13186,4636,8722,12623],"delegation":[12186,3636,7722,11623],"delegatorTokens":9999999938056,"jailed":[1000000000000005,null,1000000000000047,1000000000000047],"status":["unbonding","bonded","unbonding","unbonding"]}},{"ix":134,"action":{"kind":"Deliver","chain":"consumer","numPackets":6},"partialState":{"h":16,"t":96,"consumerPower":[null,4636,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":135,"action":{"kind":"Deliver","chain":"consumer","numPackets":5},"partialState":{"h":16,"t":96,"consumerPower":[null,4636,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":136,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":17,"t":102,"consumerPower":[null,4636,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":137,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":18,"t":108,"consumerPower":[null,4636,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":138,"action":{"kind":"Deliver","chain":"provider","numPackets":5},"partialState":{"h":17,"t":102,"tokens":[13186,4636,8722,12623],"delegation":[12186,3636,7722,11623],"delegatorTokens":9999999938056,"jailed":[1000000000000005,null,1000000000000047,1000000000000047],"status":["unbonding","bonded","unbonding","unbonding"]}},{"ix":139,"action":{"kind":"Undelegate","val":0,"amt":1688},"partialState":{"h":17,"t":102,"tokens":[11498,4636,8722,12623],"delegation":[10498,3636,7722,11623],"delegatorTokens":9999999938056}},{"ix":140,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":19,"t":114,"consumerPower":[null,4636,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":141,"action":{"kind":"Deliver","chain":"consumer","numPackets":5},"partialState":{"h":19,"t":114,"consumerPower":[null,4636,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":142,"action":{"kind":"Delegate","val":3,"amt":2175},"partialState":{"h":17,"t":102,"tokens":[11498,4636,8722,14798],"delegation":[10498,3636,7722,13798],"delegatorTokens":9999999935881}},{"ix":143,"action":{"kind":"Delegate","val":2,"amt":4101},"partialState":{"h":17,"t":102,"tokens":[11498,4636,12823,14798],"delegation":[10498,3636,11823,13798],"delegatorTokens":9999999931780}},{"ix":144,"action":{"kind":"Undelegate","val":0,"amt":1107},"partialState":{"h":17,"t":102,"tokens":[10391,4636,12823,14798],"delegation":[9391,3636,11823,13798],"delegatorTokens":9999999931780}},{"ix":145,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":146,"action":{"kind":"Deliver","chain":"consumer","numPackets":1},"partialState":{"h":19,"t":114,"consumerPower":[null,4636,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":147,"action":{"kind":"Undelegate","val":1,"amt":1150},"partialState":{"h":17,"t":102,"tokens":[10391,3486,12823,14798],"delegation":[9391,2486,11823,13798],"delegatorTokens":9999999931780}},{"ix":148,"action":{"kind":"Undelegate","val":1,"amt":4296},"partialState":{"h":17,"t":102,"tokens":[10391,3486,12823,14798],"delegation":[9391,2486,11823,13798],"delegatorTokens":9999999931780}},{"ix":149,"action":{"kind":"Deliver","chain":"provider","numPackets":2},"partialState":{"h":17,"t":102,"tokens":[10391,3486,12823,14798],"delegation":[9391,2486,11823,13798],"delegatorTokens":9999999931780,"jailed":[1000000000000005,null,1000000000000047,1000000000000047],"status":["unbonding","bonded","unbonding","unbonding"]}},{"ix":150,"action":{"kind":"Delegate","val":0,"amt":3112},"partialState":{"h":17,"t":102,"tokens":[13503,3486,12823,14798],"delegation":[12503,2486,11823,13798],"delegatorTokens":9999999928668}},{"ix":151,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":152,"action":{"kind":"Delegate","val":2,"amt":4941},"partialState":{"h":17,"t":102,"tokens":[13503,3486,17764,14798],"delegation":[12503,2486,16764,13798],"delegatorTokens":9999999923727}},{"ix":153,"action":{"kind":"Undelegate","val":0,"amt":1660},"partialState":{"h":17,"t":102,"tokens":[11843,3486,17764,14798],"delegation":[10843,2486,16764,13798],"delegatorTokens":9999999923727}},{"ix":154,"action":{"kind":"Deliver","chain":"provider","numPackets":2},"partialState":{"h":17,"t":102,"tokens":[11843,3486,17764,14798],"delegation":[10843,2486,16764,13798],"delegatorTokens":9999999923727,"jailed":[1000000000000005,null,1000000000000047,1000000000000047],"status":["unbonding","bonded","unbonding","unbonding"]}},{"ix":155,"action":{"kind":"Delegate","val":3,"amt":2207},"partialState":{"h":17,"t":102,"tokens":[11843,3486,17764,17005],"delegation":[10843,2486,16764,16005],"delegatorTokens":9999999921520}},{"ix":156,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":18,"t":108,"tokens":[11843,3486,17764,17005],"delegation":[10843,2486,16764,16005],"delegatorTokens":9999999929746,"jailed":[1000000000000005,null,1000000000000047,1000000000000047],"status":["unbonding","bonded","unbonding","unbonding"]}},{"ix":157,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":19,"t":114,"tokens":[11843,3486,17764,17005],"delegation":[10843,2486,16764,16005],"delegatorTokens":9999999932412,"jailed":[1000000000000005,null,1000000000000047,1000000000000047],"status":["unbonded","bonded","unbonding","unbonded"]}},{"ix":158,"action":{"kind":"Undelegate","val":1,"amt":3170},"partialState":{"h":19,"t":114,"tokens":[11843,3486,17764,17005],"delegation":[10843,2486,16764,16005],"delegatorTokens":9999999932412}},{"ix":159,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":160,"action":{"kind":"Deliver","chain":"consumer","numPackets":4},"partialState":{"h":19,"t":114,"consumerPower":[null,4636,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":161,"action":{"kind":"Undelegate","val":1,"amt":1095},"partialState":{"h":19,"t":114,"tokens":[11843,2391,17764,17005],"delegation":[10843,1391,16764,16005],"delegatorTokens":9999999932412}},{"ix":162,"action":{"kind":"Delegate","val":1,"amt":4214},"partialState":{"h":19,"t":114,"tokens":[11843,6605,17764,17005],"delegation":[10843,5605,16764,16005],"delegatorTokens":9999999928198}},{"ix":163,"action":{"kind":"Delegate","val":0,"amt":1311},"partialState":{"h":19,"t":114,"tokens":[13154,6605,17764,17005],"delegation":[12154,5605,16764,16005],"delegatorTokens":9999999926887}},{"ix":164,"action":{"kind":"Delegate","val":3,"amt":2832},"partialState":{"h":19,"t":114,"tokens":[13154,6605,17764,19837],"delegation":[12154,5605,16764,18837],"delegatorTokens":9999999924055}},{"ix":165,"action":{"kind":"Deliver","chain":"provider","numPackets":2},"partialState":{"h":19,"t":114,"tokens":[13154,6605,17764,19837],"delegation":[12154,5605,16764,18837],"delegatorTokens":9999999924055,"jailed":[1000000000000005,null,1000000000000047,1000000000000047],"status":["unbonded","bonded","unbonding","unbonded"]}},{"ix":166,"action":{"kind":"Deliver","chain":"provider","numPackets":1},"partialState":{"h":19,"t":114,"tokens":[13154,6605,17764,19837],"delegation":[12154,5605,16764,18837],"delegatorTokens":9999999924055,"jailed":[1000000000000005,null,1000000000000047,1000000000000047],"status":["unbonded","bonded","unbonding","unbonded"]}},{"ix":167,"action":{"kind":"Deliver","chain":"consumer","numPackets":6},"partialState":{"h":19,"t":114,"consumerPower":[null,4636,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":168,"action":{"kind":"Delegate","val":1,"amt":3519},"partialState":{"h":19,"t":114,"tokens":[13154,10124,17764,19837],"delegation":[12154,9124,16764,18837],"delegatorTokens":9999999920536}},{"ix":169,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":20,"t":120,"consumerPower":[null,3486,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":170,"action":{"kind":"Delegate","val":0,"amt":4432},"partialState":{"h":19,"t":114,"tokens":[17586,10124,17764,19837],"delegation":[16586,9124,16764,18837],"delegatorTokens":9999999916104}},{"ix":171,"action":{"kind":"Undelegate","val":3,"amt":4841},"partialState":{"h":19,"t":114,"tokens":[17586,10124,17764,14996],"delegation":[16586,9124,16764,13996],"delegatorTokens":9999999916104}},{"ix":172,"action":{"kind":"Deliver","chain":"provider","numPackets":5},"partialState":{"h":19,"t":114,"tokens":[17586,10124,17764,14996],"delegation":[16586,9124,16764,13996],"delegatorTokens":9999999916104,"jailed":[1000000000000005,null,1000000000000047,1000000000000047],"status":["unbonded","bonded","unbonding","unbonded"]}},{"ix":173,"action":{"kind":"Undelegate","val":2,"amt":4768},"partialState":{"h":19,"t":114,"tokens":[17586,10124,12996,14996],"delegation":[16586,9124,11996,13996],"delegatorTokens":9999999916104}},{"ix":174,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":175,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":176,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":21,"t":126,"consumerPower":[null,3486,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":177,"action":{"kind":"Deliver","chain":"provider","numPackets":6},"partialState":{"h":19,"t":114,"tokens":[17586,10124,12996,14996],"delegation":[16586,9124,11996,13996],"delegatorTokens":9999999916104,"jailed":[1000000000000005,null,1000000000000047,1000000000000047],"status":["unbonded","bonded","unbonding","unbonded"]}},{"ix":178,"action":{"kind":"Undelegate","val":0,"amt":3080},"partialState":{"h":19,"t":114,"tokens":[14506,10124,12996,14996],"delegation":[13506,9124,11996,13996],"delegatorTokens":9999999916104}},{"ix":179,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":180,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":181,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":182,"action":{"kind":"Delegate","val":3,"amt":4217},"partialState":{"h":19,"t":114,"tokens":[14506,10124,12996,19213],"delegation":[13506,9124,11996,18213],"delegatorTokens":9999999911887}},{"ix":183,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":20,"t":120,"tokens":[14506,10124,12996,19213],"delegation":[13506,9124,11996,18213],"delegatorTokens":9999999911887,"jailed":[1000000000000005,null,1000000000000047,1000000000000047],"status":["unbonded","bonded","unbonding","unbonded"]}},{"ix":184,"action":{"kind":"Delegate","val":3,"amt":4231},"partialState":{"h":20,"t":120,"tokens":[14506,10124,12996,23444],"delegation":[13506,9124,11996,22444],"delegatorTokens":9999999907656}},{"ix":185,"action":{"kind":"Undelegate","val":3,"amt":1845},"partialState":{"h":20,"t":120,"tokens":[14506,10124,12996,21599],"delegation":[13506,9124,11996,20599],"delegatorTokens":9999999907656}},{"ix":186,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":187,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":22,"t":132,"consumerPower":[null,3486,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":188,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":21,"t":126,"tokens":[14506,10124,12996,21599],"delegation":[13506,9124,11996,20599],"delegatorTokens":9999999917267,"jailed":[1000000000000005,null,1000000000000047,1000000000000047],"status":["unbonded","bonded","unbonding","unbonded"]}},{"ix":189,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":22,"t":132,"tokens":[14506,10124,12996,21599],"delegation":[13506,9124,11996,20599],"delegatorTokens":9999999919717,"jailed":[1000000000000005,null,1000000000000047,1000000000000047],"status":["unbonded","bonded","unbonded","unbonded"]}},{"ix":190,"action":{"kind":"Deliver","chain":"provider","numPackets":3},"partialState":{"h":22,"t":132,"tokens":[14506,10124,12996,21599],"delegation":[13506,9124,11996,20599],"delegatorTokens":9999999919717,"jailed":[1000000000000005,null,1000000000000047,1000000000000047],"status":["unbonded","bonded","unbonded","unbonded"]}},{"ix":191,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":192,"action":{"kind":"Undelegate","val":2,"amt":1839},"partialState":{"h":22,"t":132,"tokens":[14506,10124,11157,21599],"delegation":[13506,9124,10157,20599],"delegatorTokens":9999999919717}},{"ix":193,"action":{"kind":"Delegate","val":1,"amt":3291},"partialState":{"h":22,"t":132,"tokens":[14506,13415,11157,21599],"delegation":[13506,12415,10157,20599],"delegatorTokens":9999999916426}},{"ix":194,"action":{"kind":"Delegate","val":0,"amt":3538},"partialState":{"h":22,"t":132,"tokens":[18044,13415,11157,21599],"delegation":[17044,12415,10157,20599],"delegatorTokens":9999999912888}},{"ix":195,"action":{"kind":"Undelegate","val":2,"amt":4380},"partialState":{"h":22,"t":132,"tokens":[18044,13415,6777,21599],"delegation":[17044,12415,5777,20599],"delegatorTokens":9999999912888}},{"ix":196,"action":{"kind":"Delegate","val":3,"amt":2673},"partialState":{"h":22,"t":132,"tokens":[18044,13415,6777,24272],"delegation":[17044,12415,5777,23272],"delegatorTokens":9999999910215}},{"ix":197,"action":{"kind":"Deliver","chain":"provider","numPackets":1},"partialState":{"h":22,"t":132,"tokens":[18044,13415,6777,24272],"delegation":[17044,12415,5777,23272],"delegatorTokens":9999999910215,"jailed":[1000000000000005,null,1000000000000047,1000000000000047],"status":["unbonded","bonded","unbonded","unbonded"]}},{"ix":198,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":23,"t":138,"consumerPower":[null,3486,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":199,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}}],"events":["send_downtime_slash_request","insufficient_shares","receive_downtime_slash_request","jail","send_vsc_with_downtime_ack","send_downtime_slash_request","insufficient_shares","insufficient_shares","insufficient_shares","downtime_slash_request_outstanding","send_downtime_slash_request","more_than_one_third_val_power_change","send_vsc_without_downtime_ack","insufficient_shares","receive_downtime_slash_ack","consumer_update_val","insufficient_shares","more_than_one_third_val_power_change","send_vsc_without_downtime_ack","insufficient_shares","insufficient_shares","receive_downtime_slash_request","jail","receive_downtime_slash_request","jail","send_vsc_with_downtime_ack","consumer_del_val","consumer_update_val","consumer_del_val","consumer_add_val","send_vsc_without_downtime_ack","receive_downtime_slash_ack","receive_downtime_slash_ack","consumer_update_val","consumer_del_val","insufficient_shares","send_vsc_without_downtime_ack","send_vsc_without_downtime_ack","consumer_update_val","insufficient_shares","some_undels_expired_but_not_completed","send_vsc_without_downtime_ack","some_undels_expired_but_not_completed","send_vsc_without_downtime_ack","consumer_send_maturation","consumer_update_val","consumer_send_maturation","consumer_send_maturation","consumer_send_maturation","consumer_send_maturation","insufficient_shares","complete_undel_immediate","complete_undel_immediate","complete_undel_immediate","set_unval_hold_false","set_undel_hold_false","set_unval_hold_false","set_undel_hold_false","set_undel_hold_false","set_undel_hold_false","set_undel_hold_false","set_unval_hold_false","send_vsc_without_downtime_ack","complete_unval_in_endblock","complete_unval_in_endblock","complete_undel_in_endblock","insufficient_shares","consumer_update_val","consumer_send_maturation","send_vsc_without_downtime_ack","complete_undel_in_endblock","send_vsc_not_because_change","send_vsc_without_downtime_ack","complete_unval_in_endblock","complete_undel_in_endblock"]},{"meta":{"commit":"7ffd0c04e4205cbc9caf212abfe6c59ee43153bf"},"constants":{"P":"provider","C":"consumer","UNBONDING_SECONDS_P":70,"UNBONDING_SECONDS_C":50,"TRUSTING_SECONDS":49,"NUM_VALIDATORS":4,"MAX_VALIDATORS":2,"SLASH_DOUBLESIGN":0,"SLASH_DOWNTIME":0,"JAIL_SECONDS":999999999999999,"BLOCK_SECONDS":6,"INITIAL_DELEGATOR_TOKENS":10000000000000,"DELEGATE_AMT_MIN":1000,"DELEGATE_AMT_MAX":5000,"UNDELEGATE_AMT_MIN":1000,"UNDELEGATE_AMT_MAX":5000,"ISDOWNTIME_PROBABILITY":0.5,"MAX_NUM_PACKETS_FOR_DELIVER":6},"actions":[{"ix":0,"action":{"kind":"Delegate","val":0,"amt":2465},"partialState":{"h":1,"t":6,"tokens":[7465,4000,3000,2000],"delegation":[6465,3000,2000,1000],"delegatorTokens":9999999997535}},{"ix":1,"action":{"kind":"ConsumerSlash","val":2,"infractionHeight":0,"isDowntime":false},"partialState":{"h":1,"t":6,"outstandingDowntime":[false,false,false,false]}},{"ix":2,"action":{"kind":"Deliver","chain":"consumer","numPackets":6},"partialState":{"h":1,"t":6,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":3,"action":{"kind":"Delegate","val":1,"amt":3758},"partialState":{"h":1,"t":6,"tokens":[7465,7758,3000,2000],"delegation":[6465,6758,2000,1000],"delegatorTokens":9999999993777}},{"ix":4,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":2,"t":12,"tokens":[7465,7758,3000,2000],"delegation":[6465,6758,2000,1000],"delegatorTokens":9999999993777,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":5,"action":{"kind":"Undelegate","val":2,"amt":2653},"partialState":{"h":2,"t":12,"tokens":[7465,7758,3000,2000],"delegation":[6465,6758,2000,1000],"delegatorTokens":9999999993777}},{"ix":6,"action":{"kind":"Undelegate","val":1,"amt":4671},"partialState":{"h":2,"t":12,"tokens":[7465,3087,3000,2000],"delegation":[6465,2087,2000,1000],"delegatorTokens":9999999993777}},{"ix":7,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":8,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":3,"t":18,"tokens":[7465,3087,3000,2000],"delegation":[6465,2087,2000,1000],"delegatorTokens":9999999993777,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":9,"action":{"kind":"ConsumerSlash","val":2,"infractionHeight":0,"isDowntime":true},"partialState":{"h":1,"t":6,"outstandingDowntime":[false,false,true,false]}},{"ix":10,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":4,"t":24,"tokens":[7465,3087,3000,2000],"delegation":[6465,2087,2000,1000],"delegatorTokens":9999999993777,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":11,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":5,"t":30,"tokens":[7465,3087,3000,2000],"delegation":[6465,2087,2000,1000],"delegatorTokens":9999999993777,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":12,"action":{"kind":"ConsumerSlash","val":2,"infractionHeight":0,"isDowntime":false},"partialState":{"h":1,"t":6,"outstandingDowntime":[false,false,true,false]}},{"ix":13,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":2,"t":12,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,false,true,false]}},{"ix":14,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":3,"t":18,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,false,true,false]}},{"ix":15,"action":{"kind":"Delegate","val":2,"amt":1748},"partialState":{"h":5,"t":30,"tokens":[7465,3087,4748,2000],"delegation":[6465,2087,3748,1000],"delegatorTokens":9999999992029}},{"ix":16,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":17,"action":{"kind":"Deliver","chain":"consumer","numPackets":4},"partialState":{"h":3,"t":18,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,false,true,false]}},{"ix":18,"action":{"kind":"ConsumerSlash","val":0,"infractionHeight":2,"isDowntime":true},"partialState":{"h":3,"t":18,"outstandingDowntime":[true,false,true,false]}},{"ix":19,"action":{"kind":"Deliver","chain":"provider","numPackets":2},"partialState":{"h":5,"t":30,"tokens":[7465,3087,4748,2000],"delegation":[6465,2087,3748,1000],"delegatorTokens":9999999992029,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":20,"action":{"kind":"ConsumerSlash","val":3,"infractionHeight":0,"isDowntime":true},"partialState":{"h":3,"t":18,"outstandingDowntime":[true,false,true,true]}},{"ix":21,"action":{"kind":"Undelegate","val":1,"amt":3618},"partialState":{"h":5,"t":30,"tokens":[7465,3087,4748,2000],"delegation":[6465,2087,3748,1000],"delegatorTokens":9999999992029}},{"ix":22,"action":{"kind":"Deliver","chain":"consumer","numPackets":5},"partialState":{"h":3,"t":18,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[true,false,true,true]}},{"ix":23,"action":{"kind":"Deliver","chain":"consumer","numPackets":2},"partialState":{"h":3,"t":18,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[true,false,true,true]}},{"ix":24,"action":{"kind":"Undelegate","val":3,"amt":1933},"partialState":{"h":5,"t":30,"tokens":[7465,3087,4748,2000],"delegation":[6465,2087,3748,1000],"delegatorTokens":9999999992029}},{"ix":25,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":4,"t":24,"consumerPower":[7465,3087,null,null],"outstandingDowntime":[true,false,true,true]}},{"ix":26,"action":{"kind":"Delegate","val":1,"amt":3449},"partialState":{"h":5,"t":30,"tokens":[7465,6536,4748,2000],"delegation":[6465,5536,3748,1000],"delegatorTokens":9999999988580}},{"ix":27,"action":{"kind":"Deliver","chain":"provider","numPackets":3},"partialState":{"h":5,"t":30,"tokens":[7465,6536,4748,2000],"delegation":[6465,5536,3748,1000],"delegatorTokens":9999999988580,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":28,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":29,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":30,"action":{"kind":"Delegate","val":3,"amt":1048},"partialState":{"h":5,"t":30,"tokens":[7465,6536,4748,3048],"delegation":[6465,5536,3748,2048],"delegatorTokens":9999999987532}},{"ix":31,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":32,"action":{"kind":"Delegate","val":2,"amt":3799},"partialState":{"h":5,"t":30,"tokens":[7465,6536,8547,3048],"delegation":[6465,5536,7547,2048],"delegatorTokens":9999999983733}},{"ix":33,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":5,"t":30,"consumerPower":[7465,3087,null,null],"outstandingDowntime":[true,false,true,true]}},{"ix":34,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":6,"t":36,"consumerPower":[7465,3087,null,null],"outstandingDowntime":[true,false,true,true]}},{"ix":35,"action":{"kind":"Deliver","chain":"provider","numPackets":3},"partialState":{"h":5,"t":30,"tokens":[7465,6536,8547,3048],"delegation":[6465,5536,7547,2048],"delegatorTokens":9999999983733,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":36,"action":{"kind":"Undelegate","val":2,"amt":2627},"partialState":{"h":5,"t":30,"tokens":[7465,6536,5920,3048],"delegation":[6465,5536,4920,2048],"delegatorTokens":9999999983733}},{"ix":37,"action":{"kind":"Deliver","chain":"consumer","numPackets":6},"partialState":{"h":6,"t":36,"consumerPower":[7465,3087,null,null],"outstandingDowntime":[true,false,true,true]}},{"ix":38,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":6,"t":36,"tokens":[7465,6536,5920,3048],"delegation":[6465,5536,4920,2048],"delegatorTokens":9999999983733,"jailed":[1000000000000029,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":39,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":7,"t":42,"tokens":[7465,6536,5920,3048],"delegation":[6465,5536,4920,2048],"delegatorTokens":9999999983733,"jailed":[1000000000000029,null,null,null],"status":["unbonding","bonded","bonded","unbonded"]}},{"ix":40,"action":{"kind":"Delegate","val":0,"amt":1220},"partialState":{"h":7,"t":42,"tokens":[8685,6536,5920,3048],"delegation":[7685,5536,4920,2048],"delegatorTokens":9999999982513}},{"ix":41,"action":{"kind":"Deliver","chain":"consumer","numPackets":3},"partialState":{"h":6,"t":36,"consumerPower":[7465,3087,null,null],"outstandingDowntime":[false,false,true,true]}},{"ix":42,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":7,"t":42,"consumerPower":[7465,6536,null,null],"outstandingDowntime":[false,false,true,true]}},{"ix":43,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":44,"action":{"kind":"Deliver","chain":"consumer","numPackets":4},"partialState":{"h":7,"t":42,"consumerPower":[7465,6536,null,null],"outstandingDowntime":[false,false,true,true]}},{"ix":45,"action":{"kind":"Undelegate","val":3,"amt":2015},"partialState":{"h":7,"t":42,"tokens":[8685,6536,5920,1033],"delegation":[7685,5536,4920,33],"delegatorTokens":9999999982513}},{"ix":46,"action":{"kind":"Delegate","val":2,"amt":4742},"partialState":{"h":7,"t":42,"tokens":[8685,6536,10662,1033],"delegation":[7685,5536,9662,33],"delegatorTokens":9999999977771}},{"ix":47,"action":{"kind":"Delegate","val":2,"amt":3869},"partialState":{"h":7,"t":42,"tokens":[8685,6536,14531,1033],"delegation":[7685,5536,13531,33],"delegatorTokens":9999999973902}},{"ix":48,"action":{"kind":"Undelegate","val":0,"amt":3074},"partialState":{"h":7,"t":42,"tokens":[5611,6536,14531,1033],"delegation":[4611,5536,13531,33],"delegatorTokens":9999999973902}},{"ix":49,"action":{"kind":"Delegate","val":3,"amt":4649},"partialState":{"h":7,"t":42,"tokens":[5611,6536,14531,5682],"delegation":[4611,5536,13531,4682],"delegatorTokens":9999999969253}},{"ix":50,"action":{"kind":"Delegate","val":0,"amt":2937},"partialState":{"h":7,"t":42,"tokens":[8548,6536,14531,5682],"delegation":[7548,5536,13531,4682],"delegatorTokens":9999999966316}},{"ix":51,"action":{"kind":"Undelegate","val":1,"amt":4773},"partialState":{"h":7,"t":42,"tokens":[8548,1763,14531,5682],"delegation":[7548,763,13531,4682],"delegatorTokens":9999999966316}},{"ix":52,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":8,"t":48,"consumerPower":[7465,6536,null,null],"outstandingDowntime":[false,false,true,true]}},{"ix":53,"action":{"kind":"Undelegate","val":1,"amt":2337},"partialState":{"h":7,"t":42,"tokens":[8548,1763,14531,5682],"delegation":[7548,763,13531,4682],"delegatorTokens":9999999966316}},{"ix":54,"action":{"kind":"Deliver","chain":"consumer","numPackets":5},"partialState":{"h":8,"t":48,"consumerPower":[7465,6536,null,null],"outstandingDowntime":[false,false,true,true]}},{"ix":55,"action":{"kind":"Undelegate","val":1,"amt":2947},"partialState":{"h":7,"t":42,"tokens":[8548,1763,14531,5682],"delegation":[7548,763,13531,4682],"delegatorTokens":9999999966316}},{"ix":56,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":9,"t":54,"consumerPower":[7465,6536,null,null],"outstandingDowntime":[false,false,true,true]}},{"ix":57,"action":{"kind":"Delegate","val":3,"amt":4678},"partialState":{"h":7,"t":42,"tokens":[8548,1763,14531,10360],"delegation":[7548,763,13531,9360],"delegatorTokens":9999999961638}},{"ix":58,"action":{"kind":"Delegate","val":0,"amt":2166},"partialState":{"h":7,"t":42,"tokens":[10714,1763,14531,10360],"delegation":[9714,763,13531,9360],"delegatorTokens":9999999959472}},{"ix":59,"action":{"kind":"Deliver","chain":"provider","numPackets":4},"partialState":{"h":7,"t":42,"tokens":[10714,1763,14531,10360],"delegation":[9714,763,13531,9360],"delegatorTokens":9999999959472,"jailed":[1000000000000029,null,null,null],"status":["unbonding","bonded","bonded","unbonded"]}},{"ix":60,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":61,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":10,"t":60,"consumerPower":[7465,6536,null,null],"outstandingDowntime":[false,false,true,true]}},{"ix":62,"action":{"kind":"Deliver","chain":"consumer","numPackets":4},"partialState":{"h":10,"t":60,"consumerPower":[7465,6536,null,null],"outstandingDowntime":[false,false,true,true]}},{"ix":63,"action":{"kind":"Delegate","val":3,"amt":1070},"partialState":{"h":7,"t":42,"tokens":[10714,1763,14531,11430],"delegation":[9714,763,13531,10430],"delegatorTokens":9999999958402}},{"ix":64,"action":{"kind":"Delegate","val":2,"amt":4929},"partialState":{"h":7,"t":42,"tokens":[10714,1763,19460,11430],"delegation":[9714,763,18460,10430],"delegatorTokens":9999999953473}},{"ix":65,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":66,"action":{"kind":"Undelegate","val":0,"amt":3787},"partialState":{"h":7,"t":42,"tokens":[6927,1763,19460,11430],"delegation":[5927,763,18460,10430],"delegatorTokens":9999999953473}},{"ix":67,"action":{"kind":"Delegate","val":2,"amt":4500},"partialState":{"h":7,"t":42,"tokens":[6927,1763,23960,11430],"delegation":[5927,763,22960,10430],"delegatorTokens":9999999948973}},{"ix":68,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":8,"t":48,"tokens":[6927,1763,23960,11430],"delegation":[5927,763,22960,10430],"delegatorTokens":9999999948973,"jailed":[1000000000000029,null,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":69,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":9,"t":54,"tokens":[6927,1763,23960,11430],"delegation":[5927,763,22960,10430],"delegatorTokens":9999999948973,"jailed":[1000000000000029,null,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":70,"action":{"kind":"Undelegate","val":1,"amt":2012},"partialState":{"h":9,"t":54,"tokens":[6927,1763,23960,11430],"delegation":[5927,763,22960,10430],"delegatorTokens":9999999948973}},{"ix":71,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":72,"action":{"kind":"Deliver","chain":"consumer","numPackets":5},"partialState":{"h":10,"t":60,"consumerPower":[7465,6536,null,null],"outstandingDowntime":[false,false,true,true]}},{"ix":73,"action":{"kind":"Delegate","val":1,"amt":2428},"partialState":{"h":9,"t":54,"tokens":[6927,4191,23960,11430],"delegation":[5927,3191,22960,10430],"delegatorTokens":9999999946545}},{"ix":74,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":75,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":10,"t":60,"tokens":[6927,4191,23960,11430],"delegation":[5927,3191,22960,10430],"delegatorTokens":9999999946545,"jailed":[1000000000000029,null,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":76,"action":{"kind":"Delegate","val":3,"amt":3108},"partialState":{"h":10,"t":60,"tokens":[6927,4191,23960,14538],"delegation":[5927,3191,22960,13538],"delegatorTokens":9999999943437}},{"ix":77,"action":{"kind":"Deliver","chain":"provider","numPackets":1},"partialState":{"h":10,"t":60,"tokens":[6927,4191,23960,14538],"delegation":[5927,3191,22960,13538],"delegatorTokens":9999999943437,"jailed":[1000000000000029,null,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":78,"action":{"kind":"Deliver","chain":"provider","numPackets":5},"partialState":{"h":10,"t":60,"tokens":[6927,4191,23960,14538],"delegation":[5927,3191,22960,13538],"delegatorTokens":9999999943437,"jailed":[1000000000000029,null,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":79,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":80,"action":{"kind":"Undelegate","val":2,"amt":1414},"partialState":{"h":10,"t":60,"tokens":[6927,4191,22546,14538],"delegation":[5927,3191,21546,13538],"delegatorTokens":9999999943437}},{"ix":81,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":11,"t":66,"consumerPower":[null,null,23960,11430],"outstandingDowntime":[false,false,true,true]}},{"ix":82,"action":{"kind":"Delegate","val":0,"amt":2633},"partialState":{"h":10,"t":60,"tokens":[9560,4191,22546,14538],"delegation":[8560,3191,21546,13538],"delegatorTokens":9999999940804}},{"ix":83,"action":{"kind":"Deliver","chain":"consumer","numPackets":4},"partialState":{"h":11,"t":66,"consumerPower":[null,null,23960,11430],"outstandingDowntime":[false,false,true,true]}},{"ix":84,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":12,"t":72,"consumerPower":[null,null,23960,11430],"outstandingDowntime":[false,false,true,true]}},{"ix":85,"action":{"kind":"Deliver","chain":"consumer","numPackets":2},"partialState":{"h":12,"t":72,"consumerPower":[null,null,23960,11430],"outstandingDowntime":[false,false,true,true]}},{"ix":86,"action":{"kind":"Deliver","chain":"provider","numPackets":5},"partialState":{"h":10,"t":60,"tokens":[9560,4191,22546,14538],"delegation":[8560,3191,21546,13538],"delegatorTokens":9999999940804,"jailed":[1000000000000029,null,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":87,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":88,"action":{"kind":"Deliver","chain":"consumer","numPackets":1},"partialState":{"h":12,"t":72,"consumerPower":[null,null,23960,11430],"outstandingDowntime":[false,false,true,true]}},{"ix":89,"action":{"kind":"Undelegate","val":2,"amt":2829},"partialState":{"h":10,"t":60,"tokens":[9560,4191,19717,14538],"delegation":[8560,3191,18717,13538],"delegatorTokens":9999999940804}},{"ix":90,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":91,"action":{"kind":"Undelegate","val":1,"amt":4068},"partialState":{"h":10,"t":60,"tokens":[9560,4191,19717,14538],"delegation":[8560,3191,18717,13538],"delegatorTokens":9999999940804}},{"ix":92,"action":{"kind":"Deliver","chain":"provider","numPackets":3},"partialState":{"h":10,"t":60,"tokens":[9560,4191,19717,14538],"delegation":[8560,3191,18717,13538],"delegatorTokens":9999999940804,"jailed":[1000000000000029,null,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":93,"action":{"kind":"Undelegate","val":1,"amt":3361},"partialState":{"h":10,"t":60,"tokens":[9560,4191,19717,14538],"delegation":[8560,3191,18717,13538],"delegatorTokens":9999999940804}},{"ix":94,"action":{"kind":"Deliver","chain":"provider","numPackets":6},"partialState":{"h":10,"t":60,"tokens":[9560,4191,19717,14538],"delegation":[8560,3191,18717,13538],"delegatorTokens":9999999940804,"jailed":[1000000000000029,null,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":95,"action":{"kind":"Undelegate","val":0,"amt":2864},"partialState":{"h":10,"t":60,"tokens":[6696,4191,19717,14538],"delegation":[5696,3191,18717,13538],"delegatorTokens":9999999940804}},{"ix":96,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":11,"t":66,"tokens":[6696,4191,19717,14538],"delegation":[5696,3191,18717,13538],"delegatorTokens":9999999940804,"jailed":[1000000000000029,null,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":97,"action":{"kind":"Undelegate","val":0,"amt":4311},"partialState":{"h":11,"t":66,"tokens":[2385,4191,19717,14538],"delegation":[1385,3191,18717,13538],"delegatorTokens":9999999940804}},{"ix":98,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":99,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":100,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":13,"t":78,"consumerPower":[null,null,23960,11430],"outstandingDowntime":[false,false,true,true]}},{"ix":101,"action":{"kind":"Delegate","val":3,"amt":4889},"partialState":{"h":11,"t":66,"tokens":[2385,4191,19717,19427],"delegation":[1385,3191,18717,18427],"delegatorTokens":9999999935915}},{"ix":102,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":14,"t":84,"consumerPower":[null,null,23960,11430],"outstandingDowntime":[false,false,true,true]}},{"ix":103,"action":{"kind":"Delegate","val":3,"amt":2577},"partialState":{"h":11,"t":66,"tokens":[2385,4191,19717,22004],"delegation":[1385,3191,18717,21004],"delegatorTokens":9999999933338}},{"ix":104,"action":{"kind":"Deliver","chain":"provider","numPackets":1},"partialState":{"h":11,"t":66,"tokens":[2385,4191,19717,22004],"delegation":[1385,3191,18717,21004],"delegatorTokens":9999999933338,"jailed":[1000000000000029,null,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":105,"action":{"kind":"Delegate","val":2,"amt":3442},"partialState":{"h":11,"t":66,"tokens":[2385,4191,23159,22004],"delegation":[1385,3191,22159,21004],"delegatorTokens":9999999929896}},{"ix":106,"action":{"kind":"Undelegate","val":3,"amt":4280},"partialState":{"h":11,"t":66,"tokens":[2385,4191,23159,17724],"delegation":[1385,3191,22159,16724],"delegatorTokens":9999999929896}},{"ix":107,"action":{"kind":"Delegate","val":3,"amt":1297},"partialState":{"h":11,"t":66,"tokens":[2385,4191,23159,19021],"delegation":[1385,3191,22159,18021],"delegatorTokens":9999999928599}},{"ix":108,"action":{"kind":"Deliver","chain":"consumer","numPackets":5},"partialState":{"h":14,"t":84,"consumerPower":[null,null,23960,11430],"outstandingDowntime":[false,false,true,true]}},{"ix":109,"action":{"kind":"Delegate","val":3,"amt":2628},"partialState":{"h":11,"t":66,"tokens":[2385,4191,23159,21649],"delegation":[1385,3191,22159,20649],"delegatorTokens":9999999925971}},{"ix":110,"action":{"kind":"Delegate","val":2,"amt":2722},"partialState":{"h":11,"t":66,"tokens":[2385,4191,25881,21649],"delegation":[1385,3191,24881,20649],"delegatorTokens":9999999923249}},{"ix":111,"action":{"kind":"Deliver","chain":"provider","numPackets":1},"partialState":{"h":11,"t":66,"tokens":[2385,4191,25881,21649],"delegation":[1385,3191,24881,20649],"delegatorTokens":9999999923249,"jailed":[1000000000000029,null,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":112,"action":{"kind":"Deliver","chain":"consumer","numPackets":4},"partialState":{"h":14,"t":84,"consumerPower":[null,null,23960,11430],"outstandingDowntime":[false,false,true,true]}},{"ix":113,"action":{"kind":"Deliver","chain":"consumer","numPackets":6},"partialState":{"h":14,"t":84,"consumerPower":[null,null,23960,11430],"outstandingDowntime":[false,false,true,true]}},{"ix":114,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":115,"action":{"kind":"Undelegate","val":1,"amt":4990},"partialState":{"h":11,"t":66,"tokens":[2385,4191,25881,21649],"delegation":[1385,3191,24881,20649],"delegatorTokens":9999999923249}},{"ix":116,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":117,"action":{"kind":"Undelegate","val":0,"amt":4658},"partialState":{"h":11,"t":66,"tokens":[2385,4191,25881,21649],"delegation":[1385,3191,24881,20649],"delegatorTokens":9999999923249}},{"ix":118,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":15,"t":90,"consumerPower":[null,null,23960,11430],"outstandingDowntime":[false,false,true,true]}},{"ix":119,"action":{"kind":"Undelegate","val":0,"amt":2316},"partialState":{"h":11,"t":66,"tokens":[2385,4191,25881,21649],"delegation":[1385,3191,24881,20649],"delegatorTokens":9999999923249}},{"ix":120,"action":{"kind":"Deliver","chain":"provider","numPackets":5},"partialState":{"h":11,"t":66,"tokens":[2385,4191,25881,21649],"delegation":[1385,3191,24881,20649],"delegatorTokens":9999999923249,"jailed":[1000000000000029,null,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":121,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":122,"action":{"kind":"Deliver","chain":"consumer","numPackets":1},"partialState":{"h":15,"t":90,"consumerPower":[null,null,23960,11430],"outstandingDowntime":[false,false,true,true]}},{"ix":123,"action":{"kind":"Undelegate","val":0,"amt":4152},"partialState":{"h":11,"t":66,"tokens":[2385,4191,25881,21649],"delegation":[1385,3191,24881,20649],"delegatorTokens":9999999923249}},{"ix":124,"action":{"kind":"Deliver","chain":"consumer","numPackets":6},"partialState":{"h":15,"t":90,"consumerPower":[null,null,23960,11430],"outstandingDowntime":[false,false,true,true]}},{"ix":125,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":12,"t":72,"tokens":[2385,4191,25881,21649],"delegation":[1385,3191,24881,20649],"delegatorTokens":9999999923249,"jailed":[1000000000000029,null,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":126,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":13,"t":78,"tokens":[2385,4191,25881,21649],"delegation":[1385,3191,24881,20649],"delegatorTokens":9999999923249,"jailed":[1000000000000029,null,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":127,"action":{"kind":"Deliver","chain":"consumer","numPackets":6},"partialState":{"h":15,"t":90,"consumerPower":[null,null,23960,11430],"outstandingDowntime":[false,false,true,true]}},{"ix":128,"action":{"kind":"Undelegate","val":1,"amt":3085},"partialState":{"h":13,"t":78,"tokens":[2385,1106,25881,21649],"delegation":[1385,106,24881,20649],"delegatorTokens":9999999923249}},{"ix":129,"action":{"kind":"Deliver","chain":"provider","numPackets":1},"partialState":{"h":13,"t":78,"tokens":[2385,1106,25881,21649],"delegation":[1385,106,24881,20649],"delegatorTokens":9999999923249,"jailed":[1000000000000029,null,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":130,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":16,"t":96,"consumerPower":[null,null,25881,21649],"outstandingDowntime":[false,false,true,true]}},{"ix":131,"action":{"kind":"Undelegate","val":0,"amt":1930},"partialState":{"h":13,"t":78,"tokens":[2385,1106,25881,21649],"delegation":[1385,106,24881,20649],"delegatorTokens":9999999923249}},{"ix":132,"action":{"kind":"Deliver","chain":"consumer","numPackets":3},"partialState":{"h":16,"t":96,"consumerPower":[null,null,25881,21649],"outstandingDowntime":[false,false,true,true]}},{"ix":133,"action":{"kind":"Delegate","val":3,"amt":3959},"partialState":{"h":13,"t":78,"tokens":[2385,1106,25881,25608],"delegation":[1385,106,24881,24608],"delegatorTokens":9999999919290}},{"ix":134,"action":{"kind":"Deliver","chain":"provider","numPackets":4},"partialState":{"h":13,"t":78,"tokens":[2385,1106,25881,25608],"delegation":[1385,106,24881,24608],"delegatorTokens":9999999919290,"jailed":[1000000000000029,null,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":135,"action":{"kind":"Undelegate","val":2,"amt":1414},"partialState":{"h":13,"t":78,"tokens":[2385,1106,24467,25608],"delegation":[1385,106,23467,24608],"delegatorTokens":9999999919290}},{"ix":136,"action":{"kind":"Deliver","chain":"provider","numPackets":2},"partialState":{"h":13,"t":78,"tokens":[2385,1106,24467,25608],"delegation":[1385,106,23467,24608],"delegatorTokens":9999999919290,"jailed":[1000000000000029,null,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":137,"action":{"kind":"Undelegate","val":3,"amt":1360},"partialState":{"h":13,"t":78,"tokens":[2385,1106,24467,24248],"delegation":[1385,106,23467,23248],"delegatorTokens":9999999919290}},{"ix":138,"action":{"kind":"Delegate","val":3,"amt":3943},"partialState":{"h":13,"t":78,"tokens":[2385,1106,24467,28191],"delegation":[1385,106,23467,27191],"delegatorTokens":9999999915347}},{"ix":139,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":17,"t":102,"consumerPower":[null,null,25881,21649],"outstandingDowntime":[false,false,true,true]}},{"ix":140,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":14,"t":84,"tokens":[2385,1106,24467,28191],"delegation":[1385,106,23467,27191],"delegatorTokens":9999999915347,"jailed":[1000000000000029,null,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":141,"action":{"kind":"Deliver","chain":"consumer","numPackets":1},"partialState":{"h":17,"t":102,"consumerPower":[null,null,25881,21649],"outstandingDowntime":[false,false,true,true]}},{"ix":142,"action":{"kind":"Delegate","val":3,"amt":3588},"partialState":{"h":14,"t":84,"tokens":[2385,1106,24467,31779],"delegation":[1385,106,23467,30779],"delegatorTokens":9999999911759}},{"ix":143,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":144,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":145,"action":{"kind":"Delegate","val":2,"amt":2222},"partialState":{"h":14,"t":84,"tokens":[2385,1106,26689,31779],"delegation":[1385,106,25689,30779],"delegatorTokens":9999999909537}},{"ix":146,"action":{"kind":"Undelegate","val":3,"amt":2295},"partialState":{"h":14,"t":84,"tokens":[2385,1106,26689,29484],"delegation":[1385,106,25689,28484],"delegatorTokens":9999999909537}},{"ix":147,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":18,"t":108,"consumerPower":[null,null,25881,21649],"outstandingDowntime":[false,false,true,true]}},{"ix":148,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":19,"t":114,"consumerPower":[null,null,25881,21649],"outstandingDowntime":[false,false,true,true]}},{"ix":149,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":150,"action":{"kind":"Delegate","val":1,"amt":3441},"partialState":{"h":14,"t":84,"tokens":[2385,4547,26689,29484],"delegation":[1385,3547,25689,28484],"delegatorTokens":9999999906096}},{"ix":151,"action":{"kind":"Delegate","val":1,"amt":1983},"partialState":{"h":14,"t":84,"tokens":[2385,6530,26689,29484],"delegation":[1385,5530,25689,28484],"delegatorTokens":9999999904113}},{"ix":152,"action":{"kind":"Deliver","chain":"consumer","numPackets":3},"partialState":{"h":19,"t":114,"consumerPower":[null,null,25881,21649],"outstandingDowntime":[false,false,true,true]}},{"ix":153,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":154,"action":{"kind":"Undelegate","val":2,"amt":4026},"partialState":{"h":14,"t":84,"tokens":[2385,6530,22663,29484],"delegation":[1385,5530,21663,28484],"delegatorTokens":9999999904113}},{"ix":155,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":15,"t":90,"tokens":[2385,6530,22663,29484],"delegation":[1385,5530,21663,28484],"delegatorTokens":9999999908784,"jailed":[1000000000000029,null,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":156,"action":{"kind":"Delegate","val":2,"amt":2618},"partialState":{"h":15,"t":90,"tokens":[2385,6530,25281,29484],"delegation":[1385,5530,24281,28484],"delegatorTokens":9999999906166}},{"ix":157,"action":{"kind":"Delegate","val":3,"amt":4798},"partialState":{"h":15,"t":90,"tokens":[2385,6530,25281,34282],"delegation":[1385,5530,24281,33282],"delegatorTokens":9999999901368}},{"ix":158,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":16,"t":96,"tokens":[2385,6530,25281,34282],"delegation":[1385,5530,24281,33282],"delegatorTokens":9999999901368,"jailed":[1000000000000029,null,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":159,"action":{"kind":"Delegate","val":3,"amt":2258},"partialState":{"h":16,"t":96,"tokens":[2385,6530,25281,36540],"delegation":[1385,5530,24281,35540],"delegatorTokens":9999999899110}},{"ix":160,"action":{"kind":"Undelegate","val":1,"amt":3920},"partialState":{"h":16,"t":96,"tokens":[2385,2610,25281,36540],"delegation":[1385,1610,24281,35540],"delegatorTokens":9999999899110}},{"ix":161,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":20,"t":120,"consumerPower":[null,null,25881,21649],"outstandingDowntime":[false,false,true,true]}},{"ix":162,"action":{"kind":"Deliver","chain":"provider","numPackets":6},"partialState":{"h":16,"t":96,"tokens":[2385,2610,25281,36540],"delegation":[1385,1610,24281,35540],"delegatorTokens":9999999899110,"jailed":[1000000000000029,null,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":163,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":17,"t":102,"tokens":[2385,2610,25281,36540],"delegation":[1385,1610,24281,35540],"delegatorTokens":9999999899110,"jailed":[1000000000000029,null,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":164,"action":{"kind":"Deliver","chain":"provider","numPackets":1},"partialState":{"h":17,"t":102,"tokens":[2385,2610,25281,36540],"delegation":[1385,1610,24281,35540],"delegatorTokens":9999999899110,"jailed":[1000000000000029,null,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":165,"action":{"kind":"Delegate","val":3,"amt":2677},"partialState":{"h":17,"t":102,"tokens":[2385,2610,25281,39217],"delegation":[1385,1610,24281,38217],"delegatorTokens":9999999896433}},{"ix":166,"action":{"kind":"Delegate","val":2,"amt":1163},"partialState":{"h":17,"t":102,"tokens":[2385,2610,26444,39217],"delegation":[1385,1610,25444,38217],"delegatorTokens":9999999895270}},{"ix":167,"action":{"kind":"Delegate","val":2,"amt":1579},"partialState":{"h":17,"t":102,"tokens":[2385,2610,28023,39217],"delegation":[1385,1610,27023,38217],"delegatorTokens":9999999893691}},{"ix":168,"action":{"kind":"Undelegate","val":2,"amt":3630},"partialState":{"h":17,"t":102,"tokens":[2385,2610,24393,39217],"delegation":[1385,1610,23393,38217],"delegatorTokens":9999999893691}},{"ix":169,"action":{"kind":"Deliver","chain":"provider","numPackets":3},"partialState":{"h":17,"t":102,"tokens":[2385,2610,24393,39217],"delegation":[1385,1610,23393,38217],"delegatorTokens":9999999893691,"jailed":[1000000000000029,null,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":170,"action":{"kind":"Deliver","chain":"provider","numPackets":4},"partialState":{"h":17,"t":102,"tokens":[2385,2610,24393,39217],"delegation":[1385,1610,23393,38217],"delegatorTokens":9999999893691,"jailed":[1000000000000029,null,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":171,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":18,"t":108,"tokens":[2385,2610,24393,39217],"delegation":[1385,1610,23393,38217],"delegatorTokens":9999999896318,"jailed":[1000000000000029,null,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":172,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":173,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":21,"t":126,"consumerPower":[null,null,25881,21649],"outstandingDowntime":[false,false,true,true]}},{"ix":174,"action":{"kind":"Delegate","val":0,"amt":4100},"partialState":{"h":18,"t":108,"tokens":[6485,2610,24393,39217],"delegation":[5485,1610,23393,38217],"delegatorTokens":9999999892218}},{"ix":175,"action":{"kind":"Deliver","chain":"provider","numPackets":4},"partialState":{"h":18,"t":108,"tokens":[6485,2610,24393,39217],"delegation":[5485,1610,23393,38217],"delegatorTokens":9999999892218,"jailed":[1000000000000029,null,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":176,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":19,"t":114,"tokens":[6485,2610,24393,39217],"delegation":[5485,1610,23393,38217],"delegatorTokens":9999999892218,"jailed":[1000000000000029,null,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":177,"action":{"kind":"Deliver","chain":"consumer","numPackets":6},"partialState":{"h":21,"t":126,"consumerPower":[null,null,25881,21649],"outstandingDowntime":[false,false,true,true]}},{"ix":178,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":179,"action":{"kind":"Deliver","chain":"consumer","numPackets":1},"partialState":{"h":21,"t":126,"consumerPower":[null,null,25881,21649],"outstandingDowntime":[false,false,true,true]}},{"ix":180,"action":{"kind":"Delegate","val":3,"amt":3416},"partialState":{"h":19,"t":114,"tokens":[6485,2610,24393,42633],"delegation":[5485,1610,23393,41633],"delegatorTokens":9999999888802}},{"ix":181,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":182,"action":{"kind":"Deliver","chain":"provider","numPackets":6},"partialState":{"h":19,"t":114,"tokens":[6485,2610,24393,42633],"delegation":[5485,1610,23393,41633],"delegatorTokens":9999999888802,"jailed":[1000000000000029,null,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":183,"action":{"kind":"Undelegate","val":1,"amt":4543},"partialState":{"h":19,"t":114,"tokens":[6485,2610,24393,42633],"delegation":[5485,1610,23393,41633],"delegatorTokens":9999999888802}},{"ix":184,"action":{"kind":"Deliver","chain":"provider","numPackets":1},"partialState":{"h":19,"t":114,"tokens":[6485,2610,24393,42633],"delegation":[5485,1610,23393,41633],"delegatorTokens":9999999888802,"jailed":[1000000000000029,null,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":185,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":186,"action":{"kind":"Delegate","val":1,"amt":3721},"partialState":{"h":19,"t":114,"tokens":[6485,6331,24393,42633],"delegation":[5485,5331,23393,41633],"delegatorTokens":9999999885081}},{"ix":187,"action":{"kind":"Undelegate","val":0,"amt":4581},"partialState":{"h":19,"t":114,"tokens":[1904,6331,24393,42633],"delegation":[904,5331,23393,41633],"delegatorTokens":9999999885081}},{"ix":188,"action":{"kind":"Undelegate","val":1,"amt":1929},"partialState":{"h":19,"t":114,"tokens":[1904,4402,24393,42633],"delegation":[904,3402,23393,41633],"delegatorTokens":9999999885081}},{"ix":189,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":190,"action":{"kind":"Delegate","val":3,"amt":1259},"partialState":{"h":19,"t":114,"tokens":[1904,4402,24393,43892],"delegation":[904,3402,23393,42892],"delegatorTokens":9999999883822}},{"ix":191,"action":{"kind":"Deliver","chain":"provider","numPackets":2},"partialState":{"h":19,"t":114,"tokens":[1904,4402,24393,43892],"delegation":[904,3402,23393,42892],"delegatorTokens":9999999883822,"jailed":[1000000000000029,null,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":192,"action":{"kind":"Delegate","val":3,"amt":1490},"partialState":{"h":19,"t":114,"tokens":[1904,4402,24393,45382],"delegation":[904,3402,23393,44382],"delegatorTokens":9999999882332}},{"ix":193,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":194,"action":{"kind":"Undelegate","val":3,"amt":1994},"partialState":{"h":19,"t":114,"tokens":[1904,4402,24393,43388],"delegation":[904,3402,23393,42388],"delegatorTokens":9999999882332}},{"ix":195,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":196,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":20,"t":120,"tokens":[1904,4402,24393,43388],"delegation":[904,3402,23393,42388],"delegatorTokens":9999999895981,"jailed":[1000000000000029,null,null,null],"status":["unbonded","unbonded","bonded","bonded"]}},{"ix":197,"action":{"kind":"Undelegate","val":1,"amt":4810},"partialState":{"h":20,"t":120,"tokens":[1904,4402,24393,43388],"delegation":[904,3402,23393,42388],"delegatorTokens":9999999895981}},{"ix":198,"action":{"kind":"Delegate","val":3,"amt":3701},"partialState":{"h":20,"t":120,"tokens":[1904,4402,24393,47089],"delegation":[904,3402,23393,46089],"delegatorTokens":9999999892280}},{"ix":199,"action":{"kind":"Deliver","chain":"provider","numPackets":4},"partialState":{"h":20,"t":120,"tokens":[1904,4402,24393,47089],"delegation":[904,3402,23393,46089],"delegatorTokens":9999999892280,"jailed":[1000000000000029,null,null,null],"status":["unbonded","unbonded","bonded","bonded"]}}],"events":["send_double_sign_slash_request","send_vsc_without_downtime_ack","insufficient_shares","send_vsc_without_downtime_ack","send_downtime_slash_request","send_double_sign_slash_request","send_downtime_slash_request","receive_double_sign_slash_request","send_downtime_slash_request","insufficient_shares","insufficient_shares","consumer_update_val","consumer_update_val","receive_double_sign_slash_request","receive_slash_request_unbonded","receive_downtime_slash_request","jail","receive_slash_request_unbonded","send_vsc_with_downtime_ack","more_than_one_third_val_power_change","send_vsc_without_downtime_ack","receive_downtime_slash_ack","consumer_update_val","insufficient_shares","insufficient_shares","send_vsc_without_downtime_ack","insufficient_shares","consumer_del_val","consumer_add_val","consumer_del_val","consumer_add_val","insufficient_shares","insufficient_shares","send_vsc_without_downtime_ack","consumer_send_maturation","consumer_send_maturation","insufficient_shares","insufficient_shares","insufficient_shares","insufficient_shares","set_undel_hold_false","send_vsc_without_downtime_ack","consumer_send_maturation","consumer_update_val","consumer_update_val","insufficient_shares","send_vsc_without_downtime_ack","complete_undel_in_endblock","send_vsc_without_downtime_ack","send_vsc_without_downtime_ack","consumer_send_maturation","consumer_send_maturation","set_undel_hold_false","send_vsc_without_downtime_ack","complete_undel_in_endblock","send_vsc_without_downtime_ack","set_unval_hold_false","set_undel_hold_false","set_undel_hold_false","set_undel_hold_false","set_undel_hold_false","set_unval_hold_false","insufficient_shares","complete_unval_in_endblock","complete_unval_in_endblock","complete_undel_in_endblock","send_vsc_without_downtime_ack","insufficient_shares"]},{"meta":{"commit":"7ffd0c04e4205cbc9caf212abfe6c59ee43153bf"},"constants":{"P":"provider","C":"consumer","UNBONDING_SECONDS_P":70,"UNBONDING_SECONDS_C":50,"TRUSTING_SECONDS":49,"NUM_VALIDATORS":4,"MAX_VALIDATORS":2,"SLASH_DOUBLESIGN":0,"SLASH_DOWNTIME":0,"JAIL_SECONDS":999999999999999,"BLOCK_SECONDS":6,"INITIAL_DELEGATOR_TOKENS":10000000000000,"DELEGATE_AMT_MIN":1000,"DELEGATE_AMT_MAX":5000,"UNDELEGATE_AMT_MIN":1000,"UNDELEGATE_AMT_MAX":5000,"ISDOWNTIME_PROBABILITY":0.5,"MAX_NUM_PACKETS_FOR_DELIVER":6},"actions":[{"ix":0,"action":{"kind":"ConsumerSlash","val":2,"infractionHeight":0,"isDowntime":true},"partialState":{"h":1,"t":6,"outstandingDowntime":[false,false,true,false]}},{"ix":1,"action":{"kind":"Deliver","chain":"provider","numPackets":3},"partialState":{"h":1,"t":6,"tokens":[5000,4000,3000,2000],"delegation":[4000,3000,2000,1000],"delegatorTokens":10000000000000,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":2,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":2,"t":12,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,false,true,false]}},{"ix":3,"action":{"kind":"Undelegate","val":2,"amt":1469},"partialState":{"h":1,"t":6,"tokens":[5000,4000,1531,2000],"delegation":[4000,3000,531,1000],"delegatorTokens":10000000000000}},{"ix":4,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":5,"action":{"kind":"Undelegate","val":2,"amt":2749},"partialState":{"h":1,"t":6,"tokens":[5000,4000,1531,2000],"delegation":[4000,3000,531,1000],"delegatorTokens":10000000000000}},{"ix":6,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":7,"action":{"kind":"Deliver","chain":"consumer","numPackets":4},"partialState":{"h":2,"t":12,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,false,true,false]}},{"ix":8,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":9,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":3,"t":18,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,false,true,false]}},{"ix":10,"action":{"kind":"Delegate","val":0,"amt":3405},"partialState":{"h":1,"t":6,"tokens":[8405,4000,1531,2000],"delegation":[7405,3000,531,1000],"delegatorTokens":9999999996595}},{"ix":11,"action":{"kind":"Undelegate","val":2,"amt":1890},"partialState":{"h":1,"t":6,"tokens":[8405,4000,1531,2000],"delegation":[7405,3000,531,1000],"delegatorTokens":9999999996595}},{"ix":12,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":2,"t":12,"tokens":[8405,4000,1531,2000],"delegation":[7405,3000,531,1000],"delegatorTokens":9999999996595,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":13,"action":{"kind":"Undelegate","val":1,"amt":2423},"partialState":{"h":2,"t":12,"tokens":[8405,1577,1531,2000],"delegation":[7405,577,531,1000],"delegatorTokens":9999999996595}},{"ix":14,"action":{"kind":"ConsumerSlash","val":2,"infractionHeight":0,"isDowntime":true},"partialState":{"h":3,"t":18,"outstandingDowntime":[false,false,true,false]}},{"ix":15,"action":{"kind":"Deliver","chain":"provider","numPackets":1},"partialState":{"h":2,"t":12,"tokens":[8405,1577,1531,2000],"delegation":[7405,577,531,1000],"delegatorTokens":9999999996595,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":16,"action":{"kind":"ConsumerSlash","val":3,"infractionHeight":1,"isDowntime":true},"partialState":{"h":3,"t":18,"outstandingDowntime":[false,false,true,true]}},{"ix":17,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":4,"t":24,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,false,true,true]}},{"ix":18,"action":{"kind":"ConsumerSlash","val":3,"infractionHeight":3,"isDowntime":false},"partialState":{"h":4,"t":24,"outstandingDowntime":[false,false,true,true]}},{"ix":19,"action":{"kind":"Delegate","val":1,"amt":3389},"partialState":{"h":2,"t":12,"tokens":[8405,4966,1531,2000],"delegation":[7405,3966,531,1000],"delegatorTokens":9999999993206}},{"ix":20,"action":{"kind":"Delegate","val":0,"amt":3468},"partialState":{"h":2,"t":12,"tokens":[11873,4966,1531,2000],"delegation":[10873,3966,531,1000],"delegatorTokens":9999999989738}},{"ix":21,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":3,"t":18,"tokens":[11873,4966,1531,2000],"delegation":[10873,3966,531,1000],"delegatorTokens":9999999989738,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":22,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":5,"t":30,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,false,true,true]}},{"ix":23,"action":{"kind":"ConsumerSlash","val":0,"infractionHeight":3,"isDowntime":false},"partialState":{"h":5,"t":30,"outstandingDowntime":[false,false,true,true]}},{"ix":24,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":6,"t":36,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,false,true,true]}},{"ix":25,"action":{"kind":"Deliver","chain":"provider","numPackets":3},"partialState":{"h":3,"t":18,"tokens":[11873,4966,1531,2000],"delegation":[10873,3966,531,1000],"delegatorTokens":9999999989738,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":26,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":7,"t":42,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,false,true,true]}},{"ix":27,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":4,"t":24,"tokens":[11873,4966,1531,2000],"delegation":[10873,3966,531,1000],"delegatorTokens":9999999989738,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":28,"action":{"kind":"Deliver","chain":"provider","numPackets":4},"partialState":{"h":4,"t":24,"tokens":[11873,4966,1531,2000],"delegation":[10873,3966,531,1000],"delegatorTokens":9999999989738,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":29,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":30,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":31,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":32,"action":{"kind":"Deliver","chain":"provider","numPackets":2},"partialState":{"h":4,"t":24,"tokens":[11873,4966,1531,2000],"delegation":[10873,3966,531,1000],"delegatorTokens":9999999989738,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":33,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":34,"action":{"kind":"Deliver","chain":"provider","numPackets":4},"partialState":{"h":4,"t":24,"tokens":[11873,4966,1531,2000],"delegation":[10873,3966,531,1000],"delegatorTokens":9999999989738,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":35,"action":{"kind":"Deliver","chain":"consumer","numPackets":5},"partialState":{"h":7,"t":42,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,false,true,true]}},{"ix":36,"action":{"kind":"Deliver","chain":"consumer","numPackets":5},"partialState":{"h":7,"t":42,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,false,true,true]}},{"ix":37,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":8,"t":48,"consumerPower":[11873,4966,null,null],"outstandingDowntime":[false,false,true,true]}},{"ix":38,"action":{"kind":"Delegate","val":2,"amt":3834},"partialState":{"h":4,"t":24,"tokens":[11873,4966,5365,2000],"delegation":[10873,3966,4365,1000],"delegatorTokens":9999999985904}},{"ix":39,"action":{"kind":"Deliver","chain":"provider","numPackets":2},"partialState":{"h":4,"t":24,"tokens":[11873,4966,5365,2000],"delegation":[10873,3966,4365,1000],"delegatorTokens":9999999985904,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":40,"action":{"kind":"Undelegate","val":1,"amt":3343},"partialState":{"h":4,"t":24,"tokens":[11873,1623,5365,2000],"delegation":[10873,623,4365,1000],"delegatorTokens":9999999985904}},{"ix":41,"action":{"kind":"Delegate","val":2,"amt":4574},"partialState":{"h":4,"t":24,"tokens":[11873,1623,9939,2000],"delegation":[10873,623,8939,1000],"delegatorTokens":9999999981330}},{"ix":42,"action":{"kind":"Delegate","val":3,"amt":3405},"partialState":{"h":4,"t":24,"tokens":[11873,1623,9939,5405],"delegation":[10873,623,8939,4405],"delegatorTokens":9999999977925}},{"ix":43,"action":{"kind":"Delegate","val":2,"amt":3037},"partialState":{"h":4,"t":24,"tokens":[11873,1623,12976,5405],"delegation":[10873,623,11976,4405],"delegatorTokens":9999999974888}},{"ix":44,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":9,"t":54,"consumerPower":[11873,4966,null,null],"outstandingDowntime":[false,false,true,true]}},{"ix":45,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":10,"t":60,"consumerPower":[11873,4966,null,null],"outstandingDowntime":[false,false,true,true]}},{"ix":46,"action":{"kind":"Undelegate","val":0,"amt":4810},"partialState":{"h":4,"t":24,"tokens":[7063,1623,12976,5405],"delegation":[6063,623,11976,4405],"delegatorTokens":9999999974888}},{"ix":47,"action":{"kind":"Undelegate","val":1,"amt":3954},"partialState":{"h":4,"t":24,"tokens":[7063,1623,12976,5405],"delegation":[6063,623,11976,4405],"delegatorTokens":9999999974888}},{"ix":48,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":49,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":5,"t":30,"tokens":[7063,1623,12976,5405],"delegation":[6063,623,11976,4405],"delegatorTokens":9999999974888,"jailed":[null,null,null,null],"status":["bonded","unbonding","bonded","unbonded"]}},{"ix":50,"action":{"kind":"Deliver","chain":"provider","numPackets":6},"partialState":{"h":5,"t":30,"tokens":[7063,1623,12976,5405],"delegation":[6063,623,11976,4405],"delegatorTokens":9999999974888,"jailed":[null,null,null,null],"status":["bonded","unbonding","bonded","unbonded"]}},{"ix":51,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":11,"t":66,"consumerPower":[11873,4966,null,null],"outstandingDowntime":[false,false,true,true]}},{"ix":52,"action":{"kind":"Undelegate","val":1,"amt":4877},"partialState":{"h":5,"t":30,"tokens":[7063,1623,12976,5405],"delegation":[6063,623,11976,4405],"delegatorTokens":9999999974888}},{"ix":53,"action":{"kind":"Deliver","chain":"consumer","numPackets":6},"partialState":{"h":11,"t":66,"consumerPower":[11873,4966,null,null],"outstandingDowntime":[false,false,true,true]}},{"ix":54,"action":{"kind":"Delegate","val":3,"amt":3548},"partialState":{"h":5,"t":30,"tokens":[7063,1623,12976,8953],"delegation":[6063,623,11976,7953],"delegatorTokens":9999999971340}},{"ix":55,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":56,"action":{"kind":"Delegate","val":2,"amt":4108},"partialState":{"h":5,"t":30,"tokens":[7063,1623,17084,8953],"delegation":[6063,623,16084,7953],"delegatorTokens":9999999967232}},{"ix":57,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":58,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":59,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":60,"action":{"kind":"Deliver","chain":"consumer","numPackets":3},"partialState":{"h":11,"t":66,"consumerPower":[11873,4966,null,null],"outstandingDowntime":[false,false,true,true]}},{"ix":61,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":6,"t":36,"tokens":[7063,1623,17084,8953],"delegation":[6063,623,16084,7953],"delegatorTokens":9999999967232,"jailed":[null,null,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":62,"action":{"kind":"Delegate","val":3,"amt":2806},"partialState":{"h":6,"t":36,"tokens":[7063,1623,17084,11759],"delegation":[6063,623,16084,10759],"delegatorTokens":9999999964426}},{"ix":63,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":7,"t":42,"tokens":[7063,1623,17084,11759],"delegation":[6063,623,16084,10759],"delegatorTokens":9999999964426,"jailed":[null,null,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":64,"action":{"kind":"Delegate","val":2,"amt":3564},"partialState":{"h":7,"t":42,"tokens":[7063,1623,20648,11759],"delegation":[6063,623,19648,10759],"delegatorTokens":9999999960862}},{"ix":65,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":66,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":67,"action":{"kind":"Deliver","chain":"consumer","numPackets":3},"partialState":{"h":11,"t":66,"consumerPower":[11873,4966,null,null],"outstandingDowntime":[false,false,true,true]}},{"ix":68,"action":{"kind":"Undelegate","val":1,"amt":2709},"partialState":{"h":7,"t":42,"tokens":[7063,1623,20648,11759],"delegation":[6063,623,19648,10759],"delegatorTokens":9999999960862}},{"ix":69,"action":{"kind":"Delegate","val":0,"amt":3195},"partialState":{"h":7,"t":42,"tokens":[10258,1623,20648,11759],"delegation":[9258,623,19648,10759],"delegatorTokens":9999999957667}},{"ix":70,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":12,"t":72,"consumerPower":[null,null,17084,8953],"outstandingDowntime":[false,false,true,true]}},{"ix":71,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":13,"t":78,"consumerPower":[null,null,17084,8953],"outstandingDowntime":[false,false,true,true]}},{"ix":72,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":73,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":8,"t":48,"tokens":[10258,1623,20648,11759],"delegation":[9258,623,19648,10759],"delegatorTokens":9999999957667,"jailed":[null,null,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":74,"action":{"kind":"Delegate","val":0,"amt":1031},"partialState":{"h":8,"t":48,"tokens":[11289,1623,20648,11759],"delegation":[10289,623,19648,10759],"delegatorTokens":9999999956636}},{"ix":75,"action":{"kind":"Delegate","val":3,"amt":3352},"partialState":{"h":8,"t":48,"tokens":[11289,1623,20648,15111],"delegation":[10289,623,19648,14111],"delegatorTokens":9999999953284}},{"ix":76,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":77,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":78,"action":{"kind":"Deliver","chain":"consumer","numPackets":1},"partialState":{"h":13,"t":78,"consumerPower":[null,null,17084,8953],"outstandingDowntime":[false,false,true,true]}},{"ix":79,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":80,"action":{"kind":"Undelegate","val":0,"amt":1322},"partialState":{"h":8,"t":48,"tokens":[9967,1623,20648,15111],"delegation":[8967,623,19648,14111],"delegatorTokens":9999999953284}},{"ix":81,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":82,"action":{"kind":"Undelegate","val":2,"amt":4420},"partialState":{"h":8,"t":48,"tokens":[9967,1623,16228,15111],"delegation":[8967,623,15228,14111],"delegatorTokens":9999999953284}},{"ix":83,"action":{"kind":"Undelegate","val":0,"amt":2031},"partialState":{"h":8,"t":48,"tokens":[7936,1623,16228,15111],"delegation":[6936,623,15228,14111],"delegatorTokens":9999999953284}},{"ix":84,"action":{"kind":"Undelegate","val":2,"amt":1748},"partialState":{"h":8,"t":48,"tokens":[7936,1623,14480,15111],"delegation":[6936,623,13480,14111],"delegatorTokens":9999999953284}},{"ix":85,"action":{"kind":"Undelegate","val":0,"amt":4198},"partialState":{"h":8,"t":48,"tokens":[3738,1623,14480,15111],"delegation":[2738,623,13480,14111],"delegatorTokens":9999999953284}},{"ix":86,"action":{"kind":"Delegate","val":2,"amt":3178},"partialState":{"h":8,"t":48,"tokens":[3738,1623,17658,15111],"delegation":[2738,623,16658,14111],"delegatorTokens":9999999950106}},{"ix":87,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":88,"action":{"kind":"Deliver","chain":"consumer","numPackets":4},"partialState":{"h":13,"t":78,"consumerPower":[null,null,17084,8953],"outstandingDowntime":[false,false,true,true]}},{"ix":89,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":90,"action":{"kind":"Delegate","val":3,"amt":2044},"partialState":{"h":8,"t":48,"tokens":[3738,1623,17658,17155],"delegation":[2738,623,16658,16155],"delegatorTokens":9999999948062}},{"ix":91,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":92,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":9,"t":54,"tokens":[3738,1623,17658,17155],"delegation":[2738,623,16658,16155],"delegatorTokens":9999999948062,"jailed":[null,null,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":93,"action":{"kind":"Undelegate","val":1,"amt":4797},"partialState":{"h":9,"t":54,"tokens":[3738,1623,17658,17155],"delegation":[2738,623,16658,16155],"delegatorTokens":9999999948062}},{"ix":94,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":10,"t":60,"tokens":[3738,1623,17658,17155],"delegation":[2738,623,16658,16155],"delegatorTokens":9999999948062,"jailed":[null,null,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":95,"action":{"kind":"Undelegate","val":1,"amt":4111},"partialState":{"h":10,"t":60,"tokens":[3738,1623,17658,17155],"delegation":[2738,623,16658,16155],"delegatorTokens":9999999948062}},{"ix":96,"action":{"kind":"Undelegate","val":2,"amt":4578},"partialState":{"h":10,"t":60,"tokens":[3738,1623,13080,17155],"delegation":[2738,623,12080,16155],"delegatorTokens":9999999948062}},{"ix":97,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":11,"t":66,"tokens":[3738,1623,13080,17155],"delegation":[2738,623,12080,16155],"delegatorTokens":9999999948062,"jailed":[null,null,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":98,"action":{"kind":"Delegate","val":3,"amt":3419},"partialState":{"h":11,"t":66,"tokens":[3738,1623,13080,20574],"delegation":[2738,623,12080,19574],"delegatorTokens":9999999944643}},{"ix":99,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":100,"action":{"kind":"Undelegate","val":0,"amt":3762},"partialState":{"h":11,"t":66,"tokens":[3738,1623,13080,20574],"delegation":[2738,623,12080,19574],"delegatorTokens":9999999944643}},{"ix":101,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":12,"t":72,"tokens":[3738,1623,13080,20574],"delegation":[2738,623,12080,19574],"delegatorTokens":9999999944643,"jailed":[null,null,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":102,"action":{"kind":"Delegate","val":3,"amt":3489},"partialState":{"h":12,"t":72,"tokens":[3738,1623,13080,24063],"delegation":[2738,623,12080,23063],"delegatorTokens":9999999941154}},{"ix":103,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":13,"t":78,"tokens":[3738,1623,13080,24063],"delegation":[2738,623,12080,23063],"delegatorTokens":9999999941154,"jailed":[null,null,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":104,"action":{"kind":"Delegate","val":3,"amt":1578},"partialState":{"h":13,"t":78,"tokens":[3738,1623,13080,25641],"delegation":[2738,623,12080,24641],"delegatorTokens":9999999939576}},{"ix":105,"action":{"kind":"Undelegate","val":1,"amt":1602},"partialState":{"h":13,"t":78,"tokens":[3738,1623,13080,25641],"delegation":[2738,623,12080,24641],"delegatorTokens":9999999939576}},{"ix":106,"action":{"kind":"Deliver","chain":"consumer","numPackets":5},"partialState":{"h":13,"t":78,"consumerPower":[null,null,17084,8953],"outstandingDowntime":[false,false,true,true]}},{"ix":107,"action":{"kind":"Deliver","chain":"provider","numPackets":6},"partialState":{"h":13,"t":78,"tokens":[3738,1623,13080,25641],"delegation":[2738,623,12080,24641],"delegatorTokens":9999999939576,"jailed":[null,null,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":108,"action":{"kind":"Undelegate","val":3,"amt":4883},"partialState":{"h":13,"t":78,"tokens":[3738,1623,13080,20758],"delegation":[2738,623,12080,19758],"delegatorTokens":9999999939576}},{"ix":109,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":14,"t":84,"tokens":[3738,1623,13080,20758],"delegation":[2738,623,12080,19758],"delegatorTokens":9999999939576,"jailed":[null,null,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":110,"action":{"kind":"Undelegate","val":2,"amt":4912},"partialState":{"h":14,"t":84,"tokens":[3738,1623,8168,20758],"delegation":[2738,623,7168,19758],"delegatorTokens":9999999939576}},{"ix":111,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":14,"t":84,"consumerPower":[null,null,13080,20574],"outstandingDowntime":[false,false,true,true]}},{"ix":112,"action":{"kind":"Delegate","val":2,"amt":2297},"partialState":{"h":14,"t":84,"tokens":[3738,1623,10465,20758],"delegation":[2738,623,9465,19758],"delegatorTokens":9999999937279}},{"ix":113,"action":{"kind":"Deliver","chain":"provider","numPackets":6},"partialState":{"h":14,"t":84,"tokens":[3738,1623,10465,20758],"delegation":[2738,623,9465,19758],"delegatorTokens":9999999937279,"jailed":[null,null,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":114,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":15,"t":90,"consumerPower":[null,null,13080,20574],"outstandingDowntime":[false,false,true,true]}},{"ix":115,"action":{"kind":"Delegate","val":2,"amt":2046},"partialState":{"h":14,"t":84,"tokens":[3738,1623,12511,20758],"delegation":[2738,623,11511,19758],"delegatorTokens":9999999935233}},{"ix":116,"action":{"kind":"Delegate","val":1,"amt":2705},"partialState":{"h":14,"t":84,"tokens":[3738,4328,12511,20758],"delegation":[2738,3328,11511,19758],"delegatorTokens":9999999932528}},{"ix":117,"action":{"kind":"Undelegate","val":2,"amt":2799},"partialState":{"h":14,"t":84,"tokens":[3738,4328,9712,20758],"delegation":[2738,3328,8712,19758],"delegatorTokens":9999999932528}},{"ix":118,"action":{"kind":"Deliver","chain":"consumer","numPackets":6},"partialState":{"h":15,"t":90,"consumerPower":[null,null,13080,20574],"outstandingDowntime":[false,false,true,true]}},{"ix":119,"action":{"kind":"Undelegate","val":0,"amt":4365},"partialState":{"h":14,"t":84,"tokens":[3738,4328,9712,20758],"delegation":[2738,3328,8712,19758],"delegatorTokens":9999999932528}},{"ix":120,"action":{"kind":"Deliver","chain":"consumer","numPackets":6},"partialState":{"h":15,"t":90,"consumerPower":[null,null,13080,20574],"outstandingDowntime":[false,false,true,true]}},{"ix":121,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":122,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":15,"t":90,"tokens":[3738,4328,9712,20758],"delegation":[2738,3328,8712,19758],"delegatorTokens":9999999932528,"jailed":[null,null,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":123,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":124,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":16,"t":96,"consumerPower":[null,null,13080,24063],"outstandingDowntime":[false,false,true,true]}},{"ix":125,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":16,"t":96,"tokens":[3738,4328,9712,20758],"delegation":[2738,3328,8712,19758],"delegatorTokens":9999999932528,"jailed":[null,null,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":126,"action":{"kind":"Deliver","chain":"consumer","numPackets":4},"partialState":{"h":16,"t":96,"consumerPower":[null,null,13080,24063],"outstandingDowntime":[false,false,true,true]}},{"ix":127,"action":{"kind":"Undelegate","val":1,"amt":3462},"partialState":{"h":16,"t":96,"tokens":[3738,4328,9712,20758],"delegation":[2738,3328,8712,19758],"delegatorTokens":9999999932528}},{"ix":128,"action":{"kind":"Delegate","val":1,"amt":4252},"partialState":{"h":16,"t":96,"tokens":[3738,8580,9712,20758],"delegation":[2738,7580,8712,19758],"delegatorTokens":9999999928276}},{"ix":129,"action":{"kind":"Deliver","chain":"provider","numPackets":5},"partialState":{"h":16,"t":96,"tokens":[3738,8580,9712,20758],"delegation":[2738,7580,8712,19758],"delegatorTokens":9999999928276,"jailed":[null,null,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":130,"action":{"kind":"Delegate","val":2,"amt":2286},"partialState":{"h":16,"t":96,"tokens":[3738,8580,11998,20758],"delegation":[2738,7580,10998,19758],"delegatorTokens":9999999925990}},{"ix":131,"action":{"kind":"Delegate","val":0,"amt":1152},"partialState":{"h":16,"t":96,"tokens":[4890,8580,11998,20758],"delegation":[3890,7580,10998,19758],"delegatorTokens":9999999924838}},{"ix":132,"action":{"kind":"Undelegate","val":1,"amt":4248},"partialState":{"h":16,"t":96,"tokens":[4890,4332,11998,20758],"delegation":[3890,3332,10998,19758],"delegatorTokens":9999999924838}},{"ix":133,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":134,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":135,"action":{"kind":"Undelegate","val":1,"amt":2590},"partialState":{"h":16,"t":96,"tokens":[4890,1742,11998,20758],"delegation":[3890,742,10998,19758],"delegatorTokens":9999999924838}},{"ix":136,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":137,"action":{"kind":"Delegate","val":2,"amt":4207},"partialState":{"h":16,"t":96,"tokens":[4890,1742,16205,20758],"delegation":[3890,742,15205,19758],"delegatorTokens":9999999920631}},{"ix":138,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":139,"action":{"kind":"Delegate","val":2,"amt":1984},"partialState":{"h":16,"t":96,"tokens":[4890,1742,18189,20758],"delegation":[3890,742,17189,19758],"delegatorTokens":9999999918647}},{"ix":140,"action":{"kind":"Delegate","val":3,"amt":4615},"partialState":{"h":16,"t":96,"tokens":[4890,1742,18189,25373],"delegation":[3890,742,17189,24373],"delegatorTokens":9999999914032}},{"ix":141,"action":{"kind":"Delegate","val":1,"amt":2502},"partialState":{"h":16,"t":96,"tokens":[4890,4244,18189,25373],"delegation":[3890,3244,17189,24373],"delegatorTokens":9999999911530}},{"ix":142,"action":{"kind":"Delegate","val":3,"amt":4688},"partialState":{"h":16,"t":96,"tokens":[4890,4244,18189,30061],"delegation":[3890,3244,17189,29061],"delegatorTokens":9999999906842}},{"ix":143,"action":{"kind":"Deliver","chain":"provider","numPackets":5},"partialState":{"h":16,"t":96,"tokens":[4890,4244,18189,30061],"delegation":[3890,3244,17189,29061],"delegatorTokens":9999999906842,"jailed":[null,null,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":144,"action":{"kind":"Delegate","val":2,"amt":1648},"partialState":{"h":16,"t":96,"tokens":[4890,4244,19837,30061],"delegation":[3890,3244,18837,29061],"delegatorTokens":9999999905194}},{"ix":145,"action":{"kind":"Undelegate","val":1,"amt":3889},"partialState":{"h":16,"t":96,"tokens":[4890,4244,19837,30061],"delegation":[3890,3244,18837,29061],"delegatorTokens":9999999905194}},{"ix":146,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":147,"action":{"kind":"Delegate","val":3,"amt":2517},"partialState":{"h":16,"t":96,"tokens":[4890,4244,19837,32578],"delegation":[3890,3244,18837,31578],"delegatorTokens":9999999902677}},{"ix":148,"action":{"kind":"Undelegate","val":1,"amt":2091},"partialState":{"h":16,"t":96,"tokens":[4890,2153,19837,32578],"delegation":[3890,1153,18837,31578],"delegatorTokens":9999999902677}},{"ix":149,"action":{"kind":"Undelegate","val":1,"amt":1103},"partialState":{"h":16,"t":96,"tokens":[4890,1050,19837,32578],"delegation":[3890,50,18837,31578],"delegatorTokens":9999999902677}},{"ix":150,"action":{"kind":"Delegate","val":0,"amt":4009},"partialState":{"h":16,"t":96,"tokens":[8899,1050,19837,32578],"delegation":[7899,50,18837,31578],"delegatorTokens":9999999898668}},{"ix":151,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":152,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":153,"action":{"kind":"Deliver","chain":"provider","numPackets":3},"partialState":{"h":16,"t":96,"tokens":[8899,1050,19837,32578],"delegation":[7899,50,18837,31578],"delegatorTokens":9999999898668,"jailed":[null,null,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":154,"action":{"kind":"Delegate","val":1,"amt":2211},"partialState":{"h":16,"t":96,"tokens":[8899,3261,19837,32578],"delegation":[7899,2261,18837,31578],"delegatorTokens":9999999896457}},{"ix":155,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":156,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":157,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":17,"t":102,"consumerPower":[null,null,9712,20758],"outstandingDowntime":[false,false,true,true]}},{"ix":158,"action":{"kind":"Undelegate","val":3,"amt":3352},"partialState":{"h":16,"t":96,"tokens":[8899,3261,19837,29226],"delegation":[7899,2261,18837,28226],"delegatorTokens":9999999896457}},{"ix":159,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":160,"action":{"kind":"Deliver","chain":"consumer","numPackets":3},"partialState":{"h":17,"t":102,"consumerPower":[null,null,9712,20758],"outstandingDowntime":[false,false,true,true]}},{"ix":161,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":17,"t":102,"tokens":[8899,3261,19837,29226],"delegation":[7899,2261,18837,28226],"delegatorTokens":9999999896457,"jailed":[null,null,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":162,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":18,"t":108,"consumerPower":[null,null,9712,20758],"outstandingDowntime":[false,false,true,true]}},{"ix":163,"action":{"kind":"Undelegate","val":1,"amt":3263},"partialState":{"h":17,"t":102,"tokens":[8899,3261,19837,29226],"delegation":[7899,2261,18837,28226],"delegatorTokens":9999999896457}},{"ix":164,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":165,"action":{"kind":"Deliver","chain":"provider","numPackets":2},"partialState":{"h":17,"t":102,"tokens":[8899,3261,19837,29226],"delegation":[7899,2261,18837,28226],"delegatorTokens":9999999896457,"jailed":[null,null,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":166,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":18,"t":108,"tokens":[8899,3261,19837,29226],"delegation":[7899,2261,18837,28226],"delegatorTokens":9999999900349,"jailed":[null,null,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":167,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":19,"t":114,"consumerPower":[null,null,9712,20758],"outstandingDowntime":[false,false,true,true]}},{"ix":168,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":169,"action":{"kind":"Undelegate","val":3,"amt":4768},"partialState":{"h":18,"t":108,"tokens":[8899,3261,19837,24458],"delegation":[7899,2261,18837,23458],"delegatorTokens":9999999900349}},{"ix":170,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":19,"t":114,"tokens":[8899,3261,19837,24458],"delegation":[7899,2261,18837,23458],"delegatorTokens":9999999900349,"jailed":[null,null,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":171,"action":{"kind":"Undelegate","val":1,"amt":3500},"partialState":{"h":19,"t":114,"tokens":[8899,3261,19837,24458],"delegation":[7899,2261,18837,23458],"delegatorTokens":9999999900349}},{"ix":172,"action":{"kind":"Undelegate","val":3,"amt":3909},"partialState":{"h":19,"t":114,"tokens":[8899,3261,19837,20549],"delegation":[7899,2261,18837,19549],"delegatorTokens":9999999900349}},{"ix":173,"action":{"kind":"Deliver","chain":"provider","numPackets":4},"partialState":{"h":19,"t":114,"tokens":[8899,3261,19837,20549],"delegation":[7899,2261,18837,19549],"delegatorTokens":9999999900349,"jailed":[null,null,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":174,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":20,"t":120,"consumerPower":[null,null,9712,20758],"outstandingDowntime":[false,false,true,true]}},{"ix":175,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":176,"action":{"kind":"Deliver","chain":"consumer","numPackets":4},"partialState":{"h":20,"t":120,"consumerPower":[null,null,9712,20758],"outstandingDowntime":[false,false,true,true]}},{"ix":177,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":20,"t":120,"tokens":[8899,3261,19837,20549],"delegation":[7899,2261,18837,19549],"delegatorTokens":9999999900349,"jailed":[null,null,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":178,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":21,"t":126,"consumerPower":[null,null,19837,29226],"outstandingDowntime":[false,false,true,true]}},{"ix":179,"action":{"kind":"Delegate","val":0,"amt":1368},"partialState":{"h":20,"t":120,"tokens":[10267,3261,19837,20549],"delegation":[9267,2261,18837,19549],"delegatorTokens":9999999898981}},{"ix":180,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":22,"t":132,"consumerPower":[null,null,19837,29226],"outstandingDowntime":[false,false,true,true]}},{"ix":181,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":182,"action":{"kind":"Undelegate","val":1,"amt":2145},"partialState":{"h":20,"t":120,"tokens":[10267,1116,19837,20549],"delegation":[9267,116,18837,19549],"delegatorTokens":9999999898981}},{"ix":183,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":184,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":23,"t":138,"consumerPower":[null,null,19837,29226],"outstandingDowntime":[false,false,true,true]}},{"ix":185,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":21,"t":126,"tokens":[10267,1116,19837,20549],"delegation":[9267,116,18837,19549],"delegatorTokens":9999999898981,"jailed":[null,null,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":186,"action":{"kind":"Undelegate","val":0,"amt":3196},"partialState":{"h":21,"t":126,"tokens":[7071,1116,19837,20549],"delegation":[6071,116,18837,19549],"delegatorTokens":9999999898981}},{"ix":187,"action":{"kind":"Deliver","chain":"provider","numPackets":2},"partialState":{"h":21,"t":126,"tokens":[7071,1116,19837,20549],"delegation":[6071,116,18837,19549],"delegatorTokens":9999999898981,"jailed":[null,null,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":188,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":22,"t":132,"tokens":[7071,1116,19837,20549],"delegation":[6071,116,18837,19549],"delegatorTokens":9999999907134,"jailed":[null,null,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":189,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":190,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":23,"t":138,"tokens":[7071,1116,19837,20549],"delegation":[6071,116,18837,19549],"delegatorTokens":9999999907134,"jailed":[null,null,null,null],"status":["unbonded","unbonded","bonded","bonded"]}},{"ix":191,"action":{"kind":"Delegate","val":0,"amt":2602},"partialState":{"h":23,"t":138,"tokens":[9673,1116,19837,20549],"delegation":[8673,116,18837,19549],"delegatorTokens":9999999904532}},{"ix":192,"action":{"kind":"Undelegate","val":1,"amt":4522},"partialState":{"h":23,"t":138,"tokens":[9673,1116,19837,20549],"delegation":[8673,116,18837,19549],"delegatorTokens":9999999904532}},{"ix":193,"action":{"kind":"Deliver","chain":"provider","numPackets":1},"partialState":{"h":23,"t":138,"tokens":[9673,1116,19837,20549],"delegation":[8673,116,18837,19549],"delegatorTokens":9999999904532,"jailed":[null,null,null,null],"status":["unbonded","unbonded","bonded","bonded"]}},{"ix":194,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":195,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":196,"action":{"kind":"Deliver","chain":"provider","numPackets":5},"partialState":{"h":23,"t":138,"tokens":[9673,1116,19837,20549],"delegation":[8673,116,18837,19549],"delegatorTokens":9999999904532,"jailed":[null,null,null,null],"status":["unbonded","unbonded","bonded","bonded"]}},{"ix":197,"action":{"kind":"Delegate","val":3,"amt":3295},"partialState":{"h":23,"t":138,"tokens":[9673,1116,19837,23844],"delegation":[8673,116,18837,22844],"delegatorTokens":9999999901237}},{"ix":198,"action":{"kind":"Deliver","chain":"provider","numPackets":2},"partialState":{"h":23,"t":138,"tokens":[9673,1116,19837,23844],"delegation":[8673,116,18837,22844],"delegatorTokens":9999999901237,"jailed":[null,null,null,null],"status":["unbonded","unbonded","bonded","bonded"]}},{"ix":199,"action":{"kind":"Deliver","chain":"provider","numPackets":6},"partialState":{"h":23,"t":138,"tokens":[9673,1116,19837,23844],"delegation":[8673,116,18837,22844],"delegatorTokens":9999999901237,"jailed":[null,null,null,null],"status":["unbonded","unbonded","bonded","bonded"]}}],"events":["send_downtime_slash_request","insufficient_shares","insufficient_shares","send_vsc_without_downtime_ack","downtime_slash_request_outstanding","send_downtime_slash_request","send_double_sign_slash_request","receive_slash_request_unbonded","send_vsc_without_downtime_ack","send_double_sign_slash_request","receive_double_sign_slash_request","receive_slash_request_unbonded","receive_double_sign_slash_request","consumer_update_val","consumer_update_val","insufficient_shares","more_than_one_third_val_power_change","send_vsc_without_downtime_ack","insufficient_shares","more_than_one_third_val_power_change","send_vsc_without_downtime_ack","send_vsc_without_downtime_ack","insufficient_shares","consumer_del_val","consumer_del_val","consumer_add_val","consumer_add_val","send_vsc_without_downtime_ack","send_vsc_without_downtime_ack","insufficient_shares","insufficient_shares","send_vsc_without_downtime_ack","insufficient_shares","send_vsc_without_downtime_ack","send_vsc_without_downtime_ack","insufficient_shares","some_undels_expired_but_not_completed","send_vsc_without_downtime_ack","consumer_update_val","consumer_update_val","insufficient_shares","some_undels_expired_but_not_completed","send_vsc_without_downtime_ack","consumer_update_val","insufficient_shares","insufficient_shares","consumer_send_maturation","consumer_send_maturation","consumer_update_val","consumer_update_val","some_undels_expired_but_not_completed","send_vsc_without_downtime_ack","insufficient_shares","complete_undel_immediate","complete_undel_immediate","send_vsc_without_downtime_ack","insufficient_shares","send_vsc_without_downtime_ack","consumer_send_maturation","consumer_send_maturation","consumer_update_val","consumer_update_val","consumer_send_maturation","consumer_send_maturation","consumer_send_maturation","consumer_send_maturation","consumer_send_maturation","some_undels_expired_but_not_completed","send_vsc_not_because_change","send_vsc_without_downtime_ack","complete_undel_immediate","complete_undel_immediate","set_unval_hold_false","set_unval_hold_false","send_vsc_not_because_change","send_vsc_without_downtime_ack","complete_unval_in_endblock","complete_unval_in_endblock","some_undels_expired_but_not_completed","insufficient_shares"]},{"meta":{"commit":"7ffd0c04e4205cbc9caf212abfe6c59ee43153bf"},"constants":{"P":"provider","C":"consumer","UNBONDING_SECONDS_P":70,"UNBONDING_SECONDS_C":50,"TRUSTING_SECONDS":49,"NUM_VALIDATORS":4,"MAX_VALIDATORS":2,"SLASH_DOUBLESIGN":0,"SLASH_DOWNTIME":0,"JAIL_SECONDS":999999999999999,"BLOCK_SECONDS":6,"INITIAL_DELEGATOR_TOKENS":10000000000000,"DELEGATE_AMT_MIN":1000,"DELEGATE_AMT_MAX":5000,"UNDELEGATE_AMT_MIN":1000,"UNDELEGATE_AMT_MAX":5000,"ISDOWNTIME_PROBABILITY":0.5,"MAX_NUM_PACKETS_FOR_DELIVER":6},"actions":[{"ix":0,"action":{"kind":"ConsumerSlash","val":3,"infractionHeight":0,"isDowntime":true},"partialState":{"h":1,"t":6,"outstandingDowntime":[false,false,false,true]}},{"ix":1,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":2,"t":12,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,false,false,true]}},{"ix":2,"action":{"kind":"Undelegate","val":3,"amt":4545},"partialState":{"h":1,"t":6,"tokens":[5000,4000,3000,2000],"delegation":[4000,3000,2000,1000],"delegatorTokens":10000000000000}},{"ix":3,"action":{"kind":"Undelegate","val":0,"amt":3832},"partialState":{"h":1,"t":6,"tokens":[1168,4000,3000,2000],"delegation":[168,3000,2000,1000],"delegatorTokens":10000000000000}},{"ix":4,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":5,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":3,"t":18,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,false,false,true]}},{"ix":6,"action":{"kind":"Delegate","val":0,"amt":3045},"partialState":{"h":1,"t":6,"tokens":[4213,4000,3000,2000],"delegation":[3213,3000,2000,1000],"delegatorTokens":9999999996955}},{"ix":7,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":4,"t":24,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,false,false,true]}},{"ix":8,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":2,"t":12,"tokens":[4213,4000,3000,2000],"delegation":[3213,3000,2000,1000],"delegatorTokens":9999999996955,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":9,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":10,"action":{"kind":"Delegate","val":0,"amt":4439},"partialState":{"h":2,"t":12,"tokens":[8652,4000,3000,2000],"delegation":[7652,3000,2000,1000],"delegatorTokens":9999999992516}},{"ix":11,"action":{"kind":"Deliver","chain":"consumer","numPackets":3},"partialState":{"h":4,"t":24,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,false,false,true]}},{"ix":12,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":13,"action":{"kind":"Undelegate","val":3,"amt":1917},"partialState":{"h":2,"t":12,"tokens":[8652,4000,3000,2000],"delegation":[7652,3000,2000,1000],"delegatorTokens":9999999992516}},{"ix":14,"action":{"kind":"Delegate","val":1,"amt":2691},"partialState":{"h":2,"t":12,"tokens":[8652,6691,3000,2000],"delegation":[7652,5691,2000,1000],"delegatorTokens":9999999989825}},{"ix":15,"action":{"kind":"Deliver","chain":"provider","numPackets":5},"partialState":{"h":2,"t":12,"tokens":[8652,6691,3000,2000],"delegation":[7652,5691,2000,1000],"delegatorTokens":9999999989825,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":16,"action":{"kind":"ConsumerSlash","val":1,"infractionHeight":0,"isDowntime":false},"partialState":{"h":4,"t":24,"outstandingDowntime":[false,false,false,true]}},{"ix":17,"action":{"kind":"ConsumerSlash","val":2,"infractionHeight":2,"isDowntime":true},"partialState":{"h":4,"t":24,"outstandingDowntime":[false,false,true,true]}},{"ix":18,"action":{"kind":"Undelegate","val":0,"amt":2455},"partialState":{"h":2,"t":12,"tokens":[6197,6691,3000,2000],"delegation":[5197,5691,2000,1000],"delegatorTokens":9999999989825}},{"ix":19,"action":{"kind":"Deliver","chain":"provider","numPackets":3},"partialState":{"h":2,"t":12,"tokens":[6197,6691,3000,2000],"delegation":[5197,5691,2000,1000],"delegatorTokens":9999999989825,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":20,"action":{"kind":"Undelegate","val":3,"amt":4133},"partialState":{"h":2,"t":12,"tokens":[6197,6691,3000,2000],"delegation":[5197,5691,2000,1000],"delegatorTokens":9999999989825}},{"ix":21,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":3,"t":18,"tokens":[6197,6691,3000,2000],"delegation":[5197,5691,2000,1000],"delegatorTokens":9999999989825,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":22,"action":{"kind":"Delegate","val":3,"amt":2415},"partialState":{"h":3,"t":18,"tokens":[6197,6691,3000,4415],"delegation":[5197,5691,2000,3415],"delegatorTokens":9999999987410}},{"ix":23,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":24,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":25,"action":{"kind":"Deliver","chain":"consumer","numPackets":4},"partialState":{"h":4,"t":24,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,false,true,true]}},{"ix":26,"action":{"kind":"Undelegate","val":0,"amt":2775},"partialState":{"h":3,"t":18,"tokens":[3422,6691,3000,4415],"delegation":[2422,5691,2000,3415],"delegatorTokens":9999999987410}},{"ix":27,"action":{"kind":"Delegate","val":1,"amt":2993},"partialState":{"h":3,"t":18,"tokens":[3422,9684,3000,4415],"delegation":[2422,8684,2000,3415],"delegatorTokens":9999999984417}},{"ix":28,"action":{"kind":"Delegate","val":2,"amt":2212},"partialState":{"h":3,"t":18,"tokens":[3422,9684,5212,4415],"delegation":[2422,8684,4212,3415],"delegatorTokens":9999999982205}},{"ix":29,"action":{"kind":"Delegate","val":3,"amt":3383},"partialState":{"h":3,"t":18,"tokens":[3422,9684,5212,7798],"delegation":[2422,8684,4212,6798],"delegatorTokens":9999999978822}},{"ix":30,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":5,"t":30,"consumerPower":[4213,4000,null,null],"outstandingDowntime":[false,false,true,true]}},{"ix":31,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":6,"t":36,"consumerPower":[4213,4000,null,null],"outstandingDowntime":[false,false,true,true]}},{"ix":32,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":33,"action":{"kind":"Delegate","val":3,"amt":2521},"partialState":{"h":3,"t":18,"tokens":[3422,9684,5212,10319],"delegation":[2422,8684,4212,9319],"delegatorTokens":9999999976301}},{"ix":34,"action":{"kind":"Deliver","chain":"provider","numPackets":6},"partialState":{"h":3,"t":18,"tokens":[3422,9684,5212,10319],"delegation":[2422,8684,4212,9319],"delegatorTokens":9999999976301,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":35,"action":{"kind":"Deliver","chain":"provider","numPackets":1},"partialState":{"h":3,"t":18,"tokens":[3422,9684,5212,10319],"delegation":[2422,8684,4212,9319],"delegatorTokens":9999999976301,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":36,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":4,"t":24,"tokens":[3422,9684,5212,10319],"delegation":[2422,8684,4212,9319],"delegatorTokens":9999999976301,"jailed":[null,null,null,null],"status":["unbonding","bonded","unbonded","bonded"]}},{"ix":37,"action":{"kind":"Delegate","val":0,"amt":2993},"partialState":{"h":4,"t":24,"tokens":[6415,9684,5212,10319],"delegation":[5415,8684,4212,9319],"delegatorTokens":9999999973308}},{"ix":38,"action":{"kind":"Delegate","val":0,"amt":1556},"partialState":{"h":4,"t":24,"tokens":[7971,9684,5212,10319],"delegation":[6971,8684,4212,9319],"delegatorTokens":9999999971752}},{"ix":39,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":40,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":5,"t":30,"tokens":[7971,9684,5212,10319],"delegation":[6971,8684,4212,9319],"delegatorTokens":9999999971752,"jailed":[null,null,null,null],"status":["unbonding","bonded","unbonded","bonded"]}},{"ix":41,"action":{"kind":"Deliver","chain":"provider","numPackets":2},"partialState":{"h":5,"t":30,"tokens":[7971,9684,5212,10319],"delegation":[6971,8684,4212,9319],"delegatorTokens":9999999971752,"jailed":[null,null,null,null],"status":["unbonding","bonded","unbonded","bonded"]}},{"ix":42,"action":{"kind":"Deliver","chain":"provider","numPackets":6},"partialState":{"h":5,"t":30,"tokens":[7971,9684,5212,10319],"delegation":[6971,8684,4212,9319],"delegatorTokens":9999999971752,"jailed":[null,null,null,null],"status":["unbonding","bonded","unbonded","bonded"]}},{"ix":43,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":44,"action":{"kind":"Deliver","chain":"provider","numPackets":6},"partialState":{"h":5,"t":30,"tokens":[7971,9684,5212,10319],"delegation":[6971,8684,4212,9319],"delegatorTokens":9999999971752,"jailed":[null,null,null,null],"status":["unbonding","bonded","unbonded","bonded"]}},{"ix":45,"action":{"kind":"Delegate","val":2,"amt":3435},"partialState":{"h":5,"t":30,"tokens":[7971,9684,8647,10319],"delegation":[6971,8684,7647,9319],"delegatorTokens":9999999968317}},{"ix":46,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":6,"t":36,"tokens":[7971,9684,8647,10319],"delegation":[6971,8684,7647,9319],"delegatorTokens":9999999968317,"jailed":[null,null,null,null],"status":["unbonding","bonded","unbonded","bonded"]}},{"ix":47,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":48,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":49,"action":{"kind":"Delegate","val":1,"amt":3247},"partialState":{"h":6,"t":36,"tokens":[7971,12931,8647,10319],"delegation":[6971,11931,7647,9319],"delegatorTokens":9999999965070}},{"ix":50,"action":{"kind":"Undelegate","val":3,"amt":4119},"partialState":{"h":6,"t":36,"tokens":[7971,12931,8647,6200],"delegation":[6971,11931,7647,5200],"delegatorTokens":9999999965070}},{"ix":51,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":7,"t":42,"tokens":[7971,12931,8647,6200],"delegation":[6971,11931,7647,5200],"delegatorTokens":9999999965070,"jailed":[null,null,null,null],"status":["unbonding","bonded","bonded","unbonding"]}},{"ix":52,"action":{"kind":"Delegate","val":0,"amt":4284},"partialState":{"h":7,"t":42,"tokens":[12255,12931,8647,6200],"delegation":[11255,11931,7647,5200],"delegatorTokens":9999999960786}},{"ix":53,"action":{"kind":"Delegate","val":0,"amt":1526},"partialState":{"h":7,"t":42,"tokens":[13781,12931,8647,6200],"delegation":[12781,11931,7647,5200],"delegatorTokens":9999999959260}},{"ix":54,"action":{"kind":"Undelegate","val":0,"amt":3387},"partialState":{"h":7,"t":42,"tokens":[10394,12931,8647,6200],"delegation":[9394,11931,7647,5200],"delegatorTokens":9999999959260}},{"ix":55,"action":{"kind":"Delegate","val":2,"amt":4312},"partialState":{"h":7,"t":42,"tokens":[10394,12931,12959,6200],"delegation":[9394,11931,11959,5200],"delegatorTokens":9999999954948}},{"ix":56,"action":{"kind":"Delegate","val":3,"amt":3327},"partialState":{"h":7,"t":42,"tokens":[10394,12931,12959,9527],"delegation":[9394,11931,11959,8527],"delegatorTokens":9999999951621}},{"ix":57,"action":{"kind":"Delegate","val":1,"amt":3969},"partialState":{"h":7,"t":42,"tokens":[10394,16900,12959,9527],"delegation":[9394,15900,11959,8527],"delegatorTokens":9999999947652}},{"ix":58,"action":{"kind":"Deliver","chain":"consumer","numPackets":1},"partialState":{"h":6,"t":36,"consumerPower":[4213,4000,null,null],"outstandingDowntime":[false,false,true,true]}},{"ix":59,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":7,"t":42,"consumerPower":[6197,6691,null,null],"outstandingDowntime":[false,false,true,true]}},{"ix":60,"action":{"kind":"Undelegate","val":2,"amt":4637},"partialState":{"h":7,"t":42,"tokens":[10394,16900,8322,9527],"delegation":[9394,15900,7322,8527],"delegatorTokens":9999999947652}},{"ix":61,"action":{"kind":"Delegate","val":2,"amt":2438},"partialState":{"h":7,"t":42,"tokens":[10394,16900,10760,9527],"delegation":[9394,15900,9760,8527],"delegatorTokens":9999999945214}},{"ix":62,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":63,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":8,"t":48,"consumerPower":[6197,6691,null,null],"outstandingDowntime":[false,false,true,true]}},{"ix":64,"action":{"kind":"Delegate","val":0,"amt":1204},"partialState":{"h":7,"t":42,"tokens":[11598,16900,10760,9527],"delegation":[10598,15900,9760,8527],"delegatorTokens":9999999944010}},{"ix":65,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":9,"t":54,"consumerPower":[6197,6691,null,null],"outstandingDowntime":[false,false,true,true]}},{"ix":66,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":10,"t":60,"consumerPower":[6197,6691,null,null],"outstandingDowntime":[false,false,true,true]}},{"ix":67,"action":{"kind":"Delegate","val":3,"amt":4829},"partialState":{"h":7,"t":42,"tokens":[11598,16900,10760,14356],"delegation":[10598,15900,9760,13356],"delegatorTokens":9999999939181}},{"ix":68,"action":{"kind":"Undelegate","val":0,"amt":2746},"partialState":{"h":7,"t":42,"tokens":[8852,16900,10760,14356],"delegation":[7852,15900,9760,13356],"delegatorTokens":9999999939181}},{"ix":69,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":70,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":8,"t":48,"tokens":[8852,16900,10760,14356],"delegation":[7852,15900,9760,13356],"delegatorTokens":9999999939181,"jailed":[null,null,null,null],"status":["unbonding","bonded","unbonding","bonded"]}},{"ix":71,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":9,"t":54,"tokens":[8852,16900,10760,14356],"delegation":[7852,15900,9760,13356],"delegatorTokens":9999999939181,"jailed":[null,null,null,null],"status":["unbonding","bonded","unbonding","bonded"]}},{"ix":72,"action":{"kind":"Deliver","chain":"consumer","numPackets":6},"partialState":{"h":10,"t":60,"consumerPower":[6197,6691,null,null],"outstandingDowntime":[false,false,true,true]}},{"ix":73,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":74,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":75,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":76,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":10,"t":60,"tokens":[8852,16900,10760,14356],"delegation":[7852,15900,9760,13356],"delegatorTokens":9999999939181,"jailed":[null,null,null,null],"status":["unbonding","bonded","unbonding","bonded"]}},{"ix":77,"action":{"kind":"Deliver","chain":"provider","numPackets":4},"partialState":{"h":10,"t":60,"tokens":[8852,16900,10760,14356],"delegation":[7852,15900,9760,13356],"delegatorTokens":9999999939181,"jailed":[null,null,null,null],"status":["unbonding","bonded","unbonding","bonded"]}},{"ix":78,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":79,"action":{"kind":"Deliver","chain":"consumer","numPackets":2},"partialState":{"h":10,"t":60,"consumerPower":[6197,6691,null,null],"outstandingDowntime":[false,false,true,true]}},{"ix":80,"action":{"kind":"Undelegate","val":0,"amt":3021},"partialState":{"h":10,"t":60,"tokens":[5831,16900,10760,14356],"delegation":[4831,15900,9760,13356],"delegatorTokens":9999999939181}},{"ix":81,"action":{"kind":"Delegate","val":0,"amt":2138},"partialState":{"h":10,"t":60,"tokens":[7969,16900,10760,14356],"delegation":[6969,15900,9760,13356],"delegatorTokens":9999999937043}},{"ix":82,"action":{"kind":"Delegate","val":2,"amt":4021},"partialState":{"h":10,"t":60,"tokens":[7969,16900,14781,14356],"delegation":[6969,15900,13781,13356],"delegatorTokens":9999999933022}},{"ix":83,"action":{"kind":"Delegate","val":3,"amt":4555},"partialState":{"h":10,"t":60,"tokens":[7969,16900,14781,18911],"delegation":[6969,15900,13781,17911],"delegatorTokens":9999999928467}},{"ix":84,"action":{"kind":"Delegate","val":2,"amt":2158},"partialState":{"h":10,"t":60,"tokens":[7969,16900,16939,18911],"delegation":[6969,15900,15939,17911],"delegatorTokens":9999999926309}},{"ix":85,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":86,"action":{"kind":"Delegate","val":3,"amt":4171},"partialState":{"h":10,"t":60,"tokens":[7969,16900,16939,23082],"delegation":[6969,15900,15939,22082],"delegatorTokens":9999999922138}},{"ix":87,"action":{"kind":"Undelegate","val":2,"amt":3285},"partialState":{"h":10,"t":60,"tokens":[7969,16900,13654,23082],"delegation":[6969,15900,12654,22082],"delegatorTokens":9999999922138}},{"ix":88,"action":{"kind":"Delegate","val":2,"amt":2892},"partialState":{"h":10,"t":60,"tokens":[7969,16900,16546,23082],"delegation":[6969,15900,15546,22082],"delegatorTokens":9999999919246}},{"ix":89,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":11,"t":66,"consumerPower":[null,16900,null,14356],"outstandingDowntime":[false,false,true,true]}},{"ix":90,"action":{"kind":"Deliver","chain":"consumer","numPackets":6},"partialState":{"h":11,"t":66,"consumerPower":[null,16900,null,14356],"outstandingDowntime":[false,false,true,true]}},{"ix":91,"action":{"kind":"Undelegate","val":0,"amt":4957},"partialState":{"h":10,"t":60,"tokens":[3012,16900,16546,23082],"delegation":[2012,15900,15546,22082],"delegatorTokens":9999999919246}},{"ix":92,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":93,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":12,"t":72,"consumerPower":[null,16900,null,14356],"outstandingDowntime":[false,false,true,true]}},{"ix":94,"action":{"kind":"Deliver","chain":"provider","numPackets":4},"partialState":{"h":10,"t":60,"tokens":[3012,16900,16546,23082],"delegation":[2012,15900,15546,22082],"delegatorTokens":9999999919246,"jailed":[null,null,null,null],"status":["unbonding","bonded","unbonding","bonded"]}},{"ix":95,"action":{"kind":"Undelegate","val":2,"amt":2526},"partialState":{"h":10,"t":60,"tokens":[3012,16900,14020,23082],"delegation":[2012,15900,13020,22082],"delegatorTokens":9999999919246}},{"ix":96,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":97,"action":{"kind":"Delegate","val":3,"amt":1061},"partialState":{"h":10,"t":60,"tokens":[3012,16900,14020,24143],"delegation":[2012,15900,13020,23143],"delegatorTokens":9999999918185}},{"ix":98,"action":{"kind":"Deliver","chain":"consumer","numPackets":2},"partialState":{"h":12,"t":72,"consumerPower":[null,16900,null,14356],"outstandingDowntime":[false,false,true,true]}},{"ix":99,"action":{"kind":"Undelegate","val":0,"amt":2499},"partialState":{"h":10,"t":60,"tokens":[3012,16900,14020,24143],"delegation":[2012,15900,13020,23143],"delegatorTokens":9999999918185}},{"ix":100,"action":{"kind":"Delegate","val":0,"amt":2215},"partialState":{"h":10,"t":60,"tokens":[5227,16900,14020,24143],"delegation":[4227,15900,13020,23143],"delegatorTokens":9999999915970}},{"ix":101,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":102,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":103,"action":{"kind":"Delegate","val":1,"amt":4940},"partialState":{"h":10,"t":60,"tokens":[5227,21840,14020,24143],"delegation":[4227,20840,13020,23143],"delegatorTokens":9999999911030}},{"ix":104,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":11,"t":66,"tokens":[5227,21840,14020,24143],"delegation":[4227,20840,13020,23143],"delegatorTokens":9999999911030,"jailed":[null,null,null,null],"status":["unbonding","bonded","unbonding","bonded"]}},{"ix":105,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":106,"action":{"kind":"Undelegate","val":2,"amt":1149},"partialState":{"h":11,"t":66,"tokens":[5227,21840,12871,24143],"delegation":[4227,20840,11871,23143],"delegatorTokens":9999999911030}},{"ix":107,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":13,"t":78,"consumerPower":[null,16900,null,14356],"outstandingDowntime":[false,false,true,true]}},{"ix":108,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":109,"action":{"kind":"Deliver","chain":"provider","numPackets":1},"partialState":{"h":11,"t":66,"tokens":[5227,21840,12871,24143],"delegation":[4227,20840,11871,23143],"delegatorTokens":9999999911030,"jailed":[null,null,null,null],"status":["unbonding","bonded","unbonding","bonded"]}},{"ix":110,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":14,"t":84,"consumerPower":[null,16900,null,14356],"outstandingDowntime":[false,false,true,true]}},{"ix":111,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":12,"t":72,"tokens":[5227,21840,12871,24143],"delegation":[4227,20840,11871,23143],"delegatorTokens":9999999911030,"jailed":[null,null,null,null],"status":["unbonding","bonded","unbonding","bonded"]}},{"ix":112,"action":{"kind":"Deliver","chain":"provider","numPackets":2},"partialState":{"h":12,"t":72,"tokens":[5227,21840,12871,24143],"delegation":[4227,20840,11871,23143],"delegatorTokens":9999999911030,"jailed":[null,null,null,null],"status":["unbonding","bonded","unbonding","bonded"]}},{"ix":113,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":15,"t":90,"consumerPower":[null,16900,null,14356],"outstandingDowntime":[false,false,true,true]}},{"ix":114,"action":{"kind":"Delegate","val":3,"amt":3862},"partialState":{"h":12,"t":72,"tokens":[5227,21840,12871,28005],"delegation":[4227,20840,11871,27005],"delegatorTokens":9999999907168}},{"ix":115,"action":{"kind":"Undelegate","val":1,"amt":2685},"partialState":{"h":12,"t":72,"tokens":[5227,19155,12871,28005],"delegation":[4227,18155,11871,27005],"delegatorTokens":9999999907168}},{"ix":116,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":13,"t":78,"tokens":[5227,19155,12871,28005],"delegation":[4227,18155,11871,27005],"delegatorTokens":9999999907168,"jailed":[null,null,null,null],"status":["unbonding","bonded","unbonding","bonded"]}},{"ix":117,"action":{"kind":"Undelegate","val":1,"amt":4322},"partialState":{"h":13,"t":78,"tokens":[5227,14833,12871,28005],"delegation":[4227,13833,11871,27005],"delegatorTokens":9999999907168}},{"ix":118,"action":{"kind":"Delegate","val":3,"amt":4655},"partialState":{"h":13,"t":78,"tokens":[5227,14833,12871,32660],"delegation":[4227,13833,11871,31660],"delegatorTokens":9999999902513}},{"ix":119,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":120,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":14,"t":84,"tokens":[5227,14833,12871,32660],"delegation":[4227,13833,11871,31660],"delegatorTokens":9999999902513,"jailed":[null,null,null,null],"status":["unbonding","bonded","unbonding","bonded"]}},{"ix":121,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":122,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":15,"t":90,"tokens":[5227,14833,12871,32660],"delegation":[4227,13833,11871,31660],"delegatorTokens":9999999902513,"jailed":[null,null,null,null],"status":["unbonding","bonded","unbonding","bonded"]}},{"ix":123,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":124,"action":{"kind":"Undelegate","val":0,"amt":2538},"partialState":{"h":15,"t":90,"tokens":[2689,14833,12871,32660],"delegation":[1689,13833,11871,31660],"delegatorTokens":9999999902513}},{"ix":125,"action":{"kind":"Deliver","chain":"consumer","numPackets":1},"partialState":{"h":15,"t":90,"consumerPower":[null,16900,null,14356],"outstandingDowntime":[false,false,true,true]}},{"ix":126,"action":{"kind":"Undelegate","val":3,"amt":3973},"partialState":{"h":15,"t":90,"tokens":[2689,14833,12871,28687],"delegation":[1689,13833,11871,27687],"delegatorTokens":9999999902513}},{"ix":127,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":128,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":16,"t":96,"consumerPower":[null,21840,null,24143],"outstandingDowntime":[false,false,true,true]}},{"ix":129,"action":{"kind":"Deliver","chain":"consumer","numPackets":5},"partialState":{"h":16,"t":96,"consumerPower":[null,21840,null,24143],"outstandingDowntime":[false,false,true,true]}},{"ix":130,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":131,"action":{"kind":"Deliver","chain":"provider","numPackets":3},"partialState":{"h":15,"t":90,"tokens":[2689,14833,12871,28687],"delegation":[1689,13833,11871,27687],"delegatorTokens":9999999902513,"jailed":[null,null,null,null],"status":["unbonding","bonded","unbonding","bonded"]}},{"ix":132,"action":{"kind":"Undelegate","val":3,"amt":1299},"partialState":{"h":15,"t":90,"tokens":[2689,14833,12871,27388],"delegation":[1689,13833,11871,26388],"delegatorTokens":9999999902513}},{"ix":133,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":16,"t":96,"tokens":[2689,14833,12871,27388],"delegation":[1689,13833,11871,26388],"delegatorTokens":9999999906345,"jailed":[null,null,null,null],"status":["unbonding","bonded","unbonding","bonded"]}},{"ix":134,"action":{"kind":"Delegate","val":1,"amt":1581},"partialState":{"h":16,"t":96,"tokens":[2689,16414,12871,27388],"delegation":[1689,15414,11871,26388],"delegatorTokens":9999999904764}},{"ix":135,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":136,"action":{"kind":"Deliver","chain":"consumer","numPackets":2},"partialState":{"h":16,"t":96,"consumerPower":[null,21840,null,24143],"outstandingDowntime":[false,false,true,true]}},{"ix":137,"action":{"kind":"Deliver","chain":"consumer","numPackets":2},"partialState":{"h":16,"t":96,"consumerPower":[null,21840,null,24143],"outstandingDowntime":[false,false,true,true]}},{"ix":138,"action":{"kind":"Delegate","val":3,"amt":2449},"partialState":{"h":16,"t":96,"tokens":[2689,16414,12871,29837],"delegation":[1689,15414,11871,28837],"delegatorTokens":9999999902315}},{"ix":139,"action":{"kind":"Undelegate","val":3,"amt":1277},"partialState":{"h":16,"t":96,"tokens":[2689,16414,12871,28560],"delegation":[1689,15414,11871,27560],"delegatorTokens":9999999902315}},{"ix":140,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":141,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":17,"t":102,"consumerPower":[null,14833,null,32660],"outstandingDowntime":[false,false,true,true]}},{"ix":142,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":143,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":144,"action":{"kind":"Delegate","val":2,"amt":4312},"partialState":{"h":16,"t":96,"tokens":[2689,16414,17183,28560],"delegation":[1689,15414,16183,27560],"delegatorTokens":9999999898003}},{"ix":145,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":146,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":18,"t":108,"consumerPower":[null,14833,null,32660],"outstandingDowntime":[false,false,true,true]}},{"ix":147,"action":{"kind":"Undelegate","val":0,"amt":3645},"partialState":{"h":16,"t":96,"tokens":[2689,16414,17183,28560],"delegation":[1689,15414,16183,27560],"delegatorTokens":9999999898003}},{"ix":148,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":149,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":150,"action":{"kind":"Delegate","val":1,"amt":4526},"partialState":{"h":16,"t":96,"tokens":[2689,20940,17183,28560],"delegation":[1689,19940,16183,27560],"delegatorTokens":9999999893477}},{"ix":151,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":17,"t":102,"tokens":[2689,20940,17183,28560],"delegation":[1689,19940,16183,27560],"delegatorTokens":9999999893477,"jailed":[null,null,null,null],"status":["unbonding","bonded","unbonding","bonded"]}},{"ix":152,"action":{"kind":"Delegate","val":0,"amt":1246},"partialState":{"h":17,"t":102,"tokens":[3935,20940,17183,28560],"delegation":[2935,19940,16183,27560],"delegatorTokens":9999999892231}},{"ix":153,"action":{"kind":"Delegate","val":3,"amt":2099},"partialState":{"h":17,"t":102,"tokens":[3935,20940,17183,30659],"delegation":[2935,19940,16183,29659],"delegatorTokens":9999999890132}},{"ix":154,"action":{"kind":"Delegate","val":2,"amt":2274},"partialState":{"h":17,"t":102,"tokens":[3935,20940,19457,30659],"delegation":[2935,19940,18457,29659],"delegatorTokens":9999999887858}},{"ix":155,"action":{"kind":"Deliver","chain":"consumer","numPackets":4},"partialState":{"h":18,"t":108,"consumerPower":[null,14833,null,32660],"outstandingDowntime":[false,false,true,true]}},{"ix":156,"action":{"kind":"Undelegate","val":2,"amt":2218},"partialState":{"h":17,"t":102,"tokens":[3935,20940,17239,30659],"delegation":[2935,19940,16239,29659],"delegatorTokens":9999999887858}},{"ix":157,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":19,"t":114,"consumerPower":[null,14833,null,27388],"outstandingDowntime":[false,false,true,true]}},{"ix":158,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":18,"t":108,"tokens":[3935,20940,17239,30659],"delegation":[2935,19940,16239,29659],"delegatorTokens":9999999887858,"jailed":[null,null,null,null],"status":["unbonding","bonded","unbonding","bonded"]}},{"ix":159,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":19,"t":114,"tokens":[3935,20940,17239,30659],"delegation":[2935,19940,16239,29659],"delegatorTokens":9999999887858,"jailed":[null,null,null,null],"status":["unbonding","bonded","unbonding","bonded"]}},{"ix":160,"action":{"kind":"Delegate","val":1,"amt":3849},"partialState":{"h":19,"t":114,"tokens":[3935,24789,17239,30659],"delegation":[2935,23789,16239,29659],"delegatorTokens":9999999884009}},{"ix":161,"action":{"kind":"Undelegate","val":0,"amt":4539},"partialState":{"h":19,"t":114,"tokens":[3935,24789,17239,30659],"delegation":[2935,23789,16239,29659],"delegatorTokens":9999999884009}},{"ix":162,"action":{"kind":"Undelegate","val":2,"amt":3449},"partialState":{"h":19,"t":114,"tokens":[3935,24789,13790,30659],"delegation":[2935,23789,12790,29659],"delegatorTokens":9999999884009}},{"ix":163,"action":{"kind":"Delegate","val":3,"amt":1569},"partialState":{"h":19,"t":114,"tokens":[3935,24789,13790,32228],"delegation":[2935,23789,12790,31228],"delegatorTokens":9999999882440}},{"ix":164,"action":{"kind":"Undelegate","val":2,"amt":2640},"partialState":{"h":19,"t":114,"tokens":[3935,24789,11150,32228],"delegation":[2935,23789,10150,31228],"delegatorTokens":9999999882440}},{"ix":165,"action":{"kind":"Delegate","val":1,"amt":4384},"partialState":{"h":19,"t":114,"tokens":[3935,29173,11150,32228],"delegation":[2935,28173,10150,31228],"delegatorTokens":9999999878056}},{"ix":166,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":20,"t":120,"consumerPower":[null,14833,null,27388],"outstandingDowntime":[false,false,true,true]}},{"ix":167,"action":{"kind":"Delegate","val":0,"amt":2903},"partialState":{"h":19,"t":114,"tokens":[6838,29173,11150,32228],"delegation":[5838,28173,10150,31228],"delegatorTokens":9999999875153}},{"ix":168,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":21,"t":126,"consumerPower":[null,14833,null,27388],"outstandingDowntime":[false,false,true,true]}},{"ix":169,"action":{"kind":"Deliver","chain":"provider","numPackets":6},"partialState":{"h":19,"t":114,"tokens":[6838,29173,11150,32228],"delegation":[5838,28173,10150,31228],"delegatorTokens":9999999875153,"jailed":[null,null,null,null],"status":["unbonding","bonded","unbonding","bonded"]}},{"ix":170,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":171,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":20,"t":120,"tokens":[6838,29173,11150,32228],"delegation":[5838,28173,10150,31228],"delegatorTokens":9999999895272,"jailed":[null,null,null,null],"status":["unbonding","bonded","unbonding","bonded"]}},{"ix":172,"action":{"kind":"Delegate","val":1,"amt":2215},"partialState":{"h":20,"t":120,"tokens":[6838,31388,11150,32228],"delegation":[5838,30388,10150,31228],"delegatorTokens":9999999893057}},{"ix":173,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":22,"t":132,"consumerPower":[null,14833,null,27388],"outstandingDowntime":[false,false,true,true]}},{"ix":174,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":175,"action":{"kind":"Delegate","val":3,"amt":2740},"partialState":{"h":20,"t":120,"tokens":[6838,31388,11150,34968],"delegation":[5838,30388,10150,33968],"delegatorTokens":9999999890317}},{"ix":176,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":23,"t":138,"consumerPower":[null,14833,null,27388],"outstandingDowntime":[false,false,true,true]}},{"ix":177,"action":{"kind":"Delegate","val":3,"amt":3994},"partialState":{"h":20,"t":120,"tokens":[6838,31388,11150,38962],"delegation":[5838,30388,10150,37962],"delegatorTokens":9999999886323}},{"ix":178,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":24,"t":144,"consumerPower":[null,14833,null,27388],"outstandingDowntime":[false,false,true,true]}},{"ix":179,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":180,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":181,"action":{"kind":"Delegate","val":2,"amt":1888},"partialState":{"h":20,"t":120,"tokens":[6838,31388,13038,38962],"delegation":[5838,30388,12038,37962],"delegatorTokens":9999999884435}},{"ix":182,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":25,"t":150,"consumerPower":[null,14833,null,27388],"outstandingDowntime":[false,false,true,true]}},{"ix":183,"action":{"kind":"Delegate","val":0,"amt":2955},"partialState":{"h":20,"t":120,"tokens":[9793,31388,13038,38962],"delegation":[8793,30388,12038,37962],"delegatorTokens":9999999881480}},{"ix":184,"action":{"kind":"Delegate","val":1,"amt":4956},"partialState":{"h":20,"t":120,"tokens":[9793,36344,13038,38962],"delegation":[8793,35344,12038,37962],"delegatorTokens":9999999876524}},{"ix":185,"action":{"kind":"Deliver","chain":"provider","numPackets":4},"partialState":{"h":20,"t":120,"tokens":[9793,36344,13038,38962],"delegation":[8793,35344,12038,37962],"delegatorTokens":9999999876524,"jailed":[null,null,null,null],"status":["unbonding","bonded","unbonding","bonded"]}},{"ix":186,"action":{"kind":"Deliver","chain":"consumer","numPackets":6},"partialState":{"h":25,"t":150,"consumerPower":[null,14833,null,27388],"outstandingDowntime":[false,false,true,true]}},{"ix":187,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":26,"t":156,"consumerPower":[null,20940,null,30659],"outstandingDowntime":[false,false,true,true]}},{"ix":188,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":189,"action":{"kind":"Delegate","val":3,"amt":4869},"partialState":{"h":20,"t":120,"tokens":[9793,36344,13038,43831],"delegation":[8793,35344,12038,42831],"delegatorTokens":9999999871655}},{"ix":190,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":191,"action":{"kind":"Delegate","val":1,"amt":3840},"partialState":{"h":20,"t":120,"tokens":[9793,40184,13038,43831],"delegation":[8793,39184,12038,42831],"delegatorTokens":9999999867815}},{"ix":192,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":21,"t":126,"tokens":[9793,40184,13038,43831],"delegation":[8793,39184,12038,42831],"delegatorTokens":9999999867815,"jailed":[null,null,null,null],"status":["unbonded","bonded","unbonded","bonded"]}},{"ix":193,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":22,"t":132,"tokens":[9793,40184,13038,43831],"delegation":[8793,39184,12038,42831],"delegatorTokens":9999999867815,"jailed":[null,null,null,null],"status":["unbonded","bonded","unbonded","bonded"]}},{"ix":194,"action":{"kind":"Deliver","chain":"consumer","numPackets":6},"partialState":{"h":26,"t":156,"consumerPower":[null,20940,null,30659],"outstandingDowntime":[false,false,true,true]}},{"ix":195,"action":{"kind":"Delegate","val":1,"amt":3789},"partialState":{"h":22,"t":132,"tokens":[9793,43973,13038,43831],"delegation":[8793,42973,12038,42831],"delegatorTokens":9999999864026}},{"ix":196,"action":{"kind":"Deliver","chain":"consumer","numPackets":5},"partialState":{"h":26,"t":156,"consumerPower":[null,20940,null,30659],"outstandingDowntime":[false,false,true,true]}},{"ix":197,"action":{"kind":"Undelegate","val":0,"amt":3858},"partialState":{"h":22,"t":132,"tokens":[5935,43973,13038,43831],"delegation":[4935,42973,12038,42831],"delegatorTokens":9999999864026}},{"ix":198,"action":{"kind":"Delegate","val":0,"amt":2730},"partialState":{"h":22,"t":132,"tokens":[8665,43973,13038,43831],"delegation":[7665,42973,12038,42831],"delegatorTokens":9999999861296}},{"ix":199,"action":{"kind":"Undelegate","val":1,"amt":3120},"partialState":{"h":22,"t":132,"tokens":[8665,40853,13038,43831],"delegation":[7665,39853,12038,42831],"delegatorTokens":9999999861296}}],"events":["send_downtime_slash_request","insufficient_shares","send_vsc_without_downtime_ack","insufficient_shares","send_double_sign_slash_request","send_downtime_slash_request","insufficient_shares","receive_slash_request_unbonded","send_vsc_without_downtime_ack","consumer_update_val","receive_double_sign_slash_request","more_than_one_third_val_power_change","receive_slash_request_unbonded","send_vsc_without_downtime_ack","more_than_one_third_val_power_change","send_vsc_without_downtime_ack","consumer_update_val","consumer_update_val","more_than_one_third_val_power_change","rebond_unval","send_vsc_without_downtime_ack","consumer_del_val","consumer_update_val","consumer_add_val","consumer_del_val","insufficient_shares","send_vsc_without_downtime_ack","consumer_send_maturation","send_vsc_not_because_change","send_vsc_without_downtime_ack","send_vsc_without_downtime_ack","some_undels_expired_but_not_completed","send_vsc_without_downtime_ack","some_undels_expired_but_not_completed","consumer_send_maturation","consumer_update_val","consumer_update_val","some_undels_expired_but_not_completed","complete_undel_immediate","send_vsc_without_downtime_ack","consumer_update_val","consumer_update_val","insufficient_shares","send_vsc_without_downtime_ack","consumer_update_val","send_vsc_without_downtime_ack","some_undels_expired_but_not_completed","insufficient_shares","consumer_send_maturation","consumer_send_maturation","consumer_send_maturation","some_undels_expired_but_not_completed","complete_undel_immediate","complete_undel_immediate","set_unval_hold_false","complete_undel_immediate","complete_undel_immediate","complete_undel_immediate","complete_undel_immediate","set_unval_hold_false","send_vsc_without_downtime_ack","consumer_send_maturation","consumer_send_maturation","consumer_send_maturation","consumer_send_maturation","consumer_update_val","consumer_update_val","complete_unval_in_endblock","complete_unval_in_endblock","send_vsc_without_downtime_ack"]},{"meta":{"commit":"7ffd0c04e4205cbc9caf212abfe6c59ee43153bf"},"constants":{"P":"provider","C":"consumer","UNBONDING_SECONDS_P":70,"UNBONDING_SECONDS_C":50,"TRUSTING_SECONDS":49,"NUM_VALIDATORS":4,"MAX_VALIDATORS":2,"SLASH_DOUBLESIGN":0,"SLASH_DOWNTIME":0,"JAIL_SECONDS":999999999999999,"BLOCK_SECONDS":6,"INITIAL_DELEGATOR_TOKENS":10000000000000,"DELEGATE_AMT_MIN":1000,"DELEGATE_AMT_MAX":5000,"UNDELEGATE_AMT_MIN":1000,"UNDELEGATE_AMT_MAX":5000,"ISDOWNTIME_PROBABILITY":0.5,"MAX_NUM_PACKETS_FOR_DELIVER":6},"actions":[{"ix":0,"action":{"kind":"Undelegate","val":1,"amt":3001},"partialState":{"h":1,"t":6,"tokens":[5000,4000,3000,2000],"delegation":[4000,3000,2000,1000],"delegatorTokens":10000000000000}},{"ix":1,"action":{"kind":"ConsumerSlash","val":1,"infractionHeight":0,"isDowntime":true},"partialState":{"h":1,"t":6,"outstandingDowntime":[false,true,false,false]}},{"ix":2,"action":{"kind":"Delegate","val":2,"amt":1937},"partialState":{"h":1,"t":6,"tokens":[5000,4000,4937,2000],"delegation":[4000,3000,3937,1000],"delegatorTokens":9999999998063}},{"ix":3,"action":{"kind":"Undelegate","val":0,"amt":4515},"partialState":{"h":1,"t":6,"tokens":[5000,4000,4937,2000],"delegation":[4000,3000,3937,1000],"delegatorTokens":9999999998063}},{"ix":4,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":5,"action":{"kind":"Undelegate","val":3,"amt":3094},"partialState":{"h":1,"t":6,"tokens":[5000,4000,4937,2000],"delegation":[4000,3000,3937,1000],"delegatorTokens":9999999998063}},{"ix":6,"action":{"kind":"Undelegate","val":1,"amt":1413},"partialState":{"h":1,"t":6,"tokens":[5000,2587,4937,2000],"delegation":[4000,1587,3937,1000],"delegatorTokens":9999999998063}},{"ix":7,"action":{"kind":"Undelegate","val":2,"amt":1870},"partialState":{"h":1,"t":6,"tokens":[5000,2587,3067,2000],"delegation":[4000,1587,2067,1000],"delegatorTokens":9999999998063}},{"ix":8,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":9,"action":{"kind":"Deliver","chain":"consumer","numPackets":2},"partialState":{"h":1,"t":6,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,true,false,false]}},{"ix":10,"action":{"kind":"Deliver","chain":"consumer","numPackets":6},"partialState":{"h":1,"t":6,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,true,false,false]}},{"ix":11,"action":{"kind":"Delegate","val":0,"amt":2713},"partialState":{"h":1,"t":6,"tokens":[7713,2587,3067,2000],"delegation":[6713,1587,2067,1000],"delegatorTokens":9999999995350}},{"ix":12,"action":{"kind":"Delegate","val":0,"amt":1037},"partialState":{"h":1,"t":6,"tokens":[8750,2587,3067,2000],"delegation":[7750,1587,2067,1000],"delegatorTokens":9999999994313}},{"ix":13,"action":{"kind":"ConsumerSlash","val":1,"infractionHeight":0,"isDowntime":true},"partialState":{"h":1,"t":6,"outstandingDowntime":[false,true,false,false]}},{"ix":14,"action":{"kind":"ConsumerSlash","val":0,"infractionHeight":0,"isDowntime":false},"partialState":{"h":1,"t":6,"outstandingDowntime":[false,true,false,false]}},{"ix":15,"action":{"kind":"Delegate","val":0,"amt":3537},"partialState":{"h":1,"t":6,"tokens":[12287,2587,3067,2000],"delegation":[11287,1587,2067,1000],"delegatorTokens":9999999990776}},{"ix":16,"action":{"kind":"Delegate","val":1,"amt":1426},"partialState":{"h":1,"t":6,"tokens":[12287,4013,3067,2000],"delegation":[11287,3013,2067,1000],"delegatorTokens":9999999989350}},{"ix":17,"action":{"kind":"Undelegate","val":0,"amt":1032},"partialState":{"h":1,"t":6,"tokens":[11255,4013,3067,2000],"delegation":[10255,3013,2067,1000],"delegatorTokens":9999999989350}},{"ix":18,"action":{"kind":"ConsumerSlash","val":0,"infractionHeight":0,"isDowntime":true},"partialState":{"h":1,"t":6,"outstandingDowntime":[true,true,false,false]}},{"ix":19,"action":{"kind":"ConsumerSlash","val":2,"infractionHeight":0,"isDowntime":true},"partialState":{"h":1,"t":6,"outstandingDowntime":[true,true,true,false]}},{"ix":20,"action":{"kind":"Undelegate","val":1,"amt":2207},"partialState":{"h":1,"t":6,"tokens":[11255,1806,3067,2000],"delegation":[10255,806,2067,1000],"delegatorTokens":9999999989350}},{"ix":21,"action":{"kind":"Delegate","val":2,"amt":2182},"partialState":{"h":1,"t":6,"tokens":[11255,1806,5249,2000],"delegation":[10255,806,4249,1000],"delegatorTokens":9999999987168}},{"ix":22,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":2,"t":12,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[true,true,true,false]}},{"ix":23,"action":{"kind":"Deliver","chain":"provider","numPackets":3},"partialState":{"h":1,"t":6,"tokens":[11255,1806,5249,2000],"delegation":[10255,806,4249,1000],"delegatorTokens":9999999987168,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":24,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":2,"t":12,"tokens":[11255,1806,5249,2000],"delegation":[10255,806,4249,1000],"delegatorTokens":9999999987168,"jailed":[null,null,null,null],"status":["bonded","unbonding","bonded","unbonded"]}},{"ix":25,"action":{"kind":"Delegate","val":1,"amt":1953},"partialState":{"h":2,"t":12,"tokens":[11255,3759,5249,2000],"delegation":[10255,2759,4249,1000],"delegatorTokens":9999999985215}},{"ix":26,"action":{"kind":"Undelegate","val":1,"amt":4051},"partialState":{"h":2,"t":12,"tokens":[11255,3759,5249,2000],"delegation":[10255,2759,4249,1000],"delegatorTokens":9999999985215}},{"ix":27,"action":{"kind":"Undelegate","val":3,"amt":3833},"partialState":{"h":2,"t":12,"tokens":[11255,3759,5249,2000],"delegation":[10255,2759,4249,1000],"delegatorTokens":9999999985215}},{"ix":28,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":3,"t":18,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[true,true,true,false]}},{"ix":29,"action":{"kind":"Undelegate","val":0,"amt":1642},"partialState":{"h":2,"t":12,"tokens":[9613,3759,5249,2000],"delegation":[8613,2759,4249,1000],"delegatorTokens":9999999985215}},{"ix":30,"action":{"kind":"Undelegate","val":3,"amt":3610},"partialState":{"h":2,"t":12,"tokens":[9613,3759,5249,2000],"delegation":[8613,2759,4249,1000],"delegatorTokens":9999999985215}},{"ix":31,"action":{"kind":"Delegate","val":0,"amt":3045},"partialState":{"h":2,"t":12,"tokens":[12658,3759,5249,2000],"delegation":[11658,2759,4249,1000],"delegatorTokens":9999999982170}},{"ix":32,"action":{"kind":"Deliver","chain":"consumer","numPackets":1},"partialState":{"h":3,"t":18,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[true,true,true,false]}},{"ix":33,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":4,"t":24,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[true,true,true,false]}},{"ix":34,"action":{"kind":"Delegate","val":0,"amt":4299},"partialState":{"h":2,"t":12,"tokens":[16957,3759,5249,2000],"delegation":[15957,2759,4249,1000],"delegatorTokens":9999999977871}},{"ix":35,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":36,"action":{"kind":"Deliver","chain":"provider","numPackets":3},"partialState":{"h":2,"t":12,"tokens":[16957,3759,5249,2000],"delegation":[15957,2759,4249,1000],"delegatorTokens":9999999977871,"jailed":[null,null,null,null],"status":["bonded","unbonding","bonded","unbonded"]}},{"ix":37,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":3,"t":18,"tokens":[16957,3759,5249,2000],"delegation":[15957,2759,4249,1000],"delegatorTokens":9999999977871,"jailed":[1000000000000011,1000000000000011,null,null],"status":["bonded","unbonding","bonded","unbonded"]}},{"ix":38,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":4,"t":24,"tokens":[16957,3759,5249,2000],"delegation":[15957,2759,4249,1000],"delegatorTokens":9999999977871,"jailed":[1000000000000011,1000000000000011,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":39,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":40,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":5,"t":30,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[true,true,true,false]}},{"ix":41,"action":{"kind":"Delegate","val":0,"amt":3281},"partialState":{"h":4,"t":24,"tokens":[20238,3759,5249,2000],"delegation":[19238,2759,4249,1000],"delegatorTokens":9999999974590}},{"ix":42,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":6,"t":36,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[true,true,true,false]}},{"ix":43,"action":{"kind":"Delegate","val":1,"amt":3442},"partialState":{"h":4,"t":24,"tokens":[20238,7201,5249,2000],"delegation":[19238,6201,4249,1000],"delegatorTokens":9999999971148}},{"ix":44,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":45,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":5,"t":30,"tokens":[20238,7201,5249,2000],"delegation":[19238,6201,4249,1000],"delegatorTokens":9999999971148,"jailed":[1000000000000011,1000000000000011,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":46,"action":{"kind":"Delegate","val":1,"amt":1358},"partialState":{"h":5,"t":30,"tokens":[20238,8559,5249,2000],"delegation":[19238,7559,4249,1000],"delegatorTokens":9999999969790}},{"ix":47,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":7,"t":42,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[true,true,true,false]}},{"ix":48,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":8,"t":48,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[true,true,true,false]}},{"ix":49,"action":{"kind":"Deliver","chain":"provider","numPackets":3},"partialState":{"h":5,"t":30,"tokens":[20238,8559,5249,2000],"delegation":[19238,7559,4249,1000],"delegatorTokens":9999999969790,"jailed":[1000000000000011,1000000000000011,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":50,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":6,"t":36,"tokens":[20238,8559,5249,2000],"delegation":[19238,7559,4249,1000],"delegatorTokens":9999999969790,"jailed":[1000000000000011,1000000000000011,1000000000000029,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":51,"action":{"kind":"Delegate","val":0,"amt":2186},"partialState":{"h":6,"t":36,"tokens":[22424,8559,5249,2000],"delegation":[21424,7559,4249,1000],"delegatorTokens":9999999967604}},{"ix":52,"action":{"kind":"Delegate","val":2,"amt":4554},"partialState":{"h":6,"t":36,"tokens":[22424,8559,9803,2000],"delegation":[21424,7559,8803,1000],"delegatorTokens":9999999963050}},{"ix":53,"action":{"kind":"Delegate","val":3,"amt":3380},"partialState":{"h":6,"t":36,"tokens":[22424,8559,9803,5380],"delegation":[21424,7559,8803,4380],"delegatorTokens":9999999959670}},{"ix":54,"action":{"kind":"Deliver","chain":"provider","numPackets":5},"partialState":{"h":6,"t":36,"tokens":[22424,8559,9803,5380],"delegation":[21424,7559,8803,4380],"delegatorTokens":9999999959670,"jailed":[1000000000000011,1000000000000011,1000000000000029,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":55,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":7,"t":42,"tokens":[22424,8559,9803,5380],"delegation":[21424,7559,8803,4380],"delegatorTokens":9999999959670,"jailed":[1000000000000011,1000000000000011,1000000000000029,null],"status":["unbonding","unbonding","unbonding","bonded"]}},{"ix":56,"action":{"kind":"Undelegate","val":0,"amt":1847},"partialState":{"h":7,"t":42,"tokens":[20577,8559,9803,5380],"delegation":[19577,7559,8803,4380],"delegatorTokens":9999999959670}},{"ix":57,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":8,"t":48,"tokens":[20577,8559,9803,5380],"delegation":[19577,7559,8803,4380],"delegatorTokens":9999999959670,"jailed":[1000000000000011,1000000000000011,1000000000000029,null],"status":["unbonding","unbonding","unbonding","bonded"]}},{"ix":58,"action":{"kind":"Undelegate","val":3,"amt":1789},"partialState":{"h":8,"t":48,"tokens":[20577,8559,9803,3591],"delegation":[19577,7559,8803,2591],"delegatorTokens":9999999959670}},{"ix":59,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":9,"t":54,"tokens":[20577,8559,9803,3591],"delegation":[19577,7559,8803,2591],"delegatorTokens":9999999959670,"jailed":[1000000000000011,1000000000000011,1000000000000029,null],"status":["unbonding","unbonding","unbonding","bonded"]}},{"ix":60,"action":{"kind":"Undelegate","val":2,"amt":4788},"partialState":{"h":9,"t":54,"tokens":[20577,8559,5015,3591],"delegation":[19577,7559,4015,2591],"delegatorTokens":9999999959670}},{"ix":61,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":10,"t":60,"tokens":[20577,8559,5015,3591],"delegation":[19577,7559,4015,2591],"delegatorTokens":9999999959670,"jailed":[1000000000000011,1000000000000011,1000000000000029,null],"status":["unbonding","unbonding","unbonding","bonded"]}},{"ix":62,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":9,"t":54,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[true,true,true,false]}},{"ix":63,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":10,"t":60,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[true,true,true,false]}},{"ix":64,"action":{"kind":"Deliver","chain":"consumer","numPackets":1},"partialState":{"h":10,"t":60,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[true,true,true,false]}},{"ix":65,"action":{"kind":"Deliver","chain":"consumer","numPackets":6},"partialState":{"h":10,"t":60,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":66,"action":{"kind":"Deliver","chain":"consumer","numPackets":6},"partialState":{"h":10,"t":60,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":67,"action":{"kind":"Deliver","chain":"consumer","numPackets":4},"partialState":{"h":10,"t":60,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":68,"action":{"kind":"Delegate","val":1,"amt":4642},"partialState":{"h":10,"t":60,"tokens":[20577,13201,5015,3591],"delegation":[19577,12201,4015,2591],"delegatorTokens":9999999955028}},{"ix":69,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":11,"t":66,"consumerPower":[null,null,null,3591],"outstandingDowntime":[false,false,false,false]}},{"ix":70,"action":{"kind":"Undelegate","val":2,"amt":1827},"partialState":{"h":10,"t":60,"tokens":[20577,13201,3188,3591],"delegation":[19577,12201,2188,2591],"delegatorTokens":9999999955028}},{"ix":71,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":12,"t":72,"consumerPower":[null,null,null,3591],"outstandingDowntime":[false,false,false,false]}},{"ix":72,"action":{"kind":"Delegate","val":3,"amt":3411},"partialState":{"h":10,"t":60,"tokens":[20577,13201,3188,7002],"delegation":[19577,12201,2188,6002],"delegatorTokens":9999999951617}},{"ix":73,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":74,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":13,"t":78,"consumerPower":[null,null,null,3591],"outstandingDowntime":[false,false,false,false]}},{"ix":75,"action":{"kind":"Undelegate","val":1,"amt":4350},"partialState":{"h":10,"t":60,"tokens":[20577,8851,3188,7002],"delegation":[19577,7851,2188,6002],"delegatorTokens":9999999951617}},{"ix":76,"action":{"kind":"Delegate","val":0,"amt":3392},"partialState":{"h":10,"t":60,"tokens":[23969,8851,3188,7002],"delegation":[22969,7851,2188,6002],"delegatorTokens":9999999948225}},{"ix":77,"action":{"kind":"Deliver","chain":"consumer","numPackets":2},"partialState":{"h":13,"t":78,"consumerPower":[null,null,null,3591],"outstandingDowntime":[false,false,false,false]}},{"ix":78,"action":{"kind":"Deliver","chain":"provider","numPackets":2},"partialState":{"h":10,"t":60,"tokens":[23969,8851,3188,7002],"delegation":[22969,7851,2188,6002],"delegatorTokens":9999999948225,"jailed":[1000000000000011,1000000000000011,1000000000000029,null],"status":["unbonding","unbonding","unbonding","bonded"]}},{"ix":79,"action":{"kind":"Delegate","val":1,"amt":3688},"partialState":{"h":10,"t":60,"tokens":[23969,12539,3188,7002],"delegation":[22969,11539,2188,6002],"delegatorTokens":9999999944537}},{"ix":80,"action":{"kind":"Delegate","val":0,"amt":1682},"partialState":{"h":10,"t":60,"tokens":[25651,12539,3188,7002],"delegation":[24651,11539,2188,6002],"delegatorTokens":9999999942855}},{"ix":81,"action":{"kind":"Deliver","chain":"provider","numPackets":3},"partialState":{"h":10,"t":60,"tokens":[25651,12539,3188,7002],"delegation":[24651,11539,2188,6002],"delegatorTokens":9999999942855,"jailed":[1000000000000011,1000000000000011,1000000000000029,null],"status":["unbonding","unbonding","unbonding","bonded"]}},{"ix":82,"action":{"kind":"Deliver","chain":"provider","numPackets":1},"partialState":{"h":10,"t":60,"tokens":[25651,12539,3188,7002],"delegation":[24651,11539,2188,6002],"delegatorTokens":9999999942855,"jailed":[1000000000000011,1000000000000011,1000000000000029,null],"status":["unbonding","unbonding","unbonding","bonded"]}},{"ix":83,"action":{"kind":"Undelegate","val":0,"amt":4057},"partialState":{"h":10,"t":60,"tokens":[21594,12539,3188,7002],"delegation":[20594,11539,2188,6002],"delegatorTokens":9999999942855}},{"ix":84,"action":{"kind":"Undelegate","val":2,"amt":3080},"partialState":{"h":10,"t":60,"tokens":[21594,12539,3188,7002],"delegation":[20594,11539,2188,6002],"delegatorTokens":9999999942855}},{"ix":85,"action":{"kind":"Deliver","chain":"consumer","numPackets":4},"partialState":{"h":13,"t":78,"consumerPower":[null,null,null,3591],"outstandingDowntime":[false,false,false,false]}},{"ix":86,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":14,"t":84,"consumerPower":[null,null,null,3591],"outstandingDowntime":[false,false,false,false]}},{"ix":87,"action":{"kind":"Deliver","chain":"consumer","numPackets":1},"partialState":{"h":14,"t":84,"consumerPower":[null,null,null,3591],"outstandingDowntime":[false,false,false,false]}},{"ix":88,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":11,"t":66,"tokens":[21594,12539,3188,7002],"delegation":[20594,11539,2188,6002],"delegatorTokens":9999999942855,"jailed":[1000000000000011,1000000000000011,1000000000000029,null],"status":["unbonding","unbonding","unbonding","bonded"]}},{"ix":89,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":15,"t":90,"consumerPower":[null,null,null,3591],"outstandingDowntime":[false,false,false,false]}},{"ix":90,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":16,"t":96,"consumerPower":[null,null,null,3591],"outstandingDowntime":[false,false,false,false]}},{"ix":91,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":92,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":93,"action":{"kind":"Deliver","chain":"provider","numPackets":6},"partialState":{"h":11,"t":66,"tokens":[21594,12539,3188,7002],"delegation":[20594,11539,2188,6002],"delegatorTokens":9999999942855,"jailed":[1000000000000011,1000000000000011,1000000000000029,null],"status":["unbonding","unbonding","unbonding","bonded"]}},{"ix":94,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":17,"t":102,"consumerPower":[null,null,null,3591],"outstandingDowntime":[false,false,false,false]}},{"ix":95,"action":{"kind":"Deliver","chain":"consumer","numPackets":2},"partialState":{"h":17,"t":102,"consumerPower":[null,null,null,3591],"outstandingDowntime":[false,false,false,false]}},{"ix":96,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":12,"t":72,"tokens":[21594,12539,3188,7002],"delegation":[20594,11539,2188,6002],"delegatorTokens":9999999942855,"jailed":[1000000000000011,1000000000000011,1000000000000029,null],"status":["unbonding","unbonding","unbonding","bonded"]}},{"ix":97,"action":{"kind":"Undelegate","val":3,"amt":2848},"partialState":{"h":12,"t":72,"tokens":[21594,12539,3188,4154],"delegation":[20594,11539,2188,3154],"delegatorTokens":9999999942855}},{"ix":98,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":18,"t":108,"consumerPower":[null,null,null,3591],"outstandingDowntime":[false,false,false,false]}},{"ix":99,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":100,"action":{"kind":"Delegate","val":2,"amt":3039},"partialState":{"h":12,"t":72,"tokens":[21594,12539,6227,4154],"delegation":[20594,11539,5227,3154],"delegatorTokens":9999999939816}},{"ix":101,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":13,"t":78,"tokens":[21594,12539,6227,4154],"delegation":[20594,11539,5227,3154],"delegatorTokens":9999999939816,"jailed":[1000000000000011,1000000000000011,1000000000000029,null],"status":["unbonding","unbonding","unbonding","bonded"]}},{"ix":102,"action":{"kind":"Deliver","chain":"provider","numPackets":1},"partialState":{"h":13,"t":78,"tokens":[21594,12539,6227,4154],"delegation":[20594,11539,5227,3154],"delegatorTokens":9999999939816,"jailed":[1000000000000011,1000000000000011,1000000000000029,null],"status":["unbonding","unbonding","unbonding","bonded"]}},{"ix":103,"action":{"kind":"Deliver","chain":"consumer","numPackets":6},"partialState":{"h":18,"t":108,"consumerPower":[null,null,null,3591],"outstandingDowntime":[false,false,false,false]}},{"ix":104,"action":{"kind":"Deliver","chain":"provider","numPackets":2},"partialState":{"h":13,"t":78,"tokens":[21594,12539,6227,4154],"delegation":[20594,11539,5227,3154],"delegatorTokens":9999999939816,"jailed":[1000000000000011,1000000000000011,1000000000000029,null],"status":["unbonding","unbonding","unbonding","bonded"]}},{"ix":105,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":106,"action":{"kind":"Undelegate","val":3,"amt":2750},"partialState":{"h":13,"t":78,"tokens":[21594,12539,6227,1404],"delegation":[20594,11539,5227,404],"delegatorTokens":9999999939816}},{"ix":107,"action":{"kind":"Deliver","chain":"provider","numPackets":4},"partialState":{"h":13,"t":78,"tokens":[21594,12539,6227,1404],"delegation":[20594,11539,5227,404],"delegatorTokens":9999999939816,"jailed":[1000000000000011,1000000000000011,1000000000000029,null],"status":["unbonding","unbonding","unbonding","bonded"]}},{"ix":108,"action":{"kind":"Delegate","val":1,"amt":4292},"partialState":{"h":13,"t":78,"tokens":[21594,16831,6227,1404],"delegation":[20594,15831,5227,404],"delegatorTokens":9999999935524}},{"ix":109,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":110,"action":{"kind":"Undelegate","val":3,"amt":2770},"partialState":{"h":13,"t":78,"tokens":[21594,16831,6227,1404],"delegation":[20594,15831,5227,404],"delegatorTokens":9999999935524}},{"ix":111,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":14,"t":84,"tokens":[21594,16831,6227,1404],"delegation":[20594,15831,5227,404],"delegatorTokens":9999999935524,"jailed":[1000000000000011,1000000000000011,1000000000000029,null],"status":["unbonding","unbonding","unbonding","bonded"]}},{"ix":112,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":113,"action":{"kind":"Undelegate","val":1,"amt":2403},"partialState":{"h":14,"t":84,"tokens":[21594,14428,6227,1404],"delegation":[20594,13428,5227,404],"delegatorTokens":9999999935524}},{"ix":114,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":19,"t":114,"consumerPower":[null,null,null,7002],"outstandingDowntime":[false,false,false,false]}},{"ix":115,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":15,"t":90,"tokens":[21594,14428,6227,1404],"delegation":[20594,13428,5227,404],"delegatorTokens":9999999935524,"jailed":[1000000000000011,1000000000000011,1000000000000029,null],"status":["unbonding","unbonding","unbonding","bonded"]}},{"ix":116,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":117,"action":{"kind":"Delegate","val":3,"amt":2894},"partialState":{"h":15,"t":90,"tokens":[21594,14428,6227,4298],"delegation":[20594,13428,5227,3298],"delegatorTokens":9999999932630}},{"ix":118,"action":{"kind":"Undelegate","val":2,"amt":3746},"partialState":{"h":15,"t":90,"tokens":[21594,14428,2481,4298],"delegation":[20594,13428,1481,3298],"delegatorTokens":9999999932630}},{"ix":119,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":120,"action":{"kind":"Undelegate","val":2,"amt":2253},"partialState":{"h":15,"t":90,"tokens":[21594,14428,2481,4298],"delegation":[20594,13428,1481,3298],"delegatorTokens":9999999932630}},{"ix":121,"action":{"kind":"Delegate","val":3,"amt":4396},"partialState":{"h":15,"t":90,"tokens":[21594,14428,2481,8694],"delegation":[20594,13428,1481,7694],"delegatorTokens":9999999928234}},{"ix":122,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":20,"t":120,"consumerPower":[null,null,null,7002],"outstandingDowntime":[false,false,false,false]}},{"ix":123,"action":{"kind":"Delegate","val":3,"amt":2517},"partialState":{"h":15,"t":90,"tokens":[21594,14428,2481,11211],"delegation":[20594,13428,1481,10211],"delegatorTokens":9999999925717}},{"ix":124,"action":{"kind":"Undelegate","val":0,"amt":3015},"partialState":{"h":15,"t":90,"tokens":[18579,14428,2481,11211],"delegation":[17579,13428,1481,10211],"delegatorTokens":9999999925717}},{"ix":125,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":21,"t":126,"consumerPower":[null,null,null,7002],"outstandingDowntime":[false,false,false,false]}},{"ix":126,"action":{"kind":"Undelegate","val":1,"amt":3909},"partialState":{"h":15,"t":90,"tokens":[18579,10519,2481,11211],"delegation":[17579,9519,1481,10211],"delegatorTokens":9999999925717}},{"ix":127,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":22,"t":132,"consumerPower":[null,null,null,7002],"outstandingDowntime":[false,false,false,false]}},{"ix":128,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":16,"t":96,"tokens":[18579,10519,2481,11211],"delegation":[17579,9519,1481,10211],"delegatorTokens":9999999925717,"jailed":[1000000000000011,1000000000000011,1000000000000029,null],"status":["unbonding","unbonding","unbonding","bonded"]}},{"ix":129,"action":{"kind":"Deliver","chain":"provider","numPackets":6},"partialState":{"h":16,"t":96,"tokens":[18579,10519,2481,11211],"delegation":[17579,9519,1481,10211],"delegatorTokens":9999999925717,"jailed":[1000000000000011,1000000000000011,1000000000000029,null],"status":["unbonding","unbonding","unbonding","bonded"]}},{"ix":130,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":17,"t":102,"tokens":[18579,10519,2481,11211],"delegation":[17579,9519,1481,10211],"delegatorTokens":9999999933881,"jailed":[1000000000000011,1000000000000011,1000000000000029,null],"status":["unbonding","unbonding","unbonding","bonded"]}},{"ix":131,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":18,"t":108,"tokens":[18579,10519,2481,11211],"delegation":[17579,9519,1481,10211],"delegatorTokens":9999999933881,"jailed":[1000000000000011,1000000000000011,1000000000000029,null],"status":["unbonded","unbonded","unbonding","bonded"]}},{"ix":132,"action":{"kind":"Deliver","chain":"consumer","numPackets":4},"partialState":{"h":22,"t":132,"consumerPower":[null,null,null,7002],"outstandingDowntime":[false,false,false,false]}},{"ix":133,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":19,"t":114,"tokens":[18579,10519,2481,11211],"delegation":[17579,9519,1481,10211],"delegatorTokens":9999999933881,"jailed":[1000000000000011,1000000000000011,1000000000000029,null],"status":["unbonded","unbonded","unbonded","bonded"]}},{"ix":134,"action":{"kind":"Delegate","val":3,"amt":4266},"partialState":{"h":19,"t":114,"tokens":[18579,10519,2481,15477],"delegation":[17579,9519,1481,14477],"delegatorTokens":9999999929615}},{"ix":135,"action":{"kind":"Undelegate","val":2,"amt":4501},"partialState":{"h":19,"t":114,"tokens":[18579,10519,2481,15477],"delegation":[17579,9519,1481,14477],"delegatorTokens":9999999929615}},{"ix":136,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":20,"t":120,"tokens":[18579,10519,2481,15477],"delegation":[17579,9519,1481,14477],"delegatorTokens":9999999931462,"jailed":[1000000000000011,1000000000000011,1000000000000029,null],"status":["unbonded","unbonded","unbonded","bonded"]}},{"ix":137,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":23,"t":138,"consumerPower":[null,null,null,11211],"outstandingDowntime":[false,false,false,false]}},{"ix":138,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":139,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":140,"action":{"kind":"Deliver","chain":"provider","numPackets":1},"partialState":{"h":20,"t":120,"tokens":[18579,10519,2481,15477],"delegation":[17579,9519,1481,14477],"delegatorTokens":9999999931462,"jailed":[1000000000000011,1000000000000011,1000000000000029,null],"status":["unbonded","unbonded","unbonded","bonded"]}},{"ix":141,"action":{"kind":"Delegate","val":2,"amt":3347},"partialState":{"h":20,"t":120,"tokens":[18579,10519,5828,15477],"delegation":[17579,9519,4828,14477],"delegatorTokens":9999999928115}},{"ix":142,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":21,"t":126,"tokens":[18579,10519,5828,15477],"delegation":[17579,9519,4828,14477],"delegatorTokens":9999999929904,"jailed":[1000000000000011,1000000000000011,1000000000000029,null],"status":["unbonded","unbonded","unbonded","bonded"]}},{"ix":143,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":144,"action":{"kind":"Delegate","val":0,"amt":3484},"partialState":{"h":21,"t":126,"tokens":[22063,10519,5828,15477],"delegation":[21063,9519,4828,14477],"delegatorTokens":9999999926420}},{"ix":145,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":146,"action":{"kind":"Delegate","val":0,"amt":1855},"partialState":{"h":21,"t":126,"tokens":[23918,10519,5828,15477],"delegation":[22918,9519,4828,14477],"delegatorTokens":9999999924565}},{"ix":147,"action":{"kind":"Delegate","val":2,"amt":1538},"partialState":{"h":21,"t":126,"tokens":[23918,10519,7366,15477],"delegation":[22918,9519,6366,14477],"delegatorTokens":9999999923027}},{"ix":148,"action":{"kind":"Delegate","val":1,"amt":3008},"partialState":{"h":21,"t":126,"tokens":[23918,13527,7366,15477],"delegation":[22918,12527,6366,14477],"delegatorTokens":9999999920019}},{"ix":149,"action":{"kind":"Delegate","val":0,"amt":1761},"partialState":{"h":21,"t":126,"tokens":[25679,13527,7366,15477],"delegation":[24679,12527,6366,14477],"delegatorTokens":9999999918258}},{"ix":150,"action":{"kind":"Deliver","chain":"provider","numPackets":6},"partialState":{"h":21,"t":126,"tokens":[25679,13527,7366,15477],"delegation":[24679,12527,6366,14477],"delegatorTokens":9999999918258,"jailed":[1000000000000011,1000000000000011,1000000000000029,null],"status":["unbonded","unbonded","unbonded","bonded"]}},{"ix":151,"action":{"kind":"Undelegate","val":2,"amt":4115},"partialState":{"h":21,"t":126,"tokens":[25679,13527,3251,15477],"delegation":[24679,12527,2251,14477],"delegatorTokens":9999999918258}},{"ix":152,"action":{"kind":"Delegate","val":0,"amt":2080},"partialState":{"h":21,"t":126,"tokens":[27759,13527,3251,15477],"delegation":[26759,12527,2251,14477],"delegatorTokens":9999999916178}},{"ix":153,"action":{"kind":"Undelegate","val":1,"amt":1205},"partialState":{"h":21,"t":126,"tokens":[27759,12322,3251,15477],"delegation":[26759,11322,2251,14477],"delegatorTokens":9999999916178}},{"ix":154,"action":{"kind":"Delegate","val":0,"amt":1865},"partialState":{"h":21,"t":126,"tokens":[29624,12322,3251,15477],"delegation":[28624,11322,2251,14477],"delegatorTokens":9999999914313}},{"ix":155,"action":{"kind":"Deliver","chain":"provider","numPackets":6},"partialState":{"h":21,"t":126,"tokens":[29624,12322,3251,15477],"delegation":[28624,11322,2251,14477],"delegatorTokens":9999999914313,"jailed":[1000000000000011,1000000000000011,1000000000000029,null],"status":["unbonded","unbonded","unbonded","bonded"]}},{"ix":156,"action":{"kind":"Delegate","val":2,"amt":2692},"partialState":{"h":21,"t":126,"tokens":[29624,12322,5943,15477],"delegation":[28624,11322,4943,14477],"delegatorTokens":9999999911621}},{"ix":157,"action":{"kind":"Undelegate","val":1,"amt":3971},"partialState":{"h":21,"t":126,"tokens":[29624,8351,5943,15477],"delegation":[28624,7351,4943,14477],"delegatorTokens":9999999911621}},{"ix":158,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":22,"t":132,"tokens":[29624,8351,5943,15477],"delegation":[28624,7351,4943,14477],"delegatorTokens":9999999911621,"jailed":[1000000000000011,1000000000000011,1000000000000029,null],"status":["unbonded","unbonded","unbonded","bonded"]}},{"ix":159,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":160,"action":{"kind":"Undelegate","val":1,"amt":3658},"partialState":{"h":22,"t":132,"tokens":[29624,4693,5943,15477],"delegation":[28624,3693,4943,14477],"delegatorTokens":9999999911621}},{"ix":161,"action":{"kind":"Undelegate","val":1,"amt":4116},"partialState":{"h":22,"t":132,"tokens":[29624,4693,5943,15477],"delegation":[28624,3693,4943,14477],"delegatorTokens":9999999911621}},{"ix":162,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":23,"t":138,"tokens":[29624,4693,5943,15477],"delegation":[28624,3693,4943,14477],"delegatorTokens":9999999911621,"jailed":[1000000000000011,1000000000000011,1000000000000029,null],"status":["unbonded","unbonded","unbonded","bonded"]}},{"ix":163,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":164,"action":{"kind":"Undelegate","val":0,"amt":4470},"partialState":{"h":23,"t":138,"tokens":[25154,4693,5943,15477],"delegation":[24154,3693,4943,14477],"delegatorTokens":9999999911621}},{"ix":165,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":24,"t":144,"tokens":[25154,4693,5943,15477],"delegation":[24154,3693,4943,14477],"delegatorTokens":9999999911621,"jailed":[1000000000000011,1000000000000011,1000000000000029,null],"status":["unbonded","unbonded","unbonded","bonded"]}},{"ix":166,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":24,"t":144,"consumerPower":[null,null,null,11211],"outstandingDowntime":[false,false,false,false]}},{"ix":167,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":168,"action":{"kind":"Delegate","val":3,"amt":2992},"partialState":{"h":24,"t":144,"tokens":[25154,4693,5943,18469],"delegation":[24154,3693,4943,17469],"delegatorTokens":9999999908629}},{"ix":169,"action":{"kind":"Delegate","val":0,"amt":3326},"partialState":{"h":24,"t":144,"tokens":[28480,4693,5943,18469],"delegation":[27480,3693,4943,17469],"delegatorTokens":9999999905303}},{"ix":170,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":171,"action":{"kind":"Delegate","val":0,"amt":4079},"partialState":{"h":24,"t":144,"tokens":[32559,4693,5943,18469],"delegation":[31559,3693,4943,17469],"delegatorTokens":9999999901224}},{"ix":172,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":25,"t":150,"consumerPower":[null,null,null,11211],"outstandingDowntime":[false,false,false,false]}},{"ix":173,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":174,"action":{"kind":"Undelegate","val":1,"amt":2523},"partialState":{"h":24,"t":144,"tokens":[32559,2170,5943,18469],"delegation":[31559,1170,4943,17469],"delegatorTokens":9999999901224}},{"ix":175,"action":{"kind":"Deliver","chain":"provider","numPackets":4},"partialState":{"h":24,"t":144,"tokens":[32559,2170,5943,18469],"delegation":[31559,1170,4943,17469],"delegatorTokens":9999999901224,"jailed":[1000000000000011,1000000000000011,1000000000000029,null],"status":["unbonded","unbonded","unbonded","bonded"]}},{"ix":176,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":25,"t":150,"tokens":[32559,2170,5943,18469],"delegation":[31559,1170,4943,17469],"delegatorTokens":9999999901224,"jailed":[1000000000000011,1000000000000011,1000000000000029,null],"status":["unbonded","unbonded","unbonded","bonded"]}},{"ix":177,"action":{"kind":"Undelegate","val":3,"amt":4676},"partialState":{"h":25,"t":150,"tokens":[32559,2170,5943,13793],"delegation":[31559,1170,4943,12793],"delegatorTokens":9999999901224}},{"ix":178,"action":{"kind":"Deliver","chain":"consumer","numPackets":5},"partialState":{"h":25,"t":150,"consumerPower":[null,null,null,11211],"outstandingDowntime":[false,false,false,false]}},{"ix":179,"action":{"kind":"Deliver","chain":"consumer","numPackets":6},"partialState":{"h":25,"t":150,"consumerPower":[null,null,null,11211],"outstandingDowntime":[false,false,false,false]}},{"ix":180,"action":{"kind":"Delegate","val":3,"amt":3045},"partialState":{"h":25,"t":150,"tokens":[32559,2170,5943,16838],"delegation":[31559,1170,4943,15838],"delegatorTokens":9999999898179}},{"ix":181,"action":{"kind":"Undelegate","val":2,"amt":3905},"partialState":{"h":25,"t":150,"tokens":[32559,2170,2038,16838],"delegation":[31559,1170,1038,15838],"delegatorTokens":9999999898179}},{"ix":182,"action":{"kind":"Deliver","chain":"provider","numPackets":6},"partialState":{"h":25,"t":150,"tokens":[32559,2170,2038,16838],"delegation":[31559,1170,1038,15838],"delegatorTokens":9999999898179,"jailed":[1000000000000011,1000000000000011,1000000000000029,null],"status":["unbonded","unbonded","unbonded","bonded"]}},{"ix":183,"action":{"kind":"Delegate","val":3,"amt":1526},"partialState":{"h":25,"t":150,"tokens":[32559,2170,2038,18364],"delegation":[31559,1170,1038,17364],"delegatorTokens":9999999896653}},{"ix":184,"action":{"kind":"Delegate","val":0,"amt":3388},"partialState":{"h":25,"t":150,"tokens":[35947,2170,2038,18364],"delegation":[34947,1170,1038,17364],"delegatorTokens":9999999893265}},{"ix":185,"action":{"kind":"Delegate","val":3,"amt":4506},"partialState":{"h":25,"t":150,"tokens":[35947,2170,2038,22870],"delegation":[34947,1170,1038,21870],"delegatorTokens":9999999888759}},{"ix":186,"action":{"kind":"Deliver","chain":"consumer","numPackets":4},"partialState":{"h":25,"t":150,"consumerPower":[null,null,null,11211],"outstandingDowntime":[false,false,false,false]}},{"ix":187,"action":{"kind":"Deliver","chain":"consumer","numPackets":5},"partialState":{"h":25,"t":150,"consumerPower":[null,null,null,11211],"outstandingDowntime":[false,false,false,false]}},{"ix":188,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":189,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":190,"action":{"kind":"Undelegate","val":1,"amt":1916},"partialState":{"h":25,"t":150,"tokens":[35947,2170,2038,22870],"delegation":[34947,1170,1038,21870],"delegatorTokens":9999999888759}},{"ix":191,"action":{"kind":"Delegate","val":1,"amt":1325},"partialState":{"h":25,"t":150,"tokens":[35947,3495,2038,22870],"delegation":[34947,2495,1038,21870],"delegatorTokens":9999999887434}},{"ix":192,"action":{"kind":"Delegate","val":1,"amt":2247},"partialState":{"h":25,"t":150,"tokens":[35947,5742,2038,22870],"delegation":[34947,4742,1038,21870],"delegatorTokens":9999999885187}},{"ix":193,"action":{"kind":"Deliver","chain":"consumer","numPackets":2},"partialState":{"h":25,"t":150,"consumerPower":[null,null,null,11211],"outstandingDowntime":[false,false,false,false]}},{"ix":194,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":26,"t":156,"tokens":[35947,5742,2038,22870],"delegation":[34947,4742,1038,21870],"delegatorTokens":9999999885187,"jailed":[1000000000000011,1000000000000011,1000000000000029,null],"status":["unbonded","unbonded","unbonded","bonded"]}},{"ix":195,"action":{"kind":"Delegate","val":3,"amt":1065},"partialState":{"h":26,"t":156,"tokens":[35947,5742,2038,23935],"delegation":[34947,4742,1038,22935],"delegatorTokens":9999999884122}},{"ix":196,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":197,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":198,"action":{"kind":"Undelegate","val":1,"amt":4033},"partialState":{"h":26,"t":156,"tokens":[35947,1709,2038,23935],"delegation":[34947,709,1038,22935],"delegatorTokens":9999999884122}},{"ix":199,"action":{"kind":"Undelegate","val":3,"amt":3708},"partialState":{"h":26,"t":156,"tokens":[35947,1709,2038,20227],"delegation":[34947,709,1038,19227],"delegatorTokens":9999999884122}}],"events":["insufficient_shares","send_downtime_slash_request","insufficient_shares","insufficient_shares","downtime_slash_request_outstanding","send_double_sign_slash_request","send_downtime_slash_request","send_downtime_slash_request","send_vsc_without_downtime_ack","insufficient_shares","insufficient_shares","insufficient_shares","receive_double_sign_slash_request","receive_downtime_slash_request","jail","receive_downtime_slash_request","jail","send_vsc_with_downtime_ack","send_vsc_without_downtime_ack","receive_downtime_slash_request","jail","send_vsc_with_downtime_ack","send_vsc_not_because_change","send_vsc_without_downtime_ack","send_vsc_without_downtime_ack","send_vsc_not_because_change","send_vsc_without_downtime_ack","receive_downtime_slash_ack","receive_downtime_slash_ack","receive_downtime_slash_ack","consumer_del_val","consumer_del_val","consumer_del_val","consumer_add_val","insufficient_shares","send_vsc_without_downtime_ack","send_vsc_without_downtime_ack","insufficient_shares","some_undels_expired_but_not_completed","send_vsc_without_downtime_ack","consumer_update_val","some_undels_expired_but_not_completed","send_vsc_not_because_change","send_vsc_without_downtime_ack","insufficient_shares","consumer_send_maturation","consumer_send_maturation","consumer_send_maturation","consumer_send_maturation","consumer_send_maturation","consumer_send_maturation","send_vsc_without_downtime_ack","complete_undel_immediate","complete_undel_immediate","complete_undel_immediate","complete_undel_immediate","set_unval_hold_false","complete_undel_immediate","set_unval_hold_false","set_unval_hold_false","set_undel_hold_false","set_undel_hold_false","complete_unval_in_endblock","complete_unval_in_endblock","complete_unval_in_endblock","insufficient_shares","complete_undel_in_endblock","send_vsc_without_downtime_ack","consumer_update_val","complete_undel_in_endblock","some_undels_expired_but_not_completed","send_vsc_not_because_change","send_vsc_without_downtime_ack","insufficient_shares","some_undels_expired_but_not_completed","send_vsc_not_because_change","send_vsc_without_downtime_ack","send_vsc_not_because_change","send_vsc_without_downtime_ack","some_undels_expired_but_not_completed","send_vsc_without_downtime_ack","insufficient_shares","some_undels_expired_but_not_completed","send_vsc_without_downtime_ack"]},{"meta":{"commit":"7ffd0c04e4205cbc9caf212abfe6c59ee43153bf"},"constants":{"P":"provider","C":"consumer","UNBONDING_SECONDS_P":70,"UNBONDING_SECONDS_C":50,"TRUSTING_SECONDS":49,"NUM_VALIDATORS":4,"MAX_VALIDATORS":2,"SLASH_DOUBLESIGN":0,"SLASH_DOWNTIME":0,"JAIL_SECONDS":999999999999999,"BLOCK_SECONDS":6,"INITIAL_DELEGATOR_TOKENS":10000000000000,"DELEGATE_AMT_MIN":1000,"DELEGATE_AMT_MAX":5000,"UNDELEGATE_AMT_MIN":1000,"UNDELEGATE_AMT_MAX":5000,"ISDOWNTIME_PROBABILITY":0.5,"MAX_NUM_PACKETS_FOR_DELIVER":6},"actions":[{"ix":0,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":1,"action":{"kind":"Deliver","chain":"provider","numPackets":1},"partialState":{"h":1,"t":6,"tokens":[5000,4000,3000,2000],"delegation":[4000,3000,2000,1000],"delegatorTokens":10000000000000,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":2,"action":{"kind":"ConsumerSlash","val":3,"infractionHeight":0,"isDowntime":true},"partialState":{"h":1,"t":6,"outstandingDowntime":[false,false,false,true]}},{"ix":3,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":2,"t":12,"tokens":[5000,4000,3000,2000],"delegation":[4000,3000,2000,1000],"delegatorTokens":10000000000000,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":4,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":5,"action":{"kind":"Delegate","val":0,"amt":4340},"partialState":{"h":2,"t":12,"tokens":[9340,4000,3000,2000],"delegation":[8340,3000,2000,1000],"delegatorTokens":9999999995660}},{"ix":6,"action":{"kind":"ConsumerSlash","val":3,"infractionHeight":0,"isDowntime":true},"partialState":{"h":1,"t":6,"outstandingDowntime":[false,false,false,true]}},{"ix":7,"action":{"kind":"ConsumerSlash","val":1,"infractionHeight":0,"isDowntime":true},"partialState":{"h":1,"t":6,"outstandingDowntime":[false,true,false,true]}},{"ix":8,"action":{"kind":"Undelegate","val":2,"amt":3669},"partialState":{"h":2,"t":12,"tokens":[9340,4000,3000,2000],"delegation":[8340,3000,2000,1000],"delegatorTokens":9999999995660}},{"ix":9,"action":{"kind":"Undelegate","val":1,"amt":3091},"partialState":{"h":2,"t":12,"tokens":[9340,4000,3000,2000],"delegation":[8340,3000,2000,1000],"delegatorTokens":9999999995660}},{"ix":10,"action":{"kind":"Deliver","chain":"provider","numPackets":5},"partialState":{"h":2,"t":12,"tokens":[9340,4000,3000,2000],"delegation":[8340,3000,2000,1000],"delegatorTokens":9999999995660,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":11,"action":{"kind":"ConsumerSlash","val":0,"infractionHeight":0,"isDowntime":true},"partialState":{"h":1,"t":6,"outstandingDowntime":[true,true,false,true]}},{"ix":12,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":2,"t":12,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[true,true,false,true]}},{"ix":13,"action":{"kind":"Deliver","chain":"consumer","numPackets":4},"partialState":{"h":2,"t":12,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[true,true,false,true]}},{"ix":14,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":15,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":16,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":17,"action":{"kind":"Delegate","val":0,"amt":3685},"partialState":{"h":2,"t":12,"tokens":[13025,4000,3000,2000],"delegation":[12025,3000,2000,1000],"delegatorTokens":9999999991975}},{"ix":18,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":3,"t":18,"tokens":[13025,4000,3000,2000],"delegation":[12025,3000,2000,1000],"delegatorTokens":9999999991975,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":19,"action":{"kind":"Deliver","chain":"provider","numPackets":1},"partialState":{"h":3,"t":18,"tokens":[13025,4000,3000,2000],"delegation":[12025,3000,2000,1000],"delegatorTokens":9999999991975,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":20,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":4,"t":24,"tokens":[13025,4000,3000,2000],"delegation":[12025,3000,2000,1000],"delegatorTokens":9999999991975,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":21,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":22,"action":{"kind":"Undelegate","val":0,"amt":4259},"partialState":{"h":4,"t":24,"tokens":[8766,4000,3000,2000],"delegation":[7766,3000,2000,1000],"delegatorTokens":9999999991975}},{"ix":23,"action":{"kind":"Delegate","val":2,"amt":2821},"partialState":{"h":4,"t":24,"tokens":[8766,4000,5821,2000],"delegation":[7766,3000,4821,1000],"delegatorTokens":9999999989154}},{"ix":24,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":25,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":26,"action":{"kind":"Undelegate","val":0,"amt":4406},"partialState":{"h":4,"t":24,"tokens":[4360,4000,5821,2000],"delegation":[3360,3000,4821,1000],"delegatorTokens":9999999989154}},{"ix":27,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":28,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":29,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":5,"t":30,"tokens":[4360,4000,5821,2000],"delegation":[3360,3000,4821,1000],"delegatorTokens":9999999989154,"jailed":[null,null,null,null],"status":["bonded","unbonding","bonded","unbonded"]}},{"ix":30,"action":{"kind":"Delegate","val":1,"amt":3412},"partialState":{"h":5,"t":30,"tokens":[4360,7412,5821,2000],"delegation":[3360,6412,4821,1000],"delegatorTokens":9999999985742}},{"ix":31,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":3,"t":18,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[true,true,false,true]}},{"ix":32,"action":{"kind":"Deliver","chain":"consumer","numPackets":3},"partialState":{"h":3,"t":18,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[true,true,false,true]}},{"ix":33,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":34,"action":{"kind":"Undelegate","val":2,"amt":2405},"partialState":{"h":5,"t":30,"tokens":[4360,7412,3416,2000],"delegation":[3360,6412,2416,1000],"delegatorTokens":9999999985742}},{"ix":35,"action":{"kind":"Deliver","chain":"provider","numPackets":2},"partialState":{"h":5,"t":30,"tokens":[4360,7412,3416,2000],"delegation":[3360,6412,2416,1000],"delegatorTokens":9999999985742,"jailed":[null,null,null,null],"status":["bonded","unbonding","bonded","unbonded"]}},{"ix":36,"action":{"kind":"Delegate","val":3,"amt":4221},"partialState":{"h":5,"t":30,"tokens":[4360,7412,3416,6221],"delegation":[3360,6412,2416,5221],"delegatorTokens":9999999981521}},{"ix":37,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":6,"t":36,"tokens":[4360,7412,3416,6221],"delegation":[3360,6412,2416,5221],"delegatorTokens":9999999981521,"jailed":[null,1000000000000029,null,1000000000000029],"status":["unbonding","bonded","unbonding","bonded"]}},{"ix":38,"action":{"kind":"Deliver","chain":"provider","numPackets":3},"partialState":{"h":6,"t":36,"tokens":[4360,7412,3416,6221],"delegation":[3360,6412,2416,5221],"delegatorTokens":9999999981521,"jailed":[null,1000000000000029,null,1000000000000029],"status":["unbonding","bonded","unbonding","bonded"]}},{"ix":39,"action":{"kind":"Deliver","chain":"provider","numPackets":3},"partialState":{"h":6,"t":36,"tokens":[4360,7412,3416,6221],"delegation":[3360,6412,2416,5221],"delegatorTokens":9999999981521,"jailed":[null,1000000000000029,null,1000000000000029],"status":["unbonding","bonded","unbonding","bonded"]}},{"ix":40,"action":{"kind":"Delegate","val":2,"amt":2049},"partialState":{"h":6,"t":36,"tokens":[4360,7412,5465,6221],"delegation":[3360,6412,4465,5221],"delegatorTokens":9999999979472}},{"ix":41,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":4,"t":24,"consumerPower":[13025,4000,null,null],"outstandingDowntime":[true,true,false,true]}},{"ix":42,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":5,"t":30,"consumerPower":[13025,4000,null,null],"outstandingDowntime":[true,true,false,true]}},{"ix":43,"action":{"kind":"Deliver","chain":"provider","numPackets":3},"partialState":{"h":6,"t":36,"tokens":[4360,7412,5465,6221],"delegation":[3360,6412,4465,5221],"delegatorTokens":9999999979472,"jailed":[null,1000000000000029,null,1000000000000029],"status":["unbonding","bonded","unbonding","bonded"]}},{"ix":44,"action":{"kind":"Deliver","chain":"consumer","numPackets":2},"partialState":{"h":5,"t":30,"consumerPower":[13025,4000,null,null],"outstandingDowntime":[true,true,false,true]}},{"ix":45,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":6,"t":36,"consumerPower":[4360,null,5821,null],"outstandingDowntime":[true,true,false,true]}},{"ix":46,"action":{"kind":"Undelegate","val":1,"amt":4266},"partialState":{"h":6,"t":36,"tokens":[4360,3146,5465,6221],"delegation":[3360,2146,4465,5221],"delegatorTokens":9999999979472}},{"ix":47,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":48,"action":{"kind":"Undelegate","val":1,"amt":2388},"partialState":{"h":6,"t":36,"tokens":[4360,3146,5465,6221],"delegation":[3360,2146,4465,5221],"delegatorTokens":9999999979472}},{"ix":49,"action":{"kind":"Deliver","chain":"provider","numPackets":6},"partialState":{"h":6,"t":36,"tokens":[4360,3146,5465,6221],"delegation":[3360,2146,4465,5221],"delegatorTokens":9999999979472,"jailed":[null,1000000000000029,null,1000000000000029],"status":["unbonding","bonded","unbonding","bonded"]}},{"ix":50,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":7,"t":42,"tokens":[4360,3146,5465,6221],"delegation":[3360,2146,4465,5221],"delegatorTokens":9999999979472,"jailed":[1000000000000035,1000000000000029,null,1000000000000029],"status":["bonded","unbonding","bonded","unbonding"]}},{"ix":51,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":52,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":53,"action":{"kind":"Deliver","chain":"consumer","numPackets":5},"partialState":{"h":6,"t":36,"consumerPower":[4360,null,5821,null],"outstandingDowntime":[true,false,false,false]}},{"ix":54,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":8,"t":48,"tokens":[4360,3146,5465,6221],"delegation":[3360,2146,4465,5221],"delegatorTokens":9999999979472,"jailed":[1000000000000035,1000000000000029,null,1000000000000029],"status":["unbonding","unbonding","bonded","unbonding"]}},{"ix":55,"action":{"kind":"Delegate","val":2,"amt":2660},"partialState":{"h":8,"t":48,"tokens":[4360,3146,8125,6221],"delegation":[3360,2146,7125,5221],"delegatorTokens":9999999976812}},{"ix":56,"action":{"kind":"Undelegate","val":1,"amt":3928},"partialState":{"h":8,"t":48,"tokens":[4360,3146,8125,6221],"delegation":[3360,2146,7125,5221],"delegatorTokens":9999999976812}},{"ix":57,"action":{"kind":"Delegate","val":3,"amt":1645},"partialState":{"h":8,"t":48,"tokens":[4360,3146,8125,7866],"delegation":[3360,2146,7125,6866],"delegatorTokens":9999999975167}},{"ix":58,"action":{"kind":"Undelegate","val":0,"amt":2256},"partialState":{"h":8,"t":48,"tokens":[2104,3146,8125,7866],"delegation":[1104,2146,7125,6866],"delegatorTokens":9999999975167}},{"ix":59,"action":{"kind":"Delegate","val":0,"amt":4762},"partialState":{"h":8,"t":48,"tokens":[6866,3146,8125,7866],"delegation":[5866,2146,7125,6866],"delegatorTokens":9999999970405}},{"ix":60,"action":{"kind":"Undelegate","val":0,"amt":3758},"partialState":{"h":8,"t":48,"tokens":[3108,3146,8125,7866],"delegation":[2108,2146,7125,6866],"delegatorTokens":9999999970405}},{"ix":61,"action":{"kind":"Delegate","val":0,"amt":3507},"partialState":{"h":8,"t":48,"tokens":[6615,3146,8125,7866],"delegation":[5615,2146,7125,6866],"delegatorTokens":9999999966898}},{"ix":62,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":7,"t":42,"consumerPower":[null,7412,null,6221],"outstandingDowntime":[true,false,false,false]}},{"ix":63,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":9,"t":54,"tokens":[6615,3146,8125,7866],"delegation":[5615,2146,7125,6866],"delegatorTokens":9999999966898,"jailed":[1000000000000035,1000000000000029,null,1000000000000029],"status":["unbonding","unbonding","bonded","unbonding"]}},{"ix":64,"action":{"kind":"Deliver","chain":"consumer","numPackets":5},"partialState":{"h":7,"t":42,"consumerPower":[null,7412,null,6221],"outstandingDowntime":[false,false,false,false]}},{"ix":65,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":66,"action":{"kind":"Delegate","val":3,"amt":1473},"partialState":{"h":9,"t":54,"tokens":[6615,3146,8125,9339],"delegation":[5615,2146,7125,8339],"delegatorTokens":9999999965425}},{"ix":67,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":68,"action":{"kind":"Deliver","chain":"provider","numPackets":6},"partialState":{"h":9,"t":54,"tokens":[6615,3146,8125,9339],"delegation":[5615,2146,7125,8339],"delegatorTokens":9999999965425,"jailed":[1000000000000035,1000000000000029,null,1000000000000029],"status":["unbonding","unbonding","bonded","unbonding"]}},{"ix":69,"action":{"kind":"Undelegate","val":0,"amt":1554},"partialState":{"h":9,"t":54,"tokens":[5061,3146,8125,9339],"delegation":[4061,2146,7125,8339],"delegatorTokens":9999999965425}},{"ix":70,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":10,"t":60,"tokens":[5061,3146,8125,9339],"delegation":[4061,2146,7125,8339],"delegatorTokens":9999999965425,"jailed":[1000000000000035,1000000000000029,null,1000000000000029],"status":["unbonding","unbonding","bonded","unbonding"]}},{"ix":71,"action":{"kind":"Delegate","val":3,"amt":2601},"partialState":{"h":10,"t":60,"tokens":[5061,3146,8125,11940],"delegation":[4061,2146,7125,10940],"delegatorTokens":9999999962824}},{"ix":72,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":8,"t":48,"consumerPower":[null,null,5465,null],"outstandingDowntime":[false,false,false,false]}},{"ix":73,"action":{"kind":"Deliver","chain":"consumer","numPackets":3},"partialState":{"h":8,"t":48,"consumerPower":[null,null,5465,null],"outstandingDowntime":[false,false,false,false]}},{"ix":74,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":75,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":11,"t":66,"tokens":[5061,3146,8125,11940],"delegation":[4061,2146,7125,10940],"delegatorTokens":9999999962824,"jailed":[1000000000000035,1000000000000029,null,1000000000000029],"status":["unbonding","unbonding","bonded","unbonding"]}},{"ix":76,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":77,"action":{"kind":"Deliver","chain":"provider","numPackets":1},"partialState":{"h":11,"t":66,"tokens":[5061,3146,8125,11940],"delegation":[4061,2146,7125,10940],"delegatorTokens":9999999962824,"jailed":[1000000000000035,1000000000000029,null,1000000000000029],"status":["unbonding","unbonding","bonded","unbonding"]}},{"ix":78,"action":{"kind":"Deliver","chain":"provider","numPackets":4},"partialState":{"h":11,"t":66,"tokens":[5061,3146,8125,11940],"delegation":[4061,2146,7125,10940],"delegatorTokens":9999999962824,"jailed":[1000000000000035,1000000000000029,null,1000000000000029],"status":["unbonding","unbonding","bonded","unbonding"]}},{"ix":79,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":80,"action":{"kind":"Delegate","val":3,"amt":4224},"partialState":{"h":11,"t":66,"tokens":[5061,3146,8125,16164],"delegation":[4061,2146,7125,15164],"delegatorTokens":9999999958600}},{"ix":81,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":12,"t":72,"tokens":[5061,3146,8125,16164],"delegation":[4061,2146,7125,15164],"delegatorTokens":9999999958600,"jailed":[1000000000000035,1000000000000029,null,1000000000000029],"status":["unbonding","unbonding","bonded","unbonding"]}},{"ix":82,"action":{"kind":"Delegate","val":1,"amt":3309},"partialState":{"h":12,"t":72,"tokens":[5061,6455,8125,16164],"delegation":[4061,5455,7125,15164],"delegatorTokens":9999999955291}},{"ix":83,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":13,"t":78,"tokens":[5061,6455,8125,16164],"delegation":[4061,5455,7125,15164],"delegatorTokens":9999999955291,"jailed":[1000000000000035,1000000000000029,null,1000000000000029],"status":["unbonding","unbonding","bonded","unbonding"]}},{"ix":84,"action":{"kind":"Delegate","val":1,"amt":3558},"partialState":{"h":13,"t":78,"tokens":[5061,10013,8125,16164],"delegation":[4061,9013,7125,15164],"delegatorTokens":9999999951733}},{"ix":85,"action":{"kind":"Deliver","chain":"provider","numPackets":1},"partialState":{"h":13,"t":78,"tokens":[5061,10013,8125,16164],"delegation":[4061,9013,7125,15164],"delegatorTokens":9999999951733,"jailed":[1000000000000035,1000000000000029,null,1000000000000029],"status":["unbonding","unbonding","bonded","unbonding"]}},{"ix":86,"action":{"kind":"Undelegate","val":3,"amt":2468},"partialState":{"h":13,"t":78,"tokens":[5061,10013,8125,13696],"delegation":[4061,9013,7125,12696],"delegatorTokens":9999999951733}},{"ix":87,"action":{"kind":"Undelegate","val":2,"amt":3511},"partialState":{"h":13,"t":78,"tokens":[5061,10013,4614,13696],"delegation":[4061,9013,3614,12696],"delegatorTokens":9999999951733}},{"ix":88,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":89,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":9,"t":54,"consumerPower":[null,null,8125,null],"outstandingDowntime":[false,false,false,false]}},{"ix":90,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":10,"t":60,"consumerPower":[null,null,8125,null],"outstandingDowntime":[false,false,false,false]}},{"ix":91,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":14,"t":84,"tokens":[5061,10013,4614,13696],"delegation":[4061,9013,3614,12696],"delegatorTokens":9999999951733,"jailed":[1000000000000035,1000000000000029,null,1000000000000029],"status":["unbonding","unbonding","bonded","unbonding"]}},{"ix":92,"action":{"kind":"Undelegate","val":2,"amt":4428},"partialState":{"h":14,"t":84,"tokens":[5061,10013,4614,13696],"delegation":[4061,9013,3614,12696],"delegatorTokens":9999999951733}},{"ix":93,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":94,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":15,"t":90,"tokens":[5061,10013,4614,13696],"delegation":[4061,9013,3614,12696],"delegatorTokens":9999999951733,"jailed":[1000000000000035,1000000000000029,null,1000000000000029],"status":["unbonding","unbonding","bonded","unbonding"]}},{"ix":95,"action":{"kind":"Delegate","val":1,"amt":1068},"partialState":{"h":15,"t":90,"tokens":[5061,11081,4614,13696],"delegation":[4061,10081,3614,12696],"delegatorTokens":9999999950665}},{"ix":96,"action":{"kind":"Delegate","val":0,"amt":1133},"partialState":{"h":15,"t":90,"tokens":[6194,11081,4614,13696],"delegation":[5194,10081,3614,12696],"delegatorTokens":9999999949532}},{"ix":97,"action":{"kind":"Deliver","chain":"provider","numPackets":4},"partialState":{"h":15,"t":90,"tokens":[6194,11081,4614,13696],"delegation":[5194,10081,3614,12696],"delegatorTokens":9999999949532,"jailed":[1000000000000035,1000000000000029,null,1000000000000029],"status":["unbonding","unbonding","bonded","unbonding"]}},{"ix":98,"action":{"kind":"Delegate","val":2,"amt":2142},"partialState":{"h":15,"t":90,"tokens":[6194,11081,6756,13696],"delegation":[5194,10081,5756,12696],"delegatorTokens":9999999947390}},{"ix":99,"action":{"kind":"Undelegate","val":0,"amt":3120},"partialState":{"h":15,"t":90,"tokens":[3074,11081,6756,13696],"delegation":[2074,10081,5756,12696],"delegatorTokens":9999999947390}},{"ix":100,"action":{"kind":"Delegate","val":3,"amt":2190},"partialState":{"h":15,"t":90,"tokens":[3074,11081,6756,15886],"delegation":[2074,10081,5756,14886],"delegatorTokens":9999999945200}},{"ix":101,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":102,"action":{"kind":"Delegate","val":1,"amt":4437},"partialState":{"h":15,"t":90,"tokens":[3074,15518,6756,15886],"delegation":[2074,14518,5756,14886],"delegatorTokens":9999999940763}},{"ix":103,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":11,"t":66,"consumerPower":[null,null,8125,null],"outstandingDowntime":[false,false,false,false]}},{"ix":104,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":105,"action":{"kind":"Undelegate","val":0,"amt":1688},"partialState":{"h":15,"t":90,"tokens":[1386,15518,6756,15886],"delegation":[386,14518,5756,14886],"delegatorTokens":9999999940763}},{"ix":106,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":12,"t":72,"consumerPower":[null,null,8125,null],"outstandingDowntime":[false,false,false,false]}},{"ix":107,"action":{"kind":"Undelegate","val":2,"amt":2247},"partialState":{"h":15,"t":90,"tokens":[1386,15518,4509,15886],"delegation":[386,14518,3509,14886],"delegatorTokens":9999999940763}},{"ix":108,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":109,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":13,"t":78,"consumerPower":[null,null,8125,null],"outstandingDowntime":[false,false,false,false]}},{"ix":110,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":14,"t":84,"consumerPower":[null,null,8125,null],"outstandingDowntime":[false,false,false,false]}},{"ix":111,"action":{"kind":"Delegate","val":2,"amt":2652},"partialState":{"h":15,"t":90,"tokens":[1386,15518,7161,15886],"delegation":[386,14518,6161,14886],"delegatorTokens":9999999938111}},{"ix":112,"action":{"kind":"Undelegate","val":1,"amt":4090},"partialState":{"h":15,"t":90,"tokens":[1386,11428,7161,15886],"delegation":[386,10428,6161,14886],"delegatorTokens":9999999938111}},{"ix":113,"action":{"kind":"Delegate","val":2,"amt":1647},"partialState":{"h":15,"t":90,"tokens":[1386,11428,8808,15886],"delegation":[386,10428,7808,14886],"delegatorTokens":9999999936464}},{"ix":114,"action":{"kind":"Undelegate","val":1,"amt":1305},"partialState":{"h":15,"t":90,"tokens":[1386,10123,8808,15886],"delegation":[386,9123,7808,14886],"delegatorTokens":9999999936464}},{"ix":115,"action":{"kind":"Delegate","val":0,"amt":3976},"partialState":{"h":15,"t":90,"tokens":[5362,10123,8808,15886],"delegation":[4362,9123,7808,14886],"delegatorTokens":9999999932488}},{"ix":116,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":15,"t":90,"consumerPower":[null,null,8125,null],"outstandingDowntime":[false,false,false,false]}},{"ix":117,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":118,"action":{"kind":"Delegate","val":2,"amt":2896},"partialState":{"h":15,"t":90,"tokens":[5362,10123,11704,15886],"delegation":[4362,9123,10704,14886],"delegatorTokens":9999999929592}},{"ix":119,"action":{"kind":"Delegate","val":3,"amt":2087},"partialState":{"h":15,"t":90,"tokens":[5362,10123,11704,17973],"delegation":[4362,9123,10704,16973],"delegatorTokens":9999999927505}},{"ix":120,"action":{"kind":"Deliver","chain":"consumer","numPackets":6},"partialState":{"h":15,"t":90,"consumerPower":[null,null,8125,null],"outstandingDowntime":[false,false,false,false]}},{"ix":121,"action":{"kind":"Undelegate","val":0,"amt":2699},"partialState":{"h":15,"t":90,"tokens":[2663,10123,11704,17973],"delegation":[1663,9123,10704,16973],"delegatorTokens":9999999927505}},{"ix":122,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":123,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":16,"t":96,"consumerPower":[null,null,4614,null],"outstandingDowntime":[false,false,false,false]}},{"ix":124,"action":{"kind":"Delegate","val":0,"amt":1834},"partialState":{"h":15,"t":90,"tokens":[4497,10123,11704,17973],"delegation":[3497,9123,10704,16973],"delegatorTokens":9999999925671}},{"ix":125,"action":{"kind":"Delegate","val":1,"amt":1696},"partialState":{"h":15,"t":90,"tokens":[4497,11819,11704,17973],"delegation":[3497,10819,10704,16973],"delegatorTokens":9999999923975}},{"ix":126,"action":{"kind":"Delegate","val":0,"amt":4571},"partialState":{"h":15,"t":90,"tokens":[9068,11819,11704,17973],"delegation":[8068,10819,10704,16973],"delegatorTokens":9999999919404}},{"ix":127,"action":{"kind":"Undelegate","val":2,"amt":1574},"partialState":{"h":15,"t":90,"tokens":[9068,11819,10130,17973],"delegation":[8068,10819,9130,16973],"delegatorTokens":9999999919404}},{"ix":128,"action":{"kind":"Undelegate","val":3,"amt":4830},"partialState":{"h":15,"t":90,"tokens":[9068,11819,10130,13143],"delegation":[8068,10819,9130,12143],"delegatorTokens":9999999919404}},{"ix":129,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":17,"t":102,"consumerPower":[null,null,4614,null],"outstandingDowntime":[false,false,false,false]}},{"ix":130,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":18,"t":108,"consumerPower":[null,null,4614,null],"outstandingDowntime":[false,false,false,false]}},{"ix":131,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":132,"action":{"kind":"Delegate","val":1,"amt":4607},"partialState":{"h":15,"t":90,"tokens":[9068,16426,10130,13143],"delegation":[8068,15426,9130,12143],"delegatorTokens":9999999914797}},{"ix":133,"action":{"kind":"Deliver","chain":"consumer","numPackets":2},"partialState":{"h":18,"t":108,"consumerPower":[null,null,4614,null],"outstandingDowntime":[false,false,false,false]}},{"ix":134,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":135,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":136,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":16,"t":96,"tokens":[9068,16426,10130,13143],"delegation":[8068,15426,9130,12143],"delegatorTokens":9999999914797,"jailed":[1000000000000035,1000000000000029,null,1000000000000029],"status":["unbonding","unbonding","bonded","unbonding"]}},{"ix":137,"action":{"kind":"Deliver","chain":"provider","numPackets":3},"partialState":{"h":16,"t":96,"tokens":[9068,16426,10130,13143],"delegation":[8068,15426,9130,12143],"delegatorTokens":9999999914797,"jailed":[1000000000000035,1000000000000029,null,1000000000000029],"status":["unbonding","unbonding","bonded","unbonding"]}},{"ix":138,"action":{"kind":"Undelegate","val":1,"amt":2150},"partialState":{"h":16,"t":96,"tokens":[9068,14276,10130,13143],"delegation":[8068,13276,9130,12143],"delegatorTokens":9999999914797}},{"ix":139,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":140,"action":{"kind":"Deliver","chain":"provider","numPackets":5},"partialState":{"h":16,"t":96,"tokens":[9068,14276,10130,13143],"delegation":[8068,13276,9130,12143],"delegatorTokens":9999999914797,"jailed":[1000000000000035,1000000000000029,null,1000000000000029],"status":["unbonding","unbonding","bonded","unbonding"]}},{"ix":141,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":142,"action":{"kind":"Undelegate","val":0,"amt":3606},"partialState":{"h":16,"t":96,"tokens":[5462,14276,10130,13143],"delegation":[4462,13276,9130,12143],"delegatorTokens":9999999914797}},{"ix":143,"action":{"kind":"Delegate","val":3,"amt":4829},"partialState":{"h":16,"t":96,"tokens":[5462,14276,10130,17972],"delegation":[4462,13276,9130,16972],"delegatorTokens":9999999909968}},{"ix":144,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":17,"t":102,"tokens":[5462,14276,10130,17972],"delegation":[4462,13276,9130,16972],"delegatorTokens":9999999918633,"jailed":[1000000000000035,1000000000000029,null,1000000000000029],"status":["unbonding","unbonding","bonded","unbonding"]}},{"ix":145,"action":{"kind":"Undelegate","val":1,"amt":2416},"partialState":{"h":17,"t":102,"tokens":[5462,11860,10130,17972],"delegation":[4462,10860,9130,16972],"delegatorTokens":9999999918633}},{"ix":146,"action":{"kind":"Delegate","val":0,"amt":3911},"partialState":{"h":17,"t":102,"tokens":[9373,11860,10130,17972],"delegation":[8373,10860,9130,16972],"delegatorTokens":9999999914722}},{"ix":147,"action":{"kind":"Deliver","chain":"consumer","numPackets":4},"partialState":{"h":18,"t":108,"consumerPower":[null,null,4614,null],"outstandingDowntime":[false,false,false,false]}},{"ix":148,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":149,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":19,"t":114,"consumerPower":[null,null,10130,null],"outstandingDowntime":[false,false,false,false]}},{"ix":150,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":151,"action":{"kind":"Delegate","val":3,"amt":4133},"partialState":{"h":17,"t":102,"tokens":[9373,11860,10130,22105],"delegation":[8373,10860,9130,21105],"delegatorTokens":9999999910589}},{"ix":152,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":153,"action":{"kind":"Delegate","val":3,"amt":1604},"partialState":{"h":17,"t":102,"tokens":[9373,11860,10130,23709],"delegation":[8373,10860,9130,22709],"delegatorTokens":9999999908985}},{"ix":154,"action":{"kind":"Delegate","val":3,"amt":2965},"partialState":{"h":17,"t":102,"tokens":[9373,11860,10130,26674],"delegation":[8373,10860,9130,25674],"delegatorTokens":9999999906020}},{"ix":155,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":18,"t":108,"tokens":[9373,11860,10130,26674],"delegation":[8373,10860,9130,25674],"delegatorTokens":9999999908425,"jailed":[1000000000000035,1000000000000029,null,1000000000000029],"status":["unbonding","unbonding","bonded","unbonding"]}},{"ix":156,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":19,"t":114,"tokens":[9373,11860,10130,26674],"delegation":[8373,10860,9130,25674],"delegatorTokens":9999999912691,"jailed":[1000000000000035,1000000000000029,null,1000000000000029],"status":["unbonding","unbonded","bonded","unbonded"]}},{"ix":157,"action":{"kind":"Delegate","val":2,"amt":1165},"partialState":{"h":19,"t":114,"tokens":[9373,11860,11295,26674],"delegation":[8373,10860,10295,25674],"delegatorTokens":9999999911526}},{"ix":158,"action":{"kind":"Delegate","val":0,"amt":3626},"partialState":{"h":19,"t":114,"tokens":[12999,11860,11295,26674],"delegation":[11999,10860,10295,25674],"delegatorTokens":9999999907900}},{"ix":159,"action":{"kind":"Deliver","chain":"consumer","numPackets":1},"partialState":{"h":19,"t":114,"consumerPower":[null,null,10130,null],"outstandingDowntime":[false,false,false,false]}},{"ix":160,"action":{"kind":"Undelegate","val":1,"amt":2386},"partialState":{"h":19,"t":114,"tokens":[12999,9474,11295,26674],"delegation":[11999,8474,10295,25674],"delegatorTokens":9999999907900}},{"ix":161,"action":{"kind":"Deliver","chain":"consumer","numPackets":3},"partialState":{"h":19,"t":114,"consumerPower":[null,null,10130,null],"outstandingDowntime":[false,false,false,false]}},{"ix":162,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":163,"action":{"kind":"Delegate","val":2,"amt":2664},"partialState":{"h":19,"t":114,"tokens":[12999,9474,13959,26674],"delegation":[11999,8474,12959,25674],"delegatorTokens":9999999905236}},{"ix":164,"action":{"kind":"Undelegate","val":2,"amt":2275},"partialState":{"h":19,"t":114,"tokens":[12999,9474,11684,26674],"delegation":[11999,8474,10684,25674],"delegatorTokens":9999999905236}},{"ix":165,"action":{"kind":"Delegate","val":3,"amt":4601},"partialState":{"h":19,"t":114,"tokens":[12999,9474,11684,31275],"delegation":[11999,8474,10684,30275],"delegatorTokens":9999999900635}},{"ix":166,"action":{"kind":"Delegate","val":2,"amt":3756},"partialState":{"h":19,"t":114,"tokens":[12999,9474,15440,31275],"delegation":[11999,8474,14440,30275],"delegatorTokens":9999999896879}},{"ix":167,"action":{"kind":"Delegate","val":0,"amt":1707},"partialState":{"h":19,"t":114,"tokens":[14706,9474,15440,31275],"delegation":[13706,8474,14440,30275],"delegatorTokens":9999999895172}},{"ix":168,"action":{"kind":"Undelegate","val":1,"amt":4529},"partialState":{"h":19,"t":114,"tokens":[14706,4945,15440,31275],"delegation":[13706,3945,14440,30275],"delegatorTokens":9999999895172}},{"ix":169,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":170,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":20,"t":120,"tokens":[14706,4945,15440,31275],"delegation":[13706,3945,14440,30275],"delegatorTokens":9999999895172,"jailed":[1000000000000035,1000000000000029,null,1000000000000029],"status":["unbonded","unbonded","bonded","unbonded"]}},{"ix":171,"action":{"kind":"Delegate","val":0,"amt":4474},"partialState":{"h":20,"t":120,"tokens":[19180,4945,15440,31275],"delegation":[18180,3945,14440,30275],"delegatorTokens":9999999890698}},{"ix":172,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":173,"action":{"kind":"Undelegate","val":1,"amt":3018},"partialState":{"h":20,"t":120,"tokens":[19180,1927,15440,31275],"delegation":[18180,927,14440,30275],"delegatorTokens":9999999890698}},{"ix":174,"action":{"kind":"Delegate","val":2,"amt":3640},"partialState":{"h":20,"t":120,"tokens":[19180,1927,19080,31275],"delegation":[18180,927,18080,30275],"delegatorTokens":9999999887058}},{"ix":175,"action":{"kind":"Undelegate","val":1,"amt":4837},"partialState":{"h":20,"t":120,"tokens":[19180,1927,19080,31275],"delegation":[18180,927,18080,30275],"delegatorTokens":9999999887058}},{"ix":176,"action":{"kind":"Delegate","val":3,"amt":1556},"partialState":{"h":20,"t":120,"tokens":[19180,1927,19080,32831],"delegation":[18180,927,18080,31831],"delegatorTokens":9999999885502}},{"ix":177,"action":{"kind":"Deliver","chain":"consumer","numPackets":2},"partialState":{"h":19,"t":114,"consumerPower":[null,null,10130,null],"outstandingDowntime":[false,false,false,false]}},{"ix":178,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":21,"t":126,"tokens":[19180,1927,19080,32831],"delegation":[18180,927,18080,31831],"delegatorTokens":9999999885502,"jailed":[1000000000000035,1000000000000029,null,1000000000000029],"status":["unbonded","unbonded","bonded","unbonded"]}},{"ix":179,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":180,"action":{"kind":"Delegate","val":1,"amt":1886},"partialState":{"h":21,"t":126,"tokens":[19180,3813,19080,32831],"delegation":[18180,2813,18080,31831],"delegatorTokens":9999999883616}},{"ix":181,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":20,"t":120,"consumerPower":[null,null,10130,null],"outstandingDowntime":[false,false,false,false]}},{"ix":182,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":21,"t":126,"consumerPower":[null,null,10130,null],"outstandingDowntime":[false,false,false,false]}},{"ix":183,"action":{"kind":"Undelegate","val":3,"amt":1954},"partialState":{"h":21,"t":126,"tokens":[19180,3813,19080,30877],"delegation":[18180,2813,18080,29877],"delegatorTokens":9999999883616}},{"ix":184,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":22,"t":132,"tokens":[19180,3813,19080,30877],"delegation":[18180,2813,18080,29877],"delegatorTokens":9999999883616,"jailed":[1000000000000035,1000000000000029,null,1000000000000029],"status":["unbonded","unbonded","bonded","unbonded"]}},{"ix":185,"action":{"kind":"Delegate","val":0,"amt":1996},"partialState":{"h":22,"t":132,"tokens":[21176,3813,19080,30877],"delegation":[20176,2813,18080,29877],"delegatorTokens":9999999881620}},{"ix":186,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":22,"t":132,"consumerPower":[null,null,10130,null],"outstandingDowntime":[false,false,false,false]}},{"ix":187,"action":{"kind":"Undelegate","val":1,"amt":3453},"partialState":{"h":22,"t":132,"tokens":[21176,3813,19080,30877],"delegation":[20176,2813,18080,29877],"delegatorTokens":9999999881620}},{"ix":188,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":23,"t":138,"consumerPower":[null,null,10130,null],"outstandingDowntime":[false,false,false,false]}},{"ix":189,"action":{"kind":"Delegate","val":3,"amt":1742},"partialState":{"h":22,"t":132,"tokens":[21176,3813,19080,32619],"delegation":[20176,2813,18080,31619],"delegatorTokens":9999999879878}},{"ix":190,"action":{"kind":"Delegate","val":1,"amt":4483},"partialState":{"h":22,"t":132,"tokens":[21176,8296,19080,32619],"delegation":[20176,7296,18080,31619],"delegatorTokens":9999999875395}},{"ix":191,"action":{"kind":"Deliver","chain":"consumer","numPackets":3},"partialState":{"h":23,"t":138,"consumerPower":[null,null,10130,null],"outstandingDowntime":[false,false,false,false]}},{"ix":192,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":23,"t":138,"tokens":[21176,8296,19080,32619],"delegation":[20176,7296,18080,31619],"delegatorTokens":9999999875395,"jailed":[1000000000000035,1000000000000029,null,1000000000000029],"status":["unbonded","unbonded","bonded","unbonded"]}},{"ix":193,"action":{"kind":"Undelegate","val":1,"amt":2766},"partialState":{"h":23,"t":138,"tokens":[21176,5530,19080,32619],"delegation":[20176,4530,18080,31619],"delegatorTokens":9999999875395}},{"ix":194,"action":{"kind":"Undelegate","val":3,"amt":3593},"partialState":{"h":23,"t":138,"tokens":[21176,5530,19080,29026],"delegation":[20176,4530,18080,28026],"delegatorTokens":9999999875395}},{"ix":195,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":196,"action":{"kind":"Deliver","chain":"provider","numPackets":2},"partialState":{"h":23,"t":138,"tokens":[21176,5530,19080,29026],"delegation":[20176,4530,18080,28026],"delegatorTokens":9999999875395,"jailed":[1000000000000035,1000000000000029,null,1000000000000029],"status":["unbonded","unbonded","bonded","unbonded"]}},{"ix":197,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":198,"action":{"kind":"Deliver","chain":"consumer","numPackets":1},"partialState":{"h":23,"t":138,"consumerPower":[null,null,10130,null],"outstandingDowntime":[false,false,false,false]}},{"ix":199,"action":{"kind":"Delegate","val":2,"amt":3024},"partialState":{"h":23,"t":138,"tokens":[21176,5530,22104,29026],"delegation":[20176,4530,21104,28026],"delegatorTokens":9999999872371}}],"events":["send_downtime_slash_request","downtime_slash_request_outstanding","send_downtime_slash_request","insufficient_shares","insufficient_shares","send_downtime_slash_request","send_vsc_without_downtime_ack","more_than_one_third_val_power_change","send_vsc_without_downtime_ack","more_than_one_third_val_power_change","rebond_unval","receive_downtime_slash_request","jail","receive_downtime_slash_request","jail","send_vsc_with_downtime_ack","consumer_update_val","consumer_update_val","consumer_del_val","consumer_add_val","insufficient_shares","more_than_one_third_val_power_change","rebond_unval","rebond_unval","receive_downtime_slash_request","jail","send_vsc_with_downtime_ack","receive_downtime_slash_ack","receive_downtime_slash_ack","send_vsc_without_downtime_ack","insufficient_shares","consumer_del_val","consumer_add_val","consumer_del_val","consumer_add_val","send_vsc_without_downtime_ack","receive_downtime_slash_ack","send_vsc_not_because_change","send_vsc_without_downtime_ack","consumer_del_val","consumer_del_val","consumer_add_val","consumer_del_val","consumer_update_val","send_vsc_without_downtime_ack","insufficient_shares","consumer_send_maturation","consumer_send_maturation","consumer_send_maturation","consumer_update_val","consumer_send_maturation","consumer_send_maturation","consumer_send_maturation","send_vsc_without_downtime_ack","some_undels_expired_but_not_completed","complete_undel_immediate","complete_undel_immediate","set_undel_hold_false","set_undel_hold_false","set_unval_hold_false","set_unval_hold_false","set_unval_hold_false","send_vsc_not_because_change","send_vsc_without_downtime_ack","consumer_update_val","complete_undel_in_endblock","send_vsc_not_because_change","send_vsc_without_downtime_ack","complete_unval_in_endblock","complete_unval_in_endblock","complete_undel_in_endblock","complete_unval_in_endblock","send_vsc_without_downtime_ack","insufficient_shares","some_undels_expired_but_not_completed","send_vsc_without_downtime_ack","some_undels_expired_but_not_completed","send_vsc_not_because_change","send_vsc_without_downtime_ack","insufficient_shares"]},{"meta":{"commit":"7ffd0c04e4205cbc9caf212abfe6c59ee43153bf"},"constants":{"P":"provider","C":"consumer","UNBONDING_SECONDS_P":70,"UNBONDING_SECONDS_C":50,"TRUSTING_SECONDS":49,"NUM_VALIDATORS":4,"MAX_VALIDATORS":2,"SLASH_DOUBLESIGN":0,"SLASH_DOWNTIME":0,"JAIL_SECONDS":999999999999999,"BLOCK_SECONDS":6,"INITIAL_DELEGATOR_TOKENS":10000000000000,"DELEGATE_AMT_MIN":1000,"DELEGATE_AMT_MAX":5000,"UNDELEGATE_AMT_MIN":1000,"UNDELEGATE_AMT_MAX":5000,"ISDOWNTIME_PROBABILITY":0.5,"MAX_NUM_PACKETS_FOR_DELIVER":6},"actions":[{"ix":0,"action":{"kind":"ConsumerSlash","val":3,"infractionHeight":0,"isDowntime":true},"partialState":{"h":1,"t":6,"outstandingDowntime":[false,false,false,true]}},{"ix":1,"action":{"kind":"Deliver","chain":"consumer","numPackets":3},"partialState":{"h":1,"t":6,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,false,false,true]}},{"ix":2,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":2,"t":12,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,false,false,true]}},{"ix":3,"action":{"kind":"Undelegate","val":3,"amt":4539},"partialState":{"h":1,"t":6,"tokens":[5000,4000,3000,2000],"delegation":[4000,3000,2000,1000],"delegatorTokens":10000000000000}},{"ix":4,"action":{"kind":"Delegate","val":3,"amt":1371},"partialState":{"h":1,"t":6,"tokens":[5000,4000,3000,3371],"delegation":[4000,3000,2000,2371],"delegatorTokens":9999999998629}},{"ix":5,"action":{"kind":"ConsumerSlash","val":3,"infractionHeight":1,"isDowntime":true},"partialState":{"h":2,"t":12,"outstandingDowntime":[false,false,false,true]}},{"ix":6,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":2,"t":12,"tokens":[5000,4000,3000,3371],"delegation":[4000,3000,2000,2371],"delegatorTokens":9999999998629,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":7,"action":{"kind":"Delegate","val":0,"amt":3403},"partialState":{"h":2,"t":12,"tokens":[8403,4000,3000,3371],"delegation":[7403,3000,2000,2371],"delegatorTokens":9999999995226}},{"ix":8,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":3,"t":18,"tokens":[8403,4000,3000,3371],"delegation":[7403,3000,2000,2371],"delegatorTokens":9999999995226,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":9,"action":{"kind":"ConsumerSlash","val":2,"infractionHeight":1,"isDowntime":true},"partialState":{"h":2,"t":12,"outstandingDowntime":[false,false,true,true]}},{"ix":10,"action":{"kind":"Delegate","val":0,"amt":1149},"partialState":{"h":3,"t":18,"tokens":[9552,4000,3000,3371],"delegation":[8552,3000,2000,2371],"delegatorTokens":9999999994077}},{"ix":11,"action":{"kind":"ConsumerSlash","val":2,"infractionHeight":0,"isDowntime":true},"partialState":{"h":2,"t":12,"outstandingDowntime":[false,false,true,true]}},{"ix":12,"action":{"kind":"Delegate","val":0,"amt":4535},"partialState":{"h":3,"t":18,"tokens":[14087,4000,3000,3371],"delegation":[13087,3000,2000,2371],"delegatorTokens":9999999989542}},{"ix":13,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":3,"t":18,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,false,true,true]}},{"ix":14,"action":{"kind":"Deliver","chain":"provider","numPackets":3},"partialState":{"h":3,"t":18,"tokens":[14087,4000,3000,3371],"delegation":[13087,3000,2000,2371],"delegatorTokens":9999999989542,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":15,"action":{"kind":"Deliver","chain":"consumer","numPackets":6},"partialState":{"h":3,"t":18,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,false,true,true]}},{"ix":16,"action":{"kind":"Delegate","val":2,"amt":1763},"partialState":{"h":3,"t":18,"tokens":[14087,4000,4763,3371],"delegation":[13087,3000,3763,2371],"delegatorTokens":9999999987779}},{"ix":17,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":4,"t":24,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,false,true,true]}},{"ix":18,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":5,"t":30,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,false,true,true]}},{"ix":19,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":20,"action":{"kind":"Undelegate","val":2,"amt":4254},"partialState":{"h":3,"t":18,"tokens":[14087,4000,4763,3371],"delegation":[13087,3000,3763,2371],"delegatorTokens":9999999987779}},{"ix":21,"action":{"kind":"Deliver","chain":"consumer","numPackets":4},"partialState":{"h":5,"t":30,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,false,true,true]}},{"ix":22,"action":{"kind":"Deliver","chain":"provider","numPackets":6},"partialState":{"h":3,"t":18,"tokens":[14087,4000,4763,3371],"delegation":[13087,3000,3763,2371],"delegatorTokens":9999999987779,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":23,"action":{"kind":"Undelegate","val":0,"amt":4652},"partialState":{"h":3,"t":18,"tokens":[9435,4000,4763,3371],"delegation":[8435,3000,3763,2371],"delegatorTokens":9999999987779}},{"ix":24,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":4,"t":24,"tokens":[9435,4000,4763,3371],"delegation":[8435,3000,3763,2371],"delegatorTokens":9999999987779,"jailed":[null,null,1000000000000017,null],"status":["bonded","unbonding","bonded","unbonded"]}},{"ix":25,"action":{"kind":"ConsumerSlash","val":2,"infractionHeight":3,"isDowntime":true},"partialState":{"h":5,"t":30,"outstandingDowntime":[false,false,true,true]}},{"ix":26,"action":{"kind":"Undelegate","val":2,"amt":2707},"partialState":{"h":4,"t":24,"tokens":[9435,4000,2056,3371],"delegation":[8435,3000,1056,2371],"delegatorTokens":9999999987779}},{"ix":27,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":5,"t":30,"tokens":[9435,4000,2056,3371],"delegation":[8435,3000,1056,2371],"delegatorTokens":9999999987779,"jailed":[null,null,1000000000000017,null],"status":["bonded","bonded","unbonding","unbonded"]}},{"ix":28,"action":{"kind":"Delegate","val":1,"amt":1155},"partialState":{"h":5,"t":30,"tokens":[9435,5155,2056,3371],"delegation":[8435,4155,1056,2371],"delegatorTokens":9999999986624}},{"ix":29,"action":{"kind":"Undelegate","val":0,"amt":2008},"partialState":{"h":5,"t":30,"tokens":[7427,5155,2056,3371],"delegation":[6427,4155,1056,2371],"delegatorTokens":9999999986624}},{"ix":30,"action":{"kind":"Undelegate","val":2,"amt":2963},"partialState":{"h":5,"t":30,"tokens":[7427,5155,2056,3371],"delegation":[6427,4155,1056,2371],"delegatorTokens":9999999986624}},{"ix":31,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":6,"t":36,"tokens":[7427,5155,2056,3371],"delegation":[6427,4155,1056,2371],"delegatorTokens":9999999986624,"jailed":[null,null,1000000000000017,null],"status":["bonded","bonded","unbonding","unbonded"]}},{"ix":32,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":33,"action":{"kind":"Delegate","val":3,"amt":2385},"partialState":{"h":6,"t":36,"tokens":[7427,5155,2056,5756],"delegation":[6427,4155,1056,4756],"delegatorTokens":9999999984239}},{"ix":34,"action":{"kind":"Deliver","chain":"consumer","numPackets":1},"partialState":{"h":5,"t":30,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,false,true,true]}},{"ix":35,"action":{"kind":"Delegate","val":0,"amt":4076},"partialState":{"h":6,"t":36,"tokens":[11503,5155,2056,5756],"delegation":[10503,4155,1056,4756],"delegatorTokens":9999999980163}},{"ix":36,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":37,"action":{"kind":"Undelegate","val":1,"amt":3654},"partialState":{"h":6,"t":36,"tokens":[11503,1501,2056,5756],"delegation":[10503,501,1056,4756],"delegatorTokens":9999999980163}},{"ix":38,"action":{"kind":"Delegate","val":0,"amt":1861},"partialState":{"h":6,"t":36,"tokens":[13364,1501,2056,5756],"delegation":[12364,501,1056,4756],"delegatorTokens":9999999978302}},{"ix":39,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":6,"t":36,"consumerPower":[8403,4000,null,null],"outstandingDowntime":[false,false,true,true]}},{"ix":40,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":7,"t":42,"tokens":[13364,1501,2056,5756],"delegation":[12364,501,1056,4756],"delegatorTokens":9999999978302,"jailed":[null,null,1000000000000017,null],"status":["bonded","unbonding","unbonding","bonded"]}},{"ix":41,"action":{"kind":"Deliver","chain":"consumer","numPackets":2},"partialState":{"h":6,"t":36,"consumerPower":[8403,4000,null,null],"outstandingDowntime":[false,false,false,true]}},{"ix":42,"action":{"kind":"ConsumerSlash","val":2,"infractionHeight":2,"isDowntime":false},"partialState":{"h":6,"t":36,"outstandingDowntime":[false,false,false,true]}},{"ix":43,"action":{"kind":"ConsumerSlash","val":2,"infractionHeight":4,"isDowntime":false},"partialState":{"h":6,"t":36,"outstandingDowntime":[false,false,false,true]}},{"ix":44,"action":{"kind":"Undelegate","val":3,"amt":1545},"partialState":{"h":7,"t":42,"tokens":[13364,1501,2056,4211],"delegation":[12364,501,1056,3211],"delegatorTokens":9999999978302}},{"ix":45,"action":{"kind":"Delegate","val":0,"amt":4673},"partialState":{"h":7,"t":42,"tokens":[18037,1501,2056,4211],"delegation":[17037,501,1056,3211],"delegatorTokens":9999999973629}},{"ix":46,"action":{"kind":"Delegate","val":1,"amt":3726},"partialState":{"h":7,"t":42,"tokens":[18037,5227,2056,4211],"delegation":[17037,4227,1056,3211],"delegatorTokens":9999999969903}},{"ix":47,"action":{"kind":"Deliver","chain":"provider","numPackets":5},"partialState":{"h":7,"t":42,"tokens":[18037,5227,2056,4211],"delegation":[17037,4227,1056,3211],"delegatorTokens":9999999969903,"jailed":[null,null,1000000000000017,null],"status":["bonded","unbonding","unbonding","bonded"]}},{"ix":48,"action":{"kind":"Deliver","chain":"provider","numPackets":5},"partialState":{"h":7,"t":42,"tokens":[18037,5227,2056,4211],"delegation":[17037,4227,1056,3211],"delegatorTokens":9999999969903,"jailed":[null,null,1000000000000017,null],"status":["bonded","unbonding","unbonding","bonded"]}},{"ix":49,"action":{"kind":"Delegate","val":2,"amt":4078},"partialState":{"h":7,"t":42,"tokens":[18037,5227,6134,4211],"delegation":[17037,4227,5134,3211],"delegatorTokens":9999999965825}},{"ix":50,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":51,"action":{"kind":"Deliver","chain":"provider","numPackets":2},"partialState":{"h":7,"t":42,"tokens":[18037,5227,6134,4211],"delegation":[17037,4227,5134,3211],"delegatorTokens":9999999965825,"jailed":[null,null,1000000000000017,null],"status":["bonded","unbonding","unbonding","bonded"]}},{"ix":52,"action":{"kind":"Undelegate","val":2,"amt":3275},"partialState":{"h":7,"t":42,"tokens":[18037,5227,2859,4211],"delegation":[17037,4227,1859,3211],"delegatorTokens":9999999965825}},{"ix":53,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":54,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":7,"t":42,"consumerPower":[9435,4000,null,null],"outstandingDowntime":[false,false,false,true]}},{"ix":55,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":8,"t":48,"consumerPower":[9435,4000,null,null],"outstandingDowntime":[false,false,false,true]}},{"ix":56,"action":{"kind":"Undelegate","val":0,"amt":1522},"partialState":{"h":7,"t":42,"tokens":[16515,5227,2859,4211],"delegation":[15515,4227,1859,3211],"delegatorTokens":9999999965825}},{"ix":57,"action":{"kind":"Deliver","chain":"provider","numPackets":3},"partialState":{"h":7,"t":42,"tokens":[16515,5227,2859,4211],"delegation":[15515,4227,1859,3211],"delegatorTokens":9999999965825,"jailed":[null,null,1000000000000017,null],"status":["bonded","unbonding","unbonding","bonded"]}},{"ix":58,"action":{"kind":"Delegate","val":0,"amt":4170},"partialState":{"h":7,"t":42,"tokens":[20685,5227,2859,4211],"delegation":[19685,4227,1859,3211],"delegatorTokens":9999999961655}},{"ix":59,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":60,"action":{"kind":"Delegate","val":3,"amt":3693},"partialState":{"h":7,"t":42,"tokens":[20685,5227,2859,7904],"delegation":[19685,4227,1859,6904],"delegatorTokens":9999999957962}},{"ix":61,"action":{"kind":"Undelegate","val":1,"amt":2393},"partialState":{"h":7,"t":42,"tokens":[20685,2834,2859,7904],"delegation":[19685,1834,1859,6904],"delegatorTokens":9999999957962}},{"ix":62,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":63,"action":{"kind":"ConsumerSlash","val":1,"infractionHeight":2,"isDowntime":true},"partialState":{"h":8,"t":48,"outstandingDowntime":[false,true,false,true]}},{"ix":64,"action":{"kind":"Undelegate","val":2,"amt":1516},"partialState":{"h":7,"t":42,"tokens":[20685,2834,1343,7904],"delegation":[19685,1834,343,6904],"delegatorTokens":9999999957962}},{"ix":65,"action":{"kind":"Delegate","val":3,"amt":1406},"partialState":{"h":7,"t":42,"tokens":[20685,2834,1343,9310],"delegation":[19685,1834,343,8310],"delegatorTokens":9999999956556}},{"ix":66,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":8,"t":48,"tokens":[20685,2834,1343,9310],"delegation":[19685,1834,343,8310],"delegatorTokens":9999999956556,"jailed":[null,null,1000000000000017,null],"status":["bonded","unbonding","unbonding","bonded"]}},{"ix":67,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":68,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":69,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":9,"t":54,"tokens":[20685,2834,1343,9310],"delegation":[19685,1834,343,8310],"delegatorTokens":9999999956556,"jailed":[null,null,1000000000000017,null],"status":["bonded","unbonding","unbonding","bonded"]}},{"ix":70,"action":{"kind":"Delegate","val":0,"amt":2088},"partialState":{"h":9,"t":54,"tokens":[22773,2834,1343,9310],"delegation":[21773,1834,343,8310],"delegatorTokens":9999999954468}},{"ix":71,"action":{"kind":"Deliver","chain":"consumer","numPackets":1},"partialState":{"h":8,"t":48,"consumerPower":[9435,4000,null,null],"outstandingDowntime":[false,true,false,true]}},{"ix":72,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":10,"t":60,"tokens":[22773,2834,1343,9310],"delegation":[21773,1834,343,8310],"delegatorTokens":9999999954468,"jailed":[null,null,1000000000000017,null],"status":["bonded","unbonding","unbonding","bonded"]}},{"ix":73,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":74,"action":{"kind":"Deliver","chain":"consumer","numPackets":2},"partialState":{"h":8,"t":48,"consumerPower":[9435,4000,null,null],"outstandingDowntime":[false,true,false,true]}},{"ix":75,"action":{"kind":"Delegate","val":3,"amt":2324},"partialState":{"h":10,"t":60,"tokens":[22773,2834,1343,11634],"delegation":[21773,1834,343,10634],"delegatorTokens":9999999952144}},{"ix":76,"action":{"kind":"Deliver","chain":"provider","numPackets":4},"partialState":{"h":10,"t":60,"tokens":[22773,2834,1343,11634],"delegation":[21773,1834,343,10634],"delegatorTokens":9999999952144,"jailed":[null,null,1000000000000017,null],"status":["bonded","unbonding","unbonding","bonded"]}},{"ix":77,"action":{"kind":"Undelegate","val":2,"amt":4851},"partialState":{"h":10,"t":60,"tokens":[22773,2834,1343,11634],"delegation":[21773,1834,343,10634],"delegatorTokens":9999999952144}},{"ix":78,"action":{"kind":"Undelegate","val":2,"amt":1638},"partialState":{"h":10,"t":60,"tokens":[22773,2834,1343,11634],"delegation":[21773,1834,343,10634],"delegatorTokens":9999999952144}},{"ix":79,"action":{"kind":"Undelegate","val":2,"amt":2795},"partialState":{"h":10,"t":60,"tokens":[22773,2834,1343,11634],"delegation":[21773,1834,343,10634],"delegatorTokens":9999999952144}},{"ix":80,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":11,"t":66,"tokens":[22773,2834,1343,11634],"delegation":[21773,1834,343,10634],"delegatorTokens":9999999952144,"jailed":[null,null,1000000000000017,null],"status":["bonded","unbonding","unbonding","bonded"]}},{"ix":81,"action":{"kind":"Undelegate","val":2,"amt":2102},"partialState":{"h":11,"t":66,"tokens":[22773,2834,1343,11634],"delegation":[21773,1834,343,10634],"delegatorTokens":9999999952144}},{"ix":82,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":83,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":84,"action":{"kind":"Undelegate","val":0,"amt":3703},"partialState":{"h":11,"t":66,"tokens":[19070,2834,1343,11634],"delegation":[18070,1834,343,10634],"delegatorTokens":9999999952144}},{"ix":85,"action":{"kind":"Deliver","chain":"consumer","numPackets":5},"partialState":{"h":8,"t":48,"consumerPower":[9435,4000,null,null],"outstandingDowntime":[false,true,false,true]}},{"ix":86,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":87,"action":{"kind":"Delegate","val":3,"amt":3894},"partialState":{"h":11,"t":66,"tokens":[19070,2834,1343,15528],"delegation":[18070,1834,343,14528],"delegatorTokens":9999999948250}},{"ix":88,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":89,"action":{"kind":"Undelegate","val":2,"amt":2543},"partialState":{"h":11,"t":66,"tokens":[19070,2834,1343,15528],"delegation":[18070,1834,343,14528],"delegatorTokens":9999999948250}},{"ix":90,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":9,"t":54,"consumerPower":[22773,null,null,9310],"outstandingDowntime":[false,true,false,true]}},{"ix":91,"action":{"kind":"Deliver","chain":"consumer","numPackets":5},"partialState":{"h":9,"t":54,"consumerPower":[22773,null,null,9310],"outstandingDowntime":[false,true,false,true]}},{"ix":92,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":93,"action":{"kind":"Delegate","val":0,"amt":3683},"partialState":{"h":11,"t":66,"tokens":[22753,2834,1343,15528],"delegation":[21753,1834,343,14528],"delegatorTokens":9999999944567}},{"ix":94,"action":{"kind":"Delegate","val":1,"amt":3878},"partialState":{"h":11,"t":66,"tokens":[22753,6712,1343,15528],"delegation":[21753,5712,343,14528],"delegatorTokens":9999999940689}},{"ix":95,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":96,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":97,"action":{"kind":"Undelegate","val":3,"amt":4741},"partialState":{"h":11,"t":66,"tokens":[22753,6712,1343,10787],"delegation":[21753,5712,343,9787],"delegatorTokens":9999999940689}},{"ix":98,"action":{"kind":"Deliver","chain":"provider","numPackets":5},"partialState":{"h":11,"t":66,"tokens":[22753,6712,1343,10787],"delegation":[21753,5712,343,9787],"delegatorTokens":9999999940689,"jailed":[null,null,1000000000000017,null],"status":["bonded","unbonding","unbonding","bonded"]}},{"ix":99,"action":{"kind":"Deliver","chain":"provider","numPackets":2},"partialState":{"h":11,"t":66,"tokens":[22753,6712,1343,10787],"delegation":[21753,5712,343,9787],"delegatorTokens":9999999940689,"jailed":[null,null,1000000000000017,null],"status":["bonded","unbonding","unbonding","bonded"]}},{"ix":100,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":12,"t":72,"tokens":[22753,6712,1343,10787],"delegation":[21753,5712,343,9787],"delegatorTokens":9999999940689,"jailed":[null,null,1000000000000017,null],"status":["bonded","unbonding","unbonding","bonded"]}},{"ix":101,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":102,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":13,"t":78,"tokens":[22753,6712,1343,10787],"delegation":[21753,5712,343,9787],"delegatorTokens":9999999940689,"jailed":[null,null,1000000000000017,null],"status":["bonded","unbonding","unbonding","bonded"]}},{"ix":103,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":104,"action":{"kind":"Undelegate","val":1,"amt":4747},"partialState":{"h":13,"t":78,"tokens":[22753,1965,1343,10787],"delegation":[21753,965,343,9787],"delegatorTokens":9999999940689}},{"ix":105,"action":{"kind":"Undelegate","val":0,"amt":3580},"partialState":{"h":13,"t":78,"tokens":[19173,1965,1343,10787],"delegation":[18173,965,343,9787],"delegatorTokens":9999999940689}},{"ix":106,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":107,"action":{"kind":"Undelegate","val":1,"amt":2874},"partialState":{"h":13,"t":78,"tokens":[19173,1965,1343,10787],"delegation":[18173,965,343,9787],"delegatorTokens":9999999940689}},{"ix":108,"action":{"kind":"Undelegate","val":1,"amt":4748},"partialState":{"h":13,"t":78,"tokens":[19173,1965,1343,10787],"delegation":[18173,965,343,9787],"delegatorTokens":9999999940689}},{"ix":109,"action":{"kind":"Deliver","chain":"provider","numPackets":6},"partialState":{"h":13,"t":78,"tokens":[19173,1965,1343,10787],"delegation":[18173,965,343,9787],"delegatorTokens":9999999940689,"jailed":[null,null,1000000000000017,null],"status":["bonded","unbonding","unbonding","bonded"]}},{"ix":110,"action":{"kind":"Deliver","chain":"consumer","numPackets":2},"partialState":{"h":9,"t":54,"consumerPower":[22773,null,null,9310],"outstandingDowntime":[false,true,false,true]}},{"ix":111,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":112,"action":{"kind":"Deliver","chain":"consumer","numPackets":5},"partialState":{"h":9,"t":54,"consumerPower":[22773,null,null,9310],"outstandingDowntime":[false,true,false,true]}},{"ix":113,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":114,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":10,"t":60,"consumerPower":[22753,null,null,10787],"outstandingDowntime":[false,true,false,true]}},{"ix":115,"action":{"kind":"Delegate","val":1,"amt":4879},"partialState":{"h":13,"t":78,"tokens":[19173,6844,1343,10787],"delegation":[18173,5844,343,9787],"delegatorTokens":9999999935810}},{"ix":116,"action":{"kind":"Undelegate","val":0,"amt":3489},"partialState":{"h":13,"t":78,"tokens":[15684,6844,1343,10787],"delegation":[14684,5844,343,9787],"delegatorTokens":9999999935810}},{"ix":117,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":118,"action":{"kind":"Deliver","chain":"provider","numPackets":1},"partialState":{"h":13,"t":78,"tokens":[15684,6844,1343,10787],"delegation":[14684,5844,343,9787],"delegatorTokens":9999999935810,"jailed":[null,null,1000000000000017,null],"status":["bonded","unbonding","unbonding","bonded"]}},{"ix":119,"action":{"kind":"Undelegate","val":2,"amt":1909},"partialState":{"h":13,"t":78,"tokens":[15684,6844,1343,10787],"delegation":[14684,5844,343,9787],"delegatorTokens":9999999935810}},{"ix":120,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":11,"t":66,"consumerPower":[22753,null,null,10787],"outstandingDowntime":[false,true,false,true]}},{"ix":121,"action":{"kind":"Deliver","chain":"consumer","numPackets":1},"partialState":{"h":11,"t":66,"consumerPower":[22753,null,null,10787],"outstandingDowntime":[false,true,false,true]}},{"ix":122,"action":{"kind":"Delegate","val":1,"amt":3051},"partialState":{"h":13,"t":78,"tokens":[15684,9895,1343,10787],"delegation":[14684,8895,343,9787],"delegatorTokens":9999999932759}},{"ix":123,"action":{"kind":"Undelegate","val":1,"amt":4211},"partialState":{"h":13,"t":78,"tokens":[15684,5684,1343,10787],"delegation":[14684,4684,343,9787],"delegatorTokens":9999999932759}},{"ix":124,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":12,"t":72,"consumerPower":[22753,null,null,10787],"outstandingDowntime":[false,true,false,true]}},{"ix":125,"action":{"kind":"Delegate","val":3,"amt":3595},"partialState":{"h":13,"t":78,"tokens":[15684,5684,1343,14382],"delegation":[14684,4684,343,13382],"delegatorTokens":9999999929164}},{"ix":126,"action":{"kind":"Undelegate","val":2,"amt":3093},"partialState":{"h":13,"t":78,"tokens":[15684,5684,1343,14382],"delegation":[14684,4684,343,13382],"delegatorTokens":9999999929164}},{"ix":127,"action":{"kind":"Delegate","val":0,"amt":3932},"partialState":{"h":13,"t":78,"tokens":[19616,5684,1343,14382],"delegation":[18616,4684,343,13382],"delegatorTokens":9999999925232}},{"ix":128,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":13,"t":78,"consumerPower":[22753,null,null,10787],"outstandingDowntime":[false,true,false,true]}},{"ix":129,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":14,"t":84,"consumerPower":[22753,null,null,10787],"outstandingDowntime":[false,true,false,true]}},{"ix":130,"action":{"kind":"Delegate","val":2,"amt":2813},"partialState":{"h":13,"t":78,"tokens":[19616,5684,4156,14382],"delegation":[18616,4684,3156,13382],"delegatorTokens":9999999922419}},{"ix":131,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":132,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":14,"t":84,"tokens":[19616,5684,4156,14382],"delegation":[18616,4684,3156,13382],"delegatorTokens":9999999922419,"jailed":[null,1000000000000077,1000000000000017,null],"status":["bonded","unbonding","unbonding","bonded"]}},{"ix":133,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":15,"t":90,"consumerPower":[22753,null,null,10787],"outstandingDowntime":[false,true,false,true]}},{"ix":134,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":135,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":15,"t":90,"tokens":[19616,5684,4156,14382],"delegation":[18616,4684,3156,13382],"delegatorTokens":9999999922419,"jailed":[null,1000000000000077,1000000000000017,null],"status":["bonded","unbonding","unbonding","bonded"]}},{"ix":136,"action":{"kind":"Delegate","val":3,"amt":4615},"partialState":{"h":15,"t":90,"tokens":[19616,5684,4156,18997],"delegation":[18616,4684,3156,17997],"delegatorTokens":9999999917804}},{"ix":137,"action":{"kind":"Undelegate","val":3,"amt":2744},"partialState":{"h":15,"t":90,"tokens":[19616,5684,4156,16253],"delegation":[18616,4684,3156,15253],"delegatorTokens":9999999917804}},{"ix":138,"action":{"kind":"Undelegate","val":3,"amt":2943},"partialState":{"h":15,"t":90,"tokens":[19616,5684,4156,13310],"delegation":[18616,4684,3156,12310],"delegatorTokens":9999999917804}},{"ix":139,"action":{"kind":"Delegate","val":2,"amt":4307},"partialState":{"h":15,"t":90,"tokens":[19616,5684,8463,13310],"delegation":[18616,4684,7463,12310],"delegatorTokens":9999999913497}},{"ix":140,"action":{"kind":"Delegate","val":2,"amt":2831},"partialState":{"h":15,"t":90,"tokens":[19616,5684,11294,13310],"delegation":[18616,4684,10294,12310],"delegatorTokens":9999999910666}},{"ix":141,"action":{"kind":"Undelegate","val":2,"amt":4141},"partialState":{"h":15,"t":90,"tokens":[19616,5684,7153,13310],"delegation":[18616,4684,6153,12310],"delegatorTokens":9999999910666}},{"ix":142,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":143,"action":{"kind":"Deliver","chain":"provider","numPackets":5},"partialState":{"h":15,"t":90,"tokens":[19616,5684,7153,13310],"delegation":[18616,4684,6153,12310],"delegatorTokens":9999999910666,"jailed":[null,1000000000000077,1000000000000017,null],"status":["bonded","unbonding","unbonding","bonded"]}},{"ix":144,"action":{"kind":"Deliver","chain":"provider","numPackets":6},"partialState":{"h":15,"t":90,"tokens":[19616,5684,7153,13310],"delegation":[18616,4684,6153,12310],"delegatorTokens":9999999910666,"jailed":[null,1000000000000077,1000000000000017,null],"status":["bonded","unbonding","unbonding","bonded"]}},{"ix":145,"action":{"kind":"Delegate","val":2,"amt":2164},"partialState":{"h":15,"t":90,"tokens":[19616,5684,9317,13310],"delegation":[18616,4684,8317,12310],"delegatorTokens":9999999908502}},{"ix":146,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":16,"t":96,"consumerPower":[22753,null,null,10787],"outstandingDowntime":[false,true,false,true]}},{"ix":147,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":16,"t":96,"tokens":[19616,5684,9317,13310],"delegation":[18616,4684,8317,12310],"delegatorTokens":9999999908502,"jailed":[null,1000000000000077,1000000000000017,null],"status":["bonded","unbonding","unbonding","bonded"]}},{"ix":148,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":149,"action":{"kind":"Undelegate","val":2,"amt":1840},"partialState":{"h":16,"t":96,"tokens":[19616,5684,7477,13310],"delegation":[18616,4684,6477,12310],"delegatorTokens":9999999908502}},{"ix":150,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":17,"t":102,"tokens":[19616,5684,7477,13310],"delegation":[18616,4684,6477,12310],"delegatorTokens":9999999908502,"jailed":[null,1000000000000077,1000000000000017,null],"status":["bonded","unbonding","unbonding","bonded"]}},{"ix":151,"action":{"kind":"Undelegate","val":3,"amt":1910},"partialState":{"h":17,"t":102,"tokens":[19616,5684,7477,11400],"delegation":[18616,4684,6477,10400],"delegatorTokens":9999999908502}},{"ix":152,"action":{"kind":"Undelegate","val":2,"amt":2189},"partialState":{"h":17,"t":102,"tokens":[19616,5684,5288,11400],"delegation":[18616,4684,4288,10400],"delegatorTokens":9999999908502}},{"ix":153,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":17,"t":102,"consumerPower":[22753,null,null,10787],"outstandingDowntime":[false,true,false,true]}},{"ix":154,"action":{"kind":"Undelegate","val":3,"amt":2000},"partialState":{"h":17,"t":102,"tokens":[19616,5684,5288,9400],"delegation":[18616,4684,4288,8400],"delegatorTokens":9999999908502}},{"ix":155,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":156,"action":{"kind":"Undelegate","val":0,"amt":1718},"partialState":{"h":17,"t":102,"tokens":[17898,5684,5288,9400],"delegation":[16898,4684,4288,8400],"delegatorTokens":9999999908502}},{"ix":157,"action":{"kind":"Undelegate","val":0,"amt":2163},"partialState":{"h":17,"t":102,"tokens":[15735,5684,5288,9400],"delegation":[14735,4684,4288,8400],"delegatorTokens":9999999908502}},{"ix":158,"action":{"kind":"Deliver","chain":"provider","numPackets":6},"partialState":{"h":17,"t":102,"tokens":[15735,5684,5288,9400],"delegation":[14735,4684,4288,8400],"delegatorTokens":9999999908502,"jailed":[null,1000000000000077,1000000000000017,null],"status":["bonded","unbonding","unbonding","bonded"]}},{"ix":159,"action":{"kind":"Deliver","chain":"provider","numPackets":2},"partialState":{"h":17,"t":102,"tokens":[15735,5684,5288,9400],"delegation":[14735,4684,4288,8400],"delegatorTokens":9999999908502,"jailed":[null,1000000000000077,1000000000000017,null],"status":["bonded","unbonding","unbonding","bonded"]}},{"ix":160,"action":{"kind":"Delegate","val":3,"amt":3035},"partialState":{"h":17,"t":102,"tokens":[15735,5684,5288,12435],"delegation":[14735,4684,4288,11435],"delegatorTokens":9999999905467}},{"ix":161,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":162,"action":{"kind":"Delegate","val":0,"amt":2869},"partialState":{"h":17,"t":102,"tokens":[18604,5684,5288,12435],"delegation":[17604,4684,4288,11435],"delegatorTokens":9999999902598}},{"ix":163,"action":{"kind":"Undelegate","val":3,"amt":3709},"partialState":{"h":17,"t":102,"tokens":[18604,5684,5288,8726],"delegation":[17604,4684,4288,7726],"delegatorTokens":9999999902598}},{"ix":164,"action":{"kind":"Delegate","val":3,"amt":2452},"partialState":{"h":17,"t":102,"tokens":[18604,5684,5288,11178],"delegation":[17604,4684,4288,10178],"delegatorTokens":9999999900146}},{"ix":165,"action":{"kind":"Undelegate","val":3,"amt":3874},"partialState":{"h":17,"t":102,"tokens":[18604,5684,5288,7304],"delegation":[17604,4684,4288,6304],"delegatorTokens":9999999900146}},{"ix":166,"action":{"kind":"Undelegate","val":1,"amt":1471},"partialState":{"h":17,"t":102,"tokens":[18604,4213,5288,7304],"delegation":[17604,3213,4288,6304],"delegatorTokens":9999999900146}},{"ix":167,"action":{"kind":"Deliver","chain":"provider","numPackets":3},"partialState":{"h":17,"t":102,"tokens":[18604,4213,5288,7304],"delegation":[17604,3213,4288,6304],"delegatorTokens":9999999900146,"jailed":[null,1000000000000077,1000000000000017,null],"status":["bonded","unbonding","unbonding","bonded"]}},{"ix":168,"action":{"kind":"Delegate","val":1,"amt":1331},"partialState":{"h":17,"t":102,"tokens":[18604,5544,5288,7304],"delegation":[17604,4544,4288,6304],"delegatorTokens":9999999898815}},{"ix":169,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":170,"action":{"kind":"Undelegate","val":3,"amt":2268},"partialState":{"h":17,"t":102,"tokens":[18604,5544,5288,5036],"delegation":[17604,4544,4288,4036],"delegatorTokens":9999999898815}},{"ix":171,"action":{"kind":"Undelegate","val":3,"amt":1032},"partialState":{"h":17,"t":102,"tokens":[18604,5544,5288,4004],"delegation":[17604,4544,4288,3004],"delegatorTokens":9999999898815}},{"ix":172,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":18,"t":108,"consumerPower":[22753,null,null,10787],"outstandingDowntime":[false,true,false,true]}},{"ix":173,"action":{"kind":"Delegate","val":1,"amt":1301},"partialState":{"h":17,"t":102,"tokens":[18604,6845,5288,4004],"delegation":[17604,5845,4288,3004],"delegatorTokens":9999999897514}},{"ix":174,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":18,"t":108,"tokens":[18604,6845,5288,4004],"delegation":[17604,5845,4288,3004],"delegatorTokens":9999999904873,"jailed":[null,1000000000000077,1000000000000017,null],"status":["bonded","unbonding","unbonding","bonded"]}},{"ix":175,"action":{"kind":"Undelegate","val":2,"amt":4785},"partialState":{"h":18,"t":108,"tokens":[18604,6845,5288,4004],"delegation":[17604,5845,4288,3004],"delegatorTokens":9999999904873}},{"ix":176,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":177,"action":{"kind":"Deliver","chain":"provider","numPackets":2},"partialState":{"h":18,"t":108,"tokens":[18604,6845,5288,4004],"delegation":[17604,5845,4288,3004],"delegatorTokens":9999999904873,"jailed":[null,1000000000000077,1000000000000017,null],"status":["bonded","unbonding","unbonding","bonded"]}},{"ix":178,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":19,"t":114,"tokens":[18604,6845,5288,4004],"delegation":[17604,5845,4288,3004],"delegatorTokens":9999999904873,"jailed":[null,1000000000000077,1000000000000017,null],"status":["bonded","unbonding","unbonded","bonded"]}},{"ix":179,"action":{"kind":"Deliver","chain":"provider","numPackets":6},"partialState":{"h":19,"t":114,"tokens":[18604,6845,5288,4004],"delegation":[17604,5845,4288,3004],"delegatorTokens":9999999904873,"jailed":[null,1000000000000077,1000000000000017,null],"status":["bonded","unbonding","unbonded","bonded"]}},{"ix":180,"action":{"kind":"Deliver","chain":"provider","numPackets":2},"partialState":{"h":19,"t":114,"tokens":[18604,6845,5288,4004],"delegation":[17604,5845,4288,3004],"delegatorTokens":9999999904873,"jailed":[null,1000000000000077,1000000000000017,null],"status":["bonded","unbonding","unbonded","bonded"]}},{"ix":181,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":19,"t":114,"consumerPower":[22753,null,null,10787],"outstandingDowntime":[false,true,false,true]}},{"ix":182,"action":{"kind":"Undelegate","val":3,"amt":2808},"partialState":{"h":19,"t":114,"tokens":[18604,6845,5288,1196],"delegation":[17604,5845,4288,196],"delegatorTokens":9999999904873}},{"ix":183,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":184,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":20,"t":120,"tokens":[18604,6845,5288,1196],"delegation":[17604,5845,4288,196],"delegatorTokens":9999999904873,"jailed":[null,1000000000000077,1000000000000017,null],"status":["bonded","unbonding","unbonded","bonded"]}},{"ix":185,"action":{"kind":"Deliver","chain":"consumer","numPackets":6},"partialState":{"h":19,"t":114,"consumerPower":[22753,null,null,10787],"outstandingDowntime":[false,false,false,true]}},{"ix":186,"action":{"kind":"Undelegate","val":1,"amt":1655},"partialState":{"h":20,"t":120,"tokens":[18604,5190,5288,1196],"delegation":[17604,4190,4288,196],"delegatorTokens":9999999904873}},{"ix":187,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":20,"t":120,"consumerPower":[18604,null,null,4004],"outstandingDowntime":[false,false,false,true]}},{"ix":188,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":21,"t":126,"tokens":[18604,5190,5288,1196],"delegation":[17604,4190,4288,196],"delegatorTokens":9999999904873,"jailed":[null,1000000000000077,1000000000000017,null],"status":["bonded","unbonding","unbonded","bonded"]}},{"ix":189,"action":{"kind":"Deliver","chain":"provider","numPackets":6},"partialState":{"h":21,"t":126,"tokens":[18604,5190,5288,1196],"delegation":[17604,4190,4288,196],"delegatorTokens":9999999904873,"jailed":[null,1000000000000077,1000000000000017,null],"status":["bonded","unbonding","unbonded","bonded"]}},{"ix":190,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":191,"action":{"kind":"Undelegate","val":2,"amt":2013},"partialState":{"h":21,"t":126,"tokens":[18604,5190,3275,1196],"delegation":[17604,4190,2275,196],"delegatorTokens":9999999904873}},{"ix":192,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":193,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":22,"t":132,"tokens":[18604,5190,3275,1196],"delegation":[17604,4190,2275,196],"delegatorTokens":9999999920786,"jailed":[null,1000000000000077,1000000000000017,null],"status":["bonded","unbonding","unbonded","bonded"]}},{"ix":194,"action":{"kind":"Undelegate","val":2,"amt":1420},"partialState":{"h":22,"t":132,"tokens":[18604,5190,1855,1196],"delegation":[17604,4190,855,196],"delegatorTokens":9999999920786}},{"ix":195,"action":{"kind":"Deliver","chain":"consumer","numPackets":5},"partialState":{"h":20,"t":120,"consumerPower":[18604,null,null,4004],"outstandingDowntime":[false,false,false,true]}},{"ix":196,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":23,"t":138,"tokens":[18604,5190,1855,1196],"delegation":[17604,4190,855,196],"delegatorTokens":9999999920786,"jailed":[null,1000000000000077,1000000000000017,null],"status":["bonded","unbonded","unbonded","bonded"]}},{"ix":197,"action":{"kind":"Undelegate","val":0,"amt":4088},"partialState":{"h":23,"t":138,"tokens":[14516,5190,1855,1196],"delegation":[13516,4190,855,196],"delegatorTokens":9999999920786}},{"ix":198,"action":{"kind":"Delegate","val":0,"amt":2522},"partialState":{"h":23,"t":138,"tokens":[17038,5190,1855,1196],"delegation":[16038,4190,855,196],"delegatorTokens":9999999918264}},{"ix":199,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":21,"t":126,"consumerPower":[18604,null,null,1196],"outstandingDowntime":[false,false,false,true]}}],"events":["send_downtime_slash_request","insufficient_shares","downtime_slash_request_outstanding","send_vsc_without_downtime_ack","send_downtime_slash_request","downtime_slash_request_outstanding","insufficient_shares","more_than_one_third_val_power_change","receive_slash_request_unbonded","receive_downtime_slash_request","jail","send_vsc_with_downtime_ack","downtime_slash_request_outstanding","rebond_unval","send_vsc_without_downtime_ack","insufficient_shares","send_vsc_without_downtime_ack","consumer_update_val","send_vsc_without_downtime_ack","receive_downtime_slash_ack","send_double_sign_slash_request","send_double_sign_slash_request","consumer_update_val","consumer_update_val","consumer_del_val","receive_double_sign_slash_request","receive_double_sign_slash_request","send_downtime_slash_request","send_vsc_without_downtime_ack","send_vsc_without_downtime_ack","insufficient_shares","insufficient_shares","insufficient_shares","send_vsc_without_downtime_ack","insufficient_shares","insufficient_shares","consumer_update_val","consumer_del_val","consumer_add_val","send_vsc_without_downtime_ack","insufficient_shares","insufficient_shares","consumer_update_val","consumer_update_val","insufficient_shares","insufficient_shares","receive_downtime_slash_request","jail","send_vsc_with_downtime_ack","consumer_send_maturation","consumer_send_maturation","consumer_send_maturation","some_undels_expired_but_not_completed","send_vsc_without_downtime_ack","some_undels_expired_but_not_completed","send_vsc_not_because_change","send_vsc_without_downtime_ack","consumer_send_maturation","consumer_send_maturation","consumer_send_maturation","consumer_send_maturation","some_undels_expired_but_not_completed","complete_undel_immediate","complete_undel_immediate","set_unval_hold_false","send_vsc_without_downtime_ack","insufficient_shares","complete_unval_in_endblock","some_undels_expired_but_not_completed","consumer_send_maturation","consumer_send_maturation","some_undels_expired_but_not_completed","send_vsc_without_downtime_ack","receive_downtime_slash_ack","consumer_update_val","consumer_update_val","send_vsc_not_because_change","send_vsc_without_downtime_ack","complete_undel_immediate","complete_undel_immediate","set_unval_hold_false","complete_undel_immediate","complete_undel_immediate","complete_undel_immediate","complete_undel_immediate","complete_undel_immediate","set_undel_hold_false","set_undel_hold_false","send_vsc_not_because_change","send_vsc_without_downtime_ack","complete_unval_in_endblock","send_vsc_not_because_change","send_vsc_without_downtime_ack","consumer_update_val"]},{"meta":{"commit":"7ffd0c04e4205cbc9caf212abfe6c59ee43153bf"},"constants":{"P":"provider","C":"consumer","UNBONDING_SECONDS_P":70,"UNBONDING_SECONDS_C":50,"TRUSTING_SECONDS":49,"NUM_VALIDATORS":4,"MAX_VALIDATORS":2,"SLASH_DOUBLESIGN":0,"SLASH_DOWNTIME":0,"JAIL_SECONDS":999999999999999,"BLOCK_SECONDS":6,"INITIAL_DELEGATOR_TOKENS":10000000000000,"DELEGATE_AMT_MIN":1000,"DELEGATE_AMT_MAX":5000,"UNDELEGATE_AMT_MIN":1000,"UNDELEGATE_AMT_MAX":5000,"ISDOWNTIME_PROBABILITY":0.5,"MAX_NUM_PACKETS_FOR_DELIVER":6},"actions":[{"ix":0,"action":{"kind":"Deliver","chain":"provider","numPackets":1},"partialState":{"h":1,"t":6,"tokens":[5000,4000,3000,2000],"delegation":[4000,3000,2000,1000],"delegatorTokens":10000000000000,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":1,"action":{"kind":"ConsumerSlash","val":3,"infractionHeight":0,"isDowntime":true},"partialState":{"h":1,"t":6,"outstandingDowntime":[false,false,false,true]}},{"ix":2,"action":{"kind":"ConsumerSlash","val":2,"infractionHeight":0,"isDowntime":true},"partialState":{"h":1,"t":6,"outstandingDowntime":[false,false,true,true]}},{"ix":3,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":2,"t":12,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,false,true,true]}},{"ix":4,"action":{"kind":"ConsumerSlash","val":1,"infractionHeight":0,"isDowntime":true},"partialState":{"h":2,"t":12,"outstandingDowntime":[false,true,true,true]}},{"ix":5,"action":{"kind":"Delegate","val":1,"amt":1912},"partialState":{"h":1,"t":6,"tokens":[5000,5912,3000,2000],"delegation":[4000,4912,2000,1000],"delegatorTokens":9999999998088}},{"ix":6,"action":{"kind":"Delegate","val":0,"amt":1864},"partialState":{"h":1,"t":6,"tokens":[6864,5912,3000,2000],"delegation":[5864,4912,2000,1000],"delegatorTokens":9999999996224}},{"ix":7,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":3,"t":18,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,true,true,true]}},{"ix":8,"action":{"kind":"Delegate","val":0,"amt":4767},"partialState":{"h":1,"t":6,"tokens":[11631,5912,3000,2000],"delegation":[10631,4912,2000,1000],"delegatorTokens":9999999991457}},{"ix":9,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":10,"action":{"kind":"Delegate","val":2,"amt":3226},"partialState":{"h":1,"t":6,"tokens":[11631,5912,6226,2000],"delegation":[10631,4912,5226,1000],"delegatorTokens":9999999988231}},{"ix":11,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":12,"action":{"kind":"Undelegate","val":2,"amt":1497},"partialState":{"h":1,"t":6,"tokens":[11631,5912,4729,2000],"delegation":[10631,4912,3729,1000],"delegatorTokens":9999999988231}},{"ix":13,"action":{"kind":"Deliver","chain":"provider","numPackets":3},"partialState":{"h":1,"t":6,"tokens":[11631,5912,4729,2000],"delegation":[10631,4912,3729,1000],"delegatorTokens":9999999988231,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":14,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":2,"t":12,"tokens":[11631,5912,4729,2000],"delegation":[10631,4912,3729,1000],"delegatorTokens":9999999988231,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":15,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":16,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":17,"action":{"kind":"Undelegate","val":1,"amt":2783},"partialState":{"h":2,"t":12,"tokens":[11631,3129,4729,2000],"delegation":[10631,2129,3729,1000],"delegatorTokens":9999999988231}},{"ix":18,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":19,"action":{"kind":"Deliver","chain":"provider","numPackets":4},"partialState":{"h":2,"t":12,"tokens":[11631,3129,4729,2000],"delegation":[10631,2129,3729,1000],"delegatorTokens":9999999988231,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":20,"action":{"kind":"Delegate","val":0,"amt":4231},"partialState":{"h":2,"t":12,"tokens":[15862,3129,4729,2000],"delegation":[14862,2129,3729,1000],"delegatorTokens":9999999984000}},{"ix":21,"action":{"kind":"Undelegate","val":3,"amt":2627},"partialState":{"h":2,"t":12,"tokens":[15862,3129,4729,2000],"delegation":[14862,2129,3729,1000],"delegatorTokens":9999999984000}},{"ix":22,"action":{"kind":"Deliver","chain":"provider","numPackets":4},"partialState":{"h":2,"t":12,"tokens":[15862,3129,4729,2000],"delegation":[14862,2129,3729,1000],"delegatorTokens":9999999984000,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":23,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":3,"t":18,"tokens":[15862,3129,4729,2000],"delegation":[14862,2129,3729,1000],"delegatorTokens":9999999984000,"jailed":[null,null,null,null],"status":["bonded","unbonding","bonded","unbonded"]}},{"ix":24,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":25,"action":{"kind":"Deliver","chain":"consumer","numPackets":6},"partialState":{"h":3,"t":18,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,true,true,true]}},{"ix":26,"action":{"kind":"Delegate","val":1,"amt":4786},"partialState":{"h":3,"t":18,"tokens":[15862,7915,4729,2000],"delegation":[14862,6915,3729,1000],"delegatorTokens":9999999979214}},{"ix":27,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":4,"t":24,"tokens":[15862,7915,4729,2000],"delegation":[14862,6915,3729,1000],"delegatorTokens":9999999979214,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonding","unbonded"]}},{"ix":28,"action":{"kind":"Undelegate","val":0,"amt":3996},"partialState":{"h":4,"t":24,"tokens":[11866,7915,4729,2000],"delegation":[10866,6915,3729,1000],"delegatorTokens":9999999979214}},{"ix":29,"action":{"kind":"Delegate","val":3,"amt":1542},"partialState":{"h":4,"t":24,"tokens":[11866,7915,4729,3542],"delegation":[10866,6915,3729,2542],"delegatorTokens":9999999977672}},{"ix":30,"action":{"kind":"Undelegate","val":3,"amt":4027},"partialState":{"h":4,"t":24,"tokens":[11866,7915,4729,3542],"delegation":[10866,6915,3729,2542],"delegatorTokens":9999999977672}},{"ix":31,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":32,"action":{"kind":"Deliver","chain":"consumer","numPackets":2},"partialState":{"h":3,"t":18,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,true,true,true]}},{"ix":33,"action":{"kind":"Delegate","val":1,"amt":2947},"partialState":{"h":4,"t":24,"tokens":[11866,10862,4729,3542],"delegation":[10866,9862,3729,2542],"delegatorTokens":9999999974725}},{"ix":34,"action":{"kind":"Undelegate","val":0,"amt":2569},"partialState":{"h":4,"t":24,"tokens":[9297,10862,4729,3542],"delegation":[8297,9862,3729,2542],"delegatorTokens":9999999974725}},{"ix":35,"action":{"kind":"Undelegate","val":0,"amt":4919},"partialState":{"h":4,"t":24,"tokens":[4378,10862,4729,3542],"delegation":[3378,9862,3729,2542],"delegatorTokens":9999999974725}},{"ix":36,"action":{"kind":"Delegate","val":3,"amt":2549},"partialState":{"h":4,"t":24,"tokens":[4378,10862,4729,6091],"delegation":[3378,9862,3729,5091],"delegatorTokens":9999999972176}},{"ix":37,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":38,"action":{"kind":"Delegate","val":2,"amt":3862},"partialState":{"h":4,"t":24,"tokens":[4378,10862,8591,6091],"delegation":[3378,9862,7591,5091],"delegatorTokens":9999999968314}},{"ix":39,"action":{"kind":"Deliver","chain":"provider","numPackets":4},"partialState":{"h":4,"t":24,"tokens":[4378,10862,8591,6091],"delegation":[3378,9862,7591,5091],"delegatorTokens":9999999968314,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonding","unbonded"]}},{"ix":40,"action":{"kind":"Delegate","val":1,"amt":1872},"partialState":{"h":4,"t":24,"tokens":[4378,12734,8591,6091],"delegation":[3378,11734,7591,5091],"delegatorTokens":9999999966442}},{"ix":41,"action":{"kind":"Delegate","val":2,"amt":4105},"partialState":{"h":4,"t":24,"tokens":[4378,12734,12696,6091],"delegation":[3378,11734,11696,5091],"delegatorTokens":9999999962337}},{"ix":42,"action":{"kind":"Delegate","val":0,"amt":2065},"partialState":{"h":4,"t":24,"tokens":[6443,12734,12696,6091],"delegation":[5443,11734,11696,5091],"delegatorTokens":9999999960272}},{"ix":43,"action":{"kind":"Delegate","val":2,"amt":2976},"partialState":{"h":4,"t":24,"tokens":[6443,12734,15672,6091],"delegation":[5443,11734,14672,5091],"delegatorTokens":9999999957296}},{"ix":44,"action":{"kind":"Delegate","val":2,"amt":3697},"partialState":{"h":4,"t":24,"tokens":[6443,12734,19369,6091],"delegation":[5443,11734,18369,5091],"delegatorTokens":9999999953599}},{"ix":45,"action":{"kind":"Undelegate","val":1,"amt":1497},"partialState":{"h":4,"t":24,"tokens":[6443,11237,19369,6091],"delegation":[5443,10237,18369,5091],"delegatorTokens":9999999953599}},{"ix":46,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":47,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":5,"t":30,"tokens":[6443,11237,19369,6091],"delegation":[5443,10237,18369,5091],"delegatorTokens":9999999953599,"jailed":[null,null,null,null],"status":["unbonding","bonded","bonded","unbonded"]}},{"ix":48,"action":{"kind":"Undelegate","val":0,"amt":2744},"partialState":{"h":5,"t":30,"tokens":[3699,11237,19369,6091],"delegation":[2699,10237,18369,5091],"delegatorTokens":9999999953599}},{"ix":49,"action":{"kind":"Delegate","val":0,"amt":3158},"partialState":{"h":5,"t":30,"tokens":[6857,11237,19369,6091],"delegation":[5857,10237,18369,5091],"delegatorTokens":9999999950441}},{"ix":50,"action":{"kind":"Delegate","val":3,"amt":4293},"partialState":{"h":5,"t":30,"tokens":[6857,11237,19369,10384],"delegation":[5857,10237,18369,9384],"delegatorTokens":9999999946148}},{"ix":51,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":4,"t":24,"consumerPower":[15862,null,4729,null],"outstandingDowntime":[false,true,true,true]}},{"ix":52,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":53,"action":{"kind":"Delegate","val":1,"amt":1436},"partialState":{"h":5,"t":30,"tokens":[6857,12673,19369,10384],"delegation":[5857,11673,18369,9384],"delegatorTokens":9999999944712}},{"ix":54,"action":{"kind":"Deliver","chain":"provider","numPackets":1},"partialState":{"h":5,"t":30,"tokens":[6857,12673,19369,10384],"delegation":[5857,11673,18369,9384],"delegatorTokens":9999999944712,"jailed":[null,null,null,null],"status":["unbonding","bonded","bonded","unbonded"]}},{"ix":55,"action":{"kind":"Delegate","val":0,"amt":1229},"partialState":{"h":5,"t":30,"tokens":[8086,12673,19369,10384],"delegation":[7086,11673,18369,9384],"delegatorTokens":9999999943483}},{"ix":56,"action":{"kind":"Delegate","val":1,"amt":4193},"partialState":{"h":5,"t":30,"tokens":[8086,16866,19369,10384],"delegation":[7086,15866,18369,9384],"delegatorTokens":9999999939290}},{"ix":57,"action":{"kind":"Delegate","val":3,"amt":2499},"partialState":{"h":5,"t":30,"tokens":[8086,16866,19369,12883],"delegation":[7086,15866,18369,11883],"delegatorTokens":9999999936791}},{"ix":58,"action":{"kind":"Delegate","val":0,"amt":3847},"partialState":{"h":5,"t":30,"tokens":[11933,16866,19369,12883],"delegation":[10933,15866,18369,11883],"delegatorTokens":9999999932944}},{"ix":59,"action":{"kind":"Undelegate","val":1,"amt":2584},"partialState":{"h":5,"t":30,"tokens":[11933,14282,19369,12883],"delegation":[10933,13282,18369,11883],"delegatorTokens":9999999932944}},{"ix":60,"action":{"kind":"Undelegate","val":0,"amt":1322},"partialState":{"h":5,"t":30,"tokens":[10611,14282,19369,12883],"delegation":[9611,13282,18369,11883],"delegatorTokens":9999999932944}},{"ix":61,"action":{"kind":"Deliver","chain":"provider","numPackets":5},"partialState":{"h":5,"t":30,"tokens":[10611,14282,19369,12883],"delegation":[9611,13282,18369,11883],"delegatorTokens":9999999932944,"jailed":[null,null,null,null],"status":["unbonding","bonded","bonded","unbonded"]}},{"ix":62,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":63,"action":{"kind":"Undelegate","val":1,"amt":2756},"partialState":{"h":5,"t":30,"tokens":[10611,11526,19369,12883],"delegation":[9611,10526,18369,11883],"delegatorTokens":9999999932944}},{"ix":64,"action":{"kind":"Deliver","chain":"provider","numPackets":3},"partialState":{"h":5,"t":30,"tokens":[10611,11526,19369,12883],"delegation":[9611,10526,18369,11883],"delegatorTokens":9999999932944,"jailed":[null,null,null,null],"status":["unbonding","bonded","bonded","unbonded"]}},{"ix":65,"action":{"kind":"Undelegate","val":1,"amt":4676},"partialState":{"h":5,"t":30,"tokens":[10611,6850,19369,12883],"delegation":[9611,5850,18369,11883],"delegatorTokens":9999999932944}},{"ix":66,"action":{"kind":"Undelegate","val":3,"amt":3442},"partialState":{"h":5,"t":30,"tokens":[10611,6850,19369,9441],"delegation":[9611,5850,18369,8441],"delegatorTokens":9999999932944}},{"ix":67,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":6,"t":36,"tokens":[10611,6850,19369,9441],"delegation":[9611,5850,18369,8441],"delegatorTokens":9999999932944,"jailed":[null,1000000000000029,null,null],"status":["bonded","unbonding","bonded","unbonded"]}},{"ix":68,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":69,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":70,"action":{"kind":"Delegate","val":2,"amt":3595},"partialState":{"h":6,"t":36,"tokens":[10611,6850,22964,9441],"delegation":[9611,5850,21964,8441],"delegatorTokens":9999999929349}},{"ix":71,"action":{"kind":"Deliver","chain":"provider","numPackets":5},"partialState":{"h":6,"t":36,"tokens":[10611,6850,22964,9441],"delegation":[9611,5850,21964,8441],"delegatorTokens":9999999929349,"jailed":[null,1000000000000029,null,null],"status":["bonded","unbonding","bonded","unbonded"]}},{"ix":72,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":7,"t":42,"tokens":[10611,6850,22964,9441],"delegation":[9611,5850,21964,8441],"delegatorTokens":9999999929349,"jailed":[null,1000000000000029,null,null],"status":["bonded","unbonding","bonded","unbonded"]}},{"ix":73,"action":{"kind":"Undelegate","val":0,"amt":3648},"partialState":{"h":7,"t":42,"tokens":[6963,6850,22964,9441],"delegation":[5963,5850,21964,8441],"delegatorTokens":9999999929349}},{"ix":74,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":5,"t":30,"consumerPower":[15862,null,4729,null],"outstandingDowntime":[false,true,true,true]}},{"ix":75,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":76,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":6,"t":36,"consumerPower":[15862,null,4729,null],"outstandingDowntime":[false,true,true,true]}},{"ix":77,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":78,"action":{"kind":"Delegate","val":0,"amt":2269},"partialState":{"h":7,"t":42,"tokens":[9232,6850,22964,9441],"delegation":[8232,5850,21964,8441],"delegatorTokens":9999999927080}},{"ix":79,"action":{"kind":"Deliver","chain":"consumer","numPackets":5},"partialState":{"h":6,"t":36,"consumerPower":[15862,null,4729,null],"outstandingDowntime":[false,false,true,true]}},{"ix":80,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":8,"t":48,"tokens":[9232,6850,22964,9441],"delegation":[8232,5850,21964,8441],"delegatorTokens":9999999927080,"jailed":[null,1000000000000029,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":81,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":82,"action":{"kind":"Deliver","chain":"consumer","numPackets":6},"partialState":{"h":6,"t":36,"consumerPower":[15862,null,4729,null],"outstandingDowntime":[false,false,true,true]}},{"ix":83,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":84,"action":{"kind":"Undelegate","val":1,"amt":3597},"partialState":{"h":8,"t":48,"tokens":[9232,3253,22964,9441],"delegation":[8232,2253,21964,8441],"delegatorTokens":9999999927080}},{"ix":85,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":7,"t":42,"consumerPower":[10611,null,22964,null],"outstandingDowntime":[false,false,true,true]}},{"ix":86,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":8,"t":48,"consumerPower":[10611,null,22964,null],"outstandingDowntime":[false,false,true,true]}},{"ix":87,"action":{"kind":"Undelegate","val":0,"amt":3240},"partialState":{"h":8,"t":48,"tokens":[5992,3253,22964,9441],"delegation":[4992,2253,21964,8441],"delegatorTokens":9999999927080}},{"ix":88,"action":{"kind":"Deliver","chain":"provider","numPackets":4},"partialState":{"h":8,"t":48,"tokens":[5992,3253,22964,9441],"delegation":[4992,2253,21964,8441],"delegatorTokens":9999999927080,"jailed":[null,1000000000000029,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":89,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":9,"t":54,"consumerPower":[10611,null,22964,null],"outstandingDowntime":[false,false,true,true]}},{"ix":90,"action":{"kind":"Deliver","chain":"consumer","numPackets":1},"partialState":{"h":9,"t":54,"consumerPower":[10611,null,22964,null],"outstandingDowntime":[false,false,true,true]}},{"ix":91,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":92,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":93,"action":{"kind":"Delegate","val":2,"amt":3449},"partialState":{"h":8,"t":48,"tokens":[5992,3253,26413,9441],"delegation":[4992,2253,25413,8441],"delegatorTokens":9999999923631}},{"ix":94,"action":{"kind":"Delegate","val":0,"amt":1248},"partialState":{"h":8,"t":48,"tokens":[7240,3253,26413,9441],"delegation":[6240,2253,25413,8441],"delegatorTokens":9999999922383}},{"ix":95,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":96,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":97,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":9,"t":54,"tokens":[7240,3253,26413,9441],"delegation":[6240,2253,25413,8441],"delegatorTokens":9999999922383,"jailed":[null,1000000000000029,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":98,"action":{"kind":"Delegate","val":0,"amt":3686},"partialState":{"h":9,"t":54,"tokens":[10926,3253,26413,9441],"delegation":[9926,2253,25413,8441],"delegatorTokens":9999999918697}},{"ix":99,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":100,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":10,"t":60,"tokens":[10926,3253,26413,9441],"delegation":[9926,2253,25413,8441],"delegatorTokens":9999999918697,"jailed":[null,1000000000000029,null,null],"status":["bonded","unbonding","bonded","unbonding"]}},{"ix":101,"action":{"kind":"Delegate","val":0,"amt":1398},"partialState":{"h":10,"t":60,"tokens":[12324,3253,26413,9441],"delegation":[11324,2253,25413,8441],"delegatorTokens":9999999917299}},{"ix":102,"action":{"kind":"Delegate","val":1,"amt":4000},"partialState":{"h":10,"t":60,"tokens":[12324,7253,26413,9441],"delegation":[11324,6253,25413,8441],"delegatorTokens":9999999913299}},{"ix":103,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":104,"action":{"kind":"Deliver","chain":"provider","numPackets":6},"partialState":{"h":10,"t":60,"tokens":[12324,7253,26413,9441],"delegation":[11324,6253,25413,8441],"delegatorTokens":9999999913299,"jailed":[null,1000000000000029,null,null],"status":["bonded","unbonding","bonded","unbonding"]}},{"ix":105,"action":{"kind":"Deliver","chain":"provider","numPackets":6},"partialState":{"h":10,"t":60,"tokens":[12324,7253,26413,9441],"delegation":[11324,6253,25413,8441],"delegatorTokens":9999999913299,"jailed":[null,1000000000000029,null,null],"status":["bonded","unbonding","bonded","unbonding"]}},{"ix":106,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":107,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":108,"action":{"kind":"Undelegate","val":2,"amt":3790},"partialState":{"h":10,"t":60,"tokens":[12324,7253,22623,9441],"delegation":[11324,6253,21623,8441],"delegatorTokens":9999999913299}},{"ix":109,"action":{"kind":"Deliver","chain":"provider","numPackets":5},"partialState":{"h":10,"t":60,"tokens":[12324,7253,22623,9441],"delegation":[11324,6253,21623,8441],"delegatorTokens":9999999913299,"jailed":[null,1000000000000029,null,null],"status":["bonded","unbonding","bonded","unbonding"]}},{"ix":110,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":111,"action":{"kind":"Delegate","val":0,"amt":1009},"partialState":{"h":10,"t":60,"tokens":[13333,7253,22623,9441],"delegation":[12333,6253,21623,8441],"delegatorTokens":9999999912290}},{"ix":112,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":10,"t":60,"consumerPower":[10611,null,22964,null],"outstandingDowntime":[false,false,true,true]}},{"ix":113,"action":{"kind":"Delegate","val":2,"amt":1841},"partialState":{"h":10,"t":60,"tokens":[13333,7253,24464,9441],"delegation":[12333,6253,23464,8441],"delegatorTokens":9999999910449}},{"ix":114,"action":{"kind":"Deliver","chain":"consumer","numPackets":5},"partialState":{"h":10,"t":60,"consumerPower":[10611,null,22964,null],"outstandingDowntime":[false,false,true,true]}},{"ix":115,"action":{"kind":"Undelegate","val":0,"amt":1538},"partialState":{"h":10,"t":60,"tokens":[11795,7253,24464,9441],"delegation":[10795,6253,23464,8441],"delegatorTokens":9999999910449}},{"ix":116,"action":{"kind":"Delegate","val":0,"amt":3633},"partialState":{"h":10,"t":60,"tokens":[15428,7253,24464,9441],"delegation":[14428,6253,23464,8441],"delegatorTokens":9999999906816}},{"ix":117,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":11,"t":66,"tokens":[15428,7253,24464,9441],"delegation":[14428,6253,23464,8441],"delegatorTokens":9999999906816,"jailed":[null,1000000000000029,null,null],"status":["bonded","unbonding","bonded","unbonding"]}},{"ix":118,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":12,"t":72,"tokens":[15428,7253,24464,9441],"delegation":[14428,6253,23464,8441],"delegatorTokens":9999999906816,"jailed":[null,1000000000000029,null,null],"status":["bonded","unbonding","bonded","unbonding"]}},{"ix":119,"action":{"kind":"Undelegate","val":1,"amt":3475},"partialState":{"h":12,"t":72,"tokens":[15428,3778,24464,9441],"delegation":[14428,2778,23464,8441],"delegatorTokens":9999999906816}},{"ix":120,"action":{"kind":"Deliver","chain":"consumer","numPackets":2},"partialState":{"h":10,"t":60,"consumerPower":[10611,null,22964,null],"outstandingDowntime":[false,false,true,true]}},{"ix":121,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":11,"t":66,"consumerPower":[15428,null,24464,null],"outstandingDowntime":[false,false,true,true]}},{"ix":122,"action":{"kind":"Delegate","val":2,"amt":4484},"partialState":{"h":12,"t":72,"tokens":[15428,3778,28948,9441],"delegation":[14428,2778,27948,8441],"delegatorTokens":9999999902332}},{"ix":123,"action":{"kind":"Delegate","val":0,"amt":4663},"partialState":{"h":12,"t":72,"tokens":[20091,3778,28948,9441],"delegation":[19091,2778,27948,8441],"delegatorTokens":9999999897669}},{"ix":124,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":12,"t":72,"consumerPower":[15428,null,24464,null],"outstandingDowntime":[false,false,true,true]}},{"ix":125,"action":{"kind":"Undelegate","val":3,"amt":3180},"partialState":{"h":12,"t":72,"tokens":[20091,3778,28948,6261],"delegation":[19091,2778,27948,5261],"delegatorTokens":9999999897669}},{"ix":126,"action":{"kind":"Deliver","chain":"provider","numPackets":2},"partialState":{"h":12,"t":72,"tokens":[20091,3778,28948,6261],"delegation":[19091,2778,27948,5261],"delegatorTokens":9999999897669,"jailed":[null,1000000000000029,null,null],"status":["bonded","unbonding","bonded","unbonding"]}},{"ix":127,"action":{"kind":"Deliver","chain":"provider","numPackets":1},"partialState":{"h":12,"t":72,"tokens":[20091,3778,28948,6261],"delegation":[19091,2778,27948,5261],"delegatorTokens":9999999897669,"jailed":[null,1000000000000029,null,null],"status":["bonded","unbonding","bonded","unbonding"]}},{"ix":128,"action":{"kind":"Undelegate","val":2,"amt":1137},"partialState":{"h":12,"t":72,"tokens":[20091,3778,27811,6261],"delegation":[19091,2778,26811,5261],"delegatorTokens":9999999897669}},{"ix":129,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":130,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":13,"t":78,"consumerPower":[15428,null,24464,null],"outstandingDowntime":[false,false,true,true]}},{"ix":131,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":14,"t":84,"consumerPower":[15428,null,24464,null],"outstandingDowntime":[false,false,true,true]}},{"ix":132,"action":{"kind":"Delegate","val":1,"amt":4385},"partialState":{"h":12,"t":72,"tokens":[20091,8163,27811,6261],"delegation":[19091,7163,26811,5261],"delegatorTokens":9999999893284}},{"ix":133,"action":{"kind":"Delegate","val":2,"amt":3857},"partialState":{"h":12,"t":72,"tokens":[20091,8163,31668,6261],"delegation":[19091,7163,30668,5261],"delegatorTokens":9999999889427}},{"ix":134,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":15,"t":90,"consumerPower":[15428,null,24464,null],"outstandingDowntime":[false,false,true,true]}},{"ix":135,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":136,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":16,"t":96,"consumerPower":[15428,null,24464,null],"outstandingDowntime":[false,false,true,true]}},{"ix":137,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":17,"t":102,"consumerPower":[15428,null,24464,null],"outstandingDowntime":[false,false,true,true]}},{"ix":138,"action":{"kind":"Deliver","chain":"provider","numPackets":6},"partialState":{"h":12,"t":72,"tokens":[20091,8163,31668,6261],"delegation":[19091,7163,30668,5261],"delegatorTokens":9999999889427,"jailed":[null,1000000000000029,null,null],"status":["bonded","unbonding","bonded","unbonding"]}},{"ix":139,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":140,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":141,"action":{"kind":"Undelegate","val":2,"amt":1129},"partialState":{"h":12,"t":72,"tokens":[20091,8163,30539,6261],"delegation":[19091,7163,29539,5261],"delegatorTokens":9999999889427}},{"ix":142,"action":{"kind":"Delegate","val":1,"amt":3907},"partialState":{"h":12,"t":72,"tokens":[20091,12070,30539,6261],"delegation":[19091,11070,29539,5261],"delegatorTokens":9999999885520}},{"ix":143,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":144,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":145,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":13,"t":78,"tokens":[20091,12070,30539,6261],"delegation":[19091,11070,29539,5261],"delegatorTokens":9999999885520,"jailed":[null,1000000000000029,null,null],"status":["bonded","unbonding","bonded","unbonding"]}},{"ix":146,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":147,"action":{"kind":"Undelegate","val":0,"amt":2166},"partialState":{"h":13,"t":78,"tokens":[17925,12070,30539,6261],"delegation":[16925,11070,29539,5261],"delegatorTokens":9999999885520}},{"ix":148,"action":{"kind":"Deliver","chain":"consumer","numPackets":1},"partialState":{"h":17,"t":102,"consumerPower":[15428,null,24464,null],"outstandingDowntime":[false,false,true,true]}},{"ix":149,"action":{"kind":"Deliver","chain":"consumer","numPackets":6},"partialState":{"h":17,"t":102,"consumerPower":[15428,null,24464,null],"outstandingDowntime":[false,false,true,true]}},{"ix":150,"action":{"kind":"Undelegate","val":3,"amt":4447},"partialState":{"h":13,"t":78,"tokens":[17925,12070,30539,1814],"delegation":[16925,11070,29539,814],"delegatorTokens":9999999885520}},{"ix":151,"action":{"kind":"Undelegate","val":1,"amt":1170},"partialState":{"h":13,"t":78,"tokens":[17925,10900,30539,1814],"delegation":[16925,9900,29539,814],"delegatorTokens":9999999885520}},{"ix":152,"action":{"kind":"Deliver","chain":"provider","numPackets":1},"partialState":{"h":13,"t":78,"tokens":[17925,10900,30539,1814],"delegation":[16925,9900,29539,814],"delegatorTokens":9999999885520,"jailed":[null,1000000000000029,null,null],"status":["bonded","unbonding","bonded","unbonding"]}},{"ix":153,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":154,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":14,"t":84,"tokens":[17925,10900,30539,1814],"delegation":[16925,9900,29539,814],"delegatorTokens":9999999887017,"jailed":[null,1000000000000029,null,null],"status":["bonded","unbonding","bonded","unbonding"]}},{"ix":155,"action":{"kind":"Deliver","chain":"consumer","numPackets":2},"partialState":{"h":17,"t":102,"consumerPower":[15428,null,24464,null],"outstandingDowntime":[false,false,true,true]}},{"ix":156,"action":{"kind":"Delegate","val":1,"amt":3968},"partialState":{"h":14,"t":84,"tokens":[17925,14868,30539,1814],"delegation":[16925,13868,29539,814],"delegatorTokens":9999999883049}},{"ix":157,"action":{"kind":"Undelegate","val":1,"amt":2145},"partialState":{"h":14,"t":84,"tokens":[17925,12723,30539,1814],"delegation":[16925,11723,29539,814],"delegatorTokens":9999999883049}},{"ix":158,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":18,"t":108,"consumerPower":[20091,null,30539,null],"outstandingDowntime":[false,false,true,true]}},{"ix":159,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":19,"t":114,"consumerPower":[20091,null,30539,null],"outstandingDowntime":[false,false,true,true]}},{"ix":160,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":15,"t":90,"tokens":[17925,12723,30539,1814],"delegation":[16925,11723,29539,814],"delegatorTokens":9999999885832,"jailed":[null,1000000000000029,null,null],"status":["bonded","unbonding","bonded","unbonding"]}},{"ix":161,"action":{"kind":"Undelegate","val":3,"amt":2227},"partialState":{"h":15,"t":90,"tokens":[17925,12723,30539,1814],"delegation":[16925,11723,29539,814],"delegatorTokens":9999999885832}},{"ix":162,"action":{"kind":"Delegate","val":0,"amt":3746},"partialState":{"h":15,"t":90,"tokens":[21671,12723,30539,1814],"delegation":[20671,11723,29539,814],"delegatorTokens":9999999882086}},{"ix":163,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":164,"action":{"kind":"Deliver","chain":"provider","numPackets":4},"partialState":{"h":15,"t":90,"tokens":[21671,12723,30539,1814],"delegation":[20671,11723,29539,814],"delegatorTokens":9999999882086,"jailed":[null,1000000000000029,null,null],"status":["bonded","unbonding","bonded","unbonding"]}},{"ix":165,"action":{"kind":"Delegate","val":1,"amt":2685},"partialState":{"h":15,"t":90,"tokens":[21671,15408,30539,1814],"delegation":[20671,14408,29539,814],"delegatorTokens":9999999879401}},{"ix":166,"action":{"kind":"Deliver","chain":"provider","numPackets":3},"partialState":{"h":15,"t":90,"tokens":[21671,15408,30539,1814],"delegation":[20671,14408,29539,814],"delegatorTokens":9999999879401,"jailed":[null,1000000000000029,null,null],"status":["bonded","unbonding","bonded","unbonding"]}},{"ix":167,"action":{"kind":"Undelegate","val":3,"amt":3886},"partialState":{"h":15,"t":90,"tokens":[21671,15408,30539,1814],"delegation":[20671,14408,29539,814],"delegatorTokens":9999999879401}},{"ix":168,"action":{"kind":"Deliver","chain":"consumer","numPackets":1},"partialState":{"h":19,"t":114,"consumerPower":[20091,null,30539,null],"outstandingDowntime":[false,false,true,true]}},{"ix":169,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":170,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":171,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":172,"action":{"kind":"Undelegate","val":1,"amt":4249},"partialState":{"h":15,"t":90,"tokens":[21671,11159,30539,1814],"delegation":[20671,10159,29539,814],"delegatorTokens":9999999879401}},{"ix":173,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":174,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":175,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":176,"action":{"kind":"Delegate","val":0,"amt":2802},"partialState":{"h":15,"t":90,"tokens":[24473,11159,30539,1814],"delegation":[23473,10159,29539,814],"delegatorTokens":9999999876599}},{"ix":177,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":178,"action":{"kind":"Undelegate","val":1,"amt":1565},"partialState":{"h":15,"t":90,"tokens":[24473,9594,30539,1814],"delegation":[23473,8594,29539,814],"delegatorTokens":9999999876599}},{"ix":179,"action":{"kind":"Deliver","chain":"consumer","numPackets":3},"partialState":{"h":19,"t":114,"consumerPower":[20091,null,30539,null],"outstandingDowntime":[false,false,true,true]}},{"ix":180,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":181,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":182,"action":{"kind":"Delegate","val":3,"amt":4149},"partialState":{"h":15,"t":90,"tokens":[24473,9594,30539,5963],"delegation":[23473,8594,29539,4963],"delegatorTokens":9999999872450}},{"ix":183,"action":{"kind":"Delegate","val":1,"amt":4198},"partialState":{"h":15,"t":90,"tokens":[24473,13792,30539,5963],"delegation":[23473,12792,29539,4963],"delegatorTokens":9999999868252}},{"ix":184,"action":{"kind":"Deliver","chain":"consumer","numPackets":3},"partialState":{"h":19,"t":114,"consumerPower":[20091,null,30539,null],"outstandingDowntime":[false,false,true,true]}},{"ix":185,"action":{"kind":"Delegate","val":1,"amt":2850},"partialState":{"h":15,"t":90,"tokens":[24473,16642,30539,5963],"delegation":[23473,15642,29539,4963],"delegatorTokens":9999999865402}},{"ix":186,"action":{"kind":"Deliver","chain":"provider","numPackets":2},"partialState":{"h":15,"t":90,"tokens":[24473,16642,30539,5963],"delegation":[23473,15642,29539,4963],"delegatorTokens":9999999865402,"jailed":[null,1000000000000029,null,null],"status":["bonded","unbonding","bonded","unbonding"]}},{"ix":187,"action":{"kind":"Undelegate","val":2,"amt":1136},"partialState":{"h":15,"t":90,"tokens":[24473,16642,29403,5963],"delegation":[23473,15642,28403,4963],"delegatorTokens":9999999865402}},{"ix":188,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":20,"t":120,"consumerPower":[17925,null,30539,null],"outstandingDowntime":[false,false,true,true]}},{"ix":189,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":16,"t":96,"tokens":[24473,16642,29403,5963],"delegation":[23473,15642,28403,4963],"delegatorTokens":9999999865402,"jailed":[null,1000000000000029,null,null],"status":["bonded","unbonding","bonded","unbonding"]}},{"ix":190,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":17,"t":102,"tokens":[24473,16642,29403,5963],"delegation":[23473,15642,28403,4963],"delegatorTokens":9999999878383,"jailed":[null,1000000000000029,null,null],"status":["bonded","unbonding","bonded","unbonding"]}},{"ix":191,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":21,"t":126,"consumerPower":[17925,null,30539,null],"outstandingDowntime":[false,false,true,true]}},{"ix":192,"action":{"kind":"Delegate","val":1,"amt":3885},"partialState":{"h":17,"t":102,"tokens":[24473,20527,29403,5963],"delegation":[23473,19527,28403,4963],"delegatorTokens":9999999874498}},{"ix":193,"action":{"kind":"Deliver","chain":"consumer","numPackets":4},"partialState":{"h":21,"t":126,"consumerPower":[17925,null,30539,null],"outstandingDowntime":[false,false,true,true]}},{"ix":194,"action":{"kind":"Undelegate","val":0,"amt":4748},"partialState":{"h":17,"t":102,"tokens":[19725,20527,29403,5963],"delegation":[18725,19527,28403,4963],"delegatorTokens":9999999874498}},{"ix":195,"action":{"kind":"Deliver","chain":"provider","numPackets":3},"partialState":{"h":17,"t":102,"tokens":[19725,20527,29403,5963],"delegation":[18725,19527,28403,4963],"delegatorTokens":9999999874498,"jailed":[null,1000000000000029,null,null],"status":["bonded","unbonding","bonded","unbonding"]}},{"ix":196,"action":{"kind":"Delegate","val":1,"amt":3302},"partialState":{"h":17,"t":102,"tokens":[19725,23829,29403,5963],"delegation":[18725,22829,28403,4963],"delegatorTokens":9999999871196}},{"ix":197,"action":{"kind":"Deliver","chain":"provider","numPackets":1},"partialState":{"h":17,"t":102,"tokens":[19725,23829,29403,5963],"delegation":[18725,22829,28403,4963],"delegatorTokens":9999999871196,"jailed":[null,1000000000000029,null,null],"status":["bonded","unbonding","bonded","unbonding"]}},{"ix":198,"action":{"kind":"Undelegate","val":1,"amt":4874},"partialState":{"h":17,"t":102,"tokens":[19725,18955,29403,5963],"delegation":[18725,17955,28403,4963],"delegatorTokens":9999999871196}},{"ix":199,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":18,"t":108,"tokens":[19725,18955,29403,5963],"delegation":[18725,17955,28403,4963],"delegatorTokens":9999999888720,"jailed":[null,1000000000000029,null,null],"status":["bonded","unbonded","bonded","unbonding"]}}],"events":["send_downtime_slash_request","send_downtime_slash_request","send_downtime_slash_request","receive_slash_request_unbonded","receive_slash_request_unbonded","send_vsc_without_downtime_ack","insufficient_shares","send_vsc_without_downtime_ack","rebond_unval","send_vsc_without_downtime_ack","insufficient_shares","more_than_one_third_val_power_change","rebond_unval","send_vsc_without_downtime_ack","consumer_update_val","consumer_del_val","consumer_add_val","more_than_one_third_val_power_change","rebond_unval","receive_downtime_slash_request","jail","send_vsc_with_downtime_ack","send_vsc_without_downtime_ack","receive_downtime_slash_ack","send_vsc_without_downtime_ack","consumer_del_val","consumer_update_val","consumer_update_val","send_vsc_without_downtime_ack","rebond_unval","send_vsc_without_downtime_ack","send_vsc_without_downtime_ack","consumer_update_val","consumer_del_val","consumer_update_val","consumer_send_maturation","consumer_send_maturation","consumer_send_maturation","consumer_send_maturation","consumer_send_maturation","consumer_send_maturation","set_undel_hold_false","set_undel_hold_false","set_undel_hold_false","set_undel_hold_false","set_undel_hold_false","set_undel_hold_false","set_undel_hold_false","set_undel_hold_false","set_undel_hold_false","set_undel_hold_false","set_undel_hold_false","set_undel_hold_false","set_unval_hold_false","send_vsc_without_downtime_ack","complete_undel_in_endblock","send_vsc_without_downtime_ack","consumer_update_val","consumer_update_val","complete_undel_in_endblock","send_vsc_not_because_change","send_vsc_without_downtime_ack","insufficient_shares","insufficient_shares","consumer_send_maturation","consumer_send_maturation","consumer_send_maturation","consumer_send_maturation","consumer_update_val","send_vsc_without_downtime_ack","complete_undel_in_endblock","complete_unval_in_endblock","complete_undel_in_endblock","set_undel_hold_false","set_undel_hold_false","set_undel_hold_false","set_unval_hold_false","set_undel_hold_false","set_undel_hold_false","send_vsc_without_downtime_ack"]},{"meta":{"commit":"7ffd0c04e4205cbc9caf212abfe6c59ee43153bf"},"constants":{"P":"provider","C":"consumer","UNBONDING_SECONDS_P":70,"UNBONDING_SECONDS_C":50,"TRUSTING_SECONDS":49,"NUM_VALIDATORS":4,"MAX_VALIDATORS":2,"SLASH_DOUBLESIGN":0,"SLASH_DOWNTIME":0,"JAIL_SECONDS":999999999999999,"BLOCK_SECONDS":6,"INITIAL_DELEGATOR_TOKENS":10000000000000,"DELEGATE_AMT_MIN":1000,"DELEGATE_AMT_MAX":5000,"UNDELEGATE_AMT_MIN":1000,"UNDELEGATE_AMT_MAX":5000,"ISDOWNTIME_PROBABILITY":0.5,"MAX_NUM_PACKETS_FOR_DELIVER":6},"actions":[{"ix":0,"action":{"kind":"ConsumerSlash","val":3,"infractionHeight":0,"isDowntime":true},"partialState":{"h":1,"t":6,"outstandingDowntime":[false,false,false,true]}},{"ix":1,"action":{"kind":"Undelegate","val":0,"amt":2526},"partialState":{"h":1,"t":6,"tokens":[2474,4000,3000,2000],"delegation":[1474,3000,2000,1000],"delegatorTokens":10000000000000}},{"ix":2,"action":{"kind":"Delegate","val":0,"amt":3967},"partialState":{"h":1,"t":6,"tokens":[6441,4000,3000,2000],"delegation":[5441,3000,2000,1000],"delegatorTokens":9999999996033}},{"ix":3,"action":{"kind":"Deliver","chain":"consumer","numPackets":6},"partialState":{"h":1,"t":6,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,false,false,true]}},{"ix":4,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":5,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":2,"t":12,"tokens":[6441,4000,3000,2000],"delegation":[5441,3000,2000,1000],"delegatorTokens":9999999996033,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":6,"action":{"kind":"Undelegate","val":2,"amt":3587},"partialState":{"h":2,"t":12,"tokens":[6441,4000,3000,2000],"delegation":[5441,3000,2000,1000],"delegatorTokens":9999999996033}},{"ix":7,"action":{"kind":"Delegate","val":0,"amt":2080},"partialState":{"h":2,"t":12,"tokens":[8521,4000,3000,2000],"delegation":[7521,3000,2000,1000],"delegatorTokens":9999999993953}},{"ix":8,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":9,"action":{"kind":"Deliver","chain":"provider","numPackets":2},"partialState":{"h":2,"t":12,"tokens":[8521,4000,3000,2000],"delegation":[7521,3000,2000,1000],"delegatorTokens":9999999993953,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":10,"action":{"kind":"Delegate","val":1,"amt":1512},"partialState":{"h":2,"t":12,"tokens":[8521,5512,3000,2000],"delegation":[7521,4512,2000,1000],"delegatorTokens":9999999992441}},{"ix":11,"action":{"kind":"ConsumerSlash","val":2,"infractionHeight":0,"isDowntime":true},"partialState":{"h":1,"t":6,"outstandingDowntime":[false,false,true,true]}},{"ix":12,"action":{"kind":"Undelegate","val":3,"amt":4610},"partialState":{"h":2,"t":12,"tokens":[8521,5512,3000,2000],"delegation":[7521,4512,2000,1000],"delegatorTokens":9999999992441}},{"ix":13,"action":{"kind":"Delegate","val":1,"amt":1508},"partialState":{"h":2,"t":12,"tokens":[8521,7020,3000,2000],"delegation":[7521,6020,2000,1000],"delegatorTokens":9999999990933}},{"ix":14,"action":{"kind":"ConsumerSlash","val":3,"infractionHeight":0,"isDowntime":true},"partialState":{"h":1,"t":6,"outstandingDowntime":[false,false,true,true]}},{"ix":15,"action":{"kind":"Delegate","val":0,"amt":4736},"partialState":{"h":2,"t":12,"tokens":[13257,7020,3000,2000],"delegation":[12257,6020,2000,1000],"delegatorTokens":9999999986197}},{"ix":16,"action":{"kind":"Deliver","chain":"consumer","numPackets":2},"partialState":{"h":1,"t":6,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,false,true,true]}},{"ix":17,"action":{"kind":"Delegate","val":1,"amt":3193},"partialState":{"h":2,"t":12,"tokens":[13257,10213,3000,2000],"delegation":[12257,9213,2000,1000],"delegatorTokens":9999999983004}},{"ix":18,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":2,"t":12,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,false,true,true]}},{"ix":19,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":3,"t":18,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,false,true,true]}},{"ix":20,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":3,"t":18,"tokens":[13257,10213,3000,2000],"delegation":[12257,9213,2000,1000],"delegatorTokens":9999999983004,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":21,"action":{"kind":"Undelegate","val":1,"amt":1479},"partialState":{"h":3,"t":18,"tokens":[13257,8734,3000,2000],"delegation":[12257,7734,2000,1000],"delegatorTokens":9999999983004}},{"ix":22,"action":{"kind":"Undelegate","val":3,"amt":4424},"partialState":{"h":3,"t":18,"tokens":[13257,8734,3000,2000],"delegation":[12257,7734,2000,1000],"delegatorTokens":9999999983004}},{"ix":23,"action":{"kind":"Deliver","chain":"consumer","numPackets":1},"partialState":{"h":3,"t":18,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,false,true,true]}},{"ix":24,"action":{"kind":"Delegate","val":1,"amt":1714},"partialState":{"h":3,"t":18,"tokens":[13257,10448,3000,2000],"delegation":[12257,9448,2000,1000],"delegatorTokens":9999999981290}},{"ix":25,"action":{"kind":"Delegate","val":0,"amt":4122},"partialState":{"h":3,"t":18,"tokens":[17379,10448,3000,2000],"delegation":[16379,9448,2000,1000],"delegatorTokens":9999999977168}},{"ix":26,"action":{"kind":"Delegate","val":1,"amt":3346},"partialState":{"h":3,"t":18,"tokens":[17379,13794,3000,2000],"delegation":[16379,12794,2000,1000],"delegatorTokens":9999999973822}},{"ix":27,"action":{"kind":"Undelegate","val":3,"amt":4707},"partialState":{"h":3,"t":18,"tokens":[17379,13794,3000,2000],"delegation":[16379,12794,2000,1000],"delegatorTokens":9999999973822}},{"ix":28,"action":{"kind":"Undelegate","val":0,"amt":1130},"partialState":{"h":3,"t":18,"tokens":[16249,13794,3000,2000],"delegation":[15249,12794,2000,1000],"delegatorTokens":9999999973822}},{"ix":29,"action":{"kind":"Deliver","chain":"provider","numPackets":3},"partialState":{"h":3,"t":18,"tokens":[16249,13794,3000,2000],"delegation":[15249,12794,2000,1000],"delegatorTokens":9999999973822,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":30,"action":{"kind":"ConsumerSlash","val":2,"infractionHeight":0,"isDowntime":true},"partialState":{"h":3,"t":18,"outstandingDowntime":[false,false,true,true]}},{"ix":31,"action":{"kind":"Deliver","chain":"provider","numPackets":2},"partialState":{"h":3,"t":18,"tokens":[16249,13794,3000,2000],"delegation":[15249,12794,2000,1000],"delegatorTokens":9999999973822,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":32,"action":{"kind":"Undelegate","val":1,"amt":3850},"partialState":{"h":3,"t":18,"tokens":[16249,9944,3000,2000],"delegation":[15249,8944,2000,1000],"delegatorTokens":9999999973822}},{"ix":33,"action":{"kind":"ConsumerSlash","val":3,"infractionHeight":2,"isDowntime":false},"partialState":{"h":3,"t":18,"outstandingDowntime":[false,false,true,true]}},{"ix":34,"action":{"kind":"Deliver","chain":"provider","numPackets":5},"partialState":{"h":3,"t":18,"tokens":[16249,9944,3000,2000],"delegation":[15249,8944,2000,1000],"delegatorTokens":9999999973822,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":35,"action":{"kind":"Deliver","chain":"provider","numPackets":1},"partialState":{"h":3,"t":18,"tokens":[16249,9944,3000,2000],"delegation":[15249,8944,2000,1000],"delegatorTokens":9999999973822,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":36,"action":{"kind":"Undelegate","val":0,"amt":1052},"partialState":{"h":3,"t":18,"tokens":[15197,9944,3000,2000],"delegation":[14197,8944,2000,1000],"delegatorTokens":9999999973822}},{"ix":37,"action":{"kind":"ConsumerSlash","val":1,"infractionHeight":2,"isDowntime":true},"partialState":{"h":3,"t":18,"outstandingDowntime":[false,true,true,true]}},{"ix":38,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":4,"t":24,"consumerPower":[6441,4000,null,null],"outstandingDowntime":[false,true,true,true]}},{"ix":39,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":4,"t":24,"tokens":[15197,9944,3000,2000],"delegation":[14197,8944,2000,1000],"delegatorTokens":9999999973822,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":40,"action":{"kind":"Undelegate","val":3,"amt":2769},"partialState":{"h":4,"t":24,"tokens":[15197,9944,3000,2000],"delegation":[14197,8944,2000,1000],"delegatorTokens":9999999973822}},{"ix":41,"action":{"kind":"Undelegate","val":2,"amt":1072},"partialState":{"h":4,"t":24,"tokens":[15197,9944,1928,2000],"delegation":[14197,8944,928,1000],"delegatorTokens":9999999973822}},{"ix":42,"action":{"kind":"Undelegate","val":3,"amt":4351},"partialState":{"h":4,"t":24,"tokens":[15197,9944,1928,2000],"delegation":[14197,8944,928,1000],"delegatorTokens":9999999973822}},{"ix":43,"action":{"kind":"Deliver","chain":"consumer","numPackets":2},"partialState":{"h":4,"t":24,"consumerPower":[6441,4000,null,null],"outstandingDowntime":[false,true,true,true]}},{"ix":44,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":5,"t":30,"consumerPower":[13257,10213,null,null],"outstandingDowntime":[false,true,true,true]}},{"ix":45,"action":{"kind":"Deliver","chain":"provider","numPackets":6},"partialState":{"h":4,"t":24,"tokens":[15197,9944,1928,2000],"delegation":[14197,8944,928,1000],"delegatorTokens":9999999973822,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":46,"action":{"kind":"Deliver","chain":"consumer","numPackets":1},"partialState":{"h":5,"t":30,"consumerPower":[13257,10213,null,null],"outstandingDowntime":[false,true,true,true]}},{"ix":47,"action":{"kind":"Undelegate","val":2,"amt":2224},"partialState":{"h":4,"t":24,"tokens":[15197,9944,1928,2000],"delegation":[14197,8944,928,1000],"delegatorTokens":9999999973822}},{"ix":48,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":5,"t":30,"tokens":[15197,9944,1928,2000],"delegation":[14197,8944,928,1000],"delegatorTokens":9999999973822,"jailed":[null,1000000000000023,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":49,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":6,"t":36,"consumerPower":[13257,10213,null,null],"outstandingDowntime":[false,true,true,true]}},{"ix":50,"action":{"kind":"Deliver","chain":"consumer","numPackets":6},"partialState":{"h":6,"t":36,"consumerPower":[13257,10213,null,null],"outstandingDowntime":[false,true,true,true]}},{"ix":51,"action":{"kind":"Undelegate","val":3,"amt":2352},"partialState":{"h":5,"t":30,"tokens":[15197,9944,1928,2000],"delegation":[14197,8944,928,1000],"delegatorTokens":9999999973822}},{"ix":52,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":7,"t":42,"consumerPower":[15197,9944,null,null],"outstandingDowntime":[false,true,true,true]}},{"ix":53,"action":{"kind":"Delegate","val":3,"amt":2295},"partialState":{"h":5,"t":30,"tokens":[15197,9944,1928,4295],"delegation":[14197,8944,928,3295],"delegatorTokens":9999999971527}},{"ix":54,"action":{"kind":"Deliver","chain":"provider","numPackets":3},"partialState":{"h":5,"t":30,"tokens":[15197,9944,1928,4295],"delegation":[14197,8944,928,3295],"delegatorTokens":9999999971527,"jailed":[null,1000000000000023,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":55,"action":{"kind":"Deliver","chain":"consumer","numPackets":4},"partialState":{"h":7,"t":42,"consumerPower":[15197,9944,null,null],"outstandingDowntime":[false,true,true,true]}},{"ix":56,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":6,"t":36,"tokens":[15197,9944,1928,4295],"delegation":[14197,8944,928,3295],"delegatorTokens":9999999971527,"jailed":[null,1000000000000023,null,null],"status":["bonded","unbonding","unbonded","bonded"]}},{"ix":57,"action":{"kind":"Deliver","chain":"consumer","numPackets":4},"partialState":{"h":7,"t":42,"consumerPower":[15197,9944,null,null],"outstandingDowntime":[false,false,true,true]}},{"ix":58,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":7,"t":42,"tokens":[15197,9944,1928,4295],"delegation":[14197,8944,928,3295],"delegatorTokens":9999999971527,"jailed":[null,1000000000000023,null,null],"status":["bonded","unbonding","unbonded","bonded"]}},{"ix":59,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":8,"t":48,"consumerPower":[15197,9944,null,null],"outstandingDowntime":[false,false,true,true]}},{"ix":60,"action":{"kind":"Delegate","val":0,"amt":3486},"partialState":{"h":7,"t":42,"tokens":[18683,9944,1928,4295],"delegation":[17683,8944,928,3295],"delegatorTokens":9999999968041}},{"ix":61,"action":{"kind":"Delegate","val":3,"amt":2444},"partialState":{"h":7,"t":42,"tokens":[18683,9944,1928,6739],"delegation":[17683,8944,928,5739],"delegatorTokens":9999999965597}},{"ix":62,"action":{"kind":"Undelegate","val":3,"amt":2695},"partialState":{"h":7,"t":42,"tokens":[18683,9944,1928,4044],"delegation":[17683,8944,928,3044],"delegatorTokens":9999999965597}},{"ix":63,"action":{"kind":"Deliver","chain":"provider","numPackets":4},"partialState":{"h":7,"t":42,"tokens":[18683,9944,1928,4044],"delegation":[17683,8944,928,3044],"delegatorTokens":9999999965597,"jailed":[null,1000000000000023,null,null],"status":["bonded","unbonding","unbonded","bonded"]}},{"ix":64,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":8,"t":48,"tokens":[18683,9944,1928,4044],"delegation":[17683,8944,928,3044],"delegatorTokens":9999999965597,"jailed":[null,1000000000000023,null,null],"status":["bonded","unbonding","unbonded","bonded"]}},{"ix":65,"action":{"kind":"Deliver","chain":"provider","numPackets":6},"partialState":{"h":8,"t":48,"tokens":[18683,9944,1928,4044],"delegation":[17683,8944,928,3044],"delegatorTokens":9999999965597,"jailed":[null,1000000000000023,null,null],"status":["bonded","unbonding","unbonded","bonded"]}},{"ix":66,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":67,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":9,"t":54,"tokens":[18683,9944,1928,4044],"delegation":[17683,8944,928,3044],"delegatorTokens":9999999965597,"jailed":[null,1000000000000023,null,null],"status":["bonded","unbonding","unbonded","bonded"]}},{"ix":68,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":10,"t":60,"tokens":[18683,9944,1928,4044],"delegation":[17683,8944,928,3044],"delegatorTokens":9999999965597,"jailed":[null,1000000000000023,null,null],"status":["bonded","unbonding","unbonded","bonded"]}},{"ix":69,"action":{"kind":"Delegate","val":0,"amt":2243},"partialState":{"h":10,"t":60,"tokens":[20926,9944,1928,4044],"delegation":[19926,8944,928,3044],"delegatorTokens":9999999963354}},{"ix":70,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":11,"t":66,"tokens":[20926,9944,1928,4044],"delegation":[19926,8944,928,3044],"delegatorTokens":9999999963354,"jailed":[null,1000000000000023,null,null],"status":["bonded","unbonding","unbonded","bonded"]}},{"ix":71,"action":{"kind":"Deliver","chain":"provider","numPackets":5},"partialState":{"h":11,"t":66,"tokens":[20926,9944,1928,4044],"delegation":[19926,8944,928,3044],"delegatorTokens":9999999963354,"jailed":[null,1000000000000023,null,null],"status":["bonded","unbonding","unbonded","bonded"]}},{"ix":72,"action":{"kind":"Deliver","chain":"provider","numPackets":3},"partialState":{"h":11,"t":66,"tokens":[20926,9944,1928,4044],"delegation":[19926,8944,928,3044],"delegatorTokens":9999999963354,"jailed":[null,1000000000000023,null,null],"status":["bonded","unbonding","unbonded","bonded"]}},{"ix":73,"action":{"kind":"Undelegate","val":1,"amt":4199},"partialState":{"h":11,"t":66,"tokens":[20926,5745,1928,4044],"delegation":[19926,4745,928,3044],"delegatorTokens":9999999963354}},{"ix":74,"action":{"kind":"Undelegate","val":1,"amt":2037},"partialState":{"h":11,"t":66,"tokens":[20926,3708,1928,4044],"delegation":[19926,2708,928,3044],"delegatorTokens":9999999963354}},{"ix":75,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":12,"t":72,"tokens":[20926,3708,1928,4044],"delegation":[19926,2708,928,3044],"delegatorTokens":9999999963354,"jailed":[null,1000000000000023,null,null],"status":["bonded","unbonding","unbonded","bonded"]}},{"ix":76,"action":{"kind":"Deliver","chain":"provider","numPackets":6},"partialState":{"h":12,"t":72,"tokens":[20926,3708,1928,4044],"delegation":[19926,2708,928,3044],"delegatorTokens":9999999963354,"jailed":[null,1000000000000023,null,null],"status":["bonded","unbonding","unbonded","bonded"]}},{"ix":77,"action":{"kind":"Deliver","chain":"provider","numPackets":1},"partialState":{"h":12,"t":72,"tokens":[20926,3708,1928,4044],"delegation":[19926,2708,928,3044],"delegatorTokens":9999999963354,"jailed":[null,1000000000000023,null,null],"status":["bonded","unbonding","unbonded","bonded"]}},{"ix":78,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":79,"action":{"kind":"Deliver","chain":"consumer","numPackets":2},"partialState":{"h":8,"t":48,"consumerPower":[15197,9944,null,null],"outstandingDowntime":[false,false,true,true]}},{"ix":80,"action":{"kind":"Delegate","val":0,"amt":1617},"partialState":{"h":12,"t":72,"tokens":[22543,3708,1928,4044],"delegation":[21543,2708,928,3044],"delegatorTokens":9999999961737}},{"ix":81,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":13,"t":78,"tokens":[22543,3708,1928,4044],"delegation":[21543,2708,928,3044],"delegatorTokens":9999999961737,"jailed":[null,1000000000000023,null,null],"status":["bonded","unbonding","unbonded","bonded"]}},{"ix":82,"action":{"kind":"Delegate","val":2,"amt":3846},"partialState":{"h":13,"t":78,"tokens":[22543,3708,5774,4044],"delegation":[21543,2708,4774,3044],"delegatorTokens":9999999957891}},{"ix":83,"action":{"kind":"Undelegate","val":1,"amt":1357},"partialState":{"h":13,"t":78,"tokens":[22543,2351,5774,4044],"delegation":[21543,1351,4774,3044],"delegatorTokens":9999999957891}},{"ix":84,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":9,"t":54,"consumerPower":[18683,null,null,4044],"outstandingDowntime":[false,false,true,true]}},{"ix":85,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":10,"t":60,"consumerPower":[18683,null,null,4044],"outstandingDowntime":[false,false,true,true]}},{"ix":86,"action":{"kind":"Deliver","chain":"provider","numPackets":6},"partialState":{"h":13,"t":78,"tokens":[22543,2351,5774,4044],"delegation":[21543,1351,4774,3044],"delegatorTokens":9999999957891,"jailed":[null,1000000000000023,null,null],"status":["bonded","unbonding","unbonded","bonded"]}},{"ix":87,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":11,"t":66,"consumerPower":[18683,null,null,4044],"outstandingDowntime":[false,false,true,true]}},{"ix":88,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":89,"action":{"kind":"Undelegate","val":0,"amt":1291},"partialState":{"h":13,"t":78,"tokens":[21252,2351,5774,4044],"delegation":[20252,1351,4774,3044],"delegatorTokens":9999999957891}},{"ix":90,"action":{"kind":"Undelegate","val":2,"amt":1720},"partialState":{"h":13,"t":78,"tokens":[21252,2351,4054,4044],"delegation":[20252,1351,3054,3044],"delegatorTokens":9999999957891}},{"ix":91,"action":{"kind":"Delegate","val":3,"amt":2827},"partialState":{"h":13,"t":78,"tokens":[21252,2351,4054,6871],"delegation":[20252,1351,3054,5871],"delegatorTokens":9999999955064}},{"ix":92,"action":{"kind":"Undelegate","val":0,"amt":2563},"partialState":{"h":13,"t":78,"tokens":[18689,2351,4054,6871],"delegation":[17689,1351,3054,5871],"delegatorTokens":9999999955064}},{"ix":93,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":12,"t":72,"consumerPower":[18683,null,null,4044],"outstandingDowntime":[false,false,true,true]}},{"ix":94,"action":{"kind":"Delegate","val":1,"amt":2717},"partialState":{"h":13,"t":78,"tokens":[18689,5068,4054,6871],"delegation":[17689,4068,3054,5871],"delegatorTokens":9999999952347}},{"ix":95,"action":{"kind":"Undelegate","val":1,"amt":2816},"partialState":{"h":13,"t":78,"tokens":[18689,2252,4054,6871],"delegation":[17689,1252,3054,5871],"delegatorTokens":9999999952347}},{"ix":96,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":14,"t":84,"tokens":[18689,2252,4054,6871],"delegation":[17689,1252,3054,5871],"delegatorTokens":9999999952347,"jailed":[null,1000000000000023,null,null],"status":["bonded","unbonding","unbonded","bonded"]}},{"ix":97,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":98,"action":{"kind":"Deliver","chain":"consumer","numPackets":6},"partialState":{"h":12,"t":72,"consumerPower":[18683,null,null,4044],"outstandingDowntime":[false,false,true,true]}},{"ix":99,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":15,"t":90,"tokens":[18689,2252,4054,6871],"delegation":[17689,1252,3054,5871],"delegatorTokens":9999999952347,"jailed":[null,1000000000000023,null,null],"status":["bonded","unbonding","unbonded","bonded"]}},{"ix":100,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":16,"t":96,"tokens":[18689,2252,4054,6871],"delegation":[17689,1252,3054,5871],"delegatorTokens":9999999952347,"jailed":[null,1000000000000023,null,null],"status":["bonded","unbonding","unbonded","bonded"]}},{"ix":101,"action":{"kind":"Deliver","chain":"consumer","numPackets":6},"partialState":{"h":12,"t":72,"consumerPower":[18683,null,null,4044],"outstandingDowntime":[false,false,true,true]}},{"ix":102,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":17,"t":102,"tokens":[18689,2252,4054,6871],"delegation":[17689,1252,3054,5871],"delegatorTokens":9999999952347,"jailed":[null,1000000000000023,null,null],"status":["bonded","unbonding","unbonded","bonded"]}},{"ix":103,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":13,"t":78,"consumerPower":[18689,null,null,6871],"outstandingDowntime":[false,false,true,true]}},{"ix":104,"action":{"kind":"Delegate","val":1,"amt":2849},"partialState":{"h":17,"t":102,"tokens":[18689,5101,4054,6871],"delegation":[17689,4101,3054,5871],"delegatorTokens":9999999949498}},{"ix":105,"action":{"kind":"Delegate","val":2,"amt":1727},"partialState":{"h":17,"t":102,"tokens":[18689,5101,5781,6871],"delegation":[17689,4101,4781,5871],"delegatorTokens":9999999947771}},{"ix":106,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":107,"action":{"kind":"Undelegate","val":3,"amt":3247},"partialState":{"h":17,"t":102,"tokens":[18689,5101,5781,3624],"delegation":[17689,4101,4781,2624],"delegatorTokens":9999999947771}},{"ix":108,"action":{"kind":"Deliver","chain":"consumer","numPackets":4},"partialState":{"h":13,"t":78,"consumerPower":[18689,null,null,6871],"outstandingDowntime":[false,false,true,true]}},{"ix":109,"action":{"kind":"Undelegate","val":2,"amt":1651},"partialState":{"h":17,"t":102,"tokens":[18689,5101,4130,3624],"delegation":[17689,4101,3130,2624],"delegatorTokens":9999999947771}},{"ix":110,"action":{"kind":"Deliver","chain":"provider","numPackets":5},"partialState":{"h":17,"t":102,"tokens":[18689,5101,4130,3624],"delegation":[17689,4101,3130,2624],"delegatorTokens":9999999947771,"jailed":[null,1000000000000023,null,null],"status":["bonded","unbonding","unbonded","bonded"]}},{"ix":111,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":14,"t":84,"consumerPower":[18689,null,null,6871],"outstandingDowntime":[false,false,true,true]}},{"ix":112,"action":{"kind":"Undelegate","val":1,"amt":4937},"partialState":{"h":17,"t":102,"tokens":[18689,5101,4130,3624],"delegation":[17689,4101,3130,2624],"delegatorTokens":9999999947771}},{"ix":113,"action":{"kind":"Undelegate","val":1,"amt":4461},"partialState":{"h":17,"t":102,"tokens":[18689,5101,4130,3624],"delegation":[17689,4101,3130,2624],"delegatorTokens":9999999947771}},{"ix":114,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":115,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":116,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":15,"t":90,"consumerPower":[18689,null,null,6871],"outstandingDowntime":[false,false,true,true]}},{"ix":117,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":16,"t":96,"consumerPower":[18689,null,null,6871],"outstandingDowntime":[false,false,true,true]}},{"ix":118,"action":{"kind":"Deliver","chain":"consumer","numPackets":3},"partialState":{"h":16,"t":96,"consumerPower":[18689,null,null,6871],"outstandingDowntime":[false,false,true,true]}},{"ix":119,"action":{"kind":"Delegate","val":1,"amt":1197},"partialState":{"h":17,"t":102,"tokens":[18689,6298,4130,3624],"delegation":[17689,5298,3130,2624],"delegatorTokens":9999999946574}},{"ix":120,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":121,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":17,"t":102,"consumerPower":[18689,null,null,6871],"outstandingDowntime":[false,false,true,true]}},{"ix":122,"action":{"kind":"Deliver","chain":"provider","numPackets":3},"partialState":{"h":17,"t":102,"tokens":[18689,6298,4130,3624],"delegation":[17689,5298,3130,2624],"delegatorTokens":9999999946574,"jailed":[null,1000000000000023,null,null],"status":["bonded","unbonding","unbonded","bonded"]}},{"ix":123,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":18,"t":108,"tokens":[18689,6298,4130,3624],"delegation":[17689,5298,3130,2624],"delegatorTokens":9999999956611,"jailed":[null,1000000000000023,null,null],"status":["bonded","unbonding","bonded","unbonding"]}},{"ix":124,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":19,"t":114,"tokens":[18689,6298,4130,3624],"delegation":[17689,5298,3130,2624],"delegatorTokens":9999999956611,"jailed":[null,1000000000000023,null,null],"status":["bonded","unbonding","bonded","unbonding"]}},{"ix":125,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":20,"t":120,"tokens":[18689,6298,4130,3624],"delegation":[17689,5298,3130,2624],"delegatorTokens":9999999956611,"jailed":[null,1000000000000023,null,null],"status":["bonded","unbonding","bonded","unbonding"]}},{"ix":126,"action":{"kind":"Undelegate","val":1,"amt":4228},"partialState":{"h":20,"t":120,"tokens":[18689,2070,4130,3624],"delegation":[17689,1070,3130,2624],"delegatorTokens":9999999956611}},{"ix":127,"action":{"kind":"Delegate","val":0,"amt":1182},"partialState":{"h":20,"t":120,"tokens":[19871,2070,4130,3624],"delegation":[18871,1070,3130,2624],"delegatorTokens":9999999955429}},{"ix":128,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":21,"t":126,"tokens":[19871,2070,4130,3624],"delegation":[18871,1070,3130,2624],"delegatorTokens":9999999955429,"jailed":[null,1000000000000023,null,null],"status":["bonded","unbonding","bonded","unbonding"]}},{"ix":129,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":130,"action":{"kind":"Delegate","val":1,"amt":2416},"partialState":{"h":21,"t":126,"tokens":[19871,4486,4130,3624],"delegation":[18871,3486,3130,2624],"delegatorTokens":9999999953013}},{"ix":131,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":18,"t":108,"consumerPower":[18689,null,null,6871],"outstandingDowntime":[false,false,true,true]}},{"ix":132,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":22,"t":132,"tokens":[19871,4486,4130,3624],"delegation":[18871,3486,3130,2624],"delegatorTokens":9999999953013,"jailed":[null,1000000000000023,null,null],"status":["bonded","unbonding","bonded","unbonding"]}},{"ix":133,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":23,"t":138,"tokens":[19871,4486,4130,3624],"delegation":[18871,3486,3130,2624],"delegatorTokens":9999999953013,"jailed":[null,1000000000000023,null,null],"status":["bonded","unbonding","bonded","unbonding"]}},{"ix":134,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":135,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":19,"t":114,"consumerPower":[18689,null,null,6871],"outstandingDowntime":[false,false,true,true]}},{"ix":136,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":137,"action":{"kind":"Deliver","chain":"provider","numPackets":3},"partialState":{"h":23,"t":138,"tokens":[19871,4486,4130,3624],"delegation":[18871,3486,3130,2624],"delegatorTokens":9999999953013,"jailed":[null,1000000000000023,null,null],"status":["bonded","unbonding","bonded","unbonding"]}},{"ix":138,"action":{"kind":"Deliver","chain":"consumer","numPackets":3},"partialState":{"h":19,"t":114,"consumerPower":[18689,null,null,6871],"outstandingDowntime":[false,false,true,true]}},{"ix":139,"action":{"kind":"Undelegate","val":3,"amt":2520},"partialState":{"h":23,"t":138,"tokens":[19871,4486,4130,1104],"delegation":[18871,3486,3130,104],"delegatorTokens":9999999953013}},{"ix":140,"action":{"kind":"Deliver","chain":"provider","numPackets":3},"partialState":{"h":23,"t":138,"tokens":[19871,4486,4130,1104],"delegation":[18871,3486,3130,104],"delegatorTokens":9999999953013,"jailed":[null,1000000000000023,null,null],"status":["bonded","unbonding","bonded","unbonding"]}},{"ix":141,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":20,"t":120,"consumerPower":[19871,null,4130,null],"outstandingDowntime":[false,false,true,true]}},{"ix":142,"action":{"kind":"Deliver","chain":"provider","numPackets":3},"partialState":{"h":23,"t":138,"tokens":[19871,4486,4130,1104],"delegation":[18871,3486,3130,104],"delegatorTokens":9999999953013,"jailed":[null,1000000000000023,null,null],"status":["bonded","unbonding","bonded","unbonding"]}},{"ix":143,"action":{"kind":"Delegate","val":1,"amt":3284},"partialState":{"h":23,"t":138,"tokens":[19871,7770,4130,1104],"delegation":[18871,6770,3130,104],"delegatorTokens":9999999949729}},{"ix":144,"action":{"kind":"Deliver","chain":"provider","numPackets":6},"partialState":{"h":23,"t":138,"tokens":[19871,7770,4130,1104],"delegation":[18871,6770,3130,104],"delegatorTokens":9999999949729,"jailed":[null,1000000000000023,null,null],"status":["bonded","unbonding","bonded","unbonding"]}},{"ix":145,"action":{"kind":"Delegate","val":1,"amt":1702},"partialState":{"h":23,"t":138,"tokens":[19871,9472,4130,1104],"delegation":[18871,8472,3130,104],"delegatorTokens":9999999948027}},{"ix":146,"action":{"kind":"Deliver","chain":"consumer","numPackets":2},"partialState":{"h":20,"t":120,"consumerPower":[19871,null,4130,null],"outstandingDowntime":[false,false,true,true]}},{"ix":147,"action":{"kind":"Deliver","chain":"consumer","numPackets":2},"partialState":{"h":20,"t":120,"consumerPower":[19871,null,4130,null],"outstandingDowntime":[false,false,true,true]}},{"ix":148,"action":{"kind":"Delegate","val":0,"amt":4436},"partialState":{"h":23,"t":138,"tokens":[24307,9472,4130,1104],"delegation":[23307,8472,3130,104],"delegatorTokens":9999999943591}},{"ix":149,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":150,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":151,"action":{"kind":"Deliver","chain":"provider","numPackets":4},"partialState":{"h":23,"t":138,"tokens":[24307,9472,4130,1104],"delegation":[23307,8472,3130,104],"delegatorTokens":9999999943591,"jailed":[null,1000000000000023,null,null],"status":["bonded","unbonding","bonded","unbonding"]}},{"ix":152,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":21,"t":126,"consumerPower":[19871,null,4130,null],"outstandingDowntime":[false,false,true,true]}},{"ix":153,"action":{"kind":"Delegate","val":0,"amt":1159},"partialState":{"h":23,"t":138,"tokens":[25466,9472,4130,1104],"delegation":[24466,8472,3130,104],"delegatorTokens":9999999942432}},{"ix":154,"action":{"kind":"Delegate","val":3,"amt":4394},"partialState":{"h":23,"t":138,"tokens":[25466,9472,4130,5498],"delegation":[24466,8472,3130,4498],"delegatorTokens":9999999938038}},{"ix":155,"action":{"kind":"Undelegate","val":3,"amt":1985},"partialState":{"h":23,"t":138,"tokens":[25466,9472,4130,3513],"delegation":[24466,8472,3130,2513],"delegatorTokens":9999999938038}},{"ix":156,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":24,"t":144,"tokens":[25466,9472,4130,3513],"delegation":[24466,8472,3130,2513],"delegatorTokens":9999999941805,"jailed":[null,1000000000000023,null,null],"status":["bonded","unbonding","bonded","unbonding"]}},{"ix":157,"action":{"kind":"Delegate","val":0,"amt":3948},"partialState":{"h":24,"t":144,"tokens":[29414,9472,4130,3513],"delegation":[28414,8472,3130,2513],"delegatorTokens":9999999937857}},{"ix":158,"action":{"kind":"Undelegate","val":1,"amt":4322},"partialState":{"h":24,"t":144,"tokens":[29414,5150,4130,3513],"delegation":[28414,4150,3130,2513],"delegatorTokens":9999999937857}},{"ix":159,"action":{"kind":"Deliver","chain":"provider","numPackets":5},"partialState":{"h":24,"t":144,"tokens":[29414,5150,4130,3513],"delegation":[28414,4150,3130,2513],"delegatorTokens":9999999937857,"jailed":[null,1000000000000023,null,null],"status":["bonded","unbonding","bonded","unbonding"]}},{"ix":160,"action":{"kind":"Undelegate","val":0,"amt":3076},"partialState":{"h":24,"t":144,"tokens":[26338,5150,4130,3513],"delegation":[25338,4150,3130,2513],"delegatorTokens":9999999937857}},{"ix":161,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":162,"action":{"kind":"Deliver","chain":"provider","numPackets":6},"partialState":{"h":24,"t":144,"tokens":[26338,5150,4130,3513],"delegation":[25338,4150,3130,2513],"delegatorTokens":9999999937857,"jailed":[null,1000000000000023,null,null],"status":["bonded","unbonding","bonded","unbonding"]}},{"ix":163,"action":{"kind":"Deliver","chain":"consumer","numPackets":1},"partialState":{"h":21,"t":126,"consumerPower":[19871,null,4130,null],"outstandingDowntime":[false,false,true,true]}},{"ix":164,"action":{"kind":"Undelegate","val":3,"amt":4516},"partialState":{"h":24,"t":144,"tokens":[26338,5150,4130,3513],"delegation":[25338,4150,3130,2513],"delegatorTokens":9999999937857}},{"ix":165,"action":{"kind":"Delegate","val":3,"amt":4431},"partialState":{"h":24,"t":144,"tokens":[26338,5150,4130,7944],"delegation":[25338,4150,3130,6944],"delegatorTokens":9999999933426}},{"ix":166,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":22,"t":132,"consumerPower":[19871,null,4130,null],"outstandingDowntime":[false,false,true,true]}},{"ix":167,"action":{"kind":"Delegate","val":0,"amt":2781},"partialState":{"h":24,"t":144,"tokens":[29119,5150,4130,7944],"delegation":[28119,4150,3130,6944],"delegatorTokens":9999999930645}},{"ix":168,"action":{"kind":"Deliver","chain":"consumer","numPackets":5},"partialState":{"h":22,"t":132,"consumerPower":[19871,null,4130,null],"outstandingDowntime":[false,false,true,true]}},{"ix":169,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":23,"t":138,"consumerPower":[19871,null,4130,null],"outstandingDowntime":[false,false,true,true]}},{"ix":170,"action":{"kind":"Deliver","chain":"provider","numPackets":5},"partialState":{"h":24,"t":144,"tokens":[29119,5150,4130,7944],"delegation":[28119,4150,3130,6944],"delegatorTokens":9999999930645,"jailed":[null,1000000000000023,null,null],"status":["bonded","unbonding","bonded","unbonding"]}},{"ix":171,"action":{"kind":"Deliver","chain":"provider","numPackets":1},"partialState":{"h":24,"t":144,"tokens":[29119,5150,4130,7944],"delegation":[28119,4150,3130,6944],"delegatorTokens":9999999930645,"jailed":[null,1000000000000023,null,null],"status":["bonded","unbonding","bonded","unbonding"]}},{"ix":172,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":173,"action":{"kind":"Undelegate","val":1,"amt":3348},"partialState":{"h":24,"t":144,"tokens":[29119,1802,4130,7944],"delegation":[28119,802,3130,6944],"delegatorTokens":9999999930645}},{"ix":174,"action":{"kind":"Undelegate","val":2,"amt":3340},"partialState":{"h":24,"t":144,"tokens":[29119,1802,4130,7944],"delegation":[28119,802,3130,6944],"delegatorTokens":9999999930645}},{"ix":175,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":24,"t":144,"consumerPower":[19871,null,4130,null],"outstandingDowntime":[false,false,true,true]}},{"ix":176,"action":{"kind":"Undelegate","val":2,"amt":3120},"partialState":{"h":24,"t":144,"tokens":[29119,1802,1010,7944],"delegation":[28119,802,10,6944],"delegatorTokens":9999999930645}},{"ix":177,"action":{"kind":"Delegate","val":3,"amt":1691},"partialState":{"h":24,"t":144,"tokens":[29119,1802,1010,9635],"delegation":[28119,802,10,8635],"delegatorTokens":9999999928954}},{"ix":178,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":25,"t":150,"tokens":[29119,1802,1010,9635],"delegation":[28119,802,10,8635],"delegatorTokens":9999999935190,"jailed":[null,1000000000000023,null,null],"status":["bonded","unbonded","unbonding","bonded"]}},{"ix":179,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":180,"action":{"kind":"Delegate","val":0,"amt":4286},"partialState":{"h":25,"t":150,"tokens":[33405,1802,1010,9635],"delegation":[32405,802,10,8635],"delegatorTokens":9999999930904}},{"ix":181,"action":{"kind":"Undelegate","val":3,"amt":3806},"partialState":{"h":25,"t":150,"tokens":[33405,1802,1010,5829],"delegation":[32405,802,10,4829],"delegatorTokens":9999999930904}},{"ix":182,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":26,"t":156,"tokens":[33405,1802,1010,5829],"delegation":[32405,802,10,4829],"delegatorTokens":9999999940651,"jailed":[null,1000000000000023,null,null],"status":["bonded","unbonded","unbonding","bonded"]}},{"ix":183,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":27,"t":162,"tokens":[33405,1802,1010,5829],"delegation":[32405,802,10,4829],"delegatorTokens":9999999940651,"jailed":[null,1000000000000023,null,null],"status":["bonded","unbonded","unbonding","bonded"]}},{"ix":184,"action":{"kind":"Undelegate","val":1,"amt":2230},"partialState":{"h":27,"t":162,"tokens":[33405,1802,1010,5829],"delegation":[32405,802,10,4829],"delegatorTokens":9999999940651}},{"ix":185,"action":{"kind":"Undelegate","val":3,"amt":4387},"partialState":{"h":27,"t":162,"tokens":[33405,1802,1010,1442],"delegation":[32405,802,10,442],"delegatorTokens":9999999940651}},{"ix":186,"action":{"kind":"Deliver","chain":"provider","numPackets":2},"partialState":{"h":27,"t":162,"tokens":[33405,1802,1010,1442],"delegation":[32405,802,10,442],"delegatorTokens":9999999940651,"jailed":[null,1000000000000023,null,null],"status":["bonded","unbonded","unbonding","bonded"]}},{"ix":187,"action":{"kind":"Delegate","val":2,"amt":4369},"partialState":{"h":27,"t":162,"tokens":[33405,1802,5379,1442],"delegation":[32405,802,4379,442],"delegatorTokens":9999999936282}},{"ix":188,"action":{"kind":"Undelegate","val":0,"amt":1657},"partialState":{"h":27,"t":162,"tokens":[31748,1802,5379,1442],"delegation":[30748,802,4379,442],"delegatorTokens":9999999936282}},{"ix":189,"action":{"kind":"Delegate","val":3,"amt":2449},"partialState":{"h":27,"t":162,"tokens":[31748,1802,5379,3891],"delegation":[30748,802,4379,2891],"delegatorTokens":9999999933833}},{"ix":190,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":25,"t":150,"consumerPower":[19871,null,4130,null],"outstandingDowntime":[false,false,true,true]}},{"ix":191,"action":{"kind":"Undelegate","val":1,"amt":2556},"partialState":{"h":27,"t":162,"tokens":[31748,1802,5379,3891],"delegation":[30748,802,4379,2891],"delegatorTokens":9999999933833}},{"ix":192,"action":{"kind":"Deliver","chain":"provider","numPackets":1},"partialState":{"h":27,"t":162,"tokens":[31748,1802,5379,3891],"delegation":[30748,802,4379,2891],"delegatorTokens":9999999933833,"jailed":[null,1000000000000023,null,null],"status":["bonded","unbonded","unbonding","bonded"]}},{"ix":193,"action":{"kind":"Deliver","chain":"provider","numPackets":2},"partialState":{"h":27,"t":162,"tokens":[31748,1802,5379,3891],"delegation":[30748,802,4379,2891],"delegatorTokens":9999999933833,"jailed":[null,1000000000000023,null,null],"status":["bonded","unbonded","unbonding","bonded"]}},{"ix":194,"action":{"kind":"Undelegate","val":1,"amt":3326},"partialState":{"h":27,"t":162,"tokens":[31748,1802,5379,3891],"delegation":[30748,802,4379,2891],"delegatorTokens":9999999933833}},{"ix":195,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":196,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":26,"t":156,"consumerPower":[19871,null,4130,null],"outstandingDowntime":[false,false,true,true]}},{"ix":197,"action":{"kind":"Delegate","val":1,"amt":1173},"partialState":{"h":27,"t":162,"tokens":[31748,2975,5379,3891],"delegation":[30748,1975,4379,2891],"delegatorTokens":9999999932660}},{"ix":198,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":27,"t":162,"consumerPower":[19871,null,4130,null],"outstandingDowntime":[false,false,true,true]}},{"ix":199,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}}],"events":["send_downtime_slash_request","send_vsc_without_downtime_ack","insufficient_shares","send_downtime_slash_request","insufficient_shares","downtime_slash_request_outstanding","send_vsc_without_downtime_ack","insufficient_shares","insufficient_shares","downtime_slash_request_outstanding","send_double_sign_slash_request","send_downtime_slash_request","consumer_update_val","receive_slash_request_unbonded","receive_slash_request_unbonded","send_vsc_without_downtime_ack","insufficient_shares","insufficient_shares","consumer_update_val","consumer_update_val","receive_double_sign_slash_request","insufficient_shares","receive_downtime_slash_request","jail","send_vsc_not_because_change","send_vsc_with_downtime_ack","insufficient_shares","consumer_update_val","consumer_update_val","send_vsc_without_downtime_ack","receive_downtime_slash_ack","send_vsc_without_downtime_ack","send_vsc_without_downtime_ack","send_vsc_not_because_change","send_vsc_without_downtime_ack","send_vsc_without_downtime_ack","consumer_del_val","consumer_add_val","consumer_update_val","some_undels_expired_but_not_completed","send_vsc_without_downtime_ack","some_undels_expired_but_not_completed","some_undels_expired_but_not_completed","consumer_send_maturation","consumer_update_val","consumer_update_val","consumer_send_maturation","insufficient_shares","insufficient_shares","consumer_send_maturation","consumer_send_maturation","complete_undel_immediate","complete_undel_immediate","complete_undel_immediate","complete_undel_immediate","complete_undel_immediate","send_vsc_without_downtime_ack","some_undels_expired_but_not_completed","send_vsc_without_downtime_ack","consumer_send_maturation","consumer_send_maturation","consumer_add_val","consumer_del_val","consumer_update_val","some_undels_expired_but_not_completed","complete_undel_immediate","set_unval_hold_false","complete_undel_immediate","send_vsc_without_downtime_ack","insufficient_shares","consumer_send_maturation","consumer_send_maturation","consumer_send_maturation","consumer_send_maturation","insufficient_shares","rebond_unval","complete_unval_in_endblock","complete_undel_immediate","complete_undel_immediate","set_undel_hold_false","set_undel_hold_false","set_undel_hold_false","set_undel_hold_false","set_undel_hold_false","send_vsc_without_downtime_ack","complete_undel_in_endblock","send_vsc_without_downtime_ack","insufficient_shares","insufficient_shares","insufficient_shares"]},{"meta":{"commit":"7ffd0c04e4205cbc9caf212abfe6c59ee43153bf"},"constants":{"P":"provider","C":"consumer","UNBONDING_SECONDS_P":70,"UNBONDING_SECONDS_C":50,"TRUSTING_SECONDS":49,"NUM_VALIDATORS":4,"MAX_VALIDATORS":2,"SLASH_DOUBLESIGN":0,"SLASH_DOWNTIME":0,"JAIL_SECONDS":999999999999999,"BLOCK_SECONDS":6,"INITIAL_DELEGATOR_TOKENS":10000000000000,"DELEGATE_AMT_MIN":1000,"DELEGATE_AMT_MAX":5000,"UNDELEGATE_AMT_MIN":1000,"UNDELEGATE_AMT_MAX":5000,"ISDOWNTIME_PROBABILITY":0.5,"MAX_NUM_PACKETS_FOR_DELIVER":6},"actions":[{"ix":0,"action":{"kind":"Delegate","val":0,"amt":2191},"partialState":{"h":1,"t":6,"tokens":[7191,4000,3000,2000],"delegation":[6191,3000,2000,1000],"delegatorTokens":9999999997809}},{"ix":1,"action":{"kind":"ConsumerSlash","val":2,"infractionHeight":0,"isDowntime":true},"partialState":{"h":1,"t":6,"outstandingDowntime":[false,false,true,false]}},{"ix":2,"action":{"kind":"Deliver","chain":"provider","numPackets":2},"partialState":{"h":1,"t":6,"tokens":[7191,4000,3000,2000],"delegation":[6191,3000,2000,1000],"delegatorTokens":9999999997809,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":3,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":2,"t":12,"tokens":[7191,4000,3000,2000],"delegation":[6191,3000,2000,1000],"delegatorTokens":9999999997809,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":4,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":5,"action":{"kind":"Deliver","chain":"provider","numPackets":1},"partialState":{"h":2,"t":12,"tokens":[7191,4000,3000,2000],"delegation":[6191,3000,2000,1000],"delegatorTokens":9999999997809,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":6,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":2,"t":12,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,false,true,false]}},{"ix":7,"action":{"kind":"ConsumerSlash","val":2,"infractionHeight":1,"isDowntime":true},"partialState":{"h":2,"t":12,"outstandingDowntime":[false,false,true,false]}},{"ix":8,"action":{"kind":"Undelegate","val":2,"amt":2860},"partialState":{"h":2,"t":12,"tokens":[7191,4000,3000,2000],"delegation":[6191,3000,2000,1000],"delegatorTokens":9999999997809}},{"ix":9,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":3,"t":18,"tokens":[7191,4000,3000,2000],"delegation":[6191,3000,2000,1000],"delegatorTokens":9999999997809,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":10,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":4,"t":24,"tokens":[7191,4000,3000,2000],"delegation":[6191,3000,2000,1000],"delegatorTokens":9999999997809,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":11,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":3,"t":18,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,false,true,false]}},{"ix":12,"action":{"kind":"Delegate","val":0,"amt":1817},"partialState":{"h":4,"t":24,"tokens":[9008,4000,3000,2000],"delegation":[8008,3000,2000,1000],"delegatorTokens":9999999995992}},{"ix":13,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":5,"t":30,"tokens":[9008,4000,3000,2000],"delegation":[8008,3000,2000,1000],"delegatorTokens":9999999995992,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":14,"action":{"kind":"ConsumerSlash","val":3,"infractionHeight":0,"isDowntime":true},"partialState":{"h":3,"t":18,"outstandingDowntime":[false,false,true,true]}},{"ix":15,"action":{"kind":"Delegate","val":3,"amt":3610},"partialState":{"h":5,"t":30,"tokens":[9008,4000,3000,5610],"delegation":[8008,3000,2000,4610],"delegatorTokens":9999999992382}},{"ix":16,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":17,"action":{"kind":"ConsumerSlash","val":2,"infractionHeight":0,"isDowntime":true},"partialState":{"h":3,"t":18,"outstandingDowntime":[false,false,true,true]}},{"ix":18,"action":{"kind":"Deliver","chain":"provider","numPackets":3},"partialState":{"h":5,"t":30,"tokens":[9008,4000,3000,5610],"delegation":[8008,3000,2000,4610],"delegatorTokens":9999999992382,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":19,"action":{"kind":"Undelegate","val":2,"amt":1067},"partialState":{"h":5,"t":30,"tokens":[9008,4000,1933,5610],"delegation":[8008,3000,933,4610],"delegatorTokens":9999999992382}},{"ix":20,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":21,"action":{"kind":"Undelegate","val":1,"amt":2461},"partialState":{"h":5,"t":30,"tokens":[9008,1539,1933,5610],"delegation":[8008,539,933,4610],"delegatorTokens":9999999992382}},{"ix":22,"action":{"kind":"Deliver","chain":"consumer","numPackets":1},"partialState":{"h":3,"t":18,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,false,true,true]}},{"ix":23,"action":{"kind":"Undelegate","val":1,"amt":4547},"partialState":{"h":5,"t":30,"tokens":[9008,1539,1933,5610],"delegation":[8008,539,933,4610],"delegatorTokens":9999999992382}},{"ix":24,"action":{"kind":"ConsumerSlash","val":1,"infractionHeight":0,"isDowntime":true},"partialState":{"h":3,"t":18,"outstandingDowntime":[false,true,true,true]}},{"ix":25,"action":{"kind":"Undelegate","val":1,"amt":1368},"partialState":{"h":5,"t":30,"tokens":[9008,1539,1933,5610],"delegation":[8008,539,933,4610],"delegatorTokens":9999999992382}},{"ix":26,"action":{"kind":"Delegate","val":2,"amt":3719},"partialState":{"h":5,"t":30,"tokens":[9008,1539,5652,5610],"delegation":[8008,539,4652,4610],"delegatorTokens":9999999988663}},{"ix":27,"action":{"kind":"Undelegate","val":1,"amt":3282},"partialState":{"h":5,"t":30,"tokens":[9008,1539,5652,5610],"delegation":[8008,539,4652,4610],"delegatorTokens":9999999988663}},{"ix":28,"action":{"kind":"Deliver","chain":"consumer","numPackets":5},"partialState":{"h":3,"t":18,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,true,true,true]}},{"ix":29,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":4,"t":24,"consumerPower":[7191,4000,null,null],"outstandingDowntime":[false,true,true,true]}},{"ix":30,"action":{"kind":"Delegate","val":1,"amt":1510},"partialState":{"h":5,"t":30,"tokens":[9008,3049,5652,5610],"delegation":[8008,2049,4652,4610],"delegatorTokens":9999999987153}},{"ix":31,"action":{"kind":"Deliver","chain":"provider","numPackets":2},"partialState":{"h":5,"t":30,"tokens":[9008,3049,5652,5610],"delegation":[8008,2049,4652,4610],"delegatorTokens":9999999987153,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":32,"action":{"kind":"Delegate","val":1,"amt":2087},"partialState":{"h":5,"t":30,"tokens":[9008,5136,5652,5610],"delegation":[8008,4136,4652,4610],"delegatorTokens":9999999985066}},{"ix":33,"action":{"kind":"Delegate","val":1,"amt":1389},"partialState":{"h":5,"t":30,"tokens":[9008,6525,5652,5610],"delegation":[8008,5525,4652,4610],"delegatorTokens":9999999983677}},{"ix":34,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":35,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":6,"t":36,"tokens":[9008,6525,5652,5610],"delegation":[8008,5525,4652,4610],"delegatorTokens":9999999983677,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":36,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":5,"t":30,"consumerPower":[7191,4000,null,null],"outstandingDowntime":[false,true,true,true]}},{"ix":37,"action":{"kind":"Delegate","val":0,"amt":4592},"partialState":{"h":6,"t":36,"tokens":[13600,6525,5652,5610],"delegation":[12600,5525,4652,4610],"delegatorTokens":9999999979085}},{"ix":38,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":39,"action":{"kind":"Deliver","chain":"consumer","numPackets":3},"partialState":{"h":5,"t":30,"consumerPower":[7191,4000,null,null],"outstandingDowntime":[false,true,true,true]}},{"ix":40,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":7,"t":42,"tokens":[13600,6525,5652,5610],"delegation":[12600,5525,4652,4610],"delegatorTokens":9999999979085,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":41,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":6,"t":36,"consumerPower":[9008,4000,null,null],"outstandingDowntime":[false,true,true,true]}},{"ix":42,"action":{"kind":"Deliver","chain":"consumer","numPackets":6},"partialState":{"h":6,"t":36,"consumerPower":[9008,4000,null,null],"outstandingDowntime":[false,true,true,true]}},{"ix":43,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":44,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":8,"t":48,"tokens":[13600,6525,5652,5610],"delegation":[12600,5525,4652,4610],"delegatorTokens":9999999979085,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":45,"action":{"kind":"Undelegate","val":3,"amt":3148},"partialState":{"h":8,"t":48,"tokens":[13600,6525,5652,2462],"delegation":[12600,5525,4652,1462],"delegatorTokens":9999999979085}},{"ix":46,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":47,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":48,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":49,"action":{"kind":"Delegate","val":0,"amt":4396},"partialState":{"h":8,"t":48,"tokens":[17996,6525,5652,2462],"delegation":[16996,5525,4652,1462],"delegatorTokens":9999999974689}},{"ix":50,"action":{"kind":"Delegate","val":1,"amt":4378},"partialState":{"h":8,"t":48,"tokens":[17996,10903,5652,2462],"delegation":[16996,9903,4652,1462],"delegatorTokens":9999999970311}},{"ix":51,"action":{"kind":"Delegate","val":2,"amt":2519},"partialState":{"h":8,"t":48,"tokens":[17996,10903,8171,2462],"delegation":[16996,9903,7171,1462],"delegatorTokens":9999999967792}},{"ix":52,"action":{"kind":"Undelegate","val":3,"amt":1128},"partialState":{"h":8,"t":48,"tokens":[17996,10903,8171,1334],"delegation":[16996,9903,7171,334],"delegatorTokens":9999999967792}},{"ix":53,"action":{"kind":"Delegate","val":2,"amt":4840},"partialState":{"h":8,"t":48,"tokens":[17996,10903,13011,1334],"delegation":[16996,9903,12011,334],"delegatorTokens":9999999962952}},{"ix":54,"action":{"kind":"Deliver","chain":"consumer","numPackets":2},"partialState":{"h":6,"t":36,"consumerPower":[9008,4000,null,null],"outstandingDowntime":[false,true,true,true]}},{"ix":55,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":7,"t":42,"consumerPower":[13600,6525,null,null],"outstandingDowntime":[false,true,true,true]}},{"ix":56,"action":{"kind":"Undelegate","val":0,"amt":1328},"partialState":{"h":8,"t":48,"tokens":[16668,10903,13011,1334],"delegation":[15668,9903,12011,334],"delegatorTokens":9999999962952}},{"ix":57,"action":{"kind":"Undelegate","val":1,"amt":4196},"partialState":{"h":8,"t":48,"tokens":[16668,6707,13011,1334],"delegation":[15668,5707,12011,334],"delegatorTokens":9999999962952}},{"ix":58,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":9,"t":54,"tokens":[16668,6707,13011,1334],"delegation":[15668,5707,12011,334],"delegatorTokens":9999999962952,"jailed":[null,null,null,null],"status":["bonded","unbonding","bonded","unbonded"]}},{"ix":59,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":60,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":61,"action":{"kind":"Delegate","val":0,"amt":4178},"partialState":{"h":9,"t":54,"tokens":[20846,6707,13011,1334],"delegation":[19846,5707,12011,334],"delegatorTokens":9999999958774}},{"ix":62,"action":{"kind":"Deliver","chain":"provider","numPackets":1},"partialState":{"h":9,"t":54,"tokens":[20846,6707,13011,1334],"delegation":[19846,5707,12011,334],"delegatorTokens":9999999958774,"jailed":[null,null,null,null],"status":["bonded","unbonding","bonded","unbonded"]}},{"ix":63,"action":{"kind":"Delegate","val":1,"amt":1513},"partialState":{"h":9,"t":54,"tokens":[20846,8220,13011,1334],"delegation":[19846,7220,12011,334],"delegatorTokens":9999999957261}},{"ix":64,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":65,"action":{"kind":"Delegate","val":1,"amt":1446},"partialState":{"h":9,"t":54,"tokens":[20846,9666,13011,1334],"delegation":[19846,8666,12011,334],"delegatorTokens":9999999955815}},{"ix":66,"action":{"kind":"Deliver","chain":"provider","numPackets":3},"partialState":{"h":9,"t":54,"tokens":[20846,9666,13011,1334],"delegation":[19846,8666,12011,334],"delegatorTokens":9999999955815,"jailed":[null,null,null,null],"status":["bonded","unbonding","bonded","unbonded"]}},{"ix":67,"action":{"kind":"Delegate","val":0,"amt":2717},"partialState":{"h":9,"t":54,"tokens":[23563,9666,13011,1334],"delegation":[22563,8666,12011,334],"delegatorTokens":9999999953098}},{"ix":68,"action":{"kind":"Deliver","chain":"consumer","numPackets":3},"partialState":{"h":7,"t":42,"consumerPower":[13600,6525,null,null],"outstandingDowntime":[false,true,true,true]}},{"ix":69,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":70,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":10,"t":60,"tokens":[23563,9666,13011,1334],"delegation":[22563,8666,12011,334],"delegatorTokens":9999999953098,"jailed":[null,1000000000000053,null,null],"status":["bonded","unbonding","bonded","unbonded"]}},{"ix":71,"action":{"kind":"Deliver","chain":"consumer","numPackets":6},"partialState":{"h":7,"t":42,"consumerPower":[13600,6525,null,null],"outstandingDowntime":[false,true,true,true]}},{"ix":72,"action":{"kind":"Delegate","val":0,"amt":2024},"partialState":{"h":10,"t":60,"tokens":[25587,9666,13011,1334],"delegation":[24587,8666,12011,334],"delegatorTokens":9999999951074}},{"ix":73,"action":{"kind":"Deliver","chain":"provider","numPackets":3},"partialState":{"h":10,"t":60,"tokens":[25587,9666,13011,1334],"delegation":[24587,8666,12011,334],"delegatorTokens":9999999951074,"jailed":[null,1000000000000053,null,null],"status":["bonded","unbonding","bonded","unbonded"]}},{"ix":74,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":11,"t":66,"tokens":[25587,9666,13011,1334],"delegation":[24587,8666,12011,334],"delegatorTokens":9999999951074,"jailed":[null,1000000000000053,null,null],"status":["bonded","unbonding","bonded","unbonded"]}},{"ix":75,"action":{"kind":"Undelegate","val":1,"amt":3927},"partialState":{"h":11,"t":66,"tokens":[25587,5739,13011,1334],"delegation":[24587,4739,12011,334],"delegatorTokens":9999999951074}},{"ix":76,"action":{"kind":"Delegate","val":3,"amt":4099},"partialState":{"h":11,"t":66,"tokens":[25587,5739,13011,5433],"delegation":[24587,4739,12011,4433],"delegatorTokens":9999999946975}},{"ix":77,"action":{"kind":"Undelegate","val":3,"amt":1024},"partialState":{"h":11,"t":66,"tokens":[25587,5739,13011,4409],"delegation":[24587,4739,12011,3409],"delegatorTokens":9999999946975}},{"ix":78,"action":{"kind":"Undelegate","val":3,"amt":3245},"partialState":{"h":11,"t":66,"tokens":[25587,5739,13011,1164],"delegation":[24587,4739,12011,164],"delegatorTokens":9999999946975}},{"ix":79,"action":{"kind":"Delegate","val":3,"amt":4147},"partialState":{"h":11,"t":66,"tokens":[25587,5739,13011,5311],"delegation":[24587,4739,12011,4311],"delegatorTokens":9999999942828}},{"ix":80,"action":{"kind":"Deliver","chain":"provider","numPackets":4},"partialState":{"h":11,"t":66,"tokens":[25587,5739,13011,5311],"delegation":[24587,4739,12011,4311],"delegatorTokens":9999999942828,"jailed":[null,1000000000000053,null,null],"status":["bonded","unbonding","bonded","unbonded"]}},{"ix":81,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":82,"action":{"kind":"Undelegate","val":3,"amt":2965},"partialState":{"h":11,"t":66,"tokens":[25587,5739,13011,2346],"delegation":[24587,4739,12011,1346],"delegatorTokens":9999999942828}},{"ix":83,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":84,"action":{"kind":"Delegate","val":0,"amt":4987},"partialState":{"h":11,"t":66,"tokens":[30574,5739,13011,2346],"delegation":[29574,4739,12011,1346],"delegatorTokens":9999999937841}},{"ix":85,"action":{"kind":"Deliver","chain":"provider","numPackets":4},"partialState":{"h":11,"t":66,"tokens":[30574,5739,13011,2346],"delegation":[29574,4739,12011,1346],"delegatorTokens":9999999937841,"jailed":[null,1000000000000053,null,null],"status":["bonded","unbonding","bonded","unbonded"]}},{"ix":86,"action":{"kind":"Delegate","val":2,"amt":4902},"partialState":{"h":11,"t":66,"tokens":[30574,5739,17913,2346],"delegation":[29574,4739,16913,1346],"delegatorTokens":9999999932939}},{"ix":87,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":8,"t":48,"consumerPower":[16668,null,13011,null],"outstandingDowntime":[false,true,true,true]}},{"ix":88,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":89,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":12,"t":72,"tokens":[30574,5739,17913,2346],"delegation":[29574,4739,16913,1346],"delegatorTokens":9999999932939,"jailed":[null,1000000000000053,null,null],"status":["bonded","unbonding","bonded","unbonded"]}},{"ix":90,"action":{"kind":"Deliver","chain":"provider","numPackets":4},"partialState":{"h":12,"t":72,"tokens":[30574,5739,17913,2346],"delegation":[29574,4739,16913,1346],"delegatorTokens":9999999932939,"jailed":[null,1000000000000053,null,null],"status":["bonded","unbonding","bonded","unbonded"]}},{"ix":91,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":92,"action":{"kind":"Deliver","chain":"consumer","numPackets":4},"partialState":{"h":8,"t":48,"consumerPower":[16668,null,13011,null],"outstandingDowntime":[false,false,true,true]}},{"ix":93,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":9,"t":54,"consumerPower":[25587,null,13011,null],"outstandingDowntime":[false,false,true,true]}},{"ix":94,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":10,"t":60,"consumerPower":[25587,null,13011,null],"outstandingDowntime":[false,false,true,true]}},{"ix":95,"action":{"kind":"Undelegate","val":0,"amt":1793},"partialState":{"h":12,"t":72,"tokens":[28781,5739,17913,2346],"delegation":[27781,4739,16913,1346],"delegatorTokens":9999999932939}},{"ix":96,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":11,"t":66,"consumerPower":[25587,null,13011,null],"outstandingDowntime":[false,false,true,true]}},{"ix":97,"action":{"kind":"Undelegate","val":1,"amt":4015},"partialState":{"h":12,"t":72,"tokens":[28781,1724,17913,2346],"delegation":[27781,724,16913,1346],"delegatorTokens":9999999932939}},{"ix":98,"action":{"kind":"Deliver","chain":"provider","numPackets":6},"partialState":{"h":12,"t":72,"tokens":[28781,1724,17913,2346],"delegation":[27781,724,16913,1346],"delegatorTokens":9999999932939,"jailed":[null,1000000000000053,null,null],"status":["bonded","unbonding","bonded","unbonded"]}},{"ix":99,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":12,"t":72,"consumerPower":[25587,null,13011,null],"outstandingDowntime":[false,false,true,true]}},{"ix":100,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":101,"action":{"kind":"Deliver","chain":"consumer","numPackets":4},"partialState":{"h":12,"t":72,"consumerPower":[25587,null,13011,null],"outstandingDowntime":[false,false,true,true]}},{"ix":102,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":13,"t":78,"consumerPower":[25587,null,13011,null],"outstandingDowntime":[false,false,true,true]}},{"ix":103,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":104,"action":{"kind":"Undelegate","val":1,"amt":4617},"partialState":{"h":12,"t":72,"tokens":[28781,1724,17913,2346],"delegation":[27781,724,16913,1346],"delegatorTokens":9999999932939}},{"ix":105,"action":{"kind":"Undelegate","val":1,"amt":3420},"partialState":{"h":12,"t":72,"tokens":[28781,1724,17913,2346],"delegation":[27781,724,16913,1346],"delegatorTokens":9999999932939}},{"ix":106,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":107,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":108,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":14,"t":84,"consumerPower":[25587,null,13011,null],"outstandingDowntime":[false,false,true,true]}},{"ix":109,"action":{"kind":"Deliver","chain":"consumer","numPackets":3},"partialState":{"h":14,"t":84,"consumerPower":[25587,null,13011,null],"outstandingDowntime":[false,false,true,true]}},{"ix":110,"action":{"kind":"Deliver","chain":"consumer","numPackets":6},"partialState":{"h":14,"t":84,"consumerPower":[25587,null,13011,null],"outstandingDowntime":[false,false,true,true]}},{"ix":111,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":13,"t":78,"tokens":[28781,1724,17913,2346],"delegation":[27781,724,16913,1346],"delegatorTokens":9999999932939,"jailed":[null,1000000000000053,null,null],"status":["bonded","unbonding","bonded","unbonded"]}},{"ix":112,"action":{"kind":"Deliver","chain":"consumer","numPackets":5},"partialState":{"h":14,"t":84,"consumerPower":[25587,null,13011,null],"outstandingDowntime":[false,false,true,true]}},{"ix":113,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":15,"t":90,"consumerPower":[30574,null,17913,null],"outstandingDowntime":[false,false,true,true]}},{"ix":114,"action":{"kind":"Delegate","val":1,"amt":1293},"partialState":{"h":13,"t":78,"tokens":[28781,3017,17913,2346],"delegation":[27781,2017,16913,1346],"delegatorTokens":9999999931646}},{"ix":115,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":116,"action":{"kind":"Deliver","chain":"provider","numPackets":4},"partialState":{"h":13,"t":78,"tokens":[28781,3017,17913,2346],"delegation":[27781,2017,16913,1346],"delegatorTokens":9999999931646,"jailed":[null,1000000000000053,null,null],"status":["bonded","unbonding","bonded","unbonded"]}},{"ix":117,"action":{"kind":"Delegate","val":1,"amt":3842},"partialState":{"h":13,"t":78,"tokens":[28781,6859,17913,2346],"delegation":[27781,5859,16913,1346],"delegatorTokens":9999999927804}},{"ix":118,"action":{"kind":"Undelegate","val":3,"amt":3967},"partialState":{"h":13,"t":78,"tokens":[28781,6859,17913,2346],"delegation":[27781,5859,16913,1346],"delegatorTokens":9999999927804}},{"ix":119,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":120,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":14,"t":84,"tokens":[28781,6859,17913,2346],"delegation":[27781,5859,16913,1346],"delegatorTokens":9999999927804,"jailed":[null,1000000000000053,null,null],"status":["bonded","unbonding","bonded","unbonded"]}},{"ix":121,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":15,"t":90,"tokens":[28781,6859,17913,2346],"delegation":[27781,5859,16913,1346],"delegatorTokens":9999999927804,"jailed":[null,1000000000000053,null,null],"status":["bonded","unbonding","bonded","unbonded"]}},{"ix":122,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":16,"t":96,"tokens":[28781,6859,17913,2346],"delegation":[27781,5859,16913,1346],"delegatorTokens":9999999927804,"jailed":[null,1000000000000053,null,null],"status":["bonded","unbonding","bonded","unbonded"]}},{"ix":123,"action":{"kind":"Undelegate","val":0,"amt":1049},"partialState":{"h":16,"t":96,"tokens":[27732,6859,17913,2346],"delegation":[26732,5859,16913,1346],"delegatorTokens":9999999927804}},{"ix":124,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":125,"action":{"kind":"Undelegate","val":1,"amt":1054},"partialState":{"h":16,"t":96,"tokens":[27732,5805,17913,2346],"delegation":[26732,4805,16913,1346],"delegatorTokens":9999999927804}},{"ix":126,"action":{"kind":"Deliver","chain":"consumer","numPackets":6},"partialState":{"h":15,"t":90,"consumerPower":[30574,null,17913,null],"outstandingDowntime":[false,false,true,true]}},{"ix":127,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":16,"t":96,"consumerPower":[28781,null,17913,null],"outstandingDowntime":[false,false,true,true]}},{"ix":128,"action":{"kind":"Undelegate","val":2,"amt":2605},"partialState":{"h":16,"t":96,"tokens":[27732,5805,15308,2346],"delegation":[26732,4805,14308,1346],"delegatorTokens":9999999927804}},{"ix":129,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":17,"t":102,"tokens":[27732,5805,15308,2346],"delegation":[26732,4805,14308,1346],"delegatorTokens":9999999927804,"jailed":[null,1000000000000053,null,null],"status":["bonded","unbonding","bonded","unbonded"]}},{"ix":130,"action":{"kind":"Deliver","chain":"consumer","numPackets":4},"partialState":{"h":16,"t":96,"consumerPower":[28781,null,17913,null],"outstandingDowntime":[false,false,true,true]}},{"ix":131,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":17,"t":102,"consumerPower":[28781,null,17913,null],"outstandingDowntime":[false,false,true,true]}},{"ix":132,"action":{"kind":"Delegate","val":3,"amt":2443},"partialState":{"h":17,"t":102,"tokens":[27732,5805,15308,4789],"delegation":[26732,4805,14308,3789],"delegatorTokens":9999999925361}},{"ix":133,"action":{"kind":"Deliver","chain":"provider","numPackets":4},"partialState":{"h":17,"t":102,"tokens":[27732,5805,15308,4789],"delegation":[26732,4805,14308,3789],"delegatorTokens":9999999925361,"jailed":[null,1000000000000053,null,null],"status":["bonded","unbonding","bonded","unbonded"]}},{"ix":134,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":135,"action":{"kind":"Undelegate","val":3,"amt":1399},"partialState":{"h":17,"t":102,"tokens":[27732,5805,15308,3390],"delegation":[26732,4805,14308,2390],"delegatorTokens":9999999925361}},{"ix":136,"action":{"kind":"Deliver","chain":"provider","numPackets":5},"partialState":{"h":17,"t":102,"tokens":[27732,5805,15308,3390],"delegation":[26732,4805,14308,2390],"delegatorTokens":9999999925361,"jailed":[null,1000000000000053,null,null],"status":["bonded","unbonding","bonded","unbonded"]}},{"ix":137,"action":{"kind":"Undelegate","val":1,"amt":2898},"partialState":{"h":17,"t":102,"tokens":[27732,2907,15308,3390],"delegation":[26732,1907,14308,2390],"delegatorTokens":9999999925361}},{"ix":138,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":18,"t":108,"tokens":[27732,2907,15308,3390],"delegation":[26732,1907,14308,2390],"delegatorTokens":9999999928889,"jailed":[null,1000000000000053,null,null],"status":["bonded","unbonding","bonded","unbonded"]}},{"ix":139,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":140,"action":{"kind":"Deliver","chain":"consumer","numPackets":2},"partialState":{"h":17,"t":102,"consumerPower":[28781,null,17913,null],"outstandingDowntime":[false,false,true,true]}},{"ix":141,"action":{"kind":"Delegate","val":0,"amt":4176},"partialState":{"h":18,"t":108,"tokens":[31908,2907,15308,3390],"delegation":[30908,1907,14308,2390],"delegatorTokens":9999999924713}},{"ix":142,"action":{"kind":"Delegate","val":3,"amt":2469},"partialState":{"h":18,"t":108,"tokens":[31908,2907,15308,5859],"delegation":[30908,1907,14308,4859],"delegatorTokens":9999999922244}},{"ix":143,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":19,"t":114,"tokens":[31908,2907,15308,5859],"delegation":[30908,1907,14308,4859],"delegatorTokens":9999999922244,"jailed":[null,1000000000000053,null,null],"status":["bonded","unbonding","bonded","unbonded"]}},{"ix":144,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":145,"action":{"kind":"Deliver","chain":"consumer","numPackets":2},"partialState":{"h":17,"t":102,"consumerPower":[28781,null,17913,null],"outstandingDowntime":[false,false,true,true]}},{"ix":146,"action":{"kind":"Delegate","val":2,"amt":4200},"partialState":{"h":19,"t":114,"tokens":[31908,2907,19508,5859],"delegation":[30908,1907,18508,4859],"delegatorTokens":9999999918044}},{"ix":147,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":18,"t":108,"consumerPower":[27732,null,15308,null],"outstandingDowntime":[false,false,true,true]}},{"ix":148,"action":{"kind":"Deliver","chain":"consumer","numPackets":6},"partialState":{"h":18,"t":108,"consumerPower":[27732,null,15308,null],"outstandingDowntime":[false,false,true,true]}},{"ix":149,"action":{"kind":"Undelegate","val":3,"amt":2110},"partialState":{"h":19,"t":114,"tokens":[31908,2907,19508,3749],"delegation":[30908,1907,18508,2749],"delegatorTokens":9999999918044}},{"ix":150,"action":{"kind":"Deliver","chain":"provider","numPackets":4},"partialState":{"h":19,"t":114,"tokens":[31908,2907,19508,3749],"delegation":[30908,1907,18508,2749],"delegatorTokens":9999999918044,"jailed":[null,1000000000000053,null,null],"status":["bonded","unbonding","bonded","unbonded"]}},{"ix":151,"action":{"kind":"Deliver","chain":"provider","numPackets":1},"partialState":{"h":19,"t":114,"tokens":[31908,2907,19508,3749],"delegation":[30908,1907,18508,2749],"delegatorTokens":9999999918044,"jailed":[null,1000000000000053,null,null],"status":["bonded","unbonding","bonded","unbonded"]}},{"ix":152,"action":{"kind":"Undelegate","val":3,"amt":1678},"partialState":{"h":19,"t":114,"tokens":[31908,2907,19508,2071],"delegation":[30908,1907,18508,1071],"delegatorTokens":9999999918044}},{"ix":153,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":154,"action":{"kind":"Undelegate","val":0,"amt":4161},"partialState":{"h":19,"t":114,"tokens":[27747,2907,19508,2071],"delegation":[26747,1907,18508,1071],"delegatorTokens":9999999918044}},{"ix":155,"action":{"kind":"Undelegate","val":2,"amt":4014},"partialState":{"h":19,"t":114,"tokens":[27747,2907,15494,2071],"delegation":[26747,1907,14494,1071],"delegatorTokens":9999999918044}},{"ix":156,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":20,"t":120,"tokens":[27747,2907,15494,2071],"delegation":[26747,1907,14494,1071],"delegatorTokens":9999999918044,"jailed":[null,1000000000000053,null,null],"status":["bonded","unbonding","bonded","unbonded"]}},{"ix":157,"action":{"kind":"Deliver","chain":"consumer","numPackets":1},"partialState":{"h":18,"t":108,"consumerPower":[27732,null,15308,null],"outstandingDowntime":[false,false,true,true]}},{"ix":158,"action":{"kind":"Delegate","val":0,"amt":2852},"partialState":{"h":20,"t":120,"tokens":[30599,2907,15494,2071],"delegation":[29599,1907,14494,1071],"delegatorTokens":9999999915192}},{"ix":159,"action":{"kind":"Undelegate","val":1,"amt":1784},"partialState":{"h":20,"t":120,"tokens":[30599,1123,15494,2071],"delegation":[29599,123,14494,1071],"delegatorTokens":9999999915192}},{"ix":160,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":21,"t":126,"tokens":[30599,1123,15494,2071],"delegation":[29599,123,14494,1071],"delegatorTokens":9999999924992,"jailed":[null,1000000000000053,null,null],"status":["bonded","unbonded","bonded","unbonded"]}},{"ix":161,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":19,"t":114,"consumerPower":[31908,null,15308,null],"outstandingDowntime":[false,false,true,true]}},{"ix":162,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":22,"t":132,"tokens":[30599,1123,15494,2071],"delegation":[29599,123,14494,1071],"delegatorTokens":9999999924992,"jailed":[null,1000000000000053,null,null],"status":["bonded","unbonded","bonded","unbonded"]}},{"ix":163,"action":{"kind":"Delegate","val":1,"amt":2372},"partialState":{"h":22,"t":132,"tokens":[30599,3495,15494,2071],"delegation":[29599,2495,14494,1071],"delegatorTokens":9999999922620}},{"ix":164,"action":{"kind":"Delegate","val":0,"amt":3231},"partialState":{"h":22,"t":132,"tokens":[33830,3495,15494,2071],"delegation":[32830,2495,14494,1071],"delegatorTokens":9999999919389}},{"ix":165,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":23,"t":138,"tokens":[33830,3495,15494,2071],"delegation":[32830,2495,14494,1071],"delegatorTokens":9999999919389,"jailed":[null,1000000000000053,null,null],"status":["bonded","unbonded","bonded","unbonded"]}},{"ix":166,"action":{"kind":"Undelegate","val":2,"amt":4181},"partialState":{"h":23,"t":138,"tokens":[33830,3495,11313,2071],"delegation":[32830,2495,10313,1071],"delegatorTokens":9999999919389}},{"ix":167,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":24,"t":144,"tokens":[33830,3495,11313,2071],"delegation":[32830,2495,10313,1071],"delegatorTokens":9999999919389,"jailed":[null,1000000000000053,null,null],"status":["bonded","unbonded","bonded","unbonded"]}},{"ix":168,"action":{"kind":"Delegate","val":3,"amt":4865},"partialState":{"h":24,"t":144,"tokens":[33830,3495,11313,6936],"delegation":[32830,2495,10313,5936],"delegatorTokens":9999999914524}},{"ix":169,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":170,"action":{"kind":"Undelegate","val":1,"amt":3889},"partialState":{"h":24,"t":144,"tokens":[33830,3495,11313,6936],"delegation":[32830,2495,10313,5936],"delegatorTokens":9999999914524}},{"ix":171,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":172,"action":{"kind":"Deliver","chain":"provider","numPackets":5},"partialState":{"h":24,"t":144,"tokens":[33830,3495,11313,6936],"delegation":[32830,2495,10313,5936],"delegatorTokens":9999999914524,"jailed":[null,1000000000000053,null,null],"status":["bonded","unbonded","bonded","unbonded"]}},{"ix":173,"action":{"kind":"Undelegate","val":2,"amt":2198},"partialState":{"h":24,"t":144,"tokens":[33830,3495,9115,6936],"delegation":[32830,2495,8115,5936],"delegatorTokens":9999999914524}},{"ix":174,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":20,"t":120,"consumerPower":[31908,null,15308,null],"outstandingDowntime":[false,false,true,true]}},{"ix":175,"action":{"kind":"Undelegate","val":0,"amt":4064},"partialState":{"h":24,"t":144,"tokens":[29766,3495,9115,6936],"delegation":[28766,2495,8115,5936],"delegatorTokens":9999999914524}},{"ix":176,"action":{"kind":"Undelegate","val":1,"amt":2359},"partialState":{"h":24,"t":144,"tokens":[29766,1136,9115,6936],"delegation":[28766,136,8115,5936],"delegatorTokens":9999999914524}},{"ix":177,"action":{"kind":"Deliver","chain":"provider","numPackets":1},"partialState":{"h":24,"t":144,"tokens":[29766,1136,9115,6936],"delegation":[28766,136,8115,5936],"delegatorTokens":9999999914524,"jailed":[null,1000000000000053,null,null],"status":["bonded","unbonded","bonded","unbonded"]}},{"ix":178,"action":{"kind":"Delegate","val":1,"amt":2535},"partialState":{"h":24,"t":144,"tokens":[29766,3671,9115,6936],"delegation":[28766,2671,8115,5936],"delegatorTokens":9999999911989}},{"ix":179,"action":{"kind":"Deliver","chain":"provider","numPackets":5},"partialState":{"h":24,"t":144,"tokens":[29766,3671,9115,6936],"delegation":[28766,2671,8115,5936],"delegatorTokens":9999999911989,"jailed":[null,1000000000000053,null,null],"status":["bonded","unbonded","bonded","unbonded"]}},{"ix":180,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":181,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":25,"t":150,"tokens":[29766,3671,9115,6936],"delegation":[28766,2671,8115,5936],"delegatorTokens":9999999911989,"jailed":[null,1000000000000053,null,null],"status":["bonded","unbonded","bonded","unbonded"]}},{"ix":182,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":26,"t":156,"tokens":[29766,3671,9115,6936],"delegation":[28766,2671,8115,5936],"delegatorTokens":9999999911989,"jailed":[null,1000000000000053,null,null],"status":["bonded","unbonded","bonded","unbonded"]}},{"ix":183,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":27,"t":162,"tokens":[29766,3671,9115,6936],"delegation":[28766,2671,8115,5936],"delegatorTokens":9999999911989,"jailed":[null,1000000000000053,null,null],"status":["bonded","unbonded","bonded","unbonded"]}},{"ix":184,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":185,"action":{"kind":"Delegate","val":2,"amt":4902},"partialState":{"h":27,"t":162,"tokens":[29766,3671,14017,6936],"delegation":[28766,2671,13017,5936],"delegatorTokens":9999999907087}},{"ix":186,"action":{"kind":"Delegate","val":0,"amt":1544},"partialState":{"h":27,"t":162,"tokens":[31310,3671,14017,6936],"delegation":[30310,2671,13017,5936],"delegatorTokens":9999999905543}},{"ix":187,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":21,"t":126,"consumerPower":[31908,null,15308,null],"outstandingDowntime":[false,false,true,true]}},{"ix":188,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":189,"action":{"kind":"Undelegate","val":0,"amt":2391},"partialState":{"h":27,"t":162,"tokens":[28919,3671,14017,6936],"delegation":[27919,2671,13017,5936],"delegatorTokens":9999999905543}},{"ix":190,"action":{"kind":"Undelegate","val":2,"amt":1320},"partialState":{"h":27,"t":162,"tokens":[28919,3671,12697,6936],"delegation":[27919,2671,11697,5936],"delegatorTokens":9999999905543}},{"ix":191,"action":{"kind":"Delegate","val":2,"amt":4417},"partialState":{"h":27,"t":162,"tokens":[28919,3671,17114,6936],"delegation":[27919,2671,16114,5936],"delegatorTokens":9999999901126}},{"ix":192,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":193,"action":{"kind":"Undelegate","val":2,"amt":1626},"partialState":{"h":27,"t":162,"tokens":[28919,3671,15488,6936],"delegation":[27919,2671,14488,5936],"delegatorTokens":9999999901126}},{"ix":194,"action":{"kind":"Deliver","chain":"provider","numPackets":6},"partialState":{"h":27,"t":162,"tokens":[28919,3671,15488,6936],"delegation":[27919,2671,14488,5936],"delegatorTokens":9999999901126,"jailed":[null,1000000000000053,null,null],"status":["bonded","unbonded","bonded","unbonded"]}},{"ix":195,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":28,"t":168,"tokens":[28919,3671,15488,6936],"delegation":[27919,2671,14488,5936],"delegatorTokens":9999999901126,"jailed":[null,1000000000000053,null,null],"status":["bonded","unbonded","bonded","unbonded"]}},{"ix":196,"action":{"kind":"Undelegate","val":2,"amt":4090},"partialState":{"h":28,"t":168,"tokens":[28919,3671,11398,6936],"delegation":[27919,2671,10398,5936],"delegatorTokens":9999999901126}},{"ix":197,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":198,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":22,"t":132,"consumerPower":[31908,null,15308,null],"outstandingDowntime":[false,false,true,true]}},{"ix":199,"action":{"kind":"Delegate","val":1,"amt":2259},"partialState":{"h":28,"t":168,"tokens":[28919,5930,11398,6936],"delegation":[27919,4930,10398,5936],"delegatorTokens":9999999898867}}],"events":["send_downtime_slash_request","send_vsc_without_downtime_ack","downtime_slash_request_outstanding","insufficient_shares","send_vsc_without_downtime_ack","send_downtime_slash_request","downtime_slash_request_outstanding","insufficient_shares","send_downtime_slash_request","insufficient_shares","insufficient_shares","consumer_update_val","receive_slash_request_unbonded","send_vsc_without_downtime_ack","send_vsc_without_downtime_ack","consumer_update_val","consumer_update_val","consumer_update_val","more_than_one_third_val_power_change","send_vsc_without_downtime_ack","receive_slash_request_unbonded","receive_downtime_slash_request","jail","send_vsc_with_downtime_ack","send_vsc_without_downtime_ack","consumer_update_val","consumer_del_val","consumer_add_val","send_vsc_without_downtime_ack","receive_downtime_slash_ack","consumer_update_val","consumer_send_maturation","insufficient_shares","insufficient_shares","send_vsc_without_downtime_ack","consumer_send_maturation","consumer_update_val","consumer_update_val","insufficient_shares","consumer_send_maturation","consumer_send_maturation","consumer_update_val","send_vsc_without_downtime_ack","consumer_send_maturation","some_undels_expired_but_not_completed","complete_undel_immediate","complete_undel_immediate","send_vsc_not_because_change","send_vsc_without_downtime_ack","send_vsc_without_downtime_ack","consumer_send_maturation","consumer_send_maturation","consumer_update_val","consumer_update_val","set_undel_hold_false","set_undel_hold_false","set_undel_hold_false","set_undel_hold_false","set_unval_hold_false","send_vsc_without_downtime_ack","complete_unval_in_endblock","complete_undel_in_endblock","send_vsc_without_downtime_ack","consumer_update_val","send_vsc_without_downtime_ack","some_undels_expired_but_not_completed","send_vsc_without_downtime_ack","insufficient_shares","some_undels_expired_but_not_completed","send_vsc_without_downtime_ack","send_vsc_without_downtime_ack"]},{"meta":{"commit":"7ffd0c04e4205cbc9caf212abfe6c59ee43153bf"},"constants":{"P":"provider","C":"consumer","UNBONDING_SECONDS_P":70,"UNBONDING_SECONDS_C":50,"TRUSTING_SECONDS":49,"NUM_VALIDATORS":4,"MAX_VALIDATORS":2,"SLASH_DOUBLESIGN":0,"SLASH_DOWNTIME":0,"JAIL_SECONDS":999999999999999,"BLOCK_SECONDS":6,"INITIAL_DELEGATOR_TOKENS":10000000000000,"DELEGATE_AMT_MIN":1000,"DELEGATE_AMT_MAX":5000,"UNDELEGATE_AMT_MIN":1000,"UNDELEGATE_AMT_MAX":5000,"ISDOWNTIME_PROBABILITY":0.5,"MAX_NUM_PACKETS_FOR_DELIVER":6},"actions":[{"ix":0,"action":{"kind":"Deliver","chain":"provider","numPackets":4},"partialState":{"h":1,"t":6,"tokens":[5000,4000,3000,2000],"delegation":[4000,3000,2000,1000],"delegatorTokens":10000000000000,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":1,"action":{"kind":"ConsumerSlash","val":3,"infractionHeight":0,"isDowntime":true},"partialState":{"h":1,"t":6,"outstandingDowntime":[false,false,false,true]}},{"ix":2,"action":{"kind":"ConsumerSlash","val":0,"infractionHeight":0,"isDowntime":true},"partialState":{"h":1,"t":6,"outstandingDowntime":[true,false,false,true]}},{"ix":3,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":4,"action":{"kind":"Undelegate","val":0,"amt":2136},"partialState":{"h":1,"t":6,"tokens":[2864,4000,3000,2000],"delegation":[1864,3000,2000,1000],"delegatorTokens":10000000000000}},{"ix":5,"action":{"kind":"Deliver","chain":"provider","numPackets":6},"partialState":{"h":1,"t":6,"tokens":[2864,4000,3000,2000],"delegation":[1864,3000,2000,1000],"delegatorTokens":10000000000000,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":6,"action":{"kind":"Undelegate","val":2,"amt":3907},"partialState":{"h":1,"t":6,"tokens":[2864,4000,3000,2000],"delegation":[1864,3000,2000,1000],"delegatorTokens":10000000000000}},{"ix":7,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":2,"t":12,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[true,false,false,true]}},{"ix":8,"action":{"kind":"ConsumerSlash","val":3,"infractionHeight":1,"isDowntime":false},"partialState":{"h":2,"t":12,"outstandingDowntime":[true,false,false,true]}},{"ix":9,"action":{"kind":"Undelegate","val":2,"amt":3496},"partialState":{"h":1,"t":6,"tokens":[2864,4000,3000,2000],"delegation":[1864,3000,2000,1000],"delegatorTokens":10000000000000}},{"ix":10,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":3,"t":18,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[true,false,false,true]}},{"ix":11,"action":{"kind":"Delegate","val":0,"amt":1866},"partialState":{"h":1,"t":6,"tokens":[4730,4000,3000,2000],"delegation":[3730,3000,2000,1000],"delegatorTokens":9999999998134}},{"ix":12,"action":{"kind":"Undelegate","val":2,"amt":3286},"partialState":{"h":1,"t":6,"tokens":[4730,4000,3000,2000],"delegation":[3730,3000,2000,1000],"delegatorTokens":9999999998134}},{"ix":13,"action":{"kind":"Delegate","val":1,"amt":3432},"partialState":{"h":1,"t":6,"tokens":[4730,7432,3000,2000],"delegation":[3730,6432,2000,1000],"delegatorTokens":9999999994702}},{"ix":14,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":4,"t":24,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[true,false,false,true]}},{"ix":15,"action":{"kind":"ConsumerSlash","val":3,"infractionHeight":3,"isDowntime":true},"partialState":{"h":4,"t":24,"outstandingDowntime":[true,false,false,true]}},{"ix":16,"action":{"kind":"Undelegate","val":2,"amt":4392},"partialState":{"h":1,"t":6,"tokens":[4730,7432,3000,2000],"delegation":[3730,6432,2000,1000],"delegatorTokens":9999999994702}},{"ix":17,"action":{"kind":"Deliver","chain":"provider","numPackets":2},"partialState":{"h":1,"t":6,"tokens":[4730,7432,3000,2000],"delegation":[3730,6432,2000,1000],"delegatorTokens":9999999994702,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":18,"action":{"kind":"Deliver","chain":"provider","numPackets":2},"partialState":{"h":1,"t":6,"tokens":[4730,7432,3000,2000],"delegation":[3730,6432,2000,1000],"delegatorTokens":9999999994702,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":19,"action":{"kind":"ConsumerSlash","val":0,"infractionHeight":0,"isDowntime":true},"partialState":{"h":4,"t":24,"outstandingDowntime":[true,false,false,true]}},{"ix":20,"action":{"kind":"ConsumerSlash","val":2,"infractionHeight":3,"isDowntime":true},"partialState":{"h":4,"t":24,"outstandingDowntime":[true,false,true,true]}},{"ix":21,"action":{"kind":"Deliver","chain":"provider","numPackets":2},"partialState":{"h":1,"t":6,"tokens":[4730,7432,3000,2000],"delegation":[3730,6432,2000,1000],"delegatorTokens":9999999994702,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":22,"action":{"kind":"Undelegate","val":1,"amt":4183},"partialState":{"h":1,"t":6,"tokens":[4730,3249,3000,2000],"delegation":[3730,2249,2000,1000],"delegatorTokens":9999999994702}},{"ix":23,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":24,"action":{"kind":"Deliver","chain":"consumer","numPackets":2},"partialState":{"h":4,"t":24,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[true,false,true,true]}},{"ix":25,"action":{"kind":"Delegate","val":2,"amt":3274},"partialState":{"h":1,"t":6,"tokens":[4730,3249,6274,2000],"delegation":[3730,2249,5274,1000],"delegatorTokens":9999999991428}},{"ix":26,"action":{"kind":"Undelegate","val":2,"amt":4551},"partialState":{"h":1,"t":6,"tokens":[4730,3249,1723,2000],"delegation":[3730,2249,723,1000],"delegatorTokens":9999999991428}},{"ix":27,"action":{"kind":"Deliver","chain":"provider","numPackets":2},"partialState":{"h":1,"t":6,"tokens":[4730,3249,1723,2000],"delegation":[3730,2249,723,1000],"delegatorTokens":9999999991428,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":28,"action":{"kind":"Undelegate","val":2,"amt":3249},"partialState":{"h":1,"t":6,"tokens":[4730,3249,1723,2000],"delegation":[3730,2249,723,1000],"delegatorTokens":9999999991428}},{"ix":29,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":2,"t":12,"tokens":[4730,3249,1723,2000],"delegation":[3730,2249,723,1000],"delegatorTokens":9999999991428,"jailed":[1000000000000005,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":30,"action":{"kind":"Deliver","chain":"provider","numPackets":1},"partialState":{"h":2,"t":12,"tokens":[4730,3249,1723,2000],"delegation":[3730,2249,723,1000],"delegatorTokens":9999999991428,"jailed":[1000000000000005,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":31,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":32,"action":{"kind":"Undelegate","val":1,"amt":3262},"partialState":{"h":2,"t":12,"tokens":[4730,3249,1723,2000],"delegation":[3730,2249,723,1000],"delegatorTokens":9999999991428}},{"ix":33,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":34,"action":{"kind":"Undelegate","val":1,"amt":1129},"partialState":{"h":2,"t":12,"tokens":[4730,2120,1723,2000],"delegation":[3730,1120,723,1000],"delegatorTokens":9999999991428}},{"ix":35,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":3,"t":18,"tokens":[4730,2120,1723,2000],"delegation":[3730,1120,723,1000],"delegatorTokens":9999999991428,"jailed":[1000000000000005,null,null,null],"status":["unbonding","bonded","unbonded","bonded"]}},{"ix":36,"action":{"kind":"Deliver","chain":"consumer","numPackets":3},"partialState":{"h":4,"t":24,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,false,true,true]}},{"ix":37,"action":{"kind":"Undelegate","val":0,"amt":4056},"partialState":{"h":3,"t":18,"tokens":[4730,2120,1723,2000],"delegation":[3730,1120,723,1000],"delegatorTokens":9999999991428}},{"ix":38,"action":{"kind":"Deliver","chain":"provider","numPackets":4},"partialState":{"h":3,"t":18,"tokens":[4730,2120,1723,2000],"delegation":[3730,1120,723,1000],"delegatorTokens":9999999991428,"jailed":[1000000000000005,null,null,null],"status":["unbonding","bonded","unbonded","bonded"]}},{"ix":39,"action":{"kind":"Undelegate","val":3,"amt":1644},"partialState":{"h":3,"t":18,"tokens":[4730,2120,1723,2000],"delegation":[3730,1120,723,1000],"delegatorTokens":9999999991428}},{"ix":40,"action":{"kind":"Deliver","chain":"consumer","numPackets":1},"partialState":{"h":4,"t":24,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,false,true,true]}},{"ix":41,"action":{"kind":"Deliver","chain":"consumer","numPackets":3},"partialState":{"h":4,"t":24,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,false,true,true]}},{"ix":42,"action":{"kind":"Delegate","val":1,"amt":3258},"partialState":{"h":3,"t":18,"tokens":[4730,5378,1723,2000],"delegation":[3730,4378,723,1000],"delegatorTokens":9999999988170}},{"ix":43,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":4,"t":24,"tokens":[4730,5378,1723,2000],"delegation":[3730,4378,723,1000],"delegatorTokens":9999999988170,"jailed":[1000000000000005,null,null,null],"status":["unbonding","bonded","unbonded","bonded"]}},{"ix":44,"action":{"kind":"Deliver","chain":"consumer","numPackets":5},"partialState":{"h":4,"t":24,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,false,true,true]}},{"ix":45,"action":{"kind":"Undelegate","val":3,"amt":2954},"partialState":{"h":4,"t":24,"tokens":[4730,5378,1723,2000],"delegation":[3730,4378,723,1000],"delegatorTokens":9999999988170}},{"ix":46,"action":{"kind":"Deliver","chain":"consumer","numPackets":4},"partialState":{"h":4,"t":24,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,false,true,true]}},{"ix":47,"action":{"kind":"Deliver","chain":"consumer","numPackets":3},"partialState":{"h":4,"t":24,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,false,true,true]}},{"ix":48,"action":{"kind":"Delegate","val":3,"amt":2754},"partialState":{"h":4,"t":24,"tokens":[4730,5378,1723,4754],"delegation":[3730,4378,723,3754],"delegatorTokens":9999999985416}},{"ix":49,"action":{"kind":"Deliver","chain":"consumer","numPackets":3},"partialState":{"h":4,"t":24,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,false,true,true]}},{"ix":50,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":5,"t":30,"consumerPower":[null,2120,null,2000],"outstandingDowntime":[false,false,true,true]}},{"ix":51,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":52,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":53,"action":{"kind":"Undelegate","val":3,"amt":2634},"partialState":{"h":4,"t":24,"tokens":[4730,5378,1723,2120],"delegation":[3730,4378,723,1120],"delegatorTokens":9999999985416}},{"ix":54,"action":{"kind":"Undelegate","val":2,"amt":4336},"partialState":{"h":4,"t":24,"tokens":[4730,5378,1723,2120],"delegation":[3730,4378,723,1120],"delegatorTokens":9999999985416}},{"ix":55,"action":{"kind":"Undelegate","val":0,"amt":1962},"partialState":{"h":4,"t":24,"tokens":[2768,5378,1723,2120],"delegation":[1768,4378,723,1120],"delegatorTokens":9999999985416}},{"ix":56,"action":{"kind":"Deliver","chain":"provider","numPackets":4},"partialState":{"h":4,"t":24,"tokens":[2768,5378,1723,2120],"delegation":[1768,4378,723,1120],"delegatorTokens":9999999985416,"jailed":[1000000000000005,null,null,null],"status":["unbonding","bonded","unbonded","bonded"]}},{"ix":57,"action":{"kind":"Delegate","val":3,"amt":2225},"partialState":{"h":4,"t":24,"tokens":[2768,5378,1723,4345],"delegation":[1768,4378,723,3345],"delegatorTokens":9999999983191}},{"ix":58,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":59,"action":{"kind":"Undelegate","val":3,"amt":3251},"partialState":{"h":4,"t":24,"tokens":[2768,5378,1723,1094],"delegation":[1768,4378,723,94],"delegatorTokens":9999999983191}},{"ix":60,"action":{"kind":"Deliver","chain":"provider","numPackets":2},"partialState":{"h":4,"t":24,"tokens":[2768,5378,1723,1094],"delegation":[1768,4378,723,94],"delegatorTokens":9999999983191,"jailed":[1000000000000005,null,null,null],"status":["unbonding","bonded","unbonded","bonded"]}},{"ix":61,"action":{"kind":"Undelegate","val":2,"amt":2403},"partialState":{"h":4,"t":24,"tokens":[2768,5378,1723,1094],"delegation":[1768,4378,723,94],"delegatorTokens":9999999983191}},{"ix":62,"action":{"kind":"Undelegate","val":3,"amt":3585},"partialState":{"h":4,"t":24,"tokens":[2768,5378,1723,1094],"delegation":[1768,4378,723,94],"delegatorTokens":9999999983191}},{"ix":63,"action":{"kind":"Delegate","val":3,"amt":1116},"partialState":{"h":4,"t":24,"tokens":[2768,5378,1723,2210],"delegation":[1768,4378,723,1210],"delegatorTokens":9999999982075}},{"ix":64,"action":{"kind":"Deliver","chain":"provider","numPackets":2},"partialState":{"h":4,"t":24,"tokens":[2768,5378,1723,2210],"delegation":[1768,4378,723,1210],"delegatorTokens":9999999982075,"jailed":[1000000000000005,null,null,null],"status":["unbonding","bonded","unbonded","bonded"]}},{"ix":65,"action":{"kind":"Delegate","val":2,"amt":3445},"partialState":{"h":4,"t":24,"tokens":[2768,5378,5168,2210],"delegation":[1768,4378,4168,1210],"delegatorTokens":9999999978630}},{"ix":66,"action":{"kind":"Deliver","chain":"consumer","numPackets":2},"partialState":{"h":5,"t":30,"consumerPower":[null,2120,null,2000],"outstandingDowntime":[false,false,true,true]}},{"ix":67,"action":{"kind":"Deliver","chain":"consumer","numPackets":3},"partialState":{"h":5,"t":30,"consumerPower":[null,2120,null,2000],"outstandingDowntime":[false,false,true,true]}},{"ix":68,"action":{"kind":"Undelegate","val":2,"amt":3899},"partialState":{"h":4,"t":24,"tokens":[2768,5378,1269,2210],"delegation":[1768,4378,269,1210],"delegatorTokens":9999999978630}},{"ix":69,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":70,"action":{"kind":"Undelegate","val":0,"amt":3418},"partialState":{"h":4,"t":24,"tokens":[2768,5378,1269,2210],"delegation":[1768,4378,269,1210],"delegatorTokens":9999999978630}},{"ix":71,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":6,"t":36,"consumerPower":[null,2120,null,2000],"outstandingDowntime":[false,false,true,true]}},{"ix":72,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":73,"action":{"kind":"Deliver","chain":"consumer","numPackets":3},"partialState":{"h":6,"t":36,"consumerPower":[null,2120,null,2000],"outstandingDowntime":[false,false,true,true]}},{"ix":74,"action":{"kind":"Undelegate","val":0,"amt":1175},"partialState":{"h":4,"t":24,"tokens":[1593,5378,1269,2210],"delegation":[593,4378,269,1210],"delegatorTokens":9999999978630}},{"ix":75,"action":{"kind":"Undelegate","val":0,"amt":4434},"partialState":{"h":4,"t":24,"tokens":[1593,5378,1269,2210],"delegation":[593,4378,269,1210],"delegatorTokens":9999999978630}},{"ix":76,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":77,"action":{"kind":"Delegate","val":0,"amt":3882},"partialState":{"h":4,"t":24,"tokens":[5475,5378,1269,2210],"delegation":[4475,4378,269,1210],"delegatorTokens":9999999974748}},{"ix":78,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":79,"action":{"kind":"Deliver","chain":"consumer","numPackets":4},"partialState":{"h":6,"t":36,"consumerPower":[null,2120,null,2000],"outstandingDowntime":[false,false,true,true]}},{"ix":80,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":7,"t":42,"consumerPower":[null,2120,null,2000],"outstandingDowntime":[false,false,true,true]}},{"ix":81,"action":{"kind":"Undelegate","val":1,"amt":3602},"partialState":{"h":4,"t":24,"tokens":[5475,1776,1269,2210],"delegation":[4475,776,269,1210],"delegatorTokens":9999999974748}},{"ix":82,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":5,"t":30,"tokens":[5475,1776,1269,2210],"delegation":[4475,776,269,1210],"delegatorTokens":9999999974748,"jailed":[1000000000000005,null,null,null],"status":["unbonding","bonded","unbonded","bonded"]}},{"ix":83,"action":{"kind":"Undelegate","val":0,"amt":3336},"partialState":{"h":5,"t":30,"tokens":[2139,1776,1269,2210],"delegation":[1139,776,269,1210],"delegatorTokens":9999999974748}},{"ix":84,"action":{"kind":"Undelegate","val":0,"amt":2053},"partialState":{"h":5,"t":30,"tokens":[2139,1776,1269,2210],"delegation":[1139,776,269,1210],"delegatorTokens":9999999974748}},{"ix":85,"action":{"kind":"Undelegate","val":0,"amt":3301},"partialState":{"h":5,"t":30,"tokens":[2139,1776,1269,2210],"delegation":[1139,776,269,1210],"delegatorTokens":9999999974748}},{"ix":86,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":8,"t":48,"consumerPower":[null,2120,null,2000],"outstandingDowntime":[false,false,true,true]}},{"ix":87,"action":{"kind":"Deliver","chain":"consumer","numPackets":3},"partialState":{"h":8,"t":48,"consumerPower":[null,2120,null,2000],"outstandingDowntime":[false,false,true,true]}},{"ix":88,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":9,"t":54,"consumerPower":[null,5378,null,2000],"outstandingDowntime":[false,false,true,true]}},{"ix":89,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":6,"t":36,"tokens":[2139,1776,1269,2210],"delegation":[1139,776,269,1210],"delegatorTokens":9999999974748,"jailed":[1000000000000005,null,null,null],"status":["unbonding","bonded","unbonded","bonded"]}},{"ix":90,"action":{"kind":"Deliver","chain":"consumer","numPackets":1},"partialState":{"h":9,"t":54,"consumerPower":[null,5378,null,2000],"outstandingDowntime":[false,false,true,true]}},{"ix":91,"action":{"kind":"Deliver","chain":"consumer","numPackets":1},"partialState":{"h":9,"t":54,"consumerPower":[null,5378,null,2000],"outstandingDowntime":[false,false,true,true]}},{"ix":92,"action":{"kind":"Deliver","chain":"provider","numPackets":5},"partialState":{"h":6,"t":36,"tokens":[2139,1776,1269,2210],"delegation":[1139,776,269,1210],"delegatorTokens":9999999974748,"jailed":[1000000000000005,null,null,null],"status":["unbonding","bonded","unbonded","bonded"]}},{"ix":93,"action":{"kind":"Deliver","chain":"consumer","numPackets":3},"partialState":{"h":9,"t":54,"consumerPower":[null,5378,null,2000],"outstandingDowntime":[false,false,true,true]}},{"ix":94,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":7,"t":42,"tokens":[2139,1776,1269,2210],"delegation":[1139,776,269,1210],"delegatorTokens":9999999974748,"jailed":[1000000000000005,null,null,null],"status":["unbonding","bonded","unbonded","bonded"]}},{"ix":95,"action":{"kind":"Deliver","chain":"consumer","numPackets":3},"partialState":{"h":9,"t":54,"consumerPower":[null,5378,null,2000],"outstandingDowntime":[false,false,true,true]}},{"ix":96,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":97,"action":{"kind":"Delegate","val":1,"amt":2339},"partialState":{"h":7,"t":42,"tokens":[2139,4115,1269,2210],"delegation":[1139,3115,269,1210],"delegatorTokens":9999999972409}},{"ix":98,"action":{"kind":"Delegate","val":0,"amt":3017},"partialState":{"h":7,"t":42,"tokens":[5156,4115,1269,2210],"delegation":[4156,3115,269,1210],"delegatorTokens":9999999969392}},{"ix":99,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":10,"t":60,"consumerPower":[null,1776,null,2210],"outstandingDowntime":[false,false,true,true]}},{"ix":100,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":101,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":8,"t":48,"tokens":[5156,4115,1269,2210],"delegation":[4156,3115,269,1210],"delegatorTokens":9999999969392,"jailed":[1000000000000005,null,null,null],"status":["unbonding","bonded","unbonded","bonded"]}},{"ix":102,"action":{"kind":"Undelegate","val":1,"amt":4066},"partialState":{"h":8,"t":48,"tokens":[5156,4115,1269,2210],"delegation":[4156,3115,269,1210],"delegatorTokens":9999999969392}},{"ix":103,"action":{"kind":"Deliver","chain":"consumer","numPackets":3},"partialState":{"h":10,"t":60,"consumerPower":[null,1776,null,2210],"outstandingDowntime":[false,false,true,true]}},{"ix":104,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":9,"t":54,"tokens":[5156,4115,1269,2210],"delegation":[4156,3115,269,1210],"delegatorTokens":9999999969392,"jailed":[1000000000000005,null,null,null],"status":["unbonding","bonded","unbonded","bonded"]}},{"ix":105,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":11,"t":66,"consumerPower":[null,1776,null,2210],"outstandingDowntime":[false,false,true,true]}},{"ix":106,"action":{"kind":"Deliver","chain":"provider","numPackets":6},"partialState":{"h":9,"t":54,"tokens":[5156,4115,1269,2210],"delegation":[4156,3115,269,1210],"delegatorTokens":9999999969392,"jailed":[1000000000000005,null,null,null],"status":["unbonding","bonded","unbonded","bonded"]}},{"ix":107,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":108,"action":{"kind":"Delegate","val":2,"amt":4323},"partialState":{"h":9,"t":54,"tokens":[5156,4115,5592,2210],"delegation":[4156,3115,4592,1210],"delegatorTokens":9999999965069}},{"ix":109,"action":{"kind":"Undelegate","val":3,"amt":3856},"partialState":{"h":9,"t":54,"tokens":[5156,4115,5592,2210],"delegation":[4156,3115,4592,1210],"delegatorTokens":9999999965069}},{"ix":110,"action":{"kind":"Deliver","chain":"consumer","numPackets":3},"partialState":{"h":11,"t":66,"consumerPower":[null,1776,null,2210],"outstandingDowntime":[false,false,true,true]}},{"ix":111,"action":{"kind":"Delegate","val":1,"amt":3028},"partialState":{"h":9,"t":54,"tokens":[5156,7143,5592,2210],"delegation":[4156,6143,4592,1210],"delegatorTokens":9999999962041}},{"ix":112,"action":{"kind":"Deliver","chain":"consumer","numPackets":6},"partialState":{"h":11,"t":66,"consumerPower":[null,1776,null,2210],"outstandingDowntime":[false,false,true,true]}},{"ix":113,"action":{"kind":"Deliver","chain":"provider","numPackets":1},"partialState":{"h":9,"t":54,"tokens":[5156,7143,5592,2210],"delegation":[4156,6143,4592,1210],"delegatorTokens":9999999962041,"jailed":[1000000000000005,null,null,null],"status":["unbonding","bonded","unbonded","bonded"]}},{"ix":114,"action":{"kind":"Undelegate","val":3,"amt":2410},"partialState":{"h":9,"t":54,"tokens":[5156,7143,5592,2210],"delegation":[4156,6143,4592,1210],"delegatorTokens":9999999962041}},{"ix":115,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":10,"t":60,"tokens":[5156,7143,5592,2210],"delegation":[4156,6143,4592,1210],"delegatorTokens":9999999962041,"jailed":[1000000000000005,null,null,null],"status":["unbonding","bonded","bonded","unbonding"]}},{"ix":116,"action":{"kind":"Deliver","chain":"consumer","numPackets":5},"partialState":{"h":11,"t":66,"consumerPower":[null,1776,null,2210],"outstandingDowntime":[false,false,true,true]}},{"ix":117,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":11,"t":66,"tokens":[5156,7143,5592,2210],"delegation":[4156,6143,4592,1210],"delegatorTokens":9999999962041,"jailed":[1000000000000005,null,null,null],"status":["unbonding","bonded","bonded","unbonding"]}},{"ix":118,"action":{"kind":"Undelegate","val":0,"amt":1142},"partialState":{"h":11,"t":66,"tokens":[4014,7143,5592,2210],"delegation":[3014,6143,4592,1210],"delegatorTokens":9999999962041}},{"ix":119,"action":{"kind":"Delegate","val":1,"amt":1517},"partialState":{"h":11,"t":66,"tokens":[4014,8660,5592,2210],"delegation":[3014,7660,4592,1210],"delegatorTokens":9999999960524}},{"ix":120,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":121,"action":{"kind":"Deliver","chain":"consumer","numPackets":4},"partialState":{"h":11,"t":66,"consumerPower":[null,1776,null,2210],"outstandingDowntime":[false,false,true,true]}},{"ix":122,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":12,"t":72,"consumerPower":[null,7143,5592,null],"outstandingDowntime":[false,false,true,true]}},{"ix":123,"action":{"kind":"Deliver","chain":"consumer","numPackets":1},"partialState":{"h":12,"t":72,"consumerPower":[null,7143,5592,null],"outstandingDowntime":[false,false,true,true]}},{"ix":124,"action":{"kind":"Deliver","chain":"provider","numPackets":2},"partialState":{"h":11,"t":66,"tokens":[4014,8660,5592,2210],"delegation":[3014,7660,4592,1210],"delegatorTokens":9999999960524,"jailed":[1000000000000005,null,null,null],"status":["unbonding","bonded","bonded","unbonding"]}},{"ix":125,"action":{"kind":"Deliver","chain":"provider","numPackets":3},"partialState":{"h":11,"t":66,"tokens":[4014,8660,5592,2210],"delegation":[3014,7660,4592,1210],"delegatorTokens":9999999960524,"jailed":[1000000000000005,null,null,null],"status":["unbonding","bonded","bonded","unbonding"]}},{"ix":126,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":127,"action":{"kind":"Undelegate","val":1,"amt":3333},"partialState":{"h":11,"t":66,"tokens":[4014,5327,5592,2210],"delegation":[3014,4327,4592,1210],"delegatorTokens":9999999960524}},{"ix":128,"action":{"kind":"Deliver","chain":"provider","numPackets":6},"partialState":{"h":11,"t":66,"tokens":[4014,5327,5592,2210],"delegation":[3014,4327,4592,1210],"delegatorTokens":9999999960524,"jailed":[1000000000000005,null,null,null],"status":["unbonding","bonded","bonded","unbonding"]}},{"ix":129,"action":{"kind":"Undelegate","val":1,"amt":1966},"partialState":{"h":11,"t":66,"tokens":[4014,3361,5592,2210],"delegation":[3014,2361,4592,1210],"delegatorTokens":9999999960524}},{"ix":130,"action":{"kind":"Deliver","chain":"provider","numPackets":6},"partialState":{"h":11,"t":66,"tokens":[4014,3361,5592,2210],"delegation":[3014,2361,4592,1210],"delegatorTokens":9999999960524,"jailed":[1000000000000005,null,null,null],"status":["unbonding","bonded","bonded","unbonding"]}},{"ix":131,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":132,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":12,"t":72,"tokens":[4014,3361,5592,2210],"delegation":[3014,2361,4592,1210],"delegatorTokens":9999999960524,"jailed":[1000000000000005,null,null,null],"status":["unbonding","bonded","bonded","unbonding"]}},{"ix":133,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":13,"t":78,"consumerPower":[null,7143,5592,null],"outstandingDowntime":[false,false,true,true]}},{"ix":134,"action":{"kind":"Undelegate","val":1,"amt":4148},"partialState":{"h":12,"t":72,"tokens":[4014,3361,5592,2210],"delegation":[3014,2361,4592,1210],"delegatorTokens":9999999960524}},{"ix":135,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":14,"t":84,"consumerPower":[null,7143,5592,null],"outstandingDowntime":[false,false,true,true]}},{"ix":136,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":13,"t":78,"tokens":[4014,3361,5592,2210],"delegation":[3014,2361,4592,1210],"delegatorTokens":9999999960524,"jailed":[1000000000000005,null,null,null],"status":["unbonding","bonded","bonded","unbonding"]}},{"ix":137,"action":{"kind":"Deliver","chain":"consumer","numPackets":2},"partialState":{"h":14,"t":84,"consumerPower":[null,7143,5592,null],"outstandingDowntime":[false,false,true,true]}},{"ix":138,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":14,"t":84,"tokens":[4014,3361,5592,2210],"delegation":[3014,2361,4592,1210],"delegatorTokens":9999999960524,"jailed":[1000000000000005,null,null,null],"status":["unbonding","bonded","bonded","unbonding"]}},{"ix":139,"action":{"kind":"Undelegate","val":0,"amt":2912},"partialState":{"h":14,"t":84,"tokens":[1102,3361,5592,2210],"delegation":[102,2361,4592,1210],"delegatorTokens":9999999960524}},{"ix":140,"action":{"kind":"Undelegate","val":0,"amt":3343},"partialState":{"h":14,"t":84,"tokens":[1102,3361,5592,2210],"delegation":[102,2361,4592,1210],"delegatorTokens":9999999960524}},{"ix":141,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":142,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":143,"action":{"kind":"Delegate","val":2,"amt":2401},"partialState":{"h":14,"t":84,"tokens":[1102,3361,7993,2210],"delegation":[102,2361,6993,1210],"delegatorTokens":9999999958123}},{"ix":144,"action":{"kind":"Delegate","val":1,"amt":4636},"partialState":{"h":14,"t":84,"tokens":[1102,7997,7993,2210],"delegation":[102,6997,6993,1210],"delegatorTokens":9999999953487}},{"ix":145,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":146,"action":{"kind":"Undelegate","val":3,"amt":1955},"partialState":{"h":14,"t":84,"tokens":[1102,7997,7993,2210],"delegation":[102,6997,6993,1210],"delegatorTokens":9999999953487}},{"ix":147,"action":{"kind":"Undelegate","val":3,"amt":3397},"partialState":{"h":14,"t":84,"tokens":[1102,7997,7993,2210],"delegation":[102,6997,6993,1210],"delegatorTokens":9999999953487}},{"ix":148,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":15,"t":90,"consumerPower":[null,3361,5592,null],"outstandingDowntime":[false,false,true,true]}},{"ix":149,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":16,"t":96,"consumerPower":[null,3361,5592,null],"outstandingDowntime":[false,false,true,true]}},{"ix":150,"action":{"kind":"Undelegate","val":2,"amt":2111},"partialState":{"h":14,"t":84,"tokens":[1102,7997,5882,2210],"delegation":[102,6997,4882,1210],"delegatorTokens":9999999953487}},{"ix":151,"action":{"kind":"Delegate","val":1,"amt":2517},"partialState":{"h":14,"t":84,"tokens":[1102,10514,5882,2210],"delegation":[102,9514,4882,1210],"delegatorTokens":9999999950970}},{"ix":152,"action":{"kind":"Deliver","chain":"provider","numPackets":6},"partialState":{"h":14,"t":84,"tokens":[1102,10514,5882,2210],"delegation":[102,9514,4882,1210],"delegatorTokens":9999999950970,"jailed":[1000000000000005,null,null,null],"status":["unbonding","bonded","bonded","unbonding"]}},{"ix":153,"action":{"kind":"Delegate","val":0,"amt":4857},"partialState":{"h":14,"t":84,"tokens":[5959,10514,5882,2210],"delegation":[4959,9514,4882,1210],"delegatorTokens":9999999946113}},{"ix":154,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":155,"action":{"kind":"Deliver","chain":"provider","numPackets":3},"partialState":{"h":14,"t":84,"tokens":[5959,10514,5882,2210],"delegation":[4959,9514,4882,1210],"delegatorTokens":9999999946113,"jailed":[1000000000000005,null,null,null],"status":["unbonding","bonded","bonded","unbonding"]}},{"ix":156,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":157,"action":{"kind":"Deliver","chain":"provider","numPackets":2},"partialState":{"h":14,"t":84,"tokens":[5959,10514,5882,2210],"delegation":[4959,9514,4882,1210],"delegatorTokens":9999999946113,"jailed":[1000000000000005,null,null,null],"status":["unbonding","bonded","bonded","unbonding"]}},{"ix":158,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":17,"t":102,"consumerPower":[null,3361,5592,null],"outstandingDowntime":[false,false,true,true]}},{"ix":159,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":18,"t":108,"consumerPower":[null,3361,5592,null],"outstandingDowntime":[false,false,true,true]}},{"ix":160,"action":{"kind":"Delegate","val":0,"amt":3678},"partialState":{"h":14,"t":84,"tokens":[9637,10514,5882,2210],"delegation":[8637,9514,4882,1210],"delegatorTokens":9999999942435}},{"ix":161,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":162,"action":{"kind":"Undelegate","val":2,"amt":2410},"partialState":{"h":14,"t":84,"tokens":[9637,10514,3472,2210],"delegation":[8637,9514,2472,1210],"delegatorTokens":9999999942435}},{"ix":163,"action":{"kind":"Deliver","chain":"consumer","numPackets":3},"partialState":{"h":18,"t":108,"consumerPower":[null,3361,5592,null],"outstandingDowntime":[false,false,true,true]}},{"ix":164,"action":{"kind":"Deliver","chain":"consumer","numPackets":5},"partialState":{"h":18,"t":108,"consumerPower":[null,3361,5592,null],"outstandingDowntime":[false,false,true,true]}},{"ix":165,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":19,"t":114,"consumerPower":[null,3361,5592,null],"outstandingDowntime":[false,false,true,true]}},{"ix":166,"action":{"kind":"Deliver","chain":"provider","numPackets":5},"partialState":{"h":14,"t":84,"tokens":[9637,10514,3472,2210],"delegation":[8637,9514,2472,1210],"delegatorTokens":9999999942435,"jailed":[1000000000000005,null,null,null],"status":["unbonding","bonded","bonded","unbonding"]}},{"ix":167,"action":{"kind":"Delegate","val":3,"amt":2152},"partialState":{"h":14,"t":84,"tokens":[9637,10514,3472,4362],"delegation":[8637,9514,2472,3362],"delegatorTokens":9999999940283}},{"ix":168,"action":{"kind":"Deliver","chain":"provider","numPackets":5},"partialState":{"h":14,"t":84,"tokens":[9637,10514,3472,4362],"delegation":[8637,9514,2472,3362],"delegatorTokens":9999999940283,"jailed":[1000000000000005,null,null,null],"status":["unbonding","bonded","bonded","unbonding"]}},{"ix":169,"action":{"kind":"Undelegate","val":3,"amt":3692},"partialState":{"h":14,"t":84,"tokens":[9637,10514,3472,4362],"delegation":[8637,9514,2472,3362],"delegatorTokens":9999999940283}},{"ix":170,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":15,"t":90,"tokens":[9637,10514,3472,4362],"delegation":[8637,9514,2472,3362],"delegatorTokens":9999999952282,"jailed":[1000000000000005,null,null,null],"status":["unbonding","bonded","unbonding","bonded"]}},{"ix":171,"action":{"kind":"Delegate","val":1,"amt":1569},"partialState":{"h":15,"t":90,"tokens":[9637,12083,3472,4362],"delegation":[8637,11083,2472,3362],"delegatorTokens":9999999950713}},{"ix":172,"action":{"kind":"Delegate","val":3,"amt":4633},"partialState":{"h":15,"t":90,"tokens":[9637,12083,3472,8995],"delegation":[8637,11083,2472,7995],"delegatorTokens":9999999946080}},{"ix":173,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":20,"t":120,"consumerPower":[null,3361,5592,null],"outstandingDowntime":[false,false,true,true]}},{"ix":174,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":21,"t":126,"consumerPower":[null,3361,5592,null],"outstandingDowntime":[false,false,true,true]}},{"ix":175,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":176,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":22,"t":132,"consumerPower":[null,3361,5592,null],"outstandingDowntime":[false,false,true,true]}},{"ix":177,"action":{"kind":"Delegate","val":1,"amt":4140},"partialState":{"h":15,"t":90,"tokens":[9637,16223,3472,8995],"delegation":[8637,15223,2472,7995],"delegatorTokens":9999999941940}},{"ix":178,"action":{"kind":"Delegate","val":3,"amt":4345},"partialState":{"h":15,"t":90,"tokens":[9637,16223,3472,13340],"delegation":[8637,15223,2472,12340],"delegatorTokens":9999999937595}},{"ix":179,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":180,"action":{"kind":"Undelegate","val":3,"amt":4700},"partialState":{"h":15,"t":90,"tokens":[9637,16223,3472,8640],"delegation":[8637,15223,2472,7640],"delegatorTokens":9999999937595}},{"ix":181,"action":{"kind":"Delegate","val":2,"amt":2180},"partialState":{"h":15,"t":90,"tokens":[9637,16223,5652,8640],"delegation":[8637,15223,4652,7640],"delegatorTokens":9999999935415}},{"ix":182,"action":{"kind":"Deliver","chain":"consumer","numPackets":6},"partialState":{"h":22,"t":132,"consumerPower":[null,3361,5592,null],"outstandingDowntime":[false,false,true,true]}},{"ix":183,"action":{"kind":"Deliver","chain":"consumer","numPackets":6},"partialState":{"h":22,"t":132,"consumerPower":[null,3361,5592,null],"outstandingDowntime":[false,false,true,true]}},{"ix":184,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":16,"t":96,"tokens":[9637,16223,5652,8640],"delegation":[8637,15223,4652,7640],"delegatorTokens":9999999935415,"jailed":[1000000000000005,null,null,null],"status":["unbonded","bonded","unbonding","bonded"]}},{"ix":185,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":186,"action":{"kind":"Delegate","val":0,"amt":2952},"partialState":{"h":16,"t":96,"tokens":[12589,16223,5652,8640],"delegation":[11589,15223,4652,7640],"delegatorTokens":9999999932463}},{"ix":187,"action":{"kind":"Undelegate","val":3,"amt":3644},"partialState":{"h":16,"t":96,"tokens":[12589,16223,5652,4996],"delegation":[11589,15223,4652,3996],"delegatorTokens":9999999932463}},{"ix":188,"action":{"kind":"Undelegate","val":2,"amt":4742},"partialState":{"h":16,"t":96,"tokens":[12589,16223,5652,4996],"delegation":[11589,15223,4652,3996],"delegatorTokens":9999999932463}},{"ix":189,"action":{"kind":"Delegate","val":3,"amt":2643},"partialState":{"h":16,"t":96,"tokens":[12589,16223,5652,7639],"delegation":[11589,15223,4652,6639],"delegatorTokens":9999999929820}},{"ix":190,"action":{"kind":"Undelegate","val":3,"amt":4002},"partialState":{"h":16,"t":96,"tokens":[12589,16223,5652,3637],"delegation":[11589,15223,4652,2637],"delegatorTokens":9999999929820}},{"ix":191,"action":{"kind":"Delegate","val":3,"amt":1516},"partialState":{"h":16,"t":96,"tokens":[12589,16223,5652,5153],"delegation":[11589,15223,4652,4153],"delegatorTokens":9999999928304}},{"ix":192,"action":{"kind":"Deliver","chain":"consumer","numPackets":1},"partialState":{"h":22,"t":132,"consumerPower":[null,3361,5592,null],"outstandingDowntime":[false,false,true,true]}},{"ix":193,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":194,"action":{"kind":"Delegate","val":0,"amt":2159},"partialState":{"h":16,"t":96,"tokens":[14748,16223,5652,5153],"delegation":[13748,15223,4652,4153],"delegatorTokens":9999999926145}},{"ix":195,"action":{"kind":"Deliver","chain":"provider","numPackets":3},"partialState":{"h":16,"t":96,"tokens":[14748,16223,5652,5153],"delegation":[13748,15223,4652,4153],"delegatorTokens":9999999926145,"jailed":[1000000000000005,null,null,null],"status":["unbonded","bonded","unbonding","bonded"]}},{"ix":196,"action":{"kind":"Delegate","val":2,"amt":2319},"partialState":{"h":16,"t":96,"tokens":[14748,16223,7971,5153],"delegation":[13748,15223,6971,4153],"delegatorTokens":9999999923826}},{"ix":197,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":17,"t":102,"tokens":[14748,16223,7971,5153],"delegation":[13748,15223,6971,4153],"delegatorTokens":9999999940349,"jailed":[1000000000000005,null,null,null],"status":["unbonded","bonded","bonded","unbonding"]}},{"ix":198,"action":{"kind":"Delegate","val":0,"amt":1518},"partialState":{"h":17,"t":102,"tokens":[16266,16223,7971,5153],"delegation":[15266,15223,6971,4153],"delegatorTokens":9999999938831}},{"ix":199,"action":{"kind":"Delegate","val":1,"amt":3732},"partialState":{"h":17,"t":102,"tokens":[16266,19955,7971,5153],"delegation":[15266,18955,6971,4153],"delegatorTokens":9999999935099}}],"events":["send_downtime_slash_request","send_downtime_slash_request","insufficient_shares","send_double_sign_slash_request","insufficient_shares","insufficient_shares","downtime_slash_request_outstanding","insufficient_shares","receive_double_sign_slash_request","downtime_slash_request_outstanding","send_downtime_slash_request","insufficient_shares","receive_slash_request_unbonded","receive_downtime_slash_request","jail","send_vsc_with_downtime_ack","insufficient_shares","more_than_one_third_val_power_change","send_vsc_without_downtime_ack","receive_downtime_slash_ack","insufficient_shares","insufficient_shares","send_vsc_without_downtime_ack","insufficient_shares","consumer_del_val","consumer_update_val","consumer_add_val","insufficient_shares","insufficient_shares","insufficient_shares","insufficient_shares","insufficient_shares","send_vsc_without_downtime_ack","insufficient_shares","insufficient_shares","consumer_update_val","send_vsc_not_because_change","send_vsc_without_downtime_ack","receive_slash_request_unbonded","consumer_update_val","consumer_update_val","send_vsc_without_downtime_ack","insufficient_shares","insufficient_shares","insufficient_shares","more_than_one_third_val_power_change","send_vsc_without_downtime_ack","consumer_update_val","consumer_add_val","consumer_del_val","send_vsc_without_downtime_ack","insufficient_shares","consumer_send_maturation","consumer_send_maturation","some_undels_expired_but_not_completed","insufficient_shares","insufficient_shares","insufficient_shares","consumer_update_val","consumer_send_maturation","consumer_send_maturation","consumer_send_maturation","insufficient_shares","rebond_unval","some_undels_expired_but_not_completed","complete_undel_immediate","complete_undel_immediate","complete_undel_immediate","complete_undel_immediate","set_unval_hold_false","send_vsc_without_downtime_ack","consumer_send_maturation","consumer_send_maturation","complete_unval_in_endblock","send_vsc_without_downtime_ack","insufficient_shares","rebond_unval","some_undels_expired_but_not_completed","complete_undel_immediate","complete_undel_immediate","complete_undel_immediate","complete_undel_immediate","complete_undel_immediate","complete_undel_immediate","set_undel_hold_false","send_vsc_without_downtime_ack"]},{"meta":{"commit":"7ffd0c04e4205cbc9caf212abfe6c59ee43153bf"},"constants":{"P":"provider","C":"consumer","UNBONDING_SECONDS_P":70,"UNBONDING_SECONDS_C":50,"TRUSTING_SECONDS":49,"NUM_VALIDATORS":4,"MAX_VALIDATORS":2,"SLASH_DOUBLESIGN":0,"SLASH_DOWNTIME":0,"JAIL_SECONDS":999999999999999,"BLOCK_SECONDS":6,"INITIAL_DELEGATOR_TOKENS":10000000000000,"DELEGATE_AMT_MIN":1000,"DELEGATE_AMT_MAX":5000,"UNDELEGATE_AMT_MIN":1000,"UNDELEGATE_AMT_MAX":5000,"ISDOWNTIME_PROBABILITY":0.5,"MAX_NUM_PACKETS_FOR_DELIVER":6},"actions":[{"ix":0,"action":{"kind":"ConsumerSlash","val":2,"infractionHeight":0,"isDowntime":true},"partialState":{"h":1,"t":6,"outstandingDowntime":[false,false,true,false]}},{"ix":1,"action":{"kind":"Undelegate","val":2,"amt":3814},"partialState":{"h":1,"t":6,"tokens":[5000,4000,3000,2000],"delegation":[4000,3000,2000,1000],"delegatorTokens":10000000000000}},{"ix":2,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":3,"action":{"kind":"Undelegate","val":3,"amt":3581},"partialState":{"h":1,"t":6,"tokens":[5000,4000,3000,2000],"delegation":[4000,3000,2000,1000],"delegatorTokens":10000000000000}},{"ix":4,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":5,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":6,"action":{"kind":"ConsumerSlash","val":3,"infractionHeight":0,"isDowntime":true},"partialState":{"h":1,"t":6,"outstandingDowntime":[false,false,true,true]}},{"ix":7,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":8,"action":{"kind":"ConsumerSlash","val":2,"infractionHeight":0,"isDowntime":true},"partialState":{"h":1,"t":6,"outstandingDowntime":[false,false,true,true]}},{"ix":9,"action":{"kind":"Undelegate","val":3,"amt":4136},"partialState":{"h":1,"t":6,"tokens":[5000,4000,3000,2000],"delegation":[4000,3000,2000,1000],"delegatorTokens":10000000000000}},{"ix":10,"action":{"kind":"Deliver","chain":"consumer","numPackets":4},"partialState":{"h":1,"t":6,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,false,true,true]}},{"ix":11,"action":{"kind":"Undelegate","val":0,"amt":4386},"partialState":{"h":1,"t":6,"tokens":[5000,4000,3000,2000],"delegation":[4000,3000,2000,1000],"delegatorTokens":10000000000000}},{"ix":12,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":2,"t":12,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,false,true,true]}},{"ix":13,"action":{"kind":"ConsumerSlash","val":0,"infractionHeight":0,"isDowntime":true},"partialState":{"h":2,"t":12,"outstandingDowntime":[true,false,true,true]}},{"ix":14,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":2,"t":12,"tokens":[5000,4000,3000,2000],"delegation":[4000,3000,2000,1000],"delegatorTokens":10000000000000,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":15,"action":{"kind":"Undelegate","val":2,"amt":1855},"partialState":{"h":2,"t":12,"tokens":[5000,4000,1145,2000],"delegation":[4000,3000,145,1000],"delegatorTokens":10000000000000}},{"ix":16,"action":{"kind":"Undelegate","val":3,"amt":4137},"partialState":{"h":2,"t":12,"tokens":[5000,4000,1145,2000],"delegation":[4000,3000,145,1000],"delegatorTokens":10000000000000}},{"ix":17,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":3,"t":18,"tokens":[5000,4000,1145,2000],"delegation":[4000,3000,145,1000],"delegatorTokens":10000000000000,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":18,"action":{"kind":"Undelegate","val":1,"amt":3959},"partialState":{"h":3,"t":18,"tokens":[5000,4000,1145,2000],"delegation":[4000,3000,145,1000],"delegatorTokens":10000000000000}},{"ix":19,"action":{"kind":"Undelegate","val":2,"amt":2763},"partialState":{"h":3,"t":18,"tokens":[5000,4000,1145,2000],"delegation":[4000,3000,145,1000],"delegatorTokens":10000000000000}},{"ix":20,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":21,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":22,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":23,"action":{"kind":"Deliver","chain":"consumer","numPackets":3},"partialState":{"h":2,"t":12,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[true,false,true,true]}},{"ix":24,"action":{"kind":"Undelegate","val":2,"amt":3266},"partialState":{"h":3,"t":18,"tokens":[5000,4000,1145,2000],"delegation":[4000,3000,145,1000],"delegatorTokens":10000000000000}},{"ix":25,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":26,"action":{"kind":"Delegate","val":0,"amt":4342},"partialState":{"h":3,"t":18,"tokens":[9342,4000,1145,2000],"delegation":[8342,3000,145,1000],"delegatorTokens":9999999995658}},{"ix":27,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":3,"t":18,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[true,false,true,true]}},{"ix":28,"action":{"kind":"Delegate","val":0,"amt":1944},"partialState":{"h":3,"t":18,"tokens":[11286,4000,1145,2000],"delegation":[10286,3000,145,1000],"delegatorTokens":9999999993714}},{"ix":29,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":30,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":4,"t":24,"tokens":[11286,4000,1145,2000],"delegation":[10286,3000,145,1000],"delegatorTokens":9999999993714,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":31,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":5,"t":30,"tokens":[11286,4000,1145,2000],"delegation":[10286,3000,145,1000],"delegatorTokens":9999999993714,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":32,"action":{"kind":"Deliver","chain":"consumer","numPackets":2},"partialState":{"h":3,"t":18,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[true,false,true,true]}},{"ix":33,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":4,"t":24,"consumerPower":[11286,4000,null,null],"outstandingDowntime":[true,false,true,true]}},{"ix":34,"action":{"kind":"Undelegate","val":2,"amt":4165},"partialState":{"h":5,"t":30,"tokens":[11286,4000,1145,2000],"delegation":[10286,3000,145,1000],"delegatorTokens":9999999993714}},{"ix":35,"action":{"kind":"Undelegate","val":1,"amt":4584},"partialState":{"h":5,"t":30,"tokens":[11286,4000,1145,2000],"delegation":[10286,3000,145,1000],"delegatorTokens":9999999993714}},{"ix":36,"action":{"kind":"Undelegate","val":1,"amt":1206},"partialState":{"h":5,"t":30,"tokens":[11286,2794,1145,2000],"delegation":[10286,1794,145,1000],"delegatorTokens":9999999993714}},{"ix":37,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":38,"action":{"kind":"Delegate","val":0,"amt":2011},"partialState":{"h":5,"t":30,"tokens":[13297,2794,1145,2000],"delegation":[12297,1794,145,1000],"delegatorTokens":9999999991703}},{"ix":39,"action":{"kind":"Deliver","chain":"consumer","numPackets":3},"partialState":{"h":4,"t":24,"consumerPower":[11286,4000,null,null],"outstandingDowntime":[true,false,true,true]}},{"ix":40,"action":{"kind":"Undelegate","val":0,"amt":3964},"partialState":{"h":5,"t":30,"tokens":[9333,2794,1145,2000],"delegation":[8333,1794,145,1000],"delegatorTokens":9999999991703}},{"ix":41,"action":{"kind":"Undelegate","val":2,"amt":2603},"partialState":{"h":5,"t":30,"tokens":[9333,2794,1145,2000],"delegation":[8333,1794,145,1000],"delegatorTokens":9999999991703}},{"ix":42,"action":{"kind":"Undelegate","val":3,"amt":1364},"partialState":{"h":5,"t":30,"tokens":[9333,2794,1145,2000],"delegation":[8333,1794,145,1000],"delegatorTokens":9999999991703}},{"ix":43,"action":{"kind":"Undelegate","val":0,"amt":1578},"partialState":{"h":5,"t":30,"tokens":[7755,2794,1145,2000],"delegation":[6755,1794,145,1000],"delegatorTokens":9999999991703}},{"ix":44,"action":{"kind":"Deliver","chain":"provider","numPackets":2},"partialState":{"h":5,"t":30,"tokens":[7755,2794,1145,2000],"delegation":[6755,1794,145,1000],"delegatorTokens":9999999991703,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":45,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":46,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":6,"t":36,"tokens":[7755,2794,1145,2000],"delegation":[6755,1794,145,1000],"delegatorTokens":9999999991703,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":47,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":5,"t":30,"consumerPower":[11286,4000,null,null],"outstandingDowntime":[true,false,true,true]}},{"ix":48,"action":{"kind":"Undelegate","val":0,"amt":4759},"partialState":{"h":6,"t":36,"tokens":[2996,2794,1145,2000],"delegation":[1996,1794,145,1000],"delegatorTokens":9999999991703}},{"ix":49,"action":{"kind":"Delegate","val":2,"amt":4136},"partialState":{"h":6,"t":36,"tokens":[2996,2794,5281,2000],"delegation":[1996,1794,4281,1000],"delegatorTokens":9999999987567}},{"ix":50,"action":{"kind":"Deliver","chain":"consumer","numPackets":6},"partialState":{"h":5,"t":30,"consumerPower":[11286,4000,null,null],"outstandingDowntime":[true,false,true,true]}},{"ix":51,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":52,"action":{"kind":"Undelegate","val":2,"amt":1289},"partialState":{"h":6,"t":36,"tokens":[2996,2794,3992,2000],"delegation":[1996,1794,2992,1000],"delegatorTokens":9999999987567}},{"ix":53,"action":{"kind":"Delegate","val":1,"amt":1914},"partialState":{"h":6,"t":36,"tokens":[2996,4708,3992,2000],"delegation":[1996,3708,2992,1000],"delegatorTokens":9999999985653}},{"ix":54,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":6,"t":36,"consumerPower":[11286,4000,null,null],"outstandingDowntime":[true,false,true,true]}},{"ix":55,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":56,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":57,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":7,"t":42,"tokens":[2996,4708,3992,2000],"delegation":[1996,3708,2992,1000],"delegatorTokens":9999999985653,"jailed":[null,null,null,null],"status":["unbonding","bonded","bonded","unbonded"]}},{"ix":58,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":59,"action":{"kind":"Deliver","chain":"consumer","numPackets":4},"partialState":{"h":6,"t":36,"consumerPower":[11286,4000,null,null],"outstandingDowntime":[true,false,true,true]}},{"ix":60,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":61,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":62,"action":{"kind":"Undelegate","val":2,"amt":3769},"partialState":{"h":7,"t":42,"tokens":[2996,4708,3992,2000],"delegation":[1996,3708,2992,1000],"delegatorTokens":9999999985653}},{"ix":63,"action":{"kind":"Delegate","val":2,"amt":4762},"partialState":{"h":7,"t":42,"tokens":[2996,4708,8754,2000],"delegation":[1996,3708,7754,1000],"delegatorTokens":9999999980891}},{"ix":64,"action":{"kind":"Deliver","chain":"provider","numPackets":3},"partialState":{"h":7,"t":42,"tokens":[2996,4708,8754,2000],"delegation":[1996,3708,7754,1000],"delegatorTokens":9999999980891,"jailed":[null,null,null,null],"status":["unbonding","bonded","bonded","unbonded"]}},{"ix":65,"action":{"kind":"Delegate","val":1,"amt":1123},"partialState":{"h":7,"t":42,"tokens":[2996,5831,8754,2000],"delegation":[1996,4831,7754,1000],"delegatorTokens":9999999979768}},{"ix":66,"action":{"kind":"Undelegate","val":3,"amt":4836},"partialState":{"h":7,"t":42,"tokens":[2996,5831,8754,2000],"delegation":[1996,4831,7754,1000],"delegatorTokens":9999999979768}},{"ix":67,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":8,"t":48,"tokens":[2996,5831,8754,2000],"delegation":[1996,4831,7754,1000],"delegatorTokens":9999999979768,"jailed":[1000000000000041,null,null,null],"status":["unbonding","bonded","bonded","unbonded"]}},{"ix":68,"action":{"kind":"Deliver","chain":"consumer","numPackets":5},"partialState":{"h":6,"t":36,"consumerPower":[11286,4000,null,null],"outstandingDowntime":[true,false,true,true]}},{"ix":69,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":70,"action":{"kind":"Deliver","chain":"consumer","numPackets":6},"partialState":{"h":6,"t":36,"consumerPower":[11286,4000,null,null],"outstandingDowntime":[true,false,true,true]}},{"ix":71,"action":{"kind":"Delegate","val":0,"amt":2325},"partialState":{"h":8,"t":48,"tokens":[5321,5831,8754,2000],"delegation":[4321,4831,7754,1000],"delegatorTokens":9999999977443}},{"ix":72,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":73,"action":{"kind":"Delegate","val":2,"amt":3749},"partialState":{"h":8,"t":48,"tokens":[5321,5831,12503,2000],"delegation":[4321,4831,11503,1000],"delegatorTokens":9999999973694}},{"ix":74,"action":{"kind":"Undelegate","val":3,"amt":4261},"partialState":{"h":8,"t":48,"tokens":[5321,5831,12503,2000],"delegation":[4321,4831,11503,1000],"delegatorTokens":9999999973694}},{"ix":75,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":9,"t":54,"tokens":[5321,5831,12503,2000],"delegation":[4321,4831,11503,1000],"delegatorTokens":9999999973694,"jailed":[1000000000000041,null,null,null],"status":["unbonding","bonded","bonded","unbonded"]}},{"ix":76,"action":{"kind":"Undelegate","val":1,"amt":1449},"partialState":{"h":9,"t":54,"tokens":[5321,4382,12503,2000],"delegation":[4321,3382,11503,1000],"delegatorTokens":9999999973694}},{"ix":77,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":7,"t":42,"consumerPower":[null,4708,3992,null],"outstandingDowntime":[true,false,true,true]}},{"ix":78,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":10,"t":60,"tokens":[5321,4382,12503,2000],"delegation":[4321,3382,11503,1000],"delegatorTokens":9999999973694,"jailed":[1000000000000041,null,null,null],"status":["unbonding","bonded","bonded","unbonded"]}},{"ix":79,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":8,"t":48,"consumerPower":[null,4708,3992,null],"outstandingDowntime":[true,false,true,true]}},{"ix":80,"action":{"kind":"Deliver","chain":"provider","numPackets":4},"partialState":{"h":10,"t":60,"tokens":[5321,4382,12503,2000],"delegation":[4321,3382,11503,1000],"delegatorTokens":9999999973694,"jailed":[1000000000000041,null,null,null],"status":["unbonding","bonded","bonded","unbonded"]}},{"ix":81,"action":{"kind":"Delegate","val":2,"amt":2723},"partialState":{"h":10,"t":60,"tokens":[5321,4382,15226,2000],"delegation":[4321,3382,14226,1000],"delegatorTokens":9999999970971}},{"ix":82,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":9,"t":54,"consumerPower":[null,4708,3992,null],"outstandingDowntime":[true,false,true,true]}},{"ix":83,"action":{"kind":"Delegate","val":2,"amt":1556},"partialState":{"h":10,"t":60,"tokens":[5321,4382,16782,2000],"delegation":[4321,3382,15782,1000],"delegatorTokens":9999999969415}},{"ix":84,"action":{"kind":"Delegate","val":0,"amt":2976},"partialState":{"h":10,"t":60,"tokens":[8297,4382,16782,2000],"delegation":[7297,3382,15782,1000],"delegatorTokens":9999999966439}},{"ix":85,"action":{"kind":"Undelegate","val":0,"amt":4328},"partialState":{"h":10,"t":60,"tokens":[3969,4382,16782,2000],"delegation":[2969,3382,15782,1000],"delegatorTokens":9999999966439}},{"ix":86,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":10,"t":60,"consumerPower":[null,4708,3992,null],"outstandingDowntime":[true,false,true,true]}},{"ix":87,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":88,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":11,"t":66,"consumerPower":[null,4708,3992,null],"outstandingDowntime":[true,false,true,true]}},{"ix":89,"action":{"kind":"Undelegate","val":1,"amt":4036},"partialState":{"h":10,"t":60,"tokens":[3969,4382,16782,2000],"delegation":[2969,3382,15782,1000],"delegatorTokens":9999999966439}},{"ix":90,"action":{"kind":"Delegate","val":3,"amt":4998},"partialState":{"h":10,"t":60,"tokens":[3969,4382,16782,6998],"delegation":[2969,3382,15782,5998],"delegatorTokens":9999999961441}},{"ix":91,"action":{"kind":"Undelegate","val":0,"amt":3643},"partialState":{"h":10,"t":60,"tokens":[3969,4382,16782,6998],"delegation":[2969,3382,15782,5998],"delegatorTokens":9999999961441}},{"ix":92,"action":{"kind":"Delegate","val":0,"amt":1927},"partialState":{"h":10,"t":60,"tokens":[5896,4382,16782,6998],"delegation":[4896,3382,15782,5998],"delegatorTokens":9999999959514}},{"ix":93,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":12,"t":72,"consumerPower":[null,4708,3992,null],"outstandingDowntime":[true,false,true,true]}},{"ix":94,"action":{"kind":"Deliver","chain":"provider","numPackets":6},"partialState":{"h":10,"t":60,"tokens":[5896,4382,16782,6998],"delegation":[4896,3382,15782,5998],"delegatorTokens":9999999959514,"jailed":[1000000000000041,null,null,null],"status":["unbonding","bonded","bonded","unbonded"]}},{"ix":95,"action":{"kind":"Deliver","chain":"consumer","numPackets":2},"partialState":{"h":12,"t":72,"consumerPower":[null,4708,3992,null],"outstandingDowntime":[false,false,true,true]}},{"ix":96,"action":{"kind":"Deliver","chain":"consumer","numPackets":5},"partialState":{"h":12,"t":72,"consumerPower":[null,4708,3992,null],"outstandingDowntime":[false,false,true,true]}},{"ix":97,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":98,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":99,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":11,"t":66,"tokens":[5896,4382,16782,6998],"delegation":[4896,3382,15782,5998],"delegatorTokens":9999999959514,"jailed":[1000000000000041,null,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":100,"action":{"kind":"Undelegate","val":1,"amt":1773},"partialState":{"h":11,"t":66,"tokens":[5896,2609,16782,6998],"delegation":[4896,1609,15782,5998],"delegatorTokens":9999999959514}},{"ix":101,"action":{"kind":"Undelegate","val":3,"amt":1241},"partialState":{"h":11,"t":66,"tokens":[5896,2609,16782,5757],"delegation":[4896,1609,15782,4757],"delegatorTokens":9999999959514}},{"ix":102,"action":{"kind":"Undelegate","val":3,"amt":4692},"partialState":{"h":11,"t":66,"tokens":[5896,2609,16782,1065],"delegation":[4896,1609,15782,65],"delegatorTokens":9999999959514}},{"ix":103,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":104,"action":{"kind":"Undelegate","val":3,"amt":1866},"partialState":{"h":11,"t":66,"tokens":[5896,2609,16782,1065],"delegation":[4896,1609,15782,65],"delegatorTokens":9999999959514}},{"ix":105,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":106,"action":{"kind":"Undelegate","val":1,"amt":4550},"partialState":{"h":11,"t":66,"tokens":[5896,2609,16782,1065],"delegation":[4896,1609,15782,65],"delegatorTokens":9999999959514}},{"ix":107,"action":{"kind":"Deliver","chain":"consumer","numPackets":3},"partialState":{"h":12,"t":72,"consumerPower":[null,4708,3992,null],"outstandingDowntime":[false,false,true,true]}},{"ix":108,"action":{"kind":"Deliver","chain":"provider","numPackets":3},"partialState":{"h":11,"t":66,"tokens":[5896,2609,16782,1065],"delegation":[4896,1609,15782,65],"delegatorTokens":9999999959514,"jailed":[1000000000000041,null,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":109,"action":{"kind":"Deliver","chain":"provider","numPackets":6},"partialState":{"h":11,"t":66,"tokens":[5896,2609,16782,1065],"delegation":[4896,1609,15782,65],"delegatorTokens":9999999959514,"jailed":[1000000000000041,null,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":110,"action":{"kind":"Undelegate","val":0,"amt":2828},"partialState":{"h":11,"t":66,"tokens":[3068,2609,16782,1065],"delegation":[2068,1609,15782,65],"delegatorTokens":9999999959514}},{"ix":111,"action":{"kind":"Delegate","val":1,"amt":2359},"partialState":{"h":11,"t":66,"tokens":[3068,4968,16782,1065],"delegation":[2068,3968,15782,65],"delegatorTokens":9999999957155}},{"ix":112,"action":{"kind":"Delegate","val":3,"amt":3003},"partialState":{"h":11,"t":66,"tokens":[3068,4968,16782,4068],"delegation":[2068,3968,15782,3068],"delegatorTokens":9999999954152}},{"ix":113,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":13,"t":78,"consumerPower":[null,4382,12503,null],"outstandingDowntime":[false,false,true,true]}},{"ix":114,"action":{"kind":"Undelegate","val":2,"amt":3297},"partialState":{"h":11,"t":66,"tokens":[3068,4968,13485,4068],"delegation":[2068,3968,12485,3068],"delegatorTokens":9999999954152}},{"ix":115,"action":{"kind":"Delegate","val":2,"amt":3800},"partialState":{"h":11,"t":66,"tokens":[3068,4968,17285,4068],"delegation":[2068,3968,16285,3068],"delegatorTokens":9999999950352}},{"ix":116,"action":{"kind":"Deliver","chain":"provider","numPackets":1},"partialState":{"h":11,"t":66,"tokens":[3068,4968,17285,4068],"delegation":[2068,3968,16285,3068],"delegatorTokens":9999999950352,"jailed":[1000000000000041,null,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":117,"action":{"kind":"Undelegate","val":1,"amt":1413},"partialState":{"h":11,"t":66,"tokens":[3068,3555,17285,4068],"delegation":[2068,2555,16285,3068],"delegatorTokens":9999999950352}},{"ix":118,"action":{"kind":"Undelegate","val":3,"amt":3715},"partialState":{"h":11,"t":66,"tokens":[3068,3555,17285,4068],"delegation":[2068,2555,16285,3068],"delegatorTokens":9999999950352}},{"ix":119,"action":{"kind":"Deliver","chain":"consumer","numPackets":2},"partialState":{"h":13,"t":78,"consumerPower":[null,4382,12503,null],"outstandingDowntime":[false,false,true,true]}},{"ix":120,"action":{"kind":"Undelegate","val":2,"amt":1247},"partialState":{"h":11,"t":66,"tokens":[3068,3555,16038,4068],"delegation":[2068,2555,15038,3068],"delegatorTokens":9999999950352}},{"ix":121,"action":{"kind":"Delegate","val":3,"amt":4740},"partialState":{"h":11,"t":66,"tokens":[3068,3555,16038,8808],"delegation":[2068,2555,15038,7808],"delegatorTokens":9999999945612}},{"ix":122,"action":{"kind":"Deliver","chain":"provider","numPackets":4},"partialState":{"h":11,"t":66,"tokens":[3068,3555,16038,8808],"delegation":[2068,2555,15038,7808],"delegatorTokens":9999999945612,"jailed":[1000000000000041,null,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":123,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":14,"t":84,"consumerPower":[null,4382,12503,null],"outstandingDowntime":[false,false,true,true]}},{"ix":124,"action":{"kind":"Delegate","val":3,"amt":2174},"partialState":{"h":11,"t":66,"tokens":[3068,3555,16038,10982],"delegation":[2068,2555,15038,9982],"delegatorTokens":9999999943438}},{"ix":125,"action":{"kind":"Deliver","chain":"consumer","numPackets":1},"partialState":{"h":14,"t":84,"consumerPower":[null,4382,12503,null],"outstandingDowntime":[false,false,true,true]}},{"ix":126,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":127,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":12,"t":72,"tokens":[3068,3555,16038,10982],"delegation":[2068,2555,15038,9982],"delegatorTokens":9999999943438,"jailed":[1000000000000041,null,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":128,"action":{"kind":"Deliver","chain":"provider","numPackets":4},"partialState":{"h":12,"t":72,"tokens":[3068,3555,16038,10982],"delegation":[2068,2555,15038,9982],"delegatorTokens":9999999943438,"jailed":[1000000000000041,null,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":129,"action":{"kind":"Delegate","val":2,"amt":2883},"partialState":{"h":12,"t":72,"tokens":[3068,3555,18921,10982],"delegation":[2068,2555,17921,9982],"delegatorTokens":9999999940555}},{"ix":130,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":13,"t":78,"tokens":[3068,3555,18921,10982],"delegation":[2068,2555,17921,9982],"delegatorTokens":9999999940555,"jailed":[1000000000000041,null,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":131,"action":{"kind":"Deliver","chain":"consumer","numPackets":2},"partialState":{"h":14,"t":84,"consumerPower":[null,4382,12503,null],"outstandingDowntime":[false,false,true,true]}},{"ix":132,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":14,"t":84,"tokens":[3068,3555,18921,10982],"delegation":[2068,2555,17921,9982],"delegatorTokens":9999999940555,"jailed":[1000000000000041,null,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":133,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":15,"t":90,"consumerPower":[null,null,16038,10982],"outstandingDowntime":[false,false,true,true]}},{"ix":134,"action":{"kind":"Undelegate","val":0,"amt":1268},"partialState":{"h":14,"t":84,"tokens":[1800,3555,18921,10982],"delegation":[800,2555,17921,9982],"delegatorTokens":9999999940555}},{"ix":135,"action":{"kind":"Deliver","chain":"consumer","numPackets":5},"partialState":{"h":15,"t":90,"consumerPower":[null,null,16038,10982],"outstandingDowntime":[false,false,true,true]}},{"ix":136,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":137,"action":{"kind":"Deliver","chain":"provider","numPackets":3},"partialState":{"h":14,"t":84,"tokens":[1800,3555,18921,10982],"delegation":[800,2555,17921,9982],"delegatorTokens":9999999940555,"jailed":[1000000000000041,null,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":138,"action":{"kind":"Undelegate","val":3,"amt":3477},"partialState":{"h":14,"t":84,"tokens":[1800,3555,18921,7505],"delegation":[800,2555,17921,6505],"delegatorTokens":9999999940555}},{"ix":139,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":140,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":16,"t":96,"consumerPower":[null,null,18921,10982],"outstandingDowntime":[false,false,true,true]}},{"ix":141,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":17,"t":102,"consumerPower":[null,null,18921,10982],"outstandingDowntime":[false,false,true,true]}},{"ix":142,"action":{"kind":"Deliver","chain":"provider","numPackets":6},"partialState":{"h":14,"t":84,"tokens":[1800,3555,18921,7505],"delegation":[800,2555,17921,6505],"delegatorTokens":9999999940555,"jailed":[1000000000000041,null,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":143,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":144,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":145,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":15,"t":90,"tokens":[1800,3555,18921,7505],"delegation":[800,2555,17921,6505],"delegatorTokens":9999999942410,"jailed":[1000000000000041,null,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":146,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":16,"t":96,"tokens":[1800,3555,18921,7505],"delegation":[800,2555,17921,6505],"delegatorTokens":9999999942410,"jailed":[1000000000000041,null,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":147,"action":{"kind":"Deliver","chain":"provider","numPackets":6},"partialState":{"h":16,"t":96,"tokens":[1800,3555,18921,7505],"delegation":[800,2555,17921,6505],"delegatorTokens":9999999942410,"jailed":[1000000000000041,null,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":148,"action":{"kind":"Undelegate","val":0,"amt":2173},"partialState":{"h":16,"t":96,"tokens":[1800,3555,18921,7505],"delegation":[800,2555,17921,6505],"delegatorTokens":9999999942410}},{"ix":149,"action":{"kind":"Undelegate","val":3,"amt":4155},"partialState":{"h":16,"t":96,"tokens":[1800,3555,18921,3350],"delegation":[800,2555,17921,2350],"delegatorTokens":9999999942410}},{"ix":150,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":151,"action":{"kind":"Deliver","chain":"provider","numPackets":5},"partialState":{"h":16,"t":96,"tokens":[1800,3555,18921,3350],"delegation":[800,2555,17921,2350],"delegatorTokens":9999999942410,"jailed":[1000000000000041,null,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":152,"action":{"kind":"Undelegate","val":3,"amt":3415},"partialState":{"h":16,"t":96,"tokens":[1800,3555,18921,3350],"delegation":[800,2555,17921,2350],"delegatorTokens":9999999942410}},{"ix":153,"action":{"kind":"Undelegate","val":2,"amt":1324},"partialState":{"h":16,"t":96,"tokens":[1800,3555,17597,3350],"delegation":[800,2555,16597,2350],"delegatorTokens":9999999942410}},{"ix":154,"action":{"kind":"Deliver","chain":"consumer","numPackets":2},"partialState":{"h":17,"t":102,"consumerPower":[null,null,18921,10982],"outstandingDowntime":[false,false,true,true]}},{"ix":155,"action":{"kind":"Undelegate","val":2,"amt":2655},"partialState":{"h":16,"t":96,"tokens":[1800,3555,14942,3350],"delegation":[800,2555,13942,2350],"delegatorTokens":9999999942410}},{"ix":156,"action":{"kind":"Undelegate","val":0,"amt":1363},"partialState":{"h":16,"t":96,"tokens":[1800,3555,14942,3350],"delegation":[800,2555,13942,2350],"delegatorTokens":9999999942410}},{"ix":157,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":158,"action":{"kind":"Undelegate","val":0,"amt":1445},"partialState":{"h":16,"t":96,"tokens":[1800,3555,14942,3350],"delegation":[800,2555,13942,2350],"delegatorTokens":9999999942410}},{"ix":159,"action":{"kind":"Delegate","val":2,"amt":3195},"partialState":{"h":16,"t":96,"tokens":[1800,3555,18137,3350],"delegation":[800,2555,17137,2350],"delegatorTokens":9999999939215}},{"ix":160,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":161,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":18,"t":108,"consumerPower":[null,null,18921,7505],"outstandingDowntime":[false,false,true,true]}},{"ix":162,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":163,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":164,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":165,"action":{"kind":"Deliver","chain":"consumer","numPackets":4},"partialState":{"h":18,"t":108,"consumerPower":[null,null,18921,7505],"outstandingDowntime":[false,false,true,true]}},{"ix":166,"action":{"kind":"Undelegate","val":3,"amt":2174},"partialState":{"h":16,"t":96,"tokens":[1800,3555,18137,1176],"delegation":[800,2555,17137,176],"delegatorTokens":9999999939215}},{"ix":167,"action":{"kind":"Undelegate","val":0,"amt":1345},"partialState":{"h":16,"t":96,"tokens":[1800,3555,18137,1176],"delegation":[800,2555,17137,176],"delegatorTokens":9999999939215}},{"ix":168,"action":{"kind":"Undelegate","val":2,"amt":2752},"partialState":{"h":16,"t":96,"tokens":[1800,3555,15385,1176],"delegation":[800,2555,14385,176],"delegatorTokens":9999999939215}},{"ix":169,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":19,"t":114,"consumerPower":[null,null,18921,7505],"outstandingDowntime":[false,false,true,true]}},{"ix":170,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":171,"action":{"kind":"Delegate","val":3,"amt":4918},"partialState":{"h":16,"t":96,"tokens":[1800,3555,15385,6094],"delegation":[800,2555,14385,5094],"delegatorTokens":9999999934297}},{"ix":172,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":173,"action":{"kind":"Undelegate","val":1,"amt":2287},"partialState":{"h":16,"t":96,"tokens":[1800,1268,15385,6094],"delegation":[800,268,14385,5094],"delegatorTokens":9999999934297}},{"ix":174,"action":{"kind":"Undelegate","val":3,"amt":3681},"partialState":{"h":16,"t":96,"tokens":[1800,1268,15385,2413],"delegation":[800,268,14385,1413],"delegatorTokens":9999999934297}},{"ix":175,"action":{"kind":"Deliver","chain":"provider","numPackets":6},"partialState":{"h":16,"t":96,"tokens":[1800,1268,15385,2413],"delegation":[800,268,14385,1413],"delegatorTokens":9999999934297,"jailed":[1000000000000041,null,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":176,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":17,"t":102,"tokens":[1800,1268,15385,2413],"delegation":[800,268,14385,1413],"delegatorTokens":9999999934297,"jailed":[1000000000000041,null,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":177,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":178,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":18,"t":108,"tokens":[1800,1268,15385,2413],"delegation":[800,268,14385,1413],"delegatorTokens":9999999941045,"jailed":[1000000000000041,null,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":179,"action":{"kind":"Deliver","chain":"consumer","numPackets":3},"partialState":{"h":19,"t":114,"consumerPower":[null,null,18921,7505],"outstandingDowntime":[false,false,true,true]}},{"ix":180,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":181,"action":{"kind":"Deliver","chain":"consumer","numPackets":4},"partialState":{"h":19,"t":114,"consumerPower":[null,null,18921,7505],"outstandingDowntime":[false,false,true,true]}},{"ix":182,"action":{"kind":"Deliver","chain":"provider","numPackets":6},"partialState":{"h":18,"t":108,"tokens":[1800,1268,15385,2413],"delegation":[800,268,14385,1413],"delegatorTokens":9999999941045,"jailed":[1000000000000041,null,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":183,"action":{"kind":"Delegate","val":1,"amt":3045},"partialState":{"h":18,"t":108,"tokens":[1800,4313,15385,2413],"delegation":[800,3313,14385,1413],"delegatorTokens":9999999938000}},{"ix":184,"action":{"kind":"Undelegate","val":2,"amt":3526},"partialState":{"h":18,"t":108,"tokens":[1800,4313,11859,2413],"delegation":[800,3313,10859,1413],"delegatorTokens":9999999938000}},{"ix":185,"action":{"kind":"Delegate","val":3,"amt":1007},"partialState":{"h":18,"t":108,"tokens":[1800,4313,11859,3420],"delegation":[800,3313,10859,2420],"delegatorTokens":9999999936993}},{"ix":186,"action":{"kind":"Undelegate","val":2,"amt":4235},"partialState":{"h":18,"t":108,"tokens":[1800,4313,7624,3420],"delegation":[800,3313,6624,2420],"delegatorTokens":9999999936993}},{"ix":187,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":20,"t":120,"consumerPower":[null,null,15385,2413],"outstandingDowntime":[false,false,true,true]}},{"ix":188,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":19,"t":114,"tokens":[1800,4313,7624,3420],"delegation":[800,3313,6624,2420],"delegatorTokens":9999999943041,"jailed":[1000000000000041,null,null,null],"status":["unbonded","bonded","bonded","unbonding"]}},{"ix":189,"action":{"kind":"Delegate","val":3,"amt":3537},"partialState":{"h":19,"t":114,"tokens":[1800,4313,7624,6957],"delegation":[800,3313,6624,5957],"delegatorTokens":9999999939504}},{"ix":190,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":20,"t":120,"tokens":[1800,4313,7624,6957],"delegation":[800,3313,6624,5957],"delegatorTokens":9999999939504,"jailed":[1000000000000041,null,null,null],"status":["unbonded","unbonding","bonded","bonded"]}},{"ix":191,"action":{"kind":"Undelegate","val":2,"amt":1221},"partialState":{"h":20,"t":120,"tokens":[1800,4313,6403,6957],"delegation":[800,3313,5403,5957],"delegatorTokens":9999999939504}},{"ix":192,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":193,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":21,"t":126,"tokens":[1800,4313,6403,6957],"delegation":[800,3313,5403,5957],"delegatorTokens":9999999939504,"jailed":[1000000000000041,null,null,null],"status":["unbonded","unbonding","bonded","bonded"]}},{"ix":194,"action":{"kind":"Undelegate","val":0,"amt":2251},"partialState":{"h":21,"t":126,"tokens":[1800,4313,6403,6957],"delegation":[800,3313,5403,5957],"delegatorTokens":9999999939504}},{"ix":195,"action":{"kind":"Deliver","chain":"provider","numPackets":3},"partialState":{"h":21,"t":126,"tokens":[1800,4313,6403,6957],"delegation":[800,3313,5403,5957],"delegatorTokens":9999999939504,"jailed":[1000000000000041,null,null,null],"status":["unbonded","unbonding","bonded","bonded"]}},{"ix":196,"action":{"kind":"Undelegate","val":1,"amt":2681},"partialState":{"h":21,"t":126,"tokens":[1800,1632,6403,6957],"delegation":[800,632,5403,5957],"delegatorTokens":9999999939504}},{"ix":197,"action":{"kind":"Undelegate","val":3,"amt":4457},"partialState":{"h":21,"t":126,"tokens":[1800,1632,6403,2500],"delegation":[800,632,5403,1500],"delegatorTokens":9999999939504}},{"ix":198,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":199,"action":{"kind":"Delegate","val":3,"amt":1761},"partialState":{"h":21,"t":126,"tokens":[1800,1632,6403,4261],"delegation":[800,632,5403,3261],"delegatorTokens":9999999937743}}],"events":["send_downtime_slash_request","insufficient_shares","insufficient_shares","send_downtime_slash_request","downtime_slash_request_outstanding","insufficient_shares","insufficient_shares","send_downtime_slash_request","insufficient_shares","send_vsc_not_because_change","send_vsc_without_downtime_ack","insufficient_shares","insufficient_shares","insufficient_shares","send_vsc_without_downtime_ack","consumer_update_val","insufficient_shares","insufficient_shares","insufficient_shares","insufficient_shares","receive_slash_request_unbonded","receive_slash_request_unbonded","send_vsc_without_downtime_ack","more_than_one_third_val_power_change","send_vsc_without_downtime_ack","insufficient_shares","insufficient_shares","receive_downtime_slash_request","jail","send_vsc_with_downtime_ack","insufficient_shares","send_vsc_without_downtime_ack","consumer_del_val","consumer_update_val","consumer_add_val","send_vsc_without_downtime_ack","insufficient_shares","insufficient_shares","receive_downtime_slash_ack","send_vsc_without_downtime_ack","insufficient_shares","insufficient_shares","consumer_send_maturation","consumer_send_maturation","consumer_update_val","consumer_update_val","insufficient_shares","send_vsc_without_downtime_ack","set_undel_hold_false","send_vsc_without_downtime_ack","consumer_del_val","consumer_update_val","consumer_add_val","consumer_send_maturation","consumer_send_maturation","consumer_update_val","complete_undel_in_endblock","set_undel_hold_false","set_undel_hold_false","set_undel_hold_false","set_undel_hold_false","set_undel_hold_false","set_unval_hold_false","send_vsc_without_downtime_ack","insufficient_shares","insufficient_shares","insufficient_shares","insufficient_shares","consumer_update_val","insufficient_shares","send_vsc_without_downtime_ack","complete_undel_in_endblock","consumer_update_val","consumer_update_val","more_than_one_third_val_power_change","rebond_unval","complete_unval_in_endblock","complete_undel_in_endblock","send_vsc_without_downtime_ack","more_than_one_third_val_power_change","rebond_unval","send_vsc_without_downtime_ack","send_vsc_without_downtime_ack","insufficient_shares"]},{"meta":{"commit":"7ffd0c04e4205cbc9caf212abfe6c59ee43153bf"},"constants":{"P":"provider","C":"consumer","UNBONDING_SECONDS_P":70,"UNBONDING_SECONDS_C":50,"TRUSTING_SECONDS":49,"NUM_VALIDATORS":4,"MAX_VALIDATORS":2,"SLASH_DOUBLESIGN":0,"SLASH_DOWNTIME":0,"JAIL_SECONDS":999999999999999,"BLOCK_SECONDS":6,"INITIAL_DELEGATOR_TOKENS":10000000000000,"DELEGATE_AMT_MIN":1000,"DELEGATE_AMT_MAX":5000,"UNDELEGATE_AMT_MIN":1000,"UNDELEGATE_AMT_MAX":5000,"ISDOWNTIME_PROBABILITY":0.5,"MAX_NUM_PACKETS_FOR_DELIVER":6},"actions":[{"ix":0,"action":{"kind":"Delegate","val":1,"amt":2442},"partialState":{"h":1,"t":6,"tokens":[5000,6442,3000,2000],"delegation":[4000,5442,2000,1000],"delegatorTokens":9999999997558}},{"ix":1,"action":{"kind":"Deliver","chain":"consumer","numPackets":4},"partialState":{"h":1,"t":6,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":2,"action":{"kind":"Delegate","val":0,"amt":1973},"partialState":{"h":1,"t":6,"tokens":[6973,6442,3000,2000],"delegation":[5973,5442,2000,1000],"delegatorTokens":9999999995585}},{"ix":3,"action":{"kind":"ConsumerSlash","val":2,"infractionHeight":0,"isDowntime":true},"partialState":{"h":1,"t":6,"outstandingDowntime":[false,false,true,false]}},{"ix":4,"action":{"kind":"Undelegate","val":0,"amt":2571},"partialState":{"h":1,"t":6,"tokens":[4402,6442,3000,2000],"delegation":[3402,5442,2000,1000],"delegatorTokens":9999999995585}},{"ix":5,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":2,"t":12,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,false,true,false]}},{"ix":6,"action":{"kind":"ConsumerSlash","val":2,"infractionHeight":0,"isDowntime":false},"partialState":{"h":2,"t":12,"outstandingDowntime":[false,false,true,false]}},{"ix":7,"action":{"kind":"Delegate","val":0,"amt":4211},"partialState":{"h":1,"t":6,"tokens":[8613,6442,3000,2000],"delegation":[7613,5442,2000,1000],"delegatorTokens":9999999991374}},{"ix":8,"action":{"kind":"Deliver","chain":"provider","numPackets":4},"partialState":{"h":1,"t":6,"tokens":[8613,6442,3000,2000],"delegation":[7613,5442,2000,1000],"delegatorTokens":9999999991374,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":9,"action":{"kind":"Deliver","chain":"provider","numPackets":2},"partialState":{"h":1,"t":6,"tokens":[8613,6442,3000,2000],"delegation":[7613,5442,2000,1000],"delegatorTokens":9999999991374,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":10,"action":{"kind":"Delegate","val":1,"amt":3243},"partialState":{"h":1,"t":6,"tokens":[8613,9685,3000,2000],"delegation":[7613,8685,2000,1000],"delegatorTokens":9999999988131}},{"ix":11,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":3,"t":18,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,false,true,false]}},{"ix":12,"action":{"kind":"Undelegate","val":1,"amt":3365},"partialState":{"h":1,"t":6,"tokens":[8613,6320,3000,2000],"delegation":[7613,5320,2000,1000],"delegatorTokens":9999999988131}},{"ix":13,"action":{"kind":"ConsumerSlash","val":3,"infractionHeight":1,"isDowntime":true},"partialState":{"h":3,"t":18,"outstandingDowntime":[false,false,true,true]}},{"ix":14,"action":{"kind":"Undelegate","val":3,"amt":1660},"partialState":{"h":1,"t":6,"tokens":[8613,6320,3000,2000],"delegation":[7613,5320,2000,1000],"delegatorTokens":9999999988131}},{"ix":15,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":16,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":2,"t":12,"tokens":[8613,6320,3000,2000],"delegation":[7613,5320,2000,1000],"delegatorTokens":9999999988131,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":17,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":18,"action":{"kind":"Delegate","val":2,"amt":1913},"partialState":{"h":2,"t":12,"tokens":[8613,6320,4913,2000],"delegation":[7613,5320,3913,1000],"delegatorTokens":9999999986218}},{"ix":19,"action":{"kind":"ConsumerSlash","val":3,"infractionHeight":0,"isDowntime":true},"partialState":{"h":3,"t":18,"outstandingDowntime":[false,false,true,true]}},{"ix":20,"action":{"kind":"Deliver","chain":"provider","numPackets":6},"partialState":{"h":2,"t":12,"tokens":[8613,6320,4913,2000],"delegation":[7613,5320,3913,1000],"delegatorTokens":9999999986218,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":21,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":22,"action":{"kind":"Undelegate","val":3,"amt":4891},"partialState":{"h":2,"t":12,"tokens":[8613,6320,4913,2000],"delegation":[7613,5320,3913,1000],"delegatorTokens":9999999986218}},{"ix":23,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":24,"action":{"kind":"Undelegate","val":0,"amt":2332},"partialState":{"h":2,"t":12,"tokens":[6281,6320,4913,2000],"delegation":[5281,5320,3913,1000],"delegatorTokens":9999999986218}},{"ix":25,"action":{"kind":"Undelegate","val":2,"amt":1006},"partialState":{"h":2,"t":12,"tokens":[6281,6320,3907,2000],"delegation":[5281,5320,2907,1000],"delegatorTokens":9999999986218}},{"ix":26,"action":{"kind":"Deliver","chain":"consumer","numPackets":3},"partialState":{"h":3,"t":18,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,false,true,true]}},{"ix":27,"action":{"kind":"Deliver","chain":"provider","numPackets":2},"partialState":{"h":2,"t":12,"tokens":[6281,6320,3907,2000],"delegation":[5281,5320,2907,1000],"delegatorTokens":9999999986218,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":28,"action":{"kind":"Deliver","chain":"provider","numPackets":1},"partialState":{"h":2,"t":12,"tokens":[6281,6320,3907,2000],"delegation":[5281,5320,2907,1000],"delegatorTokens":9999999986218,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":29,"action":{"kind":"ConsumerSlash","val":0,"infractionHeight":1,"isDowntime":true},"partialState":{"h":3,"t":18,"outstandingDowntime":[true,false,true,true]}},{"ix":30,"action":{"kind":"Deliver","chain":"consumer","numPackets":3},"partialState":{"h":3,"t":18,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[true,false,true,true]}},{"ix":31,"action":{"kind":"Deliver","chain":"consumer","numPackets":5},"partialState":{"h":3,"t":18,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[true,false,true,true]}},{"ix":32,"action":{"kind":"Deliver","chain":"provider","numPackets":1},"partialState":{"h":2,"t":12,"tokens":[6281,6320,3907,2000],"delegation":[5281,5320,2907,1000],"delegatorTokens":9999999986218,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":33,"action":{"kind":"Delegate","val":0,"amt":4021},"partialState":{"h":2,"t":12,"tokens":[10302,6320,3907,2000],"delegation":[9302,5320,2907,1000],"delegatorTokens":9999999982197}},{"ix":34,"action":{"kind":"Deliver","chain":"provider","numPackets":6},"partialState":{"h":2,"t":12,"tokens":[10302,6320,3907,2000],"delegation":[9302,5320,2907,1000],"delegatorTokens":9999999982197,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":35,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":4,"t":24,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[true,false,true,true]}},{"ix":36,"action":{"kind":"Delegate","val":0,"amt":3549},"partialState":{"h":2,"t":12,"tokens":[13851,6320,3907,2000],"delegation":[12851,5320,2907,1000],"delegatorTokens":9999999978648}},{"ix":37,"action":{"kind":"Deliver","chain":"consumer","numPackets":6},"partialState":{"h":4,"t":24,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[true,false,true,true]}},{"ix":38,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":39,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":3,"t":18,"tokens":[13851,6320,3907,2000],"delegation":[12851,5320,2907,1000],"delegatorTokens":9999999978648,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":40,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":41,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":5,"t":30,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[true,false,true,true]}},{"ix":42,"action":{"kind":"Undelegate","val":2,"amt":3098},"partialState":{"h":3,"t":18,"tokens":[13851,6320,3907,2000],"delegation":[12851,5320,2907,1000],"delegatorTokens":9999999978648}},{"ix":43,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":6,"t":36,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[true,false,true,true]}},{"ix":44,"action":{"kind":"Delegate","val":2,"amt":3578},"partialState":{"h":3,"t":18,"tokens":[13851,6320,7485,2000],"delegation":[12851,5320,6485,1000],"delegatorTokens":9999999975070}},{"ix":45,"action":{"kind":"Deliver","chain":"provider","numPackets":4},"partialState":{"h":3,"t":18,"tokens":[13851,6320,7485,2000],"delegation":[12851,5320,6485,1000],"delegatorTokens":9999999975070,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":46,"action":{"kind":"Undelegate","val":1,"amt":3084},"partialState":{"h":3,"t":18,"tokens":[13851,3236,7485,2000],"delegation":[12851,2236,6485,1000],"delegatorTokens":9999999975070}},{"ix":47,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":4,"t":24,"tokens":[13851,3236,7485,2000],"delegation":[12851,2236,6485,1000],"delegatorTokens":9999999975070,"jailed":[1000000000000017,null,null,null],"status":["bonded","unbonding","bonded","unbonded"]}},{"ix":48,"action":{"kind":"Delegate","val":1,"amt":3005},"partialState":{"h":4,"t":24,"tokens":[13851,6241,7485,2000],"delegation":[12851,5241,6485,1000],"delegatorTokens":9999999972065}},{"ix":49,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":5,"t":30,"tokens":[13851,6241,7485,2000],"delegation":[12851,5241,6485,1000],"delegatorTokens":9999999972065,"jailed":[1000000000000017,null,null,null],"status":["unbonding","bonded","bonded","unbonded"]}},{"ix":50,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":51,"action":{"kind":"Undelegate","val":0,"amt":2655},"partialState":{"h":5,"t":30,"tokens":[11196,6241,7485,2000],"delegation":[10196,5241,6485,1000],"delegatorTokens":9999999972065}},{"ix":52,"action":{"kind":"Delegate","val":1,"amt":1985},"partialState":{"h":5,"t":30,"tokens":[11196,8226,7485,2000],"delegation":[10196,7226,6485,1000],"delegatorTokens":9999999970080}},{"ix":53,"action":{"kind":"Delegate","val":1,"amt":2355},"partialState":{"h":5,"t":30,"tokens":[11196,10581,7485,2000],"delegation":[10196,9581,6485,1000],"delegatorTokens":9999999967725}},{"ix":54,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":55,"action":{"kind":"Undelegate","val":2,"amt":3794},"partialState":{"h":5,"t":30,"tokens":[11196,10581,3691,2000],"delegation":[10196,9581,2691,1000],"delegatorTokens":9999999967725}},{"ix":56,"action":{"kind":"Undelegate","val":1,"amt":4247},"partialState":{"h":5,"t":30,"tokens":[11196,6334,3691,2000],"delegation":[10196,5334,2691,1000],"delegatorTokens":9999999967725}},{"ix":57,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":58,"action":{"kind":"Deliver","chain":"consumer","numPackets":2},"partialState":{"h":6,"t":36,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[true,false,true,true]}},{"ix":59,"action":{"kind":"Undelegate","val":1,"amt":2277},"partialState":{"h":5,"t":30,"tokens":[11196,4057,3691,2000],"delegation":[10196,3057,2691,1000],"delegatorTokens":9999999967725}},{"ix":60,"action":{"kind":"Delegate","val":1,"amt":3860},"partialState":{"h":5,"t":30,"tokens":[11196,7917,3691,2000],"delegation":[10196,6917,2691,1000],"delegatorTokens":9999999963865}},{"ix":61,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":7,"t":42,"consumerPower":[13851,6320,null,null],"outstandingDowntime":[true,false,true,true]}},{"ix":62,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":63,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":64,"action":{"kind":"Deliver","chain":"consumer","numPackets":1},"partialState":{"h":7,"t":42,"consumerPower":[13851,6320,null,null],"outstandingDowntime":[false,false,true,true]}},{"ix":65,"action":{"kind":"Deliver","chain":"provider","numPackets":6},"partialState":{"h":5,"t":30,"tokens":[11196,7917,3691,2000],"delegation":[10196,6917,2691,1000],"delegatorTokens":9999999963865,"jailed":[1000000000000017,null,null,null],"status":["unbonding","bonded","bonded","unbonded"]}},{"ix":66,"action":{"kind":"Undelegate","val":1,"amt":4853},"partialState":{"h":5,"t":30,"tokens":[11196,3064,3691,2000],"delegation":[10196,2064,2691,1000],"delegatorTokens":9999999963865}},{"ix":67,"action":{"kind":"Deliver","chain":"provider","numPackets":5},"partialState":{"h":5,"t":30,"tokens":[11196,3064,3691,2000],"delegation":[10196,2064,2691,1000],"delegatorTokens":9999999963865,"jailed":[1000000000000017,null,null,null],"status":["unbonding","bonded","bonded","unbonded"]}},{"ix":68,"action":{"kind":"Delegate","val":2,"amt":3793},"partialState":{"h":5,"t":30,"tokens":[11196,3064,7484,2000],"delegation":[10196,2064,6484,1000],"delegatorTokens":9999999960072}},{"ix":69,"action":{"kind":"Deliver","chain":"provider","numPackets":2},"partialState":{"h":5,"t":30,"tokens":[11196,3064,7484,2000],"delegation":[10196,2064,6484,1000],"delegatorTokens":9999999960072,"jailed":[1000000000000017,null,null,null],"status":["unbonding","bonded","bonded","unbonded"]}},{"ix":70,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":71,"action":{"kind":"Deliver","chain":"provider","numPackets":5},"partialState":{"h":5,"t":30,"tokens":[11196,3064,7484,2000],"delegation":[10196,2064,6484,1000],"delegatorTokens":9999999960072,"jailed":[1000000000000017,null,null,null],"status":["unbonding","bonded","bonded","unbonded"]}},{"ix":72,"action":{"kind":"Undelegate","val":2,"amt":2098},"partialState":{"h":5,"t":30,"tokens":[11196,3064,5386,2000],"delegation":[10196,2064,4386,1000],"delegatorTokens":9999999960072}},{"ix":73,"action":{"kind":"Delegate","val":1,"amt":1445},"partialState":{"h":5,"t":30,"tokens":[11196,4509,5386,2000],"delegation":[10196,3509,4386,1000],"delegatorTokens":9999999958627}},{"ix":74,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":75,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":8,"t":48,"consumerPower":[13851,null,7485,null],"outstandingDowntime":[false,false,true,true]}},{"ix":76,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":6,"t":36,"tokens":[11196,4509,5386,2000],"delegation":[10196,3509,4386,1000],"delegatorTokens":9999999958627,"jailed":[1000000000000017,null,null,null],"status":["unbonding","bonded","bonded","unbonded"]}},{"ix":77,"action":{"kind":"Deliver","chain":"provider","numPackets":1},"partialState":{"h":6,"t":36,"tokens":[11196,4509,5386,2000],"delegation":[10196,3509,4386,1000],"delegatorTokens":9999999958627,"jailed":[1000000000000017,null,null,null],"status":["unbonding","bonded","bonded","unbonded"]}},{"ix":78,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":9,"t":54,"consumerPower":[13851,null,7485,null],"outstandingDowntime":[false,false,true,true]}},{"ix":79,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":80,"action":{"kind":"Deliver","chain":"consumer","numPackets":2},"partialState":{"h":9,"t":54,"consumerPower":[13851,null,7485,null],"outstandingDowntime":[false,false,true,true]}},{"ix":81,"action":{"kind":"Delegate","val":2,"amt":1588},"partialState":{"h":6,"t":36,"tokens":[11196,4509,6974,2000],"delegation":[10196,3509,5974,1000],"delegatorTokens":9999999957039}},{"ix":82,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":10,"t":60,"consumerPower":[null,6241,7485,null],"outstandingDowntime":[false,false,true,true]}},{"ix":83,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":84,"action":{"kind":"Undelegate","val":1,"amt":1662},"partialState":{"h":6,"t":36,"tokens":[11196,2847,6974,2000],"delegation":[10196,1847,5974,1000],"delegatorTokens":9999999957039}},{"ix":85,"action":{"kind":"Deliver","chain":"consumer","numPackets":6},"partialState":{"h":10,"t":60,"consumerPower":[null,6241,7485,null],"outstandingDowntime":[false,false,true,true]}},{"ix":86,"action":{"kind":"Undelegate","val":1,"amt":1237},"partialState":{"h":6,"t":36,"tokens":[11196,1610,6974,2000],"delegation":[10196,610,5974,1000],"delegatorTokens":9999999957039}},{"ix":87,"action":{"kind":"Undelegate","val":3,"amt":2981},"partialState":{"h":6,"t":36,"tokens":[11196,1610,6974,2000],"delegation":[10196,610,5974,1000],"delegatorTokens":9999999957039}},{"ix":88,"action":{"kind":"Undelegate","val":1,"amt":4923},"partialState":{"h":6,"t":36,"tokens":[11196,1610,6974,2000],"delegation":[10196,610,5974,1000],"delegatorTokens":9999999957039}},{"ix":89,"action":{"kind":"Delegate","val":1,"amt":3560},"partialState":{"h":6,"t":36,"tokens":[11196,5170,6974,2000],"delegation":[10196,4170,5974,1000],"delegatorTokens":9999999953479}},{"ix":90,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":11,"t":66,"consumerPower":[null,6241,7485,null],"outstandingDowntime":[false,false,true,true]}},{"ix":91,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":7,"t":42,"tokens":[11196,5170,6974,2000],"delegation":[10196,4170,5974,1000],"delegatorTokens":9999999953479,"jailed":[1000000000000017,null,null,null],"status":["unbonding","bonded","bonded","unbonded"]}},{"ix":92,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":93,"action":{"kind":"Undelegate","val":3,"amt":2992},"partialState":{"h":7,"t":42,"tokens":[11196,5170,6974,2000],"delegation":[10196,4170,5974,1000],"delegatorTokens":9999999953479}},{"ix":94,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":12,"t":72,"consumerPower":[null,6241,7485,null],"outstandingDowntime":[false,false,true,true]}},{"ix":95,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":13,"t":78,"consumerPower":[null,6241,7485,null],"outstandingDowntime":[false,false,true,true]}},{"ix":96,"action":{"kind":"Deliver","chain":"consumer","numPackets":6},"partialState":{"h":13,"t":78,"consumerPower":[null,6241,7485,null],"outstandingDowntime":[false,false,true,true]}},{"ix":97,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":98,"action":{"kind":"Delegate","val":1,"amt":3358},"partialState":{"h":7,"t":42,"tokens":[11196,8528,6974,2000],"delegation":[10196,7528,5974,1000],"delegatorTokens":9999999950121}},{"ix":99,"action":{"kind":"Delegate","val":3,"amt":3579},"partialState":{"h":7,"t":42,"tokens":[11196,8528,6974,5579],"delegation":[10196,7528,5974,4579],"delegatorTokens":9999999946542}},{"ix":100,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":8,"t":48,"tokens":[11196,8528,6974,5579],"delegation":[10196,7528,5974,4579],"delegatorTokens":9999999946542,"jailed":[1000000000000017,null,null,null],"status":["unbonding","bonded","bonded","unbonded"]}},{"ix":101,"action":{"kind":"Delegate","val":3,"amt":3535},"partialState":{"h":8,"t":48,"tokens":[11196,8528,6974,9114],"delegation":[10196,7528,5974,8114],"delegatorTokens":9999999943007}},{"ix":102,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":103,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":104,"action":{"kind":"Delegate","val":3,"amt":2931},"partialState":{"h":8,"t":48,"tokens":[11196,8528,6974,12045],"delegation":[10196,7528,5974,11045],"delegatorTokens":9999999940076}},{"ix":105,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":9,"t":54,"tokens":[11196,8528,6974,12045],"delegation":[10196,7528,5974,11045],"delegatorTokens":9999999940076,"jailed":[1000000000000017,null,null,null],"status":["unbonding","bonded","unbonding","bonded"]}},{"ix":106,"action":{"kind":"Delegate","val":1,"amt":1140},"partialState":{"h":9,"t":54,"tokens":[11196,9668,6974,12045],"delegation":[10196,8668,5974,11045],"delegatorTokens":9999999938936}},{"ix":107,"action":{"kind":"Deliver","chain":"provider","numPackets":5},"partialState":{"h":9,"t":54,"tokens":[11196,9668,6974,12045],"delegation":[10196,8668,5974,11045],"delegatorTokens":9999999938936,"jailed":[1000000000000017,null,null,null],"status":["unbonding","bonded","unbonding","bonded"]}},{"ix":108,"action":{"kind":"Deliver","chain":"consumer","numPackets":5},"partialState":{"h":13,"t":78,"consumerPower":[null,6241,7485,null],"outstandingDowntime":[false,false,true,true]}},{"ix":109,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":14,"t":84,"consumerPower":[null,8528,6974,null],"outstandingDowntime":[false,false,true,true]}},{"ix":110,"action":{"kind":"Undelegate","val":2,"amt":2560},"partialState":{"h":9,"t":54,"tokens":[11196,9668,4414,12045],"delegation":[10196,8668,3414,11045],"delegatorTokens":9999999938936}},{"ix":111,"action":{"kind":"Deliver","chain":"provider","numPackets":4},"partialState":{"h":9,"t":54,"tokens":[11196,9668,4414,12045],"delegation":[10196,8668,3414,11045],"delegatorTokens":9999999938936,"jailed":[1000000000000017,null,null,null],"status":["unbonding","bonded","unbonding","bonded"]}},{"ix":112,"action":{"kind":"Deliver","chain":"provider","numPackets":3},"partialState":{"h":9,"t":54,"tokens":[11196,9668,4414,12045],"delegation":[10196,8668,3414,11045],"delegatorTokens":9999999938936,"jailed":[1000000000000017,null,null,null],"status":["unbonding","bonded","unbonding","bonded"]}},{"ix":113,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":10,"t":60,"tokens":[11196,9668,4414,12045],"delegation":[10196,8668,3414,11045],"delegatorTokens":9999999938936,"jailed":[1000000000000017,null,null,null],"status":["unbonding","bonded","unbonding","bonded"]}},{"ix":114,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":15,"t":90,"consumerPower":[null,8528,6974,null],"outstandingDowntime":[false,false,true,true]}},{"ix":115,"action":{"kind":"Undelegate","val":2,"amt":1406},"partialState":{"h":10,"t":60,"tokens":[11196,9668,3008,12045],"delegation":[10196,8668,2008,11045],"delegatorTokens":9999999938936}},{"ix":116,"action":{"kind":"Delegate","val":0,"amt":1827},"partialState":{"h":10,"t":60,"tokens":[13023,9668,3008,12045],"delegation":[12023,8668,2008,11045],"delegatorTokens":9999999937109}},{"ix":117,"action":{"kind":"Undelegate","val":3,"amt":1750},"partialState":{"h":10,"t":60,"tokens":[13023,9668,3008,10295],"delegation":[12023,8668,2008,9295],"delegatorTokens":9999999937109}},{"ix":118,"action":{"kind":"Undelegate","val":0,"amt":2567},"partialState":{"h":10,"t":60,"tokens":[10456,9668,3008,10295],"delegation":[9456,8668,2008,9295],"delegatorTokens":9999999937109}},{"ix":119,"action":{"kind":"Deliver","chain":"provider","numPackets":5},"partialState":{"h":10,"t":60,"tokens":[10456,9668,3008,10295],"delegation":[9456,8668,2008,9295],"delegatorTokens":9999999937109,"jailed":[1000000000000017,null,null,null],"status":["unbonding","bonded","unbonding","bonded"]}},{"ix":120,"action":{"kind":"Delegate","val":2,"amt":1507},"partialState":{"h":10,"t":60,"tokens":[10456,9668,4515,10295],"delegation":[9456,8668,3515,9295],"delegatorTokens":9999999935602}},{"ix":121,"action":{"kind":"Delegate","val":0,"amt":2426},"partialState":{"h":10,"t":60,"tokens":[12882,9668,4515,10295],"delegation":[11882,8668,3515,9295],"delegatorTokens":9999999933176}},{"ix":122,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":11,"t":66,"tokens":[12882,9668,4515,10295],"delegation":[11882,8668,3515,9295],"delegatorTokens":9999999933176,"jailed":[1000000000000017,null,null,null],"status":["unbonding","bonded","unbonding","bonded"]}},{"ix":123,"action":{"kind":"Delegate","val":2,"amt":4864},"partialState":{"h":11,"t":66,"tokens":[12882,9668,9379,10295],"delegation":[11882,8668,8379,9295],"delegatorTokens":9999999928312}},{"ix":124,"action":{"kind":"Deliver","chain":"consumer","numPackets":3},"partialState":{"h":15,"t":90,"consumerPower":[null,8528,6974,null],"outstandingDowntime":[false,false,true,true]}},{"ix":125,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":16,"t":96,"consumerPower":[null,9668,null,12045],"outstandingDowntime":[false,false,true,true]}},{"ix":126,"action":{"kind":"Deliver","chain":"consumer","numPackets":4},"partialState":{"h":16,"t":96,"consumerPower":[null,9668,null,12045],"outstandingDowntime":[false,false,true,true]}},{"ix":127,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":128,"action":{"kind":"Undelegate","val":2,"amt":1777},"partialState":{"h":11,"t":66,"tokens":[12882,9668,7602,10295],"delegation":[11882,8668,6602,9295],"delegatorTokens":9999999928312}},{"ix":129,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":17,"t":102,"consumerPower":[null,9668,null,12045],"outstandingDowntime":[false,false,true,true]}},{"ix":130,"action":{"kind":"Delegate","val":0,"amt":2647},"partialState":{"h":11,"t":66,"tokens":[15529,9668,7602,10295],"delegation":[14529,8668,6602,9295],"delegatorTokens":9999999925665}},{"ix":131,"action":{"kind":"Deliver","chain":"consumer","numPackets":3},"partialState":{"h":17,"t":102,"consumerPower":[null,9668,null,12045],"outstandingDowntime":[false,false,true,true]}},{"ix":132,"action":{"kind":"Delegate","val":1,"amt":1682},"partialState":{"h":11,"t":66,"tokens":[15529,11350,7602,10295],"delegation":[14529,10350,6602,9295],"delegatorTokens":9999999923983}},{"ix":133,"action":{"kind":"Undelegate","val":1,"amt":1078},"partialState":{"h":11,"t":66,"tokens":[15529,10272,7602,10295],"delegation":[14529,9272,6602,9295],"delegatorTokens":9999999923983}},{"ix":134,"action":{"kind":"Deliver","chain":"consumer","numPackets":4},"partialState":{"h":17,"t":102,"consumerPower":[null,9668,null,12045],"outstandingDowntime":[false,false,true,true]}},{"ix":135,"action":{"kind":"Delegate","val":3,"amt":4123},"partialState":{"h":11,"t":66,"tokens":[15529,10272,7602,14418],"delegation":[14529,9272,6602,13418],"delegatorTokens":9999999919860}},{"ix":136,"action":{"kind":"Undelegate","val":3,"amt":1306},"partialState":{"h":11,"t":66,"tokens":[15529,10272,7602,13112],"delegation":[14529,9272,6602,12112],"delegatorTokens":9999999919860}},{"ix":137,"action":{"kind":"Delegate","val":0,"amt":4467},"partialState":{"h":11,"t":66,"tokens":[19996,10272,7602,13112],"delegation":[18996,9272,6602,12112],"delegatorTokens":9999999915393}},{"ix":138,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":139,"action":{"kind":"Delegate","val":0,"amt":2938},"partialState":{"h":11,"t":66,"tokens":[22934,10272,7602,13112],"delegation":[21934,9272,6602,12112],"delegatorTokens":9999999912455}},{"ix":140,"action":{"kind":"Undelegate","val":2,"amt":2523},"partialState":{"h":11,"t":66,"tokens":[22934,10272,5079,13112],"delegation":[21934,9272,4079,12112],"delegatorTokens":9999999912455}},{"ix":141,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":12,"t":72,"tokens":[22934,10272,5079,13112],"delegation":[21934,9272,4079,12112],"delegatorTokens":9999999912455,"jailed":[1000000000000017,null,null,null],"status":["unbonding","bonded","unbonding","bonded"]}},{"ix":142,"action":{"kind":"Delegate","val":2,"amt":4504},"partialState":{"h":12,"t":72,"tokens":[22934,10272,9583,13112],"delegation":[21934,9272,8583,12112],"delegatorTokens":9999999907951}},{"ix":143,"action":{"kind":"Delegate","val":1,"amt":1884},"partialState":{"h":12,"t":72,"tokens":[22934,12156,9583,13112],"delegation":[21934,11156,8583,12112],"delegatorTokens":9999999906067}},{"ix":144,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":145,"action":{"kind":"Undelegate","val":1,"amt":4324},"partialState":{"h":12,"t":72,"tokens":[22934,7832,9583,13112],"delegation":[21934,6832,8583,12112],"delegatorTokens":9999999906067}},{"ix":146,"action":{"kind":"Deliver","chain":"consumer","numPackets":1},"partialState":{"h":17,"t":102,"consumerPower":[null,9668,null,12045],"outstandingDowntime":[false,false,true,true]}},{"ix":147,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":148,"action":{"kind":"Deliver","chain":"provider","numPackets":2},"partialState":{"h":12,"t":72,"tokens":[22934,7832,9583,13112],"delegation":[21934,6832,8583,12112],"delegatorTokens":9999999906067,"jailed":[1000000000000017,null,null,null],"status":["unbonding","bonded","unbonding","bonded"]}},{"ix":149,"action":{"kind":"Deliver","chain":"consumer","numPackets":3},"partialState":{"h":17,"t":102,"consumerPower":[null,9668,null,12045],"outstandingDowntime":[false,false,true,true]}},{"ix":150,"action":{"kind":"Delegate","val":0,"amt":1829},"partialState":{"h":12,"t":72,"tokens":[24763,7832,9583,13112],"delegation":[23763,6832,8583,12112],"delegatorTokens":9999999904238}},{"ix":151,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":13,"t":78,"tokens":[24763,7832,9583,13112],"delegation":[23763,6832,8583,12112],"delegatorTokens":9999999904238,"jailed":[1000000000000017,null,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":152,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":18,"t":108,"consumerPower":[null,9668,null,10295],"outstandingDowntime":[false,false,true,true]}},{"ix":153,"action":{"kind":"Delegate","val":1,"amt":2488},"partialState":{"h":13,"t":78,"tokens":[24763,10320,9583,13112],"delegation":[23763,9320,8583,12112],"delegatorTokens":9999999901750}},{"ix":154,"action":{"kind":"Deliver","chain":"provider","numPackets":5},"partialState":{"h":13,"t":78,"tokens":[24763,10320,9583,13112],"delegation":[23763,9320,8583,12112],"delegatorTokens":9999999901750,"jailed":[1000000000000017,null,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":155,"action":{"kind":"Deliver","chain":"provider","numPackets":5},"partialState":{"h":13,"t":78,"tokens":[24763,10320,9583,13112],"delegation":[23763,9320,8583,12112],"delegatorTokens":9999999901750,"jailed":[1000000000000017,null,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":156,"action":{"kind":"Delegate","val":3,"amt":1441},"partialState":{"h":13,"t":78,"tokens":[24763,10320,9583,14553],"delegation":[23763,9320,8583,13553],"delegatorTokens":9999999900309}},{"ix":157,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":19,"t":114,"consumerPower":[null,9668,null,10295],"outstandingDowntime":[false,false,true,true]}},{"ix":158,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":14,"t":84,"tokens":[24763,10320,9583,14553],"delegation":[23763,9320,8583,13553],"delegatorTokens":9999999906245,"jailed":[1000000000000017,null,null,null],"status":["unbonding","bonded","unbonding","bonded"]}},{"ix":159,"action":{"kind":"Deliver","chain":"consumer","numPackets":5},"partialState":{"h":19,"t":114,"consumerPower":[null,9668,null,10295],"outstandingDowntime":[false,false,true,true]}},{"ix":160,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":20,"t":120,"consumerPower":[null,null,9583,13112],"outstandingDowntime":[false,false,true,true]}},{"ix":161,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":162,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":163,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":15,"t":90,"tokens":[24763,10320,9583,14553],"delegation":[23763,9320,8583,13553],"delegatorTokens":9999999909583,"jailed":[1000000000000017,null,null,null],"status":["unbonding","bonded","unbonding","bonded"]}},{"ix":164,"action":{"kind":"Deliver","chain":"consumer","numPackets":5},"partialState":{"h":20,"t":120,"consumerPower":[null,null,9583,13112],"outstandingDowntime":[false,false,true,true]}},{"ix":165,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":166,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":167,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":16,"t":96,"tokens":[24763,10320,9583,14553],"delegation":[23763,9320,8583,13553],"delegatorTokens":9999999912667,"jailed":[1000000000000017,null,null,null],"status":["unbonding","bonded","unbonding","bonded"]}},{"ix":168,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":21,"t":126,"consumerPower":[null,10320,null,14553],"outstandingDowntime":[false,false,true,true]}},{"ix":169,"action":{"kind":"Undelegate","val":0,"amt":2250},"partialState":{"h":16,"t":96,"tokens":[22513,10320,9583,14553],"delegation":[21513,9320,8583,13553],"delegatorTokens":9999999912667}},{"ix":170,"action":{"kind":"Delegate","val":1,"amt":2675},"partialState":{"h":16,"t":96,"tokens":[22513,12995,9583,14553],"delegation":[21513,11995,8583,13553],"delegatorTokens":9999999909992}},{"ix":171,"action":{"kind":"Deliver","chain":"provider","numPackets":2},"partialState":{"h":16,"t":96,"tokens":[22513,12995,9583,14553],"delegation":[21513,11995,8583,13553],"delegatorTokens":9999999909992,"jailed":[1000000000000017,null,null,null],"status":["unbonding","bonded","unbonding","bonded"]}},{"ix":172,"action":{"kind":"Delegate","val":0,"amt":4627},"partialState":{"h":16,"t":96,"tokens":[27140,12995,9583,14553],"delegation":[26140,11995,8583,13553],"delegatorTokens":9999999905365}},{"ix":173,"action":{"kind":"Delegate","val":1,"amt":3829},"partialState":{"h":16,"t":96,"tokens":[27140,16824,9583,14553],"delegation":[26140,15824,8583,13553],"delegatorTokens":9999999901536}},{"ix":174,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":22,"t":132,"consumerPower":[null,10320,null,14553],"outstandingDowntime":[false,false,true,true]}},{"ix":175,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":17,"t":102,"tokens":[27140,16824,9583,14553],"delegation":[26140,15824,8583,13553],"delegatorTokens":9999999901536,"jailed":[1000000000000017,null,null,null],"status":["unbonding","bonded","unbonding","bonded"]}},{"ix":176,"action":{"kind":"Undelegate","val":2,"amt":1125},"partialState":{"h":17,"t":102,"tokens":[27140,16824,8458,14553],"delegation":[26140,15824,7458,13553],"delegatorTokens":9999999901536}},{"ix":177,"action":{"kind":"Undelegate","val":1,"amt":2775},"partialState":{"h":17,"t":102,"tokens":[27140,14049,8458,14553],"delegation":[26140,13049,7458,13553],"delegatorTokens":9999999901536}},{"ix":178,"action":{"kind":"Deliver","chain":"provider","numPackets":6},"partialState":{"h":17,"t":102,"tokens":[27140,14049,8458,14553],"delegation":[26140,13049,7458,13553],"delegatorTokens":9999999901536,"jailed":[1000000000000017,null,null,null],"status":["unbonding","bonded","unbonding","bonded"]}},{"ix":179,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":180,"action":{"kind":"Delegate","val":2,"amt":1136},"partialState":{"h":17,"t":102,"tokens":[27140,14049,9594,14553],"delegation":[26140,13049,8594,13553],"delegatorTokens":9999999900400}},{"ix":181,"action":{"kind":"Deliver","chain":"provider","numPackets":2},"partialState":{"h":17,"t":102,"tokens":[27140,14049,9594,14553],"delegation":[26140,13049,8594,13553],"delegatorTokens":9999999900400,"jailed":[1000000000000017,null,null,null],"status":["unbonding","bonded","unbonding","bonded"]}},{"ix":182,"action":{"kind":"Deliver","chain":"consumer","numPackets":1},"partialState":{"h":22,"t":132,"consumerPower":[null,10320,null,14553],"outstandingDowntime":[false,false,true,true]}},{"ix":183,"action":{"kind":"Delegate","val":3,"amt":4965},"partialState":{"h":17,"t":102,"tokens":[27140,14049,9594,19518],"delegation":[26140,13049,8594,18518],"delegatorTokens":9999999895435}},{"ix":184,"action":{"kind":"Deliver","chain":"provider","numPackets":2},"partialState":{"h":17,"t":102,"tokens":[27140,14049,9594,19518],"delegation":[26140,13049,8594,18518],"delegatorTokens":9999999895435,"jailed":[1000000000000017,null,null,null],"status":["unbonding","bonded","unbonding","bonded"]}},{"ix":185,"action":{"kind":"Deliver","chain":"consumer","numPackets":4},"partialState":{"h":22,"t":132,"consumerPower":[null,10320,null,14553],"outstandingDowntime":[false,false,true,true]}},{"ix":186,"action":{"kind":"Undelegate","val":3,"amt":1666},"partialState":{"h":17,"t":102,"tokens":[27140,14049,9594,17852],"delegation":[26140,13049,8594,16852],"delegatorTokens":9999999895435}},{"ix":187,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":18,"t":108,"tokens":[27140,14049,9594,17852],"delegation":[26140,13049,8594,16852],"delegatorTokens":9999999895435,"jailed":[1000000000000017,null,null,null],"status":["unbonded","bonded","unbonding","bonded"]}},{"ix":188,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":189,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":190,"action":{"kind":"Delegate","val":0,"amt":2034},"partialState":{"h":18,"t":108,"tokens":[29174,14049,9594,17852],"delegation":[28174,13049,8594,16852],"delegatorTokens":9999999893401}},{"ix":191,"action":{"kind":"Deliver","chain":"consumer","numPackets":4},"partialState":{"h":22,"t":132,"consumerPower":[null,10320,null,14553],"outstandingDowntime":[false,false,true,true]}},{"ix":192,"action":{"kind":"Deliver","chain":"consumer","numPackets":3},"partialState":{"h":22,"t":132,"consumerPower":[null,10320,null,14553],"outstandingDowntime":[false,false,true,true]}},{"ix":193,"action":{"kind":"Undelegate","val":2,"amt":2889},"partialState":{"h":18,"t":108,"tokens":[29174,14049,6705,17852],"delegation":[28174,13049,5705,16852],"delegatorTokens":9999999893401}},{"ix":194,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":195,"action":{"kind":"Deliver","chain":"consumer","numPackets":1},"partialState":{"h":22,"t":132,"consumerPower":[null,10320,null,14553],"outstandingDowntime":[false,false,true,true]}},{"ix":196,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":197,"action":{"kind":"Undelegate","val":2,"amt":2925},"partialState":{"h":18,"t":108,"tokens":[29174,14049,3780,17852],"delegation":[28174,13049,2780,16852],"delegatorTokens":9999999893401}},{"ix":198,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":199,"action":{"kind":"Delegate","val":0,"amt":4068},"partialState":{"h":18,"t":108,"tokens":[33242,14049,3780,17852],"delegation":[32242,13049,2780,16852],"delegatorTokens":9999999889333}}],"events":["send_downtime_slash_request","send_double_sign_slash_request","send_downtime_slash_request","insufficient_shares","send_vsc_without_downtime_ack","downtime_slash_request_outstanding","insufficient_shares","send_downtime_slash_request","receive_slash_request_unbonded","send_vsc_without_downtime_ack","insufficient_shares","receive_double_sign_slash_request","more_than_one_third_val_power_change","receive_slash_request_unbonded","receive_downtime_slash_request","jail","send_vsc_with_downtime_ack","more_than_one_third_val_power_change","rebond_unval","send_vsc_without_downtime_ack","consumer_update_val","consumer_update_val","receive_downtime_slash_ack","consumer_del_val","consumer_add_val","send_vsc_without_downtime_ack","consumer_del_val","consumer_add_val","insufficient_shares","insufficient_shares","send_vsc_without_downtime_ack","insufficient_shares","send_vsc_without_downtime_ack","more_than_one_third_val_power_change","send_vsc_without_downtime_ack","consumer_update_val","consumer_update_val","send_vsc_without_downtime_ack","send_vsc_without_downtime_ack","consumer_send_maturation","consumer_send_maturation","consumer_del_val","consumer_add_val","consumer_update_val","consumer_send_maturation","send_vsc_without_downtime_ack","more_than_one_third_val_power_change","rebond_unval","set_undel_hold_false","set_undel_hold_false","set_undel_hold_false","set_undel_hold_false","send_vsc_without_downtime_ack","consumer_update_val","consumer_send_maturation","more_than_one_third_val_power_change","rebond_unval","complete_undel_in_endblock","set_undel_hold_false","send_vsc_without_downtime_ack","consumer_del_val","consumer_update_val","consumer_add_val","complete_undel_in_endblock","complete_undel_in_endblock","consumer_add_val","consumer_del_val","consumer_update_val","set_unval_hold_false","send_vsc_without_downtime_ack","complete_unval_in_endblock","some_undels_expired_but_not_completed","send_vsc_without_downtime_ack"]},{"meta":{"commit":"7ffd0c04e4205cbc9caf212abfe6c59ee43153bf"},"constants":{"P":"provider","C":"consumer","UNBONDING_SECONDS_P":70,"UNBONDING_SECONDS_C":50,"TRUSTING_SECONDS":49,"NUM_VALIDATORS":4,"MAX_VALIDATORS":2,"SLASH_DOUBLESIGN":0,"SLASH_DOWNTIME":0,"JAIL_SECONDS":999999999999999,"BLOCK_SECONDS":6,"INITIAL_DELEGATOR_TOKENS":10000000000000,"DELEGATE_AMT_MIN":1000,"DELEGATE_AMT_MAX":5000,"UNDELEGATE_AMT_MIN":1000,"UNDELEGATE_AMT_MAX":5000,"ISDOWNTIME_PROBABILITY":0.5,"MAX_NUM_PACKETS_FOR_DELIVER":6},"actions":[{"ix":0,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":1,"action":{"kind":"Undelegate","val":3,"amt":4322},"partialState":{"h":1,"t":6,"tokens":[5000,4000,3000,2000],"delegation":[4000,3000,2000,1000],"delegatorTokens":10000000000000}},{"ix":2,"action":{"kind":"Delegate","val":1,"amt":3332},"partialState":{"h":1,"t":6,"tokens":[5000,7332,3000,2000],"delegation":[4000,6332,2000,1000],"delegatorTokens":9999999996668}},{"ix":3,"action":{"kind":"Undelegate","val":2,"amt":4788},"partialState":{"h":1,"t":6,"tokens":[5000,7332,3000,2000],"delegation":[4000,6332,2000,1000],"delegatorTokens":9999999996668}},{"ix":4,"action":{"kind":"Undelegate","val":0,"amt":4266},"partialState":{"h":1,"t":6,"tokens":[5000,7332,3000,2000],"delegation":[4000,6332,2000,1000],"delegatorTokens":9999999996668}},{"ix":5,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":6,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":7,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":2,"t":12,"tokens":[5000,7332,3000,2000],"delegation":[4000,6332,2000,1000],"delegatorTokens":9999999996668,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":8,"action":{"kind":"Deliver","chain":"provider","numPackets":3},"partialState":{"h":2,"t":12,"tokens":[5000,7332,3000,2000],"delegation":[4000,6332,2000,1000],"delegatorTokens":9999999996668,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":9,"action":{"kind":"Deliver","chain":"provider","numPackets":1},"partialState":{"h":2,"t":12,"tokens":[5000,7332,3000,2000],"delegation":[4000,6332,2000,1000],"delegatorTokens":9999999996668,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":10,"action":{"kind":"ConsumerSlash","val":0,"infractionHeight":0,"isDowntime":true},"partialState":{"h":1,"t":6,"outstandingDowntime":[true,false,false,false]}},{"ix":11,"action":{"kind":"Undelegate","val":0,"amt":1859},"partialState":{"h":2,"t":12,"tokens":[3141,7332,3000,2000],"delegation":[2141,6332,2000,1000],"delegatorTokens":9999999996668}},{"ix":12,"action":{"kind":"Delegate","val":0,"amt":3401},"partialState":{"h":2,"t":12,"tokens":[6542,7332,3000,2000],"delegation":[5542,6332,2000,1000],"delegatorTokens":9999999993267}},{"ix":13,"action":{"kind":"Delegate","val":1,"amt":3850},"partialState":{"h":2,"t":12,"tokens":[6542,11182,3000,2000],"delegation":[5542,10182,2000,1000],"delegatorTokens":9999999989417}},{"ix":14,"action":{"kind":"ConsumerSlash","val":2,"infractionHeight":0,"isDowntime":true},"partialState":{"h":1,"t":6,"outstandingDowntime":[true,false,true,false]}},{"ix":15,"action":{"kind":"Undelegate","val":1,"amt":1491},"partialState":{"h":2,"t":12,"tokens":[6542,9691,3000,2000],"delegation":[5542,8691,2000,1000],"delegatorTokens":9999999989417}},{"ix":16,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":17,"action":{"kind":"Delegate","val":0,"amt":2588},"partialState":{"h":2,"t":12,"tokens":[9130,9691,3000,2000],"delegation":[8130,8691,2000,1000],"delegatorTokens":9999999986829}},{"ix":18,"action":{"kind":"ConsumerSlash","val":2,"infractionHeight":0,"isDowntime":true},"partialState":{"h":1,"t":6,"outstandingDowntime":[true,false,true,false]}},{"ix":19,"action":{"kind":"Delegate","val":2,"amt":4430},"partialState":{"h":2,"t":12,"tokens":[9130,9691,7430,2000],"delegation":[8130,8691,6430,1000],"delegatorTokens":9999999982399}},{"ix":20,"action":{"kind":"Undelegate","val":0,"amt":1937},"partialState":{"h":2,"t":12,"tokens":[7193,9691,7430,2000],"delegation":[6193,8691,6430,1000],"delegatorTokens":9999999982399}},{"ix":21,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":22,"action":{"kind":"Deliver","chain":"provider","numPackets":6},"partialState":{"h":2,"t":12,"tokens":[7193,9691,7430,2000],"delegation":[6193,8691,6430,1000],"delegatorTokens":9999999982399,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":23,"action":{"kind":"ConsumerSlash","val":0,"infractionHeight":0,"isDowntime":false},"partialState":{"h":1,"t":6,"outstandingDowntime":[true,false,true,false]}},{"ix":24,"action":{"kind":"Undelegate","val":2,"amt":4806},"partialState":{"h":2,"t":12,"tokens":[7193,9691,2624,2000],"delegation":[6193,8691,1624,1000],"delegatorTokens":9999999982399}},{"ix":25,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":26,"action":{"kind":"Undelegate","val":3,"amt":3661},"partialState":{"h":2,"t":12,"tokens":[7193,9691,2624,2000],"delegation":[6193,8691,1624,1000],"delegatorTokens":9999999982399}},{"ix":27,"action":{"kind":"Delegate","val":0,"amt":3652},"partialState":{"h":2,"t":12,"tokens":[10845,9691,2624,2000],"delegation":[9845,8691,1624,1000],"delegatorTokens":9999999978747}},{"ix":28,"action":{"kind":"Undelegate","val":1,"amt":1297},"partialState":{"h":2,"t":12,"tokens":[10845,8394,2624,2000],"delegation":[9845,7394,1624,1000],"delegatorTokens":9999999978747}},{"ix":29,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":3,"t":18,"tokens":[10845,8394,2624,2000],"delegation":[9845,7394,1624,1000],"delegatorTokens":9999999978747,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":30,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":31,"action":{"kind":"Deliver","chain":"consumer","numPackets":1},"partialState":{"h":1,"t":6,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[true,false,true,false]}},{"ix":32,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":2,"t":12,"consumerPower":[5000,7332,null,null],"outstandingDowntime":[true,false,true,false]}},{"ix":33,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":4,"t":24,"tokens":[10845,8394,2624,2000],"delegation":[9845,7394,1624,1000],"delegatorTokens":9999999978747,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":34,"action":{"kind":"Deliver","chain":"consumer","numPackets":4},"partialState":{"h":2,"t":12,"consumerPower":[5000,7332,null,null],"outstandingDowntime":[true,false,true,false]}},{"ix":35,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":5,"t":30,"tokens":[10845,8394,2624,2000],"delegation":[9845,7394,1624,1000],"delegatorTokens":9999999978747,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":36,"action":{"kind":"ConsumerSlash","val":3,"infractionHeight":0,"isDowntime":true},"partialState":{"h":2,"t":12,"outstandingDowntime":[true,false,true,true]}},{"ix":37,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":3,"t":18,"consumerPower":[10845,8394,null,null],"outstandingDowntime":[true,false,true,true]}},{"ix":38,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":6,"t":36,"tokens":[10845,8394,2624,2000],"delegation":[9845,7394,1624,1000],"delegatorTokens":9999999978747,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":39,"action":{"kind":"Deliver","chain":"provider","numPackets":2},"partialState":{"h":6,"t":36,"tokens":[10845,8394,2624,2000],"delegation":[9845,7394,1624,1000],"delegatorTokens":9999999978747,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":40,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":41,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":42,"action":{"kind":"Deliver","chain":"provider","numPackets":6},"partialState":{"h":6,"t":36,"tokens":[10845,8394,2624,2000],"delegation":[9845,7394,1624,1000],"delegatorTokens":9999999978747,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":43,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":4,"t":24,"consumerPower":[10845,8394,null,null],"outstandingDowntime":[true,false,true,true]}},{"ix":44,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":45,"action":{"kind":"Undelegate","val":3,"amt":3073},"partialState":{"h":6,"t":36,"tokens":[10845,8394,2624,2000],"delegation":[9845,7394,1624,1000],"delegatorTokens":9999999978747}},{"ix":46,"action":{"kind":"Undelegate","val":1,"amt":2671},"partialState":{"h":6,"t":36,"tokens":[10845,5723,2624,2000],"delegation":[9845,4723,1624,1000],"delegatorTokens":9999999978747}},{"ix":47,"action":{"kind":"Delegate","val":3,"amt":4489},"partialState":{"h":6,"t":36,"tokens":[10845,5723,2624,6489],"delegation":[9845,4723,1624,5489],"delegatorTokens":9999999974258}},{"ix":48,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":49,"action":{"kind":"Undelegate","val":3,"amt":2625},"partialState":{"h":6,"t":36,"tokens":[10845,5723,2624,3864],"delegation":[9845,4723,1624,2864],"delegatorTokens":9999999974258}},{"ix":50,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":51,"action":{"kind":"Deliver","chain":"provider","numPackets":6},"partialState":{"h":6,"t":36,"tokens":[10845,5723,2624,3864],"delegation":[9845,4723,1624,2864],"delegatorTokens":9999999974258,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":52,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":53,"action":{"kind":"Delegate","val":1,"amt":3594},"partialState":{"h":6,"t":36,"tokens":[10845,9317,2624,3864],"delegation":[9845,8317,1624,2864],"delegatorTokens":9999999970664}},{"ix":54,"action":{"kind":"Deliver","chain":"consumer","numPackets":1},"partialState":{"h":4,"t":24,"consumerPower":[10845,8394,null,null],"outstandingDowntime":[true,false,true,true]}},{"ix":55,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":56,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":57,"action":{"kind":"Deliver","chain":"consumer","numPackets":3},"partialState":{"h":4,"t":24,"consumerPower":[10845,8394,null,null],"outstandingDowntime":[true,false,true,true]}},{"ix":58,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":59,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":60,"action":{"kind":"Deliver","chain":"provider","numPackets":2},"partialState":{"h":6,"t":36,"tokens":[10845,9317,2624,3864],"delegation":[9845,8317,1624,2864],"delegatorTokens":9999999970664,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":61,"action":{"kind":"Undelegate","val":2,"amt":2443},"partialState":{"h":6,"t":36,"tokens":[10845,9317,2624,3864],"delegation":[9845,8317,1624,2864],"delegatorTokens":9999999970664}},{"ix":62,"action":{"kind":"Delegate","val":1,"amt":2435},"partialState":{"h":6,"t":36,"tokens":[10845,11752,2624,3864],"delegation":[9845,10752,1624,2864],"delegatorTokens":9999999968229}},{"ix":63,"action":{"kind":"Deliver","chain":"provider","numPackets":1},"partialState":{"h":6,"t":36,"tokens":[10845,11752,2624,3864],"delegation":[9845,10752,1624,2864],"delegatorTokens":9999999968229,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":64,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":5,"t":30,"consumerPower":[10845,8394,null,null],"outstandingDowntime":[true,false,true,true]}},{"ix":65,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":66,"action":{"kind":"Delegate","val":2,"amt":4505},"partialState":{"h":6,"t":36,"tokens":[10845,11752,7129,3864],"delegation":[9845,10752,6129,2864],"delegatorTokens":9999999963724}},{"ix":67,"action":{"kind":"Delegate","val":1,"amt":1978},"partialState":{"h":6,"t":36,"tokens":[10845,13730,7129,3864],"delegation":[9845,12730,6129,2864],"delegatorTokens":9999999961746}},{"ix":68,"action":{"kind":"Undelegate","val":2,"amt":2547},"partialState":{"h":6,"t":36,"tokens":[10845,13730,4582,3864],"delegation":[9845,12730,3582,2864],"delegatorTokens":9999999961746}},{"ix":69,"action":{"kind":"Delegate","val":0,"amt":3228},"partialState":{"h":6,"t":36,"tokens":[14073,13730,4582,3864],"delegation":[13073,12730,3582,2864],"delegatorTokens":9999999958518}},{"ix":70,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":6,"t":36,"consumerPower":[10845,8394,null,null],"outstandingDowntime":[true,false,true,true]}},{"ix":71,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":7,"t":42,"consumerPower":[10845,8394,null,null],"outstandingDowntime":[true,false,true,true]}},{"ix":72,"action":{"kind":"Undelegate","val":1,"amt":1972},"partialState":{"h":6,"t":36,"tokens":[14073,11758,4582,3864],"delegation":[13073,10758,3582,2864],"delegatorTokens":9999999958518}},{"ix":73,"action":{"kind":"Deliver","chain":"consumer","numPackets":6},"partialState":{"h":7,"t":42,"consumerPower":[10845,8394,null,null],"outstandingDowntime":[true,false,true,true]}},{"ix":74,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":75,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":8,"t":48,"consumerPower":[10845,8394,null,null],"outstandingDowntime":[true,false,true,true]}},{"ix":76,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":77,"action":{"kind":"Undelegate","val":3,"amt":3103},"partialState":{"h":6,"t":36,"tokens":[14073,11758,4582,3864],"delegation":[13073,10758,3582,2864],"delegatorTokens":9999999958518}},{"ix":78,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":7,"t":42,"tokens":[14073,11758,4582,3864],"delegation":[13073,10758,3582,2864],"delegatorTokens":9999999958518,"jailed":[1000000000000035,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":79,"action":{"kind":"Undelegate","val":1,"amt":1690},"partialState":{"h":7,"t":42,"tokens":[14073,10068,4582,3864],"delegation":[13073,9068,3582,2864],"delegatorTokens":9999999958518}},{"ix":80,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":81,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":82,"action":{"kind":"Delegate","val":2,"amt":2699},"partialState":{"h":7,"t":42,"tokens":[14073,10068,7281,3864],"delegation":[13073,9068,6281,2864],"delegatorTokens":9999999955819}},{"ix":83,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":8,"t":48,"tokens":[14073,10068,7281,3864],"delegation":[13073,9068,6281,2864],"delegatorTokens":9999999955819,"jailed":[1000000000000035,null,null,null],"status":["unbonding","bonded","bonded","unbonded"]}},{"ix":84,"action":{"kind":"Undelegate","val":1,"amt":3439},"partialState":{"h":8,"t":48,"tokens":[14073,6629,7281,3864],"delegation":[13073,5629,6281,2864],"delegatorTokens":9999999955819}},{"ix":85,"action":{"kind":"Deliver","chain":"provider","numPackets":1},"partialState":{"h":8,"t":48,"tokens":[14073,6629,7281,3864],"delegation":[13073,5629,6281,2864],"delegatorTokens":9999999955819,"jailed":[1000000000000035,null,null,null],"status":["unbonding","bonded","bonded","unbonded"]}},{"ix":86,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":9,"t":54,"tokens":[14073,6629,7281,3864],"delegation":[13073,5629,6281,2864],"delegatorTokens":9999999955819,"jailed":[1000000000000035,null,null,null],"status":["unbonding","bonded","bonded","unbonded"]}},{"ix":87,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":10,"t":60,"tokens":[14073,6629,7281,3864],"delegation":[13073,5629,6281,2864],"delegatorTokens":9999999955819,"jailed":[1000000000000035,null,null,null],"status":["unbonding","bonded","bonded","unbonded"]}},{"ix":88,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":89,"action":{"kind":"Undelegate","val":3,"amt":2312},"partialState":{"h":10,"t":60,"tokens":[14073,6629,7281,1552],"delegation":[13073,5629,6281,552],"delegatorTokens":9999999955819}},{"ix":90,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":91,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":11,"t":66,"tokens":[14073,6629,7281,1552],"delegation":[13073,5629,6281,552],"delegatorTokens":9999999955819,"jailed":[1000000000000035,null,null,null],"status":["unbonding","bonded","bonded","unbonded"]}},{"ix":92,"action":{"kind":"Deliver","chain":"consumer","numPackets":6},"partialState":{"h":8,"t":48,"consumerPower":[10845,8394,null,null],"outstandingDowntime":[false,false,true,true]}},{"ix":93,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":12,"t":72,"tokens":[14073,6629,7281,1552],"delegation":[13073,5629,6281,552],"delegatorTokens":9999999955819,"jailed":[1000000000000035,null,null,null],"status":["unbonding","bonded","bonded","unbonded"]}},{"ix":94,"action":{"kind":"Undelegate","val":1,"amt":4834},"partialState":{"h":12,"t":72,"tokens":[14073,1795,7281,1552],"delegation":[13073,795,6281,552],"delegatorTokens":9999999955819}},{"ix":95,"action":{"kind":"Deliver","chain":"consumer","numPackets":6},"partialState":{"h":8,"t":48,"consumerPower":[10845,8394,null,null],"outstandingDowntime":[false,false,true,true]}},{"ix":96,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":97,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":9,"t":54,"consumerPower":[null,6629,7281,null],"outstandingDowntime":[false,false,true,true]}},{"ix":98,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":99,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":10,"t":60,"consumerPower":[null,6629,7281,null],"outstandingDowntime":[false,false,true,true]}},{"ix":100,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":101,"action":{"kind":"Undelegate","val":1,"amt":3019},"partialState":{"h":12,"t":72,"tokens":[14073,1795,7281,1552],"delegation":[13073,795,6281,552],"delegatorTokens":9999999955819}},{"ix":102,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":103,"action":{"kind":"Deliver","chain":"provider","numPackets":6},"partialState":{"h":12,"t":72,"tokens":[14073,1795,7281,1552],"delegation":[13073,795,6281,552],"delegatorTokens":9999999955819,"jailed":[1000000000000035,null,null,null],"status":["unbonding","bonded","bonded","unbonded"]}},{"ix":104,"action":{"kind":"Deliver","chain":"consumer","numPackets":1},"partialState":{"h":10,"t":60,"consumerPower":[null,6629,7281,null],"outstandingDowntime":[false,false,true,true]}},{"ix":105,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":106,"action":{"kind":"Undelegate","val":3,"amt":1544},"partialState":{"h":12,"t":72,"tokens":[14073,1795,7281,1552],"delegation":[13073,795,6281,552],"delegatorTokens":9999999955819}},{"ix":107,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":108,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":13,"t":78,"tokens":[14073,1795,7281,1552],"delegation":[13073,795,6281,552],"delegatorTokens":9999999955819,"jailed":[1000000000000035,null,null,null],"status":["unbonding","bonded","bonded","unbonded"]}},{"ix":109,"action":{"kind":"Undelegate","val":2,"amt":4974},"partialState":{"h":13,"t":78,"tokens":[14073,1795,2307,1552],"delegation":[13073,795,1307,552],"delegatorTokens":9999999955819}},{"ix":110,"action":{"kind":"Deliver","chain":"consumer","numPackets":4},"partialState":{"h":10,"t":60,"consumerPower":[null,6629,7281,null],"outstandingDowntime":[false,false,true,true]}},{"ix":111,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":11,"t":66,"consumerPower":[null,6629,7281,null],"outstandingDowntime":[false,false,true,true]}},{"ix":112,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":113,"action":{"kind":"Delegate","val":2,"amt":4797},"partialState":{"h":13,"t":78,"tokens":[14073,1795,7104,1552],"delegation":[13073,795,6104,552],"delegatorTokens":9999999951022}},{"ix":114,"action":{"kind":"Undelegate","val":3,"amt":2559},"partialState":{"h":13,"t":78,"tokens":[14073,1795,7104,1552],"delegation":[13073,795,6104,552],"delegatorTokens":9999999951022}},{"ix":115,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":116,"action":{"kind":"Undelegate","val":1,"amt":3431},"partialState":{"h":13,"t":78,"tokens":[14073,1795,7104,1552],"delegation":[13073,795,6104,552],"delegatorTokens":9999999951022}},{"ix":117,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":14,"t":84,"tokens":[14073,1795,7104,1552],"delegation":[13073,795,6104,552],"delegatorTokens":9999999951022,"jailed":[1000000000000035,null,null,null],"status":["unbonding","bonded","bonded","unbonded"]}},{"ix":118,"action":{"kind":"Undelegate","val":2,"amt":4936},"partialState":{"h":14,"t":84,"tokens":[14073,1795,2168,1552],"delegation":[13073,795,1168,552],"delegatorTokens":9999999951022}},{"ix":119,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":120,"action":{"kind":"Delegate","val":0,"amt":1775},"partialState":{"h":14,"t":84,"tokens":[15848,1795,2168,1552],"delegation":[14848,795,1168,552],"delegatorTokens":9999999949247}},{"ix":121,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":12,"t":72,"consumerPower":[null,6629,7281,null],"outstandingDowntime":[false,false,true,true]}},{"ix":122,"action":{"kind":"Delegate","val":0,"amt":4329},"partialState":{"h":14,"t":84,"tokens":[20177,1795,2168,1552],"delegation":[19177,795,1168,552],"delegatorTokens":9999999944918}},{"ix":123,"action":{"kind":"Delegate","val":1,"amt":2314},"partialState":{"h":14,"t":84,"tokens":[20177,4109,2168,1552],"delegation":[19177,3109,1168,552],"delegatorTokens":9999999942604}},{"ix":124,"action":{"kind":"Delegate","val":2,"amt":4956},"partialState":{"h":14,"t":84,"tokens":[20177,4109,7124,1552],"delegation":[19177,3109,6124,552],"delegatorTokens":9999999937648}},{"ix":125,"action":{"kind":"Undelegate","val":0,"amt":2473},"partialState":{"h":14,"t":84,"tokens":[17704,4109,7124,1552],"delegation":[16704,3109,6124,552],"delegatorTokens":9999999937648}},{"ix":126,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":127,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":15,"t":90,"tokens":[17704,4109,7124,1552],"delegation":[16704,3109,6124,552],"delegatorTokens":9999999937648,"jailed":[1000000000000035,null,null,null],"status":["unbonding","bonded","bonded","unbonded"]}},{"ix":128,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":13,"t":78,"consumerPower":[null,6629,7281,null],"outstandingDowntime":[false,false,true,true]}},{"ix":129,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":130,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":131,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":14,"t":84,"consumerPower":[null,6629,7281,null],"outstandingDowntime":[false,false,true,true]}},{"ix":132,"action":{"kind":"Deliver","chain":"provider","numPackets":1},"partialState":{"h":15,"t":90,"tokens":[17704,4109,7124,1552],"delegation":[16704,3109,6124,552],"delegatorTokens":9999999937648,"jailed":[1000000000000035,null,null,null],"status":["unbonding","bonded","bonded","unbonded"]}},{"ix":133,"action":{"kind":"Deliver","chain":"consumer","numPackets":3},"partialState":{"h":14,"t":84,"consumerPower":[null,6629,7281,null],"outstandingDowntime":[false,false,true,true]}},{"ix":134,"action":{"kind":"Deliver","chain":"consumer","numPackets":2},"partialState":{"h":14,"t":84,"consumerPower":[null,6629,7281,null],"outstandingDowntime":[false,false,true,true]}},{"ix":135,"action":{"kind":"Deliver","chain":"provider","numPackets":5},"partialState":{"h":15,"t":90,"tokens":[17704,4109,7124,1552],"delegation":[16704,3109,6124,552],"delegatorTokens":9999999937648,"jailed":[1000000000000035,null,null,null],"status":["unbonding","bonded","bonded","unbonded"]}},{"ix":136,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":15,"t":90,"consumerPower":[null,1795,7104,null],"outstandingDowntime":[false,false,true,true]}},{"ix":137,"action":{"kind":"Undelegate","val":3,"amt":2953},"partialState":{"h":15,"t":90,"tokens":[17704,4109,7124,1552],"delegation":[16704,3109,6124,552],"delegatorTokens":9999999937648}},{"ix":138,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":139,"action":{"kind":"Deliver","chain":"consumer","numPackets":2},"partialState":{"h":15,"t":90,"consumerPower":[null,1795,7104,null],"outstandingDowntime":[false,false,true,true]}},{"ix":140,"action":{"kind":"Deliver","chain":"consumer","numPackets":5},"partialState":{"h":15,"t":90,"consumerPower":[null,1795,7104,null],"outstandingDowntime":[false,false,true,true]}},{"ix":141,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":16,"t":96,"tokens":[17704,4109,7124,1552],"delegation":[16704,3109,6124,552],"delegatorTokens":9999999949038,"jailed":[1000000000000035,null,null,null],"status":["unbonding","bonded","bonded","unbonded"]}},{"ix":142,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":16,"t":96,"consumerPower":[null,1795,7104,null],"outstandingDowntime":[false,false,true,true]}},{"ix":143,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":17,"t":102,"consumerPower":[null,1795,7104,null],"outstandingDowntime":[false,false,true,true]}},{"ix":144,"action":{"kind":"Delegate","val":0,"amt":2650},"partialState":{"h":16,"t":96,"tokens":[20354,4109,7124,1552],"delegation":[19354,3109,6124,552],"delegatorTokens":9999999946388}},{"ix":145,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":146,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":147,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":148,"action":{"kind":"Undelegate","val":0,"amt":2003},"partialState":{"h":16,"t":96,"tokens":[18351,4109,7124,1552],"delegation":[17351,3109,6124,552],"delegatorTokens":9999999946388}},{"ix":149,"action":{"kind":"Deliver","chain":"provider","numPackets":1},"partialState":{"h":16,"t":96,"tokens":[18351,4109,7124,1552],"delegation":[17351,3109,6124,552],"delegatorTokens":9999999946388,"jailed":[1000000000000035,null,null,null],"status":["unbonding","bonded","bonded","unbonded"]}},{"ix":150,"action":{"kind":"Delegate","val":0,"amt":4331},"partialState":{"h":16,"t":96,"tokens":[22682,4109,7124,1552],"delegation":[21682,3109,6124,552],"delegatorTokens":9999999942057}},{"ix":151,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":152,"action":{"kind":"Undelegate","val":3,"amt":4023},"partialState":{"h":16,"t":96,"tokens":[22682,4109,7124,1552],"delegation":[21682,3109,6124,552],"delegatorTokens":9999999942057}},{"ix":153,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":154,"action":{"kind":"Delegate","val":3,"amt":1939},"partialState":{"h":16,"t":96,"tokens":[22682,4109,7124,3491],"delegation":[21682,3109,6124,2491],"delegatorTokens":9999999940118}},{"ix":155,"action":{"kind":"Delegate","val":0,"amt":3966},"partialState":{"h":16,"t":96,"tokens":[26648,4109,7124,3491],"delegation":[25648,3109,6124,2491],"delegatorTokens":9999999936152}},{"ix":156,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":157,"action":{"kind":"Deliver","chain":"provider","numPackets":2},"partialState":{"h":16,"t":96,"tokens":[26648,4109,7124,3491],"delegation":[25648,3109,6124,2491],"delegatorTokens":9999999936152,"jailed":[1000000000000035,null,null,null],"status":["unbonding","bonded","bonded","unbonded"]}},{"ix":158,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":17,"t":102,"tokens":[26648,4109,7124,3491],"delegation":[25648,3109,6124,2491],"delegatorTokens":9999999936152,"jailed":[1000000000000035,null,null,null],"status":["unbonding","bonded","bonded","unbonded"]}},{"ix":159,"action":{"kind":"Delegate","val":0,"amt":1041},"partialState":{"h":17,"t":102,"tokens":[27689,4109,7124,3491],"delegation":[26689,3109,6124,2491],"delegatorTokens":9999999935111}},{"ix":160,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":161,"action":{"kind":"Deliver","chain":"consumer","numPackets":1},"partialState":{"h":17,"t":102,"consumerPower":[null,1795,7104,null],"outstandingDowntime":[false,false,true,true]}},{"ix":162,"action":{"kind":"Delegate","val":0,"amt":2778},"partialState":{"h":17,"t":102,"tokens":[30467,4109,7124,3491],"delegation":[29467,3109,6124,2491],"delegatorTokens":9999999932333}},{"ix":163,"action":{"kind":"Undelegate","val":0,"amt":4564},"partialState":{"h":17,"t":102,"tokens":[25903,4109,7124,3491],"delegation":[24903,3109,6124,2491],"delegatorTokens":9999999932333}},{"ix":164,"action":{"kind":"Deliver","chain":"provider","numPackets":4},"partialState":{"h":17,"t":102,"tokens":[25903,4109,7124,3491],"delegation":[24903,3109,6124,2491],"delegatorTokens":9999999932333,"jailed":[1000000000000035,null,null,null],"status":["unbonding","bonded","bonded","unbonded"]}},{"ix":165,"action":{"kind":"Deliver","chain":"provider","numPackets":5},"partialState":{"h":17,"t":102,"tokens":[25903,4109,7124,3491],"delegation":[24903,3109,6124,2491],"delegatorTokens":9999999932333,"jailed":[1000000000000035,null,null,null],"status":["unbonding","bonded","bonded","unbonded"]}},{"ix":166,"action":{"kind":"Delegate","val":3,"amt":1141},"partialState":{"h":17,"t":102,"tokens":[25903,4109,7124,4632],"delegation":[24903,3109,6124,3632],"delegatorTokens":9999999931192}},{"ix":167,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":18,"t":108,"tokens":[25903,4109,7124,4632],"delegation":[24903,3109,6124,3632],"delegatorTokens":9999999931192,"jailed":[1000000000000035,null,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":168,"action":{"kind":"Delegate","val":0,"amt":3144},"partialState":{"h":18,"t":108,"tokens":[29047,4109,7124,4632],"delegation":[28047,3109,6124,3632],"delegatorTokens":9999999928048}},{"ix":169,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":170,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":171,"action":{"kind":"Undelegate","val":1,"amt":3361},"partialState":{"h":18,"t":108,"tokens":[29047,4109,7124,4632],"delegation":[28047,3109,6124,3632],"delegatorTokens":9999999928048}},{"ix":172,"action":{"kind":"Delegate","val":1,"amt":4126},"partialState":{"h":18,"t":108,"tokens":[29047,8235,7124,4632],"delegation":[28047,7235,6124,3632],"delegatorTokens":9999999923922}},{"ix":173,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":18,"t":108,"consumerPower":[null,4109,7124,null],"outstandingDowntime":[false,false,true,true]}},{"ix":174,"action":{"kind":"Delegate","val":0,"amt":3825},"partialState":{"h":18,"t":108,"tokens":[32872,8235,7124,4632],"delegation":[31872,7235,6124,3632],"delegatorTokens":9999999920097}},{"ix":175,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":176,"action":{"kind":"Delegate","val":1,"amt":3394},"partialState":{"h":18,"t":108,"tokens":[32872,11629,7124,4632],"delegation":[31872,10629,6124,3632],"delegatorTokens":9999999916703}},{"ix":177,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":19,"t":114,"consumerPower":[null,4109,7124,null],"outstandingDowntime":[false,false,true,true]}},{"ix":178,"action":{"kind":"Deliver","chain":"provider","numPackets":3},"partialState":{"h":18,"t":108,"tokens":[32872,11629,7124,4632],"delegation":[31872,10629,6124,3632],"delegatorTokens":9999999916703,"jailed":[1000000000000035,null,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":179,"action":{"kind":"Delegate","val":3,"amt":3129},"partialState":{"h":18,"t":108,"tokens":[32872,11629,7124,7761],"delegation":[31872,10629,6124,6761],"delegatorTokens":9999999913574}},{"ix":180,"action":{"kind":"Delegate","val":3,"amt":1803},"partialState":{"h":18,"t":108,"tokens":[32872,11629,7124,9564],"delegation":[31872,10629,6124,8564],"delegatorTokens":9999999911771}},{"ix":181,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":19,"t":114,"tokens":[32872,11629,7124,9564],"delegation":[31872,10629,6124,8564],"delegatorTokens":9999999921586,"jailed":[1000000000000035,null,null,null],"status":["unbonding","bonded","unbonding","bonded"]}},{"ix":182,"action":{"kind":"Deliver","chain":"provider","numPackets":6},"partialState":{"h":19,"t":114,"tokens":[32872,11629,7124,9564],"delegation":[31872,10629,6124,8564],"delegatorTokens":9999999921586,"jailed":[1000000000000035,null,null,null],"status":["unbonding","bonded","unbonding","bonded"]}},{"ix":183,"action":{"kind":"Deliver","chain":"consumer","numPackets":6},"partialState":{"h":19,"t":114,"consumerPower":[null,4109,7124,null],"outstandingDowntime":[false,false,true,true]}},{"ix":184,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":20,"t":120,"tokens":[32872,11629,7124,9564],"delegation":[31872,10629,6124,8564],"delegatorTokens":9999999923276,"jailed":[1000000000000035,null,null,null],"status":["unbonded","bonded","unbonding","bonded"]}},{"ix":185,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":186,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":21,"t":126,"tokens":[32872,11629,7124,9564],"delegation":[31872,10629,6124,8564],"delegatorTokens":9999999926715,"jailed":[1000000000000035,null,null,null],"status":["unbonded","bonded","unbonding","bonded"]}},{"ix":187,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":188,"action":{"kind":"Delegate","val":2,"amt":1380},"partialState":{"h":21,"t":126,"tokens":[32872,11629,8504,9564],"delegation":[31872,10629,7504,8564],"delegatorTokens":9999999925335}},{"ix":189,"action":{"kind":"Delegate","val":1,"amt":4338},"partialState":{"h":21,"t":126,"tokens":[32872,15967,8504,9564],"delegation":[31872,14967,7504,8564],"delegatorTokens":9999999920997}},{"ix":190,"action":{"kind":"Deliver","chain":"consumer","numPackets":2},"partialState":{"h":19,"t":114,"consumerPower":[null,4109,7124,null],"outstandingDowntime":[false,false,true,true]}},{"ix":191,"action":{"kind":"Undelegate","val":2,"amt":2216},"partialState":{"h":21,"t":126,"tokens":[32872,15967,6288,9564],"delegation":[31872,14967,5288,8564],"delegatorTokens":9999999920997}},{"ix":192,"action":{"kind":"Deliver","chain":"provider","numPackets":6},"partialState":{"h":21,"t":126,"tokens":[32872,15967,6288,9564],"delegation":[31872,14967,5288,8564],"delegatorTokens":9999999920997,"jailed":[1000000000000035,null,null,null],"status":["unbonded","bonded","unbonding","bonded"]}},{"ix":193,"action":{"kind":"Deliver","chain":"provider","numPackets":5},"partialState":{"h":21,"t":126,"tokens":[32872,15967,6288,9564],"delegation":[31872,14967,5288,8564],"delegatorTokens":9999999920997,"jailed":[1000000000000035,null,null,null],"status":["unbonded","bonded","unbonding","bonded"]}},{"ix":194,"action":{"kind":"Undelegate","val":0,"amt":4122},"partialState":{"h":21,"t":126,"tokens":[28750,15967,6288,9564],"delegation":[27750,14967,5288,8564],"delegatorTokens":9999999920997}},{"ix":195,"action":{"kind":"Deliver","chain":"provider","numPackets":4},"partialState":{"h":21,"t":126,"tokens":[28750,15967,6288,9564],"delegation":[27750,14967,5288,8564],"delegatorTokens":9999999920997,"jailed":[1000000000000035,null,null,null],"status":["unbonded","bonded","unbonding","bonded"]}},{"ix":196,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":20,"t":120,"consumerPower":[null,11629,null,9564],"outstandingDowntime":[false,false,true,true]}},{"ix":197,"action":{"kind":"Delegate","val":1,"amt":1053},"partialState":{"h":21,"t":126,"tokens":[28750,17020,6288,9564],"delegation":[27750,16020,5288,8564],"delegatorTokens":9999999919944}},{"ix":198,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":199,"action":{"kind":"Delegate","val":1,"amt":1663},"partialState":{"h":21,"t":126,"tokens":[28750,18683,6288,9564],"delegation":[27750,17683,5288,8564],"delegatorTokens":9999999918281}}],"events":["insufficient_shares","insufficient_shares","insufficient_shares","send_vsc_without_downtime_ack","send_downtime_slash_request","send_downtime_slash_request","downtime_slash_request_outstanding","send_double_sign_slash_request","insufficient_shares","send_vsc_without_downtime_ack","consumer_update_val","send_downtime_slash_request","consumer_update_val","consumer_update_val","receive_double_sign_slash_request","insufficient_shares","insufficient_shares","insufficient_shares","receive_downtime_slash_request","jail","receive_slash_request_unbonded","receive_slash_request_unbonded","send_vsc_with_downtime_ack","more_than_one_third_val_power_change","send_vsc_without_downtime_ack","send_vsc_without_downtime_ack","send_vsc_not_because_change","send_vsc_without_downtime_ack","receive_downtime_slash_ack","consumer_del_val","consumer_update_val","consumer_add_val","insufficient_shares","insufficient_shares","send_vsc_without_downtime_ack","consumer_send_maturation","insufficient_shares","insufficient_shares","send_vsc_without_downtime_ack","consumer_send_maturation","some_undels_expired_but_not_completed","send_vsc_without_downtime_ack","consumer_update_val","consumer_update_val","insufficient_shares","complete_undel_immediate","complete_undel_immediate","complete_undel_immediate","complete_undel_immediate","complete_undel_immediate","insufficient_shares","send_vsc_not_because_change","send_vsc_without_downtime_ack","more_than_one_third_val_power_change","send_vsc_without_downtime_ack","insufficient_shares","consumer_send_maturation","consumer_send_maturation","consumer_send_maturation","consumer_send_maturation","consumer_update_val","consumer_update_val","more_than_one_third_val_power_change","rebond_unval","some_undels_expired_but_not_completed","complete_undel_immediate","complete_undel_immediate","complete_undel_immediate","complete_undel_immediate","set_undel_hold_false","set_unval_hold_false","set_undel_hold_false","send_vsc_without_downtime_ack","complete_unval_in_endblock","complete_undel_in_endblock","set_undel_hold_false","complete_undel_in_endblock","consumer_update_val","consumer_add_val","consumer_del_val"]},{"meta":{"commit":"7ffd0c04e4205cbc9caf212abfe6c59ee43153bf"},"constants":{"P":"provider","C":"consumer","UNBONDING_SECONDS_P":70,"UNBONDING_SECONDS_C":50,"TRUSTING_SECONDS":49,"NUM_VALIDATORS":4,"MAX_VALIDATORS":2,"SLASH_DOUBLESIGN":0,"SLASH_DOWNTIME":0,"JAIL_SECONDS":999999999999999,"BLOCK_SECONDS":6,"INITIAL_DELEGATOR_TOKENS":10000000000000,"DELEGATE_AMT_MIN":1000,"DELEGATE_AMT_MAX":5000,"UNDELEGATE_AMT_MIN":1000,"UNDELEGATE_AMT_MAX":5000,"ISDOWNTIME_PROBABILITY":0.5,"MAX_NUM_PACKETS_FOR_DELIVER":6},"actions":[{"ix":0,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":2,"t":12,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":1,"action":{"kind":"ConsumerSlash","val":2,"infractionHeight":0,"isDowntime":true},"partialState":{"h":2,"t":12,"outstandingDowntime":[false,false,true,false]}},{"ix":2,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":3,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":3,"t":18,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,false,true,false]}},{"ix":4,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":2,"t":12,"tokens":[5000,4000,3000,2000],"delegation":[4000,3000,2000,1000],"delegatorTokens":10000000000000,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":5,"action":{"kind":"Deliver","chain":"consumer","numPackets":4},"partialState":{"h":3,"t":18,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,false,true,false]}},{"ix":6,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":4,"t":24,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,false,true,false]}},{"ix":7,"action":{"kind":"Undelegate","val":2,"amt":2086},"partialState":{"h":2,"t":12,"tokens":[5000,4000,3000,2000],"delegation":[4000,3000,2000,1000],"delegatorTokens":10000000000000}},{"ix":8,"action":{"kind":"Deliver","chain":"provider","numPackets":1},"partialState":{"h":2,"t":12,"tokens":[5000,4000,3000,2000],"delegation":[4000,3000,2000,1000],"delegatorTokens":10000000000000,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":9,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":10,"action":{"kind":"ConsumerSlash","val":3,"infractionHeight":2,"isDowntime":true},"partialState":{"h":4,"t":24,"outstandingDowntime":[false,false,true,true]}},{"ix":11,"action":{"kind":"Undelegate","val":2,"amt":1773},"partialState":{"h":2,"t":12,"tokens":[5000,4000,1227,2000],"delegation":[4000,3000,227,1000],"delegatorTokens":10000000000000}},{"ix":12,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":3,"t":18,"tokens":[5000,4000,1227,2000],"delegation":[4000,3000,227,1000],"delegatorTokens":10000000000000,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":13,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":14,"action":{"kind":"Deliver","chain":"consumer","numPackets":4},"partialState":{"h":4,"t":24,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,false,true,true]}},{"ix":15,"action":{"kind":"Undelegate","val":1,"amt":4901},"partialState":{"h":3,"t":18,"tokens":[5000,4000,1227,2000],"delegation":[4000,3000,227,1000],"delegatorTokens":10000000000000}},{"ix":16,"action":{"kind":"Undelegate","val":2,"amt":3915},"partialState":{"h":3,"t":18,"tokens":[5000,4000,1227,2000],"delegation":[4000,3000,227,1000],"delegatorTokens":10000000000000}},{"ix":17,"action":{"kind":"Undelegate","val":3,"amt":3705},"partialState":{"h":3,"t":18,"tokens":[5000,4000,1227,2000],"delegation":[4000,3000,227,1000],"delegatorTokens":10000000000000}},{"ix":18,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":19,"action":{"kind":"ConsumerSlash","val":3,"infractionHeight":1,"isDowntime":true},"partialState":{"h":4,"t":24,"outstandingDowntime":[false,false,true,true]}},{"ix":20,"action":{"kind":"ConsumerSlash","val":1,"infractionHeight":0,"isDowntime":true},"partialState":{"h":4,"t":24,"outstandingDowntime":[false,true,true,true]}},{"ix":21,"action":{"kind":"Deliver","chain":"consumer","numPackets":4},"partialState":{"h":4,"t":24,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,true,true,true]}},{"ix":22,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":5,"t":30,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,true,true,true]}},{"ix":23,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":24,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":6,"t":36,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,true,true,true]}},{"ix":25,"action":{"kind":"Delegate","val":0,"amt":2275},"partialState":{"h":3,"t":18,"tokens":[7275,4000,1227,2000],"delegation":[6275,3000,227,1000],"delegatorTokens":9999999997725}},{"ix":26,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":4,"t":24,"tokens":[7275,4000,1227,2000],"delegation":[6275,3000,227,1000],"delegatorTokens":9999999997725,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":27,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":5,"t":30,"tokens":[7275,4000,1227,2000],"delegation":[6275,3000,227,1000],"delegatorTokens":9999999997725,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":28,"action":{"kind":"Deliver","chain":"consumer","numPackets":1},"partialState":{"h":6,"t":36,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,true,true,true]}},{"ix":29,"action":{"kind":"Delegate","val":2,"amt":3348},"partialState":{"h":5,"t":30,"tokens":[7275,4000,4575,2000],"delegation":[6275,3000,3575,1000],"delegatorTokens":9999999994377}},{"ix":30,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":31,"action":{"kind":"Delegate","val":0,"amt":3003},"partialState":{"h":5,"t":30,"tokens":[10278,4000,4575,2000],"delegation":[9278,3000,3575,1000],"delegatorTokens":9999999991374}},{"ix":32,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":7,"t":42,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,true,true,true]}},{"ix":33,"action":{"kind":"Delegate","val":0,"amt":1701},"partialState":{"h":5,"t":30,"tokens":[11979,4000,4575,2000],"delegation":[10979,3000,3575,1000],"delegatorTokens":9999999989673}},{"ix":34,"action":{"kind":"Undelegate","val":3,"amt":1627},"partialState":{"h":5,"t":30,"tokens":[11979,4000,4575,2000],"delegation":[10979,3000,3575,1000],"delegatorTokens":9999999989673}},{"ix":35,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":8,"t":48,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,true,true,true]}},{"ix":36,"action":{"kind":"Deliver","chain":"provider","numPackets":2},"partialState":{"h":5,"t":30,"tokens":[11979,4000,4575,2000],"delegation":[10979,3000,3575,1000],"delegatorTokens":9999999989673,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":37,"action":{"kind":"Deliver","chain":"provider","numPackets":5},"partialState":{"h":5,"t":30,"tokens":[11979,4000,4575,2000],"delegation":[10979,3000,3575,1000],"delegatorTokens":9999999989673,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":38,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":6,"t":36,"tokens":[11979,4000,4575,2000],"delegation":[10979,3000,3575,1000],"delegatorTokens":9999999989673,"jailed":[null,1000000000000029,null,null],"status":["bonded","unbonding","bonded","unbonded"]}},{"ix":39,"action":{"kind":"Delegate","val":2,"amt":4519},"partialState":{"h":6,"t":36,"tokens":[11979,4000,9094,2000],"delegation":[10979,3000,8094,1000],"delegatorTokens":9999999985154}},{"ix":40,"action":{"kind":"Undelegate","val":1,"amt":4005},"partialState":{"h":6,"t":36,"tokens":[11979,4000,9094,2000],"delegation":[10979,3000,8094,1000],"delegatorTokens":9999999985154}},{"ix":41,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":42,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":43,"action":{"kind":"Undelegate","val":0,"amt":1891},"partialState":{"h":6,"t":36,"tokens":[10088,4000,9094,2000],"delegation":[9088,3000,8094,1000],"delegatorTokens":9999999985154}},{"ix":44,"action":{"kind":"Undelegate","val":0,"amt":1284},"partialState":{"h":6,"t":36,"tokens":[8804,4000,9094,2000],"delegation":[7804,3000,8094,1000],"delegatorTokens":9999999985154}},{"ix":45,"action":{"kind":"Delegate","val":0,"amt":4621},"partialState":{"h":6,"t":36,"tokens":[13425,4000,9094,2000],"delegation":[12425,3000,8094,1000],"delegatorTokens":9999999980533}},{"ix":46,"action":{"kind":"Delegate","val":3,"amt":2873},"partialState":{"h":6,"t":36,"tokens":[13425,4000,9094,4873],"delegation":[12425,3000,8094,3873],"delegatorTokens":9999999977660}},{"ix":47,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":7,"t":42,"tokens":[13425,4000,9094,4873],"delegation":[12425,3000,8094,3873],"delegatorTokens":9999999977660,"jailed":[null,1000000000000029,null,null],"status":["bonded","unbonding","bonded","unbonded"]}},{"ix":48,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":49,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":50,"action":{"kind":"Undelegate","val":1,"amt":1632},"partialState":{"h":7,"t":42,"tokens":[13425,2368,9094,4873],"delegation":[12425,1368,8094,3873],"delegatorTokens":9999999977660}},{"ix":51,"action":{"kind":"Delegate","val":0,"amt":2727},"partialState":{"h":7,"t":42,"tokens":[16152,2368,9094,4873],"delegation":[15152,1368,8094,3873],"delegatorTokens":9999999974933}},{"ix":52,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":8,"t":48,"tokens":[16152,2368,9094,4873],"delegation":[15152,1368,8094,3873],"delegatorTokens":9999999974933,"jailed":[null,1000000000000029,null,null],"status":["bonded","unbonding","bonded","unbonded"]}},{"ix":53,"action":{"kind":"Deliver","chain":"provider","numPackets":1},"partialState":{"h":8,"t":48,"tokens":[16152,2368,9094,4873],"delegation":[15152,1368,8094,3873],"delegatorTokens":9999999974933,"jailed":[null,1000000000000029,null,null],"status":["bonded","unbonding","bonded","unbonded"]}},{"ix":54,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":9,"t":54,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,true,true,true]}},{"ix":55,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":10,"t":60,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,true,true,true]}},{"ix":56,"action":{"kind":"Undelegate","val":2,"amt":2771},"partialState":{"h":8,"t":48,"tokens":[16152,2368,6323,4873],"delegation":[15152,1368,5323,3873],"delegatorTokens":9999999974933}},{"ix":57,"action":{"kind":"Undelegate","val":0,"amt":3496},"partialState":{"h":8,"t":48,"tokens":[12656,2368,6323,4873],"delegation":[11656,1368,5323,3873],"delegatorTokens":9999999974933}},{"ix":58,"action":{"kind":"Delegate","val":1,"amt":3892},"partialState":{"h":8,"t":48,"tokens":[12656,6260,6323,4873],"delegation":[11656,5260,5323,3873],"delegatorTokens":9999999971041}},{"ix":59,"action":{"kind":"Deliver","chain":"provider","numPackets":5},"partialState":{"h":8,"t":48,"tokens":[12656,6260,6323,4873],"delegation":[11656,5260,5323,3873],"delegatorTokens":9999999971041,"jailed":[null,1000000000000029,null,null],"status":["bonded","unbonding","bonded","unbonded"]}},{"ix":60,"action":{"kind":"Delegate","val":3,"amt":2502},"partialState":{"h":8,"t":48,"tokens":[12656,6260,6323,7375],"delegation":[11656,5260,5323,6375],"delegatorTokens":9999999968539}},{"ix":61,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":62,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":63,"action":{"kind":"Deliver","chain":"provider","numPackets":2},"partialState":{"h":8,"t":48,"tokens":[12656,6260,6323,7375],"delegation":[11656,5260,5323,6375],"delegatorTokens":9999999968539,"jailed":[null,1000000000000029,null,null],"status":["bonded","unbonding","bonded","unbonded"]}},{"ix":64,"action":{"kind":"Deliver","chain":"provider","numPackets":6},"partialState":{"h":8,"t":48,"tokens":[12656,6260,6323,7375],"delegation":[11656,5260,5323,6375],"delegatorTokens":9999999968539,"jailed":[null,1000000000000029,null,null],"status":["bonded","unbonding","bonded","unbonded"]}},{"ix":65,"action":{"kind":"Deliver","chain":"consumer","numPackets":5},"partialState":{"h":10,"t":60,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,false,true,true]}},{"ix":66,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":9,"t":54,"tokens":[12656,6260,6323,7375],"delegation":[11656,5260,5323,6375],"delegatorTokens":9999999968539,"jailed":[null,1000000000000029,null,null],"status":["bonded","unbonding","unbonding","bonded"]}},{"ix":67,"action":{"kind":"Deliver","chain":"consumer","numPackets":3},"partialState":{"h":10,"t":60,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,false,true,true]}},{"ix":68,"action":{"kind":"Undelegate","val":3,"amt":2124},"partialState":{"h":9,"t":54,"tokens":[12656,6260,6323,5251],"delegation":[11656,5260,5323,4251],"delegatorTokens":9999999968539}},{"ix":69,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":11,"t":66,"consumerPower":[16152,null,9094,null],"outstandingDowntime":[false,false,true,true]}},{"ix":70,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":71,"action":{"kind":"Undelegate","val":2,"amt":3602},"partialState":{"h":9,"t":54,"tokens":[12656,6260,2721,5251],"delegation":[11656,5260,1721,4251],"delegatorTokens":9999999968539}},{"ix":72,"action":{"kind":"Delegate","val":3,"amt":4441},"partialState":{"h":9,"t":54,"tokens":[12656,6260,2721,9692],"delegation":[11656,5260,1721,8692],"delegatorTokens":9999999964098}},{"ix":73,"action":{"kind":"Undelegate","val":3,"amt":3746},"partialState":{"h":9,"t":54,"tokens":[12656,6260,2721,5946],"delegation":[11656,5260,1721,4946],"delegatorTokens":9999999964098}},{"ix":74,"action":{"kind":"Undelegate","val":0,"amt":4649},"partialState":{"h":9,"t":54,"tokens":[8007,6260,2721,5946],"delegation":[7007,5260,1721,4946],"delegatorTokens":9999999964098}},{"ix":75,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":10,"t":60,"tokens":[8007,6260,2721,5946],"delegation":[7007,5260,1721,4946],"delegatorTokens":9999999964098,"jailed":[null,1000000000000029,null,null],"status":["bonded","unbonding","unbonding","bonded"]}},{"ix":76,"action":{"kind":"Delegate","val":3,"amt":1571},"partialState":{"h":10,"t":60,"tokens":[8007,6260,2721,7517],"delegation":[7007,5260,1721,6517],"delegatorTokens":9999999962527}},{"ix":77,"action":{"kind":"Undelegate","val":2,"amt":4985},"partialState":{"h":10,"t":60,"tokens":[8007,6260,2721,7517],"delegation":[7007,5260,1721,6517],"delegatorTokens":9999999962527}},{"ix":78,"action":{"kind":"Undelegate","val":3,"amt":1750},"partialState":{"h":10,"t":60,"tokens":[8007,6260,2721,5767],"delegation":[7007,5260,1721,4767],"delegatorTokens":9999999962527}},{"ix":79,"action":{"kind":"Deliver","chain":"consumer","numPackets":1},"partialState":{"h":11,"t":66,"consumerPower":[16152,null,9094,null],"outstandingDowntime":[false,false,true,true]}},{"ix":80,"action":{"kind":"Delegate","val":2,"amt":4310},"partialState":{"h":10,"t":60,"tokens":[8007,6260,7031,5767],"delegation":[7007,5260,6031,4767],"delegatorTokens":9999999958217}},{"ix":81,"action":{"kind":"Deliver","chain":"provider","numPackets":5},"partialState":{"h":10,"t":60,"tokens":[8007,6260,7031,5767],"delegation":[7007,5260,6031,4767],"delegatorTokens":9999999958217,"jailed":[null,1000000000000029,null,null],"status":["bonded","unbonding","unbonding","bonded"]}},{"ix":82,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":83,"action":{"kind":"Undelegate","val":1,"amt":4903},"partialState":{"h":10,"t":60,"tokens":[8007,1357,7031,5767],"delegation":[7007,357,6031,4767],"delegatorTokens":9999999958217}},{"ix":84,"action":{"kind":"Deliver","chain":"provider","numPackets":2},"partialState":{"h":10,"t":60,"tokens":[8007,1357,7031,5767],"delegation":[7007,357,6031,4767],"delegatorTokens":9999999958217,"jailed":[null,1000000000000029,null,null],"status":["bonded","unbonding","unbonding","bonded"]}},{"ix":85,"action":{"kind":"Undelegate","val":3,"amt":1017},"partialState":{"h":10,"t":60,"tokens":[8007,1357,7031,4750],"delegation":[7007,357,6031,3750],"delegatorTokens":9999999958217}},{"ix":86,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":11,"t":66,"tokens":[8007,1357,7031,4750],"delegation":[7007,357,6031,3750],"delegatorTokens":9999999958217,"jailed":[null,1000000000000029,null,null],"status":["bonded","unbonding","bonded","unbonding"]}},{"ix":87,"action":{"kind":"Delegate","val":3,"amt":1307},"partialState":{"h":11,"t":66,"tokens":[8007,1357,7031,6057],"delegation":[7007,357,6031,5057],"delegatorTokens":9999999956910}},{"ix":88,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":12,"t":72,"consumerPower":[12656,null,null,7375],"outstandingDowntime":[false,false,true,true]}},{"ix":89,"action":{"kind":"Deliver","chain":"consumer","numPackets":1},"partialState":{"h":12,"t":72,"consumerPower":[12656,null,null,7375],"outstandingDowntime":[false,false,true,true]}},{"ix":90,"action":{"kind":"Deliver","chain":"consumer","numPackets":1},"partialState":{"h":12,"t":72,"consumerPower":[12656,null,null,7375],"outstandingDowntime":[false,false,true,true]}},{"ix":91,"action":{"kind":"Deliver","chain":"provider","numPackets":6},"partialState":{"h":11,"t":66,"tokens":[8007,1357,7031,6057],"delegation":[7007,357,6031,5057],"delegatorTokens":9999999956910,"jailed":[null,1000000000000029,null,null],"status":["bonded","unbonding","bonded","unbonding"]}},{"ix":92,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":13,"t":78,"consumerPower":[8007,null,null,5946],"outstandingDowntime":[false,false,true,true]}},{"ix":93,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":94,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":14,"t":84,"consumerPower":[8007,null,null,5946],"outstandingDowntime":[false,false,true,true]}},{"ix":95,"action":{"kind":"Undelegate","val":3,"amt":1873},"partialState":{"h":11,"t":66,"tokens":[8007,1357,7031,4184],"delegation":[7007,357,6031,3184],"delegatorTokens":9999999956910}},{"ix":96,"action":{"kind":"Undelegate","val":0,"amt":2093},"partialState":{"h":11,"t":66,"tokens":[5914,1357,7031,4184],"delegation":[4914,357,6031,3184],"delegatorTokens":9999999956910}},{"ix":97,"action":{"kind":"Delegate","val":0,"amt":4746},"partialState":{"h":11,"t":66,"tokens":[10660,1357,7031,4184],"delegation":[9660,357,6031,3184],"delegatorTokens":9999999952164}},{"ix":98,"action":{"kind":"Delegate","val":2,"amt":3709},"partialState":{"h":11,"t":66,"tokens":[10660,1357,10740,4184],"delegation":[9660,357,9740,3184],"delegatorTokens":9999999948455}},{"ix":99,"action":{"kind":"Deliver","chain":"consumer","numPackets":2},"partialState":{"h":14,"t":84,"consumerPower":[8007,null,null,5946],"outstandingDowntime":[false,false,true,true]}},{"ix":100,"action":{"kind":"Undelegate","val":1,"amt":2431},"partialState":{"h":11,"t":66,"tokens":[10660,1357,10740,4184],"delegation":[9660,357,9740,3184],"delegatorTokens":9999999948455}},{"ix":101,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":12,"t":72,"tokens":[10660,1357,10740,4184],"delegation":[9660,357,9740,3184],"delegatorTokens":9999999948455,"jailed":[null,1000000000000029,null,null],"status":["bonded","unbonding","bonded","unbonding"]}},{"ix":102,"action":{"kind":"Undelegate","val":1,"amt":2393},"partialState":{"h":12,"t":72,"tokens":[10660,1357,10740,4184],"delegation":[9660,357,9740,3184],"delegatorTokens":9999999948455}},{"ix":103,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":15,"t":90,"consumerPower":[8007,null,null,5946],"outstandingDowntime":[false,false,true,true]}},{"ix":104,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":13,"t":78,"tokens":[10660,1357,10740,4184],"delegation":[9660,357,9740,3184],"delegatorTokens":9999999948455,"jailed":[null,1000000000000029,null,null],"status":["bonded","unbonding","bonded","unbonding"]}},{"ix":105,"action":{"kind":"Delegate","val":0,"amt":1252},"partialState":{"h":13,"t":78,"tokens":[11912,1357,10740,4184],"delegation":[10912,357,9740,3184],"delegatorTokens":9999999947203}},{"ix":106,"action":{"kind":"Deliver","chain":"provider","numPackets":6},"partialState":{"h":13,"t":78,"tokens":[11912,1357,10740,4184],"delegation":[10912,357,9740,3184],"delegatorTokens":9999999947203,"jailed":[null,1000000000000029,null,null],"status":["bonded","unbonding","bonded","unbonding"]}},{"ix":107,"action":{"kind":"Undelegate","val":1,"amt":1947},"partialState":{"h":13,"t":78,"tokens":[11912,1357,10740,4184],"delegation":[10912,357,9740,3184],"delegatorTokens":9999999947203}},{"ix":108,"action":{"kind":"Deliver","chain":"provider","numPackets":3},"partialState":{"h":13,"t":78,"tokens":[11912,1357,10740,4184],"delegation":[10912,357,9740,3184],"delegatorTokens":9999999947203,"jailed":[null,1000000000000029,null,null],"status":["bonded","unbonding","bonded","unbonding"]}},{"ix":109,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":16,"t":96,"consumerPower":[8007,null,null,5946],"outstandingDowntime":[false,false,true,true]}},{"ix":110,"action":{"kind":"Undelegate","val":3,"amt":4913},"partialState":{"h":13,"t":78,"tokens":[11912,1357,10740,4184],"delegation":[10912,357,9740,3184],"delegatorTokens":9999999947203}},{"ix":111,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":112,"action":{"kind":"Undelegate","val":0,"amt":4148},"partialState":{"h":13,"t":78,"tokens":[7764,1357,10740,4184],"delegation":[6764,357,9740,3184],"delegatorTokens":9999999947203}},{"ix":113,"action":{"kind":"Delegate","val":2,"amt":1459},"partialState":{"h":13,"t":78,"tokens":[7764,1357,12199,4184],"delegation":[6764,357,11199,3184],"delegatorTokens":9999999945744}},{"ix":114,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":14,"t":84,"tokens":[7764,1357,12199,4184],"delegation":[6764,357,11199,3184],"delegatorTokens":9999999945744,"jailed":[null,1000000000000029,null,null],"status":["bonded","unbonding","bonded","unbonding"]}},{"ix":115,"action":{"kind":"Deliver","chain":"consumer","numPackets":6},"partialState":{"h":16,"t":96,"consumerPower":[8007,null,null,5946],"outstandingDowntime":[false,false,true,true]}},{"ix":116,"action":{"kind":"Delegate","val":2,"amt":3784},"partialState":{"h":14,"t":84,"tokens":[7764,1357,15983,4184],"delegation":[6764,357,14983,3184],"delegatorTokens":9999999941960}},{"ix":117,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":17,"t":102,"consumerPower":[10660,null,10740,null],"outstandingDowntime":[false,false,true,true]}},{"ix":118,"action":{"kind":"Deliver","chain":"provider","numPackets":1},"partialState":{"h":14,"t":84,"tokens":[7764,1357,15983,4184],"delegation":[6764,357,14983,3184],"delegatorTokens":9999999941960,"jailed":[null,1000000000000029,null,null],"status":["bonded","unbonding","bonded","unbonding"]}},{"ix":119,"action":{"kind":"Deliver","chain":"provider","numPackets":4},"partialState":{"h":14,"t":84,"tokens":[7764,1357,15983,4184],"delegation":[6764,357,14983,3184],"delegatorTokens":9999999941960,"jailed":[null,1000000000000029,null,null],"status":["bonded","unbonding","bonded","unbonding"]}},{"ix":120,"action":{"kind":"Undelegate","val":3,"amt":1003},"partialState":{"h":14,"t":84,"tokens":[7764,1357,15983,3181],"delegation":[6764,357,14983,2181],"delegatorTokens":9999999941960}},{"ix":121,"action":{"kind":"Undelegate","val":2,"amt":1470},"partialState":{"h":14,"t":84,"tokens":[7764,1357,14513,3181],"delegation":[6764,357,13513,2181],"delegatorTokens":9999999941960}},{"ix":122,"action":{"kind":"Undelegate","val":0,"amt":3709},"partialState":{"h":14,"t":84,"tokens":[4055,1357,14513,3181],"delegation":[3055,357,13513,2181],"delegatorTokens":9999999941960}},{"ix":123,"action":{"kind":"Deliver","chain":"provider","numPackets":6},"partialState":{"h":14,"t":84,"tokens":[4055,1357,14513,3181],"delegation":[3055,357,13513,2181],"delegatorTokens":9999999941960,"jailed":[null,1000000000000029,null,null],"status":["bonded","unbonding","bonded","unbonding"]}},{"ix":124,"action":{"kind":"Delegate","val":3,"amt":3515},"partialState":{"h":14,"t":84,"tokens":[4055,1357,14513,6696],"delegation":[3055,357,13513,5696],"delegatorTokens":9999999938445}},{"ix":125,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":18,"t":108,"consumerPower":[10660,null,10740,null],"outstandingDowntime":[false,false,true,true]}},{"ix":126,"action":{"kind":"Undelegate","val":3,"amt":2897},"partialState":{"h":14,"t":84,"tokens":[4055,1357,14513,3799],"delegation":[3055,357,13513,2799],"delegatorTokens":9999999938445}},{"ix":127,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":128,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":19,"t":114,"consumerPower":[10660,null,10740,null],"outstandingDowntime":[false,false,true,true]}},{"ix":129,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":15,"t":90,"tokens":[4055,1357,14513,3799],"delegation":[3055,357,13513,2799],"delegatorTokens":9999999940218,"jailed":[null,1000000000000029,null,null],"status":["bonded","unbonding","bonded","unbonding"]}},{"ix":130,"action":{"kind":"Delegate","val":1,"amt":4872},"partialState":{"h":15,"t":90,"tokens":[4055,6229,14513,3799],"delegation":[3055,5229,13513,2799],"delegatorTokens":9999999935346}},{"ix":131,"action":{"kind":"Undelegate","val":2,"amt":1421},"partialState":{"h":15,"t":90,"tokens":[4055,6229,13092,3799],"delegation":[3055,5229,12092,2799],"delegatorTokens":9999999935346}},{"ix":132,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":20,"t":120,"consumerPower":[10660,null,10740,null],"outstandingDowntime":[false,false,true,true]}},{"ix":133,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":134,"action":{"kind":"Delegate","val":3,"amt":2862},"partialState":{"h":15,"t":90,"tokens":[4055,6229,13092,6661],"delegation":[3055,5229,12092,5661],"delegatorTokens":9999999932484}},{"ix":135,"action":{"kind":"Deliver","chain":"consumer","numPackets":2},"partialState":{"h":20,"t":120,"consumerPower":[10660,null,10740,null],"outstandingDowntime":[false,false,true,true]}},{"ix":136,"action":{"kind":"Deliver","chain":"provider","numPackets":5},"partialState":{"h":15,"t":90,"tokens":[4055,6229,13092,6661],"delegation":[3055,5229,12092,5661],"delegatorTokens":9999999932484,"jailed":[null,1000000000000029,null,null],"status":["bonded","unbonding","bonded","unbonding"]}},{"ix":137,"action":{"kind":"Deliver","chain":"provider","numPackets":2},"partialState":{"h":15,"t":90,"tokens":[4055,6229,13092,6661],"delegation":[3055,5229,12092,5661],"delegatorTokens":9999999932484,"jailed":[null,1000000000000029,null,null],"status":["bonded","unbonding","bonded","unbonding"]}},{"ix":138,"action":{"kind":"Delegate","val":2,"amt":3435},"partialState":{"h":15,"t":90,"tokens":[4055,6229,16527,6661],"delegation":[3055,5229,15527,5661],"delegatorTokens":9999999929049}},{"ix":139,"action":{"kind":"Deliver","chain":"consumer","numPackets":5},"partialState":{"h":20,"t":120,"consumerPower":[10660,null,10740,null],"outstandingDowntime":[false,false,true,true]}},{"ix":140,"action":{"kind":"Undelegate","val":0,"amt":1385},"partialState":{"h":15,"t":90,"tokens":[2670,6229,16527,6661],"delegation":[1670,5229,15527,5661],"delegatorTokens":9999999929049}},{"ix":141,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":16,"t":96,"tokens":[2670,6229,16527,6661],"delegation":[1670,5229,15527,5661],"delegatorTokens":9999999929049,"jailed":[null,1000000000000029,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":142,"action":{"kind":"Delegate","val":3,"amt":4909},"partialState":{"h":16,"t":96,"tokens":[2670,6229,16527,11570],"delegation":[1670,5229,15527,10570],"delegatorTokens":9999999924140}},{"ix":143,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":21,"t":126,"consumerPower":[7764,null,12199,null],"outstandingDowntime":[false,false,true,true]}},{"ix":144,"action":{"kind":"Deliver","chain":"consumer","numPackets":2},"partialState":{"h":21,"t":126,"consumerPower":[7764,null,12199,null],"outstandingDowntime":[false,false,true,true]}},{"ix":145,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":146,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":147,"action":{"kind":"Undelegate","val":2,"amt":2668},"partialState":{"h":16,"t":96,"tokens":[2670,6229,13859,11570],"delegation":[1670,5229,12859,10570],"delegatorTokens":9999999924140}},{"ix":148,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":149,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":150,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":151,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":152,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":17,"t":102,"tokens":[2670,6229,13859,11570],"delegation":[1670,5229,12859,10570],"delegatorTokens":9999999924140,"jailed":[null,1000000000000029,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":153,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":18,"t":108,"tokens":[2670,6229,13859,11570],"delegation":[1670,5229,12859,10570],"delegatorTokens":9999999924140,"jailed":[null,1000000000000029,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":154,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":155,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":22,"t":132,"consumerPower":[4055,null,14513,null],"outstandingDowntime":[false,false,true,true]}},{"ix":156,"action":{"kind":"Delegate","val":3,"amt":4660},"partialState":{"h":18,"t":108,"tokens":[2670,6229,13859,16230],"delegation":[1670,5229,12859,15230],"delegatorTokens":9999999919480}},{"ix":157,"action":{"kind":"Deliver","chain":"provider","numPackets":6},"partialState":{"h":18,"t":108,"tokens":[2670,6229,13859,16230],"delegation":[1670,5229,12859,15230],"delegatorTokens":9999999919480,"jailed":[null,1000000000000029,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":158,"action":{"kind":"Delegate","val":0,"amt":2949},"partialState":{"h":18,"t":108,"tokens":[5619,6229,13859,16230],"delegation":[4619,5229,12859,15230],"delegatorTokens":9999999916531}},{"ix":159,"action":{"kind":"Deliver","chain":"provider","numPackets":5},"partialState":{"h":18,"t":108,"tokens":[5619,6229,13859,16230],"delegation":[4619,5229,12859,15230],"delegatorTokens":9999999916531,"jailed":[null,1000000000000029,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":160,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":161,"action":{"kind":"Deliver","chain":"provider","numPackets":6},"partialState":{"h":18,"t":108,"tokens":[5619,6229,13859,16230],"delegation":[4619,5229,12859,15230],"delegatorTokens":9999999916531,"jailed":[null,1000000000000029,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":162,"action":{"kind":"Delegate","val":0,"amt":2738},"partialState":{"h":18,"t":108,"tokens":[8357,6229,13859,16230],"delegation":[7357,5229,12859,15230],"delegatorTokens":9999999913793}},{"ix":163,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":164,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":165,"action":{"kind":"Deliver","chain":"consumer","numPackets":3},"partialState":{"h":22,"t":132,"consumerPower":[4055,null,14513,null],"outstandingDowntime":[false,false,true,true]}},{"ix":166,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":23,"t":138,"consumerPower":[null,null,13859,11570],"outstandingDowntime":[false,false,true,true]}},{"ix":167,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":19,"t":114,"tokens":[8357,6229,13859,16230],"delegation":[7357,5229,12859,15230],"delegatorTokens":9999999916968,"jailed":[null,1000000000000029,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":168,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":24,"t":144,"consumerPower":[null,null,13859,11570],"outstandingDowntime":[false,false,true,true]}},{"ix":169,"action":{"kind":"Deliver","chain":"consumer","numPackets":4},"partialState":{"h":24,"t":144,"consumerPower":[null,null,13859,11570],"outstandingDowntime":[false,false,true,true]}},{"ix":170,"action":{"kind":"Undelegate","val":2,"amt":3859},"partialState":{"h":19,"t":114,"tokens":[8357,6229,10000,16230],"delegation":[7357,5229,9000,15230],"delegatorTokens":9999999916968}},{"ix":171,"action":{"kind":"Undelegate","val":0,"amt":2313},"partialState":{"h":19,"t":114,"tokens":[6044,6229,10000,16230],"delegation":[5044,5229,9000,15230],"delegatorTokens":9999999916968}},{"ix":172,"action":{"kind":"Delegate","val":1,"amt":4380},"partialState":{"h":19,"t":114,"tokens":[6044,10609,10000,16230],"delegation":[5044,9609,9000,15230],"delegatorTokens":9999999912588}},{"ix":173,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":174,"action":{"kind":"Delegate","val":2,"amt":1304},"partialState":{"h":19,"t":114,"tokens":[6044,10609,11304,16230],"delegation":[5044,9609,10304,15230],"delegatorTokens":9999999911284}},{"ix":175,"action":{"kind":"Undelegate","val":2,"amt":3141},"partialState":{"h":19,"t":114,"tokens":[6044,10609,8163,16230],"delegation":[5044,9609,7163,15230],"delegatorTokens":9999999911284}},{"ix":176,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":177,"action":{"kind":"Undelegate","val":0,"amt":2849},"partialState":{"h":19,"t":114,"tokens":[3195,10609,8163,16230],"delegation":[2195,9609,7163,15230],"delegatorTokens":9999999911284}},{"ix":178,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":20,"t":120,"tokens":[3195,10609,8163,16230],"delegation":[2195,9609,7163,15230],"delegatorTokens":9999999912916,"jailed":[null,1000000000000029,null,null],"status":["unbonding","unbonded","bonded","bonded"]}},{"ix":179,"action":{"kind":"Undelegate","val":0,"amt":3693},"partialState":{"h":20,"t":120,"tokens":[3195,10609,8163,16230],"delegation":[2195,9609,7163,15230],"delegatorTokens":9999999912916}},{"ix":180,"action":{"kind":"Undelegate","val":2,"amt":2728},"partialState":{"h":20,"t":120,"tokens":[3195,10609,5435,16230],"delegation":[2195,9609,4435,15230],"delegatorTokens":9999999912916}},{"ix":181,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":182,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":183,"action":{"kind":"Delegate","val":1,"amt":3137},"partialState":{"h":20,"t":120,"tokens":[3195,13746,5435,16230],"delegation":[2195,12746,4435,15230],"delegatorTokens":9999999909779}},{"ix":184,"action":{"kind":"Delegate","val":3,"amt":4760},"partialState":{"h":20,"t":120,"tokens":[3195,13746,5435,20990],"delegation":[2195,12746,4435,19990],"delegatorTokens":9999999905019}},{"ix":185,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":186,"action":{"kind":"Deliver","chain":"consumer","numPackets":5},"partialState":{"h":24,"t":144,"consumerPower":[null,null,13859,11570],"outstandingDowntime":[false,false,true,true]}},{"ix":187,"action":{"kind":"Deliver","chain":"consumer","numPackets":6},"partialState":{"h":24,"t":144,"consumerPower":[null,null,13859,11570],"outstandingDowntime":[false,false,true,true]}},{"ix":188,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":25,"t":150,"consumerPower":[null,null,13859,16230],"outstandingDowntime":[false,false,true,true]}},{"ix":189,"action":{"kind":"Undelegate","val":0,"amt":4667},"partialState":{"h":20,"t":120,"tokens":[3195,13746,5435,20990],"delegation":[2195,12746,4435,19990],"delegatorTokens":9999999905019}},{"ix":190,"action":{"kind":"Deliver","chain":"provider","numPackets":5},"partialState":{"h":20,"t":120,"tokens":[3195,13746,5435,20990],"delegation":[2195,12746,4435,19990],"delegatorTokens":9999999905019,"jailed":[null,1000000000000029,null,null],"status":["unbonding","unbonded","bonded","bonded"]}},{"ix":191,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":21,"t":126,"tokens":[3195,13746,5435,20990],"delegation":[2195,12746,4435,19990],"delegatorTokens":9999999911286,"jailed":[null,1000000000000029,null,null],"status":["unbonding","unbonded","bonded","bonded"]}},{"ix":192,"action":{"kind":"Undelegate","val":1,"amt":2980},"partialState":{"h":21,"t":126,"tokens":[3195,10766,5435,20990],"delegation":[2195,9766,4435,19990],"delegatorTokens":9999999911286}},{"ix":193,"action":{"kind":"Delegate","val":1,"amt":2351},"partialState":{"h":21,"t":126,"tokens":[3195,13117,5435,20990],"delegation":[2195,12117,4435,19990],"delegatorTokens":9999999908935}},{"ix":194,"action":{"kind":"Undelegate","val":2,"amt":3111},"partialState":{"h":21,"t":126,"tokens":[3195,13117,2324,20990],"delegation":[2195,12117,1324,19990],"delegatorTokens":9999999908935}},{"ix":195,"action":{"kind":"Delegate","val":0,"amt":4533},"partialState":{"h":21,"t":126,"tokens":[7728,13117,2324,20990],"delegation":[6728,12117,1324,19990],"delegatorTokens":9999999904402}},{"ix":196,"action":{"kind":"Undelegate","val":1,"amt":4160},"partialState":{"h":21,"t":126,"tokens":[7728,8957,2324,20990],"delegation":[6728,7957,1324,19990],"delegatorTokens":9999999904402}},{"ix":197,"action":{"kind":"Undelegate","val":0,"amt":4609},"partialState":{"h":21,"t":126,"tokens":[3119,8957,2324,20990],"delegation":[2119,7957,1324,19990],"delegatorTokens":9999999904402}},{"ix":198,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":26,"t":156,"consumerPower":[null,null,13859,16230],"outstandingDowntime":[false,false,true,true]}},{"ix":199,"action":{"kind":"Deliver","chain":"consumer","numPackets":5},"partialState":{"h":26,"t":156,"consumerPower":[null,null,13859,16230],"outstandingDowntime":[false,false,true,true]}}],"events":["send_downtime_slash_request","insufficient_shares","send_downtime_slash_request","receive_slash_request_unbonded","send_vsc_not_because_change","send_vsc_without_downtime_ack","insufficient_shares","insufficient_shares","insufficient_shares","downtime_slash_request_outstanding","send_downtime_slash_request","send_vsc_without_downtime_ack","insufficient_shares","receive_slash_request_unbonded","receive_downtime_slash_request","jail","send_vsc_with_downtime_ack","insufficient_shares","send_vsc_without_downtime_ack","send_vsc_without_downtime_ack","receive_downtime_slash_ack","more_than_one_third_val_power_change","send_vsc_without_downtime_ack","consumer_update_val","consumer_del_val","consumer_add_val","send_vsc_without_downtime_ack","insufficient_shares","more_than_one_third_val_power_change","rebond_unval","send_vsc_without_downtime_ack","consumer_update_val","consumer_del_val","consumer_add_val","consumer_update_val","consumer_update_val","insufficient_shares","send_vsc_without_downtime_ack","insufficient_shares","insufficient_shares","consumer_send_maturation","insufficient_shares","send_vsc_without_downtime_ack","consumer_add_val","consumer_del_val","consumer_update_val","some_undels_expired_but_not_completed","complete_undel_immediate","send_vsc_without_downtime_ack","consumer_send_maturation","consumer_send_maturation","consumer_send_maturation","consumer_send_maturation","rebond_unval","send_vsc_without_downtime_ack","consumer_send_maturation","consumer_update_val","consumer_update_val","send_vsc_without_downtime_ack","consumer_send_maturation","consumer_update_val","consumer_update_val","consumer_del_val","consumer_update_val","consumer_add_val","some_undels_expired_but_not_completed","set_unval_hold_false","complete_undel_immediate","complete_undel_immediate","set_undel_hold_false","set_undel_hold_false","set_undel_hold_false","send_vsc_without_downtime_ack","complete_unval_in_endblock","complete_undel_in_endblock","send_vsc_without_downtime_ack","insufficient_shares","consumer_update_val","insufficient_shares","complete_undel_in_endblock","set_undel_hold_false","set_undel_hold_false","set_undel_hold_false","set_undel_hold_false","send_vsc_without_downtime_ack","consumer_send_maturation","consumer_send_maturation"]},{"meta":{"commit":"7ffd0c04e4205cbc9caf212abfe6c59ee43153bf"},"constants":{"P":"provider","C":"consumer","UNBONDING_SECONDS_P":70,"UNBONDING_SECONDS_C":50,"TRUSTING_SECONDS":49,"NUM_VALIDATORS":4,"MAX_VALIDATORS":2,"SLASH_DOUBLESIGN":0,"SLASH_DOWNTIME":0,"JAIL_SECONDS":999999999999999,"BLOCK_SECONDS":6,"INITIAL_DELEGATOR_TOKENS":10000000000000,"DELEGATE_AMT_MIN":1000,"DELEGATE_AMT_MAX":5000,"UNDELEGATE_AMT_MIN":1000,"UNDELEGATE_AMT_MAX":5000,"ISDOWNTIME_PROBABILITY":0.5,"MAX_NUM_PACKETS_FOR_DELIVER":6},"actions":[{"ix":0,"action":{"kind":"ConsumerSlash","val":2,"infractionHeight":0,"isDowntime":true},"partialState":{"h":1,"t":6,"outstandingDowntime":[false,false,true,false]}},{"ix":1,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":2,"t":12,"tokens":[5000,4000,3000,2000],"delegation":[4000,3000,2000,1000],"delegatorTokens":10000000000000,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":2,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":3,"t":18,"tokens":[5000,4000,3000,2000],"delegation":[4000,3000,2000,1000],"delegatorTokens":10000000000000,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":3,"action":{"kind":"Undelegate","val":2,"amt":1762},"partialState":{"h":3,"t":18,"tokens":[5000,4000,1238,2000],"delegation":[4000,3000,238,1000],"delegatorTokens":10000000000000}},{"ix":4,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":5,"action":{"kind":"ConsumerSlash","val":3,"infractionHeight":0,"isDowntime":true},"partialState":{"h":1,"t":6,"outstandingDowntime":[false,false,true,true]}},{"ix":6,"action":{"kind":"ConsumerSlash","val":2,"infractionHeight":0,"isDowntime":false},"partialState":{"h":1,"t":6,"outstandingDowntime":[false,false,true,true]}},{"ix":7,"action":{"kind":"ConsumerSlash","val":2,"infractionHeight":0,"isDowntime":true},"partialState":{"h":1,"t":6,"outstandingDowntime":[false,false,true,true]}},{"ix":8,"action":{"kind":"ConsumerSlash","val":1,"infractionHeight":0,"isDowntime":true},"partialState":{"h":1,"t":6,"outstandingDowntime":[false,true,true,true]}},{"ix":9,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":4,"t":24,"tokens":[5000,4000,1238,2000],"delegation":[4000,3000,238,1000],"delegatorTokens":10000000000000,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":10,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":2,"t":12,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,true,true,true]}},{"ix":11,"action":{"kind":"Delegate","val":0,"amt":2011},"partialState":{"h":4,"t":24,"tokens":[7011,4000,1238,2000],"delegation":[6011,3000,238,1000],"delegatorTokens":9999999997989}},{"ix":12,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":5,"t":30,"tokens":[7011,4000,1238,2000],"delegation":[6011,3000,238,1000],"delegatorTokens":9999999997989,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":13,"action":{"kind":"Deliver","chain":"provider","numPackets":5},"partialState":{"h":5,"t":30,"tokens":[7011,4000,1238,2000],"delegation":[6011,3000,238,1000],"delegatorTokens":9999999997989,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":14,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":6,"t":36,"tokens":[7011,4000,1238,2000],"delegation":[6011,3000,238,1000],"delegatorTokens":9999999997989,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":15,"action":{"kind":"Undelegate","val":2,"amt":4365},"partialState":{"h":6,"t":36,"tokens":[7011,4000,1238,2000],"delegation":[6011,3000,238,1000],"delegatorTokens":9999999997989}},{"ix":16,"action":{"kind":"Delegate","val":2,"amt":2383},"partialState":{"h":6,"t":36,"tokens":[7011,4000,3621,2000],"delegation":[6011,3000,2621,1000],"delegatorTokens":9999999995606}},{"ix":17,"action":{"kind":"Undelegate","val":3,"amt":4449},"partialState":{"h":6,"t":36,"tokens":[7011,4000,3621,2000],"delegation":[6011,3000,2621,1000],"delegatorTokens":9999999995606}},{"ix":18,"action":{"kind":"Delegate","val":1,"amt":4414},"partialState":{"h":6,"t":36,"tokens":[7011,8414,3621,2000],"delegation":[6011,7414,2621,1000],"delegatorTokens":9999999991192}},{"ix":19,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":20,"action":{"kind":"Deliver","chain":"provider","numPackets":4},"partialState":{"h":6,"t":36,"tokens":[7011,8414,3621,2000],"delegation":[6011,7414,2621,1000],"delegatorTokens":9999999991192,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":21,"action":{"kind":"Deliver","chain":"provider","numPackets":2},"partialState":{"h":6,"t":36,"tokens":[7011,8414,3621,2000],"delegation":[6011,7414,2621,1000],"delegatorTokens":9999999991192,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":22,"action":{"kind":"Undelegate","val":2,"amt":4835},"partialState":{"h":6,"t":36,"tokens":[7011,8414,3621,2000],"delegation":[6011,7414,2621,1000],"delegatorTokens":9999999991192}},{"ix":23,"action":{"kind":"Delegate","val":3,"amt":4934},"partialState":{"h":6,"t":36,"tokens":[7011,8414,3621,6934],"delegation":[6011,7414,2621,5934],"delegatorTokens":9999999986258}},{"ix":24,"action":{"kind":"Undelegate","val":3,"amt":1770},"partialState":{"h":6,"t":36,"tokens":[7011,8414,3621,5164],"delegation":[6011,7414,2621,4164],"delegatorTokens":9999999986258}},{"ix":25,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":3,"t":18,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,true,true,true]}},{"ix":26,"action":{"kind":"Delegate","val":2,"amt":1063},"partialState":{"h":6,"t":36,"tokens":[7011,8414,4684,5164],"delegation":[6011,7414,3684,4164],"delegatorTokens":9999999985195}},{"ix":27,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":4,"t":24,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,true,true,true]}},{"ix":28,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":29,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":5,"t":30,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,true,true,true]}},{"ix":30,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":31,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":32,"action":{"kind":"Undelegate","val":3,"amt":3716},"partialState":{"h":6,"t":36,"tokens":[7011,8414,4684,1448],"delegation":[6011,7414,3684,448],"delegatorTokens":9999999985195}},{"ix":33,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":7,"t":42,"tokens":[7011,8414,4684,1448],"delegation":[6011,7414,3684,448],"delegatorTokens":9999999985195,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":34,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":35,"action":{"kind":"Deliver","chain":"provider","numPackets":6},"partialState":{"h":7,"t":42,"tokens":[7011,8414,4684,1448],"delegation":[6011,7414,3684,448],"delegatorTokens":9999999985195,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":36,"action":{"kind":"Delegate","val":1,"amt":4729},"partialState":{"h":7,"t":42,"tokens":[7011,13143,4684,1448],"delegation":[6011,12143,3684,448],"delegatorTokens":9999999980466}},{"ix":37,"action":{"kind":"Delegate","val":1,"amt":2465},"partialState":{"h":7,"t":42,"tokens":[7011,15608,4684,1448],"delegation":[6011,14608,3684,448],"delegatorTokens":9999999978001}},{"ix":38,"action":{"kind":"Deliver","chain":"consumer","numPackets":5},"partialState":{"h":5,"t":30,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,true,true,true]}},{"ix":39,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":6,"t":36,"consumerPower":[7011,4000,null,null],"outstandingDowntime":[false,true,true,true]}},{"ix":40,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":8,"t":48,"tokens":[7011,15608,4684,1448],"delegation":[6011,14608,3684,448],"delegatorTokens":9999999978001,"jailed":[null,1000000000000041,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":41,"action":{"kind":"Deliver","chain":"consumer","numPackets":3},"partialState":{"h":6,"t":36,"consumerPower":[7011,4000,null,null],"outstandingDowntime":[false,true,true,true]}},{"ix":42,"action":{"kind":"Delegate","val":2,"amt":1882},"partialState":{"h":8,"t":48,"tokens":[7011,15608,6566,1448],"delegation":[6011,14608,5566,448],"delegatorTokens":9999999976119}},{"ix":43,"action":{"kind":"Deliver","chain":"consumer","numPackets":1},"partialState":{"h":6,"t":36,"consumerPower":[7011,4000,null,null],"outstandingDowntime":[false,true,true,true]}},{"ix":44,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":9,"t":54,"tokens":[7011,15608,6566,1448],"delegation":[6011,14608,5566,448],"delegatorTokens":9999999976119,"jailed":[null,1000000000000041,null,null],"status":["bonded","unbonding","bonded","unbonded"]}},{"ix":45,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":7,"t":42,"consumerPower":[7011,8414,null,null],"outstandingDowntime":[false,true,true,true]}},{"ix":46,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":8,"t":48,"consumerPower":[7011,8414,null,null],"outstandingDowntime":[false,true,true,true]}},{"ix":47,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":9,"t":54,"consumerPower":[7011,8414,null,null],"outstandingDowntime":[false,true,true,true]}},{"ix":48,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":49,"action":{"kind":"Undelegate","val":2,"amt":4105},"partialState":{"h":9,"t":54,"tokens":[7011,15608,2461,1448],"delegation":[6011,14608,1461,448],"delegatorTokens":9999999976119}},{"ix":50,"action":{"kind":"Delegate","val":0,"amt":4133},"partialState":{"h":9,"t":54,"tokens":[11144,15608,2461,1448],"delegation":[10144,14608,1461,448],"delegatorTokens":9999999971986}},{"ix":51,"action":{"kind":"Deliver","chain":"provider","numPackets":6},"partialState":{"h":9,"t":54,"tokens":[11144,15608,2461,1448],"delegation":[10144,14608,1461,448],"delegatorTokens":9999999971986,"jailed":[null,1000000000000041,null,null],"status":["bonded","unbonding","bonded","unbonded"]}},{"ix":52,"action":{"kind":"Undelegate","val":2,"amt":2770},"partialState":{"h":9,"t":54,"tokens":[11144,15608,2461,1448],"delegation":[10144,14608,1461,448],"delegatorTokens":9999999971986}},{"ix":53,"action":{"kind":"Undelegate","val":1,"amt":2050},"partialState":{"h":9,"t":54,"tokens":[11144,13558,2461,1448],"delegation":[10144,12558,1461,448],"delegatorTokens":9999999971986}},{"ix":54,"action":{"kind":"Undelegate","val":1,"amt":1067},"partialState":{"h":9,"t":54,"tokens":[11144,12491,2461,1448],"delegation":[10144,11491,1461,448],"delegatorTokens":9999999971986}},{"ix":55,"action":{"kind":"Deliver","chain":"consumer","numPackets":4},"partialState":{"h":9,"t":54,"consumerPower":[7011,8414,null,null],"outstandingDowntime":[false,false,true,true]}},{"ix":56,"action":{"kind":"Undelegate","val":2,"amt":2919},"partialState":{"h":9,"t":54,"tokens":[11144,12491,2461,1448],"delegation":[10144,11491,1461,448],"delegatorTokens":9999999971986}},{"ix":57,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":58,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":10,"t":60,"tokens":[11144,12491,2461,1448],"delegation":[10144,11491,1461,448],"delegatorTokens":9999999971986,"jailed":[null,1000000000000041,null,null],"status":["bonded","unbonding","bonded","unbonded"]}},{"ix":59,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":60,"action":{"kind":"Deliver","chain":"provider","numPackets":6},"partialState":{"h":10,"t":60,"tokens":[11144,12491,2461,1448],"delegation":[10144,11491,1461,448],"delegatorTokens":9999999971986,"jailed":[null,1000000000000041,null,null],"status":["bonded","unbonding","bonded","unbonded"]}},{"ix":61,"action":{"kind":"Undelegate","val":0,"amt":4171},"partialState":{"h":10,"t":60,"tokens":[6973,12491,2461,1448],"delegation":[5973,11491,1461,448],"delegatorTokens":9999999971986}},{"ix":62,"action":{"kind":"Delegate","val":3,"amt":2839},"partialState":{"h":10,"t":60,"tokens":[6973,12491,2461,4287],"delegation":[5973,11491,1461,3287],"delegatorTokens":9999999969147}},{"ix":63,"action":{"kind":"Undelegate","val":3,"amt":1587},"partialState":{"h":10,"t":60,"tokens":[6973,12491,2461,2700],"delegation":[5973,11491,1461,1700],"delegatorTokens":9999999969147}},{"ix":64,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":65,"action":{"kind":"Deliver","chain":"consumer","numPackets":3},"partialState":{"h":9,"t":54,"consumerPower":[7011,8414,null,null],"outstandingDowntime":[false,false,true,true]}},{"ix":66,"action":{"kind":"Undelegate","val":2,"amt":2943},"partialState":{"h":10,"t":60,"tokens":[6973,12491,2461,2700],"delegation":[5973,11491,1461,1700],"delegatorTokens":9999999969147}},{"ix":67,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":68,"action":{"kind":"Deliver","chain":"provider","numPackets":2},"partialState":{"h":10,"t":60,"tokens":[6973,12491,2461,2700],"delegation":[5973,11491,1461,1700],"delegatorTokens":9999999969147,"jailed":[null,1000000000000041,null,null],"status":["bonded","unbonding","bonded","unbonded"]}},{"ix":69,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":70,"action":{"kind":"Undelegate","val":3,"amt":1043},"partialState":{"h":10,"t":60,"tokens":[6973,12491,2461,1657],"delegation":[5973,11491,1461,657],"delegatorTokens":9999999969147}},{"ix":71,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":10,"t":60,"consumerPower":[7011,null,6566,null],"outstandingDowntime":[false,false,true,true]}},{"ix":72,"action":{"kind":"Undelegate","val":3,"amt":2517},"partialState":{"h":10,"t":60,"tokens":[6973,12491,2461,1657],"delegation":[5973,11491,1461,657],"delegatorTokens":9999999969147}},{"ix":73,"action":{"kind":"Undelegate","val":2,"amt":4453},"partialState":{"h":10,"t":60,"tokens":[6973,12491,2461,1657],"delegation":[5973,11491,1461,657],"delegatorTokens":9999999969147}},{"ix":74,"action":{"kind":"Delegate","val":0,"amt":1364},"partialState":{"h":10,"t":60,"tokens":[8337,12491,2461,1657],"delegation":[7337,11491,1461,657],"delegatorTokens":9999999967783}},{"ix":75,"action":{"kind":"Delegate","val":3,"amt":1019},"partialState":{"h":10,"t":60,"tokens":[8337,12491,2461,2676],"delegation":[7337,11491,1461,1676],"delegatorTokens":9999999966764}},{"ix":76,"action":{"kind":"Deliver","chain":"provider","numPackets":5},"partialState":{"h":10,"t":60,"tokens":[8337,12491,2461,2676],"delegation":[7337,11491,1461,1676],"delegatorTokens":9999999966764,"jailed":[null,1000000000000041,null,null],"status":["bonded","unbonding","bonded","unbonded"]}},{"ix":77,"action":{"kind":"Delegate","val":3,"amt":2080},"partialState":{"h":10,"t":60,"tokens":[8337,12491,2461,4756],"delegation":[7337,11491,1461,3756],"delegatorTokens":9999999964684}},{"ix":78,"action":{"kind":"Delegate","val":2,"amt":4708},"partialState":{"h":10,"t":60,"tokens":[8337,12491,7169,4756],"delegation":[7337,11491,6169,3756],"delegatorTokens":9999999959976}},{"ix":79,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":80,"action":{"kind":"Delegate","val":1,"amt":1850},"partialState":{"h":10,"t":60,"tokens":[8337,14341,7169,4756],"delegation":[7337,13341,6169,3756],"delegatorTokens":9999999958126}},{"ix":81,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":82,"action":{"kind":"Delegate","val":2,"amt":2756},"partialState":{"h":10,"t":60,"tokens":[8337,14341,9925,4756],"delegation":[7337,13341,8925,3756],"delegatorTokens":9999999955370}},{"ix":83,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":11,"t":66,"tokens":[8337,14341,9925,4756],"delegation":[7337,13341,8925,3756],"delegatorTokens":9999999955370,"jailed":[null,1000000000000041,null,null],"status":["bonded","unbonding","bonded","unbonded"]}},{"ix":84,"action":{"kind":"Undelegate","val":0,"amt":2110},"partialState":{"h":11,"t":66,"tokens":[6227,14341,9925,4756],"delegation":[5227,13341,8925,3756],"delegatorTokens":9999999955370}},{"ix":85,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":11,"t":66,"consumerPower":[7011,null,6566,null],"outstandingDowntime":[false,false,true,true]}},{"ix":86,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":12,"t":72,"consumerPower":[7011,null,6566,null],"outstandingDowntime":[false,false,true,true]}},{"ix":87,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":12,"t":72,"tokens":[6227,14341,9925,4756],"delegation":[5227,13341,8925,3756],"delegatorTokens":9999999955370,"jailed":[null,1000000000000041,null,null],"status":["bonded","unbonding","bonded","unbonded"]}},{"ix":88,"action":{"kind":"Delegate","val":1,"amt":4323},"partialState":{"h":12,"t":72,"tokens":[6227,18664,9925,4756],"delegation":[5227,17664,8925,3756],"delegatorTokens":9999999951047}},{"ix":89,"action":{"kind":"Delegate","val":2,"amt":4037},"partialState":{"h":12,"t":72,"tokens":[6227,18664,13962,4756],"delegation":[5227,17664,12962,3756],"delegatorTokens":9999999947010}},{"ix":90,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":13,"t":78,"consumerPower":[7011,null,6566,null],"outstandingDowntime":[false,false,true,true]}},{"ix":91,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":14,"t":84,"consumerPower":[7011,null,6566,null],"outstandingDowntime":[false,false,true,true]}},{"ix":92,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":93,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":94,"action":{"kind":"Deliver","chain":"consumer","numPackets":3},"partialState":{"h":14,"t":84,"consumerPower":[7011,null,6566,null],"outstandingDowntime":[false,false,true,true]}},{"ix":95,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":96,"action":{"kind":"Delegate","val":2,"amt":4391},"partialState":{"h":12,"t":72,"tokens":[6227,18664,18353,4756],"delegation":[5227,17664,17353,3756],"delegatorTokens":9999999942619}},{"ix":97,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":98,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":15,"t":90,"consumerPower":[8337,null,9925,null],"outstandingDowntime":[false,false,true,true]}},{"ix":99,"action":{"kind":"Delegate","val":3,"amt":1669},"partialState":{"h":12,"t":72,"tokens":[6227,18664,18353,6425],"delegation":[5227,17664,17353,5425],"delegatorTokens":9999999940950}},{"ix":100,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":13,"t":78,"tokens":[6227,18664,18353,6425],"delegation":[5227,17664,17353,5425],"delegatorTokens":9999999940950,"jailed":[null,1000000000000041,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":101,"action":{"kind":"Undelegate","val":2,"amt":4247},"partialState":{"h":13,"t":78,"tokens":[6227,18664,14106,6425],"delegation":[5227,17664,13106,5425],"delegatorTokens":9999999940950}},{"ix":102,"action":{"kind":"Undelegate","val":3,"amt":4365},"partialState":{"h":13,"t":78,"tokens":[6227,18664,14106,2060],"delegation":[5227,17664,13106,1060],"delegatorTokens":9999999940950}},{"ix":103,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":16,"t":96,"consumerPower":[8337,null,9925,null],"outstandingDowntime":[false,false,true,true]}},{"ix":104,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":105,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":17,"t":102,"consumerPower":[8337,null,9925,null],"outstandingDowntime":[false,false,true,true]}},{"ix":106,"action":{"kind":"Deliver","chain":"provider","numPackets":3},"partialState":{"h":13,"t":78,"tokens":[6227,18664,14106,2060],"delegation":[5227,17664,13106,1060],"delegatorTokens":9999999940950,"jailed":[null,1000000000000041,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":107,"action":{"kind":"Deliver","chain":"consumer","numPackets":6},"partialState":{"h":17,"t":102,"consumerPower":[8337,null,9925,null],"outstandingDowntime":[false,false,true,true]}},{"ix":108,"action":{"kind":"Undelegate","val":3,"amt":3802},"partialState":{"h":13,"t":78,"tokens":[6227,18664,14106,2060],"delegation":[5227,17664,13106,1060],"delegatorTokens":9999999940950}},{"ix":109,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":110,"action":{"kind":"Delegate","val":0,"amt":3992},"partialState":{"h":13,"t":78,"tokens":[10219,18664,14106,2060],"delegation":[9219,17664,13106,1060],"delegatorTokens":9999999936958}},{"ix":111,"action":{"kind":"Deliver","chain":"provider","numPackets":4},"partialState":{"h":13,"t":78,"tokens":[10219,18664,14106,2060],"delegation":[9219,17664,13106,1060],"delegatorTokens":9999999936958,"jailed":[null,1000000000000041,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":112,"action":{"kind":"Deliver","chain":"consumer","numPackets":5},"partialState":{"h":17,"t":102,"consumerPower":[8337,null,9925,null],"outstandingDowntime":[false,false,true,true]}},{"ix":113,"action":{"kind":"Undelegate","val":3,"amt":1963},"partialState":{"h":13,"t":78,"tokens":[10219,18664,14106,2060],"delegation":[9219,17664,13106,1060],"delegatorTokens":9999999936958}},{"ix":114,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":115,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":116,"action":{"kind":"Delegate","val":2,"amt":2839},"partialState":{"h":13,"t":78,"tokens":[10219,18664,16945,2060],"delegation":[9219,17664,15945,1060],"delegatorTokens":9999999934119}},{"ix":117,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":118,"action":{"kind":"Undelegate","val":3,"amt":2617},"partialState":{"h":13,"t":78,"tokens":[10219,18664,16945,2060],"delegation":[9219,17664,15945,1060],"delegatorTokens":9999999934119}},{"ix":119,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":14,"t":84,"tokens":[10219,18664,16945,2060],"delegation":[9219,17664,15945,1060],"delegatorTokens":9999999934119,"jailed":[null,1000000000000041,null,null],"status":["bonded","unbonding","bonded","unbonding"]}},{"ix":120,"action":{"kind":"Delegate","val":1,"amt":3387},"partialState":{"h":14,"t":84,"tokens":[10219,22051,16945,2060],"delegation":[9219,21051,15945,1060],"delegatorTokens":9999999930732}},{"ix":121,"action":{"kind":"Delegate","val":0,"amt":4808},"partialState":{"h":14,"t":84,"tokens":[15027,22051,16945,2060],"delegation":[14027,21051,15945,1060],"delegatorTokens":9999999925924}},{"ix":122,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":15,"t":90,"tokens":[15027,22051,16945,2060],"delegation":[14027,21051,15945,1060],"delegatorTokens":9999999925924,"jailed":[null,1000000000000041,null,null],"status":["bonded","unbonding","bonded","unbonding"]}},{"ix":123,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":124,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":16,"t":96,"tokens":[15027,22051,16945,2060],"delegation":[14027,21051,15945,1060],"delegatorTokens":9999999927686,"jailed":[null,1000000000000041,null,null],"status":["bonded","unbonding","bonded","unbonding"]}},{"ix":125,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":18,"t":108,"consumerPower":[6227,null,9925,null],"outstandingDowntime":[false,false,true,true]}},{"ix":126,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":17,"t":102,"tokens":[15027,22051,16945,2060],"delegation":[14027,21051,15945,1060],"delegatorTokens":9999999927686,"jailed":[null,1000000000000041,null,null],"status":["bonded","unbonding","bonded","unbonding"]}},{"ix":127,"action":{"kind":"Delegate","val":0,"amt":2294},"partialState":{"h":17,"t":102,"tokens":[17321,22051,16945,2060],"delegation":[16321,21051,15945,1060],"delegatorTokens":9999999925392}},{"ix":128,"action":{"kind":"Deliver","chain":"consumer","numPackets":5},"partialState":{"h":18,"t":108,"consumerPower":[6227,null,9925,null],"outstandingDowntime":[false,false,true,true]}},{"ix":129,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":18,"t":108,"tokens":[17321,22051,16945,2060],"delegation":[16321,21051,15945,1060],"delegatorTokens":9999999925392,"jailed":[null,1000000000000041,null,null],"status":["bonded","unbonding","bonded","unbonding"]}},{"ix":130,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":131,"action":{"kind":"Delegate","val":2,"amt":4740},"partialState":{"h":18,"t":108,"tokens":[17321,22051,21685,2060],"delegation":[16321,21051,20685,1060],"delegatorTokens":9999999920652}},{"ix":132,"action":{"kind":"Undelegate","val":2,"amt":3434},"partialState":{"h":18,"t":108,"tokens":[17321,22051,18251,2060],"delegation":[16321,21051,17251,1060],"delegatorTokens":9999999920652}},{"ix":133,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":19,"t":114,"consumerPower":[15027,null,16945,null],"outstandingDowntime":[false,false,true,true]}},{"ix":134,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":19,"t":114,"tokens":[17321,22051,18251,2060],"delegation":[16321,21051,17251,1060],"delegatorTokens":9999999926138,"jailed":[null,1000000000000041,null,null],"status":["bonded","unbonding","bonded","unbonding"]}},{"ix":135,"action":{"kind":"Delegate","val":2,"amt":1112},"partialState":{"h":19,"t":114,"tokens":[17321,22051,19363,2060],"delegation":[16321,21051,18363,1060],"delegatorTokens":9999999925026}},{"ix":136,"action":{"kind":"Undelegate","val":1,"amt":4057},"partialState":{"h":19,"t":114,"tokens":[17321,17994,19363,2060],"delegation":[16321,16994,18363,1060],"delegatorTokens":9999999925026}},{"ix":137,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":20,"t":120,"consumerPower":[15027,null,16945,null],"outstandingDowntime":[false,false,true,true]}},{"ix":138,"action":{"kind":"Delegate","val":3,"amt":2319},"partialState":{"h":19,"t":114,"tokens":[17321,17994,19363,4379],"delegation":[16321,16994,18363,3379],"delegatorTokens":9999999922707}},{"ix":139,"action":{"kind":"Deliver","chain":"consumer","numPackets":5},"partialState":{"h":20,"t":120,"consumerPower":[15027,null,16945,null],"outstandingDowntime":[false,false,true,true]}},{"ix":140,"action":{"kind":"Deliver","chain":"consumer","numPackets":2},"partialState":{"h":20,"t":120,"consumerPower":[15027,null,16945,null],"outstandingDowntime":[false,false,true,true]}},{"ix":141,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":142,"action":{"kind":"Undelegate","val":1,"amt":3777},"partialState":{"h":19,"t":114,"tokens":[17321,14217,19363,4379],"delegation":[16321,13217,18363,3379],"delegatorTokens":9999999922707}},{"ix":143,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":21,"t":126,"consumerPower":[17321,null,16945,null],"outstandingDowntime":[false,false,true,true]}},{"ix":144,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":22,"t":132,"consumerPower":[17321,null,16945,null],"outstandingDowntime":[false,false,true,true]}},{"ix":145,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":146,"action":{"kind":"Delegate","val":0,"amt":3897},"partialState":{"h":19,"t":114,"tokens":[21218,14217,19363,4379],"delegation":[20218,13217,18363,3379],"delegatorTokens":9999999918810}},{"ix":147,"action":{"kind":"Delegate","val":3,"amt":4708},"partialState":{"h":19,"t":114,"tokens":[21218,14217,19363,9087],"delegation":[20218,13217,18363,8087],"delegatorTokens":9999999914102}},{"ix":148,"action":{"kind":"Undelegate","val":1,"amt":2292},"partialState":{"h":19,"t":114,"tokens":[21218,11925,19363,9087],"delegation":[20218,10925,18363,8087],"delegatorTokens":9999999914102}},{"ix":149,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":23,"t":138,"consumerPower":[17321,null,16945,null],"outstandingDowntime":[false,false,true,true]}},{"ix":150,"action":{"kind":"Deliver","chain":"provider","numPackets":6},"partialState":{"h":19,"t":114,"tokens":[21218,11925,19363,9087],"delegation":[20218,10925,18363,8087],"delegatorTokens":9999999914102,"jailed":[null,1000000000000041,null,null],"status":["bonded","unbonding","bonded","unbonding"]}},{"ix":151,"action":{"kind":"Deliver","chain":"provider","numPackets":2},"partialState":{"h":19,"t":114,"tokens":[21218,11925,19363,9087],"delegation":[20218,10925,18363,8087],"delegatorTokens":9999999914102,"jailed":[null,1000000000000041,null,null],"status":["bonded","unbonding","bonded","unbonding"]}},{"ix":152,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":153,"action":{"kind":"Undelegate","val":3,"amt":4566},"partialState":{"h":19,"t":114,"tokens":[21218,11925,19363,4521],"delegation":[20218,10925,18363,3521],"delegatorTokens":9999999914102}},{"ix":154,"action":{"kind":"Delegate","val":3,"amt":4054},"partialState":{"h":19,"t":114,"tokens":[21218,11925,19363,8575],"delegation":[20218,10925,18363,7575],"delegatorTokens":9999999910048}},{"ix":155,"action":{"kind":"Delegate","val":1,"amt":1622},"partialState":{"h":19,"t":114,"tokens":[21218,13547,19363,8575],"delegation":[20218,12547,18363,7575],"delegatorTokens":9999999908426}},{"ix":156,"action":{"kind":"Deliver","chain":"provider","numPackets":2},"partialState":{"h":19,"t":114,"tokens":[21218,13547,19363,8575],"delegation":[20218,12547,18363,7575],"delegatorTokens":9999999908426,"jailed":[null,1000000000000041,null,null],"status":["bonded","unbonding","bonded","unbonding"]}},{"ix":157,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":20,"t":120,"tokens":[21218,13547,19363,8575],"delegation":[20218,12547,18363,7575],"delegatorTokens":9999999908426,"jailed":[null,1000000000000041,null,null],"status":["bonded","unbonding","bonded","unbonding"]}},{"ix":158,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":159,"action":{"kind":"Deliver","chain":"consumer","numPackets":5},"partialState":{"h":23,"t":138,"consumerPower":[17321,null,16945,null],"outstandingDowntime":[false,false,true,true]}},{"ix":160,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":21,"t":126,"tokens":[21218,13547,19363,8575],"delegation":[20218,12547,18363,7575],"delegatorTokens":9999999908426,"jailed":[null,1000000000000041,null,null],"status":["bonded","unbonded","bonded","unbonding"]}},{"ix":161,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":24,"t":144,"consumerPower":[17321,null,18251,null],"outstandingDowntime":[false,false,true,true]}},{"ix":162,"action":{"kind":"Undelegate","val":0,"amt":2616},"partialState":{"h":21,"t":126,"tokens":[18602,13547,19363,8575],"delegation":[17602,12547,18363,7575],"delegatorTokens":9999999908426}},{"ix":163,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":22,"t":132,"tokens":[18602,13547,19363,8575],"delegation":[17602,12547,18363,7575],"delegatorTokens":9999999908426,"jailed":[null,1000000000000041,null,null],"status":["bonded","unbonded","bonded","unbonding"]}},{"ix":164,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":165,"action":{"kind":"Deliver","chain":"provider","numPackets":2},"partialState":{"h":22,"t":132,"tokens":[18602,13547,19363,8575],"delegation":[17602,12547,18363,7575],"delegatorTokens":9999999908426,"jailed":[null,1000000000000041,null,null],"status":["bonded","unbonded","bonded","unbonding"]}},{"ix":166,"action":{"kind":"Delegate","val":2,"amt":1547},"partialState":{"h":22,"t":132,"tokens":[18602,13547,20910,8575],"delegation":[17602,12547,19910,7575],"delegatorTokens":9999999906879}},{"ix":167,"action":{"kind":"Delegate","val":2,"amt":2321},"partialState":{"h":22,"t":132,"tokens":[18602,13547,23231,8575],"delegation":[17602,12547,22231,7575],"delegatorTokens":9999999904558}},{"ix":168,"action":{"kind":"Deliver","chain":"provider","numPackets":6},"partialState":{"h":22,"t":132,"tokens":[18602,13547,23231,8575],"delegation":[17602,12547,22231,7575],"delegatorTokens":9999999904558,"jailed":[null,1000000000000041,null,null],"status":["bonded","unbonded","bonded","unbonding"]}},{"ix":169,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":25,"t":150,"consumerPower":[17321,null,18251,null],"outstandingDowntime":[false,false,true,true]}},{"ix":170,"action":{"kind":"Deliver","chain":"consumer","numPackets":1},"partialState":{"h":25,"t":150,"consumerPower":[17321,null,18251,null],"outstandingDowntime":[false,false,true,true]}},{"ix":171,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":172,"action":{"kind":"Delegate","val":2,"amt":1119},"partialState":{"h":22,"t":132,"tokens":[18602,13547,24350,8575],"delegation":[17602,12547,23350,7575],"delegatorTokens":9999999903439}},{"ix":173,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":174,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":23,"t":138,"tokens":[18602,13547,24350,8575],"delegation":[17602,12547,23350,7575],"delegatorTokens":9999999903439,"jailed":[null,1000000000000041,null,null],"status":["bonded","unbonded","bonded","unbonding"]}},{"ix":175,"action":{"kind":"Undelegate","val":0,"amt":3443},"partialState":{"h":23,"t":138,"tokens":[15159,13547,24350,8575],"delegation":[14159,12547,23350,7575],"delegatorTokens":9999999903439}},{"ix":176,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":177,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":178,"action":{"kind":"Delegate","val":2,"amt":3512},"partialState":{"h":23,"t":138,"tokens":[15159,13547,27862,8575],"delegation":[14159,12547,26862,7575],"delegatorTokens":9999999899927}},{"ix":179,"action":{"kind":"Undelegate","val":2,"amt":3934},"partialState":{"h":23,"t":138,"tokens":[15159,13547,23928,8575],"delegation":[14159,12547,22928,7575],"delegatorTokens":9999999899927}},{"ix":180,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":24,"t":144,"tokens":[15159,13547,23928,8575],"delegation":[14159,12547,22928,7575],"delegatorTokens":9999999899927,"jailed":[null,1000000000000041,null,null],"status":["bonded","unbonded","bonded","unbonding"]}},{"ix":181,"action":{"kind":"Undelegate","val":0,"amt":3749},"partialState":{"h":24,"t":144,"tokens":[11410,13547,23928,8575],"delegation":[10410,12547,22928,7575],"delegatorTokens":9999999899927}},{"ix":182,"action":{"kind":"Delegate","val":2,"amt":2663},"partialState":{"h":24,"t":144,"tokens":[11410,13547,26591,8575],"delegation":[10410,12547,25591,7575],"delegatorTokens":9999999897264}},{"ix":183,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":26,"t":156,"consumerPower":[21218,null,19363,null],"outstandingDowntime":[false,false,true,true]}},{"ix":184,"action":{"kind":"Deliver","chain":"provider","numPackets":5},"partialState":{"h":24,"t":144,"tokens":[11410,13547,26591,8575],"delegation":[10410,12547,25591,7575],"delegatorTokens":9999999897264,"jailed":[null,1000000000000041,null,null],"status":["bonded","unbonded","bonded","unbonding"]}},{"ix":185,"action":{"kind":"Deliver","chain":"provider","numPackets":2},"partialState":{"h":24,"t":144,"tokens":[11410,13547,26591,8575],"delegation":[10410,12547,25591,7575],"delegatorTokens":9999999897264,"jailed":[null,1000000000000041,null,null],"status":["bonded","unbonded","bonded","unbonding"]}},{"ix":186,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":27,"t":162,"consumerPower":[21218,null,19363,null],"outstandingDowntime":[false,false,true,true]}},{"ix":187,"action":{"kind":"Undelegate","val":1,"amt":1298},"partialState":{"h":24,"t":144,"tokens":[11410,12249,26591,8575],"delegation":[10410,11249,25591,7575],"delegatorTokens":9999999897264}},{"ix":188,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":189,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":28,"t":168,"consumerPower":[21218,null,19363,null],"outstandingDowntime":[false,false,true,true]}},{"ix":190,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":191,"action":{"kind":"Deliver","chain":"consumer","numPackets":2},"partialState":{"h":28,"t":168,"consumerPower":[21218,null,19363,null],"outstandingDowntime":[false,false,true,true]}},{"ix":192,"action":{"kind":"Undelegate","val":2,"amt":2537},"partialState":{"h":24,"t":144,"tokens":[11410,12249,24054,8575],"delegation":[10410,11249,23054,7575],"delegatorTokens":9999999897264}},{"ix":193,"action":{"kind":"Delegate","val":0,"amt":3802},"partialState":{"h":24,"t":144,"tokens":[15212,12249,24054,8575],"delegation":[14212,11249,23054,7575],"delegatorTokens":9999999893462}},{"ix":194,"action":{"kind":"Undelegate","val":0,"amt":1971},"partialState":{"h":24,"t":144,"tokens":[13241,12249,24054,8575],"delegation":[12241,11249,23054,7575],"delegatorTokens":9999999893462}},{"ix":195,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":196,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":197,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":198,"action":{"kind":"Delegate","val":1,"amt":2284},"partialState":{"h":24,"t":144,"tokens":[13241,14533,24054,8575],"delegation":[12241,13533,23054,7575],"delegatorTokens":9999999891178}},{"ix":199,"action":{"kind":"Deliver","chain":"consumer","numPackets":5},"partialState":{"h":28,"t":168,"consumerPower":[21218,null,19363,null],"outstandingDowntime":[false,false,true,true]}}],"events":["send_downtime_slash_request","send_downtime_slash_request","send_double_sign_slash_request","downtime_slash_request_outstanding","send_downtime_slash_request","send_vsc_not_because_change","send_vsc_without_downtime_ack","send_vsc_without_downtime_ack","insufficient_shares","insufficient_shares","insufficient_shares","send_vsc_without_downtime_ack","receive_double_sign_slash_request","consumer_update_val","receive_slash_request_unbonded","receive_slash_request_unbonded","receive_downtime_slash_request","jail","send_vsc_with_downtime_ack","more_than_one_third_val_power_change","send_vsc_without_downtime_ack","consumer_update_val","insufficient_shares","receive_downtime_slash_ack","insufficient_shares","send_vsc_without_downtime_ack","insufficient_shares","consumer_del_val","consumer_add_val","insufficient_shares","insufficient_shares","send_vsc_without_downtime_ack","send_vsc_without_downtime_ack","consumer_send_maturation","consumer_send_maturation","consumer_update_val","consumer_update_val","send_vsc_without_downtime_ack","consumer_send_maturation","insufficient_shares","insufficient_shares","insufficient_shares","more_than_one_third_val_power_change","rebond_unval","set_undel_hold_false","set_undel_hold_false","set_undel_hold_false","send_vsc_without_downtime_ack","send_vsc_without_downtime_ack","complete_undel_in_endblock","consumer_update_val","send_vsc_without_downtime_ack","consumer_send_maturation","consumer_send_maturation","consumer_update_val","consumer_update_val","consumer_del_val","complete_undel_in_endblock","send_vsc_without_downtime_ack","consumer_update_val","set_unval_hold_false","send_vsc_without_downtime_ack","complete_unval_in_endblock","consumer_send_maturation","consumer_send_maturation","consumer_update_val","some_undels_expired_but_not_completed","send_vsc_without_downtime_ack","some_undels_expired_but_not_completed","send_vsc_without_downtime_ack","some_undels_expired_but_not_completed","send_vsc_without_downtime_ack","consumer_update_val","consumer_update_val","consumer_send_maturation","consumer_send_maturation","consumer_send_maturation","consumer_send_maturation"]},{"meta":{"commit":"7ffd0c04e4205cbc9caf212abfe6c59ee43153bf"},"constants":{"P":"provider","C":"consumer","UNBONDING_SECONDS_P":70,"UNBONDING_SECONDS_C":50,"TRUSTING_SECONDS":49,"NUM_VALIDATORS":4,"MAX_VALIDATORS":2,"SLASH_DOUBLESIGN":0,"SLASH_DOWNTIME":0,"JAIL_SECONDS":999999999999999,"BLOCK_SECONDS":6,"INITIAL_DELEGATOR_TOKENS":10000000000000,"DELEGATE_AMT_MIN":1000,"DELEGATE_AMT_MAX":5000,"UNDELEGATE_AMT_MIN":1000,"UNDELEGATE_AMT_MAX":5000,"ISDOWNTIME_PROBABILITY":0.5,"MAX_NUM_PACKETS_FOR_DELIVER":6},"actions":[{"ix":0,"action":{"kind":"Undelegate","val":3,"amt":1979},"partialState":{"h":1,"t":6,"tokens":[5000,4000,3000,2000],"delegation":[4000,3000,2000,1000],"delegatorTokens":10000000000000}},{"ix":1,"action":{"kind":"Undelegate","val":1,"amt":4138},"partialState":{"h":1,"t":6,"tokens":[5000,4000,3000,2000],"delegation":[4000,3000,2000,1000],"delegatorTokens":10000000000000}},{"ix":2,"action":{"kind":"ConsumerSlash","val":3,"infractionHeight":0,"isDowntime":false},"partialState":{"h":1,"t":6,"outstandingDowntime":[false,false,false,false]}},{"ix":3,"action":{"kind":"Deliver","chain":"provider","numPackets":2},"partialState":{"h":1,"t":6,"tokens":[5000,4000,3000,2000],"delegation":[4000,3000,2000,1000],"delegatorTokens":10000000000000,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":4,"action":{"kind":"Delegate","val":0,"amt":4177},"partialState":{"h":1,"t":6,"tokens":[9177,4000,3000,2000],"delegation":[8177,3000,2000,1000],"delegatorTokens":9999999995823}},{"ix":5,"action":{"kind":"ConsumerSlash","val":3,"infractionHeight":0,"isDowntime":true},"partialState":{"h":1,"t":6,"outstandingDowntime":[false,false,false,true]}},{"ix":6,"action":{"kind":"Delegate","val":2,"amt":3604},"partialState":{"h":1,"t":6,"tokens":[9177,4000,6604,2000],"delegation":[8177,3000,5604,1000],"delegatorTokens":9999999992219}},{"ix":7,"action":{"kind":"Undelegate","val":2,"amt":1837},"partialState":{"h":1,"t":6,"tokens":[9177,4000,4767,2000],"delegation":[8177,3000,3767,1000],"delegatorTokens":9999999992219}},{"ix":8,"action":{"kind":"Delegate","val":0,"amt":2860},"partialState":{"h":1,"t":6,"tokens":[12037,4000,4767,2000],"delegation":[11037,3000,3767,1000],"delegatorTokens":9999999989359}},{"ix":9,"action":{"kind":"Deliver","chain":"provider","numPackets":6},"partialState":{"h":1,"t":6,"tokens":[12037,4000,4767,2000],"delegation":[11037,3000,3767,1000],"delegatorTokens":9999999989359,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":10,"action":{"kind":"Undelegate","val":3,"amt":3737},"partialState":{"h":1,"t":6,"tokens":[12037,4000,4767,2000],"delegation":[11037,3000,3767,1000],"delegatorTokens":9999999989359}},{"ix":11,"action":{"kind":"Deliver","chain":"provider","numPackets":3},"partialState":{"h":1,"t":6,"tokens":[12037,4000,4767,2000],"delegation":[11037,3000,3767,1000],"delegatorTokens":9999999989359,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":12,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":13,"action":{"kind":"ConsumerSlash","val":3,"infractionHeight":0,"isDowntime":false},"partialState":{"h":1,"t":6,"outstandingDowntime":[false,false,false,true]}},{"ix":14,"action":{"kind":"Undelegate","val":0,"amt":1346},"partialState":{"h":1,"t":6,"tokens":[10691,4000,4767,2000],"delegation":[9691,3000,3767,1000],"delegatorTokens":9999999989359}},{"ix":15,"action":{"kind":"Undelegate","val":2,"amt":3540},"partialState":{"h":1,"t":6,"tokens":[10691,4000,1227,2000],"delegation":[9691,3000,227,1000],"delegatorTokens":9999999989359}},{"ix":16,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":2,"t":12,"tokens":[10691,4000,1227,2000],"delegation":[9691,3000,227,1000],"delegatorTokens":9999999989359,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":17,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":18,"action":{"kind":"Deliver","chain":"provider","numPackets":2},"partialState":{"h":2,"t":12,"tokens":[10691,4000,1227,2000],"delegation":[9691,3000,227,1000],"delegatorTokens":9999999989359,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":19,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":3,"t":18,"tokens":[10691,4000,1227,2000],"delegation":[9691,3000,227,1000],"delegatorTokens":9999999989359,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":20,"action":{"kind":"Deliver","chain":"consumer","numPackets":1},"partialState":{"h":1,"t":6,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,false,false,true]}},{"ix":21,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":22,"action":{"kind":"ConsumerSlash","val":3,"infractionHeight":0,"isDowntime":true},"partialState":{"h":1,"t":6,"outstandingDowntime":[false,false,false,true]}},{"ix":23,"action":{"kind":"Delegate","val":1,"amt":4475},"partialState":{"h":3,"t":18,"tokens":[10691,8475,1227,2000],"delegation":[9691,7475,227,1000],"delegatorTokens":9999999984884}},{"ix":24,"action":{"kind":"Delegate","val":0,"amt":2330},"partialState":{"h":3,"t":18,"tokens":[13021,8475,1227,2000],"delegation":[12021,7475,227,1000],"delegatorTokens":9999999982554}},{"ix":25,"action":{"kind":"ConsumerSlash","val":1,"infractionHeight":0,"isDowntime":true},"partialState":{"h":1,"t":6,"outstandingDowntime":[false,true,false,true]}},{"ix":26,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":4,"t":24,"tokens":[13021,8475,1227,2000],"delegation":[12021,7475,227,1000],"delegatorTokens":9999999982554,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":27,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":28,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":5,"t":30,"tokens":[13021,8475,1227,2000],"delegation":[12021,7475,227,1000],"delegatorTokens":9999999982554,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":29,"action":{"kind":"ConsumerSlash","val":2,"infractionHeight":0,"isDowntime":true},"partialState":{"h":1,"t":6,"outstandingDowntime":[false,true,true,true]}},{"ix":30,"action":{"kind":"Delegate","val":2,"amt":3202},"partialState":{"h":5,"t":30,"tokens":[13021,8475,4429,2000],"delegation":[12021,7475,3429,1000],"delegatorTokens":9999999979352}},{"ix":31,"action":{"kind":"Undelegate","val":1,"amt":3291},"partialState":{"h":5,"t":30,"tokens":[13021,5184,4429,2000],"delegation":[12021,4184,3429,1000],"delegatorTokens":9999999979352}},{"ix":32,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":2,"t":12,"consumerPower":[10691,4000,null,null],"outstandingDowntime":[false,true,true,true]}},{"ix":33,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":6,"t":36,"tokens":[13021,5184,4429,2000],"delegation":[12021,4184,3429,1000],"delegatorTokens":9999999979352,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":34,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":35,"action":{"kind":"Undelegate","val":0,"amt":2793},"partialState":{"h":6,"t":36,"tokens":[10228,5184,4429,2000],"delegation":[9228,4184,3429,1000],"delegatorTokens":9999999979352}},{"ix":36,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":3,"t":18,"consumerPower":[10691,4000,null,null],"outstandingDowntime":[false,true,true,true]}},{"ix":37,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":7,"t":42,"tokens":[10228,5184,4429,2000],"delegation":[9228,4184,3429,1000],"delegatorTokens":9999999979352,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":38,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":39,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":40,"action":{"kind":"Deliver","chain":"consumer","numPackets":2},"partialState":{"h":3,"t":18,"consumerPower":[10691,4000,null,null],"outstandingDowntime":[false,true,true,true]}},{"ix":41,"action":{"kind":"Deliver","chain":"consumer","numPackets":6},"partialState":{"h":3,"t":18,"consumerPower":[10691,4000,null,null],"outstandingDowntime":[false,true,true,true]}},{"ix":42,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":8,"t":48,"tokens":[10228,5184,4429,2000],"delegation":[9228,4184,3429,1000],"delegatorTokens":9999999979352,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":43,"action":{"kind":"Deliver","chain":"provider","numPackets":4},"partialState":{"h":8,"t":48,"tokens":[10228,5184,4429,2000],"delegation":[9228,4184,3429,1000],"delegatorTokens":9999999979352,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":44,"action":{"kind":"Delegate","val":0,"amt":1111},"partialState":{"h":8,"t":48,"tokens":[11339,5184,4429,2000],"delegation":[10339,4184,3429,1000],"delegatorTokens":9999999978241}},{"ix":45,"action":{"kind":"Deliver","chain":"provider","numPackets":2},"partialState":{"h":8,"t":48,"tokens":[11339,5184,4429,2000],"delegation":[10339,4184,3429,1000],"delegatorTokens":9999999978241,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":46,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":4,"t":24,"consumerPower":[13021,5184,null,null],"outstandingDowntime":[false,true,true,true]}},{"ix":47,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":48,"action":{"kind":"Delegate","val":1,"amt":4997},"partialState":{"h":8,"t":48,"tokens":[11339,10181,4429,2000],"delegation":[10339,9181,3429,1000],"delegatorTokens":9999999973244}},{"ix":49,"action":{"kind":"Delegate","val":3,"amt":3980},"partialState":{"h":8,"t":48,"tokens":[11339,10181,4429,5980],"delegation":[10339,9181,3429,4980],"delegatorTokens":9999999969264}},{"ix":50,"action":{"kind":"Delegate","val":1,"amt":4902},"partialState":{"h":8,"t":48,"tokens":[11339,15083,4429,5980],"delegation":[10339,14083,3429,4980],"delegatorTokens":9999999964362}},{"ix":51,"action":{"kind":"Delegate","val":0,"amt":1997},"partialState":{"h":8,"t":48,"tokens":[13336,15083,4429,5980],"delegation":[12336,14083,3429,4980],"delegatorTokens":9999999962365}},{"ix":52,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":9,"t":54,"tokens":[13336,15083,4429,5980],"delegation":[12336,14083,3429,4980],"delegatorTokens":9999999962365,"jailed":[null,1000000000000047,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":53,"action":{"kind":"Deliver","chain":"provider","numPackets":4},"partialState":{"h":9,"t":54,"tokens":[13336,15083,4429,5980],"delegation":[12336,14083,3429,4980],"delegatorTokens":9999999962365,"jailed":[null,1000000000000047,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":54,"action":{"kind":"Undelegate","val":3,"amt":4784},"partialState":{"h":9,"t":54,"tokens":[13336,15083,4429,1196],"delegation":[12336,14083,3429,196],"delegatorTokens":9999999962365}},{"ix":55,"action":{"kind":"Deliver","chain":"provider","numPackets":6},"partialState":{"h":9,"t":54,"tokens":[13336,15083,4429,1196],"delegation":[12336,14083,3429,196],"delegatorTokens":9999999962365,"jailed":[null,1000000000000047,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":56,"action":{"kind":"Undelegate","val":2,"amt":1613},"partialState":{"h":9,"t":54,"tokens":[13336,15083,2816,1196],"delegation":[12336,14083,1816,196],"delegatorTokens":9999999962365}},{"ix":57,"action":{"kind":"Undelegate","val":2,"amt":2577},"partialState":{"h":9,"t":54,"tokens":[13336,15083,2816,1196],"delegation":[12336,14083,1816,196],"delegatorTokens":9999999962365}},{"ix":58,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":59,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":10,"t":60,"tokens":[13336,15083,2816,1196],"delegation":[12336,14083,1816,196],"delegatorTokens":9999999962365,"jailed":[null,1000000000000047,null,null],"status":["bonded","unbonding","bonded","unbonded"]}},{"ix":60,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":5,"t":30,"consumerPower":[13021,5184,null,null],"outstandingDowntime":[false,true,true,true]}},{"ix":61,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":11,"t":66,"tokens":[13336,15083,2816,1196],"delegation":[12336,14083,1816,196],"delegatorTokens":9999999962365,"jailed":[null,1000000000000047,null,null],"status":["bonded","unbonding","bonded","unbonded"]}},{"ix":62,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":6,"t":36,"consumerPower":[13021,5184,null,null],"outstandingDowntime":[false,true,true,true]}},{"ix":63,"action":{"kind":"Delegate","val":1,"amt":2346},"partialState":{"h":11,"t":66,"tokens":[13336,17429,2816,1196],"delegation":[12336,16429,1816,196],"delegatorTokens":9999999960019}},{"ix":64,"action":{"kind":"Deliver","chain":"consumer","numPackets":5},"partialState":{"h":6,"t":36,"consumerPower":[13021,5184,null,null],"outstandingDowntime":[false,false,true,true]}},{"ix":65,"action":{"kind":"Undelegate","val":3,"amt":4821},"partialState":{"h":11,"t":66,"tokens":[13336,17429,2816,1196],"delegation":[12336,16429,1816,196],"delegatorTokens":9999999960019}},{"ix":66,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":7,"t":42,"consumerPower":[13336,null,2816,null],"outstandingDowntime":[false,false,true,true]}},{"ix":67,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":68,"action":{"kind":"Undelegate","val":1,"amt":3276},"partialState":{"h":11,"t":66,"tokens":[13336,14153,2816,1196],"delegation":[12336,13153,1816,196],"delegatorTokens":9999999960019}},{"ix":69,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":8,"t":48,"consumerPower":[13336,null,2816,null],"outstandingDowntime":[false,false,true,true]}},{"ix":70,"action":{"kind":"Undelegate","val":3,"amt":3930},"partialState":{"h":11,"t":66,"tokens":[13336,14153,2816,1196],"delegation":[12336,13153,1816,196],"delegatorTokens":9999999960019}},{"ix":71,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":9,"t":54,"consumerPower":[13336,null,2816,null],"outstandingDowntime":[false,false,true,true]}},{"ix":72,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":73,"action":{"kind":"Undelegate","val":3,"amt":2742},"partialState":{"h":11,"t":66,"tokens":[13336,14153,2816,1196],"delegation":[12336,13153,1816,196],"delegatorTokens":9999999960019}},{"ix":74,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":75,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":12,"t":72,"tokens":[13336,14153,2816,1196],"delegation":[12336,13153,1816,196],"delegatorTokens":9999999960019,"jailed":[null,1000000000000047,null,null],"status":["bonded","unbonding","bonded","unbonded"]}},{"ix":76,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":77,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":78,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":79,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":80,"action":{"kind":"Undelegate","val":0,"amt":4423},"partialState":{"h":12,"t":72,"tokens":[8913,14153,2816,1196],"delegation":[7913,13153,1816,196],"delegatorTokens":9999999960019}},{"ix":81,"action":{"kind":"Deliver","chain":"provider","numPackets":4},"partialState":{"h":12,"t":72,"tokens":[8913,14153,2816,1196],"delegation":[7913,13153,1816,196],"delegatorTokens":9999999960019,"jailed":[null,1000000000000047,null,null],"status":["bonded","unbonding","bonded","unbonded"]}},{"ix":82,"action":{"kind":"Deliver","chain":"provider","numPackets":1},"partialState":{"h":12,"t":72,"tokens":[8913,14153,2816,1196],"delegation":[7913,13153,1816,196],"delegatorTokens":9999999960019,"jailed":[null,1000000000000047,null,null],"status":["bonded","unbonding","bonded","unbonded"]}},{"ix":83,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":84,"action":{"kind":"Delegate","val":3,"amt":1647},"partialState":{"h":12,"t":72,"tokens":[8913,14153,2816,2843],"delegation":[7913,13153,1816,1843],"delegatorTokens":9999999958372}},{"ix":85,"action":{"kind":"Delegate","val":1,"amt":4898},"partialState":{"h":12,"t":72,"tokens":[8913,19051,2816,2843],"delegation":[7913,18051,1816,1843],"delegatorTokens":9999999953474}},{"ix":86,"action":{"kind":"Deliver","chain":"provider","numPackets":3},"partialState":{"h":12,"t":72,"tokens":[8913,19051,2816,2843],"delegation":[7913,18051,1816,1843],"delegatorTokens":9999999953474,"jailed":[null,1000000000000047,null,null],"status":["bonded","unbonding","bonded","unbonded"]}},{"ix":87,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":13,"t":78,"tokens":[8913,19051,2816,2843],"delegation":[7913,18051,1816,1843],"delegatorTokens":9999999953474,"jailed":[null,1000000000000047,null,null],"status":["bonded","unbonding","unbonding","bonded"]}},{"ix":88,"action":{"kind":"Undelegate","val":2,"amt":2240},"partialState":{"h":13,"t":78,"tokens":[8913,19051,2816,2843],"delegation":[7913,18051,1816,1843],"delegatorTokens":9999999953474}},{"ix":89,"action":{"kind":"Delegate","val":0,"amt":2544},"partialState":{"h":13,"t":78,"tokens":[11457,19051,2816,2843],"delegation":[10457,18051,1816,1843],"delegatorTokens":9999999950930}},{"ix":90,"action":{"kind":"Deliver","chain":"provider","numPackets":2},"partialState":{"h":13,"t":78,"tokens":[11457,19051,2816,2843],"delegation":[10457,18051,1816,1843],"delegatorTokens":9999999950930,"jailed":[null,1000000000000047,null,null],"status":["bonded","unbonding","unbonding","bonded"]}},{"ix":91,"action":{"kind":"Undelegate","val":0,"amt":3086},"partialState":{"h":13,"t":78,"tokens":[8371,19051,2816,2843],"delegation":[7371,18051,1816,1843],"delegatorTokens":9999999950930}},{"ix":92,"action":{"kind":"Delegate","val":3,"amt":4573},"partialState":{"h":13,"t":78,"tokens":[8371,19051,2816,7416],"delegation":[7371,18051,1816,6416],"delegatorTokens":9999999946357}},{"ix":93,"action":{"kind":"Deliver","chain":"provider","numPackets":6},"partialState":{"h":13,"t":78,"tokens":[8371,19051,2816,7416],"delegation":[7371,18051,1816,6416],"delegatorTokens":9999999946357,"jailed":[null,1000000000000047,null,null],"status":["bonded","unbonding","unbonding","bonded"]}},{"ix":94,"action":{"kind":"Deliver","chain":"consumer","numPackets":5},"partialState":{"h":9,"t":54,"consumerPower":[13336,null,2816,null],"outstandingDowntime":[false,false,true,true]}},{"ix":95,"action":{"kind":"Undelegate","val":0,"amt":2053},"partialState":{"h":13,"t":78,"tokens":[6318,19051,2816,7416],"delegation":[5318,18051,1816,6416],"delegatorTokens":9999999946357}},{"ix":96,"action":{"kind":"Undelegate","val":2,"amt":2172},"partialState":{"h":13,"t":78,"tokens":[6318,19051,2816,7416],"delegation":[5318,18051,1816,6416],"delegatorTokens":9999999946357}},{"ix":97,"action":{"kind":"Undelegate","val":0,"amt":3585},"partialState":{"h":13,"t":78,"tokens":[2733,19051,2816,7416],"delegation":[1733,18051,1816,6416],"delegatorTokens":9999999946357}},{"ix":98,"action":{"kind":"Delegate","val":0,"amt":1553},"partialState":{"h":13,"t":78,"tokens":[4286,19051,2816,7416],"delegation":[3286,18051,1816,6416],"delegatorTokens":9999999944804}},{"ix":99,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":10,"t":60,"consumerPower":[13336,null,2816,null],"outstandingDowntime":[false,false,true,true]}},{"ix":100,"action":{"kind":"Delegate","val":3,"amt":4161},"partialState":{"h":13,"t":78,"tokens":[4286,19051,2816,11577],"delegation":[3286,18051,1816,10577],"delegatorTokens":9999999940643}},{"ix":101,"action":{"kind":"Delegate","val":0,"amt":1459},"partialState":{"h":13,"t":78,"tokens":[5745,19051,2816,11577],"delegation":[4745,18051,1816,10577],"delegatorTokens":9999999939184}},{"ix":102,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":14,"t":84,"tokens":[5745,19051,2816,11577],"delegation":[4745,18051,1816,10577],"delegatorTokens":9999999939184,"jailed":[null,1000000000000047,null,null],"status":["bonded","unbonding","unbonding","bonded"]}},{"ix":103,"action":{"kind":"Undelegate","val":0,"amt":2207},"partialState":{"h":14,"t":84,"tokens":[3538,19051,2816,11577],"delegation":[2538,18051,1816,10577],"delegatorTokens":9999999939184}},{"ix":104,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":15,"t":90,"tokens":[3538,19051,2816,11577],"delegation":[2538,18051,1816,10577],"delegatorTokens":9999999939184,"jailed":[null,1000000000000047,null,null],"status":["bonded","unbonding","unbonding","bonded"]}},{"ix":105,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":16,"t":96,"tokens":[3538,19051,2816,11577],"delegation":[2538,18051,1816,10577],"delegatorTokens":9999999939184,"jailed":[null,1000000000000047,null,null],"status":["bonded","unbonding","unbonding","bonded"]}},{"ix":106,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":107,"action":{"kind":"Deliver","chain":"provider","numPackets":5},"partialState":{"h":16,"t":96,"tokens":[3538,19051,2816,11577],"delegation":[2538,18051,1816,10577],"delegatorTokens":9999999939184,"jailed":[null,1000000000000047,null,null],"status":["bonded","unbonding","unbonding","bonded"]}},{"ix":108,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":109,"action":{"kind":"Deliver","chain":"provider","numPackets":4},"partialState":{"h":16,"t":96,"tokens":[3538,19051,2816,11577],"delegation":[2538,18051,1816,10577],"delegatorTokens":9999999939184,"jailed":[null,1000000000000047,null,null],"status":["bonded","unbonding","unbonding","bonded"]}},{"ix":110,"action":{"kind":"Undelegate","val":3,"amt":2879},"partialState":{"h":16,"t":96,"tokens":[3538,19051,2816,8698],"delegation":[2538,18051,1816,7698],"delegatorTokens":9999999939184}},{"ix":111,"action":{"kind":"Delegate","val":0,"amt":4450},"partialState":{"h":16,"t":96,"tokens":[7988,19051,2816,8698],"delegation":[6988,18051,1816,7698],"delegatorTokens":9999999934734}},{"ix":112,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":11,"t":66,"consumerPower":[13336,null,2816,null],"outstandingDowntime":[false,false,true,true]}},{"ix":113,"action":{"kind":"Undelegate","val":1,"amt":4157},"partialState":{"h":16,"t":96,"tokens":[7988,14894,2816,8698],"delegation":[6988,13894,1816,7698],"delegatorTokens":9999999934734}},{"ix":114,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":17,"t":102,"tokens":[7988,14894,2816,8698],"delegation":[6988,13894,1816,7698],"delegatorTokens":9999999934734,"jailed":[null,1000000000000047,null,null],"status":["bonded","unbonding","unbonding","bonded"]}},{"ix":115,"action":{"kind":"Deliver","chain":"consumer","numPackets":3},"partialState":{"h":11,"t":66,"consumerPower":[13336,null,2816,null],"outstandingDowntime":[false,false,true,true]}},{"ix":116,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":12,"t":72,"consumerPower":[3538,null,null,11577],"outstandingDowntime":[false,false,true,true]}},{"ix":117,"action":{"kind":"Undelegate","val":0,"amt":4909},"partialState":{"h":17,"t":102,"tokens":[3079,14894,2816,8698],"delegation":[2079,13894,1816,7698],"delegatorTokens":9999999934734}},{"ix":118,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":119,"action":{"kind":"Deliver","chain":"provider","numPackets":4},"partialState":{"h":17,"t":102,"tokens":[3079,14894,2816,8698],"delegation":[2079,13894,1816,7698],"delegatorTokens":9999999934734,"jailed":[null,1000000000000047,null,null],"status":["bonded","unbonding","unbonding","bonded"]}},{"ix":120,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":121,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":122,"action":{"kind":"Undelegate","val":2,"amt":4739},"partialState":{"h":17,"t":102,"tokens":[3079,14894,2816,8698],"delegation":[2079,13894,1816,7698],"delegatorTokens":9999999934734}},{"ix":123,"action":{"kind":"Delegate","val":1,"amt":1428},"partialState":{"h":17,"t":102,"tokens":[3079,16322,2816,8698],"delegation":[2079,15322,1816,7698],"delegatorTokens":9999999933306}},{"ix":124,"action":{"kind":"Deliver","chain":"consumer","numPackets":6},"partialState":{"h":12,"t":72,"consumerPower":[3538,null,null,11577],"outstandingDowntime":[false,false,true,true]}},{"ix":125,"action":{"kind":"Deliver","chain":"consumer","numPackets":1},"partialState":{"h":12,"t":72,"consumerPower":[3538,null,null,11577],"outstandingDowntime":[false,false,true,true]}},{"ix":126,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":127,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":128,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":13,"t":78,"consumerPower":[3538,null,null,11577],"outstandingDowntime":[false,false,true,true]}},{"ix":129,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":130,"action":{"kind":"Undelegate","val":2,"amt":2762},"partialState":{"h":17,"t":102,"tokens":[3079,16322,2816,8698],"delegation":[2079,15322,1816,7698],"delegatorTokens":9999999933306}},{"ix":131,"action":{"kind":"Deliver","chain":"provider","numPackets":6},"partialState":{"h":17,"t":102,"tokens":[3079,16322,2816,8698],"delegation":[2079,15322,1816,7698],"delegatorTokens":9999999933306,"jailed":[null,1000000000000047,null,null],"status":["bonded","unbonding","unbonding","bonded"]}},{"ix":132,"action":{"kind":"Undelegate","val":0,"amt":3922},"partialState":{"h":17,"t":102,"tokens":[3079,16322,2816,8698],"delegation":[2079,15322,1816,7698],"delegatorTokens":9999999933306}},{"ix":133,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":134,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":14,"t":84,"consumerPower":[3538,null,null,11577],"outstandingDowntime":[false,false,true,true]}},{"ix":135,"action":{"kind":"Delegate","val":1,"amt":3524},"partialState":{"h":17,"t":102,"tokens":[3079,19846,2816,8698],"delegation":[2079,18846,1816,7698],"delegatorTokens":9999999929782}},{"ix":136,"action":{"kind":"Delegate","val":2,"amt":4354},"partialState":{"h":17,"t":102,"tokens":[3079,19846,7170,8698],"delegation":[2079,18846,6170,7698],"delegatorTokens":9999999925428}},{"ix":137,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":15,"t":90,"consumerPower":[3538,null,null,11577],"outstandingDowntime":[false,false,true,true]}},{"ix":138,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":139,"action":{"kind":"Undelegate","val":3,"amt":3120},"partialState":{"h":17,"t":102,"tokens":[3079,19846,7170,5578],"delegation":[2079,18846,6170,4578],"delegatorTokens":9999999925428}},{"ix":140,"action":{"kind":"Undelegate","val":1,"amt":2514},"partialState":{"h":17,"t":102,"tokens":[3079,17332,7170,5578],"delegation":[2079,16332,6170,4578],"delegatorTokens":9999999925428}},{"ix":141,"action":{"kind":"Deliver","chain":"provider","numPackets":2},"partialState":{"h":17,"t":102,"tokens":[3079,17332,7170,5578],"delegation":[2079,16332,6170,4578],"delegatorTokens":9999999925428,"jailed":[null,1000000000000047,null,null],"status":["bonded","unbonding","unbonding","bonded"]}},{"ix":142,"action":{"kind":"Undelegate","val":0,"amt":2835},"partialState":{"h":17,"t":102,"tokens":[3079,17332,7170,5578],"delegation":[2079,16332,6170,4578],"delegatorTokens":9999999925428}},{"ix":143,"action":{"kind":"Delegate","val":2,"amt":3897},"partialState":{"h":17,"t":102,"tokens":[3079,17332,11067,5578],"delegation":[2079,16332,10067,4578],"delegatorTokens":9999999921531}},{"ix":144,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":18,"t":108,"tokens":[3079,17332,11067,5578],"delegation":[2079,16332,10067,4578],"delegatorTokens":9999999931545,"jailed":[null,1000000000000047,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":145,"action":{"kind":"Delegate","val":2,"amt":1419},"partialState":{"h":18,"t":108,"tokens":[3079,17332,12486,5578],"delegation":[2079,16332,11486,4578],"delegatorTokens":9999999930126}},{"ix":146,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":16,"t":96,"consumerPower":[3538,null,null,11577],"outstandingDowntime":[false,false,true,true]}},{"ix":147,"action":{"kind":"Deliver","chain":"provider","numPackets":5},"partialState":{"h":18,"t":108,"tokens":[3079,17332,12486,5578],"delegation":[2079,16332,11486,4578],"delegatorTokens":9999999930126,"jailed":[null,1000000000000047,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":148,"action":{"kind":"Undelegate","val":0,"amt":3505},"partialState":{"h":18,"t":108,"tokens":[3079,17332,12486,5578],"delegation":[2079,16332,11486,4578],"delegatorTokens":9999999930126}},{"ix":149,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":19,"t":114,"tokens":[3079,17332,12486,5578],"delegation":[2079,16332,11486,4578],"delegatorTokens":9999999930126,"jailed":[null,1000000000000047,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":150,"action":{"kind":"Deliver","chain":"provider","numPackets":6},"partialState":{"h":19,"t":114,"tokens":[3079,17332,12486,5578],"delegation":[2079,16332,11486,4578],"delegatorTokens":9999999930126,"jailed":[null,1000000000000047,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":151,"action":{"kind":"Undelegate","val":1,"amt":1498},"partialState":{"h":19,"t":114,"tokens":[3079,15834,12486,5578],"delegation":[2079,14834,11486,4578],"delegatorTokens":9999999930126}},{"ix":152,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":153,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":17,"t":102,"consumerPower":[3538,null,null,11577],"outstandingDowntime":[false,false,true,true]}},{"ix":154,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":20,"t":120,"tokens":[3079,15834,12486,5578],"delegation":[2079,14834,11486,4578],"delegatorTokens":9999999930126,"jailed":[null,1000000000000047,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":155,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":156,"action":{"kind":"Deliver","chain":"provider","numPackets":5},"partialState":{"h":20,"t":120,"tokens":[3079,15834,12486,5578],"delegation":[2079,14834,11486,4578],"delegatorTokens":9999999930126,"jailed":[null,1000000000000047,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":157,"action":{"kind":"Delegate","val":3,"amt":3292},"partialState":{"h":20,"t":120,"tokens":[3079,15834,12486,8870],"delegation":[2079,14834,11486,7870],"delegatorTokens":9999999926834}},{"ix":158,"action":{"kind":"Delegate","val":0,"amt":3007},"partialState":{"h":20,"t":120,"tokens":[6086,15834,12486,8870],"delegation":[5086,14834,11486,7870],"delegatorTokens":9999999923827}},{"ix":159,"action":{"kind":"Undelegate","val":2,"amt":2222},"partialState":{"h":20,"t":120,"tokens":[6086,15834,10264,8870],"delegation":[5086,14834,9264,7870],"delegatorTokens":9999999923827}},{"ix":160,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":161,"action":{"kind":"Undelegate","val":1,"amt":2892},"partialState":{"h":20,"t":120,"tokens":[6086,12942,10264,8870],"delegation":[5086,11942,9264,7870],"delegatorTokens":9999999923827}},{"ix":162,"action":{"kind":"Deliver","chain":"consumer","numPackets":2},"partialState":{"h":17,"t":102,"consumerPower":[3538,null,null,11577],"outstandingDowntime":[false,false,true,true]}},{"ix":163,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":21,"t":126,"tokens":[6086,12942,10264,8870],"delegation":[5086,11942,9264,7870],"delegatorTokens":9999999926620,"jailed":[null,1000000000000047,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":164,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":18,"t":108,"consumerPower":[null,null,11067,5578],"outstandingDowntime":[false,false,true,true]}},{"ix":165,"action":{"kind":"Undelegate","val":3,"amt":1089},"partialState":{"h":21,"t":126,"tokens":[6086,12942,10264,7781],"delegation":[5086,11942,9264,6781],"delegatorTokens":9999999926620}},{"ix":166,"action":{"kind":"Delegate","val":0,"amt":4131},"partialState":{"h":21,"t":126,"tokens":[10217,12942,10264,7781],"delegation":[9217,11942,9264,6781],"delegatorTokens":9999999922489}},{"ix":167,"action":{"kind":"Undelegate","val":3,"amt":1776},"partialState":{"h":21,"t":126,"tokens":[10217,12942,10264,6005],"delegation":[9217,11942,9264,5005],"delegatorTokens":9999999922489}},{"ix":168,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":169,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":170,"action":{"kind":"Delegate","val":3,"amt":2413},"partialState":{"h":21,"t":126,"tokens":[10217,12942,10264,8418],"delegation":[9217,11942,9264,7418],"delegatorTokens":9999999920076}},{"ix":171,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":22,"t":132,"tokens":[10217,12942,10264,8418],"delegation":[9217,11942,9264,7418],"delegatorTokens":9999999926473,"jailed":[null,1000000000000047,null,null],"status":["bonded","unbonded","bonded","unbonding"]}},{"ix":172,"action":{"kind":"Delegate","val":2,"amt":3183},"partialState":{"h":22,"t":132,"tokens":[10217,12942,13447,8418],"delegation":[9217,11942,12447,7418],"delegatorTokens":9999999923290}},{"ix":173,"action":{"kind":"Deliver","chain":"provider","numPackets":3},"partialState":{"h":22,"t":132,"tokens":[10217,12942,13447,8418],"delegation":[9217,11942,12447,7418],"delegatorTokens":9999999923290,"jailed":[null,1000000000000047,null,null],"status":["bonded","unbonded","bonded","unbonding"]}},{"ix":174,"action":{"kind":"Undelegate","val":0,"amt":3427},"partialState":{"h":22,"t":132,"tokens":[6790,12942,13447,8418],"delegation":[5790,11942,12447,7418],"delegatorTokens":9999999923290}},{"ix":175,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":23,"t":138,"tokens":[6790,12942,13447,8418],"delegation":[5790,11942,12447,7418],"delegatorTokens":9999999923290,"jailed":[null,1000000000000047,null,null],"status":["unbonding","unbonded","bonded","bonded"]}},{"ix":176,"action":{"kind":"Delegate","val":1,"amt":4047},"partialState":{"h":23,"t":138,"tokens":[6790,16989,13447,8418],"delegation":[5790,15989,12447,7418],"delegatorTokens":9999999919243}},{"ix":177,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":19,"t":114,"consumerPower":[null,null,11067,5578],"outstandingDowntime":[false,false,true,true]}},{"ix":178,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":179,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":180,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":181,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":182,"action":{"kind":"Undelegate","val":0,"amt":2032},"partialState":{"h":23,"t":138,"tokens":[4758,16989,13447,8418],"delegation":[3758,15989,12447,7418],"delegatorTokens":9999999919243}},{"ix":183,"action":{"kind":"Delegate","val":3,"amt":2773},"partialState":{"h":23,"t":138,"tokens":[4758,16989,13447,11191],"delegation":[3758,15989,12447,10191],"delegatorTokens":9999999916470}},{"ix":184,"action":{"kind":"Delegate","val":0,"amt":3615},"partialState":{"h":23,"t":138,"tokens":[8373,16989,13447,11191],"delegation":[7373,15989,12447,10191],"delegatorTokens":9999999912855}},{"ix":185,"action":{"kind":"Delegate","val":0,"amt":3618},"partialState":{"h":23,"t":138,"tokens":[11991,16989,13447,11191],"delegation":[10991,15989,12447,10191],"delegatorTokens":9999999909237}},{"ix":186,"action":{"kind":"Delegate","val":0,"amt":4746},"partialState":{"h":23,"t":138,"tokens":[16737,16989,13447,11191],"delegation":[15737,15989,12447,10191],"delegatorTokens":9999999904491}},{"ix":187,"action":{"kind":"Delegate","val":1,"amt":3332},"partialState":{"h":23,"t":138,"tokens":[16737,20321,13447,11191],"delegation":[15737,19321,12447,10191],"delegatorTokens":9999999901159}},{"ix":188,"action":{"kind":"Deliver","chain":"consumer","numPackets":2},"partialState":{"h":19,"t":114,"consumerPower":[null,null,11067,5578],"outstandingDowntime":[false,false,true,true]}},{"ix":189,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":190,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":24,"t":144,"tokens":[16737,20321,13447,11191],"delegation":[15737,19321,12447,10191],"delegatorTokens":9999999901159,"jailed":[null,1000000000000047,null,null],"status":["bonded","unbonded","bonded","unbonding"]}},{"ix":191,"action":{"kind":"Deliver","chain":"consumer","numPackets":4},"partialState":{"h":19,"t":114,"consumerPower":[null,null,11067,5578],"outstandingDowntime":[false,false,true,true]}},{"ix":192,"action":{"kind":"Undelegate","val":0,"amt":2225},"partialState":{"h":24,"t":144,"tokens":[14512,20321,13447,11191],"delegation":[13512,19321,12447,10191],"delegatorTokens":9999999901159}},{"ix":193,"action":{"kind":"Delegate","val":2,"amt":4677},"partialState":{"h":24,"t":144,"tokens":[14512,20321,18124,11191],"delegation":[13512,19321,17124,10191],"delegatorTokens":9999999896482}},{"ix":194,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":195,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":25,"t":150,"tokens":[14512,20321,18124,11191],"delegation":[13512,19321,17124,10191],"delegatorTokens":9999999896482,"jailed":[null,1000000000000047,null,null],"status":["bonded","unbonded","bonded","unbonding"]}},{"ix":196,"action":{"kind":"Undelegate","val":1,"amt":1008},"partialState":{"h":25,"t":150,"tokens":[14512,19313,18124,11191],"delegation":[13512,18313,17124,10191],"delegatorTokens":9999999896482}},{"ix":197,"action":{"kind":"Deliver","chain":"provider","numPackets":5},"partialState":{"h":25,"t":150,"tokens":[14512,19313,18124,11191],"delegation":[13512,18313,17124,10191],"delegatorTokens":9999999896482,"jailed":[null,1000000000000047,null,null],"status":["bonded","unbonded","bonded","unbonding"]}},{"ix":198,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":26,"t":156,"tokens":[14512,19313,18124,11191],"delegation":[13512,18313,17124,10191],"delegatorTokens":9999999896482,"jailed":[null,1000000000000047,null,null],"status":["bonded","unbonded","bonded","unbonding"]}},{"ix":199,"action":{"kind":"Undelegate","val":1,"amt":3165},"partialState":{"h":26,"t":156,"tokens":[14512,16148,18124,11191],"delegation":[13512,15148,17124,10191],"delegatorTokens":9999999896482}}],"events":["insufficient_shares","insufficient_shares","send_double_sign_slash_request","send_downtime_slash_request","insufficient_shares","send_double_sign_slash_request","send_vsc_without_downtime_ack","downtime_slash_request_outstanding","send_downtime_slash_request","send_vsc_without_downtime_ack","send_downtime_slash_request","consumer_update_val","send_vsc_without_downtime_ack","send_vsc_without_downtime_ack","receive_double_sign_slash_request","receive_double_sign_slash_request","consumer_update_val","consumer_update_val","receive_slash_request_unbonded","receive_downtime_slash_request","jail","receive_slash_request_unbonded","send_vsc_with_downtime_ack","insufficient_shares","send_vsc_without_downtime_ack","receive_downtime_slash_ack","insufficient_shares","consumer_update_val","consumer_del_val","consumer_add_val","insufficient_shares","insufficient_shares","send_vsc_not_because_change","send_vsc_without_downtime_ack","send_vsc_without_downtime_ack","insufficient_shares","insufficient_shares","some_undels_expired_but_not_completed","send_vsc_without_downtime_ack","send_vsc_without_downtime_ack","consumer_send_maturation","send_vsc_without_downtime_ack","consumer_update_val","consumer_del_val","consumer_add_val","insufficient_shares","consumer_send_maturation","consumer_send_maturation","insufficient_shares","insufficient_shares","insufficient_shares","more_than_one_third_val_power_change","rebond_unval","some_undels_expired_but_not_completed","complete_undel_immediate","complete_undel_immediate","complete_undel_immediate","complete_undel_immediate","send_vsc_without_downtime_ack","consumer_send_maturation","consumer_send_maturation","consumer_send_maturation","insufficient_shares","some_undels_expired_but_not_completed","send_vsc_without_downtime_ack","send_vsc_not_because_change","send_vsc_without_downtime_ack","complete_undel_immediate","set_undel_hold_false","set_undel_hold_false","set_unval_hold_false","send_vsc_without_downtime_ack","consumer_del_val","consumer_update_val","consumer_add_val","more_than_one_third_val_power_change","rebond_unval","complete_unval_in_endblock","complete_undel_in_endblock","send_vsc_without_downtime_ack","more_than_one_third_val_power_change","rebond_unval","send_vsc_without_downtime_ack","consumer_send_maturation","more_than_one_third_val_power_change","rebond_unval","some_undels_expired_but_not_completed","send_vsc_without_downtime_ack","some_undels_expired_but_not_completed","send_vsc_without_downtime_ack","some_undels_expired_but_not_completed","send_vsc_not_because_change","send_vsc_without_downtime_ack"]},{"meta":{"commit":"7ffd0c04e4205cbc9caf212abfe6c59ee43153bf"},"constants":{"P":"provider","C":"consumer","UNBONDING_SECONDS_P":70,"UNBONDING_SECONDS_C":50,"TRUSTING_SECONDS":49,"NUM_VALIDATORS":4,"MAX_VALIDATORS":2,"SLASH_DOUBLESIGN":0,"SLASH_DOWNTIME":0,"JAIL_SECONDS":999999999999999,"BLOCK_SECONDS":6,"INITIAL_DELEGATOR_TOKENS":10000000000000,"DELEGATE_AMT_MIN":1000,"DELEGATE_AMT_MAX":5000,"UNDELEGATE_AMT_MIN":1000,"UNDELEGATE_AMT_MAX":5000,"ISDOWNTIME_PROBABILITY":0.5,"MAX_NUM_PACKETS_FOR_DELIVER":6},"actions":[{"ix":0,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":2,"t":12,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":1,"action":{"kind":"Undelegate","val":1,"amt":3241},"partialState":{"h":1,"t":6,"tokens":[5000,4000,3000,2000],"delegation":[4000,3000,2000,1000],"delegatorTokens":10000000000000}},{"ix":2,"action":{"kind":"ConsumerSlash","val":3,"infractionHeight":0,"isDowntime":true},"partialState":{"h":2,"t":12,"outstandingDowntime":[false,false,false,true]}},{"ix":3,"action":{"kind":"ConsumerSlash","val":2,"infractionHeight":0,"isDowntime":true},"partialState":{"h":2,"t":12,"outstandingDowntime":[false,false,true,true]}},{"ix":4,"action":{"kind":"Delegate","val":0,"amt":2935},"partialState":{"h":1,"t":6,"tokens":[7935,4000,3000,2000],"delegation":[6935,3000,2000,1000],"delegatorTokens":9999999997065}},{"ix":5,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":3,"t":18,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,false,true,true]}},{"ix":6,"action":{"kind":"Deliver","chain":"provider","numPackets":6},"partialState":{"h":1,"t":6,"tokens":[7935,4000,3000,2000],"delegation":[6935,3000,2000,1000],"delegatorTokens":9999999997065,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":7,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":8,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":9,"action":{"kind":"Undelegate","val":3,"amt":1743},"partialState":{"h":1,"t":6,"tokens":[7935,4000,3000,2000],"delegation":[6935,3000,2000,1000],"delegatorTokens":9999999997065}},{"ix":10,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":11,"action":{"kind":"Delegate","val":0,"amt":2089},"partialState":{"h":1,"t":6,"tokens":[10024,4000,3000,2000],"delegation":[9024,3000,2000,1000],"delegatorTokens":9999999994976}},{"ix":12,"action":{"kind":"Undelegate","val":2,"amt":3796},"partialState":{"h":1,"t":6,"tokens":[10024,4000,3000,2000],"delegation":[9024,3000,2000,1000],"delegatorTokens":9999999994976}},{"ix":13,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":14,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":15,"action":{"kind":"Delegate","val":1,"amt":1141},"partialState":{"h":1,"t":6,"tokens":[10024,5141,3000,2000],"delegation":[9024,4141,2000,1000],"delegatorTokens":9999999993835}},{"ix":16,"action":{"kind":"ConsumerSlash","val":2,"infractionHeight":2,"isDowntime":true},"partialState":{"h":3,"t":18,"outstandingDowntime":[false,false,true,true]}},{"ix":17,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":2,"t":12,"tokens":[10024,5141,3000,2000],"delegation":[9024,4141,2000,1000],"delegatorTokens":9999999993835,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":18,"action":{"kind":"Undelegate","val":2,"amt":2371},"partialState":{"h":2,"t":12,"tokens":[10024,5141,3000,2000],"delegation":[9024,4141,2000,1000],"delegatorTokens":9999999993835}},{"ix":19,"action":{"kind":"Deliver","chain":"consumer","numPackets":3},"partialState":{"h":3,"t":18,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,false,true,true]}},{"ix":20,"action":{"kind":"Undelegate","val":2,"amt":1494},"partialState":{"h":2,"t":12,"tokens":[10024,5141,1506,2000],"delegation":[9024,4141,506,1000],"delegatorTokens":9999999993835}},{"ix":21,"action":{"kind":"ConsumerSlash","val":1,"infractionHeight":0,"isDowntime":true},"partialState":{"h":3,"t":18,"outstandingDowntime":[false,true,true,true]}},{"ix":22,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":3,"t":18,"tokens":[10024,5141,1506,2000],"delegation":[9024,4141,506,1000],"delegatorTokens":9999999993835,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":23,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":24,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":25,"action":{"kind":"Deliver","chain":"provider","numPackets":2},"partialState":{"h":3,"t":18,"tokens":[10024,5141,1506,2000],"delegation":[9024,4141,506,1000],"delegatorTokens":9999999993835,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":26,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":27,"action":{"kind":"Deliver","chain":"consumer","numPackets":6},"partialState":{"h":3,"t":18,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,true,true,true]}},{"ix":28,"action":{"kind":"Delegate","val":1,"amt":3025},"partialState":{"h":3,"t":18,"tokens":[10024,8166,1506,2000],"delegation":[9024,7166,506,1000],"delegatorTokens":9999999990810}},{"ix":29,"action":{"kind":"Delegate","val":2,"amt":1663},"partialState":{"h":3,"t":18,"tokens":[10024,8166,3169,2000],"delegation":[9024,7166,2169,1000],"delegatorTokens":9999999989147}},{"ix":30,"action":{"kind":"Deliver","chain":"consumer","numPackets":3},"partialState":{"h":3,"t":18,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,true,true,true]}},{"ix":31,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":4,"t":24,"consumerPower":[10024,5141,null,null],"outstandingDowntime":[false,true,true,true]}},{"ix":32,"action":{"kind":"Deliver","chain":"consumer","numPackets":1},"partialState":{"h":4,"t":24,"consumerPower":[10024,5141,null,null],"outstandingDowntime":[false,true,true,true]}},{"ix":33,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":5,"t":30,"consumerPower":[10024,5141,null,null],"outstandingDowntime":[false,true,true,true]}},{"ix":34,"action":{"kind":"Delegate","val":3,"amt":2574},"partialState":{"h":3,"t":18,"tokens":[10024,8166,3169,4574],"delegation":[9024,7166,2169,3574],"delegatorTokens":9999999986573}},{"ix":35,"action":{"kind":"Deliver","chain":"provider","numPackets":2},"partialState":{"h":3,"t":18,"tokens":[10024,8166,3169,4574],"delegation":[9024,7166,2169,3574],"delegatorTokens":9999999986573,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":36,"action":{"kind":"Undelegate","val":2,"amt":4311},"partialState":{"h":3,"t":18,"tokens":[10024,8166,3169,4574],"delegation":[9024,7166,2169,3574],"delegatorTokens":9999999986573}},{"ix":37,"action":{"kind":"Delegate","val":0,"amt":4450},"partialState":{"h":3,"t":18,"tokens":[14474,8166,3169,4574],"delegation":[13474,7166,2169,3574],"delegatorTokens":9999999982123}},{"ix":38,"action":{"kind":"Delegate","val":3,"amt":2369},"partialState":{"h":3,"t":18,"tokens":[14474,8166,3169,6943],"delegation":[13474,7166,2169,5943],"delegatorTokens":9999999979754}},{"ix":39,"action":{"kind":"Deliver","chain":"consumer","numPackets":1},"partialState":{"h":5,"t":30,"consumerPower":[10024,5141,null,null],"outstandingDowntime":[false,true,true,true]}},{"ix":40,"action":{"kind":"Undelegate","val":3,"amt":4960},"partialState":{"h":3,"t":18,"tokens":[14474,8166,3169,1983],"delegation":[13474,7166,2169,983],"delegatorTokens":9999999979754}},{"ix":41,"action":{"kind":"Delegate","val":3,"amt":4643},"partialState":{"h":3,"t":18,"tokens":[14474,8166,3169,6626],"delegation":[13474,7166,2169,5626],"delegatorTokens":9999999975111}},{"ix":42,"action":{"kind":"Delegate","val":3,"amt":1893},"partialState":{"h":3,"t":18,"tokens":[14474,8166,3169,8519],"delegation":[13474,7166,2169,7519],"delegatorTokens":9999999973218}},{"ix":43,"action":{"kind":"Deliver","chain":"provider","numPackets":3},"partialState":{"h":3,"t":18,"tokens":[14474,8166,3169,8519],"delegation":[13474,7166,2169,7519],"delegatorTokens":9999999973218,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":44,"action":{"kind":"Undelegate","val":0,"amt":2365},"partialState":{"h":3,"t":18,"tokens":[12109,8166,3169,8519],"delegation":[11109,7166,2169,7519],"delegatorTokens":9999999973218}},{"ix":45,"action":{"kind":"Undelegate","val":2,"amt":3663},"partialState":{"h":3,"t":18,"tokens":[12109,8166,3169,8519],"delegation":[11109,7166,2169,7519],"delegatorTokens":9999999973218}},{"ix":46,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":47,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":48,"action":{"kind":"Deliver","chain":"provider","numPackets":4},"partialState":{"h":3,"t":18,"tokens":[12109,8166,3169,8519],"delegation":[11109,7166,2169,7519],"delegatorTokens":9999999973218,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":49,"action":{"kind":"Deliver","chain":"consumer","numPackets":5},"partialState":{"h":5,"t":30,"consumerPower":[10024,5141,null,null],"outstandingDowntime":[false,true,true,true]}},{"ix":50,"action":{"kind":"Deliver","chain":"consumer","numPackets":3},"partialState":{"h":5,"t":30,"consumerPower":[10024,5141,null,null],"outstandingDowntime":[false,true,true,true]}},{"ix":51,"action":{"kind":"Undelegate","val":2,"amt":1867},"partialState":{"h":3,"t":18,"tokens":[12109,8166,1302,8519],"delegation":[11109,7166,302,7519],"delegatorTokens":9999999973218}},{"ix":52,"action":{"kind":"Delegate","val":3,"amt":1673},"partialState":{"h":3,"t":18,"tokens":[12109,8166,1302,10192],"delegation":[11109,7166,302,9192],"delegatorTokens":9999999971545}},{"ix":53,"action":{"kind":"Undelegate","val":0,"amt":1807},"partialState":{"h":3,"t":18,"tokens":[10302,8166,1302,10192],"delegation":[9302,7166,302,9192],"delegatorTokens":9999999971545}},{"ix":54,"action":{"kind":"Delegate","val":0,"amt":3368},"partialState":{"h":3,"t":18,"tokens":[13670,8166,1302,10192],"delegation":[12670,7166,302,9192],"delegatorTokens":9999999968177}},{"ix":55,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":56,"action":{"kind":"Delegate","val":1,"amt":4404},"partialState":{"h":3,"t":18,"tokens":[13670,12570,1302,10192],"delegation":[12670,11570,302,9192],"delegatorTokens":9999999963773}},{"ix":57,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":6,"t":36,"consumerPower":[10024,5141,null,null],"outstandingDowntime":[false,true,true,true]}},{"ix":58,"action":{"kind":"Deliver","chain":"consumer","numPackets":6},"partialState":{"h":6,"t":36,"consumerPower":[10024,5141,null,null],"outstandingDowntime":[false,true,true,true]}},{"ix":59,"action":{"kind":"Delegate","val":1,"amt":4879},"partialState":{"h":3,"t":18,"tokens":[13670,17449,1302,10192],"delegation":[12670,16449,302,9192],"delegatorTokens":9999999958894}},{"ix":60,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":7,"t":42,"consumerPower":[10024,5141,null,null],"outstandingDowntime":[false,true,true,true]}},{"ix":61,"action":{"kind":"Undelegate","val":0,"amt":2203},"partialState":{"h":3,"t":18,"tokens":[11467,17449,1302,10192],"delegation":[10467,16449,302,9192],"delegatorTokens":9999999958894}},{"ix":62,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":4,"t":24,"tokens":[11467,17449,1302,10192],"delegation":[10467,16449,302,9192],"delegatorTokens":9999999958894,"jailed":[null,1000000000000017,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":63,"action":{"kind":"Undelegate","val":1,"amt":4170},"partialState":{"h":4,"t":24,"tokens":[11467,13279,1302,10192],"delegation":[10467,12279,302,9192],"delegatorTokens":9999999958894}},{"ix":64,"action":{"kind":"Deliver","chain":"consumer","numPackets":1},"partialState":{"h":7,"t":42,"consumerPower":[10024,5141,null,null],"outstandingDowntime":[false,true,true,true]}},{"ix":65,"action":{"kind":"Undelegate","val":0,"amt":4891},"partialState":{"h":4,"t":24,"tokens":[6576,13279,1302,10192],"delegation":[5576,12279,302,9192],"delegatorTokens":9999999958894}},{"ix":66,"action":{"kind":"Deliver","chain":"provider","numPackets":5},"partialState":{"h":4,"t":24,"tokens":[6576,13279,1302,10192],"delegation":[5576,12279,302,9192],"delegatorTokens":9999999958894,"jailed":[null,1000000000000017,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":67,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":8,"t":48,"consumerPower":[10024,5141,null,null],"outstandingDowntime":[false,true,true,true]}},{"ix":68,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":69,"action":{"kind":"Undelegate","val":3,"amt":2279},"partialState":{"h":4,"t":24,"tokens":[6576,13279,1302,7913],"delegation":[5576,12279,302,6913],"delegatorTokens":9999999958894}},{"ix":70,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":71,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":72,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":73,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":74,"action":{"kind":"Undelegate","val":0,"amt":4111},"partialState":{"h":4,"t":24,"tokens":[2465,13279,1302,7913],"delegation":[1465,12279,302,6913],"delegatorTokens":9999999958894}},{"ix":75,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":76,"action":{"kind":"Undelegate","val":1,"amt":1787},"partialState":{"h":4,"t":24,"tokens":[2465,11492,1302,7913],"delegation":[1465,10492,302,6913],"delegatorTokens":9999999958894}},{"ix":77,"action":{"kind":"Delegate","val":2,"amt":1751},"partialState":{"h":4,"t":24,"tokens":[2465,11492,3053,7913],"delegation":[1465,10492,2053,6913],"delegatorTokens":9999999957143}},{"ix":78,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":9,"t":54,"consumerPower":[10024,5141,null,null],"outstandingDowntime":[false,true,true,true]}},{"ix":79,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":80,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":5,"t":30,"tokens":[2465,11492,3053,7913],"delegation":[1465,10492,2053,6913],"delegatorTokens":9999999957143,"jailed":[null,1000000000000017,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":81,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":82,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":6,"t":36,"tokens":[2465,11492,3053,7913],"delegation":[1465,10492,2053,6913],"delegatorTokens":9999999957143,"jailed":[null,1000000000000017,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":83,"action":{"kind":"Delegate","val":3,"amt":1487},"partialState":{"h":6,"t":36,"tokens":[2465,11492,3053,9400],"delegation":[1465,10492,2053,8400],"delegatorTokens":9999999955656}},{"ix":84,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":10,"t":60,"consumerPower":[10024,5141,null,null],"outstandingDowntime":[false,true,true,true]}},{"ix":85,"action":{"kind":"Delegate","val":3,"amt":1913},"partialState":{"h":6,"t":36,"tokens":[2465,11492,3053,11313],"delegation":[1465,10492,2053,10313],"delegatorTokens":9999999953743}},{"ix":86,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":87,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":7,"t":42,"tokens":[2465,11492,3053,11313],"delegation":[1465,10492,2053,10313],"delegatorTokens":9999999953743,"jailed":[null,1000000000000017,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":88,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":11,"t":66,"consumerPower":[10024,5141,null,null],"outstandingDowntime":[false,true,true,true]}},{"ix":89,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":8,"t":48,"tokens":[2465,11492,3053,11313],"delegation":[1465,10492,2053,10313],"delegatorTokens":9999999953743,"jailed":[null,1000000000000017,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":90,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":9,"t":54,"tokens":[2465,11492,3053,11313],"delegation":[1465,10492,2053,10313],"delegatorTokens":9999999953743,"jailed":[null,1000000000000017,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":91,"action":{"kind":"Undelegate","val":0,"amt":2337},"partialState":{"h":9,"t":54,"tokens":[2465,11492,3053,11313],"delegation":[1465,10492,2053,10313],"delegatorTokens":9999999953743}},{"ix":92,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":10,"t":60,"tokens":[2465,11492,3053,11313],"delegation":[1465,10492,2053,10313],"delegatorTokens":9999999953743,"jailed":[null,1000000000000017,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":93,"action":{"kind":"Undelegate","val":2,"amt":2106},"partialState":{"h":10,"t":60,"tokens":[2465,11492,3053,11313],"delegation":[1465,10492,2053,10313],"delegatorTokens":9999999953743}},{"ix":94,"action":{"kind":"Deliver","chain":"consumer","numPackets":2},"partialState":{"h":11,"t":66,"consumerPower":[10024,5141,null,null],"outstandingDowntime":[false,false,true,true]}},{"ix":95,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":96,"action":{"kind":"Delegate","val":0,"amt":3501},"partialState":{"h":10,"t":60,"tokens":[5966,11492,3053,11313],"delegation":[4966,10492,2053,10313],"delegatorTokens":9999999950242}},{"ix":97,"action":{"kind":"Deliver","chain":"provider","numPackets":3},"partialState":{"h":10,"t":60,"tokens":[5966,11492,3053,11313],"delegation":[4966,10492,2053,10313],"delegatorTokens":9999999950242,"jailed":[null,1000000000000017,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":98,"action":{"kind":"Deliver","chain":"consumer","numPackets":1},"partialState":{"h":11,"t":66,"consumerPower":[10024,5141,null,null],"outstandingDowntime":[false,false,true,true]}},{"ix":99,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":12,"t":72,"consumerPower":[null,null,3053,11313],"outstandingDowntime":[false,false,true,true]}},{"ix":100,"action":{"kind":"Undelegate","val":2,"amt":4138},"partialState":{"h":10,"t":60,"tokens":[5966,11492,3053,11313],"delegation":[4966,10492,2053,10313],"delegatorTokens":9999999950242}},{"ix":101,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":102,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":13,"t":78,"consumerPower":[null,null,3053,11313],"outstandingDowntime":[false,false,true,true]}},{"ix":103,"action":{"kind":"Delegate","val":0,"amt":2790},"partialState":{"h":10,"t":60,"tokens":[8756,11492,3053,11313],"delegation":[7756,10492,2053,10313],"delegatorTokens":9999999947452}},{"ix":104,"action":{"kind":"Deliver","chain":"consumer","numPackets":4},"partialState":{"h":13,"t":78,"consumerPower":[null,null,3053,11313],"outstandingDowntime":[false,false,true,true]}},{"ix":105,"action":{"kind":"Delegate","val":1,"amt":1407},"partialState":{"h":10,"t":60,"tokens":[8756,12899,3053,11313],"delegation":[7756,11899,2053,10313],"delegatorTokens":9999999946045}},{"ix":106,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":107,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":14,"t":84,"consumerPower":[null,null,3053,11313],"outstandingDowntime":[false,false,true,true]}},{"ix":108,"action":{"kind":"Undelegate","val":0,"amt":4223},"partialState":{"h":10,"t":60,"tokens":[4533,12899,3053,11313],"delegation":[3533,11899,2053,10313],"delegatorTokens":9999999946045}},{"ix":109,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":110,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":111,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":112,"action":{"kind":"Delegate","val":1,"amt":4244},"partialState":{"h":10,"t":60,"tokens":[4533,17143,3053,11313],"delegation":[3533,16143,2053,10313],"delegatorTokens":9999999941801}},{"ix":113,"action":{"kind":"Deliver","chain":"consumer","numPackets":6},"partialState":{"h":14,"t":84,"consumerPower":[null,null,3053,11313],"outstandingDowntime":[false,false,true,true]}},{"ix":114,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":15,"t":90,"consumerPower":[null,null,3053,11313],"outstandingDowntime":[false,false,true,true]}},{"ix":115,"action":{"kind":"Delegate","val":3,"amt":2097},"partialState":{"h":10,"t":60,"tokens":[4533,17143,3053,13410],"delegation":[3533,16143,2053,12410],"delegatorTokens":9999999939704}},{"ix":116,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":16,"t":96,"consumerPower":[null,null,3053,11313],"outstandingDowntime":[false,false,true,true]}},{"ix":117,"action":{"kind":"Delegate","val":3,"amt":1855},"partialState":{"h":10,"t":60,"tokens":[4533,17143,3053,15265],"delegation":[3533,16143,2053,14265],"delegatorTokens":9999999937849}},{"ix":118,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":11,"t":66,"tokens":[4533,17143,3053,15265],"delegation":[3533,16143,2053,14265],"delegatorTokens":9999999937849,"jailed":[null,1000000000000017,null,null],"status":["bonded","unbonding","unbonding","bonded"]}},{"ix":119,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":120,"action":{"kind":"Deliver","chain":"consumer","numPackets":6},"partialState":{"h":16,"t":96,"consumerPower":[null,null,3053,11313],"outstandingDowntime":[false,false,true,true]}},{"ix":121,"action":{"kind":"Delegate","val":3,"amt":4637},"partialState":{"h":11,"t":66,"tokens":[4533,17143,3053,19902],"delegation":[3533,16143,2053,18902],"delegatorTokens":9999999933212}},{"ix":122,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":17,"t":102,"consumerPower":[null,null,3053,11313],"outstandingDowntime":[false,false,true,true]}},{"ix":123,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":124,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":18,"t":108,"consumerPower":[null,null,3053,11313],"outstandingDowntime":[false,false,true,true]}},{"ix":125,"action":{"kind":"Undelegate","val":1,"amt":2297},"partialState":{"h":11,"t":66,"tokens":[4533,14846,3053,19902],"delegation":[3533,13846,2053,18902],"delegatorTokens":9999999933212}},{"ix":126,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":12,"t":72,"tokens":[4533,14846,3053,19902],"delegation":[3533,13846,2053,18902],"delegatorTokens":9999999933212,"jailed":[null,1000000000000017,null,null],"status":["bonded","unbonding","unbonding","bonded"]}},{"ix":127,"action":{"kind":"Delegate","val":0,"amt":1111},"partialState":{"h":12,"t":72,"tokens":[5644,14846,3053,19902],"delegation":[4644,13846,2053,18902],"delegatorTokens":9999999932101}},{"ix":128,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":129,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":19,"t":114,"consumerPower":[null,null,3053,11313],"outstandingDowntime":[false,false,true,true]}},{"ix":130,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":131,"action":{"kind":"Undelegate","val":2,"amt":4965},"partialState":{"h":12,"t":72,"tokens":[5644,14846,3053,19902],"delegation":[4644,13846,2053,18902],"delegatorTokens":9999999932101}},{"ix":132,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":13,"t":78,"tokens":[5644,14846,3053,19902],"delegation":[4644,13846,2053,18902],"delegatorTokens":9999999932101,"jailed":[null,1000000000000017,null,null],"status":["bonded","unbonding","unbonding","bonded"]}},{"ix":133,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":134,"action":{"kind":"Deliver","chain":"consumer","numPackets":6},"partialState":{"h":19,"t":114,"consumerPower":[null,null,3053,11313],"outstandingDowntime":[false,false,true,true]}},{"ix":135,"action":{"kind":"Delegate","val":1,"amt":3933},"partialState":{"h":13,"t":78,"tokens":[5644,18779,3053,19902],"delegation":[4644,17779,2053,18902],"delegatorTokens":9999999928168}},{"ix":136,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":14,"t":84,"tokens":[5644,18779,3053,19902],"delegation":[4644,17779,2053,18902],"delegatorTokens":9999999928168,"jailed":[null,1000000000000017,null,null],"status":["bonded","unbonding","unbonding","bonded"]}},{"ix":137,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":138,"action":{"kind":"Deliver","chain":"provider","numPackets":4},"partialState":{"h":14,"t":84,"tokens":[5644,18779,3053,19902],"delegation":[4644,17779,2053,18902],"delegatorTokens":9999999928168,"jailed":[null,1000000000000017,null,null],"status":["bonded","unbonding","unbonding","bonded"]}},{"ix":139,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":20,"t":120,"consumerPower":[4533,null,null,19902],"outstandingDowntime":[false,false,true,true]}},{"ix":140,"action":{"kind":"Delegate","val":3,"amt":3455},"partialState":{"h":14,"t":84,"tokens":[5644,18779,3053,23357],"delegation":[4644,17779,2053,22357],"delegatorTokens":9999999924713}},{"ix":141,"action":{"kind":"Delegate","val":3,"amt":2855},"partialState":{"h":14,"t":84,"tokens":[5644,18779,3053,26212],"delegation":[4644,17779,2053,25212],"delegatorTokens":9999999921858}},{"ix":142,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":143,"action":{"kind":"Delegate","val":2,"amt":4163},"partialState":{"h":14,"t":84,"tokens":[5644,18779,7216,26212],"delegation":[4644,17779,6216,25212],"delegatorTokens":9999999917695}},{"ix":144,"action":{"kind":"Deliver","chain":"provider","numPackets":3},"partialState":{"h":14,"t":84,"tokens":[5644,18779,7216,26212],"delegation":[4644,17779,6216,25212],"delegatorTokens":9999999917695,"jailed":[null,1000000000000017,null,null],"status":["bonded","unbonding","unbonding","bonded"]}},{"ix":145,"action":{"kind":"Deliver","chain":"consumer","numPackets":5},"partialState":{"h":20,"t":120,"consumerPower":[4533,null,null,19902],"outstandingDowntime":[false,false,true,true]}},{"ix":146,"action":{"kind":"Deliver","chain":"provider","numPackets":5},"partialState":{"h":14,"t":84,"tokens":[5644,18779,7216,26212],"delegation":[4644,17779,6216,25212],"delegatorTokens":9999999917695,"jailed":[null,1000000000000017,null,null],"status":["bonded","unbonding","unbonding","bonded"]}},{"ix":147,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":15,"t":90,"tokens":[5644,18779,7216,26212],"delegation":[4644,17779,6216,25212],"delegatorTokens":9999999919189,"jailed":[null,1000000000000017,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":148,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":21,"t":126,"consumerPower":[5644,null,null,19902],"outstandingDowntime":[false,false,true,true]}},{"ix":149,"action":{"kind":"Delegate","val":3,"amt":2828},"partialState":{"h":15,"t":90,"tokens":[5644,18779,7216,29040],"delegation":[4644,17779,6216,28040],"delegatorTokens":9999999916361}},{"ix":150,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":151,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":152,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":153,"action":{"kind":"Deliver","chain":"provider","numPackets":2},"partialState":{"h":15,"t":90,"tokens":[5644,18779,7216,29040],"delegation":[4644,17779,6216,28040],"delegatorTokens":9999999916361,"jailed":[null,1000000000000017,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":154,"action":{"kind":"Undelegate","val":3,"amt":4141},"partialState":{"h":15,"t":90,"tokens":[5644,18779,7216,24899],"delegation":[4644,17779,6216,23899],"delegatorTokens":9999999916361}},{"ix":155,"action":{"kind":"Delegate","val":1,"amt":1835},"partialState":{"h":15,"t":90,"tokens":[5644,20614,7216,24899],"delegation":[4644,19614,6216,23899],"delegatorTokens":9999999914526}},{"ix":156,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":22,"t":132,"consumerPower":[5644,null,null,19902],"outstandingDowntime":[false,false,true,true]}},{"ix":157,"action":{"kind":"Deliver","chain":"provider","numPackets":5},"partialState":{"h":15,"t":90,"tokens":[5644,20614,7216,24899],"delegation":[4644,19614,6216,23899],"delegatorTokens":9999999914526,"jailed":[null,1000000000000017,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":158,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":159,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":16,"t":96,"tokens":[5644,20614,7216,24899],"delegation":[4644,19614,6216,23899],"delegatorTokens":9999999927728,"jailed":[null,1000000000000017,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":160,"action":{"kind":"Delegate","val":1,"amt":3569},"partialState":{"h":16,"t":96,"tokens":[5644,24183,7216,24899],"delegation":[4644,23183,6216,23899],"delegatorTokens":9999999924159}},{"ix":161,"action":{"kind":"Undelegate","val":2,"amt":4874},"partialState":{"h":16,"t":96,"tokens":[5644,24183,2342,24899],"delegation":[4644,23183,1342,23899],"delegatorTokens":9999999924159}},{"ix":162,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":17,"t":102,"tokens":[5644,24183,2342,24899],"delegation":[4644,23183,1342,23899],"delegatorTokens":9999999941397,"jailed":[null,1000000000000017,null,null],"status":["bonded","unbonded","unbonding","bonded"]}},{"ix":163,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":164,"action":{"kind":"Deliver","chain":"consumer","numPackets":5},"partialState":{"h":22,"t":132,"consumerPower":[5644,null,null,19902],"outstandingDowntime":[false,false,true,true]}},{"ix":165,"action":{"kind":"Undelegate","val":0,"amt":3568},"partialState":{"h":17,"t":102,"tokens":[2076,24183,2342,24899],"delegation":[1076,23183,1342,23899],"delegatorTokens":9999999941397}},{"ix":166,"action":{"kind":"Delegate","val":2,"amt":2967},"partialState":{"h":17,"t":102,"tokens":[2076,24183,5309,24899],"delegation":[1076,23183,4309,23899],"delegatorTokens":9999999938430}},{"ix":167,"action":{"kind":"Undelegate","val":0,"amt":1242},"partialState":{"h":17,"t":102,"tokens":[2076,24183,5309,24899],"delegation":[1076,23183,4309,23899],"delegatorTokens":9999999938430}},{"ix":168,"action":{"kind":"Delegate","val":3,"amt":3148},"partialState":{"h":17,"t":102,"tokens":[2076,24183,5309,28047],"delegation":[1076,23183,4309,27047],"delegatorTokens":9999999935282}},{"ix":169,"action":{"kind":"Delegate","val":0,"amt":3979},"partialState":{"h":17,"t":102,"tokens":[6055,24183,5309,28047],"delegation":[5055,23183,4309,27047],"delegatorTokens":9999999931303}},{"ix":170,"action":{"kind":"Deliver","chain":"provider","numPackets":1},"partialState":{"h":17,"t":102,"tokens":[6055,24183,5309,28047],"delegation":[5055,23183,4309,27047],"delegatorTokens":9999999931303,"jailed":[null,1000000000000017,null,null],"status":["bonded","unbonded","unbonding","bonded"]}},{"ix":171,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":172,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":173,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":18,"t":108,"tokens":[6055,24183,5309,28047],"delegation":[5055,23183,4309,27047],"delegatorTokens":9999999931303,"jailed":[null,1000000000000017,null,null],"status":["bonded","unbonded","unbonding","bonded"]}},{"ix":174,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":175,"action":{"kind":"Undelegate","val":1,"amt":2258},"partialState":{"h":18,"t":108,"tokens":[6055,21925,5309,28047],"delegation":[5055,20925,4309,27047],"delegatorTokens":9999999931303}},{"ix":176,"action":{"kind":"Deliver","chain":"consumer","numPackets":4},"partialState":{"h":22,"t":132,"consumerPower":[5644,null,null,19902],"outstandingDowntime":[false,false,true,true]}},{"ix":177,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":178,"action":{"kind":"Deliver","chain":"provider","numPackets":1},"partialState":{"h":18,"t":108,"tokens":[6055,21925,5309,28047],"delegation":[5055,20925,4309,27047],"delegatorTokens":9999999931303,"jailed":[null,1000000000000017,null,null],"status":["bonded","unbonded","unbonding","bonded"]}},{"ix":179,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":19,"t":114,"tokens":[6055,21925,5309,28047],"delegation":[5055,20925,4309,27047],"delegatorTokens":9999999931303,"jailed":[null,1000000000000017,null,null],"status":["bonded","unbonded","unbonding","bonded"]}},{"ix":180,"action":{"kind":"Undelegate","val":1,"amt":2168},"partialState":{"h":19,"t":114,"tokens":[6055,19757,5309,28047],"delegation":[5055,18757,4309,27047],"delegatorTokens":9999999931303}},{"ix":181,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":182,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":183,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":23,"t":138,"consumerPower":[5644,null,null,24899],"outstandingDowntime":[false,false,true,true]}},{"ix":184,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":24,"t":144,"consumerPower":[5644,null,null,24899],"outstandingDowntime":[false,false,true,true]}},{"ix":185,"action":{"kind":"Delegate","val":2,"amt":1026},"partialState":{"h":19,"t":114,"tokens":[6055,19757,6335,28047],"delegation":[5055,18757,5335,27047],"delegatorTokens":9999999930277}},{"ix":186,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":25,"t":150,"consumerPower":[5644,null,null,24899],"outstandingDowntime":[false,false,true,true]}},{"ix":187,"action":{"kind":"Delegate","val":2,"amt":3486},"partialState":{"h":19,"t":114,"tokens":[6055,19757,9821,28047],"delegation":[5055,18757,8821,27047],"delegatorTokens":9999999926791}},{"ix":188,"action":{"kind":"Delegate","val":3,"amt":1768},"partialState":{"h":19,"t":114,"tokens":[6055,19757,9821,29815],"delegation":[5055,18757,8821,28815],"delegatorTokens":9999999925023}},{"ix":189,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":190,"action":{"kind":"Undelegate","val":1,"amt":3004},"partialState":{"h":19,"t":114,"tokens":[6055,16753,9821,29815],"delegation":[5055,15753,8821,28815],"delegatorTokens":9999999925023}},{"ix":191,"action":{"kind":"Deliver","chain":"provider","numPackets":6},"partialState":{"h":19,"t":114,"tokens":[6055,16753,9821,29815],"delegation":[5055,15753,8821,28815],"delegatorTokens":9999999925023,"jailed":[null,1000000000000017,null,null],"status":["bonded","unbonded","unbonding","bonded"]}},{"ix":192,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":193,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":194,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":195,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":196,"action":{"kind":"Deliver","chain":"provider","numPackets":2},"partialState":{"h":19,"t":114,"tokens":[6055,16753,9821,29815],"delegation":[5055,15753,8821,28815],"delegatorTokens":9999999925023,"jailed":[null,1000000000000017,null,null],"status":["bonded","unbonded","unbonding","bonded"]}},{"ix":197,"action":{"kind":"Undelegate","val":3,"amt":4809},"partialState":{"h":19,"t":114,"tokens":[6055,16753,9821,25006],"delegation":[5055,15753,8821,24006],"delegatorTokens":9999999925023}},{"ix":198,"action":{"kind":"Deliver","chain":"provider","numPackets":4},"partialState":{"h":19,"t":114,"tokens":[6055,16753,9821,25006],"delegation":[5055,15753,8821,24006],"delegatorTokens":9999999925023,"jailed":[null,1000000000000017,null,null],"status":["bonded","unbonded","unbonding","bonded"]}},{"ix":199,"action":{"kind":"Delegate","val":1,"amt":1384},"partialState":{"h":19,"t":114,"tokens":[6055,18137,9821,25006],"delegation":[5055,17137,8821,24006],"delegatorTokens":9999999923639}}],"events":["insufficient_shares","send_downtime_slash_request","send_downtime_slash_request","insufficient_shares","insufficient_shares","downtime_slash_request_outstanding","send_vsc_without_downtime_ack","insufficient_shares","send_downtime_slash_request","send_vsc_not_because_change","send_vsc_without_downtime_ack","consumer_update_val","consumer_update_val","insufficient_shares","insufficient_shares","receive_slash_request_unbonded","receive_slash_request_unbonded","receive_downtime_slash_request","jail","send_vsc_with_downtime_ack","more_than_one_third_val_power_change","send_vsc_without_downtime_ack","send_vsc_without_downtime_ack","insufficient_shares","insufficient_shares","receive_downtime_slash_ack","consumer_del_val","consumer_del_val","consumer_add_val","consumer_add_val","insufficient_shares","consumer_send_maturation","rebond_unval","send_vsc_without_downtime_ack","consumer_send_maturation","send_vsc_without_downtime_ack","insufficient_shares","send_vsc_without_downtime_ack","consumer_add_val","consumer_del_val","consumer_update_val","rebond_unval","some_undels_expired_but_not_completed","complete_undel_immediate","send_vsc_without_downtime_ack","consumer_send_maturation","consumer_send_maturation","consumer_send_maturation","consumer_update_val","some_undels_expired_but_not_completed","complete_undel_immediate","complete_undel_immediate","complete_undel_immediate","complete_undel_immediate","complete_undel_immediate","set_undel_hold_false","set_undel_hold_false","set_undel_hold_false","set_undel_hold_false","set_undel_hold_false","set_unval_hold_false","send_vsc_without_downtime_ack","rebond_unval","complete_unval_in_endblock","complete_undel_in_endblock","send_vsc_without_downtime_ack","insufficient_shares","send_vsc_without_downtime_ack","send_vsc_not_because_change","send_vsc_without_downtime_ack","consumer_update_val","consumer_del_val","consumer_update_val"]},{"meta":{"commit":"7ffd0c04e4205cbc9caf212abfe6c59ee43153bf"},"constants":{"P":"provider","C":"consumer","UNBONDING_SECONDS_P":70,"UNBONDING_SECONDS_C":50,"TRUSTING_SECONDS":49,"NUM_VALIDATORS":4,"MAX_VALIDATORS":2,"SLASH_DOUBLESIGN":0,"SLASH_DOWNTIME":0,"JAIL_SECONDS":999999999999999,"BLOCK_SECONDS":6,"INITIAL_DELEGATOR_TOKENS":10000000000000,"DELEGATE_AMT_MIN":1000,"DELEGATE_AMT_MAX":5000,"UNDELEGATE_AMT_MIN":1000,"UNDELEGATE_AMT_MAX":5000,"ISDOWNTIME_PROBABILITY":0.5,"MAX_NUM_PACKETS_FOR_DELIVER":6},"actions":[{"ix":0,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":1,"action":{"kind":"Undelegate","val":2,"amt":3964},"partialState":{"h":1,"t":6,"tokens":[5000,4000,3000,2000],"delegation":[4000,3000,2000,1000],"delegatorTokens":10000000000000}},{"ix":2,"action":{"kind":"ConsumerSlash","val":2,"infractionHeight":0,"isDowntime":true},"partialState":{"h":1,"t":6,"outstandingDowntime":[false,false,true,false]}},{"ix":3,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":2,"t":12,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,false,true,false]}},{"ix":4,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":2,"t":12,"tokens":[5000,4000,3000,2000],"delegation":[4000,3000,2000,1000],"delegatorTokens":10000000000000,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":5,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":3,"t":18,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,false,true,false]}},{"ix":6,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":3,"t":18,"tokens":[5000,4000,3000,2000],"delegation":[4000,3000,2000,1000],"delegatorTokens":10000000000000,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":7,"action":{"kind":"Delegate","val":3,"amt":1505},"partialState":{"h":3,"t":18,"tokens":[5000,4000,3000,3505],"delegation":[4000,3000,2000,2505],"delegatorTokens":9999999998495}},{"ix":8,"action":{"kind":"Deliver","chain":"consumer","numPackets":4},"partialState":{"h":3,"t":18,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,false,true,false]}},{"ix":9,"action":{"kind":"Undelegate","val":3,"amt":4995},"partialState":{"h":3,"t":18,"tokens":[5000,4000,3000,3505],"delegation":[4000,3000,2000,2505],"delegatorTokens":9999999998495}},{"ix":10,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":4,"t":24,"tokens":[5000,4000,3000,3505],"delegation":[4000,3000,2000,2505],"delegatorTokens":9999999998495,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":11,"action":{"kind":"Deliver","chain":"provider","numPackets":4},"partialState":{"h":4,"t":24,"tokens":[5000,4000,3000,3505],"delegation":[4000,3000,2000,2505],"delegatorTokens":9999999998495,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":12,"action":{"kind":"Undelegate","val":2,"amt":4414},"partialState":{"h":4,"t":24,"tokens":[5000,4000,3000,3505],"delegation":[4000,3000,2000,2505],"delegatorTokens":9999999998495}},{"ix":13,"action":{"kind":"Undelegate","val":2,"amt":1375},"partialState":{"h":4,"t":24,"tokens":[5000,4000,1625,3505],"delegation":[4000,3000,625,2505],"delegatorTokens":9999999998495}},{"ix":14,"action":{"kind":"Deliver","chain":"provider","numPackets":2},"partialState":{"h":4,"t":24,"tokens":[5000,4000,1625,3505],"delegation":[4000,3000,625,2505],"delegatorTokens":9999999998495,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":15,"action":{"kind":"ConsumerSlash","val":3,"infractionHeight":0,"isDowntime":true},"partialState":{"h":3,"t":18,"outstandingDowntime":[false,false,true,true]}},{"ix":16,"action":{"kind":"Deliver","chain":"consumer","numPackets":6},"partialState":{"h":3,"t":18,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,false,true,true]}},{"ix":17,"action":{"kind":"ConsumerSlash","val":2,"infractionHeight":1,"isDowntime":true},"partialState":{"h":3,"t":18,"outstandingDowntime":[false,false,true,true]}},{"ix":18,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":5,"t":30,"tokens":[5000,4000,1625,3505],"delegation":[4000,3000,625,2505],"delegatorTokens":9999999998495,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":19,"action":{"kind":"ConsumerSlash","val":1,"infractionHeight":1,"isDowntime":true},"partialState":{"h":3,"t":18,"outstandingDowntime":[false,true,true,true]}},{"ix":20,"action":{"kind":"Delegate","val":0,"amt":1283},"partialState":{"h":5,"t":30,"tokens":[6283,4000,1625,3505],"delegation":[5283,3000,625,2505],"delegatorTokens":9999999997212}},{"ix":21,"action":{"kind":"Undelegate","val":2,"amt":1345},"partialState":{"h":5,"t":30,"tokens":[6283,4000,1625,3505],"delegation":[5283,3000,625,2505],"delegatorTokens":9999999997212}},{"ix":22,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":23,"action":{"kind":"Delegate","val":2,"amt":4106},"partialState":{"h":5,"t":30,"tokens":[6283,4000,5731,3505],"delegation":[5283,3000,4731,2505],"delegatorTokens":9999999993106}},{"ix":24,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":6,"t":36,"tokens":[6283,4000,5731,3505],"delegation":[5283,3000,4731,2505],"delegatorTokens":9999999993106,"jailed":[null,null,null,null],"status":["bonded","unbonding","bonded","unbonded"]}},{"ix":25,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":4,"t":24,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,true,true,true]}},{"ix":26,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":7,"t":42,"tokens":[6283,4000,5731,3505],"delegation":[5283,3000,4731,2505],"delegatorTokens":9999999993106,"jailed":[null,null,null,null],"status":["bonded","unbonding","bonded","unbonded"]}},{"ix":27,"action":{"kind":"Delegate","val":2,"amt":4343},"partialState":{"h":7,"t":42,"tokens":[6283,4000,10074,3505],"delegation":[5283,3000,9074,2505],"delegatorTokens":9999999988763}},{"ix":28,"action":{"kind":"Deliver","chain":"provider","numPackets":3},"partialState":{"h":7,"t":42,"tokens":[6283,4000,10074,3505],"delegation":[5283,3000,9074,2505],"delegatorTokens":9999999988763,"jailed":[null,null,null,null],"status":["bonded","unbonding","bonded","unbonded"]}},{"ix":29,"action":{"kind":"Undelegate","val":1,"amt":4080},"partialState":{"h":7,"t":42,"tokens":[6283,4000,10074,3505],"delegation":[5283,3000,9074,2505],"delegatorTokens":9999999988763}},{"ix":30,"action":{"kind":"Deliver","chain":"provider","numPackets":1},"partialState":{"h":7,"t":42,"tokens":[6283,4000,10074,3505],"delegation":[5283,3000,9074,2505],"delegatorTokens":9999999988763,"jailed":[null,null,null,null],"status":["bonded","unbonding","bonded","unbonded"]}},{"ix":31,"action":{"kind":"Deliver","chain":"consumer","numPackets":2},"partialState":{"h":4,"t":24,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,true,true,true]}},{"ix":32,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":33,"action":{"kind":"Deliver","chain":"provider","numPackets":1},"partialState":{"h":7,"t":42,"tokens":[6283,4000,10074,3505],"delegation":[5283,3000,9074,2505],"delegatorTokens":9999999988763,"jailed":[null,null,null,null],"status":["bonded","unbonding","bonded","unbonded"]}},{"ix":34,"action":{"kind":"Undelegate","val":0,"amt":2819},"partialState":{"h":7,"t":42,"tokens":[3464,4000,10074,3505],"delegation":[2464,3000,9074,2505],"delegatorTokens":9999999988763}},{"ix":35,"action":{"kind":"Undelegate","val":2,"amt":3508},"partialState":{"h":7,"t":42,"tokens":[3464,4000,6566,3505],"delegation":[2464,3000,5566,2505],"delegatorTokens":9999999988763}},{"ix":36,"action":{"kind":"Delegate","val":3,"amt":2473},"partialState":{"h":7,"t":42,"tokens":[3464,4000,6566,5978],"delegation":[2464,3000,5566,4978],"delegatorTokens":9999999986290}},{"ix":37,"action":{"kind":"Deliver","chain":"consumer","numPackets":5},"partialState":{"h":4,"t":24,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,true,true,true]}},{"ix":38,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":39,"action":{"kind":"Undelegate","val":3,"amt":4054},"partialState":{"h":7,"t":42,"tokens":[3464,4000,6566,1924],"delegation":[2464,3000,5566,924],"delegatorTokens":9999999986290}},{"ix":40,"action":{"kind":"Undelegate","val":1,"amt":2939},"partialState":{"h":7,"t":42,"tokens":[3464,1061,6566,1924],"delegation":[2464,61,5566,924],"delegatorTokens":9999999986290}},{"ix":41,"action":{"kind":"Delegate","val":2,"amt":1578},"partialState":{"h":7,"t":42,"tokens":[3464,1061,8144,1924],"delegation":[2464,61,7144,924],"delegatorTokens":9999999984712}},{"ix":42,"action":{"kind":"Undelegate","val":2,"amt":3386},"partialState":{"h":7,"t":42,"tokens":[3464,1061,4758,1924],"delegation":[2464,61,3758,924],"delegatorTokens":9999999984712}},{"ix":43,"action":{"kind":"Deliver","chain":"consumer","numPackets":6},"partialState":{"h":4,"t":24,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,true,true,true]}},{"ix":44,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":5,"t":30,"consumerPower":[6283,null,5731,null],"outstandingDowntime":[false,true,true,true]}},{"ix":45,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":46,"action":{"kind":"Deliver","chain":"consumer","numPackets":3},"partialState":{"h":5,"t":30,"consumerPower":[6283,null,5731,null],"outstandingDowntime":[false,true,true,true]}},{"ix":47,"action":{"kind":"Deliver","chain":"consumer","numPackets":3},"partialState":{"h":5,"t":30,"consumerPower":[6283,null,5731,null],"outstandingDowntime":[false,true,true,true]}},{"ix":48,"action":{"kind":"Delegate","val":0,"amt":1535},"partialState":{"h":7,"t":42,"tokens":[4999,1061,4758,1924],"delegation":[3999,61,3758,924],"delegatorTokens":9999999983177}},{"ix":49,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":50,"action":{"kind":"Undelegate","val":1,"amt":2329},"partialState":{"h":7,"t":42,"tokens":[4999,1061,4758,1924],"delegation":[3999,61,3758,924],"delegatorTokens":9999999983177}},{"ix":51,"action":{"kind":"Undelegate","val":2,"amt":2184},"partialState":{"h":7,"t":42,"tokens":[4999,1061,2574,1924],"delegation":[3999,61,1574,924],"delegatorTokens":9999999983177}},{"ix":52,"action":{"kind":"Undelegate","val":0,"amt":1408},"partialState":{"h":7,"t":42,"tokens":[3591,1061,2574,1924],"delegation":[2591,61,1574,924],"delegatorTokens":9999999983177}},{"ix":53,"action":{"kind":"Delegate","val":0,"amt":4981},"partialState":{"h":7,"t":42,"tokens":[8572,1061,2574,1924],"delegation":[7572,61,1574,924],"delegatorTokens":9999999978196}},{"ix":54,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":55,"action":{"kind":"Delegate","val":2,"amt":3775},"partialState":{"h":7,"t":42,"tokens":[8572,1061,6349,1924],"delegation":[7572,61,5349,924],"delegatorTokens":9999999974421}},{"ix":56,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":6,"t":36,"consumerPower":[6283,null,5731,null],"outstandingDowntime":[false,true,true,true]}},{"ix":57,"action":{"kind":"Deliver","chain":"provider","numPackets":1},"partialState":{"h":7,"t":42,"tokens":[8572,1061,6349,1924],"delegation":[7572,61,5349,924],"delegatorTokens":9999999974421,"jailed":[null,null,null,null],"status":["bonded","unbonding","bonded","unbonded"]}},{"ix":58,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":59,"action":{"kind":"Delegate","val":0,"amt":3530},"partialState":{"h":7,"t":42,"tokens":[12102,1061,6349,1924],"delegation":[11102,61,5349,924],"delegatorTokens":9999999970891}},{"ix":60,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":7,"t":42,"consumerPower":[6283,null,5731,null],"outstandingDowntime":[false,true,true,true]}},{"ix":61,"action":{"kind":"Delegate","val":1,"amt":2586},"partialState":{"h":7,"t":42,"tokens":[12102,3647,6349,1924],"delegation":[11102,2647,5349,924],"delegatorTokens":9999999968305}},{"ix":62,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":8,"t":48,"consumerPower":[6283,null,5731,null],"outstandingDowntime":[false,true,true,true]}},{"ix":63,"action":{"kind":"Delegate","val":0,"amt":2977},"partialState":{"h":7,"t":42,"tokens":[15079,3647,6349,1924],"delegation":[14079,2647,5349,924],"delegatorTokens":9999999965328}},{"ix":64,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":9,"t":54,"consumerPower":[6283,null,5731,null],"outstandingDowntime":[false,true,true,true]}},{"ix":65,"action":{"kind":"Undelegate","val":1,"amt":4044},"partialState":{"h":7,"t":42,"tokens":[15079,3647,6349,1924],"delegation":[14079,2647,5349,924],"delegatorTokens":9999999965328}},{"ix":66,"action":{"kind":"Delegate","val":2,"amt":3780},"partialState":{"h":7,"t":42,"tokens":[15079,3647,10129,1924],"delegation":[14079,2647,9129,924],"delegatorTokens":9999999961548}},{"ix":67,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":68,"action":{"kind":"Deliver","chain":"consumer","numPackets":5},"partialState":{"h":9,"t":54,"consumerPower":[6283,null,5731,null],"outstandingDowntime":[false,true,true,true]}},{"ix":69,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":70,"action":{"kind":"Deliver","chain":"consumer","numPackets":4},"partialState":{"h":9,"t":54,"consumerPower":[6283,null,5731,null],"outstandingDowntime":[false,true,true,true]}},{"ix":71,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":72,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":8,"t":48,"tokens":[15079,3647,10129,1924],"delegation":[14079,2647,9129,924],"delegatorTokens":9999999961548,"jailed":[null,null,null,null],"status":["bonded","unbonding","bonded","unbonded"]}},{"ix":73,"action":{"kind":"Deliver","chain":"consumer","numPackets":2},"partialState":{"h":9,"t":54,"consumerPower":[6283,null,5731,null],"outstandingDowntime":[false,true,true,true]}},{"ix":74,"action":{"kind":"Undelegate","val":2,"amt":1980},"partialState":{"h":8,"t":48,"tokens":[15079,3647,8149,1924],"delegation":[14079,2647,7149,924],"delegatorTokens":9999999961548}},{"ix":75,"action":{"kind":"Delegate","val":1,"amt":3918},"partialState":{"h":8,"t":48,"tokens":[15079,7565,8149,1924],"delegation":[14079,6565,7149,924],"delegatorTokens":9999999957630}},{"ix":76,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":77,"action":{"kind":"Delegate","val":2,"amt":4518},"partialState":{"h":8,"t":48,"tokens":[15079,7565,12667,1924],"delegation":[14079,6565,11667,924],"delegatorTokens":9999999953112}},{"ix":78,"action":{"kind":"Undelegate","val":0,"amt":2919},"partialState":{"h":8,"t":48,"tokens":[12160,7565,12667,1924],"delegation":[11160,6565,11667,924],"delegatorTokens":9999999953112}},{"ix":79,"action":{"kind":"Undelegate","val":2,"amt":4711},"partialState":{"h":8,"t":48,"tokens":[12160,7565,7956,1924],"delegation":[11160,6565,6956,924],"delegatorTokens":9999999953112}},{"ix":80,"action":{"kind":"Delegate","val":0,"amt":1489},"partialState":{"h":8,"t":48,"tokens":[13649,7565,7956,1924],"delegation":[12649,6565,6956,924],"delegatorTokens":9999999951623}},{"ix":81,"action":{"kind":"Delegate","val":3,"amt":2254},"partialState":{"h":8,"t":48,"tokens":[13649,7565,7956,4178],"delegation":[12649,6565,6956,3178],"delegatorTokens":9999999949369}},{"ix":82,"action":{"kind":"Deliver","chain":"provider","numPackets":1},"partialState":{"h":8,"t":48,"tokens":[13649,7565,7956,4178],"delegation":[12649,6565,6956,3178],"delegatorTokens":9999999949369,"jailed":[null,null,null,null],"status":["bonded","unbonding","bonded","unbonded"]}},{"ix":83,"action":{"kind":"Delegate","val":2,"amt":1577},"partialState":{"h":8,"t":48,"tokens":[13649,7565,9533,4178],"delegation":[12649,6565,8533,3178],"delegatorTokens":9999999947792}},{"ix":84,"action":{"kind":"Deliver","chain":"provider","numPackets":2},"partialState":{"h":8,"t":48,"tokens":[13649,7565,9533,4178],"delegation":[12649,6565,8533,3178],"delegatorTokens":9999999947792,"jailed":[null,null,null,null],"status":["bonded","unbonding","bonded","unbonded"]}},{"ix":85,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":9,"t":54,"tokens":[13649,7565,9533,4178],"delegation":[12649,6565,8533,3178],"delegatorTokens":9999999947792,"jailed":[null,1000000000000047,null,null],"status":["bonded","unbonding","bonded","unbonded"]}},{"ix":86,"action":{"kind":"Undelegate","val":3,"amt":4188},"partialState":{"h":9,"t":54,"tokens":[13649,7565,9533,4178],"delegation":[12649,6565,8533,3178],"delegatorTokens":9999999947792}},{"ix":87,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":10,"t":60,"tokens":[13649,7565,9533,4178],"delegation":[12649,6565,8533,3178],"delegatorTokens":9999999947792,"jailed":[null,1000000000000047,null,null],"status":["bonded","unbonding","bonded","unbonded"]}},{"ix":88,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":89,"action":{"kind":"Undelegate","val":2,"amt":3336},"partialState":{"h":10,"t":60,"tokens":[13649,7565,6197,4178],"delegation":[12649,6565,5197,3178],"delegatorTokens":9999999947792}},{"ix":90,"action":{"kind":"Deliver","chain":"consumer","numPackets":3},"partialState":{"h":9,"t":54,"consumerPower":[6283,null,5731,null],"outstandingDowntime":[false,false,true,true]}},{"ix":91,"action":{"kind":"Undelegate","val":3,"amt":2951},"partialState":{"h":10,"t":60,"tokens":[13649,7565,6197,1227],"delegation":[12649,6565,5197,227],"delegatorTokens":9999999947792}},{"ix":92,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":11,"t":66,"tokens":[13649,7565,6197,1227],"delegation":[12649,6565,5197,227],"delegatorTokens":9999999947792,"jailed":[null,1000000000000047,null,null],"status":["bonded","unbonding","bonded","unbonded"]}},{"ix":93,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":94,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":12,"t":72,"tokens":[13649,7565,6197,1227],"delegation":[12649,6565,5197,227],"delegatorTokens":9999999947792,"jailed":[null,1000000000000047,null,null],"status":["bonded","unbonding","bonded","unbonded"]}},{"ix":95,"action":{"kind":"Undelegate","val":1,"amt":4749},"partialState":{"h":12,"t":72,"tokens":[13649,2816,6197,1227],"delegation":[12649,1816,5197,227],"delegatorTokens":9999999947792}},{"ix":96,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":97,"action":{"kind":"Deliver","chain":"consumer","numPackets":1},"partialState":{"h":9,"t":54,"consumerPower":[6283,null,5731,null],"outstandingDowntime":[false,false,true,true]}},{"ix":98,"action":{"kind":"Delegate","val":1,"amt":2734},"partialState":{"h":12,"t":72,"tokens":[13649,5550,6197,1227],"delegation":[12649,4550,5197,227],"delegatorTokens":9999999945058}},{"ix":99,"action":{"kind":"Undelegate","val":1,"amt":4023},"partialState":{"h":12,"t":72,"tokens":[13649,1527,6197,1227],"delegation":[12649,527,5197,227],"delegatorTokens":9999999945058}},{"ix":100,"action":{"kind":"Deliver","chain":"consumer","numPackets":6},"partialState":{"h":9,"t":54,"consumerPower":[6283,null,5731,null],"outstandingDowntime":[false,false,true,true]}},{"ix":101,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":102,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":13,"t":78,"tokens":[13649,1527,6197,1227],"delegation":[12649,527,5197,227],"delegatorTokens":9999999945058,"jailed":[null,1000000000000047,null,null],"status":["bonded","unbonding","bonded","unbonded"]}},{"ix":103,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":104,"action":{"kind":"Delegate","val":0,"amt":1517},"partialState":{"h":13,"t":78,"tokens":[15166,1527,6197,1227],"delegation":[14166,527,5197,227],"delegatorTokens":9999999943541}},{"ix":105,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":10,"t":60,"consumerPower":[13649,null,6197,null],"outstandingDowntime":[false,false,true,true]}},{"ix":106,"action":{"kind":"Delegate","val":0,"amt":4703},"partialState":{"h":13,"t":78,"tokens":[19869,1527,6197,1227],"delegation":[18869,527,5197,227],"delegatorTokens":9999999938838}},{"ix":107,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":14,"t":84,"tokens":[19869,1527,6197,1227],"delegation":[18869,527,5197,227],"delegatorTokens":9999999938838,"jailed":[null,1000000000000047,null,null],"status":["bonded","unbonding","bonded","unbonded"]}},{"ix":108,"action":{"kind":"Undelegate","val":2,"amt":2684},"partialState":{"h":14,"t":84,"tokens":[19869,1527,3513,1227],"delegation":[18869,527,2513,227],"delegatorTokens":9999999938838}},{"ix":109,"action":{"kind":"Deliver","chain":"consumer","numPackets":1},"partialState":{"h":10,"t":60,"consumerPower":[13649,null,6197,null],"outstandingDowntime":[false,false,true,true]}},{"ix":110,"action":{"kind":"Deliver","chain":"consumer","numPackets":1},"partialState":{"h":10,"t":60,"consumerPower":[13649,null,6197,null],"outstandingDowntime":[false,false,true,true]}},{"ix":111,"action":{"kind":"Deliver","chain":"provider","numPackets":1},"partialState":{"h":14,"t":84,"tokens":[19869,1527,3513,1227],"delegation":[18869,527,2513,227],"delegatorTokens":9999999938838,"jailed":[null,1000000000000047,null,null],"status":["bonded","unbonding","bonded","unbonded"]}},{"ix":112,"action":{"kind":"Deliver","chain":"provider","numPackets":6},"partialState":{"h":14,"t":84,"tokens":[19869,1527,3513,1227],"delegation":[18869,527,2513,227],"delegatorTokens":9999999938838,"jailed":[null,1000000000000047,null,null],"status":["bonded","unbonding","bonded","unbonded"]}},{"ix":113,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":11,"t":66,"consumerPower":[13649,null,6197,null],"outstandingDowntime":[false,false,true,true]}},{"ix":114,"action":{"kind":"Deliver","chain":"consumer","numPackets":1},"partialState":{"h":11,"t":66,"consumerPower":[13649,null,6197,null],"outstandingDowntime":[false,false,true,true]}},{"ix":115,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":15,"t":90,"tokens":[19869,1527,3513,1227],"delegation":[18869,527,2513,227],"delegatorTokens":9999999938838,"jailed":[null,1000000000000047,null,null],"status":["bonded","unbonding","bonded","unbonded"]}},{"ix":116,"action":{"kind":"Delegate","val":1,"amt":3156},"partialState":{"h":15,"t":90,"tokens":[19869,4683,3513,1227],"delegation":[18869,3683,2513,227],"delegatorTokens":9999999935682}},{"ix":117,"action":{"kind":"Undelegate","val":0,"amt":1788},"partialState":{"h":15,"t":90,"tokens":[18081,4683,3513,1227],"delegation":[17081,3683,2513,227],"delegatorTokens":9999999935682}},{"ix":118,"action":{"kind":"Undelegate","val":3,"amt":1986},"partialState":{"h":15,"t":90,"tokens":[18081,4683,3513,1227],"delegation":[17081,3683,2513,227],"delegatorTokens":9999999935682}},{"ix":119,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":12,"t":72,"consumerPower":[13649,null,6197,null],"outstandingDowntime":[false,false,true,true]}},{"ix":120,"action":{"kind":"Delegate","val":0,"amt":3129},"partialState":{"h":15,"t":90,"tokens":[21210,4683,3513,1227],"delegation":[20210,3683,2513,227],"delegatorTokens":9999999932553}},{"ix":121,"action":{"kind":"Deliver","chain":"provider","numPackets":1},"partialState":{"h":15,"t":90,"tokens":[21210,4683,3513,1227],"delegation":[20210,3683,2513,227],"delegatorTokens":9999999932553,"jailed":[null,1000000000000047,null,null],"status":["bonded","unbonding","bonded","unbonded"]}},{"ix":122,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":123,"action":{"kind":"Deliver","chain":"consumer","numPackets":1},"partialState":{"h":12,"t":72,"consumerPower":[13649,null,6197,null],"outstandingDowntime":[false,false,true,true]}},{"ix":124,"action":{"kind":"Delegate","val":3,"amt":4125},"partialState":{"h":15,"t":90,"tokens":[21210,4683,3513,5352],"delegation":[20210,3683,2513,4352],"delegatorTokens":9999999928428}},{"ix":125,"action":{"kind":"Deliver","chain":"provider","numPackets":6},"partialState":{"h":15,"t":90,"tokens":[21210,4683,3513,5352],"delegation":[20210,3683,2513,4352],"delegatorTokens":9999999928428,"jailed":[null,1000000000000047,null,null],"status":["bonded","unbonding","bonded","unbonded"]}},{"ix":126,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":13,"t":78,"consumerPower":[19869,null,6197,null],"outstandingDowntime":[false,false,true,true]}},{"ix":127,"action":{"kind":"Undelegate","val":3,"amt":4719},"partialState":{"h":15,"t":90,"tokens":[21210,4683,3513,5352],"delegation":[20210,3683,2513,4352],"delegatorTokens":9999999928428}},{"ix":128,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":129,"action":{"kind":"Delegate","val":0,"amt":4926},"partialState":{"h":15,"t":90,"tokens":[26136,4683,3513,5352],"delegation":[25136,3683,2513,4352],"delegatorTokens":9999999923502}},{"ix":130,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":131,"action":{"kind":"Deliver","chain":"provider","numPackets":3},"partialState":{"h":15,"t":90,"tokens":[26136,4683,3513,5352],"delegation":[25136,3683,2513,4352],"delegatorTokens":9999999923502,"jailed":[null,1000000000000047,null,null],"status":["bonded","unbonding","bonded","unbonded"]}},{"ix":132,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":133,"action":{"kind":"Deliver","chain":"provider","numPackets":4},"partialState":{"h":15,"t":90,"tokens":[26136,4683,3513,5352],"delegation":[25136,3683,2513,4352],"delegatorTokens":9999999923502,"jailed":[null,1000000000000047,null,null],"status":["bonded","unbonding","bonded","unbonded"]}},{"ix":134,"action":{"kind":"Undelegate","val":1,"amt":3809},"partialState":{"h":15,"t":90,"tokens":[26136,4683,3513,5352],"delegation":[25136,3683,2513,4352],"delegatorTokens":9999999923502}},{"ix":135,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":14,"t":84,"consumerPower":[19869,null,6197,null],"outstandingDowntime":[false,false,true,true]}},{"ix":136,"action":{"kind":"Deliver","chain":"consumer","numPackets":6},"partialState":{"h":14,"t":84,"consumerPower":[19869,null,6197,null],"outstandingDowntime":[false,false,true,true]}},{"ix":137,"action":{"kind":"Deliver","chain":"consumer","numPackets":4},"partialState":{"h":14,"t":84,"consumerPower":[19869,null,6197,null],"outstandingDowntime":[false,false,true,true]}},{"ix":138,"action":{"kind":"Undelegate","val":2,"amt":1852},"partialState":{"h":15,"t":90,"tokens":[26136,4683,1661,5352],"delegation":[25136,3683,661,4352],"delegatorTokens":9999999923502}},{"ix":139,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":15,"t":90,"consumerPower":[19869,null,6197,null],"outstandingDowntime":[false,false,true,true]}},{"ix":140,"action":{"kind":"Deliver","chain":"provider","numPackets":1},"partialState":{"h":15,"t":90,"tokens":[26136,4683,1661,5352],"delegation":[25136,3683,661,4352],"delegatorTokens":9999999923502,"jailed":[null,1000000000000047,null,null],"status":["bonded","unbonding","bonded","unbonded"]}},{"ix":141,"action":{"kind":"Undelegate","val":1,"amt":1402},"partialState":{"h":15,"t":90,"tokens":[26136,3281,1661,5352],"delegation":[25136,2281,661,4352],"delegatorTokens":9999999923502}},{"ix":142,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":143,"action":{"kind":"Delegate","val":2,"amt":2819},"partialState":{"h":15,"t":90,"tokens":[26136,3281,4480,5352],"delegation":[25136,2281,3480,4352],"delegatorTokens":9999999920683}},{"ix":144,"action":{"kind":"Delegate","val":2,"amt":2238},"partialState":{"h":15,"t":90,"tokens":[26136,3281,6718,5352],"delegation":[25136,2281,5718,4352],"delegatorTokens":9999999918445}},{"ix":145,"action":{"kind":"Undelegate","val":3,"amt":1699},"partialState":{"h":15,"t":90,"tokens":[26136,3281,6718,3653],"delegation":[25136,2281,5718,2653],"delegatorTokens":9999999918445}},{"ix":146,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":147,"action":{"kind":"Deliver","chain":"provider","numPackets":3},"partialState":{"h":15,"t":90,"tokens":[26136,3281,6718,3653],"delegation":[25136,2281,5718,2653],"delegatorTokens":9999999918445,"jailed":[null,1000000000000047,null,null],"status":["bonded","unbonding","bonded","unbonded"]}},{"ix":148,"action":{"kind":"Delegate","val":0,"amt":1473},"partialState":{"h":15,"t":90,"tokens":[27609,3281,6718,3653],"delegation":[26609,2281,5718,2653],"delegatorTokens":9999999916972}},{"ix":149,"action":{"kind":"Undelegate","val":2,"amt":2684},"partialState":{"h":15,"t":90,"tokens":[27609,3281,4034,3653],"delegation":[26609,2281,3034,2653],"delegatorTokens":9999999916972}},{"ix":150,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":16,"t":96,"consumerPower":[19869,null,6197,null],"outstandingDowntime":[false,false,true,true]}},{"ix":151,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":152,"action":{"kind":"Deliver","chain":"consumer","numPackets":2},"partialState":{"h":16,"t":96,"consumerPower":[19869,null,6197,null],"outstandingDowntime":[false,false,true,true]}},{"ix":153,"action":{"kind":"Deliver","chain":"consumer","numPackets":6},"partialState":{"h":16,"t":96,"consumerPower":[19869,null,6197,null],"outstandingDowntime":[false,false,true,true]}},{"ix":154,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":17,"t":102,"consumerPower":[19869,null,6197,null],"outstandingDowntime":[false,false,true,true]}},{"ix":155,"action":{"kind":"Undelegate","val":1,"amt":4164},"partialState":{"h":15,"t":90,"tokens":[27609,3281,4034,3653],"delegation":[26609,2281,3034,2653],"delegatorTokens":9999999916972}},{"ix":156,"action":{"kind":"Deliver","chain":"consumer","numPackets":5},"partialState":{"h":17,"t":102,"consumerPower":[19869,null,6197,null],"outstandingDowntime":[false,false,true,true]}},{"ix":157,"action":{"kind":"Deliver","chain":"provider","numPackets":4},"partialState":{"h":15,"t":90,"tokens":[27609,3281,4034,3653],"delegation":[26609,2281,3034,2653],"delegatorTokens":9999999916972,"jailed":[null,1000000000000047,null,null],"status":["bonded","unbonding","bonded","unbonded"]}},{"ix":158,"action":{"kind":"Delegate","val":2,"amt":1962},"partialState":{"h":15,"t":90,"tokens":[27609,3281,5996,3653],"delegation":[26609,2281,4996,2653],"delegatorTokens":9999999915010}},{"ix":159,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":16,"t":96,"tokens":[27609,3281,5996,3653],"delegation":[26609,2281,4996,2653],"delegatorTokens":9999999915010,"jailed":[null,1000000000000047,null,null],"status":["bonded","unbonding","bonded","unbonded"]}},{"ix":160,"action":{"kind":"Deliver","chain":"provider","numPackets":4},"partialState":{"h":16,"t":96,"tokens":[27609,3281,5996,3653],"delegation":[26609,2281,4996,2653],"delegatorTokens":9999999915010,"jailed":[null,1000000000000047,null,null],"status":["bonded","unbonding","bonded","unbonded"]}},{"ix":161,"action":{"kind":"Delegate","val":0,"amt":1300},"partialState":{"h":16,"t":96,"tokens":[28909,3281,5996,3653],"delegation":[27909,2281,4996,2653],"delegatorTokens":9999999913710}},{"ix":162,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":163,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":18,"t":108,"consumerPower":[19869,null,6197,null],"outstandingDowntime":[false,false,true,true]}},{"ix":164,"action":{"kind":"Delegate","val":2,"amt":1144},"partialState":{"h":16,"t":96,"tokens":[28909,3281,7140,3653],"delegation":[27909,2281,6140,2653],"delegatorTokens":9999999912566}},{"ix":165,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":166,"action":{"kind":"Undelegate","val":2,"amt":3523},"partialState":{"h":16,"t":96,"tokens":[28909,3281,3617,3653],"delegation":[27909,2281,2617,2653],"delegatorTokens":9999999912566}},{"ix":167,"action":{"kind":"Undelegate","val":2,"amt":1797},"partialState":{"h":16,"t":96,"tokens":[28909,3281,1820,3653],"delegation":[27909,2281,820,2653],"delegatorTokens":9999999912566}},{"ix":168,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":17,"t":102,"tokens":[28909,3281,1820,3653],"delegation":[27909,2281,820,2653],"delegatorTokens":9999999913941,"jailed":[null,1000000000000047,null,null],"status":["bonded","unbonding","unbonding","bonded"]}},{"ix":169,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":170,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":171,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":19,"t":114,"consumerPower":[19869,null,6197,null],"outstandingDowntime":[false,false,true,true]}},{"ix":172,"action":{"kind":"Undelegate","val":3,"amt":4005},"partialState":{"h":17,"t":102,"tokens":[28909,3281,1820,3653],"delegation":[27909,2281,820,2653],"delegatorTokens":9999999913941}},{"ix":173,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":174,"action":{"kind":"Deliver","chain":"consumer","numPackets":2},"partialState":{"h":19,"t":114,"consumerPower":[19869,null,6197,null],"outstandingDowntime":[false,false,true,true]}},{"ix":175,"action":{"kind":"Deliver","chain":"consumer","numPackets":2},"partialState":{"h":19,"t":114,"consumerPower":[19869,null,6197,null],"outstandingDowntime":[false,false,true,true]}},{"ix":176,"action":{"kind":"Delegate","val":3,"amt":1800},"partialState":{"h":17,"t":102,"tokens":[28909,3281,1820,5453],"delegation":[27909,2281,820,4453],"delegatorTokens":9999999912141}},{"ix":177,"action":{"kind":"Deliver","chain":"provider","numPackets":6},"partialState":{"h":17,"t":102,"tokens":[28909,3281,1820,5453],"delegation":[27909,2281,820,4453],"delegatorTokens":9999999912141,"jailed":[null,1000000000000047,null,null],"status":["bonded","unbonding","unbonding","bonded"]}},{"ix":178,"action":{"kind":"Undelegate","val":1,"amt":2010},"partialState":{"h":17,"t":102,"tokens":[28909,1271,1820,5453],"delegation":[27909,271,820,4453],"delegatorTokens":9999999912141}},{"ix":179,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":180,"action":{"kind":"Delegate","val":0,"amt":4216},"partialState":{"h":17,"t":102,"tokens":[33125,1271,1820,5453],"delegation":[32125,271,820,4453],"delegatorTokens":9999999907925}},{"ix":181,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":18,"t":108,"tokens":[33125,1271,1820,5453],"delegation":[32125,271,820,4453],"delegatorTokens":9999999907925,"jailed":[null,1000000000000047,null,null],"status":["bonded","unbonded","unbonding","bonded"]}},{"ix":182,"action":{"kind":"Undelegate","val":0,"amt":4797},"partialState":{"h":18,"t":108,"tokens":[28328,1271,1820,5453],"delegation":[27328,271,820,4453],"delegatorTokens":9999999907925}},{"ix":183,"action":{"kind":"Delegate","val":0,"amt":1171},"partialState":{"h":18,"t":108,"tokens":[29499,1271,1820,5453],"delegation":[28499,271,820,4453],"delegatorTokens":9999999906754}},{"ix":184,"action":{"kind":"Deliver","chain":"provider","numPackets":4},"partialState":{"h":18,"t":108,"tokens":[29499,1271,1820,5453],"delegation":[28499,271,820,4453],"delegatorTokens":9999999906754,"jailed":[null,1000000000000047,null,null],"status":["bonded","unbonded","unbonding","bonded"]}},{"ix":185,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":186,"action":{"kind":"Deliver","chain":"consumer","numPackets":4},"partialState":{"h":19,"t":114,"consumerPower":[19869,null,6197,null],"outstandingDowntime":[false,false,true,true]}},{"ix":187,"action":{"kind":"Delegate","val":3,"amt":3090},"partialState":{"h":18,"t":108,"tokens":[29499,1271,1820,8543],"delegation":[28499,271,820,7543],"delegatorTokens":9999999903664}},{"ix":188,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":189,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":190,"action":{"kind":"Undelegate","val":0,"amt":1123},"partialState":{"h":18,"t":108,"tokens":[28376,1271,1820,8543],"delegation":[27376,271,820,7543],"delegatorTokens":9999999903664}},{"ix":191,"action":{"kind":"Undelegate","val":2,"amt":3010},"partialState":{"h":18,"t":108,"tokens":[28376,1271,1820,8543],"delegation":[27376,271,820,7543],"delegatorTokens":9999999903664}},{"ix":192,"action":{"kind":"Delegate","val":3,"amt":1213},"partialState":{"h":18,"t":108,"tokens":[28376,1271,1820,9756],"delegation":[27376,271,820,8756],"delegatorTokens":9999999902451}},{"ix":193,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":19,"t":114,"tokens":[28376,1271,1820,9756],"delegation":[27376,271,820,8756],"delegatorTokens":9999999902451,"jailed":[null,1000000000000047,null,null],"status":["bonded","unbonded","unbonding","bonded"]}},{"ix":194,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":195,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":20,"t":120,"tokens":[28376,1271,1820,9756],"delegation":[27376,271,820,8756],"delegatorTokens":9999999902451,"jailed":[null,1000000000000047,null,null],"status":["bonded","unbonded","unbonding","bonded"]}},{"ix":196,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":21,"t":126,"tokens":[28376,1271,1820,9756],"delegation":[27376,271,820,8756],"delegatorTokens":9999999902451,"jailed":[null,1000000000000047,null,null],"status":["bonded","unbonded","unbonding","bonded"]}},{"ix":197,"action":{"kind":"Deliver","chain":"consumer","numPackets":3},"partialState":{"h":19,"t":114,"consumerPower":[19869,null,6197,null],"outstandingDowntime":[false,false,true,true]}},{"ix":198,"action":{"kind":"Deliver","chain":"provider","numPackets":4},"partialState":{"h":21,"t":126,"tokens":[28376,1271,1820,9756],"delegation":[27376,271,820,8756],"delegatorTokens":9999999902451,"jailed":[null,1000000000000047,null,null],"status":["bonded","unbonded","unbonding","bonded"]}},{"ix":199,"action":{"kind":"Undelegate","val":0,"amt":4300},"partialState":{"h":21,"t":126,"tokens":[24076,1271,1820,9756],"delegation":[23076,271,820,8756],"delegatorTokens":9999999902451}}],"events":["insufficient_shares","send_downtime_slash_request","insufficient_shares","insufficient_shares","send_downtime_slash_request","downtime_slash_request_outstanding","receive_slash_request_unbonded","send_vsc_not_because_change","send_vsc_without_downtime_ack","send_downtime_slash_request","insufficient_shares","more_than_one_third_val_power_change","send_vsc_without_downtime_ack","insufficient_shares","consumer_update_val","consumer_del_val","consumer_add_val","insufficient_shares","insufficient_shares","receive_slash_request_unbonded","send_vsc_without_downtime_ack","receive_downtime_slash_request","jail","send_vsc_with_downtime_ack","insufficient_shares","receive_downtime_slash_ack","send_vsc_without_downtime_ack","send_vsc_not_because_change","send_vsc_without_downtime_ack","consumer_update_val","consumer_update_val","send_vsc_without_downtime_ack","send_vsc_without_downtime_ack","insufficient_shares","consumer_update_val","insufficient_shares","insufficient_shares","consumer_send_maturation","consumer_send_maturation","insufficient_shares","set_undel_hold_false","set_unval_hold_false","send_vsc_without_downtime_ack","complete_undel_in_endblock","send_vsc_without_downtime_ack","consumer_send_maturation","consumer_send_maturation","consumer_send_maturation","insufficient_shares","complete_unval_in_endblock","send_vsc_without_downtime_ack","insufficient_shares","send_vsc_without_downtime_ack","some_undels_expired_but_not_completed","some_undels_expired_but_not_completed"]},{"meta":{"commit":"7ffd0c04e4205cbc9caf212abfe6c59ee43153bf"},"constants":{"P":"provider","C":"consumer","UNBONDING_SECONDS_P":70,"UNBONDING_SECONDS_C":50,"TRUSTING_SECONDS":49,"NUM_VALIDATORS":4,"MAX_VALIDATORS":2,"SLASH_DOUBLESIGN":0,"SLASH_DOWNTIME":0,"JAIL_SECONDS":999999999999999,"BLOCK_SECONDS":6,"INITIAL_DELEGATOR_TOKENS":10000000000000,"DELEGATE_AMT_MIN":1000,"DELEGATE_AMT_MAX":5000,"UNDELEGATE_AMT_MIN":1000,"UNDELEGATE_AMT_MAX":5000,"ISDOWNTIME_PROBABILITY":0.5,"MAX_NUM_PACKETS_FOR_DELIVER":6},"actions":[{"ix":0,"action":{"kind":"Delegate","val":0,"amt":1949},"partialState":{"h":1,"t":6,"tokens":[6949,4000,3000,2000],"delegation":[5949,3000,2000,1000],"delegatorTokens":9999999998051}},{"ix":1,"action":{"kind":"Delegate","val":0,"amt":2852},"partialState":{"h":1,"t":6,"tokens":[9801,4000,3000,2000],"delegation":[8801,3000,2000,1000],"delegatorTokens":9999999995199}},{"ix":2,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":2,"t":12,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":3,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":3,"t":18,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":4,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":5,"action":{"kind":"ConsumerSlash","val":3,"infractionHeight":2,"isDowntime":true},"partialState":{"h":3,"t":18,"outstandingDowntime":[false,false,false,true]}},{"ix":6,"action":{"kind":"Undelegate","val":3,"amt":4012},"partialState":{"h":1,"t":6,"tokens":[9801,4000,3000,2000],"delegation":[8801,3000,2000,1000],"delegatorTokens":9999999995199}},{"ix":7,"action":{"kind":"Delegate","val":1,"amt":2435},"partialState":{"h":1,"t":6,"tokens":[9801,6435,3000,2000],"delegation":[8801,5435,2000,1000],"delegatorTokens":9999999992764}},{"ix":8,"action":{"kind":"Deliver","chain":"provider","numPackets":1},"partialState":{"h":1,"t":6,"tokens":[9801,6435,3000,2000],"delegation":[8801,5435,2000,1000],"delegatorTokens":9999999992764,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":9,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":2,"t":12,"tokens":[9801,6435,3000,2000],"delegation":[8801,5435,2000,1000],"delegatorTokens":9999999992764,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":10,"action":{"kind":"Deliver","chain":"consumer","numPackets":3},"partialState":{"h":3,"t":18,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,false,false,true]}},{"ix":11,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":4,"t":24,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,false,false,true]}},{"ix":12,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":3,"t":18,"tokens":[9801,6435,3000,2000],"delegation":[8801,5435,2000,1000],"delegatorTokens":9999999992764,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":13,"action":{"kind":"ConsumerSlash","val":2,"infractionHeight":0,"isDowntime":true},"partialState":{"h":4,"t":24,"outstandingDowntime":[false,false,true,true]}},{"ix":14,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":4,"t":24,"tokens":[9801,6435,3000,2000],"delegation":[8801,5435,2000,1000],"delegatorTokens":9999999992764,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":15,"action":{"kind":"Delegate","val":0,"amt":1316},"partialState":{"h":4,"t":24,"tokens":[11117,6435,3000,2000],"delegation":[10117,5435,2000,1000],"delegatorTokens":9999999991448}},{"ix":16,"action":{"kind":"ConsumerSlash","val":3,"infractionHeight":1,"isDowntime":true},"partialState":{"h":4,"t":24,"outstandingDowntime":[false,false,true,true]}},{"ix":17,"action":{"kind":"Deliver","chain":"consumer","numPackets":2},"partialState":{"h":4,"t":24,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,false,true,true]}},{"ix":18,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":5,"t":30,"tokens":[11117,6435,3000,2000],"delegation":[10117,5435,2000,1000],"delegatorTokens":9999999991448,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":19,"action":{"kind":"Delegate","val":1,"amt":1637},"partialState":{"h":5,"t":30,"tokens":[11117,8072,3000,2000],"delegation":[10117,7072,2000,1000],"delegatorTokens":9999999989811}},{"ix":20,"action":{"kind":"ConsumerSlash","val":1,"infractionHeight":0,"isDowntime":true},"partialState":{"h":4,"t":24,"outstandingDowntime":[false,true,true,true]}},{"ix":21,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":22,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":5,"t":30,"consumerPower":[9801,6435,null,null],"outstandingDowntime":[false,true,true,true]}},{"ix":23,"action":{"kind":"Deliver","chain":"consumer","numPackets":3},"partialState":{"h":5,"t":30,"consumerPower":[9801,6435,null,null],"outstandingDowntime":[false,true,true,true]}},{"ix":24,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":25,"action":{"kind":"Delegate","val":1,"amt":4787},"partialState":{"h":5,"t":30,"tokens":[11117,12859,3000,2000],"delegation":[10117,11859,2000,1000],"delegatorTokens":9999999985024}},{"ix":26,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":27,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":6,"t":36,"tokens":[11117,12859,3000,2000],"delegation":[10117,11859,2000,1000],"delegatorTokens":9999999985024,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":28,"action":{"kind":"Deliver","chain":"consumer","numPackets":2},"partialState":{"h":5,"t":30,"consumerPower":[9801,6435,null,null],"outstandingDowntime":[false,true,true,true]}},{"ix":29,"action":{"kind":"Delegate","val":0,"amt":1094},"partialState":{"h":6,"t":36,"tokens":[12211,12859,3000,2000],"delegation":[11211,11859,2000,1000],"delegatorTokens":9999999983930}},{"ix":30,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":31,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":7,"t":42,"tokens":[12211,12859,3000,2000],"delegation":[11211,11859,2000,1000],"delegatorTokens":9999999983930,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":32,"action":{"kind":"Deliver","chain":"provider","numPackets":4},"partialState":{"h":7,"t":42,"tokens":[12211,12859,3000,2000],"delegation":[11211,11859,2000,1000],"delegatorTokens":9999999983930,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":33,"action":{"kind":"Deliver","chain":"consumer","numPackets":2},"partialState":{"h":5,"t":30,"consumerPower":[9801,6435,null,null],"outstandingDowntime":[false,true,true,true]}},{"ix":34,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":6,"t":36,"consumerPower":[11117,12859,null,null],"outstandingDowntime":[false,true,true,true]}},{"ix":35,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":36,"action":{"kind":"Delegate","val":0,"amt":3854},"partialState":{"h":7,"t":42,"tokens":[16065,12859,3000,2000],"delegation":[15065,11859,2000,1000],"delegatorTokens":9999999980076}},{"ix":37,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":38,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":39,"action":{"kind":"Undelegate","val":2,"amt":4295},"partialState":{"h":7,"t":42,"tokens":[16065,12859,3000,2000],"delegation":[15065,11859,2000,1000],"delegatorTokens":9999999980076}},{"ix":40,"action":{"kind":"Delegate","val":3,"amt":1407},"partialState":{"h":7,"t":42,"tokens":[16065,12859,3000,3407],"delegation":[15065,11859,2000,2407],"delegatorTokens":9999999978669}},{"ix":41,"action":{"kind":"Deliver","chain":"provider","numPackets":1},"partialState":{"h":7,"t":42,"tokens":[16065,12859,3000,3407],"delegation":[15065,11859,2000,2407],"delegatorTokens":9999999978669,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":42,"action":{"kind":"Undelegate","val":1,"amt":3569},"partialState":{"h":7,"t":42,"tokens":[16065,9290,3000,3407],"delegation":[15065,8290,2000,2407],"delegatorTokens":9999999978669}},{"ix":43,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":8,"t":48,"tokens":[16065,9290,3000,3407],"delegation":[15065,8290,2000,2407],"delegatorTokens":9999999978669,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":44,"action":{"kind":"Deliver","chain":"provider","numPackets":6},"partialState":{"h":8,"t":48,"tokens":[16065,9290,3000,3407],"delegation":[15065,8290,2000,2407],"delegatorTokens":9999999978669,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":45,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":9,"t":54,"tokens":[16065,9290,3000,3407],"delegation":[15065,8290,2000,2407],"delegatorTokens":9999999978669,"jailed":[null,1000000000000047,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":46,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":7,"t":42,"consumerPower":[11117,12859,null,null],"outstandingDowntime":[false,true,true,true]}},{"ix":47,"action":{"kind":"Deliver","chain":"provider","numPackets":4},"partialState":{"h":9,"t":54,"tokens":[16065,9290,3000,3407],"delegation":[15065,8290,2000,2407],"delegatorTokens":9999999978669,"jailed":[null,1000000000000047,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":48,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":8,"t":48,"consumerPower":[11117,12859,null,null],"outstandingDowntime":[false,true,true,true]}},{"ix":49,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":9,"t":54,"consumerPower":[11117,12859,null,null],"outstandingDowntime":[false,true,true,true]}},{"ix":50,"action":{"kind":"Delegate","val":0,"amt":3383},"partialState":{"h":9,"t":54,"tokens":[19448,9290,3000,3407],"delegation":[18448,8290,2000,2407],"delegatorTokens":9999999975286}},{"ix":51,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":10,"t":60,"consumerPower":[11117,12859,null,null],"outstandingDowntime":[false,true,true,true]}},{"ix":52,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":53,"action":{"kind":"Delegate","val":0,"amt":2191},"partialState":{"h":9,"t":54,"tokens":[21639,9290,3000,3407],"delegation":[20639,8290,2000,2407],"delegatorTokens":9999999973095}},{"ix":54,"action":{"kind":"Undelegate","val":2,"amt":1857},"partialState":{"h":9,"t":54,"tokens":[21639,9290,1143,3407],"delegation":[20639,8290,143,2407],"delegatorTokens":9999999973095}},{"ix":55,"action":{"kind":"Delegate","val":0,"amt":3490},"partialState":{"h":9,"t":54,"tokens":[25129,9290,1143,3407],"delegation":[24129,8290,143,2407],"delegatorTokens":9999999969605}},{"ix":56,"action":{"kind":"Delegate","val":2,"amt":4250},"partialState":{"h":9,"t":54,"tokens":[25129,9290,5393,3407],"delegation":[24129,8290,4393,2407],"delegatorTokens":9999999965355}},{"ix":57,"action":{"kind":"Deliver","chain":"consumer","numPackets":6},"partialState":{"h":10,"t":60,"consumerPower":[11117,12859,null,null],"outstandingDowntime":[false,true,true,true]}},{"ix":58,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":59,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":10,"t":60,"tokens":[25129,9290,5393,3407],"delegation":[24129,8290,4393,2407],"delegatorTokens":9999999965355,"jailed":[null,1000000000000047,null,null],"status":["bonded","unbonding","bonded","unbonded"]}},{"ix":60,"action":{"kind":"Delegate","val":3,"amt":2440},"partialState":{"h":10,"t":60,"tokens":[25129,9290,5393,5847],"delegation":[24129,8290,4393,4847],"delegatorTokens":9999999962915}},{"ix":61,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":11,"t":66,"tokens":[25129,9290,5393,5847],"delegation":[24129,8290,4393,4847],"delegatorTokens":9999999962915,"jailed":[null,1000000000000047,null,null],"status":["bonded","unbonding","unbonding","bonded"]}},{"ix":62,"action":{"kind":"Undelegate","val":0,"amt":1198},"partialState":{"h":11,"t":66,"tokens":[23931,9290,5393,5847],"delegation":[22931,8290,4393,4847],"delegatorTokens":9999999962915}},{"ix":63,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":64,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":12,"t":72,"tokens":[23931,9290,5393,5847],"delegation":[22931,8290,4393,4847],"delegatorTokens":9999999962915,"jailed":[null,1000000000000047,null,null],"status":["bonded","unbonding","unbonding","bonded"]}},{"ix":65,"action":{"kind":"Undelegate","val":0,"amt":4268},"partialState":{"h":12,"t":72,"tokens":[19663,9290,5393,5847],"delegation":[18663,8290,4393,4847],"delegatorTokens":9999999962915}},{"ix":66,"action":{"kind":"Delegate","val":3,"amt":4408},"partialState":{"h":12,"t":72,"tokens":[19663,9290,5393,10255],"delegation":[18663,8290,4393,9255],"delegatorTokens":9999999958507}},{"ix":67,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":13,"t":78,"tokens":[19663,9290,5393,10255],"delegation":[18663,8290,4393,9255],"delegatorTokens":9999999958507,"jailed":[null,1000000000000047,null,null],"status":["bonded","unbonding","unbonding","bonded"]}},{"ix":68,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":69,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":70,"action":{"kind":"Undelegate","val":2,"amt":4232},"partialState":{"h":13,"t":78,"tokens":[19663,9290,1161,10255],"delegation":[18663,8290,161,9255],"delegatorTokens":9999999958507}},{"ix":71,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":14,"t":84,"tokens":[19663,9290,1161,10255],"delegation":[18663,8290,161,9255],"delegatorTokens":9999999958507,"jailed":[null,1000000000000047,null,null],"status":["bonded","unbonding","unbonding","bonded"]}},{"ix":72,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":73,"action":{"kind":"Undelegate","val":2,"amt":3903},"partialState":{"h":14,"t":84,"tokens":[19663,9290,1161,10255],"delegation":[18663,8290,161,9255],"delegatorTokens":9999999958507}},{"ix":74,"action":{"kind":"Undelegate","val":0,"amt":2851},"partialState":{"h":14,"t":84,"tokens":[16812,9290,1161,10255],"delegation":[15812,8290,161,9255],"delegatorTokens":9999999958507}},{"ix":75,"action":{"kind":"Deliver","chain":"consumer","numPackets":2},"partialState":{"h":10,"t":60,"consumerPower":[11117,12859,null,null],"outstandingDowntime":[false,false,true,true]}},{"ix":76,"action":{"kind":"Undelegate","val":3,"amt":1256},"partialState":{"h":14,"t":84,"tokens":[16812,9290,1161,8999],"delegation":[15812,8290,161,7999],"delegatorTokens":9999999958507}},{"ix":77,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":11,"t":66,"consumerPower":[25129,null,null,5847],"outstandingDowntime":[false,false,true,true]}},{"ix":78,"action":{"kind":"Deliver","chain":"consumer","numPackets":2},"partialState":{"h":11,"t":66,"consumerPower":[25129,null,null,5847],"outstandingDowntime":[false,false,true,true]}},{"ix":79,"action":{"kind":"Delegate","val":0,"amt":4087},"partialState":{"h":14,"t":84,"tokens":[20899,9290,1161,8999],"delegation":[19899,8290,161,7999],"delegatorTokens":9999999954420}},{"ix":80,"action":{"kind":"Delegate","val":3,"amt":2669},"partialState":{"h":14,"t":84,"tokens":[20899,9290,1161,11668],"delegation":[19899,8290,161,10668],"delegatorTokens":9999999951751}},{"ix":81,"action":{"kind":"Undelegate","val":1,"amt":1924},"partialState":{"h":14,"t":84,"tokens":[20899,7366,1161,11668],"delegation":[19899,6366,161,10668],"delegatorTokens":9999999951751}},{"ix":82,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":83,"action":{"kind":"Deliver","chain":"provider","numPackets":2},"partialState":{"h":14,"t":84,"tokens":[20899,7366,1161,11668],"delegation":[19899,6366,161,10668],"delegatorTokens":9999999951751,"jailed":[null,1000000000000047,null,null],"status":["bonded","unbonding","unbonding","bonded"]}},{"ix":84,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":15,"t":90,"tokens":[20899,7366,1161,11668],"delegation":[19899,6366,161,10668],"delegatorTokens":9999999951751,"jailed":[null,1000000000000047,null,null],"status":["bonded","unbonding","unbonding","bonded"]}},{"ix":85,"action":{"kind":"Undelegate","val":0,"amt":2957},"partialState":{"h":15,"t":90,"tokens":[17942,7366,1161,11668],"delegation":[16942,6366,161,10668],"delegatorTokens":9999999951751}},{"ix":86,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":12,"t":72,"consumerPower":[19663,null,null,10255],"outstandingDowntime":[false,false,true,true]}},{"ix":87,"action":{"kind":"Deliver","chain":"provider","numPackets":3},"partialState":{"h":15,"t":90,"tokens":[17942,7366,1161,11668],"delegation":[16942,6366,161,10668],"delegatorTokens":9999999951751,"jailed":[null,1000000000000047,null,null],"status":["bonded","unbonding","unbonding","bonded"]}},{"ix":88,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":89,"action":{"kind":"Delegate","val":1,"amt":4000},"partialState":{"h":15,"t":90,"tokens":[17942,11366,1161,11668],"delegation":[16942,10366,161,10668],"delegatorTokens":9999999947751}},{"ix":90,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":13,"t":78,"consumerPower":[19663,null,null,10255],"outstandingDowntime":[false,false,true,true]}},{"ix":91,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":14,"t":84,"consumerPower":[19663,null,null,10255],"outstandingDowntime":[false,false,true,true]}},{"ix":92,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":16,"t":96,"tokens":[17942,11366,1161,11668],"delegation":[16942,10366,161,10668],"delegatorTokens":9999999947751,"jailed":[null,1000000000000047,null,null],"status":["bonded","unbonding","unbonding","bonded"]}},{"ix":93,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":94,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":95,"action":{"kind":"Deliver","chain":"consumer","numPackets":4},"partialState":{"h":14,"t":84,"consumerPower":[19663,null,null,10255],"outstandingDowntime":[false,false,true,true]}},{"ix":96,"action":{"kind":"Deliver","chain":"consumer","numPackets":3},"partialState":{"h":14,"t":84,"consumerPower":[19663,null,null,10255],"outstandingDowntime":[false,false,true,true]}},{"ix":97,"action":{"kind":"Delegate","val":3,"amt":4130},"partialState":{"h":16,"t":96,"tokens":[17942,11366,1161,15798],"delegation":[16942,10366,161,14798],"delegatorTokens":9999999943621}},{"ix":98,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":99,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":100,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":17,"t":102,"tokens":[17942,11366,1161,15798],"delegation":[16942,10366,161,14798],"delegatorTokens":9999999943621,"jailed":[null,1000000000000047,null,null],"status":["bonded","unbonding","unbonding","bonded"]}},{"ix":101,"action":{"kind":"Undelegate","val":2,"amt":1186},"partialState":{"h":17,"t":102,"tokens":[17942,11366,1161,15798],"delegation":[16942,10366,161,14798],"delegatorTokens":9999999943621}},{"ix":102,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":15,"t":90,"consumerPower":[20899,null,null,11668],"outstandingDowntime":[false,false,true,true]}},{"ix":103,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":16,"t":96,"consumerPower":[20899,null,null,11668],"outstandingDowntime":[false,false,true,true]}},{"ix":104,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":105,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":106,"action":{"kind":"Delegate","val":3,"amt":2120},"partialState":{"h":17,"t":102,"tokens":[17942,11366,1161,17918],"delegation":[16942,10366,161,16918],"delegatorTokens":9999999941501}},{"ix":107,"action":{"kind":"Delegate","val":1,"amt":4731},"partialState":{"h":17,"t":102,"tokens":[17942,16097,1161,17918],"delegation":[16942,15097,161,16918],"delegatorTokens":9999999936770}},{"ix":108,"action":{"kind":"Undelegate","val":1,"amt":3775},"partialState":{"h":17,"t":102,"tokens":[17942,12322,1161,17918],"delegation":[16942,11322,161,16918],"delegatorTokens":9999999936770}},{"ix":109,"action":{"kind":"Undelegate","val":0,"amt":3227},"partialState":{"h":17,"t":102,"tokens":[14715,12322,1161,17918],"delegation":[13715,11322,161,16918],"delegatorTokens":9999999936770}},{"ix":110,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":111,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":18,"t":108,"tokens":[14715,12322,1161,17918],"delegation":[13715,11322,161,16918],"delegatorTokens":9999999936770,"jailed":[null,1000000000000047,null,null],"status":["bonded","unbonding","unbonding","bonded"]}},{"ix":112,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":113,"action":{"kind":"Undelegate","val":0,"amt":2366},"partialState":{"h":18,"t":108,"tokens":[12349,12322,1161,17918],"delegation":[11349,11322,161,16918],"delegatorTokens":9999999936770}},{"ix":114,"action":{"kind":"Delegate","val":3,"amt":1031},"partialState":{"h":18,"t":108,"tokens":[12349,12322,1161,18949],"delegation":[11349,11322,161,17949],"delegatorTokens":9999999935739}},{"ix":115,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":116,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":117,"action":{"kind":"Deliver","chain":"provider","numPackets":4},"partialState":{"h":18,"t":108,"tokens":[12349,12322,1161,18949],"delegation":[11349,11322,161,17949],"delegatorTokens":9999999935739,"jailed":[null,1000000000000047,null,null],"status":["bonded","unbonding","unbonding","bonded"]}},{"ix":118,"action":{"kind":"Deliver","chain":"provider","numPackets":3},"partialState":{"h":18,"t":108,"tokens":[12349,12322,1161,18949],"delegation":[11349,11322,161,17949],"delegatorTokens":9999999935739,"jailed":[null,1000000000000047,null,null],"status":["bonded","unbonding","unbonding","bonded"]}},{"ix":119,"action":{"kind":"Undelegate","val":3,"amt":2150},"partialState":{"h":18,"t":108,"tokens":[12349,12322,1161,16799],"delegation":[11349,11322,161,15799],"delegatorTokens":9999999935739}},{"ix":120,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":121,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":122,"action":{"kind":"Delegate","val":2,"amt":2164},"partialState":{"h":18,"t":108,"tokens":[12349,12322,3325,16799],"delegation":[11349,11322,2325,15799],"delegatorTokens":9999999933575}},{"ix":123,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":124,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":19,"t":114,"tokens":[12349,12322,3325,16799],"delegation":[11349,11322,2325,15799],"delegatorTokens":9999999933575,"jailed":[null,1000000000000047,null,null],"status":["bonded","unbonding","unbonding","bonded"]}},{"ix":125,"action":{"kind":"Delegate","val":2,"amt":3496},"partialState":{"h":19,"t":114,"tokens":[12349,12322,6821,16799],"delegation":[11349,11322,5821,15799],"delegatorTokens":9999999930079}},{"ix":126,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":17,"t":102,"consumerPower":[20899,null,null,11668],"outstandingDowntime":[false,false,true,true]}},{"ix":127,"action":{"kind":"Deliver","chain":"consumer","numPackets":6},"partialState":{"h":17,"t":102,"consumerPower":[20899,null,null,11668],"outstandingDowntime":[false,false,true,true]}},{"ix":128,"action":{"kind":"Delegate","val":2,"amt":3143},"partialState":{"h":19,"t":114,"tokens":[12349,12322,9964,16799],"delegation":[11349,11322,8964,15799],"delegatorTokens":9999999926936}},{"ix":129,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":130,"action":{"kind":"Deliver","chain":"provider","numPackets":1},"partialState":{"h":19,"t":114,"tokens":[12349,12322,9964,16799],"delegation":[11349,11322,8964,15799],"delegatorTokens":9999999926936,"jailed":[null,1000000000000047,null,null],"status":["bonded","unbonding","unbonding","bonded"]}},{"ix":131,"action":{"kind":"Deliver","chain":"provider","numPackets":3},"partialState":{"h":19,"t":114,"tokens":[12349,12322,9964,16799],"delegation":[11349,11322,8964,15799],"delegatorTokens":9999999926936,"jailed":[null,1000000000000047,null,null],"status":["bonded","unbonding","unbonding","bonded"]}},{"ix":132,"action":{"kind":"Deliver","chain":"consumer","numPackets":6},"partialState":{"h":17,"t":102,"consumerPower":[20899,null,null,11668],"outstandingDowntime":[false,false,true,true]}},{"ix":133,"action":{"kind":"Delegate","val":2,"amt":1422},"partialState":{"h":19,"t":114,"tokens":[12349,12322,11386,16799],"delegation":[11349,11322,10386,15799],"delegatorTokens":9999999925514}},{"ix":134,"action":{"kind":"Undelegate","val":3,"amt":4761},"partialState":{"h":19,"t":114,"tokens":[12349,12322,11386,12038],"delegation":[11349,11322,10386,11038],"delegatorTokens":9999999925514}},{"ix":135,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":20,"t":120,"tokens":[12349,12322,11386,12038],"delegation":[11349,11322,10386,11038],"delegatorTokens":9999999925514,"jailed":[null,1000000000000047,null,null],"status":["bonded","unbonding","unbonding","bonded"]}},{"ix":136,"action":{"kind":"Undelegate","val":0,"amt":4058},"partialState":{"h":20,"t":120,"tokens":[8291,12322,11386,12038],"delegation":[7291,11322,10386,11038],"delegatorTokens":9999999925514}},{"ix":137,"action":{"kind":"Delegate","val":0,"amt":2639},"partialState":{"h":20,"t":120,"tokens":[10930,12322,11386,12038],"delegation":[9930,11322,10386,11038],"delegatorTokens":9999999922875}},{"ix":138,"action":{"kind":"Undelegate","val":2,"amt":3056},"partialState":{"h":20,"t":120,"tokens":[10930,12322,8330,12038],"delegation":[9930,11322,7330,11038],"delegatorTokens":9999999922875}},{"ix":139,"action":{"kind":"Undelegate","val":2,"amt":4987},"partialState":{"h":20,"t":120,"tokens":[10930,12322,3343,12038],"delegation":[9930,11322,2343,11038],"delegatorTokens":9999999922875}},{"ix":140,"action":{"kind":"Delegate","val":1,"amt":3698},"partialState":{"h":20,"t":120,"tokens":[10930,16020,3343,12038],"delegation":[9930,15020,2343,11038],"delegatorTokens":9999999919177}},{"ix":141,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":142,"action":{"kind":"Deliver","chain":"consumer","numPackets":1},"partialState":{"h":17,"t":102,"consumerPower":[20899,null,null,11668],"outstandingDowntime":[false,false,true,true]}},{"ix":143,"action":{"kind":"Undelegate","val":3,"amt":1877},"partialState":{"h":20,"t":120,"tokens":[10930,16020,3343,10161],"delegation":[9930,15020,2343,9161],"delegatorTokens":9999999919177}},{"ix":144,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":18,"t":108,"consumerPower":[12349,null,null,16799],"outstandingDowntime":[false,false,true,true]}},{"ix":145,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":146,"action":{"kind":"Undelegate","val":0,"amt":1951},"partialState":{"h":20,"t":120,"tokens":[8979,16020,3343,10161],"delegation":[7979,15020,2343,9161],"delegatorTokens":9999999919177}},{"ix":147,"action":{"kind":"Delegate","val":1,"amt":2285},"partialState":{"h":20,"t":120,"tokens":[8979,18305,3343,10161],"delegation":[7979,17305,2343,9161],"delegatorTokens":9999999916892}},{"ix":148,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":21,"t":126,"tokens":[8979,18305,3343,10161],"delegation":[7979,17305,2343,9161],"delegatorTokens":9999999916892,"jailed":[null,1000000000000047,null,null],"status":["bonded","unbonding","unbonding","bonded"]}},{"ix":149,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":19,"t":114,"consumerPower":[12349,null,null,16799],"outstandingDowntime":[false,false,true,true]}},{"ix":150,"action":{"kind":"Deliver","chain":"provider","numPackets":6},"partialState":{"h":21,"t":126,"tokens":[8979,18305,3343,10161],"delegation":[7979,17305,2343,9161],"delegatorTokens":9999999916892,"jailed":[null,1000000000000047,null,null],"status":["bonded","unbonding","unbonding","bonded"]}},{"ix":151,"action":{"kind":"Deliver","chain":"consumer","numPackets":2},"partialState":{"h":19,"t":114,"consumerPower":[12349,null,null,16799],"outstandingDowntime":[false,false,true,true]}},{"ix":152,"action":{"kind":"Deliver","chain":"provider","numPackets":5},"partialState":{"h":21,"t":126,"tokens":[8979,18305,3343,10161],"delegation":[7979,17305,2343,9161],"delegatorTokens":9999999916892,"jailed":[null,1000000000000047,null,null],"status":["bonded","unbonding","unbonding","bonded"]}},{"ix":153,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":20,"t":120,"consumerPower":[12349,null,null,12038],"outstandingDowntime":[false,false,true,true]}},{"ix":154,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":155,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":22,"t":132,"tokens":[8979,18305,3343,10161],"delegation":[7979,17305,2343,9161],"delegatorTokens":9999999916892,"jailed":[null,1000000000000047,null,null],"status":["bonded","unbonding","unbonding","bonded"]}},{"ix":156,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":157,"action":{"kind":"Deliver","chain":"consumer","numPackets":3},"partialState":{"h":20,"t":120,"consumerPower":[12349,null,null,12038],"outstandingDowntime":[false,false,true,true]}},{"ix":158,"action":{"kind":"Undelegate","val":1,"amt":2800},"partialState":{"h":22,"t":132,"tokens":[8979,15505,3343,10161],"delegation":[7979,14505,2343,9161],"delegatorTokens":9999999916892}},{"ix":159,"action":{"kind":"Undelegate","val":0,"amt":3816},"partialState":{"h":22,"t":132,"tokens":[5163,15505,3343,10161],"delegation":[4163,14505,2343,9161],"delegatorTokens":9999999916892}},{"ix":160,"action":{"kind":"Undelegate","val":3,"amt":1474},"partialState":{"h":22,"t":132,"tokens":[5163,15505,3343,8687],"delegation":[4163,14505,2343,7687],"delegatorTokens":9999999916892}},{"ix":161,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":23,"t":138,"tokens":[5163,15505,3343,8687],"delegation":[4163,14505,2343,7687],"delegatorTokens":9999999916892,"jailed":[null,1000000000000047,null,null],"status":["bonded","unbonding","unbonding","bonded"]}},{"ix":162,"action":{"kind":"Deliver","chain":"provider","numPackets":3},"partialState":{"h":23,"t":138,"tokens":[5163,15505,3343,8687],"delegation":[4163,14505,2343,7687],"delegatorTokens":9999999916892,"jailed":[null,1000000000000047,null,null],"status":["bonded","unbonding","unbonding","bonded"]}},{"ix":163,"action":{"kind":"Deliver","chain":"provider","numPackets":4},"partialState":{"h":23,"t":138,"tokens":[5163,15505,3343,8687],"delegation":[4163,14505,2343,7687],"delegatorTokens":9999999916892,"jailed":[null,1000000000000047,null,null],"status":["bonded","unbonding","unbonding","bonded"]}},{"ix":164,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":165,"action":{"kind":"Deliver","chain":"provider","numPackets":2},"partialState":{"h":23,"t":138,"tokens":[5163,15505,3343,8687],"delegation":[4163,14505,2343,7687],"delegatorTokens":9999999916892,"jailed":[null,1000000000000047,null,null],"status":["bonded","unbonding","unbonding","bonded"]}},{"ix":166,"action":{"kind":"Delegate","val":3,"amt":4356},"partialState":{"h":23,"t":138,"tokens":[5163,15505,3343,13043],"delegation":[4163,14505,2343,12043],"delegatorTokens":9999999912536}},{"ix":167,"action":{"kind":"Undelegate","val":3,"amt":2471},"partialState":{"h":23,"t":138,"tokens":[5163,15505,3343,10572],"delegation":[4163,14505,2343,9572],"delegatorTokens":9999999912536}},{"ix":168,"action":{"kind":"Delegate","val":2,"amt":4516},"partialState":{"h":23,"t":138,"tokens":[5163,15505,7859,10572],"delegation":[4163,14505,6859,9572],"delegatorTokens":9999999908020}},{"ix":169,"action":{"kind":"Delegate","val":3,"amt":4485},"partialState":{"h":23,"t":138,"tokens":[5163,15505,7859,15057],"delegation":[4163,14505,6859,14057],"delegatorTokens":9999999903535}},{"ix":170,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":24,"t":144,"tokens":[5163,15505,7859,15057],"delegation":[4163,14505,6859,14057],"delegatorTokens":9999999903535,"jailed":[null,1000000000000047,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":171,"action":{"kind":"Deliver","chain":"provider","numPackets":5},"partialState":{"h":24,"t":144,"tokens":[5163,15505,7859,15057],"delegation":[4163,14505,6859,14057],"delegatorTokens":9999999903535,"jailed":[null,1000000000000047,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":172,"action":{"kind":"Deliver","chain":"provider","numPackets":6},"partialState":{"h":24,"t":144,"tokens":[5163,15505,7859,15057],"delegation":[4163,14505,6859,14057],"delegatorTokens":9999999903535,"jailed":[null,1000000000000047,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":173,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":174,"action":{"kind":"Deliver","chain":"provider","numPackets":2},"partialState":{"h":24,"t":144,"tokens":[5163,15505,7859,15057],"delegation":[4163,14505,6859,14057],"delegatorTokens":9999999903535,"jailed":[null,1000000000000047,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":175,"action":{"kind":"Delegate","val":2,"amt":2885},"partialState":{"h":24,"t":144,"tokens":[5163,15505,10744,15057],"delegation":[4163,14505,9744,14057],"delegatorTokens":9999999900650}},{"ix":176,"action":{"kind":"Delegate","val":2,"amt":2760},"partialState":{"h":24,"t":144,"tokens":[5163,15505,13504,15057],"delegation":[4163,14505,12504,14057],"delegatorTokens":9999999897890}},{"ix":177,"action":{"kind":"Delegate","val":3,"amt":2431},"partialState":{"h":24,"t":144,"tokens":[5163,15505,13504,17488],"delegation":[4163,14505,12504,16488],"delegatorTokens":9999999895459}},{"ix":178,"action":{"kind":"Deliver","chain":"provider","numPackets":3},"partialState":{"h":24,"t":144,"tokens":[5163,15505,13504,17488],"delegation":[4163,14505,12504,16488],"delegatorTokens":9999999895459,"jailed":[null,1000000000000047,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":179,"action":{"kind":"Delegate","val":1,"amt":3833},"partialState":{"h":24,"t":144,"tokens":[5163,19338,13504,17488],"delegation":[4163,18338,12504,16488],"delegatorTokens":9999999891626}},{"ix":180,"action":{"kind":"Undelegate","val":2,"amt":2122},"partialState":{"h":24,"t":144,"tokens":[5163,19338,11382,17488],"delegation":[4163,18338,10382,16488],"delegatorTokens":9999999891626}},{"ix":181,"action":{"kind":"Delegate","val":0,"amt":1802},"partialState":{"h":24,"t":144,"tokens":[6965,19338,11382,17488],"delegation":[5965,18338,10382,16488],"delegatorTokens":9999999889824}},{"ix":182,"action":{"kind":"Deliver","chain":"provider","numPackets":6},"partialState":{"h":24,"t":144,"tokens":[6965,19338,11382,17488],"delegation":[5965,18338,10382,16488],"delegatorTokens":9999999889824,"jailed":[null,1000000000000047,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":183,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":21,"t":126,"consumerPower":[8979,null,null,10161],"outstandingDowntime":[false,false,true,true]}},{"ix":184,"action":{"kind":"Deliver","chain":"provider","numPackets":3},"partialState":{"h":24,"t":144,"tokens":[6965,19338,11382,17488],"delegation":[5965,18338,10382,16488],"delegatorTokens":9999999889824,"jailed":[null,1000000000000047,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":185,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":22,"t":132,"consumerPower":[8979,null,null,10161],"outstandingDowntime":[false,false,true,true]}},{"ix":186,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":25,"t":150,"tokens":[6965,19338,11382,17488],"delegation":[5965,18338,10382,16488],"delegatorTokens":9999999895250,"jailed":[null,1000000000000047,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":187,"action":{"kind":"Delegate","val":0,"amt":3866},"partialState":{"h":25,"t":150,"tokens":[10831,19338,11382,17488],"delegation":[9831,18338,10382,16488],"delegatorTokens":9999999891384}},{"ix":188,"action":{"kind":"Delegate","val":0,"amt":2288},"partialState":{"h":25,"t":150,"tokens":[13119,19338,11382,17488],"delegation":[12119,18338,10382,16488],"delegatorTokens":9999999889096}},{"ix":189,"action":{"kind":"Delegate","val":0,"amt":4439},"partialState":{"h":25,"t":150,"tokens":[17558,19338,11382,17488],"delegation":[16558,18338,10382,16488],"delegatorTokens":9999999884657}},{"ix":190,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":26,"t":156,"tokens":[17558,19338,11382,17488],"delegation":[16558,18338,10382,16488],"delegatorTokens":9999999884657,"jailed":[null,1000000000000047,null,null],"status":["bonded","unbonded","unbonding","bonded"]}},{"ix":191,"action":{"kind":"Undelegate","val":1,"amt":1782},"partialState":{"h":26,"t":156,"tokens":[17558,17556,11382,17488],"delegation":[16558,16556,10382,16488],"delegatorTokens":9999999884657}},{"ix":192,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":27,"t":162,"tokens":[17558,17556,11382,17488],"delegation":[16558,16556,10382,16488],"delegatorTokens":9999999884657,"jailed":[null,1000000000000047,null,null],"status":["bonded","unbonded","unbonding","bonded"]}},{"ix":193,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":194,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":195,"action":{"kind":"Deliver","chain":"consumer","numPackets":4},"partialState":{"h":22,"t":132,"consumerPower":[8979,null,null,10161],"outstandingDowntime":[false,false,true,true]}},{"ix":196,"action":{"kind":"Delegate","val":1,"amt":2832},"partialState":{"h":27,"t":162,"tokens":[17558,20388,11382,17488],"delegation":[16558,19388,10382,16488],"delegatorTokens":9999999881825}},{"ix":197,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":198,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":28,"t":168,"tokens":[17558,20388,11382,17488],"delegation":[16558,19388,10382,16488],"delegatorTokens":9999999881825,"jailed":[null,1000000000000047,null,null],"status":["bonded","unbonded","unbonding","bonded"]}},{"ix":199,"action":{"kind":"Delegate","val":0,"amt":4171},"partialState":{"h":28,"t":168,"tokens":[21729,20388,11382,17488],"delegation":[20729,19388,10382,16488],"delegatorTokens":9999999877654}}],"events":["send_downtime_slash_request","insufficient_shares","send_vsc_without_downtime_ack","send_downtime_slash_request","downtime_slash_request_outstanding","send_vsc_without_downtime_ack","send_downtime_slash_request","consumer_update_val","consumer_update_val","send_vsc_without_downtime_ack","send_vsc_without_downtime_ack","consumer_update_val","consumer_update_val","insufficient_shares","receive_slash_request_unbonded","receive_slash_request_unbonded","send_vsc_without_downtime_ack","receive_downtime_slash_request","jail","send_vsc_with_downtime_ack","send_vsc_without_downtime_ack","send_vsc_without_downtime_ack","send_vsc_without_downtime_ack","send_vsc_not_because_change","send_vsc_without_downtime_ack","insufficient_shares","receive_downtime_slash_ack","consumer_update_val","consumer_del_val","consumer_del_val","consumer_add_val","send_vsc_without_downtime_ack","consumer_update_val","consumer_update_val","consumer_send_maturation","send_vsc_without_downtime_ack","send_vsc_without_downtime_ack","insufficient_shares","consumer_send_maturation","consumer_send_maturation","consumer_update_val","consumer_update_val","send_vsc_without_downtime_ack","send_vsc_without_downtime_ack","some_undels_expired_but_not_completed","send_vsc_without_downtime_ack","consumer_update_val","consumer_update_val","send_vsc_without_downtime_ack","consumer_send_maturation","consumer_send_maturation","consumer_send_maturation","consumer_send_maturation","consumer_update_val","some_undels_expired_but_not_completed","send_vsc_without_downtime_ack","more_than_one_third_val_power_change","rebond_unval","some_undels_expired_but_not_completed","send_vsc_without_downtime_ack","consumer_send_maturation","consumer_send_maturation","consumer_update_val","consumer_update_val","some_undels_expired_but_not_completed","complete_undel_immediate","complete_undel_immediate","set_unval_hold_false","send_vsc_without_downtime_ack","more_than_one_third_val_power_change","rebond_unval","complete_unval_in_endblock","some_undels_expired_but_not_completed","send_vsc_without_downtime_ack","some_undels_expired_but_not_completed","send_vsc_not_because_change","send_vsc_without_downtime_ack","some_undels_expired_but_not_completed"]},{"meta":{"commit":"7ffd0c04e4205cbc9caf212abfe6c59ee43153bf"},"constants":{"P":"provider","C":"consumer","UNBONDING_SECONDS_P":70,"UNBONDING_SECONDS_C":50,"TRUSTING_SECONDS":49,"NUM_VALIDATORS":4,"MAX_VALIDATORS":2,"SLASH_DOUBLESIGN":0,"SLASH_DOWNTIME":0,"JAIL_SECONDS":999999999999999,"BLOCK_SECONDS":6,"INITIAL_DELEGATOR_TOKENS":10000000000000,"DELEGATE_AMT_MIN":1000,"DELEGATE_AMT_MAX":5000,"UNDELEGATE_AMT_MIN":1000,"UNDELEGATE_AMT_MAX":5000,"ISDOWNTIME_PROBABILITY":0.5,"MAX_NUM_PACKETS_FOR_DELIVER":6},"actions":[{"ix":0,"action":{"kind":"Undelegate","val":1,"amt":1839},"partialState":{"h":1,"t":6,"tokens":[5000,2161,3000,2000],"delegation":[4000,1161,2000,1000],"delegatorTokens":10000000000000}},{"ix":1,"action":{"kind":"ConsumerSlash","val":2,"infractionHeight":0,"isDowntime":true},"partialState":{"h":1,"t":6,"outstandingDowntime":[false,false,true,false]}},{"ix":2,"action":{"kind":"Undelegate","val":0,"amt":3819},"partialState":{"h":1,"t":6,"tokens":[1181,2161,3000,2000],"delegation":[181,1161,2000,1000],"delegatorTokens":10000000000000}},{"ix":3,"action":{"kind":"Undelegate","val":3,"amt":1663},"partialState":{"h":1,"t":6,"tokens":[1181,2161,3000,2000],"delegation":[181,1161,2000,1000],"delegatorTokens":10000000000000}},{"ix":4,"action":{"kind":"ConsumerSlash","val":2,"infractionHeight":0,"isDowntime":true},"partialState":{"h":1,"t":6,"outstandingDowntime":[false,false,true,false]}},{"ix":5,"action":{"kind":"ConsumerSlash","val":1,"infractionHeight":0,"isDowntime":true},"partialState":{"h":1,"t":6,"outstandingDowntime":[false,true,true,false]}},{"ix":6,"action":{"kind":"Undelegate","val":2,"amt":4046},"partialState":{"h":1,"t":6,"tokens":[1181,2161,3000,2000],"delegation":[181,1161,2000,1000],"delegatorTokens":10000000000000}},{"ix":7,"action":{"kind":"Deliver","chain":"consumer","numPackets":2},"partialState":{"h":1,"t":6,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,true,true,false]}},{"ix":8,"action":{"kind":"Delegate","val":0,"amt":3494},"partialState":{"h":1,"t":6,"tokens":[4675,2161,3000,2000],"delegation":[3675,1161,2000,1000],"delegatorTokens":9999999996506}},{"ix":9,"action":{"kind":"ConsumerSlash","val":3,"infractionHeight":0,"isDowntime":true},"partialState":{"h":1,"t":6,"outstandingDowntime":[false,true,true,true]}},{"ix":10,"action":{"kind":"Deliver","chain":"provider","numPackets":2},"partialState":{"h":1,"t":6,"tokens":[4675,2161,3000,2000],"delegation":[3675,1161,2000,1000],"delegatorTokens":9999999996506,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":11,"action":{"kind":"Undelegate","val":0,"amt":4970},"partialState":{"h":1,"t":6,"tokens":[4675,2161,3000,2000],"delegation":[3675,1161,2000,1000],"delegatorTokens":9999999996506}},{"ix":12,"action":{"kind":"Delegate","val":0,"amt":4390},"partialState":{"h":1,"t":6,"tokens":[9065,2161,3000,2000],"delegation":[8065,1161,2000,1000],"delegatorTokens":9999999992116}},{"ix":13,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":14,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":15,"action":{"kind":"Deliver","chain":"consumer","numPackets":4},"partialState":{"h":1,"t":6,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,true,true,true]}},{"ix":16,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":2,"t":12,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,true,true,true]}},{"ix":17,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":18,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":19,"action":{"kind":"Undelegate","val":2,"amt":3667},"partialState":{"h":1,"t":6,"tokens":[9065,2161,3000,2000],"delegation":[8065,1161,2000,1000],"delegatorTokens":9999999992116}},{"ix":20,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":21,"action":{"kind":"Delegate","val":1,"amt":1106},"partialState":{"h":1,"t":6,"tokens":[9065,3267,3000,2000],"delegation":[8065,2267,2000,1000],"delegatorTokens":9999999991010}},{"ix":22,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":23,"action":{"kind":"Undelegate","val":1,"amt":4527},"partialState":{"h":1,"t":6,"tokens":[9065,3267,3000,2000],"delegation":[8065,2267,2000,1000],"delegatorTokens":9999999991010}},{"ix":24,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":3,"t":18,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,true,true,true]}},{"ix":25,"action":{"kind":"Delegate","val":0,"amt":2503},"partialState":{"h":1,"t":6,"tokens":[11568,3267,3000,2000],"delegation":[10568,2267,2000,1000],"delegatorTokens":9999999988507}},{"ix":26,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":4,"t":24,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,true,true,true]}},{"ix":27,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":5,"t":30,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,true,true,true]}},{"ix":28,"action":{"kind":"Deliver","chain":"provider","numPackets":3},"partialState":{"h":1,"t":6,"tokens":[11568,3267,3000,2000],"delegation":[10568,2267,2000,1000],"delegatorTokens":9999999988507,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":29,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":30,"action":{"kind":"Delegate","val":0,"amt":3165},"partialState":{"h":1,"t":6,"tokens":[14733,3267,3000,2000],"delegation":[13733,2267,2000,1000],"delegatorTokens":9999999985342}},{"ix":31,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":2,"t":12,"tokens":[14733,3267,3000,2000],"delegation":[13733,2267,2000,1000],"delegatorTokens":9999999985342,"jailed":[null,1000000000000005,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":32,"action":{"kind":"Deliver","chain":"provider","numPackets":1},"partialState":{"h":2,"t":12,"tokens":[14733,3267,3000,2000],"delegation":[13733,2267,2000,1000],"delegatorTokens":9999999985342,"jailed":[null,1000000000000005,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":33,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":6,"t":36,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,true,true,true]}},{"ix":34,"action":{"kind":"Delegate","val":0,"amt":3211},"partialState":{"h":2,"t":12,"tokens":[17944,3267,3000,2000],"delegation":[16944,2267,2000,1000],"delegatorTokens":9999999982131}},{"ix":35,"action":{"kind":"Undelegate","val":0,"amt":2123},"partialState":{"h":2,"t":12,"tokens":[15821,3267,3000,2000],"delegation":[14821,2267,2000,1000],"delegatorTokens":9999999982131}},{"ix":36,"action":{"kind":"Deliver","chain":"consumer","numPackets":1},"partialState":{"h":6,"t":36,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,true,true,true]}},{"ix":37,"action":{"kind":"Delegate","val":1,"amt":4595},"partialState":{"h":2,"t":12,"tokens":[15821,7862,3000,2000],"delegation":[14821,6862,2000,1000],"delegatorTokens":9999999977536}},{"ix":38,"action":{"kind":"Undelegate","val":0,"amt":4646},"partialState":{"h":2,"t":12,"tokens":[11175,7862,3000,2000],"delegation":[10175,6862,2000,1000],"delegatorTokens":9999999977536}},{"ix":39,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":40,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":3,"t":18,"tokens":[11175,7862,3000,2000],"delegation":[10175,6862,2000,1000],"delegatorTokens":9999999977536,"jailed":[null,1000000000000005,null,null],"status":["bonded","unbonding","bonded","unbonded"]}},{"ix":41,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":42,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":4,"t":24,"tokens":[11175,7862,3000,2000],"delegation":[10175,6862,2000,1000],"delegatorTokens":9999999977536,"jailed":[null,1000000000000005,null,null],"status":["bonded","unbonding","bonded","unbonded"]}},{"ix":43,"action":{"kind":"Deliver","chain":"provider","numPackets":5},"partialState":{"h":4,"t":24,"tokens":[11175,7862,3000,2000],"delegation":[10175,6862,2000,1000],"delegatorTokens":9999999977536,"jailed":[null,1000000000000005,null,null],"status":["bonded","unbonding","bonded","unbonded"]}},{"ix":44,"action":{"kind":"Undelegate","val":1,"amt":2975},"partialState":{"h":4,"t":24,"tokens":[11175,4887,3000,2000],"delegation":[10175,3887,2000,1000],"delegatorTokens":9999999977536}},{"ix":45,"action":{"kind":"Undelegate","val":0,"amt":3195},"partialState":{"h":4,"t":24,"tokens":[7980,4887,3000,2000],"delegation":[6980,3887,2000,1000],"delegatorTokens":9999999977536}},{"ix":46,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":47,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":48,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":5,"t":30,"tokens":[7980,4887,3000,2000],"delegation":[6980,3887,2000,1000],"delegatorTokens":9999999977536,"jailed":[null,1000000000000005,null,null],"status":["bonded","unbonding","bonded","unbonded"]}},{"ix":49,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":7,"t":42,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,true,true,true]}},{"ix":50,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":6,"t":36,"tokens":[7980,4887,3000,2000],"delegation":[6980,3887,2000,1000],"delegatorTokens":9999999977536,"jailed":[null,1000000000000005,null,null],"status":["bonded","unbonding","bonded","unbonded"]}},{"ix":51,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":52,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":53,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":54,"action":{"kind":"Undelegate","val":3,"amt":1692},"partialState":{"h":6,"t":36,"tokens":[7980,4887,3000,2000],"delegation":[6980,3887,2000,1000],"delegatorTokens":9999999977536}},{"ix":55,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":8,"t":48,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,true,true,true]}},{"ix":56,"action":{"kind":"Undelegate","val":2,"amt":4893},"partialState":{"h":6,"t":36,"tokens":[7980,4887,3000,2000],"delegation":[6980,3887,2000,1000],"delegatorTokens":9999999977536}},{"ix":57,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":58,"action":{"kind":"Deliver","chain":"consumer","numPackets":3},"partialState":{"h":8,"t":48,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,false,true,true]}},{"ix":59,"action":{"kind":"Deliver","chain":"consumer","numPackets":6},"partialState":{"h":8,"t":48,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,false,true,true]}},{"ix":60,"action":{"kind":"Undelegate","val":0,"amt":4649},"partialState":{"h":6,"t":36,"tokens":[3331,4887,3000,2000],"delegation":[2331,3887,2000,1000],"delegatorTokens":9999999977536}},{"ix":61,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":9,"t":54,"consumerPower":[7980,null,3000,null],"outstandingDowntime":[false,false,true,true]}},{"ix":62,"action":{"kind":"Deliver","chain":"consumer","numPackets":3},"partialState":{"h":9,"t":54,"consumerPower":[7980,null,3000,null],"outstandingDowntime":[false,false,true,true]}},{"ix":63,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":7,"t":42,"tokens":[3331,4887,3000,2000],"delegation":[2331,3887,2000,1000],"delegatorTokens":9999999977536,"jailed":[null,1000000000000005,null,null],"status":["bonded","unbonding","bonded","unbonded"]}},{"ix":64,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":8,"t":48,"tokens":[3331,4887,3000,2000],"delegation":[2331,3887,2000,1000],"delegatorTokens":9999999977536,"jailed":[null,1000000000000005,null,null],"status":["bonded","unbonding","bonded","unbonded"]}},{"ix":65,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":10,"t":60,"consumerPower":[7980,null,3000,null],"outstandingDowntime":[false,false,true,true]}},{"ix":66,"action":{"kind":"Undelegate","val":1,"amt":1350},"partialState":{"h":8,"t":48,"tokens":[3331,3537,3000,2000],"delegation":[2331,2537,2000,1000],"delegatorTokens":9999999977536}},{"ix":67,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":9,"t":54,"tokens":[3331,3537,3000,2000],"delegation":[2331,2537,2000,1000],"delegatorTokens":9999999977536,"jailed":[null,1000000000000005,null,null],"status":["bonded","unbonding","bonded","unbonded"]}},{"ix":68,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":69,"action":{"kind":"Undelegate","val":2,"amt":1258},"partialState":{"h":9,"t":54,"tokens":[3331,3537,1742,2000],"delegation":[2331,2537,742,1000],"delegatorTokens":9999999977536}},{"ix":70,"action":{"kind":"Delegate","val":2,"amt":3430},"partialState":{"h":9,"t":54,"tokens":[3331,3537,5172,2000],"delegation":[2331,2537,4172,1000],"delegatorTokens":9999999974106}},{"ix":71,"action":{"kind":"Undelegate","val":1,"amt":4841},"partialState":{"h":9,"t":54,"tokens":[3331,3537,5172,2000],"delegation":[2331,2537,4172,1000],"delegatorTokens":9999999974106}},{"ix":72,"action":{"kind":"Deliver","chain":"provider","numPackets":5},"partialState":{"h":9,"t":54,"tokens":[3331,3537,5172,2000],"delegation":[2331,2537,4172,1000],"delegatorTokens":9999999974106,"jailed":[null,1000000000000005,null,null],"status":["bonded","unbonding","bonded","unbonded"]}},{"ix":73,"action":{"kind":"Deliver","chain":"provider","numPackets":2},"partialState":{"h":9,"t":54,"tokens":[3331,3537,5172,2000],"delegation":[2331,2537,4172,1000],"delegatorTokens":9999999974106,"jailed":[null,1000000000000005,null,null],"status":["bonded","unbonding","bonded","unbonded"]}},{"ix":74,"action":{"kind":"Delegate","val":3,"amt":2936},"partialState":{"h":9,"t":54,"tokens":[3331,3537,5172,4936],"delegation":[2331,2537,4172,3936],"delegatorTokens":9999999971170}},{"ix":75,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":10,"t":60,"tokens":[3331,3537,5172,4936],"delegation":[2331,2537,4172,3936],"delegatorTokens":9999999971170,"jailed":[null,1000000000000005,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":76,"action":{"kind":"Undelegate","val":2,"amt":2071},"partialState":{"h":10,"t":60,"tokens":[3331,3537,3101,4936],"delegation":[2331,2537,2101,3936],"delegatorTokens":9999999971170}},{"ix":77,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":78,"action":{"kind":"Deliver","chain":"provider","numPackets":6},"partialState":{"h":10,"t":60,"tokens":[3331,3537,3101,4936],"delegation":[2331,2537,2101,3936],"delegatorTokens":9999999971170,"jailed":[null,1000000000000005,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":79,"action":{"kind":"Deliver","chain":"consumer","numPackets":1},"partialState":{"h":10,"t":60,"consumerPower":[7980,null,3000,null],"outstandingDowntime":[false,false,true,true]}},{"ix":80,"action":{"kind":"Deliver","chain":"provider","numPackets":2},"partialState":{"h":10,"t":60,"tokens":[3331,3537,3101,4936],"delegation":[2331,2537,2101,3936],"delegatorTokens":9999999971170,"jailed":[null,1000000000000005,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":81,"action":{"kind":"Undelegate","val":2,"amt":1074},"partialState":{"h":10,"t":60,"tokens":[3331,3537,2027,4936],"delegation":[2331,2537,1027,3936],"delegatorTokens":9999999971170}},{"ix":82,"action":{"kind":"Delegate","val":0,"amt":1405},"partialState":{"h":10,"t":60,"tokens":[4736,3537,2027,4936],"delegation":[3736,2537,1027,3936],"delegatorTokens":9999999969765}},{"ix":83,"action":{"kind":"Deliver","chain":"consumer","numPackets":3},"partialState":{"h":10,"t":60,"consumerPower":[7980,null,3000,null],"outstandingDowntime":[false,false,true,true]}},{"ix":84,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":85,"action":{"kind":"Undelegate","val":1,"amt":3286},"partialState":{"h":10,"t":60,"tokens":[4736,3537,2027,4936],"delegation":[3736,2537,1027,3936],"delegatorTokens":9999999969765}},{"ix":86,"action":{"kind":"Undelegate","val":3,"amt":2909},"partialState":{"h":10,"t":60,"tokens":[4736,3537,2027,2027],"delegation":[3736,2537,1027,1027],"delegatorTokens":9999999969765}},{"ix":87,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":88,"action":{"kind":"Delegate","val":1,"amt":1795},"partialState":{"h":10,"t":60,"tokens":[4736,5332,2027,2027],"delegation":[3736,4332,1027,1027],"delegatorTokens":9999999967970}},{"ix":89,"action":{"kind":"Delegate","val":0,"amt":1846},"partialState":{"h":10,"t":60,"tokens":[6582,5332,2027,2027],"delegation":[5582,4332,1027,1027],"delegatorTokens":9999999966124}},{"ix":90,"action":{"kind":"Delegate","val":0,"amt":2120},"partialState":{"h":10,"t":60,"tokens":[8702,5332,2027,2027],"delegation":[7702,4332,1027,1027],"delegatorTokens":9999999964004}},{"ix":91,"action":{"kind":"Undelegate","val":3,"amt":1125},"partialState":{"h":10,"t":60,"tokens":[8702,5332,2027,2027],"delegation":[7702,4332,1027,1027],"delegatorTokens":9999999964004}},{"ix":92,"action":{"kind":"Undelegate","val":1,"amt":4137},"partialState":{"h":10,"t":60,"tokens":[8702,1195,2027,2027],"delegation":[7702,195,1027,1027],"delegatorTokens":9999999964004}},{"ix":93,"action":{"kind":"Delegate","val":3,"amt":3499},"partialState":{"h":10,"t":60,"tokens":[8702,1195,2027,5526],"delegation":[7702,195,1027,4526],"delegatorTokens":9999999960505}},{"ix":94,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":11,"t":66,"consumerPower":[3331,null,3000,null],"outstandingDowntime":[false,false,true,true]}},{"ix":95,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":11,"t":66,"tokens":[8702,1195,2027,5526],"delegation":[7702,195,1027,4526],"delegatorTokens":9999999960505,"jailed":[null,1000000000000005,null,null],"status":["bonded","unbonding","unbonding","bonded"]}},{"ix":96,"action":{"kind":"Undelegate","val":3,"amt":3892},"partialState":{"h":11,"t":66,"tokens":[8702,1195,2027,1634],"delegation":[7702,195,1027,634],"delegatorTokens":9999999960505}},{"ix":97,"action":{"kind":"Delegate","val":1,"amt":2739},"partialState":{"h":11,"t":66,"tokens":[8702,3934,2027,1634],"delegation":[7702,2934,1027,634],"delegatorTokens":9999999957766}},{"ix":98,"action":{"kind":"Delegate","val":1,"amt":1359},"partialState":{"h":11,"t":66,"tokens":[8702,5293,2027,1634],"delegation":[7702,4293,1027,634],"delegatorTokens":9999999956407}},{"ix":99,"action":{"kind":"Deliver","chain":"consumer","numPackets":6},"partialState":{"h":11,"t":66,"consumerPower":[3331,null,3000,null],"outstandingDowntime":[false,false,true,true]}},{"ix":100,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":12,"t":72,"tokens":[8702,5293,2027,1634],"delegation":[7702,4293,1027,634],"delegatorTokens":9999999956407,"jailed":[null,1000000000000005,null,null],"status":["bonded","unbonding","bonded","unbonding"]}},{"ix":101,"action":{"kind":"Deliver","chain":"consumer","numPackets":3},"partialState":{"h":11,"t":66,"consumerPower":[3331,null,3000,null],"outstandingDowntime":[false,false,true,true]}},{"ix":102,"action":{"kind":"Delegate","val":2,"amt":1774},"partialState":{"h":12,"t":72,"tokens":[8702,5293,3801,1634],"delegation":[7702,4293,2801,634],"delegatorTokens":9999999954633}},{"ix":103,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":13,"t":78,"tokens":[8702,5293,3801,1634],"delegation":[7702,4293,2801,634],"delegatorTokens":9999999954633,"jailed":[null,1000000000000005,null,null],"status":["bonded","unbonding","bonded","unbonding"]}},{"ix":104,"action":{"kind":"Delegate","val":3,"amt":2177},"partialState":{"h":13,"t":78,"tokens":[8702,5293,3801,3811],"delegation":[7702,4293,2801,2811],"delegatorTokens":9999999952456}},{"ix":105,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":106,"action":{"kind":"Delegate","val":0,"amt":2579},"partialState":{"h":13,"t":78,"tokens":[11281,5293,3801,3811],"delegation":[10281,4293,2801,2811],"delegatorTokens":9999999949877}},{"ix":107,"action":{"kind":"Undelegate","val":0,"amt":3826},"partialState":{"h":13,"t":78,"tokens":[7455,5293,3801,3811],"delegation":[6455,4293,2801,2811],"delegatorTokens":9999999949877}},{"ix":108,"action":{"kind":"Delegate","val":2,"amt":2601},"partialState":{"h":13,"t":78,"tokens":[7455,5293,6402,3811],"delegation":[6455,4293,5402,2811],"delegatorTokens":9999999947276}},{"ix":109,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":12,"t":72,"consumerPower":[8702,null,null,5526],"outstandingDowntime":[false,false,true,true]}},{"ix":110,"action":{"kind":"Undelegate","val":0,"amt":4633},"partialState":{"h":13,"t":78,"tokens":[2822,5293,6402,3811],"delegation":[1822,4293,5402,2811],"delegatorTokens":9999999947276}},{"ix":111,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":13,"t":78,"consumerPower":[8702,null,null,5526],"outstandingDowntime":[false,false,true,true]}},{"ix":112,"action":{"kind":"Undelegate","val":3,"amt":1656},"partialState":{"h":13,"t":78,"tokens":[2822,5293,6402,2155],"delegation":[1822,4293,5402,1155],"delegatorTokens":9999999947276}},{"ix":113,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":14,"t":84,"consumerPower":[8702,null,null,5526],"outstandingDowntime":[false,false,true,true]}},{"ix":114,"action":{"kind":"Deliver","chain":"provider","numPackets":4},"partialState":{"h":13,"t":78,"tokens":[2822,5293,6402,2155],"delegation":[1822,4293,5402,1155],"delegatorTokens":9999999947276,"jailed":[null,1000000000000005,null,null],"status":["bonded","unbonding","bonded","unbonding"]}},{"ix":115,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":14,"t":84,"tokens":[2822,5293,6402,2155],"delegation":[1822,4293,5402,1155],"delegatorTokens":9999999947276,"jailed":[null,1000000000000005,null,null],"status":["bonded","unbonding","bonded","unbonding"]}},{"ix":116,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":117,"action":{"kind":"Undelegate","val":3,"amt":4179},"partialState":{"h":14,"t":84,"tokens":[2822,5293,6402,2155],"delegation":[1822,4293,5402,1155],"delegatorTokens":9999999947276}},{"ix":118,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":15,"t":90,"tokens":[2822,5293,6402,2155],"delegation":[1822,4293,5402,1155],"delegatorTokens":9999999947276,"jailed":[null,1000000000000005,null,null],"status":["bonded","unbonding","bonded","unbonding"]}},{"ix":119,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":120,"action":{"kind":"Delegate","val":2,"amt":4248},"partialState":{"h":15,"t":90,"tokens":[2822,5293,10650,2155],"delegation":[1822,4293,9650,1155],"delegatorTokens":9999999943028}},{"ix":121,"action":{"kind":"Deliver","chain":"provider","numPackets":5},"partialState":{"h":15,"t":90,"tokens":[2822,5293,10650,2155],"delegation":[1822,4293,9650,1155],"delegatorTokens":9999999943028,"jailed":[null,1000000000000005,null,null],"status":["bonded","unbonding","bonded","unbonding"]}},{"ix":122,"action":{"kind":"Delegate","val":2,"amt":2842},"partialState":{"h":15,"t":90,"tokens":[2822,5293,13492,2155],"delegation":[1822,4293,12492,1155],"delegatorTokens":9999999940186}},{"ix":123,"action":{"kind":"Deliver","chain":"provider","numPackets":2},"partialState":{"h":15,"t":90,"tokens":[2822,5293,13492,2155],"delegation":[1822,4293,12492,1155],"delegatorTokens":9999999940186,"jailed":[null,1000000000000005,null,null],"status":["bonded","unbonding","bonded","unbonding"]}},{"ix":124,"action":{"kind":"Undelegate","val":0,"amt":1204},"partialState":{"h":15,"t":90,"tokens":[1618,5293,13492,2155],"delegation":[618,4293,12492,1155],"delegatorTokens":9999999940186}},{"ix":125,"action":{"kind":"Deliver","chain":"consumer","numPackets":2},"partialState":{"h":14,"t":84,"consumerPower":[8702,null,null,5526],"outstandingDowntime":[false,false,true,true]}},{"ix":126,"action":{"kind":"Undelegate","val":3,"amt":3061},"partialState":{"h":15,"t":90,"tokens":[1618,5293,13492,2155],"delegation":[618,4293,12492,1155],"delegatorTokens":9999999940186}},{"ix":127,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":128,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":129,"action":{"kind":"Deliver","chain":"provider","numPackets":4},"partialState":{"h":15,"t":90,"tokens":[1618,5293,13492,2155],"delegation":[618,4293,12492,1155],"delegatorTokens":9999999940186,"jailed":[null,1000000000000005,null,null],"status":["bonded","unbonding","bonded","unbonding"]}},{"ix":130,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":131,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":15,"t":90,"consumerPower":[8702,null,3801,null],"outstandingDowntime":[false,false,true,true]}},{"ix":132,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":16,"t":96,"consumerPower":[8702,null,3801,null],"outstandingDowntime":[false,false,true,true]}},{"ix":133,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":134,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":135,"action":{"kind":"Delegate","val":3,"amt":4773},"partialState":{"h":15,"t":90,"tokens":[1618,5293,13492,6928],"delegation":[618,4293,12492,5928],"delegatorTokens":9999999935413}},{"ix":136,"action":{"kind":"Delegate","val":0,"amt":4698},"partialState":{"h":15,"t":90,"tokens":[6316,5293,13492,6928],"delegation":[5316,4293,12492,5928],"delegatorTokens":9999999930715}},{"ix":137,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":16,"t":96,"tokens":[6316,5293,13492,6928],"delegation":[5316,4293,12492,5928],"delegatorTokens":9999999930715,"jailed":[null,1000000000000005,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":138,"action":{"kind":"Deliver","chain":"consumer","numPackets":4},"partialState":{"h":16,"t":96,"consumerPower":[8702,null,3801,null],"outstandingDowntime":[false,false,true,true]}},{"ix":139,"action":{"kind":"Deliver","chain":"consumer","numPackets":5},"partialState":{"h":16,"t":96,"consumerPower":[8702,null,3801,null],"outstandingDowntime":[false,false,true,true]}},{"ix":140,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":141,"action":{"kind":"Deliver","chain":"provider","numPackets":3},"partialState":{"h":16,"t":96,"tokens":[6316,5293,13492,6928],"delegation":[5316,4293,12492,5928],"delegatorTokens":9999999930715,"jailed":[null,1000000000000005,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":142,"action":{"kind":"Delegate","val":2,"amt":2070},"partialState":{"h":16,"t":96,"tokens":[6316,5293,15562,6928],"delegation":[5316,4293,14562,5928],"delegatorTokens":9999999928645}},{"ix":143,"action":{"kind":"Delegate","val":1,"amt":1089},"partialState":{"h":16,"t":96,"tokens":[6316,6382,15562,6928],"delegation":[5316,5382,14562,5928],"delegatorTokens":9999999927556}},{"ix":144,"action":{"kind":"Delegate","val":3,"amt":2386},"partialState":{"h":16,"t":96,"tokens":[6316,6382,15562,9314],"delegation":[5316,5382,14562,8314],"delegatorTokens":9999999925170}},{"ix":145,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":146,"action":{"kind":"Delegate","val":3,"amt":1592},"partialState":{"h":16,"t":96,"tokens":[6316,6382,15562,10906],"delegation":[5316,5382,14562,9906],"delegatorTokens":9999999923578}},{"ix":147,"action":{"kind":"Undelegate","val":3,"amt":4778},"partialState":{"h":16,"t":96,"tokens":[6316,6382,15562,6128],"delegation":[5316,5382,14562,5128],"delegatorTokens":9999999923578}},{"ix":148,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":17,"t":102,"tokens":[6316,6382,15562,6128],"delegation":[5316,5382,14562,5128],"delegatorTokens":9999999923578,"jailed":[null,1000000000000005,null,null],"status":["bonded","unbonding","bonded","unbonding"]}},{"ix":149,"action":{"kind":"Deliver","chain":"provider","numPackets":2},"partialState":{"h":17,"t":102,"tokens":[6316,6382,15562,6128],"delegation":[5316,5382,14562,5128],"delegatorTokens":9999999923578,"jailed":[null,1000000000000005,null,null],"status":["bonded","unbonding","bonded","unbonding"]}},{"ix":150,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":18,"t":108,"tokens":[6316,6382,15562,6128],"delegation":[5316,5382,14562,5128],"delegatorTokens":9999999923578,"jailed":[null,1000000000000005,null,null],"status":["bonded","unbonding","bonded","unbonding"]}},{"ix":151,"action":{"kind":"Delegate","val":1,"amt":2617},"partialState":{"h":18,"t":108,"tokens":[6316,8999,15562,6128],"delegation":[5316,7999,14562,5128],"delegatorTokens":9999999920961}},{"ix":152,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":17,"t":102,"consumerPower":[2822,null,6402,null],"outstandingDowntime":[false,false,true,true]}},{"ix":153,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":18,"t":108,"consumerPower":[2822,null,6402,null],"outstandingDowntime":[false,false,true,true]}},{"ix":154,"action":{"kind":"Undelegate","val":3,"amt":4149},"partialState":{"h":18,"t":108,"tokens":[6316,8999,15562,1979],"delegation":[5316,7999,14562,979],"delegatorTokens":9999999920961}},{"ix":155,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":156,"action":{"kind":"Deliver","chain":"consumer","numPackets":1},"partialState":{"h":18,"t":108,"consumerPower":[2822,null,6402,null],"outstandingDowntime":[false,false,true,true]}},{"ix":157,"action":{"kind":"Deliver","chain":"provider","numPackets":4},"partialState":{"h":18,"t":108,"tokens":[6316,8999,15562,1979],"delegation":[5316,7999,14562,979],"delegatorTokens":9999999920961,"jailed":[null,1000000000000005,null,null],"status":["bonded","unbonding","bonded","unbonding"]}},{"ix":158,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":159,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":160,"action":{"kind":"Deliver","chain":"consumer","numPackets":3},"partialState":{"h":18,"t":108,"consumerPower":[2822,null,6402,null],"outstandingDowntime":[false,false,true,true]}},{"ix":161,"action":{"kind":"Undelegate","val":1,"amt":2441},"partialState":{"h":18,"t":108,"tokens":[6316,6558,15562,1979],"delegation":[5316,5558,14562,979],"delegatorTokens":9999999920961}},{"ix":162,"action":{"kind":"Delegate","val":2,"amt":2047},"partialState":{"h":18,"t":108,"tokens":[6316,6558,17609,1979],"delegation":[5316,5558,16609,979],"delegatorTokens":9999999918914}},{"ix":163,"action":{"kind":"Delegate","val":2,"amt":4215},"partialState":{"h":18,"t":108,"tokens":[6316,6558,21824,1979],"delegation":[5316,5558,20824,979],"delegatorTokens":9999999914699}},{"ix":164,"action":{"kind":"Delegate","val":2,"amt":2598},"partialState":{"h":18,"t":108,"tokens":[6316,6558,24422,1979],"delegation":[5316,5558,23422,979],"delegatorTokens":9999999912101}},{"ix":165,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":166,"action":{"kind":"Delegate","val":0,"amt":4607},"partialState":{"h":18,"t":108,"tokens":[10923,6558,24422,1979],"delegation":[9923,5558,23422,979],"delegatorTokens":9999999907494}},{"ix":167,"action":{"kind":"Deliver","chain":"consumer","numPackets":6},"partialState":{"h":18,"t":108,"consumerPower":[2822,null,6402,null],"outstandingDowntime":[false,false,true,true]}},{"ix":168,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":169,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":19,"t":114,"consumerPower":[6316,null,15562,null],"outstandingDowntime":[false,false,true,true]}},{"ix":170,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":171,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":20,"t":120,"consumerPower":[6316,null,15562,null],"outstandingDowntime":[false,false,true,true]}},{"ix":172,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":19,"t":114,"tokens":[10923,6558,24422,1979],"delegation":[9923,5558,23422,979],"delegatorTokens":9999999907494,"jailed":[null,1000000000000005,null,null],"status":["bonded","unbonding","bonded","unbonding"]}},{"ix":173,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":20,"t":120,"tokens":[10923,6558,24422,1979],"delegation":[9923,5558,23422,979],"delegatorTokens":9999999907494,"jailed":[null,1000000000000005,null,null],"status":["bonded","unbonding","bonded","unbonding"]}},{"ix":174,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":21,"t":126,"tokens":[10923,6558,24422,1979],"delegation":[9923,5558,23422,979],"delegatorTokens":9999999907494,"jailed":[null,1000000000000005,null,null],"status":["bonded","unbonding","bonded","unbonding"]}},{"ix":175,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":176,"action":{"kind":"Deliver","chain":"provider","numPackets":3},"partialState":{"h":21,"t":126,"tokens":[10923,6558,24422,1979],"delegation":[9923,5558,23422,979],"delegatorTokens":9999999907494,"jailed":[null,1000000000000005,null,null],"status":["bonded","unbonding","bonded","unbonding"]}},{"ix":177,"action":{"kind":"Delegate","val":3,"amt":3977},"partialState":{"h":21,"t":126,"tokens":[10923,6558,24422,5956],"delegation":[9923,5558,23422,4956],"delegatorTokens":9999999903517}},{"ix":178,"action":{"kind":"Delegate","val":3,"amt":1719},"partialState":{"h":21,"t":126,"tokens":[10923,6558,24422,7675],"delegation":[9923,5558,23422,6675],"delegatorTokens":9999999901798}},{"ix":179,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":180,"action":{"kind":"Delegate","val":3,"amt":1728},"partialState":{"h":21,"t":126,"tokens":[10923,6558,24422,9403],"delegation":[9923,5558,23422,8403],"delegatorTokens":9999999900070}},{"ix":181,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":182,"action":{"kind":"Deliver","chain":"provider","numPackets":6},"partialState":{"h":21,"t":126,"tokens":[10923,6558,24422,9403],"delegation":[9923,5558,23422,8403],"delegatorTokens":9999999900070,"jailed":[null,1000000000000005,null,null],"status":["bonded","unbonding","bonded","unbonding"]}},{"ix":183,"action":{"kind":"Undelegate","val":3,"amt":3126},"partialState":{"h":21,"t":126,"tokens":[10923,6558,24422,6277],"delegation":[9923,5558,23422,5277],"delegatorTokens":9999999900070}},{"ix":184,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":185,"action":{"kind":"Deliver","chain":"provider","numPackets":3},"partialState":{"h":21,"t":126,"tokens":[10923,6558,24422,6277],"delegation":[9923,5558,23422,5277],"delegatorTokens":9999999900070,"jailed":[null,1000000000000005,null,null],"status":["bonded","unbonding","bonded","unbonding"]}},{"ix":186,"action":{"kind":"Delegate","val":0,"amt":2181},"partialState":{"h":21,"t":126,"tokens":[13104,6558,24422,6277],"delegation":[12104,5558,23422,5277],"delegatorTokens":9999999897889}},{"ix":187,"action":{"kind":"Deliver","chain":"consumer","numPackets":1},"partialState":{"h":20,"t":120,"consumerPower":[6316,null,15562,null],"outstandingDowntime":[false,false,true,true]}},{"ix":188,"action":{"kind":"Delegate","val":2,"amt":3158},"partialState":{"h":21,"t":126,"tokens":[13104,6558,27580,6277],"delegation":[12104,5558,26580,5277],"delegatorTokens":9999999894731}},{"ix":189,"action":{"kind":"Undelegate","val":0,"amt":4715},"partialState":{"h":21,"t":126,"tokens":[8389,6558,27580,6277],"delegation":[7389,5558,26580,5277],"delegatorTokens":9999999894731}},{"ix":190,"action":{"kind":"Delegate","val":1,"amt":2051},"partialState":{"h":21,"t":126,"tokens":[8389,8609,27580,6277],"delegation":[7389,7609,26580,5277],"delegatorTokens":9999999892680}},{"ix":191,"action":{"kind":"Deliver","chain":"provider","numPackets":3},"partialState":{"h":21,"t":126,"tokens":[8389,8609,27580,6277],"delegation":[7389,7609,26580,5277],"delegatorTokens":9999999892680,"jailed":[null,1000000000000005,null,null],"status":["bonded","unbonding","bonded","unbonding"]}},{"ix":192,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":193,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":21,"t":126,"consumerPower":[10923,null,24422,null],"outstandingDowntime":[false,false,true,true]}},{"ix":194,"action":{"kind":"Delegate","val":1,"amt":3871},"partialState":{"h":21,"t":126,"tokens":[8389,12480,27580,6277],"delegation":[7389,11480,26580,5277],"delegatorTokens":9999999888809}},{"ix":195,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":22,"t":132,"tokens":[8389,12480,27580,6277],"delegation":[7389,11480,26580,5277],"delegatorTokens":9999999907406,"jailed":[null,1000000000000005,null,null],"status":["bonded","unbonding","bonded","unbonding"]}},{"ix":196,"action":{"kind":"Delegate","val":2,"amt":2579},"partialState":{"h":22,"t":132,"tokens":[8389,12480,30159,6277],"delegation":[7389,11480,29159,5277],"delegatorTokens":9999999904827}},{"ix":197,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":22,"t":132,"consumerPower":[10923,null,24422,null],"outstandingDowntime":[false,false,true,true]}},{"ix":198,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":23,"t":138,"consumerPower":[10923,null,24422,null],"outstandingDowntime":[false,false,true,true]}},{"ix":199,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":23,"t":138,"tokens":[8389,12480,30159,6277],"delegation":[7389,11480,29159,5277],"delegatorTokens":9999999904827,"jailed":[null,1000000000000005,null,null],"status":["bonded","unbonded","bonded","unbonding"]}}],"events":["send_downtime_slash_request","insufficient_shares","downtime_slash_request_outstanding","send_downtime_slash_request","insufficient_shares","send_downtime_slash_request","insufficient_shares","insufficient_shares","insufficient_shares","receive_slash_request_unbonded","receive_downtime_slash_request","jail","receive_slash_request_unbonded","send_vsc_with_downtime_ack","send_vsc_without_downtime_ack","send_vsc_without_downtime_ack","insufficient_shares","insufficient_shares","receive_downtime_slash_ack","consumer_update_val","consumer_del_val","consumer_add_val","send_vsc_without_downtime_ack","send_vsc_not_because_change","send_vsc_without_downtime_ack","insufficient_shares","more_than_one_third_val_power_change","send_vsc_without_downtime_ack","insufficient_shares","insufficient_shares","consumer_update_val","more_than_one_third_val_power_change","rebond_unval","send_vsc_without_downtime_ack","rebond_unval","send_vsc_without_downtime_ack","send_vsc_without_downtime_ack","consumer_update_val","consumer_del_val","consumer_add_val","some_undels_expired_but_not_completed","send_vsc_without_downtime_ack","insufficient_shares","some_undels_expired_but_not_completed","insufficient_shares","consumer_add_val","consumer_del_val","more_than_one_third_val_power_change","rebond_unval","send_vsc_without_downtime_ack","rebond_unval","some_undels_expired_but_not_completed","send_vsc_without_downtime_ack","consumer_update_val","consumer_update_val","consumer_send_maturation","consumer_send_maturation","consumer_send_maturation","consumer_update_val","consumer_update_val","consumer_del_val","consumer_send_maturation","consumer_send_maturation","some_undels_expired_but_not_completed","send_vsc_without_downtime_ack","some_undels_expired_but_not_completed","consumer_send_maturation","consumer_send_maturation","consumer_update_val","consumer_update_val","some_undels_expired_but_not_completed","complete_undel_immediate","complete_undel_immediate","complete_undel_immediate","complete_undel_immediate","set_unval_hold_false","complete_undel_immediate","complete_undel_immediate","send_vsc_without_downtime_ack","complete_unval_in_endblock","some_undels_expired_but_not_completed","send_vsc_without_downtime_ack"]},{"meta":{"commit":"7ffd0c04e4205cbc9caf212abfe6c59ee43153bf"},"constants":{"P":"provider","C":"consumer","UNBONDING_SECONDS_P":70,"UNBONDING_SECONDS_C":50,"TRUSTING_SECONDS":49,"NUM_VALIDATORS":4,"MAX_VALIDATORS":2,"SLASH_DOUBLESIGN":0,"SLASH_DOWNTIME":0,"JAIL_SECONDS":999999999999999,"BLOCK_SECONDS":6,"INITIAL_DELEGATOR_TOKENS":10000000000000,"DELEGATE_AMT_MIN":1000,"DELEGATE_AMT_MAX":5000,"UNDELEGATE_AMT_MIN":1000,"UNDELEGATE_AMT_MAX":5000,"ISDOWNTIME_PROBABILITY":0.5,"MAX_NUM_PACKETS_FOR_DELIVER":6},"actions":[{"ix":0,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":1,"action":{"kind":"Undelegate","val":3,"amt":2026},"partialState":{"h":1,"t":6,"tokens":[5000,4000,3000,2000],"delegation":[4000,3000,2000,1000],"delegatorTokens":10000000000000}},{"ix":2,"action":{"kind":"Delegate","val":3,"amt":1731},"partialState":{"h":1,"t":6,"tokens":[5000,4000,3000,3731],"delegation":[4000,3000,2000,2731],"delegatorTokens":9999999998269}},{"ix":3,"action":{"kind":"ConsumerSlash","val":0,"infractionHeight":0,"isDowntime":true},"partialState":{"h":1,"t":6,"outstandingDowntime":[true,false,false,false]}},{"ix":4,"action":{"kind":"Deliver","chain":"consumer","numPackets":2},"partialState":{"h":1,"t":6,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[true,false,false,false]}},{"ix":5,"action":{"kind":"Deliver","chain":"provider","numPackets":2},"partialState":{"h":1,"t":6,"tokens":[5000,4000,3000,3731],"delegation":[4000,3000,2000,2731],"delegatorTokens":9999999998269,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":6,"action":{"kind":"Deliver","chain":"consumer","numPackets":1},"partialState":{"h":1,"t":6,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[true,false,false,false]}},{"ix":7,"action":{"kind":"Undelegate","val":2,"amt":4307},"partialState":{"h":1,"t":6,"tokens":[5000,4000,3000,3731],"delegation":[4000,3000,2000,2731],"delegatorTokens":9999999998269}},{"ix":8,"action":{"kind":"Delegate","val":0,"amt":4420},"partialState":{"h":1,"t":6,"tokens":[9420,4000,3000,3731],"delegation":[8420,3000,2000,2731],"delegatorTokens":9999999993849}},{"ix":9,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":10,"action":{"kind":"Delegate","val":1,"amt":1695},"partialState":{"h":1,"t":6,"tokens":[9420,5695,3000,3731],"delegation":[8420,4695,2000,2731],"delegatorTokens":9999999992154}},{"ix":11,"action":{"kind":"Deliver","chain":"provider","numPackets":5},"partialState":{"h":1,"t":6,"tokens":[9420,5695,3000,3731],"delegation":[8420,4695,2000,2731],"delegatorTokens":9999999992154,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":12,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":13,"action":{"kind":"ConsumerSlash","val":2,"infractionHeight":0,"isDowntime":true},"partialState":{"h":1,"t":6,"outstandingDowntime":[true,false,true,false]}},{"ix":14,"action":{"kind":"ConsumerSlash","val":0,"infractionHeight":0,"isDowntime":false},"partialState":{"h":1,"t":6,"outstandingDowntime":[true,false,true,false]}},{"ix":15,"action":{"kind":"Deliver","chain":"provider","numPackets":4},"partialState":{"h":1,"t":6,"tokens":[9420,5695,3000,3731],"delegation":[8420,4695,2000,2731],"delegatorTokens":9999999992154,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":16,"action":{"kind":"ConsumerSlash","val":2,"infractionHeight":0,"isDowntime":true},"partialState":{"h":1,"t":6,"outstandingDowntime":[true,false,true,false]}},{"ix":17,"action":{"kind":"ConsumerSlash","val":3,"infractionHeight":0,"isDowntime":true},"partialState":{"h":1,"t":6,"outstandingDowntime":[true,false,true,true]}},{"ix":18,"action":{"kind":"Deliver","chain":"consumer","numPackets":3},"partialState":{"h":1,"t":6,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[true,false,true,true]}},{"ix":19,"action":{"kind":"Undelegate","val":0,"amt":3035},"partialState":{"h":1,"t":6,"tokens":[6385,5695,3000,3731],"delegation":[5385,4695,2000,2731],"delegatorTokens":9999999992154}},{"ix":20,"action":{"kind":"Deliver","chain":"provider","numPackets":5},"partialState":{"h":1,"t":6,"tokens":[6385,5695,3000,3731],"delegation":[5385,4695,2000,2731],"delegatorTokens":9999999992154,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":21,"action":{"kind":"Deliver","chain":"consumer","numPackets":6},"partialState":{"h":1,"t":6,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[true,false,true,true]}},{"ix":22,"action":{"kind":"Delegate","val":1,"amt":1524},"partialState":{"h":1,"t":6,"tokens":[6385,7219,3000,3731],"delegation":[5385,6219,2000,2731],"delegatorTokens":9999999990630}},{"ix":23,"action":{"kind":"Delegate","val":0,"amt":1292},"partialState":{"h":1,"t":6,"tokens":[7677,7219,3000,3731],"delegation":[6677,6219,2000,2731],"delegatorTokens":9999999989338}},{"ix":24,"action":{"kind":"Undelegate","val":2,"amt":3387},"partialState":{"h":1,"t":6,"tokens":[7677,7219,3000,3731],"delegation":[6677,6219,2000,2731],"delegatorTokens":9999999989338}},{"ix":25,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":2,"t":12,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[true,false,true,true]}},{"ix":26,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":3,"t":18,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[true,false,true,true]}},{"ix":27,"action":{"kind":"Deliver","chain":"provider","numPackets":4},"partialState":{"h":1,"t":6,"tokens":[7677,7219,3000,3731],"delegation":[6677,6219,2000,2731],"delegatorTokens":9999999989338,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":28,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":4,"t":24,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[true,false,true,true]}},{"ix":29,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":2,"t":12,"tokens":[7677,7219,3000,3731],"delegation":[6677,6219,2000,2731],"delegatorTokens":9999999989338,"jailed":[1000000000000005,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":30,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":31,"action":{"kind":"Undelegate","val":2,"amt":2123},"partialState":{"h":2,"t":12,"tokens":[7677,7219,3000,3731],"delegation":[6677,6219,2000,2731],"delegatorTokens":9999999989338}},{"ix":32,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":33,"action":{"kind":"Delegate","val":2,"amt":4858},"partialState":{"h":2,"t":12,"tokens":[7677,7219,7858,3731],"delegation":[6677,6219,6858,2731],"delegatorTokens":9999999984480}},{"ix":34,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":35,"action":{"kind":"Delegate","val":3,"amt":1931},"partialState":{"h":2,"t":12,"tokens":[7677,7219,7858,5662],"delegation":[6677,6219,6858,4662],"delegatorTokens":9999999982549}},{"ix":36,"action":{"kind":"Deliver","chain":"consumer","numPackets":3},"partialState":{"h":4,"t":24,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[true,false,true,true]}},{"ix":37,"action":{"kind":"Deliver","chain":"consumer","numPackets":1},"partialState":{"h":4,"t":24,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[true,false,true,true]}},{"ix":38,"action":{"kind":"Deliver","chain":"provider","numPackets":4},"partialState":{"h":2,"t":12,"tokens":[7677,7219,7858,5662],"delegation":[6677,6219,6858,4662],"delegatorTokens":9999999982549,"jailed":[1000000000000005,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":39,"action":{"kind":"Undelegate","val":2,"amt":3109},"partialState":{"h":2,"t":12,"tokens":[7677,7219,4749,5662],"delegation":[6677,6219,3749,4662],"delegatorTokens":9999999982549}},{"ix":40,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":3,"t":18,"tokens":[7677,7219,4749,5662],"delegation":[6677,6219,3749,4662],"delegatorTokens":9999999982549,"jailed":[1000000000000005,null,null,null],"status":["unbonding","bonded","unbonded","bonded"]}},{"ix":41,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":42,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":4,"t":24,"tokens":[7677,7219,4749,5662],"delegation":[6677,6219,3749,4662],"delegatorTokens":9999999982549,"jailed":[1000000000000005,null,null,null],"status":["unbonding","bonded","unbonded","bonded"]}},{"ix":43,"action":{"kind":"Deliver","chain":"provider","numPackets":6},"partialState":{"h":4,"t":24,"tokens":[7677,7219,4749,5662],"delegation":[6677,6219,3749,4662],"delegatorTokens":9999999982549,"jailed":[1000000000000005,null,null,null],"status":["unbonding","bonded","unbonded","bonded"]}},{"ix":44,"action":{"kind":"Delegate","val":0,"amt":4847},"partialState":{"h":4,"t":24,"tokens":[12524,7219,4749,5662],"delegation":[11524,6219,3749,4662],"delegatorTokens":9999999977702}},{"ix":45,"action":{"kind":"Undelegate","val":3,"amt":2324},"partialState":{"h":4,"t":24,"tokens":[12524,7219,4749,3338],"delegation":[11524,6219,3749,2338],"delegatorTokens":9999999977702}},{"ix":46,"action":{"kind":"Delegate","val":0,"amt":1793},"partialState":{"h":4,"t":24,"tokens":[14317,7219,4749,3338],"delegation":[13317,6219,3749,2338],"delegatorTokens":9999999975909}},{"ix":47,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":48,"action":{"kind":"Delegate","val":0,"amt":2171},"partialState":{"h":4,"t":24,"tokens":[16488,7219,4749,3338],"delegation":[15488,6219,3749,2338],"delegatorTokens":9999999973738}},{"ix":49,"action":{"kind":"Delegate","val":1,"amt":2682},"partialState":{"h":4,"t":24,"tokens":[16488,9901,4749,3338],"delegation":[15488,8901,3749,2338],"delegatorTokens":9999999971056}},{"ix":50,"action":{"kind":"Undelegate","val":3,"amt":1635},"partialState":{"h":4,"t":24,"tokens":[16488,9901,4749,1703],"delegation":[15488,8901,3749,703],"delegatorTokens":9999999971056}},{"ix":51,"action":{"kind":"Delegate","val":1,"amt":3877},"partialState":{"h":4,"t":24,"tokens":[16488,13778,4749,1703],"delegation":[15488,12778,3749,703],"delegatorTokens":9999999967179}},{"ix":52,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":5,"t":30,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[true,false,true,true]}},{"ix":53,"action":{"kind":"Undelegate","val":3,"amt":4584},"partialState":{"h":4,"t":24,"tokens":[16488,13778,4749,1703],"delegation":[15488,12778,3749,703],"delegatorTokens":9999999967179}},{"ix":54,"action":{"kind":"Delegate","val":1,"amt":1416},"partialState":{"h":4,"t":24,"tokens":[16488,15194,4749,1703],"delegation":[15488,14194,3749,703],"delegatorTokens":9999999965763}},{"ix":55,"action":{"kind":"Deliver","chain":"consumer","numPackets":6},"partialState":{"h":5,"t":30,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,false,true,true]}},{"ix":56,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":6,"t":36,"consumerPower":[null,7219,null,5662],"outstandingDowntime":[false,false,true,true]}},{"ix":57,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":58,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":7,"t":42,"consumerPower":[null,7219,null,5662],"outstandingDowntime":[false,false,true,true]}},{"ix":59,"action":{"kind":"Delegate","val":0,"amt":3189},"partialState":{"h":4,"t":24,"tokens":[19677,15194,4749,1703],"delegation":[18677,14194,3749,703],"delegatorTokens":9999999962574}},{"ix":60,"action":{"kind":"Delegate","val":3,"amt":4216},"partialState":{"h":4,"t":24,"tokens":[19677,15194,4749,5919],"delegation":[18677,14194,3749,4919],"delegatorTokens":9999999958358}},{"ix":61,"action":{"kind":"Delegate","val":2,"amt":4211},"partialState":{"h":4,"t":24,"tokens":[19677,15194,8960,5919],"delegation":[18677,14194,7960,4919],"delegatorTokens":9999999954147}},{"ix":62,"action":{"kind":"Delegate","val":0,"amt":3802},"partialState":{"h":4,"t":24,"tokens":[23479,15194,8960,5919],"delegation":[22479,14194,7960,4919],"delegatorTokens":9999999950345}},{"ix":63,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":64,"action":{"kind":"Delegate","val":3,"amt":2530},"partialState":{"h":4,"t":24,"tokens":[23479,15194,8960,8449],"delegation":[22479,14194,7960,7449],"delegatorTokens":9999999947815}},{"ix":65,"action":{"kind":"Deliver","chain":"consumer","numPackets":1},"partialState":{"h":7,"t":42,"consumerPower":[null,7219,null,5662],"outstandingDowntime":[false,false,true,true]}},{"ix":66,"action":{"kind":"Delegate","val":2,"amt":2043},"partialState":{"h":4,"t":24,"tokens":[23479,15194,11003,8449],"delegation":[22479,14194,10003,7449],"delegatorTokens":9999999945772}},{"ix":67,"action":{"kind":"Delegate","val":3,"amt":3861},"partialState":{"h":4,"t":24,"tokens":[23479,15194,11003,12310],"delegation":[22479,14194,10003,11310],"delegatorTokens":9999999941911}},{"ix":68,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":5,"t":30,"tokens":[23479,15194,11003,12310],"delegation":[22479,14194,10003,11310],"delegatorTokens":9999999941911,"jailed":[1000000000000005,null,null,null],"status":["unbonding","bonded","unbonded","bonded"]}},{"ix":69,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":6,"t":36,"tokens":[23479,15194,11003,12310],"delegation":[22479,14194,10003,11310],"delegatorTokens":9999999941911,"jailed":[1000000000000005,null,null,null],"status":["unbonding","bonded","unbonded","bonded"]}},{"ix":70,"action":{"kind":"Delegate","val":1,"amt":3889},"partialState":{"h":6,"t":36,"tokens":[23479,19083,11003,12310],"delegation":[22479,18083,10003,11310],"delegatorTokens":9999999938022}},{"ix":71,"action":{"kind":"Delegate","val":1,"amt":4956},"partialState":{"h":6,"t":36,"tokens":[23479,24039,11003,12310],"delegation":[22479,23039,10003,11310],"delegatorTokens":9999999933066}},{"ix":72,"action":{"kind":"Undelegate","val":2,"amt":4920},"partialState":{"h":6,"t":36,"tokens":[23479,24039,6083,12310],"delegation":[22479,23039,5083,11310],"delegatorTokens":9999999933066}},{"ix":73,"action":{"kind":"Undelegate","val":0,"amt":1158},"partialState":{"h":6,"t":36,"tokens":[22321,24039,6083,12310],"delegation":[21321,23039,5083,11310],"delegatorTokens":9999999933066}},{"ix":74,"action":{"kind":"Undelegate","val":0,"amt":4572},"partialState":{"h":6,"t":36,"tokens":[17749,24039,6083,12310],"delegation":[16749,23039,5083,11310],"delegatorTokens":9999999933066}},{"ix":75,"action":{"kind":"Deliver","chain":"consumer","numPackets":1},"partialState":{"h":7,"t":42,"consumerPower":[null,7219,null,5662],"outstandingDowntime":[false,false,true,true]}},{"ix":76,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":8,"t":48,"consumerPower":[null,15194,null,12310],"outstandingDowntime":[false,false,true,true]}},{"ix":77,"action":{"kind":"Delegate","val":1,"amt":4850},"partialState":{"h":6,"t":36,"tokens":[17749,28889,6083,12310],"delegation":[16749,27889,5083,11310],"delegatorTokens":9999999928216}},{"ix":78,"action":{"kind":"Deliver","chain":"consumer","numPackets":4},"partialState":{"h":8,"t":48,"consumerPower":[null,15194,null,12310],"outstandingDowntime":[false,false,true,true]}},{"ix":79,"action":{"kind":"Undelegate","val":0,"amt":4889},"partialState":{"h":6,"t":36,"tokens":[12860,28889,6083,12310],"delegation":[11860,27889,5083,11310],"delegatorTokens":9999999928216}},{"ix":80,"action":{"kind":"Deliver","chain":"consumer","numPackets":2},"partialState":{"h":8,"t":48,"consumerPower":[null,15194,null,12310],"outstandingDowntime":[false,false,true,true]}},{"ix":81,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":82,"action":{"kind":"Delegate","val":1,"amt":1741},"partialState":{"h":6,"t":36,"tokens":[12860,30630,6083,12310],"delegation":[11860,29630,5083,11310],"delegatorTokens":9999999926475}},{"ix":83,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":9,"t":54,"consumerPower":[null,15194,null,12310],"outstandingDowntime":[false,false,true,true]}},{"ix":84,"action":{"kind":"Deliver","chain":"consumer","numPackets":4},"partialState":{"h":9,"t":54,"consumerPower":[null,15194,null,12310],"outstandingDowntime":[false,false,true,true]}},{"ix":85,"action":{"kind":"Deliver","chain":"provider","numPackets":1},"partialState":{"h":6,"t":36,"tokens":[12860,30630,6083,12310],"delegation":[11860,29630,5083,11310],"delegatorTokens":9999999926475,"jailed":[1000000000000005,null,null,null],"status":["unbonding","bonded","unbonded","bonded"]}},{"ix":86,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":87,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":7,"t":42,"tokens":[12860,30630,6083,12310],"delegation":[11860,29630,5083,11310],"delegatorTokens":9999999926475,"jailed":[1000000000000005,null,null,null],"status":["unbonding","bonded","unbonded","bonded"]}},{"ix":88,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":89,"action":{"kind":"Undelegate","val":2,"amt":3066},"partialState":{"h":7,"t":42,"tokens":[12860,30630,3017,12310],"delegation":[11860,29630,2017,11310],"delegatorTokens":9999999926475}},{"ix":90,"action":{"kind":"Undelegate","val":0,"amt":4753},"partialState":{"h":7,"t":42,"tokens":[8107,30630,3017,12310],"delegation":[7107,29630,2017,11310],"delegatorTokens":9999999926475}},{"ix":91,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":92,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":10,"t":60,"consumerPower":[null,15194,null,12310],"outstandingDowntime":[false,false,true,true]}},{"ix":93,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":94,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":95,"action":{"kind":"Deliver","chain":"consumer","numPackets":6},"partialState":{"h":10,"t":60,"consumerPower":[null,15194,null,12310],"outstandingDowntime":[false,false,true,true]}},{"ix":96,"action":{"kind":"Deliver","chain":"provider","numPackets":2},"partialState":{"h":7,"t":42,"tokens":[8107,30630,3017,12310],"delegation":[7107,29630,2017,11310],"delegatorTokens":9999999926475,"jailed":[1000000000000005,null,null,null],"status":["unbonding","bonded","unbonded","bonded"]}},{"ix":97,"action":{"kind":"Deliver","chain":"provider","numPackets":1},"partialState":{"h":7,"t":42,"tokens":[8107,30630,3017,12310],"delegation":[7107,29630,2017,11310],"delegatorTokens":9999999926475,"jailed":[1000000000000005,null,null,null],"status":["unbonding","bonded","unbonded","bonded"]}},{"ix":98,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":99,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":100,"action":{"kind":"Undelegate","val":2,"amt":4047},"partialState":{"h":7,"t":42,"tokens":[8107,30630,3017,12310],"delegation":[7107,29630,2017,11310],"delegatorTokens":9999999926475}},{"ix":101,"action":{"kind":"Delegate","val":2,"amt":4499},"partialState":{"h":7,"t":42,"tokens":[8107,30630,7516,12310],"delegation":[7107,29630,6516,11310],"delegatorTokens":9999999921976}},{"ix":102,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":103,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":11,"t":66,"consumerPower":[null,15194,null,12310],"outstandingDowntime":[false,false,true,true]}},{"ix":104,"action":{"kind":"Undelegate","val":2,"amt":2725},"partialState":{"h":7,"t":42,"tokens":[8107,30630,4791,12310],"delegation":[7107,29630,3791,11310],"delegatorTokens":9999999921976}},{"ix":105,"action":{"kind":"Delegate","val":3,"amt":1310},"partialState":{"h":7,"t":42,"tokens":[8107,30630,4791,13620],"delegation":[7107,29630,3791,12620],"delegatorTokens":9999999920666}},{"ix":106,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":12,"t":72,"consumerPower":[null,15194,null,12310],"outstandingDowntime":[false,false,true,true]}},{"ix":107,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":108,"action":{"kind":"Delegate","val":1,"amt":1426},"partialState":{"h":7,"t":42,"tokens":[8107,32056,4791,13620],"delegation":[7107,31056,3791,12620],"delegatorTokens":9999999919240}},{"ix":109,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":8,"t":48,"tokens":[8107,32056,4791,13620],"delegation":[7107,31056,3791,12620],"delegatorTokens":9999999919240,"jailed":[1000000000000005,null,null,null],"status":["unbonding","bonded","unbonded","bonded"]}},{"ix":110,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":13,"t":78,"consumerPower":[null,15194,null,12310],"outstandingDowntime":[false,false,true,true]}},{"ix":111,"action":{"kind":"Deliver","chain":"provider","numPackets":3},"partialState":{"h":8,"t":48,"tokens":[8107,32056,4791,13620],"delegation":[7107,31056,3791,12620],"delegatorTokens":9999999919240,"jailed":[1000000000000005,null,null,null],"status":["unbonding","bonded","unbonded","bonded"]}},{"ix":112,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":9,"t":54,"tokens":[8107,32056,4791,13620],"delegation":[7107,31056,3791,12620],"delegatorTokens":9999999919240,"jailed":[1000000000000005,null,null,null],"status":["unbonding","bonded","unbonded","bonded"]}},{"ix":113,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":10,"t":60,"tokens":[8107,32056,4791,13620],"delegation":[7107,31056,3791,12620],"delegatorTokens":9999999919240,"jailed":[1000000000000005,null,null,null],"status":["unbonding","bonded","unbonded","bonded"]}},{"ix":114,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":115,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":116,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":14,"t":84,"consumerPower":[null,15194,null,12310],"outstandingDowntime":[false,false,true,true]}},{"ix":117,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":11,"t":66,"tokens":[8107,32056,4791,13620],"delegation":[7107,31056,3791,12620],"delegatorTokens":9999999919240,"jailed":[1000000000000005,null,null,null],"status":["unbonding","bonded","unbonded","bonded"]}},{"ix":118,"action":{"kind":"Undelegate","val":3,"amt":3895},"partialState":{"h":11,"t":66,"tokens":[8107,32056,4791,9725],"delegation":[7107,31056,3791,8725],"delegatorTokens":9999999919240}},{"ix":119,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":120,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":121,"action":{"kind":"Delegate","val":1,"amt":1540},"partialState":{"h":11,"t":66,"tokens":[8107,33596,4791,9725],"delegation":[7107,32596,3791,8725],"delegatorTokens":9999999917700}},{"ix":122,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":123,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":12,"t":72,"tokens":[8107,33596,4791,9725],"delegation":[7107,32596,3791,8725],"delegatorTokens":9999999917700,"jailed":[1000000000000005,null,null,null],"status":["unbonding","bonded","unbonded","bonded"]}},{"ix":124,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":125,"action":{"kind":"Deliver","chain":"consumer","numPackets":3},"partialState":{"h":14,"t":84,"consumerPower":[null,15194,null,12310],"outstandingDowntime":[false,false,true,true]}},{"ix":126,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":127,"action":{"kind":"Delegate","val":0,"amt":4222},"partialState":{"h":12,"t":72,"tokens":[12329,33596,4791,9725],"delegation":[11329,32596,3791,8725],"delegatorTokens":9999999913478}},{"ix":128,"action":{"kind":"Delegate","val":3,"amt":3954},"partialState":{"h":12,"t":72,"tokens":[12329,33596,4791,13679],"delegation":[11329,32596,3791,12679],"delegatorTokens":9999999909524}},{"ix":129,"action":{"kind":"Undelegate","val":3,"amt":1005},"partialState":{"h":12,"t":72,"tokens":[12329,33596,4791,12674],"delegation":[11329,32596,3791,11674],"delegatorTokens":9999999909524}},{"ix":130,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":13,"t":78,"tokens":[12329,33596,4791,12674],"delegation":[11329,32596,3791,11674],"delegatorTokens":9999999909524,"jailed":[1000000000000005,null,null,null],"status":["unbonding","bonded","unbonded","bonded"]}},{"ix":131,"action":{"kind":"Delegate","val":1,"amt":2247},"partialState":{"h":13,"t":78,"tokens":[12329,35843,4791,12674],"delegation":[11329,34843,3791,11674],"delegatorTokens":9999999907277}},{"ix":132,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":14,"t":84,"tokens":[12329,35843,4791,12674],"delegation":[11329,34843,3791,11674],"delegatorTokens":9999999907277,"jailed":[1000000000000005,null,null,null],"status":["unbonding","bonded","unbonded","bonded"]}},{"ix":133,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":15,"t":90,"tokens":[12329,35843,4791,12674],"delegation":[11329,34843,3791,11674],"delegatorTokens":9999999907277,"jailed":[1000000000000005,null,null,null],"status":["unbonding","bonded","unbonded","bonded"]}},{"ix":134,"action":{"kind":"Delegate","val":2,"amt":2836},"partialState":{"h":15,"t":90,"tokens":[12329,35843,7627,12674],"delegation":[11329,34843,6627,11674],"delegatorTokens":9999999904441}},{"ix":135,"action":{"kind":"Deliver","chain":"consumer","numPackets":1},"partialState":{"h":14,"t":84,"consumerPower":[null,15194,null,12310],"outstandingDowntime":[false,false,true,true]}},{"ix":136,"action":{"kind":"Deliver","chain":"consumer","numPackets":6},"partialState":{"h":14,"t":84,"consumerPower":[null,15194,null,12310],"outstandingDowntime":[false,false,true,true]}},{"ix":137,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":15,"t":90,"consumerPower":[null,35843,null,12674],"outstandingDowntime":[false,false,true,true]}},{"ix":138,"action":{"kind":"Deliver","chain":"consumer","numPackets":4},"partialState":{"h":15,"t":90,"consumerPower":[null,35843,null,12674],"outstandingDowntime":[false,false,true,true]}},{"ix":139,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":140,"action":{"kind":"Undelegate","val":0,"amt":3047},"partialState":{"h":15,"t":90,"tokens":[9282,35843,7627,12674],"delegation":[8282,34843,6627,11674],"delegatorTokens":9999999904441}},{"ix":141,"action":{"kind":"Deliver","chain":"consumer","numPackets":2},"partialState":{"h":15,"t":90,"consumerPower":[null,35843,null,12674],"outstandingDowntime":[false,false,true,true]}},{"ix":142,"action":{"kind":"Undelegate","val":2,"amt":4348},"partialState":{"h":15,"t":90,"tokens":[9282,35843,3279,12674],"delegation":[8282,34843,2279,11674],"delegatorTokens":9999999904441}},{"ix":143,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":144,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":16,"t":96,"tokens":[9282,35843,3279,12674],"delegation":[8282,34843,2279,11674],"delegatorTokens":9999999904441,"jailed":[1000000000000005,null,null,null],"status":["unbonding","bonded","unbonded","bonded"]}},{"ix":145,"action":{"kind":"Delegate","val":0,"amt":4899},"partialState":{"h":16,"t":96,"tokens":[14181,35843,3279,12674],"delegation":[13181,34843,2279,11674],"delegatorTokens":9999999899542}},{"ix":146,"action":{"kind":"Deliver","chain":"consumer","numPackets":4},"partialState":{"h":15,"t":90,"consumerPower":[null,35843,null,12674],"outstandingDowntime":[false,false,true,true]}},{"ix":147,"action":{"kind":"Undelegate","val":2,"amt":3256},"partialState":{"h":16,"t":96,"tokens":[14181,35843,3279,12674],"delegation":[13181,34843,2279,11674],"delegatorTokens":9999999899542}},{"ix":148,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":16,"t":96,"consumerPower":[null,35843,null,12674],"outstandingDowntime":[false,false,true,true]}},{"ix":149,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":150,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":151,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":152,"action":{"kind":"Deliver","chain":"consumer","numPackets":6},"partialState":{"h":16,"t":96,"consumerPower":[null,35843,null,12674],"outstandingDowntime":[false,false,true,true]}},{"ix":153,"action":{"kind":"Delegate","val":1,"amt":3930},"partialState":{"h":16,"t":96,"tokens":[14181,39773,3279,12674],"delegation":[13181,38773,2279,11674],"delegatorTokens":9999999895612}},{"ix":154,"action":{"kind":"Delegate","val":2,"amt":4208},"partialState":{"h":16,"t":96,"tokens":[14181,39773,7487,12674],"delegation":[13181,38773,6487,11674],"delegatorTokens":9999999891404}},{"ix":155,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":156,"action":{"kind":"Undelegate","val":1,"amt":1165},"partialState":{"h":16,"t":96,"tokens":[14181,38608,7487,12674],"delegation":[13181,37608,6487,11674],"delegatorTokens":9999999891404}},{"ix":157,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":17,"t":102,"consumerPower":[null,35843,null,12674],"outstandingDowntime":[false,false,true,true]}},{"ix":158,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":159,"action":{"kind":"Deliver","chain":"consumer","numPackets":5},"partialState":{"h":17,"t":102,"consumerPower":[null,35843,null,12674],"outstandingDowntime":[false,false,true,true]}},{"ix":160,"action":{"kind":"Undelegate","val":2,"amt":1121},"partialState":{"h":16,"t":96,"tokens":[14181,38608,6366,12674],"delegation":[13181,37608,5366,11674],"delegatorTokens":9999999891404}},{"ix":161,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":18,"t":108,"consumerPower":[null,35843,null,12674],"outstandingDowntime":[false,false,true,true]}},{"ix":162,"action":{"kind":"Undelegate","val":2,"amt":2548},"partialState":{"h":16,"t":96,"tokens":[14181,38608,3818,12674],"delegation":[13181,37608,2818,11674],"delegatorTokens":9999999891404}},{"ix":163,"action":{"kind":"Deliver","chain":"consumer","numPackets":6},"partialState":{"h":18,"t":108,"consumerPower":[null,35843,null,12674],"outstandingDowntime":[false,false,true,true]}},{"ix":164,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":19,"t":114,"consumerPower":[null,35843,null,12674],"outstandingDowntime":[false,false,true,true]}},{"ix":165,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":166,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":167,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":17,"t":102,"tokens":[14181,38608,3818,12674],"delegation":[13181,37608,2818,11674],"delegatorTokens":9999999891404,"jailed":[1000000000000005,null,null,null],"status":["unbonding","bonded","unbonded","bonded"]}},{"ix":168,"action":{"kind":"Undelegate","val":3,"amt":4255},"partialState":{"h":17,"t":102,"tokens":[14181,38608,3818,8419],"delegation":[13181,37608,2818,7419],"delegatorTokens":9999999891404}},{"ix":169,"action":{"kind":"Deliver","chain":"consumer","numPackets":2},"partialState":{"h":19,"t":114,"consumerPower":[null,35843,null,12674],"outstandingDowntime":[false,false,true,true]}},{"ix":170,"action":{"kind":"Undelegate","val":2,"amt":1480},"partialState":{"h":17,"t":102,"tokens":[14181,38608,2338,8419],"delegation":[13181,37608,1338,7419],"delegatorTokens":9999999891404}},{"ix":171,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":20,"t":120,"consumerPower":[null,35843,null,12674],"outstandingDowntime":[false,false,true,true]}},{"ix":172,"action":{"kind":"Deliver","chain":"provider","numPackets":1},"partialState":{"h":17,"t":102,"tokens":[14181,38608,2338,8419],"delegation":[13181,37608,1338,7419],"delegatorTokens":9999999891404,"jailed":[1000000000000005,null,null,null],"status":["unbonding","bonded","unbonded","bonded"]}},{"ix":173,"action":{"kind":"Delegate","val":3,"amt":4724},"partialState":{"h":17,"t":102,"tokens":[14181,38608,2338,13143],"delegation":[13181,37608,1338,12143],"delegatorTokens":9999999886680}},{"ix":174,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":175,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":18,"t":108,"tokens":[14181,38608,2338,13143],"delegation":[13181,37608,1338,12143],"delegatorTokens":9999999889715,"jailed":[1000000000000005,null,null,null],"status":["unbonding","bonded","unbonded","bonded"]}},{"ix":176,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":177,"action":{"kind":"Delegate","val":0,"amt":1857},"partialState":{"h":18,"t":108,"tokens":[16038,38608,2338,13143],"delegation":[15038,37608,1338,12143],"delegatorTokens":9999999887858}},{"ix":178,"action":{"kind":"Delegate","val":3,"amt":2063},"partialState":{"h":18,"t":108,"tokens":[16038,38608,2338,15206],"delegation":[15038,37608,1338,14206],"delegatorTokens":9999999885795}},{"ix":179,"action":{"kind":"Deliver","chain":"provider","numPackets":6},"partialState":{"h":18,"t":108,"tokens":[16038,38608,2338,15206],"delegation":[15038,37608,1338,14206],"delegatorTokens":9999999885795,"jailed":[1000000000000005,null,null,null],"status":["unbonding","bonded","unbonded","bonded"]}},{"ix":180,"action":{"kind":"Deliver","chain":"provider","numPackets":2},"partialState":{"h":18,"t":108,"tokens":[16038,38608,2338,15206],"delegation":[15038,37608,1338,14206],"delegatorTokens":9999999885795,"jailed":[1000000000000005,null,null,null],"status":["unbonding","bonded","unbonded","bonded"]}},{"ix":181,"action":{"kind":"Delegate","val":2,"amt":2223},"partialState":{"h":18,"t":108,"tokens":[16038,38608,4561,15206],"delegation":[15038,37608,3561,14206],"delegatorTokens":9999999883572}},{"ix":182,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":19,"t":114,"tokens":[16038,38608,4561,15206],"delegation":[15038,37608,3561,14206],"delegatorTokens":9999999890640,"jailed":[1000000000000005,null,null,null],"status":["unbonding","bonded","unbonded","bonded"]}},{"ix":183,"action":{"kind":"Delegate","val":0,"amt":3624},"partialState":{"h":19,"t":114,"tokens":[19662,38608,4561,15206],"delegation":[18662,37608,3561,14206],"delegatorTokens":9999999887016}},{"ix":184,"action":{"kind":"Undelegate","val":1,"amt":1857},"partialState":{"h":19,"t":114,"tokens":[19662,36751,4561,15206],"delegation":[18662,35751,3561,14206],"delegatorTokens":9999999887016}},{"ix":185,"action":{"kind":"Deliver","chain":"consumer","numPackets":6},"partialState":{"h":20,"t":120,"consumerPower":[null,35843,null,12674],"outstandingDowntime":[false,false,true,true]}},{"ix":186,"action":{"kind":"Deliver","chain":"consumer","numPackets":3},"partialState":{"h":20,"t":120,"consumerPower":[null,35843,null,12674],"outstandingDowntime":[false,false,true,true]}},{"ix":187,"action":{"kind":"Deliver","chain":"consumer","numPackets":6},"partialState":{"h":20,"t":120,"consumerPower":[null,35843,null,12674],"outstandingDowntime":[false,false,true,true]}},{"ix":188,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":20,"t":120,"tokens":[19662,36751,4561,15206],"delegation":[18662,35751,3561,14206],"delegatorTokens":9999999887016,"jailed":[1000000000000005,null,null,null],"status":["unbonded","bonded","unbonded","bonded"]}},{"ix":189,"action":{"kind":"Deliver","chain":"consumer","numPackets":6},"partialState":{"h":20,"t":120,"consumerPower":[null,35843,null,12674],"outstandingDowntime":[false,false,true,true]}},{"ix":190,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":191,"action":{"kind":"Deliver","chain":"consumer","numPackets":1},"partialState":{"h":20,"t":120,"consumerPower":[null,35843,null,12674],"outstandingDowntime":[false,false,true,true]}},{"ix":192,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":21,"t":126,"tokens":[19662,36751,4561,15206],"delegation":[18662,35751,3561,14206],"delegatorTokens":9999999887016,"jailed":[1000000000000005,null,null,null],"status":["unbonded","bonded","unbonded","bonded"]}},{"ix":193,"action":{"kind":"Delegate","val":0,"amt":4103},"partialState":{"h":21,"t":126,"tokens":[23765,36751,4561,15206],"delegation":[22765,35751,3561,14206],"delegatorTokens":9999999882913}},{"ix":194,"action":{"kind":"Delegate","val":0,"amt":2958},"partialState":{"h":21,"t":126,"tokens":[26723,36751,4561,15206],"delegation":[25723,35751,3561,14206],"delegatorTokens":9999999879955}},{"ix":195,"action":{"kind":"Undelegate","val":3,"amt":3988},"partialState":{"h":21,"t":126,"tokens":[26723,36751,4561,11218],"delegation":[25723,35751,3561,10218],"delegatorTokens":9999999879955}},{"ix":196,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":197,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":22,"t":132,"tokens":[26723,36751,4561,11218],"delegation":[25723,35751,3561,10218],"delegatorTokens":9999999879955,"jailed":[1000000000000005,null,null,null],"status":["unbonded","bonded","unbonded","bonded"]}},{"ix":198,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":21,"t":126,"consumerPower":[null,38608,null,15206],"outstandingDowntime":[false,false,true,true]}},{"ix":199,"action":{"kind":"Delegate","val":3,"amt":3186},"partialState":{"h":22,"t":132,"tokens":[26723,36751,4561,14404],"delegation":[25723,35751,3561,13404],"delegatorTokens":9999999876769}}],"events":["insufficient_shares","send_downtime_slash_request","insufficient_shares","send_downtime_slash_request","send_double_sign_slash_request","downtime_slash_request_outstanding","send_downtime_slash_request","insufficient_shares","receive_double_sign_slash_request","receive_downtime_slash_request","jail","receive_slash_request_unbonded","receive_slash_request_unbonded","send_vsc_with_downtime_ack","insufficient_shares","more_than_one_third_val_power_change","send_vsc_without_downtime_ack","insufficient_shares","receive_downtime_slash_ack","consumer_del_val","consumer_update_val","consumer_add_val","send_vsc_without_downtime_ack","consumer_update_val","consumer_update_val","send_vsc_without_downtime_ack","insufficient_shares","send_vsc_without_downtime_ack","send_vsc_without_downtime_ack","send_vsc_without_downtime_ack","some_undels_expired_but_not_completed","send_vsc_without_downtime_ack","some_undels_expired_but_not_completed","consumer_send_maturation","consumer_send_maturation","consumer_update_val","consumer_update_val","send_vsc_not_because_change","send_vsc_without_downtime_ack","insufficient_shares","consumer_send_maturation","some_undels_expired_but_not_completed","send_vsc_without_downtime_ack","complete_undel_immediate","send_vsc_without_downtime_ack","some_undels_expired_but_not_completed","complete_undel_immediate","set_unval_hold_false","complete_undel_immediate","complete_undel_immediate","send_vsc_without_downtime_ack","complete_unval_in_endblock","some_undels_expired_but_not_completed","send_vsc_without_downtime_ack","send_vsc_without_downtime_ack","consumer_update_val","consumer_update_val"]},{"meta":{"commit":"7ffd0c04e4205cbc9caf212abfe6c59ee43153bf"},"constants":{"P":"provider","C":"consumer","UNBONDING_SECONDS_P":70,"UNBONDING_SECONDS_C":50,"TRUSTING_SECONDS":49,"NUM_VALIDATORS":4,"MAX_VALIDATORS":2,"SLASH_DOUBLESIGN":0,"SLASH_DOWNTIME":0,"JAIL_SECONDS":999999999999999,"BLOCK_SECONDS":6,"INITIAL_DELEGATOR_TOKENS":10000000000000,"DELEGATE_AMT_MIN":1000,"DELEGATE_AMT_MAX":5000,"UNDELEGATE_AMT_MIN":1000,"UNDELEGATE_AMT_MAX":5000,"ISDOWNTIME_PROBABILITY":0.5,"MAX_NUM_PACKETS_FOR_DELIVER":6},"actions":[{"ix":0,"action":{"kind":"ConsumerSlash","val":1,"infractionHeight":0,"isDowntime":false},"partialState":{"h":1,"t":6,"outstandingDowntime":[false,false,false,false]}},{"ix":1,"action":{"kind":"ConsumerSlash","val":2,"infractionHeight":0,"isDowntime":true},"partialState":{"h":1,"t":6,"outstandingDowntime":[false,false,true,false]}},{"ix":2,"action":{"kind":"Deliver","chain":"provider","numPackets":3},"partialState":{"h":1,"t":6,"tokens":[5000,4000,3000,2000],"delegation":[4000,3000,2000,1000],"delegatorTokens":10000000000000,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":3,"action":{"kind":"ConsumerSlash","val":2,"infractionHeight":0,"isDowntime":true},"partialState":{"h":1,"t":6,"outstandingDowntime":[false,false,true,false]}},{"ix":4,"action":{"kind":"ConsumerSlash","val":1,"infractionHeight":0,"isDowntime":true},"partialState":{"h":1,"t":6,"outstandingDowntime":[false,true,true,false]}},{"ix":5,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":2,"t":12,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,true,true,false]}},{"ix":6,"action":{"kind":"Delegate","val":3,"amt":1383},"partialState":{"h":1,"t":6,"tokens":[5000,4000,3000,3383],"delegation":[4000,3000,2000,2383],"delegatorTokens":9999999998617}},{"ix":7,"action":{"kind":"Delegate","val":0,"amt":3499},"partialState":{"h":1,"t":6,"tokens":[8499,4000,3000,3383],"delegation":[7499,3000,2000,2383],"delegatorTokens":9999999995118}},{"ix":8,"action":{"kind":"ConsumerSlash","val":3,"infractionHeight":1,"isDowntime":true},"partialState":{"h":2,"t":12,"outstandingDowntime":[false,true,true,true]}},{"ix":9,"action":{"kind":"Undelegate","val":3,"amt":4215},"partialState":{"h":1,"t":6,"tokens":[8499,4000,3000,3383],"delegation":[7499,3000,2000,2383],"delegatorTokens":9999999995118}},{"ix":10,"action":{"kind":"Delegate","val":0,"amt":4085},"partialState":{"h":1,"t":6,"tokens":[12584,4000,3000,3383],"delegation":[11584,3000,2000,2383],"delegatorTokens":9999999991033}},{"ix":11,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":2,"t":12,"tokens":[12584,4000,3000,3383],"delegation":[11584,3000,2000,2383],"delegatorTokens":9999999991033,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":12,"action":{"kind":"Undelegate","val":2,"amt":4019},"partialState":{"h":2,"t":12,"tokens":[12584,4000,3000,3383],"delegation":[11584,3000,2000,2383],"delegatorTokens":9999999991033}},{"ix":13,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":14,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":15,"action":{"kind":"Deliver","chain":"consumer","numPackets":4},"partialState":{"h":2,"t":12,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,true,true,true]}},{"ix":16,"action":{"kind":"Delegate","val":1,"amt":2391},"partialState":{"h":2,"t":12,"tokens":[12584,6391,3000,3383],"delegation":[11584,5391,2000,2383],"delegatorTokens":9999999988642}},{"ix":17,"action":{"kind":"Undelegate","val":0,"amt":4106},"partialState":{"h":2,"t":12,"tokens":[8478,6391,3000,3383],"delegation":[7478,5391,2000,2383],"delegatorTokens":9999999988642}},{"ix":18,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":19,"action":{"kind":"Delegate","val":0,"amt":1366},"partialState":{"h":2,"t":12,"tokens":[9844,6391,3000,3383],"delegation":[8844,5391,2000,2383],"delegatorTokens":9999999987276}},{"ix":20,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":3,"t":18,"tokens":[9844,6391,3000,3383],"delegation":[8844,5391,2000,2383],"delegatorTokens":9999999987276,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":21,"action":{"kind":"Delegate","val":0,"amt":1787},"partialState":{"h":3,"t":18,"tokens":[11631,6391,3000,3383],"delegation":[10631,5391,2000,2383],"delegatorTokens":9999999985489}},{"ix":22,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":23,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":3,"t":18,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,true,true,true]}},{"ix":24,"action":{"kind":"Deliver","chain":"provider","numPackets":2},"partialState":{"h":3,"t":18,"tokens":[11631,6391,3000,3383],"delegation":[10631,5391,2000,2383],"delegatorTokens":9999999985489,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":25,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":4,"t":24,"tokens":[11631,6391,3000,3383],"delegation":[10631,5391,2000,2383],"delegatorTokens":9999999985489,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":26,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":4,"t":24,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,true,true,true]}},{"ix":27,"action":{"kind":"Undelegate","val":2,"amt":1517},"partialState":{"h":4,"t":24,"tokens":[11631,6391,1483,3383],"delegation":[10631,5391,483,2383],"delegatorTokens":9999999985489}},{"ix":28,"action":{"kind":"Undelegate","val":2,"amt":3656},"partialState":{"h":4,"t":24,"tokens":[11631,6391,1483,3383],"delegation":[10631,5391,483,2383],"delegatorTokens":9999999985489}},{"ix":29,"action":{"kind":"Deliver","chain":"provider","numPackets":3},"partialState":{"h":4,"t":24,"tokens":[11631,6391,1483,3383],"delegation":[10631,5391,483,2383],"delegatorTokens":9999999985489,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":30,"action":{"kind":"Delegate","val":2,"amt":3022},"partialState":{"h":4,"t":24,"tokens":[11631,6391,4505,3383],"delegation":[10631,5391,3505,2383],"delegatorTokens":9999999982467}},{"ix":31,"action":{"kind":"Deliver","chain":"provider","numPackets":1},"partialState":{"h":4,"t":24,"tokens":[11631,6391,4505,3383],"delegation":[10631,5391,3505,2383],"delegatorTokens":9999999982467,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":32,"action":{"kind":"Undelegate","val":1,"amt":3354},"partialState":{"h":4,"t":24,"tokens":[11631,3037,4505,3383],"delegation":[10631,2037,3505,2383],"delegatorTokens":9999999982467}},{"ix":33,"action":{"kind":"Delegate","val":1,"amt":3208},"partialState":{"h":4,"t":24,"tokens":[11631,6245,4505,3383],"delegation":[10631,5245,3505,2383],"delegatorTokens":9999999979259}},{"ix":34,"action":{"kind":"Deliver","chain":"consumer","numPackets":3},"partialState":{"h":4,"t":24,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,true,true,true]}},{"ix":35,"action":{"kind":"Deliver","chain":"provider","numPackets":6},"partialState":{"h":4,"t":24,"tokens":[11631,6245,4505,3383],"delegation":[10631,5245,3505,2383],"delegatorTokens":9999999979259,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":36,"action":{"kind":"Undelegate","val":2,"amt":1341},"partialState":{"h":4,"t":24,"tokens":[11631,6245,3164,3383],"delegation":[10631,5245,2164,2383],"delegatorTokens":9999999979259}},{"ix":37,"action":{"kind":"Delegate","val":0,"amt":1936},"partialState":{"h":4,"t":24,"tokens":[13567,6245,3164,3383],"delegation":[12567,5245,2164,2383],"delegatorTokens":9999999977323}},{"ix":38,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":5,"t":30,"tokens":[13567,6245,3164,3383],"delegation":[12567,5245,2164,2383],"delegatorTokens":9999999977323,"jailed":[null,1000000000000023,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":39,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":40,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":6,"t":36,"tokens":[13567,6245,3164,3383],"delegation":[12567,5245,2164,2383],"delegatorTokens":9999999977323,"jailed":[null,1000000000000023,null,null],"status":["bonded","unbonding","unbonded","bonded"]}},{"ix":41,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":5,"t":30,"consumerPower":[9844,6391,null,null],"outstandingDowntime":[false,true,true,true]}},{"ix":42,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":7,"t":42,"tokens":[13567,6245,3164,3383],"delegation":[12567,5245,2164,2383],"delegatorTokens":9999999977323,"jailed":[null,1000000000000023,null,null],"status":["bonded","unbonding","unbonded","bonded"]}},{"ix":43,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":8,"t":48,"tokens":[13567,6245,3164,3383],"delegation":[12567,5245,2164,2383],"delegatorTokens":9999999977323,"jailed":[null,1000000000000023,null,null],"status":["bonded","unbonding","unbonded","bonded"]}},{"ix":44,"action":{"kind":"Delegate","val":1,"amt":3778},"partialState":{"h":8,"t":48,"tokens":[13567,10023,3164,3383],"delegation":[12567,9023,2164,2383],"delegatorTokens":9999999973545}},{"ix":45,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":46,"action":{"kind":"Deliver","chain":"consumer","numPackets":1},"partialState":{"h":5,"t":30,"consumerPower":[9844,6391,null,null],"outstandingDowntime":[false,true,true,true]}},{"ix":47,"action":{"kind":"Undelegate","val":0,"amt":2021},"partialState":{"h":8,"t":48,"tokens":[11546,10023,3164,3383],"delegation":[10546,9023,2164,2383],"delegatorTokens":9999999973545}},{"ix":48,"action":{"kind":"Deliver","chain":"provider","numPackets":1},"partialState":{"h":8,"t":48,"tokens":[11546,10023,3164,3383],"delegation":[10546,9023,2164,2383],"delegatorTokens":9999999973545,"jailed":[null,1000000000000023,null,null],"status":["bonded","unbonding","unbonded","bonded"]}},{"ix":49,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":9,"t":54,"tokens":[11546,10023,3164,3383],"delegation":[10546,9023,2164,2383],"delegatorTokens":9999999973545,"jailed":[null,1000000000000023,null,null],"status":["bonded","unbonding","unbonded","bonded"]}},{"ix":50,"action":{"kind":"Deliver","chain":"provider","numPackets":6},"partialState":{"h":9,"t":54,"tokens":[11546,10023,3164,3383],"delegation":[10546,9023,2164,2383],"delegatorTokens":9999999973545,"jailed":[null,1000000000000023,null,null],"status":["bonded","unbonding","unbonded","bonded"]}},{"ix":51,"action":{"kind":"Deliver","chain":"provider","numPackets":1},"partialState":{"h":9,"t":54,"tokens":[11546,10023,3164,3383],"delegation":[10546,9023,2164,2383],"delegatorTokens":9999999973545,"jailed":[null,1000000000000023,null,null],"status":["bonded","unbonding","unbonded","bonded"]}},{"ix":52,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":53,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":54,"action":{"kind":"Deliver","chain":"consumer","numPackets":6},"partialState":{"h":5,"t":30,"consumerPower":[9844,6391,null,null],"outstandingDowntime":[false,false,true,true]}},{"ix":55,"action":{"kind":"Deliver","chain":"provider","numPackets":1},"partialState":{"h":9,"t":54,"tokens":[11546,10023,3164,3383],"delegation":[10546,9023,2164,2383],"delegatorTokens":9999999973545,"jailed":[null,1000000000000023,null,null],"status":["bonded","unbonding","unbonded","bonded"]}},{"ix":56,"action":{"kind":"Deliver","chain":"consumer","numPackets":2},"partialState":{"h":5,"t":30,"consumerPower":[9844,6391,null,null],"outstandingDowntime":[false,false,true,true]}},{"ix":57,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":6,"t":36,"consumerPower":[13567,null,null,3383],"outstandingDowntime":[false,false,true,true]}},{"ix":58,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":59,"action":{"kind":"Deliver","chain":"consumer","numPackets":6},"partialState":{"h":6,"t":36,"consumerPower":[13567,null,null,3383],"outstandingDowntime":[false,false,true,true]}},{"ix":60,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":10,"t":60,"tokens":[11546,10023,3164,3383],"delegation":[10546,9023,2164,2383],"delegatorTokens":9999999973545,"jailed":[null,1000000000000023,null,null],"status":["bonded","unbonding","unbonded","bonded"]}},{"ix":61,"action":{"kind":"Undelegate","val":3,"amt":2197},"partialState":{"h":10,"t":60,"tokens":[11546,10023,3164,1186],"delegation":[10546,9023,2164,186],"delegatorTokens":9999999973545}},{"ix":62,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":7,"t":42,"consumerPower":[13567,null,null,3383],"outstandingDowntime":[false,false,true,true]}},{"ix":63,"action":{"kind":"Undelegate","val":3,"amt":2604},"partialState":{"h":10,"t":60,"tokens":[11546,10023,3164,1186],"delegation":[10546,9023,2164,186],"delegatorTokens":9999999973545}},{"ix":64,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":8,"t":48,"consumerPower":[13567,null,null,3383],"outstandingDowntime":[false,false,true,true]}},{"ix":65,"action":{"kind":"Undelegate","val":2,"amt":1300},"partialState":{"h":10,"t":60,"tokens":[11546,10023,1864,1186],"delegation":[10546,9023,864,186],"delegatorTokens":9999999973545}},{"ix":66,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":9,"t":54,"consumerPower":[13567,null,null,3383],"outstandingDowntime":[false,false,true,true]}},{"ix":67,"action":{"kind":"Delegate","val":2,"amt":4679},"partialState":{"h":10,"t":60,"tokens":[11546,10023,6543,1186],"delegation":[10546,9023,5543,186],"delegatorTokens":9999999968866}},{"ix":68,"action":{"kind":"Undelegate","val":3,"amt":4980},"partialState":{"h":10,"t":60,"tokens":[11546,10023,6543,1186],"delegation":[10546,9023,5543,186],"delegatorTokens":9999999968866}},{"ix":69,"action":{"kind":"Undelegate","val":2,"amt":1164},"partialState":{"h":10,"t":60,"tokens":[11546,10023,5379,1186],"delegation":[10546,9023,4379,186],"delegatorTokens":9999999968866}},{"ix":70,"action":{"kind":"Deliver","chain":"provider","numPackets":4},"partialState":{"h":10,"t":60,"tokens":[11546,10023,5379,1186],"delegation":[10546,9023,4379,186],"delegatorTokens":9999999968866,"jailed":[null,1000000000000023,null,null],"status":["bonded","unbonding","unbonded","bonded"]}},{"ix":71,"action":{"kind":"Delegate","val":2,"amt":3834},"partialState":{"h":10,"t":60,"tokens":[11546,10023,9213,1186],"delegation":[10546,9023,8213,186],"delegatorTokens":9999999965032}},{"ix":72,"action":{"kind":"Deliver","chain":"consumer","numPackets":2},"partialState":{"h":9,"t":54,"consumerPower":[13567,null,null,3383],"outstandingDowntime":[false,false,true,true]}},{"ix":73,"action":{"kind":"Deliver","chain":"consumer","numPackets":2},"partialState":{"h":9,"t":54,"consumerPower":[13567,null,null,3383],"outstandingDowntime":[false,false,true,true]}},{"ix":74,"action":{"kind":"Deliver","chain":"provider","numPackets":2},"partialState":{"h":10,"t":60,"tokens":[11546,10023,9213,1186],"delegation":[10546,9023,8213,186],"delegatorTokens":9999999965032,"jailed":[null,1000000000000023,null,null],"status":["bonded","unbonding","unbonded","bonded"]}},{"ix":75,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":10,"t":60,"consumerPower":[11546,null,null,3383],"outstandingDowntime":[false,false,true,true]}},{"ix":76,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":77,"action":{"kind":"Delegate","val":1,"amt":3901},"partialState":{"h":10,"t":60,"tokens":[11546,13924,9213,1186],"delegation":[10546,12924,8213,186],"delegatorTokens":9999999961131}},{"ix":78,"action":{"kind":"Undelegate","val":2,"amt":2949},"partialState":{"h":10,"t":60,"tokens":[11546,13924,6264,1186],"delegation":[10546,12924,5264,186],"delegatorTokens":9999999961131}},{"ix":79,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":11,"t":66,"tokens":[11546,13924,6264,1186],"delegation":[10546,12924,5264,186],"delegatorTokens":9999999961131,"jailed":[null,1000000000000023,null,null],"status":["bonded","unbonding","bonded","unbonding"]}},{"ix":80,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":81,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":82,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":12,"t":72,"tokens":[11546,13924,6264,1186],"delegation":[10546,12924,5264,186],"delegatorTokens":9999999961131,"jailed":[null,1000000000000023,null,null],"status":["bonded","unbonding","bonded","unbonding"]}},{"ix":83,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":13,"t":78,"tokens":[11546,13924,6264,1186],"delegation":[10546,12924,5264,186],"delegatorTokens":9999999961131,"jailed":[null,1000000000000023,null,null],"status":["bonded","unbonding","bonded","unbonding"]}},{"ix":84,"action":{"kind":"Delegate","val":3,"amt":4967},"partialState":{"h":13,"t":78,"tokens":[11546,13924,6264,6153],"delegation":[10546,12924,5264,5153],"delegatorTokens":9999999956164}},{"ix":85,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":86,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":14,"t":84,"tokens":[11546,13924,6264,6153],"delegation":[10546,12924,5264,5153],"delegatorTokens":9999999956164,"jailed":[null,1000000000000023,null,null],"status":["bonded","unbonding","bonded","unbonding"]}},{"ix":87,"action":{"kind":"Deliver","chain":"consumer","numPackets":6},"partialState":{"h":10,"t":60,"consumerPower":[11546,null,null,3383],"outstandingDowntime":[false,false,true,true]}},{"ix":88,"action":{"kind":"Deliver","chain":"provider","numPackets":3},"partialState":{"h":14,"t":84,"tokens":[11546,13924,6264,6153],"delegation":[10546,12924,5264,5153],"delegatorTokens":9999999956164,"jailed":[null,1000000000000023,null,null],"status":["bonded","unbonding","bonded","unbonding"]}},{"ix":89,"action":{"kind":"Undelegate","val":3,"amt":1389},"partialState":{"h":14,"t":84,"tokens":[11546,13924,6264,4764],"delegation":[10546,12924,5264,3764],"delegatorTokens":9999999956164}},{"ix":90,"action":{"kind":"Deliver","chain":"consumer","numPackets":4},"partialState":{"h":10,"t":60,"consumerPower":[11546,null,null,3383],"outstandingDowntime":[false,false,true,true]}},{"ix":91,"action":{"kind":"Delegate","val":3,"amt":2656},"partialState":{"h":14,"t":84,"tokens":[11546,13924,6264,7420],"delegation":[10546,12924,5264,6420],"delegatorTokens":9999999953508}},{"ix":92,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":93,"action":{"kind":"Deliver","chain":"consumer","numPackets":5},"partialState":{"h":10,"t":60,"consumerPower":[11546,null,null,3383],"outstandingDowntime":[false,false,true,true]}},{"ix":94,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":15,"t":90,"tokens":[11546,13924,6264,7420],"delegation":[10546,12924,5264,6420],"delegatorTokens":9999999953508,"jailed":[null,1000000000000023,null,null],"status":["bonded","unbonding","unbonding","bonded"]}},{"ix":95,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":96,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":11,"t":66,"consumerPower":[11546,null,6264,null],"outstandingDowntime":[false,false,true,true]}},{"ix":97,"action":{"kind":"Delegate","val":2,"amt":2766},"partialState":{"h":15,"t":90,"tokens":[11546,13924,9030,7420],"delegation":[10546,12924,8030,6420],"delegatorTokens":9999999950742}},{"ix":98,"action":{"kind":"Deliver","chain":"consumer","numPackets":6},"partialState":{"h":11,"t":66,"consumerPower":[11546,null,6264,null],"outstandingDowntime":[false,false,true,true]}},{"ix":99,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":12,"t":72,"consumerPower":[11546,null,6264,null],"outstandingDowntime":[false,false,true,true]}},{"ix":100,"action":{"kind":"Deliver","chain":"provider","numPackets":4},"partialState":{"h":15,"t":90,"tokens":[11546,13924,9030,7420],"delegation":[10546,12924,8030,6420],"delegatorTokens":9999999950742,"jailed":[null,1000000000000023,null,null],"status":["bonded","unbonding","unbonding","bonded"]}},{"ix":101,"action":{"kind":"Delegate","val":1,"amt":1324},"partialState":{"h":15,"t":90,"tokens":[11546,15248,9030,7420],"delegation":[10546,14248,8030,6420],"delegatorTokens":9999999949418}},{"ix":102,"action":{"kind":"Undelegate","val":1,"amt":4457},"partialState":{"h":15,"t":90,"tokens":[11546,10791,9030,7420],"delegation":[10546,9791,8030,6420],"delegatorTokens":9999999949418}},{"ix":103,"action":{"kind":"Delegate","val":1,"amt":2215},"partialState":{"h":15,"t":90,"tokens":[11546,13006,9030,7420],"delegation":[10546,12006,8030,6420],"delegatorTokens":9999999947203}},{"ix":104,"action":{"kind":"Deliver","chain":"provider","numPackets":1},"partialState":{"h":15,"t":90,"tokens":[11546,13006,9030,7420],"delegation":[10546,12006,8030,6420],"delegatorTokens":9999999947203,"jailed":[null,1000000000000023,null,null],"status":["bonded","unbonding","unbonding","bonded"]}},{"ix":105,"action":{"kind":"Deliver","chain":"provider","numPackets":4},"partialState":{"h":15,"t":90,"tokens":[11546,13006,9030,7420],"delegation":[10546,12006,8030,6420],"delegatorTokens":9999999947203,"jailed":[null,1000000000000023,null,null],"status":["bonded","unbonding","unbonding","bonded"]}},{"ix":106,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":107,"action":{"kind":"Undelegate","val":3,"amt":4420},"partialState":{"h":15,"t":90,"tokens":[11546,13006,9030,3000],"delegation":[10546,12006,8030,2000],"delegatorTokens":9999999947203}},{"ix":108,"action":{"kind":"Deliver","chain":"provider","numPackets":2},"partialState":{"h":15,"t":90,"tokens":[11546,13006,9030,3000],"delegation":[10546,12006,8030,2000],"delegatorTokens":9999999947203,"jailed":[null,1000000000000023,null,null],"status":["bonded","unbonding","unbonding","bonded"]}},{"ix":109,"action":{"kind":"Undelegate","val":1,"amt":2671},"partialState":{"h":15,"t":90,"tokens":[11546,10335,9030,3000],"delegation":[10546,9335,8030,2000],"delegatorTokens":9999999947203}},{"ix":110,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":16,"t":96,"tokens":[11546,10335,9030,3000],"delegation":[10546,9335,8030,2000],"delegatorTokens":9999999947203,"jailed":[null,1000000000000023,null,null],"status":["bonded","unbonding","bonded","unbonding"]}},{"ix":111,"action":{"kind":"Delegate","val":3,"amt":1760},"partialState":{"h":16,"t":96,"tokens":[11546,10335,9030,4760],"delegation":[10546,9335,8030,3760],"delegatorTokens":9999999945443}},{"ix":112,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":113,"action":{"kind":"Undelegate","val":3,"amt":3776},"partialState":{"h":16,"t":96,"tokens":[11546,10335,9030,4760],"delegation":[10546,9335,8030,3760],"delegatorTokens":9999999945443}},{"ix":114,"action":{"kind":"Delegate","val":1,"amt":3005},"partialState":{"h":16,"t":96,"tokens":[11546,13340,9030,4760],"delegation":[10546,12340,8030,3760],"delegatorTokens":9999999942438}},{"ix":115,"action":{"kind":"Delegate","val":3,"amt":3778},"partialState":{"h":16,"t":96,"tokens":[11546,13340,9030,8538],"delegation":[10546,12340,8030,7538],"delegatorTokens":9999999938660}},{"ix":116,"action":{"kind":"Delegate","val":0,"amt":4758},"partialState":{"h":16,"t":96,"tokens":[16304,13340,9030,8538],"delegation":[15304,12340,8030,7538],"delegatorTokens":9999999933902}},{"ix":117,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":13,"t":78,"consumerPower":[11546,null,6264,null],"outstandingDowntime":[false,false,true,true]}},{"ix":118,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":119,"action":{"kind":"Deliver","chain":"consumer","numPackets":5},"partialState":{"h":13,"t":78,"consumerPower":[11546,null,6264,null],"outstandingDowntime":[false,false,true,true]}},{"ix":120,"action":{"kind":"Delegate","val":3,"amt":1313},"partialState":{"h":16,"t":96,"tokens":[16304,13340,9030,9851],"delegation":[15304,12340,8030,8851],"delegatorTokens":9999999932589}},{"ix":121,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":122,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":123,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":124,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":14,"t":84,"consumerPower":[11546,null,null,7420],"outstandingDowntime":[false,false,true,true]}},{"ix":125,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":126,"action":{"kind":"Delegate","val":3,"amt":3997},"partialState":{"h":16,"t":96,"tokens":[16304,13340,9030,13848],"delegation":[15304,12340,8030,12848],"delegatorTokens":9999999928592}},{"ix":127,"action":{"kind":"Undelegate","val":2,"amt":3011},"partialState":{"h":16,"t":96,"tokens":[16304,13340,6019,13848],"delegation":[15304,12340,5019,12848],"delegatorTokens":9999999928592}},{"ix":128,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":17,"t":102,"tokens":[16304,13340,6019,13848],"delegation":[15304,12340,5019,12848],"delegatorTokens":9999999928592,"jailed":[null,1000000000000023,null,null],"status":["bonded","unbonding","unbonding","bonded"]}},{"ix":129,"action":{"kind":"Deliver","chain":"consumer","numPackets":3},"partialState":{"h":14,"t":84,"consumerPower":[11546,null,null,7420],"outstandingDowntime":[false,false,true,true]}},{"ix":130,"action":{"kind":"Delegate","val":3,"amt":1553},"partialState":{"h":17,"t":102,"tokens":[16304,13340,6019,15401],"delegation":[15304,12340,5019,14401],"delegatorTokens":9999999927039}},{"ix":131,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":18,"t":108,"tokens":[16304,13340,6019,15401],"delegation":[15304,12340,5019,14401],"delegatorTokens":9999999927039,"jailed":[null,1000000000000023,null,null],"status":["bonded","unbonding","unbonding","bonded"]}},{"ix":132,"action":{"kind":"Deliver","chain":"consumer","numPackets":5},"partialState":{"h":14,"t":84,"consumerPower":[11546,null,null,7420],"outstandingDowntime":[false,false,true,true]}},{"ix":133,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":134,"action":{"kind":"Delegate","val":3,"amt":4349},"partialState":{"h":18,"t":108,"tokens":[16304,13340,6019,19750],"delegation":[15304,12340,5019,18750],"delegatorTokens":9999999922690}},{"ix":135,"action":{"kind":"Delegate","val":3,"amt":4472},"partialState":{"h":18,"t":108,"tokens":[16304,13340,6019,24222],"delegation":[15304,12340,5019,23222],"delegatorTokens":9999999918218}},{"ix":136,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":137,"action":{"kind":"Delegate","val":1,"amt":2764},"partialState":{"h":18,"t":108,"tokens":[16304,16104,6019,24222],"delegation":[15304,15104,5019,23222],"delegatorTokens":9999999915454}},{"ix":138,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":139,"action":{"kind":"Deliver","chain":"provider","numPackets":2},"partialState":{"h":18,"t":108,"tokens":[16304,16104,6019,24222],"delegation":[15304,15104,5019,23222],"delegatorTokens":9999999915454,"jailed":[null,1000000000000023,null,null],"status":["bonded","unbonding","unbonding","bonded"]}},{"ix":140,"action":{"kind":"Undelegate","val":1,"amt":3545},"partialState":{"h":18,"t":108,"tokens":[16304,12559,6019,24222],"delegation":[15304,11559,5019,23222],"delegatorTokens":9999999915454}},{"ix":141,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":19,"t":114,"tokens":[16304,12559,6019,24222],"delegation":[15304,11559,5019,23222],"delegatorTokens":9999999915454,"jailed":[null,1000000000000023,null,null],"status":["bonded","unbonding","unbonding","bonded"]}},{"ix":142,"action":{"kind":"Undelegate","val":2,"amt":1566},"partialState":{"h":19,"t":114,"tokens":[16304,12559,4453,24222],"delegation":[15304,11559,3453,23222],"delegatorTokens":9999999915454}},{"ix":143,"action":{"kind":"Undelegate","val":1,"amt":4576},"partialState":{"h":19,"t":114,"tokens":[16304,7983,4453,24222],"delegation":[15304,6983,3453,23222],"delegatorTokens":9999999915454}},{"ix":144,"action":{"kind":"Delegate","val":0,"amt":2264},"partialState":{"h":19,"t":114,"tokens":[18568,7983,4453,24222],"delegation":[17568,6983,3453,23222],"delegatorTokens":9999999913190}},{"ix":145,"action":{"kind":"Deliver","chain":"consumer","numPackets":2},"partialState":{"h":14,"t":84,"consumerPower":[11546,null,null,7420],"outstandingDowntime":[false,false,true,true]}},{"ix":146,"action":{"kind":"Undelegate","val":2,"amt":2715},"partialState":{"h":19,"t":114,"tokens":[18568,7983,1738,24222],"delegation":[17568,6983,738,23222],"delegatorTokens":9999999913190}},{"ix":147,"action":{"kind":"Deliver","chain":"consumer","numPackets":1},"partialState":{"h":14,"t":84,"consumerPower":[11546,null,null,7420],"outstandingDowntime":[false,false,true,true]}},{"ix":148,"action":{"kind":"Undelegate","val":3,"amt":3955},"partialState":{"h":19,"t":114,"tokens":[18568,7983,1738,20267],"delegation":[17568,6983,738,19267],"delegatorTokens":9999999913190}},{"ix":149,"action":{"kind":"Undelegate","val":1,"amt":2861},"partialState":{"h":19,"t":114,"tokens":[18568,5122,1738,20267],"delegation":[17568,4122,738,19267],"delegatorTokens":9999999913190}},{"ix":150,"action":{"kind":"Deliver","chain":"provider","numPackets":3},"partialState":{"h":19,"t":114,"tokens":[18568,5122,1738,20267],"delegation":[17568,4122,738,19267],"delegatorTokens":9999999913190,"jailed":[null,1000000000000023,null,null],"status":["bonded","unbonding","unbonding","bonded"]}},{"ix":151,"action":{"kind":"Delegate","val":1,"amt":3206},"partialState":{"h":19,"t":114,"tokens":[18568,8328,1738,20267],"delegation":[17568,7328,738,19267],"delegatorTokens":9999999909984}},{"ix":152,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":20,"t":120,"tokens":[18568,8328,1738,20267],"delegation":[17568,7328,738,19267],"delegatorTokens":9999999909984,"jailed":[null,1000000000000023,null,null],"status":["bonded","unbonding","unbonding","bonded"]}},{"ix":153,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":15,"t":90,"consumerPower":[16304,null,null,15401],"outstandingDowntime":[false,false,true,true]}},{"ix":154,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":155,"action":{"kind":"Delegate","val":3,"amt":2477},"partialState":{"h":20,"t":120,"tokens":[18568,8328,1738,22744],"delegation":[17568,7328,738,21744],"delegatorTokens":9999999907507}},{"ix":156,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":157,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":16,"t":96,"consumerPower":[16304,null,null,15401],"outstandingDowntime":[false,false,true,true]}},{"ix":158,"action":{"kind":"Undelegate","val":3,"amt":1471},"partialState":{"h":20,"t":120,"tokens":[18568,8328,1738,21273],"delegation":[17568,7328,738,20273],"delegatorTokens":9999999907507}},{"ix":159,"action":{"kind":"Delegate","val":2,"amt":4549},"partialState":{"h":20,"t":120,"tokens":[18568,8328,6287,21273],"delegation":[17568,7328,5287,20273],"delegatorTokens":9999999902958}},{"ix":160,"action":{"kind":"Deliver","chain":"consumer","numPackets":1},"partialState":{"h":16,"t":96,"consumerPower":[16304,null,null,15401],"outstandingDowntime":[false,false,true,true]}},{"ix":161,"action":{"kind":"Deliver","chain":"consumer","numPackets":3},"partialState":{"h":16,"t":96,"consumerPower":[16304,null,null,15401],"outstandingDowntime":[false,false,true,true]}},{"ix":162,"action":{"kind":"Undelegate","val":2,"amt":3731},"partialState":{"h":20,"t":120,"tokens":[18568,8328,2556,21273],"delegation":[17568,7328,1556,20273],"delegatorTokens":9999999902958}},{"ix":163,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":164,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":165,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":166,"action":{"kind":"Deliver","chain":"consumer","numPackets":3},"partialState":{"h":16,"t":96,"consumerPower":[16304,null,null,15401],"outstandingDowntime":[false,false,true,true]}},{"ix":167,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":168,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":21,"t":126,"tokens":[18568,8328,2556,21273],"delegation":[17568,7328,1556,20273],"delegatorTokens":9999999902958,"jailed":[null,1000000000000023,null,null],"status":["bonded","unbonding","unbonding","bonded"]}},{"ix":169,"action":{"kind":"Deliver","chain":"provider","numPackets":1},"partialState":{"h":21,"t":126,"tokens":[18568,8328,2556,21273],"delegation":[17568,7328,1556,20273],"delegatorTokens":9999999902958,"jailed":[null,1000000000000023,null,null],"status":["bonded","unbonding","unbonding","bonded"]}},{"ix":170,"action":{"kind":"Deliver","chain":"provider","numPackets":1},"partialState":{"h":21,"t":126,"tokens":[18568,8328,2556,21273],"delegation":[17568,7328,1556,20273],"delegatorTokens":9999999902958,"jailed":[null,1000000000000023,null,null],"status":["bonded","unbonding","unbonding","bonded"]}},{"ix":171,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":172,"action":{"kind":"Deliver","chain":"consumer","numPackets":6},"partialState":{"h":16,"t":96,"consumerPower":[16304,null,null,15401],"outstandingDowntime":[false,false,true,true]}},{"ix":173,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":17,"t":102,"consumerPower":[18568,null,null,20267],"outstandingDowntime":[false,false,true,true]}},{"ix":174,"action":{"kind":"Undelegate","val":2,"amt":4556},"partialState":{"h":21,"t":126,"tokens":[18568,8328,2556,21273],"delegation":[17568,7328,1556,20273],"delegatorTokens":9999999902958}},{"ix":175,"action":{"kind":"Delegate","val":0,"amt":3215},"partialState":{"h":21,"t":126,"tokens":[21783,8328,2556,21273],"delegation":[20783,7328,1556,20273],"delegatorTokens":9999999899743}},{"ix":176,"action":{"kind":"Undelegate","val":2,"amt":2552},"partialState":{"h":21,"t":126,"tokens":[21783,8328,2556,21273],"delegation":[20783,7328,1556,20273],"delegatorTokens":9999999899743}},{"ix":177,"action":{"kind":"Delegate","val":1,"amt":3840},"partialState":{"h":21,"t":126,"tokens":[21783,12168,2556,21273],"delegation":[20783,11168,1556,20273],"delegatorTokens":9999999895903}},{"ix":178,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":18,"t":108,"consumerPower":[18568,null,null,20267],"outstandingDowntime":[false,false,true,true]}},{"ix":179,"action":{"kind":"Undelegate","val":3,"amt":3533},"partialState":{"h":21,"t":126,"tokens":[21783,12168,2556,17740],"delegation":[20783,11168,1556,16740],"delegatorTokens":9999999895903}},{"ix":180,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":19,"t":114,"consumerPower":[18568,null,null,20267],"outstandingDowntime":[false,false,true,true]}},{"ix":181,"action":{"kind":"Undelegate","val":0,"amt":4385},"partialState":{"h":21,"t":126,"tokens":[17398,12168,2556,17740],"delegation":[16398,11168,1556,16740],"delegatorTokens":9999999895903}},{"ix":182,"action":{"kind":"Undelegate","val":3,"amt":3435},"partialState":{"h":21,"t":126,"tokens":[17398,12168,2556,14305],"delegation":[16398,11168,1556,13305],"delegatorTokens":9999999895903}},{"ix":183,"action":{"kind":"Delegate","val":2,"amt":4035},"partialState":{"h":21,"t":126,"tokens":[17398,12168,6591,14305],"delegation":[16398,11168,5591,13305],"delegatorTokens":9999999891868}},{"ix":184,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":185,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":186,"action":{"kind":"Undelegate","val":0,"amt":4566},"partialState":{"h":21,"t":126,"tokens":[12832,12168,6591,14305],"delegation":[11832,11168,5591,13305],"delegatorTokens":9999999891868}},{"ix":187,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":188,"action":{"kind":"Deliver","chain":"consumer","numPackets":2},"partialState":{"h":19,"t":114,"consumerPower":[18568,null,null,20267],"outstandingDowntime":[false,false,true,true]}},{"ix":189,"action":{"kind":"Deliver","chain":"provider","numPackets":2},"partialState":{"h":21,"t":126,"tokens":[12832,12168,6591,14305],"delegation":[11832,11168,5591,13305],"delegatorTokens":9999999891868,"jailed":[null,1000000000000023,null,null],"status":["bonded","unbonding","unbonding","bonded"]}},{"ix":190,"action":{"kind":"Deliver","chain":"provider","numPackets":1},"partialState":{"h":21,"t":126,"tokens":[12832,12168,6591,14305],"delegation":[11832,11168,5591,13305],"delegatorTokens":9999999891868,"jailed":[null,1000000000000023,null,null],"status":["bonded","unbonding","unbonding","bonded"]}},{"ix":191,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":22,"t":132,"tokens":[12832,12168,6591,14305],"delegation":[11832,11168,5591,13305],"delegatorTokens":9999999902186,"jailed":[null,1000000000000023,null,null],"status":["bonded","unbonding","unbonding","bonded"]}},{"ix":192,"action":{"kind":"Undelegate","val":0,"amt":2330},"partialState":{"h":22,"t":132,"tokens":[10502,12168,6591,14305],"delegation":[9502,11168,5591,13305],"delegatorTokens":9999999902186}},{"ix":193,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":194,"action":{"kind":"Delegate","val":1,"amt":4263},"partialState":{"h":22,"t":132,"tokens":[10502,16431,6591,14305],"delegation":[9502,15431,5591,13305],"delegatorTokens":9999999897923}},{"ix":195,"action":{"kind":"Deliver","chain":"consumer","numPackets":4},"partialState":{"h":19,"t":114,"consumerPower":[18568,null,null,20267],"outstandingDowntime":[false,false,true,true]}},{"ix":196,"action":{"kind":"Delegate","val":1,"amt":1510},"partialState":{"h":22,"t":132,"tokens":[10502,17941,6591,14305],"delegation":[9502,16941,5591,13305],"delegatorTokens":9999999896413}},{"ix":197,"action":{"kind":"Deliver","chain":"consumer","numPackets":1},"partialState":{"h":19,"t":114,"consumerPower":[18568,null,null,20267],"outstandingDowntime":[false,false,true,true]}},{"ix":198,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":23,"t":138,"tokens":[10502,17941,6591,14305],"delegation":[9502,16941,5591,13305],"delegatorTokens":9999999896413,"jailed":[null,1000000000000023,null,null],"status":["bonded","unbonded","unbonding","bonded"]}},{"ix":199,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}}],"events":["send_double_sign_slash_request","send_downtime_slash_request","downtime_slash_request_outstanding","send_downtime_slash_request","send_downtime_slash_request","insufficient_shares","send_vsc_without_downtime_ack","insufficient_shares","send_vsc_without_downtime_ack","receive_double_sign_slash_request","receive_slash_request_unbonded","send_vsc_without_downtime_ack","insufficient_shares","receive_downtime_slash_request","jail","receive_slash_request_unbonded","send_vsc_with_downtime_ack","send_vsc_without_downtime_ack","consumer_update_val","consumer_update_val","send_vsc_without_downtime_ack","receive_downtime_slash_ack","consumer_update_val","consumer_del_val","consumer_add_val","insufficient_shares","insufficient_shares","consumer_update_val","more_than_one_third_val_power_change","send_vsc_without_downtime_ack","more_than_one_third_val_power_change","rebond_unval","some_undels_expired_but_not_completed","send_vsc_without_downtime_ack","consumer_add_val","consumer_del_val","more_than_one_third_val_power_change","rebond_unval","send_vsc_without_downtime_ack","insufficient_shares","consumer_send_maturation","consumer_send_maturation","consumer_del_val","consumer_add_val","more_than_one_third_val_power_change","rebond_unval","some_undels_expired_but_not_completed","send_vsc_without_downtime_ack","send_vsc_without_downtime_ack","send_vsc_without_downtime_ack","send_vsc_without_downtime_ack","consumer_send_maturation","consumer_send_maturation","consumer_send_maturation","consumer_del_val","consumer_update_val","consumer_update_val","some_undels_expired_but_not_completed","send_vsc_without_downtime_ack","consumer_update_val","consumer_update_val","insufficient_shares","insufficient_shares","consumer_send_maturation","complete_undel_immediate","complete_undel_immediate","complete_undel_immediate","complete_undel_immediate","set_unval_hold_false","send_vsc_without_downtime_ack","complete_unval_in_endblock","some_undels_expired_but_not_completed","send_vsc_without_downtime_ack"]},{"meta":{"commit":"7ffd0c04e4205cbc9caf212abfe6c59ee43153bf"},"constants":{"P":"provider","C":"consumer","UNBONDING_SECONDS_P":70,"UNBONDING_SECONDS_C":50,"TRUSTING_SECONDS":49,"NUM_VALIDATORS":4,"MAX_VALIDATORS":2,"SLASH_DOUBLESIGN":0,"SLASH_DOWNTIME":0,"JAIL_SECONDS":999999999999999,"BLOCK_SECONDS":6,"INITIAL_DELEGATOR_TOKENS":10000000000000,"DELEGATE_AMT_MIN":1000,"DELEGATE_AMT_MAX":5000,"UNDELEGATE_AMT_MIN":1000,"UNDELEGATE_AMT_MAX":5000,"ISDOWNTIME_PROBABILITY":0.5,"MAX_NUM_PACKETS_FOR_DELIVER":6},"actions":[{"ix":0,"action":{"kind":"ConsumerSlash","val":1,"infractionHeight":0,"isDowntime":true},"partialState":{"h":1,"t":6,"outstandingDowntime":[false,true,false,false]}},{"ix":1,"action":{"kind":"Deliver","chain":"consumer","numPackets":3},"partialState":{"h":1,"t":6,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,true,false,false]}},{"ix":2,"action":{"kind":"ConsumerSlash","val":2,"infractionHeight":0,"isDowntime":true},"partialState":{"h":1,"t":6,"outstandingDowntime":[false,true,true,false]}},{"ix":3,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":2,"t":12,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,true,true,false]}},{"ix":4,"action":{"kind":"ConsumerSlash","val":2,"infractionHeight":0,"isDowntime":true},"partialState":{"h":2,"t":12,"outstandingDowntime":[false,true,true,false]}},{"ix":5,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":2,"t":12,"tokens":[5000,4000,3000,2000],"delegation":[4000,3000,2000,1000],"delegatorTokens":10000000000000,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":6,"action":{"kind":"ConsumerSlash","val":3,"infractionHeight":0,"isDowntime":true},"partialState":{"h":2,"t":12,"outstandingDowntime":[false,true,true,true]}},{"ix":7,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":3,"t":18,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,true,true,true]}},{"ix":8,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":4,"t":24,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,true,true,true]}},{"ix":9,"action":{"kind":"Deliver","chain":"provider","numPackets":4},"partialState":{"h":2,"t":12,"tokens":[5000,4000,3000,2000],"delegation":[4000,3000,2000,1000],"delegatorTokens":10000000000000,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":10,"action":{"kind":"Undelegate","val":3,"amt":4892},"partialState":{"h":2,"t":12,"tokens":[5000,4000,3000,2000],"delegation":[4000,3000,2000,1000],"delegatorTokens":10000000000000}},{"ix":11,"action":{"kind":"Undelegate","val":1,"amt":4608},"partialState":{"h":2,"t":12,"tokens":[5000,4000,3000,2000],"delegation":[4000,3000,2000,1000],"delegatorTokens":10000000000000}},{"ix":12,"action":{"kind":"Deliver","chain":"consumer","numPackets":1},"partialState":{"h":4,"t":24,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,true,true,true]}},{"ix":13,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":3,"t":18,"tokens":[5000,4000,3000,2000],"delegation":[4000,3000,2000,1000],"delegatorTokens":10000000000000,"jailed":[null,1000000000000011,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":14,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":15,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":16,"action":{"kind":"Delegate","val":0,"amt":3392},"partialState":{"h":3,"t":18,"tokens":[8392,4000,3000,2000],"delegation":[7392,3000,2000,1000],"delegatorTokens":9999999996608}},{"ix":17,"action":{"kind":"Delegate","val":1,"amt":3060},"partialState":{"h":3,"t":18,"tokens":[8392,7060,3000,2000],"delegation":[7392,6060,2000,1000],"delegatorTokens":9999999993548}},{"ix":18,"action":{"kind":"Delegate","val":2,"amt":1334},"partialState":{"h":3,"t":18,"tokens":[8392,7060,4334,2000],"delegation":[7392,6060,3334,1000],"delegatorTokens":9999999992214}},{"ix":19,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":20,"action":{"kind":"Deliver","chain":"provider","numPackets":2},"partialState":{"h":3,"t":18,"tokens":[8392,7060,4334,2000],"delegation":[7392,6060,3334,1000],"delegatorTokens":9999999992214,"jailed":[null,1000000000000011,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":21,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":22,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":4,"t":24,"tokens":[8392,7060,4334,2000],"delegation":[7392,6060,3334,1000],"delegatorTokens":9999999992214,"jailed":[null,1000000000000011,null,null],"status":["bonded","unbonding","bonded","unbonded"]}},{"ix":23,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":5,"t":30,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,true,true,true]}},{"ix":24,"action":{"kind":"Delegate","val":0,"amt":2206},"partialState":{"h":4,"t":24,"tokens":[10598,7060,4334,2000],"delegation":[9598,6060,3334,1000],"delegatorTokens":9999999990008}},{"ix":25,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":26,"action":{"kind":"Undelegate","val":3,"amt":2178},"partialState":{"h":4,"t":24,"tokens":[10598,7060,4334,2000],"delegation":[9598,6060,3334,1000],"delegatorTokens":9999999990008}},{"ix":27,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":5,"t":30,"tokens":[10598,7060,4334,2000],"delegation":[9598,6060,3334,1000],"delegatorTokens":9999999990008,"jailed":[null,1000000000000011,null,null],"status":["bonded","unbonding","bonded","unbonded"]}},{"ix":28,"action":{"kind":"Deliver","chain":"consumer","numPackets":4},"partialState":{"h":5,"t":30,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,false,true,true]}},{"ix":29,"action":{"kind":"Deliver","chain":"provider","numPackets":1},"partialState":{"h":5,"t":30,"tokens":[10598,7060,4334,2000],"delegation":[9598,6060,3334,1000],"delegatorTokens":9999999990008,"jailed":[null,1000000000000011,null,null],"status":["bonded","unbonding","bonded","unbonded"]}},{"ix":30,"action":{"kind":"Delegate","val":1,"amt":1932},"partialState":{"h":5,"t":30,"tokens":[10598,8992,4334,2000],"delegation":[9598,7992,3334,1000],"delegatorTokens":9999999988076}},{"ix":31,"action":{"kind":"Delegate","val":3,"amt":4194},"partialState":{"h":5,"t":30,"tokens":[10598,8992,4334,6194],"delegation":[9598,7992,3334,5194],"delegatorTokens":9999999983882}},{"ix":32,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":33,"action":{"kind":"Deliver","chain":"consumer","numPackets":1},"partialState":{"h":5,"t":30,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,false,true,true]}},{"ix":34,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":6,"t":36,"consumerPower":[8392,null,4334,null],"outstandingDowntime":[false,false,true,true]}},{"ix":35,"action":{"kind":"Deliver","chain":"consumer","numPackets":5},"partialState":{"h":6,"t":36,"consumerPower":[8392,null,4334,null],"outstandingDowntime":[false,false,true,true]}},{"ix":36,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":7,"t":42,"consumerPower":[8392,null,4334,null],"outstandingDowntime":[false,false,true,true]}},{"ix":37,"action":{"kind":"Undelegate","val":0,"amt":2545},"partialState":{"h":5,"t":30,"tokens":[8053,8992,4334,6194],"delegation":[7053,7992,3334,5194],"delegatorTokens":9999999983882}},{"ix":38,"action":{"kind":"Deliver","chain":"consumer","numPackets":6},"partialState":{"h":7,"t":42,"consumerPower":[8392,null,4334,null],"outstandingDowntime":[false,false,true,true]}},{"ix":39,"action":{"kind":"Delegate","val":2,"amt":2655},"partialState":{"h":5,"t":30,"tokens":[8053,8992,6989,6194],"delegation":[7053,7992,5989,5194],"delegatorTokens":9999999981227}},{"ix":40,"action":{"kind":"Undelegate","val":1,"amt":1828},"partialState":{"h":5,"t":30,"tokens":[8053,7164,6989,6194],"delegation":[7053,6164,5989,5194],"delegatorTokens":9999999981227}},{"ix":41,"action":{"kind":"Delegate","val":3,"amt":2614},"partialState":{"h":5,"t":30,"tokens":[8053,7164,6989,8808],"delegation":[7053,6164,5989,7808],"delegatorTokens":9999999978613}},{"ix":42,"action":{"kind":"Undelegate","val":1,"amt":2606},"partialState":{"h":5,"t":30,"tokens":[8053,4558,6989,8808],"delegation":[7053,3558,5989,7808],"delegatorTokens":9999999978613}},{"ix":43,"action":{"kind":"Deliver","chain":"provider","numPackets":3},"partialState":{"h":5,"t":30,"tokens":[8053,4558,6989,8808],"delegation":[7053,3558,5989,7808],"delegatorTokens":9999999978613,"jailed":[null,1000000000000011,null,null],"status":["bonded","unbonding","bonded","unbonded"]}},{"ix":44,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":45,"action":{"kind":"Delegate","val":2,"amt":1045},"partialState":{"h":5,"t":30,"tokens":[8053,4558,8034,8808],"delegation":[7053,3558,7034,7808],"delegatorTokens":9999999977568}},{"ix":46,"action":{"kind":"Deliver","chain":"consumer","numPackets":6},"partialState":{"h":7,"t":42,"consumerPower":[8392,null,4334,null],"outstandingDowntime":[false,false,true,true]}},{"ix":47,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":48,"action":{"kind":"Undelegate","val":1,"amt":4955},"partialState":{"h":5,"t":30,"tokens":[8053,4558,8034,8808],"delegation":[7053,3558,7034,7808],"delegatorTokens":9999999977568}},{"ix":49,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":6,"t":36,"tokens":[8053,4558,8034,8808],"delegation":[7053,3558,7034,7808],"delegatorTokens":9999999977568,"jailed":[null,1000000000000011,null,null],"status":["bonded","unbonding","unbonding","bonded"]}},{"ix":50,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":8,"t":48,"consumerPower":[8392,null,4334,null],"outstandingDowntime":[false,false,true,true]}},{"ix":51,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":52,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":9,"t":54,"consumerPower":[8392,null,4334,null],"outstandingDowntime":[false,false,true,true]}},{"ix":53,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":54,"action":{"kind":"Undelegate","val":0,"amt":2867},"partialState":{"h":6,"t":36,"tokens":[5186,4558,8034,8808],"delegation":[4186,3558,7034,7808],"delegatorTokens":9999999977568}},{"ix":55,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":56,"action":{"kind":"Undelegate","val":1,"amt":2838},"partialState":{"h":6,"t":36,"tokens":[5186,1720,8034,8808],"delegation":[4186,720,7034,7808],"delegatorTokens":9999999977568}},{"ix":57,"action":{"kind":"Delegate","val":0,"amt":3000},"partialState":{"h":6,"t":36,"tokens":[8186,1720,8034,8808],"delegation":[7186,720,7034,7808],"delegatorTokens":9999999974568}},{"ix":58,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":7,"t":42,"tokens":[8186,1720,8034,8808],"delegation":[7186,720,7034,7808],"delegatorTokens":9999999974568,"jailed":[null,1000000000000011,null,null],"status":["bonded","unbonding","unbonding","bonded"]}},{"ix":59,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":60,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":61,"action":{"kind":"Delegate","val":1,"amt":2791},"partialState":{"h":7,"t":42,"tokens":[8186,4511,8034,8808],"delegation":[7186,3511,7034,7808],"delegatorTokens":9999999971777}},{"ix":62,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":63,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":64,"action":{"kind":"Delegate","val":1,"amt":1027},"partialState":{"h":7,"t":42,"tokens":[8186,5538,8034,8808],"delegation":[7186,4538,7034,7808],"delegatorTokens":9999999970750}},{"ix":65,"action":{"kind":"Undelegate","val":2,"amt":2782},"partialState":{"h":7,"t":42,"tokens":[8186,5538,5252,8808],"delegation":[7186,4538,4252,7808],"delegatorTokens":9999999970750}},{"ix":66,"action":{"kind":"Delegate","val":1,"amt":3839},"partialState":{"h":7,"t":42,"tokens":[8186,9377,5252,8808],"delegation":[7186,8377,4252,7808],"delegatorTokens":9999999966911}},{"ix":67,"action":{"kind":"Delegate","val":1,"amt":3322},"partialState":{"h":7,"t":42,"tokens":[8186,12699,5252,8808],"delegation":[7186,11699,4252,7808],"delegatorTokens":9999999963589}},{"ix":68,"action":{"kind":"Deliver","chain":"provider","numPackets":1},"partialState":{"h":7,"t":42,"tokens":[8186,12699,5252,8808],"delegation":[7186,11699,4252,7808],"delegatorTokens":9999999963589,"jailed":[null,1000000000000011,null,null],"status":["bonded","unbonding","unbonding","bonded"]}},{"ix":69,"action":{"kind":"Deliver","chain":"consumer","numPackets":2},"partialState":{"h":9,"t":54,"consumerPower":[8392,null,4334,null],"outstandingDowntime":[false,false,true,true]}},{"ix":70,"action":{"kind":"Delegate","val":0,"amt":2891},"partialState":{"h":7,"t":42,"tokens":[11077,12699,5252,8808],"delegation":[10077,11699,4252,7808],"delegatorTokens":9999999960698}},{"ix":71,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":72,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":73,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":10,"t":60,"consumerPower":[8053,null,null,8808],"outstandingDowntime":[false,false,true,true]}},{"ix":74,"action":{"kind":"Delegate","val":1,"amt":4805},"partialState":{"h":7,"t":42,"tokens":[11077,17504,5252,8808],"delegation":[10077,16504,4252,7808],"delegatorTokens":9999999955893}},{"ix":75,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":76,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":8,"t":48,"tokens":[11077,17504,5252,8808],"delegation":[10077,16504,4252,7808],"delegatorTokens":9999999955893,"jailed":[null,1000000000000011,null,null],"status":["bonded","unbonding","unbonding","bonded"]}},{"ix":77,"action":{"kind":"Undelegate","val":0,"amt":1415},"partialState":{"h":8,"t":48,"tokens":[9662,17504,5252,8808],"delegation":[8662,16504,4252,7808],"delegatorTokens":9999999955893}},{"ix":78,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":79,"action":{"kind":"Deliver","chain":"consumer","numPackets":2},"partialState":{"h":10,"t":60,"consumerPower":[8053,null,null,8808],"outstandingDowntime":[false,false,true,true]}},{"ix":80,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":81,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":9,"t":54,"tokens":[9662,17504,5252,8808],"delegation":[8662,16504,4252,7808],"delegatorTokens":9999999955893,"jailed":[null,1000000000000011,null,null],"status":["bonded","unbonding","unbonding","bonded"]}},{"ix":82,"action":{"kind":"Deliver","chain":"consumer","numPackets":3},"partialState":{"h":10,"t":60,"consumerPower":[8053,null,null,8808],"outstandingDowntime":[false,false,true,true]}},{"ix":83,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":10,"t":60,"tokens":[9662,17504,5252,8808],"delegation":[8662,16504,4252,7808],"delegatorTokens":9999999955893,"jailed":[null,1000000000000011,null,null],"status":["bonded","unbonding","unbonding","bonded"]}},{"ix":84,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":11,"t":66,"tokens":[9662,17504,5252,8808],"delegation":[8662,16504,4252,7808],"delegatorTokens":9999999955893,"jailed":[null,1000000000000011,null,null],"status":["bonded","unbonding","unbonding","bonded"]}},{"ix":85,"action":{"kind":"Delegate","val":1,"amt":2715},"partialState":{"h":11,"t":66,"tokens":[9662,20219,5252,8808],"delegation":[8662,19219,4252,7808],"delegatorTokens":9999999953178}},{"ix":86,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":87,"action":{"kind":"Undelegate","val":2,"amt":4549},"partialState":{"h":11,"t":66,"tokens":[9662,20219,5252,8808],"delegation":[8662,19219,4252,7808],"delegatorTokens":9999999953178}},{"ix":88,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":89,"action":{"kind":"Deliver","chain":"consumer","numPackets":5},"partialState":{"h":10,"t":60,"consumerPower":[8053,null,null,8808],"outstandingDowntime":[false,false,true,true]}},{"ix":90,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":91,"action":{"kind":"Undelegate","val":3,"amt":1314},"partialState":{"h":11,"t":66,"tokens":[9662,20219,5252,7494],"delegation":[8662,19219,4252,6494],"delegatorTokens":9999999953178}},{"ix":92,"action":{"kind":"Deliver","chain":"consumer","numPackets":6},"partialState":{"h":10,"t":60,"consumerPower":[8053,null,null,8808],"outstandingDowntime":[false,false,true,true]}},{"ix":93,"action":{"kind":"Delegate","val":3,"amt":4526},"partialState":{"h":11,"t":66,"tokens":[9662,20219,5252,12020],"delegation":[8662,19219,4252,11020],"delegatorTokens":9999999948652}},{"ix":94,"action":{"kind":"Undelegate","val":2,"amt":1699},"partialState":{"h":11,"t":66,"tokens":[9662,20219,3553,12020],"delegation":[8662,19219,2553,11020],"delegatorTokens":9999999948652}},{"ix":95,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":11,"t":66,"consumerPower":[9662,null,null,8808],"outstandingDowntime":[false,false,true,true]}},{"ix":96,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":12,"t":72,"consumerPower":[9662,null,null,8808],"outstandingDowntime":[false,false,true,true]}},{"ix":97,"action":{"kind":"Delegate","val":3,"amt":2992},"partialState":{"h":11,"t":66,"tokens":[9662,20219,3553,15012],"delegation":[8662,19219,2553,14012],"delegatorTokens":9999999945660}},{"ix":98,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":99,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":13,"t":78,"consumerPower":[9662,null,null,8808],"outstandingDowntime":[false,false,true,true]}},{"ix":100,"action":{"kind":"Delegate","val":0,"amt":3962},"partialState":{"h":11,"t":66,"tokens":[13624,20219,3553,15012],"delegation":[12624,19219,2553,14012],"delegatorTokens":9999999941698}},{"ix":101,"action":{"kind":"Undelegate","val":3,"amt":3109},"partialState":{"h":11,"t":66,"tokens":[13624,20219,3553,11903],"delegation":[12624,19219,2553,10903],"delegatorTokens":9999999941698}},{"ix":102,"action":{"kind":"Delegate","val":0,"amt":4152},"partialState":{"h":11,"t":66,"tokens":[17776,20219,3553,11903],"delegation":[16776,19219,2553,10903],"delegatorTokens":9999999937546}},{"ix":103,"action":{"kind":"Deliver","chain":"provider","numPackets":6},"partialState":{"h":11,"t":66,"tokens":[17776,20219,3553,11903],"delegation":[16776,19219,2553,10903],"delegatorTokens":9999999937546,"jailed":[null,1000000000000011,null,null],"status":["bonded","unbonding","unbonding","bonded"]}},{"ix":104,"action":{"kind":"Delegate","val":0,"amt":4763},"partialState":{"h":11,"t":66,"tokens":[22539,20219,3553,11903],"delegation":[21539,19219,2553,10903],"delegatorTokens":9999999932783}},{"ix":105,"action":{"kind":"Deliver","chain":"provider","numPackets":4},"partialState":{"h":11,"t":66,"tokens":[22539,20219,3553,11903],"delegation":[21539,19219,2553,10903],"delegatorTokens":9999999932783,"jailed":[null,1000000000000011,null,null],"status":["bonded","unbonding","unbonding","bonded"]}},{"ix":106,"action":{"kind":"Deliver","chain":"consumer","numPackets":2},"partialState":{"h":13,"t":78,"consumerPower":[9662,null,null,8808],"outstandingDowntime":[false,false,true,true]}},{"ix":107,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":108,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":14,"t":84,"consumerPower":[9662,null,null,8808],"outstandingDowntime":[false,false,true,true]}},{"ix":109,"action":{"kind":"Deliver","chain":"consumer","numPackets":2},"partialState":{"h":14,"t":84,"consumerPower":[9662,null,null,8808],"outstandingDowntime":[false,false,true,true]}},{"ix":110,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":111,"action":{"kind":"Delegate","val":1,"amt":2522},"partialState":{"h":11,"t":66,"tokens":[22539,22741,3553,11903],"delegation":[21539,21741,2553,10903],"delegatorTokens":9999999930261}},{"ix":112,"action":{"kind":"Deliver","chain":"provider","numPackets":4},"partialState":{"h":11,"t":66,"tokens":[22539,22741,3553,11903],"delegation":[21539,21741,2553,10903],"delegatorTokens":9999999930261,"jailed":[null,1000000000000011,null,null],"status":["bonded","unbonding","unbonding","bonded"]}},{"ix":113,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":12,"t":72,"tokens":[22539,22741,3553,11903],"delegation":[21539,21741,2553,10903],"delegatorTokens":9999999930261,"jailed":[null,1000000000000011,null,null],"status":["bonded","unbonding","unbonding","bonded"]}},{"ix":114,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":15,"t":90,"consumerPower":[9662,null,null,8808],"outstandingDowntime":[false,false,true,true]}},{"ix":115,"action":{"kind":"Undelegate","val":3,"amt":3280},"partialState":{"h":12,"t":72,"tokens":[22539,22741,3553,8623],"delegation":[21539,21741,2553,7623],"delegatorTokens":9999999930261}},{"ix":116,"action":{"kind":"Delegate","val":3,"amt":2523},"partialState":{"h":12,"t":72,"tokens":[22539,22741,3553,11146],"delegation":[21539,21741,2553,10146],"delegatorTokens":9999999927738}},{"ix":117,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":118,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":16,"t":96,"consumerPower":[9662,null,null,8808],"outstandingDowntime":[false,false,true,true]}},{"ix":119,"action":{"kind":"Undelegate","val":2,"amt":2598},"partialState":{"h":12,"t":72,"tokens":[22539,22741,3553,11146],"delegation":[21539,21741,2553,10146],"delegatorTokens":9999999927738}},{"ix":120,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":13,"t":78,"tokens":[22539,22741,3553,11146],"delegation":[21539,21741,2553,10146],"delegatorTokens":9999999927738,"jailed":[null,1000000000000011,null,null],"status":["bonded","unbonding","unbonding","bonded"]}},{"ix":121,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":122,"action":{"kind":"Delegate","val":0,"amt":4258},"partialState":{"h":13,"t":78,"tokens":[26797,22741,3553,11146],"delegation":[25797,21741,2553,10146],"delegatorTokens":9999999923480}},{"ix":123,"action":{"kind":"Delegate","val":2,"amt":2623},"partialState":{"h":13,"t":78,"tokens":[26797,22741,6176,11146],"delegation":[25797,21741,5176,10146],"delegatorTokens":9999999920857}},{"ix":124,"action":{"kind":"Delegate","val":1,"amt":1681},"partialState":{"h":13,"t":78,"tokens":[26797,24422,6176,11146],"delegation":[25797,23422,5176,10146],"delegatorTokens":9999999919176}},{"ix":125,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":17,"t":102,"consumerPower":[9662,null,null,8808],"outstandingDowntime":[false,false,true,true]}},{"ix":126,"action":{"kind":"Undelegate","val":2,"amt":2401},"partialState":{"h":13,"t":78,"tokens":[26797,24422,3775,11146],"delegation":[25797,23422,2775,10146],"delegatorTokens":9999999919176}},{"ix":127,"action":{"kind":"Delegate","val":1,"amt":4948},"partialState":{"h":13,"t":78,"tokens":[26797,29370,3775,11146],"delegation":[25797,28370,2775,10146],"delegatorTokens":9999999914228}},{"ix":128,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":14,"t":84,"tokens":[26797,29370,3775,11146],"delegation":[25797,28370,2775,10146],"delegatorTokens":9999999914228,"jailed":[null,1000000000000011,null,null],"status":["bonded","unbonding","unbonding","bonded"]}},{"ix":129,"action":{"kind":"Delegate","val":3,"amt":3406},"partialState":{"h":14,"t":84,"tokens":[26797,29370,3775,14552],"delegation":[25797,28370,2775,13552],"delegatorTokens":9999999910822}},{"ix":130,"action":{"kind":"Undelegate","val":3,"amt":3403},"partialState":{"h":14,"t":84,"tokens":[26797,29370,3775,11149],"delegation":[25797,28370,2775,10149],"delegatorTokens":9999999910822}},{"ix":131,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":132,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":133,"action":{"kind":"Undelegate","val":0,"amt":3008},"partialState":{"h":14,"t":84,"tokens":[23789,29370,3775,11149],"delegation":[22789,28370,2775,10149],"delegatorTokens":9999999910822}},{"ix":134,"action":{"kind":"Delegate","val":1,"amt":3963},"partialState":{"h":14,"t":84,"tokens":[23789,33333,3775,11149],"delegation":[22789,32333,2775,10149],"delegatorTokens":9999999906859}},{"ix":135,"action":{"kind":"Undelegate","val":3,"amt":3128},"partialState":{"h":14,"t":84,"tokens":[23789,33333,3775,8021],"delegation":[22789,32333,2775,7021],"delegatorTokens":9999999906859}},{"ix":136,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":137,"action":{"kind":"Deliver","chain":"provider","numPackets":2},"partialState":{"h":14,"t":84,"tokens":[23789,33333,3775,8021],"delegation":[22789,32333,2775,7021],"delegatorTokens":9999999906859,"jailed":[null,1000000000000011,null,null],"status":["bonded","unbonding","unbonding","bonded"]}},{"ix":138,"action":{"kind":"Deliver","chain":"provider","numPackets":6},"partialState":{"h":14,"t":84,"tokens":[23789,33333,3775,8021],"delegation":[22789,32333,2775,7021],"delegatorTokens":9999999906859,"jailed":[null,1000000000000011,null,null],"status":["bonded","unbonding","unbonding","bonded"]}},{"ix":139,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":15,"t":90,"tokens":[23789,33333,3775,8021],"delegation":[22789,32333,2775,7021],"delegatorTokens":9999999906859,"jailed":[null,1000000000000011,null,null],"status":["bonded","unbonding","unbonding","bonded"]}},{"ix":140,"action":{"kind":"Delegate","val":1,"amt":2326},"partialState":{"h":15,"t":90,"tokens":[23789,35659,3775,8021],"delegation":[22789,34659,2775,7021],"delegatorTokens":9999999904533}},{"ix":141,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":142,"action":{"kind":"Undelegate","val":1,"amt":2483},"partialState":{"h":15,"t":90,"tokens":[23789,33176,3775,8021],"delegation":[22789,32176,2775,7021],"delegatorTokens":9999999904533}},{"ix":143,"action":{"kind":"Deliver","chain":"provider","numPackets":1},"partialState":{"h":15,"t":90,"tokens":[23789,33176,3775,8021],"delegation":[22789,32176,2775,7021],"delegatorTokens":9999999904533,"jailed":[null,1000000000000011,null,null],"status":["bonded","unbonding","unbonding","bonded"]}},{"ix":144,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":145,"action":{"kind":"Delegate","val":1,"amt":3142},"partialState":{"h":15,"t":90,"tokens":[23789,36318,3775,8021],"delegation":[22789,35318,2775,7021],"delegatorTokens":9999999901391}},{"ix":146,"action":{"kind":"Delegate","val":3,"amt":2452},"partialState":{"h":15,"t":90,"tokens":[23789,36318,3775,10473],"delegation":[22789,35318,2775,9473],"delegatorTokens":9999999898939}},{"ix":147,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":18,"t":108,"consumerPower":[9662,null,null,8808],"outstandingDowntime":[false,false,true,true]}},{"ix":148,"action":{"kind":"Undelegate","val":0,"amt":2065},"partialState":{"h":15,"t":90,"tokens":[21724,36318,3775,10473],"delegation":[20724,35318,2775,9473],"delegatorTokens":9999999898939}},{"ix":149,"action":{"kind":"Deliver","chain":"consumer","numPackets":3},"partialState":{"h":18,"t":108,"consumerPower":[9662,null,null,8808],"outstandingDowntime":[false,false,true,true]}},{"ix":150,"action":{"kind":"Undelegate","val":1,"amt":2092},"partialState":{"h":15,"t":90,"tokens":[21724,34226,3775,10473],"delegation":[20724,33226,2775,9473],"delegatorTokens":9999999898939}},{"ix":151,"action":{"kind":"Deliver","chain":"provider","numPackets":6},"partialState":{"h":15,"t":90,"tokens":[21724,34226,3775,10473],"delegation":[20724,33226,2775,9473],"delegatorTokens":9999999898939,"jailed":[null,1000000000000011,null,null],"status":["bonded","unbonding","unbonding","bonded"]}},{"ix":152,"action":{"kind":"Undelegate","val":0,"amt":2694},"partialState":{"h":15,"t":90,"tokens":[19030,34226,3775,10473],"delegation":[18030,33226,2775,9473],"delegatorTokens":9999999898939}},{"ix":153,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":154,"action":{"kind":"Deliver","chain":"consumer","numPackets":6},"partialState":{"h":18,"t":108,"consumerPower":[9662,null,null,8808],"outstandingDowntime":[false,false,true,true]}},{"ix":155,"action":{"kind":"Deliver","chain":"provider","numPackets":1},"partialState":{"h":15,"t":90,"tokens":[19030,34226,3775,10473],"delegation":[18030,33226,2775,9473],"delegatorTokens":9999999898939,"jailed":[null,1000000000000011,null,null],"status":["bonded","unbonding","unbonding","bonded"]}},{"ix":156,"action":{"kind":"Delegate","val":3,"amt":3241},"partialState":{"h":15,"t":90,"tokens":[19030,34226,3775,13714],"delegation":[18030,33226,2775,12714],"delegatorTokens":9999999895698}},{"ix":157,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":158,"action":{"kind":"Delegate","val":2,"amt":4513},"partialState":{"h":15,"t":90,"tokens":[19030,34226,8288,13714],"delegation":[18030,33226,7288,12714],"delegatorTokens":9999999891185}},{"ix":159,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":160,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":16,"t":96,"tokens":[19030,34226,8288,13714],"delegation":[18030,33226,7288,12714],"delegatorTokens":9999999891185,"jailed":[null,1000000000000011,null,null],"status":["bonded","unbonded","unbonding","bonded"]}},{"ix":161,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":17,"t":102,"tokens":[19030,34226,8288,13714],"delegation":[18030,33226,7288,12714],"delegatorTokens":9999999891185,"jailed":[null,1000000000000011,null,null],"status":["bonded","unbonded","unbonding","bonded"]}},{"ix":162,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":163,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":164,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":165,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":18,"t":108,"tokens":[19030,34226,8288,13714],"delegation":[18030,33226,7288,12714],"delegatorTokens":9999999891185,"jailed":[null,1000000000000011,null,null],"status":["bonded","unbonded","unbonding","bonded"]}},{"ix":166,"action":{"kind":"Undelegate","val":2,"amt":3259},"partialState":{"h":18,"t":108,"tokens":[19030,34226,5029,13714],"delegation":[18030,33226,4029,12714],"delegatorTokens":9999999891185}},{"ix":167,"action":{"kind":"Delegate","val":0,"amt":1091},"partialState":{"h":18,"t":108,"tokens":[20121,34226,5029,13714],"delegation":[19121,33226,4029,12714],"delegatorTokens":9999999890094}},{"ix":168,"action":{"kind":"Undelegate","val":1,"amt":4540},"partialState":{"h":18,"t":108,"tokens":[20121,29686,5029,13714],"delegation":[19121,28686,4029,12714],"delegatorTokens":9999999890094}},{"ix":169,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":170,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":19,"t":114,"consumerPower":[26797,null,null,11146],"outstandingDowntime":[false,false,true,true]}},{"ix":171,"action":{"kind":"Undelegate","val":3,"amt":3091},"partialState":{"h":18,"t":108,"tokens":[20121,29686,5029,10623],"delegation":[19121,28686,4029,9623],"delegatorTokens":9999999890094}},{"ix":172,"action":{"kind":"Undelegate","val":0,"amt":2021},"partialState":{"h":18,"t":108,"tokens":[18100,29686,5029,10623],"delegation":[17100,28686,4029,9623],"delegatorTokens":9999999890094}},{"ix":173,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":174,"action":{"kind":"Undelegate","val":2,"amt":1890},"partialState":{"h":18,"t":108,"tokens":[18100,29686,3139,10623],"delegation":[17100,28686,2139,9623],"delegatorTokens":9999999890094}},{"ix":175,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":176,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":20,"t":120,"consumerPower":[26797,null,null,11146],"outstandingDowntime":[false,false,true,true]}},{"ix":177,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":178,"action":{"kind":"Undelegate","val":3,"amt":2182},"partialState":{"h":18,"t":108,"tokens":[18100,29686,3139,8441],"delegation":[17100,28686,2139,7441],"delegatorTokens":9999999890094}},{"ix":179,"action":{"kind":"Undelegate","val":2,"amt":2853},"partialState":{"h":18,"t":108,"tokens":[18100,29686,3139,8441],"delegation":[17100,28686,2139,7441],"delegatorTokens":9999999890094}},{"ix":180,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":21,"t":126,"consumerPower":[26797,null,null,11146],"outstandingDowntime":[false,false,true,true]}},{"ix":181,"action":{"kind":"Deliver","chain":"consumer","numPackets":3},"partialState":{"h":21,"t":126,"consumerPower":[26797,null,null,11146],"outstandingDowntime":[false,false,true,true]}},{"ix":182,"action":{"kind":"Delegate","val":1,"amt":2241},"partialState":{"h":18,"t":108,"tokens":[18100,31927,3139,8441],"delegation":[17100,30927,2139,7441],"delegatorTokens":9999999887853}},{"ix":183,"action":{"kind":"Delegate","val":1,"amt":1405},"partialState":{"h":18,"t":108,"tokens":[18100,33332,3139,8441],"delegation":[17100,32332,2139,7441],"delegatorTokens":9999999886448}},{"ix":184,"action":{"kind":"Undelegate","val":1,"amt":4479},"partialState":{"h":18,"t":108,"tokens":[18100,28853,3139,8441],"delegation":[17100,27853,2139,7441],"delegatorTokens":9999999886448}},{"ix":185,"action":{"kind":"Undelegate","val":0,"amt":2726},"partialState":{"h":18,"t":108,"tokens":[15374,28853,3139,8441],"delegation":[14374,27853,2139,7441],"delegatorTokens":9999999886448}},{"ix":186,"action":{"kind":"Undelegate","val":1,"amt":1655},"partialState":{"h":18,"t":108,"tokens":[15374,27198,3139,8441],"delegation":[14374,26198,2139,7441],"delegatorTokens":9999999886448}},{"ix":187,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":22,"t":132,"consumerPower":[19030,null,null,13714],"outstandingDowntime":[false,false,true,true]}},{"ix":188,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":19,"t":114,"tokens":[15374,27198,3139,8441],"delegation":[14374,26198,2139,7441],"delegatorTokens":9999999886448,"jailed":[null,1000000000000011,null,null],"status":["bonded","unbonded","unbonding","bonded"]}},{"ix":189,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":20,"t":120,"tokens":[15374,27198,3139,8441],"delegation":[14374,26198,2139,7441],"delegatorTokens":9999999886448,"jailed":[null,1000000000000011,null,null],"status":["bonded","unbonded","unbonding","bonded"]}},{"ix":190,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":191,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":23,"t":138,"consumerPower":[19030,null,null,13714],"outstandingDowntime":[false,false,true,true]}},{"ix":192,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":21,"t":126,"tokens":[15374,27198,3139,8441],"delegation":[14374,26198,2139,7441],"delegatorTokens":9999999886448,"jailed":[null,1000000000000011,null,null],"status":["bonded","unbonded","unbonding","bonded"]}},{"ix":193,"action":{"kind":"Delegate","val":2,"amt":1139},"partialState":{"h":21,"t":126,"tokens":[15374,27198,4278,8441],"delegation":[14374,26198,3278,7441],"delegatorTokens":9999999885309}},{"ix":194,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":195,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":22,"t":132,"tokens":[15374,27198,4278,8441],"delegation":[14374,26198,3278,7441],"delegatorTokens":9999999885309,"jailed":[null,1000000000000011,null,null],"status":["bonded","unbonded","unbonding","bonded"]}},{"ix":196,"action":{"kind":"Undelegate","val":1,"amt":2037},"partialState":{"h":22,"t":132,"tokens":[15374,25161,4278,8441],"delegation":[14374,24161,3278,7441],"delegatorTokens":9999999885309}},{"ix":197,"action":{"kind":"Delegate","val":1,"amt":2233},"partialState":{"h":22,"t":132,"tokens":[15374,27394,4278,8441],"delegation":[14374,26394,3278,7441],"delegatorTokens":9999999883076}},{"ix":198,"action":{"kind":"Deliver","chain":"consumer","numPackets":5},"partialState":{"h":23,"t":138,"consumerPower":[19030,null,null,13714],"outstandingDowntime":[false,false,true,true]}},{"ix":199,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}}],"events":["send_downtime_slash_request","send_downtime_slash_request","downtime_slash_request_outstanding","send_downtime_slash_request","insufficient_shares","insufficient_shares","receive_downtime_slash_request","jail","receive_slash_request_unbonded","receive_slash_request_unbonded","more_than_one_third_val_power_change","send_vsc_with_downtime_ack","insufficient_shares","send_vsc_without_downtime_ack","receive_downtime_slash_ack","consumer_update_val","consumer_del_val","consumer_add_val","insufficient_shares","more_than_one_third_val_power_change","send_vsc_without_downtime_ack","send_vsc_without_downtime_ack","consumer_update_val","consumer_del_val","consumer_add_val","send_vsc_without_downtime_ack","send_vsc_without_downtime_ack","insufficient_shares","consumer_update_val","send_vsc_without_downtime_ack","consumer_send_maturation","insufficient_shares","send_vsc_without_downtime_ack","send_vsc_without_downtime_ack","set_unval_hold_false","send_vsc_without_downtime_ack","complete_unval_in_endblock","send_vsc_without_downtime_ack","some_undels_expired_but_not_completed","consumer_send_maturation","consumer_send_maturation","consumer_update_val","consumer_update_val","consumer_send_maturation","consumer_send_maturation","consumer_send_maturation","insufficient_shares","consumer_update_val","consumer_update_val","some_undels_expired_but_not_completed","send_vsc_without_downtime_ack","some_undels_expired_but_not_completed","some_undels_expired_but_not_completed"]},{"meta":{"commit":"7ffd0c04e4205cbc9caf212abfe6c59ee43153bf"},"constants":{"P":"provider","C":"consumer","UNBONDING_SECONDS_P":70,"UNBONDING_SECONDS_C":50,"TRUSTING_SECONDS":49,"NUM_VALIDATORS":4,"MAX_VALIDATORS":2,"SLASH_DOUBLESIGN":0,"SLASH_DOWNTIME":0,"JAIL_SECONDS":999999999999999,"BLOCK_SECONDS":6,"INITIAL_DELEGATOR_TOKENS":10000000000000,"DELEGATE_AMT_MIN":1000,"DELEGATE_AMT_MAX":5000,"UNDELEGATE_AMT_MIN":1000,"UNDELEGATE_AMT_MAX":5000,"ISDOWNTIME_PROBABILITY":0.5,"MAX_NUM_PACKETS_FOR_DELIVER":6},"actions":[{"ix":0,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":1,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":2,"action":{"kind":"ConsumerSlash","val":1,"infractionHeight":0,"isDowntime":true},"partialState":{"h":1,"t":6,"outstandingDowntime":[false,true,false,false]}},{"ix":3,"action":{"kind":"ConsumerSlash","val":2,"infractionHeight":0,"isDowntime":true},"partialState":{"h":1,"t":6,"outstandingDowntime":[false,true,true,false]}},{"ix":4,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":2,"t":12,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,true,true,false]}},{"ix":5,"action":{"kind":"ConsumerSlash","val":3,"infractionHeight":1,"isDowntime":true},"partialState":{"h":2,"t":12,"outstandingDowntime":[false,true,true,true]}},{"ix":6,"action":{"kind":"Deliver","chain":"provider","numPackets":6},"partialState":{"h":1,"t":6,"tokens":[5000,4000,3000,2000],"delegation":[4000,3000,2000,1000],"delegatorTokens":10000000000000,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":7,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":8,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":9,"action":{"kind":"Deliver","chain":"provider","numPackets":5},"partialState":{"h":1,"t":6,"tokens":[5000,4000,3000,2000],"delegation":[4000,3000,2000,1000],"delegatorTokens":10000000000000,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":10,"action":{"kind":"Delegate","val":0,"amt":4977},"partialState":{"h":1,"t":6,"tokens":[9977,4000,3000,2000],"delegation":[8977,3000,2000,1000],"delegatorTokens":9999999995023}},{"ix":11,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":3,"t":18,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,true,true,true]}},{"ix":12,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":4,"t":24,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,true,true,true]}},{"ix":13,"action":{"kind":"Deliver","chain":"provider","numPackets":2},"partialState":{"h":1,"t":6,"tokens":[9977,4000,3000,2000],"delegation":[8977,3000,2000,1000],"delegatorTokens":9999999995023,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":14,"action":{"kind":"Undelegate","val":0,"amt":2635},"partialState":{"h":1,"t":6,"tokens":[7342,4000,3000,2000],"delegation":[6342,3000,2000,1000],"delegatorTokens":9999999995023}},{"ix":15,"action":{"kind":"Deliver","chain":"provider","numPackets":6},"partialState":{"h":1,"t":6,"tokens":[7342,4000,3000,2000],"delegation":[6342,3000,2000,1000],"delegatorTokens":9999999995023,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":16,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":2,"t":12,"tokens":[7342,4000,3000,2000],"delegation":[6342,3000,2000,1000],"delegatorTokens":9999999995023,"jailed":[null,1000000000000005,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":17,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":3,"t":18,"tokens":[7342,4000,3000,2000],"delegation":[6342,3000,2000,1000],"delegatorTokens":9999999995023,"jailed":[null,1000000000000005,null,null],"status":["bonded","unbonding","bonded","unbonded"]}},{"ix":18,"action":{"kind":"Undelegate","val":2,"amt":1132},"partialState":{"h":3,"t":18,"tokens":[7342,4000,1868,2000],"delegation":[6342,3000,868,1000],"delegatorTokens":9999999995023}},{"ix":19,"action":{"kind":"Deliver","chain":"consumer","numPackets":4},"partialState":{"h":4,"t":24,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,false,true,true]}},{"ix":20,"action":{"kind":"Undelegate","val":0,"amt":4763},"partialState":{"h":3,"t":18,"tokens":[2579,4000,1868,2000],"delegation":[1579,3000,868,1000],"delegatorTokens":9999999995023}},{"ix":21,"action":{"kind":"Deliver","chain":"consumer","numPackets":2},"partialState":{"h":4,"t":24,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,false,true,true]}},{"ix":22,"action":{"kind":"Deliver","chain":"consumer","numPackets":1},"partialState":{"h":4,"t":24,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,false,true,true]}},{"ix":23,"action":{"kind":"Deliver","chain":"consumer","numPackets":2},"partialState":{"h":4,"t":24,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,false,true,true]}},{"ix":24,"action":{"kind":"Undelegate","val":2,"amt":2313},"partialState":{"h":3,"t":18,"tokens":[2579,4000,1868,2000],"delegation":[1579,3000,868,1000],"delegatorTokens":9999999995023}},{"ix":25,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":26,"action":{"kind":"Delegate","val":3,"amt":4061},"partialState":{"h":3,"t":18,"tokens":[2579,4000,1868,6061],"delegation":[1579,3000,868,5061],"delegatorTokens":9999999990962}},{"ix":27,"action":{"kind":"Delegate","val":0,"amt":4556},"partialState":{"h":3,"t":18,"tokens":[7135,4000,1868,6061],"delegation":[6135,3000,868,5061],"delegatorTokens":9999999986406}},{"ix":28,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":4,"t":24,"tokens":[7135,4000,1868,6061],"delegation":[6135,3000,868,5061],"delegatorTokens":9999999986406,"jailed":[null,1000000000000005,null,null],"status":["bonded","unbonding","unbonding","bonded"]}},{"ix":29,"action":{"kind":"Delegate","val":3,"amt":2203},"partialState":{"h":4,"t":24,"tokens":[7135,4000,1868,8264],"delegation":[6135,3000,868,7264],"delegatorTokens":9999999984203}},{"ix":30,"action":{"kind":"Delegate","val":3,"amt":2674},"partialState":{"h":4,"t":24,"tokens":[7135,4000,1868,10938],"delegation":[6135,3000,868,9938],"delegatorTokens":9999999981529}},{"ix":31,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":5,"t":30,"consumerPower":[7342,4000,null,null],"outstandingDowntime":[false,false,true,true]}},{"ix":32,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":33,"action":{"kind":"Delegate","val":3,"amt":2503},"partialState":{"h":4,"t":24,"tokens":[7135,4000,1868,13441],"delegation":[6135,3000,868,12441],"delegatorTokens":9999999979026}},{"ix":34,"action":{"kind":"Deliver","chain":"consumer","numPackets":4},"partialState":{"h":5,"t":30,"consumerPower":[7342,4000,null,null],"outstandingDowntime":[false,false,true,true]}},{"ix":35,"action":{"kind":"Undelegate","val":1,"amt":1848},"partialState":{"h":4,"t":24,"tokens":[7135,2152,1868,13441],"delegation":[6135,1152,868,12441],"delegatorTokens":9999999979026}},{"ix":36,"action":{"kind":"Undelegate","val":1,"amt":1590},"partialState":{"h":4,"t":24,"tokens":[7135,2152,1868,13441],"delegation":[6135,1152,868,12441],"delegatorTokens":9999999979026}},{"ix":37,"action":{"kind":"Deliver","chain":"consumer","numPackets":3},"partialState":{"h":5,"t":30,"consumerPower":[7342,4000,null,null],"outstandingDowntime":[false,false,true,true]}},{"ix":38,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":39,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":6,"t":36,"consumerPower":[7342,null,3000,null],"outstandingDowntime":[false,false,true,true]}},{"ix":40,"action":{"kind":"Delegate","val":1,"amt":2263},"partialState":{"h":4,"t":24,"tokens":[7135,4415,1868,13441],"delegation":[6135,3415,868,12441],"delegatorTokens":9999999976763}},{"ix":41,"action":{"kind":"Undelegate","val":2,"amt":1320},"partialState":{"h":4,"t":24,"tokens":[7135,4415,1868,13441],"delegation":[6135,3415,868,12441],"delegatorTokens":9999999976763}},{"ix":42,"action":{"kind":"Undelegate","val":2,"amt":3522},"partialState":{"h":4,"t":24,"tokens":[7135,4415,1868,13441],"delegation":[6135,3415,868,12441],"delegatorTokens":9999999976763}},{"ix":43,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":44,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":5,"t":30,"tokens":[7135,4415,1868,13441],"delegation":[6135,3415,868,12441],"delegatorTokens":9999999976763,"jailed":[null,1000000000000005,null,null],"status":["bonded","unbonding","unbonding","bonded"]}},{"ix":45,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":6,"t":36,"tokens":[7135,4415,1868,13441],"delegation":[6135,3415,868,12441],"delegatorTokens":9999999976763,"jailed":[null,1000000000000005,null,null],"status":["bonded","unbonding","unbonding","bonded"]}},{"ix":46,"action":{"kind":"Undelegate","val":1,"amt":4456},"partialState":{"h":6,"t":36,"tokens":[7135,4415,1868,13441],"delegation":[6135,3415,868,12441],"delegatorTokens":9999999976763}},{"ix":47,"action":{"kind":"Undelegate","val":3,"amt":4169},"partialState":{"h":6,"t":36,"tokens":[7135,4415,1868,9272],"delegation":[6135,3415,868,8272],"delegatorTokens":9999999976763}},{"ix":48,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":49,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":7,"t":42,"tokens":[7135,4415,1868,9272],"delegation":[6135,3415,868,8272],"delegatorTokens":9999999976763,"jailed":[null,1000000000000005,null,null],"status":["bonded","unbonding","unbonding","bonded"]}},{"ix":50,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":51,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":52,"action":{"kind":"Deliver","chain":"consumer","numPackets":2},"partialState":{"h":6,"t":36,"consumerPower":[7342,null,3000,null],"outstandingDowntime":[false,false,true,true]}},{"ix":53,"action":{"kind":"Delegate","val":1,"amt":1899},"partialState":{"h":7,"t":42,"tokens":[7135,6314,1868,9272],"delegation":[6135,5314,868,8272],"delegatorTokens":9999999974864}},{"ix":54,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":55,"action":{"kind":"Deliver","chain":"provider","numPackets":3},"partialState":{"h":7,"t":42,"tokens":[7135,6314,1868,9272],"delegation":[6135,5314,868,8272],"delegatorTokens":9999999974864,"jailed":[null,1000000000000005,null,null],"status":["bonded","unbonding","unbonding","bonded"]}},{"ix":56,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":57,"action":{"kind":"Delegate","val":1,"amt":4502},"partialState":{"h":7,"t":42,"tokens":[7135,10816,1868,9272],"delegation":[6135,9816,868,8272],"delegatorTokens":9999999970362}},{"ix":58,"action":{"kind":"Undelegate","val":1,"amt":2194},"partialState":{"h":7,"t":42,"tokens":[7135,8622,1868,9272],"delegation":[6135,7622,868,8272],"delegatorTokens":9999999970362}},{"ix":59,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":8,"t":48,"tokens":[7135,8622,1868,9272],"delegation":[6135,7622,868,8272],"delegatorTokens":9999999970362,"jailed":[null,1000000000000005,null,null],"status":["bonded","unbonding","unbonding","bonded"]}},{"ix":60,"action":{"kind":"Deliver","chain":"consumer","numPackets":2},"partialState":{"h":6,"t":36,"consumerPower":[7342,null,3000,null],"outstandingDowntime":[false,false,true,true]}},{"ix":61,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":7,"t":42,"consumerPower":[7135,null,null,9272],"outstandingDowntime":[false,false,true,true]}},{"ix":62,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":8,"t":48,"consumerPower":[7135,null,null,9272],"outstandingDowntime":[false,false,true,true]}},{"ix":63,"action":{"kind":"Deliver","chain":"provider","numPackets":5},"partialState":{"h":8,"t":48,"tokens":[7135,8622,1868,9272],"delegation":[6135,7622,868,8272],"delegatorTokens":9999999970362,"jailed":[null,1000000000000005,null,null],"status":["bonded","unbonding","unbonding","bonded"]}},{"ix":64,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":9,"t":54,"consumerPower":[7135,null,null,9272],"outstandingDowntime":[false,false,true,true]}},{"ix":65,"action":{"kind":"Delegate","val":2,"amt":1288},"partialState":{"h":8,"t":48,"tokens":[7135,8622,3156,9272],"delegation":[6135,7622,2156,8272],"delegatorTokens":9999999969074}},{"ix":66,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":67,"action":{"kind":"Undelegate","val":3,"amt":4120},"partialState":{"h":8,"t":48,"tokens":[7135,8622,3156,5152],"delegation":[6135,7622,2156,4152],"delegatorTokens":9999999969074}},{"ix":68,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":9,"t":54,"tokens":[7135,8622,3156,5152],"delegation":[6135,7622,2156,4152],"delegatorTokens":9999999969074,"jailed":[null,1000000000000005,null,null],"status":["bonded","unbonding","unbonding","bonded"]}},{"ix":69,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":70,"action":{"kind":"Deliver","chain":"provider","numPackets":6},"partialState":{"h":9,"t":54,"tokens":[7135,8622,3156,5152],"delegation":[6135,7622,2156,4152],"delegatorTokens":9999999969074,"jailed":[null,1000000000000005,null,null],"status":["bonded","unbonding","unbonding","bonded"]}},{"ix":71,"action":{"kind":"Undelegate","val":3,"amt":3148},"partialState":{"h":9,"t":54,"tokens":[7135,8622,3156,2004],"delegation":[6135,7622,2156,1004],"delegatorTokens":9999999969074}},{"ix":72,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":73,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":10,"t":60,"tokens":[7135,8622,3156,2004],"delegation":[6135,7622,2156,1004],"delegatorTokens":9999999969074,"jailed":[null,1000000000000005,null,null],"status":["bonded","unbonding","bonded","unbonding"]}},{"ix":74,"action":{"kind":"Undelegate","val":0,"amt":1090},"partialState":{"h":10,"t":60,"tokens":[6045,8622,3156,2004],"delegation":[5045,7622,2156,1004],"delegatorTokens":9999999969074}},{"ix":75,"action":{"kind":"Undelegate","val":2,"amt":3775},"partialState":{"h":10,"t":60,"tokens":[6045,8622,3156,2004],"delegation":[5045,7622,2156,1004],"delegatorTokens":9999999969074}},{"ix":76,"action":{"kind":"Deliver","chain":"provider","numPackets":6},"partialState":{"h":10,"t":60,"tokens":[6045,8622,3156,2004],"delegation":[5045,7622,2156,1004],"delegatorTokens":9999999969074,"jailed":[null,1000000000000005,null,null],"status":["bonded","unbonding","bonded","unbonding"]}},{"ix":77,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":10,"t":60,"consumerPower":[7135,null,null,9272],"outstandingDowntime":[false,false,true,true]}},{"ix":78,"action":{"kind":"Deliver","chain":"provider","numPackets":4},"partialState":{"h":10,"t":60,"tokens":[6045,8622,3156,2004],"delegation":[5045,7622,2156,1004],"delegatorTokens":9999999969074,"jailed":[null,1000000000000005,null,null],"status":["bonded","unbonding","bonded","unbonding"]}},{"ix":79,"action":{"kind":"Delegate","val":3,"amt":4447},"partialState":{"h":10,"t":60,"tokens":[6045,8622,3156,6451],"delegation":[5045,7622,2156,5451],"delegatorTokens":9999999964627}},{"ix":80,"action":{"kind":"Deliver","chain":"consumer","numPackets":4},"partialState":{"h":10,"t":60,"consumerPower":[7135,null,null,9272],"outstandingDowntime":[false,false,true,true]}},{"ix":81,"action":{"kind":"Deliver","chain":"consumer","numPackets":4},"partialState":{"h":10,"t":60,"consumerPower":[7135,null,null,9272],"outstandingDowntime":[false,false,true,true]}},{"ix":82,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":83,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":84,"action":{"kind":"Undelegate","val":0,"amt":1622},"partialState":{"h":10,"t":60,"tokens":[4423,8622,3156,6451],"delegation":[3423,7622,2156,5451],"delegatorTokens":9999999964627}},{"ix":85,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":11,"t":66,"consumerPower":[7135,null,null,5152],"outstandingDowntime":[false,false,true,true]}},{"ix":86,"action":{"kind":"Undelegate","val":3,"amt":4266},"partialState":{"h":10,"t":60,"tokens":[4423,8622,3156,2185],"delegation":[3423,7622,2156,1185],"delegatorTokens":9999999964627}},{"ix":87,"action":{"kind":"Deliver","chain":"provider","numPackets":4},"partialState":{"h":10,"t":60,"tokens":[4423,8622,3156,2185],"delegation":[3423,7622,2156,1185],"delegatorTokens":9999999964627,"jailed":[null,1000000000000005,null,null],"status":["bonded","unbonding","bonded","unbonding"]}},{"ix":88,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":89,"action":{"kind":"Delegate","val":1,"amt":1763},"partialState":{"h":10,"t":60,"tokens":[4423,10385,3156,2185],"delegation":[3423,9385,2156,1185],"delegatorTokens":9999999962864}},{"ix":90,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":91,"action":{"kind":"Delegate","val":1,"amt":2054},"partialState":{"h":10,"t":60,"tokens":[4423,12439,3156,2185],"delegation":[3423,11439,2156,1185],"delegatorTokens":9999999960810}},{"ix":92,"action":{"kind":"Delegate","val":3,"amt":2724},"partialState":{"h":10,"t":60,"tokens":[4423,12439,3156,4909],"delegation":[3423,11439,2156,3909],"delegatorTokens":9999999958086}},{"ix":93,"action":{"kind":"Deliver","chain":"provider","numPackets":3},"partialState":{"h":10,"t":60,"tokens":[4423,12439,3156,4909],"delegation":[3423,11439,2156,3909],"delegatorTokens":9999999958086,"jailed":[null,1000000000000005,null,null],"status":["bonded","unbonding","bonded","unbonding"]}},{"ix":94,"action":{"kind":"Delegate","val":3,"amt":4794},"partialState":{"h":10,"t":60,"tokens":[4423,12439,3156,9703],"delegation":[3423,11439,2156,8703],"delegatorTokens":9999999953292}},{"ix":95,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":12,"t":72,"consumerPower":[7135,null,null,5152],"outstandingDowntime":[false,false,true,true]}},{"ix":96,"action":{"kind":"Undelegate","val":3,"amt":4020},"partialState":{"h":10,"t":60,"tokens":[4423,12439,3156,5683],"delegation":[3423,11439,2156,4683],"delegatorTokens":9999999953292}},{"ix":97,"action":{"kind":"Delegate","val":2,"amt":1680},"partialState":{"h":10,"t":60,"tokens":[4423,12439,4836,5683],"delegation":[3423,11439,3836,4683],"delegatorTokens":9999999951612}},{"ix":98,"action":{"kind":"Undelegate","val":3,"amt":1314},"partialState":{"h":10,"t":60,"tokens":[4423,12439,4836,4369],"delegation":[3423,11439,3836,3369],"delegatorTokens":9999999951612}},{"ix":99,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":100,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":101,"action":{"kind":"Deliver","chain":"provider","numPackets":2},"partialState":{"h":10,"t":60,"tokens":[4423,12439,4836,4369],"delegation":[3423,11439,3836,3369],"delegatorTokens":9999999951612,"jailed":[null,1000000000000005,null,null],"status":["bonded","unbonding","bonded","unbonding"]}},{"ix":102,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":103,"action":{"kind":"Deliver","chain":"provider","numPackets":4},"partialState":{"h":10,"t":60,"tokens":[4423,12439,4836,4369],"delegation":[3423,11439,3836,3369],"delegatorTokens":9999999951612,"jailed":[null,1000000000000005,null,null],"status":["bonded","unbonding","bonded","unbonding"]}},{"ix":104,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":13,"t":78,"consumerPower":[7135,null,null,5152],"outstandingDowntime":[false,false,true,true]}},{"ix":105,"action":{"kind":"Deliver","chain":"consumer","numPackets":3},"partialState":{"h":13,"t":78,"consumerPower":[7135,null,null,5152],"outstandingDowntime":[false,false,true,true]}},{"ix":106,"action":{"kind":"Undelegate","val":2,"amt":4465},"partialState":{"h":10,"t":60,"tokens":[4423,12439,4836,4369],"delegation":[3423,11439,3836,3369],"delegatorTokens":9999999951612}},{"ix":107,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":14,"t":84,"consumerPower":[7135,null,null,5152],"outstandingDowntime":[false,false,true,true]}},{"ix":108,"action":{"kind":"Deliver","chain":"consumer","numPackets":5},"partialState":{"h":14,"t":84,"consumerPower":[7135,null,null,5152],"outstandingDowntime":[false,false,true,true]}},{"ix":109,"action":{"kind":"Deliver","chain":"consumer","numPackets":3},"partialState":{"h":14,"t":84,"consumerPower":[7135,null,null,5152],"outstandingDowntime":[false,false,true,true]}},{"ix":110,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":111,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":11,"t":66,"tokens":[4423,12439,4836,4369],"delegation":[3423,11439,3836,3369],"delegatorTokens":9999999951612,"jailed":[null,1000000000000005,null,null],"status":["bonded","unbonding","bonded","unbonding"]}},{"ix":112,"action":{"kind":"Undelegate","val":0,"amt":4252},"partialState":{"h":11,"t":66,"tokens":[4423,12439,4836,4369],"delegation":[3423,11439,3836,3369],"delegatorTokens":9999999951612}},{"ix":113,"action":{"kind":"Undelegate","val":2,"amt":2730},"partialState":{"h":11,"t":66,"tokens":[4423,12439,2106,4369],"delegation":[3423,11439,1106,3369],"delegatorTokens":9999999951612}},{"ix":114,"action":{"kind":"Undelegate","val":3,"amt":4598},"partialState":{"h":11,"t":66,"tokens":[4423,12439,2106,4369],"delegation":[3423,11439,1106,3369],"delegatorTokens":9999999951612}},{"ix":115,"action":{"kind":"Deliver","chain":"provider","numPackets":4},"partialState":{"h":11,"t":66,"tokens":[4423,12439,2106,4369],"delegation":[3423,11439,1106,3369],"delegatorTokens":9999999951612,"jailed":[null,1000000000000005,null,null],"status":["bonded","unbonding","bonded","unbonding"]}},{"ix":116,"action":{"kind":"Undelegate","val":1,"amt":2255},"partialState":{"h":11,"t":66,"tokens":[4423,10184,2106,4369],"delegation":[3423,9184,1106,3369],"delegatorTokens":9999999951612}},{"ix":117,"action":{"kind":"Undelegate","val":0,"amt":1500},"partialState":{"h":11,"t":66,"tokens":[2923,10184,2106,4369],"delegation":[1923,9184,1106,3369],"delegatorTokens":9999999951612}},{"ix":118,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":119,"action":{"kind":"Delegate","val":1,"amt":2853},"partialState":{"h":11,"t":66,"tokens":[2923,13037,2106,4369],"delegation":[1923,12037,1106,3369],"delegatorTokens":9999999948759}},{"ix":120,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":15,"t":90,"consumerPower":[7135,null,null,5152],"outstandingDowntime":[false,false,true,true]}},{"ix":121,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":122,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":123,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":16,"t":96,"consumerPower":[7135,null,null,5152],"outstandingDowntime":[false,false,true,true]}},{"ix":124,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":12,"t":72,"tokens":[2923,13037,2106,4369],"delegation":[1923,12037,1106,3369],"delegatorTokens":9999999948759,"jailed":[null,1000000000000005,null,null],"status":["bonded","unbonding","unbonding","bonded"]}},{"ix":125,"action":{"kind":"Undelegate","val":0,"amt":2879},"partialState":{"h":12,"t":72,"tokens":[2923,13037,2106,4369],"delegation":[1923,12037,1106,3369],"delegatorTokens":9999999948759}},{"ix":126,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":127,"action":{"kind":"Delegate","val":3,"amt":3815},"partialState":{"h":12,"t":72,"tokens":[2923,13037,2106,8184],"delegation":[1923,12037,1106,7184],"delegatorTokens":9999999944944}},{"ix":128,"action":{"kind":"Delegate","val":1,"amt":2574},"partialState":{"h":12,"t":72,"tokens":[2923,15611,2106,8184],"delegation":[1923,14611,1106,7184],"delegatorTokens":9999999942370}},{"ix":129,"action":{"kind":"Delegate","val":1,"amt":4480},"partialState":{"h":12,"t":72,"tokens":[2923,20091,2106,8184],"delegation":[1923,19091,1106,7184],"delegatorTokens":9999999937890}},{"ix":130,"action":{"kind":"Deliver","chain":"provider","numPackets":3},"partialState":{"h":12,"t":72,"tokens":[2923,20091,2106,8184],"delegation":[1923,19091,1106,7184],"delegatorTokens":9999999937890,"jailed":[null,1000000000000005,null,null],"status":["bonded","unbonding","unbonding","bonded"]}},{"ix":131,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":13,"t":78,"tokens":[2923,20091,2106,8184],"delegation":[1923,19091,1106,7184],"delegatorTokens":9999999937890,"jailed":[null,1000000000000005,null,null],"status":["bonded","unbonding","unbonding","bonded"]}},{"ix":132,"action":{"kind":"Undelegate","val":3,"amt":1753},"partialState":{"h":13,"t":78,"tokens":[2923,20091,2106,6431],"delegation":[1923,19091,1106,5431],"delegatorTokens":9999999937890}},{"ix":133,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":17,"t":102,"consumerPower":[7135,null,null,5152],"outstandingDowntime":[false,false,true,true]}},{"ix":134,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":18,"t":108,"consumerPower":[7135,null,null,5152],"outstandingDowntime":[false,false,true,true]}},{"ix":135,"action":{"kind":"Deliver","chain":"provider","numPackets":5},"partialState":{"h":13,"t":78,"tokens":[2923,20091,2106,6431],"delegation":[1923,19091,1106,5431],"delegatorTokens":9999999937890,"jailed":[null,1000000000000005,null,null],"status":["bonded","unbonding","unbonding","bonded"]}},{"ix":136,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":137,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":138,"action":{"kind":"Undelegate","val":0,"amt":3507},"partialState":{"h":13,"t":78,"tokens":[2923,20091,2106,6431],"delegation":[1923,19091,1106,5431],"delegatorTokens":9999999937890}},{"ix":139,"action":{"kind":"Deliver","chain":"provider","numPackets":4},"partialState":{"h":13,"t":78,"tokens":[2923,20091,2106,6431],"delegation":[1923,19091,1106,5431],"delegatorTokens":9999999937890,"jailed":[null,1000000000000005,null,null],"status":["bonded","unbonding","unbonding","bonded"]}},{"ix":140,"action":{"kind":"Delegate","val":2,"amt":3954},"partialState":{"h":13,"t":78,"tokens":[2923,20091,6060,6431],"delegation":[1923,19091,5060,5431],"delegatorTokens":9999999933936}},{"ix":141,"action":{"kind":"Delegate","val":2,"amt":3422},"partialState":{"h":13,"t":78,"tokens":[2923,20091,9482,6431],"delegation":[1923,19091,8482,5431],"delegatorTokens":9999999930514}},{"ix":142,"action":{"kind":"Delegate","val":1,"amt":2545},"partialState":{"h":13,"t":78,"tokens":[2923,22636,9482,6431],"delegation":[1923,21636,8482,5431],"delegatorTokens":9999999927969}},{"ix":143,"action":{"kind":"Delegate","val":3,"amt":2546},"partialState":{"h":13,"t":78,"tokens":[2923,22636,9482,8977],"delegation":[1923,21636,8482,7977],"delegatorTokens":9999999925423}},{"ix":144,"action":{"kind":"Delegate","val":1,"amt":1155},"partialState":{"h":13,"t":78,"tokens":[2923,23791,9482,8977],"delegation":[1923,22791,8482,7977],"delegatorTokens":9999999924268}},{"ix":145,"action":{"kind":"Undelegate","val":1,"amt":3676},"partialState":{"h":13,"t":78,"tokens":[2923,20115,9482,8977],"delegation":[1923,19115,8482,7977],"delegatorTokens":9999999924268}},{"ix":146,"action":{"kind":"Delegate","val":3,"amt":3514},"partialState":{"h":13,"t":78,"tokens":[2923,20115,9482,12491],"delegation":[1923,19115,8482,11491],"delegatorTokens":9999999920754}},{"ix":147,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":19,"t":114,"consumerPower":[7135,null,null,5152],"outstandingDowntime":[false,false,true,true]}},{"ix":148,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":20,"t":120,"consumerPower":[7135,null,null,5152],"outstandingDowntime":[false,false,true,true]}},{"ix":149,"action":{"kind":"Delegate","val":3,"amt":1424},"partialState":{"h":13,"t":78,"tokens":[2923,20115,9482,13915],"delegation":[1923,19115,8482,12915],"delegatorTokens":9999999919330}},{"ix":150,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":14,"t":84,"tokens":[2923,20115,9482,13915],"delegation":[1923,19115,8482,12915],"delegatorTokens":9999999921965,"jailed":[null,1000000000000005,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":151,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":15,"t":90,"tokens":[2923,20115,9482,13915],"delegation":[1923,19115,8482,12915],"delegatorTokens":9999999921965,"jailed":[null,1000000000000005,null,null],"status":["unbonding","unbonded","bonded","bonded"]}},{"ix":152,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":16,"t":96,"tokens":[2923,20115,9482,13915],"delegation":[1923,19115,8482,12915],"delegatorTokens":9999999927860,"jailed":[null,1000000000000005,null,null],"status":["unbonding","unbonded","bonded","bonded"]}},{"ix":153,"action":{"kind":"Deliver","chain":"consumer","numPackets":4},"partialState":{"h":20,"t":120,"consumerPower":[7135,null,null,5152],"outstandingDowntime":[false,false,true,true]}},{"ix":154,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":155,"action":{"kind":"Delegate","val":2,"amt":4112},"partialState":{"h":16,"t":96,"tokens":[2923,20115,13594,13915],"delegation":[1923,19115,12594,12915],"delegatorTokens":9999999923748}},{"ix":156,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":157,"action":{"kind":"Deliver","chain":"provider","numPackets":2},"partialState":{"h":16,"t":96,"tokens":[2923,20115,13594,13915],"delegation":[1923,19115,12594,12915],"delegatorTokens":9999999923748,"jailed":[null,1000000000000005,null,null],"status":["unbonding","unbonded","bonded","bonded"]}},{"ix":158,"action":{"kind":"Delegate","val":1,"amt":2249},"partialState":{"h":16,"t":96,"tokens":[2923,22364,13594,13915],"delegation":[1923,21364,12594,12915],"delegatorTokens":9999999921499}},{"ix":159,"action":{"kind":"Delegate","val":1,"amt":2220},"partialState":{"h":16,"t":96,"tokens":[2923,24584,13594,13915],"delegation":[1923,23584,12594,12915],"delegatorTokens":9999999919279}},{"ix":160,"action":{"kind":"Undelegate","val":2,"amt":1076},"partialState":{"h":16,"t":96,"tokens":[2923,24584,12518,13915],"delegation":[1923,23584,11518,12915],"delegatorTokens":9999999919279}},{"ix":161,"action":{"kind":"Deliver","chain":"provider","numPackets":6},"partialState":{"h":16,"t":96,"tokens":[2923,24584,12518,13915],"delegation":[1923,23584,11518,12915],"delegatorTokens":9999999919279,"jailed":[null,1000000000000005,null,null],"status":["unbonding","unbonded","bonded","bonded"]}},{"ix":162,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":21,"t":126,"consumerPower":[2923,null,null,8184],"outstandingDowntime":[false,false,true,true]}},{"ix":163,"action":{"kind":"Delegate","val":2,"amt":4940},"partialState":{"h":16,"t":96,"tokens":[2923,24584,17458,13915],"delegation":[1923,23584,16458,12915],"delegatorTokens":9999999914339}},{"ix":164,"action":{"kind":"Deliver","chain":"provider","numPackets":1},"partialState":{"h":16,"t":96,"tokens":[2923,24584,17458,13915],"delegation":[1923,23584,16458,12915],"delegatorTokens":9999999914339,"jailed":[null,1000000000000005,null,null],"status":["unbonding","unbonded","bonded","bonded"]}},{"ix":165,"action":{"kind":"Delegate","val":1,"amt":1399},"partialState":{"h":16,"t":96,"tokens":[2923,25983,17458,13915],"delegation":[1923,24983,16458,12915],"delegatorTokens":9999999912940}},{"ix":166,"action":{"kind":"Deliver","chain":"consumer","numPackets":4},"partialState":{"h":21,"t":126,"consumerPower":[2923,null,null,8184],"outstandingDowntime":[false,false,true,true]}},{"ix":167,"action":{"kind":"Delegate","val":0,"amt":1077},"partialState":{"h":16,"t":96,"tokens":[4000,25983,17458,13915],"delegation":[3000,24983,16458,12915],"delegatorTokens":9999999911863}},{"ix":168,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":17,"t":102,"tokens":[4000,25983,17458,13915],"delegation":[3000,24983,16458,12915],"delegatorTokens":9999999913711,"jailed":[null,1000000000000005,null,null],"status":["unbonding","unbonded","bonded","bonded"]}},{"ix":169,"action":{"kind":"Delegate","val":1,"amt":3981},"partialState":{"h":17,"t":102,"tokens":[4000,29964,17458,13915],"delegation":[3000,28964,16458,12915],"delegatorTokens":9999999909730}},{"ix":170,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":171,"action":{"kind":"Undelegate","val":1,"amt":1332},"partialState":{"h":17,"t":102,"tokens":[4000,28632,17458,13915],"delegation":[3000,27632,16458,12915],"delegatorTokens":9999999909730}},{"ix":172,"action":{"kind":"Delegate","val":2,"amt":4210},"partialState":{"h":17,"t":102,"tokens":[4000,28632,21668,13915],"delegation":[3000,27632,20668,12915],"delegatorTokens":9999999905520}},{"ix":173,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":174,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":22,"t":132,"consumerPower":[null,null,9482,13915],"outstandingDowntime":[false,false,true,true]}},{"ix":175,"action":{"kind":"Undelegate","val":1,"amt":2990},"partialState":{"h":17,"t":102,"tokens":[4000,25642,21668,13915],"delegation":[3000,24642,20668,12915],"delegatorTokens":9999999905520}},{"ix":176,"action":{"kind":"Undelegate","val":1,"amt":3939},"partialState":{"h":17,"t":102,"tokens":[4000,21703,21668,13915],"delegation":[3000,20703,20668,12915],"delegatorTokens":9999999905520}},{"ix":177,"action":{"kind":"Delegate","val":0,"amt":3837},"partialState":{"h":17,"t":102,"tokens":[7837,21703,21668,13915],"delegation":[6837,20703,20668,12915],"delegatorTokens":9999999901683}},{"ix":178,"action":{"kind":"Undelegate","val":2,"amt":3563},"partialState":{"h":17,"t":102,"tokens":[7837,21703,18105,13915],"delegation":[6837,20703,17105,12915],"delegatorTokens":9999999901683}},{"ix":179,"action":{"kind":"Deliver","chain":"consumer","numPackets":4},"partialState":{"h":22,"t":132,"consumerPower":[null,null,9482,13915],"outstandingDowntime":[false,false,true,true]}},{"ix":180,"action":{"kind":"Delegate","val":1,"amt":1185},"partialState":{"h":17,"t":102,"tokens":[7837,22888,18105,13915],"delegation":[6837,21888,17105,12915],"delegatorTokens":9999999900498}},{"ix":181,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":18,"t":108,"tokens":[7837,22888,18105,13915],"delegation":[6837,21888,17105,12915],"delegatorTokens":9999999900498,"jailed":[null,1000000000000005,null,null],"status":["unbonding","unbonded","bonded","bonded"]}},{"ix":182,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":19,"t":114,"tokens":[7837,22888,18105,13915],"delegation":[6837,21888,17105,12915],"delegatorTokens":9999999904667,"jailed":[null,1000000000000005,null,null],"status":["unbonding","unbonded","bonded","bonded"]}},{"ix":183,"action":{"kind":"Deliver","chain":"consumer","numPackets":3},"partialState":{"h":22,"t":132,"consumerPower":[null,null,9482,13915],"outstandingDowntime":[false,false,true,true]}},{"ix":184,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":185,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":20,"t":120,"tokens":[7837,22888,18105,13915],"delegation":[6837,21888,17105,12915],"delegatorTokens":9999999906861,"jailed":[null,1000000000000005,null,null],"status":["unbonding","unbonded","bonded","bonded"]}},{"ix":186,"action":{"kind":"Deliver","chain":"consumer","numPackets":3},"partialState":{"h":22,"t":132,"consumerPower":[null,null,9482,13915],"outstandingDowntime":[false,false,true,true]}},{"ix":187,"action":{"kind":"Deliver","chain":"consumer","numPackets":3},"partialState":{"h":22,"t":132,"consumerPower":[null,null,9482,13915],"outstandingDowntime":[false,false,true,true]}},{"ix":188,"action":{"kind":"Delegate","val":0,"amt":2092},"partialState":{"h":20,"t":120,"tokens":[9929,22888,18105,13915],"delegation":[8929,21888,17105,12915],"delegatorTokens":9999999904769}},{"ix":189,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":190,"action":{"kind":"Undelegate","val":3,"amt":3430},"partialState":{"h":20,"t":120,"tokens":[9929,22888,18105,10485],"delegation":[8929,21888,17105,9485],"delegatorTokens":9999999904769}},{"ix":191,"action":{"kind":"Delegate","val":3,"amt":1466},"partialState":{"h":20,"t":120,"tokens":[9929,22888,18105,11951],"delegation":[8929,21888,17105,10951],"delegatorTokens":9999999903303}},{"ix":192,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":23,"t":138,"consumerPower":[null,null,18105,13915],"outstandingDowntime":[false,false,true,true]}},{"ix":193,"action":{"kind":"Deliver","chain":"consumer","numPackets":6},"partialState":{"h":23,"t":138,"consumerPower":[null,null,18105,13915],"outstandingDowntime":[false,false,true,true]}},{"ix":194,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":21,"t":126,"tokens":[9929,22888,18105,11951],"delegation":[8929,21888,17105,10951],"delegatorTokens":9999999903303,"jailed":[null,1000000000000005,null,null],"status":["unbonding","unbonded","bonded","bonded"]}},{"ix":195,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":196,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":197,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":198,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":199,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}}],"events":["send_downtime_slash_request","send_downtime_slash_request","send_downtime_slash_request","receive_downtime_slash_request","jail","receive_slash_request_unbonded","receive_slash_request_unbonded","send_vsc_with_downtime_ack","send_vsc_without_downtime_ack","receive_downtime_slash_ack","insufficient_shares","more_than_one_third_val_power_change","send_vsc_without_downtime_ack","consumer_update_val","insufficient_shares","consumer_del_val","consumer_add_val","insufficient_shares","insufficient_shares","send_vsc_without_downtime_ack","insufficient_shares","send_vsc_without_downtime_ack","send_vsc_not_because_change","send_vsc_without_downtime_ack","consumer_update_val","consumer_del_val","consumer_add_val","send_vsc_without_downtime_ack","rebond_unval","send_vsc_without_downtime_ack","insufficient_shares","consumer_update_val","insufficient_shares","consumer_send_maturation","send_vsc_without_downtime_ack","insufficient_shares","insufficient_shares","consumer_send_maturation","consumer_send_maturation","consumer_send_maturation","consumer_send_maturation","more_than_one_third_val_power_change","rebond_unval","send_vsc_without_downtime_ack","insufficient_shares","set_undel_hold_false","set_unval_hold_false","send_vsc_without_downtime_ack","insufficient_shares","consumer_send_maturation","consumer_send_maturation","more_than_one_third_val_power_change","rebond_unval","complete_undel_in_endblock","set_undel_hold_false","set_undel_hold_false","set_undel_hold_false","set_undel_hold_false","send_vsc_without_downtime_ack","complete_unval_in_endblock","complete_undel_in_endblock","consumer_del_val","consumer_update_val","consumer_update_val","complete_undel_in_endblock","set_undel_hold_false","send_vsc_without_downtime_ack","consumer_del_val","consumer_add_val","consumer_update_val","send_vsc_without_downtime_ack","complete_undel_in_endblock","complete_undel_in_endblock","consumer_update_val","some_undels_expired_but_not_completed","send_vsc_without_downtime_ack"]},{"meta":{"commit":"7ffd0c04e4205cbc9caf212abfe6c59ee43153bf"},"constants":{"P":"provider","C":"consumer","UNBONDING_SECONDS_P":70,"UNBONDING_SECONDS_C":50,"TRUSTING_SECONDS":49,"NUM_VALIDATORS":4,"MAX_VALIDATORS":2,"SLASH_DOUBLESIGN":0,"SLASH_DOWNTIME":0,"JAIL_SECONDS":999999999999999,"BLOCK_SECONDS":6,"INITIAL_DELEGATOR_TOKENS":10000000000000,"DELEGATE_AMT_MIN":1000,"DELEGATE_AMT_MAX":5000,"UNDELEGATE_AMT_MIN":1000,"UNDELEGATE_AMT_MAX":5000,"ISDOWNTIME_PROBABILITY":0.5,"MAX_NUM_PACKETS_FOR_DELIVER":6},"actions":[{"ix":0,"action":{"kind":"Undelegate","val":2,"amt":1701},"partialState":{"h":1,"t":6,"tokens":[5000,4000,1299,2000],"delegation":[4000,3000,299,1000],"delegatorTokens":10000000000000}},{"ix":1,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":2,"t":12,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":2,"action":{"kind":"Delegate","val":3,"amt":3808},"partialState":{"h":1,"t":6,"tokens":[5000,4000,1299,5808],"delegation":[4000,3000,299,4808],"delegatorTokens":9999999996192}},{"ix":3,"action":{"kind":"ConsumerSlash","val":2,"infractionHeight":1,"isDowntime":true},"partialState":{"h":2,"t":12,"outstandingDowntime":[false,false,true,false]}},{"ix":4,"action":{"kind":"Delegate","val":0,"amt":4264},"partialState":{"h":1,"t":6,"tokens":[9264,4000,1299,5808],"delegation":[8264,3000,299,4808],"delegatorTokens":9999999991928}},{"ix":5,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":3,"t":18,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,false,true,false]}},{"ix":6,"action":{"kind":"ConsumerSlash","val":3,"infractionHeight":0,"isDowntime":true},"partialState":{"h":3,"t":18,"outstandingDowntime":[false,false,true,true]}},{"ix":7,"action":{"kind":"Undelegate","val":3,"amt":2844},"partialState":{"h":1,"t":6,"tokens":[9264,4000,1299,2964],"delegation":[8264,3000,299,1964],"delegatorTokens":9999999991928}},{"ix":8,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":2,"t":12,"tokens":[9264,4000,1299,2964],"delegation":[8264,3000,299,1964],"delegatorTokens":9999999991928,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":9,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":10,"action":{"kind":"Deliver","chain":"consumer","numPackets":2},"partialState":{"h":3,"t":18,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,false,true,true]}},{"ix":11,"action":{"kind":"Undelegate","val":2,"amt":1538},"partialState":{"h":2,"t":12,"tokens":[9264,4000,1299,2964],"delegation":[8264,3000,299,1964],"delegatorTokens":9999999991928}},{"ix":12,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":3,"t":18,"tokens":[9264,4000,1299,2964],"delegation":[8264,3000,299,1964],"delegatorTokens":9999999991928,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":13,"action":{"kind":"Undelegate","val":3,"amt":2540},"partialState":{"h":3,"t":18,"tokens":[9264,4000,1299,2964],"delegation":[8264,3000,299,1964],"delegatorTokens":9999999991928}},{"ix":14,"action":{"kind":"Undelegate","val":2,"amt":3048},"partialState":{"h":3,"t":18,"tokens":[9264,4000,1299,2964],"delegation":[8264,3000,299,1964],"delegatorTokens":9999999991928}},{"ix":15,"action":{"kind":"ConsumerSlash","val":0,"infractionHeight":0,"isDowntime":true},"partialState":{"h":3,"t":18,"outstandingDowntime":[true,false,true,true]}},{"ix":16,"action":{"kind":"Deliver","chain":"consumer","numPackets":6},"partialState":{"h":3,"t":18,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[true,false,true,true]}},{"ix":17,"action":{"kind":"Deliver","chain":"consumer","numPackets":5},"partialState":{"h":3,"t":18,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[true,false,true,true]}},{"ix":18,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":19,"action":{"kind":"Undelegate","val":1,"amt":3880},"partialState":{"h":3,"t":18,"tokens":[9264,4000,1299,2964],"delegation":[8264,3000,299,1964],"delegatorTokens":9999999991928}},{"ix":20,"action":{"kind":"Delegate","val":0,"amt":2507},"partialState":{"h":3,"t":18,"tokens":[11771,4000,1299,2964],"delegation":[10771,3000,299,1964],"delegatorTokens":9999999989421}},{"ix":21,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":4,"t":24,"tokens":[11771,4000,1299,2964],"delegation":[10771,3000,299,1964],"delegatorTokens":9999999989421,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":22,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":5,"t":30,"tokens":[11771,4000,1299,2964],"delegation":[10771,3000,299,1964],"delegatorTokens":9999999989421,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":23,"action":{"kind":"Undelegate","val":3,"amt":3456},"partialState":{"h":5,"t":30,"tokens":[11771,4000,1299,2964],"delegation":[10771,3000,299,1964],"delegatorTokens":9999999989421}},{"ix":24,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":25,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":26,"action":{"kind":"Delegate","val":2,"amt":1954},"partialState":{"h":5,"t":30,"tokens":[11771,4000,3253,2964],"delegation":[10771,3000,2253,1964],"delegatorTokens":9999999987467}},{"ix":27,"action":{"kind":"Deliver","chain":"provider","numPackets":1},"partialState":{"h":5,"t":30,"tokens":[11771,4000,3253,2964],"delegation":[10771,3000,2253,1964],"delegatorTokens":9999999987467,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":28,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":4,"t":24,"consumerPower":[9264,4000,null,null],"outstandingDowntime":[true,false,true,true]}},{"ix":29,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":5,"t":30,"consumerPower":[9264,4000,null,null],"outstandingDowntime":[true,false,true,true]}},{"ix":30,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":31,"action":{"kind":"Delegate","val":1,"amt":2163},"partialState":{"h":5,"t":30,"tokens":[11771,6163,3253,2964],"delegation":[10771,5163,2253,1964],"delegatorTokens":9999999985304}},{"ix":32,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":6,"t":36,"tokens":[11771,6163,3253,2964],"delegation":[10771,5163,2253,1964],"delegatorTokens":9999999985304,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":33,"action":{"kind":"Undelegate","val":0,"amt":3913},"partialState":{"h":6,"t":36,"tokens":[7858,6163,3253,2964],"delegation":[6858,5163,2253,1964],"delegatorTokens":9999999985304}},{"ix":34,"action":{"kind":"Delegate","val":2,"amt":1419},"partialState":{"h":6,"t":36,"tokens":[7858,6163,4672,2964],"delegation":[6858,5163,3672,1964],"delegatorTokens":9999999983885}},{"ix":35,"action":{"kind":"Undelegate","val":3,"amt":1631},"partialState":{"h":6,"t":36,"tokens":[7858,6163,4672,1333],"delegation":[6858,5163,3672,333],"delegatorTokens":9999999983885}},{"ix":36,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":37,"action":{"kind":"Deliver","chain":"provider","numPackets":6},"partialState":{"h":6,"t":36,"tokens":[7858,6163,4672,1333],"delegation":[6858,5163,3672,333],"delegatorTokens":9999999983885,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":38,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":39,"action":{"kind":"Undelegate","val":3,"amt":1792},"partialState":{"h":6,"t":36,"tokens":[7858,6163,4672,1333],"delegation":[6858,5163,3672,333],"delegatorTokens":9999999983885}},{"ix":40,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":41,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":7,"t":42,"tokens":[7858,6163,4672,1333],"delegation":[6858,5163,3672,333],"delegatorTokens":9999999983885,"jailed":[1000000000000035,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":42,"action":{"kind":"Delegate","val":2,"amt":2893},"partialState":{"h":7,"t":42,"tokens":[7858,6163,7565,1333],"delegation":[6858,5163,6565,333],"delegatorTokens":9999999980992}},{"ix":43,"action":{"kind":"Delegate","val":1,"amt":1424},"partialState":{"h":7,"t":42,"tokens":[7858,7587,7565,1333],"delegation":[6858,6587,6565,333],"delegatorTokens":9999999979568}},{"ix":44,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":45,"action":{"kind":"Undelegate","val":0,"amt":3384},"partialState":{"h":7,"t":42,"tokens":[4474,7587,7565,1333],"delegation":[3474,6587,6565,333],"delegatorTokens":9999999979568}},{"ix":46,"action":{"kind":"Undelegate","val":1,"amt":1861},"partialState":{"h":7,"t":42,"tokens":[4474,5726,7565,1333],"delegation":[3474,4726,6565,333],"delegatorTokens":9999999979568}},{"ix":47,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":8,"t":48,"tokens":[4474,5726,7565,1333],"delegation":[3474,4726,6565,333],"delegatorTokens":9999999979568,"jailed":[1000000000000035,null,null,null],"status":["unbonding","bonded","bonded","unbonded"]}},{"ix":48,"action":{"kind":"Undelegate","val":2,"amt":4518},"partialState":{"h":8,"t":48,"tokens":[4474,5726,3047,1333],"delegation":[3474,4726,2047,333],"delegatorTokens":9999999979568}},{"ix":49,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":50,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":6,"t":36,"consumerPower":[9264,4000,null,null],"outstandingDowntime":[true,false,true,true]}},{"ix":51,"action":{"kind":"Undelegate","val":1,"amt":3593},"partialState":{"h":8,"t":48,"tokens":[4474,2133,3047,1333],"delegation":[3474,1133,2047,333],"delegatorTokens":9999999979568}},{"ix":52,"action":{"kind":"Undelegate","val":2,"amt":3341},"partialState":{"h":8,"t":48,"tokens":[4474,2133,3047,1333],"delegation":[3474,1133,2047,333],"delegatorTokens":9999999979568}},{"ix":53,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":7,"t":42,"consumerPower":[9264,4000,null,null],"outstandingDowntime":[true,false,true,true]}},{"ix":54,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":9,"t":54,"tokens":[4474,2133,3047,1333],"delegation":[3474,1133,2047,333],"delegatorTokens":9999999979568,"jailed":[1000000000000035,null,null,null],"status":["unbonding","bonded","bonded","unbonded"]}},{"ix":55,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":10,"t":60,"tokens":[4474,2133,3047,1333],"delegation":[3474,1133,2047,333],"delegatorTokens":9999999979568,"jailed":[1000000000000035,null,null,null],"status":["unbonding","bonded","bonded","unbonded"]}},{"ix":56,"action":{"kind":"Deliver","chain":"provider","numPackets":3},"partialState":{"h":10,"t":60,"tokens":[4474,2133,3047,1333],"delegation":[3474,1133,2047,333],"delegatorTokens":9999999979568,"jailed":[1000000000000035,null,null,null],"status":["unbonding","bonded","bonded","unbonded"]}},{"ix":57,"action":{"kind":"Deliver","chain":"provider","numPackets":6},"partialState":{"h":10,"t":60,"tokens":[4474,2133,3047,1333],"delegation":[3474,1133,2047,333],"delegatorTokens":9999999979568,"jailed":[1000000000000035,null,null,null],"status":["unbonding","bonded","bonded","unbonded"]}},{"ix":58,"action":{"kind":"Undelegate","val":2,"amt":1110},"partialState":{"h":10,"t":60,"tokens":[4474,2133,1937,1333],"delegation":[3474,1133,937,333],"delegatorTokens":9999999979568}},{"ix":59,"action":{"kind":"Deliver","chain":"consumer","numPackets":5},"partialState":{"h":7,"t":42,"consumerPower":[9264,4000,null,null],"outstandingDowntime":[false,false,true,true]}},{"ix":60,"action":{"kind":"Deliver","chain":"consumer","numPackets":3},"partialState":{"h":7,"t":42,"consumerPower":[9264,4000,null,null],"outstandingDowntime":[false,false,true,true]}},{"ix":61,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":62,"action":{"kind":"Undelegate","val":1,"amt":1723},"partialState":{"h":10,"t":60,"tokens":[4474,2133,1937,1333],"delegation":[3474,1133,937,333],"delegatorTokens":9999999979568}},{"ix":63,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":64,"action":{"kind":"Undelegate","val":2,"amt":3673},"partialState":{"h":10,"t":60,"tokens":[4474,2133,1937,1333],"delegation":[3474,1133,937,333],"delegatorTokens":9999999979568}},{"ix":65,"action":{"kind":"Delegate","val":0,"amt":3975},"partialState":{"h":10,"t":60,"tokens":[8449,2133,1937,1333],"delegation":[7449,1133,937,333],"delegatorTokens":9999999975593}},{"ix":66,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":67,"action":{"kind":"Deliver","chain":"consumer","numPackets":5},"partialState":{"h":7,"t":42,"consumerPower":[9264,4000,null,null],"outstandingDowntime":[false,false,true,true]}},{"ix":68,"action":{"kind":"Undelegate","val":3,"amt":2381},"partialState":{"h":10,"t":60,"tokens":[8449,2133,1937,1333],"delegation":[7449,1133,937,333],"delegatorTokens":9999999975593}},{"ix":69,"action":{"kind":"Deliver","chain":"consumer","numPackets":1},"partialState":{"h":7,"t":42,"consumerPower":[9264,4000,null,null],"outstandingDowntime":[false,false,true,true]}},{"ix":70,"action":{"kind":"Deliver","chain":"consumer","numPackets":3},"partialState":{"h":7,"t":42,"consumerPower":[9264,4000,null,null],"outstandingDowntime":[false,false,true,true]}},{"ix":71,"action":{"kind":"Deliver","chain":"provider","numPackets":1},"partialState":{"h":10,"t":60,"tokens":[8449,2133,1937,1333],"delegation":[7449,1133,937,333],"delegatorTokens":9999999975593,"jailed":[1000000000000035,null,null,null],"status":["unbonding","bonded","bonded","unbonded"]}},{"ix":72,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":73,"action":{"kind":"Delegate","val":1,"amt":3901},"partialState":{"h":10,"t":60,"tokens":[8449,6034,1937,1333],"delegation":[7449,5034,937,333],"delegatorTokens":9999999971692}},{"ix":74,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":8,"t":48,"consumerPower":[null,2133,3047,null],"outstandingDowntime":[false,false,true,true]}},{"ix":75,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":76,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":9,"t":54,"consumerPower":[null,2133,3047,null],"outstandingDowntime":[false,false,true,true]}},{"ix":77,"action":{"kind":"Delegate","val":1,"amt":1754},"partialState":{"h":10,"t":60,"tokens":[8449,7788,1937,1333],"delegation":[7449,6788,937,333],"delegatorTokens":9999999969938}},{"ix":78,"action":{"kind":"Delegate","val":3,"amt":1382},"partialState":{"h":10,"t":60,"tokens":[8449,7788,1937,2715],"delegation":[7449,6788,937,1715],"delegatorTokens":9999999968556}},{"ix":79,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":11,"t":66,"tokens":[8449,7788,1937,2715],"delegation":[7449,6788,937,1715],"delegatorTokens":9999999968556,"jailed":[1000000000000035,null,null,null],"status":["unbonding","bonded","unbonding","bonded"]}},{"ix":80,"action":{"kind":"Delegate","val":2,"amt":2625},"partialState":{"h":11,"t":66,"tokens":[8449,7788,4562,2715],"delegation":[7449,6788,3562,1715],"delegatorTokens":9999999965931}},{"ix":81,"action":{"kind":"Deliver","chain":"provider","numPackets":4},"partialState":{"h":11,"t":66,"tokens":[8449,7788,4562,2715],"delegation":[7449,6788,3562,1715],"delegatorTokens":9999999965931,"jailed":[1000000000000035,null,null,null],"status":["unbonding","bonded","unbonding","bonded"]}},{"ix":82,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":83,"action":{"kind":"Undelegate","val":1,"amt":3122},"partialState":{"h":11,"t":66,"tokens":[8449,4666,4562,2715],"delegation":[7449,3666,3562,1715],"delegatorTokens":9999999965931}},{"ix":84,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":85,"action":{"kind":"Undelegate","val":0,"amt":1032},"partialState":{"h":11,"t":66,"tokens":[7417,4666,4562,2715],"delegation":[6417,3666,3562,1715],"delegatorTokens":9999999965931}},{"ix":86,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":87,"action":{"kind":"Delegate","val":1,"amt":2629},"partialState":{"h":11,"t":66,"tokens":[7417,7295,4562,2715],"delegation":[6417,6295,3562,1715],"delegatorTokens":9999999963302}},{"ix":88,"action":{"kind":"Deliver","chain":"provider","numPackets":2},"partialState":{"h":11,"t":66,"tokens":[7417,7295,4562,2715],"delegation":[6417,6295,3562,1715],"delegatorTokens":9999999963302,"jailed":[1000000000000035,null,null,null],"status":["unbonding","bonded","unbonding","bonded"]}},{"ix":89,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":10,"t":60,"consumerPower":[null,2133,3047,null],"outstandingDowntime":[false,false,true,true]}},{"ix":90,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":91,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":92,"action":{"kind":"Delegate","val":0,"amt":3413},"partialState":{"h":11,"t":66,"tokens":[10830,7295,4562,2715],"delegation":[9830,6295,3562,1715],"delegatorTokens":9999999959889}},{"ix":93,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":94,"action":{"kind":"Undelegate","val":3,"amt":1945},"partialState":{"h":11,"t":66,"tokens":[10830,7295,4562,2715],"delegation":[9830,6295,3562,1715],"delegatorTokens":9999999959889}},{"ix":95,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":11,"t":66,"consumerPower":[null,2133,3047,null],"outstandingDowntime":[false,false,true,true]}},{"ix":96,"action":{"kind":"Delegate","val":0,"amt":1323},"partialState":{"h":11,"t":66,"tokens":[12153,7295,4562,2715],"delegation":[11153,6295,3562,1715],"delegatorTokens":9999999958566}},{"ix":97,"action":{"kind":"Deliver","chain":"consumer","numPackets":6},"partialState":{"h":11,"t":66,"consumerPower":[null,2133,3047,null],"outstandingDowntime":[false,false,true,true]}},{"ix":98,"action":{"kind":"Delegate","val":2,"amt":2469},"partialState":{"h":11,"t":66,"tokens":[12153,7295,7031,2715],"delegation":[11153,6295,6031,1715],"delegatorTokens":9999999956097}},{"ix":99,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":12,"t":72,"consumerPower":[null,2133,3047,null],"outstandingDowntime":[false,false,true,true]}},{"ix":100,"action":{"kind":"Delegate","val":2,"amt":3122},"partialState":{"h":11,"t":66,"tokens":[12153,7295,10153,2715],"delegation":[11153,6295,9153,1715],"delegatorTokens":9999999952975}},{"ix":101,"action":{"kind":"Delegate","val":2,"amt":4259},"partialState":{"h":11,"t":66,"tokens":[12153,7295,14412,2715],"delegation":[11153,6295,13412,1715],"delegatorTokens":9999999948716}},{"ix":102,"action":{"kind":"Undelegate","val":3,"amt":1436},"partialState":{"h":11,"t":66,"tokens":[12153,7295,14412,1279],"delegation":[11153,6295,13412,279],"delegatorTokens":9999999948716}},{"ix":103,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":104,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":12,"t":72,"tokens":[12153,7295,14412,1279],"delegation":[11153,6295,13412,279],"delegatorTokens":9999999948716,"jailed":[1000000000000035,null,null,null],"status":["unbonding","bonded","bonded","unbonding"]}},{"ix":105,"action":{"kind":"Delegate","val":2,"amt":4919},"partialState":{"h":12,"t":72,"tokens":[12153,7295,19331,1279],"delegation":[11153,6295,18331,279],"delegatorTokens":9999999943797}},{"ix":106,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":13,"t":78,"consumerPower":[null,2133,3047,null],"outstandingDowntime":[false,false,true,true]}},{"ix":107,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":108,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":109,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":110,"action":{"kind":"Delegate","val":2,"amt":3478},"partialState":{"h":12,"t":72,"tokens":[12153,7295,22809,1279],"delegation":[11153,6295,21809,279],"delegatorTokens":9999999940319}},{"ix":111,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":14,"t":84,"consumerPower":[null,2133,3047,null],"outstandingDowntime":[false,false,true,true]}},{"ix":112,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":15,"t":90,"consumerPower":[null,2133,3047,null],"outstandingDowntime":[false,false,true,true]}},{"ix":113,"action":{"kind":"Delegate","val":1,"amt":3450},"partialState":{"h":12,"t":72,"tokens":[12153,10745,22809,1279],"delegation":[11153,9745,21809,279],"delegatorTokens":9999999936869}},{"ix":114,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":115,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":116,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":117,"action":{"kind":"Delegate","val":0,"amt":3273},"partialState":{"h":12,"t":72,"tokens":[15426,10745,22809,1279],"delegation":[14426,9745,21809,279],"delegatorTokens":9999999933596}},{"ix":118,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":119,"action":{"kind":"Delegate","val":2,"amt":4681},"partialState":{"h":12,"t":72,"tokens":[15426,10745,27490,1279],"delegation":[14426,9745,26490,279],"delegatorTokens":9999999928915}},{"ix":120,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":16,"t":96,"consumerPower":[null,2133,3047,null],"outstandingDowntime":[false,false,true,true]}},{"ix":121,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":13,"t":78,"tokens":[15426,10745,27490,1279],"delegation":[14426,9745,26490,279],"delegatorTokens":9999999928915,"jailed":[1000000000000035,null,null,null],"status":["unbonding","bonded","bonded","unbonding"]}},{"ix":122,"action":{"kind":"Undelegate","val":3,"amt":2008},"partialState":{"h":13,"t":78,"tokens":[15426,10745,27490,1279],"delegation":[14426,9745,26490,279],"delegatorTokens":9999999928915}},{"ix":123,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":14,"t":84,"tokens":[15426,10745,27490,1279],"delegation":[14426,9745,26490,279],"delegatorTokens":9999999928915,"jailed":[1000000000000035,null,null,null],"status":["unbonding","bonded","bonded","unbonding"]}},{"ix":124,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":125,"action":{"kind":"Undelegate","val":0,"amt":4572},"partialState":{"h":14,"t":84,"tokens":[10854,10745,27490,1279],"delegation":[9854,9745,26490,279],"delegatorTokens":9999999928915}},{"ix":126,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":127,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":17,"t":102,"consumerPower":[null,2133,3047,null],"outstandingDowntime":[false,false,true,true]}},{"ix":128,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":18,"t":108,"consumerPower":[null,2133,3047,null],"outstandingDowntime":[false,false,true,true]}},{"ix":129,"action":{"kind":"Deliver","chain":"consumer","numPackets":1},"partialState":{"h":18,"t":108,"consumerPower":[null,2133,3047,null],"outstandingDowntime":[false,false,true,true]}},{"ix":130,"action":{"kind":"Delegate","val":2,"amt":1980},"partialState":{"h":14,"t":84,"tokens":[10854,10745,29470,1279],"delegation":[9854,9745,28470,279],"delegatorTokens":9999999926935}},{"ix":131,"action":{"kind":"Delegate","val":2,"amt":2384},"partialState":{"h":14,"t":84,"tokens":[10854,10745,31854,1279],"delegation":[9854,9745,30854,279],"delegatorTokens":9999999924551}},{"ix":132,"action":{"kind":"Undelegate","val":3,"amt":3678},"partialState":{"h":14,"t":84,"tokens":[10854,10745,31854,1279],"delegation":[9854,9745,30854,279],"delegatorTokens":9999999924551}},{"ix":133,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":134,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":15,"t":90,"tokens":[10854,10745,31854,1279],"delegation":[9854,9745,30854,279],"delegatorTokens":9999999924551,"jailed":[1000000000000035,null,null,null],"status":["unbonding","bonded","bonded","unbonding"]}},{"ix":135,"action":{"kind":"Delegate","val":0,"amt":1619},"partialState":{"h":15,"t":90,"tokens":[12473,10745,31854,1279],"delegation":[11473,9745,30854,279],"delegatorTokens":9999999922932}},{"ix":136,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":16,"t":96,"tokens":[12473,10745,31854,1279],"delegation":[11473,9745,30854,279],"delegatorTokens":9999999922932,"jailed":[1000000000000035,null,null,null],"status":["unbonding","bonded","bonded","unbonding"]}},{"ix":137,"action":{"kind":"Deliver","chain":"provider","numPackets":6},"partialState":{"h":16,"t":96,"tokens":[12473,10745,31854,1279],"delegation":[11473,9745,30854,279],"delegatorTokens":9999999922932,"jailed":[1000000000000035,null,null,null],"status":["unbonding","bonded","bonded","unbonding"]}},{"ix":138,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":19,"t":114,"consumerPower":[null,7788,null,2715],"outstandingDowntime":[false,false,true,true]}},{"ix":139,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":17,"t":102,"tokens":[12473,10745,31854,1279],"delegation":[11473,9745,30854,279],"delegatorTokens":9999999927477,"jailed":[1000000000000035,null,null,null],"status":["unbonding","bonded","bonded","unbonding"]}},{"ix":140,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":18,"t":108,"tokens":[12473,10745,31854,1279],"delegation":[11473,9745,30854,279],"delegatorTokens":9999999927477,"jailed":[1000000000000035,null,null,null],"status":["unbonding","bonded","bonded","unbonding"]}},{"ix":141,"action":{"kind":"Undelegate","val":3,"amt":2445},"partialState":{"h":18,"t":108,"tokens":[12473,10745,31854,1279],"delegation":[11473,9745,30854,279],"delegatorTokens":9999999927477}},{"ix":142,"action":{"kind":"Undelegate","val":1,"amt":3796},"partialState":{"h":18,"t":108,"tokens":[12473,6949,31854,1279],"delegation":[11473,5949,30854,279],"delegatorTokens":9999999927477}},{"ix":143,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":20,"t":120,"consumerPower":[null,7788,null,2715],"outstandingDowntime":[false,false,true,true]}},{"ix":144,"action":{"kind":"Undelegate","val":1,"amt":3304},"partialState":{"h":18,"t":108,"tokens":[12473,3645,31854,1279],"delegation":[11473,2645,30854,279],"delegatorTokens":9999999927477}},{"ix":145,"action":{"kind":"Deliver","chain":"provider","numPackets":1},"partialState":{"h":18,"t":108,"tokens":[12473,3645,31854,1279],"delegation":[11473,2645,30854,279],"delegatorTokens":9999999927477,"jailed":[1000000000000035,null,null,null],"status":["unbonding","bonded","bonded","unbonding"]}},{"ix":146,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":147,"action":{"kind":"Delegate","val":2,"amt":4261},"partialState":{"h":18,"t":108,"tokens":[12473,3645,36115,1279],"delegation":[11473,2645,35115,279],"delegatorTokens":9999999923216}},{"ix":148,"action":{"kind":"Undelegate","val":2,"amt":2489},"partialState":{"h":18,"t":108,"tokens":[12473,3645,33626,1279],"delegation":[11473,2645,32626,279],"delegatorTokens":9999999923216}},{"ix":149,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":21,"t":126,"consumerPower":[null,7788,null,2715],"outstandingDowntime":[false,false,true,true]}},{"ix":150,"action":{"kind":"Delegate","val":1,"amt":4959},"partialState":{"h":18,"t":108,"tokens":[12473,8604,33626,1279],"delegation":[11473,7604,32626,279],"delegatorTokens":9999999918257}},{"ix":151,"action":{"kind":"Delegate","val":0,"amt":1780},"partialState":{"h":18,"t":108,"tokens":[14253,8604,33626,1279],"delegation":[13253,7604,32626,279],"delegatorTokens":9999999916477}},{"ix":152,"action":{"kind":"Delegate","val":2,"amt":1702},"partialState":{"h":18,"t":108,"tokens":[14253,8604,35328,1279],"delegation":[13253,7604,34328,279],"delegatorTokens":9999999914775}},{"ix":153,"action":{"kind":"Deliver","chain":"provider","numPackets":2},"partialState":{"h":18,"t":108,"tokens":[14253,8604,35328,1279],"delegation":[13253,7604,34328,279],"delegatorTokens":9999999914775,"jailed":[1000000000000035,null,null,null],"status":["unbonding","bonded","bonded","unbonding"]}},{"ix":154,"action":{"kind":"Deliver","chain":"provider","numPackets":5},"partialState":{"h":18,"t":108,"tokens":[14253,8604,35328,1279],"delegation":[13253,7604,34328,279],"delegatorTokens":9999999914775,"jailed":[1000000000000035,null,null,null],"status":["unbonding","bonded","bonded","unbonding"]}},{"ix":155,"action":{"kind":"Deliver","chain":"provider","numPackets":2},"partialState":{"h":18,"t":108,"tokens":[14253,8604,35328,1279],"delegation":[13253,7604,34328,279],"delegatorTokens":9999999914775,"jailed":[1000000000000035,null,null,null],"status":["unbonding","bonded","bonded","unbonding"]}},{"ix":156,"action":{"kind":"Undelegate","val":2,"amt":4759},"partialState":{"h":18,"t":108,"tokens":[14253,8604,30569,1279],"delegation":[13253,7604,29569,279],"delegatorTokens":9999999914775}},{"ix":157,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":19,"t":114,"tokens":[14253,8604,30569,1279],"delegation":[13253,7604,29569,279],"delegatorTokens":9999999920319,"jailed":[1000000000000035,null,null,null],"status":["unbonding","bonded","bonded","unbonding"]}},{"ix":158,"action":{"kind":"Undelegate","val":2,"amt":4298},"partialState":{"h":19,"t":114,"tokens":[14253,8604,26271,1279],"delegation":[13253,7604,25271,279],"delegatorTokens":9999999920319}},{"ix":159,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":160,"action":{"kind":"Undelegate","val":0,"amt":3135},"partialState":{"h":19,"t":114,"tokens":[11118,8604,26271,1279],"delegation":[10118,7604,25271,279],"delegatorTokens":9999999920319}},{"ix":161,"action":{"kind":"Delegate","val":2,"amt":4257},"partialState":{"h":19,"t":114,"tokens":[11118,8604,30528,1279],"delegation":[10118,7604,29528,279],"delegatorTokens":9999999916062}},{"ix":162,"action":{"kind":"Deliver","chain":"provider","numPackets":5},"partialState":{"h":19,"t":114,"tokens":[11118,8604,30528,1279],"delegation":[10118,7604,29528,279],"delegatorTokens":9999999916062,"jailed":[1000000000000035,null,null,null],"status":["unbonding","bonded","bonded","unbonding"]}},{"ix":163,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":20,"t":120,"tokens":[11118,8604,30528,1279],"delegation":[10118,7604,29528,279],"delegatorTokens":9999999921307,"jailed":[1000000000000035,null,null,null],"status":["unbonded","bonded","bonded","unbonding"]}},{"ix":164,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":165,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":166,"action":{"kind":"Undelegate","val":1,"amt":1766},"partialState":{"h":20,"t":120,"tokens":[11118,6838,30528,1279],"delegation":[10118,5838,29528,279],"delegatorTokens":9999999921307}},{"ix":167,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":168,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":169,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":22,"t":132,"consumerPower":[null,7788,null,2715],"outstandingDowntime":[false,false,true,true]}},{"ix":170,"action":{"kind":"Undelegate","val":2,"amt":2040},"partialState":{"h":20,"t":120,"tokens":[11118,6838,28488,1279],"delegation":[10118,5838,27488,279],"delegatorTokens":9999999921307}},{"ix":171,"action":{"kind":"Undelegate","val":0,"amt":4850},"partialState":{"h":20,"t":120,"tokens":[6268,6838,28488,1279],"delegation":[5268,5838,27488,279],"delegatorTokens":9999999921307}},{"ix":172,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":21,"t":126,"tokens":[6268,6838,28488,1279],"delegation":[5268,5838,27488,279],"delegatorTokens":9999999929418,"jailed":[1000000000000035,null,null,null],"status":["unbonded","bonded","bonded","unbonding"]}},{"ix":173,"action":{"kind":"Undelegate","val":0,"amt":3139},"partialState":{"h":21,"t":126,"tokens":[3129,6838,28488,1279],"delegation":[2129,5838,27488,279],"delegatorTokens":9999999929418}},{"ix":174,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":175,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":23,"t":138,"consumerPower":[null,7788,null,2715],"outstandingDowntime":[false,false,true,true]}},{"ix":176,"action":{"kind":"Deliver","chain":"provider","numPackets":1},"partialState":{"h":21,"t":126,"tokens":[3129,6838,28488,1279],"delegation":[2129,5838,27488,279],"delegatorTokens":9999999929418,"jailed":[1000000000000035,null,null,null],"status":["unbonded","bonded","bonded","unbonding"]}},{"ix":177,"action":{"kind":"Undelegate","val":1,"amt":2751},"partialState":{"h":21,"t":126,"tokens":[3129,4087,28488,1279],"delegation":[2129,3087,27488,279],"delegatorTokens":9999999929418}},{"ix":178,"action":{"kind":"Deliver","chain":"consumer","numPackets":5},"partialState":{"h":23,"t":138,"consumerPower":[null,7788,null,2715],"outstandingDowntime":[false,false,true,true]}},{"ix":179,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":180,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":181,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":24,"t":144,"consumerPower":[null,8604,30528,null],"outstandingDowntime":[false,false,true,true]}},{"ix":182,"action":{"kind":"Undelegate","val":2,"amt":3343},"partialState":{"h":21,"t":126,"tokens":[3129,4087,25145,1279],"delegation":[2129,3087,24145,279],"delegatorTokens":9999999929418}},{"ix":183,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":184,"action":{"kind":"Deliver","chain":"provider","numPackets":6},"partialState":{"h":21,"t":126,"tokens":[3129,4087,25145,1279],"delegation":[2129,3087,24145,279],"delegatorTokens":9999999929418,"jailed":[1000000000000035,null,null,null],"status":["unbonded","bonded","bonded","unbonding"]}},{"ix":185,"action":{"kind":"Undelegate","val":3,"amt":4330},"partialState":{"h":21,"t":126,"tokens":[3129,4087,25145,1279],"delegation":[2129,3087,24145,279],"delegatorTokens":9999999929418}},{"ix":186,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":187,"action":{"kind":"Deliver","chain":"provider","numPackets":6},"partialState":{"h":21,"t":126,"tokens":[3129,4087,25145,1279],"delegation":[2129,3087,24145,279],"delegatorTokens":9999999929418,"jailed":[1000000000000035,null,null,null],"status":["unbonded","bonded","bonded","unbonding"]}},{"ix":188,"action":{"kind":"Deliver","chain":"consumer","numPackets":5},"partialState":{"h":24,"t":144,"consumerPower":[null,8604,30528,null],"outstandingDowntime":[false,false,true,true]}},{"ix":189,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":190,"action":{"kind":"Delegate","val":0,"amt":4437},"partialState":{"h":21,"t":126,"tokens":[7566,4087,25145,1279],"delegation":[6566,3087,24145,279],"delegatorTokens":9999999924981}},{"ix":191,"action":{"kind":"Delegate","val":0,"amt":4388},"partialState":{"h":21,"t":126,"tokens":[11954,4087,25145,1279],"delegation":[10954,3087,24145,279],"delegatorTokens":9999999920593}},{"ix":192,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":22,"t":132,"tokens":[11954,4087,25145,1279],"delegation":[10954,3087,24145,279],"delegatorTokens":9999999920593,"jailed":[1000000000000035,null,null,null],"status":["unbonded","bonded","bonded","unbonding"]}},{"ix":193,"action":{"kind":"Delegate","val":3,"amt":4050},"partialState":{"h":22,"t":132,"tokens":[11954,4087,25145,5329],"delegation":[10954,3087,24145,4329],"delegatorTokens":9999999916543}},{"ix":194,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":25,"t":150,"consumerPower":[null,8604,30528,null],"outstandingDowntime":[false,false,true,true]}},{"ix":195,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":196,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":197,"action":{"kind":"Deliver","chain":"provider","numPackets":4},"partialState":{"h":22,"t":132,"tokens":[11954,4087,25145,5329],"delegation":[10954,3087,24145,4329],"delegatorTokens":9999999916543,"jailed":[1000000000000035,null,null,null],"status":["unbonded","bonded","bonded","unbonding"]}},{"ix":198,"action":{"kind":"Delegate","val":0,"amt":4302},"partialState":{"h":22,"t":132,"tokens":[16256,4087,25145,5329],"delegation":[15256,3087,24145,4329],"delegatorTokens":9999999912241}},{"ix":199,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}}],"events":["send_downtime_slash_request","send_downtime_slash_request","send_vsc_without_downtime_ack","insufficient_shares","insufficient_shares","insufficient_shares","send_downtime_slash_request","insufficient_shares","send_vsc_without_downtime_ack","insufficient_shares","consumer_update_val","send_vsc_without_downtime_ack","insufficient_shares","receive_slash_request_unbonded","receive_slash_request_unbonded","receive_downtime_slash_request","jail","send_vsc_with_downtime_ack","more_than_one_third_val_power_change","send_vsc_without_downtime_ack","insufficient_shares","send_vsc_without_downtime_ack","receive_downtime_slash_ack","insufficient_shares","insufficient_shares","insufficient_shares","consumer_del_val","consumer_update_val","consumer_add_val","send_vsc_without_downtime_ack","insufficient_shares","more_than_one_third_val_power_change","rebond_unval","send_vsc_without_downtime_ack","consumer_send_maturation","send_vsc_without_downtime_ack","insufficient_shares","some_undels_expired_but_not_completed","consumer_send_maturation","consumer_send_maturation","consumer_send_maturation","consumer_send_maturation","consumer_send_maturation","insufficient_shares","send_vsc_without_downtime_ack","consumer_update_val","consumer_del_val","consumer_add_val","complete_undel_immediate","complete_undel_immediate","set_undel_hold_false","set_undel_hold_false","set_undel_hold_false","set_undel_hold_false","set_unval_hold_false","set_undel_hold_false","set_undel_hold_false","insufficient_shares","complete_undel_in_endblock","send_vsc_without_downtime_ack","complete_unval_in_endblock","complete_undel_in_endblock","send_vsc_without_downtime_ack","complete_undel_in_endblock","send_vsc_without_downtime_ack","consumer_update_val","consumer_add_val","consumer_del_val","insufficient_shares","send_vsc_without_downtime_ack"]},{"meta":{"commit":"7ffd0c04e4205cbc9caf212abfe6c59ee43153bf"},"constants":{"P":"provider","C":"consumer","UNBONDING_SECONDS_P":70,"UNBONDING_SECONDS_C":50,"TRUSTING_SECONDS":49,"NUM_VALIDATORS":4,"MAX_VALIDATORS":2,"SLASH_DOUBLESIGN":0,"SLASH_DOWNTIME":0,"JAIL_SECONDS":999999999999999,"BLOCK_SECONDS":6,"INITIAL_DELEGATOR_TOKENS":10000000000000,"DELEGATE_AMT_MIN":1000,"DELEGATE_AMT_MAX":5000,"UNDELEGATE_AMT_MIN":1000,"UNDELEGATE_AMT_MAX":5000,"ISDOWNTIME_PROBABILITY":0.5,"MAX_NUM_PACKETS_FOR_DELIVER":6},"actions":[{"ix":0,"action":{"kind":"Deliver","chain":"consumer","numPackets":2},"partialState":{"h":1,"t":6,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":1,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":2,"action":{"kind":"ConsumerSlash","val":2,"infractionHeight":0,"isDowntime":true},"partialState":{"h":1,"t":6,"outstandingDowntime":[false,false,true,false]}},{"ix":3,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":2,"t":12,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,false,true,false]}},{"ix":4,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":2,"t":12,"tokens":[5000,4000,3000,2000],"delegation":[4000,3000,2000,1000],"delegatorTokens":10000000000000,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":5,"action":{"kind":"Undelegate","val":1,"amt":4006},"partialState":{"h":2,"t":12,"tokens":[5000,4000,3000,2000],"delegation":[4000,3000,2000,1000],"delegatorTokens":10000000000000}},{"ix":6,"action":{"kind":"Delegate","val":1,"amt":1236},"partialState":{"h":2,"t":12,"tokens":[5000,5236,3000,2000],"delegation":[4000,4236,2000,1000],"delegatorTokens":9999999998764}},{"ix":7,"action":{"kind":"ConsumerSlash","val":0,"infractionHeight":0,"isDowntime":true},"partialState":{"h":2,"t":12,"outstandingDowntime":[true,false,true,false]}},{"ix":8,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":9,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":3,"t":18,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[true,false,true,false]}},{"ix":10,"action":{"kind":"Deliver","chain":"provider","numPackets":2},"partialState":{"h":2,"t":12,"tokens":[5000,5236,3000,2000],"delegation":[4000,4236,2000,1000],"delegatorTokens":9999999998764,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":11,"action":{"kind":"Undelegate","val":3,"amt":3181},"partialState":{"h":2,"t":12,"tokens":[5000,5236,3000,2000],"delegation":[4000,4236,2000,1000],"delegatorTokens":9999999998764}},{"ix":12,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":3,"t":18,"tokens":[5000,5236,3000,2000],"delegation":[4000,4236,2000,1000],"delegatorTokens":9999999998764,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":13,"action":{"kind":"Delegate","val":2,"amt":2945},"partialState":{"h":3,"t":18,"tokens":[5000,5236,5945,2000],"delegation":[4000,4236,4945,1000],"delegatorTokens":9999999995819}},{"ix":14,"action":{"kind":"ConsumerSlash","val":3,"infractionHeight":1,"isDowntime":true},"partialState":{"h":3,"t":18,"outstandingDowntime":[true,false,true,true]}},{"ix":15,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":4,"t":24,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[true,false,true,true]}},{"ix":16,"action":{"kind":"Deliver","chain":"consumer","numPackets":5},"partialState":{"h":4,"t":24,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[true,false,true,true]}},{"ix":17,"action":{"kind":"Deliver","chain":"consumer","numPackets":6},"partialState":{"h":4,"t":24,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[true,false,true,true]}},{"ix":18,"action":{"kind":"Deliver","chain":"consumer","numPackets":4},"partialState":{"h":4,"t":24,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[true,false,true,true]}},{"ix":19,"action":{"kind":"Delegate","val":1,"amt":3185},"partialState":{"h":3,"t":18,"tokens":[5000,8421,5945,2000],"delegation":[4000,7421,4945,1000],"delegatorTokens":9999999992634}},{"ix":20,"action":{"kind":"Deliver","chain":"consumer","numPackets":2},"partialState":{"h":4,"t":24,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[true,false,true,true]}},{"ix":21,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":22,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":5,"t":30,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[true,false,true,true]}},{"ix":23,"action":{"kind":"Deliver","chain":"provider","numPackets":6},"partialState":{"h":3,"t":18,"tokens":[5000,8421,5945,2000],"delegation":[4000,7421,4945,1000],"delegatorTokens":9999999992634,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":24,"action":{"kind":"Undelegate","val":1,"amt":1438},"partialState":{"h":3,"t":18,"tokens":[5000,6983,5945,2000],"delegation":[4000,5983,4945,1000],"delegatorTokens":9999999992634}},{"ix":25,"action":{"kind":"Delegate","val":1,"amt":3078},"partialState":{"h":3,"t":18,"tokens":[5000,10061,5945,2000],"delegation":[4000,9061,4945,1000],"delegatorTokens":9999999989556}},{"ix":26,"action":{"kind":"Undelegate","val":3,"amt":2972},"partialState":{"h":3,"t":18,"tokens":[5000,10061,5945,2000],"delegation":[4000,9061,4945,1000],"delegatorTokens":9999999989556}},{"ix":27,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":28,"action":{"kind":"Delegate","val":3,"amt":3069},"partialState":{"h":3,"t":18,"tokens":[5000,10061,5945,5069],"delegation":[4000,9061,4945,4069],"delegatorTokens":9999999986487}},{"ix":29,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":30,"action":{"kind":"Undelegate","val":0,"amt":4443},"partialState":{"h":3,"t":18,"tokens":[5000,10061,5945,5069],"delegation":[4000,9061,4945,4069],"delegatorTokens":9999999986487}},{"ix":31,"action":{"kind":"Delegate","val":1,"amt":1489},"partialState":{"h":3,"t":18,"tokens":[5000,11550,5945,5069],"delegation":[4000,10550,4945,4069],"delegatorTokens":9999999984998}},{"ix":32,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":4,"t":24,"tokens":[5000,11550,5945,5069],"delegation":[4000,10550,4945,4069],"delegatorTokens":9999999984998,"jailed":[1000000000000017,null,null,null],"status":["unbonding","bonded","bonded","unbonded"]}},{"ix":33,"action":{"kind":"Undelegate","val":0,"amt":2109},"partialState":{"h":4,"t":24,"tokens":[2891,11550,5945,5069],"delegation":[1891,10550,4945,4069],"delegatorTokens":9999999984998}},{"ix":34,"action":{"kind":"Undelegate","val":3,"amt":1706},"partialState":{"h":4,"t":24,"tokens":[2891,11550,5945,3363],"delegation":[1891,10550,4945,2363],"delegatorTokens":9999999984998}},{"ix":35,"action":{"kind":"Undelegate","val":3,"amt":2229},"partialState":{"h":4,"t":24,"tokens":[2891,11550,5945,1134],"delegation":[1891,10550,4945,134],"delegatorTokens":9999999984998}},{"ix":36,"action":{"kind":"Undelegate","val":0,"amt":2677},"partialState":{"h":4,"t":24,"tokens":[2891,11550,5945,1134],"delegation":[1891,10550,4945,134],"delegatorTokens":9999999984998}},{"ix":37,"action":{"kind":"Undelegate","val":1,"amt":1928},"partialState":{"h":4,"t":24,"tokens":[2891,9622,5945,1134],"delegation":[1891,8622,4945,134],"delegatorTokens":9999999984998}},{"ix":38,"action":{"kind":"Undelegate","val":1,"amt":1358},"partialState":{"h":4,"t":24,"tokens":[2891,8264,5945,1134],"delegation":[1891,7264,4945,134],"delegatorTokens":9999999984998}},{"ix":39,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":40,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":41,"action":{"kind":"Delegate","val":1,"amt":2112},"partialState":{"h":4,"t":24,"tokens":[2891,10376,5945,1134],"delegation":[1891,9376,4945,134],"delegatorTokens":9999999982886}},{"ix":42,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":43,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":6,"t":36,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[true,false,true,true]}},{"ix":44,"action":{"kind":"Deliver","chain":"consumer","numPackets":4},"partialState":{"h":6,"t":36,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[true,false,true,true]}},{"ix":45,"action":{"kind":"Deliver","chain":"consumer","numPackets":2},"partialState":{"h":6,"t":36,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[true,false,true,true]}},{"ix":46,"action":{"kind":"Delegate","val":0,"amt":1477},"partialState":{"h":4,"t":24,"tokens":[4368,10376,5945,1134],"delegation":[3368,9376,4945,134],"delegatorTokens":9999999981409}},{"ix":47,"action":{"kind":"Delegate","val":2,"amt":1611},"partialState":{"h":4,"t":24,"tokens":[4368,10376,7556,1134],"delegation":[3368,9376,6556,134],"delegatorTokens":9999999979798}},{"ix":48,"action":{"kind":"Delegate","val":0,"amt":1009},"partialState":{"h":4,"t":24,"tokens":[5377,10376,7556,1134],"delegation":[4377,9376,6556,134],"delegatorTokens":9999999978789}},{"ix":49,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":5,"t":30,"tokens":[5377,10376,7556,1134],"delegation":[4377,9376,6556,134],"delegatorTokens":9999999978789,"jailed":[1000000000000017,null,null,null],"status":["unbonding","bonded","bonded","unbonded"]}},{"ix":50,"action":{"kind":"Undelegate","val":0,"amt":3335},"partialState":{"h":5,"t":30,"tokens":[2042,10376,7556,1134],"delegation":[1042,9376,6556,134],"delegatorTokens":9999999978789}},{"ix":51,"action":{"kind":"Deliver","chain":"provider","numPackets":4},"partialState":{"h":5,"t":30,"tokens":[2042,10376,7556,1134],"delegation":[1042,9376,6556,134],"delegatorTokens":9999999978789,"jailed":[1000000000000017,null,null,null],"status":["unbonding","bonded","bonded","unbonded"]}},{"ix":52,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":53,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":54,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":55,"action":{"kind":"Delegate","val":3,"amt":2283},"partialState":{"h":5,"t":30,"tokens":[2042,10376,7556,3417],"delegation":[1042,9376,6556,2417],"delegatorTokens":9999999976506}},{"ix":56,"action":{"kind":"Delegate","val":2,"amt":4899},"partialState":{"h":5,"t":30,"tokens":[2042,10376,12455,3417],"delegation":[1042,9376,11455,2417],"delegatorTokens":9999999971607}},{"ix":57,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":6,"t":36,"tokens":[2042,10376,12455,3417],"delegation":[1042,9376,11455,2417],"delegatorTokens":9999999971607,"jailed":[1000000000000017,null,null,null],"status":["unbonding","bonded","bonded","unbonded"]}},{"ix":58,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":7,"t":42,"consumerPower":[5000,5236,null,null],"outstandingDowntime":[true,false,true,true]}},{"ix":59,"action":{"kind":"Undelegate","val":2,"amt":4569},"partialState":{"h":6,"t":36,"tokens":[2042,10376,7886,3417],"delegation":[1042,9376,6886,2417],"delegatorTokens":9999999971607}},{"ix":60,"action":{"kind":"Undelegate","val":2,"amt":1901},"partialState":{"h":6,"t":36,"tokens":[2042,10376,5985,3417],"delegation":[1042,9376,4985,2417],"delegatorTokens":9999999971607}},{"ix":61,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":8,"t":48,"consumerPower":[5000,5236,null,null],"outstandingDowntime":[true,false,true,true]}},{"ix":62,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":9,"t":54,"consumerPower":[5000,5236,null,null],"outstandingDowntime":[true,false,true,true]}},{"ix":63,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":64,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":7,"t":42,"tokens":[2042,10376,5985,3417],"delegation":[1042,9376,4985,2417],"delegatorTokens":9999999971607,"jailed":[1000000000000017,null,null,null],"status":["unbonding","bonded","bonded","unbonded"]}},{"ix":65,"action":{"kind":"Deliver","chain":"consumer","numPackets":4},"partialState":{"h":9,"t":54,"consumerPower":[5000,5236,null,null],"outstandingDowntime":[false,false,true,true]}},{"ix":66,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":67,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":10,"t":60,"consumerPower":[null,10376,12455,null],"outstandingDowntime":[false,false,true,true]}},{"ix":68,"action":{"kind":"Deliver","chain":"provider","numPackets":2},"partialState":{"h":7,"t":42,"tokens":[2042,10376,5985,3417],"delegation":[1042,9376,4985,2417],"delegatorTokens":9999999971607,"jailed":[1000000000000017,null,null,null],"status":["unbonding","bonded","bonded","unbonded"]}},{"ix":69,"action":{"kind":"Delegate","val":1,"amt":2403},"partialState":{"h":7,"t":42,"tokens":[2042,12779,5985,3417],"delegation":[1042,11779,4985,2417],"delegatorTokens":9999999969204}},{"ix":70,"action":{"kind":"Deliver","chain":"provider","numPackets":1},"partialState":{"h":7,"t":42,"tokens":[2042,12779,5985,3417],"delegation":[1042,11779,4985,2417],"delegatorTokens":9999999969204,"jailed":[1000000000000017,null,null,null],"status":["unbonding","bonded","bonded","unbonded"]}},{"ix":71,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":11,"t":66,"consumerPower":[null,10376,12455,null],"outstandingDowntime":[false,false,true,true]}},{"ix":72,"action":{"kind":"Delegate","val":2,"amt":3278},"partialState":{"h":7,"t":42,"tokens":[2042,12779,9263,3417],"delegation":[1042,11779,8263,2417],"delegatorTokens":9999999965926}},{"ix":73,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":8,"t":48,"tokens":[2042,12779,9263,3417],"delegation":[1042,11779,8263,2417],"delegatorTokens":9999999965926,"jailed":[1000000000000017,null,null,null],"status":["unbonding","bonded","bonded","unbonded"]}},{"ix":74,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":9,"t":54,"tokens":[2042,12779,9263,3417],"delegation":[1042,11779,8263,2417],"delegatorTokens":9999999965926,"jailed":[1000000000000017,null,null,null],"status":["unbonding","bonded","bonded","unbonded"]}},{"ix":75,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":10,"t":60,"tokens":[2042,12779,9263,3417],"delegation":[1042,11779,8263,2417],"delegatorTokens":9999999965926,"jailed":[1000000000000017,null,null,null],"status":["unbonding","bonded","bonded","unbonded"]}},{"ix":76,"action":{"kind":"Undelegate","val":3,"amt":3074},"partialState":{"h":10,"t":60,"tokens":[2042,12779,9263,3417],"delegation":[1042,11779,8263,2417],"delegatorTokens":9999999965926}},{"ix":77,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":12,"t":72,"consumerPower":[null,10376,12455,null],"outstandingDowntime":[false,false,true,true]}},{"ix":78,"action":{"kind":"Delegate","val":3,"amt":4757},"partialState":{"h":10,"t":60,"tokens":[2042,12779,9263,8174],"delegation":[1042,11779,8263,7174],"delegatorTokens":9999999961169}},{"ix":79,"action":{"kind":"Delegate","val":2,"amt":4890},"partialState":{"h":10,"t":60,"tokens":[2042,12779,14153,8174],"delegation":[1042,11779,13153,7174],"delegatorTokens":9999999956279}},{"ix":80,"action":{"kind":"Deliver","chain":"provider","numPackets":1},"partialState":{"h":10,"t":60,"tokens":[2042,12779,14153,8174],"delegation":[1042,11779,13153,7174],"delegatorTokens":9999999956279,"jailed":[1000000000000017,null,null,null],"status":["unbonding","bonded","bonded","unbonded"]}},{"ix":81,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":13,"t":78,"consumerPower":[null,10376,12455,null],"outstandingDowntime":[false,false,true,true]}},{"ix":82,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":14,"t":84,"consumerPower":[null,10376,12455,null],"outstandingDowntime":[false,false,true,true]}},{"ix":83,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":84,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":85,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":86,"action":{"kind":"Delegate","val":3,"amt":4494},"partialState":{"h":10,"t":60,"tokens":[2042,12779,14153,12668],"delegation":[1042,11779,13153,11668],"delegatorTokens":9999999951785}},{"ix":87,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":88,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":89,"action":{"kind":"Undelegate","val":0,"amt":2645},"partialState":{"h":10,"t":60,"tokens":[2042,12779,14153,12668],"delegation":[1042,11779,13153,11668],"delegatorTokens":9999999951785}},{"ix":90,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":15,"t":90,"consumerPower":[null,10376,12455,null],"outstandingDowntime":[false,false,true,true]}},{"ix":91,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":92,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":16,"t":96,"consumerPower":[null,10376,12455,null],"outstandingDowntime":[false,false,true,true]}},{"ix":93,"action":{"kind":"Deliver","chain":"consumer","numPackets":1},"partialState":{"h":16,"t":96,"consumerPower":[null,10376,12455,null],"outstandingDowntime":[false,false,true,true]}},{"ix":94,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":11,"t":66,"tokens":[2042,12779,14153,12668],"delegation":[1042,11779,13153,11668],"delegatorTokens":9999999951785,"jailed":[1000000000000017,null,null,null],"status":["unbonding","bonded","bonded","unbonded"]}},{"ix":95,"action":{"kind":"Undelegate","val":2,"amt":4122},"partialState":{"h":11,"t":66,"tokens":[2042,12779,10031,12668],"delegation":[1042,11779,9031,11668],"delegatorTokens":9999999951785}},{"ix":96,"action":{"kind":"Delegate","val":1,"amt":3217},"partialState":{"h":11,"t":66,"tokens":[2042,15996,10031,12668],"delegation":[1042,14996,9031,11668],"delegatorTokens":9999999948568}},{"ix":97,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":98,"action":{"kind":"Undelegate","val":2,"amt":2893},"partialState":{"h":11,"t":66,"tokens":[2042,15996,7138,12668],"delegation":[1042,14996,6138,11668],"delegatorTokens":9999999948568}},{"ix":99,"action":{"kind":"Undelegate","val":1,"amt":3596},"partialState":{"h":11,"t":66,"tokens":[2042,12400,7138,12668],"delegation":[1042,11400,6138,11668],"delegatorTokens":9999999948568}},{"ix":100,"action":{"kind":"Undelegate","val":3,"amt":1560},"partialState":{"h":11,"t":66,"tokens":[2042,12400,7138,11108],"delegation":[1042,11400,6138,10108],"delegatorTokens":9999999948568}},{"ix":101,"action":{"kind":"Delegate","val":3,"amt":4627},"partialState":{"h":11,"t":66,"tokens":[2042,12400,7138,15735],"delegation":[1042,11400,6138,14735],"delegatorTokens":9999999943941}},{"ix":102,"action":{"kind":"Delegate","val":0,"amt":1387},"partialState":{"h":11,"t":66,"tokens":[3429,12400,7138,15735],"delegation":[2429,11400,6138,14735],"delegatorTokens":9999999942554}},{"ix":103,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":104,"action":{"kind":"Delegate","val":3,"amt":2835},"partialState":{"h":11,"t":66,"tokens":[3429,12400,7138,18570],"delegation":[2429,11400,6138,17570],"delegatorTokens":9999999939719}},{"ix":105,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":12,"t":72,"tokens":[3429,12400,7138,18570],"delegation":[2429,11400,6138,17570],"delegatorTokens":9999999939719,"jailed":[1000000000000017,null,null,null],"status":["unbonding","bonded","unbonding","bonded"]}},{"ix":106,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":107,"action":{"kind":"Delegate","val":3,"amt":2484},"partialState":{"h":12,"t":72,"tokens":[3429,12400,7138,21054],"delegation":[2429,11400,6138,20054],"delegatorTokens":9999999937235}},{"ix":108,"action":{"kind":"Delegate","val":1,"amt":1395},"partialState":{"h":12,"t":72,"tokens":[3429,13795,7138,21054],"delegation":[2429,12795,6138,20054],"delegatorTokens":9999999935840}},{"ix":109,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":110,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":17,"t":102,"consumerPower":[null,10376,5985,null],"outstandingDowntime":[false,false,true,true]}},{"ix":111,"action":{"kind":"Deliver","chain":"provider","numPackets":2},"partialState":{"h":12,"t":72,"tokens":[3429,13795,7138,21054],"delegation":[2429,12795,6138,20054],"delegatorTokens":9999999935840,"jailed":[1000000000000017,null,null,null],"status":["unbonding","bonded","unbonding","bonded"]}},{"ix":112,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":18,"t":108,"consumerPower":[null,10376,5985,null],"outstandingDowntime":[false,false,true,true]}},{"ix":113,"action":{"kind":"Undelegate","val":2,"amt":4323},"partialState":{"h":12,"t":72,"tokens":[3429,13795,2815,21054],"delegation":[2429,12795,1815,20054],"delegatorTokens":9999999935840}},{"ix":114,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":115,"action":{"kind":"Deliver","chain":"consumer","numPackets":5},"partialState":{"h":18,"t":108,"consumerPower":[null,10376,5985,null],"outstandingDowntime":[false,false,true,true]}},{"ix":116,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":19,"t":114,"consumerPower":[null,12779,14153,null],"outstandingDowntime":[false,false,true,true]}},{"ix":117,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":13,"t":78,"tokens":[3429,13795,2815,21054],"delegation":[2429,12795,1815,20054],"delegatorTokens":9999999935840,"jailed":[1000000000000017,null,null,null],"status":["unbonding","bonded","unbonding","bonded"]}},{"ix":118,"action":{"kind":"Undelegate","val":2,"amt":3795},"partialState":{"h":13,"t":78,"tokens":[3429,13795,2815,21054],"delegation":[2429,12795,1815,20054],"delegatorTokens":9999999935840}},{"ix":119,"action":{"kind":"Delegate","val":3,"amt":1927},"partialState":{"h":13,"t":78,"tokens":[3429,13795,2815,22981],"delegation":[2429,12795,1815,21981],"delegatorTokens":9999999933913}},{"ix":120,"action":{"kind":"Delegate","val":0,"amt":3732},"partialState":{"h":13,"t":78,"tokens":[7161,13795,2815,22981],"delegation":[6161,12795,1815,21981],"delegatorTokens":9999999930181}},{"ix":121,"action":{"kind":"Delegate","val":0,"amt":1842},"partialState":{"h":13,"t":78,"tokens":[9003,13795,2815,22981],"delegation":[8003,12795,1815,21981],"delegatorTokens":9999999928339}},{"ix":122,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":123,"action":{"kind":"Undelegate","val":1,"amt":4145},"partialState":{"h":13,"t":78,"tokens":[9003,9650,2815,22981],"delegation":[8003,8650,1815,21981],"delegatorTokens":9999999928339}},{"ix":124,"action":{"kind":"Deliver","chain":"consumer","numPackets":1},"partialState":{"h":19,"t":114,"consumerPower":[null,12779,14153,null],"outstandingDowntime":[false,false,true,true]}},{"ix":125,"action":{"kind":"Deliver","chain":"provider","numPackets":6},"partialState":{"h":13,"t":78,"tokens":[9003,9650,2815,22981],"delegation":[8003,8650,1815,21981],"delegatorTokens":9999999928339,"jailed":[1000000000000017,null,null,null],"status":["unbonding","bonded","unbonding","bonded"]}},{"ix":126,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":14,"t":84,"tokens":[9003,9650,2815,22981],"delegation":[8003,8650,1815,21981],"delegatorTokens":9999999928339,"jailed":[1000000000000017,null,null,null],"status":["unbonding","bonded","unbonding","bonded"]}},{"ix":127,"action":{"kind":"Deliver","chain":"consumer","numPackets":6},"partialState":{"h":19,"t":114,"consumerPower":[null,12779,14153,null],"outstandingDowntime":[false,false,true,true]}},{"ix":128,"action":{"kind":"Delegate","val":3,"amt":2166},"partialState":{"h":14,"t":84,"tokens":[9003,9650,2815,25147],"delegation":[8003,8650,1815,24147],"delegatorTokens":9999999926173}},{"ix":129,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":130,"action":{"kind":"Undelegate","val":1,"amt":2912},"partialState":{"h":14,"t":84,"tokens":[9003,6738,2815,25147],"delegation":[8003,5738,1815,24147],"delegatorTokens":9999999926173}},{"ix":131,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":132,"action":{"kind":"Delegate","val":3,"amt":4425},"partialState":{"h":14,"t":84,"tokens":[9003,6738,2815,29572],"delegation":[8003,5738,1815,28572],"delegatorTokens":9999999921748}},{"ix":133,"action":{"kind":"Deliver","chain":"provider","numPackets":1},"partialState":{"h":14,"t":84,"tokens":[9003,6738,2815,29572],"delegation":[8003,5738,1815,28572],"delegatorTokens":9999999921748,"jailed":[1000000000000017,null,null,null],"status":["unbonding","bonded","unbonding","bonded"]}},{"ix":134,"action":{"kind":"Delegate","val":3,"amt":2813},"partialState":{"h":14,"t":84,"tokens":[9003,6738,2815,32385],"delegation":[8003,5738,1815,31385],"delegatorTokens":9999999918935}},{"ix":135,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":20,"t":120,"consumerPower":[null,13795,null,21054],"outstandingDowntime":[false,false,true,true]}},{"ix":136,"action":{"kind":"Delegate","val":1,"amt":3911},"partialState":{"h":14,"t":84,"tokens":[9003,10649,2815,32385],"delegation":[8003,9649,1815,31385],"delegatorTokens":9999999915024}},{"ix":137,"action":{"kind":"Delegate","val":0,"amt":2584},"partialState":{"h":14,"t":84,"tokens":[11587,10649,2815,32385],"delegation":[10587,9649,1815,31385],"delegatorTokens":9999999912440}},{"ix":138,"action":{"kind":"Undelegate","val":3,"amt":4003},"partialState":{"h":14,"t":84,"tokens":[11587,10649,2815,28382],"delegation":[10587,9649,1815,27382],"delegatorTokens":9999999912440}},{"ix":139,"action":{"kind":"Undelegate","val":3,"amt":1658},"partialState":{"h":14,"t":84,"tokens":[11587,10649,2815,26724],"delegation":[10587,9649,1815,25724],"delegatorTokens":9999999912440}},{"ix":140,"action":{"kind":"Deliver","chain":"provider","numPackets":1},"partialState":{"h":14,"t":84,"tokens":[11587,10649,2815,26724],"delegation":[10587,9649,1815,25724],"delegatorTokens":9999999912440,"jailed":[1000000000000017,null,null,null],"status":["unbonding","bonded","unbonding","bonded"]}},{"ix":141,"action":{"kind":"Deliver","chain":"consumer","numPackets":3},"partialState":{"h":20,"t":120,"consumerPower":[null,13795,null,21054],"outstandingDowntime":[false,false,true,true]}},{"ix":142,"action":{"kind":"Delegate","val":3,"amt":2544},"partialState":{"h":14,"t":84,"tokens":[11587,10649,2815,29268],"delegation":[10587,9649,1815,28268],"delegatorTokens":9999999909896}},{"ix":143,"action":{"kind":"Deliver","chain":"consumer","numPackets":3},"partialState":{"h":20,"t":120,"consumerPower":[null,13795,null,21054],"outstandingDowntime":[false,false,true,true]}},{"ix":144,"action":{"kind":"Deliver","chain":"consumer","numPackets":3},"partialState":{"h":20,"t":120,"consumerPower":[null,13795,null,21054],"outstandingDowntime":[false,false,true,true]}},{"ix":145,"action":{"kind":"Delegate","val":2,"amt":2933},"partialState":{"h":14,"t":84,"tokens":[11587,10649,5748,29268],"delegation":[10587,9649,4748,28268],"delegatorTokens":9999999906963}},{"ix":146,"action":{"kind":"Delegate","val":3,"amt":4077},"partialState":{"h":14,"t":84,"tokens":[11587,10649,5748,33345],"delegation":[10587,9649,4748,32345],"delegatorTokens":9999999902886}},{"ix":147,"action":{"kind":"Delegate","val":1,"amt":3859},"partialState":{"h":14,"t":84,"tokens":[11587,14508,5748,33345],"delegation":[10587,13508,4748,32345],"delegatorTokens":9999999899027}},{"ix":148,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":149,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":150,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":21,"t":126,"consumerPower":[null,13795,null,21054],"outstandingDowntime":[false,false,true,true]}},{"ix":151,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":152,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":15,"t":90,"tokens":[11587,14508,5748,33345],"delegation":[10587,13508,4748,32345],"delegatorTokens":9999999899027,"jailed":[1000000000000017,null,null,null],"status":["unbonding","bonded","unbonding","bonded"]}},{"ix":153,"action":{"kind":"Undelegate","val":3,"amt":1553},"partialState":{"h":15,"t":90,"tokens":[11587,14508,5748,31792],"delegation":[10587,13508,4748,30792],"delegatorTokens":9999999899027}},{"ix":154,"action":{"kind":"Deliver","chain":"provider","numPackets":4},"partialState":{"h":15,"t":90,"tokens":[11587,14508,5748,31792],"delegation":[10587,13508,4748,30792],"delegatorTokens":9999999899027,"jailed":[1000000000000017,null,null,null],"status":["unbonding","bonded","unbonding","bonded"]}},{"ix":155,"action":{"kind":"Delegate","val":2,"amt":3286},"partialState":{"h":15,"t":90,"tokens":[11587,14508,9034,31792],"delegation":[10587,13508,8034,30792],"delegatorTokens":9999999895741}},{"ix":156,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":16,"t":96,"tokens":[11587,14508,9034,31792],"delegation":[10587,13508,8034,30792],"delegatorTokens":9999999897179,"jailed":[1000000000000017,null,null,null],"status":["unbonded","bonded","unbonding","bonded"]}},{"ix":157,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":17,"t":102,"tokens":[11587,14508,9034,31792],"delegation":[10587,13508,8034,30792],"delegatorTokens":9999999906509,"jailed":[1000000000000017,null,null,null],"status":["unbonded","bonded","unbonding","bonded"]}},{"ix":158,"action":{"kind":"Deliver","chain":"consumer","numPackets":4},"partialState":{"h":21,"t":126,"consumerPower":[null,13795,null,21054],"outstandingDowntime":[false,false,true,true]}},{"ix":159,"action":{"kind":"Delegate","val":2,"amt":4878},"partialState":{"h":17,"t":102,"tokens":[11587,14508,13912,31792],"delegation":[10587,13508,12912,30792],"delegatorTokens":9999999901631}},{"ix":160,"action":{"kind":"Undelegate","val":1,"amt":1213},"partialState":{"h":17,"t":102,"tokens":[11587,13295,13912,31792],"delegation":[10587,12295,12912,30792],"delegatorTokens":9999999901631}},{"ix":161,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":162,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":163,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":164,"action":{"kind":"Undelegate","val":1,"amt":2025},"partialState":{"h":17,"t":102,"tokens":[11587,11270,13912,31792],"delegation":[10587,10270,12912,30792],"delegatorTokens":9999999901631}},{"ix":165,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":166,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":18,"t":108,"tokens":[11587,11270,13912,31792],"delegation":[10587,10270,12912,30792],"delegatorTokens":9999999904966,"jailed":[1000000000000017,null,null,null],"status":["unbonded","unbonding","bonded","bonded"]}},{"ix":167,"action":{"kind":"Delegate","val":3,"amt":1380},"partialState":{"h":18,"t":108,"tokens":[11587,11270,13912,33172],"delegation":[10587,10270,12912,32172],"delegatorTokens":9999999903586}},{"ix":168,"action":{"kind":"Undelegate","val":3,"amt":2314},"partialState":{"h":18,"t":108,"tokens":[11587,11270,13912,30858],"delegation":[10587,10270,12912,29858],"delegatorTokens":9999999903586}},{"ix":169,"action":{"kind":"Delegate","val":0,"amt":4204},"partialState":{"h":18,"t":108,"tokens":[15791,11270,13912,30858],"delegation":[14791,10270,12912,29858],"delegatorTokens":9999999899382}},{"ix":170,"action":{"kind":"Undelegate","val":2,"amt":1272},"partialState":{"h":18,"t":108,"tokens":[15791,11270,12640,30858],"delegation":[14791,10270,11640,29858],"delegatorTokens":9999999899382}},{"ix":171,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":19,"t":114,"tokens":[15791,11270,12640,30858],"delegation":[14791,10270,11640,29858],"delegatorTokens":9999999899382,"jailed":[1000000000000017,null,null,null],"status":["unbonded","unbonding","bonded","bonded"]}},{"ix":172,"action":{"kind":"Deliver","chain":"provider","numPackets":4},"partialState":{"h":19,"t":114,"tokens":[15791,11270,12640,30858],"delegation":[14791,10270,11640,29858],"delegatorTokens":9999999899382,"jailed":[1000000000000017,null,null,null],"status":["unbonded","unbonding","bonded","bonded"]}},{"ix":173,"action":{"kind":"Delegate","val":1,"amt":2000},"partialState":{"h":19,"t":114,"tokens":[15791,13270,12640,30858],"delegation":[14791,12270,11640,29858],"delegatorTokens":9999999897382}},{"ix":174,"action":{"kind":"Undelegate","val":2,"amt":2755},"partialState":{"h":19,"t":114,"tokens":[15791,13270,9885,30858],"delegation":[14791,12270,8885,29858],"delegatorTokens":9999999897382}},{"ix":175,"action":{"kind":"Deliver","chain":"consumer","numPackets":2},"partialState":{"h":21,"t":126,"consumerPower":[null,13795,null,21054],"outstandingDowntime":[false,false,true,true]}},{"ix":176,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":20,"t":120,"tokens":[15791,13270,9885,30858],"delegation":[14791,12270,8885,29858],"delegatorTokens":9999999897382,"jailed":[1000000000000017,null,null,null],"status":["unbonded","bonded","unbonding","bonded"]}},{"ix":177,"action":{"kind":"Undelegate","val":3,"amt":1400},"partialState":{"h":20,"t":120,"tokens":[15791,13270,9885,29458],"delegation":[14791,12270,8885,28458],"delegatorTokens":9999999897382}},{"ix":178,"action":{"kind":"Undelegate","val":1,"amt":2152},"partialState":{"h":20,"t":120,"tokens":[15791,11118,9885,29458],"delegation":[14791,10118,8885,28458],"delegatorTokens":9999999897382}},{"ix":179,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":21,"t":126,"tokens":[15791,11118,9885,29458],"delegation":[14791,10118,8885,28458],"delegatorTokens":9999999897382,"jailed":[1000000000000017,null,null,null],"status":["unbonded","bonded","unbonding","bonded"]}},{"ix":180,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":181,"action":{"kind":"Deliver","chain":"provider","numPackets":2},"partialState":{"h":21,"t":126,"tokens":[15791,11118,9885,29458],"delegation":[14791,10118,8885,28458],"delegatorTokens":9999999897382,"jailed":[1000000000000017,null,null,null],"status":["unbonded","bonded","unbonding","bonded"]}},{"ix":182,"action":{"kind":"Deliver","chain":"provider","numPackets":1},"partialState":{"h":21,"t":126,"tokens":[15791,11118,9885,29458],"delegation":[14791,10118,8885,28458],"delegatorTokens":9999999897382,"jailed":[1000000000000017,null,null,null],"status":["unbonded","bonded","unbonding","bonded"]}},{"ix":183,"action":{"kind":"Undelegate","val":3,"amt":1566},"partialState":{"h":21,"t":126,"tokens":[15791,11118,9885,27892],"delegation":[14791,10118,8885,26892],"delegatorTokens":9999999897382}},{"ix":184,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":22,"t":132,"tokens":[15791,11118,9885,27892],"delegation":[14791,10118,8885,26892],"delegatorTokens":9999999897382,"jailed":[1000000000000017,null,null,null],"status":["unbonded","bonded","unbonding","bonded"]}},{"ix":185,"action":{"kind":"Undelegate","val":1,"amt":4107},"partialState":{"h":22,"t":132,"tokens":[15791,7011,9885,27892],"delegation":[14791,6011,8885,26892],"delegatorTokens":9999999897382}},{"ix":186,"action":{"kind":"Delegate","val":2,"amt":4035},"partialState":{"h":22,"t":132,"tokens":[15791,7011,13920,27892],"delegation":[14791,6011,12920,26892],"delegatorTokens":9999999893347}},{"ix":187,"action":{"kind":"Deliver","chain":"provider","numPackets":5},"partialState":{"h":22,"t":132,"tokens":[15791,7011,13920,27892],"delegation":[14791,6011,12920,26892],"delegatorTokens":9999999893347,"jailed":[1000000000000017,null,null,null],"status":["unbonded","bonded","unbonding","bonded"]}},{"ix":188,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":189,"action":{"kind":"Delegate","val":1,"amt":1867},"partialState":{"h":22,"t":132,"tokens":[15791,8878,13920,27892],"delegation":[14791,7878,12920,26892],"delegatorTokens":9999999891480}},{"ix":190,"action":{"kind":"Deliver","chain":"consumer","numPackets":3},"partialState":{"h":21,"t":126,"consumerPower":[null,13795,null,21054],"outstandingDowntime":[false,false,true,true]}},{"ix":191,"action":{"kind":"Deliver","chain":"provider","numPackets":2},"partialState":{"h":22,"t":132,"tokens":[15791,8878,13920,27892],"delegation":[14791,7878,12920,26892],"delegatorTokens":9999999891480,"jailed":[1000000000000017,null,null,null],"status":["unbonded","bonded","unbonding","bonded"]}},{"ix":192,"action":{"kind":"Undelegate","val":2,"amt":2036},"partialState":{"h":22,"t":132,"tokens":[15791,8878,11884,27892],"delegation":[14791,7878,10884,26892],"delegatorTokens":9999999891480}},{"ix":193,"action":{"kind":"Deliver","chain":"consumer","numPackets":4},"partialState":{"h":21,"t":126,"consumerPower":[null,13795,null,21054],"outstandingDowntime":[false,false,true,true]}},{"ix":194,"action":{"kind":"Undelegate","val":1,"amt":2216},"partialState":{"h":22,"t":132,"tokens":[15791,6662,11884,27892],"delegation":[14791,5662,10884,26892],"delegatorTokens":9999999891480}},{"ix":195,"action":{"kind":"Deliver","chain":"provider","numPackets":1},"partialState":{"h":22,"t":132,"tokens":[15791,6662,11884,27892],"delegation":[14791,5662,10884,26892],"delegatorTokens":9999999891480,"jailed":[1000000000000017,null,null,null],"status":["unbonded","bonded","unbonding","bonded"]}},{"ix":196,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":22,"t":132,"consumerPower":[null,11118,null,29458],"outstandingDowntime":[false,false,true,true]}},{"ix":197,"action":{"kind":"Deliver","chain":"provider","numPackets":4},"partialState":{"h":22,"t":132,"tokens":[15791,6662,11884,27892],"delegation":[14791,5662,10884,26892],"delegatorTokens":9999999891480,"jailed":[1000000000000017,null,null,null],"status":["unbonded","bonded","unbonding","bonded"]}},{"ix":198,"action":{"kind":"Undelegate","val":1,"amt":3851},"partialState":{"h":22,"t":132,"tokens":[15791,2811,11884,27892],"delegation":[14791,1811,10884,26892],"delegatorTokens":9999999891480}},{"ix":199,"action":{"kind":"Delegate","val":3,"amt":3688},"partialState":{"h":22,"t":132,"tokens":[15791,2811,11884,31580],"delegation":[14791,1811,10884,30580],"delegatorTokens":9999999887792}}],"events":["send_downtime_slash_request","insufficient_shares","send_downtime_slash_request","insufficient_shares","receive_slash_request_unbonded","send_vsc_without_downtime_ack","send_downtime_slash_request","insufficient_shares","insufficient_shares","more_than_one_third_val_power_change","receive_downtime_slash_request","jail","receive_slash_request_unbonded","send_vsc_with_downtime_ack","insufficient_shares","send_vsc_without_downtime_ack","send_vsc_without_downtime_ack","consumer_update_val","send_vsc_without_downtime_ack","receive_downtime_slash_ack","consumer_del_val","consumer_update_val","consumer_add_val","send_vsc_without_downtime_ack","insufficient_shares","insufficient_shares","consumer_send_maturation","send_vsc_without_downtime_ack","more_than_one_third_val_power_change","send_vsc_without_downtime_ack","consumer_update_val","consumer_send_maturation","consumer_send_maturation","consumer_send_maturation","consumer_update_val","consumer_update_val","send_vsc_without_downtime_ack","insufficient_shares","send_vsc_without_downtime_ack","consumer_update_val","consumer_del_val","consumer_add_val","set_undel_hold_false","set_unval_hold_false","send_vsc_without_downtime_ack","complete_unval_in_endblock","complete_undel_in_endblock","set_undel_hold_false","set_undel_hold_false","set_undel_hold_false","set_undel_hold_false","set_undel_hold_false","set_undel_hold_false","send_vsc_without_downtime_ack","complete_undel_in_endblock","rebond_unval","complete_undel_in_endblock","send_vsc_without_downtime_ack","some_undels_expired_but_not_completed","send_vsc_without_downtime_ack","rebond_unval","send_vsc_without_downtime_ack","send_vsc_without_downtime_ack","send_vsc_without_downtime_ack","consumer_update_val","consumer_update_val","consumer_del_val"]},{"meta":{"commit":"7ffd0c04e4205cbc9caf212abfe6c59ee43153bf"},"constants":{"P":"provider","C":"consumer","UNBONDING_SECONDS_P":70,"UNBONDING_SECONDS_C":50,"TRUSTING_SECONDS":49,"NUM_VALIDATORS":4,"MAX_VALIDATORS":2,"SLASH_DOUBLESIGN":0,"SLASH_DOWNTIME":0,"JAIL_SECONDS":999999999999999,"BLOCK_SECONDS":6,"INITIAL_DELEGATOR_TOKENS":10000000000000,"DELEGATE_AMT_MIN":1000,"DELEGATE_AMT_MAX":5000,"UNDELEGATE_AMT_MIN":1000,"UNDELEGATE_AMT_MAX":5000,"ISDOWNTIME_PROBABILITY":0.5,"MAX_NUM_PACKETS_FOR_DELIVER":6},"actions":[{"ix":0,"action":{"kind":"ConsumerSlash","val":2,"infractionHeight":0,"isDowntime":true},"partialState":{"h":1,"t":6,"outstandingDowntime":[false,false,true,false]}},{"ix":1,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":2,"t":12,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,false,true,false]}},{"ix":2,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":3,"action":{"kind":"ConsumerSlash","val":3,"infractionHeight":1,"isDowntime":true},"partialState":{"h":2,"t":12,"outstandingDowntime":[false,false,true,true]}},{"ix":4,"action":{"kind":"Undelegate","val":0,"amt":4287},"partialState":{"h":1,"t":6,"tokens":[5000,4000,3000,2000],"delegation":[4000,3000,2000,1000],"delegatorTokens":10000000000000}},{"ix":5,"action":{"kind":"Undelegate","val":0,"amt":4027},"partialState":{"h":1,"t":6,"tokens":[5000,4000,3000,2000],"delegation":[4000,3000,2000,1000],"delegatorTokens":10000000000000}},{"ix":6,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":3,"t":18,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,false,true,true]}},{"ix":7,"action":{"kind":"Delegate","val":0,"amt":3366},"partialState":{"h":1,"t":6,"tokens":[8366,4000,3000,2000],"delegation":[7366,3000,2000,1000],"delegatorTokens":9999999996634}},{"ix":8,"action":{"kind":"Undelegate","val":1,"amt":4086},"partialState":{"h":1,"t":6,"tokens":[8366,4000,3000,2000],"delegation":[7366,3000,2000,1000],"delegatorTokens":9999999996634}},{"ix":9,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":4,"t":24,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,false,true,true]}},{"ix":10,"action":{"kind":"ConsumerSlash","val":1,"infractionHeight":3,"isDowntime":true},"partialState":{"h":4,"t":24,"outstandingDowntime":[false,true,true,true]}},{"ix":11,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":2,"t":12,"tokens":[8366,4000,3000,2000],"delegation":[7366,3000,2000,1000],"delegatorTokens":9999999996634,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":12,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":3,"t":18,"tokens":[8366,4000,3000,2000],"delegation":[7366,3000,2000,1000],"delegatorTokens":9999999996634,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":13,"action":{"kind":"Undelegate","val":0,"amt":3256},"partialState":{"h":3,"t":18,"tokens":[5110,4000,3000,2000],"delegation":[4110,3000,2000,1000],"delegatorTokens":9999999996634}},{"ix":14,"action":{"kind":"Delegate","val":0,"amt":1784},"partialState":{"h":3,"t":18,"tokens":[6894,4000,3000,2000],"delegation":[5894,3000,2000,1000],"delegatorTokens":9999999994850}},{"ix":15,"action":{"kind":"Undelegate","val":1,"amt":4018},"partialState":{"h":3,"t":18,"tokens":[6894,4000,3000,2000],"delegation":[5894,3000,2000,1000],"delegatorTokens":9999999994850}},{"ix":16,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":5,"t":30,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,true,true,true]}},{"ix":17,"action":{"kind":"Delegate","val":1,"amt":3184},"partialState":{"h":3,"t":18,"tokens":[6894,7184,3000,2000],"delegation":[5894,6184,2000,1000],"delegatorTokens":9999999991666}},{"ix":18,"action":{"kind":"Delegate","val":0,"amt":2308},"partialState":{"h":3,"t":18,"tokens":[9202,7184,3000,2000],"delegation":[8202,6184,2000,1000],"delegatorTokens":9999999989358}},{"ix":19,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":6,"t":36,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,true,true,true]}},{"ix":20,"action":{"kind":"Undelegate","val":3,"amt":4038},"partialState":{"h":3,"t":18,"tokens":[9202,7184,3000,2000],"delegation":[8202,6184,2000,1000],"delegatorTokens":9999999989358}},{"ix":21,"action":{"kind":"Deliver","chain":"provider","numPackets":6},"partialState":{"h":3,"t":18,"tokens":[9202,7184,3000,2000],"delegation":[8202,6184,2000,1000],"delegatorTokens":9999999989358,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":22,"action":{"kind":"Deliver","chain":"consumer","numPackets":2},"partialState":{"h":6,"t":36,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,true,true,true]}},{"ix":23,"action":{"kind":"Undelegate","val":0,"amt":3782},"partialState":{"h":3,"t":18,"tokens":[5420,7184,3000,2000],"delegation":[4420,6184,2000,1000],"delegatorTokens":9999999989358}},{"ix":24,"action":{"kind":"Delegate","val":0,"amt":2448},"partialState":{"h":3,"t":18,"tokens":[7868,7184,3000,2000],"delegation":[6868,6184,2000,1000],"delegatorTokens":9999999986910}},{"ix":25,"action":{"kind":"Deliver","chain":"provider","numPackets":4},"partialState":{"h":3,"t":18,"tokens":[7868,7184,3000,2000],"delegation":[6868,6184,2000,1000],"delegatorTokens":9999999986910,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":26,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":27,"action":{"kind":"Delegate","val":1,"amt":3389},"partialState":{"h":3,"t":18,"tokens":[7868,10573,3000,2000],"delegation":[6868,9573,2000,1000],"delegatorTokens":9999999983521}},{"ix":28,"action":{"kind":"Delegate","val":1,"amt":4870},"partialState":{"h":3,"t":18,"tokens":[7868,15443,3000,2000],"delegation":[6868,14443,2000,1000],"delegatorTokens":9999999978651}},{"ix":29,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":30,"action":{"kind":"Undelegate","val":2,"amt":2424},"partialState":{"h":3,"t":18,"tokens":[7868,15443,3000,2000],"delegation":[6868,14443,2000,1000],"delegatorTokens":9999999978651}},{"ix":31,"action":{"kind":"Delegate","val":2,"amt":3445},"partialState":{"h":3,"t":18,"tokens":[7868,15443,6445,2000],"delegation":[6868,14443,5445,1000],"delegatorTokens":9999999975206}},{"ix":32,"action":{"kind":"Deliver","chain":"consumer","numPackets":5},"partialState":{"h":6,"t":36,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,true,true,true]}},{"ix":33,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":4,"t":24,"tokens":[7868,15443,6445,2000],"delegation":[6868,14443,5445,1000],"delegatorTokens":9999999975206,"jailed":[null,1000000000000017,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":34,"action":{"kind":"Deliver","chain":"consumer","numPackets":2},"partialState":{"h":6,"t":36,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,true,true,true]}},{"ix":35,"action":{"kind":"Delegate","val":1,"amt":4805},"partialState":{"h":4,"t":24,"tokens":[7868,20248,6445,2000],"delegation":[6868,19248,5445,1000],"delegatorTokens":9999999970401}},{"ix":36,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":5,"t":30,"tokens":[7868,20248,6445,2000],"delegation":[6868,19248,5445,1000],"delegatorTokens":9999999970401,"jailed":[null,1000000000000017,null,null],"status":["bonded","unbonding","bonded","unbonded"]}},{"ix":37,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":7,"t":42,"consumerPower":[8366,4000,null,null],"outstandingDowntime":[false,true,true,true]}},{"ix":38,"action":{"kind":"Undelegate","val":2,"amt":2899},"partialState":{"h":5,"t":30,"tokens":[7868,20248,3546,2000],"delegation":[6868,19248,2546,1000],"delegatorTokens":9999999970401}},{"ix":39,"action":{"kind":"Deliver","chain":"provider","numPackets":5},"partialState":{"h":5,"t":30,"tokens":[7868,20248,3546,2000],"delegation":[6868,19248,2546,1000],"delegatorTokens":9999999970401,"jailed":[null,1000000000000017,null,null],"status":["bonded","unbonding","bonded","unbonded"]}},{"ix":40,"action":{"kind":"Delegate","val":0,"amt":2487},"partialState":{"h":5,"t":30,"tokens":[10355,20248,3546,2000],"delegation":[9355,19248,2546,1000],"delegatorTokens":9999999967914}},{"ix":41,"action":{"kind":"Delegate","val":1,"amt":3516},"partialState":{"h":5,"t":30,"tokens":[10355,23764,3546,2000],"delegation":[9355,22764,2546,1000],"delegatorTokens":9999999964398}},{"ix":42,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":43,"action":{"kind":"Deliver","chain":"consumer","numPackets":4},"partialState":{"h":7,"t":42,"consumerPower":[8366,4000,null,null],"outstandingDowntime":[false,false,true,true]}},{"ix":44,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":45,"action":{"kind":"Undelegate","val":2,"amt":1396},"partialState":{"h":5,"t":30,"tokens":[10355,23764,2150,2000],"delegation":[9355,22764,1150,1000],"delegatorTokens":9999999964398}},{"ix":46,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":6,"t":36,"tokens":[10355,23764,2150,2000],"delegation":[9355,22764,1150,1000],"delegatorTokens":9999999964398,"jailed":[null,1000000000000017,null,null],"status":["bonded","unbonding","bonded","unbonded"]}},{"ix":47,"action":{"kind":"Deliver","chain":"provider","numPackets":5},"partialState":{"h":6,"t":36,"tokens":[10355,23764,2150,2000],"delegation":[9355,22764,1150,1000],"delegatorTokens":9999999964398,"jailed":[null,1000000000000017,null,null],"status":["bonded","unbonding","bonded","unbonded"]}},{"ix":48,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":49,"action":{"kind":"Undelegate","val":3,"amt":2332},"partialState":{"h":6,"t":36,"tokens":[10355,23764,2150,2000],"delegation":[9355,22764,1150,1000],"delegatorTokens":9999999964398}},{"ix":50,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":7,"t":42,"tokens":[10355,23764,2150,2000],"delegation":[9355,22764,1150,1000],"delegatorTokens":9999999964398,"jailed":[null,1000000000000017,null,null],"status":["bonded","unbonding","bonded","unbonded"]}},{"ix":51,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":52,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":8,"t":48,"consumerPower":[7868,15443,null,null],"outstandingDowntime":[false,false,true,true]}},{"ix":53,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":54,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":8,"t":48,"tokens":[10355,23764,2150,2000],"delegation":[9355,22764,1150,1000],"delegatorTokens":9999999964398,"jailed":[null,1000000000000017,null,null],"status":["bonded","unbonding","bonded","unbonded"]}},{"ix":55,"action":{"kind":"Undelegate","val":2,"amt":3125},"partialState":{"h":8,"t":48,"tokens":[10355,23764,2150,2000],"delegation":[9355,22764,1150,1000],"delegatorTokens":9999999964398}},{"ix":56,"action":{"kind":"Undelegate","val":2,"amt":4288},"partialState":{"h":8,"t":48,"tokens":[10355,23764,2150,2000],"delegation":[9355,22764,1150,1000],"delegatorTokens":9999999964398}},{"ix":57,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":9,"t":54,"consumerPower":[7868,15443,null,null],"outstandingDowntime":[false,false,true,true]}},{"ix":58,"action":{"kind":"Undelegate","val":0,"amt":3129},"partialState":{"h":8,"t":48,"tokens":[7226,23764,2150,2000],"delegation":[6226,22764,1150,1000],"delegatorTokens":9999999964398}},{"ix":59,"action":{"kind":"Undelegate","val":1,"amt":3857},"partialState":{"h":8,"t":48,"tokens":[7226,19907,2150,2000],"delegation":[6226,18907,1150,1000],"delegatorTokens":9999999964398}},{"ix":60,"action":{"kind":"Undelegate","val":0,"amt":4002},"partialState":{"h":8,"t":48,"tokens":[3224,19907,2150,2000],"delegation":[2224,18907,1150,1000],"delegatorTokens":9999999964398}},{"ix":61,"action":{"kind":"Undelegate","val":3,"amt":2473},"partialState":{"h":8,"t":48,"tokens":[3224,19907,2150,2000],"delegation":[2224,18907,1150,1000],"delegatorTokens":9999999964398}},{"ix":62,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":9,"t":54,"tokens":[3224,19907,2150,2000],"delegation":[2224,18907,1150,1000],"delegatorTokens":9999999964398,"jailed":[null,1000000000000017,null,null],"status":["bonded","unbonding","bonded","unbonded"]}},{"ix":63,"action":{"kind":"Deliver","chain":"provider","numPackets":1},"partialState":{"h":9,"t":54,"tokens":[3224,19907,2150,2000],"delegation":[2224,18907,1150,1000],"delegatorTokens":9999999964398,"jailed":[null,1000000000000017,null,null],"status":["bonded","unbonding","bonded","unbonded"]}},{"ix":64,"action":{"kind":"Deliver","chain":"consumer","numPackets":1},"partialState":{"h":9,"t":54,"consumerPower":[7868,15443,null,null],"outstandingDowntime":[false,false,true,true]}},{"ix":65,"action":{"kind":"Delegate","val":1,"amt":1710},"partialState":{"h":9,"t":54,"tokens":[3224,21617,2150,2000],"delegation":[2224,20617,1150,1000],"delegatorTokens":9999999962688}},{"ix":66,"action":{"kind":"Deliver","chain":"consumer","numPackets":4},"partialState":{"h":9,"t":54,"consumerPower":[7868,15443,null,null],"outstandingDowntime":[false,false,true,true]}},{"ix":67,"action":{"kind":"Undelegate","val":1,"amt":2772},"partialState":{"h":9,"t":54,"tokens":[3224,18845,2150,2000],"delegation":[2224,17845,1150,1000],"delegatorTokens":9999999962688}},{"ix":68,"action":{"kind":"Undelegate","val":3,"amt":4594},"partialState":{"h":9,"t":54,"tokens":[3224,18845,2150,2000],"delegation":[2224,17845,1150,1000],"delegatorTokens":9999999962688}},{"ix":69,"action":{"kind":"Undelegate","val":2,"amt":1354},"partialState":{"h":9,"t":54,"tokens":[3224,18845,2150,2000],"delegation":[2224,17845,1150,1000],"delegatorTokens":9999999962688}},{"ix":70,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":10,"t":60,"consumerPower":[10355,null,2150,null],"outstandingDowntime":[false,false,true,true]}},{"ix":71,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":72,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":10,"t":60,"tokens":[3224,18845,2150,2000],"delegation":[2224,17845,1150,1000],"delegatorTokens":9999999962688,"jailed":[null,1000000000000017,null,null],"status":["bonded","unbonding","bonded","unbonded"]}},{"ix":73,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":74,"action":{"kind":"Deliver","chain":"provider","numPackets":2},"partialState":{"h":10,"t":60,"tokens":[3224,18845,2150,2000],"delegation":[2224,17845,1150,1000],"delegatorTokens":9999999962688,"jailed":[null,1000000000000017,null,null],"status":["bonded","unbonding","bonded","unbonded"]}},{"ix":75,"action":{"kind":"Undelegate","val":1,"amt":4190},"partialState":{"h":10,"t":60,"tokens":[3224,14655,2150,2000],"delegation":[2224,13655,1150,1000],"delegatorTokens":9999999962688}},{"ix":76,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":11,"t":66,"consumerPower":[10355,null,2150,null],"outstandingDowntime":[false,false,true,true]}},{"ix":77,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":11,"t":66,"tokens":[3224,14655,2150,2000],"delegation":[2224,13655,1150,1000],"delegatorTokens":9999999962688,"jailed":[null,1000000000000017,null,null],"status":["bonded","unbonding","bonded","unbonded"]}},{"ix":78,"action":{"kind":"Undelegate","val":3,"amt":2323},"partialState":{"h":11,"t":66,"tokens":[3224,14655,2150,2000],"delegation":[2224,13655,1150,1000],"delegatorTokens":9999999962688}},{"ix":79,"action":{"kind":"Delegate","val":3,"amt":2243},"partialState":{"h":11,"t":66,"tokens":[3224,14655,2150,4243],"delegation":[2224,13655,1150,3243],"delegatorTokens":9999999960445}},{"ix":80,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":81,"action":{"kind":"Undelegate","val":3,"amt":3658},"partialState":{"h":11,"t":66,"tokens":[3224,14655,2150,4243],"delegation":[2224,13655,1150,3243],"delegatorTokens":9999999960445}},{"ix":82,"action":{"kind":"Deliver","chain":"consumer","numPackets":3},"partialState":{"h":11,"t":66,"consumerPower":[10355,null,2150,null],"outstandingDowntime":[false,false,true,true]}},{"ix":83,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":12,"t":72,"tokens":[3224,14655,2150,4243],"delegation":[2224,13655,1150,3243],"delegatorTokens":9999999960445,"jailed":[null,1000000000000017,null,null],"status":["bonded","unbonding","unbonding","bonded"]}},{"ix":84,"action":{"kind":"Delegate","val":3,"amt":2499},"partialState":{"h":12,"t":72,"tokens":[3224,14655,2150,6742],"delegation":[2224,13655,1150,5742],"delegatorTokens":9999999957946}},{"ix":85,"action":{"kind":"Deliver","chain":"consumer","numPackets":4},"partialState":{"h":11,"t":66,"consumerPower":[10355,null,2150,null],"outstandingDowntime":[false,false,true,true]}},{"ix":86,"action":{"kind":"Undelegate","val":1,"amt":3121},"partialState":{"h":12,"t":72,"tokens":[3224,11534,2150,6742],"delegation":[2224,10534,1150,5742],"delegatorTokens":9999999957946}},{"ix":87,"action":{"kind":"Undelegate","val":2,"amt":1238},"partialState":{"h":12,"t":72,"tokens":[3224,11534,2150,6742],"delegation":[2224,10534,1150,5742],"delegatorTokens":9999999957946}},{"ix":88,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":89,"action":{"kind":"Undelegate","val":2,"amt":3190},"partialState":{"h":12,"t":72,"tokens":[3224,11534,2150,6742],"delegation":[2224,10534,1150,5742],"delegatorTokens":9999999957946}},{"ix":90,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":91,"action":{"kind":"Deliver","chain":"consumer","numPackets":1},"partialState":{"h":11,"t":66,"consumerPower":[10355,null,2150,null],"outstandingDowntime":[false,false,true,true]}},{"ix":92,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":12,"t":72,"consumerPower":[3224,null,2150,null],"outstandingDowntime":[false,false,true,true]}},{"ix":93,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":13,"t":78,"consumerPower":[3224,null,2150,null],"outstandingDowntime":[false,false,true,true]}},{"ix":94,"action":{"kind":"Deliver","chain":"consumer","numPackets":3},"partialState":{"h":13,"t":78,"consumerPower":[3224,null,2150,null],"outstandingDowntime":[false,false,true,true]}},{"ix":95,"action":{"kind":"Deliver","chain":"provider","numPackets":6},"partialState":{"h":12,"t":72,"tokens":[3224,11534,2150,6742],"delegation":[2224,10534,1150,5742],"delegatorTokens":9999999957946,"jailed":[null,1000000000000017,null,null],"status":["bonded","unbonding","unbonding","bonded"]}},{"ix":96,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":97,"action":{"kind":"Undelegate","val":0,"amt":3111},"partialState":{"h":12,"t":72,"tokens":[3224,11534,2150,6742],"delegation":[2224,10534,1150,5742],"delegatorTokens":9999999957946}},{"ix":98,"action":{"kind":"Delegate","val":1,"amt":4671},"partialState":{"h":12,"t":72,"tokens":[3224,16205,2150,6742],"delegation":[2224,15205,1150,5742],"delegatorTokens":9999999953275}},{"ix":99,"action":{"kind":"Delegate","val":2,"amt":4405},"partialState":{"h":12,"t":72,"tokens":[3224,16205,6555,6742],"delegation":[2224,15205,5555,5742],"delegatorTokens":9999999948870}},{"ix":100,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":13,"t":78,"tokens":[3224,16205,6555,6742],"delegation":[2224,15205,5555,5742],"delegatorTokens":9999999948870,"jailed":[null,1000000000000017,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":101,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":102,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":14,"t":84,"tokens":[3224,16205,6555,6742],"delegation":[2224,15205,5555,5742],"delegatorTokens":9999999948870,"jailed":[null,1000000000000017,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":103,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":14,"t":84,"consumerPower":[3224,null,2150,null],"outstandingDowntime":[false,false,true,true]}},{"ix":104,"action":{"kind":"Deliver","chain":"provider","numPackets":2},"partialState":{"h":14,"t":84,"tokens":[3224,16205,6555,6742],"delegation":[2224,15205,5555,5742],"delegatorTokens":9999999948870,"jailed":[null,1000000000000017,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":105,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":106,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":15,"t":90,"consumerPower":[3224,null,2150,null],"outstandingDowntime":[false,false,true,true]}},{"ix":107,"action":{"kind":"Undelegate","val":0,"amt":2777},"partialState":{"h":14,"t":84,"tokens":[3224,16205,6555,6742],"delegation":[2224,15205,5555,5742],"delegatorTokens":9999999948870}},{"ix":108,"action":{"kind":"Undelegate","val":3,"amt":4374},"partialState":{"h":14,"t":84,"tokens":[3224,16205,6555,2368],"delegation":[2224,15205,5555,1368],"delegatorTokens":9999999948870}},{"ix":109,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":16,"t":96,"consumerPower":[3224,null,2150,null],"outstandingDowntime":[false,false,true,true]}},{"ix":110,"action":{"kind":"Delegate","val":0,"amt":4891},"partialState":{"h":14,"t":84,"tokens":[8115,16205,6555,2368],"delegation":[7115,15205,5555,1368],"delegatorTokens":9999999943979}},{"ix":111,"action":{"kind":"Deliver","chain":"provider","numPackets":5},"partialState":{"h":14,"t":84,"tokens":[8115,16205,6555,2368],"delegation":[7115,15205,5555,1368],"delegatorTokens":9999999943979,"jailed":[null,1000000000000017,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":112,"action":{"kind":"Deliver","chain":"provider","numPackets":2},"partialState":{"h":14,"t":84,"tokens":[8115,16205,6555,2368],"delegation":[7115,15205,5555,1368],"delegatorTokens":9999999943979,"jailed":[null,1000000000000017,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":113,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":17,"t":102,"consumerPower":[3224,null,2150,null],"outstandingDowntime":[false,false,true,true]}},{"ix":114,"action":{"kind":"Delegate","val":1,"amt":3177},"partialState":{"h":14,"t":84,"tokens":[8115,19382,6555,2368],"delegation":[7115,18382,5555,1368],"delegatorTokens":9999999940802}},{"ix":115,"action":{"kind":"Undelegate","val":3,"amt":1661},"partialState":{"h":14,"t":84,"tokens":[8115,19382,6555,2368],"delegation":[7115,18382,5555,1368],"delegatorTokens":9999999940802}},{"ix":116,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":18,"t":108,"consumerPower":[3224,null,2150,null],"outstandingDowntime":[false,false,true,true]}},{"ix":117,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":118,"action":{"kind":"Deliver","chain":"provider","numPackets":5},"partialState":{"h":14,"t":84,"tokens":[8115,19382,6555,2368],"delegation":[7115,18382,5555,1368],"delegatorTokens":9999999940802,"jailed":[null,1000000000000017,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":119,"action":{"kind":"Delegate","val":2,"amt":4971},"partialState":{"h":14,"t":84,"tokens":[8115,19382,11526,2368],"delegation":[7115,18382,10526,1368],"delegatorTokens":9999999935831}},{"ix":120,"action":{"kind":"Delegate","val":0,"amt":4211},"partialState":{"h":14,"t":84,"tokens":[12326,19382,11526,2368],"delegation":[11326,18382,10526,1368],"delegatorTokens":9999999931620}},{"ix":121,"action":{"kind":"Delegate","val":0,"amt":3541},"partialState":{"h":14,"t":84,"tokens":[15867,19382,11526,2368],"delegation":[14867,18382,10526,1368],"delegatorTokens":9999999928079}},{"ix":122,"action":{"kind":"Deliver","chain":"provider","numPackets":2},"partialState":{"h":14,"t":84,"tokens":[15867,19382,11526,2368],"delegation":[14867,18382,10526,1368],"delegatorTokens":9999999928079,"jailed":[null,1000000000000017,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":123,"action":{"kind":"Deliver","chain":"consumer","numPackets":5},"partialState":{"h":18,"t":108,"consumerPower":[3224,null,2150,null],"outstandingDowntime":[false,false,true,true]}},{"ix":124,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":125,"action":{"kind":"Deliver","chain":"provider","numPackets":5},"partialState":{"h":14,"t":84,"tokens":[15867,19382,11526,2368],"delegation":[14867,18382,10526,1368],"delegatorTokens":9999999928079,"jailed":[null,1000000000000017,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":126,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":127,"action":{"kind":"Deliver","chain":"provider","numPackets":2},"partialState":{"h":14,"t":84,"tokens":[15867,19382,11526,2368],"delegation":[14867,18382,10526,1368],"delegatorTokens":9999999928079,"jailed":[null,1000000000000017,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":128,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":129,"action":{"kind":"Undelegate","val":1,"amt":1734},"partialState":{"h":14,"t":84,"tokens":[15867,17648,11526,2368],"delegation":[14867,16648,10526,1368],"delegatorTokens":9999999928079}},{"ix":130,"action":{"kind":"Undelegate","val":2,"amt":1117},"partialState":{"h":14,"t":84,"tokens":[15867,17648,10409,2368],"delegation":[14867,16648,9409,1368],"delegatorTokens":9999999928079}},{"ix":131,"action":{"kind":"Delegate","val":0,"amt":3228},"partialState":{"h":14,"t":84,"tokens":[19095,17648,10409,2368],"delegation":[18095,16648,9409,1368],"delegatorTokens":9999999924851}},{"ix":132,"action":{"kind":"Deliver","chain":"provider","numPackets":5},"partialState":{"h":14,"t":84,"tokens":[19095,17648,10409,2368],"delegation":[18095,16648,9409,1368],"delegatorTokens":9999999924851,"jailed":[null,1000000000000017,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":133,"action":{"kind":"Deliver","chain":"consumer","numPackets":5},"partialState":{"h":18,"t":108,"consumerPower":[3224,null,2150,null],"outstandingDowntime":[false,false,true,true]}},{"ix":134,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":19,"t":114,"consumerPower":[null,null,6555,6742],"outstandingDowntime":[false,false,true,true]}},{"ix":135,"action":{"kind":"Deliver","chain":"consumer","numPackets":5},"partialState":{"h":19,"t":114,"consumerPower":[null,null,6555,6742],"outstandingDowntime":[false,false,true,true]}},{"ix":136,"action":{"kind":"Delegate","val":0,"amt":2884},"partialState":{"h":14,"t":84,"tokens":[21979,17648,10409,2368],"delegation":[20979,16648,9409,1368],"delegatorTokens":9999999921967}},{"ix":137,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":20,"t":120,"consumerPower":[null,null,6555,6742],"outstandingDowntime":[false,false,true,true]}},{"ix":138,"action":{"kind":"Undelegate","val":2,"amt":1560},"partialState":{"h":14,"t":84,"tokens":[21979,17648,8849,2368],"delegation":[20979,16648,7849,1368],"delegatorTokens":9999999921967}},{"ix":139,"action":{"kind":"Delegate","val":1,"amt":4541},"partialState":{"h":14,"t":84,"tokens":[21979,22189,8849,2368],"delegation":[20979,21189,7849,1368],"delegatorTokens":9999999917426}},{"ix":140,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":141,"action":{"kind":"Undelegate","val":3,"amt":3096},"partialState":{"h":14,"t":84,"tokens":[21979,22189,8849,2368],"delegation":[20979,21189,7849,1368],"delegatorTokens":9999999917426}},{"ix":142,"action":{"kind":"Delegate","val":1,"amt":4087},"partialState":{"h":14,"t":84,"tokens":[21979,26276,8849,2368],"delegation":[20979,25276,7849,1368],"delegatorTokens":9999999913339}},{"ix":143,"action":{"kind":"Undelegate","val":3,"amt":4787},"partialState":{"h":14,"t":84,"tokens":[21979,26276,8849,2368],"delegation":[20979,25276,7849,1368],"delegatorTokens":9999999913339}},{"ix":144,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":21,"t":126,"consumerPower":[null,null,6555,6742],"outstandingDowntime":[false,false,true,true]}},{"ix":145,"action":{"kind":"Deliver","chain":"provider","numPackets":3},"partialState":{"h":14,"t":84,"tokens":[21979,26276,8849,2368],"delegation":[20979,25276,7849,1368],"delegatorTokens":9999999913339,"jailed":[null,1000000000000017,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":146,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":147,"action":{"kind":"Undelegate","val":2,"amt":1165},"partialState":{"h":14,"t":84,"tokens":[21979,26276,7684,2368],"delegation":[20979,25276,6684,1368],"delegatorTokens":9999999913339}},{"ix":148,"action":{"kind":"Deliver","chain":"consumer","numPackets":4},"partialState":{"h":21,"t":126,"consumerPower":[null,null,6555,6742],"outstandingDowntime":[false,false,true,true]}},{"ix":149,"action":{"kind":"Undelegate","val":3,"amt":1766},"partialState":{"h":14,"t":84,"tokens":[21979,26276,7684,2368],"delegation":[20979,25276,6684,1368],"delegatorTokens":9999999913339}},{"ix":150,"action":{"kind":"Delegate","val":2,"amt":4258},"partialState":{"h":14,"t":84,"tokens":[21979,26276,11942,2368],"delegation":[20979,25276,10942,1368],"delegatorTokens":9999999909081}},{"ix":151,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":15,"t":90,"tokens":[21979,26276,11942,2368],"delegation":[20979,25276,10942,1368],"delegatorTokens":9999999909081,"jailed":[null,1000000000000017,null,null],"status":["bonded","unbonding","bonded","unbonding"]}},{"ix":152,"action":{"kind":"Deliver","chain":"consumer","numPackets":5},"partialState":{"h":21,"t":126,"consumerPower":[null,null,6555,6742],"outstandingDowntime":[false,false,true,true]}},{"ix":153,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":154,"action":{"kind":"Undelegate","val":1,"amt":3663},"partialState":{"h":15,"t":90,"tokens":[21979,22613,11942,2368],"delegation":[20979,21613,10942,1368],"delegatorTokens":9999999909081}},{"ix":155,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":22,"t":132,"consumerPower":[null,null,6555,6742],"outstandingDowntime":[false,false,true,true]}},{"ix":156,"action":{"kind":"Undelegate","val":3,"amt":2494},"partialState":{"h":15,"t":90,"tokens":[21979,22613,11942,2368],"delegation":[20979,21613,10942,1368],"delegatorTokens":9999999909081}},{"ix":157,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":158,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":159,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":16,"t":96,"tokens":[21979,22613,11942,2368],"delegation":[20979,21613,10942,1368],"delegatorTokens":9999999916119,"jailed":[null,1000000000000017,null,null],"status":["bonded","unbonding","bonded","unbonding"]}},{"ix":160,"action":{"kind":"Undelegate","val":0,"amt":3985},"partialState":{"h":16,"t":96,"tokens":[17994,22613,11942,2368],"delegation":[16994,21613,10942,1368],"delegatorTokens":9999999916119}},{"ix":161,"action":{"kind":"Delegate","val":2,"amt":3319},"partialState":{"h":16,"t":96,"tokens":[17994,22613,15261,2368],"delegation":[16994,21613,14261,1368],"delegatorTokens":9999999912800}},{"ix":162,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":163,"action":{"kind":"Undelegate","val":3,"amt":4580},"partialState":{"h":16,"t":96,"tokens":[17994,22613,15261,2368],"delegation":[16994,21613,14261,1368],"delegatorTokens":9999999912800}},{"ix":164,"action":{"kind":"Delegate","val":0,"amt":1255},"partialState":{"h":16,"t":96,"tokens":[19249,22613,15261,2368],"delegation":[18249,21613,14261,1368],"delegatorTokens":9999999911545}},{"ix":165,"action":{"kind":"Delegate","val":3,"amt":1217},"partialState":{"h":16,"t":96,"tokens":[19249,22613,15261,3585],"delegation":[18249,21613,14261,2585],"delegatorTokens":9999999910328}},{"ix":166,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":23,"t":138,"consumerPower":[null,null,6555,6742],"outstandingDowntime":[false,false,true,true]}},{"ix":167,"action":{"kind":"Undelegate","val":1,"amt":1841},"partialState":{"h":16,"t":96,"tokens":[19249,20772,15261,3585],"delegation":[18249,19772,14261,2585],"delegatorTokens":9999999910328}},{"ix":168,"action":{"kind":"Undelegate","val":3,"amt":1978},"partialState":{"h":16,"t":96,"tokens":[19249,20772,15261,1607],"delegation":[18249,19772,14261,607],"delegatorTokens":9999999910328}},{"ix":169,"action":{"kind":"Delegate","val":3,"amt":2919},"partialState":{"h":16,"t":96,"tokens":[19249,20772,15261,4526],"delegation":[18249,19772,14261,3526],"delegatorTokens":9999999907409}},{"ix":170,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":171,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":172,"action":{"kind":"Deliver","chain":"provider","numPackets":2},"partialState":{"h":16,"t":96,"tokens":[19249,20772,15261,4526],"delegation":[18249,19772,14261,3526],"delegatorTokens":9999999907409,"jailed":[null,1000000000000017,null,null],"status":["bonded","unbonding","bonded","unbonding"]}},{"ix":173,"action":{"kind":"Delegate","val":2,"amt":2833},"partialState":{"h":16,"t":96,"tokens":[19249,20772,18094,4526],"delegation":[18249,19772,17094,3526],"delegatorTokens":9999999904576}},{"ix":174,"action":{"kind":"Deliver","chain":"provider","numPackets":6},"partialState":{"h":16,"t":96,"tokens":[19249,20772,18094,4526],"delegation":[18249,19772,17094,3526],"delegatorTokens":9999999904576,"jailed":[null,1000000000000017,null,null],"status":["bonded","unbonding","bonded","unbonding"]}},{"ix":175,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":176,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":17,"t":102,"tokens":[19249,20772,18094,4526],"delegation":[18249,19772,17094,3526],"delegatorTokens":9999999904576,"jailed":[null,1000000000000017,null,null],"status":["bonded","unbonded","bonded","unbonding"]}},{"ix":177,"action":{"kind":"Undelegate","val":0,"amt":3458},"partialState":{"h":17,"t":102,"tokens":[15791,20772,18094,4526],"delegation":[14791,19772,17094,3526],"delegatorTokens":9999999904576}},{"ix":178,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":179,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":180,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":181,"action":{"kind":"Undelegate","val":3,"amt":4858},"partialState":{"h":17,"t":102,"tokens":[15791,20772,18094,4526],"delegation":[14791,19772,17094,3526],"delegatorTokens":9999999904576}},{"ix":182,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":18,"t":108,"tokens":[15791,20772,18094,4526],"delegation":[14791,19772,17094,3526],"delegatorTokens":9999999908871,"jailed":[null,1000000000000017,null,null],"status":["bonded","unbonded","bonded","unbonding"]}},{"ix":183,"action":{"kind":"Deliver","chain":"provider","numPackets":3},"partialState":{"h":18,"t":108,"tokens":[15791,20772,18094,4526],"delegation":[14791,19772,17094,3526],"delegatorTokens":9999999908871,"jailed":[null,1000000000000017,null,null],"status":["bonded","unbonded","bonded","unbonding"]}},{"ix":184,"action":{"kind":"Deliver","chain":"provider","numPackets":1},"partialState":{"h":18,"t":108,"tokens":[15791,20772,18094,4526],"delegation":[14791,19772,17094,3526],"delegatorTokens":9999999908871,"jailed":[null,1000000000000017,null,null],"status":["bonded","unbonded","bonded","unbonding"]}},{"ix":185,"action":{"kind":"Deliver","chain":"consumer","numPackets":2},"partialState":{"h":23,"t":138,"consumerPower":[null,null,6555,6742],"outstandingDowntime":[false,false,true,true]}},{"ix":186,"action":{"kind":"Undelegate","val":1,"amt":4529},"partialState":{"h":18,"t":108,"tokens":[15791,16243,18094,4526],"delegation":[14791,15243,17094,3526],"delegatorTokens":9999999908871}},{"ix":187,"action":{"kind":"Undelegate","val":2,"amt":4829},"partialState":{"h":18,"t":108,"tokens":[15791,16243,13265,4526],"delegation":[14791,15243,12265,3526],"delegatorTokens":9999999908871}},{"ix":188,"action":{"kind":"Undelegate","val":3,"amt":3288},"partialState":{"h":18,"t":108,"tokens":[15791,16243,13265,1238],"delegation":[14791,15243,12265,238],"delegatorTokens":9999999908871}},{"ix":189,"action":{"kind":"Undelegate","val":2,"amt":3084},"partialState":{"h":18,"t":108,"tokens":[15791,16243,10181,1238],"delegation":[14791,15243,9181,238],"delegatorTokens":9999999908871}},{"ix":190,"action":{"kind":"Deliver","chain":"provider","numPackets":3},"partialState":{"h":18,"t":108,"tokens":[15791,16243,10181,1238],"delegation":[14791,15243,9181,238],"delegatorTokens":9999999908871,"jailed":[null,1000000000000017,null,null],"status":["bonded","unbonded","bonded","unbonding"]}},{"ix":191,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":24,"t":144,"consumerPower":[21979,null,11942,null],"outstandingDowntime":[false,false,true,true]}},{"ix":192,"action":{"kind":"Deliver","chain":"provider","numPackets":2},"partialState":{"h":18,"t":108,"tokens":[15791,16243,10181,1238],"delegation":[14791,15243,9181,238],"delegatorTokens":9999999908871,"jailed":[null,1000000000000017,null,null],"status":["bonded","unbonded","bonded","unbonding"]}},{"ix":193,"action":{"kind":"Deliver","chain":"consumer","numPackets":2},"partialState":{"h":24,"t":144,"consumerPower":[21979,null,11942,null],"outstandingDowntime":[false,false,true,true]}},{"ix":194,"action":{"kind":"Undelegate","val":2,"amt":3131},"partialState":{"h":18,"t":108,"tokens":[15791,16243,7050,1238],"delegation":[14791,15243,6050,238],"delegatorTokens":9999999908871}},{"ix":195,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":19,"t":114,"tokens":[15791,16243,7050,1238],"delegation":[14791,15243,6050,238],"delegatorTokens":9999999908871,"jailed":[null,1000000000000017,null,null],"status":["bonded","unbonded","bonded","unbonding"]}},{"ix":196,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":20,"t":120,"tokens":[15791,16243,7050,1238],"delegation":[14791,15243,6050,238],"delegatorTokens":9999999908871,"jailed":[null,1000000000000017,null,null],"status":["bonded","unbonded","bonded","unbonding"]}},{"ix":197,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":198,"action":{"kind":"Delegate","val":3,"amt":1910},"partialState":{"h":20,"t":120,"tokens":[15791,16243,7050,3148],"delegation":[14791,15243,6050,2148],"delegatorTokens":9999999906961}},{"ix":199,"action":{"kind":"Delegate","val":0,"amt":4034},"partialState":{"h":20,"t":120,"tokens":[19825,16243,7050,3148],"delegation":[18825,15243,6050,2148],"delegatorTokens":9999999902927}}],"events":["send_downtime_slash_request","send_downtime_slash_request","insufficient_shares","insufficient_shares","insufficient_shares","send_downtime_slash_request","send_vsc_without_downtime_ack","insufficient_shares","insufficient_shares","insufficient_shares","receive_slash_request_unbonded","receive_slash_request_unbonded","receive_downtime_slash_request","jail","send_vsc_with_downtime_ack","more_than_one_third_val_power_change","send_vsc_without_downtime_ack","consumer_update_val","receive_downtime_slash_ack","send_vsc_without_downtime_ack","insufficient_shares","consumer_update_val","consumer_update_val","insufficient_shares","insufficient_shares","insufficient_shares","send_vsc_without_downtime_ack","insufficient_shares","insufficient_shares","consumer_del_val","consumer_add_val","consumer_update_val","send_vsc_not_because_change","send_vsc_without_downtime_ack","send_vsc_not_because_change","send_vsc_without_downtime_ack","insufficient_shares","insufficient_shares","more_than_one_third_val_power_change","send_vsc_without_downtime_ack","insufficient_shares","insufficient_shares","consumer_update_val","insufficient_shares","more_than_one_third_val_power_change","rebond_unval","send_vsc_without_downtime_ack","insufficient_shares","consumer_send_maturation","consumer_send_maturation","insufficient_shares","consumer_send_maturation","consumer_send_maturation","consumer_update_val","consumer_add_val","consumer_del_val","insufficient_shares","insufficient_shares","consumer_send_maturation","consumer_send_maturation","consumer_send_maturation","insufficient_shares","more_than_one_third_val_power_change","rebond_unval","set_undel_hold_false","set_undel_hold_false","set_unval_hold_false","set_undel_hold_false","set_undel_hold_false","send_vsc_without_downtime_ack","insufficient_shares","complete_undel_in_endblock","send_vsc_not_because_change","send_vsc_without_downtime_ack","insufficient_shares","complete_unval_in_endblock","set_undel_hold_false","set_undel_hold_false","set_undel_hold_false","set_undel_hold_false","set_undel_hold_false","send_vsc_without_downtime_ack","insufficient_shares","complete_undel_in_endblock","send_vsc_without_downtime_ack","consumer_add_val","consumer_update_val","consumer_del_val","send_vsc_without_downtime_ack"]},{"meta":{"commit":"7ffd0c04e4205cbc9caf212abfe6c59ee43153bf"},"constants":{"P":"provider","C":"consumer","UNBONDING_SECONDS_P":70,"UNBONDING_SECONDS_C":50,"TRUSTING_SECONDS":49,"NUM_VALIDATORS":4,"MAX_VALIDATORS":2,"SLASH_DOUBLESIGN":0,"SLASH_DOWNTIME":0,"JAIL_SECONDS":999999999999999,"BLOCK_SECONDS":6,"INITIAL_DELEGATOR_TOKENS":10000000000000,"DELEGATE_AMT_MIN":1000,"DELEGATE_AMT_MAX":5000,"UNDELEGATE_AMT_MIN":1000,"UNDELEGATE_AMT_MAX":5000,"ISDOWNTIME_PROBABILITY":0.5,"MAX_NUM_PACKETS_FOR_DELIVER":6},"actions":[{"ix":0,"action":{"kind":"Undelegate","val":0,"amt":4083},"partialState":{"h":1,"t":6,"tokens":[5000,4000,3000,2000],"delegation":[4000,3000,2000,1000],"delegatorTokens":10000000000000}},{"ix":1,"action":{"kind":"ConsumerSlash","val":3,"infractionHeight":0,"isDowntime":true},"partialState":{"h":1,"t":6,"outstandingDowntime":[false,false,false,true]}},{"ix":2,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":2,"t":12,"tokens":[5000,4000,3000,2000],"delegation":[4000,3000,2000,1000],"delegatorTokens":10000000000000,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":3,"action":{"kind":"Undelegate","val":3,"amt":3179},"partialState":{"h":2,"t":12,"tokens":[5000,4000,3000,2000],"delegation":[4000,3000,2000,1000],"delegatorTokens":10000000000000}},{"ix":4,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":3,"t":18,"tokens":[5000,4000,3000,2000],"delegation":[4000,3000,2000,1000],"delegatorTokens":10000000000000,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":5,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":2,"t":12,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,false,false,true]}},{"ix":6,"action":{"kind":"Delegate","val":0,"amt":1078},"partialState":{"h":3,"t":18,"tokens":[6078,4000,3000,2000],"delegation":[5078,3000,2000,1000],"delegatorTokens":9999999998922}},{"ix":7,"action":{"kind":"Deliver","chain":"provider","numPackets":1},"partialState":{"h":3,"t":18,"tokens":[6078,4000,3000,2000],"delegation":[5078,3000,2000,1000],"delegatorTokens":9999999998922,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":8,"action":{"kind":"Delegate","val":1,"amt":3396},"partialState":{"h":3,"t":18,"tokens":[6078,7396,3000,2000],"delegation":[5078,6396,2000,1000],"delegatorTokens":9999999995526}},{"ix":9,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":3,"t":18,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,false,false,true]}},{"ix":10,"action":{"kind":"Deliver","chain":"provider","numPackets":3},"partialState":{"h":3,"t":18,"tokens":[6078,7396,3000,2000],"delegation":[5078,6396,2000,1000],"delegatorTokens":9999999995526,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":11,"action":{"kind":"Deliver","chain":"consumer","numPackets":5},"partialState":{"h":3,"t":18,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,false,false,true]}},{"ix":12,"action":{"kind":"Deliver","chain":"provider","numPackets":4},"partialState":{"h":3,"t":18,"tokens":[6078,7396,3000,2000],"delegation":[5078,6396,2000,1000],"delegatorTokens":9999999995526,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":13,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":14,"action":{"kind":"Undelegate","val":3,"amt":3057},"partialState":{"h":3,"t":18,"tokens":[6078,7396,3000,2000],"delegation":[5078,6396,2000,1000],"delegatorTokens":9999999995526}},{"ix":15,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":16,"action":{"kind":"Undelegate","val":2,"amt":2964},"partialState":{"h":3,"t":18,"tokens":[6078,7396,3000,2000],"delegation":[5078,6396,2000,1000],"delegatorTokens":9999999995526}},{"ix":17,"action":{"kind":"ConsumerSlash","val":0,"infractionHeight":2,"isDowntime":true},"partialState":{"h":3,"t":18,"outstandingDowntime":[true,false,false,true]}},{"ix":18,"action":{"kind":"Delegate","val":0,"amt":4362},"partialState":{"h":3,"t":18,"tokens":[10440,7396,3000,2000],"delegation":[9440,6396,2000,1000],"delegatorTokens":9999999991164}},{"ix":19,"action":{"kind":"Undelegate","val":2,"amt":2033},"partialState":{"h":3,"t":18,"tokens":[10440,7396,3000,2000],"delegation":[9440,6396,2000,1000],"delegatorTokens":9999999991164}},{"ix":20,"action":{"kind":"Deliver","chain":"provider","numPackets":5},"partialState":{"h":3,"t":18,"tokens":[10440,7396,3000,2000],"delegation":[9440,6396,2000,1000],"delegatorTokens":9999999991164,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":21,"action":{"kind":"ConsumerSlash","val":2,"infractionHeight":2,"isDowntime":true},"partialState":{"h":3,"t":18,"outstandingDowntime":[true,false,true,true]}},{"ix":22,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":23,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":4,"t":24,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[true,false,true,true]}},{"ix":24,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":4,"t":24,"tokens":[10440,7396,3000,2000],"delegation":[9440,6396,2000,1000],"delegatorTokens":9999999991164,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":25,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":5,"t":30,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[true,false,true,true]}},{"ix":26,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":5,"t":30,"tokens":[10440,7396,3000,2000],"delegation":[9440,6396,2000,1000],"delegatorTokens":9999999991164,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":27,"action":{"kind":"Delegate","val":1,"amt":1483},"partialState":{"h":5,"t":30,"tokens":[10440,8879,3000,2000],"delegation":[9440,7879,2000,1000],"delegatorTokens":9999999989681}},{"ix":28,"action":{"kind":"Undelegate","val":3,"amt":4449},"partialState":{"h":5,"t":30,"tokens":[10440,8879,3000,2000],"delegation":[9440,7879,2000,1000],"delegatorTokens":9999999989681}},{"ix":29,"action":{"kind":"Deliver","chain":"provider","numPackets":2},"partialState":{"h":5,"t":30,"tokens":[10440,8879,3000,2000],"delegation":[9440,7879,2000,1000],"delegatorTokens":9999999989681,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":30,"action":{"kind":"Undelegate","val":3,"amt":4448},"partialState":{"h":5,"t":30,"tokens":[10440,8879,3000,2000],"delegation":[9440,7879,2000,1000],"delegatorTokens":9999999989681}},{"ix":31,"action":{"kind":"Delegate","val":2,"amt":2914},"partialState":{"h":5,"t":30,"tokens":[10440,8879,5914,2000],"delegation":[9440,7879,4914,1000],"delegatorTokens":9999999986767}},{"ix":32,"action":{"kind":"Delegate","val":0,"amt":4283},"partialState":{"h":5,"t":30,"tokens":[14723,8879,5914,2000],"delegation":[13723,7879,4914,1000],"delegatorTokens":9999999982484}},{"ix":33,"action":{"kind":"Undelegate","val":1,"amt":3344},"partialState":{"h":5,"t":30,"tokens":[14723,5535,5914,2000],"delegation":[13723,4535,4914,1000],"delegatorTokens":9999999982484}},{"ix":34,"action":{"kind":"Deliver","chain":"consumer","numPackets":2},"partialState":{"h":5,"t":30,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[true,false,true,true]}},{"ix":35,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":36,"action":{"kind":"Delegate","val":1,"amt":1230},"partialState":{"h":5,"t":30,"tokens":[14723,6765,5914,2000],"delegation":[13723,5765,4914,1000],"delegatorTokens":9999999981254}},{"ix":37,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":6,"t":36,"consumerPower":[10440,7396,null,null],"outstandingDowntime":[true,false,true,true]}},{"ix":38,"action":{"kind":"Deliver","chain":"consumer","numPackets":2},"partialState":{"h":6,"t":36,"consumerPower":[10440,7396,null,null],"outstandingDowntime":[true,false,true,true]}},{"ix":39,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":6,"t":36,"tokens":[14723,6765,5914,2000],"delegation":[13723,5765,4914,1000],"delegatorTokens":9999999981254,"jailed":[1000000000000029,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":40,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":41,"action":{"kind":"Delegate","val":1,"amt":2428},"partialState":{"h":6,"t":36,"tokens":[14723,9193,5914,2000],"delegation":[13723,8193,4914,1000],"delegatorTokens":9999999978826}},{"ix":42,"action":{"kind":"Undelegate","val":1,"amt":1333},"partialState":{"h":6,"t":36,"tokens":[14723,7860,5914,2000],"delegation":[13723,6860,4914,1000],"delegatorTokens":9999999978826}},{"ix":43,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":7,"t":42,"tokens":[14723,7860,5914,2000],"delegation":[13723,6860,4914,1000],"delegatorTokens":9999999978826,"jailed":[1000000000000029,null,null,null],"status":["unbonding","bonded","bonded","unbonded"]}},{"ix":44,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":8,"t":48,"tokens":[14723,7860,5914,2000],"delegation":[13723,6860,4914,1000],"delegatorTokens":9999999978826,"jailed":[1000000000000029,null,null,null],"status":["unbonding","bonded","bonded","unbonded"]}},{"ix":45,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":46,"action":{"kind":"Undelegate","val":1,"amt":2130},"partialState":{"h":8,"t":48,"tokens":[14723,5730,5914,2000],"delegation":[13723,4730,4914,1000],"delegatorTokens":9999999978826}},{"ix":47,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":7,"t":42,"consumerPower":[10440,7396,null,null],"outstandingDowntime":[true,false,true,true]}},{"ix":48,"action":{"kind":"Delegate","val":0,"amt":3467},"partialState":{"h":8,"t":48,"tokens":[18190,5730,5914,2000],"delegation":[17190,4730,4914,1000],"delegatorTokens":9999999975359}},{"ix":49,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":9,"t":54,"tokens":[18190,5730,5914,2000],"delegation":[17190,4730,4914,1000],"delegatorTokens":9999999975359,"jailed":[1000000000000029,null,null,null],"status":["unbonding","bonded","bonded","unbonded"]}},{"ix":50,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":51,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":52,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":8,"t":48,"consumerPower":[10440,7396,null,null],"outstandingDowntime":[true,false,true,true]}},{"ix":53,"action":{"kind":"Undelegate","val":2,"amt":3610},"partialState":{"h":9,"t":54,"tokens":[18190,5730,2304,2000],"delegation":[17190,4730,1304,1000],"delegatorTokens":9999999975359}},{"ix":54,"action":{"kind":"Delegate","val":2,"amt":3147},"partialState":{"h":9,"t":54,"tokens":[18190,5730,5451,2000],"delegation":[17190,4730,4451,1000],"delegatorTokens":9999999972212}},{"ix":55,"action":{"kind":"Delegate","val":2,"amt":3408},"partialState":{"h":9,"t":54,"tokens":[18190,5730,8859,2000],"delegation":[17190,4730,7859,1000],"delegatorTokens":9999999968804}},{"ix":56,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":9,"t":54,"consumerPower":[10440,7396,null,null],"outstandingDowntime":[true,false,true,true]}},{"ix":57,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":58,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":59,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":60,"action":{"kind":"Delegate","val":1,"amt":2616},"partialState":{"h":9,"t":54,"tokens":[18190,8346,8859,2000],"delegation":[17190,7346,7859,1000],"delegatorTokens":9999999966188}},{"ix":61,"action":{"kind":"Deliver","chain":"consumer","numPackets":3},"partialState":{"h":9,"t":54,"consumerPower":[10440,7396,null,null],"outstandingDowntime":[false,false,true,true]}},{"ix":62,"action":{"kind":"Undelegate","val":1,"amt":4811},"partialState":{"h":9,"t":54,"tokens":[18190,3535,8859,2000],"delegation":[17190,2535,7859,1000],"delegatorTokens":9999999966188}},{"ix":63,"action":{"kind":"Delegate","val":1,"amt":3478},"partialState":{"h":9,"t":54,"tokens":[18190,7013,8859,2000],"delegation":[17190,6013,7859,1000],"delegatorTokens":9999999962710}},{"ix":64,"action":{"kind":"Deliver","chain":"provider","numPackets":4},"partialState":{"h":9,"t":54,"tokens":[18190,7013,8859,2000],"delegation":[17190,6013,7859,1000],"delegatorTokens":9999999962710,"jailed":[1000000000000029,null,null,null],"status":["unbonding","bonded","bonded","unbonded"]}},{"ix":65,"action":{"kind":"Undelegate","val":2,"amt":3630},"partialState":{"h":9,"t":54,"tokens":[18190,7013,5229,2000],"delegation":[17190,6013,4229,1000],"delegatorTokens":9999999962710}},{"ix":66,"action":{"kind":"Delegate","val":0,"amt":4993},"partialState":{"h":9,"t":54,"tokens":[23183,7013,5229,2000],"delegation":[22183,6013,4229,1000],"delegatorTokens":9999999957717}},{"ix":67,"action":{"kind":"Undelegate","val":3,"amt":2458},"partialState":{"h":9,"t":54,"tokens":[23183,7013,5229,2000],"delegation":[22183,6013,4229,1000],"delegatorTokens":9999999957717}},{"ix":68,"action":{"kind":"Undelegate","val":1,"amt":2167},"partialState":{"h":9,"t":54,"tokens":[23183,4846,5229,2000],"delegation":[22183,3846,4229,1000],"delegatorTokens":9999999957717}},{"ix":69,"action":{"kind":"Deliver","chain":"consumer","numPackets":2},"partialState":{"h":9,"t":54,"consumerPower":[10440,7396,null,null],"outstandingDowntime":[false,false,true,true]}},{"ix":70,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":71,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":10,"t":60,"tokens":[23183,4846,5229,2000],"delegation":[22183,3846,4229,1000],"delegatorTokens":9999999957717,"jailed":[1000000000000029,null,null,null],"status":["unbonding","bonded","bonded","unbonded"]}},{"ix":72,"action":{"kind":"Delegate","val":2,"amt":4712},"partialState":{"h":10,"t":60,"tokens":[23183,4846,9941,2000],"delegation":[22183,3846,8941,1000],"delegatorTokens":9999999953005}},{"ix":73,"action":{"kind":"Undelegate","val":0,"amt":4830},"partialState":{"h":10,"t":60,"tokens":[18353,4846,9941,2000],"delegation":[17353,3846,8941,1000],"delegatorTokens":9999999953005}},{"ix":74,"action":{"kind":"Undelegate","val":2,"amt":4263},"partialState":{"h":10,"t":60,"tokens":[18353,4846,5678,2000],"delegation":[17353,3846,4678,1000],"delegatorTokens":9999999953005}},{"ix":75,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":76,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":10,"t":60,"consumerPower":[null,7860,5914,null],"outstandingDowntime":[false,false,true,true]}},{"ix":77,"action":{"kind":"Undelegate","val":0,"amt":3317},"partialState":{"h":10,"t":60,"tokens":[15036,4846,5678,2000],"delegation":[14036,3846,4678,1000],"delegatorTokens":9999999953005}},{"ix":78,"action":{"kind":"Deliver","chain":"provider","numPackets":6},"partialState":{"h":10,"t":60,"tokens":[15036,4846,5678,2000],"delegation":[14036,3846,4678,1000],"delegatorTokens":9999999953005,"jailed":[1000000000000029,null,null,null],"status":["unbonding","bonded","bonded","unbonded"]}},{"ix":79,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":80,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":81,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":11,"t":66,"consumerPower":[null,7860,5914,null],"outstandingDowntime":[false,false,true,true]}},{"ix":82,"action":{"kind":"Delegate","val":3,"amt":1905},"partialState":{"h":10,"t":60,"tokens":[15036,4846,5678,3905],"delegation":[14036,3846,4678,2905],"delegatorTokens":9999999951100}},{"ix":83,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":12,"t":72,"consumerPower":[null,7860,5914,null],"outstandingDowntime":[false,false,true,true]}},{"ix":84,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":85,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":86,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":13,"t":78,"consumerPower":[null,7860,5914,null],"outstandingDowntime":[false,false,true,true]}},{"ix":87,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":88,"action":{"kind":"Delegate","val":2,"amt":1192},"partialState":{"h":10,"t":60,"tokens":[15036,4846,6870,3905],"delegation":[14036,3846,5870,2905],"delegatorTokens":9999999949908}},{"ix":89,"action":{"kind":"Delegate","val":3,"amt":1619},"partialState":{"h":10,"t":60,"tokens":[15036,4846,6870,5524],"delegation":[14036,3846,5870,4524],"delegatorTokens":9999999948289}},{"ix":90,"action":{"kind":"Undelegate","val":3,"amt":2942},"partialState":{"h":10,"t":60,"tokens":[15036,4846,6870,2582],"delegation":[14036,3846,5870,1582],"delegatorTokens":9999999948289}},{"ix":91,"action":{"kind":"Delegate","val":2,"amt":2090},"partialState":{"h":10,"t":60,"tokens":[15036,4846,8960,2582],"delegation":[14036,3846,7960,1582],"delegatorTokens":9999999946199}},{"ix":92,"action":{"kind":"Delegate","val":2,"amt":1049},"partialState":{"h":10,"t":60,"tokens":[15036,4846,10009,2582],"delegation":[14036,3846,9009,1582],"delegatorTokens":9999999945150}},{"ix":93,"action":{"kind":"Undelegate","val":3,"amt":4469},"partialState":{"h":10,"t":60,"tokens":[15036,4846,10009,2582],"delegation":[14036,3846,9009,1582],"delegatorTokens":9999999945150}},{"ix":94,"action":{"kind":"Delegate","val":2,"amt":4799},"partialState":{"h":10,"t":60,"tokens":[15036,4846,14808,2582],"delegation":[14036,3846,13808,1582],"delegatorTokens":9999999940351}},{"ix":95,"action":{"kind":"Undelegate","val":1,"amt":3674},"partialState":{"h":10,"t":60,"tokens":[15036,1172,14808,2582],"delegation":[14036,172,13808,1582],"delegatorTokens":9999999940351}},{"ix":96,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":97,"action":{"kind":"Deliver","chain":"consumer","numPackets":2},"partialState":{"h":13,"t":78,"consumerPower":[null,7860,5914,null],"outstandingDowntime":[false,false,true,true]}},{"ix":98,"action":{"kind":"Undelegate","val":2,"amt":3946},"partialState":{"h":10,"t":60,"tokens":[15036,1172,10862,2582],"delegation":[14036,172,9862,1582],"delegatorTokens":9999999940351}},{"ix":99,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":11,"t":66,"tokens":[15036,1172,10862,2582],"delegation":[14036,172,9862,1582],"delegatorTokens":9999999940351,"jailed":[1000000000000029,null,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":100,"action":{"kind":"Undelegate","val":3,"amt":2240},"partialState":{"h":11,"t":66,"tokens":[15036,1172,10862,2582],"delegation":[14036,172,9862,1582],"delegatorTokens":9999999940351}},{"ix":101,"action":{"kind":"Undelegate","val":1,"amt":4996},"partialState":{"h":11,"t":66,"tokens":[15036,1172,10862,2582],"delegation":[14036,172,9862,1582],"delegatorTokens":9999999940351}},{"ix":102,"action":{"kind":"Delegate","val":2,"amt":2691},"partialState":{"h":11,"t":66,"tokens":[15036,1172,13553,2582],"delegation":[14036,172,12553,1582],"delegatorTokens":9999999937660}},{"ix":103,"action":{"kind":"Delegate","val":2,"amt":2760},"partialState":{"h":11,"t":66,"tokens":[15036,1172,16313,2582],"delegation":[14036,172,15313,1582],"delegatorTokens":9999999934900}},{"ix":104,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":105,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":106,"action":{"kind":"Delegate","val":2,"amt":1921},"partialState":{"h":11,"t":66,"tokens":[15036,1172,18234,2582],"delegation":[14036,172,17234,1582],"delegatorTokens":9999999932979}},{"ix":107,"action":{"kind":"Delegate","val":2,"amt":1135},"partialState":{"h":11,"t":66,"tokens":[15036,1172,19369,2582],"delegation":[14036,172,18369,1582],"delegatorTokens":9999999931844}},{"ix":108,"action":{"kind":"Undelegate","val":1,"amt":1918},"partialState":{"h":11,"t":66,"tokens":[15036,1172,19369,2582],"delegation":[14036,172,18369,1582],"delegatorTokens":9999999931844}},{"ix":109,"action":{"kind":"Deliver","chain":"consumer","numPackets":5},"partialState":{"h":13,"t":78,"consumerPower":[null,7860,5914,null],"outstandingDowntime":[false,false,true,true]}},{"ix":110,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":14,"t":84,"consumerPower":[null,4846,5229,null],"outstandingDowntime":[false,false,true,true]}},{"ix":111,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":112,"action":{"kind":"Delegate","val":3,"amt":4910},"partialState":{"h":11,"t":66,"tokens":[15036,1172,19369,7492],"delegation":[14036,172,18369,6492],"delegatorTokens":9999999926934}},{"ix":113,"action":{"kind":"Deliver","chain":"consumer","numPackets":3},"partialState":{"h":14,"t":84,"consumerPower":[null,4846,5229,null],"outstandingDowntime":[false,false,true,true]}},{"ix":114,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":15,"t":90,"consumerPower":[null,4846,5229,null],"outstandingDowntime":[false,false,true,true]}},{"ix":115,"action":{"kind":"Delegate","val":0,"amt":1014},"partialState":{"h":11,"t":66,"tokens":[16050,1172,19369,7492],"delegation":[15050,172,18369,6492],"delegatorTokens":9999999925920}},{"ix":116,"action":{"kind":"Undelegate","val":1,"amt":3997},"partialState":{"h":11,"t":66,"tokens":[16050,1172,19369,7492],"delegation":[15050,172,18369,6492],"delegatorTokens":9999999925920}},{"ix":117,"action":{"kind":"Deliver","chain":"provider","numPackets":3},"partialState":{"h":11,"t":66,"tokens":[16050,1172,19369,7492],"delegation":[15050,172,18369,6492],"delegatorTokens":9999999925920,"jailed":[1000000000000029,null,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":118,"action":{"kind":"Undelegate","val":1,"amt":3731},"partialState":{"h":11,"t":66,"tokens":[16050,1172,19369,7492],"delegation":[15050,172,18369,6492],"delegatorTokens":9999999925920}},{"ix":119,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":12,"t":72,"tokens":[16050,1172,19369,7492],"delegation":[15050,172,18369,6492],"delegatorTokens":9999999925920,"jailed":[1000000000000029,null,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":120,"action":{"kind":"Undelegate","val":3,"amt":1225},"partialState":{"h":12,"t":72,"tokens":[16050,1172,19369,6267],"delegation":[15050,172,18369,5267],"delegatorTokens":9999999925920}},{"ix":121,"action":{"kind":"Delegate","val":2,"amt":1948},"partialState":{"h":12,"t":72,"tokens":[16050,1172,21317,6267],"delegation":[15050,172,20317,5267],"delegatorTokens":9999999923972}},{"ix":122,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":16,"t":96,"consumerPower":[null,4846,5229,null],"outstandingDowntime":[false,false,true,true]}},{"ix":123,"action":{"kind":"Undelegate","val":3,"amt":3581},"partialState":{"h":12,"t":72,"tokens":[16050,1172,21317,2686],"delegation":[15050,172,20317,1686],"delegatorTokens":9999999923972}},{"ix":124,"action":{"kind":"Undelegate","val":2,"amt":3006},"partialState":{"h":12,"t":72,"tokens":[16050,1172,18311,2686],"delegation":[15050,172,17311,1686],"delegatorTokens":9999999923972}},{"ix":125,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":126,"action":{"kind":"Undelegate","val":0,"amt":1252},"partialState":{"h":12,"t":72,"tokens":[14798,1172,18311,2686],"delegation":[13798,172,17311,1686],"delegatorTokens":9999999923972}},{"ix":127,"action":{"kind":"Delegate","val":0,"amt":1934},"partialState":{"h":12,"t":72,"tokens":[16732,1172,18311,2686],"delegation":[15732,172,17311,1686],"delegatorTokens":9999999922038}},{"ix":128,"action":{"kind":"Undelegate","val":1,"amt":4996},"partialState":{"h":12,"t":72,"tokens":[16732,1172,18311,2686],"delegation":[15732,172,17311,1686],"delegatorTokens":9999999922038}},{"ix":129,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":13,"t":78,"tokens":[16732,1172,18311,2686],"delegation":[15732,172,17311,1686],"delegatorTokens":9999999922038,"jailed":[1000000000000029,null,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":130,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":17,"t":102,"consumerPower":[null,4846,5229,null],"outstandingDowntime":[false,false,true,true]}},{"ix":131,"action":{"kind":"Delegate","val":3,"amt":2362},"partialState":{"h":13,"t":78,"tokens":[16732,1172,18311,5048],"delegation":[15732,172,17311,4048],"delegatorTokens":9999999919676}},{"ix":132,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":133,"action":{"kind":"Delegate","val":3,"amt":2860},"partialState":{"h":13,"t":78,"tokens":[16732,1172,18311,7908],"delegation":[15732,172,17311,6908],"delegatorTokens":9999999916816}},{"ix":134,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":18,"t":108,"consumerPower":[null,4846,5229,null],"outstandingDowntime":[false,false,true,true]}},{"ix":135,"action":{"kind":"Undelegate","val":1,"amt":2412},"partialState":{"h":13,"t":78,"tokens":[16732,1172,18311,7908],"delegation":[15732,172,17311,6908],"delegatorTokens":9999999916816}},{"ix":136,"action":{"kind":"Undelegate","val":2,"amt":3493},"partialState":{"h":13,"t":78,"tokens":[16732,1172,14818,7908],"delegation":[15732,172,13818,6908],"delegatorTokens":9999999916816}},{"ix":137,"action":{"kind":"Undelegate","val":1,"amt":2876},"partialState":{"h":13,"t":78,"tokens":[16732,1172,14818,7908],"delegation":[15732,172,13818,6908],"delegatorTokens":9999999916816}},{"ix":138,"action":{"kind":"Delegate","val":1,"amt":3760},"partialState":{"h":13,"t":78,"tokens":[16732,4932,14818,7908],"delegation":[15732,3932,13818,6908],"delegatorTokens":9999999913056}},{"ix":139,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":140,"action":{"kind":"Delegate","val":0,"amt":4170},"partialState":{"h":13,"t":78,"tokens":[20902,4932,14818,7908],"delegation":[19902,3932,13818,6908],"delegatorTokens":9999999908886}},{"ix":141,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":142,"action":{"kind":"Delegate","val":2,"amt":1007},"partialState":{"h":13,"t":78,"tokens":[20902,4932,15825,7908],"delegation":[19902,3932,14825,6908],"delegatorTokens":9999999907879}},{"ix":143,"action":{"kind":"Deliver","chain":"consumer","numPackets":5},"partialState":{"h":18,"t":108,"consumerPower":[null,4846,5229,null],"outstandingDowntime":[false,false,true,true]}},{"ix":144,"action":{"kind":"Delegate","val":3,"amt":3794},"partialState":{"h":13,"t":78,"tokens":[20902,4932,15825,11702],"delegation":[19902,3932,14825,10702],"delegatorTokens":9999999904085}},{"ix":145,"action":{"kind":"Deliver","chain":"consumer","numPackets":4},"partialState":{"h":18,"t":108,"consumerPower":[null,4846,5229,null],"outstandingDowntime":[false,false,true,true]}},{"ix":146,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":14,"t":84,"tokens":[20902,4932,15825,11702],"delegation":[19902,3932,14825,10702],"delegatorTokens":9999999904085,"jailed":[1000000000000029,null,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":147,"action":{"kind":"Deliver","chain":"provider","numPackets":2},"partialState":{"h":14,"t":84,"tokens":[20902,4932,15825,11702],"delegation":[19902,3932,14825,10702],"delegatorTokens":9999999904085,"jailed":[1000000000000029,null,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":148,"action":{"kind":"Deliver","chain":"provider","numPackets":4},"partialState":{"h":14,"t":84,"tokens":[20902,4932,15825,11702],"delegation":[19902,3932,14825,10702],"delegatorTokens":9999999904085,"jailed":[1000000000000029,null,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":149,"action":{"kind":"Deliver","chain":"consumer","numPackets":3},"partialState":{"h":18,"t":108,"consumerPower":[null,4846,5229,null],"outstandingDowntime":[false,false,true,true]}},{"ix":150,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":151,"action":{"kind":"Undelegate","val":3,"amt":1191},"partialState":{"h":14,"t":84,"tokens":[20902,4932,15825,10511],"delegation":[19902,3932,14825,9511],"delegatorTokens":9999999904085}},{"ix":152,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":153,"action":{"kind":"Delegate","val":1,"amt":4034},"partialState":{"h":14,"t":84,"tokens":[20902,8966,15825,10511],"delegation":[19902,7966,14825,9511],"delegatorTokens":9999999900051}},{"ix":154,"action":{"kind":"Delegate","val":1,"amt":1537},"partialState":{"h":14,"t":84,"tokens":[20902,10503,15825,10511],"delegation":[19902,9503,14825,9511],"delegatorTokens":9999999898514}},{"ix":155,"action":{"kind":"Delegate","val":2,"amt":3307},"partialState":{"h":14,"t":84,"tokens":[20902,10503,19132,10511],"delegation":[19902,9503,18132,9511],"delegatorTokens":9999999895207}},{"ix":156,"action":{"kind":"Delegate","val":2,"amt":3848},"partialState":{"h":14,"t":84,"tokens":[20902,10503,22980,10511],"delegation":[19902,9503,21980,9511],"delegatorTokens":9999999891359}},{"ix":157,"action":{"kind":"Undelegate","val":1,"amt":1851},"partialState":{"h":14,"t":84,"tokens":[20902,8652,22980,10511],"delegation":[19902,7652,21980,9511],"delegatorTokens":9999999891359}},{"ix":158,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":159,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":15,"t":90,"tokens":[20902,8652,22980,10511],"delegation":[19902,7652,21980,9511],"delegatorTokens":9999999891359,"jailed":[1000000000000029,null,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":160,"action":{"kind":"Undelegate","val":0,"amt":1028},"partialState":{"h":15,"t":90,"tokens":[19874,8652,22980,10511],"delegation":[18874,7652,21980,9511],"delegatorTokens":9999999891359}},{"ix":161,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":16,"t":96,"tokens":[19874,8652,22980,10511],"delegation":[18874,7652,21980,9511],"delegatorTokens":9999999891359,"jailed":[1000000000000029,null,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":162,"action":{"kind":"Deliver","chain":"consumer","numPackets":2},"partialState":{"h":18,"t":108,"consumerPower":[null,4846,5229,null],"outstandingDowntime":[false,false,true,true]}},{"ix":163,"action":{"kind":"Deliver","chain":"consumer","numPackets":1},"partialState":{"h":18,"t":108,"consumerPower":[null,4846,5229,null],"outstandingDowntime":[false,false,true,true]}},{"ix":164,"action":{"kind":"Undelegate","val":0,"amt":4972},"partialState":{"h":16,"t":96,"tokens":[14902,8652,22980,10511],"delegation":[13902,7652,21980,9511],"delegatorTokens":9999999891359}},{"ix":165,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":19,"t":114,"consumerPower":[null,null,22980,10511],"outstandingDowntime":[false,false,true,true]}},{"ix":166,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":20,"t":120,"consumerPower":[null,null,22980,10511],"outstandingDowntime":[false,false,true,true]}},{"ix":167,"action":{"kind":"Undelegate","val":0,"amt":3738},"partialState":{"h":16,"t":96,"tokens":[11164,8652,22980,10511],"delegation":[10164,7652,21980,9511],"delegatorTokens":9999999891359}},{"ix":168,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":169,"action":{"kind":"Deliver","chain":"provider","numPackets":6},"partialState":{"h":16,"t":96,"tokens":[11164,8652,22980,10511],"delegation":[10164,7652,21980,9511],"delegatorTokens":9999999891359,"jailed":[1000000000000029,null,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":170,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":171,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":172,"action":{"kind":"Deliver","chain":"consumer","numPackets":1},"partialState":{"h":20,"t":120,"consumerPower":[null,null,22980,10511],"outstandingDowntime":[false,false,true,true]}},{"ix":173,"action":{"kind":"Deliver","chain":"consumer","numPackets":3},"partialState":{"h":20,"t":120,"consumerPower":[null,null,22980,10511],"outstandingDowntime":[false,false,true,true]}},{"ix":174,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":175,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":21,"t":126,"consumerPower":[null,null,22980,10511],"outstandingDowntime":[false,false,true,true]}},{"ix":176,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":17,"t":102,"tokens":[11164,8652,22980,10511],"delegation":[10164,7652,21980,9511],"delegatorTokens":9999999891359,"jailed":[1000000000000029,null,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":177,"action":{"kind":"Undelegate","val":2,"amt":1054},"partialState":{"h":17,"t":102,"tokens":[11164,8652,21926,10511],"delegation":[10164,7652,20926,9511],"delegatorTokens":9999999891359}},{"ix":178,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":179,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":180,"action":{"kind":"Delegate","val":2,"amt":4732},"partialState":{"h":17,"t":102,"tokens":[11164,8652,26658,10511],"delegation":[10164,7652,25658,9511],"delegatorTokens":9999999886627}},{"ix":181,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":18,"t":108,"tokens":[11164,8652,26658,10511],"delegation":[10164,7652,25658,9511],"delegatorTokens":9999999889971,"jailed":[1000000000000029,null,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":182,"action":{"kind":"Deliver","chain":"provider","numPackets":6},"partialState":{"h":18,"t":108,"tokens":[11164,8652,26658,10511],"delegation":[10164,7652,25658,9511],"delegatorTokens":9999999889971,"jailed":[1000000000000029,null,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":183,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":19,"t":114,"tokens":[11164,8652,26658,10511],"delegation":[10164,7652,25658,9511],"delegatorTokens":9999999891304,"jailed":[1000000000000029,null,null,null],"status":["unbonded","unbonding","bonded","bonded"]}},{"ix":184,"action":{"kind":"Deliver","chain":"consumer","numPackets":1},"partialState":{"h":21,"t":126,"consumerPower":[null,null,22980,10511],"outstandingDowntime":[false,false,true,true]}},{"ix":185,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":20,"t":120,"tokens":[11164,8652,26658,10511],"delegation":[10164,7652,25658,9511],"delegatorTokens":9999999891304,"jailed":[1000000000000029,null,null,null],"status":["unbonded","unbonding","bonded","bonded"]}},{"ix":186,"action":{"kind":"Delegate","val":3,"amt":2800},"partialState":{"h":20,"t":120,"tokens":[11164,8652,26658,13311],"delegation":[10164,7652,25658,12311],"delegatorTokens":9999999888504}},{"ix":187,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":188,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":189,"action":{"kind":"Undelegate","val":2,"amt":1094},"partialState":{"h":20,"t":120,"tokens":[11164,8652,25564,13311],"delegation":[10164,7652,24564,12311],"delegatorTokens":9999999888504}},{"ix":190,"action":{"kind":"Undelegate","val":0,"amt":2855},"partialState":{"h":20,"t":120,"tokens":[8309,8652,25564,13311],"delegation":[7309,7652,24564,12311],"delegatorTokens":9999999888504}},{"ix":191,"action":{"kind":"Deliver","chain":"provider","numPackets":1},"partialState":{"h":20,"t":120,"tokens":[8309,8652,25564,13311],"delegation":[7309,7652,24564,12311],"delegatorTokens":9999999888504,"jailed":[1000000000000029,null,null,null],"status":["unbonded","unbonding","bonded","bonded"]}},{"ix":192,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":193,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":194,"action":{"kind":"Deliver","chain":"provider","numPackets":6},"partialState":{"h":20,"t":120,"tokens":[8309,8652,25564,13311],"delegation":[7309,7652,24564,12311],"delegatorTokens":9999999888504,"jailed":[1000000000000029,null,null,null],"status":["unbonded","unbonding","bonded","bonded"]}},{"ix":195,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":196,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":197,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":198,"action":{"kind":"Deliver","chain":"consumer","numPackets":2},"partialState":{"h":21,"t":126,"consumerPower":[null,null,22980,10511],"outstandingDowntime":[false,false,true,true]}},{"ix":199,"action":{"kind":"Deliver","chain":"provider","numPackets":3},"partialState":{"h":20,"t":120,"tokens":[8309,8652,25564,13311],"delegation":[7309,7652,24564,12311],"delegatorTokens":9999999888504,"jailed":[1000000000000029,null,null,null],"status":["unbonded","unbonding","bonded","bonded"]}}],"events":["insufficient_shares","send_downtime_slash_request","insufficient_shares","insufficient_shares","insufficient_shares","send_downtime_slash_request","insufficient_shares","send_downtime_slash_request","receive_slash_request_unbonded","send_vsc_without_downtime_ack","insufficient_shares","insufficient_shares","consumer_update_val","consumer_update_val","receive_downtime_slash_request","jail","receive_slash_request_unbonded","send_vsc_with_downtime_ack","more_than_one_third_val_power_change","send_vsc_without_downtime_ack","send_vsc_without_downtime_ack","receive_downtime_slash_ack","insufficient_shares","send_vsc_without_downtime_ack","consumer_del_val","consumer_update_val","consumer_add_val","insufficient_shares","send_vsc_without_downtime_ack","insufficient_shares","insufficient_shares","insufficient_shares","consumer_update_val","consumer_update_val","consumer_send_maturation","insufficient_shares","insufficient_shares","send_vsc_without_downtime_ack","insufficient_shares","send_vsc_without_downtime_ack","insufficient_shares","insufficient_shares","send_vsc_without_downtime_ack","send_vsc_without_downtime_ack","send_vsc_not_because_change","send_vsc_without_downtime_ack","consumer_send_maturation","consumer_send_maturation","consumer_del_val","consumer_update_val","consumer_add_val","set_undel_hold_false","set_undel_hold_false","set_unval_hold_false","send_vsc_not_because_change","send_vsc_without_downtime_ack","complete_undel_in_endblock","send_vsc_without_downtime_ack","complete_unval_in_endblock","complete_undel_in_endblock"]},{"meta":{"commit":"7ffd0c04e4205cbc9caf212abfe6c59ee43153bf"},"constants":{"P":"provider","C":"consumer","UNBONDING_SECONDS_P":70,"UNBONDING_SECONDS_C":50,"TRUSTING_SECONDS":49,"NUM_VALIDATORS":4,"MAX_VALIDATORS":2,"SLASH_DOUBLESIGN":0,"SLASH_DOWNTIME":0,"JAIL_SECONDS":999999999999999,"BLOCK_SECONDS":6,"INITIAL_DELEGATOR_TOKENS":10000000000000,"DELEGATE_AMT_MIN":1000,"DELEGATE_AMT_MAX":5000,"UNDELEGATE_AMT_MIN":1000,"UNDELEGATE_AMT_MAX":5000,"ISDOWNTIME_PROBABILITY":0.5,"MAX_NUM_PACKETS_FOR_DELIVER":6},"actions":[{"ix":0,"action":{"kind":"Deliver","chain":"provider","numPackets":5},"partialState":{"h":1,"t":6,"tokens":[5000,4000,3000,2000],"delegation":[4000,3000,2000,1000],"delegatorTokens":10000000000000,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":1,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":2,"action":{"kind":"Undelegate","val":3,"amt":3999},"partialState":{"h":1,"t":6,"tokens":[5000,4000,3000,2000],"delegation":[4000,3000,2000,1000],"delegatorTokens":10000000000000}},{"ix":3,"action":{"kind":"ConsumerSlash","val":0,"infractionHeight":0,"isDowntime":true},"partialState":{"h":1,"t":6,"outstandingDowntime":[true,false,false,false]}},{"ix":4,"action":{"kind":"Deliver","chain":"provider","numPackets":1},"partialState":{"h":1,"t":6,"tokens":[5000,4000,3000,2000],"delegation":[4000,3000,2000,1000],"delegatorTokens":10000000000000,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":5,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":6,"action":{"kind":"Deliver","chain":"provider","numPackets":1},"partialState":{"h":1,"t":6,"tokens":[5000,4000,3000,2000],"delegation":[4000,3000,2000,1000],"delegatorTokens":10000000000000,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":7,"action":{"kind":"Undelegate","val":0,"amt":2152},"partialState":{"h":1,"t":6,"tokens":[2848,4000,3000,2000],"delegation":[1848,3000,2000,1000],"delegatorTokens":10000000000000}},{"ix":8,"action":{"kind":"ConsumerSlash","val":3,"infractionHeight":0,"isDowntime":true},"partialState":{"h":1,"t":6,"outstandingDowntime":[true,false,false,true]}},{"ix":9,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":2,"t":12,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[true,false,false,true]}},{"ix":10,"action":{"kind":"Deliver","chain":"consumer","numPackets":6},"partialState":{"h":2,"t":12,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[true,false,false,true]}},{"ix":11,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":12,"action":{"kind":"ConsumerSlash","val":2,"infractionHeight":1,"isDowntime":true},"partialState":{"h":2,"t":12,"outstandingDowntime":[true,false,true,true]}},{"ix":13,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":14,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":3,"t":18,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[true,false,true,true]}},{"ix":15,"action":{"kind":"Undelegate","val":1,"amt":3233},"partialState":{"h":1,"t":6,"tokens":[2848,4000,3000,2000],"delegation":[1848,3000,2000,1000],"delegatorTokens":10000000000000}},{"ix":16,"action":{"kind":"Deliver","chain":"consumer","numPackets":6},"partialState":{"h":3,"t":18,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[true,false,true,true]}},{"ix":17,"action":{"kind":"Undelegate","val":2,"amt":2885},"partialState":{"h":1,"t":6,"tokens":[2848,4000,3000,2000],"delegation":[1848,3000,2000,1000],"delegatorTokens":10000000000000}},{"ix":18,"action":{"kind":"Delegate","val":0,"amt":4898},"partialState":{"h":1,"t":6,"tokens":[7746,4000,3000,2000],"delegation":[6746,3000,2000,1000],"delegatorTokens":9999999995102}},{"ix":19,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":2,"t":12,"tokens":[7746,4000,3000,2000],"delegation":[6746,3000,2000,1000],"delegatorTokens":9999999995102,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":20,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":21,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":4,"t":24,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[true,false,true,true]}},{"ix":22,"action":{"kind":"Undelegate","val":3,"amt":3664},"partialState":{"h":2,"t":12,"tokens":[7746,4000,3000,2000],"delegation":[6746,3000,2000,1000],"delegatorTokens":9999999995102}},{"ix":23,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":24,"action":{"kind":"Deliver","chain":"consumer","numPackets":3},"partialState":{"h":4,"t":24,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[true,false,true,true]}},{"ix":25,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":26,"action":{"kind":"Undelegate","val":0,"amt":4276},"partialState":{"h":2,"t":12,"tokens":[3470,4000,3000,2000],"delegation":[2470,3000,2000,1000],"delegatorTokens":9999999995102}},{"ix":27,"action":{"kind":"Delegate","val":0,"amt":1993},"partialState":{"h":2,"t":12,"tokens":[5463,4000,3000,2000],"delegation":[4463,3000,2000,1000],"delegatorTokens":9999999993109}},{"ix":28,"action":{"kind":"Delegate","val":1,"amt":2337},"partialState":{"h":2,"t":12,"tokens":[5463,6337,3000,2000],"delegation":[4463,5337,2000,1000],"delegatorTokens":9999999990772}},{"ix":29,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":30,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":31,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":3,"t":18,"tokens":[5463,6337,3000,2000],"delegation":[4463,5337,2000,1000],"delegatorTokens":9999999990772,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":32,"action":{"kind":"Deliver","chain":"provider","numPackets":6},"partialState":{"h":3,"t":18,"tokens":[5463,6337,3000,2000],"delegation":[4463,5337,2000,1000],"delegatorTokens":9999999990772,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":33,"action":{"kind":"Undelegate","val":3,"amt":4899},"partialState":{"h":3,"t":18,"tokens":[5463,6337,3000,2000],"delegation":[4463,5337,2000,1000],"delegatorTokens":9999999990772}},{"ix":34,"action":{"kind":"Undelegate","val":3,"amt":1318},"partialState":{"h":3,"t":18,"tokens":[5463,6337,3000,2000],"delegation":[4463,5337,2000,1000],"delegatorTokens":9999999990772}},{"ix":35,"action":{"kind":"Undelegate","val":3,"amt":1879},"partialState":{"h":3,"t":18,"tokens":[5463,6337,3000,2000],"delegation":[4463,5337,2000,1000],"delegatorTokens":9999999990772}},{"ix":36,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":37,"action":{"kind":"Delegate","val":0,"amt":3670},"partialState":{"h":3,"t":18,"tokens":[9133,6337,3000,2000],"delegation":[8133,5337,2000,1000],"delegatorTokens":9999999987102}},{"ix":38,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":4,"t":24,"tokens":[9133,6337,3000,2000],"delegation":[8133,5337,2000,1000],"delegatorTokens":9999999987102,"jailed":[1000000000000017,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":39,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":40,"action":{"kind":"Deliver","chain":"consumer","numPackets":2},"partialState":{"h":4,"t":24,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[true,false,true,true]}},{"ix":41,"action":{"kind":"Deliver","chain":"provider","numPackets":5},"partialState":{"h":4,"t":24,"tokens":[9133,6337,3000,2000],"delegation":[8133,5337,2000,1000],"delegatorTokens":9999999987102,"jailed":[1000000000000017,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":42,"action":{"kind":"Deliver","chain":"consumer","numPackets":1},"partialState":{"h":4,"t":24,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[true,false,true,true]}},{"ix":43,"action":{"kind":"Deliver","chain":"consumer","numPackets":3},"partialState":{"h":4,"t":24,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[true,false,true,true]}},{"ix":44,"action":{"kind":"Deliver","chain":"provider","numPackets":5},"partialState":{"h":4,"t":24,"tokens":[9133,6337,3000,2000],"delegation":[8133,5337,2000,1000],"delegatorTokens":9999999987102,"jailed":[1000000000000017,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":45,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":5,"t":30,"consumerPower":[5463,6337,null,null],"outstandingDowntime":[true,false,true,true]}},{"ix":46,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":6,"t":36,"consumerPower":[5463,6337,null,null],"outstandingDowntime":[true,false,true,true]}},{"ix":47,"action":{"kind":"Deliver","chain":"consumer","numPackets":3},"partialState":{"h":6,"t":36,"consumerPower":[5463,6337,null,null],"outstandingDowntime":[true,false,true,true]}},{"ix":48,"action":{"kind":"Deliver","chain":"consumer","numPackets":1},"partialState":{"h":6,"t":36,"consumerPower":[5463,6337,null,null],"outstandingDowntime":[true,false,true,true]}},{"ix":49,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":50,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":51,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":52,"action":{"kind":"Deliver","chain":"provider","numPackets":5},"partialState":{"h":4,"t":24,"tokens":[9133,6337,3000,2000],"delegation":[8133,5337,2000,1000],"delegatorTokens":9999999987102,"jailed":[1000000000000017,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":53,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":54,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":55,"action":{"kind":"Deliver","chain":"consumer","numPackets":4},"partialState":{"h":6,"t":36,"consumerPower":[5463,6337,null,null],"outstandingDowntime":[true,false,true,true]}},{"ix":56,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":57,"action":{"kind":"Deliver","chain":"consumer","numPackets":4},"partialState":{"h":6,"t":36,"consumerPower":[5463,6337,null,null],"outstandingDowntime":[true,false,true,true]}},{"ix":58,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":5,"t":30,"tokens":[9133,6337,3000,2000],"delegation":[8133,5337,2000,1000],"delegatorTokens":9999999987102,"jailed":[1000000000000017,null,null,null],"status":["unbonding","bonded","bonded","unbonded"]}},{"ix":59,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":60,"action":{"kind":"Deliver","chain":"provider","numPackets":1},"partialState":{"h":5,"t":30,"tokens":[9133,6337,3000,2000],"delegation":[8133,5337,2000,1000],"delegatorTokens":9999999987102,"jailed":[1000000000000017,null,null,null],"status":["unbonding","bonded","bonded","unbonded"]}},{"ix":61,"action":{"kind":"Undelegate","val":1,"amt":2477},"partialState":{"h":5,"t":30,"tokens":[9133,3860,3000,2000],"delegation":[8133,2860,2000,1000],"delegatorTokens":9999999987102}},{"ix":62,"action":{"kind":"Deliver","chain":"provider","numPackets":4},"partialState":{"h":5,"t":30,"tokens":[9133,3860,3000,2000],"delegation":[8133,2860,2000,1000],"delegatorTokens":9999999987102,"jailed":[1000000000000017,null,null,null],"status":["unbonding","bonded","bonded","unbonded"]}},{"ix":63,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":64,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":7,"t":42,"consumerPower":[5463,6337,null,null],"outstandingDowntime":[true,false,true,true]}},{"ix":65,"action":{"kind":"Deliver","chain":"consumer","numPackets":4},"partialState":{"h":7,"t":42,"consumerPower":[5463,6337,null,null],"outstandingDowntime":[false,false,true,true]}},{"ix":66,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":67,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":8,"t":48,"consumerPower":[9133,6337,null,null],"outstandingDowntime":[false,false,true,true]}},{"ix":68,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":69,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":6,"t":36,"tokens":[9133,3860,3000,2000],"delegation":[8133,2860,2000,1000],"delegatorTokens":9999999987102,"jailed":[1000000000000017,null,null,null],"status":["unbonding","bonded","bonded","unbonded"]}},{"ix":70,"action":{"kind":"Delegate","val":0,"amt":1187},"partialState":{"h":6,"t":36,"tokens":[10320,3860,3000,2000],"delegation":[9320,2860,2000,1000],"delegatorTokens":9999999985915}},{"ix":71,"action":{"kind":"Undelegate","val":3,"amt":1494},"partialState":{"h":6,"t":36,"tokens":[10320,3860,3000,2000],"delegation":[9320,2860,2000,1000],"delegatorTokens":9999999985915}},{"ix":72,"action":{"kind":"Deliver","chain":"consumer","numPackets":3},"partialState":{"h":8,"t":48,"consumerPower":[9133,6337,null,null],"outstandingDowntime":[false,false,true,true]}},{"ix":73,"action":{"kind":"Undelegate","val":3,"amt":4818},"partialState":{"h":6,"t":36,"tokens":[10320,3860,3000,2000],"delegation":[9320,2860,2000,1000],"delegatorTokens":9999999985915}},{"ix":74,"action":{"kind":"Delegate","val":2,"amt":3349},"partialState":{"h":6,"t":36,"tokens":[10320,3860,6349,2000],"delegation":[9320,2860,5349,1000],"delegatorTokens":9999999982566}},{"ix":75,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":9,"t":54,"consumerPower":[null,6337,3000,null],"outstandingDowntime":[false,false,true,true]}},{"ix":76,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":77,"action":{"kind":"Delegate","val":0,"amt":4923},"partialState":{"h":6,"t":36,"tokens":[15243,3860,6349,2000],"delegation":[14243,2860,5349,1000],"delegatorTokens":9999999977643}},{"ix":78,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":79,"action":{"kind":"Undelegate","val":2,"amt":3656},"partialState":{"h":6,"t":36,"tokens":[15243,3860,2693,2000],"delegation":[14243,2860,1693,1000],"delegatorTokens":9999999977643}},{"ix":80,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":81,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":82,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":10,"t":60,"consumerPower":[null,6337,3000,null],"outstandingDowntime":[false,false,true,true]}},{"ix":83,"action":{"kind":"Undelegate","val":1,"amt":3212},"partialState":{"h":6,"t":36,"tokens":[15243,3860,2693,2000],"delegation":[14243,2860,1693,1000],"delegatorTokens":9999999977643}},{"ix":84,"action":{"kind":"Delegate","val":3,"amt":4019},"partialState":{"h":6,"t":36,"tokens":[15243,3860,2693,6019],"delegation":[14243,2860,1693,5019],"delegatorTokens":9999999973624}},{"ix":85,"action":{"kind":"Undelegate","val":1,"amt":2205},"partialState":{"h":6,"t":36,"tokens":[15243,1655,2693,6019],"delegation":[14243,655,1693,5019],"delegatorTokens":9999999973624}},{"ix":86,"action":{"kind":"Deliver","chain":"provider","numPackets":4},"partialState":{"h":6,"t":36,"tokens":[15243,1655,2693,6019],"delegation":[14243,655,1693,5019],"delegatorTokens":9999999973624,"jailed":[1000000000000017,null,null,null],"status":["unbonding","bonded","bonded","unbonded"]}},{"ix":87,"action":{"kind":"Deliver","chain":"provider","numPackets":2},"partialState":{"h":6,"t":36,"tokens":[15243,1655,2693,6019],"delegation":[14243,655,1693,5019],"delegatorTokens":9999999973624,"jailed":[1000000000000017,null,null,null],"status":["unbonding","bonded","bonded","unbonded"]}},{"ix":88,"action":{"kind":"Deliver","chain":"provider","numPackets":4},"partialState":{"h":6,"t":36,"tokens":[15243,1655,2693,6019],"delegation":[14243,655,1693,5019],"delegatorTokens":9999999973624,"jailed":[1000000000000017,null,null,null],"status":["unbonding","bonded","bonded","unbonded"]}},{"ix":89,"action":{"kind":"Delegate","val":2,"amt":3915},"partialState":{"h":6,"t":36,"tokens":[15243,1655,6608,6019],"delegation":[14243,655,5608,5019],"delegatorTokens":9999999969709}},{"ix":90,"action":{"kind":"Delegate","val":3,"amt":4785},"partialState":{"h":6,"t":36,"tokens":[15243,1655,6608,10804],"delegation":[14243,655,5608,9804],"delegatorTokens":9999999964924}},{"ix":91,"action":{"kind":"Deliver","chain":"consumer","numPackets":4},"partialState":{"h":10,"t":60,"consumerPower":[null,6337,3000,null],"outstandingDowntime":[false,false,true,true]}},{"ix":92,"action":{"kind":"Deliver","chain":"provider","numPackets":1},"partialState":{"h":6,"t":36,"tokens":[15243,1655,6608,10804],"delegation":[14243,655,5608,9804],"delegatorTokens":9999999964924,"jailed":[1000000000000017,null,null,null],"status":["unbonding","bonded","bonded","unbonded"]}},{"ix":93,"action":{"kind":"Deliver","chain":"consumer","numPackets":1},"partialState":{"h":10,"t":60,"consumerPower":[null,6337,3000,null],"outstandingDowntime":[false,false,true,true]}},{"ix":94,"action":{"kind":"Deliver","chain":"provider","numPackets":3},"partialState":{"h":6,"t":36,"tokens":[15243,1655,6608,10804],"delegation":[14243,655,5608,9804],"delegatorTokens":9999999964924,"jailed":[1000000000000017,null,null,null],"status":["unbonding","bonded","bonded","unbonded"]}},{"ix":95,"action":{"kind":"Delegate","val":2,"amt":4595},"partialState":{"h":6,"t":36,"tokens":[15243,1655,11203,10804],"delegation":[14243,655,10203,9804],"delegatorTokens":9999999960329}},{"ix":96,"action":{"kind":"Delegate","val":2,"amt":2486},"partialState":{"h":6,"t":36,"tokens":[15243,1655,13689,10804],"delegation":[14243,655,12689,9804],"delegatorTokens":9999999957843}},{"ix":97,"action":{"kind":"Delegate","val":0,"amt":1206},"partialState":{"h":6,"t":36,"tokens":[16449,1655,13689,10804],"delegation":[15449,655,12689,9804],"delegatorTokens":9999999956637}},{"ix":98,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":7,"t":42,"tokens":[16449,1655,13689,10804],"delegation":[15449,655,12689,9804],"delegatorTokens":9999999956637,"jailed":[1000000000000017,null,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":99,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":8,"t":48,"tokens":[16449,1655,13689,10804],"delegation":[15449,655,12689,9804],"delegatorTokens":9999999956637,"jailed":[1000000000000017,null,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":100,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":11,"t":66,"consumerPower":[null,6337,3000,null],"outstandingDowntime":[false,false,true,true]}},{"ix":101,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":9,"t":54,"tokens":[16449,1655,13689,10804],"delegation":[15449,655,12689,9804],"delegatorTokens":9999999956637,"jailed":[1000000000000017,null,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":102,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":12,"t":72,"consumerPower":[null,6337,3000,null],"outstandingDowntime":[false,false,true,true]}},{"ix":103,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":104,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":105,"action":{"kind":"Undelegate","val":1,"amt":1465},"partialState":{"h":9,"t":54,"tokens":[16449,1655,13689,10804],"delegation":[15449,655,12689,9804],"delegatorTokens":9999999956637}},{"ix":106,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":13,"t":78,"consumerPower":[null,6337,3000,null],"outstandingDowntime":[false,false,true,true]}},{"ix":107,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":108,"action":{"kind":"Deliver","chain":"provider","numPackets":6},"partialState":{"h":9,"t":54,"tokens":[16449,1655,13689,10804],"delegation":[15449,655,12689,9804],"delegatorTokens":9999999956637,"jailed":[1000000000000017,null,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":109,"action":{"kind":"Delegate","val":2,"amt":4713},"partialState":{"h":9,"t":54,"tokens":[16449,1655,18402,10804],"delegation":[15449,655,17402,9804],"delegatorTokens":9999999951924}},{"ix":110,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":10,"t":60,"tokens":[16449,1655,18402,10804],"delegation":[15449,655,17402,9804],"delegatorTokens":9999999951924,"jailed":[1000000000000017,null,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":111,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":112,"action":{"kind":"Deliver","chain":"consumer","numPackets":2},"partialState":{"h":13,"t":78,"consumerPower":[null,6337,3000,null],"outstandingDowntime":[false,false,true,true]}},{"ix":113,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":11,"t":66,"tokens":[16449,1655,18402,10804],"delegation":[15449,655,17402,9804],"delegatorTokens":9999999951924,"jailed":[1000000000000017,null,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":114,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":115,"action":{"kind":"Undelegate","val":0,"amt":4790},"partialState":{"h":11,"t":66,"tokens":[11659,1655,18402,10804],"delegation":[10659,655,17402,9804],"delegatorTokens":9999999951924}},{"ix":116,"action":{"kind":"Undelegate","val":2,"amt":2259},"partialState":{"h":11,"t":66,"tokens":[11659,1655,16143,10804],"delegation":[10659,655,15143,9804],"delegatorTokens":9999999951924}},{"ix":117,"action":{"kind":"Undelegate","val":1,"amt":3731},"partialState":{"h":11,"t":66,"tokens":[11659,1655,16143,10804],"delegation":[10659,655,15143,9804],"delegatorTokens":9999999951924}},{"ix":118,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":14,"t":84,"consumerPower":[null,null,13689,10804],"outstandingDowntime":[false,false,true,true]}},{"ix":119,"action":{"kind":"Undelegate","val":3,"amt":4807},"partialState":{"h":11,"t":66,"tokens":[11659,1655,16143,5997],"delegation":[10659,655,15143,4997],"delegatorTokens":9999999951924}},{"ix":120,"action":{"kind":"Deliver","chain":"provider","numPackets":1},"partialState":{"h":11,"t":66,"tokens":[11659,1655,16143,5997],"delegation":[10659,655,15143,4997],"delegatorTokens":9999999951924,"jailed":[1000000000000017,null,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":121,"action":{"kind":"Undelegate","val":3,"amt":2140},"partialState":{"h":11,"t":66,"tokens":[11659,1655,16143,3857],"delegation":[10659,655,15143,2857],"delegatorTokens":9999999951924}},{"ix":122,"action":{"kind":"Deliver","chain":"provider","numPackets":3},"partialState":{"h":11,"t":66,"tokens":[11659,1655,16143,3857],"delegation":[10659,655,15143,2857],"delegatorTokens":9999999951924,"jailed":[1000000000000017,null,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":123,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":124,"action":{"kind":"Undelegate","val":0,"amt":2487},"partialState":{"h":11,"t":66,"tokens":[9172,1655,16143,3857],"delegation":[8172,655,15143,2857],"delegatorTokens":9999999951924}},{"ix":125,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":15,"t":90,"consumerPower":[null,null,13689,10804],"outstandingDowntime":[false,false,true,true]}},{"ix":126,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":16,"t":96,"consumerPower":[null,null,13689,10804],"outstandingDowntime":[false,false,true,true]}},{"ix":127,"action":{"kind":"Deliver","chain":"provider","numPackets":2},"partialState":{"h":11,"t":66,"tokens":[9172,1655,16143,3857],"delegation":[8172,655,15143,2857],"delegatorTokens":9999999951924,"jailed":[1000000000000017,null,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":128,"action":{"kind":"Deliver","chain":"consumer","numPackets":2},"partialState":{"h":16,"t":96,"consumerPower":[null,null,13689,10804],"outstandingDowntime":[false,false,true,true]}},{"ix":129,"action":{"kind":"Undelegate","val":1,"amt":2838},"partialState":{"h":11,"t":66,"tokens":[9172,1655,16143,3857],"delegation":[8172,655,15143,2857],"delegatorTokens":9999999951924}},{"ix":130,"action":{"kind":"Delegate","val":0,"amt":1699},"partialState":{"h":11,"t":66,"tokens":[10871,1655,16143,3857],"delegation":[9871,655,15143,2857],"delegatorTokens":9999999950225}},{"ix":131,"action":{"kind":"Deliver","chain":"provider","numPackets":5},"partialState":{"h":11,"t":66,"tokens":[10871,1655,16143,3857],"delegation":[9871,655,15143,2857],"delegatorTokens":9999999950225,"jailed":[1000000000000017,null,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":132,"action":{"kind":"Undelegate","val":2,"amt":2044},"partialState":{"h":11,"t":66,"tokens":[10871,1655,14099,3857],"delegation":[9871,655,13099,2857],"delegatorTokens":9999999950225}},{"ix":133,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":12,"t":72,"tokens":[10871,1655,14099,3857],"delegation":[9871,655,13099,2857],"delegatorTokens":9999999950225,"jailed":[1000000000000017,null,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":134,"action":{"kind":"Undelegate","val":0,"amt":1318},"partialState":{"h":12,"t":72,"tokens":[9553,1655,14099,3857],"delegation":[8553,655,13099,2857],"delegatorTokens":9999999950225}},{"ix":135,"action":{"kind":"Delegate","val":1,"amt":4607},"partialState":{"h":12,"t":72,"tokens":[9553,6262,14099,3857],"delegation":[8553,5262,13099,2857],"delegatorTokens":9999999945618}},{"ix":136,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":137,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":17,"t":102,"consumerPower":[null,null,18402,10804],"outstandingDowntime":[false,false,true,true]}},{"ix":138,"action":{"kind":"Deliver","chain":"consumer","numPackets":1},"partialState":{"h":17,"t":102,"consumerPower":[null,null,18402,10804],"outstandingDowntime":[false,false,true,true]}},{"ix":139,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":140,"action":{"kind":"Delegate","val":2,"amt":4425},"partialState":{"h":12,"t":72,"tokens":[9553,6262,18524,3857],"delegation":[8553,5262,17524,2857],"delegatorTokens":9999999941193}},{"ix":141,"action":{"kind":"Deliver","chain":"consumer","numPackets":2},"partialState":{"h":17,"t":102,"consumerPower":[null,null,18402,10804],"outstandingDowntime":[false,false,true,true]}},{"ix":142,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":18,"t":108,"consumerPower":[null,null,18402,10804],"outstandingDowntime":[false,false,true,true]}},{"ix":143,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":144,"action":{"kind":"Deliver","chain":"provider","numPackets":4},"partialState":{"h":12,"t":72,"tokens":[9553,6262,18524,3857],"delegation":[8553,5262,17524,2857],"delegatorTokens":9999999941193,"jailed":[1000000000000017,null,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":145,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":13,"t":78,"tokens":[9553,6262,18524,3857],"delegation":[8553,5262,17524,2857],"delegatorTokens":9999999941193,"jailed":[1000000000000017,null,null,null],"status":["unbonding","bonded","bonded","unbonding"]}},{"ix":146,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":14,"t":84,"tokens":[9553,6262,18524,3857],"delegation":[8553,5262,17524,2857],"delegatorTokens":9999999943345,"jailed":[1000000000000017,null,null,null],"status":["unbonding","bonded","bonded","unbonding"]}},{"ix":147,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":148,"action":{"kind":"Deliver","chain":"provider","numPackets":2},"partialState":{"h":14,"t":84,"tokens":[9553,6262,18524,3857],"delegation":[8553,5262,17524,2857],"delegatorTokens":9999999943345,"jailed":[1000000000000017,null,null,null],"status":["unbonding","bonded","bonded","unbonding"]}},{"ix":149,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":150,"action":{"kind":"Undelegate","val":0,"amt":1910},"partialState":{"h":14,"t":84,"tokens":[7643,6262,18524,3857],"delegation":[6643,5262,17524,2857],"delegatorTokens":9999999943345}},{"ix":151,"action":{"kind":"Delegate","val":1,"amt":1379},"partialState":{"h":14,"t":84,"tokens":[7643,7641,18524,3857],"delegation":[6643,6641,17524,2857],"delegatorTokens":9999999941966}},{"ix":152,"action":{"kind":"Deliver","chain":"provider","numPackets":3},"partialState":{"h":14,"t":84,"tokens":[7643,7641,18524,3857],"delegation":[6643,6641,17524,2857],"delegatorTokens":9999999941966,"jailed":[1000000000000017,null,null,null],"status":["unbonding","bonded","bonded","unbonding"]}},{"ix":153,"action":{"kind":"Deliver","chain":"provider","numPackets":4},"partialState":{"h":14,"t":84,"tokens":[7643,7641,18524,3857],"delegation":[6643,6641,17524,2857],"delegatorTokens":9999999941966,"jailed":[1000000000000017,null,null,null],"status":["unbonding","bonded","bonded","unbonding"]}},{"ix":154,"action":{"kind":"Undelegate","val":0,"amt":1725},"partialState":{"h":14,"t":84,"tokens":[5918,7641,18524,3857],"delegation":[4918,6641,17524,2857],"delegatorTokens":9999999941966}},{"ix":155,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":15,"t":90,"tokens":[5918,7641,18524,3857],"delegation":[4918,6641,17524,2857],"delegatorTokens":9999999946242,"jailed":[1000000000000017,null,null,null],"status":["unbonding","bonded","bonded","unbonding"]}},{"ix":156,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":19,"t":114,"consumerPower":[null,null,18402,10804],"outstandingDowntime":[false,false,true,true]}},{"ix":157,"action":{"kind":"Delegate","val":1,"amt":1359},"partialState":{"h":15,"t":90,"tokens":[5918,9000,18524,3857],"delegation":[4918,8000,17524,2857],"delegatorTokens":9999999944883}},{"ix":158,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":16,"t":96,"tokens":[5918,9000,18524,3857],"delegation":[4918,8000,17524,2857],"delegatorTokens":9999999944883,"jailed":[1000000000000017,null,null,null],"status":["unbonding","bonded","bonded","unbonding"]}},{"ix":159,"action":{"kind":"Undelegate","val":3,"amt":4829},"partialState":{"h":16,"t":96,"tokens":[5918,9000,18524,3857],"delegation":[4918,8000,17524,2857],"delegatorTokens":9999999944883}},{"ix":160,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":161,"action":{"kind":"Undelegate","val":0,"amt":3681},"partialState":{"h":16,"t":96,"tokens":[2237,9000,18524,3857],"delegation":[1237,8000,17524,2857],"delegatorTokens":9999999944883}},{"ix":162,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":163,"action":{"kind":"Delegate","val":0,"amt":1551},"partialState":{"h":16,"t":96,"tokens":[3788,9000,18524,3857],"delegation":[2788,8000,17524,2857],"delegatorTokens":9999999943332}},{"ix":164,"action":{"kind":"Undelegate","val":3,"amt":2408},"partialState":{"h":16,"t":96,"tokens":[3788,9000,18524,1449],"delegation":[2788,8000,17524,449],"delegatorTokens":9999999943332}},{"ix":165,"action":{"kind":"Undelegate","val":1,"amt":3807},"partialState":{"h":16,"t":96,"tokens":[3788,5193,18524,1449],"delegation":[2788,4193,17524,449],"delegatorTokens":9999999943332}},{"ix":166,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":167,"action":{"kind":"Undelegate","val":2,"amt":1404},"partialState":{"h":16,"t":96,"tokens":[3788,5193,17120,1449],"delegation":[2788,4193,16120,449],"delegatorTokens":9999999943332}},{"ix":168,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":17,"t":102,"tokens":[3788,5193,17120,1449],"delegation":[2788,4193,16120,449],"delegatorTokens":9999999943332,"jailed":[1000000000000017,null,null,null],"status":["unbonding","bonded","bonded","unbonding"]}},{"ix":169,"action":{"kind":"Delegate","val":3,"amt":2167},"partialState":{"h":17,"t":102,"tokens":[3788,5193,17120,3616],"delegation":[2788,4193,16120,2616],"delegatorTokens":9999999941165}},{"ix":170,"action":{"kind":"Undelegate","val":0,"amt":3207},"partialState":{"h":17,"t":102,"tokens":[3788,5193,17120,3616],"delegation":[2788,4193,16120,2616],"delegatorTokens":9999999941165}},{"ix":171,"action":{"kind":"Deliver","chain":"consumer","numPackets":6},"partialState":{"h":19,"t":114,"consumerPower":[null,null,18402,10804],"outstandingDowntime":[false,false,true,true]}},{"ix":172,"action":{"kind":"Delegate","val":1,"amt":1023},"partialState":{"h":17,"t":102,"tokens":[3788,6216,17120,3616],"delegation":[2788,5216,16120,2616],"delegatorTokens":9999999940142}},{"ix":173,"action":{"kind":"Deliver","chain":"consumer","numPackets":3},"partialState":{"h":19,"t":114,"consumerPower":[null,null,18402,10804],"outstandingDowntime":[false,false,true,true]}},{"ix":174,"action":{"kind":"Delegate","val":0,"amt":2135},"partialState":{"h":17,"t":102,"tokens":[5923,6216,17120,3616],"delegation":[4923,5216,16120,2616],"delegatorTokens":9999999938007}},{"ix":175,"action":{"kind":"Undelegate","val":3,"amt":4491},"partialState":{"h":17,"t":102,"tokens":[5923,6216,17120,3616],"delegation":[4923,5216,16120,2616],"delegatorTokens":9999999938007}},{"ix":176,"action":{"kind":"Deliver","chain":"provider","numPackets":3},"partialState":{"h":17,"t":102,"tokens":[5923,6216,17120,3616],"delegation":[4923,5216,16120,2616],"delegatorTokens":9999999938007,"jailed":[1000000000000017,null,null,null],"status":["unbonding","bonded","bonded","unbonding"]}},{"ix":177,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":18,"t":108,"tokens":[5923,6216,17120,3616],"delegation":[4923,5216,16120,2616],"delegatorTokens":9999999938007,"jailed":[1000000000000017,null,null,null],"status":["unbonding","bonded","bonded","unbonding"]}},{"ix":178,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":179,"action":{"kind":"Undelegate","val":1,"amt":1962},"partialState":{"h":18,"t":108,"tokens":[5923,4254,17120,3616],"delegation":[4923,3254,16120,2616],"delegatorTokens":9999999938007}},{"ix":180,"action":{"kind":"Undelegate","val":1,"amt":2064},"partialState":{"h":18,"t":108,"tokens":[5923,2190,17120,3616],"delegation":[4923,1190,16120,2616],"delegatorTokens":9999999938007}},{"ix":181,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":19,"t":114,"tokens":[5923,2190,17120,3616],"delegation":[4923,1190,16120,2616],"delegatorTokens":9999999938007,"jailed":[1000000000000017,null,null,null],"status":["unbonded","unbonding","bonded","bonded"]}},{"ix":182,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":183,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":20,"t":120,"tokens":[5923,2190,17120,3616],"delegation":[4923,1190,16120,2616],"delegatorTokens":9999999938007,"jailed":[1000000000000017,null,null,null],"status":["unbonded","unbonding","bonded","bonded"]}},{"ix":184,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":185,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":186,"action":{"kind":"Delegate","val":2,"amt":2053},"partialState":{"h":20,"t":120,"tokens":[5923,2190,19173,3616],"delegation":[4923,1190,18173,2616],"delegatorTokens":9999999935954}},{"ix":187,"action":{"kind":"Delegate","val":0,"amt":3272},"partialState":{"h":20,"t":120,"tokens":[9195,2190,19173,3616],"delegation":[8195,1190,18173,2616],"delegatorTokens":9999999932682}},{"ix":188,"action":{"kind":"Delegate","val":3,"amt":3934},"partialState":{"h":20,"t":120,"tokens":[9195,2190,19173,7550],"delegation":[8195,1190,18173,6550],"delegatorTokens":9999999928748}},{"ix":189,"action":{"kind":"Undelegate","val":2,"amt":1586},"partialState":{"h":20,"t":120,"tokens":[9195,2190,17587,7550],"delegation":[8195,1190,16587,6550],"delegatorTokens":9999999928748}},{"ix":190,"action":{"kind":"Undelegate","val":1,"amt":4790},"partialState":{"h":20,"t":120,"tokens":[9195,2190,17587,7550],"delegation":[8195,1190,16587,6550],"delegatorTokens":9999999928748}},{"ix":191,"action":{"kind":"Delegate","val":2,"amt":3362},"partialState":{"h":20,"t":120,"tokens":[9195,2190,20949,7550],"delegation":[8195,1190,19949,6550],"delegatorTokens":9999999925386}},{"ix":192,"action":{"kind":"Delegate","val":0,"amt":3643},"partialState":{"h":20,"t":120,"tokens":[12838,2190,20949,7550],"delegation":[11838,1190,19949,6550],"delegatorTokens":9999999921743}},{"ix":193,"action":{"kind":"Delegate","val":1,"amt":2302},"partialState":{"h":20,"t":120,"tokens":[12838,4492,20949,7550],"delegation":[11838,3492,19949,6550],"delegatorTokens":9999999919441}},{"ix":194,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":195,"action":{"kind":"Deliver","chain":"consumer","numPackets":6},"partialState":{"h":19,"t":114,"consumerPower":[null,null,18402,10804],"outstandingDowntime":[false,false,true,true]}},{"ix":196,"action":{"kind":"Delegate","val":3,"amt":3883},"partialState":{"h":20,"t":120,"tokens":[12838,4492,20949,11433],"delegation":[11838,3492,19949,10433],"delegatorTokens":9999999915558}},{"ix":197,"action":{"kind":"Delegate","val":0,"amt":4598},"partialState":{"h":20,"t":120,"tokens":[17436,4492,20949,11433],"delegation":[16436,3492,19949,10433],"delegatorTokens":9999999910960}},{"ix":198,"action":{"kind":"Undelegate","val":2,"amt":4376},"partialState":{"h":20,"t":120,"tokens":[17436,4492,16573,11433],"delegation":[16436,3492,15573,10433],"delegatorTokens":9999999910960}},{"ix":199,"action":{"kind":"Delegate","val":3,"amt":2345},"partialState":{"h":20,"t":120,"tokens":[17436,4492,16573,13778],"delegation":[16436,3492,15573,12778],"delegatorTokens":9999999908615}}],"events":["insufficient_shares","send_downtime_slash_request","send_downtime_slash_request","send_downtime_slash_request","insufficient_shares","insufficient_shares","send_vsc_without_downtime_ack","insufficient_shares","send_vsc_without_downtime_ack","insufficient_shares","insufficient_shares","insufficient_shares","receive_downtime_slash_request","jail","receive_slash_request_unbonded","receive_slash_request_unbonded","send_vsc_with_downtime_ack","consumer_update_val","consumer_update_val","send_vsc_without_downtime_ack","receive_downtime_slash_ack","consumer_update_val","send_vsc_without_downtime_ack","insufficient_shares","insufficient_shares","consumer_del_val","consumer_add_val","insufficient_shares","more_than_one_third_val_power_change","send_vsc_without_downtime_ack","insufficient_shares","send_vsc_without_downtime_ack","insufficient_shares","consumer_send_maturation","consumer_send_maturation","consumer_del_val","consumer_update_val","consumer_add_val","insufficient_shares","set_undel_hold_false","set_undel_hold_false","send_vsc_without_downtime_ack","consumer_send_maturation","consumer_update_val","consumer_send_maturation","rebond_unval","send_vsc_without_downtime_ack","complete_undel_in_endblock","complete_undel_in_endblock","send_vsc_without_downtime_ack","send_vsc_without_downtime_ack","insufficient_shares","send_vsc_without_downtime_ack","insufficient_shares","insufficient_shares","some_undels_expired_but_not_completed","set_unval_hold_false","send_vsc_without_downtime_ack","rebond_unval","complete_unval_in_endblock","some_undels_expired_but_not_completed","send_vsc_without_downtime_ack","insufficient_shares"]},{"meta":{"commit":"7ffd0c04e4205cbc9caf212abfe6c59ee43153bf"},"constants":{"P":"provider","C":"consumer","UNBONDING_SECONDS_P":70,"UNBONDING_SECONDS_C":50,"TRUSTING_SECONDS":49,"NUM_VALIDATORS":4,"MAX_VALIDATORS":2,"SLASH_DOUBLESIGN":0,"SLASH_DOWNTIME":0,"JAIL_SECONDS":999999999999999,"BLOCK_SECONDS":6,"INITIAL_DELEGATOR_TOKENS":10000000000000,"DELEGATE_AMT_MIN":1000,"DELEGATE_AMT_MAX":5000,"UNDELEGATE_AMT_MIN":1000,"UNDELEGATE_AMT_MAX":5000,"ISDOWNTIME_PROBABILITY":0.5,"MAX_NUM_PACKETS_FOR_DELIVER":6},"actions":[{"ix":0,"action":{"kind":"ConsumerSlash","val":3,"infractionHeight":0,"isDowntime":false},"partialState":{"h":1,"t":6,"outstandingDowntime":[false,false,false,false]}},{"ix":1,"action":{"kind":"Delegate","val":0,"amt":2879},"partialState":{"h":1,"t":6,"tokens":[7879,4000,3000,2000],"delegation":[6879,3000,2000,1000],"delegatorTokens":9999999997121}},{"ix":2,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":2,"t":12,"tokens":[7879,4000,3000,2000],"delegation":[6879,3000,2000,1000],"delegatorTokens":9999999997121,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":3,"action":{"kind":"Delegate","val":0,"amt":4625},"partialState":{"h":2,"t":12,"tokens":[12504,4000,3000,2000],"delegation":[11504,3000,2000,1000],"delegatorTokens":9999999992496}},{"ix":4,"action":{"kind":"ConsumerSlash","val":3,"infractionHeight":0,"isDowntime":true},"partialState":{"h":1,"t":6,"outstandingDowntime":[false,false,false,true]}},{"ix":5,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":6,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":7,"action":{"kind":"ConsumerSlash","val":2,"infractionHeight":0,"isDowntime":true},"partialState":{"h":1,"t":6,"outstandingDowntime":[false,false,true,true]}},{"ix":8,"action":{"kind":"Delegate","val":0,"amt":1438},"partialState":{"h":2,"t":12,"tokens":[13942,4000,3000,2000],"delegation":[12942,3000,2000,1000],"delegatorTokens":9999999991058}},{"ix":9,"action":{"kind":"ConsumerSlash","val":0,"infractionHeight":0,"isDowntime":true},"partialState":{"h":1,"t":6,"outstandingDowntime":[true,false,true,true]}},{"ix":10,"action":{"kind":"Deliver","chain":"consumer","numPackets":6},"partialState":{"h":1,"t":6,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[true,false,true,true]}},{"ix":11,"action":{"kind":"Undelegate","val":3,"amt":1901},"partialState":{"h":2,"t":12,"tokens":[13942,4000,3000,2000],"delegation":[12942,3000,2000,1000],"delegatorTokens":9999999991058}},{"ix":12,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":2,"t":12,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[true,false,true,true]}},{"ix":13,"action":{"kind":"Delegate","val":1,"amt":2626},"partialState":{"h":2,"t":12,"tokens":[13942,6626,3000,2000],"delegation":[12942,5626,2000,1000],"delegatorTokens":9999999988432}},{"ix":14,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":15,"action":{"kind":"Deliver","chain":"provider","numPackets":4},"partialState":{"h":2,"t":12,"tokens":[13942,6626,3000,2000],"delegation":[12942,5626,2000,1000],"delegatorTokens":9999999988432,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":16,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":17,"action":{"kind":"Delegate","val":3,"amt":4483},"partialState":{"h":2,"t":12,"tokens":[13942,6626,3000,6483],"delegation":[12942,5626,2000,5483],"delegatorTokens":9999999983949}},{"ix":18,"action":{"kind":"Undelegate","val":0,"amt":3798},"partialState":{"h":2,"t":12,"tokens":[10144,6626,3000,6483],"delegation":[9144,5626,2000,5483],"delegatorTokens":9999999983949}},{"ix":19,"action":{"kind":"Deliver","chain":"provider","numPackets":3},"partialState":{"h":2,"t":12,"tokens":[10144,6626,3000,6483],"delegation":[9144,5626,2000,5483],"delegatorTokens":9999999983949,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":20,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":3,"t":18,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[true,false,true,true]}},{"ix":21,"action":{"kind":"Undelegate","val":3,"amt":4513},"partialState":{"h":2,"t":12,"tokens":[10144,6626,3000,1970],"delegation":[9144,5626,2000,970],"delegatorTokens":9999999983949}},{"ix":22,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":3,"t":18,"tokens":[10144,6626,3000,1970],"delegation":[9144,5626,2000,970],"delegatorTokens":9999999983949,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":23,"action":{"kind":"Deliver","chain":"consumer","numPackets":2},"partialState":{"h":3,"t":18,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[true,false,true,true]}},{"ix":24,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":25,"action":{"kind":"Delegate","val":0,"amt":3228},"partialState":{"h":3,"t":18,"tokens":[13372,6626,3000,1970],"delegation":[12372,5626,2000,970],"delegatorTokens":9999999980721}},{"ix":26,"action":{"kind":"Delegate","val":3,"amt":1627},"partialState":{"h":3,"t":18,"tokens":[13372,6626,3000,3597],"delegation":[12372,5626,2000,2597],"delegatorTokens":9999999979094}},{"ix":27,"action":{"kind":"Deliver","chain":"provider","numPackets":4},"partialState":{"h":3,"t":18,"tokens":[13372,6626,3000,3597],"delegation":[12372,5626,2000,2597],"delegatorTokens":9999999979094,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":28,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":29,"action":{"kind":"Delegate","val":3,"amt":2012},"partialState":{"h":3,"t":18,"tokens":[13372,6626,3000,5609],"delegation":[12372,5626,2000,4609],"delegatorTokens":9999999977082}},{"ix":30,"action":{"kind":"Deliver","chain":"provider","numPackets":4},"partialState":{"h":3,"t":18,"tokens":[13372,6626,3000,5609],"delegation":[12372,5626,2000,4609],"delegatorTokens":9999999977082,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":31,"action":{"kind":"Delegate","val":2,"amt":1763},"partialState":{"h":3,"t":18,"tokens":[13372,6626,4763,5609],"delegation":[12372,5626,3763,4609],"delegatorTokens":9999999975319}},{"ix":32,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":4,"t":24,"tokens":[13372,6626,4763,5609],"delegation":[12372,5626,3763,4609],"delegatorTokens":9999999975319,"jailed":[1000000000000017,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":33,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":4,"t":24,"consumerPower":[7879,4000,null,null],"outstandingDowntime":[true,false,true,true]}},{"ix":34,"action":{"kind":"Deliver","chain":"consumer","numPackets":3},"partialState":{"h":4,"t":24,"consumerPower":[7879,4000,null,null],"outstandingDowntime":[true,false,true,true]}},{"ix":35,"action":{"kind":"Undelegate","val":1,"amt":1006},"partialState":{"h":4,"t":24,"tokens":[13372,5620,4763,5609],"delegation":[12372,4620,3763,4609],"delegatorTokens":9999999975319}},{"ix":36,"action":{"kind":"Deliver","chain":"consumer","numPackets":3},"partialState":{"h":4,"t":24,"consumerPower":[7879,4000,null,null],"outstandingDowntime":[true,false,true,true]}},{"ix":37,"action":{"kind":"Undelegate","val":3,"amt":3172},"partialState":{"h":4,"t":24,"tokens":[13372,5620,4763,2437],"delegation":[12372,4620,3763,1437],"delegatorTokens":9999999975319}},{"ix":38,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":5,"t":30,"tokens":[13372,5620,4763,2437],"delegation":[12372,4620,3763,1437],"delegatorTokens":9999999975319,"jailed":[1000000000000017,null,null,null],"status":["unbonding","bonded","bonded","unbonded"]}},{"ix":39,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":6,"t":36,"tokens":[13372,5620,4763,2437],"delegation":[12372,4620,3763,1437],"delegatorTokens":9999999975319,"jailed":[1000000000000017,null,null,null],"status":["unbonding","bonded","bonded","unbonded"]}},{"ix":40,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":41,"action":{"kind":"Undelegate","val":0,"amt":1775},"partialState":{"h":6,"t":36,"tokens":[11597,5620,4763,2437],"delegation":[10597,4620,3763,1437],"delegatorTokens":9999999975319}},{"ix":42,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":43,"action":{"kind":"Delegate","val":0,"amt":1819},"partialState":{"h":6,"t":36,"tokens":[13416,5620,4763,2437],"delegation":[12416,4620,3763,1437],"delegatorTokens":9999999973500}},{"ix":44,"action":{"kind":"Undelegate","val":0,"amt":2202},"partialState":{"h":6,"t":36,"tokens":[11214,5620,4763,2437],"delegation":[10214,4620,3763,1437],"delegatorTokens":9999999973500}},{"ix":45,"action":{"kind":"Deliver","chain":"provider","numPackets":4},"partialState":{"h":6,"t":36,"tokens":[11214,5620,4763,2437],"delegation":[10214,4620,3763,1437],"delegatorTokens":9999999973500,"jailed":[1000000000000017,null,null,null],"status":["unbonding","bonded","bonded","unbonded"]}},{"ix":46,"action":{"kind":"Delegate","val":1,"amt":2261},"partialState":{"h":6,"t":36,"tokens":[11214,7881,4763,2437],"delegation":[10214,6881,3763,1437],"delegatorTokens":9999999971239}},{"ix":47,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":48,"action":{"kind":"Deliver","chain":"consumer","numPackets":6},"partialState":{"h":4,"t":24,"consumerPower":[7879,4000,null,null],"outstandingDowntime":[false,false,true,true]}},{"ix":49,"action":{"kind":"Delegate","val":1,"amt":1404},"partialState":{"h":6,"t":36,"tokens":[11214,9285,4763,2437],"delegation":[10214,8285,3763,1437],"delegatorTokens":9999999969835}},{"ix":50,"action":{"kind":"Undelegate","val":3,"amt":2108},"partialState":{"h":6,"t":36,"tokens":[11214,9285,4763,2437],"delegation":[10214,8285,3763,1437],"delegatorTokens":9999999969835}},{"ix":51,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":52,"action":{"kind":"Deliver","chain":"provider","numPackets":2},"partialState":{"h":6,"t":36,"tokens":[11214,9285,4763,2437],"delegation":[10214,8285,3763,1437],"delegatorTokens":9999999969835,"jailed":[1000000000000017,null,null,null],"status":["unbonding","bonded","bonded","unbonded"]}},{"ix":53,"action":{"kind":"Delegate","val":2,"amt":4317},"partialState":{"h":6,"t":36,"tokens":[11214,9285,9080,2437],"delegation":[10214,8285,8080,1437],"delegatorTokens":9999999965518}},{"ix":54,"action":{"kind":"Deliver","chain":"consumer","numPackets":6},"partialState":{"h":4,"t":24,"consumerPower":[7879,4000,null,null],"outstandingDowntime":[false,false,true,true]}},{"ix":55,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":7,"t":42,"tokens":[11214,9285,9080,2437],"delegation":[10214,8285,8080,1437],"delegatorTokens":9999999965518,"jailed":[1000000000000017,null,null,null],"status":["unbonding","bonded","bonded","unbonded"]}},{"ix":56,"action":{"kind":"Undelegate","val":1,"amt":4230},"partialState":{"h":7,"t":42,"tokens":[11214,5055,9080,2437],"delegation":[10214,4055,8080,1437],"delegatorTokens":9999999965518}},{"ix":57,"action":{"kind":"Delegate","val":0,"amt":2653},"partialState":{"h":7,"t":42,"tokens":[13867,5055,9080,2437],"delegation":[12867,4055,8080,1437],"delegatorTokens":9999999962865}},{"ix":58,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":59,"action":{"kind":"Delegate","val":1,"amt":1696},"partialState":{"h":7,"t":42,"tokens":[13867,6751,9080,2437],"delegation":[12867,5751,8080,1437],"delegatorTokens":9999999961169}},{"ix":60,"action":{"kind":"Undelegate","val":3,"amt":2225},"partialState":{"h":7,"t":42,"tokens":[13867,6751,9080,2437],"delegation":[12867,5751,8080,1437],"delegatorTokens":9999999961169}},{"ix":61,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":62,"action":{"kind":"Deliver","chain":"provider","numPackets":2},"partialState":{"h":7,"t":42,"tokens":[13867,6751,9080,2437],"delegation":[12867,5751,8080,1437],"delegatorTokens":9999999961169,"jailed":[1000000000000017,null,null,null],"status":["unbonding","bonded","bonded","unbonded"]}},{"ix":63,"action":{"kind":"Deliver","chain":"consumer","numPackets":1},"partialState":{"h":4,"t":24,"consumerPower":[7879,4000,null,null],"outstandingDowntime":[false,false,true,true]}},{"ix":64,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":65,"action":{"kind":"Undelegate","val":3,"amt":2063},"partialState":{"h":7,"t":42,"tokens":[13867,6751,9080,2437],"delegation":[12867,5751,8080,1437],"delegatorTokens":9999999961169}},{"ix":66,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":5,"t":30,"consumerPower":[null,5620,4763,null],"outstandingDowntime":[false,false,true,true]}},{"ix":67,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":68,"action":{"kind":"Deliver","chain":"consumer","numPackets":6},"partialState":{"h":5,"t":30,"consumerPower":[null,5620,4763,null],"outstandingDowntime":[false,false,true,true]}},{"ix":69,"action":{"kind":"Undelegate","val":3,"amt":4100},"partialState":{"h":7,"t":42,"tokens":[13867,6751,9080,2437],"delegation":[12867,5751,8080,1437],"delegatorTokens":9999999961169}},{"ix":70,"action":{"kind":"Delegate","val":2,"amt":3853},"partialState":{"h":7,"t":42,"tokens":[13867,6751,12933,2437],"delegation":[12867,5751,11933,1437],"delegatorTokens":9999999957316}},{"ix":71,"action":{"kind":"Undelegate","val":0,"amt":2423},"partialState":{"h":7,"t":42,"tokens":[11444,6751,12933,2437],"delegation":[10444,5751,11933,1437],"delegatorTokens":9999999957316}},{"ix":72,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":6,"t":36,"consumerPower":[null,5620,4763,null],"outstandingDowntime":[false,false,true,true]}},{"ix":73,"action":{"kind":"Deliver","chain":"consumer","numPackets":3},"partialState":{"h":6,"t":36,"consumerPower":[null,5620,4763,null],"outstandingDowntime":[false,false,true,true]}},{"ix":74,"action":{"kind":"Delegate","val":1,"amt":3607},"partialState":{"h":7,"t":42,"tokens":[11444,10358,12933,2437],"delegation":[10444,9358,11933,1437],"delegatorTokens":9999999953709}},{"ix":75,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":7,"t":42,"consumerPower":[null,5620,4763,null],"outstandingDowntime":[false,false,true,true]}},{"ix":76,"action":{"kind":"Undelegate","val":1,"amt":1800},"partialState":{"h":7,"t":42,"tokens":[11444,8558,12933,2437],"delegation":[10444,7558,11933,1437],"delegatorTokens":9999999953709}},{"ix":77,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":78,"action":{"kind":"Deliver","chain":"provider","numPackets":3},"partialState":{"h":7,"t":42,"tokens":[11444,8558,12933,2437],"delegation":[10444,7558,11933,1437],"delegatorTokens":9999999953709,"jailed":[1000000000000017,null,null,null],"status":["unbonding","bonded","bonded","unbonded"]}},{"ix":79,"action":{"kind":"Undelegate","val":2,"amt":3116},"partialState":{"h":7,"t":42,"tokens":[11444,8558,9817,2437],"delegation":[10444,7558,8817,1437],"delegatorTokens":9999999953709}},{"ix":80,"action":{"kind":"Undelegate","val":1,"amt":3833},"partialState":{"h":7,"t":42,"tokens":[11444,4725,9817,2437],"delegation":[10444,3725,8817,1437],"delegatorTokens":9999999953709}},{"ix":81,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":8,"t":48,"consumerPower":[null,5620,4763,null],"outstandingDowntime":[false,false,true,true]}},{"ix":82,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":8,"t":48,"tokens":[11444,4725,9817,2437],"delegation":[10444,3725,8817,1437],"delegatorTokens":9999999953709,"jailed":[1000000000000017,null,null,null],"status":["unbonding","bonded","bonded","unbonded"]}},{"ix":83,"action":{"kind":"Deliver","chain":"consumer","numPackets":1},"partialState":{"h":8,"t":48,"consumerPower":[null,5620,4763,null],"outstandingDowntime":[false,false,true,true]}},{"ix":84,"action":{"kind":"Deliver","chain":"consumer","numPackets":1},"partialState":{"h":8,"t":48,"consumerPower":[null,5620,4763,null],"outstandingDowntime":[false,false,true,true]}},{"ix":85,"action":{"kind":"Undelegate","val":2,"amt":4541},"partialState":{"h":8,"t":48,"tokens":[11444,4725,5276,2437],"delegation":[10444,3725,4276,1437],"delegatorTokens":9999999953709}},{"ix":86,"action":{"kind":"Deliver","chain":"consumer","numPackets":3},"partialState":{"h":8,"t":48,"consumerPower":[null,5620,4763,null],"outstandingDowntime":[false,false,true,true]}},{"ix":87,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":9,"t":54,"consumerPower":[null,9285,9080,null],"outstandingDowntime":[false,false,true,true]}},{"ix":88,"action":{"kind":"Undelegate","val":3,"amt":3033},"partialState":{"h":8,"t":48,"tokens":[11444,4725,5276,2437],"delegation":[10444,3725,4276,1437],"delegatorTokens":9999999953709}},{"ix":89,"action":{"kind":"Undelegate","val":2,"amt":2698},"partialState":{"h":8,"t":48,"tokens":[11444,4725,2578,2437],"delegation":[10444,3725,1578,1437],"delegatorTokens":9999999953709}},{"ix":90,"action":{"kind":"Deliver","chain":"provider","numPackets":6},"partialState":{"h":8,"t":48,"tokens":[11444,4725,2578,2437],"delegation":[10444,3725,1578,1437],"delegatorTokens":9999999953709,"jailed":[1000000000000017,null,null,null],"status":["unbonding","bonded","bonded","unbonded"]}},{"ix":91,"action":{"kind":"Deliver","chain":"provider","numPackets":5},"partialState":{"h":8,"t":48,"tokens":[11444,4725,2578,2437],"delegation":[10444,3725,1578,1437],"delegatorTokens":9999999953709,"jailed":[1000000000000017,null,null,null],"status":["unbonding","bonded","bonded","unbonded"]}},{"ix":92,"action":{"kind":"Undelegate","val":0,"amt":3090},"partialState":{"h":8,"t":48,"tokens":[8354,4725,2578,2437],"delegation":[7354,3725,1578,1437],"delegatorTokens":9999999953709}},{"ix":93,"action":{"kind":"Undelegate","val":2,"amt":1614},"partialState":{"h":8,"t":48,"tokens":[8354,4725,2578,2437],"delegation":[7354,3725,1578,1437],"delegatorTokens":9999999953709}},{"ix":94,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":9,"t":54,"tokens":[8354,4725,2578,2437],"delegation":[7354,3725,1578,1437],"delegatorTokens":9999999953709,"jailed":[1000000000000017,null,null,null],"status":["unbonding","bonded","bonded","unbonded"]}},{"ix":95,"action":{"kind":"Undelegate","val":1,"amt":4439},"partialState":{"h":9,"t":54,"tokens":[8354,4725,2578,2437],"delegation":[7354,3725,1578,1437],"delegatorTokens":9999999953709}},{"ix":96,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":97,"action":{"kind":"Delegate","val":1,"amt":3785},"partialState":{"h":9,"t":54,"tokens":[8354,8510,2578,2437],"delegation":[7354,7510,1578,1437],"delegatorTokens":9999999949924}},{"ix":98,"action":{"kind":"Delegate","val":0,"amt":3929},"partialState":{"h":9,"t":54,"tokens":[12283,8510,2578,2437],"delegation":[11283,7510,1578,1437],"delegatorTokens":9999999945995}},{"ix":99,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":100,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":101,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":10,"t":60,"tokens":[12283,8510,2578,2437],"delegation":[11283,7510,1578,1437],"delegatorTokens":9999999945995,"jailed":[1000000000000017,null,null,null],"status":["unbonding","bonded","bonded","unbonded"]}},{"ix":102,"action":{"kind":"Undelegate","val":0,"amt":3020},"partialState":{"h":10,"t":60,"tokens":[9263,8510,2578,2437],"delegation":[8263,7510,1578,1437],"delegatorTokens":9999999945995}},{"ix":103,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":10,"t":60,"consumerPower":[null,9285,9080,null],"outstandingDowntime":[false,false,true,true]}},{"ix":104,"action":{"kind":"Undelegate","val":1,"amt":1859},"partialState":{"h":10,"t":60,"tokens":[9263,6651,2578,2437],"delegation":[8263,5651,1578,1437],"delegatorTokens":9999999945995}},{"ix":105,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":11,"t":66,"tokens":[9263,6651,2578,2437],"delegation":[8263,5651,1578,1437],"delegatorTokens":9999999945995,"jailed":[1000000000000017,null,null,null],"status":["unbonding","bonded","bonded","unbonded"]}},{"ix":106,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":107,"action":{"kind":"Undelegate","val":0,"amt":2850},"partialState":{"h":11,"t":66,"tokens":[6413,6651,2578,2437],"delegation":[5413,5651,1578,1437],"delegatorTokens":9999999945995}},{"ix":108,"action":{"kind":"Deliver","chain":"provider","numPackets":6},"partialState":{"h":11,"t":66,"tokens":[6413,6651,2578,2437],"delegation":[5413,5651,1578,1437],"delegatorTokens":9999999945995,"jailed":[1000000000000017,null,null,null],"status":["unbonding","bonded","bonded","unbonded"]}},{"ix":109,"action":{"kind":"Delegate","val":2,"amt":2088},"partialState":{"h":11,"t":66,"tokens":[6413,6651,4666,2437],"delegation":[5413,5651,3666,1437],"delegatorTokens":9999999943907}},{"ix":110,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":111,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":112,"action":{"kind":"Undelegate","val":3,"amt":1294},"partialState":{"h":11,"t":66,"tokens":[6413,6651,4666,1143],"delegation":[5413,5651,3666,143],"delegatorTokens":9999999943907}},{"ix":113,"action":{"kind":"Delegate","val":1,"amt":4308},"partialState":{"h":11,"t":66,"tokens":[6413,10959,4666,1143],"delegation":[5413,9959,3666,143],"delegatorTokens":9999999939599}},{"ix":114,"action":{"kind":"Undelegate","val":3,"amt":2547},"partialState":{"h":11,"t":66,"tokens":[6413,10959,4666,1143],"delegation":[5413,9959,3666,143],"delegatorTokens":9999999939599}},{"ix":115,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":12,"t":72,"tokens":[6413,10959,4666,1143],"delegation":[5413,9959,3666,143],"delegatorTokens":9999999939599,"jailed":[1000000000000017,null,null,null],"status":["unbonding","bonded","bonded","unbonded"]}},{"ix":116,"action":{"kind":"Undelegate","val":0,"amt":3217},"partialState":{"h":12,"t":72,"tokens":[3196,10959,4666,1143],"delegation":[2196,9959,3666,143],"delegatorTokens":9999999939599}},{"ix":117,"action":{"kind":"Deliver","chain":"consumer","numPackets":4},"partialState":{"h":10,"t":60,"consumerPower":[null,9285,9080,null],"outstandingDowntime":[false,false,true,true]}},{"ix":118,"action":{"kind":"Undelegate","val":0,"amt":2176},"partialState":{"h":12,"t":72,"tokens":[1020,10959,4666,1143],"delegation":[20,9959,3666,143],"delegatorTokens":9999999939599}},{"ix":119,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":13,"t":78,"tokens":[1020,10959,4666,1143],"delegation":[20,9959,3666,143],"delegatorTokens":9999999939599,"jailed":[1000000000000017,null,null,null],"status":["unbonding","bonded","bonded","unbonded"]}},{"ix":120,"action":{"kind":"Deliver","chain":"provider","numPackets":4},"partialState":{"h":13,"t":78,"tokens":[1020,10959,4666,1143],"delegation":[20,9959,3666,143],"delegatorTokens":9999999939599,"jailed":[1000000000000017,null,null,null],"status":["unbonding","bonded","bonded","unbonded"]}},{"ix":121,"action":{"kind":"Delegate","val":3,"amt":1882},"partialState":{"h":13,"t":78,"tokens":[1020,10959,4666,3025],"delegation":[20,9959,3666,2025],"delegatorTokens":9999999937717}},{"ix":122,"action":{"kind":"Delegate","val":2,"amt":3936},"partialState":{"h":13,"t":78,"tokens":[1020,10959,8602,3025],"delegation":[20,9959,7602,2025],"delegatorTokens":9999999933781}},{"ix":123,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":124,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":14,"t":84,"tokens":[1020,10959,8602,3025],"delegation":[20,9959,7602,2025],"delegatorTokens":9999999933781,"jailed":[1000000000000017,null,null,null],"status":["unbonding","bonded","bonded","unbonded"]}},{"ix":125,"action":{"kind":"Deliver","chain":"provider","numPackets":3},"partialState":{"h":14,"t":84,"tokens":[1020,10959,8602,3025],"delegation":[20,9959,7602,2025],"delegatorTokens":9999999933781,"jailed":[1000000000000017,null,null,null],"status":["unbonding","bonded","bonded","unbonded"]}},{"ix":126,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":127,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":11,"t":66,"consumerPower":[null,6651,2578,null],"outstandingDowntime":[false,false,true,true]}},{"ix":128,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":129,"action":{"kind":"Deliver","chain":"provider","numPackets":2},"partialState":{"h":14,"t":84,"tokens":[1020,10959,8602,3025],"delegation":[20,9959,7602,2025],"delegatorTokens":9999999933781,"jailed":[1000000000000017,null,null,null],"status":["unbonding","bonded","bonded","unbonded"]}},{"ix":130,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":12,"t":72,"consumerPower":[null,6651,2578,null],"outstandingDowntime":[false,false,true,true]}},{"ix":131,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":13,"t":78,"consumerPower":[null,6651,2578,null],"outstandingDowntime":[false,false,true,true]}},{"ix":132,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":14,"t":84,"consumerPower":[null,6651,2578,null],"outstandingDowntime":[false,false,true,true]}},{"ix":133,"action":{"kind":"Delegate","val":2,"amt":2565},"partialState":{"h":14,"t":84,"tokens":[1020,10959,11167,3025],"delegation":[20,9959,10167,2025],"delegatorTokens":9999999931216}},{"ix":134,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":15,"t":90,"tokens":[1020,10959,11167,3025],"delegation":[20,9959,10167,2025],"delegatorTokens":9999999931216,"jailed":[1000000000000017,null,null,null],"status":["unbonding","bonded","bonded","unbonded"]}},{"ix":135,"action":{"kind":"Delegate","val":3,"amt":4247},"partialState":{"h":15,"t":90,"tokens":[1020,10959,11167,7272],"delegation":[20,9959,10167,6272],"delegatorTokens":9999999926969}},{"ix":136,"action":{"kind":"Deliver","chain":"provider","numPackets":1},"partialState":{"h":15,"t":90,"tokens":[1020,10959,11167,7272],"delegation":[20,9959,10167,6272],"delegatorTokens":9999999926969,"jailed":[1000000000000017,null,null,null],"status":["unbonding","bonded","bonded","unbonded"]}},{"ix":137,"action":{"kind":"Delegate","val":3,"amt":3389},"partialState":{"h":15,"t":90,"tokens":[1020,10959,11167,10661],"delegation":[20,9959,10167,9661],"delegatorTokens":9999999923580}},{"ix":138,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":15,"t":90,"consumerPower":[null,6651,2578,null],"outstandingDowntime":[false,false,true,true]}},{"ix":139,"action":{"kind":"Undelegate","val":0,"amt":3193},"partialState":{"h":15,"t":90,"tokens":[1020,10959,11167,10661],"delegation":[20,9959,10167,9661],"delegatorTokens":9999999923580}},{"ix":140,"action":{"kind":"Delegate","val":3,"amt":3643},"partialState":{"h":15,"t":90,"tokens":[1020,10959,11167,14304],"delegation":[20,9959,10167,13304],"delegatorTokens":9999999919937}},{"ix":141,"action":{"kind":"Deliver","chain":"consumer","numPackets":2},"partialState":{"h":15,"t":90,"consumerPower":[null,6651,2578,null],"outstandingDowntime":[false,false,true,true]}},{"ix":142,"action":{"kind":"Deliver","chain":"provider","numPackets":6},"partialState":{"h":15,"t":90,"tokens":[1020,10959,11167,14304],"delegation":[20,9959,10167,13304],"delegatorTokens":9999999919937,"jailed":[1000000000000017,null,null,null],"status":["unbonding","bonded","bonded","unbonded"]}},{"ix":143,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":144,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":16,"t":96,"tokens":[1020,10959,11167,14304],"delegation":[20,9959,10167,13304],"delegatorTokens":9999999928248,"jailed":[1000000000000017,null,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":145,"action":{"kind":"Undelegate","val":2,"amt":2555},"partialState":{"h":16,"t":96,"tokens":[1020,10959,8612,14304],"delegation":[20,9959,7612,13304],"delegatorTokens":9999999928248}},{"ix":146,"action":{"kind":"Delegate","val":1,"amt":1492},"partialState":{"h":16,"t":96,"tokens":[1020,12451,8612,14304],"delegation":[20,11451,7612,13304],"delegatorTokens":9999999926756}},{"ix":147,"action":{"kind":"Delegate","val":2,"amt":3422},"partialState":{"h":16,"t":96,"tokens":[1020,12451,12034,14304],"delegation":[20,11451,11034,13304],"delegatorTokens":9999999923334}},{"ix":148,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":17,"t":102,"tokens":[1020,12451,12034,14304],"delegation":[20,11451,11034,13304],"delegatorTokens":9999999927512,"jailed":[1000000000000017,null,null,null],"status":["unbonded","bonded","unbonding","bonded"]}},{"ix":149,"action":{"kind":"Undelegate","val":0,"amt":2540},"partialState":{"h":17,"t":102,"tokens":[1020,12451,12034,14304],"delegation":[20,11451,11034,13304],"delegatorTokens":9999999927512}},{"ix":150,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":18,"t":108,"tokens":[1020,12451,12034,14304],"delegation":[20,11451,11034,13304],"delegatorTokens":9999999927512,"jailed":[1000000000000017,null,null,null],"status":["unbonded","bonded","unbonding","bonded"]}},{"ix":151,"action":{"kind":"Undelegate","val":1,"amt":1788},"partialState":{"h":18,"t":108,"tokens":[1020,10663,12034,14304],"delegation":[20,9663,11034,13304],"delegatorTokens":9999999927512}},{"ix":152,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":153,"action":{"kind":"Delegate","val":1,"amt":2879},"partialState":{"h":18,"t":108,"tokens":[1020,13542,12034,14304],"delegation":[20,12542,11034,13304],"delegatorTokens":9999999924633}},{"ix":154,"action":{"kind":"Undelegate","val":2,"amt":4111},"partialState":{"h":18,"t":108,"tokens":[1020,13542,7923,14304],"delegation":[20,12542,6923,13304],"delegatorTokens":9999999924633}},{"ix":155,"action":{"kind":"Delegate","val":1,"amt":4219},"partialState":{"h":18,"t":108,"tokens":[1020,17761,7923,14304],"delegation":[20,16761,6923,13304],"delegatorTokens":9999999920414}},{"ix":156,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":19,"t":114,"tokens":[1020,17761,7923,14304],"delegation":[20,16761,6923,13304],"delegatorTokens":9999999920414,"jailed":[1000000000000017,null,null,null],"status":["unbonded","bonded","unbonding","bonded"]}},{"ix":157,"action":{"kind":"Undelegate","val":0,"amt":2353},"partialState":{"h":19,"t":114,"tokens":[1020,17761,7923,14304],"delegation":[20,16761,6923,13304],"delegatorTokens":9999999920414}},{"ix":158,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":20,"t":120,"tokens":[1020,17761,7923,14304],"delegation":[20,16761,6923,13304],"delegatorTokens":9999999920414,"jailed":[1000000000000017,null,null,null],"status":["unbonded","bonded","unbonding","bonded"]}},{"ix":159,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":16,"t":96,"consumerPower":[null,10959,4666,null],"outstandingDowntime":[false,false,true,true]}},{"ix":160,"action":{"kind":"Deliver","chain":"provider","numPackets":6},"partialState":{"h":20,"t":120,"tokens":[1020,17761,7923,14304],"delegation":[20,16761,6923,13304],"delegatorTokens":9999999920414,"jailed":[1000000000000017,null,null,null],"status":["unbonded","bonded","unbonding","bonded"]}},{"ix":161,"action":{"kind":"Undelegate","val":2,"amt":2257},"partialState":{"h":20,"t":120,"tokens":[1020,17761,5666,14304],"delegation":[20,16761,4666,13304],"delegatorTokens":9999999920414}},{"ix":162,"action":{"kind":"Deliver","chain":"provider","numPackets":2},"partialState":{"h":20,"t":120,"tokens":[1020,17761,5666,14304],"delegation":[20,16761,4666,13304],"delegatorTokens":9999999920414,"jailed":[1000000000000017,null,null,null],"status":["unbonded","bonded","unbonding","bonded"]}},{"ix":163,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":17,"t":102,"consumerPower":[null,10959,4666,null],"outstandingDowntime":[false,false,true,true]}},{"ix":164,"action":{"kind":"Undelegate","val":0,"amt":4746},"partialState":{"h":20,"t":120,"tokens":[1020,17761,5666,14304],"delegation":[20,16761,4666,13304],"delegatorTokens":9999999920414}},{"ix":165,"action":{"kind":"Delegate","val":1,"amt":4339},"partialState":{"h":20,"t":120,"tokens":[1020,22100,5666,14304],"delegation":[20,21100,4666,13304],"delegatorTokens":9999999916075}},{"ix":166,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":18,"t":108,"consumerPower":[null,10959,4666,null],"outstandingDowntime":[false,false,true,true]}},{"ix":167,"action":{"kind":"Undelegate","val":0,"amt":3116},"partialState":{"h":20,"t":120,"tokens":[1020,22100,5666,14304],"delegation":[20,21100,4666,13304],"delegatorTokens":9999999916075}},{"ix":168,"action":{"kind":"Undelegate","val":1,"amt":2450},"partialState":{"h":20,"t":120,"tokens":[1020,19650,5666,14304],"delegation":[20,18650,4666,13304],"delegatorTokens":9999999916075}},{"ix":169,"action":{"kind":"Undelegate","val":3,"amt":2599},"partialState":{"h":20,"t":120,"tokens":[1020,19650,5666,11705],"delegation":[20,18650,4666,10705],"delegatorTokens":9999999916075}},{"ix":170,"action":{"kind":"Deliver","chain":"consumer","numPackets":2},"partialState":{"h":18,"t":108,"consumerPower":[null,10959,4666,null],"outstandingDowntime":[false,false,true,true]}},{"ix":171,"action":{"kind":"Undelegate","val":2,"amt":1747},"partialState":{"h":20,"t":120,"tokens":[1020,19650,3919,11705],"delegation":[20,18650,2919,10705],"delegatorTokens":9999999916075}},{"ix":172,"action":{"kind":"Undelegate","val":3,"amt":2383},"partialState":{"h":20,"t":120,"tokens":[1020,19650,3919,9322],"delegation":[20,18650,2919,8322],"delegatorTokens":9999999916075}},{"ix":173,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":174,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":21,"t":126,"tokens":[1020,19650,3919,9322],"delegation":[20,18650,2919,8322],"delegatorTokens":9999999916075,"jailed":[1000000000000017,null,null,null],"status":["unbonded","bonded","unbonding","bonded"]}},{"ix":175,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":19,"t":114,"consumerPower":[null,10959,11167,null],"outstandingDowntime":[false,false,true,true]}},{"ix":176,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":22,"t":132,"tokens":[1020,19650,3919,9322],"delegation":[20,18650,2919,8322],"delegatorTokens":9999999916075,"jailed":[1000000000000017,null,null,null],"status":["unbonded","bonded","unbonding","bonded"]}},{"ix":177,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":23,"t":138,"tokens":[1020,19650,3919,9322],"delegation":[20,18650,2919,8322],"delegatorTokens":9999999916075,"jailed":[1000000000000017,null,null,null],"status":["unbonded","bonded","unbonding","bonded"]}},{"ix":178,"action":{"kind":"Deliver","chain":"consumer","numPackets":1},"partialState":{"h":19,"t":114,"consumerPower":[null,10959,11167,null],"outstandingDowntime":[false,false,true,true]}},{"ix":179,"action":{"kind":"Undelegate","val":3,"amt":1650},"partialState":{"h":23,"t":138,"tokens":[1020,19650,3919,7672],"delegation":[20,18650,2919,6672],"delegatorTokens":9999999916075}},{"ix":180,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":20,"t":120,"consumerPower":[null,null,11167,14304],"outstandingDowntime":[false,false,true,true]}},{"ix":181,"action":{"kind":"Deliver","chain":"provider","numPackets":1},"partialState":{"h":23,"t":138,"tokens":[1020,19650,3919,7672],"delegation":[20,18650,2919,6672],"delegatorTokens":9999999916075,"jailed":[1000000000000017,null,null,null],"status":["unbonded","bonded","unbonding","bonded"]}},{"ix":182,"action":{"kind":"Delegate","val":1,"amt":2189},"partialState":{"h":23,"t":138,"tokens":[1020,21839,3919,7672],"delegation":[20,20839,2919,6672],"delegatorTokens":9999999913886}},{"ix":183,"action":{"kind":"Deliver","chain":"consumer","numPackets":1},"partialState":{"h":20,"t":120,"consumerPower":[null,null,11167,14304],"outstandingDowntime":[false,false,true,true]}},{"ix":184,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":185,"action":{"kind":"Delegate","val":3,"amt":4588},"partialState":{"h":23,"t":138,"tokens":[1020,21839,3919,12260],"delegation":[20,20839,2919,11260],"delegatorTokens":9999999909298}},{"ix":186,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":21,"t":126,"consumerPower":[null,12451,null,14304],"outstandingDowntime":[false,false,true,true]}},{"ix":187,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":24,"t":144,"tokens":[1020,21839,3919,12260],"delegation":[20,20839,2919,11260],"delegatorTokens":9999999913275,"jailed":[1000000000000017,null,null,null],"status":["unbonded","bonded","unbonding","bonded"]}},{"ix":188,"action":{"kind":"Delegate","val":3,"amt":3544},"partialState":{"h":24,"t":144,"tokens":[1020,21839,3919,15804],"delegation":[20,20839,2919,14804],"delegatorTokens":9999999909731}},{"ix":189,"action":{"kind":"Undelegate","val":1,"amt":3137},"partialState":{"h":24,"t":144,"tokens":[1020,18702,3919,15804],"delegation":[20,17702,2919,14804],"delegatorTokens":9999999909731}},{"ix":190,"action":{"kind":"Undelegate","val":2,"amt":3077},"partialState":{"h":24,"t":144,"tokens":[1020,18702,3919,15804],"delegation":[20,17702,2919,14804],"delegatorTokens":9999999909731}},{"ix":191,"action":{"kind":"Deliver","chain":"provider","numPackets":2},"partialState":{"h":24,"t":144,"tokens":[1020,18702,3919,15804],"delegation":[20,17702,2919,14804],"delegatorTokens":9999999909731,"jailed":[1000000000000017,null,null,null],"status":["unbonded","bonded","unbonding","bonded"]}},{"ix":192,"action":{"kind":"Delegate","val":3,"amt":3318},"partialState":{"h":24,"t":144,"tokens":[1020,18702,3919,19122],"delegation":[20,17702,2919,18122],"delegatorTokens":9999999906413}},{"ix":193,"action":{"kind":"Deliver","chain":"provider","numPackets":5},"partialState":{"h":24,"t":144,"tokens":[1020,18702,3919,19122],"delegation":[20,17702,2919,18122],"delegatorTokens":9999999906413,"jailed":[1000000000000017,null,null,null],"status":["unbonded","bonded","unbonding","bonded"]}},{"ix":194,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":22,"t":132,"consumerPower":[null,12451,null,14304],"outstandingDowntime":[false,false,true,true]}},{"ix":195,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":196,"action":{"kind":"Undelegate","val":2,"amt":1679},"partialState":{"h":24,"t":144,"tokens":[1020,18702,2240,19122],"delegation":[20,17702,1240,18122],"delegatorTokens":9999999906413}},{"ix":197,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":198,"action":{"kind":"Delegate","val":2,"amt":4712},"partialState":{"h":24,"t":144,"tokens":[1020,18702,6952,19122],"delegation":[20,17702,5952,18122],"delegatorTokens":9999999901701}},{"ix":199,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}}],"events":["send_double_sign_slash_request","send_vsc_without_downtime_ack","send_downtime_slash_request","send_downtime_slash_request","send_downtime_slash_request","insufficient_shares","send_vsc_without_downtime_ack","receive_double_sign_slash_request","receive_slash_request_unbonded","receive_slash_request_unbonded","receive_downtime_slash_request","jail","send_vsc_with_downtime_ack","consumer_update_val","more_than_one_third_val_power_change","send_vsc_without_downtime_ack","receive_downtime_slash_ack","insufficient_shares","send_vsc_without_downtime_ack","insufficient_shares","insufficient_shares","consumer_del_val","consumer_update_val","consumer_add_val","insufficient_shares","send_vsc_without_downtime_ack","consumer_update_val","consumer_update_val","insufficient_shares","insufficient_shares","send_vsc_without_downtime_ack","insufficient_shares","send_vsc_without_downtime_ack","send_vsc_without_downtime_ack","insufficient_shares","send_vsc_without_downtime_ack","send_vsc_not_because_change","send_vsc_without_downtime_ack","send_vsc_without_downtime_ack","consumer_update_val","consumer_update_val","consumer_send_maturation","consumer_send_maturation","consumer_send_maturation","consumer_send_maturation","some_undels_expired_but_not_completed","send_vsc_without_downtime_ack","insufficient_shares","more_than_one_third_val_power_change","complete_undel_immediate","complete_undel_immediate","set_undel_hold_false","set_undel_hold_false","set_unval_hold_false","send_vsc_without_downtime_ack","more_than_one_third_val_power_change","rebond_unval","complete_unval_in_endblock","complete_undel_in_endblock","send_vsc_without_downtime_ack","insufficient_shares","some_undels_expired_but_not_completed","send_vsc_without_downtime_ack","insufficient_shares","some_undels_expired_but_not_completed","consumer_update_val","consumer_update_val","insufficient_shares","consumer_send_maturation","insufficient_shares","some_undels_expired_but_not_completed","send_vsc_without_downtime_ack","consumer_update_val","some_undels_expired_but_not_completed","consumer_send_maturation","consumer_send_maturation","consumer_send_maturation","consumer_send_maturation","consumer_del_val","consumer_add_val","consumer_add_val","consumer_del_val","some_undels_expired_but_not_completed","complete_undel_immediate","complete_undel_immediate","send_vsc_without_downtime_ack","insufficient_shares"]},{"meta":{"commit":"7ffd0c04e4205cbc9caf212abfe6c59ee43153bf"},"constants":{"P":"provider","C":"consumer","UNBONDING_SECONDS_P":70,"UNBONDING_SECONDS_C":50,"TRUSTING_SECONDS":49,"NUM_VALIDATORS":4,"MAX_VALIDATORS":2,"SLASH_DOUBLESIGN":0,"SLASH_DOWNTIME":0,"JAIL_SECONDS":999999999999999,"BLOCK_SECONDS":6,"INITIAL_DELEGATOR_TOKENS":10000000000000,"DELEGATE_AMT_MIN":1000,"DELEGATE_AMT_MAX":5000,"UNDELEGATE_AMT_MIN":1000,"UNDELEGATE_AMT_MAX":5000,"ISDOWNTIME_PROBABILITY":0.5,"MAX_NUM_PACKETS_FOR_DELIVER":6},"actions":[{"ix":0,"action":{"kind":"Delegate","val":1,"amt":3707},"partialState":{"h":1,"t":6,"tokens":[5000,7707,3000,2000],"delegation":[4000,6707,2000,1000],"delegatorTokens":9999999996293}},{"ix":1,"action":{"kind":"Undelegate","val":2,"amt":1977},"partialState":{"h":1,"t":6,"tokens":[5000,7707,1023,2000],"delegation":[4000,6707,23,1000],"delegatorTokens":9999999996293}},{"ix":2,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":3,"action":{"kind":"Delegate","val":0,"amt":1730},"partialState":{"h":1,"t":6,"tokens":[6730,7707,1023,2000],"delegation":[5730,6707,23,1000],"delegatorTokens":9999999994563}},{"ix":4,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":2,"t":12,"tokens":[6730,7707,1023,2000],"delegation":[5730,6707,23,1000],"delegatorTokens":9999999994563,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":5,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":3,"t":18,"tokens":[6730,7707,1023,2000],"delegation":[5730,6707,23,1000],"delegatorTokens":9999999994563,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":6,"action":{"kind":"ConsumerSlash","val":3,"infractionHeight":0,"isDowntime":true},"partialState":{"h":1,"t":6,"outstandingDowntime":[false,false,false,true]}},{"ix":7,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":4,"t":24,"tokens":[6730,7707,1023,2000],"delegation":[5730,6707,23,1000],"delegatorTokens":9999999994563,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":8,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":2,"t":12,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,false,false,true]}},{"ix":9,"action":{"kind":"Delegate","val":2,"amt":2100},"partialState":{"h":4,"t":24,"tokens":[6730,7707,3123,2000],"delegation":[5730,6707,2123,1000],"delegatorTokens":9999999992463}},{"ix":10,"action":{"kind":"ConsumerSlash","val":0,"infractionHeight":0,"isDowntime":true},"partialState":{"h":2,"t":12,"outstandingDowntime":[true,false,false,true]}},{"ix":11,"action":{"kind":"Deliver","chain":"consumer","numPackets":5},"partialState":{"h":2,"t":12,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[true,false,false,true]}},{"ix":12,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":13,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":3,"t":18,"consumerPower":[6730,7707,null,null],"outstandingDowntime":[true,false,false,true]}},{"ix":14,"action":{"kind":"ConsumerSlash","val":0,"infractionHeight":1,"isDowntime":false},"partialState":{"h":3,"t":18,"outstandingDowntime":[true,false,false,true]}},{"ix":15,"action":{"kind":"Deliver","chain":"consumer","numPackets":4},"partialState":{"h":3,"t":18,"consumerPower":[6730,7707,null,null],"outstandingDowntime":[true,false,false,true]}},{"ix":16,"action":{"kind":"Delegate","val":1,"amt":3063},"partialState":{"h":4,"t":24,"tokens":[6730,10770,3123,2000],"delegation":[5730,9770,2123,1000],"delegatorTokens":9999999989400}},{"ix":17,"action":{"kind":"Deliver","chain":"consumer","numPackets":3},"partialState":{"h":3,"t":18,"consumerPower":[6730,7707,null,null],"outstandingDowntime":[true,false,false,true]}},{"ix":18,"action":{"kind":"Deliver","chain":"consumer","numPackets":6},"partialState":{"h":3,"t":18,"consumerPower":[6730,7707,null,null],"outstandingDowntime":[true,false,false,true]}},{"ix":19,"action":{"kind":"Delegate","val":1,"amt":3331},"partialState":{"h":4,"t":24,"tokens":[6730,14101,3123,2000],"delegation":[5730,13101,2123,1000],"delegatorTokens":9999999986069}},{"ix":20,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":4,"t":24,"consumerPower":[6730,7707,null,null],"outstandingDowntime":[true,false,false,true]}},{"ix":21,"action":{"kind":"Deliver","chain":"provider","numPackets":6},"partialState":{"h":4,"t":24,"tokens":[6730,14101,3123,2000],"delegation":[5730,13101,2123,1000],"delegatorTokens":9999999986069,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":22,"action":{"kind":"Delegate","val":0,"amt":1174},"partialState":{"h":4,"t":24,"tokens":[7904,14101,3123,2000],"delegation":[6904,13101,2123,1000],"delegatorTokens":9999999984895}},{"ix":23,"action":{"kind":"Delegate","val":2,"amt":1308},"partialState":{"h":4,"t":24,"tokens":[7904,14101,4431,2000],"delegation":[6904,13101,3431,1000],"delegatorTokens":9999999983587}},{"ix":24,"action":{"kind":"Delegate","val":2,"amt":2800},"partialState":{"h":4,"t":24,"tokens":[7904,14101,7231,2000],"delegation":[6904,13101,6231,1000],"delegatorTokens":9999999980787}},{"ix":25,"action":{"kind":"Deliver","chain":"provider","numPackets":6},"partialState":{"h":4,"t":24,"tokens":[7904,14101,7231,2000],"delegation":[6904,13101,6231,1000],"delegatorTokens":9999999980787,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":26,"action":{"kind":"ConsumerSlash","val":2,"infractionHeight":0,"isDowntime":true},"partialState":{"h":4,"t":24,"outstandingDowntime":[true,false,true,true]}},{"ix":27,"action":{"kind":"Delegate","val":0,"amt":4020},"partialState":{"h":4,"t":24,"tokens":[11924,14101,7231,2000],"delegation":[10924,13101,6231,1000],"delegatorTokens":9999999976767}},{"ix":28,"action":{"kind":"Undelegate","val":3,"amt":3928},"partialState":{"h":4,"t":24,"tokens":[11924,14101,7231,2000],"delegation":[10924,13101,6231,1000],"delegatorTokens":9999999976767}},{"ix":29,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":30,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":5,"t":30,"consumerPower":[6730,7707,null,null],"outstandingDowntime":[true,false,true,true]}},{"ix":31,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":32,"action":{"kind":"Undelegate","val":1,"amt":2302},"partialState":{"h":4,"t":24,"tokens":[11924,11799,7231,2000],"delegation":[10924,10799,6231,1000],"delegatorTokens":9999999976767}},{"ix":33,"action":{"kind":"Undelegate","val":0,"amt":4479},"partialState":{"h":4,"t":24,"tokens":[7445,11799,7231,2000],"delegation":[6445,10799,6231,1000],"delegatorTokens":9999999976767}},{"ix":34,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":6,"t":36,"consumerPower":[6730,7707,null,null],"outstandingDowntime":[true,false,true,true]}},{"ix":35,"action":{"kind":"Undelegate","val":1,"amt":1687},"partialState":{"h":4,"t":24,"tokens":[7445,10112,7231,2000],"delegation":[6445,9112,6231,1000],"delegatorTokens":9999999976767}},{"ix":36,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":7,"t":42,"consumerPower":[6730,7707,null,null],"outstandingDowntime":[true,false,true,true]}},{"ix":37,"action":{"kind":"Delegate","val":0,"amt":3613},"partialState":{"h":4,"t":24,"tokens":[11058,10112,7231,2000],"delegation":[10058,9112,6231,1000],"delegatorTokens":9999999973154}},{"ix":38,"action":{"kind":"Delegate","val":2,"amt":3773},"partialState":{"h":4,"t":24,"tokens":[11058,10112,11004,2000],"delegation":[10058,9112,10004,1000],"delegatorTokens":9999999969381}},{"ix":39,"action":{"kind":"Deliver","chain":"provider","numPackets":6},"partialState":{"h":4,"t":24,"tokens":[11058,10112,11004,2000],"delegation":[10058,9112,10004,1000],"delegatorTokens":9999999969381,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":40,"action":{"kind":"Delegate","val":1,"amt":2502},"partialState":{"h":4,"t":24,"tokens":[11058,12614,11004,2000],"delegation":[10058,11614,10004,1000],"delegatorTokens":9999999966879}},{"ix":41,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":5,"t":30,"tokens":[11058,12614,11004,2000],"delegation":[10058,11614,10004,1000],"delegatorTokens":9999999966879,"jailed":[1000000000000023,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":42,"action":{"kind":"Delegate","val":3,"amt":1270},"partialState":{"h":5,"t":30,"tokens":[11058,12614,11004,3270],"delegation":[10058,11614,10004,2270],"delegatorTokens":9999999965609}},{"ix":43,"action":{"kind":"Undelegate","val":1,"amt":1470},"partialState":{"h":5,"t":30,"tokens":[11058,11144,11004,3270],"delegation":[10058,10144,10004,2270],"delegatorTokens":9999999965609}},{"ix":44,"action":{"kind":"Undelegate","val":1,"amt":4483},"partialState":{"h":5,"t":30,"tokens":[11058,6661,11004,3270],"delegation":[10058,5661,10004,2270],"delegatorTokens":9999999965609}},{"ix":45,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":8,"t":48,"consumerPower":[6730,7707,null,null],"outstandingDowntime":[true,false,true,true]}},{"ix":46,"action":{"kind":"Delegate","val":1,"amt":2383},"partialState":{"h":5,"t":30,"tokens":[11058,9044,11004,3270],"delegation":[10058,8044,10004,2270],"delegatorTokens":9999999963226}},{"ix":47,"action":{"kind":"Deliver","chain":"provider","numPackets":4},"partialState":{"h":5,"t":30,"tokens":[11058,9044,11004,3270],"delegation":[10058,8044,10004,2270],"delegatorTokens":9999999963226,"jailed":[1000000000000023,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":48,"action":{"kind":"Deliver","chain":"provider","numPackets":1},"partialState":{"h":5,"t":30,"tokens":[11058,9044,11004,3270],"delegation":[10058,8044,10004,2270],"delegatorTokens":9999999963226,"jailed":[1000000000000023,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":49,"action":{"kind":"Delegate","val":0,"amt":1646},"partialState":{"h":5,"t":30,"tokens":[12704,9044,11004,3270],"delegation":[11704,8044,10004,2270],"delegatorTokens":9999999961580}},{"ix":50,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":51,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":6,"t":36,"tokens":[12704,9044,11004,3270],"delegation":[11704,8044,10004,2270],"delegatorTokens":9999999961580,"jailed":[1000000000000023,null,null,null],"status":["unbonding","bonded","bonded","unbonded"]}},{"ix":52,"action":{"kind":"Undelegate","val":0,"amt":4520},"partialState":{"h":6,"t":36,"tokens":[8184,9044,11004,3270],"delegation":[7184,8044,10004,2270],"delegatorTokens":9999999961580}},{"ix":53,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":54,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":9,"t":54,"consumerPower":[6730,7707,null,null],"outstandingDowntime":[true,false,true,true]}},{"ix":55,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":10,"t":60,"consumerPower":[6730,7707,null,null],"outstandingDowntime":[true,false,true,true]}},{"ix":56,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":57,"action":{"kind":"Undelegate","val":2,"amt":1612},"partialState":{"h":6,"t":36,"tokens":[8184,9044,9392,3270],"delegation":[7184,8044,8392,2270],"delegatorTokens":9999999961580}},{"ix":58,"action":{"kind":"Delegate","val":3,"amt":4333},"partialState":{"h":6,"t":36,"tokens":[8184,9044,9392,7603],"delegation":[7184,8044,8392,6603],"delegatorTokens":9999999957247}},{"ix":59,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":7,"t":42,"tokens":[8184,9044,9392,7603],"delegation":[7184,8044,8392,6603],"delegatorTokens":9999999957247,"jailed":[1000000000000023,null,null,null],"status":["unbonding","bonded","bonded","unbonded"]}},{"ix":60,"action":{"kind":"Deliver","chain":"provider","numPackets":3},"partialState":{"h":7,"t":42,"tokens":[8184,9044,9392,7603],"delegation":[7184,8044,8392,6603],"delegatorTokens":9999999957247,"jailed":[1000000000000023,null,null,null],"status":["unbonding","bonded","bonded","unbonded"]}},{"ix":61,"action":{"kind":"Undelegate","val":1,"amt":2363},"partialState":{"h":7,"t":42,"tokens":[8184,6681,9392,7603],"delegation":[7184,5681,8392,6603],"delegatorTokens":9999999957247}},{"ix":62,"action":{"kind":"Delegate","val":2,"amt":4340},"partialState":{"h":7,"t":42,"tokens":[8184,6681,13732,7603],"delegation":[7184,5681,12732,6603],"delegatorTokens":9999999952907}},{"ix":63,"action":{"kind":"Deliver","chain":"provider","numPackets":2},"partialState":{"h":7,"t":42,"tokens":[8184,6681,13732,7603],"delegation":[7184,5681,12732,6603],"delegatorTokens":9999999952907,"jailed":[1000000000000023,null,null,null],"status":["unbonding","bonded","bonded","unbonded"]}},{"ix":64,"action":{"kind":"Deliver","chain":"consumer","numPackets":3},"partialState":{"h":10,"t":60,"consumerPower":[6730,7707,null,null],"outstandingDowntime":[false,false,true,true]}},{"ix":65,"action":{"kind":"Delegate","val":2,"amt":4051},"partialState":{"h":7,"t":42,"tokens":[8184,6681,17783,7603],"delegation":[7184,5681,16783,6603],"delegatorTokens":9999999948856}},{"ix":66,"action":{"kind":"Undelegate","val":1,"amt":1470},"partialState":{"h":7,"t":42,"tokens":[8184,5211,17783,7603],"delegation":[7184,4211,16783,6603],"delegatorTokens":9999999948856}},{"ix":67,"action":{"kind":"Deliver","chain":"consumer","numPackets":2},"partialState":{"h":10,"t":60,"consumerPower":[6730,7707,null,null],"outstandingDowntime":[false,false,true,true]}},{"ix":68,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":8,"t":48,"tokens":[8184,5211,17783,7603],"delegation":[7184,4211,16783,6603],"delegatorTokens":9999999948856,"jailed":[1000000000000023,null,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":69,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":70,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":71,"action":{"kind":"Undelegate","val":1,"amt":1024},"partialState":{"h":8,"t":48,"tokens":[8184,4187,17783,7603],"delegation":[7184,3187,16783,6603],"delegatorTokens":9999999948856}},{"ix":72,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":9,"t":54,"tokens":[8184,4187,17783,7603],"delegation":[7184,3187,16783,6603],"delegatorTokens":9999999948856,"jailed":[1000000000000023,null,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":73,"action":{"kind":"Delegate","val":3,"amt":3593},"partialState":{"h":9,"t":54,"tokens":[8184,4187,17783,11196],"delegation":[7184,3187,16783,10196],"delegatorTokens":9999999945263}},{"ix":74,"action":{"kind":"Deliver","chain":"provider","numPackets":6},"partialState":{"h":9,"t":54,"tokens":[8184,4187,17783,11196],"delegation":[7184,3187,16783,10196],"delegatorTokens":9999999945263,"jailed":[1000000000000023,null,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":75,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":10,"t":60,"tokens":[8184,4187,17783,11196],"delegation":[7184,3187,16783,10196],"delegatorTokens":9999999945263,"jailed":[1000000000000023,null,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":76,"action":{"kind":"Delegate","val":2,"amt":1408},"partialState":{"h":10,"t":60,"tokens":[8184,4187,19191,11196],"delegation":[7184,3187,18191,10196],"delegatorTokens":9999999943855}},{"ix":77,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":11,"t":66,"consumerPower":[null,9044,11004,null],"outstandingDowntime":[false,false,true,true]}},{"ix":78,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":12,"t":72,"consumerPower":[null,9044,11004,null],"outstandingDowntime":[false,false,true,true]}},{"ix":79,"action":{"kind":"Undelegate","val":1,"amt":2279},"partialState":{"h":10,"t":60,"tokens":[8184,1908,19191,11196],"delegation":[7184,908,18191,10196],"delegatorTokens":9999999943855}},{"ix":80,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":81,"action":{"kind":"Delegate","val":3,"amt":3000},"partialState":{"h":10,"t":60,"tokens":[8184,1908,19191,14196],"delegation":[7184,908,18191,13196],"delegatorTokens":9999999940855}},{"ix":82,"action":{"kind":"Deliver","chain":"provider","numPackets":3},"partialState":{"h":10,"t":60,"tokens":[8184,1908,19191,14196],"delegation":[7184,908,18191,13196],"delegatorTokens":9999999940855,"jailed":[1000000000000023,null,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":83,"action":{"kind":"Undelegate","val":2,"amt":1458},"partialState":{"h":10,"t":60,"tokens":[8184,1908,17733,14196],"delegation":[7184,908,16733,13196],"delegatorTokens":9999999940855}},{"ix":84,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":85,"action":{"kind":"Deliver","chain":"provider","numPackets":5},"partialState":{"h":10,"t":60,"tokens":[8184,1908,17733,14196],"delegation":[7184,908,16733,13196],"delegatorTokens":9999999940855,"jailed":[1000000000000023,null,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":86,"action":{"kind":"Delegate","val":0,"amt":4643},"partialState":{"h":10,"t":60,"tokens":[12827,1908,17733,14196],"delegation":[11827,908,16733,13196],"delegatorTokens":9999999936212}},{"ix":87,"action":{"kind":"Delegate","val":1,"amt":1325},"partialState":{"h":10,"t":60,"tokens":[12827,3233,17733,14196],"delegation":[11827,2233,16733,13196],"delegatorTokens":9999999934887}},{"ix":88,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":13,"t":78,"consumerPower":[null,9044,11004,null],"outstandingDowntime":[false,false,true,true]}},{"ix":89,"action":{"kind":"Deliver","chain":"consumer","numPackets":3},"partialState":{"h":13,"t":78,"consumerPower":[null,9044,11004,null],"outstandingDowntime":[false,false,true,true]}},{"ix":90,"action":{"kind":"Delegate","val":3,"amt":3294},"partialState":{"h":10,"t":60,"tokens":[12827,3233,17733,17490],"delegation":[11827,2233,16733,16490],"delegatorTokens":9999999931593}},{"ix":91,"action":{"kind":"Deliver","chain":"consumer","numPackets":4},"partialState":{"h":13,"t":78,"consumerPower":[null,9044,11004,null],"outstandingDowntime":[false,false,true,true]}},{"ix":92,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":11,"t":66,"tokens":[12827,3233,17733,17490],"delegation":[11827,2233,16733,16490],"delegatorTokens":9999999931593,"jailed":[1000000000000023,null,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":93,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":94,"action":{"kind":"Undelegate","val":1,"amt":2308},"partialState":{"h":11,"t":66,"tokens":[12827,3233,17733,17490],"delegation":[11827,2233,16733,16490],"delegatorTokens":9999999931593}},{"ix":95,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":14,"t":84,"consumerPower":[null,null,17783,7603],"outstandingDowntime":[false,false,true,true]}},{"ix":96,"action":{"kind":"Deliver","chain":"consumer","numPackets":3},"partialState":{"h":14,"t":84,"consumerPower":[null,null,17783,7603],"outstandingDowntime":[false,false,true,true]}},{"ix":97,"action":{"kind":"Undelegate","val":1,"amt":1333},"partialState":{"h":11,"t":66,"tokens":[12827,1900,17733,17490],"delegation":[11827,900,16733,16490],"delegatorTokens":9999999931593}},{"ix":98,"action":{"kind":"Deliver","chain":"provider","numPackets":3},"partialState":{"h":11,"t":66,"tokens":[12827,1900,17733,17490],"delegation":[11827,900,16733,16490],"delegatorTokens":9999999931593,"jailed":[1000000000000023,null,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":99,"action":{"kind":"Delegate","val":0,"amt":3708},"partialState":{"h":11,"t":66,"tokens":[16535,1900,17733,17490],"delegation":[15535,900,16733,16490],"delegatorTokens":9999999927885}},{"ix":100,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":15,"t":90,"consumerPower":[null,null,17783,11196],"outstandingDowntime":[false,false,true,true]}},{"ix":101,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":102,"action":{"kind":"Undelegate","val":0,"amt":4848},"partialState":{"h":11,"t":66,"tokens":[11687,1900,17733,17490],"delegation":[10687,900,16733,16490],"delegatorTokens":9999999927885}},{"ix":103,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":104,"action":{"kind":"Delegate","val":0,"amt":2338},"partialState":{"h":11,"t":66,"tokens":[14025,1900,17733,17490],"delegation":[13025,900,16733,16490],"delegatorTokens":9999999925547}},{"ix":105,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":106,"action":{"kind":"Deliver","chain":"consumer","numPackets":2},"partialState":{"h":15,"t":90,"consumerPower":[null,null,17783,11196],"outstandingDowntime":[false,false,true,true]}},{"ix":107,"action":{"kind":"Deliver","chain":"consumer","numPackets":5},"partialState":{"h":15,"t":90,"consumerPower":[null,null,17783,11196],"outstandingDowntime":[false,false,true,true]}},{"ix":108,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":109,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":110,"action":{"kind":"Undelegate","val":1,"amt":1472},"partialState":{"h":11,"t":66,"tokens":[14025,1900,17733,17490],"delegation":[13025,900,16733,16490],"delegatorTokens":9999999925547}},{"ix":111,"action":{"kind":"Deliver","chain":"provider","numPackets":1},"partialState":{"h":11,"t":66,"tokens":[14025,1900,17733,17490],"delegation":[13025,900,16733,16490],"delegatorTokens":9999999925547,"jailed":[1000000000000023,null,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":112,"action":{"kind":"Deliver","chain":"provider","numPackets":4},"partialState":{"h":11,"t":66,"tokens":[14025,1900,17733,17490],"delegation":[13025,900,16733,16490],"delegatorTokens":9999999925547,"jailed":[1000000000000023,null,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":113,"action":{"kind":"Undelegate","val":1,"amt":4333},"partialState":{"h":11,"t":66,"tokens":[14025,1900,17733,17490],"delegation":[13025,900,16733,16490],"delegatorTokens":9999999925547}},{"ix":114,"action":{"kind":"Delegate","val":1,"amt":1448},"partialState":{"h":11,"t":66,"tokens":[14025,3348,17733,17490],"delegation":[13025,2348,16733,16490],"delegatorTokens":9999999924099}},{"ix":115,"action":{"kind":"Deliver","chain":"provider","numPackets":4},"partialState":{"h":11,"t":66,"tokens":[14025,3348,17733,17490],"delegation":[13025,2348,16733,16490],"delegatorTokens":9999999924099,"jailed":[1000000000000023,null,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":116,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":117,"action":{"kind":"Undelegate","val":1,"amt":2675},"partialState":{"h":11,"t":66,"tokens":[14025,3348,17733,17490],"delegation":[13025,2348,16733,16490],"delegatorTokens":9999999924099}},{"ix":118,"action":{"kind":"Deliver","chain":"consumer","numPackets":4},"partialState":{"h":15,"t":90,"consumerPower":[null,null,17783,11196],"outstandingDowntime":[false,false,true,true]}},{"ix":119,"action":{"kind":"Deliver","chain":"provider","numPackets":3},"partialState":{"h":11,"t":66,"tokens":[14025,3348,17733,17490],"delegation":[13025,2348,16733,16490],"delegatorTokens":9999999924099,"jailed":[1000000000000023,null,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":120,"action":{"kind":"Delegate","val":2,"amt":3424},"partialState":{"h":11,"t":66,"tokens":[14025,3348,21157,17490],"delegation":[13025,2348,20157,16490],"delegatorTokens":9999999920675}},{"ix":121,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":122,"action":{"kind":"Deliver","chain":"provider","numPackets":2},"partialState":{"h":11,"t":66,"tokens":[14025,3348,21157,17490],"delegation":[13025,2348,20157,16490],"delegatorTokens":9999999920675,"jailed":[1000000000000023,null,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":123,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":124,"action":{"kind":"Deliver","chain":"consumer","numPackets":3},"partialState":{"h":15,"t":90,"consumerPower":[null,null,17783,11196],"outstandingDowntime":[false,false,true,true]}},{"ix":125,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":12,"t":72,"tokens":[14025,3348,21157,17490],"delegation":[13025,2348,20157,16490],"delegatorTokens":9999999920675,"jailed":[1000000000000023,null,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":126,"action":{"kind":"Delegate","val":1,"amt":2538},"partialState":{"h":12,"t":72,"tokens":[14025,5886,21157,17490],"delegation":[13025,4886,20157,16490],"delegatorTokens":9999999918137}},{"ix":127,"action":{"kind":"Deliver","chain":"provider","numPackets":5},"partialState":{"h":12,"t":72,"tokens":[14025,5886,21157,17490],"delegation":[13025,4886,20157,16490],"delegatorTokens":9999999918137,"jailed":[1000000000000023,null,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":128,"action":{"kind":"Delegate","val":1,"amt":1017},"partialState":{"h":12,"t":72,"tokens":[14025,6903,21157,17490],"delegation":[13025,5903,20157,16490],"delegatorTokens":9999999917120}},{"ix":129,"action":{"kind":"Delegate","val":1,"amt":1565},"partialState":{"h":12,"t":72,"tokens":[14025,8468,21157,17490],"delegation":[13025,7468,20157,16490],"delegatorTokens":9999999915555}},{"ix":130,"action":{"kind":"Deliver","chain":"consumer","numPackets":4},"partialState":{"h":15,"t":90,"consumerPower":[null,null,17783,11196],"outstandingDowntime":[false,false,true,true]}},{"ix":131,"action":{"kind":"Delegate","val":1,"amt":1301},"partialState":{"h":12,"t":72,"tokens":[14025,9769,21157,17490],"delegation":[13025,8769,20157,16490],"delegatorTokens":9999999914254}},{"ix":132,"action":{"kind":"Deliver","chain":"provider","numPackets":2},"partialState":{"h":12,"t":72,"tokens":[14025,9769,21157,17490],"delegation":[13025,8769,20157,16490],"delegatorTokens":9999999914254,"jailed":[1000000000000023,null,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":133,"action":{"kind":"Delegate","val":3,"amt":2605},"partialState":{"h":12,"t":72,"tokens":[14025,9769,21157,20095],"delegation":[13025,8769,20157,19095],"delegatorTokens":9999999911649}},{"ix":134,"action":{"kind":"Delegate","val":1,"amt":3014},"partialState":{"h":12,"t":72,"tokens":[14025,12783,21157,20095],"delegation":[13025,11783,20157,19095],"delegatorTokens":9999999908635}},{"ix":135,"action":{"kind":"Deliver","chain":"consumer","numPackets":1},"partialState":{"h":15,"t":90,"consumerPower":[null,null,17783,11196],"outstandingDowntime":[false,false,true,true]}},{"ix":136,"action":{"kind":"Deliver","chain":"consumer","numPackets":5},"partialState":{"h":15,"t":90,"consumerPower":[null,null,17783,11196],"outstandingDowntime":[false,false,true,true]}},{"ix":137,"action":{"kind":"Undelegate","val":2,"amt":4724},"partialState":{"h":12,"t":72,"tokens":[14025,12783,16433,20095],"delegation":[13025,11783,15433,19095],"delegatorTokens":9999999908635}},{"ix":138,"action":{"kind":"Deliver","chain":"provider","numPackets":1},"partialState":{"h":12,"t":72,"tokens":[14025,12783,16433,20095],"delegation":[13025,11783,15433,19095],"delegatorTokens":9999999908635,"jailed":[1000000000000023,null,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":139,"action":{"kind":"Deliver","chain":"consumer","numPackets":4},"partialState":{"h":15,"t":90,"consumerPower":[null,null,17783,11196],"outstandingDowntime":[false,false,true,true]}},{"ix":140,"action":{"kind":"Deliver","chain":"consumer","numPackets":1},"partialState":{"h":15,"t":90,"consumerPower":[null,null,17783,11196],"outstandingDowntime":[false,false,true,true]}},{"ix":141,"action":{"kind":"Delegate","val":2,"amt":1627},"partialState":{"h":12,"t":72,"tokens":[14025,12783,18060,20095],"delegation":[13025,11783,17060,19095],"delegatorTokens":9999999907008}},{"ix":142,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":143,"action":{"kind":"Undelegate","val":1,"amt":3290},"partialState":{"h":12,"t":72,"tokens":[14025,9493,18060,20095],"delegation":[13025,8493,17060,19095],"delegatorTokens":9999999907008}},{"ix":144,"action":{"kind":"Delegate","val":0,"amt":4971},"partialState":{"h":12,"t":72,"tokens":[18996,9493,18060,20095],"delegation":[17996,8493,17060,19095],"delegatorTokens":9999999902037}},{"ix":145,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":146,"action":{"kind":"Delegate","val":3,"amt":4336},"partialState":{"h":12,"t":72,"tokens":[18996,9493,18060,24431],"delegation":[17996,8493,17060,23431],"delegatorTokens":9999999897701}},{"ix":147,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":16,"t":96,"consumerPower":[null,null,17733,17490],"outstandingDowntime":[false,false,true,true]}},{"ix":148,"action":{"kind":"Undelegate","val":1,"amt":4052},"partialState":{"h":12,"t":72,"tokens":[18996,5441,18060,24431],"delegation":[17996,4441,17060,23431],"delegatorTokens":9999999897701}},{"ix":149,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":150,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":17,"t":102,"consumerPower":[null,null,17733,17490],"outstandingDowntime":[false,false,true,true]}},{"ix":151,"action":{"kind":"Deliver","chain":"consumer","numPackets":5},"partialState":{"h":17,"t":102,"consumerPower":[null,null,17733,17490],"outstandingDowntime":[false,false,true,true]}},{"ix":152,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":18,"t":108,"consumerPower":[null,null,17733,17490],"outstandingDowntime":[false,false,true,true]}},{"ix":153,"action":{"kind":"Undelegate","val":3,"amt":4625},"partialState":{"h":12,"t":72,"tokens":[18996,5441,18060,19806],"delegation":[17996,4441,17060,18806],"delegatorTokens":9999999897701}},{"ix":154,"action":{"kind":"Deliver","chain":"consumer","numPackets":3},"partialState":{"h":18,"t":108,"consumerPower":[null,null,17733,17490],"outstandingDowntime":[false,false,true,true]}},{"ix":155,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":13,"t":78,"tokens":[18996,5441,18060,19806],"delegation":[17996,4441,17060,18806],"delegatorTokens":9999999897701,"jailed":[1000000000000023,null,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":156,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":19,"t":114,"consumerPower":[null,null,17733,17490],"outstandingDowntime":[false,false,true,true]}},{"ix":157,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":14,"t":84,"tokens":[18996,5441,18060,19806],"delegation":[17996,4441,17060,18806],"delegatorTokens":9999999899678,"jailed":[1000000000000023,null,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":158,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":15,"t":90,"tokens":[18996,5441,18060,19806],"delegation":[17996,4441,17060,18806],"delegatorTokens":9999999899678,"jailed":[1000000000000023,null,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":159,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":160,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":161,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":162,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":16,"t":96,"tokens":[18996,5441,18060,19806],"delegation":[17996,4441,17060,18806],"delegatorTokens":9999999899678,"jailed":[1000000000000023,null,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":163,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":164,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":20,"t":120,"consumerPower":[null,null,17733,17490],"outstandingDowntime":[false,false,true,true]}},{"ix":165,"action":{"kind":"Deliver","chain":"provider","numPackets":1},"partialState":{"h":16,"t":96,"tokens":[18996,5441,18060,19806],"delegation":[17996,4441,17060,18806],"delegatorTokens":9999999899678,"jailed":[1000000000000023,null,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":166,"action":{"kind":"Undelegate","val":2,"amt":2949},"partialState":{"h":16,"t":96,"tokens":[18996,5441,15111,19806],"delegation":[17996,4441,14111,18806],"delegatorTokens":9999999899678}},{"ix":167,"action":{"kind":"Undelegate","val":3,"amt":2254},"partialState":{"h":16,"t":96,"tokens":[18996,5441,15111,17552],"delegation":[17996,4441,14111,16552],"delegatorTokens":9999999899678}},{"ix":168,"action":{"kind":"Undelegate","val":1,"amt":4322},"partialState":{"h":16,"t":96,"tokens":[18996,1119,15111,17552],"delegation":[17996,119,14111,16552],"delegatorTokens":9999999899678}},{"ix":169,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":21,"t":126,"consumerPower":[null,null,17733,17490],"outstandingDowntime":[false,false,true,true]}},{"ix":170,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":17,"t":102,"tokens":[18996,1119,15111,17552],"delegation":[17996,119,14111,16552],"delegatorTokens":9999999899678,"jailed":[1000000000000023,null,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":171,"action":{"kind":"Undelegate","val":1,"amt":1314},"partialState":{"h":17,"t":102,"tokens":[18996,1119,15111,17552],"delegation":[17996,119,14111,16552],"delegatorTokens":9999999899678}},{"ix":172,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":22,"t":132,"consumerPower":[null,null,17733,17490],"outstandingDowntime":[false,false,true,true]}},{"ix":173,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":174,"action":{"kind":"Deliver","chain":"provider","numPackets":3},"partialState":{"h":17,"t":102,"tokens":[18996,1119,15111,17552],"delegation":[17996,119,14111,16552],"delegatorTokens":9999999899678,"jailed":[1000000000000023,null,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":175,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":23,"t":138,"consumerPower":[null,null,17733,17490],"outstandingDowntime":[false,false,true,true]}},{"ix":176,"action":{"kind":"Undelegate","val":2,"amt":4109},"partialState":{"h":17,"t":102,"tokens":[18996,1119,11002,17552],"delegation":[17996,119,10002,16552],"delegatorTokens":9999999899678}},{"ix":177,"action":{"kind":"Undelegate","val":0,"amt":4734},"partialState":{"h":17,"t":102,"tokens":[14262,1119,11002,17552],"delegation":[13262,119,10002,16552],"delegatorTokens":9999999899678}},{"ix":178,"action":{"kind":"Delegate","val":2,"amt":2935},"partialState":{"h":17,"t":102,"tokens":[14262,1119,13937,17552],"delegation":[13262,119,12937,16552],"delegatorTokens":9999999896743}},{"ix":179,"action":{"kind":"Undelegate","val":0,"amt":4512},"partialState":{"h":17,"t":102,"tokens":[9750,1119,13937,17552],"delegation":[8750,119,12937,16552],"delegatorTokens":9999999896743}},{"ix":180,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":181,"action":{"kind":"Delegate","val":3,"amt":1340},"partialState":{"h":17,"t":102,"tokens":[9750,1119,13937,18892],"delegation":[8750,119,12937,17892],"delegatorTokens":9999999895403}},{"ix":182,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":18,"t":108,"tokens":[9750,1119,13937,18892],"delegation":[8750,119,12937,17892],"delegatorTokens":9999999909824,"jailed":[1000000000000023,null,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":183,"action":{"kind":"Delegate","val":2,"amt":2908},"partialState":{"h":18,"t":108,"tokens":[9750,1119,16845,18892],"delegation":[8750,119,15845,17892],"delegatorTokens":9999999906916}},{"ix":184,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":24,"t":144,"consumerPower":[null,null,17733,17490],"outstandingDowntime":[false,false,true,true]}},{"ix":185,"action":{"kind":"Undelegate","val":2,"amt":4146},"partialState":{"h":18,"t":108,"tokens":[9750,1119,12699,18892],"delegation":[8750,119,11699,17892],"delegatorTokens":9999999906916}},{"ix":186,"action":{"kind":"Delegate","val":1,"amt":3030},"partialState":{"h":18,"t":108,"tokens":[9750,4149,12699,18892],"delegation":[8750,3149,11699,17892],"delegatorTokens":9999999903886}},{"ix":187,"action":{"kind":"Undelegate","val":2,"amt":3705},"partialState":{"h":18,"t":108,"tokens":[9750,4149,8994,18892],"delegation":[8750,3149,7994,17892],"delegatorTokens":9999999903886}},{"ix":188,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":189,"action":{"kind":"Deliver","chain":"consumer","numPackets":3},"partialState":{"h":24,"t":144,"consumerPower":[null,null,17733,17490],"outstandingDowntime":[false,false,true,true]}},{"ix":190,"action":{"kind":"Deliver","chain":"consumer","numPackets":1},"partialState":{"h":24,"t":144,"consumerPower":[null,null,17733,17490],"outstandingDowntime":[false,false,true,true]}},{"ix":191,"action":{"kind":"Deliver","chain":"consumer","numPackets":1},"partialState":{"h":24,"t":144,"consumerPower":[null,null,17733,17490],"outstandingDowntime":[false,false,true,true]}},{"ix":192,"action":{"kind":"Delegate","val":2,"amt":4051},"partialState":{"h":18,"t":108,"tokens":[9750,4149,13045,18892],"delegation":[8750,3149,12045,17892],"delegatorTokens":9999999899835}},{"ix":193,"action":{"kind":"Delegate","val":1,"amt":3662},"partialState":{"h":18,"t":108,"tokens":[9750,7811,13045,18892],"delegation":[8750,6811,12045,17892],"delegatorTokens":9999999896173}},{"ix":194,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":195,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":196,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":197,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":19,"t":114,"tokens":[9750,7811,13045,18892],"delegation":[8750,6811,12045,17892],"delegatorTokens":9999999896173,"jailed":[1000000000000023,null,null,null],"status":["unbonded","unbonding","bonded","bonded"]}},{"ix":198,"action":{"kind":"Delegate","val":0,"amt":2605},"partialState":{"h":19,"t":114,"tokens":[12355,7811,13045,18892],"delegation":[11355,6811,12045,17892],"delegatorTokens":9999999893568}},{"ix":199,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":20,"t":120,"tokens":[12355,7811,13045,18892],"delegation":[11355,6811,12045,17892],"delegatorTokens":9999999893568,"jailed":[1000000000000023,null,null,null],"status":["unbonded","unbonding","bonded","bonded"]}}],"events":["send_vsc_without_downtime_ack","send_downtime_slash_request","send_downtime_slash_request","consumer_update_val","consumer_update_val","send_double_sign_slash_request","send_downtime_slash_request","insufficient_shares","receive_double_sign_slash_request","receive_slash_request_unbonded","receive_downtime_slash_request","jail","receive_slash_request_unbonded","send_vsc_with_downtime_ack","more_than_one_third_val_power_change","send_vsc_without_downtime_ack","send_vsc_without_downtime_ack","receive_downtime_slash_ack","send_vsc_without_downtime_ack","send_vsc_not_because_change","send_vsc_without_downtime_ack","send_vsc_without_downtime_ack","consumer_del_val","consumer_update_val","consumer_add_val","consumer_send_maturation","send_vsc_without_downtime_ack","insufficient_shares","consumer_update_val","consumer_del_val","consumer_add_val","consumer_update_val","insufficient_shares","insufficient_shares","insufficient_shares","set_undel_hold_false","send_vsc_without_downtime_ack","consumer_update_val","consumer_update_val","send_vsc_without_downtime_ack","complete_undel_in_endblock","consumer_send_maturation","consumer_send_maturation","some_undels_expired_but_not_completed","send_vsc_without_downtime_ack","insufficient_shares","consumer_send_maturation","consumer_send_maturation","consumer_send_maturation","some_undels_expired_but_not_completed","complete_undel_immediate","complete_undel_immediate","complete_undel_immediate","complete_undel_immediate","complete_undel_immediate","set_unval_hold_false","send_vsc_without_downtime_ack","consumer_send_maturation","complete_unval_in_endblock","some_undels_expired_but_not_completed","send_vsc_without_downtime_ack","some_undels_expired_but_not_completed"]},{"meta":{"commit":"7ffd0c04e4205cbc9caf212abfe6c59ee43153bf"},"constants":{"P":"provider","C":"consumer","UNBONDING_SECONDS_P":70,"UNBONDING_SECONDS_C":50,"TRUSTING_SECONDS":49,"NUM_VALIDATORS":4,"MAX_VALIDATORS":2,"SLASH_DOUBLESIGN":0,"SLASH_DOWNTIME":0,"JAIL_SECONDS":999999999999999,"BLOCK_SECONDS":6,"INITIAL_DELEGATOR_TOKENS":10000000000000,"DELEGATE_AMT_MIN":1000,"DELEGATE_AMT_MAX":5000,"UNDELEGATE_AMT_MIN":1000,"UNDELEGATE_AMT_MAX":5000,"ISDOWNTIME_PROBABILITY":0.5,"MAX_NUM_PACKETS_FOR_DELIVER":6},"actions":[{"ix":0,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":1,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":2,"action":{"kind":"Deliver","chain":"provider","numPackets":6},"partialState":{"h":1,"t":6,"tokens":[5000,4000,3000,2000],"delegation":[4000,3000,2000,1000],"delegatorTokens":10000000000000,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":3,"action":{"kind":"ConsumerSlash","val":2,"infractionHeight":0,"isDowntime":false},"partialState":{"h":1,"t":6,"outstandingDowntime":[false,false,false,false]}},{"ix":4,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":5,"action":{"kind":"ConsumerSlash","val":2,"infractionHeight":0,"isDowntime":false},"partialState":{"h":1,"t":6,"outstandingDowntime":[false,false,false,false]}},{"ix":6,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":2,"t":12,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":7,"action":{"kind":"Deliver","chain":"consumer","numPackets":2},"partialState":{"h":2,"t":12,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":8,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":3,"t":18,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":9,"action":{"kind":"ConsumerSlash","val":3,"infractionHeight":1,"isDowntime":true},"partialState":{"h":3,"t":18,"outstandingDowntime":[false,false,false,true]}},{"ix":10,"action":{"kind":"Undelegate","val":2,"amt":4688},"partialState":{"h":1,"t":6,"tokens":[5000,4000,3000,2000],"delegation":[4000,3000,2000,1000],"delegatorTokens":10000000000000}},{"ix":11,"action":{"kind":"ConsumerSlash","val":2,"infractionHeight":1,"isDowntime":true},"partialState":{"h":3,"t":18,"outstandingDowntime":[false,false,true,true]}},{"ix":12,"action":{"kind":"Deliver","chain":"consumer","numPackets":1},"partialState":{"h":3,"t":18,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,false,true,true]}},{"ix":13,"action":{"kind":"ConsumerSlash","val":1,"infractionHeight":2,"isDowntime":true},"partialState":{"h":3,"t":18,"outstandingDowntime":[false,true,true,true]}},{"ix":14,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":15,"action":{"kind":"Deliver","chain":"provider","numPackets":2},"partialState":{"h":1,"t":6,"tokens":[5000,4000,3000,2000],"delegation":[4000,3000,2000,1000],"delegatorTokens":10000000000000,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":16,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":17,"action":{"kind":"Undelegate","val":1,"amt":1404},"partialState":{"h":1,"t":6,"tokens":[5000,2596,3000,2000],"delegation":[4000,1596,2000,1000],"delegatorTokens":10000000000000}},{"ix":18,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":19,"action":{"kind":"Delegate","val":0,"amt":1097},"partialState":{"h":1,"t":6,"tokens":[6097,2596,3000,2000],"delegation":[5097,1596,2000,1000],"delegatorTokens":9999999998903}},{"ix":20,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":21,"action":{"kind":"Deliver","chain":"provider","numPackets":3},"partialState":{"h":1,"t":6,"tokens":[6097,2596,3000,2000],"delegation":[5097,1596,2000,1000],"delegatorTokens":9999999998903,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":22,"action":{"kind":"Undelegate","val":1,"amt":4597},"partialState":{"h":1,"t":6,"tokens":[6097,2596,3000,2000],"delegation":[5097,1596,2000,1000],"delegatorTokens":9999999998903}},{"ix":23,"action":{"kind":"Undelegate","val":0,"amt":4988},"partialState":{"h":1,"t":6,"tokens":[1109,2596,3000,2000],"delegation":[109,1596,2000,1000],"delegatorTokens":9999999998903}},{"ix":24,"action":{"kind":"Undelegate","val":3,"amt":4057},"partialState":{"h":1,"t":6,"tokens":[1109,2596,3000,2000],"delegation":[109,1596,2000,1000],"delegatorTokens":9999999998903}},{"ix":25,"action":{"kind":"Deliver","chain":"provider","numPackets":6},"partialState":{"h":1,"t":6,"tokens":[1109,2596,3000,2000],"delegation":[109,1596,2000,1000],"delegatorTokens":9999999998903,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":26,"action":{"kind":"Delegate","val":1,"amt":2293},"partialState":{"h":1,"t":6,"tokens":[1109,4889,3000,2000],"delegation":[109,3889,2000,1000],"delegatorTokens":9999999996610}},{"ix":27,"action":{"kind":"Undelegate","val":3,"amt":3259},"partialState":{"h":1,"t":6,"tokens":[1109,4889,3000,2000],"delegation":[109,3889,2000,1000],"delegatorTokens":9999999996610}},{"ix":28,"action":{"kind":"Undelegate","val":0,"amt":3119},"partialState":{"h":1,"t":6,"tokens":[1109,4889,3000,2000],"delegation":[109,3889,2000,1000],"delegatorTokens":9999999996610}},{"ix":29,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":4,"t":24,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,true,true,true]}},{"ix":30,"action":{"kind":"Delegate","val":0,"amt":3941},"partialState":{"h":1,"t":6,"tokens":[5050,4889,3000,2000],"delegation":[4050,3889,2000,1000],"delegatorTokens":9999999992669}},{"ix":31,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":2,"t":12,"tokens":[5050,4889,3000,2000],"delegation":[4050,3889,2000,1000],"delegatorTokens":9999999992669,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":32,"action":{"kind":"Undelegate","val":3,"amt":3714},"partialState":{"h":2,"t":12,"tokens":[5050,4889,3000,2000],"delegation":[4050,3889,2000,1000],"delegatorTokens":9999999992669}},{"ix":33,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":5,"t":30,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,true,true,true]}},{"ix":34,"action":{"kind":"Undelegate","val":1,"amt":1646},"partialState":{"h":2,"t":12,"tokens":[5050,3243,3000,2000],"delegation":[4050,2243,2000,1000],"delegatorTokens":9999999992669}},{"ix":35,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":3,"t":18,"tokens":[5050,3243,3000,2000],"delegation":[4050,2243,2000,1000],"delegatorTokens":9999999992669,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":36,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":4,"t":24,"tokens":[5050,3243,3000,2000],"delegation":[4050,2243,2000,1000],"delegatorTokens":9999999992669,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":37,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":38,"action":{"kind":"Undelegate","val":0,"amt":2162},"partialState":{"h":4,"t":24,"tokens":[2888,3243,3000,2000],"delegation":[1888,2243,2000,1000],"delegatorTokens":9999999992669}},{"ix":39,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":40,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":6,"t":36,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,true,true,true]}},{"ix":41,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":42,"action":{"kind":"Undelegate","val":2,"amt":2488},"partialState":{"h":4,"t":24,"tokens":[2888,3243,3000,2000],"delegation":[1888,2243,2000,1000],"delegatorTokens":9999999992669}},{"ix":43,"action":{"kind":"Delegate","val":0,"amt":2759},"partialState":{"h":4,"t":24,"tokens":[5647,3243,3000,2000],"delegation":[4647,2243,2000,1000],"delegatorTokens":9999999989910}},{"ix":44,"action":{"kind":"Deliver","chain":"provider","numPackets":2},"partialState":{"h":4,"t":24,"tokens":[5647,3243,3000,2000],"delegation":[4647,2243,2000,1000],"delegatorTokens":9999999989910,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":45,"action":{"kind":"Undelegate","val":1,"amt":4350},"partialState":{"h":4,"t":24,"tokens":[5647,3243,3000,2000],"delegation":[4647,2243,2000,1000],"delegatorTokens":9999999989910}},{"ix":46,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":47,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":48,"action":{"kind":"Undelegate","val":3,"amt":1820},"partialState":{"h":4,"t":24,"tokens":[5647,3243,3000,2000],"delegation":[4647,2243,2000,1000],"delegatorTokens":9999999989910}},{"ix":49,"action":{"kind":"Undelegate","val":0,"amt":4703},"partialState":{"h":4,"t":24,"tokens":[5647,3243,3000,2000],"delegation":[4647,2243,2000,1000],"delegatorTokens":9999999989910}},{"ix":50,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":51,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":7,"t":42,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,true,true,true]}},{"ix":52,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":53,"action":{"kind":"Delegate","val":0,"amt":4307},"partialState":{"h":4,"t":24,"tokens":[9954,3243,3000,2000],"delegation":[8954,2243,2000,1000],"delegatorTokens":9999999985603}},{"ix":54,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":55,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":8,"t":48,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,true,true,true]}},{"ix":56,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":57,"action":{"kind":"Deliver","chain":"provider","numPackets":6},"partialState":{"h":4,"t":24,"tokens":[9954,3243,3000,2000],"delegation":[8954,2243,2000,1000],"delegatorTokens":9999999985603,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":58,"action":{"kind":"Delegate","val":2,"amt":2442},"partialState":{"h":4,"t":24,"tokens":[9954,3243,5442,2000],"delegation":[8954,2243,4442,1000],"delegatorTokens":9999999983161}},{"ix":59,"action":{"kind":"Undelegate","val":2,"amt":2882},"partialState":{"h":4,"t":24,"tokens":[9954,3243,2560,2000],"delegation":[8954,2243,1560,1000],"delegatorTokens":9999999983161}},{"ix":60,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":5,"t":30,"tokens":[9954,3243,2560,2000],"delegation":[8954,2243,1560,1000],"delegatorTokens":9999999983161,"jailed":[null,1000000000000023,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":61,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":9,"t":54,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,true,true,true]}},{"ix":62,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":63,"action":{"kind":"Undelegate","val":1,"amt":4152},"partialState":{"h":5,"t":30,"tokens":[9954,3243,2560,2000],"delegation":[8954,2243,1560,1000],"delegatorTokens":9999999983161}},{"ix":64,"action":{"kind":"Deliver","chain":"provider","numPackets":3},"partialState":{"h":5,"t":30,"tokens":[9954,3243,2560,2000],"delegation":[8954,2243,1560,1000],"delegatorTokens":9999999983161,"jailed":[null,1000000000000023,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":65,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":6,"t":36,"tokens":[9954,3243,2560,2000],"delegation":[8954,2243,1560,1000],"delegatorTokens":9999999983161,"jailed":[null,1000000000000023,null,null],"status":["bonded","unbonding","bonded","unbonded"]}},{"ix":66,"action":{"kind":"Deliver","chain":"consumer","numPackets":2},"partialState":{"h":9,"t":54,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,true,true,true]}},{"ix":67,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":68,"action":{"kind":"Deliver","chain":"consumer","numPackets":1},"partialState":{"h":9,"t":54,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,false,true,true]}},{"ix":69,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":10,"t":60,"consumerPower":[9954,3243,null,null],"outstandingDowntime":[false,false,true,true]}},{"ix":70,"action":{"kind":"Delegate","val":1,"amt":2017},"partialState":{"h":6,"t":36,"tokens":[9954,5260,2560,2000],"delegation":[8954,4260,1560,1000],"delegatorTokens":9999999981144}},{"ix":71,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":72,"action":{"kind":"Delegate","val":2,"amt":2598},"partialState":{"h":6,"t":36,"tokens":[9954,5260,5158,2000],"delegation":[8954,4260,4158,1000],"delegatorTokens":9999999978546}},{"ix":73,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":7,"t":42,"tokens":[9954,5260,5158,2000],"delegation":[8954,4260,4158,1000],"delegatorTokens":9999999978546,"jailed":[null,1000000000000023,null,null],"status":["bonded","unbonding","bonded","unbonded"]}},{"ix":74,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":75,"action":{"kind":"Delegate","val":2,"amt":3823},"partialState":{"h":7,"t":42,"tokens":[9954,5260,8981,2000],"delegation":[8954,4260,7981,1000],"delegatorTokens":9999999974723}},{"ix":76,"action":{"kind":"Undelegate","val":1,"amt":3333},"partialState":{"h":7,"t":42,"tokens":[9954,1927,8981,2000],"delegation":[8954,927,7981,1000],"delegatorTokens":9999999974723}},{"ix":77,"action":{"kind":"Delegate","val":1,"amt":3105},"partialState":{"h":7,"t":42,"tokens":[9954,5032,8981,2000],"delegation":[8954,4032,7981,1000],"delegatorTokens":9999999971618}},{"ix":78,"action":{"kind":"Deliver","chain":"provider","numPackets":2},"partialState":{"h":7,"t":42,"tokens":[9954,5032,8981,2000],"delegation":[8954,4032,7981,1000],"delegatorTokens":9999999971618,"jailed":[null,1000000000000023,null,null],"status":["bonded","unbonding","bonded","unbonded"]}},{"ix":79,"action":{"kind":"Undelegate","val":2,"amt":1589},"partialState":{"h":7,"t":42,"tokens":[9954,5032,7392,2000],"delegation":[8954,4032,6392,1000],"delegatorTokens":9999999971618}},{"ix":80,"action":{"kind":"Deliver","chain":"consumer","numPackets":3},"partialState":{"h":10,"t":60,"consumerPower":[9954,3243,null,null],"outstandingDowntime":[false,false,true,true]}},{"ix":81,"action":{"kind":"Deliver","chain":"consumer","numPackets":4},"partialState":{"h":10,"t":60,"consumerPower":[9954,3243,null,null],"outstandingDowntime":[false,false,true,true]}},{"ix":82,"action":{"kind":"Delegate","val":3,"amt":3554},"partialState":{"h":7,"t":42,"tokens":[9954,5032,7392,5554],"delegation":[8954,4032,6392,4554],"delegatorTokens":9999999968064}},{"ix":83,"action":{"kind":"Deliver","chain":"consumer","numPackets":1},"partialState":{"h":10,"t":60,"consumerPower":[9954,3243,null,null],"outstandingDowntime":[false,false,true,true]}},{"ix":84,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":85,"action":{"kind":"Deliver","chain":"consumer","numPackets":3},"partialState":{"h":10,"t":60,"consumerPower":[9954,3243,null,null],"outstandingDowntime":[false,false,true,true]}},{"ix":86,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":87,"action":{"kind":"Deliver","chain":"provider","numPackets":1},"partialState":{"h":7,"t":42,"tokens":[9954,5032,7392,5554],"delegation":[8954,4032,6392,4554],"delegatorTokens":9999999968064,"jailed":[null,1000000000000023,null,null],"status":["bonded","unbonding","bonded","unbonded"]}},{"ix":88,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":8,"t":48,"tokens":[9954,5032,7392,5554],"delegation":[8954,4032,6392,4554],"delegatorTokens":9999999968064,"jailed":[null,1000000000000023,null,null],"status":["bonded","unbonding","bonded","unbonded"]}},{"ix":89,"action":{"kind":"Undelegate","val":2,"amt":4896},"partialState":{"h":8,"t":48,"tokens":[9954,5032,2496,5554],"delegation":[8954,4032,1496,4554],"delegatorTokens":9999999968064}},{"ix":90,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":91,"action":{"kind":"Deliver","chain":"consumer","numPackets":6},"partialState":{"h":10,"t":60,"consumerPower":[9954,3243,null,null],"outstandingDowntime":[false,false,true,true]}},{"ix":92,"action":{"kind":"Deliver","chain":"consumer","numPackets":1},"partialState":{"h":10,"t":60,"consumerPower":[9954,3243,null,null],"outstandingDowntime":[false,false,true,true]}},{"ix":93,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":9,"t":54,"tokens":[9954,5032,2496,5554],"delegation":[8954,4032,1496,4554],"delegatorTokens":9999999968064,"jailed":[null,1000000000000023,null,null],"status":["bonded","unbonding","unbonding","bonded"]}},{"ix":94,"action":{"kind":"Delegate","val":3,"amt":3884},"partialState":{"h":9,"t":54,"tokens":[9954,5032,2496,9438],"delegation":[8954,4032,1496,8438],"delegatorTokens":9999999964180}},{"ix":95,"action":{"kind":"Deliver","chain":"provider","numPackets":2},"partialState":{"h":9,"t":54,"tokens":[9954,5032,2496,9438],"delegation":[8954,4032,1496,8438],"delegatorTokens":9999999964180,"jailed":[null,1000000000000023,null,null],"status":["bonded","unbonding","unbonding","bonded"]}},{"ix":96,"action":{"kind":"Undelegate","val":3,"amt":4000},"partialState":{"h":9,"t":54,"tokens":[9954,5032,2496,5438],"delegation":[8954,4032,1496,4438],"delegatorTokens":9999999964180}},{"ix":97,"action":{"kind":"Undelegate","val":3,"amt":1946},"partialState":{"h":9,"t":54,"tokens":[9954,5032,2496,3492],"delegation":[8954,4032,1496,2492],"delegatorTokens":9999999964180}},{"ix":98,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":99,"action":{"kind":"Delegate","val":2,"amt":4473},"partialState":{"h":9,"t":54,"tokens":[9954,5032,6969,3492],"delegation":[8954,4032,5969,2492],"delegatorTokens":9999999959707}},{"ix":100,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":101,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":10,"t":60,"tokens":[9954,5032,6969,3492],"delegation":[8954,4032,5969,2492],"delegatorTokens":9999999959707,"jailed":[null,1000000000000023,null,null],"status":["bonded","unbonding","bonded","unbonding"]}},{"ix":102,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":11,"t":66,"consumerPower":[9954,null,5158,null],"outstandingDowntime":[false,false,true,true]}},{"ix":103,"action":{"kind":"Delegate","val":3,"amt":4160},"partialState":{"h":10,"t":60,"tokens":[9954,5032,6969,7652],"delegation":[8954,4032,5969,6652],"delegatorTokens":9999999955547}},{"ix":104,"action":{"kind":"Deliver","chain":"provider","numPackets":4},"partialState":{"h":10,"t":60,"tokens":[9954,5032,6969,7652],"delegation":[8954,4032,5969,6652],"delegatorTokens":9999999955547,"jailed":[null,1000000000000023,null,null],"status":["bonded","unbonding","bonded","unbonding"]}},{"ix":105,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":12,"t":72,"consumerPower":[9954,null,5158,null],"outstandingDowntime":[false,false,true,true]}},{"ix":106,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":107,"action":{"kind":"Delegate","val":0,"amt":1110},"partialState":{"h":10,"t":60,"tokens":[11064,5032,6969,7652],"delegation":[10064,4032,5969,6652],"delegatorTokens":9999999954437}},{"ix":108,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":109,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":110,"action":{"kind":"Undelegate","val":1,"amt":1337},"partialState":{"h":10,"t":60,"tokens":[11064,3695,6969,7652],"delegation":[10064,2695,5969,6652],"delegatorTokens":9999999954437}},{"ix":111,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":112,"action":{"kind":"Delegate","val":2,"amt":2843},"partialState":{"h":10,"t":60,"tokens":[11064,3695,9812,7652],"delegation":[10064,2695,8812,6652],"delegatorTokens":9999999951594}},{"ix":113,"action":{"kind":"Deliver","chain":"consumer","numPackets":3},"partialState":{"h":12,"t":72,"consumerPower":[9954,null,5158,null],"outstandingDowntime":[false,false,true,true]}},{"ix":114,"action":{"kind":"Delegate","val":3,"amt":4589},"partialState":{"h":10,"t":60,"tokens":[11064,3695,9812,12241],"delegation":[10064,2695,8812,11241],"delegatorTokens":9999999947005}},{"ix":115,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":116,"action":{"kind":"Delegate","val":3,"amt":1746},"partialState":{"h":10,"t":60,"tokens":[11064,3695,9812,13987],"delegation":[10064,2695,8812,12987],"delegatorTokens":9999999945259}},{"ix":117,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":11,"t":66,"tokens":[11064,3695,9812,13987],"delegation":[10064,2695,8812,12987],"delegatorTokens":9999999945259,"jailed":[null,1000000000000023,null,null],"status":["bonded","unbonding","unbonding","bonded"]}},{"ix":118,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":13,"t":78,"consumerPower":[9954,null,null,5554],"outstandingDowntime":[false,false,true,true]}},{"ix":119,"action":{"kind":"Undelegate","val":0,"amt":4860},"partialState":{"h":11,"t":66,"tokens":[6204,3695,9812,13987],"delegation":[5204,2695,8812,12987],"delegatorTokens":9999999945259}},{"ix":120,"action":{"kind":"Deliver","chain":"provider","numPackets":5},"partialState":{"h":11,"t":66,"tokens":[6204,3695,9812,13987],"delegation":[5204,2695,8812,12987],"delegatorTokens":9999999945259,"jailed":[null,1000000000000023,null,null],"status":["bonded","unbonding","unbonding","bonded"]}},{"ix":121,"action":{"kind":"Delegate","val":2,"amt":2916},"partialState":{"h":11,"t":66,"tokens":[6204,3695,12728,13987],"delegation":[5204,2695,11728,12987],"delegatorTokens":9999999942343}},{"ix":122,"action":{"kind":"Deliver","chain":"consumer","numPackets":2},"partialState":{"h":13,"t":78,"consumerPower":[9954,null,null,5554],"outstandingDowntime":[false,false,true,true]}},{"ix":123,"action":{"kind":"Delegate","val":0,"amt":3994},"partialState":{"h":11,"t":66,"tokens":[10198,3695,12728,13987],"delegation":[9198,2695,11728,12987],"delegatorTokens":9999999938349}},{"ix":124,"action":{"kind":"Delegate","val":2,"amt":1558},"partialState":{"h":11,"t":66,"tokens":[10198,3695,14286,13987],"delegation":[9198,2695,13286,12987],"delegatorTokens":9999999936791}},{"ix":125,"action":{"kind":"Delegate","val":2,"amt":2556},"partialState":{"h":11,"t":66,"tokens":[10198,3695,16842,13987],"delegation":[9198,2695,15842,12987],"delegatorTokens":9999999934235}},{"ix":126,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":14,"t":84,"consumerPower":[9954,null,6969,null],"outstandingDowntime":[false,false,true,true]}},{"ix":127,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":128,"action":{"kind":"Undelegate","val":2,"amt":1221},"partialState":{"h":11,"t":66,"tokens":[10198,3695,15621,13987],"delegation":[9198,2695,14621,12987],"delegatorTokens":9999999934235}},{"ix":129,"action":{"kind":"Delegate","val":2,"amt":3911},"partialState":{"h":11,"t":66,"tokens":[10198,3695,19532,13987],"delegation":[9198,2695,18532,12987],"delegatorTokens":9999999930324}},{"ix":130,"action":{"kind":"Deliver","chain":"consumer","numPackets":2},"partialState":{"h":14,"t":84,"consumerPower":[9954,null,6969,null],"outstandingDowntime":[false,false,true,true]}},{"ix":131,"action":{"kind":"Deliver","chain":"consumer","numPackets":4},"partialState":{"h":14,"t":84,"consumerPower":[9954,null,6969,null],"outstandingDowntime":[false,false,true,true]}},{"ix":132,"action":{"kind":"Delegate","val":2,"amt":3280},"partialState":{"h":11,"t":66,"tokens":[10198,3695,22812,13987],"delegation":[9198,2695,21812,12987],"delegatorTokens":9999999927044}},{"ix":133,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":12,"t":72,"tokens":[10198,3695,22812,13987],"delegation":[9198,2695,21812,12987],"delegatorTokens":9999999927044,"jailed":[null,1000000000000023,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":134,"action":{"kind":"Deliver","chain":"provider","numPackets":5},"partialState":{"h":12,"t":72,"tokens":[10198,3695,22812,13987],"delegation":[9198,2695,21812,12987],"delegatorTokens":9999999927044,"jailed":[null,1000000000000023,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":135,"action":{"kind":"Deliver","chain":"provider","numPackets":4},"partialState":{"h":12,"t":72,"tokens":[10198,3695,22812,13987],"delegation":[9198,2695,21812,12987],"delegatorTokens":9999999927044,"jailed":[null,1000000000000023,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":136,"action":{"kind":"Undelegate","val":2,"amt":2527},"partialState":{"h":12,"t":72,"tokens":[10198,3695,20285,13987],"delegation":[9198,2695,19285,12987],"delegatorTokens":9999999927044}},{"ix":137,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":15,"t":90,"consumerPower":[9954,null,6969,null],"outstandingDowntime":[false,false,true,true]}},{"ix":138,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":13,"t":78,"tokens":[10198,3695,20285,13987],"delegation":[9198,2695,19285,12987],"delegatorTokens":9999999927044,"jailed":[null,1000000000000023,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":139,"action":{"kind":"Undelegate","val":3,"amt":3508},"partialState":{"h":13,"t":78,"tokens":[10198,3695,20285,10479],"delegation":[9198,2695,19285,9479],"delegatorTokens":9999999927044}},{"ix":140,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":16,"t":96,"consumerPower":[9954,null,6969,null],"outstandingDowntime":[false,false,true,true]}},{"ix":141,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":14,"t":84,"tokens":[10198,3695,20285,10479],"delegation":[9198,2695,19285,9479],"delegatorTokens":9999999927044,"jailed":[null,1000000000000023,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":142,"action":{"kind":"Delegate","val":2,"amt":3559},"partialState":{"h":14,"t":84,"tokens":[10198,3695,23844,10479],"delegation":[9198,2695,22844,9479],"delegatorTokens":9999999923485}},{"ix":143,"action":{"kind":"Deliver","chain":"consumer","numPackets":2},"partialState":{"h":16,"t":96,"consumerPower":[9954,null,6969,null],"outstandingDowntime":[false,false,true,true]}},{"ix":144,"action":{"kind":"Delegate","val":2,"amt":1737},"partialState":{"h":14,"t":84,"tokens":[10198,3695,25581,10479],"delegation":[9198,2695,24581,9479],"delegatorTokens":9999999921748}},{"ix":145,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":146,"action":{"kind":"Deliver","chain":"consumer","numPackets":5},"partialState":{"h":16,"t":96,"consumerPower":[9954,null,6969,null],"outstandingDowntime":[false,false,true,true]}},{"ix":147,"action":{"kind":"Delegate","val":3,"amt":3033},"partialState":{"h":14,"t":84,"tokens":[10198,3695,25581,13512],"delegation":[9198,2695,24581,12512],"delegatorTokens":9999999918715}},{"ix":148,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":17,"t":102,"consumerPower":[null,null,20285,13987],"outstandingDowntime":[false,false,true,true]}},{"ix":149,"action":{"kind":"Delegate","val":0,"amt":1659},"partialState":{"h":14,"t":84,"tokens":[11857,3695,25581,13512],"delegation":[10857,2695,24581,12512],"delegatorTokens":9999999917056}},{"ix":150,"action":{"kind":"Delegate","val":0,"amt":4128},"partialState":{"h":14,"t":84,"tokens":[15985,3695,25581,13512],"delegation":[14985,2695,24581,12512],"delegatorTokens":9999999912928}},{"ix":151,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":18,"t":108,"consumerPower":[null,null,20285,13987],"outstandingDowntime":[false,false,true,true]}},{"ix":152,"action":{"kind":"Deliver","chain":"consumer","numPackets":1},"partialState":{"h":18,"t":108,"consumerPower":[null,null,20285,13987],"outstandingDowntime":[false,false,true,true]}},{"ix":153,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":154,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":19,"t":114,"consumerPower":[null,null,20285,13987],"outstandingDowntime":[false,false,true,true]}},{"ix":155,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":15,"t":90,"tokens":[15985,3695,25581,13512],"delegation":[14985,2695,24581,12512],"delegatorTokens":9999999912928,"jailed":[null,1000000000000023,null,null],"status":["bonded","unbonding","bonded","unbonding"]}},{"ix":156,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":157,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":16,"t":96,"tokens":[15985,3695,25581,13512],"delegation":[14985,2695,24581,12512],"delegatorTokens":9999999912928,"jailed":[null,1000000000000023,null,null],"status":["bonded","unbonding","bonded","unbonding"]}},{"ix":158,"action":{"kind":"Deliver","chain":"provider","numPackets":6},"partialState":{"h":16,"t":96,"tokens":[15985,3695,25581,13512],"delegation":[14985,2695,24581,12512],"delegatorTokens":9999999912928,"jailed":[null,1000000000000023,null,null],"status":["bonded","unbonding","bonded","unbonding"]}},{"ix":159,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":160,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":161,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":162,"action":{"kind":"Delegate","val":2,"amt":2957},"partialState":{"h":16,"t":96,"tokens":[15985,3695,28538,13512],"delegation":[14985,2695,27538,12512],"delegatorTokens":9999999909971}},{"ix":163,"action":{"kind":"Deliver","chain":"consumer","numPackets":4},"partialState":{"h":19,"t":114,"consumerPower":[null,null,20285,13987],"outstandingDowntime":[false,false,true,true]}},{"ix":164,"action":{"kind":"Delegate","val":1,"amt":4070},"partialState":{"h":16,"t":96,"tokens":[15985,7765,28538,13512],"delegation":[14985,6765,27538,12512],"delegatorTokens":9999999905901}},{"ix":165,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":166,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":167,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":17,"t":102,"tokens":[15985,7765,28538,13512],"delegation":[14985,6765,27538,12512],"delegatorTokens":9999999905901,"jailed":[null,1000000000000023,null,null],"status":["bonded","unbonding","bonded","unbonding"]}},{"ix":168,"action":{"kind":"Deliver","chain":"consumer","numPackets":3},"partialState":{"h":19,"t":114,"consumerPower":[null,null,20285,13987],"outstandingDowntime":[false,false,true,true]}},{"ix":169,"action":{"kind":"Undelegate","val":3,"amt":1100},"partialState":{"h":17,"t":102,"tokens":[15985,7765,28538,12412],"delegation":[14985,6765,27538,11412],"delegatorTokens":9999999905901}},{"ix":170,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":20,"t":120,"consumerPower":[15985,null,25581,null],"outstandingDowntime":[false,false,true,true]}},{"ix":171,"action":{"kind":"Deliver","chain":"provider","numPackets":4},"partialState":{"h":17,"t":102,"tokens":[15985,7765,28538,12412],"delegation":[14985,6765,27538,11412],"delegatorTokens":9999999905901,"jailed":[null,1000000000000023,null,null],"status":["bonded","unbonding","bonded","unbonding"]}},{"ix":172,"action":{"kind":"Undelegate","val":3,"amt":4881},"partialState":{"h":17,"t":102,"tokens":[15985,7765,28538,7531],"delegation":[14985,6765,27538,6531],"delegatorTokens":9999999905901}},{"ix":173,"action":{"kind":"Undelegate","val":1,"amt":4222},"partialState":{"h":17,"t":102,"tokens":[15985,3543,28538,7531],"delegation":[14985,2543,27538,6531],"delegatorTokens":9999999905901}},{"ix":174,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":21,"t":126,"consumerPower":[15985,null,25581,null],"outstandingDowntime":[false,false,true,true]}},{"ix":175,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":22,"t":132,"consumerPower":[15985,null,25581,null],"outstandingDowntime":[false,false,true,true]}},{"ix":176,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":23,"t":138,"consumerPower":[15985,null,25581,null],"outstandingDowntime":[false,false,true,true]}},{"ix":177,"action":{"kind":"Undelegate","val":2,"amt":3496},"partialState":{"h":17,"t":102,"tokens":[15985,3543,25042,7531],"delegation":[14985,2543,24042,6531],"delegatorTokens":9999999905901}},{"ix":178,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":18,"t":108,"tokens":[15985,3543,25042,7531],"delegation":[14985,2543,24042,6531],"delegatorTokens":9999999918983,"jailed":[null,1000000000000023,null,null],"status":["bonded","unbonding","bonded","unbonding"]}},{"ix":179,"action":{"kind":"Undelegate","val":3,"amt":1401},"partialState":{"h":18,"t":108,"tokens":[15985,3543,25042,6130],"delegation":[14985,2543,24042,5130],"delegatorTokens":9999999918983}},{"ix":180,"action":{"kind":"Deliver","chain":"provider","numPackets":2},"partialState":{"h":18,"t":108,"tokens":[15985,3543,25042,6130],"delegation":[14985,2543,24042,5130],"delegatorTokens":9999999918983,"jailed":[null,1000000000000023,null,null],"status":["bonded","unbonding","bonded","unbonding"]}},{"ix":181,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":182,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":183,"action":{"kind":"Undelegate","val":2,"amt":2555},"partialState":{"h":18,"t":108,"tokens":[15985,3543,22487,6130],"delegation":[14985,2543,21487,5130],"delegatorTokens":9999999918983}},{"ix":184,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":185,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":186,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":187,"action":{"kind":"Undelegate","val":3,"amt":2424},"partialState":{"h":18,"t":108,"tokens":[15985,3543,22487,3706],"delegation":[14985,2543,21487,2706],"delegatorTokens":9999999918983}},{"ix":188,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":189,"action":{"kind":"Undelegate","val":2,"amt":3760},"partialState":{"h":18,"t":108,"tokens":[15985,3543,18727,3706],"delegation":[14985,2543,17727,2706],"delegatorTokens":9999999918983}},{"ix":190,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":191,"action":{"kind":"Deliver","chain":"provider","numPackets":3},"partialState":{"h":18,"t":108,"tokens":[15985,3543,18727,3706],"delegation":[14985,2543,17727,2706],"delegatorTokens":9999999918983,"jailed":[null,1000000000000023,null,null],"status":["bonded","unbonding","bonded","unbonding"]}},{"ix":192,"action":{"kind":"Delegate","val":0,"amt":4025},"partialState":{"h":18,"t":108,"tokens":[20010,3543,18727,3706],"delegation":[19010,2543,17727,2706],"delegatorTokens":9999999914958}},{"ix":193,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":24,"t":144,"consumerPower":[15985,null,25581,null],"outstandingDowntime":[false,false,true,true]}},{"ix":194,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":195,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":19,"t":114,"tokens":[20010,3543,18727,3706],"delegation":[19010,2543,17727,2706],"delegatorTokens":9999999914958,"jailed":[null,1000000000000023,null,null],"status":["bonded","unbonding","bonded","unbonding"]}},{"ix":196,"action":{"kind":"Deliver","chain":"consumer","numPackets":5},"partialState":{"h":24,"t":144,"consumerPower":[15985,null,25581,null],"outstandingDowntime":[false,false,true,true]}},{"ix":197,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":198,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":20,"t":120,"tokens":[20010,3543,18727,3706],"delegation":[19010,2543,17727,2706],"delegatorTokens":9999999919880,"jailed":[null,1000000000000023,null,null],"status":["bonded","unbonded","bonded","unbonding"]}},{"ix":199,"action":{"kind":"Undelegate","val":0,"amt":4409},"partialState":{"h":20,"t":120,"tokens":[15601,3543,18727,3706],"delegation":[14601,2543,17727,2706],"delegatorTokens":9999999919880}}],"events":["send_double_sign_slash_request","send_double_sign_slash_request","send_downtime_slash_request","insufficient_shares","send_downtime_slash_request","send_downtime_slash_request","receive_double_sign_slash_request","receive_double_sign_slash_request","insufficient_shares","insufficient_shares","insufficient_shares","insufficient_shares","send_vsc_without_downtime_ack","insufficient_shares","send_vsc_without_downtime_ack","insufficient_shares","insufficient_shares","insufficient_shares","insufficient_shares","receive_slash_request_unbonded","receive_slash_request_unbonded","receive_downtime_slash_request","jail","send_vsc_with_downtime_ack","insufficient_shares","send_vsc_without_downtime_ack","receive_downtime_slash_ack","consumer_update_val","consumer_update_val","send_vsc_without_downtime_ack","send_vsc_without_downtime_ack","more_than_one_third_val_power_change","send_vsc_without_downtime_ack","more_than_one_third_val_power_change","rebond_unval","send_vsc_without_downtime_ack","consumer_del_val","consumer_add_val","more_than_one_third_val_power_change","rebond_unval","send_vsc_without_downtime_ack","consumer_del_val","consumer_add_val","consumer_add_val","consumer_del_val","more_than_one_third_val_power_change","rebond_unval","send_vsc_without_downtime_ack","send_vsc_without_downtime_ack","some_undels_expired_but_not_completed","send_vsc_without_downtime_ack","consumer_del_val","consumer_update_val","consumer_add_val","consumer_send_maturation","consumer_send_maturation","consumer_send_maturation","more_than_one_third_val_power_change","rebond_unval","some_undels_expired_but_not_completed","send_vsc_without_downtime_ack","some_undels_expired_but_not_completed","send_vsc_without_downtime_ack","consumer_send_maturation","consumer_send_maturation","consumer_del_val","consumer_add_val","consumer_update_val","consumer_send_maturation","consumer_send_maturation","consumer_send_maturation","complete_undel_immediate","complete_undel_immediate","complete_undel_immediate","complete_undel_immediate","complete_undel_immediate","send_vsc_without_downtime_ack","set_unval_hold_false","set_undel_hold_false","set_undel_hold_false","set_undel_hold_false","send_vsc_without_downtime_ack","complete_unval_in_endblock","complete_undel_in_endblock"]},{"meta":{"commit":"7ffd0c04e4205cbc9caf212abfe6c59ee43153bf"},"constants":{"P":"provider","C":"consumer","UNBONDING_SECONDS_P":70,"UNBONDING_SECONDS_C":50,"TRUSTING_SECONDS":49,"NUM_VALIDATORS":4,"MAX_VALIDATORS":2,"SLASH_DOUBLESIGN":0,"SLASH_DOWNTIME":0,"JAIL_SECONDS":999999999999999,"BLOCK_SECONDS":6,"INITIAL_DELEGATOR_TOKENS":10000000000000,"DELEGATE_AMT_MIN":1000,"DELEGATE_AMT_MAX":5000,"UNDELEGATE_AMT_MIN":1000,"UNDELEGATE_AMT_MAX":5000,"ISDOWNTIME_PROBABILITY":0.5,"MAX_NUM_PACKETS_FOR_DELIVER":6},"actions":[{"ix":0,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":2,"t":12,"tokens":[5000,4000,3000,2000],"delegation":[4000,3000,2000,1000],"delegatorTokens":10000000000000,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":1,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":3,"t":18,"tokens":[5000,4000,3000,2000],"delegation":[4000,3000,2000,1000],"delegatorTokens":10000000000000,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":2,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":3,"action":{"kind":"ConsumerSlash","val":1,"infractionHeight":0,"isDowntime":true},"partialState":{"h":1,"t":6,"outstandingDowntime":[false,true,false,false]}},{"ix":4,"action":{"kind":"Undelegate","val":1,"amt":4759},"partialState":{"h":3,"t":18,"tokens":[5000,4000,3000,2000],"delegation":[4000,3000,2000,1000],"delegatorTokens":10000000000000}},{"ix":5,"action":{"kind":"Deliver","chain":"provider","numPackets":2},"partialState":{"h":3,"t":18,"tokens":[5000,4000,3000,2000],"delegation":[4000,3000,2000,1000],"delegatorTokens":10000000000000,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":6,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":2,"t":12,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,true,false,false]}},{"ix":7,"action":{"kind":"Delegate","val":1,"amt":3917},"partialState":{"h":3,"t":18,"tokens":[5000,7917,3000,2000],"delegation":[4000,6917,2000,1000],"delegatorTokens":9999999996083}},{"ix":8,"action":{"kind":"ConsumerSlash","val":3,"infractionHeight":0,"isDowntime":true},"partialState":{"h":2,"t":12,"outstandingDowntime":[false,true,false,true]}},{"ix":9,"action":{"kind":"Undelegate","val":0,"amt":1655},"partialState":{"h":3,"t":18,"tokens":[3345,7917,3000,2000],"delegation":[2345,6917,2000,1000],"delegatorTokens":9999999996083}},{"ix":10,"action":{"kind":"Delegate","val":1,"amt":1839},"partialState":{"h":3,"t":18,"tokens":[3345,9756,3000,2000],"delegation":[2345,8756,2000,1000],"delegatorTokens":9999999994244}},{"ix":11,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":12,"action":{"kind":"Deliver","chain":"consumer","numPackets":5},"partialState":{"h":2,"t":12,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,true,false,true]}},{"ix":13,"action":{"kind":"Undelegate","val":1,"amt":1234},"partialState":{"h":3,"t":18,"tokens":[3345,8522,3000,2000],"delegation":[2345,7522,2000,1000],"delegatorTokens":9999999994244}},{"ix":14,"action":{"kind":"Deliver","chain":"consumer","numPackets":5},"partialState":{"h":2,"t":12,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,true,false,true]}},{"ix":15,"action":{"kind":"ConsumerSlash","val":2,"infractionHeight":1,"isDowntime":true},"partialState":{"h":2,"t":12,"outstandingDowntime":[false,true,true,true]}},{"ix":16,"action":{"kind":"Undelegate","val":3,"amt":3450},"partialState":{"h":3,"t":18,"tokens":[3345,8522,3000,2000],"delegation":[2345,7522,2000,1000],"delegatorTokens":9999999994244}},{"ix":17,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":3,"t":18,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,true,true,true]}},{"ix":18,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":4,"t":24,"tokens":[3345,8522,3000,2000],"delegation":[2345,7522,2000,1000],"delegatorTokens":9999999994244,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":19,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":4,"t":24,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,true,true,true]}},{"ix":20,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":21,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":22,"action":{"kind":"Deliver","chain":"consumer","numPackets":5},"partialState":{"h":4,"t":24,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,true,true,true]}},{"ix":23,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":24,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":25,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":5,"t":30,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,true,true,true]}},{"ix":26,"action":{"kind":"Deliver","chain":"consumer","numPackets":3},"partialState":{"h":5,"t":30,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,true,true,true]}},{"ix":27,"action":{"kind":"Deliver","chain":"provider","numPackets":5},"partialState":{"h":4,"t":24,"tokens":[3345,8522,3000,2000],"delegation":[2345,7522,2000,1000],"delegatorTokens":9999999994244,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":28,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":29,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":5,"t":30,"tokens":[3345,8522,3000,2000],"delegation":[2345,7522,2000,1000],"delegatorTokens":9999999994244,"jailed":[null,1000000000000023,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":30,"action":{"kind":"Deliver","chain":"consumer","numPackets":2},"partialState":{"h":5,"t":30,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,true,true,true]}},{"ix":31,"action":{"kind":"Deliver","chain":"provider","numPackets":2},"partialState":{"h":5,"t":30,"tokens":[3345,8522,3000,2000],"delegation":[2345,7522,2000,1000],"delegatorTokens":9999999994244,"jailed":[null,1000000000000023,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":32,"action":{"kind":"Delegate","val":2,"amt":1140},"partialState":{"h":5,"t":30,"tokens":[3345,8522,4140,2000],"delegation":[2345,7522,3140,1000],"delegatorTokens":9999999993104}},{"ix":33,"action":{"kind":"Delegate","val":2,"amt":1240},"partialState":{"h":5,"t":30,"tokens":[3345,8522,5380,2000],"delegation":[2345,7522,4380,1000],"delegatorTokens":9999999991864}},{"ix":34,"action":{"kind":"Undelegate","val":0,"amt":3223},"partialState":{"h":5,"t":30,"tokens":[3345,8522,5380,2000],"delegation":[2345,7522,4380,1000],"delegatorTokens":9999999991864}},{"ix":35,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":6,"t":36,"consumerPower":[3345,8522,null,null],"outstandingDowntime":[false,true,true,true]}},{"ix":36,"action":{"kind":"Undelegate","val":0,"amt":2994},"partialState":{"h":5,"t":30,"tokens":[3345,8522,5380,2000],"delegation":[2345,7522,4380,1000],"delegatorTokens":9999999991864}},{"ix":37,"action":{"kind":"Undelegate","val":1,"amt":1750},"partialState":{"h":5,"t":30,"tokens":[3345,6772,5380,2000],"delegation":[2345,5772,4380,1000],"delegatorTokens":9999999991864}},{"ix":38,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":39,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":40,"action":{"kind":"Undelegate","val":1,"amt":4857},"partialState":{"h":5,"t":30,"tokens":[3345,1915,5380,2000],"delegation":[2345,915,4380,1000],"delegatorTokens":9999999991864}},{"ix":41,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":42,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":43,"action":{"kind":"Deliver","chain":"consumer","numPackets":1},"partialState":{"h":6,"t":36,"consumerPower":[3345,8522,null,null],"outstandingDowntime":[false,true,true,true]}},{"ix":44,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":6,"t":36,"tokens":[3345,1915,5380,2000],"delegation":[2345,915,4380,1000],"delegatorTokens":9999999991864,"jailed":[null,1000000000000023,null,null],"status":["bonded","unbonding","bonded","unbonded"]}},{"ix":45,"action":{"kind":"Undelegate","val":1,"amt":2370},"partialState":{"h":6,"t":36,"tokens":[3345,1915,5380,2000],"delegation":[2345,915,4380,1000],"delegatorTokens":9999999991864}},{"ix":46,"action":{"kind":"Delegate","val":3,"amt":2783},"partialState":{"h":6,"t":36,"tokens":[3345,1915,5380,4783],"delegation":[2345,915,4380,3783],"delegatorTokens":9999999989081}},{"ix":47,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":7,"t":42,"tokens":[3345,1915,5380,4783],"delegation":[2345,915,4380,3783],"delegatorTokens":9999999989081,"jailed":[null,1000000000000023,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":48,"action":{"kind":"Deliver","chain":"provider","numPackets":3},"partialState":{"h":7,"t":42,"tokens":[3345,1915,5380,4783],"delegation":[2345,915,4380,3783],"delegatorTokens":9999999989081,"jailed":[null,1000000000000023,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":49,"action":{"kind":"Delegate","val":1,"amt":4948},"partialState":{"h":7,"t":42,"tokens":[3345,6863,5380,4783],"delegation":[2345,5863,4380,3783],"delegatorTokens":9999999984133}},{"ix":50,"action":{"kind":"Undelegate","val":1,"amt":1363},"partialState":{"h":7,"t":42,"tokens":[3345,5500,5380,4783],"delegation":[2345,4500,4380,3783],"delegatorTokens":9999999984133}},{"ix":51,"action":{"kind":"Undelegate","val":3,"amt":3717},"partialState":{"h":7,"t":42,"tokens":[3345,5500,5380,1066],"delegation":[2345,4500,4380,66],"delegatorTokens":9999999984133}},{"ix":52,"action":{"kind":"Deliver","chain":"provider","numPackets":2},"partialState":{"h":7,"t":42,"tokens":[3345,5500,5380,1066],"delegation":[2345,4500,4380,66],"delegatorTokens":9999999984133,"jailed":[null,1000000000000023,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":53,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":54,"action":{"kind":"Deliver","chain":"provider","numPackets":6},"partialState":{"h":7,"t":42,"tokens":[3345,5500,5380,1066],"delegation":[2345,4500,4380,66],"delegatorTokens":9999999984133,"jailed":[null,1000000000000023,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":55,"action":{"kind":"Undelegate","val":2,"amt":3419},"partialState":{"h":7,"t":42,"tokens":[3345,5500,1961,1066],"delegation":[2345,4500,961,66],"delegatorTokens":9999999984133}},{"ix":56,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":8,"t":48,"tokens":[3345,5500,1961,1066],"delegation":[2345,4500,961,66],"delegatorTokens":9999999984133,"jailed":[null,1000000000000023,null,null],"status":["bonded","unbonding","bonded","unbonding"]}},{"ix":57,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":58,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":59,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":60,"action":{"kind":"Delegate","val":3,"amt":1702},"partialState":{"h":8,"t":48,"tokens":[3345,5500,1961,2768],"delegation":[2345,4500,961,1768],"delegatorTokens":9999999982431}},{"ix":61,"action":{"kind":"Delegate","val":1,"amt":3969},"partialState":{"h":8,"t":48,"tokens":[3345,9469,1961,2768],"delegation":[2345,8469,961,1768],"delegatorTokens":9999999978462}},{"ix":62,"action":{"kind":"Delegate","val":1,"amt":1220},"partialState":{"h":8,"t":48,"tokens":[3345,10689,1961,2768],"delegation":[2345,9689,961,1768],"delegatorTokens":9999999977242}},{"ix":63,"action":{"kind":"Delegate","val":3,"amt":3597},"partialState":{"h":8,"t":48,"tokens":[3345,10689,1961,6365],"delegation":[2345,9689,961,5365],"delegatorTokens":9999999973645}},{"ix":64,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":7,"t":42,"consumerPower":[3345,8522,null,null],"outstandingDowntime":[false,true,true,true]}},{"ix":65,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":8,"t":48,"consumerPower":[3345,8522,null,null],"outstandingDowntime":[false,true,true,true]}},{"ix":66,"action":{"kind":"Delegate","val":2,"amt":2217},"partialState":{"h":8,"t":48,"tokens":[3345,10689,4178,6365],"delegation":[2345,9689,3178,5365],"delegatorTokens":9999999971428}},{"ix":67,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":9,"t":54,"tokens":[3345,10689,4178,6365],"delegation":[2345,9689,3178,5365],"delegatorTokens":9999999971428,"jailed":[null,1000000000000023,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":68,"action":{"kind":"Deliver","chain":"consumer","numPackets":4},"partialState":{"h":8,"t":48,"consumerPower":[3345,8522,null,null],"outstandingDowntime":[false,false,true,true]}},{"ix":69,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":9,"t":54,"consumerPower":[3345,null,1961,null],"outstandingDowntime":[false,false,true,true]}},{"ix":70,"action":{"kind":"Undelegate","val":2,"amt":4127},"partialState":{"h":9,"t":54,"tokens":[3345,10689,4178,6365],"delegation":[2345,9689,3178,5365],"delegatorTokens":9999999971428}},{"ix":71,"action":{"kind":"Deliver","chain":"consumer","numPackets":5},"partialState":{"h":9,"t":54,"consumerPower":[3345,null,1961,null],"outstandingDowntime":[false,false,true,true]}},{"ix":72,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":10,"t":60,"tokens":[3345,10689,4178,6365],"delegation":[2345,9689,3178,5365],"delegatorTokens":9999999971428,"jailed":[null,1000000000000023,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":73,"action":{"kind":"Deliver","chain":"consumer","numPackets":6},"partialState":{"h":9,"t":54,"consumerPower":[3345,null,1961,null],"outstandingDowntime":[false,false,true,true]}},{"ix":74,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":10,"t":60,"consumerPower":[null,null,4178,6365],"outstandingDowntime":[false,false,true,true]}},{"ix":75,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":76,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":77,"action":{"kind":"Undelegate","val":3,"amt":1751},"partialState":{"h":10,"t":60,"tokens":[3345,10689,4178,4614],"delegation":[2345,9689,3178,3614],"delegatorTokens":9999999971428}},{"ix":78,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":79,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":80,"action":{"kind":"Delegate","val":2,"amt":4609},"partialState":{"h":10,"t":60,"tokens":[3345,10689,8787,4614],"delegation":[2345,9689,7787,3614],"delegatorTokens":9999999966819}},{"ix":81,"action":{"kind":"Deliver","chain":"consumer","numPackets":2},"partialState":{"h":10,"t":60,"consumerPower":[null,null,4178,6365],"outstandingDowntime":[false,false,true,true]}},{"ix":82,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":11,"t":66,"tokens":[3345,10689,8787,4614],"delegation":[2345,9689,7787,3614],"delegatorTokens":9999999966819,"jailed":[null,1000000000000023,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":83,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":84,"action":{"kind":"Delegate","val":1,"amt":1559},"partialState":{"h":11,"t":66,"tokens":[3345,12248,8787,4614],"delegation":[2345,11248,7787,3614],"delegatorTokens":9999999965260}},{"ix":85,"action":{"kind":"Delegate","val":0,"amt":1415},"partialState":{"h":11,"t":66,"tokens":[4760,12248,8787,4614],"delegation":[3760,11248,7787,3614],"delegatorTokens":9999999963845}},{"ix":86,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":12,"t":72,"tokens":[4760,12248,8787,4614],"delegation":[3760,11248,7787,3614],"delegatorTokens":9999999963845,"jailed":[null,1000000000000023,null,null],"status":["bonded","unbonding","bonded","unbonding"]}},{"ix":87,"action":{"kind":"Deliver","chain":"provider","numPackets":2},"partialState":{"h":12,"t":72,"tokens":[4760,12248,8787,4614],"delegation":[3760,11248,7787,3614],"delegatorTokens":9999999963845,"jailed":[null,1000000000000023,null,null],"status":["bonded","unbonding","bonded","unbonding"]}},{"ix":88,"action":{"kind":"Delegate","val":2,"amt":4611},"partialState":{"h":12,"t":72,"tokens":[4760,12248,13398,4614],"delegation":[3760,11248,12398,3614],"delegatorTokens":9999999959234}},{"ix":89,"action":{"kind":"Undelegate","val":3,"amt":3589},"partialState":{"h":12,"t":72,"tokens":[4760,12248,13398,1025],"delegation":[3760,11248,12398,25],"delegatorTokens":9999999959234}},{"ix":90,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":11,"t":66,"consumerPower":[null,null,4178,6365],"outstandingDowntime":[false,false,true,true]}},{"ix":91,"action":{"kind":"Delegate","val":3,"amt":4080},"partialState":{"h":12,"t":72,"tokens":[4760,12248,13398,5105],"delegation":[3760,11248,12398,4105],"delegatorTokens":9999999955154}},{"ix":92,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":93,"action":{"kind":"Undelegate","val":3,"amt":1982},"partialState":{"h":12,"t":72,"tokens":[4760,12248,13398,3123],"delegation":[3760,11248,12398,2123],"delegatorTokens":9999999955154}},{"ix":94,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":13,"t":78,"tokens":[4760,12248,13398,3123],"delegation":[3760,11248,12398,2123],"delegatorTokens":9999999955154,"jailed":[null,1000000000000023,null,null],"status":["bonded","unbonding","bonded","unbonding"]}},{"ix":95,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":12,"t":72,"consumerPower":[null,null,4178,6365],"outstandingDowntime":[false,false,true,true]}},{"ix":96,"action":{"kind":"Undelegate","val":1,"amt":1278},"partialState":{"h":13,"t":78,"tokens":[4760,10970,13398,3123],"delegation":[3760,9970,12398,2123],"delegatorTokens":9999999955154}},{"ix":97,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":98,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":13,"t":78,"consumerPower":[null,null,4178,6365],"outstandingDowntime":[false,false,true,true]}},{"ix":99,"action":{"kind":"Deliver","chain":"provider","numPackets":1},"partialState":{"h":13,"t":78,"tokens":[4760,10970,13398,3123],"delegation":[3760,9970,12398,2123],"delegatorTokens":9999999955154,"jailed":[null,1000000000000023,null,null],"status":["bonded","unbonding","bonded","unbonding"]}},{"ix":100,"action":{"kind":"Delegate","val":1,"amt":2648},"partialState":{"h":13,"t":78,"tokens":[4760,13618,13398,3123],"delegation":[3760,12618,12398,2123],"delegatorTokens":9999999952506}},{"ix":101,"action":{"kind":"Undelegate","val":2,"amt":3548},"partialState":{"h":13,"t":78,"tokens":[4760,13618,9850,3123],"delegation":[3760,12618,8850,2123],"delegatorTokens":9999999952506}},{"ix":102,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":14,"t":84,"tokens":[4760,13618,9850,3123],"delegation":[3760,12618,8850,2123],"delegatorTokens":9999999952506,"jailed":[null,1000000000000023,null,null],"status":["bonded","unbonding","bonded","unbonding"]}},{"ix":103,"action":{"kind":"Delegate","val":0,"amt":1571},"partialState":{"h":14,"t":84,"tokens":[6331,13618,9850,3123],"delegation":[5331,12618,8850,2123],"delegatorTokens":9999999950935}},{"ix":104,"action":{"kind":"Deliver","chain":"consumer","numPackets":4},"partialState":{"h":13,"t":78,"consumerPower":[null,null,4178,6365],"outstandingDowntime":[false,false,true,true]}},{"ix":105,"action":{"kind":"Delegate","val":2,"amt":1385},"partialState":{"h":14,"t":84,"tokens":[6331,13618,11235,3123],"delegation":[5331,12618,10235,2123],"delegatorTokens":9999999949550}},{"ix":106,"action":{"kind":"Deliver","chain":"provider","numPackets":5},"partialState":{"h":14,"t":84,"tokens":[6331,13618,11235,3123],"delegation":[5331,12618,10235,2123],"delegatorTokens":9999999949550,"jailed":[null,1000000000000023,null,null],"status":["bonded","unbonding","bonded","unbonding"]}},{"ix":107,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":108,"action":{"kind":"Deliver","chain":"provider","numPackets":6},"partialState":{"h":14,"t":84,"tokens":[6331,13618,11235,3123],"delegation":[5331,12618,10235,2123],"delegatorTokens":9999999949550,"jailed":[null,1000000000000023,null,null],"status":["bonded","unbonding","bonded","unbonding"]}},{"ix":109,"action":{"kind":"Undelegate","val":3,"amt":2623},"partialState":{"h":14,"t":84,"tokens":[6331,13618,11235,3123],"delegation":[5331,12618,10235,2123],"delegatorTokens":9999999949550}},{"ix":110,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":111,"action":{"kind":"Undelegate","val":1,"amt":1780},"partialState":{"h":14,"t":84,"tokens":[6331,11838,11235,3123],"delegation":[5331,10838,10235,2123],"delegatorTokens":9999999949550}},{"ix":112,"action":{"kind":"Undelegate","val":0,"amt":3297},"partialState":{"h":14,"t":84,"tokens":[3034,11838,11235,3123],"delegation":[2034,10838,10235,2123],"delegatorTokens":9999999949550}},{"ix":113,"action":{"kind":"Delegate","val":1,"amt":3693},"partialState":{"h":14,"t":84,"tokens":[3034,15531,11235,3123],"delegation":[2034,14531,10235,2123],"delegatorTokens":9999999945857}},{"ix":114,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":14,"t":84,"consumerPower":[4760,null,13398,null],"outstandingDowntime":[false,false,true,true]}},{"ix":115,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":116,"action":{"kind":"Delegate","val":0,"amt":1081},"partialState":{"h":14,"t":84,"tokens":[4115,15531,11235,3123],"delegation":[3115,14531,10235,2123],"delegatorTokens":9999999944776}},{"ix":117,"action":{"kind":"Deliver","chain":"provider","numPackets":5},"partialState":{"h":14,"t":84,"tokens":[4115,15531,11235,3123],"delegation":[3115,14531,10235,2123],"delegatorTokens":9999999944776,"jailed":[null,1000000000000023,null,null],"status":["bonded","unbonding","bonded","unbonding"]}},{"ix":118,"action":{"kind":"Undelegate","val":0,"amt":2544},"partialState":{"h":14,"t":84,"tokens":[1571,15531,11235,3123],"delegation":[571,14531,10235,2123],"delegatorTokens":9999999944776}},{"ix":119,"action":{"kind":"Delegate","val":0,"amt":2592},"partialState":{"h":14,"t":84,"tokens":[4163,15531,11235,3123],"delegation":[3163,14531,10235,2123],"delegatorTokens":9999999942184}},{"ix":120,"action":{"kind":"Deliver","chain":"provider","numPackets":3},"partialState":{"h":14,"t":84,"tokens":[4163,15531,11235,3123],"delegation":[3163,14531,10235,2123],"delegatorTokens":9999999942184,"jailed":[null,1000000000000023,null,null],"status":["bonded","unbonding","bonded","unbonding"]}},{"ix":121,"action":{"kind":"Deliver","chain":"consumer","numPackets":1},"partialState":{"h":14,"t":84,"consumerPower":[4760,null,13398,null],"outstandingDowntime":[false,false,true,true]}},{"ix":122,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":15,"t":90,"tokens":[4163,15531,11235,3123],"delegation":[3163,14531,10235,2123],"delegatorTokens":9999999942184,"jailed":[null,1000000000000023,null,null],"status":["bonded","unbonding","bonded","unbonding"]}},{"ix":123,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":15,"t":90,"consumerPower":[4760,null,13398,null],"outstandingDowntime":[false,false,true,true]}},{"ix":124,"action":{"kind":"Delegate","val":0,"amt":2042},"partialState":{"h":15,"t":90,"tokens":[6205,15531,11235,3123],"delegation":[5205,14531,10235,2123],"delegatorTokens":9999999940142}},{"ix":125,"action":{"kind":"Delegate","val":1,"amt":3348},"partialState":{"h":15,"t":90,"tokens":[6205,18879,11235,3123],"delegation":[5205,17879,10235,2123],"delegatorTokens":9999999936794}},{"ix":126,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":16,"t":96,"tokens":[6205,18879,11235,3123],"delegation":[5205,17879,10235,2123],"delegatorTokens":9999999936794,"jailed":[null,1000000000000023,null,null],"status":["bonded","unbonding","bonded","unbonding"]}},{"ix":127,"action":{"kind":"Undelegate","val":3,"amt":1227},"partialState":{"h":16,"t":96,"tokens":[6205,18879,11235,1896],"delegation":[5205,17879,10235,896],"delegatorTokens":9999999936794}},{"ix":128,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":16,"t":96,"consumerPower":[4760,null,13398,null],"outstandingDowntime":[false,false,true,true]}},{"ix":129,"action":{"kind":"Deliver","chain":"provider","numPackets":5},"partialState":{"h":16,"t":96,"tokens":[6205,18879,11235,1896],"delegation":[5205,17879,10235,896],"delegatorTokens":9999999936794,"jailed":[null,1000000000000023,null,null],"status":["bonded","unbonding","bonded","unbonding"]}},{"ix":130,"action":{"kind":"Undelegate","val":1,"amt":4764},"partialState":{"h":16,"t":96,"tokens":[6205,14115,11235,1896],"delegation":[5205,13115,10235,896],"delegatorTokens":9999999936794}},{"ix":131,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":132,"action":{"kind":"Delegate","val":0,"amt":1060},"partialState":{"h":16,"t":96,"tokens":[7265,14115,11235,1896],"delegation":[6265,13115,10235,896],"delegatorTokens":9999999935734}},{"ix":133,"action":{"kind":"Undelegate","val":1,"amt":4560},"partialState":{"h":16,"t":96,"tokens":[7265,9555,11235,1896],"delegation":[6265,8555,10235,896],"delegatorTokens":9999999935734}},{"ix":134,"action":{"kind":"Undelegate","val":0,"amt":2416},"partialState":{"h":16,"t":96,"tokens":[4849,9555,11235,1896],"delegation":[3849,8555,10235,896],"delegatorTokens":9999999935734}},{"ix":135,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":17,"t":102,"consumerPower":[4760,null,13398,null],"outstandingDowntime":[false,false,true,true]}},{"ix":136,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":17,"t":102,"tokens":[4849,9555,11235,1896],"delegation":[3849,8555,10235,896],"delegatorTokens":9999999938623,"jailed":[null,1000000000000023,null,null],"status":["bonded","unbonding","bonded","unbonding"]}},{"ix":137,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":18,"t":108,"consumerPower":[4760,null,13398,null],"outstandingDowntime":[false,false,true,true]}},{"ix":138,"action":{"kind":"Delegate","val":2,"amt":1785},"partialState":{"h":17,"t":102,"tokens":[4849,9555,13020,1896],"delegation":[3849,8555,12020,896],"delegatorTokens":9999999936838}},{"ix":139,"action":{"kind":"Delegate","val":2,"amt":2437},"partialState":{"h":17,"t":102,"tokens":[4849,9555,15457,1896],"delegation":[3849,8555,14457,896],"delegatorTokens":9999999934401}},{"ix":140,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":18,"t":108,"tokens":[4849,9555,15457,1896],"delegation":[3849,8555,14457,896],"delegatorTokens":9999999934401,"jailed":[null,1000000000000023,null,null],"status":["bonded","unbonding","bonded","unbonding"]}},{"ix":141,"action":{"kind":"Deliver","chain":"consumer","numPackets":6},"partialState":{"h":18,"t":108,"consumerPower":[4760,null,13398,null],"outstandingDowntime":[false,false,true,true]}},{"ix":142,"action":{"kind":"Deliver","chain":"consumer","numPackets":5},"partialState":{"h":18,"t":108,"consumerPower":[4760,null,13398,null],"outstandingDowntime":[false,false,true,true]}},{"ix":143,"action":{"kind":"Delegate","val":1,"amt":2149},"partialState":{"h":18,"t":108,"tokens":[4849,11704,15457,1896],"delegation":[3849,10704,14457,896],"delegatorTokens":9999999932252}},{"ix":144,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":19,"t":114,"consumerPower":[4849,null,11235,null],"outstandingDowntime":[false,false,true,true]}},{"ix":145,"action":{"kind":"Undelegate","val":3,"amt":3638},"partialState":{"h":18,"t":108,"tokens":[4849,11704,15457,1896],"delegation":[3849,10704,14457,896],"delegatorTokens":9999999932252}},{"ix":146,"action":{"kind":"Delegate","val":3,"amt":2399},"partialState":{"h":18,"t":108,"tokens":[4849,11704,15457,4295],"delegation":[3849,10704,14457,3295],"delegatorTokens":9999999929853}},{"ix":147,"action":{"kind":"Deliver","chain":"provider","numPackets":1},"partialState":{"h":18,"t":108,"tokens":[4849,11704,15457,4295],"delegation":[3849,10704,14457,3295],"delegatorTokens":9999999929853,"jailed":[null,1000000000000023,null,null],"status":["bonded","unbonding","bonded","unbonding"]}},{"ix":148,"action":{"kind":"Delegate","val":2,"amt":3946},"partialState":{"h":18,"t":108,"tokens":[4849,11704,19403,4295],"delegation":[3849,10704,18403,3295],"delegatorTokens":9999999925907}},{"ix":149,"action":{"kind":"Deliver","chain":"provider","numPackets":5},"partialState":{"h":18,"t":108,"tokens":[4849,11704,19403,4295],"delegation":[3849,10704,18403,3295],"delegatorTokens":9999999925907,"jailed":[null,1000000000000023,null,null],"status":["bonded","unbonding","bonded","unbonding"]}},{"ix":150,"action":{"kind":"Delegate","val":2,"amt":2877},"partialState":{"h":18,"t":108,"tokens":[4849,11704,22280,4295],"delegation":[3849,10704,21280,3295],"delegatorTokens":9999999923030}},{"ix":151,"action":{"kind":"Undelegate","val":0,"amt":2671},"partialState":{"h":18,"t":108,"tokens":[2178,11704,22280,4295],"delegation":[1178,10704,21280,3295],"delegatorTokens":9999999923030}},{"ix":152,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":20,"t":120,"consumerPower":[4849,null,11235,null],"outstandingDowntime":[false,false,true,true]}},{"ix":153,"action":{"kind":"Delegate","val":2,"amt":1360},"partialState":{"h":18,"t":108,"tokens":[2178,11704,23640,4295],"delegation":[1178,10704,22640,3295],"delegatorTokens":9999999921670}},{"ix":154,"action":{"kind":"Delegate","val":3,"amt":1884},"partialState":{"h":18,"t":108,"tokens":[2178,11704,23640,6179],"delegation":[1178,10704,22640,5179],"delegatorTokens":9999999919786}},{"ix":155,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":156,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":157,"action":{"kind":"Undelegate","val":0,"amt":1889},"partialState":{"h":18,"t":108,"tokens":[2178,11704,23640,6179],"delegation":[1178,10704,22640,5179],"delegatorTokens":9999999919786}},{"ix":158,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":19,"t":114,"tokens":[2178,11704,23640,6179],"delegation":[1178,10704,22640,5179],"delegatorTokens":9999999926393,"jailed":[null,1000000000000023,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":159,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":20,"t":120,"tokens":[2178,11704,23640,6179],"delegation":[1178,10704,22640,5179],"delegatorTokens":9999999934892,"jailed":[null,1000000000000023,null,null],"status":["unbonding","unbonded","bonded","bonded"]}},{"ix":160,"action":{"kind":"Delegate","val":2,"amt":2563},"partialState":{"h":20,"t":120,"tokens":[2178,11704,26203,6179],"delegation":[1178,10704,25203,5179],"delegatorTokens":9999999932329}},{"ix":161,"action":{"kind":"Deliver","chain":"consumer","numPackets":2},"partialState":{"h":20,"t":120,"consumerPower":[4849,null,11235,null],"outstandingDowntime":[false,false,true,true]}},{"ix":162,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":163,"action":{"kind":"Delegate","val":2,"amt":4389},"partialState":{"h":20,"t":120,"tokens":[2178,11704,30592,6179],"delegation":[1178,10704,29592,5179],"delegatorTokens":9999999927940}},{"ix":164,"action":{"kind":"Deliver","chain":"consumer","numPackets":2},"partialState":{"h":20,"t":120,"consumerPower":[4849,null,11235,null],"outstandingDowntime":[false,false,true,true]}},{"ix":165,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":21,"t":126,"tokens":[2178,11704,30592,6179],"delegation":[1178,10704,29592,5179],"delegatorTokens":9999999927940,"jailed":[null,1000000000000023,null,null],"status":["unbonding","unbonded","bonded","bonded"]}},{"ix":166,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":167,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":168,"action":{"kind":"Deliver","chain":"consumer","numPackets":3},"partialState":{"h":20,"t":120,"consumerPower":[4849,null,11235,null],"outstandingDowntime":[false,false,true,true]}},{"ix":169,"action":{"kind":"Deliver","chain":"consumer","numPackets":2},"partialState":{"h":20,"t":120,"consumerPower":[4849,null,11235,null],"outstandingDowntime":[false,false,true,true]}},{"ix":170,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":21,"t":126,"consumerPower":[null,null,23640,6179],"outstandingDowntime":[false,false,true,true]}},{"ix":171,"action":{"kind":"Deliver","chain":"consumer","numPackets":4},"partialState":{"h":21,"t":126,"consumerPower":[null,null,23640,6179],"outstandingDowntime":[false,false,true,true]}},{"ix":172,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":173,"action":{"kind":"Deliver","chain":"provider","numPackets":3},"partialState":{"h":21,"t":126,"tokens":[2178,11704,30592,6179],"delegation":[1178,10704,29592,5179],"delegatorTokens":9999999927940,"jailed":[null,1000000000000023,null,null],"status":["unbonding","unbonded","bonded","bonded"]}},{"ix":174,"action":{"kind":"Undelegate","val":2,"amt":4778},"partialState":{"h":21,"t":126,"tokens":[2178,11704,25814,6179],"delegation":[1178,10704,24814,5179],"delegatorTokens":9999999927940}},{"ix":175,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":22,"t":132,"tokens":[2178,11704,25814,6179],"delegation":[1178,10704,24814,5179],"delegatorTokens":9999999927940,"jailed":[null,1000000000000023,null,null],"status":["unbonding","unbonded","bonded","bonded"]}},{"ix":176,"action":{"kind":"Deliver","chain":"consumer","numPackets":5},"partialState":{"h":21,"t":126,"consumerPower":[null,null,23640,6179],"outstandingDowntime":[false,false,true,true]}},{"ix":177,"action":{"kind":"Deliver","chain":"provider","numPackets":5},"partialState":{"h":22,"t":132,"tokens":[2178,11704,25814,6179],"delegation":[1178,10704,24814,5179],"delegatorTokens":9999999927940,"jailed":[null,1000000000000023,null,null],"status":["unbonding","unbonded","bonded","bonded"]}},{"ix":178,"action":{"kind":"Undelegate","val":0,"amt":4387},"partialState":{"h":22,"t":132,"tokens":[2178,11704,25814,6179],"delegation":[1178,10704,24814,5179],"delegatorTokens":9999999927940}},{"ix":179,"action":{"kind":"Deliver","chain":"provider","numPackets":1},"partialState":{"h":22,"t":132,"tokens":[2178,11704,25814,6179],"delegation":[1178,10704,24814,5179],"delegatorTokens":9999999927940,"jailed":[null,1000000000000023,null,null],"status":["unbonding","unbonded","bonded","bonded"]}},{"ix":180,"action":{"kind":"Deliver","chain":"provider","numPackets":6},"partialState":{"h":22,"t":132,"tokens":[2178,11704,25814,6179],"delegation":[1178,10704,24814,5179],"delegatorTokens":9999999927940,"jailed":[null,1000000000000023,null,null],"status":["unbonding","unbonded","bonded","bonded"]}},{"ix":181,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":23,"t":138,"tokens":[2178,11704,25814,6179],"delegation":[1178,10704,24814,5179],"delegatorTokens":9999999927940,"jailed":[null,1000000000000023,null,null],"status":["unbonding","unbonded","bonded","bonded"]}},{"ix":182,"action":{"kind":"Deliver","chain":"provider","numPackets":5},"partialState":{"h":23,"t":138,"tokens":[2178,11704,25814,6179],"delegation":[1178,10704,24814,5179],"delegatorTokens":9999999927940,"jailed":[null,1000000000000023,null,null],"status":["unbonding","unbonded","bonded","bonded"]}},{"ix":183,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":22,"t":132,"consumerPower":[null,null,30592,6179],"outstandingDowntime":[false,false,true,true]}},{"ix":184,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":23,"t":138,"consumerPower":[null,null,30592,6179],"outstandingDowntime":[false,false,true,true]}},{"ix":185,"action":{"kind":"Deliver","chain":"provider","numPackets":2},"partialState":{"h":23,"t":138,"tokens":[2178,11704,25814,6179],"delegation":[1178,10704,24814,5179],"delegatorTokens":9999999927940,"jailed":[null,1000000000000023,null,null],"status":["unbonding","unbonded","bonded","bonded"]}},{"ix":186,"action":{"kind":"Deliver","chain":"provider","numPackets":2},"partialState":{"h":23,"t":138,"tokens":[2178,11704,25814,6179],"delegation":[1178,10704,24814,5179],"delegatorTokens":9999999927940,"jailed":[null,1000000000000023,null,null],"status":["unbonding","unbonded","bonded","bonded"]}},{"ix":187,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":188,"action":{"kind":"Undelegate","val":0,"amt":3692},"partialState":{"h":23,"t":138,"tokens":[2178,11704,25814,6179],"delegation":[1178,10704,24814,5179],"delegatorTokens":9999999927940}},{"ix":189,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":24,"t":144,"tokens":[2178,11704,25814,6179],"delegation":[1178,10704,24814,5179],"delegatorTokens":9999999927940,"jailed":[null,1000000000000023,null,null],"status":["unbonding","unbonded","bonded","bonded"]}},{"ix":190,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":191,"action":{"kind":"Delegate","val":3,"amt":1554},"partialState":{"h":24,"t":144,"tokens":[2178,11704,25814,7733],"delegation":[1178,10704,24814,6733],"delegatorTokens":9999999926386}},{"ix":192,"action":{"kind":"Undelegate","val":0,"amt":3332},"partialState":{"h":24,"t":144,"tokens":[2178,11704,25814,7733],"delegation":[1178,10704,24814,6733],"delegatorTokens":9999999926386}},{"ix":193,"action":{"kind":"Undelegate","val":0,"amt":1466},"partialState":{"h":24,"t":144,"tokens":[2178,11704,25814,7733],"delegation":[1178,10704,24814,6733],"delegatorTokens":9999999926386}},{"ix":194,"action":{"kind":"Deliver","chain":"consumer","numPackets":1},"partialState":{"h":23,"t":138,"consumerPower":[null,null,30592,6179],"outstandingDowntime":[false,false,true,true]}},{"ix":195,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":196,"action":{"kind":"Undelegate","val":3,"amt":2297},"partialState":{"h":24,"t":144,"tokens":[2178,11704,25814,5436],"delegation":[1178,10704,24814,4436],"delegatorTokens":9999999926386}},{"ix":197,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":198,"action":{"kind":"Deliver","chain":"consumer","numPackets":4},"partialState":{"h":23,"t":138,"consumerPower":[null,null,30592,6179],"outstandingDowntime":[false,false,true,true]}},{"ix":199,"action":{"kind":"Delegate","val":3,"amt":4562},"partialState":{"h":24,"t":144,"tokens":[2178,11704,25814,9998],"delegation":[1178,10704,24814,8998],"delegatorTokens":9999999921824}}],"events":["send_downtime_slash_request","insufficient_shares","send_downtime_slash_request","send_downtime_slash_request","insufficient_shares","send_vsc_without_downtime_ack","receive_downtime_slash_request","jail","receive_slash_request_unbonded","receive_slash_request_unbonded","insufficient_shares","consumer_update_val","consumer_update_val","insufficient_shares","more_than_one_third_val_power_change","send_vsc_with_downtime_ack","insufficient_shares","more_than_one_third_val_power_change","send_vsc_without_downtime_ack","more_than_one_third_val_power_change","rebond_unval","send_vsc_without_downtime_ack","more_than_one_third_val_power_change","rebond_unval","send_vsc_without_downtime_ack","receive_downtime_slash_ack","consumer_del_val","consumer_add_val","consumer_update_val","consumer_del_val","insufficient_shares","consumer_del_val","consumer_update_val","consumer_add_val","send_vsc_without_downtime_ack","more_than_one_third_val_power_change","rebond_unval","send_vsc_without_downtime_ack","send_vsc_without_downtime_ack","send_vsc_without_downtime_ack","insufficient_shares","consumer_update_val","consumer_del_val","consumer_add_val","send_vsc_without_downtime_ack","consumer_send_maturation","some_undels_expired_but_not_completed","send_vsc_without_downtime_ack","complete_undel_immediate","complete_undel_immediate","send_vsc_without_downtime_ack","consumer_send_maturation","consumer_send_maturation","consumer_send_maturation","some_undels_expired_but_not_completed","send_vsc_without_downtime_ack","consumer_send_maturation","consumer_update_val","consumer_update_val","insufficient_shares","insufficient_shares","rebond_unval","complete_undel_immediate","complete_undel_immediate","set_unval_hold_false","set_undel_hold_false","set_undel_hold_false","set_undel_hold_false","send_vsc_without_downtime_ack","complete_unval_in_endblock","complete_undel_in_endblock","send_vsc_without_downtime_ack","consumer_update_val","consumer_del_val","consumer_add_val","send_vsc_without_downtime_ack","insufficient_shares","some_undels_expired_but_not_completed","consumer_update_val","consumer_send_maturation","consumer_send_maturation","consumer_send_maturation","insufficient_shares","insufficient_shares","insufficient_shares"]},{"meta":{"commit":"7ffd0c04e4205cbc9caf212abfe6c59ee43153bf"},"constants":{"P":"provider","C":"consumer","UNBONDING_SECONDS_P":70,"UNBONDING_SECONDS_C":50,"TRUSTING_SECONDS":49,"NUM_VALIDATORS":4,"MAX_VALIDATORS":2,"SLASH_DOUBLESIGN":0,"SLASH_DOWNTIME":0,"JAIL_SECONDS":999999999999999,"BLOCK_SECONDS":6,"INITIAL_DELEGATOR_TOKENS":10000000000000,"DELEGATE_AMT_MIN":1000,"DELEGATE_AMT_MAX":5000,"UNDELEGATE_AMT_MIN":1000,"UNDELEGATE_AMT_MAX":5000,"ISDOWNTIME_PROBABILITY":0.5,"MAX_NUM_PACKETS_FOR_DELIVER":6},"actions":[{"ix":0,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":2,"t":12,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":1,"action":{"kind":"Delegate","val":1,"amt":3147},"partialState":{"h":1,"t":6,"tokens":[5000,7147,3000,2000],"delegation":[4000,6147,2000,1000],"delegatorTokens":9999999996853}},{"ix":2,"action":{"kind":"Deliver","chain":"consumer","numPackets":1},"partialState":{"h":2,"t":12,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":3,"action":{"kind":"Delegate","val":1,"amt":1238},"partialState":{"h":1,"t":6,"tokens":[5000,8385,3000,2000],"delegation":[4000,7385,2000,1000],"delegatorTokens":9999999995615}},{"ix":4,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":3,"t":18,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":5,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":6,"action":{"kind":"Delegate","val":0,"amt":2740},"partialState":{"h":1,"t":6,"tokens":[7740,8385,3000,2000],"delegation":[6740,7385,2000,1000],"delegatorTokens":9999999992875}},{"ix":7,"action":{"kind":"ConsumerSlash","val":3,"infractionHeight":0,"isDowntime":true},"partialState":{"h":3,"t":18,"outstandingDowntime":[false,false,false,true]}},{"ix":8,"action":{"kind":"ConsumerSlash","val":0,"infractionHeight":0,"isDowntime":true},"partialState":{"h":3,"t":18,"outstandingDowntime":[true,false,false,true]}},{"ix":9,"action":{"kind":"ConsumerSlash","val":2,"infractionHeight":1,"isDowntime":true},"partialState":{"h":3,"t":18,"outstandingDowntime":[true,false,true,true]}},{"ix":10,"action":{"kind":"Undelegate","val":3,"amt":4060},"partialState":{"h":1,"t":6,"tokens":[7740,8385,3000,2000],"delegation":[6740,7385,2000,1000],"delegatorTokens":9999999992875}},{"ix":11,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":4,"t":24,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[true,false,true,true]}},{"ix":12,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":5,"t":30,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[true,false,true,true]}},{"ix":13,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":2,"t":12,"tokens":[7740,8385,3000,2000],"delegation":[6740,7385,2000,1000],"delegatorTokens":9999999992875,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":14,"action":{"kind":"Delegate","val":0,"amt":2472},"partialState":{"h":2,"t":12,"tokens":[10212,8385,3000,2000],"delegation":[9212,7385,2000,1000],"delegatorTokens":9999999990403}},{"ix":15,"action":{"kind":"Delegate","val":3,"amt":3713},"partialState":{"h":2,"t":12,"tokens":[10212,8385,3000,5713],"delegation":[9212,7385,2000,4713],"delegatorTokens":9999999986690}},{"ix":16,"action":{"kind":"Delegate","val":0,"amt":1078},"partialState":{"h":2,"t":12,"tokens":[11290,8385,3000,5713],"delegation":[10290,7385,2000,4713],"delegatorTokens":9999999985612}},{"ix":17,"action":{"kind":"Delegate","val":3,"amt":1872},"partialState":{"h":2,"t":12,"tokens":[11290,8385,3000,7585],"delegation":[10290,7385,2000,6585],"delegatorTokens":9999999983740}},{"ix":18,"action":{"kind":"Deliver","chain":"consumer","numPackets":1},"partialState":{"h":5,"t":30,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[true,false,true,true]}},{"ix":19,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":20,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":21,"action":{"kind":"Delegate","val":1,"amt":3155},"partialState":{"h":2,"t":12,"tokens":[11290,11540,3000,7585],"delegation":[10290,10540,2000,6585],"delegatorTokens":9999999980585}},{"ix":22,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":3,"t":18,"tokens":[11290,11540,3000,7585],"delegation":[10290,10540,2000,6585],"delegatorTokens":9999999980585,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":23,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":24,"action":{"kind":"Deliver","chain":"provider","numPackets":1},"partialState":{"h":3,"t":18,"tokens":[11290,11540,3000,7585],"delegation":[10290,10540,2000,6585],"delegatorTokens":9999999980585,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":25,"action":{"kind":"Undelegate","val":1,"amt":4749},"partialState":{"h":3,"t":18,"tokens":[11290,6791,3000,7585],"delegation":[10290,5791,2000,6585],"delegatorTokens":9999999980585}},{"ix":26,"action":{"kind":"Undelegate","val":2,"amt":1124},"partialState":{"h":3,"t":18,"tokens":[11290,6791,1876,7585],"delegation":[10290,5791,876,6585],"delegatorTokens":9999999980585}},{"ix":27,"action":{"kind":"Delegate","val":2,"amt":3389},"partialState":{"h":3,"t":18,"tokens":[11290,6791,5265,7585],"delegation":[10290,5791,4265,6585],"delegatorTokens":9999999977196}},{"ix":28,"action":{"kind":"Deliver","chain":"provider","numPackets":1},"partialState":{"h":3,"t":18,"tokens":[11290,6791,5265,7585],"delegation":[10290,5791,4265,6585],"delegatorTokens":9999999977196,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":29,"action":{"kind":"Undelegate","val":2,"amt":3112},"partialState":{"h":3,"t":18,"tokens":[11290,6791,2153,7585],"delegation":[10290,5791,1153,6585],"delegatorTokens":9999999977196}},{"ix":30,"action":{"kind":"Delegate","val":2,"amt":4047},"partialState":{"h":3,"t":18,"tokens":[11290,6791,6200,7585],"delegation":[10290,5791,5200,6585],"delegatorTokens":9999999973149}},{"ix":31,"action":{"kind":"Undelegate","val":3,"amt":4744},"partialState":{"h":3,"t":18,"tokens":[11290,6791,6200,2841],"delegation":[10290,5791,5200,1841],"delegatorTokens":9999999973149}},{"ix":32,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":4,"t":24,"tokens":[11290,6791,6200,2841],"delegation":[10290,5791,5200,1841],"delegatorTokens":9999999973149,"jailed":[1000000000000017,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":33,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":34,"action":{"kind":"Deliver","chain":"provider","numPackets":6},"partialState":{"h":4,"t":24,"tokens":[11290,6791,6200,2841],"delegation":[10290,5791,5200,1841],"delegatorTokens":9999999973149,"jailed":[1000000000000017,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":35,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":36,"action":{"kind":"Deliver","chain":"consumer","numPackets":2},"partialState":{"h":5,"t":30,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[true,false,true,true]}},{"ix":37,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":6,"t":36,"consumerPower":[11290,11540,null,null],"outstandingDowntime":[true,false,true,true]}},{"ix":38,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":39,"action":{"kind":"Delegate","val":1,"amt":1950},"partialState":{"h":4,"t":24,"tokens":[11290,8741,6200,2841],"delegation":[10290,7741,5200,1841],"delegatorTokens":9999999971199}},{"ix":40,"action":{"kind":"Deliver","chain":"consumer","numPackets":2},"partialState":{"h":6,"t":36,"consumerPower":[11290,11540,null,null],"outstandingDowntime":[true,false,true,true]}},{"ix":41,"action":{"kind":"Delegate","val":3,"amt":1065},"partialState":{"h":4,"t":24,"tokens":[11290,8741,6200,3906],"delegation":[10290,7741,5200,2906],"delegatorTokens":9999999970134}},{"ix":42,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":43,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":44,"action":{"kind":"Delegate","val":3,"amt":4438},"partialState":{"h":4,"t":24,"tokens":[11290,8741,6200,8344],"delegation":[10290,7741,5200,7344],"delegatorTokens":9999999965696}},{"ix":45,"action":{"kind":"Delegate","val":2,"amt":4162},"partialState":{"h":4,"t":24,"tokens":[11290,8741,10362,8344],"delegation":[10290,7741,9362,7344],"delegatorTokens":9999999961534}},{"ix":46,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":47,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":48,"action":{"kind":"Undelegate","val":1,"amt":1936},"partialState":{"h":4,"t":24,"tokens":[11290,6805,10362,8344],"delegation":[10290,5805,9362,7344],"delegatorTokens":9999999961534}},{"ix":49,"action":{"kind":"Deliver","chain":"consumer","numPackets":1},"partialState":{"h":6,"t":36,"consumerPower":[11290,11540,null,null],"outstandingDowntime":[true,false,true,true]}},{"ix":50,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":51,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":52,"action":{"kind":"Undelegate","val":3,"amt":4343},"partialState":{"h":4,"t":24,"tokens":[11290,6805,10362,4001],"delegation":[10290,5805,9362,3001],"delegatorTokens":9999999961534}},{"ix":53,"action":{"kind":"Undelegate","val":2,"amt":4164},"partialState":{"h":4,"t":24,"tokens":[11290,6805,6198,4001],"delegation":[10290,5805,5198,3001],"delegatorTokens":9999999961534}},{"ix":54,"action":{"kind":"Delegate","val":1,"amt":3634},"partialState":{"h":4,"t":24,"tokens":[11290,10439,6198,4001],"delegation":[10290,9439,5198,3001],"delegatorTokens":9999999957900}},{"ix":55,"action":{"kind":"Delegate","val":0,"amt":1377},"partialState":{"h":4,"t":24,"tokens":[12667,10439,6198,4001],"delegation":[11667,9439,5198,3001],"delegatorTokens":9999999956523}},{"ix":56,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":57,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":7,"t":42,"consumerPower":[11290,11540,null,null],"outstandingDowntime":[true,false,true,true]}},{"ix":58,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":59,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":60,"action":{"kind":"Undelegate","val":2,"amt":3913},"partialState":{"h":4,"t":24,"tokens":[12667,10439,2285,4001],"delegation":[11667,9439,1285,3001],"delegatorTokens":9999999956523}},{"ix":61,"action":{"kind":"Deliver","chain":"provider","numPackets":2},"partialState":{"h":4,"t":24,"tokens":[12667,10439,2285,4001],"delegation":[11667,9439,1285,3001],"delegatorTokens":9999999956523,"jailed":[1000000000000017,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":62,"action":{"kind":"Deliver","chain":"consumer","numPackets":2},"partialState":{"h":7,"t":42,"consumerPower":[11290,11540,null,null],"outstandingDowntime":[true,false,true,true]}},{"ix":63,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":64,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":65,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":5,"t":30,"tokens":[12667,10439,2285,4001],"delegation":[11667,9439,1285,3001],"delegatorTokens":9999999956523,"jailed":[1000000000000017,null,null,null],"status":["unbonding","bonded","unbonded","bonded"]}},{"ix":66,"action":{"kind":"Delegate","val":3,"amt":1738},"partialState":{"h":5,"t":30,"tokens":[12667,10439,2285,5739],"delegation":[11667,9439,1285,4739],"delegatorTokens":9999999954785}},{"ix":67,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":8,"t":48,"consumerPower":[11290,11540,null,null],"outstandingDowntime":[true,false,true,true]}},{"ix":68,"action":{"kind":"Undelegate","val":3,"amt":3405},"partialState":{"h":5,"t":30,"tokens":[12667,10439,2285,2334],"delegation":[11667,9439,1285,1334],"delegatorTokens":9999999954785}},{"ix":69,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":6,"t":36,"tokens":[12667,10439,2285,2334],"delegation":[11667,9439,1285,1334],"delegatorTokens":9999999954785,"jailed":[1000000000000017,null,null,null],"status":["unbonding","bonded","unbonded","bonded"]}},{"ix":70,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":71,"action":{"kind":"Undelegate","val":3,"amt":3549},"partialState":{"h":6,"t":36,"tokens":[12667,10439,2285,2334],"delegation":[11667,9439,1285,1334],"delegatorTokens":9999999954785}},{"ix":72,"action":{"kind":"Deliver","chain":"consumer","numPackets":4},"partialState":{"h":8,"t":48,"consumerPower":[11290,11540,null,null],"outstandingDowntime":[false,false,true,true]}},{"ix":73,"action":{"kind":"Deliver","chain":"consumer","numPackets":2},"partialState":{"h":8,"t":48,"consumerPower":[11290,11540,null,null],"outstandingDowntime":[false,false,true,true]}},{"ix":74,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":75,"action":{"kind":"Undelegate","val":1,"amt":1414},"partialState":{"h":6,"t":36,"tokens":[12667,9025,2285,2334],"delegation":[11667,8025,1285,1334],"delegatorTokens":9999999954785}},{"ix":76,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":7,"t":42,"tokens":[12667,9025,2285,2334],"delegation":[11667,8025,1285,1334],"delegatorTokens":9999999954785,"jailed":[1000000000000017,null,null,null],"status":["unbonding","bonded","unbonded","bonded"]}},{"ix":77,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":9,"t":54,"consumerPower":[null,10439,null,4001],"outstandingDowntime":[false,false,true,true]}},{"ix":78,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":10,"t":60,"consumerPower":[null,10439,null,4001],"outstandingDowntime":[false,false,true,true]}},{"ix":79,"action":{"kind":"Deliver","chain":"consumer","numPackets":5},"partialState":{"h":10,"t":60,"consumerPower":[null,10439,null,4001],"outstandingDowntime":[false,false,true,true]}},{"ix":80,"action":{"kind":"Deliver","chain":"consumer","numPackets":2},"partialState":{"h":10,"t":60,"consumerPower":[null,10439,null,4001],"outstandingDowntime":[false,false,true,true]}},{"ix":81,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":11,"t":66,"consumerPower":[null,10439,null,2334],"outstandingDowntime":[false,false,true,true]}},{"ix":82,"action":{"kind":"Undelegate","val":0,"amt":1690},"partialState":{"h":7,"t":42,"tokens":[10977,9025,2285,2334],"delegation":[9977,8025,1285,1334],"delegatorTokens":9999999954785}},{"ix":83,"action":{"kind":"Undelegate","val":1,"amt":2508},"partialState":{"h":7,"t":42,"tokens":[10977,6517,2285,2334],"delegation":[9977,5517,1285,1334],"delegatorTokens":9999999954785}},{"ix":84,"action":{"kind":"Delegate","val":3,"amt":1307},"partialState":{"h":7,"t":42,"tokens":[10977,6517,2285,3641],"delegation":[9977,5517,1285,2641],"delegatorTokens":9999999953478}},{"ix":85,"action":{"kind":"Undelegate","val":2,"amt":2661},"partialState":{"h":7,"t":42,"tokens":[10977,6517,2285,3641],"delegation":[9977,5517,1285,2641],"delegatorTokens":9999999953478}},{"ix":86,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":12,"t":72,"consumerPower":[null,10439,null,2334],"outstandingDowntime":[false,false,true,true]}},{"ix":87,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":88,"action":{"kind":"Delegate","val":3,"amt":2974},"partialState":{"h":7,"t":42,"tokens":[10977,6517,2285,6615],"delegation":[9977,5517,1285,5615],"delegatorTokens":9999999950504}},{"ix":89,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":90,"action":{"kind":"Deliver","chain":"provider","numPackets":2},"partialState":{"h":7,"t":42,"tokens":[10977,6517,2285,6615],"delegation":[9977,5517,1285,5615],"delegatorTokens":9999999950504,"jailed":[1000000000000017,null,null,null],"status":["unbonding","bonded","unbonded","bonded"]}},{"ix":91,"action":{"kind":"Deliver","chain":"provider","numPackets":4},"partialState":{"h":7,"t":42,"tokens":[10977,6517,2285,6615],"delegation":[9977,5517,1285,5615],"delegatorTokens":9999999950504,"jailed":[1000000000000017,null,null,null],"status":["unbonding","bonded","unbonded","bonded"]}},{"ix":92,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":13,"t":78,"consumerPower":[null,10439,null,2334],"outstandingDowntime":[false,false,true,true]}},{"ix":93,"action":{"kind":"Deliver","chain":"consumer","numPackets":2},"partialState":{"h":13,"t":78,"consumerPower":[null,10439,null,2334],"outstandingDowntime":[false,false,true,true]}},{"ix":94,"action":{"kind":"Undelegate","val":2,"amt":1508},"partialState":{"h":7,"t":42,"tokens":[10977,6517,2285,6615],"delegation":[9977,5517,1285,5615],"delegatorTokens":9999999950504}},{"ix":95,"action":{"kind":"Delegate","val":2,"amt":1688},"partialState":{"h":7,"t":42,"tokens":[10977,6517,3973,6615],"delegation":[9977,5517,2973,5615],"delegatorTokens":9999999948816}},{"ix":96,"action":{"kind":"Undelegate","val":3,"amt":3174},"partialState":{"h":7,"t":42,"tokens":[10977,6517,3973,3441],"delegation":[9977,5517,2973,2441],"delegatorTokens":9999999948816}},{"ix":97,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":14,"t":84,"consumerPower":[null,10439,null,2334],"outstandingDowntime":[false,false,true,true]}},{"ix":98,"action":{"kind":"Delegate","val":1,"amt":1846},"partialState":{"h":7,"t":42,"tokens":[10977,8363,3973,3441],"delegation":[9977,7363,2973,2441],"delegatorTokens":9999999946970}},{"ix":99,"action":{"kind":"Delegate","val":0,"amt":3585},"partialState":{"h":7,"t":42,"tokens":[14562,8363,3973,3441],"delegation":[13562,7363,2973,2441],"delegatorTokens":9999999943385}},{"ix":100,"action":{"kind":"Deliver","chain":"provider","numPackets":4},"partialState":{"h":7,"t":42,"tokens":[14562,8363,3973,3441],"delegation":[13562,7363,2973,2441],"delegatorTokens":9999999943385,"jailed":[1000000000000017,null,null,null],"status":["unbonding","bonded","unbonded","bonded"]}},{"ix":101,"action":{"kind":"Delegate","val":0,"amt":1665},"partialState":{"h":7,"t":42,"tokens":[16227,8363,3973,3441],"delegation":[15227,7363,2973,2441],"delegatorTokens":9999999941720}},{"ix":102,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":103,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":8,"t":48,"tokens":[16227,8363,3973,3441],"delegation":[15227,7363,2973,2441],"delegatorTokens":9999999941720,"jailed":[1000000000000017,null,null,null],"status":["unbonding","bonded","bonded","unbonding"]}},{"ix":104,"action":{"kind":"Deliver","chain":"provider","numPackets":6},"partialState":{"h":8,"t":48,"tokens":[16227,8363,3973,3441],"delegation":[15227,7363,2973,2441],"delegatorTokens":9999999941720,"jailed":[1000000000000017,null,null,null],"status":["unbonding","bonded","bonded","unbonding"]}},{"ix":105,"action":{"kind":"Undelegate","val":0,"amt":2116},"partialState":{"h":8,"t":48,"tokens":[14111,8363,3973,3441],"delegation":[13111,7363,2973,2441],"delegatorTokens":9999999941720}},{"ix":106,"action":{"kind":"Delegate","val":2,"amt":1812},"partialState":{"h":8,"t":48,"tokens":[14111,8363,5785,3441],"delegation":[13111,7363,4785,2441],"delegatorTokens":9999999939908}},{"ix":107,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":108,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":109,"action":{"kind":"Undelegate","val":3,"amt":4733},"partialState":{"h":8,"t":48,"tokens":[14111,8363,5785,3441],"delegation":[13111,7363,4785,2441],"delegatorTokens":9999999939908}},{"ix":110,"action":{"kind":"Undelegate","val":0,"amt":2911},"partialState":{"h":8,"t":48,"tokens":[11200,8363,5785,3441],"delegation":[10200,7363,4785,2441],"delegatorTokens":9999999939908}},{"ix":111,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":112,"action":{"kind":"Deliver","chain":"provider","numPackets":1},"partialState":{"h":8,"t":48,"tokens":[11200,8363,5785,3441],"delegation":[10200,7363,4785,2441],"delegatorTokens":9999999939908,"jailed":[1000000000000017,null,null,null],"status":["unbonding","bonded","bonded","unbonding"]}},{"ix":113,"action":{"kind":"Delegate","val":2,"amt":2833},"partialState":{"h":8,"t":48,"tokens":[11200,8363,8618,3441],"delegation":[10200,7363,7618,2441],"delegatorTokens":9999999937075}},{"ix":114,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":15,"t":90,"consumerPower":[null,10439,null,2334],"outstandingDowntime":[false,false,true,true]}},{"ix":115,"action":{"kind":"Delegate","val":3,"amt":1575},"partialState":{"h":8,"t":48,"tokens":[11200,8363,8618,5016],"delegation":[10200,7363,7618,4016],"delegatorTokens":9999999935500}},{"ix":116,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":9,"t":54,"tokens":[11200,8363,8618,5016],"delegation":[10200,7363,7618,4016],"delegatorTokens":9999999935500,"jailed":[1000000000000017,null,null,null],"status":["unbonding","bonded","bonded","unbonding"]}},{"ix":117,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":10,"t":60,"tokens":[11200,8363,8618,5016],"delegation":[10200,7363,7618,4016],"delegatorTokens":9999999935500,"jailed":[1000000000000017,null,null,null],"status":["unbonding","bonded","bonded","unbonding"]}},{"ix":118,"action":{"kind":"Deliver","chain":"provider","numPackets":2},"partialState":{"h":10,"t":60,"tokens":[11200,8363,8618,5016],"delegation":[10200,7363,7618,4016],"delegatorTokens":9999999935500,"jailed":[1000000000000017,null,null,null],"status":["unbonding","bonded","bonded","unbonding"]}},{"ix":119,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":120,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":16,"t":96,"consumerPower":[null,10439,null,2334],"outstandingDowntime":[false,false,true,true]}},{"ix":121,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":122,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":17,"t":102,"consumerPower":[null,10439,null,2334],"outstandingDowntime":[false,false,true,true]}},{"ix":123,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":11,"t":66,"tokens":[11200,8363,8618,5016],"delegation":[10200,7363,7618,4016],"delegatorTokens":9999999935500,"jailed":[1000000000000017,null,null,null],"status":["unbonding","bonded","bonded","unbonding"]}},{"ix":124,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":125,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":12,"t":72,"tokens":[11200,8363,8618,5016],"delegation":[10200,7363,7618,4016],"delegatorTokens":9999999935500,"jailed":[1000000000000017,null,null,null],"status":["unbonding","bonded","bonded","unbonding"]}},{"ix":126,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":127,"action":{"kind":"Delegate","val":1,"amt":2287},"partialState":{"h":12,"t":72,"tokens":[11200,10650,8618,5016],"delegation":[10200,9650,7618,4016],"delegatorTokens":9999999933213}},{"ix":128,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":18,"t":108,"consumerPower":[null,10439,null,2334],"outstandingDowntime":[false,false,true,true]}},{"ix":129,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":130,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":131,"action":{"kind":"Undelegate","val":1,"amt":3098},"partialState":{"h":12,"t":72,"tokens":[11200,7552,8618,5016],"delegation":[10200,6552,7618,4016],"delegatorTokens":9999999933213}},{"ix":132,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":133,"action":{"kind":"Delegate","val":3,"amt":4020},"partialState":{"h":12,"t":72,"tokens":[11200,7552,8618,9036],"delegation":[10200,6552,7618,8036],"delegatorTokens":9999999929193}},{"ix":134,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":13,"t":78,"tokens":[11200,7552,8618,9036],"delegation":[10200,6552,7618,8036],"delegatorTokens":9999999929193,"jailed":[1000000000000017,null,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":135,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":14,"t":84,"tokens":[11200,7552,8618,9036],"delegation":[10200,6552,7618,8036],"delegatorTokens":9999999929193,"jailed":[1000000000000017,null,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":136,"action":{"kind":"Delegate","val":0,"amt":1581},"partialState":{"h":14,"t":84,"tokens":[12781,7552,8618,9036],"delegation":[11781,6552,7618,8036],"delegatorTokens":9999999927612}},{"ix":137,"action":{"kind":"Undelegate","val":3,"amt":3953},"partialState":{"h":14,"t":84,"tokens":[12781,7552,8618,5083],"delegation":[11781,6552,7618,4083],"delegatorTokens":9999999927612}},{"ix":138,"action":{"kind":"Undelegate","val":3,"amt":3796},"partialState":{"h":14,"t":84,"tokens":[12781,7552,8618,1287],"delegation":[11781,6552,7618,287],"delegatorTokens":9999999927612}},{"ix":139,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":140,"action":{"kind":"Delegate","val":1,"amt":3309},"partialState":{"h":14,"t":84,"tokens":[12781,10861,8618,1287],"delegation":[11781,9861,7618,287],"delegatorTokens":9999999924303}},{"ix":141,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":19,"t":114,"consumerPower":[null,10439,null,2334],"outstandingDowntime":[false,false,true,true]}},{"ix":142,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":143,"action":{"kind":"Delegate","val":0,"amt":1132},"partialState":{"h":14,"t":84,"tokens":[13913,10861,8618,1287],"delegation":[12913,9861,7618,287],"delegatorTokens":9999999923171}},{"ix":144,"action":{"kind":"Deliver","chain":"consumer","numPackets":5},"partialState":{"h":19,"t":114,"consumerPower":[null,10439,null,2334],"outstandingDowntime":[false,false,true,true]}},{"ix":145,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":15,"t":90,"tokens":[13913,10861,8618,1287],"delegation":[12913,9861,7618,287],"delegatorTokens":9999999923171,"jailed":[1000000000000017,null,null,null],"status":["unbonding","bonded","bonded","unbonding"]}},{"ix":146,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":147,"action":{"kind":"Undelegate","val":3,"amt":2342},"partialState":{"h":15,"t":90,"tokens":[13913,10861,8618,1287],"delegation":[12913,9861,7618,287],"delegatorTokens":9999999923171}},{"ix":148,"action":{"kind":"Undelegate","val":3,"amt":2584},"partialState":{"h":15,"t":90,"tokens":[13913,10861,8618,1287],"delegation":[12913,9861,7618,287],"delegatorTokens":9999999923171}},{"ix":149,"action":{"kind":"Delegate","val":0,"amt":2225},"partialState":{"h":15,"t":90,"tokens":[16138,10861,8618,1287],"delegation":[15138,9861,7618,287],"delegatorTokens":9999999920946}},{"ix":150,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":20,"t":120,"consumerPower":[null,null,8618,9036],"outstandingDowntime":[false,false,true,true]}},{"ix":151,"action":{"kind":"Deliver","chain":"provider","numPackets":4},"partialState":{"h":15,"t":90,"tokens":[16138,10861,8618,1287],"delegation":[15138,9861,7618,287],"delegatorTokens":9999999920946,"jailed":[1000000000000017,null,null,null],"status":["unbonding","bonded","bonded","unbonding"]}},{"ix":152,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":16,"t":96,"tokens":[16138,10861,8618,1287],"delegation":[15138,9861,7618,287],"delegatorTokens":9999999934675,"jailed":[1000000000000017,null,null,null],"status":["unbonding","bonded","bonded","unbonding"]}},{"ix":153,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":17,"t":102,"tokens":[16138,10861,8618,1287],"delegation":[15138,9861,7618,287],"delegatorTokens":9999999949031,"jailed":[1000000000000017,null,null,null],"status":["unbonded","bonded","bonded","unbonding"]}},{"ix":154,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":155,"action":{"kind":"Undelegate","val":0,"amt":3824},"partialState":{"h":17,"t":102,"tokens":[12314,10861,8618,1287],"delegation":[11314,9861,7618,287],"delegatorTokens":9999999949031}},{"ix":156,"action":{"kind":"Undelegate","val":2,"amt":2243},"partialState":{"h":17,"t":102,"tokens":[12314,10861,6375,1287],"delegation":[11314,9861,5375,287],"delegatorTokens":9999999949031}},{"ix":157,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":158,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":159,"action":{"kind":"Deliver","chain":"consumer","numPackets":6},"partialState":{"h":20,"t":120,"consumerPower":[null,null,8618,9036],"outstandingDowntime":[false,false,true,true]}},{"ix":160,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":21,"t":126,"consumerPower":[null,10861,8618,null],"outstandingDowntime":[false,false,true,true]}},{"ix":161,"action":{"kind":"Deliver","chain":"provider","numPackets":6},"partialState":{"h":17,"t":102,"tokens":[12314,10861,6375,1287],"delegation":[11314,9861,5375,287],"delegatorTokens":9999999949031,"jailed":[1000000000000017,null,null,null],"status":["unbonded","bonded","bonded","unbonding"]}},{"ix":162,"action":{"kind":"Undelegate","val":1,"amt":3488},"partialState":{"h":17,"t":102,"tokens":[12314,7373,6375,1287],"delegation":[11314,6373,5375,287],"delegatorTokens":9999999949031}},{"ix":163,"action":{"kind":"Deliver","chain":"consumer","numPackets":4},"partialState":{"h":21,"t":126,"consumerPower":[null,10861,8618,null],"outstandingDowntime":[false,false,true,true]}},{"ix":164,"action":{"kind":"Undelegate","val":3,"amt":2806},"partialState":{"h":17,"t":102,"tokens":[12314,7373,6375,1287],"delegation":[11314,6373,5375,287],"delegatorTokens":9999999949031}},{"ix":165,"action":{"kind":"Delegate","val":2,"amt":2780},"partialState":{"h":17,"t":102,"tokens":[12314,7373,9155,1287],"delegation":[11314,6373,8155,287],"delegatorTokens":9999999946251}},{"ix":166,"action":{"kind":"Delegate","val":2,"amt":3372},"partialState":{"h":17,"t":102,"tokens":[12314,7373,12527,1287],"delegation":[11314,6373,11527,287],"delegatorTokens":9999999942879}},{"ix":167,"action":{"kind":"Undelegate","val":3,"amt":4441},"partialState":{"h":17,"t":102,"tokens":[12314,7373,12527,1287],"delegation":[11314,6373,11527,287],"delegatorTokens":9999999942879}},{"ix":168,"action":{"kind":"Deliver","chain":"consumer","numPackets":5},"partialState":{"h":21,"t":126,"consumerPower":[null,10861,8618,null],"outstandingDowntime":[false,false,true,true]}},{"ix":169,"action":{"kind":"Deliver","chain":"consumer","numPackets":6},"partialState":{"h":21,"t":126,"consumerPower":[null,10861,8618,null],"outstandingDowntime":[false,false,true,true]}},{"ix":170,"action":{"kind":"Undelegate","val":2,"amt":1776},"partialState":{"h":17,"t":102,"tokens":[12314,7373,10751,1287],"delegation":[11314,6373,9751,287],"delegatorTokens":9999999942879}},{"ix":171,"action":{"kind":"Delegate","val":0,"amt":3841},"partialState":{"h":17,"t":102,"tokens":[16155,7373,10751,1287],"delegation":[15155,6373,9751,287],"delegatorTokens":9999999939038}},{"ix":172,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":173,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":174,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":18,"t":108,"tokens":[16155,7373,10751,1287],"delegation":[15155,6373,9751,287],"delegatorTokens":9999999942443,"jailed":[1000000000000017,null,null,null],"status":["unbonded","bonded","bonded","unbonding"]}},{"ix":175,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":22,"t":132,"consumerPower":[null,10861,8618,null],"outstandingDowntime":[false,false,true,true]}},{"ix":176,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":177,"action":{"kind":"Delegate","val":1,"amt":1161},"partialState":{"h":18,"t":108,"tokens":[16155,8534,10751,1287],"delegation":[15155,7534,9751,287],"delegatorTokens":9999999941282}},{"ix":178,"action":{"kind":"Delegate","val":2,"amt":4646},"partialState":{"h":18,"t":108,"tokens":[16155,8534,15397,1287],"delegation":[15155,7534,14397,287],"delegatorTokens":9999999936636}},{"ix":179,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":180,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":181,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":182,"action":{"kind":"Undelegate","val":0,"amt":1779},"partialState":{"h":18,"t":108,"tokens":[14376,8534,15397,1287],"delegation":[13376,7534,14397,287],"delegatorTokens":9999999936636}},{"ix":183,"action":{"kind":"Undelegate","val":1,"amt":4457},"partialState":{"h":18,"t":108,"tokens":[14376,4077,15397,1287],"delegation":[13376,3077,14397,287],"delegatorTokens":9999999936636}},{"ix":184,"action":{"kind":"Delegate","val":3,"amt":3541},"partialState":{"h":18,"t":108,"tokens":[14376,4077,15397,4828],"delegation":[13376,3077,14397,3828],"delegatorTokens":9999999933095}},{"ix":185,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":186,"action":{"kind":"Delegate","val":1,"amt":2503},"partialState":{"h":18,"t":108,"tokens":[14376,6580,15397,4828],"delegation":[13376,5580,14397,3828],"delegatorTokens":9999999930592}},{"ix":187,"action":{"kind":"Deliver","chain":"consumer","numPackets":1},"partialState":{"h":22,"t":132,"consumerPower":[null,10861,8618,null],"outstandingDowntime":[false,false,true,true]}},{"ix":188,"action":{"kind":"Undelegate","val":3,"amt":3375},"partialState":{"h":18,"t":108,"tokens":[14376,6580,15397,1453],"delegation":[13376,5580,14397,453],"delegatorTokens":9999999930592}},{"ix":189,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":23,"t":138,"consumerPower":[null,10861,8618,null],"outstandingDowntime":[false,false,true,true]}},{"ix":190,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":191,"action":{"kind":"Undelegate","val":3,"amt":3772},"partialState":{"h":18,"t":108,"tokens":[14376,6580,15397,1453],"delegation":[13376,5580,14397,453],"delegatorTokens":9999999930592}},{"ix":192,"action":{"kind":"Undelegate","val":3,"amt":4035},"partialState":{"h":18,"t":108,"tokens":[14376,6580,15397,1453],"delegation":[13376,5580,14397,453],"delegatorTokens":9999999930592}},{"ix":193,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":24,"t":144,"consumerPower":[null,10861,8618,null],"outstandingDowntime":[false,false,true,true]}},{"ix":194,"action":{"kind":"Undelegate","val":3,"amt":4528},"partialState":{"h":18,"t":108,"tokens":[14376,6580,15397,1453],"delegation":[13376,5580,14397,453],"delegatorTokens":9999999930592}},{"ix":195,"action":{"kind":"Deliver","chain":"provider","numPackets":6},"partialState":{"h":18,"t":108,"tokens":[14376,6580,15397,1453],"delegation":[13376,5580,14397,453],"delegatorTokens":9999999930592,"jailed":[1000000000000017,null,null,null],"status":["unbonded","bonded","bonded","unbonding"]}},{"ix":196,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":197,"action":{"kind":"Undelegate","val":2,"amt":4817},"partialState":{"h":18,"t":108,"tokens":[14376,6580,10580,1453],"delegation":[13376,5580,9580,453],"delegatorTokens":9999999930592}},{"ix":198,"action":{"kind":"Delegate","val":3,"amt":2312},"partialState":{"h":18,"t":108,"tokens":[14376,6580,10580,3765],"delegation":[13376,5580,9580,2765],"delegatorTokens":9999999928280}},{"ix":199,"action":{"kind":"Undelegate","val":1,"amt":4016},"partialState":{"h":18,"t":108,"tokens":[14376,2564,10580,3765],"delegation":[13376,1564,9580,2765],"delegatorTokens":9999999928280}}],"events":["send_downtime_slash_request","send_downtime_slash_request","send_downtime_slash_request","insufficient_shares","send_vsc_without_downtime_ack","send_vsc_without_downtime_ack","receive_slash_request_unbonded","receive_downtime_slash_request","jail","send_vsc_with_downtime_ack","consumer_update_val","consumer_update_val","receive_slash_request_unbonded","send_vsc_without_downtime_ack","send_vsc_without_downtime_ack","insufficient_shares","receive_downtime_slash_ack","send_vsc_without_downtime_ack","consumer_update_val","consumer_del_val","consumer_add_val","consumer_update_val","insufficient_shares","insufficient_shares","send_vsc_without_downtime_ack","insufficient_shares","consumer_send_maturation","consumer_send_maturation","send_vsc_without_downtime_ack","consumer_send_maturation","consumer_send_maturation","more_than_one_third_val_power_change","rebond_unval","send_vsc_without_downtime_ack","more_than_one_third_val_power_change","rebond_unval","send_vsc_without_downtime_ack","insufficient_shares","insufficient_shares","consumer_send_maturation","consumer_del_val","consumer_add_val","consumer_update_val","some_undels_expired_but_not_completed","complete_undel_immediate","complete_undel_immediate","complete_undel_immediate","complete_undel_immediate","set_undel_hold_false","set_undel_hold_false","set_undel_hold_false","set_undel_hold_false","set_unval_hold_false","complete_unval_in_endblock","complete_undel_in_endblock","consumer_add_val","consumer_del_val","insufficient_shares","insufficient_shares","some_undels_expired_but_not_completed","complete_undel_immediate","send_vsc_without_downtime_ack","insufficient_shares","insufficient_shares","insufficient_shares"]},{"meta":{"commit":"7ffd0c04e4205cbc9caf212abfe6c59ee43153bf"},"constants":{"P":"provider","C":"consumer","UNBONDING_SECONDS_P":70,"UNBONDING_SECONDS_C":50,"TRUSTING_SECONDS":49,"NUM_VALIDATORS":4,"MAX_VALIDATORS":2,"SLASH_DOUBLESIGN":0,"SLASH_DOWNTIME":0,"JAIL_SECONDS":999999999999999,"BLOCK_SECONDS":6,"INITIAL_DELEGATOR_TOKENS":10000000000000,"DELEGATE_AMT_MIN":1000,"DELEGATE_AMT_MAX":5000,"UNDELEGATE_AMT_MIN":1000,"UNDELEGATE_AMT_MAX":5000,"ISDOWNTIME_PROBABILITY":0.5,"MAX_NUM_PACKETS_FOR_DELIVER":6},"actions":[{"ix":0,"action":{"kind":"Delegate","val":1,"amt":4188},"partialState":{"h":1,"t":6,"tokens":[5000,8188,3000,2000],"delegation":[4000,7188,2000,1000],"delegatorTokens":9999999995812}},{"ix":1,"action":{"kind":"Delegate","val":0,"amt":2398},"partialState":{"h":1,"t":6,"tokens":[7398,8188,3000,2000],"delegation":[6398,7188,2000,1000],"delegatorTokens":9999999993414}},{"ix":2,"action":{"kind":"Deliver","chain":"provider","numPackets":3},"partialState":{"h":1,"t":6,"tokens":[7398,8188,3000,2000],"delegation":[6398,7188,2000,1000],"delegatorTokens":9999999993414,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":3,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":2,"t":12,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":4,"action":{"kind":"ConsumerSlash","val":3,"infractionHeight":0,"isDowntime":false},"partialState":{"h":2,"t":12,"outstandingDowntime":[false,false,false,false]}},{"ix":5,"action":{"kind":"Undelegate","val":3,"amt":4273},"partialState":{"h":1,"t":6,"tokens":[7398,8188,3000,2000],"delegation":[6398,7188,2000,1000],"delegatorTokens":9999999993414}},{"ix":6,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":7,"action":{"kind":"Delegate","val":3,"amt":3316},"partialState":{"h":1,"t":6,"tokens":[7398,8188,3000,5316],"delegation":[6398,7188,2000,4316],"delegatorTokens":9999999990098}},{"ix":8,"action":{"kind":"ConsumerSlash","val":2,"infractionHeight":1,"isDowntime":false},"partialState":{"h":2,"t":12,"outstandingDowntime":[false,false,false,false]}},{"ix":9,"action":{"kind":"Delegate","val":3,"amt":2028},"partialState":{"h":1,"t":6,"tokens":[7398,8188,3000,7344],"delegation":[6398,7188,2000,6344],"delegatorTokens":9999999988070}},{"ix":10,"action":{"kind":"Deliver","chain":"provider","numPackets":5},"partialState":{"h":1,"t":6,"tokens":[7398,8188,3000,7344],"delegation":[6398,7188,2000,6344],"delegatorTokens":9999999988070,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":11,"action":{"kind":"ConsumerSlash","val":2,"infractionHeight":0,"isDowntime":true},"partialState":{"h":2,"t":12,"outstandingDowntime":[false,false,true,false]}},{"ix":12,"action":{"kind":"Delegate","val":0,"amt":2458},"partialState":{"h":1,"t":6,"tokens":[9856,8188,3000,7344],"delegation":[8856,7188,2000,6344],"delegatorTokens":9999999985612}},{"ix":13,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":14,"action":{"kind":"Undelegate","val":0,"amt":2777},"partialState":{"h":1,"t":6,"tokens":[7079,8188,3000,7344],"delegation":[6079,7188,2000,6344],"delegatorTokens":9999999985612}},{"ix":15,"action":{"kind":"ConsumerSlash","val":3,"infractionHeight":0,"isDowntime":true},"partialState":{"h":2,"t":12,"outstandingDowntime":[false,false,true,true]}},{"ix":16,"action":{"kind":"ConsumerSlash","val":1,"infractionHeight":0,"isDowntime":true},"partialState":{"h":2,"t":12,"outstandingDowntime":[false,true,true,true]}},{"ix":17,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":18,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":3,"t":18,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,true,true,true]}},{"ix":19,"action":{"kind":"Undelegate","val":2,"amt":1139},"partialState":{"h":1,"t":6,"tokens":[7079,8188,1861,7344],"delegation":[6079,7188,861,6344],"delegatorTokens":9999999985612}},{"ix":20,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":4,"t":24,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,true,true,true]}},{"ix":21,"action":{"kind":"Deliver","chain":"provider","numPackets":5},"partialState":{"h":1,"t":6,"tokens":[7079,8188,1861,7344],"delegation":[6079,7188,861,6344],"delegatorTokens":9999999985612,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":22,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":23,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":5,"t":30,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,true,true,true]}},{"ix":24,"action":{"kind":"Deliver","chain":"consumer","numPackets":3},"partialState":{"h":5,"t":30,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,true,true,true]}},{"ix":25,"action":{"kind":"Undelegate","val":0,"amt":2223},"partialState":{"h":1,"t":6,"tokens":[4856,8188,1861,7344],"delegation":[3856,7188,861,6344],"delegatorTokens":9999999985612}},{"ix":26,"action":{"kind":"Delegate","val":0,"amt":4788},"partialState":{"h":1,"t":6,"tokens":[9644,8188,1861,7344],"delegation":[8644,7188,861,6344],"delegatorTokens":9999999980824}},{"ix":27,"action":{"kind":"Undelegate","val":1,"amt":2882},"partialState":{"h":1,"t":6,"tokens":[9644,5306,1861,7344],"delegation":[8644,4306,861,6344],"delegatorTokens":9999999980824}},{"ix":28,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":29,"action":{"kind":"Delegate","val":1,"amt":3297},"partialState":{"h":1,"t":6,"tokens":[9644,8603,1861,7344],"delegation":[8644,7603,861,6344],"delegatorTokens":9999999977527}},{"ix":30,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":31,"action":{"kind":"Delegate","val":1,"amt":1104},"partialState":{"h":1,"t":6,"tokens":[9644,9707,1861,7344],"delegation":[8644,8707,861,6344],"delegatorTokens":9999999976423}},{"ix":32,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":2,"t":12,"tokens":[9644,9707,1861,7344],"delegation":[8644,8707,861,6344],"delegatorTokens":9999999976423,"jailed":[null,1000000000000005,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":33,"action":{"kind":"Delegate","val":3,"amt":2456},"partialState":{"h":2,"t":12,"tokens":[9644,9707,1861,9800],"delegation":[8644,8707,861,8800],"delegatorTokens":9999999973967}},{"ix":34,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":3,"t":18,"tokens":[9644,9707,1861,9800],"delegation":[8644,8707,861,8800],"delegatorTokens":9999999973967,"jailed":[null,1000000000000005,null,null],"status":["bonded","unbonding","unbonded","bonded"]}},{"ix":35,"action":{"kind":"Undelegate","val":0,"amt":4454},"partialState":{"h":3,"t":18,"tokens":[5190,9707,1861,9800],"delegation":[4190,8707,861,8800],"delegatorTokens":9999999973967}},{"ix":36,"action":{"kind":"Delegate","val":2,"amt":3475},"partialState":{"h":3,"t":18,"tokens":[5190,9707,5336,9800],"delegation":[4190,8707,4336,8800],"delegatorTokens":9999999970492}},{"ix":37,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":38,"action":{"kind":"Deliver","chain":"consumer","numPackets":1},"partialState":{"h":5,"t":30,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,false,true,true]}},{"ix":39,"action":{"kind":"Deliver","chain":"consumer","numPackets":1},"partialState":{"h":5,"t":30,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,false,true,true]}},{"ix":40,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":41,"action":{"kind":"Delegate","val":0,"amt":2539},"partialState":{"h":3,"t":18,"tokens":[7729,9707,5336,9800],"delegation":[6729,8707,4336,8800],"delegatorTokens":9999999967953}},{"ix":42,"action":{"kind":"Deliver","chain":"provider","numPackets":5},"partialState":{"h":3,"t":18,"tokens":[7729,9707,5336,9800],"delegation":[6729,8707,4336,8800],"delegatorTokens":9999999967953,"jailed":[null,1000000000000005,null,null],"status":["bonded","unbonding","unbonded","bonded"]}},{"ix":43,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":44,"action":{"kind":"Delegate","val":0,"amt":4112},"partialState":{"h":3,"t":18,"tokens":[11841,9707,5336,9800],"delegation":[10841,8707,4336,8800],"delegatorTokens":9999999963841}},{"ix":45,"action":{"kind":"Undelegate","val":0,"amt":1194},"partialState":{"h":3,"t":18,"tokens":[10647,9707,5336,9800],"delegation":[9647,8707,4336,8800],"delegatorTokens":9999999963841}},{"ix":46,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":6,"t":36,"consumerPower":[9644,9707,null,null],"outstandingDowntime":[false,false,true,true]}},{"ix":47,"action":{"kind":"Delegate","val":1,"amt":1529},"partialState":{"h":3,"t":18,"tokens":[10647,11236,5336,9800],"delegation":[9647,10236,4336,8800],"delegatorTokens":9999999962312}},{"ix":48,"action":{"kind":"Undelegate","val":0,"amt":4380},"partialState":{"h":3,"t":18,"tokens":[6267,11236,5336,9800],"delegation":[5267,10236,4336,8800],"delegatorTokens":9999999962312}},{"ix":49,"action":{"kind":"Delegate","val":0,"amt":3964},"partialState":{"h":3,"t":18,"tokens":[10231,11236,5336,9800],"delegation":[9231,10236,4336,8800],"delegatorTokens":9999999958348}},{"ix":50,"action":{"kind":"Undelegate","val":3,"amt":3797},"partialState":{"h":3,"t":18,"tokens":[10231,11236,5336,6003],"delegation":[9231,10236,4336,5003],"delegatorTokens":9999999958348}},{"ix":51,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":4,"t":24,"tokens":[10231,11236,5336,6003],"delegation":[9231,10236,4336,5003],"delegatorTokens":9999999958348,"jailed":[null,1000000000000005,null,null],"status":["bonded","unbonding","unbonded","bonded"]}},{"ix":52,"action":{"kind":"Undelegate","val":3,"amt":2456},"partialState":{"h":4,"t":24,"tokens":[10231,11236,5336,3547],"delegation":[9231,10236,4336,2547],"delegatorTokens":9999999958348}},{"ix":53,"action":{"kind":"Undelegate","val":3,"amt":1706},"partialState":{"h":4,"t":24,"tokens":[10231,11236,5336,1841],"delegation":[9231,10236,4336,841],"delegatorTokens":9999999958348}},{"ix":54,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":55,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":56,"action":{"kind":"Deliver","chain":"consumer","numPackets":3},"partialState":{"h":6,"t":36,"consumerPower":[9644,9707,null,null],"outstandingDowntime":[false,false,true,true]}},{"ix":57,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":5,"t":30,"tokens":[10231,11236,5336,1841],"delegation":[9231,10236,4336,841],"delegatorTokens":9999999958348,"jailed":[null,1000000000000005,null,null],"status":["bonded","unbonding","bonded","unbonding"]}},{"ix":58,"action":{"kind":"Undelegate","val":0,"amt":4926},"partialState":{"h":5,"t":30,"tokens":[5305,11236,5336,1841],"delegation":[4305,10236,4336,841],"delegatorTokens":9999999958348}},{"ix":59,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":7,"t":42,"consumerPower":[9644,null,null,9800],"outstandingDowntime":[false,false,true,true]}},{"ix":60,"action":{"kind":"Delegate","val":1,"amt":3613},"partialState":{"h":5,"t":30,"tokens":[5305,14849,5336,1841],"delegation":[4305,13849,4336,841],"delegatorTokens":9999999954735}},{"ix":61,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":8,"t":48,"consumerPower":[9644,null,null,9800],"outstandingDowntime":[false,false,true,true]}},{"ix":62,"action":{"kind":"Undelegate","val":3,"amt":1986},"partialState":{"h":5,"t":30,"tokens":[5305,14849,5336,1841],"delegation":[4305,13849,4336,841],"delegatorTokens":9999999954735}},{"ix":63,"action":{"kind":"Undelegate","val":1,"amt":1014},"partialState":{"h":5,"t":30,"tokens":[5305,13835,5336,1841],"delegation":[4305,12835,4336,841],"delegatorTokens":9999999954735}},{"ix":64,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":6,"t":36,"tokens":[5305,13835,5336,1841],"delegation":[4305,12835,4336,841],"delegatorTokens":9999999954735,"jailed":[null,1000000000000005,null,null],"status":["bonded","unbonding","bonded","unbonding"]}},{"ix":65,"action":{"kind":"Delegate","val":3,"amt":2753},"partialState":{"h":6,"t":36,"tokens":[5305,13835,5336,4594],"delegation":[4305,12835,4336,3594],"delegatorTokens":9999999951982}},{"ix":66,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":9,"t":54,"consumerPower":[9644,null,null,9800],"outstandingDowntime":[false,false,true,true]}},{"ix":67,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":68,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":10,"t":60,"consumerPower":[9644,null,null,9800],"outstandingDowntime":[false,false,true,true]}},{"ix":69,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":7,"t":42,"tokens":[5305,13835,5336,4594],"delegation":[4305,12835,4336,3594],"delegatorTokens":9999999951982,"jailed":[null,1000000000000005,null,null],"status":["bonded","unbonding","bonded","unbonding"]}},{"ix":70,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":71,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":72,"action":{"kind":"Undelegate","val":0,"amt":1150},"partialState":{"h":7,"t":42,"tokens":[4155,13835,5336,4594],"delegation":[3155,12835,4336,3594],"delegatorTokens":9999999951982}},{"ix":73,"action":{"kind":"Undelegate","val":1,"amt":4734},"partialState":{"h":7,"t":42,"tokens":[4155,9101,5336,4594],"delegation":[3155,8101,4336,3594],"delegatorTokens":9999999951982}},{"ix":74,"action":{"kind":"Delegate","val":2,"amt":1041},"partialState":{"h":7,"t":42,"tokens":[4155,9101,6377,4594],"delegation":[3155,8101,5377,3594],"delegatorTokens":9999999950941}},{"ix":75,"action":{"kind":"Deliver","chain":"consumer","numPackets":3},"partialState":{"h":10,"t":60,"consumerPower":[9644,null,null,9800],"outstandingDowntime":[false,false,true,true]}},{"ix":76,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":77,"action":{"kind":"Delegate","val":1,"amt":2219},"partialState":{"h":7,"t":42,"tokens":[4155,11320,6377,4594],"delegation":[3155,10320,5377,3594],"delegatorTokens":9999999948722}},{"ix":78,"action":{"kind":"Undelegate","val":3,"amt":2584},"partialState":{"h":7,"t":42,"tokens":[4155,11320,6377,2010],"delegation":[3155,10320,5377,1010],"delegatorTokens":9999999948722}},{"ix":79,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":80,"action":{"kind":"Undelegate","val":1,"amt":4649},"partialState":{"h":7,"t":42,"tokens":[4155,6671,6377,2010],"delegation":[3155,5671,5377,1010],"delegatorTokens":9999999948722}},{"ix":81,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":82,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":83,"action":{"kind":"Undelegate","val":2,"amt":4132},"partialState":{"h":7,"t":42,"tokens":[4155,6671,2245,2010],"delegation":[3155,5671,1245,1010],"delegatorTokens":9999999948722}},{"ix":84,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":11,"t":66,"consumerPower":[5305,null,5336,null],"outstandingDowntime":[false,false,true,true]}},{"ix":85,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":12,"t":72,"consumerPower":[5305,null,5336,null],"outstandingDowntime":[false,false,true,true]}},{"ix":86,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":13,"t":78,"consumerPower":[5305,null,5336,null],"outstandingDowntime":[false,false,true,true]}},{"ix":87,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":88,"action":{"kind":"Undelegate","val":3,"amt":3665},"partialState":{"h":7,"t":42,"tokens":[4155,6671,2245,2010],"delegation":[3155,5671,1245,1010],"delegatorTokens":9999999948722}},{"ix":89,"action":{"kind":"Undelegate","val":1,"amt":2388},"partialState":{"h":7,"t":42,"tokens":[4155,4283,2245,2010],"delegation":[3155,3283,1245,1010],"delegatorTokens":9999999948722}},{"ix":90,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":91,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":92,"action":{"kind":"Undelegate","val":2,"amt":1285},"partialState":{"h":7,"t":42,"tokens":[4155,4283,2245,2010],"delegation":[3155,3283,1245,1010],"delegatorTokens":9999999948722}},{"ix":93,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":8,"t":48,"tokens":[4155,4283,2245,2010],"delegation":[3155,3283,1245,1010],"delegatorTokens":9999999948722,"jailed":[null,1000000000000005,null,null],"status":["bonded","unbonding","bonded","unbonding"]}},{"ix":94,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":14,"t":84,"consumerPower":[5305,null,5336,null],"outstandingDowntime":[false,false,true,true]}},{"ix":95,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":96,"action":{"kind":"Delegate","val":1,"amt":4778},"partialState":{"h":8,"t":48,"tokens":[4155,9061,2245,2010],"delegation":[3155,8061,1245,1010],"delegatorTokens":9999999943944}},{"ix":97,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":98,"action":{"kind":"Deliver","chain":"provider","numPackets":5},"partialState":{"h":8,"t":48,"tokens":[4155,9061,2245,2010],"delegation":[3155,8061,1245,1010],"delegatorTokens":9999999943944,"jailed":[null,1000000000000005,null,null],"status":["bonded","unbonding","bonded","unbonding"]}},{"ix":99,"action":{"kind":"Delegate","val":1,"amt":2720},"partialState":{"h":8,"t":48,"tokens":[4155,11781,2245,2010],"delegation":[3155,10781,1245,1010],"delegatorTokens":9999999941224}},{"ix":100,"action":{"kind":"Undelegate","val":0,"amt":2016},"partialState":{"h":8,"t":48,"tokens":[2139,11781,2245,2010],"delegation":[1139,10781,1245,1010],"delegatorTokens":9999999941224}},{"ix":101,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":102,"action":{"kind":"Deliver","chain":"consumer","numPackets":1},"partialState":{"h":14,"t":84,"consumerPower":[5305,null,5336,null],"outstandingDowntime":[false,false,true,true]}},{"ix":103,"action":{"kind":"Undelegate","val":2,"amt":4192},"partialState":{"h":8,"t":48,"tokens":[2139,11781,2245,2010],"delegation":[1139,10781,1245,1010],"delegatorTokens":9999999941224}},{"ix":104,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":105,"action":{"kind":"Delegate","val":1,"amt":3360},"partialState":{"h":8,"t":48,"tokens":[2139,15141,2245,2010],"delegation":[1139,14141,1245,1010],"delegatorTokens":9999999937864}},{"ix":106,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":9,"t":54,"tokens":[2139,15141,2245,2010],"delegation":[1139,14141,1245,1010],"delegatorTokens":9999999937864,"jailed":[null,1000000000000005,null,null],"status":["bonded","unbonding","bonded","unbonding"]}},{"ix":107,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":108,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":15,"t":90,"consumerPower":[5305,null,5336,null],"outstandingDowntime":[false,false,true,true]}},{"ix":109,"action":{"kind":"Undelegate","val":2,"amt":4165},"partialState":{"h":9,"t":54,"tokens":[2139,15141,2245,2010],"delegation":[1139,14141,1245,1010],"delegatorTokens":9999999937864}},{"ix":110,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":10,"t":60,"tokens":[2139,15141,2245,2010],"delegation":[1139,14141,1245,1010],"delegatorTokens":9999999937864,"jailed":[null,1000000000000005,null,null],"status":["bonded","unbonding","bonded","unbonding"]}},{"ix":111,"action":{"kind":"Undelegate","val":0,"amt":2836},"partialState":{"h":10,"t":60,"tokens":[2139,15141,2245,2010],"delegation":[1139,14141,1245,1010],"delegatorTokens":9999999937864}},{"ix":112,"action":{"kind":"Deliver","chain":"provider","numPackets":2},"partialState":{"h":10,"t":60,"tokens":[2139,15141,2245,2010],"delegation":[1139,14141,1245,1010],"delegatorTokens":9999999937864,"jailed":[null,1000000000000005,null,null],"status":["bonded","unbonding","bonded","unbonding"]}},{"ix":113,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":11,"t":66,"tokens":[2139,15141,2245,2010],"delegation":[1139,14141,1245,1010],"delegatorTokens":9999999937864,"jailed":[null,1000000000000005,null,null],"status":["bonded","unbonding","bonded","unbonding"]}},{"ix":114,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":16,"t":96,"consumerPower":[5305,null,5336,null],"outstandingDowntime":[false,false,true,true]}},{"ix":115,"action":{"kind":"Undelegate","val":0,"amt":1419},"partialState":{"h":11,"t":66,"tokens":[2139,15141,2245,2010],"delegation":[1139,14141,1245,1010],"delegatorTokens":9999999937864}},{"ix":116,"action":{"kind":"Deliver","chain":"provider","numPackets":1},"partialState":{"h":11,"t":66,"tokens":[2139,15141,2245,2010],"delegation":[1139,14141,1245,1010],"delegatorTokens":9999999937864,"jailed":[null,1000000000000005,null,null],"status":["bonded","unbonding","bonded","unbonding"]}},{"ix":117,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":12,"t":72,"tokens":[2139,15141,2245,2010],"delegation":[1139,14141,1245,1010],"delegatorTokens":9999999937864,"jailed":[null,1000000000000005,null,null],"status":["bonded","unbonding","bonded","unbonding"]}},{"ix":118,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":119,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":17,"t":102,"consumerPower":[5305,null,5336,null],"outstandingDowntime":[false,false,true,true]}},{"ix":120,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":121,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":13,"t":78,"tokens":[2139,15141,2245,2010],"delegation":[1139,14141,1245,1010],"delegatorTokens":9999999937864,"jailed":[null,1000000000000005,null,null],"status":["bonded","unbonding","bonded","unbonding"]}},{"ix":122,"action":{"kind":"Delegate","val":3,"amt":2508},"partialState":{"h":13,"t":78,"tokens":[2139,15141,2245,4518],"delegation":[1139,14141,1245,3518],"delegatorTokens":9999999935356}},{"ix":123,"action":{"kind":"Delegate","val":1,"amt":1095},"partialState":{"h":13,"t":78,"tokens":[2139,16236,2245,4518],"delegation":[1139,15236,1245,3518],"delegatorTokens":9999999934261}},{"ix":124,"action":{"kind":"Deliver","chain":"consumer","numPackets":1},"partialState":{"h":17,"t":102,"consumerPower":[5305,null,5336,null],"outstandingDowntime":[false,false,true,true]}},{"ix":125,"action":{"kind":"Delegate","val":0,"amt":1225},"partialState":{"h":13,"t":78,"tokens":[3364,16236,2245,4518],"delegation":[2364,15236,1245,3518],"delegatorTokens":9999999933036}},{"ix":126,"action":{"kind":"Delegate","val":1,"amt":4120},"partialState":{"h":13,"t":78,"tokens":[3364,20356,2245,4518],"delegation":[2364,19356,1245,3518],"delegatorTokens":9999999928916}},{"ix":127,"action":{"kind":"Deliver","chain":"provider","numPackets":1},"partialState":{"h":13,"t":78,"tokens":[3364,20356,2245,4518],"delegation":[2364,19356,1245,3518],"delegatorTokens":9999999928916,"jailed":[null,1000000000000005,null,null],"status":["bonded","unbonding","bonded","unbonding"]}},{"ix":128,"action":{"kind":"Undelegate","val":0,"amt":2076},"partialState":{"h":13,"t":78,"tokens":[1288,20356,2245,4518],"delegation":[288,19356,1245,3518],"delegatorTokens":9999999928916}},{"ix":129,"action":{"kind":"Deliver","chain":"consumer","numPackets":4},"partialState":{"h":17,"t":102,"consumerPower":[5305,null,5336,null],"outstandingDowntime":[false,false,true,true]}},{"ix":130,"action":{"kind":"Undelegate","val":0,"amt":4073},"partialState":{"h":13,"t":78,"tokens":[1288,20356,2245,4518],"delegation":[288,19356,1245,3518],"delegatorTokens":9999999928916}},{"ix":131,"action":{"kind":"Undelegate","val":1,"amt":2073},"partialState":{"h":13,"t":78,"tokens":[1288,18283,2245,4518],"delegation":[288,17283,1245,3518],"delegatorTokens":9999999928916}},{"ix":132,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":133,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":134,"action":{"kind":"Undelegate","val":1,"amt":2902},"partialState":{"h":13,"t":78,"tokens":[1288,15381,2245,4518],"delegation":[288,14381,1245,3518],"delegatorTokens":9999999928916}},{"ix":135,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":136,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":137,"action":{"kind":"Undelegate","val":0,"amt":1702},"partialState":{"h":13,"t":78,"tokens":[1288,15381,2245,4518],"delegation":[288,14381,1245,3518],"delegatorTokens":9999999928916}},{"ix":138,"action":{"kind":"Deliver","chain":"provider","numPackets":6},"partialState":{"h":13,"t":78,"tokens":[1288,15381,2245,4518],"delegation":[288,14381,1245,3518],"delegatorTokens":9999999928916,"jailed":[null,1000000000000005,null,null],"status":["bonded","unbonding","bonded","unbonding"]}},{"ix":139,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":140,"action":{"kind":"Deliver","chain":"provider","numPackets":3},"partialState":{"h":13,"t":78,"tokens":[1288,15381,2245,4518],"delegation":[288,14381,1245,3518],"delegatorTokens":9999999928916,"jailed":[null,1000000000000005,null,null],"status":["bonded","unbonding","bonded","unbonding"]}},{"ix":141,"action":{"kind":"Undelegate","val":0,"amt":3096},"partialState":{"h":13,"t":78,"tokens":[1288,15381,2245,4518],"delegation":[288,14381,1245,3518],"delegatorTokens":9999999928916}},{"ix":142,"action":{"kind":"Deliver","chain":"consumer","numPackets":6},"partialState":{"h":17,"t":102,"consumerPower":[5305,null,5336,null],"outstandingDowntime":[false,false,true,true]}},{"ix":143,"action":{"kind":"Undelegate","val":1,"amt":1318},"partialState":{"h":13,"t":78,"tokens":[1288,14063,2245,4518],"delegation":[288,13063,1245,3518],"delegatorTokens":9999999928916}},{"ix":144,"action":{"kind":"Delegate","val":3,"amt":2379},"partialState":{"h":13,"t":78,"tokens":[1288,14063,2245,6897],"delegation":[288,13063,1245,5897],"delegatorTokens":9999999926537}},{"ix":145,"action":{"kind":"Undelegate","val":1,"amt":1659},"partialState":{"h":13,"t":78,"tokens":[1288,12404,2245,6897],"delegation":[288,11404,1245,5897],"delegatorTokens":9999999926537}},{"ix":146,"action":{"kind":"Delegate","val":1,"amt":2408},"partialState":{"h":13,"t":78,"tokens":[1288,14812,2245,6897],"delegation":[288,13812,1245,5897],"delegatorTokens":9999999924129}},{"ix":147,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":14,"t":84,"tokens":[1288,14812,2245,6897],"delegation":[288,13812,1245,5897],"delegatorTokens":9999999933150,"jailed":[null,1000000000000005,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":148,"action":{"kind":"Deliver","chain":"consumer","numPackets":6},"partialState":{"h":17,"t":102,"consumerPower":[5305,null,5336,null],"outstandingDowntime":[false,false,true,true]}},{"ix":149,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":150,"action":{"kind":"Delegate","val":0,"amt":1546},"partialState":{"h":14,"t":84,"tokens":[2834,14812,2245,6897],"delegation":[1834,13812,1245,5897],"delegatorTokens":9999999931604}},{"ix":151,"action":{"kind":"Undelegate","val":1,"amt":2064},"partialState":{"h":14,"t":84,"tokens":[2834,12748,2245,6897],"delegation":[1834,11748,1245,5897],"delegatorTokens":9999999931604}},{"ix":152,"action":{"kind":"Undelegate","val":1,"amt":2804},"partialState":{"h":14,"t":84,"tokens":[2834,9944,2245,6897],"delegation":[1834,8944,1245,5897],"delegatorTokens":9999999931604}},{"ix":153,"action":{"kind":"Delegate","val":3,"amt":2450},"partialState":{"h":14,"t":84,"tokens":[2834,9944,2245,9347],"delegation":[1834,8944,1245,8347],"delegatorTokens":9999999929154}},{"ix":154,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":155,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":156,"action":{"kind":"Delegate","val":3,"amt":2244},"partialState":{"h":14,"t":84,"tokens":[2834,9944,2245,11591],"delegation":[1834,8944,1245,10591],"delegatorTokens":9999999926910}},{"ix":157,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":158,"action":{"kind":"Delegate","val":3,"amt":4667},"partialState":{"h":14,"t":84,"tokens":[2834,9944,2245,16258],"delegation":[1834,8944,1245,15258],"delegatorTokens":9999999922243}},{"ix":159,"action":{"kind":"Deliver","chain":"provider","numPackets":4},"partialState":{"h":14,"t":84,"tokens":[2834,9944,2245,16258],"delegation":[1834,8944,1245,15258],"delegatorTokens":9999999922243,"jailed":[null,1000000000000005,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":160,"action":{"kind":"Undelegate","val":3,"amt":3110},"partialState":{"h":14,"t":84,"tokens":[2834,9944,2245,13148],"delegation":[1834,8944,1245,12148],"delegatorTokens":9999999922243}},{"ix":161,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":15,"t":90,"tokens":[2834,9944,2245,13148],"delegation":[1834,8944,1245,12148],"delegatorTokens":9999999922243,"jailed":[null,1000000000000005,null,null],"status":["bonded","unbonded","unbonding","bonded"]}},{"ix":162,"action":{"kind":"Undelegate","val":2,"amt":1645},"partialState":{"h":15,"t":90,"tokens":[2834,9944,2245,13148],"delegation":[1834,8944,1245,12148],"delegatorTokens":9999999922243}},{"ix":163,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":16,"t":96,"tokens":[2834,9944,2245,13148],"delegation":[1834,8944,1245,12148],"delegatorTokens":9999999922243,"jailed":[null,1000000000000005,null,null],"status":["bonded","unbonded","unbonding","bonded"]}},{"ix":164,"action":{"kind":"Delegate","val":2,"amt":3365},"partialState":{"h":16,"t":96,"tokens":[2834,9944,5610,13148],"delegation":[1834,8944,4610,12148],"delegatorTokens":9999999918878}},{"ix":165,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":166,"action":{"kind":"Delegate","val":3,"amt":2453},"partialState":{"h":16,"t":96,"tokens":[2834,9944,5610,15601],"delegation":[1834,8944,4610,14601],"delegatorTokens":9999999916425}},{"ix":167,"action":{"kind":"Deliver","chain":"provider","numPackets":6},"partialState":{"h":16,"t":96,"tokens":[2834,9944,5610,15601],"delegation":[1834,8944,4610,14601],"delegatorTokens":9999999916425,"jailed":[null,1000000000000005,null,null],"status":["bonded","unbonded","unbonding","bonded"]}},{"ix":168,"action":{"kind":"Deliver","chain":"provider","numPackets":4},"partialState":{"h":16,"t":96,"tokens":[2834,9944,5610,15601],"delegation":[1834,8944,4610,14601],"delegatorTokens":9999999916425,"jailed":[null,1000000000000005,null,null],"status":["bonded","unbonded","unbonding","bonded"]}},{"ix":169,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":170,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":18,"t":108,"consumerPower":[2139,null,2245,null],"outstandingDowntime":[false,false,true,true]}},{"ix":171,"action":{"kind":"Undelegate","val":3,"amt":1505},"partialState":{"h":16,"t":96,"tokens":[2834,9944,5610,14096],"delegation":[1834,8944,4610,13096],"delegatorTokens":9999999916425}},{"ix":172,"action":{"kind":"Undelegate","val":0,"amt":3413},"partialState":{"h":16,"t":96,"tokens":[2834,9944,5610,14096],"delegation":[1834,8944,4610,13096],"delegatorTokens":9999999916425}},{"ix":173,"action":{"kind":"Deliver","chain":"provider","numPackets":1},"partialState":{"h":16,"t":96,"tokens":[2834,9944,5610,14096],"delegation":[1834,8944,4610,13096],"delegatorTokens":9999999916425,"jailed":[null,1000000000000005,null,null],"status":["bonded","unbonded","unbonding","bonded"]}},{"ix":174,"action":{"kind":"Deliver","chain":"provider","numPackets":5},"partialState":{"h":16,"t":96,"tokens":[2834,9944,5610,14096],"delegation":[1834,8944,4610,13096],"delegatorTokens":9999999916425,"jailed":[null,1000000000000005,null,null],"status":["bonded","unbonded","unbonding","bonded"]}},{"ix":175,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":17,"t":102,"tokens":[2834,9944,5610,14096],"delegation":[1834,8944,4610,13096],"delegatorTokens":9999999916425,"jailed":[null,1000000000000005,null,null],"status":["unbonding","unbonded","bonded","bonded"]}},{"ix":176,"action":{"kind":"Delegate","val":2,"amt":1510},"partialState":{"h":17,"t":102,"tokens":[2834,9944,7120,14096],"delegation":[1834,8944,6120,13096],"delegatorTokens":9999999914915}},{"ix":177,"action":{"kind":"Deliver","chain":"provider","numPackets":2},"partialState":{"h":17,"t":102,"tokens":[2834,9944,7120,14096],"delegation":[1834,8944,6120,13096],"delegatorTokens":9999999914915,"jailed":[null,1000000000000005,null,null],"status":["unbonding","unbonded","bonded","bonded"]}},{"ix":178,"action":{"kind":"Undelegate","val":0,"amt":2965},"partialState":{"h":17,"t":102,"tokens":[2834,9944,7120,14096],"delegation":[1834,8944,6120,13096],"delegatorTokens":9999999914915}},{"ix":179,"action":{"kind":"Delegate","val":1,"amt":3654},"partialState":{"h":17,"t":102,"tokens":[2834,13598,7120,14096],"delegation":[1834,12598,6120,13096],"delegatorTokens":9999999911261}},{"ix":180,"action":{"kind":"Delegate","val":1,"amt":4730},"partialState":{"h":17,"t":102,"tokens":[2834,18328,7120,14096],"delegation":[1834,17328,6120,13096],"delegatorTokens":9999999906531}},{"ix":181,"action":{"kind":"Deliver","chain":"consumer","numPackets":1},"partialState":{"h":18,"t":108,"consumerPower":[2139,null,2245,null],"outstandingDowntime":[false,false,true,true]}},{"ix":182,"action":{"kind":"Delegate","val":1,"amt":4332},"partialState":{"h":17,"t":102,"tokens":[2834,22660,7120,14096],"delegation":[1834,21660,6120,13096],"delegatorTokens":9999999902199}},{"ix":183,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":184,"action":{"kind":"Delegate","val":1,"amt":2191},"partialState":{"h":17,"t":102,"tokens":[2834,24851,7120,14096],"delegation":[1834,23851,6120,13096],"delegatorTokens":9999999900008}},{"ix":185,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":186,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":187,"action":{"kind":"Undelegate","val":2,"amt":2621},"partialState":{"h":17,"t":102,"tokens":[2834,24851,4499,14096],"delegation":[1834,23851,3499,13096],"delegatorTokens":9999999900008}},{"ix":188,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":189,"action":{"kind":"Delegate","val":0,"amt":2971},"partialState":{"h":17,"t":102,"tokens":[5805,24851,4499,14096],"delegation":[4805,23851,3499,13096],"delegatorTokens":9999999897037}},{"ix":190,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":191,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":192,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":193,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":18,"t":108,"tokens":[5805,24851,4499,14096],"delegation":[4805,23851,3499,13096],"delegatorTokens":9999999897037,"jailed":[null,1000000000000005,null,null],"status":["bonded","unbonded","unbonding","bonded"]}},{"ix":194,"action":{"kind":"Deliver","chain":"consumer","numPackets":3},"partialState":{"h":18,"t":108,"consumerPower":[2139,null,2245,null],"outstandingDowntime":[false,false,true,true]}},{"ix":195,"action":{"kind":"Delegate","val":0,"amt":1186},"partialState":{"h":18,"t":108,"tokens":[6991,24851,4499,14096],"delegation":[5991,23851,3499,13096],"delegatorTokens":9999999895851}},{"ix":196,"action":{"kind":"Deliver","chain":"consumer","numPackets":5},"partialState":{"h":18,"t":108,"consumerPower":[2139,null,2245,null],"outstandingDowntime":[false,false,true,true]}},{"ix":197,"action":{"kind":"Undelegate","val":1,"amt":1908},"partialState":{"h":18,"t":108,"tokens":[6991,22943,4499,14096],"delegation":[5991,21943,3499,13096],"delegatorTokens":9999999895851}},{"ix":198,"action":{"kind":"Undelegate","val":2,"amt":1990},"partialState":{"h":18,"t":108,"tokens":[6991,22943,2509,14096],"delegation":[5991,21943,1509,13096],"delegatorTokens":9999999895851}},{"ix":199,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":19,"t":114,"tokens":[6991,22943,2509,14096],"delegation":[5991,21943,1509,13096],"delegatorTokens":9999999895851,"jailed":[null,1000000000000005,null,null],"status":["bonded","unbonded","unbonding","bonded"]}}],"events":["send_double_sign_slash_request","insufficient_shares","send_double_sign_slash_request","send_downtime_slash_request","send_downtime_slash_request","send_downtime_slash_request","receive_double_sign_slash_request","receive_double_sign_slash_request","receive_slash_request_unbonded","receive_slash_request_unbonded","receive_downtime_slash_request","jail","send_vsc_with_downtime_ack","more_than_one_third_val_power_change","send_vsc_without_downtime_ack","receive_downtime_slash_ack","consumer_update_val","consumer_update_val","send_vsc_without_downtime_ack","more_than_one_third_val_power_change","send_vsc_without_downtime_ack","consumer_del_val","consumer_add_val","insufficient_shares","send_vsc_without_downtime_ack","consumer_update_val","consumer_del_val","consumer_add_val","insufficient_shares","insufficient_shares","send_vsc_without_downtime_ack","insufficient_shares","send_vsc_without_downtime_ack","consumer_send_maturation","insufficient_shares","insufficient_shares","consumer_send_maturation","insufficient_shares","set_undel_hold_false","set_undel_hold_false","set_undel_hold_false","set_undel_hold_false","insufficient_shares","insufficient_shares","insufficient_shares","more_than_one_third_val_power_change","rebond_unval","complete_undel_in_endblock","set_unval_hold_false","send_vsc_without_downtime_ack","rebond_unval","complete_unval_in_endblock","send_vsc_without_downtime_ack","insufficient_shares","some_undels_expired_but_not_completed","consumer_update_val","consumer_update_val","insufficient_shares","rebond_unval","some_undels_expired_but_not_completed","send_vsc_without_downtime_ack","insufficient_shares","rebond_unval","some_undels_expired_but_not_completed","send_vsc_without_downtime_ack","send_vsc_without_downtime_ack"]},{"meta":{"commit":"7ffd0c04e4205cbc9caf212abfe6c59ee43153bf"},"constants":{"P":"provider","C":"consumer","UNBONDING_SECONDS_P":70,"UNBONDING_SECONDS_C":50,"TRUSTING_SECONDS":49,"NUM_VALIDATORS":4,"MAX_VALIDATORS":2,"SLASH_DOUBLESIGN":0,"SLASH_DOWNTIME":0,"JAIL_SECONDS":999999999999999,"BLOCK_SECONDS":6,"INITIAL_DELEGATOR_TOKENS":10000000000000,"DELEGATE_AMT_MIN":1000,"DELEGATE_AMT_MAX":5000,"UNDELEGATE_AMT_MIN":1000,"UNDELEGATE_AMT_MAX":5000,"ISDOWNTIME_PROBABILITY":0.5,"MAX_NUM_PACKETS_FOR_DELIVER":6},"actions":[{"ix":0,"action":{"kind":"ConsumerSlash","val":1,"infractionHeight":0,"isDowntime":true},"partialState":{"h":1,"t":6,"outstandingDowntime":[false,true,false,false]}},{"ix":1,"action":{"kind":"ConsumerSlash","val":2,"infractionHeight":0,"isDowntime":true},"partialState":{"h":1,"t":6,"outstandingDowntime":[false,true,true,false]}},{"ix":2,"action":{"kind":"Delegate","val":1,"amt":4102},"partialState":{"h":1,"t":6,"tokens":[5000,8102,3000,2000],"delegation":[4000,7102,2000,1000],"delegatorTokens":9999999995898}},{"ix":3,"action":{"kind":"ConsumerSlash","val":2,"infractionHeight":0,"isDowntime":false},"partialState":{"h":1,"t":6,"outstandingDowntime":[false,true,true,false]}},{"ix":4,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":2,"t":12,"tokens":[5000,8102,3000,2000],"delegation":[4000,7102,2000,1000],"delegatorTokens":9999999995898,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":5,"action":{"kind":"Deliver","chain":"consumer","numPackets":2},"partialState":{"h":1,"t":6,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,true,true,false]}},{"ix":6,"action":{"kind":"Undelegate","val":2,"amt":3863},"partialState":{"h":2,"t":12,"tokens":[5000,8102,3000,2000],"delegation":[4000,7102,2000,1000],"delegatorTokens":9999999995898}},{"ix":7,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":2,"t":12,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,true,true,false]}},{"ix":8,"action":{"kind":"Deliver","chain":"consumer","numPackets":6},"partialState":{"h":2,"t":12,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,true,true,false]}},{"ix":9,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":10,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":11,"action":{"kind":"Delegate","val":0,"amt":2206},"partialState":{"h":2,"t":12,"tokens":[7206,8102,3000,2000],"delegation":[6206,7102,2000,1000],"delegatorTokens":9999999993692}},{"ix":12,"action":{"kind":"Delegate","val":2,"amt":3136},"partialState":{"h":2,"t":12,"tokens":[7206,8102,6136,2000],"delegation":[6206,7102,5136,1000],"delegatorTokens":9999999990556}},{"ix":13,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":14,"action":{"kind":"Delegate","val":0,"amt":2829},"partialState":{"h":2,"t":12,"tokens":[10035,8102,6136,2000],"delegation":[9035,7102,5136,1000],"delegatorTokens":9999999987727}},{"ix":15,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":3,"t":18,"tokens":[10035,8102,6136,2000],"delegation":[9035,7102,5136,1000],"delegatorTokens":9999999987727,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":16,"action":{"kind":"ConsumerSlash","val":3,"infractionHeight":1,"isDowntime":true},"partialState":{"h":2,"t":12,"outstandingDowntime":[false,true,true,true]}},{"ix":17,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":3,"t":18,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,true,true,true]}},{"ix":18,"action":{"kind":"Delegate","val":0,"amt":2571},"partialState":{"h":3,"t":18,"tokens":[12606,8102,6136,2000],"delegation":[11606,7102,5136,1000],"delegatorTokens":9999999985156}},{"ix":19,"action":{"kind":"Undelegate","val":2,"amt":2129},"partialState":{"h":3,"t":18,"tokens":[12606,8102,4007,2000],"delegation":[11606,7102,3007,1000],"delegatorTokens":9999999985156}},{"ix":20,"action":{"kind":"Deliver","chain":"provider","numPackets":1},"partialState":{"h":3,"t":18,"tokens":[12606,8102,4007,2000],"delegation":[11606,7102,3007,1000],"delegatorTokens":9999999985156,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":21,"action":{"kind":"Deliver","chain":"provider","numPackets":3},"partialState":{"h":3,"t":18,"tokens":[12606,8102,4007,2000],"delegation":[11606,7102,3007,1000],"delegatorTokens":9999999985156,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":22,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":4,"t":24,"tokens":[12606,8102,4007,2000],"delegation":[11606,7102,3007,1000],"delegatorTokens":9999999985156,"jailed":[null,1000000000000017,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":23,"action":{"kind":"Deliver","chain":"provider","numPackets":4},"partialState":{"h":4,"t":24,"tokens":[12606,8102,4007,2000],"delegation":[11606,7102,3007,1000],"delegatorTokens":9999999985156,"jailed":[null,1000000000000017,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":24,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":5,"t":30,"tokens":[12606,8102,4007,2000],"delegation":[11606,7102,3007,1000],"delegatorTokens":9999999985156,"jailed":[null,1000000000000017,null,null],"status":["bonded","unbonding","bonded","unbonded"]}},{"ix":25,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":26,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":6,"t":36,"tokens":[12606,8102,4007,2000],"delegation":[11606,7102,3007,1000],"delegatorTokens":9999999985156,"jailed":[null,1000000000000017,null,null],"status":["bonded","unbonding","bonded","unbonded"]}},{"ix":27,"action":{"kind":"Undelegate","val":0,"amt":3625},"partialState":{"h":6,"t":36,"tokens":[8981,8102,4007,2000],"delegation":[7981,7102,3007,1000],"delegatorTokens":9999999985156}},{"ix":28,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":29,"action":{"kind":"Delegate","val":0,"amt":4411},"partialState":{"h":6,"t":36,"tokens":[13392,8102,4007,2000],"delegation":[12392,7102,3007,1000],"delegatorTokens":9999999980745}},{"ix":30,"action":{"kind":"Deliver","chain":"consumer","numPackets":4},"partialState":{"h":3,"t":18,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,false,true,true]}},{"ix":31,"action":{"kind":"Undelegate","val":3,"amt":4114},"partialState":{"h":6,"t":36,"tokens":[13392,8102,4007,2000],"delegation":[12392,7102,3007,1000],"delegatorTokens":9999999980745}},{"ix":32,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":4,"t":24,"consumerPower":[12606,null,4007,null],"outstandingDowntime":[false,false,true,true]}},{"ix":33,"action":{"kind":"Deliver","chain":"provider","numPackets":3},"partialState":{"h":6,"t":36,"tokens":[13392,8102,4007,2000],"delegation":[12392,7102,3007,1000],"delegatorTokens":9999999980745,"jailed":[null,1000000000000017,null,null],"status":["bonded","unbonding","bonded","unbonded"]}},{"ix":34,"action":{"kind":"Deliver","chain":"provider","numPackets":4},"partialState":{"h":6,"t":36,"tokens":[13392,8102,4007,2000],"delegation":[12392,7102,3007,1000],"delegatorTokens":9999999980745,"jailed":[null,1000000000000017,null,null],"status":["bonded","unbonding","bonded","unbonded"]}},{"ix":35,"action":{"kind":"Delegate","val":0,"amt":3013},"partialState":{"h":6,"t":36,"tokens":[16405,8102,4007,2000],"delegation":[15405,7102,3007,1000],"delegatorTokens":9999999977732}},{"ix":36,"action":{"kind":"Undelegate","val":3,"amt":4214},"partialState":{"h":6,"t":36,"tokens":[16405,8102,4007,2000],"delegation":[15405,7102,3007,1000],"delegatorTokens":9999999977732}},{"ix":37,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":38,"action":{"kind":"Delegate","val":1,"amt":4250},"partialState":{"h":6,"t":36,"tokens":[16405,12352,4007,2000],"delegation":[15405,11352,3007,1000],"delegatorTokens":9999999973482}},{"ix":39,"action":{"kind":"Deliver","chain":"consumer","numPackets":5},"partialState":{"h":4,"t":24,"consumerPower":[12606,null,4007,null],"outstandingDowntime":[false,false,true,true]}},{"ix":40,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":41,"action":{"kind":"Undelegate","val":1,"amt":4414},"partialState":{"h":6,"t":36,"tokens":[16405,7938,4007,2000],"delegation":[15405,6938,3007,1000],"delegatorTokens":9999999973482}},{"ix":42,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":5,"t":30,"consumerPower":[12606,null,4007,null],"outstandingDowntime":[false,false,true,true]}},{"ix":43,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":44,"action":{"kind":"Undelegate","val":0,"amt":2174},"partialState":{"h":6,"t":36,"tokens":[14231,7938,4007,2000],"delegation":[13231,6938,3007,1000],"delegatorTokens":9999999973482}},{"ix":45,"action":{"kind":"Delegate","val":2,"amt":4567},"partialState":{"h":6,"t":36,"tokens":[14231,7938,8574,2000],"delegation":[13231,6938,7574,1000],"delegatorTokens":9999999968915}},{"ix":46,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":47,"action":{"kind":"Delegate","val":0,"amt":2172},"partialState":{"h":6,"t":36,"tokens":[16403,7938,8574,2000],"delegation":[15403,6938,7574,1000],"delegatorTokens":9999999966743}},{"ix":48,"action":{"kind":"Undelegate","val":1,"amt":1207},"partialState":{"h":6,"t":36,"tokens":[16403,6731,8574,2000],"delegation":[15403,5731,7574,1000],"delegatorTokens":9999999966743}},{"ix":49,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":50,"action":{"kind":"Delegate","val":1,"amt":3401},"partialState":{"h":6,"t":36,"tokens":[16403,10132,8574,2000],"delegation":[15403,9132,7574,1000],"delegatorTokens":9999999963342}},{"ix":51,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":6,"t":36,"consumerPower":[12606,null,4007,null],"outstandingDowntime":[false,false,true,true]}},{"ix":52,"action":{"kind":"Deliver","chain":"consumer","numPackets":1},"partialState":{"h":6,"t":36,"consumerPower":[12606,null,4007,null],"outstandingDowntime":[false,false,true,true]}},{"ix":53,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":54,"action":{"kind":"Delegate","val":1,"amt":3537},"partialState":{"h":6,"t":36,"tokens":[16403,13669,8574,2000],"delegation":[15403,12669,7574,1000],"delegatorTokens":9999999959805}},{"ix":55,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":7,"t":42,"consumerPower":[12606,null,4007,null],"outstandingDowntime":[false,false,true,true]}},{"ix":56,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":7,"t":42,"tokens":[16403,13669,8574,2000],"delegation":[15403,12669,7574,1000],"delegatorTokens":9999999959805,"jailed":[null,1000000000000017,null,null],"status":["bonded","unbonding","bonded","unbonded"]}},{"ix":57,"action":{"kind":"Deliver","chain":"consumer","numPackets":4},"partialState":{"h":7,"t":42,"consumerPower":[12606,null,4007,null],"outstandingDowntime":[false,false,true,true]}},{"ix":58,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":8,"t":48,"consumerPower":[12606,null,4007,null],"outstandingDowntime":[false,false,true,true]}},{"ix":59,"action":{"kind":"Delegate","val":2,"amt":3442},"partialState":{"h":7,"t":42,"tokens":[16403,13669,12016,2000],"delegation":[15403,12669,11016,1000],"delegatorTokens":9999999956363}},{"ix":60,"action":{"kind":"Deliver","chain":"consumer","numPackets":6},"partialState":{"h":8,"t":48,"consumerPower":[12606,null,4007,null],"outstandingDowntime":[false,false,true,true]}},{"ix":61,"action":{"kind":"Deliver","chain":"consumer","numPackets":1},"partialState":{"h":8,"t":48,"consumerPower":[12606,null,4007,null],"outstandingDowntime":[false,false,true,true]}},{"ix":62,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":9,"t":54,"consumerPower":[12606,null,4007,null],"outstandingDowntime":[false,false,true,true]}},{"ix":63,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":64,"action":{"kind":"Undelegate","val":0,"amt":4193},"partialState":{"h":7,"t":42,"tokens":[12210,13669,12016,2000],"delegation":[11210,12669,11016,1000],"delegatorTokens":9999999956363}},{"ix":65,"action":{"kind":"Deliver","chain":"provider","numPackets":6},"partialState":{"h":7,"t":42,"tokens":[12210,13669,12016,2000],"delegation":[11210,12669,11016,1000],"delegatorTokens":9999999956363,"jailed":[null,1000000000000017,null,null],"status":["bonded","unbonding","bonded","unbonded"]}},{"ix":66,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":67,"action":{"kind":"Deliver","chain":"provider","numPackets":4},"partialState":{"h":7,"t":42,"tokens":[12210,13669,12016,2000],"delegation":[11210,12669,11016,1000],"delegatorTokens":9999999956363,"jailed":[null,1000000000000017,null,null],"status":["bonded","unbonding","bonded","unbonded"]}},{"ix":68,"action":{"kind":"Deliver","chain":"provider","numPackets":2},"partialState":{"h":7,"t":42,"tokens":[12210,13669,12016,2000],"delegation":[11210,12669,11016,1000],"delegatorTokens":9999999956363,"jailed":[null,1000000000000017,null,null],"status":["bonded","unbonding","bonded","unbonded"]}},{"ix":69,"action":{"kind":"Deliver","chain":"consumer","numPackets":6},"partialState":{"h":9,"t":54,"consumerPower":[12606,null,4007,null],"outstandingDowntime":[false,false,true,true]}},{"ix":70,"action":{"kind":"Delegate","val":3,"amt":4757},"partialState":{"h":7,"t":42,"tokens":[12210,13669,12016,6757],"delegation":[11210,12669,11016,5757],"delegatorTokens":9999999951606}},{"ix":71,"action":{"kind":"Delegate","val":0,"amt":3722},"partialState":{"h":7,"t":42,"tokens":[15932,13669,12016,6757],"delegation":[14932,12669,11016,5757],"delegatorTokens":9999999947884}},{"ix":72,"action":{"kind":"Deliver","chain":"consumer","numPackets":6},"partialState":{"h":9,"t":54,"consumerPower":[12606,null,4007,null],"outstandingDowntime":[false,false,true,true]}},{"ix":73,"action":{"kind":"Delegate","val":1,"amt":3593},"partialState":{"h":7,"t":42,"tokens":[15932,17262,12016,6757],"delegation":[14932,16262,11016,5757],"delegatorTokens":9999999944291}},{"ix":74,"action":{"kind":"Undelegate","val":3,"amt":1101},"partialState":{"h":7,"t":42,"tokens":[15932,17262,12016,5656],"delegation":[14932,16262,11016,4656],"delegatorTokens":9999999944291}},{"ix":75,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":8,"t":48,"tokens":[15932,17262,12016,5656],"delegation":[14932,16262,11016,4656],"delegatorTokens":9999999944291,"jailed":[null,1000000000000017,null,null],"status":["bonded","unbonding","bonded","unbonded"]}},{"ix":76,"action":{"kind":"Delegate","val":0,"amt":1853},"partialState":{"h":8,"t":48,"tokens":[17785,17262,12016,5656],"delegation":[16785,16262,11016,4656],"delegatorTokens":9999999942438}},{"ix":77,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":78,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":9,"t":54,"tokens":[17785,17262,12016,5656],"delegation":[16785,16262,11016,4656],"delegatorTokens":9999999942438,"jailed":[null,1000000000000017,null,null],"status":["bonded","unbonding","bonded","unbonded"]}},{"ix":79,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":10,"t":60,"consumerPower":[12606,null,4007,null],"outstandingDowntime":[false,false,true,true]}},{"ix":80,"action":{"kind":"Deliver","chain":"provider","numPackets":4},"partialState":{"h":9,"t":54,"tokens":[17785,17262,12016,5656],"delegation":[16785,16262,11016,4656],"delegatorTokens":9999999942438,"jailed":[null,1000000000000017,null,null],"status":["bonded","unbonding","bonded","unbonded"]}},{"ix":81,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":10,"t":60,"tokens":[17785,17262,12016,5656],"delegation":[16785,16262,11016,4656],"delegatorTokens":9999999942438,"jailed":[null,1000000000000017,null,null],"status":["bonded","unbonding","bonded","unbonded"]}},{"ix":82,"action":{"kind":"Undelegate","val":0,"amt":3138},"partialState":{"h":10,"t":60,"tokens":[14647,17262,12016,5656],"delegation":[13647,16262,11016,4656],"delegatorTokens":9999999942438}},{"ix":83,"action":{"kind":"Deliver","chain":"consumer","numPackets":2},"partialState":{"h":10,"t":60,"consumerPower":[12606,null,4007,null],"outstandingDowntime":[false,false,true,true]}},{"ix":84,"action":{"kind":"Undelegate","val":0,"amt":3928},"partialState":{"h":10,"t":60,"tokens":[10719,17262,12016,5656],"delegation":[9719,16262,11016,4656],"delegatorTokens":9999999942438}},{"ix":85,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":86,"action":{"kind":"Deliver","chain":"provider","numPackets":3},"partialState":{"h":10,"t":60,"tokens":[10719,17262,12016,5656],"delegation":[9719,16262,11016,4656],"delegatorTokens":9999999942438,"jailed":[null,1000000000000017,null,null],"status":["bonded","unbonding","bonded","unbonded"]}},{"ix":87,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":88,"action":{"kind":"Deliver","chain":"provider","numPackets":3},"partialState":{"h":10,"t":60,"tokens":[10719,17262,12016,5656],"delegation":[9719,16262,11016,4656],"delegatorTokens":9999999942438,"jailed":[null,1000000000000017,null,null],"status":["bonded","unbonding","bonded","unbonded"]}},{"ix":89,"action":{"kind":"Undelegate","val":2,"amt":1660},"partialState":{"h":10,"t":60,"tokens":[10719,17262,10356,5656],"delegation":[9719,16262,9356,4656],"delegatorTokens":9999999942438}},{"ix":90,"action":{"kind":"Delegate","val":0,"amt":2199},"partialState":{"h":10,"t":60,"tokens":[12918,17262,10356,5656],"delegation":[11918,16262,9356,4656],"delegatorTokens":9999999940239}},{"ix":91,"action":{"kind":"Deliver","chain":"consumer","numPackets":6},"partialState":{"h":10,"t":60,"consumerPower":[12606,null,4007,null],"outstandingDowntime":[false,false,true,true]}},{"ix":92,"action":{"kind":"Undelegate","val":3,"amt":3867},"partialState":{"h":10,"t":60,"tokens":[12918,17262,10356,1789],"delegation":[11918,16262,9356,789],"delegatorTokens":9999999940239}},{"ix":93,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":11,"t":66,"consumerPower":[17785,null,12016,null],"outstandingDowntime":[false,false,true,true]}},{"ix":94,"action":{"kind":"Deliver","chain":"consumer","numPackets":5},"partialState":{"h":11,"t":66,"consumerPower":[17785,null,12016,null],"outstandingDowntime":[false,false,true,true]}},{"ix":95,"action":{"kind":"Undelegate","val":0,"amt":4347},"partialState":{"h":10,"t":60,"tokens":[8571,17262,10356,1789],"delegation":[7571,16262,9356,789],"delegatorTokens":9999999940239}},{"ix":96,"action":{"kind":"Deliver","chain":"provider","numPackets":1},"partialState":{"h":10,"t":60,"tokens":[8571,17262,10356,1789],"delegation":[7571,16262,9356,789],"delegatorTokens":9999999940239,"jailed":[null,1000000000000017,null,null],"status":["bonded","unbonding","bonded","unbonded"]}},{"ix":97,"action":{"kind":"Delegate","val":0,"amt":4959},"partialState":{"h":10,"t":60,"tokens":[13530,17262,10356,1789],"delegation":[12530,16262,9356,789],"delegatorTokens":9999999935280}},{"ix":98,"action":{"kind":"Undelegate","val":0,"amt":1426},"partialState":{"h":10,"t":60,"tokens":[12104,17262,10356,1789],"delegation":[11104,16262,9356,789],"delegatorTokens":9999999935280}},{"ix":99,"action":{"kind":"Undelegate","val":0,"amt":1244},"partialState":{"h":10,"t":60,"tokens":[10860,17262,10356,1789],"delegation":[9860,16262,9356,789],"delegatorTokens":9999999935280}},{"ix":100,"action":{"kind":"Deliver","chain":"consumer","numPackets":2},"partialState":{"h":11,"t":66,"consumerPower":[17785,null,12016,null],"outstandingDowntime":[false,false,true,true]}},{"ix":101,"action":{"kind":"Deliver","chain":"provider","numPackets":6},"partialState":{"h":10,"t":60,"tokens":[10860,17262,10356,1789],"delegation":[9860,16262,9356,789],"delegatorTokens":9999999935280,"jailed":[null,1000000000000017,null,null],"status":["bonded","unbonding","bonded","unbonded"]}},{"ix":102,"action":{"kind":"Deliver","chain":"provider","numPackets":2},"partialState":{"h":10,"t":60,"tokens":[10860,17262,10356,1789],"delegation":[9860,16262,9356,789],"delegatorTokens":9999999935280,"jailed":[null,1000000000000017,null,null],"status":["bonded","unbonding","bonded","unbonded"]}},{"ix":103,"action":{"kind":"Delegate","val":1,"amt":3229},"partialState":{"h":10,"t":60,"tokens":[10860,20491,10356,1789],"delegation":[9860,19491,9356,789],"delegatorTokens":9999999932051}},{"ix":104,"action":{"kind":"Deliver","chain":"consumer","numPackets":6},"partialState":{"h":11,"t":66,"consumerPower":[17785,null,12016,null],"outstandingDowntime":[false,false,true,true]}},{"ix":105,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":106,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":12,"t":72,"consumerPower":[17785,null,12016,null],"outstandingDowntime":[false,false,true,true]}},{"ix":107,"action":{"kind":"Undelegate","val":1,"amt":2617},"partialState":{"h":10,"t":60,"tokens":[10860,17874,10356,1789],"delegation":[9860,16874,9356,789],"delegatorTokens":9999999932051}},{"ix":108,"action":{"kind":"Delegate","val":1,"amt":2632},"partialState":{"h":10,"t":60,"tokens":[10860,20506,10356,1789],"delegation":[9860,19506,9356,789],"delegatorTokens":9999999929419}},{"ix":109,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":110,"action":{"kind":"Delegate","val":2,"amt":2124},"partialState":{"h":10,"t":60,"tokens":[10860,20506,12480,1789],"delegation":[9860,19506,11480,789],"delegatorTokens":9999999927295}},{"ix":111,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":112,"action":{"kind":"Undelegate","val":3,"amt":4708},"partialState":{"h":10,"t":60,"tokens":[10860,20506,12480,1789],"delegation":[9860,19506,11480,789],"delegatorTokens":9999999927295}},{"ix":113,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":13,"t":78,"consumerPower":[17785,null,12016,null],"outstandingDowntime":[false,false,true,true]}},{"ix":114,"action":{"kind":"Delegate","val":0,"amt":3674},"partialState":{"h":10,"t":60,"tokens":[14534,20506,12480,1789],"delegation":[13534,19506,11480,789],"delegatorTokens":9999999923621}},{"ix":115,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":116,"action":{"kind":"Deliver","chain":"provider","numPackets":3},"partialState":{"h":10,"t":60,"tokens":[14534,20506,12480,1789],"delegation":[13534,19506,11480,789],"delegatorTokens":9999999923621,"jailed":[null,1000000000000017,null,null],"status":["bonded","unbonding","bonded","unbonded"]}},{"ix":117,"action":{"kind":"Delegate","val":0,"amt":1841},"partialState":{"h":10,"t":60,"tokens":[16375,20506,12480,1789],"delegation":[15375,19506,11480,789],"delegatorTokens":9999999921780}},{"ix":118,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":11,"t":66,"tokens":[16375,20506,12480,1789],"delegation":[15375,19506,11480,789],"delegatorTokens":9999999921780,"jailed":[null,1000000000000017,null,null],"status":["bonded","unbonding","bonded","unbonded"]}},{"ix":119,"action":{"kind":"Deliver","chain":"consumer","numPackets":1},"partialState":{"h":13,"t":78,"consumerPower":[17785,null,12016,null],"outstandingDowntime":[false,false,true,true]}},{"ix":120,"action":{"kind":"Delegate","val":1,"amt":2152},"partialState":{"h":11,"t":66,"tokens":[16375,22658,12480,1789],"delegation":[15375,21658,11480,789],"delegatorTokens":9999999919628}},{"ix":121,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":14,"t":84,"consumerPower":[17785,null,12016,null],"outstandingDowntime":[false,false,true,true]}},{"ix":122,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":123,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":124,"action":{"kind":"Delegate","val":2,"amt":1581},"partialState":{"h":11,"t":66,"tokens":[16375,22658,14061,1789],"delegation":[15375,21658,13061,789],"delegatorTokens":9999999918047}},{"ix":125,"action":{"kind":"Undelegate","val":0,"amt":4094},"partialState":{"h":11,"t":66,"tokens":[12281,22658,14061,1789],"delegation":[11281,21658,13061,789],"delegatorTokens":9999999918047}},{"ix":126,"action":{"kind":"Undelegate","val":3,"amt":2023},"partialState":{"h":11,"t":66,"tokens":[12281,22658,14061,1789],"delegation":[11281,21658,13061,789],"delegatorTokens":9999999918047}},{"ix":127,"action":{"kind":"Delegate","val":2,"amt":2975},"partialState":{"h":11,"t":66,"tokens":[12281,22658,17036,1789],"delegation":[11281,21658,16036,789],"delegatorTokens":9999999915072}},{"ix":128,"action":{"kind":"Delegate","val":3,"amt":3937},"partialState":{"h":11,"t":66,"tokens":[12281,22658,17036,5726],"delegation":[11281,21658,16036,4726],"delegatorTokens":9999999911135}},{"ix":129,"action":{"kind":"Delegate","val":3,"amt":4957},"partialState":{"h":11,"t":66,"tokens":[12281,22658,17036,10683],"delegation":[11281,21658,16036,9683],"delegatorTokens":9999999906178}},{"ix":130,"action":{"kind":"Deliver","chain":"provider","numPackets":1},"partialState":{"h":11,"t":66,"tokens":[12281,22658,17036,10683],"delegation":[11281,21658,16036,9683],"delegatorTokens":9999999906178,"jailed":[null,1000000000000017,null,null],"status":["bonded","unbonding","bonded","unbonded"]}},{"ix":131,"action":{"kind":"Undelegate","val":0,"amt":2816},"partialState":{"h":11,"t":66,"tokens":[9465,22658,17036,10683],"delegation":[8465,21658,16036,9683],"delegatorTokens":9999999906178}},{"ix":132,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":133,"action":{"kind":"Undelegate","val":0,"amt":2427},"partialState":{"h":11,"t":66,"tokens":[7038,22658,17036,10683],"delegation":[6038,21658,16036,9683],"delegatorTokens":9999999906178}},{"ix":134,"action":{"kind":"Undelegate","val":2,"amt":3148},"partialState":{"h":11,"t":66,"tokens":[7038,22658,13888,10683],"delegation":[6038,21658,12888,9683],"delegatorTokens":9999999906178}},{"ix":135,"action":{"kind":"Delegate","val":0,"amt":4712},"partialState":{"h":11,"t":66,"tokens":[11750,22658,13888,10683],"delegation":[10750,21658,12888,9683],"delegatorTokens":9999999901466}},{"ix":136,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":137,"action":{"kind":"Deliver","chain":"provider","numPackets":5},"partialState":{"h":11,"t":66,"tokens":[11750,22658,13888,10683],"delegation":[10750,21658,12888,9683],"delegatorTokens":9999999901466,"jailed":[null,1000000000000017,null,null],"status":["bonded","unbonding","bonded","unbonded"]}},{"ix":138,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":139,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":12,"t":72,"tokens":[11750,22658,13888,10683],"delegation":[10750,21658,12888,9683],"delegatorTokens":9999999901466,"jailed":[null,1000000000000017,null,null],"status":["bonded","unbonding","bonded","unbonded"]}},{"ix":140,"action":{"kind":"Deliver","chain":"consumer","numPackets":3},"partialState":{"h":14,"t":84,"consumerPower":[17785,null,12016,null],"outstandingDowntime":[false,false,true,true]}},{"ix":141,"action":{"kind":"Delegate","val":0,"amt":3439},"partialState":{"h":12,"t":72,"tokens":[15189,22658,13888,10683],"delegation":[14189,21658,12888,9683],"delegatorTokens":9999999898027}},{"ix":142,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":13,"t":78,"tokens":[15189,22658,13888,10683],"delegation":[14189,21658,12888,9683],"delegatorTokens":9999999898027,"jailed":[null,1000000000000017,null,null],"status":["bonded","unbonding","bonded","unbonded"]}},{"ix":143,"action":{"kind":"Undelegate","val":1,"amt":4248},"partialState":{"h":13,"t":78,"tokens":[15189,18410,13888,10683],"delegation":[14189,17410,12888,9683],"delegatorTokens":9999999898027}},{"ix":144,"action":{"kind":"Undelegate","val":3,"amt":4606},"partialState":{"h":13,"t":78,"tokens":[15189,18410,13888,6077],"delegation":[14189,17410,12888,5077],"delegatorTokens":9999999898027}},{"ix":145,"action":{"kind":"Undelegate","val":0,"amt":1194},"partialState":{"h":13,"t":78,"tokens":[13995,18410,13888,6077],"delegation":[12995,17410,12888,5077],"delegatorTokens":9999999898027}},{"ix":146,"action":{"kind":"Delegate","val":1,"amt":3356},"partialState":{"h":13,"t":78,"tokens":[13995,21766,13888,6077],"delegation":[12995,20766,12888,5077],"delegatorTokens":9999999894671}},{"ix":147,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":148,"action":{"kind":"Delegate","val":1,"amt":3268},"partialState":{"h":13,"t":78,"tokens":[13995,25034,13888,6077],"delegation":[12995,24034,12888,5077],"delegatorTokens":9999999891403}},{"ix":149,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":15,"t":90,"consumerPower":[16375,null,12480,null],"outstandingDowntime":[false,false,true,true]}},{"ix":150,"action":{"kind":"Deliver","chain":"consumer","numPackets":3},"partialState":{"h":15,"t":90,"consumerPower":[16375,null,12480,null],"outstandingDowntime":[false,false,true,true]}},{"ix":151,"action":{"kind":"Deliver","chain":"consumer","numPackets":6},"partialState":{"h":15,"t":90,"consumerPower":[16375,null,12480,null],"outstandingDowntime":[false,false,true,true]}},{"ix":152,"action":{"kind":"Deliver","chain":"consumer","numPackets":3},"partialState":{"h":15,"t":90,"consumerPower":[16375,null,12480,null],"outstandingDowntime":[false,false,true,true]}},{"ix":153,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":16,"t":96,"consumerPower":[11750,null,13888,null],"outstandingDowntime":[false,false,true,true]}},{"ix":154,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":17,"t":102,"consumerPower":[11750,null,13888,null],"outstandingDowntime":[false,false,true,true]}},{"ix":155,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":156,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":18,"t":108,"consumerPower":[11750,null,13888,null],"outstandingDowntime":[false,false,true,true]}},{"ix":157,"action":{"kind":"Undelegate","val":2,"amt":4893},"partialState":{"h":13,"t":78,"tokens":[13995,25034,8995,6077],"delegation":[12995,24034,7995,5077],"delegatorTokens":9999999891403}},{"ix":158,"action":{"kind":"Undelegate","val":2,"amt":1247},"partialState":{"h":13,"t":78,"tokens":[13995,25034,7748,6077],"delegation":[12995,24034,6748,5077],"delegatorTokens":9999999891403}},{"ix":159,"action":{"kind":"Undelegate","val":3,"amt":1891},"partialState":{"h":13,"t":78,"tokens":[13995,25034,7748,4186],"delegation":[12995,24034,6748,3186],"delegatorTokens":9999999891403}},{"ix":160,"action":{"kind":"Delegate","val":0,"amt":3166},"partialState":{"h":13,"t":78,"tokens":[17161,25034,7748,4186],"delegation":[16161,24034,6748,3186],"delegatorTokens":9999999888237}},{"ix":161,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":19,"t":114,"consumerPower":[11750,null,13888,null],"outstandingDowntime":[false,false,true,true]}},{"ix":162,"action":{"kind":"Delegate","val":1,"amt":2984},"partialState":{"h":13,"t":78,"tokens":[17161,28018,7748,4186],"delegation":[16161,27018,6748,3186],"delegatorTokens":9999999885253}},{"ix":163,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":20,"t":120,"consumerPower":[11750,null,13888,null],"outstandingDowntime":[false,false,true,true]}},{"ix":164,"action":{"kind":"Delegate","val":3,"amt":4772},"partialState":{"h":13,"t":78,"tokens":[17161,28018,7748,8958],"delegation":[16161,27018,6748,7958],"delegatorTokens":9999999880481}},{"ix":165,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":14,"t":84,"tokens":[17161,28018,7748,8958],"delegation":[16161,27018,6748,7958],"delegatorTokens":9999999880481,"jailed":[null,1000000000000017,null,null],"status":["bonded","unbonding","unbonding","bonded"]}},{"ix":166,"action":{"kind":"Deliver","chain":"provider","numPackets":2},"partialState":{"h":14,"t":84,"tokens":[17161,28018,7748,8958],"delegation":[16161,27018,6748,7958],"delegatorTokens":9999999880481,"jailed":[null,1000000000000017,null,null],"status":["bonded","unbonding","unbonding","bonded"]}},{"ix":167,"action":{"kind":"Delegate","val":3,"amt":4095},"partialState":{"h":14,"t":84,"tokens":[17161,28018,7748,13053],"delegation":[16161,27018,6748,12053],"delegatorTokens":9999999876386}},{"ix":168,"action":{"kind":"Delegate","val":3,"amt":4583},"partialState":{"h":14,"t":84,"tokens":[17161,28018,7748,17636],"delegation":[16161,27018,6748,16636],"delegatorTokens":9999999871803}},{"ix":169,"action":{"kind":"Delegate","val":1,"amt":2808},"partialState":{"h":14,"t":84,"tokens":[17161,30826,7748,17636],"delegation":[16161,29826,6748,16636],"delegatorTokens":9999999868995}},{"ix":170,"action":{"kind":"Undelegate","val":3,"amt":3738},"partialState":{"h":14,"t":84,"tokens":[17161,30826,7748,13898],"delegation":[16161,29826,6748,12898],"delegatorTokens":9999999868995}},{"ix":171,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":15,"t":90,"tokens":[17161,30826,7748,13898],"delegation":[16161,29826,6748,12898],"delegatorTokens":9999999868995,"jailed":[null,1000000000000017,null,null],"status":["bonded","unbonding","unbonding","bonded"]}},{"ix":172,"action":{"kind":"Deliver","chain":"provider","numPackets":2},"partialState":{"h":15,"t":90,"tokens":[17161,30826,7748,13898],"delegation":[16161,29826,6748,12898],"delegatorTokens":9999999868995,"jailed":[null,1000000000000017,null,null],"status":["bonded","unbonding","unbonding","bonded"]}},{"ix":173,"action":{"kind":"Delegate","val":1,"amt":2028},"partialState":{"h":15,"t":90,"tokens":[17161,32854,7748,13898],"delegation":[16161,31854,6748,12898],"delegatorTokens":9999999866967}},{"ix":174,"action":{"kind":"Delegate","val":3,"amt":1059},"partialState":{"h":15,"t":90,"tokens":[17161,32854,7748,14957],"delegation":[16161,31854,6748,13957],"delegatorTokens":9999999865908}},{"ix":175,"action":{"kind":"Delegate","val":2,"amt":4365},"partialState":{"h":15,"t":90,"tokens":[17161,32854,12113,14957],"delegation":[16161,31854,11113,13957],"delegatorTokens":9999999861543}},{"ix":176,"action":{"kind":"Deliver","chain":"provider","numPackets":5},"partialState":{"h":15,"t":90,"tokens":[17161,32854,12113,14957],"delegation":[16161,31854,11113,13957],"delegatorTokens":9999999861543,"jailed":[null,1000000000000017,null,null],"status":["bonded","unbonding","unbonding","bonded"]}},{"ix":177,"action":{"kind":"Undelegate","val":3,"amt":1538},"partialState":{"h":15,"t":90,"tokens":[17161,32854,12113,13419],"delegation":[16161,31854,11113,12419],"delegatorTokens":9999999861543}},{"ix":178,"action":{"kind":"Delegate","val":1,"amt":3771},"partialState":{"h":15,"t":90,"tokens":[17161,36625,12113,13419],"delegation":[16161,35625,11113,12419],"delegatorTokens":9999999857772}},{"ix":179,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":180,"action":{"kind":"Deliver","chain":"provider","numPackets":6},"partialState":{"h":15,"t":90,"tokens":[17161,36625,12113,13419],"delegation":[16161,35625,11113,12419],"delegatorTokens":9999999857772,"jailed":[null,1000000000000017,null,null],"status":["bonded","unbonding","unbonding","bonded"]}},{"ix":181,"action":{"kind":"Deliver","chain":"consumer","numPackets":1},"partialState":{"h":20,"t":120,"consumerPower":[11750,null,13888,null],"outstandingDowntime":[false,false,true,true]}},{"ix":182,"action":{"kind":"Undelegate","val":3,"amt":2033},"partialState":{"h":15,"t":90,"tokens":[17161,36625,12113,11386],"delegation":[16161,35625,11113,10386],"delegatorTokens":9999999857772}},{"ix":183,"action":{"kind":"Deliver","chain":"consumer","numPackets":1},"partialState":{"h":20,"t":120,"consumerPower":[11750,null,13888,null],"outstandingDowntime":[false,false,true,true]}},{"ix":184,"action":{"kind":"Deliver","chain":"consumer","numPackets":4},"partialState":{"h":20,"t":120,"consumerPower":[11750,null,13888,null],"outstandingDowntime":[false,false,true,true]}},{"ix":185,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":21,"t":126,"consumerPower":[17161,null,null,8958],"outstandingDowntime":[false,false,true,true]}},{"ix":186,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":187,"action":{"kind":"Deliver","chain":"consumer","numPackets":1},"partialState":{"h":21,"t":126,"consumerPower":[17161,null,null,8958],"outstandingDowntime":[false,false,true,true]}},{"ix":188,"action":{"kind":"Delegate","val":3,"amt":2478},"partialState":{"h":15,"t":90,"tokens":[17161,36625,12113,13864],"delegation":[16161,35625,11113,12864],"delegatorTokens":9999999855294}},{"ix":189,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":22,"t":132,"consumerPower":[17161,null,null,8958],"outstandingDowntime":[false,false,true,true]}},{"ix":190,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":191,"action":{"kind":"Deliver","chain":"consumer","numPackets":6},"partialState":{"h":22,"t":132,"consumerPower":[17161,null,null,8958],"outstandingDowntime":[false,false,true,true]}},{"ix":192,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":16,"t":96,"tokens":[17161,36625,12113,13864],"delegation":[16161,35625,11113,12864],"delegatorTokens":9999999857423,"jailed":[null,1000000000000017,null,null],"status":["bonded","unbonding","unbonding","bonded"]}},{"ix":193,"action":{"kind":"Undelegate","val":2,"amt":1863},"partialState":{"h":16,"t":96,"tokens":[17161,36625,10250,13864],"delegation":[16161,35625,9250,12864],"delegatorTokens":9999999857423}},{"ix":194,"action":{"kind":"Delegate","val":2,"amt":1823},"partialState":{"h":16,"t":96,"tokens":[17161,36625,12073,13864],"delegation":[16161,35625,11073,12864],"delegatorTokens":9999999855600}},{"ix":195,"action":{"kind":"Delegate","val":0,"amt":2505},"partialState":{"h":16,"t":96,"tokens":[19666,36625,12073,13864],"delegation":[18666,35625,11073,12864],"delegatorTokens":9999999853095}},{"ix":196,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":17,"t":102,"tokens":[19666,36625,12073,13864],"delegation":[18666,35625,11073,12864],"delegatorTokens":9999999853095,"jailed":[null,1000000000000017,null,null],"status":["bonded","unbonded","unbonding","bonded"]}},{"ix":197,"action":{"kind":"Undelegate","val":2,"amt":3215},"partialState":{"h":17,"t":102,"tokens":[19666,36625,8858,13864],"delegation":[18666,35625,7858,12864],"delegatorTokens":9999999853095}},{"ix":198,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":199,"action":{"kind":"Undelegate","val":3,"amt":2244},"partialState":{"h":17,"t":102,"tokens":[19666,36625,8858,11620],"delegation":[18666,35625,7858,10620],"delegatorTokens":9999999853095}}],"events":["send_downtime_slash_request","send_downtime_slash_request","send_double_sign_slash_request","send_vsc_without_downtime_ack","insufficient_shares","send_vsc_without_downtime_ack","send_downtime_slash_request","receive_double_sign_slash_request","receive_downtime_slash_request","jail","receive_slash_request_unbonded","send_vsc_with_downtime_ack","send_vsc_without_downtime_ack","receive_downtime_slash_ack","insufficient_shares","consumer_del_val","consumer_update_val","consumer_add_val","insufficient_shares","receive_slash_request_unbonded","send_vsc_without_downtime_ack","send_vsc_without_downtime_ack","send_vsc_without_downtime_ack","consumer_update_val","consumer_update_val","insufficient_shares","consumer_send_maturation","consumer_send_maturation","consumer_send_maturation","consumer_send_maturation","send_vsc_without_downtime_ack","insufficient_shares","set_undel_hold_false","set_unval_hold_false","send_vsc_without_downtime_ack","send_vsc_without_downtime_ack","consumer_update_val","consumer_update_val","consumer_update_val","consumer_update_val","consumer_send_maturation","consumer_send_maturation","consumer_send_maturation","more_than_one_third_val_power_change","send_vsc_without_downtime_ack","send_vsc_without_downtime_ack","consumer_update_val","consumer_del_val","consumer_add_val","complete_undel_in_endblock","send_vsc_without_downtime_ack","complete_unval_in_endblock","send_vsc_without_downtime_ack"]},{"meta":{"commit":"7ffd0c04e4205cbc9caf212abfe6c59ee43153bf"},"constants":{"P":"provider","C":"consumer","UNBONDING_SECONDS_P":70,"UNBONDING_SECONDS_C":50,"TRUSTING_SECONDS":49,"NUM_VALIDATORS":4,"MAX_VALIDATORS":2,"SLASH_DOUBLESIGN":0,"SLASH_DOWNTIME":0,"JAIL_SECONDS":999999999999999,"BLOCK_SECONDS":6,"INITIAL_DELEGATOR_TOKENS":10000000000000,"DELEGATE_AMT_MIN":1000,"DELEGATE_AMT_MAX":5000,"UNDELEGATE_AMT_MIN":1000,"UNDELEGATE_AMT_MAX":5000,"ISDOWNTIME_PROBABILITY":0.5,"MAX_NUM_PACKETS_FOR_DELIVER":6},"actions":[{"ix":0,"action":{"kind":"Delegate","val":1,"amt":3702},"partialState":{"h":1,"t":6,"tokens":[5000,7702,3000,2000],"delegation":[4000,6702,2000,1000],"delegatorTokens":9999999996298}},{"ix":1,"action":{"kind":"Deliver","chain":"provider","numPackets":5},"partialState":{"h":1,"t":6,"tokens":[5000,7702,3000,2000],"delegation":[4000,6702,2000,1000],"delegatorTokens":9999999996298,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":2,"action":{"kind":"Undelegate","val":2,"amt":1518},"partialState":{"h":1,"t":6,"tokens":[5000,7702,1482,2000],"delegation":[4000,6702,482,1000],"delegatorTokens":9999999996298}},{"ix":3,"action":{"kind":"Undelegate","val":1,"amt":3832},"partialState":{"h":1,"t":6,"tokens":[5000,3870,1482,2000],"delegation":[4000,2870,482,1000],"delegatorTokens":9999999996298}},{"ix":4,"action":{"kind":"Undelegate","val":2,"amt":1455},"partialState":{"h":1,"t":6,"tokens":[5000,3870,1482,2000],"delegation":[4000,2870,482,1000],"delegatorTokens":9999999996298}},{"ix":5,"action":{"kind":"ConsumerSlash","val":0,"infractionHeight":0,"isDowntime":true},"partialState":{"h":1,"t":6,"outstandingDowntime":[true,false,false,false]}},{"ix":6,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":7,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":8,"action":{"kind":"Delegate","val":1,"amt":1138},"partialState":{"h":1,"t":6,"tokens":[5000,5008,1482,2000],"delegation":[4000,4008,482,1000],"delegatorTokens":9999999995160}},{"ix":9,"action":{"kind":"ConsumerSlash","val":2,"infractionHeight":0,"isDowntime":true},"partialState":{"h":1,"t":6,"outstandingDowntime":[true,false,true,false]}},{"ix":10,"action":{"kind":"ConsumerSlash","val":3,"infractionHeight":0,"isDowntime":true},"partialState":{"h":1,"t":6,"outstandingDowntime":[true,false,true,true]}},{"ix":11,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":12,"action":{"kind":"Delegate","val":0,"amt":1126},"partialState":{"h":1,"t":6,"tokens":[6126,5008,1482,2000],"delegation":[5126,4008,482,1000],"delegatorTokens":9999999994034}},{"ix":13,"action":{"kind":"Undelegate","val":3,"amt":3188},"partialState":{"h":1,"t":6,"tokens":[6126,5008,1482,2000],"delegation":[5126,4008,482,1000],"delegatorTokens":9999999994034}},{"ix":14,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":2,"t":12,"tokens":[6126,5008,1482,2000],"delegation":[5126,4008,482,1000],"delegatorTokens":9999999994034,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":15,"action":{"kind":"Deliver","chain":"consumer","numPackets":3},"partialState":{"h":1,"t":6,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[true,false,true,true]}},{"ix":16,"action":{"kind":"Undelegate","val":1,"amt":1858},"partialState":{"h":2,"t":12,"tokens":[6126,3150,1482,2000],"delegation":[5126,2150,482,1000],"delegatorTokens":9999999994034}},{"ix":17,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":18,"action":{"kind":"Undelegate","val":2,"amt":2547},"partialState":{"h":2,"t":12,"tokens":[6126,3150,1482,2000],"delegation":[5126,2150,482,1000],"delegatorTokens":9999999994034}},{"ix":19,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":2,"t":12,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[true,false,true,true]}},{"ix":20,"action":{"kind":"Delegate","val":1,"amt":3199},"partialState":{"h":2,"t":12,"tokens":[6126,6349,1482,2000],"delegation":[5126,5349,482,1000],"delegatorTokens":9999999990835}},{"ix":21,"action":{"kind":"Delegate","val":1,"amt":2230},"partialState":{"h":2,"t":12,"tokens":[6126,8579,1482,2000],"delegation":[5126,7579,482,1000],"delegatorTokens":9999999988605}},{"ix":22,"action":{"kind":"Deliver","chain":"consumer","numPackets":1},"partialState":{"h":2,"t":12,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[true,false,true,true]}},{"ix":23,"action":{"kind":"Delegate","val":1,"amt":4551},"partialState":{"h":2,"t":12,"tokens":[6126,13130,1482,2000],"delegation":[5126,12130,482,1000],"delegatorTokens":9999999984054}},{"ix":24,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":25,"action":{"kind":"Delegate","val":2,"amt":2224},"partialState":{"h":2,"t":12,"tokens":[6126,13130,3706,2000],"delegation":[5126,12130,2706,1000],"delegatorTokens":9999999981830}},{"ix":26,"action":{"kind":"Undelegate","val":3,"amt":1545},"partialState":{"h":2,"t":12,"tokens":[6126,13130,3706,2000],"delegation":[5126,12130,2706,1000],"delegatorTokens":9999999981830}},{"ix":27,"action":{"kind":"Delegate","val":0,"amt":2548},"partialState":{"h":2,"t":12,"tokens":[8674,13130,3706,2000],"delegation":[7674,12130,2706,1000],"delegatorTokens":9999999979282}},{"ix":28,"action":{"kind":"Deliver","chain":"consumer","numPackets":6},"partialState":{"h":2,"t":12,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[true,false,true,true]}},{"ix":29,"action":{"kind":"Deliver","chain":"provider","numPackets":6},"partialState":{"h":2,"t":12,"tokens":[8674,13130,3706,2000],"delegation":[7674,12130,2706,1000],"delegatorTokens":9999999979282,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":30,"action":{"kind":"Delegate","val":1,"amt":4855},"partialState":{"h":2,"t":12,"tokens":[8674,17985,3706,2000],"delegation":[7674,16985,2706,1000],"delegatorTokens":9999999974427}},{"ix":31,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":32,"action":{"kind":"Deliver","chain":"consumer","numPackets":3},"partialState":{"h":2,"t":12,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[true,false,true,true]}},{"ix":33,"action":{"kind":"Deliver","chain":"consumer","numPackets":1},"partialState":{"h":2,"t":12,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[true,false,true,true]}},{"ix":34,"action":{"kind":"Undelegate","val":3,"amt":4799},"partialState":{"h":2,"t":12,"tokens":[8674,17985,3706,2000],"delegation":[7674,16985,2706,1000],"delegatorTokens":9999999974427}},{"ix":35,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":3,"t":18,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[true,false,true,true]}},{"ix":36,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":3,"t":18,"tokens":[8674,17985,3706,2000],"delegation":[7674,16985,2706,1000],"delegatorTokens":9999999974427,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":37,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":4,"t":24,"tokens":[8674,17985,3706,2000],"delegation":[7674,16985,2706,1000],"delegatorTokens":9999999974427,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":38,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":39,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":40,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":41,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":42,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":43,"action":{"kind":"Undelegate","val":2,"amt":3004},"partialState":{"h":4,"t":24,"tokens":[8674,17985,3706,2000],"delegation":[7674,16985,2706,1000],"delegatorTokens":9999999974427}},{"ix":44,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":4,"t":24,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[true,false,true,true]}},{"ix":45,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":5,"t":30,"tokens":[8674,17985,3706,2000],"delegation":[7674,16985,2706,1000],"delegatorTokens":9999999974427,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":46,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":6,"t":36,"tokens":[8674,17985,3706,2000],"delegation":[7674,16985,2706,1000],"delegatorTokens":9999999974427,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":47,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":7,"t":42,"tokens":[8674,17985,3706,2000],"delegation":[7674,16985,2706,1000],"delegatorTokens":9999999974427,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":48,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":8,"t":48,"tokens":[8674,17985,3706,2000],"delegation":[7674,16985,2706,1000],"delegatorTokens":9999999974427,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":49,"action":{"kind":"Deliver","chain":"provider","numPackets":3},"partialState":{"h":8,"t":48,"tokens":[8674,17985,3706,2000],"delegation":[7674,16985,2706,1000],"delegatorTokens":9999999974427,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":50,"action":{"kind":"Undelegate","val":3,"amt":1276},"partialState":{"h":8,"t":48,"tokens":[8674,17985,3706,2000],"delegation":[7674,16985,2706,1000],"delegatorTokens":9999999974427}},{"ix":51,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":5,"t":30,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[true,false,true,true]}},{"ix":52,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":53,"action":{"kind":"Delegate","val":3,"amt":3464},"partialState":{"h":8,"t":48,"tokens":[8674,17985,3706,5464],"delegation":[7674,16985,2706,4464],"delegatorTokens":9999999970963}},{"ix":54,"action":{"kind":"Deliver","chain":"consumer","numPackets":5},"partialState":{"h":5,"t":30,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[true,false,true,true]}},{"ix":55,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":6,"t":36,"consumerPower":[8674,17985,null,null],"outstandingDowntime":[true,false,true,true]}},{"ix":56,"action":{"kind":"Deliver","chain":"provider","numPackets":3},"partialState":{"h":8,"t":48,"tokens":[8674,17985,3706,5464],"delegation":[7674,16985,2706,4464],"delegatorTokens":9999999970963,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":57,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":58,"action":{"kind":"Undelegate","val":2,"amt":1356},"partialState":{"h":8,"t":48,"tokens":[8674,17985,2350,5464],"delegation":[7674,16985,1350,4464],"delegatorTokens":9999999970963}},{"ix":59,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":60,"action":{"kind":"Deliver","chain":"provider","numPackets":1},"partialState":{"h":8,"t":48,"tokens":[8674,17985,2350,5464],"delegation":[7674,16985,1350,4464],"delegatorTokens":9999999970963,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":61,"action":{"kind":"Deliver","chain":"consumer","numPackets":6},"partialState":{"h":6,"t":36,"consumerPower":[8674,17985,null,null],"outstandingDowntime":[true,false,true,true]}},{"ix":62,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":63,"action":{"kind":"Undelegate","val":2,"amt":4612},"partialState":{"h":8,"t":48,"tokens":[8674,17985,2350,5464],"delegation":[7674,16985,1350,4464],"delegatorTokens":9999999970963}},{"ix":64,"action":{"kind":"Undelegate","val":0,"amt":1695},"partialState":{"h":8,"t":48,"tokens":[6979,17985,2350,5464],"delegation":[5979,16985,1350,4464],"delegatorTokens":9999999970963}},{"ix":65,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":9,"t":54,"tokens":[6979,17985,2350,5464],"delegation":[5979,16985,1350,4464],"delegatorTokens":9999999970963,"jailed":[1000000000000047,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":66,"action":{"kind":"Undelegate","val":3,"amt":4676},"partialState":{"h":9,"t":54,"tokens":[6979,17985,2350,5464],"delegation":[5979,16985,1350,4464],"delegatorTokens":9999999970963}},{"ix":67,"action":{"kind":"Deliver","chain":"consumer","numPackets":1},"partialState":{"h":6,"t":36,"consumerPower":[8674,17985,null,null],"outstandingDowntime":[true,false,true,true]}},{"ix":68,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":7,"t":42,"consumerPower":[8674,17985,null,null],"outstandingDowntime":[true,false,true,true]}},{"ix":69,"action":{"kind":"Deliver","chain":"provider","numPackets":1},"partialState":{"h":9,"t":54,"tokens":[6979,17985,2350,5464],"delegation":[5979,16985,1350,4464],"delegatorTokens":9999999970963,"jailed":[1000000000000047,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":70,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":8,"t":48,"consumerPower":[8674,17985,null,null],"outstandingDowntime":[true,false,true,true]}},{"ix":71,"action":{"kind":"Undelegate","val":0,"amt":3373},"partialState":{"h":9,"t":54,"tokens":[3606,17985,2350,5464],"delegation":[2606,16985,1350,4464],"delegatorTokens":9999999970963}},{"ix":72,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":10,"t":60,"tokens":[3606,17985,2350,5464],"delegation":[2606,16985,1350,4464],"delegatorTokens":9999999970963,"jailed":[1000000000000047,null,null,null],"status":["unbonding","bonded","unbonded","bonded"]}},{"ix":73,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":11,"t":66,"tokens":[3606,17985,2350,5464],"delegation":[2606,16985,1350,4464],"delegatorTokens":9999999970963,"jailed":[1000000000000047,null,null,null],"status":["unbonding","bonded","unbonded","bonded"]}},{"ix":74,"action":{"kind":"Undelegate","val":2,"amt":1782},"partialState":{"h":11,"t":66,"tokens":[3606,17985,2350,5464],"delegation":[2606,16985,1350,4464],"delegatorTokens":9999999970963}},{"ix":75,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":12,"t":72,"tokens":[3606,17985,2350,5464],"delegation":[2606,16985,1350,4464],"delegatorTokens":9999999970963,"jailed":[1000000000000047,null,null,null],"status":["unbonding","bonded","unbonded","bonded"]}},{"ix":76,"action":{"kind":"Undelegate","val":0,"amt":4672},"partialState":{"h":12,"t":72,"tokens":[3606,17985,2350,5464],"delegation":[2606,16985,1350,4464],"delegatorTokens":9999999970963}},{"ix":77,"action":{"kind":"Undelegate","val":1,"amt":2451},"partialState":{"h":12,"t":72,"tokens":[3606,15534,2350,5464],"delegation":[2606,14534,1350,4464],"delegatorTokens":9999999970963}},{"ix":78,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":79,"action":{"kind":"Delegate","val":3,"amt":4767},"partialState":{"h":12,"t":72,"tokens":[3606,15534,2350,10231],"delegation":[2606,14534,1350,9231],"delegatorTokens":9999999966196}},{"ix":80,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":13,"t":78,"tokens":[3606,15534,2350,10231],"delegation":[2606,14534,1350,9231],"delegatorTokens":9999999966196,"jailed":[1000000000000047,null,null,null],"status":["unbonding","bonded","unbonded","bonded"]}},{"ix":81,"action":{"kind":"Delegate","val":2,"amt":1150},"partialState":{"h":13,"t":78,"tokens":[3606,15534,3500,10231],"delegation":[2606,14534,2500,9231],"delegatorTokens":9999999965046}},{"ix":82,"action":{"kind":"Deliver","chain":"consumer","numPackets":3},"partialState":{"h":8,"t":48,"consumerPower":[8674,17985,null,null],"outstandingDowntime":[false,false,true,true]}},{"ix":83,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":84,"action":{"kind":"Delegate","val":1,"amt":1970},"partialState":{"h":13,"t":78,"tokens":[3606,17504,3500,10231],"delegation":[2606,16504,2500,9231],"delegatorTokens":9999999963076}},{"ix":85,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":9,"t":54,"consumerPower":[null,17985,null,5464],"outstandingDowntime":[false,false,true,true]}},{"ix":86,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":87,"action":{"kind":"Undelegate","val":1,"amt":4111},"partialState":{"h":13,"t":78,"tokens":[3606,13393,3500,10231],"delegation":[2606,12393,2500,9231],"delegatorTokens":9999999963076}},{"ix":88,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":89,"action":{"kind":"Deliver","chain":"consumer","numPackets":5},"partialState":{"h":9,"t":54,"consumerPower":[null,17985,null,5464],"outstandingDowntime":[false,false,true,true]}},{"ix":90,"action":{"kind":"Deliver","chain":"consumer","numPackets":1},"partialState":{"h":9,"t":54,"consumerPower":[null,17985,null,5464],"outstandingDowntime":[false,false,true,true]}},{"ix":91,"action":{"kind":"Undelegate","val":2,"amt":4032},"partialState":{"h":13,"t":78,"tokens":[3606,13393,3500,10231],"delegation":[2606,12393,2500,9231],"delegatorTokens":9999999963076}},{"ix":92,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":10,"t":60,"consumerPower":[null,17985,null,5464],"outstandingDowntime":[false,false,true,true]}},{"ix":93,"action":{"kind":"Undelegate","val":1,"amt":1284},"partialState":{"h":13,"t":78,"tokens":[3606,12109,3500,10231],"delegation":[2606,11109,2500,9231],"delegatorTokens":9999999963076}},{"ix":94,"action":{"kind":"Deliver","chain":"provider","numPackets":6},"partialState":{"h":13,"t":78,"tokens":[3606,12109,3500,10231],"delegation":[2606,11109,2500,9231],"delegatorTokens":9999999963076,"jailed":[1000000000000047,null,null,null],"status":["unbonding","bonded","unbonded","bonded"]}},{"ix":95,"action":{"kind":"Delegate","val":0,"amt":2271},"partialState":{"h":13,"t":78,"tokens":[5877,12109,3500,10231],"delegation":[4877,11109,2500,9231],"delegatorTokens":9999999960805}},{"ix":96,"action":{"kind":"Undelegate","val":2,"amt":3897},"partialState":{"h":13,"t":78,"tokens":[5877,12109,3500,10231],"delegation":[4877,11109,2500,9231],"delegatorTokens":9999999960805}},{"ix":97,"action":{"kind":"Delegate","val":3,"amt":2385},"partialState":{"h":13,"t":78,"tokens":[5877,12109,3500,12616],"delegation":[4877,11109,2500,11616],"delegatorTokens":9999999958420}},{"ix":98,"action":{"kind":"Deliver","chain":"consumer","numPackets":3},"partialState":{"h":10,"t":60,"consumerPower":[null,17985,null,5464],"outstandingDowntime":[false,false,true,true]}},{"ix":99,"action":{"kind":"Deliver","chain":"provider","numPackets":4},"partialState":{"h":13,"t":78,"tokens":[5877,12109,3500,12616],"delegation":[4877,11109,2500,11616],"delegatorTokens":9999999958420,"jailed":[1000000000000047,null,null,null],"status":["unbonding","bonded","unbonded","bonded"]}},{"ix":100,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":101,"action":{"kind":"Undelegate","val":2,"amt":1058},"partialState":{"h":13,"t":78,"tokens":[5877,12109,2442,12616],"delegation":[4877,11109,1442,11616],"delegatorTokens":9999999958420}},{"ix":102,"action":{"kind":"Delegate","val":3,"amt":3984},"partialState":{"h":13,"t":78,"tokens":[5877,12109,2442,16600],"delegation":[4877,11109,1442,15600],"delegatorTokens":9999999954436}},{"ix":103,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":104,"action":{"kind":"Deliver","chain":"consumer","numPackets":2},"partialState":{"h":10,"t":60,"consumerPower":[null,17985,null,5464],"outstandingDowntime":[false,false,true,true]}},{"ix":105,"action":{"kind":"Delegate","val":1,"amt":1329},"partialState":{"h":13,"t":78,"tokens":[5877,13438,2442,16600],"delegation":[4877,12438,1442,15600],"delegatorTokens":9999999953107}},{"ix":106,"action":{"kind":"Undelegate","val":2,"amt":4149},"partialState":{"h":13,"t":78,"tokens":[5877,13438,2442,16600],"delegation":[4877,12438,1442,15600],"delegatorTokens":9999999953107}},{"ix":107,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":108,"action":{"kind":"Deliver","chain":"provider","numPackets":6},"partialState":{"h":13,"t":78,"tokens":[5877,13438,2442,16600],"delegation":[4877,12438,1442,15600],"delegatorTokens":9999999953107,"jailed":[1000000000000047,null,null,null],"status":["unbonding","bonded","unbonded","bonded"]}},{"ix":109,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":14,"t":84,"tokens":[5877,13438,2442,16600],"delegation":[4877,12438,1442,15600],"delegatorTokens":9999999953107,"jailed":[1000000000000047,null,null,null],"status":["unbonding","bonded","unbonded","bonded"]}},{"ix":110,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":11,"t":66,"consumerPower":[null,17985,null,5464],"outstandingDowntime":[false,false,true,true]}},{"ix":111,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":12,"t":72,"consumerPower":[null,17985,null,5464],"outstandingDowntime":[false,false,true,true]}},{"ix":112,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":13,"t":78,"consumerPower":[null,17985,null,5464],"outstandingDowntime":[false,false,true,true]}},{"ix":113,"action":{"kind":"Deliver","chain":"consumer","numPackets":4},"partialState":{"h":13,"t":78,"consumerPower":[null,17985,null,5464],"outstandingDowntime":[false,false,true,true]}},{"ix":114,"action":{"kind":"Undelegate","val":0,"amt":1659},"partialState":{"h":14,"t":84,"tokens":[4218,13438,2442,16600],"delegation":[3218,12438,1442,15600],"delegatorTokens":9999999953107}},{"ix":115,"action":{"kind":"Delegate","val":1,"amt":4623},"partialState":{"h":14,"t":84,"tokens":[4218,18061,2442,16600],"delegation":[3218,17061,1442,15600],"delegatorTokens":9999999948484}},{"ix":116,"action":{"kind":"Delegate","val":0,"amt":1400},"partialState":{"h":14,"t":84,"tokens":[5618,18061,2442,16600],"delegation":[4618,17061,1442,15600],"delegatorTokens":9999999947084}},{"ix":117,"action":{"kind":"Deliver","chain":"consumer","numPackets":2},"partialState":{"h":13,"t":78,"consumerPower":[null,17985,null,5464],"outstandingDowntime":[false,false,true,true]}},{"ix":118,"action":{"kind":"Deliver","chain":"provider","numPackets":1},"partialState":{"h":14,"t":84,"tokens":[5618,18061,2442,16600],"delegation":[4618,17061,1442,15600],"delegatorTokens":9999999947084,"jailed":[1000000000000047,null,null,null],"status":["unbonding","bonded","unbonded","bonded"]}},{"ix":119,"action":{"kind":"Deliver","chain":"provider","numPackets":4},"partialState":{"h":14,"t":84,"tokens":[5618,18061,2442,16600],"delegation":[4618,17061,1442,15600],"delegatorTokens":9999999947084,"jailed":[1000000000000047,null,null,null],"status":["unbonding","bonded","unbonded","bonded"]}},{"ix":120,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":15,"t":90,"tokens":[5618,18061,2442,16600],"delegation":[4618,17061,1442,15600],"delegatorTokens":9999999947084,"jailed":[1000000000000047,null,null,null],"status":["unbonding","bonded","unbonded","bonded"]}},{"ix":121,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":122,"action":{"kind":"Undelegate","val":1,"amt":1772},"partialState":{"h":15,"t":90,"tokens":[5618,16289,2442,16600],"delegation":[4618,15289,1442,15600],"delegatorTokens":9999999947084}},{"ix":123,"action":{"kind":"Delegate","val":0,"amt":1666},"partialState":{"h":15,"t":90,"tokens":[7284,16289,2442,16600],"delegation":[6284,15289,1442,15600],"delegatorTokens":9999999945418}},{"ix":124,"action":{"kind":"Deliver","chain":"consumer","numPackets":1},"partialState":{"h":13,"t":78,"consumerPower":[null,17985,null,5464],"outstandingDowntime":[false,false,true,true]}},{"ix":125,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":126,"action":{"kind":"Delegate","val":2,"amt":3743},"partialState":{"h":15,"t":90,"tokens":[7284,16289,6185,16600],"delegation":[6284,15289,5185,15600],"delegatorTokens":9999999941675}},{"ix":127,"action":{"kind":"Undelegate","val":2,"amt":4108},"partialState":{"h":15,"t":90,"tokens":[7284,16289,2077,16600],"delegation":[6284,15289,1077,15600],"delegatorTokens":9999999941675}},{"ix":128,"action":{"kind":"Undelegate","val":3,"amt":3420},"partialState":{"h":15,"t":90,"tokens":[7284,16289,2077,13180],"delegation":[6284,15289,1077,12180],"delegatorTokens":9999999941675}},{"ix":129,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":14,"t":84,"consumerPower":[null,13438,null,16600],"outstandingDowntime":[false,false,true,true]}},{"ix":130,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":131,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":132,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":133,"action":{"kind":"Delegate","val":0,"amt":1137},"partialState":{"h":15,"t":90,"tokens":[8421,16289,2077,13180],"delegation":[7421,15289,1077,12180],"delegatorTokens":9999999940538}},{"ix":134,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":135,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":136,"action":{"kind":"Deliver","chain":"provider","numPackets":5},"partialState":{"h":15,"t":90,"tokens":[8421,16289,2077,13180],"delegation":[7421,15289,1077,12180],"delegatorTokens":9999999940538,"jailed":[1000000000000047,null,null,null],"status":["unbonding","bonded","unbonded","bonded"]}},{"ix":137,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":15,"t":90,"consumerPower":[null,13438,null,16600],"outstandingDowntime":[false,false,true,true]}},{"ix":138,"action":{"kind":"Delegate","val":2,"amt":4119},"partialState":{"h":15,"t":90,"tokens":[8421,16289,6196,13180],"delegation":[7421,15289,5196,12180],"delegatorTokens":9999999936419}},{"ix":139,"action":{"kind":"Undelegate","val":0,"amt":2397},"partialState":{"h":15,"t":90,"tokens":[6024,16289,6196,13180],"delegation":[5024,15289,5196,12180],"delegatorTokens":9999999936419}},{"ix":140,"action":{"kind":"Undelegate","val":2,"amt":3007},"partialState":{"h":15,"t":90,"tokens":[6024,16289,3189,13180],"delegation":[5024,15289,2189,12180],"delegatorTokens":9999999936419}},{"ix":141,"action":{"kind":"Delegate","val":3,"amt":4208},"partialState":{"h":15,"t":90,"tokens":[6024,16289,3189,17388],"delegation":[5024,15289,2189,16388],"delegatorTokens":9999999932211}},{"ix":142,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":143,"action":{"kind":"Undelegate","val":2,"amt":1781},"partialState":{"h":15,"t":90,"tokens":[6024,16289,1408,17388],"delegation":[5024,15289,408,16388],"delegatorTokens":9999999932211}},{"ix":144,"action":{"kind":"Deliver","chain":"provider","numPackets":5},"partialState":{"h":15,"t":90,"tokens":[6024,16289,1408,17388],"delegation":[5024,15289,408,16388],"delegatorTokens":9999999932211,"jailed":[1000000000000047,null,null,null],"status":["unbonding","bonded","unbonded","bonded"]}},{"ix":145,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":146,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":147,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":148,"action":{"kind":"Undelegate","val":1,"amt":2445},"partialState":{"h":15,"t":90,"tokens":[6024,13844,1408,17388],"delegation":[5024,12844,408,16388],"delegatorTokens":9999999932211}},{"ix":149,"action":{"kind":"Undelegate","val":0,"amt":4996},"partialState":{"h":15,"t":90,"tokens":[1028,13844,1408,17388],"delegation":[28,12844,408,16388],"delegatorTokens":9999999932211}},{"ix":150,"action":{"kind":"Delegate","val":0,"amt":2322},"partialState":{"h":15,"t":90,"tokens":[3350,13844,1408,17388],"delegation":[2350,12844,408,16388],"delegatorTokens":9999999929889}},{"ix":151,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":16,"t":96,"tokens":[3350,13844,1408,17388],"delegation":[2350,12844,408,16388],"delegatorTokens":9999999929889,"jailed":[1000000000000047,null,null,null],"status":["unbonding","bonded","unbonded","bonded"]}},{"ix":152,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":16,"t":96,"consumerPower":[null,13438,null,16600],"outstandingDowntime":[false,false,true,true]}},{"ix":153,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":154,"action":{"kind":"Undelegate","val":0,"amt":2696},"partialState":{"h":16,"t":96,"tokens":[3350,13844,1408,17388],"delegation":[2350,12844,408,16388],"delegatorTokens":9999999929889}},{"ix":155,"action":{"kind":"Undelegate","val":0,"amt":3754},"partialState":{"h":16,"t":96,"tokens":[3350,13844,1408,17388],"delegation":[2350,12844,408,16388],"delegatorTokens":9999999929889}},{"ix":156,"action":{"kind":"Undelegate","val":2,"amt":4988},"partialState":{"h":16,"t":96,"tokens":[3350,13844,1408,17388],"delegation":[2350,12844,408,16388],"delegatorTokens":9999999929889}},{"ix":157,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":158,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":17,"t":102,"tokens":[3350,13844,1408,17388],"delegation":[2350,12844,408,16388],"delegatorTokens":9999999929889,"jailed":[1000000000000047,null,null,null],"status":["unbonding","bonded","unbonded","bonded"]}},{"ix":159,"action":{"kind":"Delegate","val":1,"amt":1371},"partialState":{"h":17,"t":102,"tokens":[3350,15215,1408,17388],"delegation":[2350,14215,408,16388],"delegatorTokens":9999999928518}},{"ix":160,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":17,"t":102,"consumerPower":[null,13438,null,16600],"outstandingDowntime":[false,false,true,true]}},{"ix":161,"action":{"kind":"Deliver","chain":"consumer","numPackets":6},"partialState":{"h":17,"t":102,"consumerPower":[null,13438,null,16600],"outstandingDowntime":[false,false,true,true]}},{"ix":162,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":18,"t":108,"tokens":[3350,15215,1408,17388],"delegation":[2350,14215,408,16388],"delegatorTokens":9999999928518,"jailed":[1000000000000047,null,null,null],"status":["unbonding","bonded","unbonded","bonded"]}},{"ix":163,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":19,"t":114,"tokens":[3350,15215,1408,17388],"delegation":[2350,14215,408,16388],"delegatorTokens":9999999928518,"jailed":[1000000000000047,null,null,null],"status":["unbonding","bonded","unbonded","bonded"]}},{"ix":164,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":165,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":18,"t":108,"consumerPower":[null,13844,null,17388],"outstandingDowntime":[false,false,true,true]}},{"ix":166,"action":{"kind":"Undelegate","val":0,"amt":2576},"partialState":{"h":19,"t":114,"tokens":[3350,15215,1408,17388],"delegation":[2350,14215,408,16388],"delegatorTokens":9999999928518}},{"ix":167,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":20,"t":120,"tokens":[3350,15215,1408,17388],"delegation":[2350,14215,408,16388],"delegatorTokens":9999999928518,"jailed":[1000000000000047,null,null,null],"status":["unbonding","bonded","unbonded","bonded"]}},{"ix":168,"action":{"kind":"Deliver","chain":"provider","numPackets":2},"partialState":{"h":20,"t":120,"tokens":[3350,15215,1408,17388],"delegation":[2350,14215,408,16388],"delegatorTokens":9999999928518,"jailed":[1000000000000047,null,null,null],"status":["unbonding","bonded","unbonded","bonded"]}},{"ix":169,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":19,"t":114,"consumerPower":[null,13844,null,17388],"outstandingDowntime":[false,false,true,true]}},{"ix":170,"action":{"kind":"Delegate","val":0,"amt":4051},"partialState":{"h":20,"t":120,"tokens":[7401,15215,1408,17388],"delegation":[6401,14215,408,16388],"delegatorTokens":9999999924467}},{"ix":171,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":20,"t":120,"consumerPower":[null,13844,null,17388],"outstandingDowntime":[false,false,true,true]}},{"ix":172,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":173,"action":{"kind":"Delegate","val":0,"amt":4327},"partialState":{"h":20,"t":120,"tokens":[11728,15215,1408,17388],"delegation":[10728,14215,408,16388],"delegatorTokens":9999999920140}},{"ix":174,"action":{"kind":"Deliver","chain":"consumer","numPackets":4},"partialState":{"h":20,"t":120,"consumerPower":[null,13844,null,17388],"outstandingDowntime":[false,false,true,true]}},{"ix":175,"action":{"kind":"Delegate","val":2,"amt":1784},"partialState":{"h":20,"t":120,"tokens":[11728,15215,3192,17388],"delegation":[10728,14215,2192,16388],"delegatorTokens":9999999918356}},{"ix":176,"action":{"kind":"Delegate","val":1,"amt":3304},"partialState":{"h":20,"t":120,"tokens":[11728,18519,3192,17388],"delegation":[10728,17519,2192,16388],"delegatorTokens":9999999915052}},{"ix":177,"action":{"kind":"Deliver","chain":"consumer","numPackets":4},"partialState":{"h":20,"t":120,"consumerPower":[null,13844,null,17388],"outstandingDowntime":[false,false,true,true]}},{"ix":178,"action":{"kind":"Delegate","val":2,"amt":4604},"partialState":{"h":20,"t":120,"tokens":[11728,18519,7796,17388],"delegation":[10728,17519,6796,16388],"delegatorTokens":9999999910448}},{"ix":179,"action":{"kind":"Deliver","chain":"provider","numPackets":4},"partialState":{"h":20,"t":120,"tokens":[11728,18519,7796,17388],"delegation":[10728,17519,6796,16388],"delegatorTokens":9999999910448,"jailed":[1000000000000047,null,null,null],"status":["unbonding","bonded","unbonded","bonded"]}},{"ix":180,"action":{"kind":"Delegate","val":1,"amt":1825},"partialState":{"h":20,"t":120,"tokens":[11728,20344,7796,17388],"delegation":[10728,19344,6796,16388],"delegatorTokens":9999999908623}},{"ix":181,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":21,"t":126,"tokens":[11728,20344,7796,17388],"delegation":[10728,19344,6796,16388],"delegatorTokens":9999999918882,"jailed":[1000000000000047,null,null,null],"status":["unbonding","bonded","unbonded","bonded"]}},{"ix":182,"action":{"kind":"Delegate","val":3,"amt":1650},"partialState":{"h":21,"t":126,"tokens":[11728,20344,7796,19038],"delegation":[10728,19344,6796,18038],"delegatorTokens":9999999917232}},{"ix":183,"action":{"kind":"Undelegate","val":0,"amt":3647},"partialState":{"h":21,"t":126,"tokens":[8081,20344,7796,19038],"delegation":[7081,19344,6796,18038],"delegatorTokens":9999999917232}},{"ix":184,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":185,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":186,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":187,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":188,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":21,"t":126,"consumerPower":[null,15215,null,17388],"outstandingDowntime":[false,false,true,true]}},{"ix":189,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":190,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":191,"action":{"kind":"Delegate","val":2,"amt":4819},"partialState":{"h":21,"t":126,"tokens":[8081,20344,12615,19038],"delegation":[7081,19344,11615,18038],"delegatorTokens":9999999912413}},{"ix":192,"action":{"kind":"Deliver","chain":"consumer","numPackets":1},"partialState":{"h":21,"t":126,"consumerPower":[null,15215,null,17388],"outstandingDowntime":[false,false,true,true]}},{"ix":193,"action":{"kind":"Deliver","chain":"consumer","numPackets":2},"partialState":{"h":21,"t":126,"consumerPower":[null,15215,null,17388],"outstandingDowntime":[false,false,true,true]}},{"ix":194,"action":{"kind":"Undelegate","val":0,"amt":2548},"partialState":{"h":21,"t":126,"tokens":[5533,20344,12615,19038],"delegation":[4533,19344,11615,18038],"delegatorTokens":9999999912413}},{"ix":195,"action":{"kind":"Undelegate","val":0,"amt":1981},"partialState":{"h":21,"t":126,"tokens":[3552,20344,12615,19038],"delegation":[2552,19344,11615,18038],"delegatorTokens":9999999912413}},{"ix":196,"action":{"kind":"Undelegate","val":3,"amt":1823},"partialState":{"h":21,"t":126,"tokens":[3552,20344,12615,17215],"delegation":[2552,19344,11615,16215],"delegatorTokens":9999999912413}},{"ix":197,"action":{"kind":"Deliver","chain":"consumer","numPackets":1},"partialState":{"h":21,"t":126,"consumerPower":[null,15215,null,17388],"outstandingDowntime":[false,false,true,true]}},{"ix":198,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":199,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":22,"t":132,"tokens":[3552,20344,12615,17215],"delegation":[2552,19344,11615,16215],"delegatorTokens":9999999915786,"jailed":[1000000000000047,null,null,null],"status":["unbonded","bonded","unbonded","bonded"]}}],"events":["insufficient_shares","send_downtime_slash_request","send_downtime_slash_request","send_downtime_slash_request","insufficient_shares","send_vsc_without_downtime_ack","insufficient_shares","insufficient_shares","insufficient_shares","send_vsc_without_downtime_ack","insufficient_shares","insufficient_shares","consumer_update_val","consumer_update_val","insufficient_shares","receive_downtime_slash_request","jail","receive_slash_request_unbonded","receive_slash_request_unbonded","send_vsc_with_downtime_ack","insufficient_shares","send_vsc_without_downtime_ack","insufficient_shares","insufficient_shares","send_vsc_without_downtime_ack","receive_downtime_slash_ack","consumer_del_val","consumer_add_val","insufficient_shares","insufficient_shares","insufficient_shares","some_undels_expired_but_not_completed","send_vsc_without_downtime_ack","some_undels_expired_but_not_completed","send_vsc_without_downtime_ack","consumer_update_val","consumer_update_val","consumer_send_maturation","consumer_send_maturation","send_vsc_without_downtime_ack","insufficient_shares","insufficient_shares","insufficient_shares","send_vsc_without_downtime_ack","consumer_send_maturation","consumer_send_maturation","consumer_update_val","consumer_update_val","insufficient_shares","some_undels_expired_but_not_completed","complete_undel_immediate","complete_undel_immediate","complete_undel_immediate","complete_undel_immediate","complete_undel_immediate","set_undel_hold_false","set_unval_hold_false","send_vsc_without_downtime_ack","consumer_update_val","complete_unval_in_endblock","complete_undel_in_endblock","send_vsc_without_downtime_ack"]},{"meta":{"commit":"7ffd0c04e4205cbc9caf212abfe6c59ee43153bf"},"constants":{"P":"provider","C":"consumer","UNBONDING_SECONDS_P":70,"UNBONDING_SECONDS_C":50,"TRUSTING_SECONDS":49,"NUM_VALIDATORS":4,"MAX_VALIDATORS":2,"SLASH_DOUBLESIGN":0,"SLASH_DOWNTIME":0,"JAIL_SECONDS":999999999999999,"BLOCK_SECONDS":6,"INITIAL_DELEGATOR_TOKENS":10000000000000,"DELEGATE_AMT_MIN":1000,"DELEGATE_AMT_MAX":5000,"UNDELEGATE_AMT_MIN":1000,"UNDELEGATE_AMT_MAX":5000,"ISDOWNTIME_PROBABILITY":0.5,"MAX_NUM_PACKETS_FOR_DELIVER":6},"actions":[{"ix":0,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":1,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":2,"action":{"kind":"Deliver","chain":"provider","numPackets":4},"partialState":{"h":1,"t":6,"tokens":[5000,4000,3000,2000],"delegation":[4000,3000,2000,1000],"delegatorTokens":10000000000000,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":3,"action":{"kind":"ConsumerSlash","val":2,"infractionHeight":0,"isDowntime":true},"partialState":{"h":1,"t":6,"outstandingDowntime":[false,false,true,false]}},{"ix":4,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":5,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":2,"t":12,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,false,true,false]}},{"ix":6,"action":{"kind":"Delegate","val":3,"amt":2241},"partialState":{"h":1,"t":6,"tokens":[5000,4000,3000,4241],"delegation":[4000,3000,2000,3241],"delegatorTokens":9999999997759}},{"ix":7,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":8,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":9,"action":{"kind":"Deliver","chain":"provider","numPackets":4},"partialState":{"h":1,"t":6,"tokens":[5000,4000,3000,4241],"delegation":[4000,3000,2000,3241],"delegatorTokens":9999999997759,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":10,"action":{"kind":"Delegate","val":2,"amt":3930},"partialState":{"h":1,"t":6,"tokens":[5000,4000,6930,4241],"delegation":[4000,3000,5930,3241],"delegatorTokens":9999999993829}},{"ix":11,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":3,"t":18,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,false,true,false]}},{"ix":12,"action":{"kind":"Delegate","val":3,"amt":4826},"partialState":{"h":1,"t":6,"tokens":[5000,4000,6930,9067],"delegation":[4000,3000,5930,8067],"delegatorTokens":9999999989003}},{"ix":13,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":14,"action":{"kind":"Deliver","chain":"consumer","numPackets":5},"partialState":{"h":3,"t":18,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,false,true,false]}},{"ix":15,"action":{"kind":"Deliver","chain":"provider","numPackets":3},"partialState":{"h":1,"t":6,"tokens":[5000,4000,6930,9067],"delegation":[4000,3000,5930,8067],"delegatorTokens":9999999989003,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":16,"action":{"kind":"Undelegate","val":2,"amt":3087},"partialState":{"h":1,"t":6,"tokens":[5000,4000,3843,9067],"delegation":[4000,3000,2843,8067],"delegatorTokens":9999999989003}},{"ix":17,"action":{"kind":"Deliver","chain":"consumer","numPackets":1},"partialState":{"h":3,"t":18,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,false,true,false]}},{"ix":18,"action":{"kind":"Undelegate","val":0,"amt":4134},"partialState":{"h":1,"t":6,"tokens":[5000,4000,3843,9067],"delegation":[4000,3000,2843,8067],"delegatorTokens":9999999989003}},{"ix":19,"action":{"kind":"ConsumerSlash","val":2,"infractionHeight":2,"isDowntime":false},"partialState":{"h":3,"t":18,"outstandingDowntime":[false,false,true,false]}},{"ix":20,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":21,"action":{"kind":"ConsumerSlash","val":3,"infractionHeight":0,"isDowntime":true},"partialState":{"h":3,"t":18,"outstandingDowntime":[false,false,true,true]}},{"ix":22,"action":{"kind":"ConsumerSlash","val":1,"infractionHeight":0,"isDowntime":true},"partialState":{"h":3,"t":18,"outstandingDowntime":[false,true,true,true]}},{"ix":23,"action":{"kind":"Undelegate","val":3,"amt":2718},"partialState":{"h":1,"t":6,"tokens":[5000,4000,3843,6349],"delegation":[4000,3000,2843,5349],"delegatorTokens":9999999989003}},{"ix":24,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":25,"action":{"kind":"Undelegate","val":3,"amt":4593},"partialState":{"h":1,"t":6,"tokens":[5000,4000,3843,1756],"delegation":[4000,3000,2843,756],"delegatorTokens":9999999989003}},{"ix":26,"action":{"kind":"Deliver","chain":"consumer","numPackets":4},"partialState":{"h":3,"t":18,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,true,true,true]}},{"ix":27,"action":{"kind":"Undelegate","val":2,"amt":3301},"partialState":{"h":1,"t":6,"tokens":[5000,4000,3843,1756],"delegation":[4000,3000,2843,756],"delegatorTokens":9999999989003}},{"ix":28,"action":{"kind":"Delegate","val":1,"amt":1437},"partialState":{"h":1,"t":6,"tokens":[5000,5437,3843,1756],"delegation":[4000,4437,2843,756],"delegatorTokens":9999999987566}},{"ix":29,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":30,"action":{"kind":"Deliver","chain":"consumer","numPackets":3},"partialState":{"h":3,"t":18,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,true,true,true]}},{"ix":31,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":2,"t":12,"tokens":[5000,5437,3843,1756],"delegation":[4000,4437,2843,756],"delegatorTokens":9999999987566,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":32,"action":{"kind":"Delegate","val":1,"amt":3011},"partialState":{"h":2,"t":12,"tokens":[5000,8448,3843,1756],"delegation":[4000,7448,2843,756],"delegatorTokens":9999999984555}},{"ix":33,"action":{"kind":"Deliver","chain":"provider","numPackets":6},"partialState":{"h":2,"t":12,"tokens":[5000,8448,3843,1756],"delegation":[4000,7448,2843,756],"delegatorTokens":9999999984555,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":34,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":4,"t":24,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,true,true,true]}},{"ix":35,"action":{"kind":"Deliver","chain":"consumer","numPackets":6},"partialState":{"h":4,"t":24,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,true,true,true]}},{"ix":36,"action":{"kind":"Undelegate","val":1,"amt":1098},"partialState":{"h":2,"t":12,"tokens":[5000,7350,3843,1756],"delegation":[4000,6350,2843,756],"delegatorTokens":9999999984555}},{"ix":37,"action":{"kind":"Undelegate","val":1,"amt":2856},"partialState":{"h":2,"t":12,"tokens":[5000,4494,3843,1756],"delegation":[4000,3494,2843,756],"delegatorTokens":9999999984555}},{"ix":38,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":3,"t":18,"tokens":[5000,4494,3843,1756],"delegation":[4000,3494,2843,756],"delegatorTokens":9999999984555,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":39,"action":{"kind":"Undelegate","val":0,"amt":4282},"partialState":{"h":3,"t":18,"tokens":[5000,4494,3843,1756],"delegation":[4000,3494,2843,756],"delegatorTokens":9999999984555}},{"ix":40,"action":{"kind":"Undelegate","val":3,"amt":2222},"partialState":{"h":3,"t":18,"tokens":[5000,4494,3843,1756],"delegation":[4000,3494,2843,756],"delegatorTokens":9999999984555}},{"ix":41,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":5,"t":30,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,true,true,true]}},{"ix":42,"action":{"kind":"Undelegate","val":0,"amt":2656},"partialState":{"h":3,"t":18,"tokens":[2344,4494,3843,1756],"delegation":[1344,3494,2843,756],"delegatorTokens":9999999984555}},{"ix":43,"action":{"kind":"Undelegate","val":0,"amt":1546},"partialState":{"h":3,"t":18,"tokens":[2344,4494,3843,1756],"delegation":[1344,3494,2843,756],"delegatorTokens":9999999984555}},{"ix":44,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":45,"action":{"kind":"Delegate","val":2,"amt":4436},"partialState":{"h":3,"t":18,"tokens":[2344,4494,8279,1756],"delegation":[1344,3494,7279,756],"delegatorTokens":9999999980119}},{"ix":46,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":47,"action":{"kind":"Delegate","val":3,"amt":3415},"partialState":{"h":3,"t":18,"tokens":[2344,4494,8279,5171],"delegation":[1344,3494,7279,4171],"delegatorTokens":9999999976704}},{"ix":48,"action":{"kind":"Undelegate","val":3,"amt":2090},"partialState":{"h":3,"t":18,"tokens":[2344,4494,8279,3081],"delegation":[1344,3494,7279,2081],"delegatorTokens":9999999976704}},{"ix":49,"action":{"kind":"Deliver","chain":"provider","numPackets":6},"partialState":{"h":3,"t":18,"tokens":[2344,4494,8279,3081],"delegation":[1344,3494,7279,2081],"delegatorTokens":9999999976704,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":50,"action":{"kind":"Deliver","chain":"provider","numPackets":2},"partialState":{"h":3,"t":18,"tokens":[2344,4494,8279,3081],"delegation":[1344,3494,7279,2081],"delegatorTokens":9999999976704,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":51,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":4,"t":24,"tokens":[2344,4494,8279,3081],"delegation":[1344,3494,7279,2081],"delegatorTokens":9999999976704,"jailed":[null,1000000000000017,null,null],"status":["unbonding","bonded","bonded","unbonded"]}},{"ix":52,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":5,"t":30,"tokens":[2344,4494,8279,3081],"delegation":[1344,3494,7279,2081],"delegatorTokens":9999999976704,"jailed":[null,1000000000000017,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":53,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":6,"t":36,"tokens":[2344,4494,8279,3081],"delegation":[1344,3494,7279,2081],"delegatorTokens":9999999976704,"jailed":[null,1000000000000017,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":54,"action":{"kind":"Deliver","chain":"provider","numPackets":6},"partialState":{"h":6,"t":36,"tokens":[2344,4494,8279,3081],"delegation":[1344,3494,7279,2081],"delegatorTokens":9999999976704,"jailed":[null,1000000000000017,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":55,"action":{"kind":"Undelegate","val":1,"amt":2474},"partialState":{"h":6,"t":36,"tokens":[2344,2020,8279,3081],"delegation":[1344,1020,7279,2081],"delegatorTokens":9999999976704}},{"ix":56,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":57,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":7,"t":42,"tokens":[2344,2020,8279,3081],"delegation":[1344,1020,7279,2081],"delegatorTokens":9999999976704,"jailed":[null,1000000000000017,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":58,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":8,"t":48,"tokens":[2344,2020,8279,3081],"delegation":[1344,1020,7279,2081],"delegatorTokens":9999999976704,"jailed":[null,1000000000000017,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":59,"action":{"kind":"Delegate","val":1,"amt":2619},"partialState":{"h":8,"t":48,"tokens":[2344,4639,8279,3081],"delegation":[1344,3639,7279,2081],"delegatorTokens":9999999974085}},{"ix":60,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":6,"t":36,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,true,true,true]}},{"ix":61,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":9,"t":54,"tokens":[2344,4639,8279,3081],"delegation":[1344,3639,7279,2081],"delegatorTokens":9999999974085,"jailed":[null,1000000000000017,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":62,"action":{"kind":"Undelegate","val":1,"amt":3928},"partialState":{"h":9,"t":54,"tokens":[2344,4639,8279,3081],"delegation":[1344,3639,7279,2081],"delegatorTokens":9999999974085}},{"ix":63,"action":{"kind":"Undelegate","val":0,"amt":3751},"partialState":{"h":9,"t":54,"tokens":[2344,4639,8279,3081],"delegation":[1344,3639,7279,2081],"delegatorTokens":9999999974085}},{"ix":64,"action":{"kind":"Undelegate","val":3,"amt":1439},"partialState":{"h":9,"t":54,"tokens":[2344,4639,8279,1642],"delegation":[1344,3639,7279,642],"delegatorTokens":9999999974085}},{"ix":65,"action":{"kind":"Undelegate","val":0,"amt":2903},"partialState":{"h":9,"t":54,"tokens":[2344,4639,8279,1642],"delegation":[1344,3639,7279,642],"delegatorTokens":9999999974085}},{"ix":66,"action":{"kind":"Deliver","chain":"consumer","numPackets":6},"partialState":{"h":6,"t":36,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,false,true,true]}},{"ix":67,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":68,"action":{"kind":"Undelegate","val":0,"amt":1436},"partialState":{"h":9,"t":54,"tokens":[2344,4639,8279,1642],"delegation":[1344,3639,7279,642],"delegatorTokens":9999999974085}},{"ix":69,"action":{"kind":"Undelegate","val":3,"amt":4470},"partialState":{"h":9,"t":54,"tokens":[2344,4639,8279,1642],"delegation":[1344,3639,7279,642],"delegatorTokens":9999999974085}},{"ix":70,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":71,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":72,"action":{"kind":"Undelegate","val":3,"amt":4305},"partialState":{"h":9,"t":54,"tokens":[2344,4639,8279,1642],"delegation":[1344,3639,7279,642],"delegatorTokens":9999999974085}},{"ix":73,"action":{"kind":"Delegate","val":0,"amt":1133},"partialState":{"h":9,"t":54,"tokens":[3477,4639,8279,1642],"delegation":[2477,3639,7279,642],"delegatorTokens":9999999972952}},{"ix":74,"action":{"kind":"Deliver","chain":"provider","numPackets":1},"partialState":{"h":9,"t":54,"tokens":[3477,4639,8279,1642],"delegation":[2477,3639,7279,642],"delegatorTokens":9999999972952,"jailed":[null,1000000000000017,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":75,"action":{"kind":"Deliver","chain":"provider","numPackets":6},"partialState":{"h":9,"t":54,"tokens":[3477,4639,8279,1642],"delegation":[2477,3639,7279,642],"delegatorTokens":9999999972952,"jailed":[null,1000000000000017,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":76,"action":{"kind":"Deliver","chain":"provider","numPackets":5},"partialState":{"h":9,"t":54,"tokens":[3477,4639,8279,1642],"delegation":[2477,3639,7279,642],"delegatorTokens":9999999972952,"jailed":[null,1000000000000017,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":77,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":78,"action":{"kind":"Undelegate","val":3,"amt":1217},"partialState":{"h":9,"t":54,"tokens":[3477,4639,8279,1642],"delegation":[2477,3639,7279,642],"delegatorTokens":9999999972952}},{"ix":79,"action":{"kind":"Undelegate","val":2,"amt":1992},"partialState":{"h":9,"t":54,"tokens":[3477,4639,6287,1642],"delegation":[2477,3639,5287,642],"delegatorTokens":9999999972952}},{"ix":80,"action":{"kind":"Undelegate","val":3,"amt":1231},"partialState":{"h":9,"t":54,"tokens":[3477,4639,6287,1642],"delegation":[2477,3639,5287,642],"delegatorTokens":9999999972952}},{"ix":81,"action":{"kind":"Deliver","chain":"provider","numPackets":1},"partialState":{"h":9,"t":54,"tokens":[3477,4639,6287,1642],"delegation":[2477,3639,5287,642],"delegatorTokens":9999999972952,"jailed":[null,1000000000000017,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":82,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":83,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":84,"action":{"kind":"Delegate","val":2,"amt":2320},"partialState":{"h":9,"t":54,"tokens":[3477,4639,8607,1642],"delegation":[2477,3639,7607,642],"delegatorTokens":9999999970632}},{"ix":85,"action":{"kind":"Delegate","val":3,"amt":2976},"partialState":{"h":9,"t":54,"tokens":[3477,4639,8607,4618],"delegation":[2477,3639,7607,3618],"delegatorTokens":9999999967656}},{"ix":86,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":7,"t":42,"consumerPower":[null,null,8279,3081],"outstandingDowntime":[false,false,true,true]}},{"ix":87,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":88,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":8,"t":48,"consumerPower":[null,null,8279,3081],"outstandingDowntime":[false,false,true,true]}},{"ix":89,"action":{"kind":"Undelegate","val":1,"amt":1597},"partialState":{"h":9,"t":54,"tokens":[3477,3042,8607,4618],"delegation":[2477,2042,7607,3618],"delegatorTokens":9999999967656}},{"ix":90,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":9,"t":54,"consumerPower":[null,null,8279,3081],"outstandingDowntime":[false,false,true,true]}},{"ix":91,"action":{"kind":"Delegate","val":0,"amt":2876},"partialState":{"h":9,"t":54,"tokens":[6353,3042,8607,4618],"delegation":[5353,2042,7607,3618],"delegatorTokens":9999999964780}},{"ix":92,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":10,"t":60,"tokens":[6353,3042,8607,4618],"delegation":[5353,2042,7607,3618],"delegatorTokens":9999999964780,"jailed":[null,1000000000000017,null,null],"status":["bonded","unbonding","bonded","unbonding"]}},{"ix":93,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":11,"t":66,"tokens":[6353,3042,8607,4618],"delegation":[5353,2042,7607,3618],"delegatorTokens":9999999964780,"jailed":[null,1000000000000017,null,null],"status":["bonded","unbonding","bonded","unbonding"]}},{"ix":94,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":95,"action":{"kind":"Delegate","val":1,"amt":3991},"partialState":{"h":11,"t":66,"tokens":[6353,7033,8607,4618],"delegation":[5353,6033,7607,3618],"delegatorTokens":9999999960789}},{"ix":96,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":97,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":98,"action":{"kind":"Undelegate","val":3,"amt":2078},"partialState":{"h":11,"t":66,"tokens":[6353,7033,8607,2540],"delegation":[5353,6033,7607,1540],"delegatorTokens":9999999960789}},{"ix":99,"action":{"kind":"Delegate","val":3,"amt":2435},"partialState":{"h":11,"t":66,"tokens":[6353,7033,8607,4975],"delegation":[5353,6033,7607,3975],"delegatorTokens":9999999958354}},{"ix":100,"action":{"kind":"Deliver","chain":"provider","numPackets":4},"partialState":{"h":11,"t":66,"tokens":[6353,7033,8607,4975],"delegation":[5353,6033,7607,3975],"delegatorTokens":9999999958354,"jailed":[null,1000000000000017,null,null],"status":["bonded","unbonding","bonded","unbonding"]}},{"ix":101,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":10,"t":60,"consumerPower":[null,null,8279,3081],"outstandingDowntime":[false,false,true,true]}},{"ix":102,"action":{"kind":"Delegate","val":1,"amt":2903},"partialState":{"h":11,"t":66,"tokens":[6353,9936,8607,4975],"delegation":[5353,8936,7607,3975],"delegatorTokens":9999999955451}},{"ix":103,"action":{"kind":"Delegate","val":3,"amt":3420},"partialState":{"h":11,"t":66,"tokens":[6353,9936,8607,8395],"delegation":[5353,8936,7607,7395],"delegatorTokens":9999999952031}},{"ix":104,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":12,"t":72,"tokens":[6353,9936,8607,8395],"delegation":[5353,8936,7607,7395],"delegatorTokens":9999999952031,"jailed":[null,1000000000000017,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":105,"action":{"kind":"Delegate","val":3,"amt":3255},"partialState":{"h":12,"t":72,"tokens":[6353,9936,8607,11650],"delegation":[5353,8936,7607,10650],"delegatorTokens":9999999948776}},{"ix":106,"action":{"kind":"Deliver","chain":"provider","numPackets":5},"partialState":{"h":12,"t":72,"tokens":[6353,9936,8607,11650],"delegation":[5353,8936,7607,10650],"delegatorTokens":9999999948776,"jailed":[null,1000000000000017,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":107,"action":{"kind":"Delegate","val":0,"amt":3789},"partialState":{"h":12,"t":72,"tokens":[10142,9936,8607,11650],"delegation":[9142,8936,7607,10650],"delegatorTokens":9999999944987}},{"ix":108,"action":{"kind":"Delegate","val":0,"amt":4442},"partialState":{"h":12,"t":72,"tokens":[14584,9936,8607,11650],"delegation":[13584,8936,7607,10650],"delegatorTokens":9999999940545}},{"ix":109,"action":{"kind":"Deliver","chain":"consumer","numPackets":3},"partialState":{"h":10,"t":60,"consumerPower":[null,null,8279,3081],"outstandingDowntime":[false,false,true,true]}},{"ix":110,"action":{"kind":"Delegate","val":2,"amt":4548},"partialState":{"h":12,"t":72,"tokens":[14584,9936,13155,11650],"delegation":[13584,8936,12155,10650],"delegatorTokens":9999999935997}},{"ix":111,"action":{"kind":"Undelegate","val":1,"amt":2805},"partialState":{"h":12,"t":72,"tokens":[14584,7131,13155,11650],"delegation":[13584,6131,12155,10650],"delegatorTokens":9999999935997}},{"ix":112,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":13,"t":78,"tokens":[14584,7131,13155,11650],"delegation":[13584,6131,12155,10650],"delegatorTokens":9999999935997,"jailed":[null,1000000000000017,null,null],"status":["bonded","unbonding","bonded","unbonding"]}},{"ix":113,"action":{"kind":"Undelegate","val":3,"amt":1706},"partialState":{"h":13,"t":78,"tokens":[14584,7131,13155,9944],"delegation":[13584,6131,12155,8944],"delegatorTokens":9999999935997}},{"ix":114,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":115,"action":{"kind":"Undelegate","val":2,"amt":3387},"partialState":{"h":13,"t":78,"tokens":[14584,7131,9768,9944],"delegation":[13584,6131,8768,8944],"delegatorTokens":9999999935997}},{"ix":116,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":117,"action":{"kind":"Undelegate","val":0,"amt":4210},"partialState":{"h":13,"t":78,"tokens":[10374,7131,9768,9944],"delegation":[9374,6131,8768,8944],"delegatorTokens":9999999935997}},{"ix":118,"action":{"kind":"Deliver","chain":"consumer","numPackets":2},"partialState":{"h":10,"t":60,"consumerPower":[null,null,8279,3081],"outstandingDowntime":[false,false,true,true]}},{"ix":119,"action":{"kind":"Delegate","val":2,"amt":3036},"partialState":{"h":13,"t":78,"tokens":[10374,7131,12804,9944],"delegation":[9374,6131,11804,8944],"delegatorTokens":9999999932961}},{"ix":120,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":121,"action":{"kind":"Delegate","val":2,"amt":2066},"partialState":{"h":13,"t":78,"tokens":[10374,7131,14870,9944],"delegation":[9374,6131,13870,8944],"delegatorTokens":9999999930895}},{"ix":122,"action":{"kind":"Delegate","val":0,"amt":3347},"partialState":{"h":13,"t":78,"tokens":[13721,7131,14870,9944],"delegation":[12721,6131,13870,8944],"delegatorTokens":9999999927548}},{"ix":123,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":124,"action":{"kind":"Undelegate","val":3,"amt":4978},"partialState":{"h":13,"t":78,"tokens":[13721,7131,14870,4966],"delegation":[12721,6131,13870,3966],"delegatorTokens":9999999927548}},{"ix":125,"action":{"kind":"Delegate","val":0,"amt":3064},"partialState":{"h":13,"t":78,"tokens":[16785,7131,14870,4966],"delegation":[15785,6131,13870,3966],"delegatorTokens":9999999924484}},{"ix":126,"action":{"kind":"Undelegate","val":1,"amt":1074},"partialState":{"h":13,"t":78,"tokens":[16785,6057,14870,4966],"delegation":[15785,5057,13870,3966],"delegatorTokens":9999999924484}},{"ix":127,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":11,"t":66,"consumerPower":[null,null,8607,8395],"outstandingDowntime":[false,false,true,true]}},{"ix":128,"action":{"kind":"Undelegate","val":3,"amt":4513},"partialState":{"h":13,"t":78,"tokens":[16785,6057,14870,4966],"delegation":[15785,5057,13870,3966],"delegatorTokens":9999999924484}},{"ix":129,"action":{"kind":"Delegate","val":1,"amt":3013},"partialState":{"h":13,"t":78,"tokens":[16785,9070,14870,4966],"delegation":[15785,8070,13870,3966],"delegatorTokens":9999999921471}},{"ix":130,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":14,"t":84,"tokens":[16785,9070,14870,4966],"delegation":[15785,8070,13870,3966],"delegatorTokens":9999999921471,"jailed":[null,1000000000000017,null,null],"status":["bonded","unbonding","bonded","unbonding"]}},{"ix":131,"action":{"kind":"Deliver","chain":"provider","numPackets":6},"partialState":{"h":14,"t":84,"tokens":[16785,9070,14870,4966],"delegation":[15785,8070,13870,3966],"delegatorTokens":9999999921471,"jailed":[null,1000000000000017,null,null],"status":["bonded","unbonding","bonded","unbonding"]}},{"ix":132,"action":{"kind":"Deliver","chain":"provider","numPackets":6},"partialState":{"h":14,"t":84,"tokens":[16785,9070,14870,4966],"delegation":[15785,8070,13870,3966],"delegatorTokens":9999999921471,"jailed":[null,1000000000000017,null,null],"status":["bonded","unbonding","bonded","unbonding"]}},{"ix":133,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":134,"action":{"kind":"Undelegate","val":0,"amt":2391},"partialState":{"h":14,"t":84,"tokens":[14394,9070,14870,4966],"delegation":[13394,8070,13870,3966],"delegatorTokens":9999999921471}},{"ix":135,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":12,"t":72,"consumerPower":[null,null,8607,8395],"outstandingDowntime":[false,false,true,true]}},{"ix":136,"action":{"kind":"Deliver","chain":"provider","numPackets":6},"partialState":{"h":14,"t":84,"tokens":[14394,9070,14870,4966],"delegation":[13394,8070,13870,3966],"delegatorTokens":9999999921471,"jailed":[null,1000000000000017,null,null],"status":["bonded","unbonding","bonded","unbonding"]}},{"ix":137,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":138,"action":{"kind":"Delegate","val":1,"amt":3771},"partialState":{"h":14,"t":84,"tokens":[14394,12841,14870,4966],"delegation":[13394,11841,13870,3966],"delegatorTokens":9999999917700}},{"ix":139,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":15,"t":90,"tokens":[14394,12841,14870,4966],"delegation":[13394,11841,13870,3966],"delegatorTokens":9999999917700,"jailed":[null,1000000000000017,null,null],"status":["bonded","unbonding","bonded","unbonding"]}},{"ix":140,"action":{"kind":"Deliver","chain":"consumer","numPackets":1},"partialState":{"h":12,"t":72,"consumerPower":[null,null,8607,8395],"outstandingDowntime":[false,false,true,true]}},{"ix":141,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":16,"t":96,"tokens":[14394,12841,14870,4966],"delegation":[13394,11841,13870,3966],"delegatorTokens":9999999917700,"jailed":[null,1000000000000017,null,null],"status":["bonded","unbonding","bonded","unbonding"]}},{"ix":142,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":13,"t":78,"consumerPower":[14584,null,13155,null],"outstandingDowntime":[false,false,true,true]}},{"ix":143,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":14,"t":84,"consumerPower":[14584,null,13155,null],"outstandingDowntime":[false,false,true,true]}},{"ix":144,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":145,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":17,"t":102,"tokens":[14394,12841,14870,4966],"delegation":[13394,11841,13870,3966],"delegatorTokens":9999999917700,"jailed":[null,1000000000000017,null,null],"status":["bonded","unbonding","bonded","unbonding"]}},{"ix":146,"action":{"kind":"Undelegate","val":3,"amt":1991},"partialState":{"h":17,"t":102,"tokens":[14394,12841,14870,2975],"delegation":[13394,11841,13870,1975],"delegatorTokens":9999999917700}},{"ix":147,"action":{"kind":"Delegate","val":2,"amt":1530},"partialState":{"h":17,"t":102,"tokens":[14394,12841,16400,2975],"delegation":[13394,11841,15400,1975],"delegatorTokens":9999999916170}},{"ix":148,"action":{"kind":"Undelegate","val":2,"amt":1890},"partialState":{"h":17,"t":102,"tokens":[14394,12841,14510,2975],"delegation":[13394,11841,13510,1975],"delegatorTokens":9999999916170}},{"ix":149,"action":{"kind":"Deliver","chain":"provider","numPackets":2},"partialState":{"h":17,"t":102,"tokens":[14394,12841,14510,2975],"delegation":[13394,11841,13510,1975],"delegatorTokens":9999999916170,"jailed":[null,1000000000000017,null,null],"status":["bonded","unbonding","bonded","unbonding"]}},{"ix":150,"action":{"kind":"Deliver","chain":"consumer","numPackets":1},"partialState":{"h":14,"t":84,"consumerPower":[14584,null,13155,null],"outstandingDowntime":[false,false,true,true]}},{"ix":151,"action":{"kind":"Undelegate","val":2,"amt":1322},"partialState":{"h":17,"t":102,"tokens":[14394,12841,13188,2975],"delegation":[13394,11841,12188,1975],"delegatorTokens":9999999916170}},{"ix":152,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":15,"t":90,"consumerPower":[16785,null,14870,null],"outstandingDowntime":[false,false,true,true]}},{"ix":153,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":18,"t":108,"tokens":[14394,12841,13188,2975],"delegation":[13394,11841,12188,1975],"delegatorTokens":9999999916170,"jailed":[null,1000000000000017,null,null],"status":["bonded","unbonding","bonded","unbonding"]}},{"ix":154,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":19,"t":114,"tokens":[14394,12841,13188,2975],"delegation":[13394,11841,12188,1975],"delegatorTokens":9999999916170,"jailed":[null,1000000000000017,null,null],"status":["bonded","unbonding","bonded","unbonding"]}},{"ix":155,"action":{"kind":"Delegate","val":0,"amt":1080},"partialState":{"h":19,"t":114,"tokens":[15474,12841,13188,2975],"delegation":[14474,11841,12188,1975],"delegatorTokens":9999999915090}},{"ix":156,"action":{"kind":"Undelegate","val":0,"amt":3217},"partialState":{"h":19,"t":114,"tokens":[12257,12841,13188,2975],"delegation":[11257,11841,12188,1975],"delegatorTokens":9999999915090}},{"ix":157,"action":{"kind":"Undelegate","val":3,"amt":1936},"partialState":{"h":19,"t":114,"tokens":[12257,12841,13188,1039],"delegation":[11257,11841,12188,39],"delegatorTokens":9999999915090}},{"ix":158,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":159,"action":{"kind":"Undelegate","val":2,"amt":2253},"partialState":{"h":19,"t":114,"tokens":[12257,12841,10935,1039],"delegation":[11257,11841,9935,39],"delegatorTokens":9999999915090}},{"ix":160,"action":{"kind":"Delegate","val":3,"amt":3314},"partialState":{"h":19,"t":114,"tokens":[12257,12841,10935,4353],"delegation":[11257,11841,9935,3353],"delegatorTokens":9999999911776}},{"ix":161,"action":{"kind":"Undelegate","val":2,"amt":1636},"partialState":{"h":19,"t":114,"tokens":[12257,12841,9299,4353],"delegation":[11257,11841,8299,3353],"delegatorTokens":9999999911776}},{"ix":162,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":16,"t":96,"consumerPower":[16785,null,14870,null],"outstandingDowntime":[false,false,true,true]}},{"ix":163,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":164,"action":{"kind":"Delegate","val":1,"amt":3584},"partialState":{"h":19,"t":114,"tokens":[12257,16425,9299,4353],"delegation":[11257,15425,8299,3353],"delegatorTokens":9999999908192}},{"ix":165,"action":{"kind":"Undelegate","val":2,"amt":3778},"partialState":{"h":19,"t":114,"tokens":[12257,16425,5521,4353],"delegation":[11257,15425,4521,3353],"delegatorTokens":9999999908192}},{"ix":166,"action":{"kind":"Deliver","chain":"consumer","numPackets":5},"partialState":{"h":16,"t":96,"consumerPower":[16785,null,14870,null],"outstandingDowntime":[false,false,true,true]}},{"ix":167,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":20,"t":120,"tokens":[12257,16425,5521,4353],"delegation":[11257,15425,4521,3353],"delegatorTokens":9999999908192,"jailed":[null,1000000000000017,null,null],"status":["bonded","unbonding","bonded","unbonding"]}},{"ix":168,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":169,"action":{"kind":"Delegate","val":3,"amt":2685},"partialState":{"h":20,"t":120,"tokens":[12257,16425,5521,7038],"delegation":[11257,15425,4521,6038],"delegatorTokens":9999999905507}},{"ix":170,"action":{"kind":"Undelegate","val":3,"amt":4776},"partialState":{"h":20,"t":120,"tokens":[12257,16425,5521,2262],"delegation":[11257,15425,4521,1262],"delegatorTokens":9999999905507}},{"ix":171,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":17,"t":102,"consumerPower":[14394,null,13188,null],"outstandingDowntime":[false,false,true,true]}},{"ix":172,"action":{"kind":"Delegate","val":0,"amt":4586},"partialState":{"h":20,"t":120,"tokens":[16843,16425,5521,2262],"delegation":[15843,15425,4521,1262],"delegatorTokens":9999999900921}},{"ix":173,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":18,"t":108,"consumerPower":[14394,null,13188,null],"outstandingDowntime":[false,false,true,true]}},{"ix":174,"action":{"kind":"Delegate","val":2,"amt":3505},"partialState":{"h":20,"t":120,"tokens":[16843,16425,9026,2262],"delegation":[15843,15425,8026,1262],"delegatorTokens":9999999897416}},{"ix":175,"action":{"kind":"Deliver","chain":"provider","numPackets":1},"partialState":{"h":20,"t":120,"tokens":[16843,16425,9026,2262],"delegation":[15843,15425,8026,1262],"delegatorTokens":9999999897416,"jailed":[null,1000000000000017,null,null],"status":["bonded","unbonding","bonded","unbonding"]}},{"ix":176,"action":{"kind":"Undelegate","val":2,"amt":2359},"partialState":{"h":20,"t":120,"tokens":[16843,16425,6667,2262],"delegation":[15843,15425,5667,1262],"delegatorTokens":9999999897416}},{"ix":177,"action":{"kind":"Undelegate","val":0,"amt":2242},"partialState":{"h":20,"t":120,"tokens":[14601,16425,6667,2262],"delegation":[13601,15425,5667,1262],"delegatorTokens":9999999897416}},{"ix":178,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":179,"action":{"kind":"Deliver","chain":"consumer","numPackets":6},"partialState":{"h":18,"t":108,"consumerPower":[14394,null,13188,null],"outstandingDowntime":[false,false,true,true]}},{"ix":180,"action":{"kind":"Delegate","val":3,"amt":4516},"partialState":{"h":20,"t":120,"tokens":[14601,16425,6667,6778],"delegation":[13601,15425,5667,5778],"delegatorTokens":9999999892900}},{"ix":181,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":182,"action":{"kind":"Deliver","chain":"provider","numPackets":3},"partialState":{"h":20,"t":120,"tokens":[14601,16425,6667,6778],"delegation":[13601,15425,5667,5778],"delegatorTokens":9999999892900,"jailed":[null,1000000000000017,null,null],"status":["bonded","unbonding","bonded","unbonding"]}},{"ix":183,"action":{"kind":"Undelegate","val":1,"amt":1924},"partialState":{"h":20,"t":120,"tokens":[14601,14501,6667,6778],"delegation":[13601,13501,5667,5778],"delegatorTokens":9999999892900}},{"ix":184,"action":{"kind":"Undelegate","val":2,"amt":3238},"partialState":{"h":20,"t":120,"tokens":[14601,14501,3429,6778],"delegation":[13601,13501,2429,5778],"delegatorTokens":9999999892900}},{"ix":185,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":21,"t":126,"tokens":[14601,14501,3429,6778],"delegation":[13601,13501,2429,5778],"delegatorTokens":9999999911998,"jailed":[null,1000000000000017,null,null],"status":["bonded","unbonding","unbonding","bonded"]}},{"ix":186,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":19,"t":114,"consumerPower":[14394,null,13188,null],"outstandingDowntime":[false,false,true,true]}},{"ix":187,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":20,"t":120,"consumerPower":[14394,null,13188,null],"outstandingDowntime":[false,false,true,true]}},{"ix":188,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":22,"t":132,"tokens":[14601,14501,3429,6778],"delegation":[13601,13501,2429,5778],"delegatorTokens":9999999911998,"jailed":[null,1000000000000017,null,null],"status":["bonded","unbonded","unbonding","bonded"]}},{"ix":189,"action":{"kind":"Undelegate","val":2,"amt":1382},"partialState":{"h":22,"t":132,"tokens":[14601,14501,2047,6778],"delegation":[13601,13501,1047,5778],"delegatorTokens":9999999911998}},{"ix":190,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":23,"t":138,"tokens":[14601,14501,2047,6778],"delegation":[13601,13501,1047,5778],"delegatorTokens":9999999911998,"jailed":[null,1000000000000017,null,null],"status":["bonded","unbonded","unbonding","bonded"]}},{"ix":191,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":192,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":193,"action":{"kind":"Undelegate","val":1,"amt":2746},"partialState":{"h":23,"t":138,"tokens":[14601,11755,2047,6778],"delegation":[13601,10755,1047,5778],"delegatorTokens":9999999911998}},{"ix":194,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":24,"t":144,"tokens":[14601,11755,2047,6778],"delegation":[13601,10755,1047,5778],"delegatorTokens":9999999911998,"jailed":[null,1000000000000017,null,null],"status":["bonded","unbonded","unbonding","bonded"]}},{"ix":195,"action":{"kind":"Delegate","val":3,"amt":3366},"partialState":{"h":24,"t":144,"tokens":[14601,11755,2047,10144],"delegation":[13601,10755,1047,9144],"delegatorTokens":9999999908632}},{"ix":196,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":25,"t":150,"tokens":[14601,11755,2047,10144],"delegation":[13601,10755,1047,9144],"delegatorTokens":9999999908632,"jailed":[null,1000000000000017,null,null],"status":["bonded","unbonded","unbonding","bonded"]}},{"ix":197,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":21,"t":126,"consumerPower":[14394,null,13188,null],"outstandingDowntime":[false,false,true,true]}},{"ix":198,"action":{"kind":"Deliver","chain":"provider","numPackets":3},"partialState":{"h":25,"t":150,"tokens":[14601,11755,2047,10144],"delegation":[13601,10755,1047,9144],"delegatorTokens":9999999908632,"jailed":[null,1000000000000017,null,null],"status":["bonded","unbonded","unbonding","bonded"]}},{"ix":199,"action":{"kind":"Delegate","val":1,"amt":1035},"partialState":{"h":25,"t":150,"tokens":[14601,12790,2047,10144],"delegation":[13601,11790,1047,9144],"delegatorTokens":9999999907597}}],"events":["send_downtime_slash_request","insufficient_shares","send_double_sign_slash_request","send_downtime_slash_request","send_downtime_slash_request","insufficient_shares","receive_slash_request_unbonded","send_vsc_without_downtime_ack","send_vsc_without_downtime_ack","insufficient_shares","insufficient_shares","insufficient_shares","receive_double_sign_slash_request","more_than_one_third_val_power_change","receive_slash_request_unbonded","receive_downtime_slash_request","jail","send_vsc_with_downtime_ack","send_vsc_without_downtime_ack","send_vsc_not_because_change","send_vsc_without_downtime_ack","insufficient_shares","insufficient_shares","insufficient_shares","receive_downtime_slash_ack","insufficient_shares","insufficient_shares","insufficient_shares","insufficient_shares","insufficient_shares","consumer_del_val","consumer_del_val","consumer_add_val","consumer_add_val","more_than_one_third_val_power_change","rebond_unval","send_vsc_without_downtime_ack","more_than_one_third_val_power_change","rebond_unval","send_vsc_without_downtime_ack","more_than_one_third_val_power_change","rebond_unval","send_vsc_without_downtime_ack","consumer_del_val","consumer_update_val","consumer_update_val","insufficient_shares","some_undels_expired_but_not_completed","send_vsc_without_downtime_ack","some_undels_expired_but_not_completed","send_vsc_without_downtime_ack","some_undels_expired_but_not_completed","consumer_add_val","consumer_update_val","consumer_del_val","consumer_update_val","consumer_update_val","send_vsc_without_downtime_ack","some_undels_expired_but_not_completed","consumer_send_maturation","consumer_send_maturation","consumer_send_maturation","consumer_send_maturation","consumer_send_maturation","send_vsc_without_downtime_ack","consumer_update_val","consumer_update_val","rebond_unval","complete_undel_immediate","complete_undel_immediate","complete_undel_immediate","complete_undel_immediate","complete_undel_immediate","complete_undel_immediate","complete_undel_immediate","set_unval_hold_false","send_vsc_without_downtime_ack","consumer_send_maturation","consumer_send_maturation","complete_unval_in_endblock","some_undels_expired_but_not_completed","send_vsc_not_because_change","send_vsc_without_downtime_ack","some_undels_expired_but_not_completed","send_vsc_not_because_change","send_vsc_without_downtime_ack","some_undels_expired_but_not_completed","send_vsc_without_downtime_ack"]},{"meta":{"commit":"7ffd0c04e4205cbc9caf212abfe6c59ee43153bf"},"constants":{"P":"provider","C":"consumer","UNBONDING_SECONDS_P":70,"UNBONDING_SECONDS_C":50,"TRUSTING_SECONDS":49,"NUM_VALIDATORS":4,"MAX_VALIDATORS":2,"SLASH_DOUBLESIGN":0,"SLASH_DOWNTIME":0,"JAIL_SECONDS":999999999999999,"BLOCK_SECONDS":6,"INITIAL_DELEGATOR_TOKENS":10000000000000,"DELEGATE_AMT_MIN":1000,"DELEGATE_AMT_MAX":5000,"UNDELEGATE_AMT_MIN":1000,"UNDELEGATE_AMT_MAX":5000,"ISDOWNTIME_PROBABILITY":0.5,"MAX_NUM_PACKETS_FOR_DELIVER":6},"actions":[{"ix":0,"action":{"kind":"Undelegate","val":2,"amt":2625},"partialState":{"h":1,"t":6,"tokens":[5000,4000,3000,2000],"delegation":[4000,3000,2000,1000],"delegatorTokens":10000000000000}},{"ix":1,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":2,"t":12,"tokens":[5000,4000,3000,2000],"delegation":[4000,3000,2000,1000],"delegatorTokens":10000000000000,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":2,"action":{"kind":"ConsumerSlash","val":0,"infractionHeight":0,"isDowntime":true},"partialState":{"h":1,"t":6,"outstandingDowntime":[true,false,false,false]}},{"ix":3,"action":{"kind":"ConsumerSlash","val":3,"infractionHeight":0,"isDowntime":true},"partialState":{"h":1,"t":6,"outstandingDowntime":[true,false,false,true]}},{"ix":4,"action":{"kind":"ConsumerSlash","val":2,"infractionHeight":0,"isDowntime":true},"partialState":{"h":1,"t":6,"outstandingDowntime":[true,false,true,true]}},{"ix":5,"action":{"kind":"Undelegate","val":2,"amt":1452},"partialState":{"h":2,"t":12,"tokens":[5000,4000,1548,2000],"delegation":[4000,3000,548,1000],"delegatorTokens":10000000000000}},{"ix":6,"action":{"kind":"Deliver","chain":"provider","numPackets":6},"partialState":{"h":2,"t":12,"tokens":[5000,4000,1548,2000],"delegation":[4000,3000,548,1000],"delegatorTokens":10000000000000,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":7,"action":{"kind":"Deliver","chain":"consumer","numPackets":2},"partialState":{"h":1,"t":6,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[true,false,true,true]}},{"ix":8,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":2,"t":12,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[true,false,true,true]}},{"ix":9,"action":{"kind":"Deliver","chain":"consumer","numPackets":1},"partialState":{"h":2,"t":12,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[true,false,true,true]}},{"ix":10,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":3,"t":18,"tokens":[5000,4000,1548,2000],"delegation":[4000,3000,548,1000],"delegatorTokens":10000000000000,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":11,"action":{"kind":"Delegate","val":0,"amt":4428},"partialState":{"h":3,"t":18,"tokens":[9428,4000,1548,2000],"delegation":[8428,3000,548,1000],"delegatorTokens":9999999995572}},{"ix":12,"action":{"kind":"Delegate","val":3,"amt":4265},"partialState":{"h":3,"t":18,"tokens":[9428,4000,1548,6265],"delegation":[8428,3000,548,5265],"delegatorTokens":9999999991307}},{"ix":13,"action":{"kind":"Undelegate","val":1,"amt":3534},"partialState":{"h":3,"t":18,"tokens":[9428,4000,1548,6265],"delegation":[8428,3000,548,5265],"delegatorTokens":9999999991307}},{"ix":14,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":3,"t":18,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[true,false,true,true]}},{"ix":15,"action":{"kind":"Delegate","val":1,"amt":3534},"partialState":{"h":3,"t":18,"tokens":[9428,7534,1548,6265],"delegation":[8428,6534,548,5265],"delegatorTokens":9999999987773}},{"ix":16,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":4,"t":24,"tokens":[9428,7534,1548,6265],"delegation":[8428,6534,548,5265],"delegatorTokens":9999999987773,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":17,"action":{"kind":"Delegate","val":2,"amt":3338},"partialState":{"h":4,"t":24,"tokens":[9428,7534,4886,6265],"delegation":[8428,6534,3886,5265],"delegatorTokens":9999999984435}},{"ix":18,"action":{"kind":"Deliver","chain":"consumer","numPackets":5},"partialState":{"h":3,"t":18,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[true,false,true,true]}},{"ix":19,"action":{"kind":"Delegate","val":0,"amt":4309},"partialState":{"h":4,"t":24,"tokens":[13737,7534,4886,6265],"delegation":[12737,6534,3886,5265],"delegatorTokens":9999999980126}},{"ix":20,"action":{"kind":"Deliver","chain":"provider","numPackets":6},"partialState":{"h":4,"t":24,"tokens":[13737,7534,4886,6265],"delegation":[12737,6534,3886,5265],"delegatorTokens":9999999980126,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":21,"action":{"kind":"Undelegate","val":3,"amt":4588},"partialState":{"h":4,"t":24,"tokens":[13737,7534,4886,1677],"delegation":[12737,6534,3886,677],"delegatorTokens":9999999980126}},{"ix":22,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":23,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":4,"t":24,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[true,false,true,true]}},{"ix":24,"action":{"kind":"Undelegate","val":2,"amt":1587},"partialState":{"h":4,"t":24,"tokens":[13737,7534,3299,1677],"delegation":[12737,6534,2299,677],"delegatorTokens":9999999980126}},{"ix":25,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":5,"t":30,"tokens":[13737,7534,3299,1677],"delegation":[12737,6534,2299,677],"delegatorTokens":9999999980126,"jailed":[1000000000000023,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":26,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":6,"t":36,"tokens":[13737,7534,3299,1677],"delegation":[12737,6534,2299,677],"delegatorTokens":9999999980126,"jailed":[1000000000000023,null,null,null],"status":["unbonding","bonded","bonded","unbonded"]}},{"ix":27,"action":{"kind":"Undelegate","val":2,"amt":2011},"partialState":{"h":6,"t":36,"tokens":[13737,7534,1288,1677],"delegation":[12737,6534,288,677],"delegatorTokens":9999999980126}},{"ix":28,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":29,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":30,"action":{"kind":"Deliver","chain":"provider","numPackets":6},"partialState":{"h":6,"t":36,"tokens":[13737,7534,1288,1677],"delegation":[12737,6534,288,677],"delegatorTokens":9999999980126,"jailed":[1000000000000023,null,null,null],"status":["unbonding","bonded","bonded","unbonded"]}},{"ix":31,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":7,"t":42,"tokens":[13737,7534,1288,1677],"delegation":[12737,6534,288,677],"delegatorTokens":9999999980126,"jailed":[1000000000000023,null,null,null],"status":["unbonding","bonded","unbonding","bonded"]}},{"ix":32,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":33,"action":{"kind":"Delegate","val":2,"amt":4124},"partialState":{"h":7,"t":42,"tokens":[13737,7534,5412,1677],"delegation":[12737,6534,4412,677],"delegatorTokens":9999999976002}},{"ix":34,"action":{"kind":"Undelegate","val":1,"amt":3355},"partialState":{"h":7,"t":42,"tokens":[13737,4179,5412,1677],"delegation":[12737,3179,4412,677],"delegatorTokens":9999999976002}},{"ix":35,"action":{"kind":"Deliver","chain":"provider","numPackets":5},"partialState":{"h":7,"t":42,"tokens":[13737,4179,5412,1677],"delegation":[12737,3179,4412,677],"delegatorTokens":9999999976002,"jailed":[1000000000000023,null,null,null],"status":["unbonding","bonded","unbonding","bonded"]}},{"ix":36,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":37,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":38,"action":{"kind":"Delegate","val":2,"amt":1029},"partialState":{"h":7,"t":42,"tokens":[13737,4179,6441,1677],"delegation":[12737,3179,5441,677],"delegatorTokens":9999999974973}},{"ix":39,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":40,"action":{"kind":"Delegate","val":0,"amt":3151},"partialState":{"h":7,"t":42,"tokens":[16888,4179,6441,1677],"delegation":[15888,3179,5441,677],"delegatorTokens":9999999971822}},{"ix":41,"action":{"kind":"Delegate","val":3,"amt":4138},"partialState":{"h":7,"t":42,"tokens":[16888,4179,6441,5815],"delegation":[15888,3179,5441,4815],"delegatorTokens":9999999967684}},{"ix":42,"action":{"kind":"Deliver","chain":"provider","numPackets":1},"partialState":{"h":7,"t":42,"tokens":[16888,4179,6441,5815],"delegation":[15888,3179,5441,4815],"delegatorTokens":9999999967684,"jailed":[1000000000000023,null,null,null],"status":["unbonding","bonded","unbonding","bonded"]}},{"ix":43,"action":{"kind":"Delegate","val":3,"amt":4039},"partialState":{"h":7,"t":42,"tokens":[16888,4179,6441,9854],"delegation":[15888,3179,5441,8854],"delegatorTokens":9999999963645}},{"ix":44,"action":{"kind":"Delegate","val":1,"amt":2178},"partialState":{"h":7,"t":42,"tokens":[16888,6357,6441,9854],"delegation":[15888,5357,5441,8854],"delegatorTokens":9999999961467}},{"ix":45,"action":{"kind":"Delegate","val":0,"amt":4553},"partialState":{"h":7,"t":42,"tokens":[21441,6357,6441,9854],"delegation":[20441,5357,5441,8854],"delegatorTokens":9999999956914}},{"ix":46,"action":{"kind":"Delegate","val":3,"amt":1777},"partialState":{"h":7,"t":42,"tokens":[21441,6357,6441,11631],"delegation":[20441,5357,5441,10631],"delegatorTokens":9999999955137}},{"ix":47,"action":{"kind":"Delegate","val":3,"amt":1939},"partialState":{"h":7,"t":42,"tokens":[21441,6357,6441,13570],"delegation":[20441,5357,5441,12570],"delegatorTokens":9999999953198}},{"ix":48,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":49,"action":{"kind":"Undelegate","val":0,"amt":2644},"partialState":{"h":7,"t":42,"tokens":[18797,6357,6441,13570],"delegation":[17797,5357,5441,12570],"delegatorTokens":9999999953198}},{"ix":50,"action":{"kind":"Deliver","chain":"consumer","numPackets":5},"partialState":{"h":4,"t":24,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,false,true,true]}},{"ix":51,"action":{"kind":"Deliver","chain":"consumer","numPackets":6},"partialState":{"h":4,"t":24,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,false,true,true]}},{"ix":52,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":5,"t":30,"consumerPower":[null,7534,3299,null],"outstandingDowntime":[false,false,true,true]}},{"ix":53,"action":{"kind":"Undelegate","val":3,"amt":1088},"partialState":{"h":7,"t":42,"tokens":[18797,6357,6441,12482],"delegation":[17797,5357,5441,11482],"delegatorTokens":9999999953198}},{"ix":54,"action":{"kind":"Delegate","val":0,"amt":2608},"partialState":{"h":7,"t":42,"tokens":[21405,6357,6441,12482],"delegation":[20405,5357,5441,11482],"delegatorTokens":9999999950590}},{"ix":55,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":6,"t":36,"consumerPower":[null,7534,3299,null],"outstandingDowntime":[false,false,true,true]}},{"ix":56,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":8,"t":48,"tokens":[21405,6357,6441,12482],"delegation":[20405,5357,5441,11482],"delegatorTokens":9999999950590,"jailed":[1000000000000023,null,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":57,"action":{"kind":"Delegate","val":1,"amt":2314},"partialState":{"h":8,"t":48,"tokens":[21405,8671,6441,12482],"delegation":[20405,7671,5441,11482],"delegatorTokens":9999999948276}},{"ix":58,"action":{"kind":"Undelegate","val":3,"amt":1871},"partialState":{"h":8,"t":48,"tokens":[21405,8671,6441,10611],"delegation":[20405,7671,5441,9611],"delegatorTokens":9999999948276}},{"ix":59,"action":{"kind":"Undelegate","val":1,"amt":4671},"partialState":{"h":8,"t":48,"tokens":[21405,4000,6441,10611],"delegation":[20405,3000,5441,9611],"delegatorTokens":9999999948276}},{"ix":60,"action":{"kind":"Delegate","val":0,"amt":1796},"partialState":{"h":8,"t":48,"tokens":[23201,4000,6441,10611],"delegation":[22201,3000,5441,9611],"delegatorTokens":9999999946480}},{"ix":61,"action":{"kind":"Undelegate","val":0,"amt":2478},"partialState":{"h":8,"t":48,"tokens":[20723,4000,6441,10611],"delegation":[19723,3000,5441,9611],"delegatorTokens":9999999946480}},{"ix":62,"action":{"kind":"Deliver","chain":"provider","numPackets":1},"partialState":{"h":8,"t":48,"tokens":[20723,4000,6441,10611],"delegation":[19723,3000,5441,9611],"delegatorTokens":9999999946480,"jailed":[1000000000000023,null,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":63,"action":{"kind":"Deliver","chain":"provider","numPackets":4},"partialState":{"h":8,"t":48,"tokens":[20723,4000,6441,10611],"delegation":[19723,3000,5441,9611],"delegatorTokens":9999999946480,"jailed":[1000000000000023,null,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":64,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":65,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":9,"t":54,"tokens":[20723,4000,6441,10611],"delegation":[19723,3000,5441,9611],"delegatorTokens":9999999946480,"jailed":[1000000000000023,null,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":66,"action":{"kind":"Deliver","chain":"consumer","numPackets":6},"partialState":{"h":6,"t":36,"consumerPower":[null,7534,3299,null],"outstandingDowntime":[false,false,true,true]}},{"ix":67,"action":{"kind":"Deliver","chain":"consumer","numPackets":3},"partialState":{"h":6,"t":36,"consumerPower":[null,7534,3299,null],"outstandingDowntime":[false,false,true,true]}},{"ix":68,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":7,"t":42,"consumerPower":[null,null,6441,12482],"outstandingDowntime":[false,false,true,true]}},{"ix":69,"action":{"kind":"Undelegate","val":1,"amt":2245},"partialState":{"h":9,"t":54,"tokens":[20723,1755,6441,10611],"delegation":[19723,755,5441,9611],"delegatorTokens":9999999946480}},{"ix":70,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":71,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":72,"action":{"kind":"Deliver","chain":"consumer","numPackets":4},"partialState":{"h":7,"t":42,"consumerPower":[null,null,6441,12482],"outstandingDowntime":[false,false,true,true]}},{"ix":73,"action":{"kind":"Undelegate","val":1,"amt":4617},"partialState":{"h":9,"t":54,"tokens":[20723,1755,6441,10611],"delegation":[19723,755,5441,9611],"delegatorTokens":9999999946480}},{"ix":74,"action":{"kind":"Delegate","val":0,"amt":2592},"partialState":{"h":9,"t":54,"tokens":[23315,1755,6441,10611],"delegation":[22315,755,5441,9611],"delegatorTokens":9999999943888}},{"ix":75,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":10,"t":60,"tokens":[23315,1755,6441,10611],"delegation":[22315,755,5441,9611],"delegatorTokens":9999999943888,"jailed":[1000000000000023,null,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":76,"action":{"kind":"Undelegate","val":2,"amt":3172},"partialState":{"h":10,"t":60,"tokens":[23315,1755,3269,10611],"delegation":[22315,755,2269,9611],"delegatorTokens":9999999943888}},{"ix":77,"action":{"kind":"Deliver","chain":"consumer","numPackets":3},"partialState":{"h":7,"t":42,"consumerPower":[null,null,6441,12482],"outstandingDowntime":[false,false,true,true]}},{"ix":78,"action":{"kind":"Deliver","chain":"provider","numPackets":2},"partialState":{"h":10,"t":60,"tokens":[23315,1755,3269,10611],"delegation":[22315,755,2269,9611],"delegatorTokens":9999999943888,"jailed":[1000000000000023,null,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":79,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":11,"t":66,"tokens":[23315,1755,3269,10611],"delegation":[22315,755,2269,9611],"delegatorTokens":9999999943888,"jailed":[1000000000000023,null,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":80,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":81,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":8,"t":48,"consumerPower":[null,null,6441,10611],"outstandingDowntime":[false,false,true,true]}},{"ix":82,"action":{"kind":"Undelegate","val":0,"amt":3765},"partialState":{"h":11,"t":66,"tokens":[19550,1755,3269,10611],"delegation":[18550,755,2269,9611],"delegatorTokens":9999999943888}},{"ix":83,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":84,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":9,"t":54,"consumerPower":[null,null,6441,10611],"outstandingDowntime":[false,false,true,true]}},{"ix":85,"action":{"kind":"Delegate","val":0,"amt":3156},"partialState":{"h":11,"t":66,"tokens":[22706,1755,3269,10611],"delegation":[21706,755,2269,9611],"delegatorTokens":9999999940732}},{"ix":86,"action":{"kind":"Undelegate","val":2,"amt":4255},"partialState":{"h":11,"t":66,"tokens":[22706,1755,3269,10611],"delegation":[21706,755,2269,9611],"delegatorTokens":9999999940732}},{"ix":87,"action":{"kind":"Delegate","val":1,"amt":2790},"partialState":{"h":11,"t":66,"tokens":[22706,4545,3269,10611],"delegation":[21706,3545,2269,9611],"delegatorTokens":9999999937942}},{"ix":88,"action":{"kind":"Undelegate","val":2,"amt":4515},"partialState":{"h":11,"t":66,"tokens":[22706,4545,3269,10611],"delegation":[21706,3545,2269,9611],"delegatorTokens":9999999937942}},{"ix":89,"action":{"kind":"Delegate","val":0,"amt":3248},"partialState":{"h":11,"t":66,"tokens":[25954,4545,3269,10611],"delegation":[24954,3545,2269,9611],"delegatorTokens":9999999934694}},{"ix":90,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":12,"t":72,"tokens":[25954,4545,3269,10611],"delegation":[24954,3545,2269,9611],"delegatorTokens":9999999934694,"jailed":[1000000000000023,null,null,null],"status":["unbonding","bonded","unbonding","bonded"]}},{"ix":91,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":13,"t":78,"tokens":[25954,4545,3269,10611],"delegation":[24954,3545,2269,9611],"delegatorTokens":9999999934694,"jailed":[1000000000000023,null,null,null],"status":["unbonding","bonded","unbonding","bonded"]}},{"ix":92,"action":{"kind":"Deliver","chain":"provider","numPackets":5},"partialState":{"h":13,"t":78,"tokens":[25954,4545,3269,10611],"delegation":[24954,3545,2269,9611],"delegatorTokens":9999999934694,"jailed":[1000000000000023,null,null,null],"status":["unbonding","bonded","unbonding","bonded"]}},{"ix":93,"action":{"kind":"Delegate","val":3,"amt":2421},"partialState":{"h":13,"t":78,"tokens":[25954,4545,3269,13032],"delegation":[24954,3545,2269,12032],"delegatorTokens":9999999932273}},{"ix":94,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":95,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":96,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":14,"t":84,"tokens":[25954,4545,3269,13032],"delegation":[24954,3545,2269,12032],"delegatorTokens":9999999932273,"jailed":[1000000000000023,null,null,null],"status":["unbonding","bonded","unbonding","bonded"]}},{"ix":97,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":98,"action":{"kind":"Undelegate","val":3,"amt":2944},"partialState":{"h":14,"t":84,"tokens":[25954,4545,3269,10088],"delegation":[24954,3545,2269,9088],"delegatorTokens":9999999932273}},{"ix":99,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":15,"t":90,"tokens":[25954,4545,3269,10088],"delegation":[24954,3545,2269,9088],"delegatorTokens":9999999932273,"jailed":[1000000000000023,null,null,null],"status":["unbonding","bonded","unbonding","bonded"]}},{"ix":100,"action":{"kind":"Deliver","chain":"consumer","numPackets":1},"partialState":{"h":9,"t":54,"consumerPower":[null,null,6441,10611],"outstandingDowntime":[false,false,true,true]}},{"ix":101,"action":{"kind":"Undelegate","val":1,"amt":3968},"partialState":{"h":15,"t":90,"tokens":[25954,4545,3269,10088],"delegation":[24954,3545,2269,9088],"delegatorTokens":9999999932273}},{"ix":102,"action":{"kind":"Deliver","chain":"provider","numPackets":1},"partialState":{"h":15,"t":90,"tokens":[25954,4545,3269,10088],"delegation":[24954,3545,2269,9088],"delegatorTokens":9999999932273,"jailed":[1000000000000023,null,null,null],"status":["unbonding","bonded","unbonding","bonded"]}},{"ix":103,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":10,"t":60,"consumerPower":[null,null,6441,10611],"outstandingDowntime":[false,false,true,true]}},{"ix":104,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":16,"t":96,"tokens":[25954,4545,3269,10088],"delegation":[24954,3545,2269,9088],"delegatorTokens":9999999932273,"jailed":[1000000000000023,null,null,null],"status":["unbonding","bonded","unbonding","bonded"]}},{"ix":105,"action":{"kind":"Delegate","val":2,"amt":3883},"partialState":{"h":16,"t":96,"tokens":[25954,4545,7152,10088],"delegation":[24954,3545,6152,9088],"delegatorTokens":9999999928390}},{"ix":106,"action":{"kind":"Undelegate","val":3,"amt":2348},"partialState":{"h":16,"t":96,"tokens":[25954,4545,7152,7740],"delegation":[24954,3545,6152,6740],"delegatorTokens":9999999928390}},{"ix":107,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":11,"t":66,"consumerPower":[null,null,6441,10611],"outstandingDowntime":[false,false,true,true]}},{"ix":108,"action":{"kind":"Undelegate","val":1,"amt":2454},"partialState":{"h":16,"t":96,"tokens":[25954,2091,7152,7740],"delegation":[24954,1091,6152,6740],"delegatorTokens":9999999928390}},{"ix":109,"action":{"kind":"Deliver","chain":"consumer","numPackets":3},"partialState":{"h":11,"t":66,"consumerPower":[null,null,6441,10611],"outstandingDowntime":[false,false,true,true]}},{"ix":110,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":12,"t":72,"consumerPower":[null,4545,null,13032],"outstandingDowntime":[false,false,true,true]}},{"ix":111,"action":{"kind":"Deliver","chain":"consumer","numPackets":1},"partialState":{"h":12,"t":72,"consumerPower":[null,4545,null,13032],"outstandingDowntime":[false,false,true,true]}},{"ix":112,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":113,"action":{"kind":"Deliver","chain":"provider","numPackets":5},"partialState":{"h":16,"t":96,"tokens":[25954,2091,7152,7740],"delegation":[24954,1091,6152,6740],"delegatorTokens":9999999928390,"jailed":[1000000000000023,null,null,null],"status":["unbonding","bonded","unbonding","bonded"]}},{"ix":114,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":13,"t":78,"consumerPower":[null,4545,null,10088],"outstandingDowntime":[false,false,true,true]}},{"ix":115,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":116,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":17,"t":102,"tokens":[25954,2091,7152,7740],"delegation":[24954,1091,6152,6740],"delegatorTokens":9999999928390,"jailed":[1000000000000023,null,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":117,"action":{"kind":"Undelegate","val":2,"amt":4928},"partialState":{"h":17,"t":102,"tokens":[25954,2091,2224,7740],"delegation":[24954,1091,1224,6740],"delegatorTokens":9999999928390}},{"ix":118,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":119,"action":{"kind":"Undelegate","val":1,"amt":4213},"partialState":{"h":17,"t":102,"tokens":[25954,2091,2224,7740],"delegation":[24954,1091,1224,6740],"delegatorTokens":9999999928390}},{"ix":120,"action":{"kind":"Deliver","chain":"consumer","numPackets":6},"partialState":{"h":13,"t":78,"consumerPower":[null,4545,null,10088],"outstandingDowntime":[false,false,true,true]}},{"ix":121,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":122,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":14,"t":84,"consumerPower":[null,4545,null,10088],"outstandingDowntime":[false,false,true,true]}},{"ix":123,"action":{"kind":"Deliver","chain":"consumer","numPackets":4},"partialState":{"h":14,"t":84,"consumerPower":[null,4545,null,10088],"outstandingDowntime":[false,false,true,true]}},{"ix":124,"action":{"kind":"Deliver","chain":"consumer","numPackets":2},"partialState":{"h":14,"t":84,"consumerPower":[null,4545,null,10088],"outstandingDowntime":[false,false,true,true]}},{"ix":125,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":126,"action":{"kind":"Deliver","chain":"provider","numPackets":2},"partialState":{"h":17,"t":102,"tokens":[25954,2091,2224,7740],"delegation":[24954,1091,1224,6740],"delegatorTokens":9999999928390,"jailed":[1000000000000023,null,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":127,"action":{"kind":"Delegate","val":1,"amt":3621},"partialState":{"h":17,"t":102,"tokens":[25954,5712,2224,7740],"delegation":[24954,4712,1224,6740],"delegatorTokens":9999999924769}},{"ix":128,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":129,"action":{"kind":"Undelegate","val":3,"amt":2332},"partialState":{"h":17,"t":102,"tokens":[25954,5712,2224,5408],"delegation":[24954,4712,1224,4408],"delegatorTokens":9999999924769}},{"ix":130,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":15,"t":90,"consumerPower":[null,4545,null,10088],"outstandingDowntime":[false,false,true,true]}},{"ix":131,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":132,"action":{"kind":"Delegate","val":2,"amt":3936},"partialState":{"h":17,"t":102,"tokens":[25954,5712,6160,5408],"delegation":[24954,4712,5160,4408],"delegatorTokens":9999999920833}},{"ix":133,"action":{"kind":"Delegate","val":1,"amt":1705},"partialState":{"h":17,"t":102,"tokens":[25954,7417,6160,5408],"delegation":[24954,6417,5160,4408],"delegatorTokens":9999999919128}},{"ix":134,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":135,"action":{"kind":"Deliver","chain":"consumer","numPackets":6},"partialState":{"h":15,"t":90,"consumerPower":[null,4545,null,10088],"outstandingDowntime":[false,false,true,true]}},{"ix":136,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":137,"action":{"kind":"Deliver","chain":"provider","numPackets":4},"partialState":{"h":17,"t":102,"tokens":[25954,7417,6160,5408],"delegation":[24954,6417,5160,4408],"delegatorTokens":9999999919128,"jailed":[1000000000000023,null,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":138,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":139,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":140,"action":{"kind":"Deliver","chain":"provider","numPackets":6},"partialState":{"h":17,"t":102,"tokens":[25954,7417,6160,5408],"delegation":[24954,6417,5160,4408],"delegatorTokens":9999999919128,"jailed":[1000000000000023,null,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":141,"action":{"kind":"Delegate","val":2,"amt":4696},"partialState":{"h":17,"t":102,"tokens":[25954,7417,10856,5408],"delegation":[24954,6417,9856,4408],"delegatorTokens":9999999914432}},{"ix":142,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":18,"t":108,"tokens":[25954,7417,10856,5408],"delegation":[24954,6417,9856,4408],"delegatorTokens":9999999922059,"jailed":[1000000000000023,null,null,null],"status":["unbonding","bonded","bonded","unbonding"]}},{"ix":143,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":144,"action":{"kind":"Deliver","chain":"provider","numPackets":3},"partialState":{"h":18,"t":108,"tokens":[25954,7417,10856,5408],"delegation":[24954,6417,9856,4408],"delegatorTokens":9999999922059,"jailed":[1000000000000023,null,null,null],"status":["unbonding","bonded","bonded","unbonding"]}},{"ix":145,"action":{"kind":"Undelegate","val":3,"amt":3065},"partialState":{"h":18,"t":108,"tokens":[25954,7417,10856,2343],"delegation":[24954,6417,9856,1343],"delegatorTokens":9999999922059}},{"ix":146,"action":{"kind":"Undelegate","val":3,"amt":4566},"partialState":{"h":18,"t":108,"tokens":[25954,7417,10856,2343],"delegation":[24954,6417,9856,1343],"delegatorTokens":9999999922059}},{"ix":147,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":19,"t":114,"tokens":[25954,7417,10856,2343],"delegation":[24954,6417,9856,1343],"delegatorTokens":9999999922059,"jailed":[1000000000000023,null,null,null],"status":["unbonded","bonded","bonded","unbonding"]}},{"ix":148,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":20,"t":120,"tokens":[25954,7417,10856,2343],"delegation":[24954,6417,9856,1343],"delegatorTokens":9999999922059,"jailed":[1000000000000023,null,null,null],"status":["unbonded","bonded","bonded","unbonding"]}},{"ix":149,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":16,"t":96,"consumerPower":[null,4545,null,10088],"outstandingDowntime":[false,false,true,true]}},{"ix":150,"action":{"kind":"Delegate","val":3,"amt":4810},"partialState":{"h":20,"t":120,"tokens":[25954,7417,10856,7153],"delegation":[24954,6417,9856,6153],"delegatorTokens":9999999917249}},{"ix":151,"action":{"kind":"Undelegate","val":0,"amt":3714},"partialState":{"h":20,"t":120,"tokens":[22240,7417,10856,7153],"delegation":[21240,6417,9856,6153],"delegatorTokens":9999999917249}},{"ix":152,"action":{"kind":"Delegate","val":2,"amt":3189},"partialState":{"h":20,"t":120,"tokens":[22240,7417,14045,7153],"delegation":[21240,6417,13045,6153],"delegatorTokens":9999999914060}},{"ix":153,"action":{"kind":"Deliver","chain":"consumer","numPackets":6},"partialState":{"h":16,"t":96,"consumerPower":[null,4545,null,10088],"outstandingDowntime":[false,false,true,true]}},{"ix":154,"action":{"kind":"Deliver","chain":"consumer","numPackets":3},"partialState":{"h":16,"t":96,"consumerPower":[null,4545,null,10088],"outstandingDowntime":[false,false,true,true]}},{"ix":155,"action":{"kind":"Undelegate","val":1,"amt":3161},"partialState":{"h":20,"t":120,"tokens":[22240,4256,14045,7153],"delegation":[21240,3256,13045,6153],"delegatorTokens":9999999914060}},{"ix":156,"action":{"kind":"Delegate","val":3,"amt":2503},"partialState":{"h":20,"t":120,"tokens":[22240,4256,14045,9656],"delegation":[21240,3256,13045,8656],"delegatorTokens":9999999911557}},{"ix":157,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":158,"action":{"kind":"Delegate","val":3,"amt":2066},"partialState":{"h":20,"t":120,"tokens":[22240,4256,14045,11722],"delegation":[21240,3256,13045,10722],"delegatorTokens":9999999909491}},{"ix":159,"action":{"kind":"Undelegate","val":0,"amt":3989},"partialState":{"h":20,"t":120,"tokens":[18251,4256,14045,11722],"delegation":[17251,3256,13045,10722],"delegatorTokens":9999999909491}},{"ix":160,"action":{"kind":"Delegate","val":3,"amt":1761},"partialState":{"h":20,"t":120,"tokens":[18251,4256,14045,13483],"delegation":[17251,3256,13045,12483],"delegatorTokens":9999999907730}},{"ix":161,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":17,"t":102,"consumerPower":[null,7417,10856,null],"outstandingDowntime":[false,false,true,true]}},{"ix":162,"action":{"kind":"Delegate","val":3,"amt":4791},"partialState":{"h":20,"t":120,"tokens":[18251,4256,14045,18274],"delegation":[17251,3256,13045,17274],"delegatorTokens":9999999902939}},{"ix":163,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":164,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":18,"t":108,"consumerPower":[null,7417,10856,null],"outstandingDowntime":[false,false,true,true]}},{"ix":165,"action":{"kind":"Delegate","val":3,"amt":1121},"partialState":{"h":20,"t":120,"tokens":[18251,4256,14045,19395],"delegation":[17251,3256,13045,18395],"delegatorTokens":9999999901818}},{"ix":166,"action":{"kind":"Deliver","chain":"consumer","numPackets":3},"partialState":{"h":18,"t":108,"consumerPower":[null,7417,10856,null],"outstandingDowntime":[false,false,true,true]}},{"ix":167,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":168,"action":{"kind":"Deliver","chain":"provider","numPackets":5},"partialState":{"h":20,"t":120,"tokens":[18251,4256,14045,19395],"delegation":[17251,3256,13045,18395],"delegatorTokens":9999999901818,"jailed":[1000000000000023,null,null,null],"status":["unbonded","bonded","bonded","unbonding"]}},{"ix":169,"action":{"kind":"Delegate","val":0,"amt":4273},"partialState":{"h":20,"t":120,"tokens":[22524,4256,14045,19395],"delegation":[21524,3256,13045,18395],"delegatorTokens":9999999897545}},{"ix":170,"action":{"kind":"Delegate","val":0,"amt":4156},"partialState":{"h":20,"t":120,"tokens":[26680,4256,14045,19395],"delegation":[25680,3256,13045,18395],"delegatorTokens":9999999893389}},{"ix":171,"action":{"kind":"Delegate","val":0,"amt":4363},"partialState":{"h":20,"t":120,"tokens":[31043,4256,14045,19395],"delegation":[30043,3256,13045,18395],"delegatorTokens":9999999889026}},{"ix":172,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":19,"t":114,"consumerPower":[null,7417,10856,null],"outstandingDowntime":[false,false,true,true]}},{"ix":173,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":20,"t":120,"consumerPower":[null,7417,10856,null],"outstandingDowntime":[false,false,true,true]}},{"ix":174,"action":{"kind":"Delegate","val":1,"amt":2038},"partialState":{"h":20,"t":120,"tokens":[31043,6294,14045,19395],"delegation":[30043,5294,13045,18395],"delegatorTokens":9999999886988}},{"ix":175,"action":{"kind":"Deliver","chain":"consumer","numPackets":4},"partialState":{"h":20,"t":120,"consumerPower":[null,7417,10856,null],"outstandingDowntime":[false,false,true,true]}},{"ix":176,"action":{"kind":"Deliver","chain":"provider","numPackets":1},"partialState":{"h":20,"t":120,"tokens":[31043,6294,14045,19395],"delegation":[30043,5294,13045,18395],"delegatorTokens":9999999886988,"jailed":[1000000000000023,null,null,null],"status":["unbonded","bonded","bonded","unbonding"]}},{"ix":177,"action":{"kind":"Undelegate","val":0,"amt":1781},"partialState":{"h":20,"t":120,"tokens":[29262,6294,14045,19395],"delegation":[28262,5294,13045,18395],"delegatorTokens":9999999886988}},{"ix":178,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":21,"t":126,"consumerPower":[null,7417,10856,null],"outstandingDowntime":[false,false,true,true]}},{"ix":179,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":22,"t":132,"consumerPower":[null,7417,10856,null],"outstandingDowntime":[false,false,true,true]}},{"ix":180,"action":{"kind":"Delegate","val":2,"amt":4260},"partialState":{"h":20,"t":120,"tokens":[29262,6294,18305,19395],"delegation":[28262,5294,17305,18395],"delegatorTokens":9999999882728}},{"ix":181,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":182,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":183,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":21,"t":126,"tokens":[29262,6294,18305,19395],"delegation":[28262,5294,17305,18395],"delegatorTokens":9999999900846,"jailed":[1000000000000023,null,null,null],"status":["unbonded","unbonding","bonded","bonded"]}},{"ix":184,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":185,"action":{"kind":"Deliver","chain":"provider","numPackets":6},"partialState":{"h":21,"t":126,"tokens":[29262,6294,18305,19395],"delegation":[28262,5294,17305,18395],"delegatorTokens":9999999900846,"jailed":[1000000000000023,null,null,null],"status":["unbonded","unbonding","bonded","bonded"]}},{"ix":186,"action":{"kind":"Undelegate","val":0,"amt":2865},"partialState":{"h":21,"t":126,"tokens":[26397,6294,18305,19395],"delegation":[25397,5294,17305,18395],"delegatorTokens":9999999900846}},{"ix":187,"action":{"kind":"Undelegate","val":2,"amt":3489},"partialState":{"h":21,"t":126,"tokens":[26397,6294,14816,19395],"delegation":[25397,5294,13816,18395],"delegatorTokens":9999999900846}},{"ix":188,"action":{"kind":"Deliver","chain":"consumer","numPackets":4},"partialState":{"h":22,"t":132,"consumerPower":[null,7417,10856,null],"outstandingDowntime":[false,false,true,true]}},{"ix":189,"action":{"kind":"Undelegate","val":1,"amt":3236},"partialState":{"h":21,"t":126,"tokens":[26397,3058,14816,19395],"delegation":[25397,2058,13816,18395],"delegatorTokens":9999999900846}},{"ix":190,"action":{"kind":"Deliver","chain":"consumer","numPackets":3},"partialState":{"h":22,"t":132,"consumerPower":[null,7417,10856,null],"outstandingDowntime":[false,false,true,true]}},{"ix":191,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":192,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":23,"t":138,"consumerPower":[null,7417,10856,null],"outstandingDowntime":[false,false,true,true]}},{"ix":193,"action":{"kind":"Deliver","chain":"provider","numPackets":5},"partialState":{"h":21,"t":126,"tokens":[26397,3058,14816,19395],"delegation":[25397,2058,13816,18395],"delegatorTokens":9999999900846,"jailed":[1000000000000023,null,null,null],"status":["unbonded","unbonding","bonded","bonded"]}},{"ix":194,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":195,"action":{"kind":"Deliver","chain":"consumer","numPackets":4},"partialState":{"h":23,"t":138,"consumerPower":[null,7417,10856,null],"outstandingDowntime":[false,false,true,true]}},{"ix":196,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":197,"action":{"kind":"Deliver","chain":"consumer","numPackets":2},"partialState":{"h":23,"t":138,"consumerPower":[null,7417,10856,null],"outstandingDowntime":[false,false,true,true]}},{"ix":198,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":199,"action":{"kind":"Undelegate","val":2,"amt":4953},"partialState":{"h":21,"t":126,"tokens":[26397,3058,9863,19395],"delegation":[25397,2058,8863,18395],"delegatorTokens":9999999900846}}],"events":["insufficient_shares","send_downtime_slash_request","send_downtime_slash_request","send_downtime_slash_request","send_vsc_not_because_change","send_vsc_without_downtime_ack","insufficient_shares","send_vsc_without_downtime_ack","receive_downtime_slash_request","jail","receive_slash_request_unbonded","receive_slash_request_unbonded","send_vsc_with_downtime_ack","send_vsc_without_downtime_ack","send_vsc_without_downtime_ack","receive_downtime_slash_ack","consumer_del_val","consumer_update_val","consumer_add_val","more_than_one_third_val_power_change","rebond_unval","send_vsc_without_downtime_ack","send_vsc_without_downtime_ack","consumer_update_val","consumer_add_val","consumer_del_val","insufficient_shares","send_vsc_not_because_change","send_vsc_without_downtime_ack","send_vsc_without_downtime_ack","consumer_update_val","insufficient_shares","insufficient_shares","rebond_unval","send_vsc_without_downtime_ack","send_vsc_without_downtime_ack","some_undels_expired_but_not_completed","send_vsc_without_downtime_ack","insufficient_shares","consumer_del_val","consumer_add_val","consumer_update_val","consumer_send_maturation","consumer_update_val","more_than_one_third_val_power_change","rebond_unval","some_undels_expired_but_not_completed","send_vsc_without_downtime_ack","insufficient_shares","consumer_send_maturation","consumer_send_maturation","consumer_send_maturation","more_than_one_third_val_power_change","rebond_unval","complete_undel_immediate","complete_undel_immediate","complete_undel_immediate","set_unval_hold_false","send_vsc_without_downtime_ack","insufficient_shares","complete_unval_in_endblock","some_undels_expired_but_not_completed","send_vsc_not_because_change","send_vsc_without_downtime_ack","some_undels_expired_but_not_completed","consumer_send_maturation","consumer_send_maturation","consumer_send_maturation","consumer_update_val","consumer_add_val","consumer_del_val","consumer_send_maturation","consumer_send_maturation","consumer_send_maturation","consumer_send_maturation","consumer_send_maturation","more_than_one_third_val_power_change","rebond_unval","some_undels_expired_but_not_completed","complete_undel_immediate","complete_undel_immediate","complete_undel_immediate","complete_undel_immediate","complete_undel_immediate","complete_undel_immediate","complete_undel_immediate","set_undel_hold_false","send_vsc_without_downtime_ack"]},{"meta":{"commit":"7ffd0c04e4205cbc9caf212abfe6c59ee43153bf"},"constants":{"P":"provider","C":"consumer","UNBONDING_SECONDS_P":70,"UNBONDING_SECONDS_C":50,"TRUSTING_SECONDS":49,"NUM_VALIDATORS":4,"MAX_VALIDATORS":2,"SLASH_DOUBLESIGN":0,"SLASH_DOWNTIME":0,"JAIL_SECONDS":999999999999999,"BLOCK_SECONDS":6,"INITIAL_DELEGATOR_TOKENS":10000000000000,"DELEGATE_AMT_MIN":1000,"DELEGATE_AMT_MAX":5000,"UNDELEGATE_AMT_MIN":1000,"UNDELEGATE_AMT_MAX":5000,"ISDOWNTIME_PROBABILITY":0.5,"MAX_NUM_PACKETS_FOR_DELIVER":6},"actions":[{"ix":0,"action":{"kind":"ConsumerSlash","val":2,"infractionHeight":0,"isDowntime":false},"partialState":{"h":1,"t":6,"outstandingDowntime":[false,false,false,false]}},{"ix":1,"action":{"kind":"Deliver","chain":"provider","numPackets":4},"partialState":{"h":1,"t":6,"tokens":[5000,4000,3000,2000],"delegation":[4000,3000,2000,1000],"delegatorTokens":10000000000000,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":2,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":3,"action":{"kind":"Undelegate","val":2,"amt":1724},"partialState":{"h":1,"t":6,"tokens":[5000,4000,1276,2000],"delegation":[4000,3000,276,1000],"delegatorTokens":10000000000000}},{"ix":4,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":5,"action":{"kind":"Deliver","chain":"consumer","numPackets":2},"partialState":{"h":1,"t":6,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":6,"action":{"kind":"Undelegate","val":3,"amt":3621},"partialState":{"h":1,"t":6,"tokens":[5000,4000,1276,2000],"delegation":[4000,3000,276,1000],"delegatorTokens":10000000000000}},{"ix":7,"action":{"kind":"Undelegate","val":1,"amt":3412},"partialState":{"h":1,"t":6,"tokens":[5000,4000,1276,2000],"delegation":[4000,3000,276,1000],"delegatorTokens":10000000000000}},{"ix":8,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":9,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":10,"action":{"kind":"Delegate","val":2,"amt":1966},"partialState":{"h":1,"t":6,"tokens":[5000,4000,3242,2000],"delegation":[4000,3000,2242,1000],"delegatorTokens":9999999998034}},{"ix":11,"action":{"kind":"Deliver","chain":"consumer","numPackets":3},"partialState":{"h":1,"t":6,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":12,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":2,"t":12,"tokens":[5000,4000,3242,2000],"delegation":[4000,3000,2242,1000],"delegatorTokens":9999999998034,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":13,"action":{"kind":"Undelegate","val":3,"amt":4027},"partialState":{"h":2,"t":12,"tokens":[5000,4000,3242,2000],"delegation":[4000,3000,2242,1000],"delegatorTokens":9999999998034}},{"ix":14,"action":{"kind":"ConsumerSlash","val":2,"infractionHeight":0,"isDowntime":true},"partialState":{"h":1,"t":6,"outstandingDowntime":[false,false,true,false]}},{"ix":15,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":2,"t":12,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,false,true,false]}},{"ix":16,"action":{"kind":"ConsumerSlash","val":0,"infractionHeight":0,"isDowntime":true},"partialState":{"h":2,"t":12,"outstandingDowntime":[true,false,true,false]}},{"ix":17,"action":{"kind":"Undelegate","val":2,"amt":1165},"partialState":{"h":2,"t":12,"tokens":[5000,4000,2077,2000],"delegation":[4000,3000,1077,1000],"delegatorTokens":9999999998034}},{"ix":18,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":3,"t":18,"tokens":[5000,4000,2077,2000],"delegation":[4000,3000,1077,1000],"delegatorTokens":9999999998034,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":19,"action":{"kind":"ConsumerSlash","val":0,"infractionHeight":0,"isDowntime":false},"partialState":{"h":2,"t":12,"outstandingDowntime":[true,false,true,false]}},{"ix":20,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":21,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":4,"t":24,"tokens":[5000,4000,2077,2000],"delegation":[4000,3000,1077,1000],"delegatorTokens":9999999998034,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":22,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":23,"action":{"kind":"Deliver","chain":"consumer","numPackets":3},"partialState":{"h":2,"t":12,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[true,false,true,false]}},{"ix":24,"action":{"kind":"Deliver","chain":"provider","numPackets":4},"partialState":{"h":4,"t":24,"tokens":[5000,4000,2077,2000],"delegation":[4000,3000,1077,1000],"delegatorTokens":9999999998034,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":25,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":3,"t":18,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[true,false,true,false]}},{"ix":26,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":4,"t":24,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[true,false,true,false]}},{"ix":27,"action":{"kind":"ConsumerSlash","val":0,"infractionHeight":0,"isDowntime":false},"partialState":{"h":4,"t":24,"outstandingDowntime":[true,false,true,false]}},{"ix":28,"action":{"kind":"ConsumerSlash","val":2,"infractionHeight":1,"isDowntime":false},"partialState":{"h":4,"t":24,"outstandingDowntime":[true,false,true,false]}},{"ix":29,"action":{"kind":"Deliver","chain":"provider","numPackets":1},"partialState":{"h":4,"t":24,"tokens":[5000,4000,2077,2000],"delegation":[4000,3000,1077,1000],"delegatorTokens":9999999998034,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":30,"action":{"kind":"Undelegate","val":1,"amt":1184},"partialState":{"h":4,"t":24,"tokens":[5000,2816,2077,2000],"delegation":[4000,1816,1077,1000],"delegatorTokens":9999999998034}},{"ix":31,"action":{"kind":"Undelegate","val":3,"amt":2782},"partialState":{"h":4,"t":24,"tokens":[5000,2816,2077,2000],"delegation":[4000,1816,1077,1000],"delegatorTokens":9999999998034}},{"ix":32,"action":{"kind":"Undelegate","val":1,"amt":3016},"partialState":{"h":4,"t":24,"tokens":[5000,2816,2077,2000],"delegation":[4000,1816,1077,1000],"delegatorTokens":9999999998034}},{"ix":33,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":5,"t":30,"tokens":[5000,2816,2077,2000],"delegation":[4000,1816,1077,1000],"delegatorTokens":9999999998034,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":34,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":6,"t":36,"tokens":[5000,2816,2077,2000],"delegation":[4000,1816,1077,1000],"delegatorTokens":9999999998034,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":35,"action":{"kind":"Deliver","chain":"consumer","numPackets":2},"partialState":{"h":4,"t":24,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[true,false,true,false]}},{"ix":36,"action":{"kind":"ConsumerSlash","val":3,"infractionHeight":2,"isDowntime":true},"partialState":{"h":4,"t":24,"outstandingDowntime":[true,false,true,true]}},{"ix":37,"action":{"kind":"Delegate","val":1,"amt":2966},"partialState":{"h":6,"t":36,"tokens":[5000,5782,2077,2000],"delegation":[4000,4782,1077,1000],"delegatorTokens":9999999995068}},{"ix":38,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":7,"t":42,"tokens":[5000,5782,2077,2000],"delegation":[4000,4782,1077,1000],"delegatorTokens":9999999995068,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":39,"action":{"kind":"Undelegate","val":3,"amt":4583},"partialState":{"h":7,"t":42,"tokens":[5000,5782,2077,2000],"delegation":[4000,4782,1077,1000],"delegatorTokens":9999999995068}},{"ix":40,"action":{"kind":"Deliver","chain":"provider","numPackets":5},"partialState":{"h":7,"t":42,"tokens":[5000,5782,2077,2000],"delegation":[4000,4782,1077,1000],"delegatorTokens":9999999995068,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":41,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":42,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":43,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":44,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":5,"t":30,"consumerPower":[5000,2816,null,null],"outstandingDowntime":[true,false,true,true]}},{"ix":45,"action":{"kind":"Undelegate","val":3,"amt":2649},"partialState":{"h":7,"t":42,"tokens":[5000,5782,2077,2000],"delegation":[4000,4782,1077,1000],"delegatorTokens":9999999995068}},{"ix":46,"action":{"kind":"Undelegate","val":1,"amt":1632},"partialState":{"h":7,"t":42,"tokens":[5000,4150,2077,2000],"delegation":[4000,3150,1077,1000],"delegatorTokens":9999999995068}},{"ix":47,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":48,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":8,"t":48,"tokens":[5000,4150,2077,2000],"delegation":[4000,3150,1077,1000],"delegatorTokens":9999999995068,"jailed":[1000000000000041,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":49,"action":{"kind":"Deliver","chain":"consumer","numPackets":2},"partialState":{"h":5,"t":30,"consumerPower":[5000,2816,null,null],"outstandingDowntime":[true,false,true,true]}},{"ix":50,"action":{"kind":"Delegate","val":1,"amt":3743},"partialState":{"h":8,"t":48,"tokens":[5000,7893,2077,2000],"delegation":[4000,6893,1077,1000],"delegatorTokens":9999999991325}},{"ix":51,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":9,"t":54,"tokens":[5000,7893,2077,2000],"delegation":[4000,6893,1077,1000],"delegatorTokens":9999999991325,"jailed":[1000000000000041,null,null,null],"status":["unbonding","bonded","bonded","unbonded"]}},{"ix":52,"action":{"kind":"Undelegate","val":2,"amt":2832},"partialState":{"h":9,"t":54,"tokens":[5000,7893,2077,2000],"delegation":[4000,6893,1077,1000],"delegatorTokens":9999999991325}},{"ix":53,"action":{"kind":"Delegate","val":1,"amt":3388},"partialState":{"h":9,"t":54,"tokens":[5000,11281,2077,2000],"delegation":[4000,10281,1077,1000],"delegatorTokens":9999999987937}},{"ix":54,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":55,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":56,"action":{"kind":"Undelegate","val":0,"amt":4944},"partialState":{"h":9,"t":54,"tokens":[5000,11281,2077,2000],"delegation":[4000,10281,1077,1000],"delegatorTokens":9999999987937}},{"ix":57,"action":{"kind":"Delegate","val":0,"amt":4445},"partialState":{"h":9,"t":54,"tokens":[9445,11281,2077,2000],"delegation":[8445,10281,1077,1000],"delegatorTokens":9999999983492}},{"ix":58,"action":{"kind":"Undelegate","val":1,"amt":4679},"partialState":{"h":9,"t":54,"tokens":[9445,6602,2077,2000],"delegation":[8445,5602,1077,1000],"delegatorTokens":9999999983492}},{"ix":59,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":6,"t":36,"consumerPower":[5000,5782,null,null],"outstandingDowntime":[true,false,true,true]}},{"ix":60,"action":{"kind":"Deliver","chain":"consumer","numPackets":6},"partialState":{"h":6,"t":36,"consumerPower":[5000,5782,null,null],"outstandingDowntime":[false,false,true,true]}},{"ix":61,"action":{"kind":"Undelegate","val":1,"amt":1115},"partialState":{"h":9,"t":54,"tokens":[9445,5487,2077,2000],"delegation":[8445,4487,1077,1000],"delegatorTokens":9999999983492}},{"ix":62,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":10,"t":60,"tokens":[9445,5487,2077,2000],"delegation":[8445,4487,1077,1000],"delegatorTokens":9999999983492,"jailed":[1000000000000041,null,null,null],"status":["unbonding","bonded","bonded","unbonded"]}},{"ix":63,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":11,"t":66,"tokens":[9445,5487,2077,2000],"delegation":[8445,4487,1077,1000],"delegatorTokens":9999999983492,"jailed":[1000000000000041,null,null,null],"status":["unbonding","bonded","bonded","unbonded"]}},{"ix":64,"action":{"kind":"Delegate","val":2,"amt":3883},"partialState":{"h":11,"t":66,"tokens":[9445,5487,5960,2000],"delegation":[8445,4487,4960,1000],"delegatorTokens":9999999979609}},{"ix":65,"action":{"kind":"Undelegate","val":3,"amt":1317},"partialState":{"h":11,"t":66,"tokens":[9445,5487,5960,2000],"delegation":[8445,4487,4960,1000],"delegatorTokens":9999999979609}},{"ix":66,"action":{"kind":"Delegate","val":3,"amt":1998},"partialState":{"h":11,"t":66,"tokens":[9445,5487,5960,3998],"delegation":[8445,4487,4960,2998],"delegatorTokens":9999999977611}},{"ix":67,"action":{"kind":"Deliver","chain":"consumer","numPackets":6},"partialState":{"h":6,"t":36,"consumerPower":[5000,5782,null,null],"outstandingDowntime":[false,false,true,true]}},{"ix":68,"action":{"kind":"Undelegate","val":3,"amt":4279},"partialState":{"h":11,"t":66,"tokens":[9445,5487,5960,3998],"delegation":[8445,4487,4960,2998],"delegatorTokens":9999999977611}},{"ix":69,"action":{"kind":"Deliver","chain":"provider","numPackets":6},"partialState":{"h":11,"t":66,"tokens":[9445,5487,5960,3998],"delegation":[8445,4487,4960,2998],"delegatorTokens":9999999977611,"jailed":[1000000000000041,null,null,null],"status":["unbonding","bonded","bonded","unbonded"]}},{"ix":70,"action":{"kind":"Delegate","val":0,"amt":4527},"partialState":{"h":11,"t":66,"tokens":[13972,5487,5960,3998],"delegation":[12972,4487,4960,2998],"delegatorTokens":9999999973084}},{"ix":71,"action":{"kind":"Undelegate","val":0,"amt":3215},"partialState":{"h":11,"t":66,"tokens":[10757,5487,5960,3998],"delegation":[9757,4487,4960,2998],"delegatorTokens":9999999973084}},{"ix":72,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":73,"action":{"kind":"Undelegate","val":0,"amt":1025},"partialState":{"h":11,"t":66,"tokens":[9732,5487,5960,3998],"delegation":[8732,4487,4960,2998],"delegatorTokens":9999999973084}},{"ix":74,"action":{"kind":"Deliver","chain":"consumer","numPackets":5},"partialState":{"h":6,"t":36,"consumerPower":[5000,5782,null,null],"outstandingDowntime":[false,false,true,true]}},{"ix":75,"action":{"kind":"Delegate","val":1,"amt":4662},"partialState":{"h":11,"t":66,"tokens":[9732,10149,5960,3998],"delegation":[8732,9149,4960,2998],"delegatorTokens":9999999968422}},{"ix":76,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":77,"action":{"kind":"Undelegate","val":3,"amt":3370},"partialState":{"h":11,"t":66,"tokens":[9732,10149,5960,3998],"delegation":[8732,9149,4960,2998],"delegatorTokens":9999999968422}},{"ix":78,"action":{"kind":"Deliver","chain":"provider","numPackets":2},"partialState":{"h":11,"t":66,"tokens":[9732,10149,5960,3998],"delegation":[8732,9149,4960,2998],"delegatorTokens":9999999968422,"jailed":[1000000000000041,null,null,null],"status":["unbonding","bonded","bonded","unbonded"]}},{"ix":79,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":7,"t":42,"consumerPower":[null,5487,2077,null],"outstandingDowntime":[false,false,true,true]}},{"ix":80,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":81,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":8,"t":48,"consumerPower":[null,5487,2077,null],"outstandingDowntime":[false,false,true,true]}},{"ix":82,"action":{"kind":"Undelegate","val":3,"amt":4931},"partialState":{"h":11,"t":66,"tokens":[9732,10149,5960,3998],"delegation":[8732,9149,4960,2998],"delegatorTokens":9999999968422}},{"ix":83,"action":{"kind":"Undelegate","val":3,"amt":3838},"partialState":{"h":11,"t":66,"tokens":[9732,10149,5960,3998],"delegation":[8732,9149,4960,2998],"delegatorTokens":9999999968422}},{"ix":84,"action":{"kind":"Deliver","chain":"consumer","numPackets":1},"partialState":{"h":8,"t":48,"consumerPower":[null,5487,2077,null],"outstandingDowntime":[false,false,true,true]}},{"ix":85,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":12,"t":72,"tokens":[9732,10149,5960,3998],"delegation":[8732,9149,4960,2998],"delegatorTokens":9999999968422,"jailed":[1000000000000041,null,null,null],"status":["unbonding","bonded","bonded","unbonded"]}},{"ix":86,"action":{"kind":"Deliver","chain":"provider","numPackets":2},"partialState":{"h":12,"t":72,"tokens":[9732,10149,5960,3998],"delegation":[8732,9149,4960,2998],"delegatorTokens":9999999968422,"jailed":[1000000000000041,null,null,null],"status":["unbonding","bonded","bonded","unbonded"]}},{"ix":87,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":88,"action":{"kind":"Delegate","val":0,"amt":2647},"partialState":{"h":12,"t":72,"tokens":[12379,10149,5960,3998],"delegation":[11379,9149,4960,2998],"delegatorTokens":9999999965775}},{"ix":89,"action":{"kind":"Undelegate","val":1,"amt":2140},"partialState":{"h":12,"t":72,"tokens":[12379,8009,5960,3998],"delegation":[11379,7009,4960,2998],"delegatorTokens":9999999965775}},{"ix":90,"action":{"kind":"Delegate","val":2,"amt":4667},"partialState":{"h":12,"t":72,"tokens":[12379,8009,10627,3998],"delegation":[11379,7009,9627,2998],"delegatorTokens":9999999961108}},{"ix":91,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":92,"action":{"kind":"Deliver","chain":"provider","numPackets":4},"partialState":{"h":12,"t":72,"tokens":[12379,8009,10627,3998],"delegation":[11379,7009,9627,2998],"delegatorTokens":9999999961108,"jailed":[1000000000000041,null,null,null],"status":["unbonding","bonded","bonded","unbonded"]}},{"ix":93,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":13,"t":78,"tokens":[12379,8009,10627,3998],"delegation":[11379,7009,9627,2998],"delegatorTokens":9999999961108,"jailed":[1000000000000041,null,null,null],"status":["unbonding","bonded","bonded","unbonded"]}},{"ix":94,"action":{"kind":"Delegate","val":0,"amt":3659},"partialState":{"h":13,"t":78,"tokens":[16038,8009,10627,3998],"delegation":[15038,7009,9627,2998],"delegatorTokens":9999999957449}},{"ix":95,"action":{"kind":"Undelegate","val":0,"amt":2358},"partialState":{"h":13,"t":78,"tokens":[13680,8009,10627,3998],"delegation":[12680,7009,9627,2998],"delegatorTokens":9999999957449}},{"ix":96,"action":{"kind":"Deliver","chain":"provider","numPackets":3},"partialState":{"h":13,"t":78,"tokens":[13680,8009,10627,3998],"delegation":[12680,7009,9627,2998],"delegatorTokens":9999999957449,"jailed":[1000000000000041,null,null,null],"status":["unbonding","bonded","bonded","unbonded"]}},{"ix":97,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":98,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":14,"t":84,"tokens":[13680,8009,10627,3998],"delegation":[12680,7009,9627,2998],"delegatorTokens":9999999957449,"jailed":[1000000000000041,null,null,null],"status":["unbonding","bonded","bonded","unbonded"]}},{"ix":99,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":15,"t":90,"tokens":[13680,8009,10627,3998],"delegation":[12680,7009,9627,2998],"delegatorTokens":9999999957449,"jailed":[1000000000000041,null,null,null],"status":["unbonding","bonded","bonded","unbonded"]}},{"ix":100,"action":{"kind":"Undelegate","val":2,"amt":1268},"partialState":{"h":15,"t":90,"tokens":[13680,8009,9359,3998],"delegation":[12680,7009,8359,2998],"delegatorTokens":9999999957449}},{"ix":101,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":102,"action":{"kind":"Delegate","val":2,"amt":1550},"partialState":{"h":15,"t":90,"tokens":[13680,8009,10909,3998],"delegation":[12680,7009,9909,2998],"delegatorTokens":9999999955899}},{"ix":103,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":104,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":9,"t":54,"consumerPower":[null,5487,2077,null],"outstandingDowntime":[false,false,true,true]}},{"ix":105,"action":{"kind":"Deliver","chain":"consumer","numPackets":2},"partialState":{"h":9,"t":54,"consumerPower":[null,5487,2077,null],"outstandingDowntime":[false,false,true,true]}},{"ix":106,"action":{"kind":"Undelegate","val":1,"amt":2488},"partialState":{"h":15,"t":90,"tokens":[13680,5521,10909,3998],"delegation":[12680,4521,9909,2998],"delegatorTokens":9999999955899}},{"ix":107,"action":{"kind":"Deliver","chain":"provider","numPackets":3},"partialState":{"h":15,"t":90,"tokens":[13680,5521,10909,3998],"delegation":[12680,4521,9909,2998],"delegatorTokens":9999999955899,"jailed":[1000000000000041,null,null,null],"status":["unbonding","bonded","bonded","unbonded"]}},{"ix":108,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":109,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":16,"t":96,"tokens":[13680,5521,10909,3998],"delegation":[12680,4521,9909,2998],"delegatorTokens":9999999955899,"jailed":[1000000000000041,null,null,null],"status":["unbonding","bonded","bonded","unbonded"]}},{"ix":110,"action":{"kind":"Delegate","val":1,"amt":3318},"partialState":{"h":16,"t":96,"tokens":[13680,8839,10909,3998],"delegation":[12680,7839,9909,2998],"delegatorTokens":9999999952581}},{"ix":111,"action":{"kind":"Delegate","val":2,"amt":2333},"partialState":{"h":16,"t":96,"tokens":[13680,8839,13242,3998],"delegation":[12680,7839,12242,2998],"delegatorTokens":9999999950248}},{"ix":112,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":113,"action":{"kind":"Undelegate","val":2,"amt":4140},"partialState":{"h":16,"t":96,"tokens":[13680,8839,9102,3998],"delegation":[12680,7839,8102,2998],"delegatorTokens":9999999950248}},{"ix":114,"action":{"kind":"Deliver","chain":"provider","numPackets":1},"partialState":{"h":16,"t":96,"tokens":[13680,8839,9102,3998],"delegation":[12680,7839,8102,2998],"delegatorTokens":9999999950248,"jailed":[1000000000000041,null,null,null],"status":["unbonding","bonded","bonded","unbonded"]}},{"ix":115,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":116,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":10,"t":60,"consumerPower":[null,8009,10627,null],"outstandingDowntime":[false,false,true,true]}},{"ix":117,"action":{"kind":"Undelegate","val":1,"amt":1176},"partialState":{"h":16,"t":96,"tokens":[13680,7663,9102,3998],"delegation":[12680,6663,8102,2998],"delegatorTokens":9999999950248}},{"ix":118,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":11,"t":66,"consumerPower":[null,8009,10627,null],"outstandingDowntime":[false,false,true,true]}},{"ix":119,"action":{"kind":"Delegate","val":2,"amt":4520},"partialState":{"h":16,"t":96,"tokens":[13680,7663,13622,3998],"delegation":[12680,6663,12622,2998],"delegatorTokens":9999999945728}},{"ix":120,"action":{"kind":"Delegate","val":1,"amt":4419},"partialState":{"h":16,"t":96,"tokens":[13680,12082,13622,3998],"delegation":[12680,11082,12622,2998],"delegatorTokens":9999999941309}},{"ix":121,"action":{"kind":"Delegate","val":2,"amt":2516},"partialState":{"h":16,"t":96,"tokens":[13680,12082,16138,3998],"delegation":[12680,11082,15138,2998],"delegatorTokens":9999999938793}},{"ix":122,"action":{"kind":"Delegate","val":0,"amt":2892},"partialState":{"h":16,"t":96,"tokens":[16572,12082,16138,3998],"delegation":[15572,11082,15138,2998],"delegatorTokens":9999999935901}},{"ix":123,"action":{"kind":"Deliver","chain":"provider","numPackets":6},"partialState":{"h":16,"t":96,"tokens":[16572,12082,16138,3998],"delegation":[15572,11082,15138,2998],"delegatorTokens":9999999935901,"jailed":[1000000000000041,null,null,null],"status":["unbonding","bonded","bonded","unbonded"]}},{"ix":124,"action":{"kind":"Undelegate","val":3,"amt":4716},"partialState":{"h":16,"t":96,"tokens":[16572,12082,16138,3998],"delegation":[15572,11082,15138,2998],"delegatorTokens":9999999935901}},{"ix":125,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":12,"t":72,"consumerPower":[null,8009,10627,null],"outstandingDowntime":[false,false,true,true]}},{"ix":126,"action":{"kind":"Deliver","chain":"consumer","numPackets":6},"partialState":{"h":12,"t":72,"consumerPower":[null,8009,10627,null],"outstandingDowntime":[false,false,true,true]}},{"ix":127,"action":{"kind":"Delegate","val":0,"amt":4349},"partialState":{"h":16,"t":96,"tokens":[20921,12082,16138,3998],"delegation":[19921,11082,15138,2998],"delegatorTokens":9999999931552}},{"ix":128,"action":{"kind":"Delegate","val":2,"amt":1765},"partialState":{"h":16,"t":96,"tokens":[20921,12082,17903,3998],"delegation":[19921,11082,16903,2998],"delegatorTokens":9999999929787}},{"ix":129,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":130,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":131,"action":{"kind":"Deliver","chain":"provider","numPackets":3},"partialState":{"h":16,"t":96,"tokens":[20921,12082,17903,3998],"delegation":[19921,11082,16903,2998],"delegatorTokens":9999999929787,"jailed":[1000000000000041,null,null,null],"status":["unbonding","bonded","bonded","unbonded"]}},{"ix":132,"action":{"kind":"Delegate","val":2,"amt":4090},"partialState":{"h":16,"t":96,"tokens":[20921,12082,21993,3998],"delegation":[19921,11082,20993,2998],"delegatorTokens":9999999925697}},{"ix":133,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":134,"action":{"kind":"Undelegate","val":1,"amt":1852},"partialState":{"h":16,"t":96,"tokens":[20921,10230,21993,3998],"delegation":[19921,9230,20993,2998],"delegatorTokens":9999999925697}},{"ix":135,"action":{"kind":"Delegate","val":2,"amt":2876},"partialState":{"h":16,"t":96,"tokens":[20921,10230,24869,3998],"delegation":[19921,9230,23869,2998],"delegatorTokens":9999999922821}},{"ix":136,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":13,"t":78,"consumerPower":[null,8009,10627,null],"outstandingDowntime":[false,false,true,true]}},{"ix":137,"action":{"kind":"Delegate","val":2,"amt":1884},"partialState":{"h":16,"t":96,"tokens":[20921,10230,26753,3998],"delegation":[19921,9230,25753,2998],"delegatorTokens":9999999920937}},{"ix":138,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":139,"action":{"kind":"Deliver","chain":"consumer","numPackets":1},"partialState":{"h":13,"t":78,"consumerPower":[null,8009,10627,null],"outstandingDowntime":[false,false,true,true]}},{"ix":140,"action":{"kind":"Undelegate","val":1,"amt":4529},"partialState":{"h":16,"t":96,"tokens":[20921,5701,26753,3998],"delegation":[19921,4701,25753,2998],"delegatorTokens":9999999920937}},{"ix":141,"action":{"kind":"Deliver","chain":"provider","numPackets":1},"partialState":{"h":16,"t":96,"tokens":[20921,5701,26753,3998],"delegation":[19921,4701,25753,2998],"delegatorTokens":9999999920937,"jailed":[1000000000000041,null,null,null],"status":["unbonding","bonded","bonded","unbonded"]}},{"ix":142,"action":{"kind":"Delegate","val":2,"amt":1263},"partialState":{"h":16,"t":96,"tokens":[20921,5701,28016,3998],"delegation":[19921,4701,27016,2998],"delegatorTokens":9999999919674}},{"ix":143,"action":{"kind":"Deliver","chain":"provider","numPackets":5},"partialState":{"h":16,"t":96,"tokens":[20921,5701,28016,3998],"delegation":[19921,4701,27016,2998],"delegatorTokens":9999999919674,"jailed":[1000000000000041,null,null,null],"status":["unbonding","bonded","bonded","unbonded"]}},{"ix":144,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":14,"t":84,"consumerPower":[null,8009,10627,null],"outstandingDowntime":[false,false,true,true]}},{"ix":145,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":146,"action":{"kind":"Undelegate","val":2,"amt":1873},"partialState":{"h":16,"t":96,"tokens":[20921,5701,26143,3998],"delegation":[19921,4701,25143,2998],"delegatorTokens":9999999919674}},{"ix":147,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":148,"action":{"kind":"Delegate","val":1,"amt":2558},"partialState":{"h":16,"t":96,"tokens":[20921,8259,26143,3998],"delegation":[19921,7259,25143,2998],"delegatorTokens":9999999917116}},{"ix":149,"action":{"kind":"Delegate","val":3,"amt":2168},"partialState":{"h":16,"t":96,"tokens":[20921,8259,26143,6166],"delegation":[19921,7259,25143,5166],"delegatorTokens":9999999914948}},{"ix":150,"action":{"kind":"Delegate","val":0,"amt":4837},"partialState":{"h":16,"t":96,"tokens":[25758,8259,26143,6166],"delegation":[24758,7259,25143,5166],"delegatorTokens":9999999910111}},{"ix":151,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":152,"action":{"kind":"Deliver","chain":"consumer","numPackets":2},"partialState":{"h":14,"t":84,"consumerPower":[null,8009,10627,null],"outstandingDowntime":[false,false,true,true]}},{"ix":153,"action":{"kind":"Deliver","chain":"provider","numPackets":5},"partialState":{"h":16,"t":96,"tokens":[25758,8259,26143,6166],"delegation":[24758,7259,25143,5166],"delegatorTokens":9999999910111,"jailed":[1000000000000041,null,null,null],"status":["unbonding","bonded","bonded","unbonded"]}},{"ix":154,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":17,"t":102,"tokens":[25758,8259,26143,6166],"delegation":[24758,7259,25143,5166],"delegatorTokens":9999999913000,"jailed":[1000000000000041,null,null,null],"status":["unbonding","bonded","bonded","unbonded"]}},{"ix":155,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":18,"t":108,"tokens":[25758,8259,26143,6166],"delegation":[24758,7259,25143,5166],"delegatorTokens":9999999913000,"jailed":[1000000000000041,null,null,null],"status":["unbonding","bonded","bonded","unbonded"]}},{"ix":156,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":157,"action":{"kind":"Undelegate","val":2,"amt":1428},"partialState":{"h":18,"t":108,"tokens":[25758,8259,24715,6166],"delegation":[24758,7259,23715,5166],"delegatorTokens":9999999913000}},{"ix":158,"action":{"kind":"Undelegate","val":1,"amt":4839},"partialState":{"h":18,"t":108,"tokens":[25758,3420,24715,6166],"delegation":[24758,2420,23715,5166],"delegatorTokens":9999999913000}},{"ix":159,"action":{"kind":"Delegate","val":1,"amt":1498},"partialState":{"h":18,"t":108,"tokens":[25758,4918,24715,6166],"delegation":[24758,3918,23715,5166],"delegatorTokens":9999999911502}},{"ix":160,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":161,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":162,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":163,"action":{"kind":"Deliver","chain":"provider","numPackets":2},"partialState":{"h":18,"t":108,"tokens":[25758,4918,24715,6166],"delegation":[24758,3918,23715,5166],"delegatorTokens":9999999911502,"jailed":[1000000000000041,null,null,null],"status":["unbonding","bonded","bonded","unbonded"]}},{"ix":164,"action":{"kind":"Undelegate","val":2,"amt":1873},"partialState":{"h":18,"t":108,"tokens":[25758,4918,22842,6166],"delegation":[24758,3918,21842,5166],"delegatorTokens":9999999911502}},{"ix":165,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":15,"t":90,"consumerPower":[null,8009,10627,null],"outstandingDowntime":[false,false,true,true]}},{"ix":166,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":16,"t":96,"consumerPower":[null,8009,10627,null],"outstandingDowntime":[false,false,true,true]}},{"ix":167,"action":{"kind":"Deliver","chain":"consumer","numPackets":2},"partialState":{"h":16,"t":96,"consumerPower":[null,8009,10627,null],"outstandingDowntime":[false,false,true,true]}},{"ix":168,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":169,"action":{"kind":"Delegate","val":0,"amt":2517},"partialState":{"h":18,"t":108,"tokens":[28275,4918,22842,6166],"delegation":[27275,3918,21842,5166],"delegatorTokens":9999999908985}},{"ix":170,"action":{"kind":"Deliver","chain":"consumer","numPackets":3},"partialState":{"h":16,"t":96,"consumerPower":[null,8009,10627,null],"outstandingDowntime":[false,false,true,true]}},{"ix":171,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":17,"t":102,"consumerPower":[null,8259,26143,null],"outstandingDowntime":[false,false,true,true]}},{"ix":172,"action":{"kind":"Deliver","chain":"consumer","numPackets":2},"partialState":{"h":17,"t":102,"consumerPower":[null,8259,26143,null],"outstandingDowntime":[false,false,true,true]}},{"ix":173,"action":{"kind":"Delegate","val":2,"amt":1654},"partialState":{"h":18,"t":108,"tokens":[28275,4918,24496,6166],"delegation":[27275,3918,23496,5166],"delegatorTokens":9999999907331}},{"ix":174,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":19,"t":114,"tokens":[28275,4918,24496,6166],"delegation":[27275,3918,23496,5166],"delegatorTokens":9999999907331,"jailed":[1000000000000041,null,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":175,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":20,"t":120,"tokens":[28275,4918,24496,6166],"delegation":[27275,3918,23496,5166],"delegatorTokens":9999999907331,"jailed":[1000000000000041,null,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":176,"action":{"kind":"Undelegate","val":2,"amt":2000},"partialState":{"h":20,"t":120,"tokens":[28275,4918,22496,6166],"delegation":[27275,3918,21496,5166],"delegatorTokens":9999999907331}},{"ix":177,"action":{"kind":"Deliver","chain":"provider","numPackets":4},"partialState":{"h":20,"t":120,"tokens":[28275,4918,22496,6166],"delegation":[27275,3918,21496,5166],"delegatorTokens":9999999907331,"jailed":[1000000000000041,null,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":178,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":21,"t":126,"tokens":[28275,4918,22496,6166],"delegation":[27275,3918,21496,5166],"delegatorTokens":9999999910147,"jailed":[1000000000000041,null,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":179,"action":{"kind":"Undelegate","val":3,"amt":4116},"partialState":{"h":21,"t":126,"tokens":[28275,4918,22496,2050],"delegation":[27275,3918,21496,1050],"delegatorTokens":9999999910147}},{"ix":180,"action":{"kind":"Delegate","val":2,"amt":2813},"partialState":{"h":21,"t":126,"tokens":[28275,4918,25309,2050],"delegation":[27275,3918,24309,1050],"delegatorTokens":9999999907334}},{"ix":181,"action":{"kind":"Deliver","chain":"consumer","numPackets":6},"partialState":{"h":17,"t":102,"consumerPower":[null,8259,26143,null],"outstandingDowntime":[false,false,true,true]}},{"ix":182,"action":{"kind":"Delegate","val":3,"amt":2710},"partialState":{"h":21,"t":126,"tokens":[28275,4918,25309,4760],"delegation":[27275,3918,24309,3760],"delegatorTokens":9999999904624}},{"ix":183,"action":{"kind":"Undelegate","val":3,"amt":3612},"partialState":{"h":21,"t":126,"tokens":[28275,4918,25309,1148],"delegation":[27275,3918,24309,148],"delegatorTokens":9999999904624}},{"ix":184,"action":{"kind":"Undelegate","val":0,"amt":1043},"partialState":{"h":21,"t":126,"tokens":[27232,4918,25309,1148],"delegation":[26232,3918,24309,148],"delegatorTokens":9999999904624}},{"ix":185,"action":{"kind":"Undelegate","val":0,"amt":1410},"partialState":{"h":21,"t":126,"tokens":[25822,4918,25309,1148],"delegation":[24822,3918,24309,148],"delegatorTokens":9999999904624}},{"ix":186,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":18,"t":108,"consumerPower":[null,null,24496,6166],"outstandingDowntime":[false,false,true,true]}},{"ix":187,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":22,"t":132,"tokens":[25822,4918,25309,1148],"delegation":[24822,3918,24309,148],"delegatorTokens":9999999904624,"jailed":[1000000000000041,null,null,null],"status":["unbonded","bonded","bonded","unbonding"]}},{"ix":188,"action":{"kind":"Undelegate","val":3,"amt":3347},"partialState":{"h":22,"t":132,"tokens":[25822,4918,25309,1148],"delegation":[24822,3918,24309,148],"delegatorTokens":9999999904624}},{"ix":189,"action":{"kind":"Deliver","chain":"consumer","numPackets":1},"partialState":{"h":18,"t":108,"consumerPower":[null,null,24496,6166],"outstandingDowntime":[false,false,true,true]}},{"ix":190,"action":{"kind":"Deliver","chain":"consumer","numPackets":4},"partialState":{"h":18,"t":108,"consumerPower":[null,null,24496,6166],"outstandingDowntime":[false,false,true,true]}},{"ix":191,"action":{"kind":"Deliver","chain":"provider","numPackets":4},"partialState":{"h":22,"t":132,"tokens":[25822,4918,25309,1148],"delegation":[24822,3918,24309,148],"delegatorTokens":9999999904624,"jailed":[1000000000000041,null,null,null],"status":["unbonded","bonded","bonded","unbonding"]}},{"ix":192,"action":{"kind":"Undelegate","val":0,"amt":2085},"partialState":{"h":22,"t":132,"tokens":[23737,4918,25309,1148],"delegation":[22737,3918,24309,148],"delegatorTokens":9999999904624}},{"ix":193,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":194,"action":{"kind":"Delegate","val":2,"amt":1303},"partialState":{"h":22,"t":132,"tokens":[23737,4918,26612,1148],"delegation":[22737,3918,25612,148],"delegatorTokens":9999999903321}},{"ix":195,"action":{"kind":"Undelegate","val":3,"amt":4086},"partialState":{"h":22,"t":132,"tokens":[23737,4918,26612,1148],"delegation":[22737,3918,25612,148],"delegatorTokens":9999999903321}},{"ix":196,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":19,"t":114,"consumerPower":[null,null,22496,6166],"outstandingDowntime":[false,false,true,true]}},{"ix":197,"action":{"kind":"Deliver","chain":"provider","numPackets":1},"partialState":{"h":22,"t":132,"tokens":[23737,4918,26612,1148],"delegation":[22737,3918,25612,148],"delegatorTokens":9999999903321,"jailed":[1000000000000041,null,null,null],"status":["unbonded","bonded","bonded","unbonding"]}},{"ix":198,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":23,"t":138,"tokens":[23737,4918,26612,1148],"delegation":[22737,3918,25612,148],"delegatorTokens":9999999909115,"jailed":[1000000000000041,null,null,null],"status":["unbonded","bonded","bonded","unbonding"]}},{"ix":199,"action":{"kind":"Delegate","val":0,"amt":1799},"partialState":{"h":23,"t":138,"tokens":[25536,4918,26612,1148],"delegation":[24536,3918,25612,148],"delegatorTokens":9999999907316}}],"events":["send_double_sign_slash_request","insufficient_shares","insufficient_shares","send_vsc_not_because_change","send_vsc_without_downtime_ack","insufficient_shares","send_downtime_slash_request","send_downtime_slash_request","send_vsc_not_because_change","send_vsc_without_downtime_ack","send_double_sign_slash_request","send_double_sign_slash_request","send_double_sign_slash_request","receive_double_sign_slash_request","insufficient_shares","insufficient_shares","send_vsc_without_downtime_ack","send_downtime_slash_request","send_vsc_without_downtime_ack","insufficient_shares","receive_double_sign_slash_request","consumer_update_val","insufficient_shares","receive_slash_request_unbonded","receive_downtime_slash_request","jail","send_vsc_with_downtime_ack","send_vsc_without_downtime_ack","insufficient_shares","insufficient_shares","consumer_update_val","receive_downtime_slash_ack","send_vsc_without_downtime_ack","insufficient_shares","insufficient_shares","receive_double_sign_slash_request","receive_double_sign_slash_request","insufficient_shares","consumer_update_val","consumer_del_val","consumer_add_val","insufficient_shares","insufficient_shares","receive_slash_request_unbonded","send_vsc_without_downtime_ack","send_vsc_without_downtime_ack","some_undels_expired_but_not_completed","send_vsc_not_because_change","send_vsc_without_downtime_ack","some_undels_expired_but_not_completed","send_vsc_without_downtime_ack","consumer_update_val","consumer_update_val","insufficient_shares","consumer_send_maturation","consumer_send_maturation","consumer_send_maturation","some_undels_expired_but_not_completed","complete_undel_immediate","complete_undel_immediate","send_vsc_without_downtime_ack","consumer_send_maturation","consumer_send_maturation","consumer_send_maturation","consumer_send_maturation","consumer_update_val","consumer_update_val","send_vsc_without_downtime_ack","some_undels_expired_but_not_completed","complete_undel_immediate","complete_undel_immediate","set_unval_hold_false","send_vsc_without_downtime_ack","consumer_del_val","consumer_update_val","consumer_add_val","rebond_unval","complete_unval_in_endblock","some_undels_expired_but_not_completed","send_vsc_without_downtime_ack","insufficient_shares","insufficient_shares","consumer_send_maturation","consumer_send_maturation","consumer_update_val","complete_undel_immediate","complete_undel_immediate","send_vsc_without_downtime_ack"]},{"meta":{"commit":"7ffd0c04e4205cbc9caf212abfe6c59ee43153bf"},"constants":{"P":"provider","C":"consumer","UNBONDING_SECONDS_P":70,"UNBONDING_SECONDS_C":50,"TRUSTING_SECONDS":49,"NUM_VALIDATORS":4,"MAX_VALIDATORS":2,"SLASH_DOUBLESIGN":0,"SLASH_DOWNTIME":0,"JAIL_SECONDS":999999999999999,"BLOCK_SECONDS":6,"INITIAL_DELEGATOR_TOKENS":10000000000000,"DELEGATE_AMT_MIN":1000,"DELEGATE_AMT_MAX":5000,"UNDELEGATE_AMT_MIN":1000,"UNDELEGATE_AMT_MAX":5000,"ISDOWNTIME_PROBABILITY":0.5,"MAX_NUM_PACKETS_FOR_DELIVER":6},"actions":[{"ix":0,"action":{"kind":"Undelegate","val":3,"amt":3617},"partialState":{"h":1,"t":6,"tokens":[5000,4000,3000,2000],"delegation":[4000,3000,2000,1000],"delegatorTokens":10000000000000}},{"ix":1,"action":{"kind":"Delegate","val":0,"amt":3677},"partialState":{"h":1,"t":6,"tokens":[8677,4000,3000,2000],"delegation":[7677,3000,2000,1000],"delegatorTokens":9999999996323}},{"ix":2,"action":{"kind":"ConsumerSlash","val":0,"infractionHeight":0,"isDowntime":false},"partialState":{"h":1,"t":6,"outstandingDowntime":[false,false,false,false]}},{"ix":3,"action":{"kind":"Undelegate","val":2,"amt":1435},"partialState":{"h":1,"t":6,"tokens":[8677,4000,1565,2000],"delegation":[7677,3000,565,1000],"delegatorTokens":9999999996323}},{"ix":4,"action":{"kind":"ConsumerSlash","val":0,"infractionHeight":0,"isDowntime":true},"partialState":{"h":1,"t":6,"outstandingDowntime":[true,false,false,false]}},{"ix":5,"action":{"kind":"ConsumerSlash","val":3,"infractionHeight":0,"isDowntime":true},"partialState":{"h":1,"t":6,"outstandingDowntime":[true,false,false,true]}},{"ix":6,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":2,"t":12,"tokens":[8677,4000,1565,2000],"delegation":[7677,3000,565,1000],"delegatorTokens":9999999996323,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":7,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":2,"t":12,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[true,false,false,true]}},{"ix":8,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":9,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":10,"action":{"kind":"Delegate","val":2,"amt":4450},"partialState":{"h":2,"t":12,"tokens":[8677,4000,6015,2000],"delegation":[7677,3000,5015,1000],"delegatorTokens":9999999991873}},{"ix":11,"action":{"kind":"Undelegate","val":1,"amt":1290},"partialState":{"h":2,"t":12,"tokens":[8677,2710,6015,2000],"delegation":[7677,1710,5015,1000],"delegatorTokens":9999999991873}},{"ix":12,"action":{"kind":"Deliver","chain":"consumer","numPackets":3},"partialState":{"h":2,"t":12,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[true,false,false,true]}},{"ix":13,"action":{"kind":"Undelegate","val":2,"amt":4810},"partialState":{"h":2,"t":12,"tokens":[8677,2710,1205,2000],"delegation":[7677,1710,205,1000],"delegatorTokens":9999999991873}},{"ix":14,"action":{"kind":"ConsumerSlash","val":2,"infractionHeight":0,"isDowntime":true},"partialState":{"h":2,"t":12,"outstandingDowntime":[true,false,true,true]}},{"ix":15,"action":{"kind":"Deliver","chain":"consumer","numPackets":1},"partialState":{"h":2,"t":12,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[true,false,true,true]}},{"ix":16,"action":{"kind":"Deliver","chain":"provider","numPackets":6},"partialState":{"h":2,"t":12,"tokens":[8677,2710,1205,2000],"delegation":[7677,1710,205,1000],"delegatorTokens":9999999991873,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":17,"action":{"kind":"Undelegate","val":1,"amt":2010},"partialState":{"h":2,"t":12,"tokens":[8677,2710,1205,2000],"delegation":[7677,1710,205,1000],"delegatorTokens":9999999991873}},{"ix":18,"action":{"kind":"Undelegate","val":1,"amt":4477},"partialState":{"h":2,"t":12,"tokens":[8677,2710,1205,2000],"delegation":[7677,1710,205,1000],"delegatorTokens":9999999991873}},{"ix":19,"action":{"kind":"Deliver","chain":"provider","numPackets":2},"partialState":{"h":2,"t":12,"tokens":[8677,2710,1205,2000],"delegation":[7677,1710,205,1000],"delegatorTokens":9999999991873,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":20,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":3,"t":18,"tokens":[8677,2710,1205,2000],"delegation":[7677,1710,205,1000],"delegatorTokens":9999999991873,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":21,"action":{"kind":"Deliver","chain":"consumer","numPackets":4},"partialState":{"h":2,"t":12,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[true,false,true,true]}},{"ix":22,"action":{"kind":"Undelegate","val":1,"amt":1360},"partialState":{"h":3,"t":18,"tokens":[8677,1350,1205,2000],"delegation":[7677,350,205,1000],"delegatorTokens":9999999991873}},{"ix":23,"action":{"kind":"Delegate","val":1,"amt":4050},"partialState":{"h":3,"t":18,"tokens":[8677,5400,1205,2000],"delegation":[7677,4400,205,1000],"delegatorTokens":9999999987823}},{"ix":24,"action":{"kind":"Deliver","chain":"consumer","numPackets":5},"partialState":{"h":2,"t":12,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[true,false,true,true]}},{"ix":25,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":3,"t":18,"consumerPower":[8677,4000,null,null],"outstandingDowntime":[true,false,true,true]}},{"ix":26,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":4,"t":24,"consumerPower":[8677,4000,null,null],"outstandingDowntime":[true,false,true,true]}},{"ix":27,"action":{"kind":"Delegate","val":3,"amt":2938},"partialState":{"h":3,"t":18,"tokens":[8677,5400,1205,4938],"delegation":[7677,4400,205,3938],"delegatorTokens":9999999984885}},{"ix":28,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":5,"t":30,"consumerPower":[8677,4000,null,null],"outstandingDowntime":[true,false,true,true]}},{"ix":29,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":30,"action":{"kind":"Deliver","chain":"provider","numPackets":3},"partialState":{"h":3,"t":18,"tokens":[8677,5400,1205,4938],"delegation":[7677,4400,205,3938],"delegatorTokens":9999999984885,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":31,"action":{"kind":"Delegate","val":1,"amt":1081},"partialState":{"h":3,"t":18,"tokens":[8677,6481,1205,4938],"delegation":[7677,5481,205,3938],"delegatorTokens":9999999983804}},{"ix":32,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":4,"t":24,"tokens":[8677,6481,1205,4938],"delegation":[7677,5481,205,3938],"delegatorTokens":9999999983804,"jailed":[1000000000000017,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":33,"action":{"kind":"Delegate","val":1,"amt":4422},"partialState":{"h":4,"t":24,"tokens":[8677,10903,1205,4938],"delegation":[7677,9903,205,3938],"delegatorTokens":9999999979382}},{"ix":34,"action":{"kind":"Undelegate","val":1,"amt":2152},"partialState":{"h":4,"t":24,"tokens":[8677,8751,1205,4938],"delegation":[7677,7751,205,3938],"delegatorTokens":9999999979382}},{"ix":35,"action":{"kind":"Delegate","val":3,"amt":2790},"partialState":{"h":4,"t":24,"tokens":[8677,8751,1205,7728],"delegation":[7677,7751,205,6728],"delegatorTokens":9999999976592}},{"ix":36,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":5,"t":30,"tokens":[8677,8751,1205,7728],"delegation":[7677,7751,205,6728],"delegatorTokens":9999999976592,"jailed":[1000000000000017,null,null,null],"status":["unbonding","bonded","unbonded","bonded"]}},{"ix":37,"action":{"kind":"Deliver","chain":"consumer","numPackets":1},"partialState":{"h":5,"t":30,"consumerPower":[8677,4000,null,null],"outstandingDowntime":[true,false,true,true]}},{"ix":38,"action":{"kind":"Undelegate","val":2,"amt":2141},"partialState":{"h":5,"t":30,"tokens":[8677,8751,1205,7728],"delegation":[7677,7751,205,6728],"delegatorTokens":9999999976592}},{"ix":39,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":6,"t":36,"tokens":[8677,8751,1205,7728],"delegation":[7677,7751,205,6728],"delegatorTokens":9999999976592,"jailed":[1000000000000017,null,null,null],"status":["unbonding","bonded","unbonded","bonded"]}},{"ix":40,"action":{"kind":"Delegate","val":1,"amt":1995},"partialState":{"h":6,"t":36,"tokens":[8677,10746,1205,7728],"delegation":[7677,9746,205,6728],"delegatorTokens":9999999974597}},{"ix":41,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":42,"action":{"kind":"Delegate","val":1,"amt":1543},"partialState":{"h":6,"t":36,"tokens":[8677,12289,1205,7728],"delegation":[7677,11289,205,6728],"delegatorTokens":9999999973054}},{"ix":43,"action":{"kind":"Deliver","chain":"consumer","numPackets":4},"partialState":{"h":5,"t":30,"consumerPower":[8677,4000,null,null],"outstandingDowntime":[false,false,true,true]}},{"ix":44,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":45,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":7,"t":42,"tokens":[8677,12289,1205,7728],"delegation":[7677,11289,205,6728],"delegatorTokens":9999999973054,"jailed":[1000000000000017,null,null,null],"status":["unbonding","bonded","unbonded","bonded"]}},{"ix":46,"action":{"kind":"Delegate","val":3,"amt":4748},"partialState":{"h":7,"t":42,"tokens":[8677,12289,1205,12476],"delegation":[7677,11289,205,11476],"delegatorTokens":9999999968306}},{"ix":47,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":6,"t":36,"consumerPower":[null,8751,null,7728],"outstandingDowntime":[false,false,true,true]}},{"ix":48,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":7,"t":42,"consumerPower":[null,8751,null,7728],"outstandingDowntime":[false,false,true,true]}},{"ix":49,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":50,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":8,"t":48,"tokens":[8677,12289,1205,12476],"delegation":[7677,11289,205,11476],"delegatorTokens":9999999968306,"jailed":[1000000000000017,null,null,null],"status":["unbonding","bonded","unbonded","bonded"]}},{"ix":51,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":9,"t":54,"tokens":[8677,12289,1205,12476],"delegation":[7677,11289,205,11476],"delegatorTokens":9999999968306,"jailed":[1000000000000017,null,null,null],"status":["unbonding","bonded","unbonded","bonded"]}},{"ix":52,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":8,"t":48,"consumerPower":[null,8751,null,7728],"outstandingDowntime":[false,false,true,true]}},{"ix":53,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":54,"action":{"kind":"Delegate","val":0,"amt":4975},"partialState":{"h":9,"t":54,"tokens":[13652,12289,1205,12476],"delegation":[12652,11289,205,11476],"delegatorTokens":9999999963331}},{"ix":55,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":9,"t":54,"consumerPower":[null,8751,null,7728],"outstandingDowntime":[false,false,true,true]}},{"ix":56,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":57,"action":{"kind":"Delegate","val":3,"amt":2238},"partialState":{"h":9,"t":54,"tokens":[13652,12289,1205,14714],"delegation":[12652,11289,205,13714],"delegatorTokens":9999999961093}},{"ix":58,"action":{"kind":"Deliver","chain":"provider","numPackets":6},"partialState":{"h":9,"t":54,"tokens":[13652,12289,1205,14714],"delegation":[12652,11289,205,13714],"delegatorTokens":9999999961093,"jailed":[1000000000000017,null,null,null],"status":["unbonding","bonded","unbonded","bonded"]}},{"ix":59,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":60,"action":{"kind":"Undelegate","val":0,"amt":3634},"partialState":{"h":9,"t":54,"tokens":[10018,12289,1205,14714],"delegation":[9018,11289,205,13714],"delegatorTokens":9999999961093}},{"ix":61,"action":{"kind":"Delegate","val":0,"amt":3779},"partialState":{"h":9,"t":54,"tokens":[13797,12289,1205,14714],"delegation":[12797,11289,205,13714],"delegatorTokens":9999999957314}},{"ix":62,"action":{"kind":"Undelegate","val":1,"amt":4994},"partialState":{"h":9,"t":54,"tokens":[13797,7295,1205,14714],"delegation":[12797,6295,205,13714],"delegatorTokens":9999999957314}},{"ix":63,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":10,"t":60,"consumerPower":[null,8751,null,7728],"outstandingDowntime":[false,false,true,true]}},{"ix":64,"action":{"kind":"Deliver","chain":"provider","numPackets":6},"partialState":{"h":9,"t":54,"tokens":[13797,7295,1205,14714],"delegation":[12797,6295,205,13714],"delegatorTokens":9999999957314,"jailed":[1000000000000017,null,null,null],"status":["unbonding","bonded","unbonded","bonded"]}},{"ix":65,"action":{"kind":"Undelegate","val":2,"amt":1812},"partialState":{"h":9,"t":54,"tokens":[13797,7295,1205,14714],"delegation":[12797,6295,205,13714],"delegatorTokens":9999999957314}},{"ix":66,"action":{"kind":"Undelegate","val":2,"amt":4323},"partialState":{"h":9,"t":54,"tokens":[13797,7295,1205,14714],"delegation":[12797,6295,205,13714],"delegatorTokens":9999999957314}},{"ix":67,"action":{"kind":"Undelegate","val":0,"amt":2730},"partialState":{"h":9,"t":54,"tokens":[11067,7295,1205,14714],"delegation":[10067,6295,205,13714],"delegatorTokens":9999999957314}},{"ix":68,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":69,"action":{"kind":"Delegate","val":0,"amt":4100},"partialState":{"h":9,"t":54,"tokens":[15167,7295,1205,14714],"delegation":[14167,6295,205,13714],"delegatorTokens":9999999953214}},{"ix":70,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":71,"action":{"kind":"Undelegate","val":1,"amt":1839},"partialState":{"h":9,"t":54,"tokens":[15167,5456,1205,14714],"delegation":[14167,4456,205,13714],"delegatorTokens":9999999953214}},{"ix":72,"action":{"kind":"Deliver","chain":"consumer","numPackets":3},"partialState":{"h":10,"t":60,"consumerPower":[null,8751,null,7728],"outstandingDowntime":[false,false,true,true]}},{"ix":73,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":74,"action":{"kind":"Deliver","chain":"consumer","numPackets":5},"partialState":{"h":10,"t":60,"consumerPower":[null,8751,null,7728],"outstandingDowntime":[false,false,true,true]}},{"ix":75,"action":{"kind":"Delegate","val":1,"amt":1445},"partialState":{"h":9,"t":54,"tokens":[15167,6901,1205,14714],"delegation":[14167,5901,205,13714],"delegatorTokens":9999999951769}},{"ix":76,"action":{"kind":"Delegate","val":1,"amt":1709},"partialState":{"h":9,"t":54,"tokens":[15167,8610,1205,14714],"delegation":[14167,7610,205,13714],"delegatorTokens":9999999950060}},{"ix":77,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":78,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":79,"action":{"kind":"Deliver","chain":"consumer","numPackets":5},"partialState":{"h":10,"t":60,"consumerPower":[null,8751,null,7728],"outstandingDowntime":[false,false,true,true]}},{"ix":80,"action":{"kind":"Delegate","val":2,"amt":4276},"partialState":{"h":9,"t":54,"tokens":[15167,8610,5481,14714],"delegation":[14167,7610,4481,13714],"delegatorTokens":9999999945784}},{"ix":81,"action":{"kind":"Undelegate","val":1,"amt":1047},"partialState":{"h":9,"t":54,"tokens":[15167,7563,5481,14714],"delegation":[14167,6563,4481,13714],"delegatorTokens":9999999945784}},{"ix":82,"action":{"kind":"Undelegate","val":3,"amt":3283},"partialState":{"h":9,"t":54,"tokens":[15167,7563,5481,11431],"delegation":[14167,6563,4481,10431],"delegatorTokens":9999999945784}},{"ix":83,"action":{"kind":"Undelegate","val":1,"amt":3809},"partialState":{"h":9,"t":54,"tokens":[15167,3754,5481,11431],"delegation":[14167,2754,4481,10431],"delegatorTokens":9999999945784}},{"ix":84,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":85,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":11,"t":66,"consumerPower":[null,12289,null,12476],"outstandingDowntime":[false,false,true,true]}},{"ix":86,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":87,"action":{"kind":"Delegate","val":2,"amt":1085},"partialState":{"h":9,"t":54,"tokens":[15167,3754,6566,11431],"delegation":[14167,2754,5566,10431],"delegatorTokens":9999999944699}},{"ix":88,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":89,"action":{"kind":"Delegate","val":1,"amt":1375},"partialState":{"h":9,"t":54,"tokens":[15167,5129,6566,11431],"delegation":[14167,4129,5566,10431],"delegatorTokens":9999999943324}},{"ix":90,"action":{"kind":"Undelegate","val":2,"amt":4819},"partialState":{"h":9,"t":54,"tokens":[15167,5129,1747,11431],"delegation":[14167,4129,747,10431],"delegatorTokens":9999999943324}},{"ix":91,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":10,"t":60,"tokens":[15167,5129,1747,11431],"delegation":[14167,4129,747,10431],"delegatorTokens":9999999943324,"jailed":[1000000000000017,null,null,null],"status":["unbonding","bonded","unbonded","bonded"]}},{"ix":92,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":11,"t":66,"tokens":[15167,5129,1747,11431],"delegation":[14167,4129,747,10431],"delegatorTokens":9999999943324,"jailed":[1000000000000017,null,null,null],"status":["unbonding","bonded","unbonded","bonded"]}},{"ix":93,"action":{"kind":"Deliver","chain":"provider","numPackets":3},"partialState":{"h":11,"t":66,"tokens":[15167,5129,1747,11431],"delegation":[14167,4129,747,10431],"delegatorTokens":9999999943324,"jailed":[1000000000000017,null,null,null],"status":["unbonding","bonded","unbonded","bonded"]}},{"ix":94,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":12,"t":72,"consumerPower":[null,12289,null,12476],"outstandingDowntime":[false,false,true,true]}},{"ix":95,"action":{"kind":"Undelegate","val":0,"amt":2750},"partialState":{"h":11,"t":66,"tokens":[12417,5129,1747,11431],"delegation":[11417,4129,747,10431],"delegatorTokens":9999999943324}},{"ix":96,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":12,"t":72,"tokens":[12417,5129,1747,11431],"delegation":[11417,4129,747,10431],"delegatorTokens":9999999943324,"jailed":[1000000000000017,null,null,null],"status":["unbonding","bonded","unbonded","bonded"]}},{"ix":97,"action":{"kind":"Delegate","val":2,"amt":4525},"partialState":{"h":12,"t":72,"tokens":[12417,5129,6272,11431],"delegation":[11417,4129,5272,10431],"delegatorTokens":9999999938799}},{"ix":98,"action":{"kind":"Delegate","val":1,"amt":2437},"partialState":{"h":12,"t":72,"tokens":[12417,7566,6272,11431],"delegation":[11417,6566,5272,10431],"delegatorTokens":9999999936362}},{"ix":99,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":13,"t":78,"tokens":[12417,7566,6272,11431],"delegation":[11417,6566,5272,10431],"delegatorTokens":9999999936362,"jailed":[1000000000000017,null,null,null],"status":["unbonding","bonded","unbonded","bonded"]}},{"ix":100,"action":{"kind":"Deliver","chain":"provider","numPackets":3},"partialState":{"h":13,"t":78,"tokens":[12417,7566,6272,11431],"delegation":[11417,6566,5272,10431],"delegatorTokens":9999999936362,"jailed":[1000000000000017,null,null,null],"status":["unbonding","bonded","unbonded","bonded"]}},{"ix":101,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":102,"action":{"kind":"Undelegate","val":3,"amt":4711},"partialState":{"h":13,"t":78,"tokens":[12417,7566,6272,6720],"delegation":[11417,6566,5272,5720],"delegatorTokens":9999999936362}},{"ix":103,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":104,"action":{"kind":"Delegate","val":0,"amt":3231},"partialState":{"h":13,"t":78,"tokens":[15648,7566,6272,6720],"delegation":[14648,6566,5272,5720],"delegatorTokens":9999999933131}},{"ix":105,"action":{"kind":"Delegate","val":2,"amt":2759},"partialState":{"h":13,"t":78,"tokens":[15648,7566,9031,6720],"delegation":[14648,6566,8031,5720],"delegatorTokens":9999999930372}},{"ix":106,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":107,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":108,"action":{"kind":"Undelegate","val":1,"amt":4891},"partialState":{"h":13,"t":78,"tokens":[15648,2675,9031,6720],"delegation":[14648,1675,8031,5720],"delegatorTokens":9999999930372}},{"ix":109,"action":{"kind":"Undelegate","val":3,"amt":2605},"partialState":{"h":13,"t":78,"tokens":[15648,2675,9031,4115],"delegation":[14648,1675,8031,3115],"delegatorTokens":9999999930372}},{"ix":110,"action":{"kind":"Delegate","val":3,"amt":2914},"partialState":{"h":13,"t":78,"tokens":[15648,2675,9031,7029],"delegation":[14648,1675,8031,6029],"delegatorTokens":9999999927458}},{"ix":111,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":112,"action":{"kind":"Deliver","chain":"provider","numPackets":5},"partialState":{"h":13,"t":78,"tokens":[15648,2675,9031,7029],"delegation":[14648,1675,8031,6029],"delegatorTokens":9999999927458,"jailed":[1000000000000017,null,null,null],"status":["unbonding","bonded","unbonded","bonded"]}},{"ix":113,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":14,"t":84,"tokens":[15648,2675,9031,7029],"delegation":[14648,1675,8031,6029],"delegatorTokens":9999999927458,"jailed":[1000000000000017,null,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":114,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":115,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":15,"t":90,"tokens":[15648,2675,9031,7029],"delegation":[14648,1675,8031,6029],"delegatorTokens":9999999927458,"jailed":[1000000000000017,null,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":116,"action":{"kind":"Delegate","val":1,"amt":1738},"partialState":{"h":15,"t":90,"tokens":[15648,4413,9031,7029],"delegation":[14648,3413,8031,6029],"delegatorTokens":9999999925720}},{"ix":117,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":13,"t":78,"consumerPower":[null,12289,null,12476],"outstandingDowntime":[false,false,true,true]}},{"ix":118,"action":{"kind":"Undelegate","val":1,"amt":4171},"partialState":{"h":15,"t":90,"tokens":[15648,4413,9031,7029],"delegation":[14648,3413,8031,6029],"delegatorTokens":9999999925720}},{"ix":119,"action":{"kind":"Undelegate","val":0,"amt":2319},"partialState":{"h":15,"t":90,"tokens":[13329,4413,9031,7029],"delegation":[12329,3413,8031,6029],"delegatorTokens":9999999925720}},{"ix":120,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":14,"t":84,"consumerPower":[null,12289,null,12476],"outstandingDowntime":[false,false,true,true]}},{"ix":121,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":15,"t":90,"consumerPower":[null,12289,null,12476],"outstandingDowntime":[false,false,true,true]}},{"ix":122,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":123,"action":{"kind":"Undelegate","val":0,"amt":4474},"partialState":{"h":15,"t":90,"tokens":[8855,4413,9031,7029],"delegation":[7855,3413,8031,6029],"delegatorTokens":9999999925720}},{"ix":124,"action":{"kind":"Delegate","val":3,"amt":1923},"partialState":{"h":15,"t":90,"tokens":[8855,4413,9031,8952],"delegation":[7855,3413,8031,7952],"delegatorTokens":9999999923797}},{"ix":125,"action":{"kind":"Deliver","chain":"consumer","numPackets":3},"partialState":{"h":15,"t":90,"consumerPower":[null,12289,null,12476],"outstandingDowntime":[false,false,true,true]}},{"ix":126,"action":{"kind":"Deliver","chain":"provider","numPackets":6},"partialState":{"h":15,"t":90,"tokens":[8855,4413,9031,8952],"delegation":[7855,3413,8031,7952],"delegatorTokens":9999999923797,"jailed":[1000000000000017,null,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":127,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":128,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":129,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":130,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":131,"action":{"kind":"Deliver","chain":"consumer","numPackets":1},"partialState":{"h":15,"t":90,"consumerPower":[null,12289,null,12476],"outstandingDowntime":[false,false,true,true]}},{"ix":132,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":16,"t":96,"tokens":[8855,4413,9031,8952],"delegation":[7855,3413,8031,7952],"delegatorTokens":9999999925232,"jailed":[1000000000000017,null,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":133,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":134,"action":{"kind":"Deliver","chain":"consumer","numPackets":3},"partialState":{"h":15,"t":90,"consumerPower":[null,12289,null,12476],"outstandingDowntime":[false,false,true,true]}},{"ix":135,"action":{"kind":"Deliver","chain":"consumer","numPackets":2},"partialState":{"h":15,"t":90,"consumerPower":[null,12289,null,12476],"outstandingDowntime":[false,false,true,true]}},{"ix":136,"action":{"kind":"Delegate","val":0,"amt":1031},"partialState":{"h":16,"t":96,"tokens":[9886,4413,9031,8952],"delegation":[8886,3413,8031,7952],"delegatorTokens":9999999924201}},{"ix":137,"action":{"kind":"Deliver","chain":"provider","numPackets":3},"partialState":{"h":16,"t":96,"tokens":[9886,4413,9031,8952],"delegation":[8886,3413,8031,7952],"delegatorTokens":9999999924201,"jailed":[1000000000000017,null,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":138,"action":{"kind":"Deliver","chain":"consumer","numPackets":1},"partialState":{"h":15,"t":90,"consumerPower":[null,12289,null,12476],"outstandingDowntime":[false,false,true,true]}},{"ix":139,"action":{"kind":"Delegate","val":1,"amt":2849},"partialState":{"h":16,"t":96,"tokens":[9886,7262,9031,8952],"delegation":[8886,6262,8031,7952],"delegatorTokens":9999999921352}},{"ix":140,"action":{"kind":"Undelegate","val":1,"amt":4828},"partialState":{"h":16,"t":96,"tokens":[9886,2434,9031,8952],"delegation":[8886,1434,8031,7952],"delegatorTokens":9999999921352}},{"ix":141,"action":{"kind":"Delegate","val":0,"amt":4861},"partialState":{"h":16,"t":96,"tokens":[14747,2434,9031,8952],"delegation":[13747,1434,8031,7952],"delegatorTokens":9999999916491}},{"ix":142,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":16,"t":96,"consumerPower":[null,null,9031,7029],"outstandingDowntime":[false,false,true,true]}},{"ix":143,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":144,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":17,"t":102,"tokens":[14747,2434,9031,8952],"delegation":[13747,1434,8031,7952],"delegatorTokens":9999999916491,"jailed":[1000000000000017,null,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":145,"action":{"kind":"Undelegate","val":3,"amt":3313},"partialState":{"h":17,"t":102,"tokens":[14747,2434,9031,5639],"delegation":[13747,1434,8031,4639],"delegatorTokens":9999999916491}},{"ix":146,"action":{"kind":"Deliver","chain":"consumer","numPackets":3},"partialState":{"h":16,"t":96,"consumerPower":[null,null,9031,7029],"outstandingDowntime":[false,false,true,true]}},{"ix":147,"action":{"kind":"Undelegate","val":1,"amt":2611},"partialState":{"h":17,"t":102,"tokens":[14747,2434,9031,5639],"delegation":[13747,1434,8031,4639],"delegatorTokens":9999999916491}},{"ix":148,"action":{"kind":"Deliver","chain":"provider","numPackets":1},"partialState":{"h":17,"t":102,"tokens":[14747,2434,9031,5639],"delegation":[13747,1434,8031,4639],"delegatorTokens":9999999916491,"jailed":[1000000000000017,null,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":149,"action":{"kind":"Deliver","chain":"provider","numPackets":1},"partialState":{"h":17,"t":102,"tokens":[14747,2434,9031,5639],"delegation":[13747,1434,8031,4639],"delegatorTokens":9999999916491,"jailed":[1000000000000017,null,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":150,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":151,"action":{"kind":"Deliver","chain":"provider","numPackets":3},"partialState":{"h":17,"t":102,"tokens":[14747,2434,9031,5639],"delegation":[13747,1434,8031,4639],"delegatorTokens":9999999916491,"jailed":[1000000000000017,null,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":152,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":18,"t":108,"tokens":[14747,2434,9031,5639],"delegation":[13747,1434,8031,4639],"delegatorTokens":9999999926103,"jailed":[1000000000000017,null,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":153,"action":{"kind":"Delegate","val":1,"amt":4239},"partialState":{"h":18,"t":108,"tokens":[14747,6673,9031,5639],"delegation":[13747,5673,8031,4639],"delegatorTokens":9999999921864}},{"ix":154,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":19,"t":114,"tokens":[14747,6673,9031,5639],"delegation":[13747,5673,8031,4639],"delegatorTokens":9999999921864,"jailed":[1000000000000017,null,null,null],"status":["unbonded","bonded","bonded","unbonding"]}},{"ix":155,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":156,"action":{"kind":"Delegate","val":0,"amt":1349},"partialState":{"h":19,"t":114,"tokens":[16096,6673,9031,5639],"delegation":[15096,5673,8031,4639],"delegatorTokens":9999999920515}},{"ix":157,"action":{"kind":"Delegate","val":1,"amt":2854},"partialState":{"h":19,"t":114,"tokens":[16096,9527,9031,5639],"delegation":[15096,8527,8031,4639],"delegatorTokens":9999999917661}},{"ix":158,"action":{"kind":"Undelegate","val":2,"amt":2114},"partialState":{"h":19,"t":114,"tokens":[16096,9527,6917,5639],"delegation":[15096,8527,5917,4639],"delegatorTokens":9999999917661}},{"ix":159,"action":{"kind":"Delegate","val":1,"amt":4790},"partialState":{"h":19,"t":114,"tokens":[16096,14317,6917,5639],"delegation":[15096,13317,5917,4639],"delegatorTokens":9999999912871}},{"ix":160,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":20,"t":120,"tokens":[16096,14317,6917,5639],"delegation":[15096,13317,5917,4639],"delegatorTokens":9999999912871,"jailed":[1000000000000017,null,null,null],"status":["unbonded","bonded","bonded","unbonding"]}},{"ix":161,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":162,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":17,"t":102,"consumerPower":[null,null,9031,8952],"outstandingDowntime":[false,false,true,true]}},{"ix":163,"action":{"kind":"Undelegate","val":2,"amt":1706},"partialState":{"h":20,"t":120,"tokens":[16096,14317,5211,5639],"delegation":[15096,13317,4211,4639],"delegatorTokens":9999999912871}},{"ix":164,"action":{"kind":"Deliver","chain":"consumer","numPackets":2},"partialState":{"h":17,"t":102,"consumerPower":[null,null,9031,8952],"outstandingDowntime":[false,false,true,true]}},{"ix":165,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":21,"t":126,"tokens":[16096,14317,5211,5639],"delegation":[15096,13317,4211,4639],"delegatorTokens":9999999912871,"jailed":[1000000000000017,null,null,null],"status":["unbonded","bonded","unbonding","bonded"]}},{"ix":166,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":167,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":22,"t":132,"tokens":[16096,14317,5211,5639],"delegation":[15096,13317,4211,4639],"delegatorTokens":9999999912871,"jailed":[1000000000000017,null,null,null],"status":["unbonded","bonded","unbonding","bonded"]}},{"ix":168,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":169,"action":{"kind":"Deliver","chain":"consumer","numPackets":1},"partialState":{"h":17,"t":102,"consumerPower":[null,null,9031,8952],"outstandingDowntime":[false,false,true,true]}},{"ix":170,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":18,"t":108,"consumerPower":[null,6673,9031,null],"outstandingDowntime":[false,false,true,true]}},{"ix":171,"action":{"kind":"Delegate","val":3,"amt":4310},"partialState":{"h":22,"t":132,"tokens":[16096,14317,5211,9949],"delegation":[15096,13317,4211,8949],"delegatorTokens":9999999908561}},{"ix":172,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":173,"action":{"kind":"Delegate","val":1,"amt":4109},"partialState":{"h":22,"t":132,"tokens":[16096,18426,5211,9949],"delegation":[15096,17426,4211,8949],"delegatorTokens":9999999904452}},{"ix":174,"action":{"kind":"Delegate","val":0,"amt":2642},"partialState":{"h":22,"t":132,"tokens":[18738,18426,5211,9949],"delegation":[17738,17426,4211,8949],"delegatorTokens":9999999901810}},{"ix":175,"action":{"kind":"Deliver","chain":"provider","numPackets":4},"partialState":{"h":22,"t":132,"tokens":[18738,18426,5211,9949],"delegation":[17738,17426,4211,8949],"delegatorTokens":9999999901810,"jailed":[1000000000000017,null,null,null],"status":["unbonded","bonded","unbonding","bonded"]}},{"ix":176,"action":{"kind":"Delegate","val":1,"amt":2768},"partialState":{"h":22,"t":132,"tokens":[18738,21194,5211,9949],"delegation":[17738,20194,4211,8949],"delegatorTokens":9999999899042}},{"ix":177,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":23,"t":138,"tokens":[18738,21194,5211,9949],"delegation":[17738,20194,4211,8949],"delegatorTokens":9999999899042,"jailed":[1000000000000017,null,null,null],"status":["unbonded","bonded","unbonding","bonded"]}},{"ix":178,"action":{"kind":"Delegate","val":2,"amt":4731},"partialState":{"h":23,"t":138,"tokens":[18738,21194,9942,9949],"delegation":[17738,20194,8942,8949],"delegatorTokens":9999999894311}},{"ix":179,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":24,"t":144,"tokens":[18738,21194,9942,9949],"delegation":[17738,20194,8942,8949],"delegatorTokens":9999999894311,"jailed":[1000000000000017,null,null,null],"status":["unbonded","bonded","unbonding","bonded"]}},{"ix":180,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":19,"t":114,"consumerPower":[null,6673,9031,null],"outstandingDowntime":[false,false,true,true]}},{"ix":181,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":20,"t":120,"consumerPower":[null,6673,9031,null],"outstandingDowntime":[false,false,true,true]}},{"ix":182,"action":{"kind":"Deliver","chain":"provider","numPackets":6},"partialState":{"h":24,"t":144,"tokens":[18738,21194,9942,9949],"delegation":[17738,20194,8942,8949],"delegatorTokens":9999999894311,"jailed":[1000000000000017,null,null,null],"status":["unbonded","bonded","unbonding","bonded"]}},{"ix":183,"action":{"kind":"Deliver","chain":"consumer","numPackets":3},"partialState":{"h":20,"t":120,"consumerPower":[null,6673,9031,null],"outstandingDowntime":[false,false,true,true]}},{"ix":184,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":21,"t":126,"consumerPower":[null,21194,null,9949],"outstandingDowntime":[false,false,true,true]}},{"ix":185,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":25,"t":150,"tokens":[18738,21194,9942,9949],"delegation":[17738,20194,8942,8949],"delegatorTokens":9999999894311,"jailed":[1000000000000017,null,null,null],"status":["unbonded","bonded","unbonding","bonded"]}},{"ix":186,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":187,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":22,"t":132,"consumerPower":[null,21194,null,9949],"outstandingDowntime":[false,false,true,true]}},{"ix":188,"action":{"kind":"Deliver","chain":"provider","numPackets":5},"partialState":{"h":25,"t":150,"tokens":[18738,21194,9942,9949],"delegation":[17738,20194,8942,8949],"delegatorTokens":9999999894311,"jailed":[1000000000000017,null,null,null],"status":["unbonded","bonded","unbonding","bonded"]}},{"ix":189,"action":{"kind":"Undelegate","val":3,"amt":4011},"partialState":{"h":25,"t":150,"tokens":[18738,21194,9942,5938],"delegation":[17738,20194,8942,4938],"delegatorTokens":9999999894311}},{"ix":190,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":23,"t":138,"consumerPower":[null,21194,null,9949],"outstandingDowntime":[false,false,true,true]}},{"ix":191,"action":{"kind":"Delegate","val":0,"amt":3584},"partialState":{"h":25,"t":150,"tokens":[22322,21194,9942,5938],"delegation":[21322,20194,8942,4938],"delegatorTokens":9999999890727}},{"ix":192,"action":{"kind":"Undelegate","val":0,"amt":1977},"partialState":{"h":25,"t":150,"tokens":[20345,21194,9942,5938],"delegation":[19345,20194,8942,4938],"delegatorTokens":9999999890727}},{"ix":193,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":24,"t":144,"consumerPower":[null,21194,null,9949],"outstandingDowntime":[false,false,true,true]}},{"ix":194,"action":{"kind":"Delegate","val":1,"amt":1353},"partialState":{"h":25,"t":150,"tokens":[20345,22547,9942,5938],"delegation":[19345,21547,8942,4938],"delegatorTokens":9999999889374}},{"ix":195,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":25,"t":150,"consumerPower":[null,21194,null,9949],"outstandingDowntime":[false,false,true,true]}},{"ix":196,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":26,"t":156,"tokens":[20345,22547,9942,5938],"delegation":[19345,21547,8942,4938],"delegatorTokens":9999999889374,"jailed":[1000000000000017,null,null,null],"status":["unbonded","bonded","bonded","unbonding"]}},{"ix":197,"action":{"kind":"Delegate","val":1,"amt":4147},"partialState":{"h":26,"t":156,"tokens":[20345,26694,9942,5938],"delegation":[19345,25694,8942,4938],"delegatorTokens":9999999885227}},{"ix":198,"action":{"kind":"Undelegate","val":1,"amt":3842},"partialState":{"h":26,"t":156,"tokens":[20345,22852,9942,5938],"delegation":[19345,21852,8942,4938],"delegatorTokens":9999999885227}},{"ix":199,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}}],"events":["insufficient_shares","send_double_sign_slash_request","send_downtime_slash_request","send_downtime_slash_request","send_vsc_without_downtime_ack","send_downtime_slash_request","insufficient_shares","insufficient_shares","send_vsc_without_downtime_ack","consumer_update_val","receive_double_sign_slash_request","receive_downtime_slash_request","jail","receive_slash_request_unbonded","send_vsc_with_downtime_ack","more_than_one_third_val_power_change","send_vsc_without_downtime_ack","insufficient_shares","receive_downtime_slash_ack","send_vsc_without_downtime_ack","consumer_update_val","consumer_del_val","consumer_add_val","send_vsc_without_downtime_ack","insufficient_shares","insufficient_shares","consumer_update_val","consumer_update_val","receive_slash_request_unbonded","send_vsc_without_downtime_ack","consumer_send_maturation","send_vsc_not_because_change","send_vsc_without_downtime_ack","send_vsc_without_downtime_ack","more_than_one_third_val_power_change","some_undels_expired_but_not_completed","send_vsc_without_downtime_ack","some_undels_expired_but_not_completed","insufficient_shares","consumer_send_maturation","consumer_send_maturation","consumer_send_maturation","some_undels_expired_but_not_completed","complete_undel_immediate","send_vsc_without_downtime_ack","consumer_del_val","consumer_update_val","consumer_add_val","some_undels_expired_but_not_completed","send_vsc_not_because_change","send_vsc_without_downtime_ack","insufficient_shares","complete_undel_immediate","complete_undel_immediate","complete_undel_immediate","complete_undel_immediate","set_unval_hold_false","send_vsc_without_downtime_ack","more_than_one_third_val_power_change","rebond_unval","complete_unval_in_endblock","send_vsc_without_downtime_ack","send_vsc_without_downtime_ack","consumer_update_val","rebond_unval","send_vsc_without_downtime_ack","some_undels_expired_but_not_completed","consumer_del_val","consumer_add_val","send_vsc_without_downtime_ack","some_undels_expired_but_not_completed","consumer_send_maturation","consumer_send_maturation","consumer_update_val","consumer_del_val","consumer_add_val","consumer_send_maturation","consumer_send_maturation","consumer_send_maturation","consumer_send_maturation","rebond_unval","some_undels_expired_but_not_completed","send_vsc_without_downtime_ack"]},{"meta":{"commit":"7ffd0c04e4205cbc9caf212abfe6c59ee43153bf"},"constants":{"P":"provider","C":"consumer","UNBONDING_SECONDS_P":70,"UNBONDING_SECONDS_C":50,"TRUSTING_SECONDS":49,"NUM_VALIDATORS":4,"MAX_VALIDATORS":2,"SLASH_DOUBLESIGN":0,"SLASH_DOWNTIME":0,"JAIL_SECONDS":999999999999999,"BLOCK_SECONDS":6,"INITIAL_DELEGATOR_TOKENS":10000000000000,"DELEGATE_AMT_MIN":1000,"DELEGATE_AMT_MAX":5000,"UNDELEGATE_AMT_MIN":1000,"UNDELEGATE_AMT_MAX":5000,"ISDOWNTIME_PROBABILITY":0.5,"MAX_NUM_PACKETS_FOR_DELIVER":6},"actions":[{"ix":0,"action":{"kind":"ConsumerSlash","val":0,"infractionHeight":0,"isDowntime":true},"partialState":{"h":1,"t":6,"outstandingDowntime":[true,false,false,false]}},{"ix":1,"action":{"kind":"ConsumerSlash","val":2,"infractionHeight":0,"isDowntime":true},"partialState":{"h":1,"t":6,"outstandingDowntime":[true,false,true,false]}},{"ix":2,"action":{"kind":"Deliver","chain":"provider","numPackets":2},"partialState":{"h":1,"t":6,"tokens":[5000,4000,3000,2000],"delegation":[4000,3000,2000,1000],"delegatorTokens":10000000000000,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":3,"action":{"kind":"ConsumerSlash","val":3,"infractionHeight":0,"isDowntime":true},"partialState":{"h":1,"t":6,"outstandingDowntime":[true,false,true,true]}},{"ix":4,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":5,"action":{"kind":"Undelegate","val":0,"amt":1544},"partialState":{"h":1,"t":6,"tokens":[3456,4000,3000,2000],"delegation":[2456,3000,2000,1000],"delegatorTokens":10000000000000}},{"ix":6,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":7,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":2,"t":12,"tokens":[3456,4000,3000,2000],"delegation":[2456,3000,2000,1000],"delegatorTokens":10000000000000,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":8,"action":{"kind":"Undelegate","val":1,"amt":3252},"partialState":{"h":2,"t":12,"tokens":[3456,4000,3000,2000],"delegation":[2456,3000,2000,1000],"delegatorTokens":10000000000000}},{"ix":9,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":2,"t":12,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[true,false,true,true]}},{"ix":10,"action":{"kind":"Deliver","chain":"consumer","numPackets":6},"partialState":{"h":2,"t":12,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[true,false,true,true]}},{"ix":11,"action":{"kind":"Deliver","chain":"provider","numPackets":5},"partialState":{"h":2,"t":12,"tokens":[3456,4000,3000,2000],"delegation":[2456,3000,2000,1000],"delegatorTokens":10000000000000,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":12,"action":{"kind":"Delegate","val":0,"amt":1017},"partialState":{"h":2,"t":12,"tokens":[4473,4000,3000,2000],"delegation":[3473,3000,2000,1000],"delegatorTokens":9999999998983}},{"ix":13,"action":{"kind":"Deliver","chain":"consumer","numPackets":1},"partialState":{"h":2,"t":12,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[true,false,true,true]}},{"ix":14,"action":{"kind":"Delegate","val":1,"amt":2237},"partialState":{"h":2,"t":12,"tokens":[4473,6237,3000,2000],"delegation":[3473,5237,2000,1000],"delegatorTokens":9999999996746}},{"ix":15,"action":{"kind":"Deliver","chain":"consumer","numPackets":4},"partialState":{"h":2,"t":12,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[true,false,true,true]}},{"ix":16,"action":{"kind":"Undelegate","val":2,"amt":2261},"partialState":{"h":2,"t":12,"tokens":[4473,6237,3000,2000],"delegation":[3473,5237,2000,1000],"delegatorTokens":9999999996746}},{"ix":17,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":3,"t":18,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[true,false,true,true]}},{"ix":18,"action":{"kind":"Deliver","chain":"provider","numPackets":4},"partialState":{"h":2,"t":12,"tokens":[4473,6237,3000,2000],"delegation":[3473,5237,2000,1000],"delegatorTokens":9999999996746,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":19,"action":{"kind":"Deliver","chain":"consumer","numPackets":6},"partialState":{"h":3,"t":18,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[true,false,true,true]}},{"ix":20,"action":{"kind":"Undelegate","val":1,"amt":1779},"partialState":{"h":2,"t":12,"tokens":[4473,4458,3000,2000],"delegation":[3473,3458,2000,1000],"delegatorTokens":9999999996746}},{"ix":21,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":3,"t":18,"tokens":[4473,4458,3000,2000],"delegation":[3473,3458,2000,1000],"delegatorTokens":9999999996746,"jailed":[1000000000000011,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":22,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":4,"t":24,"tokens":[4473,4458,3000,2000],"delegation":[3473,3458,2000,1000],"delegatorTokens":9999999996746,"jailed":[1000000000000011,null,null,null],"status":["unbonding","bonded","bonded","unbonded"]}},{"ix":23,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":24,"action":{"kind":"Deliver","chain":"provider","numPackets":3},"partialState":{"h":4,"t":24,"tokens":[4473,4458,3000,2000],"delegation":[3473,3458,2000,1000],"delegatorTokens":9999999996746,"jailed":[1000000000000011,null,null,null],"status":["unbonding","bonded","bonded","unbonded"]}},{"ix":25,"action":{"kind":"Delegate","val":2,"amt":1840},"partialState":{"h":4,"t":24,"tokens":[4473,4458,4840,2000],"delegation":[3473,3458,3840,1000],"delegatorTokens":9999999994906}},{"ix":26,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":27,"action":{"kind":"Delegate","val":3,"amt":2252},"partialState":{"h":4,"t":24,"tokens":[4473,4458,4840,4252],"delegation":[3473,3458,3840,3252],"delegatorTokens":9999999992654}},{"ix":28,"action":{"kind":"Delegate","val":3,"amt":1835},"partialState":{"h":4,"t":24,"tokens":[4473,4458,4840,6087],"delegation":[3473,3458,3840,5087],"delegatorTokens":9999999990819}},{"ix":29,"action":{"kind":"Delegate","val":1,"amt":4171},"partialState":{"h":4,"t":24,"tokens":[4473,8629,4840,6087],"delegation":[3473,7629,3840,5087],"delegatorTokens":9999999986648}},{"ix":30,"action":{"kind":"Delegate","val":0,"amt":1485},"partialState":{"h":4,"t":24,"tokens":[5958,8629,4840,6087],"delegation":[4958,7629,3840,5087],"delegatorTokens":9999999985163}},{"ix":31,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":5,"t":30,"tokens":[5958,8629,4840,6087],"delegation":[4958,7629,3840,5087],"delegatorTokens":9999999985163,"jailed":[1000000000000011,null,null,null],"status":["unbonding","bonded","unbonding","bonded"]}},{"ix":32,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":6,"t":36,"tokens":[5958,8629,4840,6087],"delegation":[4958,7629,3840,5087],"delegatorTokens":9999999985163,"jailed":[1000000000000011,null,null,null],"status":["unbonding","bonded","unbonding","bonded"]}},{"ix":33,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":7,"t":42,"tokens":[5958,8629,4840,6087],"delegation":[4958,7629,3840,5087],"delegatorTokens":9999999985163,"jailed":[1000000000000011,null,null,null],"status":["unbonding","bonded","unbonding","bonded"]}},{"ix":34,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":4,"t":24,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[true,false,true,true]}},{"ix":35,"action":{"kind":"Deliver","chain":"consumer","numPackets":1},"partialState":{"h":4,"t":24,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[true,false,true,true]}},{"ix":36,"action":{"kind":"Delegate","val":3,"amt":3217},"partialState":{"h":7,"t":42,"tokens":[5958,8629,4840,9304],"delegation":[4958,7629,3840,8304],"delegatorTokens":9999999981946}},{"ix":37,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":8,"t":48,"tokens":[5958,8629,4840,9304],"delegation":[4958,7629,3840,8304],"delegatorTokens":9999999981946,"jailed":[1000000000000011,null,null,null],"status":["unbonding","bonded","unbonding","bonded"]}},{"ix":38,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":9,"t":54,"tokens":[5958,8629,4840,9304],"delegation":[4958,7629,3840,8304],"delegatorTokens":9999999981946,"jailed":[1000000000000011,null,null,null],"status":["unbonding","bonded","unbonding","bonded"]}},{"ix":39,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":40,"action":{"kind":"Delegate","val":3,"amt":1300},"partialState":{"h":9,"t":54,"tokens":[5958,8629,4840,10604],"delegation":[4958,7629,3840,9604],"delegatorTokens":9999999980646}},{"ix":41,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":42,"action":{"kind":"Deliver","chain":"consumer","numPackets":5},"partialState":{"h":4,"t":24,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,false,true,true]}},{"ix":43,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":44,"action":{"kind":"Deliver","chain":"provider","numPackets":1},"partialState":{"h":9,"t":54,"tokens":[5958,8629,4840,10604],"delegation":[4958,7629,3840,9604],"delegatorTokens":9999999980646,"jailed":[1000000000000011,null,null,null],"status":["unbonding","bonded","unbonding","bonded"]}},{"ix":45,"action":{"kind":"Deliver","chain":"provider","numPackets":6},"partialState":{"h":9,"t":54,"tokens":[5958,8629,4840,10604],"delegation":[4958,7629,3840,9604],"delegatorTokens":9999999980646,"jailed":[1000000000000011,null,null,null],"status":["unbonding","bonded","unbonding","bonded"]}},{"ix":46,"action":{"kind":"Delegate","val":2,"amt":4974},"partialState":{"h":9,"t":54,"tokens":[5958,8629,9814,10604],"delegation":[4958,7629,8814,9604],"delegatorTokens":9999999975672}},{"ix":47,"action":{"kind":"Delegate","val":0,"amt":1076},"partialState":{"h":9,"t":54,"tokens":[7034,8629,9814,10604],"delegation":[6034,7629,8814,9604],"delegatorTokens":9999999974596}},{"ix":48,"action":{"kind":"Delegate","val":3,"amt":3922},"partialState":{"h":9,"t":54,"tokens":[7034,8629,9814,14526],"delegation":[6034,7629,8814,13526],"delegatorTokens":9999999970674}},{"ix":49,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":5,"t":30,"consumerPower":[null,8629,null,9304],"outstandingDowntime":[false,false,true,true]}},{"ix":50,"action":{"kind":"Delegate","val":1,"amt":3562},"partialState":{"h":9,"t":54,"tokens":[7034,12191,9814,14526],"delegation":[6034,11191,8814,13526],"delegatorTokens":9999999967112}},{"ix":51,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":6,"t":36,"consumerPower":[null,8629,null,9304],"outstandingDowntime":[false,false,true,true]}},{"ix":52,"action":{"kind":"Undelegate","val":3,"amt":1265},"partialState":{"h":9,"t":54,"tokens":[7034,12191,9814,13261],"delegation":[6034,11191,8814,12261],"delegatorTokens":9999999967112}},{"ix":53,"action":{"kind":"Delegate","val":0,"amt":4702},"partialState":{"h":9,"t":54,"tokens":[11736,12191,9814,13261],"delegation":[10736,11191,8814,12261],"delegatorTokens":9999999962410}},{"ix":54,"action":{"kind":"Delegate","val":2,"amt":1253},"partialState":{"h":9,"t":54,"tokens":[11736,12191,11067,13261],"delegation":[10736,11191,10067,12261],"delegatorTokens":9999999961157}},{"ix":55,"action":{"kind":"Deliver","chain":"consumer","numPackets":2},"partialState":{"h":6,"t":36,"consumerPower":[null,8629,null,9304],"outstandingDowntime":[false,false,true,true]}},{"ix":56,"action":{"kind":"Undelegate","val":3,"amt":1229},"partialState":{"h":9,"t":54,"tokens":[11736,12191,11067,12032],"delegation":[10736,11191,10067,11032],"delegatorTokens":9999999961157}},{"ix":57,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":10,"t":60,"tokens":[11736,12191,11067,12032],"delegation":[10736,11191,10067,11032],"delegatorTokens":9999999961157,"jailed":[1000000000000011,null,null,null],"status":["unbonding","bonded","unbonding","bonded"]}},{"ix":58,"action":{"kind":"Delegate","val":0,"amt":2501},"partialState":{"h":10,"t":60,"tokens":[14237,12191,11067,12032],"delegation":[13237,11191,10067,11032],"delegatorTokens":9999999958656}},{"ix":59,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":60,"action":{"kind":"Deliver","chain":"consumer","numPackets":4},"partialState":{"h":6,"t":36,"consumerPower":[null,8629,null,9304],"outstandingDowntime":[false,false,true,true]}},{"ix":61,"action":{"kind":"Undelegate","val":1,"amt":1190},"partialState":{"h":10,"t":60,"tokens":[14237,11001,11067,12032],"delegation":[13237,10001,10067,11032],"delegatorTokens":9999999958656}},{"ix":62,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":63,"action":{"kind":"Undelegate","val":0,"amt":2323},"partialState":{"h":10,"t":60,"tokens":[11914,11001,11067,12032],"delegation":[10914,10001,10067,11032],"delegatorTokens":9999999958656}},{"ix":64,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":11,"t":66,"tokens":[11914,11001,11067,12032],"delegation":[10914,10001,10067,11032],"delegatorTokens":9999999958656,"jailed":[1000000000000011,null,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":65,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":7,"t":42,"consumerPower":[null,8629,null,9304],"outstandingDowntime":[false,false,true,true]}},{"ix":66,"action":{"kind":"Deliver","chain":"consumer","numPackets":6},"partialState":{"h":7,"t":42,"consumerPower":[null,8629,null,9304],"outstandingDowntime":[false,false,true,true]}},{"ix":67,"action":{"kind":"Undelegate","val":0,"amt":1777},"partialState":{"h":11,"t":66,"tokens":[10137,11001,11067,12032],"delegation":[9137,10001,10067,11032],"delegatorTokens":9999999958656}},{"ix":68,"action":{"kind":"Delegate","val":2,"amt":4884},"partialState":{"h":11,"t":66,"tokens":[10137,11001,15951,12032],"delegation":[9137,10001,14951,11032],"delegatorTokens":9999999953772}},{"ix":69,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":70,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":71,"action":{"kind":"Deliver","chain":"provider","numPackets":6},"partialState":{"h":11,"t":66,"tokens":[10137,11001,15951,12032],"delegation":[9137,10001,14951,11032],"delegatorTokens":9999999953772,"jailed":[1000000000000011,null,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":72,"action":{"kind":"Delegate","val":2,"amt":4717},"partialState":{"h":11,"t":66,"tokens":[10137,11001,20668,12032],"delegation":[9137,10001,19668,11032],"delegatorTokens":9999999949055}},{"ix":73,"action":{"kind":"Undelegate","val":3,"amt":3155},"partialState":{"h":11,"t":66,"tokens":[10137,11001,20668,8877],"delegation":[9137,10001,19668,7877],"delegatorTokens":9999999949055}},{"ix":74,"action":{"kind":"Undelegate","val":3,"amt":3172},"partialState":{"h":11,"t":66,"tokens":[10137,11001,20668,5705],"delegation":[9137,10001,19668,4705],"delegatorTokens":9999999949055}},{"ix":75,"action":{"kind":"Deliver","chain":"consumer","numPackets":4},"partialState":{"h":7,"t":42,"consumerPower":[null,8629,null,9304],"outstandingDowntime":[false,false,true,true]}},{"ix":76,"action":{"kind":"Undelegate","val":3,"amt":1216},"partialState":{"h":11,"t":66,"tokens":[10137,11001,20668,4489],"delegation":[9137,10001,19668,3489],"delegatorTokens":9999999949055}},{"ix":77,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":12,"t":72,"tokens":[10137,11001,20668,4489],"delegation":[9137,10001,19668,3489],"delegatorTokens":9999999949055,"jailed":[1000000000000011,null,null,null],"status":["unbonding","bonded","bonded","unbonding"]}},{"ix":78,"action":{"kind":"Undelegate","val":1,"amt":1133},"partialState":{"h":12,"t":72,"tokens":[10137,9868,20668,4489],"delegation":[9137,8868,19668,3489],"delegatorTokens":9999999949055}},{"ix":79,"action":{"kind":"Delegate","val":2,"amt":4152},"partialState":{"h":12,"t":72,"tokens":[10137,9868,24820,4489],"delegation":[9137,8868,23820,3489],"delegatorTokens":9999999944903}},{"ix":80,"action":{"kind":"Delegate","val":0,"amt":2178},"partialState":{"h":12,"t":72,"tokens":[12315,9868,24820,4489],"delegation":[11315,8868,23820,3489],"delegatorTokens":9999999942725}},{"ix":81,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":82,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":83,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":84,"action":{"kind":"Delegate","val":0,"amt":4166},"partialState":{"h":12,"t":72,"tokens":[16481,9868,24820,4489],"delegation":[15481,8868,23820,3489],"delegatorTokens":9999999938559}},{"ix":85,"action":{"kind":"Delegate","val":0,"amt":2800},"partialState":{"h":12,"t":72,"tokens":[19281,9868,24820,4489],"delegation":[18281,8868,23820,3489],"delegatorTokens":9999999935759}},{"ix":86,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":13,"t":78,"tokens":[19281,9868,24820,4489],"delegation":[18281,8868,23820,3489],"delegatorTokens":9999999935759,"jailed":[1000000000000011,null,null,null],"status":["unbonding","bonded","bonded","unbonding"]}},{"ix":87,"action":{"kind":"Undelegate","val":3,"amt":2953},"partialState":{"h":13,"t":78,"tokens":[19281,9868,24820,1536],"delegation":[18281,8868,23820,536],"delegatorTokens":9999999935759}},{"ix":88,"action":{"kind":"Undelegate","val":3,"amt":2863},"partialState":{"h":13,"t":78,"tokens":[19281,9868,24820,1536],"delegation":[18281,8868,23820,536],"delegatorTokens":9999999935759}},{"ix":89,"action":{"kind":"Deliver","chain":"provider","numPackets":4},"partialState":{"h":13,"t":78,"tokens":[19281,9868,24820,1536],"delegation":[18281,8868,23820,536],"delegatorTokens":9999999935759,"jailed":[1000000000000011,null,null,null],"status":["unbonding","bonded","bonded","unbonding"]}},{"ix":90,"action":{"kind":"Delegate","val":3,"amt":3702},"partialState":{"h":13,"t":78,"tokens":[19281,9868,24820,5238],"delegation":[18281,8868,23820,4238],"delegatorTokens":9999999932057}},{"ix":91,"action":{"kind":"Undelegate","val":0,"amt":3706},"partialState":{"h":13,"t":78,"tokens":[15575,9868,24820,5238],"delegation":[14575,8868,23820,4238],"delegatorTokens":9999999932057}},{"ix":92,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":8,"t":48,"consumerPower":[null,12191,null,12032],"outstandingDowntime":[false,false,true,true]}},{"ix":93,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":94,"action":{"kind":"Deliver","chain":"consumer","numPackets":1},"partialState":{"h":8,"t":48,"consumerPower":[null,12191,null,12032],"outstandingDowntime":[false,false,true,true]}},{"ix":95,"action":{"kind":"Deliver","chain":"provider","numPackets":4},"partialState":{"h":13,"t":78,"tokens":[15575,9868,24820,5238],"delegation":[14575,8868,23820,4238],"delegatorTokens":9999999932057,"jailed":[1000000000000011,null,null,null],"status":["unbonding","bonded","bonded","unbonding"]}},{"ix":96,"action":{"kind":"Undelegate","val":3,"amt":1487},"partialState":{"h":13,"t":78,"tokens":[15575,9868,24820,3751],"delegation":[14575,8868,23820,2751],"delegatorTokens":9999999932057}},{"ix":97,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":14,"t":84,"tokens":[15575,9868,24820,3751],"delegation":[14575,8868,23820,2751],"delegatorTokens":9999999932057,"jailed":[1000000000000011,null,null,null],"status":["unbonding","bonded","bonded","unbonding"]}},{"ix":98,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":99,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":9,"t":54,"consumerPower":[null,null,11067,12032],"outstandingDowntime":[false,false,true,true]}},{"ix":100,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":15,"t":90,"tokens":[15575,9868,24820,3751],"delegation":[14575,8868,23820,2751],"delegatorTokens":9999999932057,"jailed":[1000000000000011,null,null,null],"status":["unbonding","bonded","bonded","unbonding"]}},{"ix":101,"action":{"kind":"Deliver","chain":"provider","numPackets":1},"partialState":{"h":15,"t":90,"tokens":[15575,9868,24820,3751],"delegation":[14575,8868,23820,2751],"delegatorTokens":9999999932057,"jailed":[1000000000000011,null,null,null],"status":["unbonding","bonded","bonded","unbonding"]}},{"ix":102,"action":{"kind":"Delegate","val":3,"amt":2982},"partialState":{"h":15,"t":90,"tokens":[15575,9868,24820,6733],"delegation":[14575,8868,23820,5733],"delegatorTokens":9999999929075}},{"ix":103,"action":{"kind":"Deliver","chain":"consumer","numPackets":2},"partialState":{"h":9,"t":54,"consumerPower":[null,null,11067,12032],"outstandingDowntime":[false,false,true,true]}},{"ix":104,"action":{"kind":"Deliver","chain":"provider","numPackets":5},"partialState":{"h":15,"t":90,"tokens":[15575,9868,24820,6733],"delegation":[14575,8868,23820,5733],"delegatorTokens":9999999929075,"jailed":[1000000000000011,null,null,null],"status":["unbonding","bonded","bonded","unbonding"]}},{"ix":105,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":106,"action":{"kind":"Undelegate","val":0,"amt":3921},"partialState":{"h":15,"t":90,"tokens":[11654,9868,24820,6733],"delegation":[10654,8868,23820,5733],"delegatorTokens":9999999929075}},{"ix":107,"action":{"kind":"Undelegate","val":0,"amt":4222},"partialState":{"h":15,"t":90,"tokens":[7432,9868,24820,6733],"delegation":[6432,8868,23820,5733],"delegatorTokens":9999999929075}},{"ix":108,"action":{"kind":"Delegate","val":2,"amt":2530},"partialState":{"h":15,"t":90,"tokens":[7432,9868,27350,6733],"delegation":[6432,8868,26350,5733],"delegatorTokens":9999999926545}},{"ix":109,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":10,"t":60,"consumerPower":[null,9868,24820,null],"outstandingDowntime":[false,false,true,true]}},{"ix":110,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":111,"action":{"kind":"Delegate","val":3,"amt":3862},"partialState":{"h":15,"t":90,"tokens":[7432,9868,27350,10595],"delegation":[6432,8868,26350,9595],"delegatorTokens":9999999922683}},{"ix":112,"action":{"kind":"Deliver","chain":"consumer","numPackets":6},"partialState":{"h":10,"t":60,"consumerPower":[null,9868,24820,null],"outstandingDowntime":[false,false,true,true]}},{"ix":113,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":114,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":115,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":116,"action":{"kind":"Deliver","chain":"provider","numPackets":3},"partialState":{"h":15,"t":90,"tokens":[7432,9868,27350,10595],"delegation":[6432,8868,26350,9595],"delegatorTokens":9999999922683,"jailed":[1000000000000011,null,null,null],"status":["unbonding","bonded","bonded","unbonding"]}},{"ix":117,"action":{"kind":"Delegate","val":0,"amt":2565},"partialState":{"h":15,"t":90,"tokens":[9997,9868,27350,10595],"delegation":[8997,8868,26350,9595],"delegatorTokens":9999999920118}},{"ix":118,"action":{"kind":"Undelegate","val":1,"amt":3691},"partialState":{"h":15,"t":90,"tokens":[9997,6177,27350,10595],"delegation":[8997,5177,26350,9595],"delegatorTokens":9999999920118}},{"ix":119,"action":{"kind":"Delegate","val":1,"amt":2923},"partialState":{"h":15,"t":90,"tokens":[9997,9100,27350,10595],"delegation":[8997,8100,26350,9595],"delegatorTokens":9999999917195}},{"ix":120,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":121,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":122,"action":{"kind":"Undelegate","val":1,"amt":4772},"partialState":{"h":15,"t":90,"tokens":[9997,4328,27350,10595],"delegation":[8997,3328,26350,9595],"delegatorTokens":9999999917195}},{"ix":123,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":124,"action":{"kind":"Delegate","val":3,"amt":4703},"partialState":{"h":15,"t":90,"tokens":[9997,4328,27350,15298],"delegation":[8997,3328,26350,14298],"delegatorTokens":9999999912492}},{"ix":125,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":126,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":127,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":11,"t":66,"consumerPower":[null,9868,24820,null],"outstandingDowntime":[false,false,true,true]}},{"ix":128,"action":{"kind":"Delegate","val":1,"amt":4813},"partialState":{"h":15,"t":90,"tokens":[9997,9141,27350,15298],"delegation":[8997,8141,26350,14298],"delegatorTokens":9999999907679}},{"ix":129,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":130,"action":{"kind":"Delegate","val":3,"amt":1111},"partialState":{"h":15,"t":90,"tokens":[9997,9141,27350,16409],"delegation":[8997,8141,26350,15409],"delegatorTokens":9999999906568}},{"ix":131,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":132,"action":{"kind":"Undelegate","val":0,"amt":1721},"partialState":{"h":15,"t":90,"tokens":[8276,9141,27350,16409],"delegation":[7276,8141,26350,15409],"delegatorTokens":9999999906568}},{"ix":133,"action":{"kind":"Undelegate","val":0,"amt":4534},"partialState":{"h":15,"t":90,"tokens":[3742,9141,27350,16409],"delegation":[2742,8141,26350,15409],"delegatorTokens":9999999906568}},{"ix":134,"action":{"kind":"Delegate","val":2,"amt":2475},"partialState":{"h":15,"t":90,"tokens":[3742,9141,29825,16409],"delegation":[2742,8141,28825,15409],"delegatorTokens":9999999904093}},{"ix":135,"action":{"kind":"Undelegate","val":3,"amt":2219},"partialState":{"h":15,"t":90,"tokens":[3742,9141,29825,14190],"delegation":[2742,8141,28825,13190],"delegatorTokens":9999999904093}},{"ix":136,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":12,"t":72,"consumerPower":[null,9868,24820,null],"outstandingDowntime":[false,false,true,true]}},{"ix":137,"action":{"kind":"Undelegate","val":1,"amt":1691},"partialState":{"h":15,"t":90,"tokens":[3742,7450,29825,14190],"delegation":[2742,6450,28825,13190],"delegatorTokens":9999999904093}},{"ix":138,"action":{"kind":"Deliver","chain":"consumer","numPackets":5},"partialState":{"h":12,"t":72,"consumerPower":[null,9868,24820,null],"outstandingDowntime":[false,false,true,true]}},{"ix":139,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":140,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":141,"action":{"kind":"Deliver","chain":"consumer","numPackets":6},"partialState":{"h":12,"t":72,"consumerPower":[null,9868,24820,null],"outstandingDowntime":[false,false,true,true]}},{"ix":142,"action":{"kind":"Delegate","val":1,"amt":1423},"partialState":{"h":15,"t":90,"tokens":[3742,8873,29825,14190],"delegation":[2742,7873,28825,13190],"delegatorTokens":9999999902670}},{"ix":143,"action":{"kind":"Undelegate","val":3,"amt":1996},"partialState":{"h":15,"t":90,"tokens":[3742,8873,29825,12194],"delegation":[2742,7873,28825,11194],"delegatorTokens":9999999902670}},{"ix":144,"action":{"kind":"Delegate","val":3,"amt":2240},"partialState":{"h":15,"t":90,"tokens":[3742,8873,29825,14434],"delegation":[2742,7873,28825,13434],"delegatorTokens":9999999900430}},{"ix":145,"action":{"kind":"Delegate","val":0,"amt":1369},"partialState":{"h":15,"t":90,"tokens":[5111,8873,29825,14434],"delegation":[4111,7873,28825,13434],"delegatorTokens":9999999899061}},{"ix":146,"action":{"kind":"Delegate","val":1,"amt":4538},"partialState":{"h":15,"t":90,"tokens":[5111,13411,29825,14434],"delegation":[4111,12411,28825,13434],"delegatorTokens":9999999894523}},{"ix":147,"action":{"kind":"Deliver","chain":"consumer","numPackets":1},"partialState":{"h":12,"t":72,"consumerPower":[null,9868,24820,null],"outstandingDowntime":[false,false,true,true]}},{"ix":148,"action":{"kind":"Deliver","chain":"provider","numPackets":3},"partialState":{"h":15,"t":90,"tokens":[5111,13411,29825,14434],"delegation":[4111,12411,28825,13434],"delegatorTokens":9999999894523,"jailed":[1000000000000011,null,null,null],"status":["unbonding","bonded","bonded","unbonding"]}},{"ix":149,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":13,"t":78,"consumerPower":[null,9868,24820,null],"outstandingDowntime":[false,false,true,true]}},{"ix":150,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":16,"t":96,"tokens":[5111,13411,29825,14434],"delegation":[4111,12411,28825,13434],"delegatorTokens":9999999894523,"jailed":[1000000000000011,null,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":151,"action":{"kind":"Undelegate","val":0,"amt":3217},"partialState":{"h":16,"t":96,"tokens":[1894,13411,29825,14434],"delegation":[894,12411,28825,13434],"delegatorTokens":9999999894523}},{"ix":152,"action":{"kind":"Undelegate","val":0,"amt":4549},"partialState":{"h":16,"t":96,"tokens":[1894,13411,29825,14434],"delegation":[894,12411,28825,13434],"delegatorTokens":9999999894523}},{"ix":153,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":154,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":155,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":17,"t":102,"tokens":[1894,13411,29825,14434],"delegation":[894,12411,28825,13434],"delegatorTokens":9999999894523,"jailed":[1000000000000011,null,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":156,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":18,"t":108,"tokens":[1894,13411,29825,14434],"delegation":[894,12411,28825,13434],"delegatorTokens":9999999894523,"jailed":[1000000000000011,null,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":157,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":14,"t":84,"consumerPower":[null,9868,24820,null],"outstandingDowntime":[false,false,true,true]}},{"ix":158,"action":{"kind":"Deliver","chain":"provider","numPackets":3},"partialState":{"h":18,"t":108,"tokens":[1894,13411,29825,14434],"delegation":[894,12411,28825,13434],"delegatorTokens":9999999894523,"jailed":[1000000000000011,null,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":159,"action":{"kind":"Deliver","chain":"provider","numPackets":5},"partialState":{"h":18,"t":108,"tokens":[1894,13411,29825,14434],"delegation":[894,12411,28825,13434],"delegatorTokens":9999999894523,"jailed":[1000000000000011,null,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":160,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":161,"action":{"kind":"Delegate","val":1,"amt":3285},"partialState":{"h":18,"t":108,"tokens":[1894,16696,29825,14434],"delegation":[894,15696,28825,13434],"delegatorTokens":9999999891238}},{"ix":162,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":19,"t":114,"tokens":[1894,16696,29825,14434],"delegation":[894,15696,28825,13434],"delegatorTokens":9999999891238,"jailed":[1000000000000011,null,null,null],"status":["unbonding","bonded","bonded","unbonding"]}},{"ix":163,"action":{"kind":"Undelegate","val":2,"amt":2355},"partialState":{"h":19,"t":114,"tokens":[1894,16696,27470,14434],"delegation":[894,15696,26470,13434],"delegatorTokens":9999999891238}},{"ix":164,"action":{"kind":"Undelegate","val":3,"amt":2283},"partialState":{"h":19,"t":114,"tokens":[1894,16696,27470,12151],"delegation":[894,15696,26470,11151],"delegatorTokens":9999999891238}},{"ix":165,"action":{"kind":"Delegate","val":2,"amt":3848},"partialState":{"h":19,"t":114,"tokens":[1894,16696,31318,12151],"delegation":[894,15696,30318,11151],"delegatorTokens":9999999887390}},{"ix":166,"action":{"kind":"Undelegate","val":0,"amt":2198},"partialState":{"h":19,"t":114,"tokens":[1894,16696,31318,12151],"delegation":[894,15696,30318,11151],"delegatorTokens":9999999887390}},{"ix":167,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":15,"t":90,"consumerPower":[null,9868,24820,null],"outstandingDowntime":[false,false,true,true]}},{"ix":168,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":169,"action":{"kind":"Deliver","chain":"consumer","numPackets":3},"partialState":{"h":15,"t":90,"consumerPower":[null,9868,24820,null],"outstandingDowntime":[false,false,true,true]}},{"ix":170,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":16,"t":96,"consumerPower":[null,null,29825,14434],"outstandingDowntime":[false,false,true,true]}},{"ix":171,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":172,"action":{"kind":"Undelegate","val":1,"amt":2327},"partialState":{"h":19,"t":114,"tokens":[1894,14369,31318,12151],"delegation":[894,13369,30318,11151],"delegatorTokens":9999999887390}},{"ix":173,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":174,"action":{"kind":"Deliver","chain":"consumer","numPackets":5},"partialState":{"h":16,"t":96,"consumerPower":[null,null,29825,14434],"outstandingDowntime":[false,false,true,true]}},{"ix":175,"action":{"kind":"Deliver","chain":"consumer","numPackets":3},"partialState":{"h":16,"t":96,"consumerPower":[null,null,29825,14434],"outstandingDowntime":[false,false,true,true]}},{"ix":176,"action":{"kind":"Undelegate","val":2,"amt":4102},"partialState":{"h":19,"t":114,"tokens":[1894,14369,27216,12151],"delegation":[894,13369,26216,11151],"delegatorTokens":9999999887390}},{"ix":177,"action":{"kind":"Delegate","val":0,"amt":1649},"partialState":{"h":19,"t":114,"tokens":[3543,14369,27216,12151],"delegation":[2543,13369,26216,11151],"delegatorTokens":9999999885741}},{"ix":178,"action":{"kind":"Delegate","val":2,"amt":2495},"partialState":{"h":19,"t":114,"tokens":[3543,14369,29711,12151],"delegation":[2543,13369,28711,11151],"delegatorTokens":9999999883246}},{"ix":179,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":17,"t":102,"consumerPower":[null,null,29825,14434],"outstandingDowntime":[false,false,true,true]}},{"ix":180,"action":{"kind":"Delegate","val":2,"amt":3383},"partialState":{"h":19,"t":114,"tokens":[3543,14369,33094,12151],"delegation":[2543,13369,32094,11151],"delegatorTokens":9999999879863}},{"ix":181,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":182,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":20,"t":120,"tokens":[3543,14369,33094,12151],"delegation":[2543,13369,32094,11151],"delegatorTokens":9999999879863,"jailed":[1000000000000011,null,null,null],"status":["unbonding","bonded","bonded","unbonding"]}},{"ix":183,"action":{"kind":"Delegate","val":2,"amt":4712},"partialState":{"h":20,"t":120,"tokens":[3543,14369,37806,12151],"delegation":[2543,13369,36806,11151],"delegatorTokens":9999999875151}},{"ix":184,"action":{"kind":"Undelegate","val":0,"amt":2930},"partialState":{"h":20,"t":120,"tokens":[3543,14369,37806,12151],"delegation":[2543,13369,36806,11151],"delegatorTokens":9999999875151}},{"ix":185,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":21,"t":126,"tokens":[3543,14369,37806,12151],"delegation":[2543,13369,36806,11151],"delegatorTokens":9999999875151,"jailed":[1000000000000011,null,null,null],"status":["unbonding","bonded","bonded","unbonding"]}},{"ix":186,"action":{"kind":"Deliver","chain":"consumer","numPackets":1},"partialState":{"h":17,"t":102,"consumerPower":[null,null,29825,14434],"outstandingDowntime":[false,false,true,true]}},{"ix":187,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":18,"t":108,"consumerPower":[null,16696,29825,null],"outstandingDowntime":[false,false,true,true]}},{"ix":188,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":189,"action":{"kind":"Delegate","val":2,"amt":2144},"partialState":{"h":21,"t":126,"tokens":[3543,14369,39950,12151],"delegation":[2543,13369,38950,11151],"delegatorTokens":9999999873007}},{"ix":190,"action":{"kind":"Delegate","val":2,"amt":4461},"partialState":{"h":21,"t":126,"tokens":[3543,14369,44411,12151],"delegation":[2543,13369,43411,11151],"delegatorTokens":9999999868546}},{"ix":191,"action":{"kind":"Deliver","chain":"provider","numPackets":4},"partialState":{"h":21,"t":126,"tokens":[3543,14369,44411,12151],"delegation":[2543,13369,43411,11151],"delegatorTokens":9999999868546,"jailed":[1000000000000011,null,null,null],"status":["unbonding","bonded","bonded","unbonding"]}},{"ix":192,"action":{"kind":"Delegate","val":3,"amt":4193},"partialState":{"h":21,"t":126,"tokens":[3543,14369,44411,16344],"delegation":[2543,13369,43411,15344],"delegatorTokens":9999999864353}},{"ix":193,"action":{"kind":"Undelegate","val":2,"amt":1154},"partialState":{"h":21,"t":126,"tokens":[3543,14369,43257,16344],"delegation":[2543,13369,42257,15344],"delegatorTokens":9999999864353}},{"ix":194,"action":{"kind":"Undelegate","val":3,"amt":2701},"partialState":{"h":21,"t":126,"tokens":[3543,14369,43257,13643],"delegation":[2543,13369,42257,12643],"delegatorTokens":9999999864353}},{"ix":195,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":22,"t":132,"tokens":[3543,14369,43257,13643],"delegation":[2543,13369,42257,12643],"delegatorTokens":9999999867676,"jailed":[1000000000000011,null,null,null],"status":["unbonding","bonded","bonded","unbonding"]}},{"ix":196,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":197,"action":{"kind":"Deliver","chain":"provider","numPackets":4},"partialState":{"h":22,"t":132,"tokens":[3543,14369,43257,13643],"delegation":[2543,13369,42257,12643],"delegatorTokens":9999999867676,"jailed":[1000000000000011,null,null,null],"status":["unbonding","bonded","bonded","unbonding"]}},{"ix":198,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":23,"t":138,"tokens":[3543,14369,43257,13643],"delegation":[2543,13369,42257,12643],"delegatorTokens":9999999870170,"jailed":[1000000000000011,null,null,null],"status":["unbonded","bonded","bonded","unbonding"]}},{"ix":199,"action":{"kind":"Deliver","chain":"provider","numPackets":3},"partialState":{"h":23,"t":138,"tokens":[3543,14369,43257,13643],"delegation":[2543,13369,42257,12643],"delegatorTokens":9999999870170,"jailed":[1000000000000011,null,null,null],"status":["unbonded","bonded","bonded","unbonding"]}}],"events":["send_downtime_slash_request","send_downtime_slash_request","send_downtime_slash_request","send_vsc_without_downtime_ack","insufficient_shares","insufficient_shares","receive_downtime_slash_request","jail","receive_slash_request_unbonded","receive_slash_request_unbonded","send_vsc_with_downtime_ack","more_than_one_third_val_power_change","send_vsc_without_downtime_ack","more_than_one_third_val_power_change","send_vsc_without_downtime_ack","send_vsc_without_downtime_ack","receive_downtime_slash_ack","consumer_del_val","consumer_update_val","consumer_del_val","consumer_add_val","send_vsc_without_downtime_ack","more_than_one_third_val_power_change","rebond_unval","send_vsc_without_downtime_ack","more_than_one_third_val_power_change","rebond_unval","send_vsc_without_downtime_ack","send_vsc_without_downtime_ack","insufficient_shares","consumer_update_val","consumer_update_val","some_undels_expired_but_not_completed","send_vsc_not_because_change","send_vsc_without_downtime_ack","consumer_del_val","consumer_add_val","some_undels_expired_but_not_completed","consumer_add_val","consumer_update_val","consumer_del_val","rebond_unval","send_vsc_without_downtime_ack","insufficient_shares","send_vsc_not_because_change","send_vsc_without_downtime_ack","consumer_send_maturation","consumer_send_maturation","consumer_send_maturation","consumer_send_maturation","consumer_send_maturation","more_than_one_third_val_power_change","rebond_unval","send_vsc_without_downtime_ack","insufficient_shares","consumer_del_val","consumer_update_val","consumer_add_val","consumer_send_maturation","send_vsc_without_downtime_ack","insufficient_shares","send_vsc_without_downtime_ack","consumer_send_maturation","consumer_add_val","consumer_del_val","some_undels_expired_but_not_completed","complete_undel_immediate","complete_undel_immediate","set_unval_hold_false","send_vsc_without_downtime_ack","complete_unval_in_endblock","some_undels_expired_but_not_completed","complete_undel_immediate","complete_undel_immediate"]},{"meta":{"commit":"7ffd0c04e4205cbc9caf212abfe6c59ee43153bf"},"constants":{"P":"provider","C":"consumer","UNBONDING_SECONDS_P":70,"UNBONDING_SECONDS_C":50,"TRUSTING_SECONDS":49,"NUM_VALIDATORS":4,"MAX_VALIDATORS":2,"SLASH_DOUBLESIGN":0,"SLASH_DOWNTIME":0,"JAIL_SECONDS":999999999999999,"BLOCK_SECONDS":6,"INITIAL_DELEGATOR_TOKENS":10000000000000,"DELEGATE_AMT_MIN":1000,"DELEGATE_AMT_MAX":5000,"UNDELEGATE_AMT_MIN":1000,"UNDELEGATE_AMT_MAX":5000,"ISDOWNTIME_PROBABILITY":0.5,"MAX_NUM_PACKETS_FOR_DELIVER":6},"actions":[{"ix":0,"action":{"kind":"Undelegate","val":1,"amt":3897},"partialState":{"h":1,"t":6,"tokens":[5000,4000,3000,2000],"delegation":[4000,3000,2000,1000],"delegatorTokens":10000000000000}},{"ix":1,"action":{"kind":"Deliver","chain":"consumer","numPackets":6},"partialState":{"h":1,"t":6,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":2,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":2,"t":12,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":3,"action":{"kind":"ConsumerSlash","val":1,"infractionHeight":0,"isDowntime":true},"partialState":{"h":2,"t":12,"outstandingDowntime":[false,true,false,false]}},{"ix":4,"action":{"kind":"Delegate","val":1,"amt":3168},"partialState":{"h":1,"t":6,"tokens":[5000,7168,3000,2000],"delegation":[4000,6168,2000,1000],"delegatorTokens":9999999996832}},{"ix":5,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":2,"t":12,"tokens":[5000,7168,3000,2000],"delegation":[4000,6168,2000,1000],"delegatorTokens":9999999996832,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":6,"action":{"kind":"ConsumerSlash","val":3,"infractionHeight":0,"isDowntime":true},"partialState":{"h":2,"t":12,"outstandingDowntime":[false,true,false,true]}},{"ix":7,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":3,"t":18,"tokens":[5000,7168,3000,2000],"delegation":[4000,6168,2000,1000],"delegatorTokens":9999999996832,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":8,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":4,"t":24,"tokens":[5000,7168,3000,2000],"delegation":[4000,6168,2000,1000],"delegatorTokens":9999999996832,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":9,"action":{"kind":"Delegate","val":0,"amt":4381},"partialState":{"h":4,"t":24,"tokens":[9381,7168,3000,2000],"delegation":[8381,6168,2000,1000],"delegatorTokens":9999999992451}},{"ix":10,"action":{"kind":"Deliver","chain":"consumer","numPackets":2},"partialState":{"h":2,"t":12,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,true,false,true]}},{"ix":11,"action":{"kind":"Deliver","chain":"provider","numPackets":1},"partialState":{"h":4,"t":24,"tokens":[9381,7168,3000,2000],"delegation":[8381,6168,2000,1000],"delegatorTokens":9999999992451,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":12,"action":{"kind":"Deliver","chain":"consumer","numPackets":3},"partialState":{"h":2,"t":12,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,true,false,true]}},{"ix":13,"action":{"kind":"Deliver","chain":"provider","numPackets":3},"partialState":{"h":4,"t":24,"tokens":[9381,7168,3000,2000],"delegation":[8381,6168,2000,1000],"delegatorTokens":9999999992451,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":14,"action":{"kind":"Undelegate","val":0,"amt":3487},"partialState":{"h":4,"t":24,"tokens":[5894,7168,3000,2000],"delegation":[4894,6168,2000,1000],"delegatorTokens":9999999992451}},{"ix":15,"action":{"kind":"ConsumerSlash","val":2,"infractionHeight":1,"isDowntime":true},"partialState":{"h":2,"t":12,"outstandingDowntime":[false,true,true,true]}},{"ix":16,"action":{"kind":"Undelegate","val":3,"amt":4493},"partialState":{"h":4,"t":24,"tokens":[5894,7168,3000,2000],"delegation":[4894,6168,2000,1000],"delegatorTokens":9999999992451}},{"ix":17,"action":{"kind":"Undelegate","val":1,"amt":2987},"partialState":{"h":4,"t":24,"tokens":[5894,4181,3000,2000],"delegation":[4894,3181,2000,1000],"delegatorTokens":9999999992451}},{"ix":18,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":3,"t":18,"consumerPower":[5000,7168,null,null],"outstandingDowntime":[false,true,true,true]}},{"ix":19,"action":{"kind":"Deliver","chain":"consumer","numPackets":5},"partialState":{"h":3,"t":18,"consumerPower":[5000,7168,null,null],"outstandingDowntime":[false,true,true,true]}},{"ix":20,"action":{"kind":"Undelegate","val":1,"amt":1352},"partialState":{"h":4,"t":24,"tokens":[5894,2829,3000,2000],"delegation":[4894,1829,2000,1000],"delegatorTokens":9999999992451}},{"ix":21,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":22,"action":{"kind":"Delegate","val":1,"amt":3459},"partialState":{"h":4,"t":24,"tokens":[5894,6288,3000,2000],"delegation":[4894,5288,2000,1000],"delegatorTokens":9999999988992}},{"ix":23,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":4,"t":24,"consumerPower":[5000,7168,null,null],"outstandingDowntime":[false,true,true,true]}},{"ix":24,"action":{"kind":"Deliver","chain":"consumer","numPackets":1},"partialState":{"h":4,"t":24,"consumerPower":[5000,7168,null,null],"outstandingDowntime":[false,true,true,true]}},{"ix":25,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":5,"t":30,"consumerPower":[5000,7168,null,null],"outstandingDowntime":[false,true,true,true]}},{"ix":26,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":5,"t":30,"tokens":[5894,6288,3000,2000],"delegation":[4894,5288,2000,1000],"delegatorTokens":9999999988992,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":27,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":28,"action":{"kind":"Delegate","val":3,"amt":2963},"partialState":{"h":5,"t":30,"tokens":[5894,6288,3000,4963],"delegation":[4894,5288,2000,3963],"delegatorTokens":9999999986029}},{"ix":29,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":6,"t":36,"tokens":[5894,6288,3000,4963],"delegation":[4894,5288,2000,3963],"delegatorTokens":9999999986029,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":30,"action":{"kind":"Undelegate","val":2,"amt":4517},"partialState":{"h":6,"t":36,"tokens":[5894,6288,3000,4963],"delegation":[4894,5288,2000,3963],"delegatorTokens":9999999986029}},{"ix":31,"action":{"kind":"Delegate","val":2,"amt":1317},"partialState":{"h":6,"t":36,"tokens":[5894,6288,4317,4963],"delegation":[4894,5288,3317,3963],"delegatorTokens":9999999984712}},{"ix":32,"action":{"kind":"Deliver","chain":"provider","numPackets":6},"partialState":{"h":6,"t":36,"tokens":[5894,6288,4317,4963],"delegation":[4894,5288,3317,3963],"delegatorTokens":9999999984712,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":33,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":7,"t":42,"tokens":[5894,6288,4317,4963],"delegation":[4894,5288,3317,3963],"delegatorTokens":9999999984712,"jailed":[null,1000000000000035,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":34,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":8,"t":48,"tokens":[5894,6288,4317,4963],"delegation":[4894,5288,3317,3963],"delegatorTokens":9999999984712,"jailed":[null,1000000000000035,null,null],"status":["bonded","unbonding","unbonded","bonded"]}},{"ix":35,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":36,"action":{"kind":"Undelegate","val":2,"amt":2306},"partialState":{"h":8,"t":48,"tokens":[5894,6288,2011,4963],"delegation":[4894,5288,1011,3963],"delegatorTokens":9999999984712}},{"ix":37,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":6,"t":36,"consumerPower":[5000,7168,null,null],"outstandingDowntime":[false,true,true,true]}},{"ix":38,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":39,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":9,"t":54,"tokens":[5894,6288,2011,4963],"delegation":[4894,5288,1011,3963],"delegatorTokens":9999999984712,"jailed":[null,1000000000000035,null,null],"status":["bonded","unbonding","unbonded","bonded"]}},{"ix":40,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":7,"t":42,"consumerPower":[5000,7168,null,null],"outstandingDowntime":[false,true,true,true]}},{"ix":41,"action":{"kind":"Deliver","chain":"consumer","numPackets":3},"partialState":{"h":7,"t":42,"consumerPower":[5000,7168,null,null],"outstandingDowntime":[false,false,true,true]}},{"ix":42,"action":{"kind":"Deliver","chain":"provider","numPackets":1},"partialState":{"h":9,"t":54,"tokens":[5894,6288,2011,4963],"delegation":[4894,5288,1011,3963],"delegatorTokens":9999999984712,"jailed":[null,1000000000000035,null,null],"status":["bonded","unbonding","unbonded","bonded"]}},{"ix":43,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":8,"t":48,"consumerPower":[5894,null,null,4963],"outstandingDowntime":[false,false,true,true]}},{"ix":44,"action":{"kind":"Delegate","val":3,"amt":4123},"partialState":{"h":9,"t":54,"tokens":[5894,6288,2011,9086],"delegation":[4894,5288,1011,8086],"delegatorTokens":9999999980589}},{"ix":45,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":10,"t":60,"tokens":[5894,6288,2011,9086],"delegation":[4894,5288,1011,8086],"delegatorTokens":9999999980589,"jailed":[null,1000000000000035,null,null],"status":["bonded","unbonding","unbonded","bonded"]}},{"ix":46,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":9,"t":54,"consumerPower":[5894,null,null,4963],"outstandingDowntime":[false,false,true,true]}},{"ix":47,"action":{"kind":"Deliver","chain":"provider","numPackets":5},"partialState":{"h":10,"t":60,"tokens":[5894,6288,2011,9086],"delegation":[4894,5288,1011,8086],"delegatorTokens":9999999980589,"jailed":[null,1000000000000035,null,null],"status":["bonded","unbonding","unbonded","bonded"]}},{"ix":48,"action":{"kind":"Deliver","chain":"provider","numPackets":4},"partialState":{"h":10,"t":60,"tokens":[5894,6288,2011,9086],"delegation":[4894,5288,1011,8086],"delegatorTokens":9999999980589,"jailed":[null,1000000000000035,null,null],"status":["bonded","unbonding","unbonded","bonded"]}},{"ix":49,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":10,"t":60,"consumerPower":[5894,null,null,4963],"outstandingDowntime":[false,false,true,true]}},{"ix":50,"action":{"kind":"Delegate","val":0,"amt":4727},"partialState":{"h":10,"t":60,"tokens":[10621,6288,2011,9086],"delegation":[9621,5288,1011,8086],"delegatorTokens":9999999975862}},{"ix":51,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":11,"t":66,"consumerPower":[5894,null,null,4963],"outstandingDowntime":[false,false,true,true]}},{"ix":52,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":11,"t":66,"tokens":[10621,6288,2011,9086],"delegation":[9621,5288,1011,8086],"delegatorTokens":9999999975862,"jailed":[null,1000000000000035,null,null],"status":["bonded","unbonding","unbonded","bonded"]}},{"ix":53,"action":{"kind":"Deliver","chain":"consumer","numPackets":3},"partialState":{"h":11,"t":66,"consumerPower":[5894,null,null,4963],"outstandingDowntime":[false,false,true,true]}},{"ix":54,"action":{"kind":"Deliver","chain":"provider","numPackets":6},"partialState":{"h":11,"t":66,"tokens":[10621,6288,2011,9086],"delegation":[9621,5288,1011,8086],"delegatorTokens":9999999975862,"jailed":[null,1000000000000035,null,null],"status":["bonded","unbonding","unbonded","bonded"]}},{"ix":55,"action":{"kind":"Undelegate","val":0,"amt":4820},"partialState":{"h":11,"t":66,"tokens":[5801,6288,2011,9086],"delegation":[4801,5288,1011,8086],"delegatorTokens":9999999975862}},{"ix":56,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":12,"t":72,"consumerPower":[5894,null,null,9086],"outstandingDowntime":[false,false,true,true]}},{"ix":57,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":58,"action":{"kind":"Delegate","val":0,"amt":1515},"partialState":{"h":11,"t":66,"tokens":[7316,6288,2011,9086],"delegation":[6316,5288,1011,8086],"delegatorTokens":9999999974347}},{"ix":59,"action":{"kind":"Delegate","val":1,"amt":1797},"partialState":{"h":11,"t":66,"tokens":[7316,8085,2011,9086],"delegation":[6316,7085,1011,8086],"delegatorTokens":9999999972550}},{"ix":60,"action":{"kind":"Delegate","val":1,"amt":3682},"partialState":{"h":11,"t":66,"tokens":[7316,11767,2011,9086],"delegation":[6316,10767,1011,8086],"delegatorTokens":9999999968868}},{"ix":61,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":12,"t":72,"tokens":[7316,11767,2011,9086],"delegation":[6316,10767,1011,8086],"delegatorTokens":9999999968868,"jailed":[null,1000000000000035,null,null],"status":["bonded","unbonding","unbonded","bonded"]}},{"ix":62,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":13,"t":78,"tokens":[7316,11767,2011,9086],"delegation":[6316,10767,1011,8086],"delegatorTokens":9999999968868,"jailed":[null,1000000000000035,null,null],"status":["bonded","unbonding","unbonded","bonded"]}},{"ix":63,"action":{"kind":"Undelegate","val":0,"amt":1530},"partialState":{"h":13,"t":78,"tokens":[5786,11767,2011,9086],"delegation":[4786,10767,1011,8086],"delegatorTokens":9999999968868}},{"ix":64,"action":{"kind":"Undelegate","val":0,"amt":2572},"partialState":{"h":13,"t":78,"tokens":[3214,11767,2011,9086],"delegation":[2214,10767,1011,8086],"delegatorTokens":9999999968868}},{"ix":65,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":14,"t":84,"tokens":[3214,11767,2011,9086],"delegation":[2214,10767,1011,8086],"delegatorTokens":9999999968868,"jailed":[null,1000000000000035,null,null],"status":["bonded","unbonding","unbonded","bonded"]}},{"ix":66,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":13,"t":78,"consumerPower":[5894,null,null,9086],"outstandingDowntime":[false,false,true,true]}},{"ix":67,"action":{"kind":"Deliver","chain":"provider","numPackets":3},"partialState":{"h":14,"t":84,"tokens":[3214,11767,2011,9086],"delegation":[2214,10767,1011,8086],"delegatorTokens":9999999968868,"jailed":[null,1000000000000035,null,null],"status":["bonded","unbonding","unbonded","bonded"]}},{"ix":68,"action":{"kind":"Deliver","chain":"provider","numPackets":5},"partialState":{"h":14,"t":84,"tokens":[3214,11767,2011,9086],"delegation":[2214,10767,1011,8086],"delegatorTokens":9999999968868,"jailed":[null,1000000000000035,null,null],"status":["bonded","unbonding","unbonded","bonded"]}},{"ix":69,"action":{"kind":"Deliver","chain":"provider","numPackets":5},"partialState":{"h":14,"t":84,"tokens":[3214,11767,2011,9086],"delegation":[2214,10767,1011,8086],"delegatorTokens":9999999968868,"jailed":[null,1000000000000035,null,null],"status":["bonded","unbonding","unbonded","bonded"]}},{"ix":70,"action":{"kind":"Undelegate","val":1,"amt":2069},"partialState":{"h":14,"t":84,"tokens":[3214,9698,2011,9086],"delegation":[2214,8698,1011,8086],"delegatorTokens":9999999968868}},{"ix":71,"action":{"kind":"Deliver","chain":"consumer","numPackets":1},"partialState":{"h":13,"t":78,"consumerPower":[5894,null,null,9086],"outstandingDowntime":[false,false,true,true]}},{"ix":72,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":14,"t":84,"consumerPower":[10621,null,null,9086],"outstandingDowntime":[false,false,true,true]}},{"ix":73,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":15,"t":90,"tokens":[3214,9698,2011,9086],"delegation":[2214,8698,1011,8086],"delegatorTokens":9999999968868,"jailed":[null,1000000000000035,null,null],"status":["bonded","unbonding","unbonded","bonded"]}},{"ix":74,"action":{"kind":"Delegate","val":1,"amt":4463},"partialState":{"h":15,"t":90,"tokens":[3214,14161,2011,9086],"delegation":[2214,13161,1011,8086],"delegatorTokens":9999999964405}},{"ix":75,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":76,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":77,"action":{"kind":"Deliver","chain":"provider","numPackets":1},"partialState":{"h":15,"t":90,"tokens":[3214,14161,2011,9086],"delegation":[2214,13161,1011,8086],"delegatorTokens":9999999964405,"jailed":[null,1000000000000035,null,null],"status":["bonded","unbonding","unbonded","bonded"]}},{"ix":78,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":16,"t":96,"tokens":[3214,14161,2011,9086],"delegation":[2214,13161,1011,8086],"delegatorTokens":9999999964405,"jailed":[null,1000000000000035,null,null],"status":["bonded","unbonding","unbonded","bonded"]}},{"ix":79,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":17,"t":102,"tokens":[3214,14161,2011,9086],"delegation":[2214,13161,1011,8086],"delegatorTokens":9999999964405,"jailed":[null,1000000000000035,null,null],"status":["bonded","unbonding","unbonded","bonded"]}},{"ix":80,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":81,"action":{"kind":"Delegate","val":2,"amt":2539},"partialState":{"h":17,"t":102,"tokens":[3214,14161,4550,9086],"delegation":[2214,13161,3550,8086],"delegatorTokens":9999999961866}},{"ix":82,"action":{"kind":"Deliver","chain":"provider","numPackets":5},"partialState":{"h":17,"t":102,"tokens":[3214,14161,4550,9086],"delegation":[2214,13161,3550,8086],"delegatorTokens":9999999961866,"jailed":[null,1000000000000035,null,null],"status":["bonded","unbonding","unbonded","bonded"]}},{"ix":83,"action":{"kind":"Delegate","val":1,"amt":3003},"partialState":{"h":17,"t":102,"tokens":[3214,17164,4550,9086],"delegation":[2214,16164,3550,8086],"delegatorTokens":9999999958863}},{"ix":84,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":18,"t":108,"tokens":[3214,17164,4550,9086],"delegation":[2214,16164,3550,8086],"delegatorTokens":9999999958863,"jailed":[null,1000000000000035,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":85,"action":{"kind":"Undelegate","val":2,"amt":3165},"partialState":{"h":18,"t":108,"tokens":[3214,17164,1385,9086],"delegation":[2214,16164,385,8086],"delegatorTokens":9999999958863}},{"ix":86,"action":{"kind":"Delegate","val":0,"amt":4796},"partialState":{"h":18,"t":108,"tokens":[8010,17164,1385,9086],"delegation":[7010,16164,385,8086],"delegatorTokens":9999999954067}},{"ix":87,"action":{"kind":"Undelegate","val":0,"amt":1228},"partialState":{"h":18,"t":108,"tokens":[6782,17164,1385,9086],"delegation":[5782,16164,385,8086],"delegatorTokens":9999999954067}},{"ix":88,"action":{"kind":"Undelegate","val":0,"amt":4643},"partialState":{"h":18,"t":108,"tokens":[2139,17164,1385,9086],"delegation":[1139,16164,385,8086],"delegatorTokens":9999999954067}},{"ix":89,"action":{"kind":"Undelegate","val":2,"amt":2984},"partialState":{"h":18,"t":108,"tokens":[2139,17164,1385,9086],"delegation":[1139,16164,385,8086],"delegatorTokens":9999999954067}},{"ix":90,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":91,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":15,"t":90,"consumerPower":[10621,null,null,9086],"outstandingDowntime":[false,false,true,true]}},{"ix":92,"action":{"kind":"Undelegate","val":2,"amt":4129},"partialState":{"h":18,"t":108,"tokens":[2139,17164,1385,9086],"delegation":[1139,16164,385,8086],"delegatorTokens":9999999954067}},{"ix":93,"action":{"kind":"Delegate","val":0,"amt":1576},"partialState":{"h":18,"t":108,"tokens":[3715,17164,1385,9086],"delegation":[2715,16164,385,8086],"delegatorTokens":9999999952491}},{"ix":94,"action":{"kind":"Undelegate","val":1,"amt":1676},"partialState":{"h":18,"t":108,"tokens":[3715,15488,1385,9086],"delegation":[2715,14488,385,8086],"delegatorTokens":9999999952491}},{"ix":95,"action":{"kind":"Undelegate","val":1,"amt":2015},"partialState":{"h":18,"t":108,"tokens":[3715,13473,1385,9086],"delegation":[2715,12473,385,8086],"delegatorTokens":9999999952491}},{"ix":96,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":97,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":19,"t":114,"tokens":[3715,13473,1385,9086],"delegation":[2715,12473,385,8086],"delegatorTokens":9999999952491,"jailed":[null,1000000000000035,null,null],"status":["bonded","unbonding","unbonding","bonded"]}},{"ix":98,"action":{"kind":"Delegate","val":2,"amt":1584},"partialState":{"h":19,"t":114,"tokens":[3715,13473,2969,9086],"delegation":[2715,12473,1969,8086],"delegatorTokens":9999999950907}},{"ix":99,"action":{"kind":"Deliver","chain":"consumer","numPackets":6},"partialState":{"h":15,"t":90,"consumerPower":[10621,null,null,9086],"outstandingDowntime":[false,false,true,true]}},{"ix":100,"action":{"kind":"Undelegate","val":2,"amt":3373},"partialState":{"h":19,"t":114,"tokens":[3715,13473,2969,9086],"delegation":[2715,12473,1969,8086],"delegatorTokens":9999999950907}},{"ix":101,"action":{"kind":"Undelegate","val":3,"amt":2537},"partialState":{"h":19,"t":114,"tokens":[3715,13473,2969,6549],"delegation":[2715,12473,1969,5549],"delegatorTokens":9999999950907}},{"ix":102,"action":{"kind":"Undelegate","val":0,"amt":2397},"partialState":{"h":19,"t":114,"tokens":[1318,13473,2969,6549],"delegation":[318,12473,1969,5549],"delegatorTokens":9999999950907}},{"ix":103,"action":{"kind":"Delegate","val":2,"amt":1251},"partialState":{"h":19,"t":114,"tokens":[1318,13473,4220,6549],"delegation":[318,12473,3220,5549],"delegatorTokens":9999999949656}},{"ix":104,"action":{"kind":"Delegate","val":0,"amt":3061},"partialState":{"h":19,"t":114,"tokens":[4379,13473,4220,6549],"delegation":[3379,12473,3220,5549],"delegatorTokens":9999999946595}},{"ix":105,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":106,"action":{"kind":"Deliver","chain":"consumer","numPackets":6},"partialState":{"h":15,"t":90,"consumerPower":[10621,null,null,9086],"outstandingDowntime":[false,false,true,true]}},{"ix":107,"action":{"kind":"Deliver","chain":"provider","numPackets":2},"partialState":{"h":19,"t":114,"tokens":[4379,13473,4220,6549],"delegation":[3379,12473,3220,5549],"delegatorTokens":9999999946595,"jailed":[null,1000000000000035,null,null],"status":["bonded","unbonding","unbonding","bonded"]}},{"ix":108,"action":{"kind":"Delegate","val":3,"amt":2907},"partialState":{"h":19,"t":114,"tokens":[4379,13473,4220,9456],"delegation":[3379,12473,3220,8456],"delegatorTokens":9999999943688}},{"ix":109,"action":{"kind":"Deliver","chain":"consumer","numPackets":6},"partialState":{"h":15,"t":90,"consumerPower":[10621,null,null,9086],"outstandingDowntime":[false,false,true,true]}},{"ix":110,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":16,"t":96,"consumerPower":[null,null,4550,9086],"outstandingDowntime":[false,false,true,true]}},{"ix":111,"action":{"kind":"Undelegate","val":1,"amt":1230},"partialState":{"h":19,"t":114,"tokens":[4379,12243,4220,9456],"delegation":[3379,11243,3220,8456],"delegatorTokens":9999999943688}},{"ix":112,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":17,"t":102,"consumerPower":[null,null,4550,9086],"outstandingDowntime":[false,false,true,true]}},{"ix":113,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":114,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":115,"action":{"kind":"Deliver","chain":"consumer","numPackets":4},"partialState":{"h":17,"t":102,"consumerPower":[null,null,4550,9086],"outstandingDowntime":[false,false,true,true]}},{"ix":116,"action":{"kind":"Undelegate","val":1,"amt":4287},"partialState":{"h":19,"t":114,"tokens":[4379,7956,4220,9456],"delegation":[3379,6956,3220,8456],"delegatorTokens":9999999943688}},{"ix":117,"action":{"kind":"Deliver","chain":"provider","numPackets":2},"partialState":{"h":19,"t":114,"tokens":[4379,7956,4220,9456],"delegation":[3379,6956,3220,8456],"delegatorTokens":9999999943688,"jailed":[null,1000000000000035,null,null],"status":["bonded","unbonding","unbonding","bonded"]}},{"ix":118,"action":{"kind":"Undelegate","val":2,"amt":1795},"partialState":{"h":19,"t":114,"tokens":[4379,7956,2425,9456],"delegation":[3379,6956,1425,8456],"delegatorTokens":9999999943688}},{"ix":119,"action":{"kind":"Delegate","val":3,"amt":1330},"partialState":{"h":19,"t":114,"tokens":[4379,7956,2425,10786],"delegation":[3379,6956,1425,9786],"delegatorTokens":9999999942358}},{"ix":120,"action":{"kind":"Deliver","chain":"provider","numPackets":4},"partialState":{"h":19,"t":114,"tokens":[4379,7956,2425,10786],"delegation":[3379,6956,1425,9786],"delegatorTokens":9999999942358,"jailed":[null,1000000000000035,null,null],"status":["bonded","unbonding","unbonding","bonded"]}},{"ix":121,"action":{"kind":"Delegate","val":3,"amt":3621},"partialState":{"h":19,"t":114,"tokens":[4379,7956,2425,14407],"delegation":[3379,6956,1425,13407],"delegatorTokens":9999999938737}},{"ix":122,"action":{"kind":"Undelegate","val":2,"amt":2282},"partialState":{"h":19,"t":114,"tokens":[4379,7956,2425,14407],"delegation":[3379,6956,1425,13407],"delegatorTokens":9999999938737}},{"ix":123,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":124,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":18,"t":108,"consumerPower":[null,null,4550,9086],"outstandingDowntime":[false,false,true,true]}},{"ix":125,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":126,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":127,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":128,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":129,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":20,"t":120,"tokens":[4379,7956,2425,14407],"delegation":[3379,6956,1425,13407],"delegatorTokens":9999999938737,"jailed":[null,1000000000000035,null,null],"status":["bonded","unbonding","unbonding","bonded"]}},{"ix":130,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":131,"action":{"kind":"Deliver","chain":"consumer","numPackets":2},"partialState":{"h":18,"t":108,"consumerPower":[null,null,4550,9086],"outstandingDowntime":[false,false,true,true]}},{"ix":132,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":19,"t":114,"consumerPower":[3715,null,null,9086],"outstandingDowntime":[false,false,true,true]}},{"ix":133,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":21,"t":126,"tokens":[4379,7956,2425,14407],"delegation":[3379,6956,1425,13407],"delegatorTokens":9999999938737,"jailed":[null,1000000000000035,null,null],"status":["bonded","unbonding","unbonding","bonded"]}},{"ix":134,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":135,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":136,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":137,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":22,"t":132,"tokens":[4379,7956,2425,14407],"delegation":[3379,6956,1425,13407],"delegatorTokens":9999999938737,"jailed":[null,1000000000000035,null,null],"status":["bonded","unbonding","unbonding","bonded"]}},{"ix":138,"action":{"kind":"Deliver","chain":"provider","numPackets":6},"partialState":{"h":22,"t":132,"tokens":[4379,7956,2425,14407],"delegation":[3379,6956,1425,13407],"delegatorTokens":9999999938737,"jailed":[null,1000000000000035,null,null],"status":["bonded","unbonding","unbonding","bonded"]}},{"ix":139,"action":{"kind":"Undelegate","val":2,"amt":4540},"partialState":{"h":22,"t":132,"tokens":[4379,7956,2425,14407],"delegation":[3379,6956,1425,13407],"delegatorTokens":9999999938737}},{"ix":140,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":23,"t":138,"tokens":[4379,7956,2425,14407],"delegation":[3379,6956,1425,13407],"delegatorTokens":9999999946563,"jailed":[null,1000000000000035,null,null],"status":["bonded","unbonding","unbonding","bonded"]}},{"ix":141,"action":{"kind":"Delegate","val":3,"amt":4153},"partialState":{"h":23,"t":138,"tokens":[4379,7956,2425,18560],"delegation":[3379,6956,1425,17560],"delegatorTokens":9999999942410}},{"ix":142,"action":{"kind":"Delegate","val":0,"amt":3132},"partialState":{"h":23,"t":138,"tokens":[7511,7956,2425,18560],"delegation":[6511,6956,1425,17560],"delegatorTokens":9999999939278}},{"ix":143,"action":{"kind":"Delegate","val":2,"amt":4018},"partialState":{"h":23,"t":138,"tokens":[7511,7956,6443,18560],"delegation":[6511,6956,5443,17560],"delegatorTokens":9999999935260}},{"ix":144,"action":{"kind":"Delegate","val":0,"amt":1823},"partialState":{"h":23,"t":138,"tokens":[9334,7956,6443,18560],"delegation":[8334,6956,5443,17560],"delegatorTokens":9999999933437}},{"ix":145,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":146,"action":{"kind":"Deliver","chain":"consumer","numPackets":4},"partialState":{"h":19,"t":114,"consumerPower":[3715,null,null,9086],"outstandingDowntime":[false,false,true,true]}},{"ix":147,"action":{"kind":"Undelegate","val":3,"amt":3614},"partialState":{"h":23,"t":138,"tokens":[9334,7956,6443,14946],"delegation":[8334,6956,5443,13946],"delegatorTokens":9999999933437}},{"ix":148,"action":{"kind":"Undelegate","val":1,"amt":1826},"partialState":{"h":23,"t":138,"tokens":[9334,6130,6443,14946],"delegation":[8334,5130,5443,13946],"delegatorTokens":9999999933437}},{"ix":149,"action":{"kind":"Delegate","val":1,"amt":3766},"partialState":{"h":23,"t":138,"tokens":[9334,9896,6443,14946],"delegation":[8334,8896,5443,13946],"delegatorTokens":9999999929671}},{"ix":150,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":20,"t":120,"consumerPower":[4379,null,null,14407],"outstandingDowntime":[false,false,true,true]}},{"ix":151,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":152,"action":{"kind":"Delegate","val":1,"amt":4014},"partialState":{"h":23,"t":138,"tokens":[9334,13910,6443,14946],"delegation":[8334,12910,5443,13946],"delegatorTokens":9999999925657}},{"ix":153,"action":{"kind":"Deliver","chain":"provider","numPackets":2},"partialState":{"h":23,"t":138,"tokens":[9334,13910,6443,14946],"delegation":[8334,12910,5443,13946],"delegatorTokens":9999999925657,"jailed":[null,1000000000000035,null,null],"status":["bonded","unbonding","unbonding","bonded"]}},{"ix":154,"action":{"kind":"Deliver","chain":"consumer","numPackets":1},"partialState":{"h":20,"t":120,"consumerPower":[4379,null,null,14407],"outstandingDowntime":[false,false,true,true]}},{"ix":155,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":156,"action":{"kind":"Deliver","chain":"provider","numPackets":5},"partialState":{"h":23,"t":138,"tokens":[9334,13910,6443,14946],"delegation":[8334,12910,5443,13946],"delegatorTokens":9999999925657,"jailed":[null,1000000000000035,null,null],"status":["bonded","unbonding","unbonding","bonded"]}},{"ix":157,"action":{"kind":"Undelegate","val":0,"amt":3115},"partialState":{"h":23,"t":138,"tokens":[6219,13910,6443,14946],"delegation":[5219,12910,5443,13946],"delegatorTokens":9999999925657}},{"ix":158,"action":{"kind":"Deliver","chain":"consumer","numPackets":1},"partialState":{"h":20,"t":120,"consumerPower":[4379,null,null,14407],"outstandingDowntime":[false,false,true,true]}},{"ix":159,"action":{"kind":"Undelegate","val":3,"amt":3610},"partialState":{"h":23,"t":138,"tokens":[6219,13910,6443,11336],"delegation":[5219,12910,5443,10336],"delegatorTokens":9999999925657}},{"ix":160,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":161,"action":{"kind":"Undelegate","val":3,"amt":3793},"partialState":{"h":23,"t":138,"tokens":[6219,13910,6443,7543],"delegation":[5219,12910,5443,6543],"delegatorTokens":9999999925657}},{"ix":162,"action":{"kind":"Deliver","chain":"consumer","numPackets":6},"partialState":{"h":20,"t":120,"consumerPower":[4379,null,null,14407],"outstandingDowntime":[false,false,true,true]}},{"ix":163,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":164,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":165,"action":{"kind":"Deliver","chain":"provider","numPackets":6},"partialState":{"h":23,"t":138,"tokens":[6219,13910,6443,7543],"delegation":[5219,12910,5443,6543],"delegatorTokens":9999999925657,"jailed":[null,1000000000000035,null,null],"status":["bonded","unbonding","unbonding","bonded"]}},{"ix":166,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":24,"t":144,"tokens":[6219,13910,6443,7543],"delegation":[5219,12910,5443,6543],"delegatorTokens":9999999925657,"jailed":[null,1000000000000035,null,null],"status":["unbonding","unbonded","bonded","bonded"]}},{"ix":167,"action":{"kind":"Deliver","chain":"consumer","numPackets":2},"partialState":{"h":20,"t":120,"consumerPower":[4379,null,null,14407],"outstandingDowntime":[false,false,true,true]}},{"ix":168,"action":{"kind":"Undelegate","val":1,"amt":3843},"partialState":{"h":24,"t":144,"tokens":[6219,10067,6443,7543],"delegation":[5219,9067,5443,6543],"delegatorTokens":9999999925657}},{"ix":169,"action":{"kind":"Deliver","chain":"consumer","numPackets":4},"partialState":{"h":20,"t":120,"consumerPower":[4379,null,null,14407],"outstandingDowntime":[false,false,true,true]}},{"ix":170,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":171,"action":{"kind":"Delegate","val":0,"amt":1355},"partialState":{"h":24,"t":144,"tokens":[7574,10067,6443,7543],"delegation":[6574,9067,5443,6543],"delegatorTokens":9999999924302}},{"ix":172,"action":{"kind":"Deliver","chain":"consumer","numPackets":3},"partialState":{"h":20,"t":120,"consumerPower":[4379,null,null,14407],"outstandingDowntime":[false,false,true,true]}},{"ix":173,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":174,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":175,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":176,"action":{"kind":"Delegate","val":1,"amt":1400},"partialState":{"h":24,"t":144,"tokens":[7574,11467,6443,7543],"delegation":[6574,10467,5443,6543],"delegatorTokens":9999999922902}},{"ix":177,"action":{"kind":"Deliver","chain":"provider","numPackets":4},"partialState":{"h":24,"t":144,"tokens":[7574,11467,6443,7543],"delegation":[6574,10467,5443,6543],"delegatorTokens":9999999922902,"jailed":[null,1000000000000035,null,null],"status":["unbonding","unbonded","bonded","bonded"]}},{"ix":178,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":179,"action":{"kind":"Undelegate","val":1,"amt":2838},"partialState":{"h":24,"t":144,"tokens":[7574,8629,6443,7543],"delegation":[6574,7629,5443,6543],"delegatorTokens":9999999922902}},{"ix":180,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":181,"action":{"kind":"Deliver","chain":"consumer","numPackets":1},"partialState":{"h":20,"t":120,"consumerPower":[4379,null,null,14407],"outstandingDowntime":[false,false,true,true]}},{"ix":182,"action":{"kind":"Undelegate","val":2,"amt":1060},"partialState":{"h":24,"t":144,"tokens":[7574,8629,5383,7543],"delegation":[6574,7629,4383,6543],"delegatorTokens":9999999922902}},{"ix":183,"action":{"kind":"Delegate","val":2,"amt":1378},"partialState":{"h":24,"t":144,"tokens":[7574,8629,6761,7543],"delegation":[6574,7629,5761,6543],"delegatorTokens":9999999921524}},{"ix":184,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":185,"action":{"kind":"Undelegate","val":3,"amt":1292},"partialState":{"h":24,"t":144,"tokens":[7574,8629,6761,6251],"delegation":[6574,7629,5761,5251],"delegatorTokens":9999999921524}},{"ix":186,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":187,"action":{"kind":"Delegate","val":1,"amt":4018},"partialState":{"h":24,"t":144,"tokens":[7574,12647,6761,6251],"delegation":[6574,11647,5761,5251],"delegatorTokens":9999999917506}},{"ix":188,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":189,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":190,"action":{"kind":"Deliver","chain":"consumer","numPackets":2},"partialState":{"h":20,"t":120,"consumerPower":[4379,null,null,14407],"outstandingDowntime":[false,false,true,true]}},{"ix":191,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":25,"t":150,"tokens":[7574,12647,6761,6251],"delegation":[6574,11647,5761,5251],"delegatorTokens":9999999917506,"jailed":[null,1000000000000035,null,null],"status":["bonded","unbonded","bonded","unbonding"]}},{"ix":192,"action":{"kind":"Undelegate","val":2,"amt":4767},"partialState":{"h":25,"t":150,"tokens":[7574,12647,1994,6251],"delegation":[6574,11647,994,5251],"delegatorTokens":9999999917506}},{"ix":193,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":194,"action":{"kind":"Delegate","val":0,"amt":4390},"partialState":{"h":25,"t":150,"tokens":[11964,12647,1994,6251],"delegation":[10964,11647,994,5251],"delegatorTokens":9999999913116}},{"ix":195,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":26,"t":156,"tokens":[11964,12647,1994,6251],"delegation":[10964,11647,994,5251],"delegatorTokens":9999999913116,"jailed":[null,1000000000000035,null,null],"status":["bonded","unbonded","unbonding","bonded"]}},{"ix":196,"action":{"kind":"Delegate","val":0,"amt":2711},"partialState":{"h":26,"t":156,"tokens":[14675,12647,1994,6251],"delegation":[13675,11647,994,5251],"delegatorTokens":9999999910405}},{"ix":197,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":198,"action":{"kind":"Delegate","val":1,"amt":3337},"partialState":{"h":26,"t":156,"tokens":[14675,15984,1994,6251],"delegation":[13675,14984,994,5251],"delegatorTokens":9999999907068}},{"ix":199,"action":{"kind":"Deliver","chain":"provider","numPackets":3},"partialState":{"h":26,"t":156,"tokens":[14675,15984,1994,6251],"delegation":[13675,14984,994,5251],"delegatorTokens":9999999907068,"jailed":[null,1000000000000035,null,null],"status":["bonded","unbonded","unbonding","bonded"]}}],"events":["insufficient_shares","send_downtime_slash_request","send_vsc_without_downtime_ack","send_downtime_slash_request","send_downtime_slash_request","insufficient_shares","consumer_update_val","send_vsc_without_downtime_ack","insufficient_shares","receive_downtime_slash_request","jail","receive_slash_request_unbonded","receive_slash_request_unbonded","more_than_one_third_val_power_change","send_vsc_with_downtime_ack","send_vsc_not_because_change","send_vsc_without_downtime_ack","receive_downtime_slash_ack","consumer_update_val","consumer_del_val","consumer_add_val","send_vsc_without_downtime_ack","send_vsc_without_downtime_ack","consumer_send_maturation","consumer_update_val","send_vsc_without_downtime_ack","send_vsc_without_downtime_ack","consumer_update_val","send_vsc_not_because_change","send_vsc_without_downtime_ack","some_undels_expired_but_not_completed","more_than_one_third_val_power_change","send_vsc_without_downtime_ack","insufficient_shares","insufficient_shares","rebond_unval","send_vsc_without_downtime_ack","insufficient_shares","consumer_del_val","consumer_add_val","consumer_send_maturation","consumer_send_maturation","insufficient_shares","send_vsc_without_downtime_ack","consumer_add_val","consumer_del_val","some_undels_expired_but_not_completed","insufficient_shares","complete_undel_immediate","complete_undel_immediate","complete_undel_immediate","set_unval_hold_false","consumer_update_val","consumer_update_val","more_than_one_third_val_power_change","rebond_unval","complete_unval_in_endblock","some_undels_expired_but_not_completed","send_vsc_without_downtime_ack","more_than_one_third_val_power_change","rebond_unval","send_vsc_without_downtime_ack","more_than_one_third_val_power_change","rebond_unval","some_undels_expired_but_not_completed","send_vsc_without_downtime_ack"]},{"meta":{"commit":"7ffd0c04e4205cbc9caf212abfe6c59ee43153bf"},"constants":{"P":"provider","C":"consumer","UNBONDING_SECONDS_P":70,"UNBONDING_SECONDS_C":50,"TRUSTING_SECONDS":49,"NUM_VALIDATORS":4,"MAX_VALIDATORS":2,"SLASH_DOUBLESIGN":0,"SLASH_DOWNTIME":0,"JAIL_SECONDS":999999999999999,"BLOCK_SECONDS":6,"INITIAL_DELEGATOR_TOKENS":10000000000000,"DELEGATE_AMT_MIN":1000,"DELEGATE_AMT_MAX":5000,"UNDELEGATE_AMT_MIN":1000,"UNDELEGATE_AMT_MAX":5000,"ISDOWNTIME_PROBABILITY":0.5,"MAX_NUM_PACKETS_FOR_DELIVER":6},"actions":[{"ix":0,"action":{"kind":"Delegate","val":1,"amt":3838},"partialState":{"h":1,"t":6,"tokens":[5000,7838,3000,2000],"delegation":[4000,6838,2000,1000],"delegatorTokens":9999999996162}},{"ix":1,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":2,"t":12,"tokens":[5000,7838,3000,2000],"delegation":[4000,6838,2000,1000],"delegatorTokens":9999999996162,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":2,"action":{"kind":"Deliver","chain":"provider","numPackets":2},"partialState":{"h":2,"t":12,"tokens":[5000,7838,3000,2000],"delegation":[4000,6838,2000,1000],"delegatorTokens":9999999996162,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":3,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":4,"action":{"kind":"ConsumerSlash","val":3,"infractionHeight":0,"isDowntime":true},"partialState":{"h":1,"t":6,"outstandingDowntime":[false,false,false,true]}},{"ix":5,"action":{"kind":"Deliver","chain":"consumer","numPackets":5},"partialState":{"h":1,"t":6,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,false,false,true]}},{"ix":6,"action":{"kind":"Delegate","val":0,"amt":3986},"partialState":{"h":2,"t":12,"tokens":[8986,7838,3000,2000],"delegation":[7986,6838,2000,1000],"delegatorTokens":9999999992176}},{"ix":7,"action":{"kind":"Deliver","chain":"provider","numPackets":2},"partialState":{"h":2,"t":12,"tokens":[8986,7838,3000,2000],"delegation":[7986,6838,2000,1000],"delegatorTokens":9999999992176,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":8,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":2,"t":12,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,false,false,true]}},{"ix":9,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":10,"action":{"kind":"ConsumerSlash","val":2,"infractionHeight":0,"isDowntime":true},"partialState":{"h":2,"t":12,"outstandingDowntime":[false,false,true,true]}},{"ix":11,"action":{"kind":"Undelegate","val":2,"amt":2291},"partialState":{"h":2,"t":12,"tokens":[8986,7838,3000,2000],"delegation":[7986,6838,2000,1000],"delegatorTokens":9999999992176}},{"ix":12,"action":{"kind":"Undelegate","val":1,"amt":1648},"partialState":{"h":2,"t":12,"tokens":[8986,6190,3000,2000],"delegation":[7986,5190,2000,1000],"delegatorTokens":9999999992176}},{"ix":13,"action":{"kind":"Delegate","val":1,"amt":3341},"partialState":{"h":2,"t":12,"tokens":[8986,9531,3000,2000],"delegation":[7986,8531,2000,1000],"delegatorTokens":9999999988835}},{"ix":14,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":3,"t":18,"tokens":[8986,9531,3000,2000],"delegation":[7986,8531,2000,1000],"delegatorTokens":9999999988835,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":15,"action":{"kind":"Deliver","chain":"consumer","numPackets":3},"partialState":{"h":2,"t":12,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,false,true,true]}},{"ix":16,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":17,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":18,"action":{"kind":"Undelegate","val":0,"amt":2874},"partialState":{"h":3,"t":18,"tokens":[6112,9531,3000,2000],"delegation":[5112,8531,2000,1000],"delegatorTokens":9999999988835}},{"ix":19,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":20,"action":{"kind":"Undelegate","val":2,"amt":4184},"partialState":{"h":3,"t":18,"tokens":[6112,9531,3000,2000],"delegation":[5112,8531,2000,1000],"delegatorTokens":9999999988835}},{"ix":21,"action":{"kind":"Undelegate","val":2,"amt":1469},"partialState":{"h":3,"t":18,"tokens":[6112,9531,1531,2000],"delegation":[5112,8531,531,1000],"delegatorTokens":9999999988835}},{"ix":22,"action":{"kind":"Undelegate","val":3,"amt":4151},"partialState":{"h":3,"t":18,"tokens":[6112,9531,1531,2000],"delegation":[5112,8531,531,1000],"delegatorTokens":9999999988835}},{"ix":23,"action":{"kind":"Delegate","val":3,"amt":3420},"partialState":{"h":3,"t":18,"tokens":[6112,9531,1531,5420],"delegation":[5112,8531,531,4420],"delegatorTokens":9999999985415}},{"ix":24,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":3,"t":18,"consumerPower":[5000,7838,null,null],"outstandingDowntime":[false,false,true,true]}},{"ix":25,"action":{"kind":"Delegate","val":0,"amt":2520},"partialState":{"h":3,"t":18,"tokens":[8632,9531,1531,5420],"delegation":[7632,8531,531,4420],"delegatorTokens":9999999982895}},{"ix":26,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":4,"t":24,"tokens":[8632,9531,1531,5420],"delegation":[7632,8531,531,4420],"delegatorTokens":9999999982895,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":27,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":4,"t":24,"consumerPower":[5000,7838,null,null],"outstandingDowntime":[false,false,true,true]}},{"ix":28,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":29,"action":{"kind":"Delegate","val":1,"amt":1916},"partialState":{"h":4,"t":24,"tokens":[8632,11447,1531,5420],"delegation":[7632,10447,531,4420],"delegatorTokens":9999999980979}},{"ix":30,"action":{"kind":"Deliver","chain":"provider","numPackets":1},"partialState":{"h":4,"t":24,"tokens":[8632,11447,1531,5420],"delegation":[7632,10447,531,4420],"delegatorTokens":9999999980979,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":31,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":5,"t":30,"tokens":[8632,11447,1531,5420],"delegation":[7632,10447,531,4420],"delegatorTokens":9999999980979,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":32,"action":{"kind":"Undelegate","val":1,"amt":2249},"partialState":{"h":5,"t":30,"tokens":[8632,9198,1531,5420],"delegation":[7632,8198,531,4420],"delegatorTokens":9999999980979}},{"ix":33,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":34,"action":{"kind":"ConsumerSlash","val":1,"infractionHeight":3,"isDowntime":true},"partialState":{"h":4,"t":24,"outstandingDowntime":[false,true,true,true]}},{"ix":35,"action":{"kind":"Undelegate","val":2,"amt":4560},"partialState":{"h":5,"t":30,"tokens":[8632,9198,1531,5420],"delegation":[7632,8198,531,4420],"delegatorTokens":9999999980979}},{"ix":36,"action":{"kind":"Undelegate","val":3,"amt":3193},"partialState":{"h":5,"t":30,"tokens":[8632,9198,1531,2227],"delegation":[7632,8198,531,1227],"delegatorTokens":9999999980979}},{"ix":37,"action":{"kind":"Deliver","chain":"consumer","numPackets":3},"partialState":{"h":4,"t":24,"consumerPower":[5000,7838,null,null],"outstandingDowntime":[false,true,true,true]}},{"ix":38,"action":{"kind":"Undelegate","val":2,"amt":1200},"partialState":{"h":5,"t":30,"tokens":[8632,9198,1531,2227],"delegation":[7632,8198,531,1227],"delegatorTokens":9999999980979}},{"ix":39,"action":{"kind":"Undelegate","val":2,"amt":2257},"partialState":{"h":5,"t":30,"tokens":[8632,9198,1531,2227],"delegation":[7632,8198,531,1227],"delegatorTokens":9999999980979}},{"ix":40,"action":{"kind":"Undelegate","val":1,"amt":1195},"partialState":{"h":5,"t":30,"tokens":[8632,8003,1531,2227],"delegation":[7632,7003,531,1227],"delegatorTokens":9999999980979}},{"ix":41,"action":{"kind":"Undelegate","val":2,"amt":2681},"partialState":{"h":5,"t":30,"tokens":[8632,8003,1531,2227],"delegation":[7632,7003,531,1227],"delegatorTokens":9999999980979}},{"ix":42,"action":{"kind":"Undelegate","val":3,"amt":4952},"partialState":{"h":5,"t":30,"tokens":[8632,8003,1531,2227],"delegation":[7632,7003,531,1227],"delegatorTokens":9999999980979}},{"ix":43,"action":{"kind":"Delegate","val":2,"amt":2299},"partialState":{"h":5,"t":30,"tokens":[8632,8003,3830,2227],"delegation":[7632,7003,2830,1227],"delegatorTokens":9999999978680}},{"ix":44,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":45,"action":{"kind":"Deliver","chain":"consumer","numPackets":6},"partialState":{"h":4,"t":24,"consumerPower":[5000,7838,null,null],"outstandingDowntime":[false,true,true,true]}},{"ix":46,"action":{"kind":"Deliver","chain":"consumer","numPackets":5},"partialState":{"h":4,"t":24,"consumerPower":[5000,7838,null,null],"outstandingDowntime":[false,true,true,true]}},{"ix":47,"action":{"kind":"Delegate","val":3,"amt":3891},"partialState":{"h":5,"t":30,"tokens":[8632,8003,3830,6118],"delegation":[7632,7003,2830,5118],"delegatorTokens":9999999974789}},{"ix":48,"action":{"kind":"Deliver","chain":"consumer","numPackets":6},"partialState":{"h":4,"t":24,"consumerPower":[5000,7838,null,null],"outstandingDowntime":[false,true,true,true]}},{"ix":49,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":50,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":5,"t":30,"consumerPower":[8632,9531,null,null],"outstandingDowntime":[false,true,true,true]}},{"ix":51,"action":{"kind":"Deliver","chain":"consumer","numPackets":6},"partialState":{"h":5,"t":30,"consumerPower":[8632,9531,null,null],"outstandingDowntime":[false,true,true,true]}},{"ix":52,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":6,"t":36,"tokens":[8632,8003,3830,6118],"delegation":[7632,7003,2830,5118],"delegatorTokens":9999999974789,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":53,"action":{"kind":"Deliver","chain":"provider","numPackets":1},"partialState":{"h":6,"t":36,"tokens":[8632,8003,3830,6118],"delegation":[7632,7003,2830,5118],"delegatorTokens":9999999974789,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":54,"action":{"kind":"Delegate","val":0,"amt":1794},"partialState":{"h":6,"t":36,"tokens":[10426,8003,3830,6118],"delegation":[9426,7003,2830,5118],"delegatorTokens":9999999972995}},{"ix":55,"action":{"kind":"Undelegate","val":0,"amt":4882},"partialState":{"h":6,"t":36,"tokens":[5544,8003,3830,6118],"delegation":[4544,7003,2830,5118],"delegatorTokens":9999999972995}},{"ix":56,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":57,"action":{"kind":"Delegate","val":0,"amt":3072},"partialState":{"h":6,"t":36,"tokens":[8616,8003,3830,6118],"delegation":[7616,7003,2830,5118],"delegatorTokens":9999999969923}},{"ix":58,"action":{"kind":"Deliver","chain":"provider","numPackets":6},"partialState":{"h":6,"t":36,"tokens":[8616,8003,3830,6118],"delegation":[7616,7003,2830,5118],"delegatorTokens":9999999969923,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":59,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":7,"t":42,"tokens":[8616,8003,3830,6118],"delegation":[7616,7003,2830,5118],"delegatorTokens":9999999969923,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":60,"action":{"kind":"Delegate","val":1,"amt":4922},"partialState":{"h":7,"t":42,"tokens":[8616,12925,3830,6118],"delegation":[7616,11925,2830,5118],"delegatorTokens":9999999965001}},{"ix":61,"action":{"kind":"Delegate","val":0,"amt":4829},"partialState":{"h":7,"t":42,"tokens":[13445,12925,3830,6118],"delegation":[12445,11925,2830,5118],"delegatorTokens":9999999960172}},{"ix":62,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":6,"t":36,"consumerPower":[8632,9531,null,null],"outstandingDowntime":[false,true,true,true]}},{"ix":63,"action":{"kind":"Deliver","chain":"provider","numPackets":6},"partialState":{"h":7,"t":42,"tokens":[13445,12925,3830,6118],"delegation":[12445,11925,2830,5118],"delegatorTokens":9999999960172,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":64,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":8,"t":48,"tokens":[13445,12925,3830,6118],"delegation":[12445,11925,2830,5118],"delegatorTokens":9999999960172,"jailed":[null,1000000000000041,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":65,"action":{"kind":"Delegate","val":2,"amt":2332},"partialState":{"h":8,"t":48,"tokens":[13445,12925,6162,6118],"delegation":[12445,11925,5162,5118],"delegatorTokens":9999999957840}},{"ix":66,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":7,"t":42,"consumerPower":[8632,9531,null,null],"outstandingDowntime":[false,true,true,true]}},{"ix":67,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":9,"t":54,"tokens":[13445,12925,6162,6118],"delegation":[12445,11925,5162,5118],"delegatorTokens":9999999957840,"jailed":[null,1000000000000041,null,null],"status":["bonded","unbonding","bonded","unbonded"]}},{"ix":68,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":10,"t":60,"tokens":[13445,12925,6162,6118],"delegation":[12445,11925,5162,5118],"delegatorTokens":9999999957840,"jailed":[null,1000000000000041,null,null],"status":["bonded","unbonding","bonded","unbonded"]}},{"ix":69,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":70,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":71,"action":{"kind":"Undelegate","val":3,"amt":2314},"partialState":{"h":10,"t":60,"tokens":[13445,12925,6162,3804],"delegation":[12445,11925,5162,2804],"delegatorTokens":9999999957840}},{"ix":72,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":8,"t":48,"consumerPower":[8632,9531,null,null],"outstandingDowntime":[false,true,true,true]}},{"ix":73,"action":{"kind":"Delegate","val":1,"amt":4050},"partialState":{"h":10,"t":60,"tokens":[13445,16975,6162,3804],"delegation":[12445,15975,5162,2804],"delegatorTokens":9999999953790}},{"ix":74,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":75,"action":{"kind":"Delegate","val":2,"amt":3391},"partialState":{"h":10,"t":60,"tokens":[13445,16975,9553,3804],"delegation":[12445,15975,8553,2804],"delegatorTokens":9999999950399}},{"ix":76,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":9,"t":54,"consumerPower":[8632,9531,null,null],"outstandingDowntime":[false,true,true,true]}},{"ix":77,"action":{"kind":"Delegate","val":3,"amt":4359},"partialState":{"h":10,"t":60,"tokens":[13445,16975,9553,8163],"delegation":[12445,15975,8553,7163],"delegatorTokens":9999999946040}},{"ix":78,"action":{"kind":"Delegate","val":0,"amt":4235},"partialState":{"h":10,"t":60,"tokens":[17680,16975,9553,8163],"delegation":[16680,15975,8553,7163],"delegatorTokens":9999999941805}},{"ix":79,"action":{"kind":"Deliver","chain":"consumer","numPackets":4},"partialState":{"h":9,"t":54,"consumerPower":[8632,9531,null,null],"outstandingDowntime":[false,false,true,true]}},{"ix":80,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":81,"action":{"kind":"Deliver","chain":"consumer","numPackets":3},"partialState":{"h":9,"t":54,"consumerPower":[8632,9531,null,null],"outstandingDowntime":[false,false,true,true]}},{"ix":82,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":83,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":84,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":85,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":11,"t":66,"tokens":[17680,16975,9553,8163],"delegation":[16680,15975,8553,7163],"delegatorTokens":9999999941805,"jailed":[null,1000000000000041,null,null],"status":["bonded","unbonding","bonded","unbonded"]}},{"ix":86,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":87,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":10,"t":60,"consumerPower":[13445,null,6162,null],"outstandingDowntime":[false,false,true,true]}},{"ix":88,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":12,"t":72,"tokens":[17680,16975,9553,8163],"delegation":[16680,15975,8553,7163],"delegatorTokens":9999999941805,"jailed":[null,1000000000000041,null,null],"status":["bonded","unbonding","bonded","unbonded"]}},{"ix":89,"action":{"kind":"Deliver","chain":"provider","numPackets":5},"partialState":{"h":12,"t":72,"tokens":[17680,16975,9553,8163],"delegation":[16680,15975,8553,7163],"delegatorTokens":9999999941805,"jailed":[null,1000000000000041,null,null],"status":["bonded","unbonding","bonded","unbonded"]}},{"ix":90,"action":{"kind":"Delegate","val":2,"amt":1190},"partialState":{"h":12,"t":72,"tokens":[17680,16975,10743,8163],"delegation":[16680,15975,9743,7163],"delegatorTokens":9999999940615}},{"ix":91,"action":{"kind":"Delegate","val":2,"amt":4880},"partialState":{"h":12,"t":72,"tokens":[17680,16975,15623,8163],"delegation":[16680,15975,14623,7163],"delegatorTokens":9999999935735}},{"ix":92,"action":{"kind":"Delegate","val":0,"amt":1808},"partialState":{"h":12,"t":72,"tokens":[19488,16975,15623,8163],"delegation":[18488,15975,14623,7163],"delegatorTokens":9999999933927}},{"ix":93,"action":{"kind":"Undelegate","val":2,"amt":4919},"partialState":{"h":12,"t":72,"tokens":[19488,16975,10704,8163],"delegation":[18488,15975,9704,7163],"delegatorTokens":9999999933927}},{"ix":94,"action":{"kind":"Deliver","chain":"provider","numPackets":2},"partialState":{"h":12,"t":72,"tokens":[19488,16975,10704,8163],"delegation":[18488,15975,9704,7163],"delegatorTokens":9999999933927,"jailed":[null,1000000000000041,null,null],"status":["bonded","unbonding","bonded","unbonded"]}},{"ix":95,"action":{"kind":"Undelegate","val":3,"amt":1485},"partialState":{"h":12,"t":72,"tokens":[19488,16975,10704,6678],"delegation":[18488,15975,9704,5678],"delegatorTokens":9999999933927}},{"ix":96,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":97,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":11,"t":66,"consumerPower":[13445,null,6162,null],"outstandingDowntime":[false,false,true,true]}},{"ix":98,"action":{"kind":"Deliver","chain":"consumer","numPackets":4},"partialState":{"h":11,"t":66,"consumerPower":[13445,null,6162,null],"outstandingDowntime":[false,false,true,true]}},{"ix":99,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":13,"t":78,"tokens":[19488,16975,10704,6678],"delegation":[18488,15975,9704,5678],"delegatorTokens":9999999933927,"jailed":[null,1000000000000041,null,null],"status":["bonded","unbonding","bonded","unbonded"]}},{"ix":100,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":14,"t":84,"tokens":[19488,16975,10704,6678],"delegation":[18488,15975,9704,5678],"delegatorTokens":9999999933927,"jailed":[null,1000000000000041,null,null],"status":["bonded","unbonding","bonded","unbonded"]}},{"ix":101,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":12,"t":72,"consumerPower":[17680,null,9553,null],"outstandingDowntime":[false,false,true,true]}},{"ix":102,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":13,"t":78,"consumerPower":[17680,null,9553,null],"outstandingDowntime":[false,false,true,true]}},{"ix":103,"action":{"kind":"Delegate","val":3,"amt":3195},"partialState":{"h":14,"t":84,"tokens":[19488,16975,10704,9873],"delegation":[18488,15975,9704,8873],"delegatorTokens":9999999930732}},{"ix":104,"action":{"kind":"Deliver","chain":"consumer","numPackets":2},"partialState":{"h":13,"t":78,"consumerPower":[17680,null,9553,null],"outstandingDowntime":[false,false,true,true]}},{"ix":105,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":15,"t":90,"tokens":[19488,16975,10704,9873],"delegation":[18488,15975,9704,8873],"delegatorTokens":9999999930732,"jailed":[null,1000000000000041,null,null],"status":["bonded","unbonding","bonded","unbonded"]}},{"ix":106,"action":{"kind":"Deliver","chain":"provider","numPackets":1},"partialState":{"h":15,"t":90,"tokens":[19488,16975,10704,9873],"delegation":[18488,15975,9704,8873],"delegatorTokens":9999999930732,"jailed":[null,1000000000000041,null,null],"status":["bonded","unbonding","bonded","unbonded"]}},{"ix":107,"action":{"kind":"Deliver","chain":"provider","numPackets":2},"partialState":{"h":15,"t":90,"tokens":[19488,16975,10704,9873],"delegation":[18488,15975,9704,8873],"delegatorTokens":9999999930732,"jailed":[null,1000000000000041,null,null],"status":["bonded","unbonding","bonded","unbonded"]}},{"ix":108,"action":{"kind":"Undelegate","val":0,"amt":2413},"partialState":{"h":15,"t":90,"tokens":[17075,16975,10704,9873],"delegation":[16075,15975,9704,8873],"delegatorTokens":9999999930732}},{"ix":109,"action":{"kind":"Deliver","chain":"consumer","numPackets":3},"partialState":{"h":13,"t":78,"consumerPower":[17680,null,9553,null],"outstandingDowntime":[false,false,true,true]}},{"ix":110,"action":{"kind":"Undelegate","val":3,"amt":2058},"partialState":{"h":15,"t":90,"tokens":[17075,16975,10704,7815],"delegation":[16075,15975,9704,6815],"delegatorTokens":9999999930732}},{"ix":111,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":16,"t":96,"tokens":[17075,16975,10704,7815],"delegation":[16075,15975,9704,6815],"delegatorTokens":9999999930732,"jailed":[null,1000000000000041,null,null],"status":["bonded","unbonding","bonded","unbonded"]}},{"ix":112,"action":{"kind":"Delegate","val":1,"amt":4825},"partialState":{"h":16,"t":96,"tokens":[17075,21800,10704,7815],"delegation":[16075,20800,9704,6815],"delegatorTokens":9999999925907}},{"ix":113,"action":{"kind":"Delegate","val":1,"amt":2921},"partialState":{"h":16,"t":96,"tokens":[17075,24721,10704,7815],"delegation":[16075,23721,9704,6815],"delegatorTokens":9999999922986}},{"ix":114,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":115,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":116,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":117,"action":{"kind":"Undelegate","val":3,"amt":2132},"partialState":{"h":16,"t":96,"tokens":[17075,24721,10704,5683],"delegation":[16075,23721,9704,4683],"delegatorTokens":9999999922986}},{"ix":118,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":14,"t":84,"consumerPower":[19488,null,10704,null],"outstandingDowntime":[false,false,true,true]}},{"ix":119,"action":{"kind":"Delegate","val":2,"amt":4106},"partialState":{"h":16,"t":96,"tokens":[17075,24721,14810,5683],"delegation":[16075,23721,13810,4683],"delegatorTokens":9999999918880}},{"ix":120,"action":{"kind":"Deliver","chain":"provider","numPackets":4},"partialState":{"h":16,"t":96,"tokens":[17075,24721,14810,5683],"delegation":[16075,23721,13810,4683],"delegatorTokens":9999999918880,"jailed":[null,1000000000000041,null,null],"status":["bonded","unbonding","bonded","unbonded"]}},{"ix":121,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":17,"t":102,"tokens":[17075,24721,14810,5683],"delegation":[16075,23721,13810,4683],"delegatorTokens":9999999918880,"jailed":[null,1000000000000041,null,null],"status":["bonded","unbonding","bonded","unbonded"]}},{"ix":122,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":123,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":15,"t":90,"consumerPower":[19488,null,10704,null],"outstandingDowntime":[false,false,true,true]}},{"ix":124,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":125,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":126,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":16,"t":96,"consumerPower":[19488,null,10704,null],"outstandingDowntime":[false,false,true,true]}},{"ix":127,"action":{"kind":"Deliver","chain":"provider","numPackets":6},"partialState":{"h":17,"t":102,"tokens":[17075,24721,14810,5683],"delegation":[16075,23721,13810,4683],"delegatorTokens":9999999918880,"jailed":[null,1000000000000041,null,null],"status":["bonded","unbonding","bonded","unbonded"]}},{"ix":128,"action":{"kind":"Undelegate","val":2,"amt":3863},"partialState":{"h":17,"t":102,"tokens":[17075,24721,10947,5683],"delegation":[16075,23721,9947,4683],"delegatorTokens":9999999918880}},{"ix":129,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":130,"action":{"kind":"Deliver","chain":"consumer","numPackets":3},"partialState":{"h":16,"t":96,"consumerPower":[19488,null,10704,null],"outstandingDowntime":[false,false,true,true]}},{"ix":131,"action":{"kind":"Deliver","chain":"provider","numPackets":5},"partialState":{"h":17,"t":102,"tokens":[17075,24721,10947,5683],"delegation":[16075,23721,9947,4683],"delegatorTokens":9999999918880,"jailed":[null,1000000000000041,null,null],"status":["bonded","unbonding","bonded","unbonded"]}},{"ix":132,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":133,"action":{"kind":"Deliver","chain":"consumer","numPackets":3},"partialState":{"h":16,"t":96,"consumerPower":[19488,null,10704,null],"outstandingDowntime":[false,false,true,true]}},{"ix":134,"action":{"kind":"Delegate","val":0,"amt":2218},"partialState":{"h":17,"t":102,"tokens":[19293,24721,10947,5683],"delegation":[18293,23721,9947,4683],"delegatorTokens":9999999916662}},{"ix":135,"action":{"kind":"Delegate","val":0,"amt":1351},"partialState":{"h":17,"t":102,"tokens":[20644,24721,10947,5683],"delegation":[19644,23721,9947,4683],"delegatorTokens":9999999915311}},{"ix":136,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":137,"action":{"kind":"Deliver","chain":"provider","numPackets":3},"partialState":{"h":17,"t":102,"tokens":[20644,24721,10947,5683],"delegation":[19644,23721,9947,4683],"delegatorTokens":9999999915311,"jailed":[null,1000000000000041,null,null],"status":["bonded","unbonding","bonded","unbonded"]}},{"ix":138,"action":{"kind":"Undelegate","val":1,"amt":4103},"partialState":{"h":17,"t":102,"tokens":[20644,20618,10947,5683],"delegation":[19644,19618,9947,4683],"delegatorTokens":9999999915311}},{"ix":139,"action":{"kind":"Delegate","val":2,"amt":2379},"partialState":{"h":17,"t":102,"tokens":[20644,20618,13326,5683],"delegation":[19644,19618,12326,4683],"delegatorTokens":9999999912932}},{"ix":140,"action":{"kind":"Deliver","chain":"provider","numPackets":5},"partialState":{"h":17,"t":102,"tokens":[20644,20618,13326,5683],"delegation":[19644,19618,12326,4683],"delegatorTokens":9999999912932,"jailed":[null,1000000000000041,null,null],"status":["bonded","unbonding","bonded","unbonded"]}},{"ix":141,"action":{"kind":"Delegate","val":0,"amt":3201},"partialState":{"h":17,"t":102,"tokens":[23845,20618,13326,5683],"delegation":[22845,19618,12326,4683],"delegatorTokens":9999999909731}},{"ix":142,"action":{"kind":"Deliver","chain":"provider","numPackets":2},"partialState":{"h":17,"t":102,"tokens":[23845,20618,13326,5683],"delegation":[22845,19618,12326,4683],"delegatorTokens":9999999909731,"jailed":[null,1000000000000041,null,null],"status":["bonded","unbonding","bonded","unbonded"]}},{"ix":143,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":18,"t":108,"tokens":[23845,20618,13326,5683],"delegation":[22845,19618,12326,4683],"delegatorTokens":9999999915722,"jailed":[null,1000000000000041,null,null],"status":["bonded","unbonding","bonded","unbonded"]}},{"ix":144,"action":{"kind":"Undelegate","val":1,"amt":3912},"partialState":{"h":18,"t":108,"tokens":[23845,16706,13326,5683],"delegation":[22845,15706,12326,4683],"delegatorTokens":9999999915722}},{"ix":145,"action":{"kind":"Deliver","chain":"provider","numPackets":1},"partialState":{"h":18,"t":108,"tokens":[23845,16706,13326,5683],"delegation":[22845,15706,12326,4683],"delegatorTokens":9999999915722,"jailed":[null,1000000000000041,null,null],"status":["bonded","unbonding","bonded","unbonded"]}},{"ix":146,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":147,"action":{"kind":"Deliver","chain":"provider","numPackets":1},"partialState":{"h":18,"t":108,"tokens":[23845,16706,13326,5683],"delegation":[22845,15706,12326,4683],"delegatorTokens":9999999915722,"jailed":[null,1000000000000041,null,null],"status":["bonded","unbonding","bonded","unbonded"]}},{"ix":148,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":17,"t":102,"consumerPower":[17075,null,10704,null],"outstandingDowntime":[false,false,true,true]}},{"ix":149,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":150,"action":{"kind":"Deliver","chain":"provider","numPackets":5},"partialState":{"h":18,"t":108,"tokens":[23845,16706,13326,5683],"delegation":[22845,15706,12326,4683],"delegatorTokens":9999999915722,"jailed":[null,1000000000000041,null,null],"status":["bonded","unbonding","bonded","unbonded"]}},{"ix":151,"action":{"kind":"Deliver","chain":"consumer","numPackets":4},"partialState":{"h":17,"t":102,"consumerPower":[17075,null,10704,null],"outstandingDowntime":[false,false,true,true]}},{"ix":152,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":153,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":154,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":19,"t":114,"tokens":[23845,16706,13326,5683],"delegation":[22845,15706,12326,4683],"delegatorTokens":9999999915722,"jailed":[null,1000000000000041,null,null],"status":["bonded","unbonding","bonded","unbonded"]}},{"ix":155,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":156,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":157,"action":{"kind":"Delegate","val":3,"amt":1096},"partialState":{"h":19,"t":114,"tokens":[23845,16706,13326,6779],"delegation":[22845,15706,12326,5779],"delegatorTokens":9999999914626}},{"ix":158,"action":{"kind":"Deliver","chain":"consumer","numPackets":2},"partialState":{"h":17,"t":102,"consumerPower":[17075,null,10704,null],"outstandingDowntime":[false,false,true,true]}},{"ix":159,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":18,"t":108,"consumerPower":[23845,null,13326,null],"outstandingDowntime":[false,false,true,true]}},{"ix":160,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":161,"action":{"kind":"Undelegate","val":3,"amt":3122},"partialState":{"h":19,"t":114,"tokens":[23845,16706,13326,3657],"delegation":[22845,15706,12326,2657],"delegatorTokens":9999999914626}},{"ix":162,"action":{"kind":"Delegate","val":0,"amt":3903},"partialState":{"h":19,"t":114,"tokens":[27748,16706,13326,3657],"delegation":[26748,15706,12326,2657],"delegatorTokens":9999999910723}},{"ix":163,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":20,"t":120,"tokens":[27748,16706,13326,3657],"delegation":[26748,15706,12326,2657],"delegatorTokens":9999999910723,"jailed":[null,1000000000000041,null,null],"status":["bonded","unbonding","bonded","unbonded"]}},{"ix":164,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":21,"t":126,"tokens":[27748,16706,13326,3657],"delegation":[26748,15706,12326,2657],"delegatorTokens":9999999910723,"jailed":[null,1000000000000041,null,null],"status":["bonded","unbonding","bonded","unbonded"]}},{"ix":165,"action":{"kind":"Deliver","chain":"consumer","numPackets":1},"partialState":{"h":18,"t":108,"consumerPower":[23845,null,13326,null],"outstandingDowntime":[false,false,true,true]}},{"ix":166,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":22,"t":132,"tokens":[27748,16706,13326,3657],"delegation":[26748,15706,12326,2657],"delegatorTokens":9999999910723,"jailed":[null,1000000000000041,null,null],"status":["bonded","unbonding","bonded","unbonded"]}},{"ix":167,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":168,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":169,"action":{"kind":"Deliver","chain":"provider","numPackets":2},"partialState":{"h":22,"t":132,"tokens":[27748,16706,13326,3657],"delegation":[26748,15706,12326,2657],"delegatorTokens":9999999910723,"jailed":[null,1000000000000041,null,null],"status":["bonded","unbonding","bonded","unbonded"]}},{"ix":170,"action":{"kind":"Delegate","val":2,"amt":4182},"partialState":{"h":22,"t":132,"tokens":[27748,16706,17508,3657],"delegation":[26748,15706,16508,2657],"delegatorTokens":9999999906541}},{"ix":171,"action":{"kind":"Delegate","val":3,"amt":1998},"partialState":{"h":22,"t":132,"tokens":[27748,16706,17508,5655],"delegation":[26748,15706,16508,4655],"delegatorTokens":9999999904543}},{"ix":172,"action":{"kind":"Delegate","val":3,"amt":4814},"partialState":{"h":22,"t":132,"tokens":[27748,16706,17508,10469],"delegation":[26748,15706,16508,9469],"delegatorTokens":9999999899729}},{"ix":173,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":174,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":23,"t":138,"tokens":[27748,16706,17508,10469],"delegation":[26748,15706,16508,9469],"delegatorTokens":9999999899729,"jailed":[null,1000000000000041,null,null],"status":["bonded","unbonding","bonded","unbonded"]}},{"ix":175,"action":{"kind":"Undelegate","val":3,"amt":4655},"partialState":{"h":23,"t":138,"tokens":[27748,16706,17508,5814],"delegation":[26748,15706,16508,4814],"delegatorTokens":9999999899729}},{"ix":176,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":19,"t":114,"consumerPower":[23845,null,13326,null],"outstandingDowntime":[false,false,true,true]}},{"ix":177,"action":{"kind":"Delegate","val":3,"amt":4343},"partialState":{"h":23,"t":138,"tokens":[27748,16706,17508,10157],"delegation":[26748,15706,16508,9157],"delegatorTokens":9999999895386}},{"ix":178,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":20,"t":120,"consumerPower":[23845,null,13326,null],"outstandingDowntime":[false,false,true,true]}},{"ix":179,"action":{"kind":"Deliver","chain":"provider","numPackets":6},"partialState":{"h":23,"t":138,"tokens":[27748,16706,17508,10157],"delegation":[26748,15706,16508,9157],"delegatorTokens":9999999895386,"jailed":[null,1000000000000041,null,null],"status":["bonded","unbonding","bonded","unbonded"]}},{"ix":180,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":24,"t":144,"tokens":[27748,16706,17508,10157],"delegation":[26748,15706,16508,9157],"delegatorTokens":9999999906905,"jailed":[null,1000000000000041,null,null],"status":["bonded","unbonding","bonded","unbonded"]}},{"ix":181,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":21,"t":126,"consumerPower":[23845,null,13326,null],"outstandingDowntime":[false,false,true,true]}},{"ix":182,"action":{"kind":"Undelegate","val":2,"amt":2096},"partialState":{"h":24,"t":144,"tokens":[27748,16706,15412,10157],"delegation":[26748,15706,14412,9157],"delegatorTokens":9999999906905}},{"ix":183,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":25,"t":150,"tokens":[27748,16706,15412,10157],"delegation":[26748,15706,14412,9157],"delegatorTokens":9999999906905,"jailed":[null,1000000000000041,null,null],"status":["bonded","unbonded","bonded","unbonded"]}},{"ix":184,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":22,"t":132,"consumerPower":[23845,null,13326,null],"outstandingDowntime":[false,false,true,true]}},{"ix":185,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":23,"t":138,"consumerPower":[23845,null,13326,null],"outstandingDowntime":[false,false,true,true]}},{"ix":186,"action":{"kind":"Undelegate","val":1,"amt":4902},"partialState":{"h":25,"t":150,"tokens":[27748,11804,15412,10157],"delegation":[26748,10804,14412,9157],"delegatorTokens":9999999906905}},{"ix":187,"action":{"kind":"Delegate","val":3,"amt":4253},"partialState":{"h":25,"t":150,"tokens":[27748,11804,15412,14410],"delegation":[26748,10804,14412,13410],"delegatorTokens":9999999902652}},{"ix":188,"action":{"kind":"Undelegate","val":3,"amt":4114},"partialState":{"h":25,"t":150,"tokens":[27748,11804,15412,10296],"delegation":[26748,10804,14412,9296],"delegatorTokens":9999999902652}},{"ix":189,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":190,"action":{"kind":"Delegate","val":2,"amt":3706},"partialState":{"h":25,"t":150,"tokens":[27748,11804,19118,10296],"delegation":[26748,10804,18118,9296],"delegatorTokens":9999999898946}},{"ix":191,"action":{"kind":"Deliver","chain":"consumer","numPackets":2},"partialState":{"h":23,"t":138,"consumerPower":[23845,null,13326,null],"outstandingDowntime":[false,false,true,true]}},{"ix":192,"action":{"kind":"Delegate","val":0,"amt":3556},"partialState":{"h":25,"t":150,"tokens":[31304,11804,19118,10296],"delegation":[30304,10804,18118,9296],"delegatorTokens":9999999895390}},{"ix":193,"action":{"kind":"Undelegate","val":3,"amt":2529},"partialState":{"h":25,"t":150,"tokens":[31304,11804,19118,7767],"delegation":[30304,10804,18118,6767],"delegatorTokens":9999999895390}},{"ix":194,"action":{"kind":"Delegate","val":1,"amt":2940},"partialState":{"h":25,"t":150,"tokens":[31304,14744,19118,7767],"delegation":[30304,13744,18118,6767],"delegatorTokens":9999999892450}},{"ix":195,"action":{"kind":"Delegate","val":3,"amt":2438},"partialState":{"h":25,"t":150,"tokens":[31304,14744,19118,10205],"delegation":[30304,13744,18118,9205],"delegatorTokens":9999999890012}},{"ix":196,"action":{"kind":"Delegate","val":0,"amt":1437},"partialState":{"h":25,"t":150,"tokens":[32741,14744,19118,10205],"delegation":[31741,13744,18118,9205],"delegatorTokens":9999999888575}},{"ix":197,"action":{"kind":"Undelegate","val":3,"amt":2839},"partialState":{"h":25,"t":150,"tokens":[32741,14744,19118,7366],"delegation":[31741,13744,18118,6366],"delegatorTokens":9999999888575}},{"ix":198,"action":{"kind":"Delegate","val":2,"amt":3887},"partialState":{"h":25,"t":150,"tokens":[32741,14744,23005,7366],"delegation":[31741,13744,22005,6366],"delegatorTokens":9999999884688}},{"ix":199,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}}],"events":["send_vsc_without_downtime_ack","send_downtime_slash_request","send_downtime_slash_request","insufficient_shares","send_vsc_without_downtime_ack","insufficient_shares","insufficient_shares","consumer_update_val","send_vsc_without_downtime_ack","receive_slash_request_unbonded","send_vsc_without_downtime_ack","send_downtime_slash_request","insufficient_shares","insufficient_shares","insufficient_shares","insufficient_shares","insufficient_shares","consumer_update_val","consumer_update_val","send_vsc_without_downtime_ack","receive_slash_request_unbonded","send_vsc_without_downtime_ack","receive_downtime_slash_request","jail","send_vsc_with_downtime_ack","send_vsc_without_downtime_ack","receive_downtime_slash_ack","send_vsc_without_downtime_ack","consumer_del_val","consumer_update_val","consumer_add_val","send_vsc_without_downtime_ack","consumer_send_maturation","consumer_update_val","consumer_update_val","some_undels_expired_but_not_completed","some_undels_expired_but_not_completed","send_vsc_without_downtime_ack","consumer_send_maturation","consumer_send_maturation","consumer_update_val","consumer_update_val","send_vsc_without_downtime_ack","some_undels_expired_but_not_completed","complete_undel_immediate","complete_undel_immediate","complete_undel_immediate","send_vsc_without_downtime_ack","consumer_update_val","some_undels_expired_but_not_completed","send_vsc_not_because_change","send_vsc_without_downtime_ack","consumer_update_val","consumer_update_val","send_vsc_without_downtime_ack","some_undels_expired_but_not_completed","send_vsc_without_downtime_ack","consumer_send_maturation","consumer_send_maturation","consumer_send_maturation","consumer_send_maturation","consumer_send_maturation","complete_undel_immediate","complete_undel_immediate","complete_undel_immediate","complete_undel_immediate","set_unval_hold_false","send_vsc_not_because_change","send_vsc_without_downtime_ack","consumer_send_maturation","complete_unval_in_endblock","some_undels_expired_but_not_completed","send_vsc_without_downtime_ack","consumer_send_maturation"]},{"meta":{"commit":"7ffd0c04e4205cbc9caf212abfe6c59ee43153bf"},"constants":{"P":"provider","C":"consumer","UNBONDING_SECONDS_P":70,"UNBONDING_SECONDS_C":50,"TRUSTING_SECONDS":49,"NUM_VALIDATORS":4,"MAX_VALIDATORS":2,"SLASH_DOUBLESIGN":0,"SLASH_DOWNTIME":0,"JAIL_SECONDS":999999999999999,"BLOCK_SECONDS":6,"INITIAL_DELEGATOR_TOKENS":10000000000000,"DELEGATE_AMT_MIN":1000,"DELEGATE_AMT_MAX":5000,"UNDELEGATE_AMT_MIN":1000,"UNDELEGATE_AMT_MAX":5000,"ISDOWNTIME_PROBABILITY":0.5,"MAX_NUM_PACKETS_FOR_DELIVER":6},"actions":[{"ix":0,"action":{"kind":"Delegate","val":0,"amt":3900},"partialState":{"h":1,"t":6,"tokens":[8900,4000,3000,2000],"delegation":[7900,3000,2000,1000],"delegatorTokens":9999999996100}},{"ix":1,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":2,"t":12,"tokens":[8900,4000,3000,2000],"delegation":[7900,3000,2000,1000],"delegatorTokens":9999999996100,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":2,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":3,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":4,"action":{"kind":"ConsumerSlash","val":2,"infractionHeight":0,"isDowntime":true},"partialState":{"h":1,"t":6,"outstandingDowntime":[false,false,true,false]}},{"ix":5,"action":{"kind":"Deliver","chain":"provider","numPackets":4},"partialState":{"h":2,"t":12,"tokens":[8900,4000,3000,2000],"delegation":[7900,3000,2000,1000],"delegatorTokens":9999999996100,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":6,"action":{"kind":"Delegate","val":1,"amt":3273},"partialState":{"h":2,"t":12,"tokens":[8900,7273,3000,2000],"delegation":[7900,6273,2000,1000],"delegatorTokens":9999999992827}},{"ix":7,"action":{"kind":"ConsumerSlash","val":1,"infractionHeight":0,"isDowntime":true},"partialState":{"h":1,"t":6,"outstandingDowntime":[false,true,true,false]}},{"ix":8,"action":{"kind":"Deliver","chain":"consumer","numPackets":4},"partialState":{"h":1,"t":6,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,true,true,false]}},{"ix":9,"action":{"kind":"ConsumerSlash","val":3,"infractionHeight":0,"isDowntime":true},"partialState":{"h":1,"t":6,"outstandingDowntime":[false,true,true,true]}},{"ix":10,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":11,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":3,"t":18,"tokens":[8900,7273,3000,2000],"delegation":[7900,6273,2000,1000],"delegatorTokens":9999999992827,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":12,"action":{"kind":"Deliver","chain":"consumer","numPackets":5},"partialState":{"h":1,"t":6,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,true,true,true]}},{"ix":13,"action":{"kind":"Delegate","val":0,"amt":4541},"partialState":{"h":3,"t":18,"tokens":[13441,7273,3000,2000],"delegation":[12441,6273,2000,1000],"delegatorTokens":9999999988286}},{"ix":14,"action":{"kind":"Delegate","val":0,"amt":4519},"partialState":{"h":3,"t":18,"tokens":[17960,7273,3000,2000],"delegation":[16960,6273,2000,1000],"delegatorTokens":9999999983767}},{"ix":15,"action":{"kind":"Delegate","val":2,"amt":1624},"partialState":{"h":3,"t":18,"tokens":[17960,7273,4624,2000],"delegation":[16960,6273,3624,1000],"delegatorTokens":9999999982143}},{"ix":16,"action":{"kind":"Delegate","val":3,"amt":3684},"partialState":{"h":3,"t":18,"tokens":[17960,7273,4624,5684],"delegation":[16960,6273,3624,4684],"delegatorTokens":9999999978459}},{"ix":17,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":18,"action":{"kind":"Undelegate","val":2,"amt":1390},"partialState":{"h":3,"t":18,"tokens":[17960,7273,3234,5684],"delegation":[16960,6273,2234,4684],"delegatorTokens":9999999978459}},{"ix":19,"action":{"kind":"Undelegate","val":0,"amt":1720},"partialState":{"h":3,"t":18,"tokens":[16240,7273,3234,5684],"delegation":[15240,6273,2234,4684],"delegatorTokens":9999999978459}},{"ix":20,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":21,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":22,"action":{"kind":"Delegate","val":0,"amt":1425},"partialState":{"h":3,"t":18,"tokens":[17665,7273,3234,5684],"delegation":[16665,6273,2234,4684],"delegatorTokens":9999999977034}},{"ix":23,"action":{"kind":"Undelegate","val":0,"amt":3629},"partialState":{"h":3,"t":18,"tokens":[14036,7273,3234,5684],"delegation":[13036,6273,2234,4684],"delegatorTokens":9999999977034}},{"ix":24,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":2,"t":12,"consumerPower":[8900,4000,null,null],"outstandingDowntime":[false,true,true,true]}},{"ix":25,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":4,"t":24,"tokens":[14036,7273,3234,5684],"delegation":[13036,6273,2234,4684],"delegatorTokens":9999999977034,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":26,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":3,"t":18,"consumerPower":[8900,4000,null,null],"outstandingDowntime":[false,true,true,true]}},{"ix":27,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":28,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":29,"action":{"kind":"Delegate","val":0,"amt":3841},"partialState":{"h":4,"t":24,"tokens":[17877,7273,3234,5684],"delegation":[16877,6273,2234,4684],"delegatorTokens":9999999973193}},{"ix":30,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":4,"t":24,"consumerPower":[8900,4000,null,null],"outstandingDowntime":[false,true,true,true]}},{"ix":31,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":32,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":5,"t":30,"tokens":[17877,7273,3234,5684],"delegation":[16877,6273,2234,4684],"delegatorTokens":9999999973193,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":33,"action":{"kind":"Undelegate","val":2,"amt":4091},"partialState":{"h":5,"t":30,"tokens":[17877,7273,3234,5684],"delegation":[16877,6273,2234,4684],"delegatorTokens":9999999973193}},{"ix":34,"action":{"kind":"Delegate","val":1,"amt":4252},"partialState":{"h":5,"t":30,"tokens":[17877,11525,3234,5684],"delegation":[16877,10525,2234,4684],"delegatorTokens":9999999968941}},{"ix":35,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":36,"action":{"kind":"Delegate","val":1,"amt":1838},"partialState":{"h":5,"t":30,"tokens":[17877,13363,3234,5684],"delegation":[16877,12363,2234,4684],"delegatorTokens":9999999967103}},{"ix":37,"action":{"kind":"Delegate","val":1,"amt":3065},"partialState":{"h":5,"t":30,"tokens":[17877,16428,3234,5684],"delegation":[16877,15428,2234,4684],"delegatorTokens":9999999964038}},{"ix":38,"action":{"kind":"Delegate","val":3,"amt":4969},"partialState":{"h":5,"t":30,"tokens":[17877,16428,3234,10653],"delegation":[16877,15428,2234,9653],"delegatorTokens":9999999959069}},{"ix":39,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":40,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":41,"action":{"kind":"Undelegate","val":2,"amt":1845},"partialState":{"h":5,"t":30,"tokens":[17877,16428,1389,10653],"delegation":[16877,15428,389,9653],"delegatorTokens":9999999959069}},{"ix":42,"action":{"kind":"Delegate","val":0,"amt":4115},"partialState":{"h":5,"t":30,"tokens":[21992,16428,1389,10653],"delegation":[20992,15428,389,9653],"delegatorTokens":9999999954954}},{"ix":43,"action":{"kind":"Undelegate","val":2,"amt":3809},"partialState":{"h":5,"t":30,"tokens":[21992,16428,1389,10653],"delegation":[20992,15428,389,9653],"delegatorTokens":9999999954954}},{"ix":44,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":5,"t":30,"consumerPower":[8900,4000,null,null],"outstandingDowntime":[false,true,true,true]}},{"ix":45,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":6,"t":36,"consumerPower":[8900,4000,null,null],"outstandingDowntime":[false,true,true,true]}},{"ix":46,"action":{"kind":"Deliver","chain":"provider","numPackets":6},"partialState":{"h":5,"t":30,"tokens":[21992,16428,1389,10653],"delegation":[20992,15428,389,9653],"delegatorTokens":9999999954954,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":47,"action":{"kind":"Deliver","chain":"consumer","numPackets":2},"partialState":{"h":6,"t":36,"consumerPower":[8900,4000,null,null],"outstandingDowntime":[false,true,true,true]}},{"ix":48,"action":{"kind":"Delegate","val":1,"amt":4169},"partialState":{"h":5,"t":30,"tokens":[21992,20597,1389,10653],"delegation":[20992,19597,389,9653],"delegatorTokens":9999999950785}},{"ix":49,"action":{"kind":"Undelegate","val":1,"amt":2056},"partialState":{"h":5,"t":30,"tokens":[21992,18541,1389,10653],"delegation":[20992,17541,389,9653],"delegatorTokens":9999999950785}},{"ix":50,"action":{"kind":"Delegate","val":3,"amt":3578},"partialState":{"h":5,"t":30,"tokens":[21992,18541,1389,14231],"delegation":[20992,17541,389,13231],"delegatorTokens":9999999947207}},{"ix":51,"action":{"kind":"Deliver","chain":"provider","numPackets":4},"partialState":{"h":5,"t":30,"tokens":[21992,18541,1389,14231],"delegation":[20992,17541,389,13231],"delegatorTokens":9999999947207,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":52,"action":{"kind":"Deliver","chain":"provider","numPackets":3},"partialState":{"h":5,"t":30,"tokens":[21992,18541,1389,14231],"delegation":[20992,17541,389,13231],"delegatorTokens":9999999947207,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":53,"action":{"kind":"Deliver","chain":"consumer","numPackets":5},"partialState":{"h":6,"t":36,"consumerPower":[8900,4000,null,null],"outstandingDowntime":[false,true,true,true]}},{"ix":54,"action":{"kind":"Delegate","val":3,"amt":2981},"partialState":{"h":5,"t":30,"tokens":[21992,18541,1389,17212],"delegation":[20992,17541,389,16212],"delegatorTokens":9999999944226}},{"ix":55,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":56,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":57,"action":{"kind":"Delegate","val":2,"amt":2291},"partialState":{"h":5,"t":30,"tokens":[21992,18541,3680,17212],"delegation":[20992,17541,2680,16212],"delegatorTokens":9999999941935}},{"ix":58,"action":{"kind":"Delegate","val":1,"amt":2431},"partialState":{"h":5,"t":30,"tokens":[21992,20972,3680,17212],"delegation":[20992,19972,2680,16212],"delegatorTokens":9999999939504}},{"ix":59,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":6,"t":36,"tokens":[21992,20972,3680,17212],"delegation":[20992,19972,2680,16212],"delegatorTokens":9999999939504,"jailed":[null,1000000000000029,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":60,"action":{"kind":"Delegate","val":2,"amt":3078},"partialState":{"h":6,"t":36,"tokens":[21992,20972,6758,17212],"delegation":[20992,19972,5758,16212],"delegatorTokens":9999999936426}},{"ix":61,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":7,"t":42,"tokens":[21992,20972,6758,17212],"delegation":[20992,19972,5758,16212],"delegatorTokens":9999999936426,"jailed":[null,1000000000000029,null,null],"status":["bonded","unbonding","unbonded","bonded"]}},{"ix":62,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":63,"action":{"kind":"Delegate","val":0,"amt":1884},"partialState":{"h":7,"t":42,"tokens":[23876,20972,6758,17212],"delegation":[22876,19972,5758,16212],"delegatorTokens":9999999934542}},{"ix":64,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":8,"t":48,"tokens":[23876,20972,6758,17212],"delegation":[22876,19972,5758,16212],"delegatorTokens":9999999934542,"jailed":[null,1000000000000029,null,null],"status":["bonded","unbonding","unbonded","bonded"]}},{"ix":65,"action":{"kind":"Undelegate","val":1,"amt":4459},"partialState":{"h":8,"t":48,"tokens":[23876,16513,6758,17212],"delegation":[22876,15513,5758,16212],"delegatorTokens":9999999934542}},{"ix":66,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":7,"t":42,"consumerPower":[14036,7273,null,null],"outstandingDowntime":[false,true,true,true]}},{"ix":67,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":9,"t":54,"tokens":[23876,16513,6758,17212],"delegation":[22876,15513,5758,16212],"delegatorTokens":9999999934542,"jailed":[null,1000000000000029,null,null],"status":["bonded","unbonding","unbonded","bonded"]}},{"ix":68,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":69,"action":{"kind":"Deliver","chain":"provider","numPackets":5},"partialState":{"h":9,"t":54,"tokens":[23876,16513,6758,17212],"delegation":[22876,15513,5758,16212],"delegatorTokens":9999999934542,"jailed":[null,1000000000000029,null,null],"status":["bonded","unbonding","unbonded","bonded"]}},{"ix":70,"action":{"kind":"Deliver","chain":"provider","numPackets":4},"partialState":{"h":9,"t":54,"tokens":[23876,16513,6758,17212],"delegation":[22876,15513,5758,16212],"delegatorTokens":9999999934542,"jailed":[null,1000000000000029,null,null],"status":["bonded","unbonding","unbonded","bonded"]}},{"ix":71,"action":{"kind":"Delegate","val":2,"amt":3010},"partialState":{"h":9,"t":54,"tokens":[23876,16513,9768,17212],"delegation":[22876,15513,8768,16212],"delegatorTokens":9999999931532}},{"ix":72,"action":{"kind":"Delegate","val":1,"amt":2024},"partialState":{"h":9,"t":54,"tokens":[23876,18537,9768,17212],"delegation":[22876,17537,8768,16212],"delegatorTokens":9999999929508}},{"ix":73,"action":{"kind":"Undelegate","val":3,"amt":2091},"partialState":{"h":9,"t":54,"tokens":[23876,18537,9768,15121],"delegation":[22876,17537,8768,14121],"delegatorTokens":9999999929508}},{"ix":74,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":75,"action":{"kind":"Deliver","chain":"provider","numPackets":3},"partialState":{"h":9,"t":54,"tokens":[23876,18537,9768,15121],"delegation":[22876,17537,8768,14121],"delegatorTokens":9999999929508,"jailed":[null,1000000000000029,null,null],"status":["bonded","unbonding","unbonded","bonded"]}},{"ix":76,"action":{"kind":"Undelegate","val":2,"amt":2883},"partialState":{"h":9,"t":54,"tokens":[23876,18537,6885,15121],"delegation":[22876,17537,5885,14121],"delegatorTokens":9999999929508}},{"ix":77,"action":{"kind":"Delegate","val":2,"amt":2595},"partialState":{"h":9,"t":54,"tokens":[23876,18537,9480,15121],"delegation":[22876,17537,8480,14121],"delegatorTokens":9999999926913}},{"ix":78,"action":{"kind":"Deliver","chain":"consumer","numPackets":4},"partialState":{"h":7,"t":42,"consumerPower":[14036,7273,null,null],"outstandingDowntime":[false,false,true,true]}},{"ix":79,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":8,"t":48,"consumerPower":[23876,null,null,17212],"outstandingDowntime":[false,false,true,true]}},{"ix":80,"action":{"kind":"Delegate","val":3,"amt":3475},"partialState":{"h":9,"t":54,"tokens":[23876,18537,9480,18596],"delegation":[22876,17537,8480,17596],"delegatorTokens":9999999923438}},{"ix":81,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":82,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":83,"action":{"kind":"Delegate","val":2,"amt":1337},"partialState":{"h":9,"t":54,"tokens":[23876,18537,10817,18596],"delegation":[22876,17537,9817,17596],"delegatorTokens":9999999922101}},{"ix":84,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":85,"action":{"kind":"Delegate","val":0,"amt":1039},"partialState":{"h":9,"t":54,"tokens":[24915,18537,10817,18596],"delegation":[23915,17537,9817,17596],"delegatorTokens":9999999921062}},{"ix":86,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":9,"t":54,"consumerPower":[23876,null,null,17212],"outstandingDowntime":[false,false,true,true]}},{"ix":87,"action":{"kind":"Deliver","chain":"consumer","numPackets":5},"partialState":{"h":9,"t":54,"consumerPower":[23876,null,null,17212],"outstandingDowntime":[false,false,true,true]}},{"ix":88,"action":{"kind":"Delegate","val":1,"amt":1889},"partialState":{"h":9,"t":54,"tokens":[24915,20426,10817,18596],"delegation":[23915,19426,9817,17596],"delegatorTokens":9999999919173}},{"ix":89,"action":{"kind":"Deliver","chain":"provider","numPackets":6},"partialState":{"h":9,"t":54,"tokens":[24915,20426,10817,18596],"delegation":[23915,19426,9817,17596],"delegatorTokens":9999999919173,"jailed":[null,1000000000000029,null,null],"status":["bonded","unbonding","unbonded","bonded"]}},{"ix":90,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":10,"t":60,"tokens":[24915,20426,10817,18596],"delegation":[23915,19426,9817,17596],"delegatorTokens":9999999919173,"jailed":[null,1000000000000029,null,null],"status":["bonded","unbonding","unbonded","bonded"]}},{"ix":91,"action":{"kind":"Undelegate","val":1,"amt":1767},"partialState":{"h":10,"t":60,"tokens":[24915,18659,10817,18596],"delegation":[23915,17659,9817,17596],"delegatorTokens":9999999919173}},{"ix":92,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":11,"t":66,"tokens":[24915,18659,10817,18596],"delegation":[23915,17659,9817,17596],"delegatorTokens":9999999919173,"jailed":[null,1000000000000029,null,null],"status":["bonded","unbonding","unbonded","bonded"]}},{"ix":93,"action":{"kind":"Delegate","val":0,"amt":3036},"partialState":{"h":11,"t":66,"tokens":[27951,18659,10817,18596],"delegation":[26951,17659,9817,17596],"delegatorTokens":9999999916137}},{"ix":94,"action":{"kind":"Delegate","val":3,"amt":1267},"partialState":{"h":11,"t":66,"tokens":[27951,18659,10817,19863],"delegation":[26951,17659,9817,18863],"delegatorTokens":9999999914870}},{"ix":95,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":96,"action":{"kind":"Delegate","val":2,"amt":4631},"partialState":{"h":11,"t":66,"tokens":[27951,18659,15448,19863],"delegation":[26951,17659,14448,18863],"delegatorTokens":9999999910239}},{"ix":97,"action":{"kind":"Undelegate","val":3,"amt":3365},"partialState":{"h":11,"t":66,"tokens":[27951,18659,15448,16498],"delegation":[26951,17659,14448,15498],"delegatorTokens":9999999910239}},{"ix":98,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":99,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":100,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":101,"action":{"kind":"Undelegate","val":0,"amt":4065},"partialState":{"h":11,"t":66,"tokens":[23886,18659,15448,16498],"delegation":[22886,17659,14448,15498],"delegatorTokens":9999999910239}},{"ix":102,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":10,"t":60,"consumerPower":[23876,null,null,17212],"outstandingDowntime":[false,false,true,true]}},{"ix":103,"action":{"kind":"Delegate","val":0,"amt":2831},"partialState":{"h":11,"t":66,"tokens":[26717,18659,15448,16498],"delegation":[25717,17659,14448,15498],"delegatorTokens":9999999907408}},{"ix":104,"action":{"kind":"Delegate","val":1,"amt":1309},"partialState":{"h":11,"t":66,"tokens":[26717,19968,15448,16498],"delegation":[25717,18968,14448,15498],"delegatorTokens":9999999906099}},{"ix":105,"action":{"kind":"Deliver","chain":"consumer","numPackets":1},"partialState":{"h":10,"t":60,"consumerPower":[23876,null,null,17212],"outstandingDowntime":[false,false,true,true]}},{"ix":106,"action":{"kind":"Deliver","chain":"provider","numPackets":1},"partialState":{"h":11,"t":66,"tokens":[26717,19968,15448,16498],"delegation":[25717,18968,14448,15498],"delegatorTokens":9999999906099,"jailed":[null,1000000000000029,null,null],"status":["bonded","unbonding","unbonded","bonded"]}},{"ix":107,"action":{"kind":"Undelegate","val":1,"amt":3855},"partialState":{"h":11,"t":66,"tokens":[26717,16113,15448,16498],"delegation":[25717,15113,14448,15498],"delegatorTokens":9999999906099}},{"ix":108,"action":{"kind":"Deliver","chain":"consumer","numPackets":1},"partialState":{"h":10,"t":60,"consumerPower":[23876,null,null,17212],"outstandingDowntime":[false,false,true,true]}},{"ix":109,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":12,"t":72,"tokens":[26717,16113,15448,16498],"delegation":[25717,15113,14448,15498],"delegatorTokens":9999999906099,"jailed":[null,1000000000000029,null,null],"status":["bonded","unbonding","unbonded","bonded"]}},{"ix":110,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":11,"t":66,"consumerPower":[24915,null,null,18596],"outstandingDowntime":[false,false,true,true]}},{"ix":111,"action":{"kind":"Undelegate","val":0,"amt":3960},"partialState":{"h":12,"t":72,"tokens":[22757,16113,15448,16498],"delegation":[21757,15113,14448,15498],"delegatorTokens":9999999906099}},{"ix":112,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":113,"action":{"kind":"Deliver","chain":"consumer","numPackets":1},"partialState":{"h":11,"t":66,"consumerPower":[24915,null,null,18596],"outstandingDowntime":[false,false,true,true]}},{"ix":114,"action":{"kind":"Undelegate","val":3,"amt":2025},"partialState":{"h":12,"t":72,"tokens":[22757,16113,15448,14473],"delegation":[21757,15113,14448,13473],"delegatorTokens":9999999906099}},{"ix":115,"action":{"kind":"Deliver","chain":"consumer","numPackets":2},"partialState":{"h":11,"t":66,"consumerPower":[24915,null,null,18596],"outstandingDowntime":[false,false,true,true]}},{"ix":116,"action":{"kind":"Undelegate","val":3,"amt":3033},"partialState":{"h":12,"t":72,"tokens":[22757,16113,15448,11440],"delegation":[21757,15113,14448,10440],"delegatorTokens":9999999906099}},{"ix":117,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":118,"action":{"kind":"Delegate","val":1,"amt":3774},"partialState":{"h":12,"t":72,"tokens":[22757,19887,15448,11440],"delegation":[21757,18887,14448,10440],"delegatorTokens":9999999902325}},{"ix":119,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":120,"action":{"kind":"Undelegate","val":3,"amt":1120},"partialState":{"h":12,"t":72,"tokens":[22757,19887,15448,10320],"delegation":[21757,18887,14448,9320],"delegatorTokens":9999999902325}},{"ix":121,"action":{"kind":"Delegate","val":3,"amt":3457},"partialState":{"h":12,"t":72,"tokens":[22757,19887,15448,13777],"delegation":[21757,18887,14448,12777],"delegatorTokens":9999999898868}},{"ix":122,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":12,"t":72,"consumerPower":[24915,null,null,18596],"outstandingDowntime":[false,false,true,true]}},{"ix":123,"action":{"kind":"Undelegate","val":3,"amt":4581},"partialState":{"h":12,"t":72,"tokens":[22757,19887,15448,9196],"delegation":[21757,18887,14448,8196],"delegatorTokens":9999999898868}},{"ix":124,"action":{"kind":"Undelegate","val":2,"amt":4977},"partialState":{"h":12,"t":72,"tokens":[22757,19887,10471,9196],"delegation":[21757,18887,9471,8196],"delegatorTokens":9999999898868}},{"ix":125,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":13,"t":78,"tokens":[22757,19887,10471,9196],"delegation":[21757,18887,9471,8196],"delegatorTokens":9999999898868,"jailed":[null,1000000000000029,null,null],"status":["bonded","unbonding","bonded","unbonding"]}},{"ix":126,"action":{"kind":"Deliver","chain":"consumer","numPackets":1},"partialState":{"h":12,"t":72,"consumerPower":[24915,null,null,18596],"outstandingDowntime":[false,false,true,true]}},{"ix":127,"action":{"kind":"Deliver","chain":"consumer","numPackets":1},"partialState":{"h":12,"t":72,"consumerPower":[24915,null,null,18596],"outstandingDowntime":[false,false,true,true]}},{"ix":128,"action":{"kind":"Delegate","val":3,"amt":3520},"partialState":{"h":13,"t":78,"tokens":[22757,19887,10471,12716],"delegation":[21757,18887,9471,11716],"delegatorTokens":9999999895348}},{"ix":129,"action":{"kind":"Undelegate","val":3,"amt":4711},"partialState":{"h":13,"t":78,"tokens":[22757,19887,10471,8005],"delegation":[21757,18887,9471,7005],"delegatorTokens":9999999895348}},{"ix":130,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":131,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":132,"action":{"kind":"Deliver","chain":"consumer","numPackets":1},"partialState":{"h":12,"t":72,"consumerPower":[24915,null,null,18596],"outstandingDowntime":[false,false,true,true]}},{"ix":133,"action":{"kind":"Undelegate","val":0,"amt":1876},"partialState":{"h":13,"t":78,"tokens":[20881,19887,10471,8005],"delegation":[19881,18887,9471,7005],"delegatorTokens":9999999895348}},{"ix":134,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":13,"t":78,"consumerPower":[26717,null,null,16498],"outstandingDowntime":[false,false,true,true]}},{"ix":135,"action":{"kind":"Delegate","val":3,"amt":3226},"partialState":{"h":13,"t":78,"tokens":[20881,19887,10471,11231],"delegation":[19881,18887,9471,10231],"delegatorTokens":9999999892122}},{"ix":136,"action":{"kind":"Deliver","chain":"provider","numPackets":5},"partialState":{"h":13,"t":78,"tokens":[20881,19887,10471,11231],"delegation":[19881,18887,9471,10231],"delegatorTokens":9999999892122,"jailed":[null,1000000000000029,null,null],"status":["bonded","unbonding","bonded","unbonding"]}},{"ix":137,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":14,"t":84,"consumerPower":[26717,null,null,16498],"outstandingDowntime":[false,false,true,true]}},{"ix":138,"action":{"kind":"Delegate","val":1,"amt":4181},"partialState":{"h":13,"t":78,"tokens":[20881,24068,10471,11231],"delegation":[19881,23068,9471,10231],"delegatorTokens":9999999887941}},{"ix":139,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":15,"t":90,"consumerPower":[26717,null,null,16498],"outstandingDowntime":[false,false,true,true]}},{"ix":140,"action":{"kind":"Deliver","chain":"provider","numPackets":5},"partialState":{"h":13,"t":78,"tokens":[20881,24068,10471,11231],"delegation":[19881,23068,9471,10231],"delegatorTokens":9999999887941,"jailed":[null,1000000000000029,null,null],"status":["bonded","unbonding","bonded","unbonding"]}},{"ix":141,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":142,"action":{"kind":"Deliver","chain":"provider","numPackets":1},"partialState":{"h":13,"t":78,"tokens":[20881,24068,10471,11231],"delegation":[19881,23068,9471,10231],"delegatorTokens":9999999887941,"jailed":[null,1000000000000029,null,null],"status":["bonded","unbonding","bonded","unbonding"]}},{"ix":143,"action":{"kind":"Undelegate","val":3,"amt":1645},"partialState":{"h":13,"t":78,"tokens":[20881,24068,10471,9586],"delegation":[19881,23068,9471,8586],"delegatorTokens":9999999887941}},{"ix":144,"action":{"kind":"Delegate","val":3,"amt":4129},"partialState":{"h":13,"t":78,"tokens":[20881,24068,10471,13715],"delegation":[19881,23068,9471,12715],"delegatorTokens":9999999883812}},{"ix":145,"action":{"kind":"Undelegate","val":0,"amt":2953},"partialState":{"h":13,"t":78,"tokens":[17928,24068,10471,13715],"delegation":[16928,23068,9471,12715],"delegatorTokens":9999999883812}},{"ix":146,"action":{"kind":"Deliver","chain":"consumer","numPackets":5},"partialState":{"h":15,"t":90,"consumerPower":[26717,null,null,16498],"outstandingDowntime":[false,false,true,true]}},{"ix":147,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":148,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":149,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":14,"t":84,"tokens":[17928,24068,10471,13715],"delegation":[16928,23068,9471,12715],"delegatorTokens":9999999883812,"jailed":[null,1000000000000029,null,null],"status":["bonded","unbonding","unbonding","bonded"]}},{"ix":150,"action":{"kind":"Deliver","chain":"consumer","numPackets":6},"partialState":{"h":15,"t":90,"consumerPower":[26717,null,null,16498],"outstandingDowntime":[false,false,true,true]}},{"ix":151,"action":{"kind":"Delegate","val":1,"amt":1679},"partialState":{"h":14,"t":84,"tokens":[17928,25747,10471,13715],"delegation":[16928,24747,9471,12715],"delegatorTokens":9999999882133}},{"ix":152,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":15,"t":90,"tokens":[17928,25747,10471,13715],"delegation":[16928,24747,9471,12715],"delegatorTokens":9999999882133,"jailed":[null,1000000000000029,null,null],"status":["bonded","unbonding","unbonding","bonded"]}},{"ix":153,"action":{"kind":"Deliver","chain":"consumer","numPackets":3},"partialState":{"h":15,"t":90,"consumerPower":[26717,null,null,16498],"outstandingDowntime":[false,false,true,true]}},{"ix":154,"action":{"kind":"Delegate","val":0,"amt":4049},"partialState":{"h":15,"t":90,"tokens":[21977,25747,10471,13715],"delegation":[20977,24747,9471,12715],"delegatorTokens":9999999878084}},{"ix":155,"action":{"kind":"Undelegate","val":3,"amt":2941},"partialState":{"h":15,"t":90,"tokens":[21977,25747,10471,10774],"delegation":[20977,24747,9471,9774],"delegatorTokens":9999999878084}},{"ix":156,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":157,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":16,"t":96,"consumerPower":[17928,null,null,13715],"outstandingDowntime":[false,false,true,true]}},{"ix":158,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":159,"action":{"kind":"Undelegate","val":0,"amt":4854},"partialState":{"h":15,"t":90,"tokens":[17123,25747,10471,10774],"delegation":[16123,24747,9471,9774],"delegatorTokens":9999999878084}},{"ix":160,"action":{"kind":"Undelegate","val":3,"amt":2956},"partialState":{"h":15,"t":90,"tokens":[17123,25747,10471,7818],"delegation":[16123,24747,9471,6818],"delegatorTokens":9999999878084}},{"ix":161,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":162,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":17,"t":102,"consumerPower":[17928,null,null,13715],"outstandingDowntime":[false,false,true,true]}},{"ix":163,"action":{"kind":"Undelegate","val":2,"amt":3388},"partialState":{"h":15,"t":90,"tokens":[17123,25747,7083,7818],"delegation":[16123,24747,6083,6818],"delegatorTokens":9999999878084}},{"ix":164,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":18,"t":108,"consumerPower":[17928,null,null,13715],"outstandingDowntime":[false,false,true,true]}},{"ix":165,"action":{"kind":"Undelegate","val":1,"amt":3934},"partialState":{"h":15,"t":90,"tokens":[17123,21813,7083,7818],"delegation":[16123,20813,6083,6818],"delegatorTokens":9999999878084}},{"ix":166,"action":{"kind":"Delegate","val":1,"amt":4016},"partialState":{"h":15,"t":90,"tokens":[17123,25829,7083,7818],"delegation":[16123,24829,6083,6818],"delegatorTokens":9999999874068}},{"ix":167,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":16,"t":96,"tokens":[17123,25829,7083,7818],"delegation":[16123,24829,6083,6818],"delegatorTokens":9999999874068,"jailed":[null,1000000000000029,null,null],"status":["bonded","unbonding","unbonding","bonded"]}},{"ix":168,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":17,"t":102,"tokens":[17123,25829,7083,7818],"delegation":[16123,24829,6083,6818],"delegatorTokens":9999999874068,"jailed":[null,1000000000000029,null,null],"status":["bonded","unbonding","unbonding","bonded"]}},{"ix":169,"action":{"kind":"Deliver","chain":"provider","numPackets":4},"partialState":{"h":17,"t":102,"tokens":[17123,25829,7083,7818],"delegation":[16123,24829,6083,6818],"delegatorTokens":9999999874068,"jailed":[null,1000000000000029,null,null],"status":["bonded","unbonding","unbonding","bonded"]}},{"ix":170,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":171,"action":{"kind":"Deliver","chain":"provider","numPackets":1},"partialState":{"h":17,"t":102,"tokens":[17123,25829,7083,7818],"delegation":[16123,24829,6083,6818],"delegatorTokens":9999999874068,"jailed":[null,1000000000000029,null,null],"status":["bonded","unbonding","unbonding","bonded"]}},{"ix":172,"action":{"kind":"Deliver","chain":"consumer","numPackets":6},"partialState":{"h":18,"t":108,"consumerPower":[17928,null,null,13715],"outstandingDowntime":[false,false,true,true]}},{"ix":173,"action":{"kind":"Undelegate","val":0,"amt":4486},"partialState":{"h":17,"t":102,"tokens":[12637,25829,7083,7818],"delegation":[11637,24829,6083,6818],"delegatorTokens":9999999874068}},{"ix":174,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":18,"t":108,"tokens":[12637,25829,7083,7818],"delegation":[11637,24829,6083,6818],"delegatorTokens":9999999884708,"jailed":[null,1000000000000029,null,null],"status":["bonded","unbonding","unbonding","bonded"]}},{"ix":175,"action":{"kind":"Deliver","chain":"provider","numPackets":2},"partialState":{"h":18,"t":108,"tokens":[12637,25829,7083,7818],"delegation":[11637,24829,6083,6818],"delegatorTokens":9999999884708,"jailed":[null,1000000000000029,null,null],"status":["bonded","unbonding","unbonding","bonded"]}},{"ix":176,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":19,"t":114,"tokens":[12637,25829,7083,7818],"delegation":[11637,24829,6083,6818],"delegatorTokens":9999999884708,"jailed":[null,1000000000000029,null,null],"status":["bonded","unbonded","unbonding","bonded"]}},{"ix":177,"action":{"kind":"Undelegate","val":0,"amt":2958},"partialState":{"h":19,"t":114,"tokens":[9679,25829,7083,7818],"delegation":[8679,24829,6083,6818],"delegatorTokens":9999999884708}},{"ix":178,"action":{"kind":"Delegate","val":1,"amt":3364},"partialState":{"h":19,"t":114,"tokens":[9679,29193,7083,7818],"delegation":[8679,28193,6083,6818],"delegatorTokens":9999999881344}},{"ix":179,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":180,"action":{"kind":"Deliver","chain":"provider","numPackets":2},"partialState":{"h":19,"t":114,"tokens":[9679,29193,7083,7818],"delegation":[8679,28193,6083,6818],"delegatorTokens":9999999881344,"jailed":[null,1000000000000029,null,null],"status":["bonded","unbonded","unbonding","bonded"]}},{"ix":181,"action":{"kind":"Undelegate","val":0,"amt":2175},"partialState":{"h":19,"t":114,"tokens":[7504,29193,7083,7818],"delegation":[6504,28193,6083,6818],"delegatorTokens":9999999881344}},{"ix":182,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":183,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":20,"t":120,"tokens":[7504,29193,7083,7818],"delegation":[6504,28193,6083,6818],"delegatorTokens":9999999881344,"jailed":[null,1000000000000029,null,null],"status":["bonded","unbonded","unbonding","bonded"]}},{"ix":184,"action":{"kind":"Delegate","val":1,"amt":3938},"partialState":{"h":20,"t":120,"tokens":[7504,33131,7083,7818],"delegation":[6504,32131,6083,6818],"delegatorTokens":9999999877406}},{"ix":185,"action":{"kind":"Deliver","chain":"consumer","numPackets":4},"partialState":{"h":18,"t":108,"consumerPower":[17928,null,null,13715],"outstandingDowntime":[false,false,true,true]}},{"ix":186,"action":{"kind":"Deliver","chain":"provider","numPackets":5},"partialState":{"h":20,"t":120,"tokens":[7504,33131,7083,7818],"delegation":[6504,32131,6083,6818],"delegatorTokens":9999999877406,"jailed":[null,1000000000000029,null,null],"status":["bonded","unbonded","unbonding","bonded"]}},{"ix":187,"action":{"kind":"Deliver","chain":"consumer","numPackets":4},"partialState":{"h":18,"t":108,"consumerPower":[17928,null,null,13715],"outstandingDowntime":[false,false,true,true]}},{"ix":188,"action":{"kind":"Delegate","val":0,"amt":1624},"partialState":{"h":20,"t":120,"tokens":[9128,33131,7083,7818],"delegation":[8128,32131,6083,6818],"delegatorTokens":9999999875782}},{"ix":189,"action":{"kind":"Delegate","val":1,"amt":3261},"partialState":{"h":20,"t":120,"tokens":[9128,36392,7083,7818],"delegation":[8128,35392,6083,6818],"delegatorTokens":9999999872521}},{"ix":190,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":191,"action":{"kind":"Deliver","chain":"consumer","numPackets":3},"partialState":{"h":18,"t":108,"consumerPower":[17928,null,null,13715],"outstandingDowntime":[false,false,true,true]}},{"ix":192,"action":{"kind":"Undelegate","val":3,"amt":3552},"partialState":{"h":20,"t":120,"tokens":[9128,36392,7083,4266],"delegation":[8128,35392,6083,3266],"delegatorTokens":9999999872521}},{"ix":193,"action":{"kind":"Deliver","chain":"consumer","numPackets":5},"partialState":{"h":18,"t":108,"consumerPower":[17928,null,null,13715],"outstandingDowntime":[false,false,true,true]}},{"ix":194,"action":{"kind":"Undelegate","val":1,"amt":3590},"partialState":{"h":20,"t":120,"tokens":[9128,32802,7083,4266],"delegation":[8128,31802,6083,3266],"delegatorTokens":9999999872521}},{"ix":195,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":196,"action":{"kind":"Delegate","val":2,"amt":1020},"partialState":{"h":20,"t":120,"tokens":[9128,32802,8103,4266],"delegation":[8128,31802,7103,3266],"delegatorTokens":9999999871501}},{"ix":197,"action":{"kind":"Delegate","val":1,"amt":2623},"partialState":{"h":20,"t":120,"tokens":[9128,35425,8103,4266],"delegation":[8128,34425,7103,3266],"delegatorTokens":9999999868878}},{"ix":198,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":199,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}}],"events":["send_vsc_without_downtime_ack","send_downtime_slash_request","send_downtime_slash_request","send_downtime_slash_request","send_vsc_without_downtime_ack","consumer_update_val","send_vsc_without_downtime_ack","send_vsc_without_downtime_ack","insufficient_shares","insufficient_shares","receive_slash_request_unbonded","receive_downtime_slash_request","jail","receive_slash_request_unbonded","send_vsc_with_downtime_ack","more_than_one_third_val_power_change","send_vsc_without_downtime_ack","send_vsc_without_downtime_ack","consumer_update_val","consumer_update_val","send_vsc_not_because_change","send_vsc_without_downtime_ack","receive_downtime_slash_ack","consumer_update_val","consumer_del_val","consumer_add_val","send_vsc_without_downtime_ack","send_vsc_not_because_change","send_vsc_without_downtime_ack","send_vsc_without_downtime_ack","consumer_send_maturation","consumer_update_val","consumer_update_val","send_vsc_without_downtime_ack","consumer_update_val","consumer_update_val","more_than_one_third_val_power_change","rebond_unval","send_vsc_without_downtime_ack","consumer_send_maturation","consumer_send_maturation","consumer_update_val","consumer_del_val","consumer_update_val","consumer_send_maturation","consumer_send_maturation","consumer_send_maturation","consumer_send_maturation","some_undels_expired_but_not_completed","send_vsc_without_downtime_ack","some_undels_expired_but_not_completed","complete_undel_immediate","complete_undel_immediate","complete_undel_immediate","complete_undel_immediate","complete_undel_immediate","set_unval_hold_false","send_vsc_without_downtime_ack","complete_unval_in_endblock","send_vsc_without_downtime_ack"]},{"meta":{"commit":"7ffd0c04e4205cbc9caf212abfe6c59ee43153bf"},"constants":{"P":"provider","C":"consumer","UNBONDING_SECONDS_P":70,"UNBONDING_SECONDS_C":50,"TRUSTING_SECONDS":49,"NUM_VALIDATORS":4,"MAX_VALIDATORS":2,"SLASH_DOUBLESIGN":0,"SLASH_DOWNTIME":0,"JAIL_SECONDS":999999999999999,"BLOCK_SECONDS":6,"INITIAL_DELEGATOR_TOKENS":10000000000000,"DELEGATE_AMT_MIN":1000,"DELEGATE_AMT_MAX":5000,"UNDELEGATE_AMT_MIN":1000,"UNDELEGATE_AMT_MAX":5000,"ISDOWNTIME_PROBABILITY":0.5,"MAX_NUM_PACKETS_FOR_DELIVER":6},"actions":[{"ix":0,"action":{"kind":"Delegate","val":2,"amt":1033},"partialState":{"h":1,"t":6,"tokens":[5000,4000,4033,2000],"delegation":[4000,3000,3033,1000],"delegatorTokens":9999999998967}},{"ix":1,"action":{"kind":"Delegate","val":0,"amt":1841},"partialState":{"h":1,"t":6,"tokens":[6841,4000,4033,2000],"delegation":[5841,3000,3033,1000],"delegatorTokens":9999999997126}},{"ix":2,"action":{"kind":"Delegate","val":0,"amt":3701},"partialState":{"h":1,"t":6,"tokens":[10542,4000,4033,2000],"delegation":[9542,3000,3033,1000],"delegatorTokens":9999999993425}},{"ix":3,"action":{"kind":"Undelegate","val":3,"amt":4065},"partialState":{"h":1,"t":6,"tokens":[10542,4000,4033,2000],"delegation":[9542,3000,3033,1000],"delegatorTokens":9999999993425}},{"ix":4,"action":{"kind":"ConsumerSlash","val":2,"infractionHeight":0,"isDowntime":true},"partialState":{"h":1,"t":6,"outstandingDowntime":[false,false,true,false]}},{"ix":5,"action":{"kind":"ConsumerSlash","val":3,"infractionHeight":0,"isDowntime":false},"partialState":{"h":1,"t":6,"outstandingDowntime":[false,false,true,false]}},{"ix":6,"action":{"kind":"ConsumerSlash","val":3,"infractionHeight":0,"isDowntime":true},"partialState":{"h":1,"t":6,"outstandingDowntime":[false,false,true,true]}},{"ix":7,"action":{"kind":"ConsumerSlash","val":0,"infractionHeight":0,"isDowntime":true},"partialState":{"h":1,"t":6,"outstandingDowntime":[true,false,true,true]}},{"ix":8,"action":{"kind":"Delegate","val":1,"amt":2619},"partialState":{"h":1,"t":6,"tokens":[10542,6619,4033,2000],"delegation":[9542,5619,3033,1000],"delegatorTokens":9999999990806}},{"ix":9,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":10,"action":{"kind":"Delegate","val":1,"amt":3833},"partialState":{"h":1,"t":6,"tokens":[10542,10452,4033,2000],"delegation":[9542,9452,3033,1000],"delegatorTokens":9999999986973}},{"ix":11,"action":{"kind":"Delegate","val":3,"amt":1636},"partialState":{"h":1,"t":6,"tokens":[10542,10452,4033,3636],"delegation":[9542,9452,3033,2636],"delegatorTokens":9999999985337}},{"ix":12,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":2,"t":12,"tokens":[10542,10452,4033,3636],"delegation":[9542,9452,3033,2636],"delegatorTokens":9999999985337,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":13,"action":{"kind":"Deliver","chain":"provider","numPackets":2},"partialState":{"h":2,"t":12,"tokens":[10542,10452,4033,3636],"delegation":[9542,9452,3033,2636],"delegatorTokens":9999999985337,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":14,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":15,"action":{"kind":"Undelegate","val":3,"amt":3610},"partialState":{"h":2,"t":12,"tokens":[10542,10452,4033,3636],"delegation":[9542,9452,3033,2636],"delegatorTokens":9999999985337}},{"ix":16,"action":{"kind":"Delegate","val":1,"amt":4106},"partialState":{"h":2,"t":12,"tokens":[10542,14558,4033,3636],"delegation":[9542,13558,3033,2636],"delegatorTokens":9999999981231}},{"ix":17,"action":{"kind":"Delegate","val":3,"amt":1340},"partialState":{"h":2,"t":12,"tokens":[10542,14558,4033,4976],"delegation":[9542,13558,3033,3976],"delegatorTokens":9999999979891}},{"ix":18,"action":{"kind":"Delegate","val":1,"amt":4780},"partialState":{"h":2,"t":12,"tokens":[10542,19338,4033,4976],"delegation":[9542,18338,3033,3976],"delegatorTokens":9999999975111}},{"ix":19,"action":{"kind":"Deliver","chain":"provider","numPackets":3},"partialState":{"h":2,"t":12,"tokens":[10542,19338,4033,4976],"delegation":[9542,18338,3033,3976],"delegatorTokens":9999999975111,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":20,"action":{"kind":"Undelegate","val":3,"amt":3026},"partialState":{"h":2,"t":12,"tokens":[10542,19338,4033,1950],"delegation":[9542,18338,3033,950],"delegatorTokens":9999999975111}},{"ix":21,"action":{"kind":"Undelegate","val":2,"amt":4871},"partialState":{"h":2,"t":12,"tokens":[10542,19338,4033,1950],"delegation":[9542,18338,3033,950],"delegatorTokens":9999999975111}},{"ix":22,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":2,"t":12,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[true,false,true,true]}},{"ix":23,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":3,"t":18,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[true,false,true,true]}},{"ix":24,"action":{"kind":"Undelegate","val":2,"amt":3916},"partialState":{"h":2,"t":12,"tokens":[10542,19338,4033,1950],"delegation":[9542,18338,3033,950],"delegatorTokens":9999999975111}},{"ix":25,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":26,"action":{"kind":"Deliver","chain":"provider","numPackets":4},"partialState":{"h":2,"t":12,"tokens":[10542,19338,4033,1950],"delegation":[9542,18338,3033,950],"delegatorTokens":9999999975111,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":27,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":4,"t":24,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[true,false,true,true]}},{"ix":28,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":29,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":3,"t":18,"tokens":[10542,19338,4033,1950],"delegation":[9542,18338,3033,950],"delegatorTokens":9999999975111,"jailed":[1000000000000011,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":30,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":31,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":4,"t":24,"tokens":[10542,19338,4033,1950],"delegation":[9542,18338,3033,950],"delegatorTokens":9999999975111,"jailed":[1000000000000011,null,null,null],"status":["unbonding","bonded","bonded","unbonded"]}},{"ix":32,"action":{"kind":"Deliver","chain":"provider","numPackets":2},"partialState":{"h":4,"t":24,"tokens":[10542,19338,4033,1950],"delegation":[9542,18338,3033,950],"delegatorTokens":9999999975111,"jailed":[1000000000000011,null,null,null],"status":["unbonding","bonded","bonded","unbonded"]}},{"ix":33,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":34,"action":{"kind":"Deliver","chain":"consumer","numPackets":3},"partialState":{"h":4,"t":24,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,false,true,true]}},{"ix":35,"action":{"kind":"Delegate","val":0,"amt":1764},"partialState":{"h":4,"t":24,"tokens":[12306,19338,4033,1950],"delegation":[11306,18338,3033,950],"delegatorTokens":9999999973347}},{"ix":36,"action":{"kind":"Delegate","val":0,"amt":4018},"partialState":{"h":4,"t":24,"tokens":[16324,19338,4033,1950],"delegation":[15324,18338,3033,950],"delegatorTokens":9999999969329}},{"ix":37,"action":{"kind":"Undelegate","val":1,"amt":2158},"partialState":{"h":4,"t":24,"tokens":[16324,17180,4033,1950],"delegation":[15324,16180,3033,950],"delegatorTokens":9999999969329}},{"ix":38,"action":{"kind":"Deliver","chain":"provider","numPackets":4},"partialState":{"h":4,"t":24,"tokens":[16324,17180,4033,1950],"delegation":[15324,16180,3033,950],"delegatorTokens":9999999969329,"jailed":[1000000000000011,null,null,null],"status":["unbonding","bonded","bonded","unbonded"]}},{"ix":39,"action":{"kind":"Undelegate","val":0,"amt":2043},"partialState":{"h":4,"t":24,"tokens":[14281,17180,4033,1950],"delegation":[13281,16180,3033,950],"delegatorTokens":9999999969329}},{"ix":40,"action":{"kind":"Deliver","chain":"consumer","numPackets":2},"partialState":{"h":4,"t":24,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,false,true,true]}},{"ix":41,"action":{"kind":"Delegate","val":1,"amt":3683},"partialState":{"h":4,"t":24,"tokens":[14281,20863,4033,1950],"delegation":[13281,19863,3033,950],"delegatorTokens":9999999965646}},{"ix":42,"action":{"kind":"Delegate","val":3,"amt":4869},"partialState":{"h":4,"t":24,"tokens":[14281,20863,4033,6819],"delegation":[13281,19863,3033,5819],"delegatorTokens":9999999960777}},{"ix":43,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":44,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":5,"t":30,"tokens":[14281,20863,4033,6819],"delegation":[13281,19863,3033,5819],"delegatorTokens":9999999960777,"jailed":[1000000000000011,null,null,null],"status":["unbonding","bonded","unbonding","bonded"]}},{"ix":45,"action":{"kind":"Undelegate","val":1,"amt":4625},"partialState":{"h":5,"t":30,"tokens":[14281,16238,4033,6819],"delegation":[13281,15238,3033,5819],"delegatorTokens":9999999960777}},{"ix":46,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":47,"action":{"kind":"Deliver","chain":"provider","numPackets":6},"partialState":{"h":5,"t":30,"tokens":[14281,16238,4033,6819],"delegation":[13281,15238,3033,5819],"delegatorTokens":9999999960777,"jailed":[1000000000000011,null,null,null],"status":["unbonding","bonded","unbonding","bonded"]}},{"ix":48,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":5,"t":30,"consumerPower":[10542,19338,null,null],"outstandingDowntime":[false,false,true,true]}},{"ix":49,"action":{"kind":"Deliver","chain":"consumer","numPackets":6},"partialState":{"h":5,"t":30,"consumerPower":[10542,19338,null,null],"outstandingDowntime":[false,false,true,true]}},{"ix":50,"action":{"kind":"Undelegate","val":1,"amt":2395},"partialState":{"h":5,"t":30,"tokens":[14281,13843,4033,6819],"delegation":[13281,12843,3033,5819],"delegatorTokens":9999999960777}},{"ix":51,"action":{"kind":"Delegate","val":3,"amt":2812},"partialState":{"h":5,"t":30,"tokens":[14281,13843,4033,9631],"delegation":[13281,12843,3033,8631],"delegatorTokens":9999999957965}},{"ix":52,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":6,"t":36,"tokens":[14281,13843,4033,9631],"delegation":[13281,12843,3033,8631],"delegatorTokens":9999999957965,"jailed":[1000000000000011,null,null,null],"status":["unbonding","bonded","unbonding","bonded"]}},{"ix":53,"action":{"kind":"Delegate","val":2,"amt":4128},"partialState":{"h":6,"t":36,"tokens":[14281,13843,8161,9631],"delegation":[13281,12843,7161,8631],"delegatorTokens":9999999953837}},{"ix":54,"action":{"kind":"Undelegate","val":1,"amt":4186},"partialState":{"h":6,"t":36,"tokens":[14281,9657,8161,9631],"delegation":[13281,8657,7161,8631],"delegatorTokens":9999999953837}},{"ix":55,"action":{"kind":"Deliver","chain":"provider","numPackets":4},"partialState":{"h":6,"t":36,"tokens":[14281,9657,8161,9631],"delegation":[13281,8657,7161,8631],"delegatorTokens":9999999953837,"jailed":[1000000000000011,null,null,null],"status":["unbonding","bonded","unbonding","bonded"]}},{"ix":56,"action":{"kind":"Undelegate","val":3,"amt":3650},"partialState":{"h":6,"t":36,"tokens":[14281,9657,8161,5981],"delegation":[13281,8657,7161,4981],"delegatorTokens":9999999953837}},{"ix":57,"action":{"kind":"Deliver","chain":"provider","numPackets":4},"partialState":{"h":6,"t":36,"tokens":[14281,9657,8161,5981],"delegation":[13281,8657,7161,4981],"delegatorTokens":9999999953837,"jailed":[1000000000000011,null,null,null],"status":["unbonding","bonded","unbonding","bonded"]}},{"ix":58,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":59,"action":{"kind":"Undelegate","val":2,"amt":2317},"partialState":{"h":6,"t":36,"tokens":[14281,9657,5844,5981],"delegation":[13281,8657,4844,4981],"delegatorTokens":9999999953837}},{"ix":60,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":61,"action":{"kind":"Delegate","val":2,"amt":1696},"partialState":{"h":6,"t":36,"tokens":[14281,9657,7540,5981],"delegation":[13281,8657,6540,4981],"delegatorTokens":9999999952141}},{"ix":62,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":7,"t":42,"tokens":[14281,9657,7540,5981],"delegation":[13281,8657,6540,4981],"delegatorTokens":9999999952141,"jailed":[1000000000000011,null,null,null],"status":["unbonding","bonded","bonded","unbonding"]}},{"ix":63,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":8,"t":48,"tokens":[14281,9657,7540,5981],"delegation":[13281,8657,6540,4981],"delegatorTokens":9999999952141,"jailed":[1000000000000011,null,null,null],"status":["unbonding","bonded","bonded","unbonding"]}},{"ix":64,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":6,"t":36,"consumerPower":[null,19338,4033,null],"outstandingDowntime":[false,false,true,true]}},{"ix":65,"action":{"kind":"Undelegate","val":1,"amt":1189},"partialState":{"h":8,"t":48,"tokens":[14281,8468,7540,5981],"delegation":[13281,7468,6540,4981],"delegatorTokens":9999999952141}},{"ix":66,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":7,"t":42,"consumerPower":[null,19338,4033,null],"outstandingDowntime":[false,false,true,true]}},{"ix":67,"action":{"kind":"Deliver","chain":"consumer","numPackets":4},"partialState":{"h":7,"t":42,"consumerPower":[null,19338,4033,null],"outstandingDowntime":[false,false,true,true]}},{"ix":68,"action":{"kind":"Deliver","chain":"provider","numPackets":2},"partialState":{"h":8,"t":48,"tokens":[14281,8468,7540,5981],"delegation":[13281,7468,6540,4981],"delegatorTokens":9999999952141,"jailed":[1000000000000011,null,null,null],"status":["unbonding","bonded","bonded","unbonding"]}},{"ix":69,"action":{"kind":"Undelegate","val":2,"amt":3284},"partialState":{"h":8,"t":48,"tokens":[14281,8468,4256,5981],"delegation":[13281,7468,3256,4981],"delegatorTokens":9999999952141}},{"ix":70,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":8,"t":48,"consumerPower":[null,9657,7540,null],"outstandingDowntime":[false,false,true,true]}},{"ix":71,"action":{"kind":"Delegate","val":3,"amt":1719},"partialState":{"h":8,"t":48,"tokens":[14281,8468,4256,7700],"delegation":[13281,7468,3256,6700],"delegatorTokens":9999999950422}},{"ix":72,"action":{"kind":"Undelegate","val":0,"amt":2188},"partialState":{"h":8,"t":48,"tokens":[12093,8468,4256,7700],"delegation":[11093,7468,3256,6700],"delegatorTokens":9999999950422}},{"ix":73,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":9,"t":54,"consumerPower":[null,9657,7540,null],"outstandingDowntime":[false,false,true,true]}},{"ix":74,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":75,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":76,"action":{"kind":"Delegate","val":1,"amt":4598},"partialState":{"h":8,"t":48,"tokens":[12093,13066,4256,7700],"delegation":[11093,12066,3256,6700],"delegatorTokens":9999999945824}},{"ix":77,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":9,"t":54,"tokens":[12093,13066,4256,7700],"delegation":[11093,12066,3256,6700],"delegatorTokens":9999999945824,"jailed":[1000000000000011,null,null,null],"status":["unbonding","bonded","unbonding","bonded"]}},{"ix":78,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":10,"t":60,"consumerPower":[null,9657,7540,null],"outstandingDowntime":[false,false,true,true]}},{"ix":79,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":80,"action":{"kind":"Delegate","val":2,"amt":3494},"partialState":{"h":9,"t":54,"tokens":[12093,13066,7750,7700],"delegation":[11093,12066,6750,6700],"delegatorTokens":9999999942330}},{"ix":81,"action":{"kind":"Undelegate","val":0,"amt":4928},"partialState":{"h":9,"t":54,"tokens":[7165,13066,7750,7700],"delegation":[6165,12066,6750,6700],"delegatorTokens":9999999942330}},{"ix":82,"action":{"kind":"Undelegate","val":2,"amt":4891},"partialState":{"h":9,"t":54,"tokens":[7165,13066,2859,7700],"delegation":[6165,12066,1859,6700],"delegatorTokens":9999999942330}},{"ix":83,"action":{"kind":"Deliver","chain":"consumer","numPackets":2},"partialState":{"h":10,"t":60,"consumerPower":[null,9657,7540,null],"outstandingDowntime":[false,false,true,true]}},{"ix":84,"action":{"kind":"Undelegate","val":0,"amt":3768},"partialState":{"h":9,"t":54,"tokens":[3397,13066,2859,7700],"delegation":[2397,12066,1859,6700],"delegatorTokens":9999999942330}},{"ix":85,"action":{"kind":"Delegate","val":1,"amt":3919},"partialState":{"h":9,"t":54,"tokens":[3397,16985,2859,7700],"delegation":[2397,15985,1859,6700],"delegatorTokens":9999999938411}},{"ix":86,"action":{"kind":"Delegate","val":0,"amt":4082},"partialState":{"h":9,"t":54,"tokens":[7479,16985,2859,7700],"delegation":[6479,15985,1859,6700],"delegatorTokens":9999999934329}},{"ix":87,"action":{"kind":"Undelegate","val":1,"amt":1868},"partialState":{"h":9,"t":54,"tokens":[7479,15117,2859,7700],"delegation":[6479,14117,1859,6700],"delegatorTokens":9999999934329}},{"ix":88,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":11,"t":66,"consumerPower":[null,9657,7540,null],"outstandingDowntime":[false,false,true,true]}},{"ix":89,"action":{"kind":"Undelegate","val":1,"amt":4066},"partialState":{"h":9,"t":54,"tokens":[7479,11051,2859,7700],"delegation":[6479,10051,1859,6700],"delegatorTokens":9999999934329}},{"ix":90,"action":{"kind":"Undelegate","val":3,"amt":4876},"partialState":{"h":9,"t":54,"tokens":[7479,11051,2859,2824],"delegation":[6479,10051,1859,1824],"delegatorTokens":9999999934329}},{"ix":91,"action":{"kind":"Undelegate","val":0,"amt":4216},"partialState":{"h":9,"t":54,"tokens":[3263,11051,2859,2824],"delegation":[2263,10051,1859,1824],"delegatorTokens":9999999934329}},{"ix":92,"action":{"kind":"Delegate","val":1,"amt":4824},"partialState":{"h":9,"t":54,"tokens":[3263,15875,2859,2824],"delegation":[2263,14875,1859,1824],"delegatorTokens":9999999929505}},{"ix":93,"action":{"kind":"Undelegate","val":3,"amt":1556},"partialState":{"h":9,"t":54,"tokens":[3263,15875,2859,1268],"delegation":[2263,14875,1859,268],"delegatorTokens":9999999929505}},{"ix":94,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":95,"action":{"kind":"Deliver","chain":"consumer","numPackets":4},"partialState":{"h":11,"t":66,"consumerPower":[null,9657,7540,null],"outstandingDowntime":[false,false,true,true]}},{"ix":96,"action":{"kind":"Delegate","val":2,"amt":4690},"partialState":{"h":9,"t":54,"tokens":[3263,15875,7549,1268],"delegation":[2263,14875,6549,268],"delegatorTokens":9999999924815}},{"ix":97,"action":{"kind":"Deliver","chain":"provider","numPackets":2},"partialState":{"h":9,"t":54,"tokens":[3263,15875,7549,1268],"delegation":[2263,14875,6549,268],"delegatorTokens":9999999924815,"jailed":[1000000000000011,null,null,null],"status":["unbonding","bonded","unbonding","bonded"]}},{"ix":98,"action":{"kind":"Undelegate","val":3,"amt":1140},"partialState":{"h":9,"t":54,"tokens":[3263,15875,7549,1268],"delegation":[2263,14875,6549,268],"delegatorTokens":9999999924815}},{"ix":99,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":100,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":12,"t":72,"consumerPower":[null,9657,7540,null],"outstandingDowntime":[false,false,true,true]}},{"ix":101,"action":{"kind":"Deliver","chain":"consumer","numPackets":5},"partialState":{"h":12,"t":72,"consumerPower":[null,9657,7540,null],"outstandingDowntime":[false,false,true,true]}},{"ix":102,"action":{"kind":"Undelegate","val":3,"amt":4149},"partialState":{"h":9,"t":54,"tokens":[3263,15875,7549,1268],"delegation":[2263,14875,6549,268],"delegatorTokens":9999999924815}},{"ix":103,"action":{"kind":"Undelegate","val":1,"amt":3265},"partialState":{"h":9,"t":54,"tokens":[3263,12610,7549,1268],"delegation":[2263,11610,6549,268],"delegatorTokens":9999999924815}},{"ix":104,"action":{"kind":"Deliver","chain":"consumer","numPackets":1},"partialState":{"h":12,"t":72,"consumerPower":[null,9657,7540,null],"outstandingDowntime":[false,false,true,true]}},{"ix":105,"action":{"kind":"Deliver","chain":"consumer","numPackets":6},"partialState":{"h":12,"t":72,"consumerPower":[null,9657,7540,null],"outstandingDowntime":[false,false,true,true]}},{"ix":106,"action":{"kind":"Deliver","chain":"provider","numPackets":1},"partialState":{"h":9,"t":54,"tokens":[3263,12610,7549,1268],"delegation":[2263,11610,6549,268],"delegatorTokens":9999999924815,"jailed":[1000000000000011,null,null,null],"status":["unbonding","bonded","unbonding","bonded"]}},{"ix":107,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":10,"t":60,"tokens":[3263,12610,7549,1268],"delegation":[2263,11610,6549,268],"delegatorTokens":9999999924815,"jailed":[1000000000000011,null,null,null],"status":["unbonding","bonded","bonded","unbonding"]}},{"ix":108,"action":{"kind":"Delegate","val":2,"amt":1989},"partialState":{"h":10,"t":60,"tokens":[3263,12610,9538,1268],"delegation":[2263,11610,8538,268],"delegatorTokens":9999999922826}},{"ix":109,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":110,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":11,"t":66,"tokens":[3263,12610,9538,1268],"delegation":[2263,11610,8538,268],"delegatorTokens":9999999922826,"jailed":[1000000000000011,null,null,null],"status":["unbonding","bonded","bonded","unbonding"]}},{"ix":111,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":112,"action":{"kind":"Deliver","chain":"consumer","numPackets":4},"partialState":{"h":12,"t":72,"consumerPower":[null,9657,7540,null],"outstandingDowntime":[false,false,true,true]}},{"ix":113,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":12,"t":72,"tokens":[3263,12610,9538,1268],"delegation":[2263,11610,8538,268],"delegatorTokens":9999999922826,"jailed":[1000000000000011,null,null,null],"status":["unbonding","bonded","bonded","unbonding"]}},{"ix":114,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":13,"t":78,"consumerPower":[null,12610,7549,null],"outstandingDowntime":[false,false,true,true]}},{"ix":115,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":14,"t":84,"consumerPower":[null,12610,7549,null],"outstandingDowntime":[false,false,true,true]}},{"ix":116,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":13,"t":78,"tokens":[3263,12610,9538,1268],"delegation":[2263,11610,8538,268],"delegatorTokens":9999999922826,"jailed":[1000000000000011,null,null,null],"status":["unbonding","bonded","bonded","unbonding"]}},{"ix":117,"action":{"kind":"Undelegate","val":1,"amt":1518},"partialState":{"h":13,"t":78,"tokens":[3263,11092,9538,1268],"delegation":[2263,10092,8538,268],"delegatorTokens":9999999922826}},{"ix":118,"action":{"kind":"Undelegate","val":3,"amt":1238},"partialState":{"h":13,"t":78,"tokens":[3263,11092,9538,1268],"delegation":[2263,10092,8538,268],"delegatorTokens":9999999922826}},{"ix":119,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":120,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":15,"t":90,"consumerPower":[null,12610,7549,null],"outstandingDowntime":[false,false,true,true]}},{"ix":121,"action":{"kind":"Delegate","val":2,"amt":3239},"partialState":{"h":13,"t":78,"tokens":[3263,11092,12777,1268],"delegation":[2263,10092,11777,268],"delegatorTokens":9999999919587}},{"ix":122,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":16,"t":96,"consumerPower":[null,12610,7549,null],"outstandingDowntime":[false,false,true,true]}},{"ix":123,"action":{"kind":"Deliver","chain":"consumer","numPackets":2},"partialState":{"h":16,"t":96,"consumerPower":[null,12610,7549,null],"outstandingDowntime":[false,false,true,true]}},{"ix":124,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":125,"action":{"kind":"Deliver","chain":"provider","numPackets":1},"partialState":{"h":13,"t":78,"tokens":[3263,11092,12777,1268],"delegation":[2263,10092,11777,268],"delegatorTokens":9999999919587,"jailed":[1000000000000011,null,null,null],"status":["unbonding","bonded","bonded","unbonding"]}},{"ix":126,"action":{"kind":"Delegate","val":1,"amt":2291},"partialState":{"h":13,"t":78,"tokens":[3263,13383,12777,1268],"delegation":[2263,12383,11777,268],"delegatorTokens":9999999917296}},{"ix":127,"action":{"kind":"Undelegate","val":2,"amt":4866},"partialState":{"h":13,"t":78,"tokens":[3263,13383,7911,1268],"delegation":[2263,12383,6911,268],"delegatorTokens":9999999917296}},{"ix":128,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":129,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":17,"t":102,"consumerPower":[null,12610,9538,null],"outstandingDowntime":[false,false,true,true]}},{"ix":130,"action":{"kind":"Deliver","chain":"consumer","numPackets":3},"partialState":{"h":17,"t":102,"consumerPower":[null,12610,9538,null],"outstandingDowntime":[false,false,true,true]}},{"ix":131,"action":{"kind":"Undelegate","val":2,"amt":1365},"partialState":{"h":13,"t":78,"tokens":[3263,13383,6546,1268],"delegation":[2263,12383,5546,268],"delegatorTokens":9999999917296}},{"ix":132,"action":{"kind":"Delegate","val":1,"amt":2413},"partialState":{"h":13,"t":78,"tokens":[3263,15796,6546,1268],"delegation":[2263,14796,5546,268],"delegatorTokens":9999999914883}},{"ix":133,"action":{"kind":"Deliver","chain":"consumer","numPackets":1},"partialState":{"h":17,"t":102,"consumerPower":[null,12610,9538,null],"outstandingDowntime":[false,false,true,true]}},{"ix":134,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":135,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":14,"t":84,"tokens":[3263,15796,6546,1268],"delegation":[2263,14796,5546,268],"delegatorTokens":9999999914883,"jailed":[1000000000000011,null,null,null],"status":["unbonding","bonded","bonded","unbonding"]}},{"ix":136,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":18,"t":108,"consumerPower":[null,12610,9538,null],"outstandingDowntime":[false,false,true,true]}},{"ix":137,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":19,"t":114,"consumerPower":[null,12610,9538,null],"outstandingDowntime":[false,false,true,true]}},{"ix":138,"action":{"kind":"Delegate","val":3,"amt":2772},"partialState":{"h":14,"t":84,"tokens":[3263,15796,6546,4040],"delegation":[2263,14796,5546,3040],"delegatorTokens":9999999912111}},{"ix":139,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":15,"t":90,"tokens":[3263,15796,6546,4040],"delegation":[2263,14796,5546,3040],"delegatorTokens":9999999912111,"jailed":[1000000000000011,null,null,null],"status":["unbonding","bonded","bonded","unbonding"]}},{"ix":140,"action":{"kind":"Deliver","chain":"consumer","numPackets":6},"partialState":{"h":19,"t":114,"consumerPower":[null,12610,9538,null],"outstandingDowntime":[false,false,true,true]}},{"ix":141,"action":{"kind":"Undelegate","val":2,"amt":2774},"partialState":{"h":15,"t":90,"tokens":[3263,15796,3772,4040],"delegation":[2263,14796,2772,3040],"delegatorTokens":9999999912111}},{"ix":142,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":16,"t":96,"tokens":[3263,15796,3772,4040],"delegation":[2263,14796,2772,3040],"delegatorTokens":9999999912111,"jailed":[1000000000000011,null,null,null],"status":["unbonding","bonded","unbonding","bonded"]}},{"ix":143,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":17,"t":102,"tokens":[3263,15796,3772,4040],"delegation":[2263,14796,2772,3040],"delegatorTokens":9999999912111,"jailed":[1000000000000011,null,null,null],"status":["unbonding","bonded","unbonding","bonded"]}},{"ix":144,"action":{"kind":"Undelegate","val":1,"amt":2834},"partialState":{"h":17,"t":102,"tokens":[3263,12962,3772,4040],"delegation":[2263,11962,2772,3040],"delegatorTokens":9999999912111}},{"ix":145,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":146,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":147,"action":{"kind":"Undelegate","val":2,"amt":3804},"partialState":{"h":17,"t":102,"tokens":[3263,12962,3772,4040],"delegation":[2263,11962,2772,3040],"delegatorTokens":9999999912111}},{"ix":148,"action":{"kind":"Delegate","val":2,"amt":4802},"partialState":{"h":17,"t":102,"tokens":[3263,12962,8574,4040],"delegation":[2263,11962,7574,3040],"delegatorTokens":9999999907309}},{"ix":149,"action":{"kind":"Delegate","val":3,"amt":4072},"partialState":{"h":17,"t":102,"tokens":[3263,12962,8574,8112],"delegation":[2263,11962,7574,7112],"delegatorTokens":9999999903237}},{"ix":150,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":151,"action":{"kind":"Undelegate","val":3,"amt":2642},"partialState":{"h":17,"t":102,"tokens":[3263,12962,8574,5470],"delegation":[2263,11962,7574,4470],"delegatorTokens":9999999903237}},{"ix":152,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":20,"t":120,"consumerPower":[null,15796,6546,null],"outstandingDowntime":[false,false,true,true]}},{"ix":153,"action":{"kind":"Deliver","chain":"provider","numPackets":1},"partialState":{"h":17,"t":102,"tokens":[3263,12962,8574,5470],"delegation":[2263,11962,7574,4470],"delegatorTokens":9999999903237,"jailed":[1000000000000011,null,null,null],"status":["unbonding","bonded","unbonding","bonded"]}},{"ix":154,"action":{"kind":"Delegate","val":3,"amt":4792},"partialState":{"h":17,"t":102,"tokens":[3263,12962,8574,10262],"delegation":[2263,11962,7574,9262],"delegatorTokens":9999999898445}},{"ix":155,"action":{"kind":"Delegate","val":2,"amt":3934},"partialState":{"h":17,"t":102,"tokens":[3263,12962,12508,10262],"delegation":[2263,11962,11508,9262],"delegatorTokens":9999999894511}},{"ix":156,"action":{"kind":"Undelegate","val":0,"amt":3164},"partialState":{"h":17,"t":102,"tokens":[3263,12962,12508,10262],"delegation":[2263,11962,11508,9262],"delegatorTokens":9999999894511}},{"ix":157,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":21,"t":126,"consumerPower":[null,15796,6546,null],"outstandingDowntime":[false,false,true,true]}},{"ix":158,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":159,"action":{"kind":"Undelegate","val":2,"amt":2659},"partialState":{"h":17,"t":102,"tokens":[3263,12962,9849,10262],"delegation":[2263,11962,8849,9262],"delegatorTokens":9999999894511}},{"ix":160,"action":{"kind":"Delegate","val":0,"amt":2051},"partialState":{"h":17,"t":102,"tokens":[5314,12962,9849,10262],"delegation":[4314,11962,8849,9262],"delegatorTokens":9999999892460}},{"ix":161,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":22,"t":132,"consumerPower":[null,15796,6546,null],"outstandingDowntime":[false,false,true,true]}},{"ix":162,"action":{"kind":"Undelegate","val":1,"amt":4665},"partialState":{"h":17,"t":102,"tokens":[5314,8297,9849,10262],"delegation":[4314,7297,8849,9262],"delegatorTokens":9999999892460}},{"ix":163,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":18,"t":108,"tokens":[5314,8297,9849,10262],"delegation":[4314,7297,8849,9262],"delegatorTokens":9999999895486,"jailed":[1000000000000011,null,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":164,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":165,"action":{"kind":"Deliver","chain":"provider","numPackets":3},"partialState":{"h":18,"t":108,"tokens":[5314,8297,9849,10262],"delegation":[4314,7297,8849,9262],"delegatorTokens":9999999895486,"jailed":[1000000000000011,null,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":166,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":19,"t":114,"tokens":[5314,8297,9849,10262],"delegation":[4314,7297,8849,9262],"delegatorTokens":9999999906707,"jailed":[1000000000000011,null,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":167,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":168,"action":{"kind":"Undelegate","val":2,"amt":4522},"partialState":{"h":19,"t":114,"tokens":[5314,8297,5327,10262],"delegation":[4314,7297,4327,9262],"delegatorTokens":9999999906707}},{"ix":169,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":20,"t":120,"tokens":[5314,8297,5327,10262],"delegation":[4314,7297,4327,9262],"delegatorTokens":9999999906707,"jailed":[1000000000000011,null,null,null],"status":["unbonded","bonded","unbonding","bonded"]}},{"ix":170,"action":{"kind":"Deliver","chain":"consumer","numPackets":2},"partialState":{"h":22,"t":132,"consumerPower":[null,15796,6546,null],"outstandingDowntime":[false,false,true,true]}},{"ix":171,"action":{"kind":"Undelegate","val":2,"amt":3099},"partialState":{"h":20,"t":120,"tokens":[5314,8297,2228,10262],"delegation":[4314,7297,1228,9262],"delegatorTokens":9999999906707}},{"ix":172,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":173,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":21,"t":126,"tokens":[5314,8297,2228,10262],"delegation":[4314,7297,1228,9262],"delegatorTokens":9999999906707,"jailed":[1000000000000011,null,null,null],"status":["unbonded","bonded","unbonding","bonded"]}},{"ix":174,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":175,"action":{"kind":"Delegate","val":0,"amt":4676},"partialState":{"h":21,"t":126,"tokens":[9990,8297,2228,10262],"delegation":[8990,7297,1228,9262],"delegatorTokens":9999999902031}},{"ix":176,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":177,"action":{"kind":"Deliver","chain":"provider","numPackets":3},"partialState":{"h":21,"t":126,"tokens":[9990,8297,2228,10262],"delegation":[8990,7297,1228,9262],"delegatorTokens":9999999902031,"jailed":[1000000000000011,null,null,null],"status":["unbonded","bonded","unbonding","bonded"]}},{"ix":178,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":179,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":22,"t":132,"tokens":[9990,8297,2228,10262],"delegation":[8990,7297,1228,9262],"delegatorTokens":9999999912184,"jailed":[1000000000000011,null,null,null],"status":["unbonded","bonded","unbonding","bonded"]}},{"ix":180,"action":{"kind":"Delegate","val":2,"amt":2544},"partialState":{"h":22,"t":132,"tokens":[9990,8297,4772,10262],"delegation":[8990,7297,3772,9262],"delegatorTokens":9999999909640}},{"ix":181,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":23,"t":138,"consumerPower":[null,null,9849,10262],"outstandingDowntime":[false,false,true,true]}},{"ix":182,"action":{"kind":"Deliver","chain":"consumer","numPackets":4},"partialState":{"h":23,"t":138,"consumerPower":[null,null,9849,10262],"outstandingDowntime":[false,false,true,true]}},{"ix":183,"action":{"kind":"Deliver","chain":"consumer","numPackets":5},"partialState":{"h":23,"t":138,"consumerPower":[null,null,9849,10262],"outstandingDowntime":[false,false,true,true]}},{"ix":184,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":23,"t":138,"tokens":[9990,8297,4772,10262],"delegation":[8990,7297,3772,9262],"delegatorTokens":9999999909640,"jailed":[1000000000000011,null,null,null],"status":["unbonded","bonded","unbonding","bonded"]}},{"ix":185,"action":{"kind":"Undelegate","val":1,"amt":3549},"partialState":{"h":23,"t":138,"tokens":[9990,4748,4772,10262],"delegation":[8990,3748,3772,9262],"delegatorTokens":9999999909640}},{"ix":186,"action":{"kind":"Deliver","chain":"provider","numPackets":6},"partialState":{"h":23,"t":138,"tokens":[9990,4748,4772,10262],"delegation":[8990,3748,3772,9262],"delegatorTokens":9999999909640,"jailed":[1000000000000011,null,null,null],"status":["unbonded","bonded","unbonding","bonded"]}},{"ix":187,"action":{"kind":"Deliver","chain":"consumer","numPackets":3},"partialState":{"h":23,"t":138,"consumerPower":[null,null,9849,10262],"outstandingDowntime":[false,false,true,true]}},{"ix":188,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":24,"t":144,"tokens":[9990,4748,4772,10262],"delegation":[8990,3748,3772,9262],"delegatorTokens":9999999949735,"jailed":[1000000000000011,null,null,null],"status":["unbonded","unbonding","bonded","bonded"]}},{"ix":189,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":24,"t":144,"consumerPower":[null,8297,null,10262],"outstandingDowntime":[false,false,true,true]}},{"ix":190,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":25,"t":150,"tokens":[9990,4748,4772,10262],"delegation":[8990,3748,3772,9262],"delegatorTokens":9999999949735,"jailed":[1000000000000011,null,null,null],"status":["unbonded","unbonding","bonded","bonded"]}},{"ix":191,"action":{"kind":"Deliver","chain":"provider","numPackets":5},"partialState":{"h":25,"t":150,"tokens":[9990,4748,4772,10262],"delegation":[8990,3748,3772,9262],"delegatorTokens":9999999949735,"jailed":[1000000000000011,null,null,null],"status":["unbonded","unbonding","bonded","bonded"]}},{"ix":192,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":25,"t":150,"consumerPower":[null,8297,null,10262],"outstandingDowntime":[false,false,true,true]}},{"ix":193,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":26,"t":156,"tokens":[9990,4748,4772,10262],"delegation":[8990,3748,3772,9262],"delegatorTokens":9999999949735,"jailed":[1000000000000011,null,null,null],"status":["unbonded","unbonding","bonded","bonded"]}},{"ix":194,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":195,"action":{"kind":"Undelegate","val":3,"amt":2252},"partialState":{"h":26,"t":156,"tokens":[9990,4748,4772,8010],"delegation":[8990,3748,3772,7010],"delegatorTokens":9999999949735}},{"ix":196,"action":{"kind":"Deliver","chain":"provider","numPackets":5},"partialState":{"h":26,"t":156,"tokens":[9990,4748,4772,8010],"delegation":[8990,3748,3772,7010],"delegatorTokens":9999999949735,"jailed":[1000000000000011,null,null,null],"status":["unbonded","unbonding","bonded","bonded"]}},{"ix":197,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":198,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":199,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":27,"t":162,"tokens":[9990,4748,4772,8010],"delegation":[8990,3748,3772,7010],"delegatorTokens":9999999949735,"jailed":[1000000000000011,null,null,null],"status":["unbonded","unbonding","bonded","bonded"]}}],"events":["insufficient_shares","send_downtime_slash_request","send_double_sign_slash_request","send_downtime_slash_request","send_downtime_slash_request","send_vsc_without_downtime_ack","insufficient_shares","insufficient_shares","insufficient_shares","receive_double_sign_slash_request","receive_slash_request_unbonded","receive_slash_request_unbonded","receive_downtime_slash_request","jail","send_vsc_with_downtime_ack","send_vsc_without_downtime_ack","receive_downtime_slash_ack","send_vsc_without_downtime_ack","consumer_update_val","consumer_update_val","send_vsc_without_downtime_ack","more_than_one_third_val_power_change","rebond_unval","send_vsc_without_downtime_ack","consumer_del_val","consumer_add_val","consumer_update_val","consumer_update_val","consumer_del_val","more_than_one_third_val_power_change","rebond_unval","send_vsc_without_downtime_ack","insufficient_shares","insufficient_shares","more_than_one_third_val_power_change","rebond_unval","send_vsc_without_downtime_ack","send_vsc_without_downtime_ack","consumer_update_val","consumer_update_val","consumer_del_val","consumer_send_maturation","consumer_send_maturation","insufficient_shares","consumer_send_maturation","consumer_send_maturation","consumer_send_maturation","consumer_send_maturation","consumer_update_val","send_vsc_without_downtime_ack","some_undels_expired_but_not_completed","rebond_unval","send_vsc_without_downtime_ack","some_undels_expired_but_not_completed","insufficient_shares","consumer_update_val","consumer_update_val","insufficient_shares","consumer_send_maturation","consumer_send_maturation","more_than_one_third_val_power_change","rebond_unval","some_undels_expired_but_not_completed","complete_undel_immediate","send_vsc_without_downtime_ack","some_undels_expired_but_not_completed","set_unval_hold_false","complete_undel_immediate","complete_undel_immediate","complete_undel_immediate","complete_undel_immediate","more_than_one_third_val_power_change","rebond_unval","complete_unval_in_endblock","send_vsc_without_downtime_ack","some_undels_expired_but_not_completed","send_vsc_not_because_change","send_vsc_without_downtime_ack","some_undels_expired_but_not_completed","complete_undel_immediate","complete_undel_immediate","complete_undel_immediate","consumer_update_val","consumer_add_val","consumer_del_val","rebond_unval","complete_undel_immediate","complete_undel_immediate","complete_undel_immediate","complete_undel_immediate","complete_undel_immediate","complete_undel_immediate","complete_undel_immediate","complete_undel_immediate","complete_undel_immediate","complete_undel_immediate","complete_undel_immediate","complete_undel_immediate","send_vsc_without_downtime_ack","consumer_add_val","consumer_del_val","some_undels_expired_but_not_completed","send_vsc_without_downtime_ack"]},{"meta":{"commit":"7ffd0c04e4205cbc9caf212abfe6c59ee43153bf"},"constants":{"P":"provider","C":"consumer","UNBONDING_SECONDS_P":70,"UNBONDING_SECONDS_C":50,"TRUSTING_SECONDS":49,"NUM_VALIDATORS":4,"MAX_VALIDATORS":2,"SLASH_DOUBLESIGN":0,"SLASH_DOWNTIME":0,"JAIL_SECONDS":999999999999999,"BLOCK_SECONDS":6,"INITIAL_DELEGATOR_TOKENS":10000000000000,"DELEGATE_AMT_MIN":1000,"DELEGATE_AMT_MAX":5000,"UNDELEGATE_AMT_MIN":1000,"UNDELEGATE_AMT_MAX":5000,"ISDOWNTIME_PROBABILITY":0.5,"MAX_NUM_PACKETS_FOR_DELIVER":6},"actions":[{"ix":0,"action":{"kind":"ConsumerSlash","val":3,"infractionHeight":0,"isDowntime":true},"partialState":{"h":1,"t":6,"outstandingDowntime":[false,false,false,true]}},{"ix":1,"action":{"kind":"Deliver","chain":"provider","numPackets":6},"partialState":{"h":1,"t":6,"tokens":[5000,4000,3000,2000],"delegation":[4000,3000,2000,1000],"delegatorTokens":10000000000000,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":2,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":2,"t":12,"tokens":[5000,4000,3000,2000],"delegation":[4000,3000,2000,1000],"delegatorTokens":10000000000000,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":3,"action":{"kind":"Deliver","chain":"consumer","numPackets":6},"partialState":{"h":1,"t":6,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,false,false,true]}},{"ix":4,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":2,"t":12,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,false,false,true]}},{"ix":5,"action":{"kind":"Undelegate","val":0,"amt":4177},"partialState":{"h":2,"t":12,"tokens":[5000,4000,3000,2000],"delegation":[4000,3000,2000,1000],"delegatorTokens":10000000000000}},{"ix":6,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":3,"t":18,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,false,false,true]}},{"ix":7,"action":{"kind":"Delegate","val":1,"amt":4250},"partialState":{"h":2,"t":12,"tokens":[5000,8250,3000,2000],"delegation":[4000,7250,2000,1000],"delegatorTokens":9999999995750}},{"ix":8,"action":{"kind":"Deliver","chain":"consumer","numPackets":4},"partialState":{"h":3,"t":18,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,false,false,true]}},{"ix":9,"action":{"kind":"Deliver","chain":"provider","numPackets":4},"partialState":{"h":2,"t":12,"tokens":[5000,8250,3000,2000],"delegation":[4000,7250,2000,1000],"delegatorTokens":9999999995750,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":10,"action":{"kind":"ConsumerSlash","val":2,"infractionHeight":1,"isDowntime":true},"partialState":{"h":3,"t":18,"outstandingDowntime":[false,false,true,true]}},{"ix":11,"action":{"kind":"ConsumerSlash","val":1,"infractionHeight":2,"isDowntime":true},"partialState":{"h":3,"t":18,"outstandingDowntime":[false,true,true,true]}},{"ix":12,"action":{"kind":"Delegate","val":0,"amt":2961},"partialState":{"h":2,"t":12,"tokens":[7961,8250,3000,2000],"delegation":[6961,7250,2000,1000],"delegatorTokens":9999999992789}},{"ix":13,"action":{"kind":"Deliver","chain":"provider","numPackets":4},"partialState":{"h":2,"t":12,"tokens":[7961,8250,3000,2000],"delegation":[6961,7250,2000,1000],"delegatorTokens":9999999992789,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":14,"action":{"kind":"Deliver","chain":"provider","numPackets":5},"partialState":{"h":2,"t":12,"tokens":[7961,8250,3000,2000],"delegation":[6961,7250,2000,1000],"delegatorTokens":9999999992789,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":15,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":16,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":4,"t":24,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,true,true,true]}},{"ix":17,"action":{"kind":"Delegate","val":1,"amt":3199},"partialState":{"h":2,"t":12,"tokens":[7961,11449,3000,2000],"delegation":[6961,10449,2000,1000],"delegatorTokens":9999999989590}},{"ix":18,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":5,"t":30,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,true,true,true]}},{"ix":19,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":20,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":21,"action":{"kind":"Deliver","chain":"provider","numPackets":2},"partialState":{"h":2,"t":12,"tokens":[7961,11449,3000,2000],"delegation":[6961,10449,2000,1000],"delegatorTokens":9999999989590,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":22,"action":{"kind":"Undelegate","val":3,"amt":2912},"partialState":{"h":2,"t":12,"tokens":[7961,11449,3000,2000],"delegation":[6961,10449,2000,1000],"delegatorTokens":9999999989590}},{"ix":23,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":24,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":25,"action":{"kind":"Deliver","chain":"consumer","numPackets":5},"partialState":{"h":5,"t":30,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,true,true,true]}},{"ix":26,"action":{"kind":"Undelegate","val":1,"amt":2221},"partialState":{"h":2,"t":12,"tokens":[7961,9228,3000,2000],"delegation":[6961,8228,2000,1000],"delegatorTokens":9999999989590}},{"ix":27,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":3,"t":18,"tokens":[7961,9228,3000,2000],"delegation":[6961,8228,2000,1000],"delegatorTokens":9999999989590,"jailed":[null,1000000000000011,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":28,"action":{"kind":"Delegate","val":3,"amt":1015},"partialState":{"h":3,"t":18,"tokens":[7961,9228,3000,3015],"delegation":[6961,8228,2000,2015],"delegatorTokens":9999999988575}},{"ix":29,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":30,"action":{"kind":"Delegate","val":2,"amt":4502},"partialState":{"h":3,"t":18,"tokens":[7961,9228,7502,3015],"delegation":[6961,8228,6502,2015],"delegatorTokens":9999999984073}},{"ix":31,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":4,"t":24,"tokens":[7961,9228,7502,3015],"delegation":[6961,8228,6502,2015],"delegatorTokens":9999999984073,"jailed":[null,1000000000000011,null,null],"status":["bonded","unbonding","bonded","unbonded"]}},{"ix":32,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":6,"t":36,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,true,true,true]}},{"ix":33,"action":{"kind":"Delegate","val":1,"amt":1223},"partialState":{"h":4,"t":24,"tokens":[7961,10451,7502,3015],"delegation":[6961,9451,6502,2015],"delegatorTokens":9999999982850}},{"ix":34,"action":{"kind":"Delegate","val":1,"amt":3377},"partialState":{"h":4,"t":24,"tokens":[7961,13828,7502,3015],"delegation":[6961,12828,6502,2015],"delegatorTokens":9999999979473}},{"ix":35,"action":{"kind":"Undelegate","val":0,"amt":1021},"partialState":{"h":4,"t":24,"tokens":[6940,13828,7502,3015],"delegation":[5940,12828,6502,2015],"delegatorTokens":9999999979473}},{"ix":36,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":5,"t":30,"tokens":[6940,13828,7502,3015],"delegation":[5940,12828,6502,2015],"delegatorTokens":9999999979473,"jailed":[null,1000000000000011,null,null],"status":["bonded","unbonding","bonded","unbonded"]}},{"ix":37,"action":{"kind":"Deliver","chain":"provider","numPackets":6},"partialState":{"h":5,"t":30,"tokens":[6940,13828,7502,3015],"delegation":[5940,12828,6502,2015],"delegatorTokens":9999999979473,"jailed":[null,1000000000000011,null,null],"status":["bonded","unbonding","bonded","unbonded"]}},{"ix":38,"action":{"kind":"Undelegate","val":2,"amt":4318},"partialState":{"h":5,"t":30,"tokens":[6940,13828,3184,3015],"delegation":[5940,12828,2184,2015],"delegatorTokens":9999999979473}},{"ix":39,"action":{"kind":"Undelegate","val":1,"amt":3125},"partialState":{"h":5,"t":30,"tokens":[6940,10703,3184,3015],"delegation":[5940,9703,2184,2015],"delegatorTokens":9999999979473}},{"ix":40,"action":{"kind":"Delegate","val":3,"amt":2126},"partialState":{"h":5,"t":30,"tokens":[6940,10703,3184,5141],"delegation":[5940,9703,2184,4141],"delegatorTokens":9999999977347}},{"ix":41,"action":{"kind":"Deliver","chain":"consumer","numPackets":5},"partialState":{"h":6,"t":36,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,false,true,true]}},{"ix":42,"action":{"kind":"Delegate","val":0,"amt":2176},"partialState":{"h":5,"t":30,"tokens":[9116,10703,3184,5141],"delegation":[8116,9703,2184,4141],"delegatorTokens":9999999975171}},{"ix":43,"action":{"kind":"Deliver","chain":"provider","numPackets":6},"partialState":{"h":5,"t":30,"tokens":[9116,10703,3184,5141],"delegation":[8116,9703,2184,4141],"delegatorTokens":9999999975171,"jailed":[null,1000000000000011,null,null],"status":["bonded","unbonding","bonded","unbonded"]}},{"ix":44,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":45,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":46,"action":{"kind":"Delegate","val":2,"amt":3997},"partialState":{"h":5,"t":30,"tokens":[9116,10703,7181,5141],"delegation":[8116,9703,6181,4141],"delegatorTokens":9999999971174}},{"ix":47,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":7,"t":42,"consumerPower":[7961,null,7502,null],"outstandingDowntime":[false,false,true,true]}},{"ix":48,"action":{"kind":"Undelegate","val":0,"amt":4669},"partialState":{"h":5,"t":30,"tokens":[4447,10703,7181,5141],"delegation":[3447,9703,6181,4141],"delegatorTokens":9999999971174}},{"ix":49,"action":{"kind":"Delegate","val":1,"amt":4116},"partialState":{"h":5,"t":30,"tokens":[4447,14819,7181,5141],"delegation":[3447,13819,6181,4141],"delegatorTokens":9999999967058}},{"ix":50,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":8,"t":48,"consumerPower":[7961,null,7502,null],"outstandingDowntime":[false,false,true,true]}},{"ix":51,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":52,"action":{"kind":"Undelegate","val":0,"amt":1044},"partialState":{"h":5,"t":30,"tokens":[3403,14819,7181,5141],"delegation":[2403,13819,6181,4141],"delegatorTokens":9999999967058}},{"ix":53,"action":{"kind":"Undelegate","val":1,"amt":3286},"partialState":{"h":5,"t":30,"tokens":[3403,11533,7181,5141],"delegation":[2403,10533,6181,4141],"delegatorTokens":9999999967058}},{"ix":54,"action":{"kind":"Delegate","val":2,"amt":4335},"partialState":{"h":5,"t":30,"tokens":[3403,11533,11516,5141],"delegation":[2403,10533,10516,4141],"delegatorTokens":9999999962723}},{"ix":55,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":6,"t":36,"tokens":[3403,11533,11516,5141],"delegation":[2403,10533,10516,4141],"delegatorTokens":9999999962723,"jailed":[null,1000000000000011,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":56,"action":{"kind":"Delegate","val":0,"amt":1302},"partialState":{"h":6,"t":36,"tokens":[4705,11533,11516,5141],"delegation":[3705,10533,10516,4141],"delegatorTokens":9999999961421}},{"ix":57,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":58,"action":{"kind":"Delegate","val":0,"amt":4371},"partialState":{"h":6,"t":36,"tokens":[9076,11533,11516,5141],"delegation":[8076,10533,10516,4141],"delegatorTokens":9999999957050}},{"ix":59,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":7,"t":42,"tokens":[9076,11533,11516,5141],"delegation":[8076,10533,10516,4141],"delegatorTokens":9999999957050,"jailed":[null,1000000000000011,null,null],"status":["bonded","unbonding","bonded","unbonding"]}},{"ix":60,"action":{"kind":"Deliver","chain":"provider","numPackets":1},"partialState":{"h":7,"t":42,"tokens":[9076,11533,11516,5141],"delegation":[8076,10533,10516,4141],"delegatorTokens":9999999957050,"jailed":[null,1000000000000011,null,null],"status":["bonded","unbonding","bonded","unbonding"]}},{"ix":61,"action":{"kind":"Delegate","val":0,"amt":3155},"partialState":{"h":7,"t":42,"tokens":[12231,11533,11516,5141],"delegation":[11231,10533,10516,4141],"delegatorTokens":9999999953895}},{"ix":62,"action":{"kind":"Delegate","val":1,"amt":4942},"partialState":{"h":7,"t":42,"tokens":[12231,16475,11516,5141],"delegation":[11231,15475,10516,4141],"delegatorTokens":9999999948953}},{"ix":63,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":64,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":8,"t":48,"tokens":[12231,16475,11516,5141],"delegation":[11231,15475,10516,4141],"delegatorTokens":9999999948953,"jailed":[null,1000000000000011,null,null],"status":["bonded","unbonding","bonded","unbonding"]}},{"ix":65,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":9,"t":54,"consumerPower":[7961,null,7502,null],"outstandingDowntime":[false,false,true,true]}},{"ix":66,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":10,"t":60,"consumerPower":[7961,null,7502,null],"outstandingDowntime":[false,false,true,true]}},{"ix":67,"action":{"kind":"Deliver","chain":"consumer","numPackets":1},"partialState":{"h":10,"t":60,"consumerPower":[7961,null,7502,null],"outstandingDowntime":[false,false,true,true]}},{"ix":68,"action":{"kind":"Delegate","val":3,"amt":4826},"partialState":{"h":8,"t":48,"tokens":[12231,16475,11516,9967],"delegation":[11231,15475,10516,8967],"delegatorTokens":9999999944127}},{"ix":69,"action":{"kind":"Undelegate","val":1,"amt":2008},"partialState":{"h":8,"t":48,"tokens":[12231,14467,11516,9967],"delegation":[11231,13467,10516,8967],"delegatorTokens":9999999944127}},{"ix":70,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":9,"t":54,"tokens":[12231,14467,11516,9967],"delegation":[11231,13467,10516,8967],"delegatorTokens":9999999944127,"jailed":[null,1000000000000011,null,null],"status":["bonded","unbonding","bonded","unbonding"]}},{"ix":71,"action":{"kind":"Delegate","val":0,"amt":4429},"partialState":{"h":9,"t":54,"tokens":[16660,14467,11516,9967],"delegation":[15660,13467,10516,8967],"delegatorTokens":9999999939698}},{"ix":72,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":10,"t":60,"tokens":[16660,14467,11516,9967],"delegation":[15660,13467,10516,8967],"delegatorTokens":9999999939698,"jailed":[null,1000000000000011,null,null],"status":["bonded","unbonding","bonded","unbonding"]}},{"ix":73,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":11,"t":66,"tokens":[16660,14467,11516,9967],"delegation":[15660,13467,10516,8967],"delegatorTokens":9999999939698,"jailed":[null,1000000000000011,null,null],"status":["bonded","unbonding","bonded","unbonding"]}},{"ix":74,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":75,"action":{"kind":"Deliver","chain":"consumer","numPackets":2},"partialState":{"h":10,"t":60,"consumerPower":[7961,null,7502,null],"outstandingDowntime":[false,false,true,true]}},{"ix":76,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":12,"t":72,"tokens":[16660,14467,11516,9967],"delegation":[15660,13467,10516,8967],"delegatorTokens":9999999939698,"jailed":[null,1000000000000011,null,null],"status":["bonded","unbonding","bonded","unbonding"]}},{"ix":77,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":11,"t":66,"consumerPower":[9076,null,11516,null],"outstandingDowntime":[false,false,true,true]}},{"ix":78,"action":{"kind":"Delegate","val":0,"amt":4623},"partialState":{"h":12,"t":72,"tokens":[21283,14467,11516,9967],"delegation":[20283,13467,10516,8967],"delegatorTokens":9999999935075}},{"ix":79,"action":{"kind":"Deliver","chain":"consumer","numPackets":3},"partialState":{"h":11,"t":66,"consumerPower":[9076,null,11516,null],"outstandingDowntime":[false,false,true,true]}},{"ix":80,"action":{"kind":"Undelegate","val":1,"amt":2538},"partialState":{"h":12,"t":72,"tokens":[21283,11929,11516,9967],"delegation":[20283,10929,10516,8967],"delegatorTokens":9999999935075}},{"ix":81,"action":{"kind":"Delegate","val":0,"amt":2980},"partialState":{"h":12,"t":72,"tokens":[24263,11929,11516,9967],"delegation":[23263,10929,10516,8967],"delegatorTokens":9999999932095}},{"ix":82,"action":{"kind":"Deliver","chain":"consumer","numPackets":3},"partialState":{"h":11,"t":66,"consumerPower":[9076,null,11516,null],"outstandingDowntime":[false,false,true,true]}},{"ix":83,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":13,"t":78,"tokens":[24263,11929,11516,9967],"delegation":[23263,10929,10516,8967],"delegatorTokens":9999999932095,"jailed":[null,1000000000000011,null,null],"status":["bonded","unbonding","bonded","unbonding"]}},{"ix":84,"action":{"kind":"Deliver","chain":"provider","numPackets":6},"partialState":{"h":13,"t":78,"tokens":[24263,11929,11516,9967],"delegation":[23263,10929,10516,8967],"delegatorTokens":9999999932095,"jailed":[null,1000000000000011,null,null],"status":["bonded","unbonding","bonded","unbonding"]}},{"ix":85,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":12,"t":72,"consumerPower":[16660,null,11516,null],"outstandingDowntime":[false,false,true,true]}},{"ix":86,"action":{"kind":"Undelegate","val":0,"amt":2197},"partialState":{"h":13,"t":78,"tokens":[22066,11929,11516,9967],"delegation":[21066,10929,10516,8967],"delegatorTokens":9999999932095}},{"ix":87,"action":{"kind":"Deliver","chain":"provider","numPackets":5},"partialState":{"h":13,"t":78,"tokens":[22066,11929,11516,9967],"delegation":[21066,10929,10516,8967],"delegatorTokens":9999999932095,"jailed":[null,1000000000000011,null,null],"status":["bonded","unbonding","bonded","unbonding"]}},{"ix":88,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":13,"t":78,"consumerPower":[16660,null,11516,null],"outstandingDowntime":[false,false,true,true]}},{"ix":89,"action":{"kind":"Undelegate","val":1,"amt":1720},"partialState":{"h":13,"t":78,"tokens":[22066,10209,11516,9967],"delegation":[21066,9209,10516,8967],"delegatorTokens":9999999932095}},{"ix":90,"action":{"kind":"Deliver","chain":"provider","numPackets":5},"partialState":{"h":13,"t":78,"tokens":[22066,10209,11516,9967],"delegation":[21066,9209,10516,8967],"delegatorTokens":9999999932095,"jailed":[null,1000000000000011,null,null],"status":["bonded","unbonding","bonded","unbonding"]}},{"ix":91,"action":{"kind":"Undelegate","val":2,"amt":3864},"partialState":{"h":13,"t":78,"tokens":[22066,10209,7652,9967],"delegation":[21066,9209,6652,8967],"delegatorTokens":9999999932095}},{"ix":92,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":93,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":94,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":14,"t":84,"consumerPower":[16660,null,11516,null],"outstandingDowntime":[false,false,true,true]}},{"ix":95,"action":{"kind":"Deliver","chain":"consumer","numPackets":2},"partialState":{"h":14,"t":84,"consumerPower":[16660,null,11516,null],"outstandingDowntime":[false,false,true,true]}},{"ix":96,"action":{"kind":"Undelegate","val":1,"amt":3427},"partialState":{"h":13,"t":78,"tokens":[22066,6782,7652,9967],"delegation":[21066,5782,6652,8967],"delegatorTokens":9999999932095}},{"ix":97,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":15,"t":90,"consumerPower":[16660,null,11516,null],"outstandingDowntime":[false,false,true,true]}},{"ix":98,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":14,"t":84,"tokens":[22066,6782,7652,9967],"delegation":[21066,5782,6652,8967],"delegatorTokens":9999999932095,"jailed":[null,1000000000000011,null,null],"status":["bonded","unbonding","unbonding","bonded"]}},{"ix":99,"action":{"kind":"Undelegate","val":1,"amt":1060},"partialState":{"h":14,"t":84,"tokens":[22066,5722,7652,9967],"delegation":[21066,4722,6652,8967],"delegatorTokens":9999999932095}},{"ix":100,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":16,"t":96,"consumerPower":[16660,null,11516,null],"outstandingDowntime":[false,false,true,true]}},{"ix":101,"action":{"kind":"Deliver","chain":"consumer","numPackets":1},"partialState":{"h":16,"t":96,"consumerPower":[16660,null,11516,null],"outstandingDowntime":[false,false,true,true]}},{"ix":102,"action":{"kind":"Deliver","chain":"provider","numPackets":5},"partialState":{"h":14,"t":84,"tokens":[22066,5722,7652,9967],"delegation":[21066,4722,6652,8967],"delegatorTokens":9999999932095,"jailed":[null,1000000000000011,null,null],"status":["bonded","unbonding","unbonding","bonded"]}},{"ix":103,"action":{"kind":"Deliver","chain":"provider","numPackets":5},"partialState":{"h":14,"t":84,"tokens":[22066,5722,7652,9967],"delegation":[21066,4722,6652,8967],"delegatorTokens":9999999932095,"jailed":[null,1000000000000011,null,null],"status":["bonded","unbonding","unbonding","bonded"]}},{"ix":104,"action":{"kind":"Undelegate","val":3,"amt":4571},"partialState":{"h":14,"t":84,"tokens":[22066,5722,7652,5396],"delegation":[21066,4722,6652,4396],"delegatorTokens":9999999932095}},{"ix":105,"action":{"kind":"Delegate","val":3,"amt":3972},"partialState":{"h":14,"t":84,"tokens":[22066,5722,7652,9368],"delegation":[21066,4722,6652,8368],"delegatorTokens":9999999928123}},{"ix":106,"action":{"kind":"Delegate","val":2,"amt":1121},"partialState":{"h":14,"t":84,"tokens":[22066,5722,8773,9368],"delegation":[21066,4722,7773,8368],"delegatorTokens":9999999927002}},{"ix":107,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":108,"action":{"kind":"Undelegate","val":3,"amt":4936},"partialState":{"h":14,"t":84,"tokens":[22066,5722,8773,4432],"delegation":[21066,4722,7773,3432],"delegatorTokens":9999999927002}},{"ix":109,"action":{"kind":"Undelegate","val":2,"amt":3829},"partialState":{"h":14,"t":84,"tokens":[22066,5722,4944,4432],"delegation":[21066,4722,3944,3432],"delegatorTokens":9999999927002}},{"ix":110,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":111,"action":{"kind":"Undelegate","val":0,"amt":2584},"partialState":{"h":14,"t":84,"tokens":[19482,5722,4944,4432],"delegation":[18482,4722,3944,3432],"delegatorTokens":9999999927002}},{"ix":112,"action":{"kind":"Delegate","val":3,"amt":2860},"partialState":{"h":14,"t":84,"tokens":[19482,5722,4944,7292],"delegation":[18482,4722,3944,6292],"delegatorTokens":9999999924142}},{"ix":113,"action":{"kind":"Undelegate","val":3,"amt":1617},"partialState":{"h":14,"t":84,"tokens":[19482,5722,4944,5675],"delegation":[18482,4722,3944,4675],"delegatorTokens":9999999924142}},{"ix":114,"action":{"kind":"Deliver","chain":"consumer","numPackets":3},"partialState":{"h":16,"t":96,"consumerPower":[16660,null,11516,null],"outstandingDowntime":[false,false,true,true]}},{"ix":115,"action":{"kind":"Delegate","val":3,"amt":3566},"partialState":{"h":14,"t":84,"tokens":[19482,5722,4944,9241],"delegation":[18482,4722,3944,8241],"delegatorTokens":9999999920576}},{"ix":116,"action":{"kind":"Undelegate","val":0,"amt":3621},"partialState":{"h":14,"t":84,"tokens":[15861,5722,4944,9241],"delegation":[14861,4722,3944,8241],"delegatorTokens":9999999920576}},{"ix":117,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":17,"t":102,"consumerPower":[24263,null,11516,null],"outstandingDowntime":[false,false,true,true]}},{"ix":118,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":119,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":120,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":121,"action":{"kind":"Undelegate","val":3,"amt":1415},"partialState":{"h":14,"t":84,"tokens":[15861,5722,4944,7826],"delegation":[14861,4722,3944,6826],"delegatorTokens":9999999920576}},{"ix":122,"action":{"kind":"Undelegate","val":0,"amt":4804},"partialState":{"h":14,"t":84,"tokens":[11057,5722,4944,7826],"delegation":[10057,4722,3944,6826],"delegatorTokens":9999999920576}},{"ix":123,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":124,"action":{"kind":"Undelegate","val":3,"amt":3297},"partialState":{"h":14,"t":84,"tokens":[11057,5722,4944,4529],"delegation":[10057,4722,3944,3529],"delegatorTokens":9999999920576}},{"ix":125,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":18,"t":108,"consumerPower":[24263,null,11516,null],"outstandingDowntime":[false,false,true,true]}},{"ix":126,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":19,"t":114,"consumerPower":[24263,null,11516,null],"outstandingDowntime":[false,false,true,true]}},{"ix":127,"action":{"kind":"Undelegate","val":0,"amt":1749},"partialState":{"h":14,"t":84,"tokens":[9308,5722,4944,4529],"delegation":[8308,4722,3944,3529],"delegatorTokens":9999999920576}},{"ix":128,"action":{"kind":"Delegate","val":3,"amt":1038},"partialState":{"h":14,"t":84,"tokens":[9308,5722,4944,5567],"delegation":[8308,4722,3944,4567],"delegatorTokens":9999999919538}},{"ix":129,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":20,"t":120,"consumerPower":[24263,null,11516,null],"outstandingDowntime":[false,false,true,true]}},{"ix":130,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":131,"action":{"kind":"Deliver","chain":"consumer","numPackets":1},"partialState":{"h":20,"t":120,"consumerPower":[24263,null,11516,null],"outstandingDowntime":[false,false,true,true]}},{"ix":132,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":133,"action":{"kind":"Delegate","val":1,"amt":3805},"partialState":{"h":14,"t":84,"tokens":[9308,9527,4944,5567],"delegation":[8308,8527,3944,4567],"delegatorTokens":9999999915733}},{"ix":134,"action":{"kind":"Undelegate","val":0,"amt":1847},"partialState":{"h":14,"t":84,"tokens":[7461,9527,4944,5567],"delegation":[6461,8527,3944,4567],"delegatorTokens":9999999915733}},{"ix":135,"action":{"kind":"Deliver","chain":"consumer","numPackets":1},"partialState":{"h":20,"t":120,"consumerPower":[24263,null,11516,null],"outstandingDowntime":[false,false,true,true]}},{"ix":136,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":15,"t":90,"tokens":[7461,9527,4944,5567],"delegation":[6461,8527,3944,4567],"delegatorTokens":9999999915733,"jailed":[null,1000000000000011,null,null],"status":["bonded","unbonding","unbonding","bonded"]}},{"ix":137,"action":{"kind":"Deliver","chain":"consumer","numPackets":3},"partialState":{"h":20,"t":120,"consumerPower":[24263,null,11516,null],"outstandingDowntime":[false,false,true,true]}},{"ix":138,"action":{"kind":"Undelegate","val":1,"amt":4441},"partialState":{"h":15,"t":90,"tokens":[7461,5086,4944,5567],"delegation":[6461,4086,3944,4567],"delegatorTokens":9999999915733}},{"ix":139,"action":{"kind":"Deliver","chain":"provider","numPackets":4},"partialState":{"h":15,"t":90,"tokens":[7461,5086,4944,5567],"delegation":[6461,4086,3944,4567],"delegatorTokens":9999999915733,"jailed":[null,1000000000000011,null,null],"status":["bonded","unbonding","unbonding","bonded"]}},{"ix":140,"action":{"kind":"Delegate","val":0,"amt":1901},"partialState":{"h":15,"t":90,"tokens":[9362,5086,4944,5567],"delegation":[8362,4086,3944,4567],"delegatorTokens":9999999913832}},{"ix":141,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":142,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":143,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":144,"action":{"kind":"Deliver","chain":"consumer","numPackets":5},"partialState":{"h":20,"t":120,"consumerPower":[24263,null,11516,null],"outstandingDowntime":[false,false,true,true]}},{"ix":145,"action":{"kind":"Delegate","val":2,"amt":2521},"partialState":{"h":15,"t":90,"tokens":[9362,5086,7465,5567],"delegation":[8362,4086,6465,4567],"delegatorTokens":9999999911311}},{"ix":146,"action":{"kind":"Deliver","chain":"consumer","numPackets":1},"partialState":{"h":20,"t":120,"consumerPower":[24263,null,11516,null],"outstandingDowntime":[false,false,true,true]}},{"ix":147,"action":{"kind":"Undelegate","val":1,"amt":3130},"partialState":{"h":15,"t":90,"tokens":[9362,1956,7465,5567],"delegation":[8362,956,6465,4567],"delegatorTokens":9999999911311}},{"ix":148,"action":{"kind":"Undelegate","val":2,"amt":3686},"partialState":{"h":15,"t":90,"tokens":[9362,1956,3779,5567],"delegation":[8362,956,2779,4567],"delegatorTokens":9999999911311}},{"ix":149,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":150,"action":{"kind":"Delegate","val":2,"amt":2096},"partialState":{"h":15,"t":90,"tokens":[9362,1956,5875,5567],"delegation":[8362,956,4875,4567],"delegatorTokens":9999999909215}},{"ix":151,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":152,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":153,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":21,"t":126,"consumerPower":[22066,null,null,9967],"outstandingDowntime":[false,false,true,true]}},{"ix":154,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":16,"t":96,"tokens":[9362,1956,5875,5567],"delegation":[8362,956,4875,4567],"delegatorTokens":9999999911436,"jailed":[null,1000000000000011,null,null],"status":["bonded","unbonding","bonded","unbonding"]}},{"ix":155,"action":{"kind":"Delegate","val":0,"amt":1945},"partialState":{"h":16,"t":96,"tokens":[11307,1956,5875,5567],"delegation":[10307,956,4875,4567],"delegatorTokens":9999999909491}},{"ix":156,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":17,"t":102,"tokens":[11307,1956,5875,5567],"delegation":[10307,956,4875,4567],"delegatorTokens":9999999909491,"jailed":[null,1000000000000011,null,null],"status":["bonded","unbonded","bonded","unbonding"]}},{"ix":157,"action":{"kind":"Undelegate","val":1,"amt":3160},"partialState":{"h":17,"t":102,"tokens":[11307,1956,5875,5567],"delegation":[10307,956,4875,4567],"delegatorTokens":9999999909491}},{"ix":158,"action":{"kind":"Undelegate","val":2,"amt":1069},"partialState":{"h":17,"t":102,"tokens":[11307,1956,4806,5567],"delegation":[10307,956,3806,4567],"delegatorTokens":9999999909491}},{"ix":159,"action":{"kind":"Undelegate","val":1,"amt":2339},"partialState":{"h":17,"t":102,"tokens":[11307,1956,4806,5567],"delegation":[10307,956,3806,4567],"delegatorTokens":9999999909491}},{"ix":160,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":161,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":162,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":22,"t":132,"consumerPower":[22066,null,null,9967],"outstandingDowntime":[false,false,true,true]}},{"ix":163,"action":{"kind":"Delegate","val":3,"amt":2525},"partialState":{"h":17,"t":102,"tokens":[11307,1956,4806,8092],"delegation":[10307,956,3806,7092],"delegatorTokens":9999999906966}},{"ix":164,"action":{"kind":"Undelegate","val":0,"amt":3838},"partialState":{"h":17,"t":102,"tokens":[7469,1956,4806,8092],"delegation":[6469,956,3806,7092],"delegatorTokens":9999999906966}},{"ix":165,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":166,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":18,"t":108,"tokens":[7469,1956,4806,8092],"delegation":[6469,956,3806,7092],"delegatorTokens":9999999906966,"jailed":[null,1000000000000011,null,null],"status":["bonded","unbonded","unbonding","bonded"]}},{"ix":167,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":168,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":19,"t":114,"tokens":[7469,1956,4806,8092],"delegation":[6469,956,3806,7092],"delegatorTokens":9999999906966,"jailed":[null,1000000000000011,null,null],"status":["bonded","unbonded","unbonding","bonded"]}},{"ix":169,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":170,"action":{"kind":"Undelegate","val":1,"amt":3949},"partialState":{"h":19,"t":114,"tokens":[7469,1956,4806,8092],"delegation":[6469,956,3806,7092],"delegatorTokens":9999999906966}},{"ix":171,"action":{"kind":"Undelegate","val":3,"amt":4163},"partialState":{"h":19,"t":114,"tokens":[7469,1956,4806,3929],"delegation":[6469,956,3806,2929],"delegatorTokens":9999999906966}},{"ix":172,"action":{"kind":"Undelegate","val":3,"amt":4644},"partialState":{"h":19,"t":114,"tokens":[7469,1956,4806,3929],"delegation":[6469,956,3806,2929],"delegatorTokens":9999999906966}},{"ix":173,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":174,"action":{"kind":"Deliver","chain":"provider","numPackets":1},"partialState":{"h":19,"t":114,"tokens":[7469,1956,4806,3929],"delegation":[6469,956,3806,2929],"delegatorTokens":9999999906966,"jailed":[null,1000000000000011,null,null],"status":["bonded","unbonded","unbonding","bonded"]}},{"ix":175,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":176,"action":{"kind":"Deliver","chain":"consumer","numPackets":2},"partialState":{"h":22,"t":132,"consumerPower":[22066,null,null,9967],"outstandingDowntime":[false,false,true,true]}},{"ix":177,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":23,"t":138,"consumerPower":[9362,null,5875,null],"outstandingDowntime":[false,false,true,true]}},{"ix":178,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":24,"t":144,"consumerPower":[9362,null,5875,null],"outstandingDowntime":[false,false,true,true]}},{"ix":179,"action":{"kind":"Delegate","val":1,"amt":4312},"partialState":{"h":19,"t":114,"tokens":[7469,6268,4806,3929],"delegation":[6469,5268,3806,2929],"delegatorTokens":9999999902654}},{"ix":180,"action":{"kind":"Delegate","val":0,"amt":1676},"partialState":{"h":19,"t":114,"tokens":[9145,6268,4806,3929],"delegation":[8145,5268,3806,2929],"delegatorTokens":9999999900978}},{"ix":181,"action":{"kind":"Undelegate","val":2,"amt":3865},"partialState":{"h":19,"t":114,"tokens":[9145,6268,4806,3929],"delegation":[8145,5268,3806,2929],"delegatorTokens":9999999900978}},{"ix":182,"action":{"kind":"Delegate","val":3,"amt":2291},"partialState":{"h":19,"t":114,"tokens":[9145,6268,4806,6220],"delegation":[8145,5268,3806,5220],"delegatorTokens":9999999898687}},{"ix":183,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":184,"action":{"kind":"Undelegate","val":0,"amt":4984},"partialState":{"h":19,"t":114,"tokens":[4161,6268,4806,6220],"delegation":[3161,5268,3806,5220],"delegatorTokens":9999999898687}},{"ix":185,"action":{"kind":"Undelegate","val":2,"amt":3357},"partialState":{"h":19,"t":114,"tokens":[4161,6268,1449,6220],"delegation":[3161,5268,449,5220],"delegatorTokens":9999999898687}},{"ix":186,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":25,"t":150,"consumerPower":[9362,null,5875,null],"outstandingDowntime":[false,false,true,true]}},{"ix":187,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":188,"action":{"kind":"Deliver","chain":"provider","numPackets":4},"partialState":{"h":19,"t":114,"tokens":[4161,6268,1449,6220],"delegation":[3161,5268,449,5220],"delegatorTokens":9999999898687,"jailed":[null,1000000000000011,null,null],"status":["bonded","unbonded","unbonding","bonded"]}},{"ix":189,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":26,"t":156,"consumerPower":[9362,null,5875,null],"outstandingDowntime":[false,false,true,true]}},{"ix":190,"action":{"kind":"Undelegate","val":2,"amt":1048},"partialState":{"h":19,"t":114,"tokens":[4161,6268,1449,6220],"delegation":[3161,5268,449,5220],"delegatorTokens":9999999898687}},{"ix":191,"action":{"kind":"Delegate","val":2,"amt":4137},"partialState":{"h":19,"t":114,"tokens":[4161,6268,5586,6220],"delegation":[3161,5268,4586,5220],"delegatorTokens":9999999894550}},{"ix":192,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":193,"action":{"kind":"Deliver","chain":"provider","numPackets":5},"partialState":{"h":19,"t":114,"tokens":[4161,6268,5586,6220],"delegation":[3161,5268,4586,5220],"delegatorTokens":9999999894550,"jailed":[null,1000000000000011,null,null],"status":["bonded","unbonded","unbonding","bonded"]}},{"ix":194,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":195,"action":{"kind":"Delegate","val":0,"amt":1015},"partialState":{"h":19,"t":114,"tokens":[5176,6268,5586,6220],"delegation":[4176,5268,4586,5220],"delegatorTokens":9999999893535}},{"ix":196,"action":{"kind":"Undelegate","val":1,"amt":2207},"partialState":{"h":19,"t":114,"tokens":[5176,4061,5586,6220],"delegation":[4176,3061,4586,5220],"delegatorTokens":9999999893535}},{"ix":197,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":20,"t":120,"tokens":[5176,4061,5586,6220],"delegation":[4176,3061,4586,5220],"delegatorTokens":9999999910998,"jailed":[null,1000000000000011,null,null],"status":["unbonding","unbonded","bonded","bonded"]}},{"ix":198,"action":{"kind":"Deliver","chain":"consumer","numPackets":4},"partialState":{"h":26,"t":156,"consumerPower":[9362,null,5875,null],"outstandingDowntime":[false,false,true,true]}},{"ix":199,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":27,"t":162,"consumerPower":[7469,null,null,8092],"outstandingDowntime":[false,false,true,true]}}],"events":["send_downtime_slash_request","insufficient_shares","send_downtime_slash_request","send_downtime_slash_request","insufficient_shares","receive_slash_request_unbonded","receive_slash_request_unbonded","receive_downtime_slash_request","jail","send_vsc_with_downtime_ack","more_than_one_third_val_power_change","send_vsc_without_downtime_ack","send_vsc_without_downtime_ack","receive_downtime_slash_ack","consumer_update_val","consumer_del_val","consumer_add_val","send_vsc_without_downtime_ack","more_than_one_third_val_power_change","rebond_unval","send_vsc_without_downtime_ack","send_vsc_without_downtime_ack","send_vsc_not_because_change","send_vsc_without_downtime_ack","send_vsc_without_downtime_ack","consumer_update_val","consumer_update_val","consumer_del_val","send_vsc_without_downtime_ack","consumer_update_val","rebond_unval","send_vsc_without_downtime_ack","consumer_send_maturation","consumer_send_maturation","consumer_update_val","consumer_send_maturation","consumer_send_maturation","consumer_send_maturation","some_undels_expired_but_not_completed","send_vsc_without_downtime_ack","consumer_send_maturation","consumer_send_maturation","consumer_send_maturation","consumer_update_val","consumer_del_val","consumer_add_val","more_than_one_third_val_power_change","rebond_unval","complete_undel_immediate","set_unval_hold_false","send_vsc_without_downtime_ack","complete_unval_in_endblock","some_undels_expired_but_not_completed","send_vsc_without_downtime_ack","insufficient_shares","insufficient_shares","more_than_one_third_val_power_change","rebond_unval","some_undels_expired_but_not_completed","send_vsc_without_downtime_ack","insufficient_shares","insufficient_shares","consumer_update_val","consumer_del_val","consumer_add_val","insufficient_shares","consumer_send_maturation","insufficient_shares","more_than_one_third_val_power_change","rebond_unval","complete_undel_immediate","complete_undel_immediate","complete_undel_immediate","complete_undel_immediate","complete_undel_immediate","complete_undel_immediate","set_undel_hold_false","send_vsc_without_downtime_ack","consumer_update_val","consumer_del_val","consumer_add_val"]},{"meta":{"commit":"7ffd0c04e4205cbc9caf212abfe6c59ee43153bf"},"constants":{"P":"provider","C":"consumer","UNBONDING_SECONDS_P":70,"UNBONDING_SECONDS_C":50,"TRUSTING_SECONDS":49,"NUM_VALIDATORS":4,"MAX_VALIDATORS":2,"SLASH_DOUBLESIGN":0,"SLASH_DOWNTIME":0,"JAIL_SECONDS":999999999999999,"BLOCK_SECONDS":6,"INITIAL_DELEGATOR_TOKENS":10000000000000,"DELEGATE_AMT_MIN":1000,"DELEGATE_AMT_MAX":5000,"UNDELEGATE_AMT_MIN":1000,"UNDELEGATE_AMT_MAX":5000,"ISDOWNTIME_PROBABILITY":0.5,"MAX_NUM_PACKETS_FOR_DELIVER":6},"actions":[{"ix":0,"action":{"kind":"ConsumerSlash","val":3,"infractionHeight":0,"isDowntime":true},"partialState":{"h":1,"t":6,"outstandingDowntime":[false,false,false,true]}},{"ix":1,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":2,"action":{"kind":"ConsumerSlash","val":0,"infractionHeight":0,"isDowntime":true},"partialState":{"h":1,"t":6,"outstandingDowntime":[true,false,false,true]}},{"ix":3,"action":{"kind":"Undelegate","val":1,"amt":3373},"partialState":{"h":1,"t":6,"tokens":[5000,4000,3000,2000],"delegation":[4000,3000,2000,1000],"delegatorTokens":10000000000000}},{"ix":4,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":2,"t":12,"tokens":[5000,4000,3000,2000],"delegation":[4000,3000,2000,1000],"delegatorTokens":10000000000000,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":5,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":3,"t":18,"tokens":[5000,4000,3000,2000],"delegation":[4000,3000,2000,1000],"delegatorTokens":10000000000000,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":6,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":7,"action":{"kind":"ConsumerSlash","val":2,"infractionHeight":0,"isDowntime":true},"partialState":{"h":1,"t":6,"outstandingDowntime":[true,false,true,true]}},{"ix":8,"action":{"kind":"Undelegate","val":1,"amt":4061},"partialState":{"h":3,"t":18,"tokens":[5000,4000,3000,2000],"delegation":[4000,3000,2000,1000],"delegatorTokens":10000000000000}},{"ix":9,"action":{"kind":"Delegate","val":0,"amt":4310},"partialState":{"h":3,"t":18,"tokens":[9310,4000,3000,2000],"delegation":[8310,3000,2000,1000],"delegatorTokens":9999999995690}},{"ix":10,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":11,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":12,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":2,"t":12,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[true,false,true,true]}},{"ix":13,"action":{"kind":"Delegate","val":3,"amt":3200},"partialState":{"h":3,"t":18,"tokens":[9310,4000,3000,5200],"delegation":[8310,3000,2000,4200],"delegatorTokens":9999999992490}},{"ix":14,"action":{"kind":"Undelegate","val":3,"amt":1405},"partialState":{"h":3,"t":18,"tokens":[9310,4000,3000,3795],"delegation":[8310,3000,2000,2795],"delegatorTokens":9999999992490}},{"ix":15,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":3,"t":18,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[true,false,true,true]}},{"ix":16,"action":{"kind":"Delegate","val":1,"amt":4515},"partialState":{"h":3,"t":18,"tokens":[9310,8515,3000,3795],"delegation":[8310,7515,2000,2795],"delegatorTokens":9999999987975}},{"ix":17,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":18,"action":{"kind":"Deliver","chain":"provider","numPackets":5},"partialState":{"h":3,"t":18,"tokens":[9310,8515,3000,3795],"delegation":[8310,7515,2000,2795],"delegatorTokens":9999999987975,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":19,"action":{"kind":"Undelegate","val":3,"amt":3819},"partialState":{"h":3,"t":18,"tokens":[9310,8515,3000,3795],"delegation":[8310,7515,2000,2795],"delegatorTokens":9999999987975}},{"ix":20,"action":{"kind":"Delegate","val":1,"amt":2107},"partialState":{"h":3,"t":18,"tokens":[9310,10622,3000,3795],"delegation":[8310,9622,2000,2795],"delegatorTokens":9999999985868}},{"ix":21,"action":{"kind":"Undelegate","val":2,"amt":3875},"partialState":{"h":3,"t":18,"tokens":[9310,10622,3000,3795],"delegation":[8310,9622,2000,2795],"delegatorTokens":9999999985868}},{"ix":22,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":23,"action":{"kind":"Deliver","chain":"provider","numPackets":2},"partialState":{"h":3,"t":18,"tokens":[9310,10622,3000,3795],"delegation":[8310,9622,2000,2795],"delegatorTokens":9999999985868,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":24,"action":{"kind":"Undelegate","val":1,"amt":2639},"partialState":{"h":3,"t":18,"tokens":[9310,7983,3000,3795],"delegation":[8310,6983,2000,2795],"delegatorTokens":9999999985868}},{"ix":25,"action":{"kind":"Deliver","chain":"consumer","numPackets":6},"partialState":{"h":3,"t":18,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[true,false,true,true]}},{"ix":26,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":27,"action":{"kind":"Delegate","val":3,"amt":2043},"partialState":{"h":3,"t":18,"tokens":[9310,7983,3000,5838],"delegation":[8310,6983,2000,4838],"delegatorTokens":9999999983825}},{"ix":28,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":4,"t":24,"tokens":[9310,7983,3000,5838],"delegation":[8310,6983,2000,4838],"delegatorTokens":9999999983825,"jailed":[1000000000000017,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":29,"action":{"kind":"Undelegate","val":2,"amt":4173},"partialState":{"h":4,"t":24,"tokens":[9310,7983,3000,5838],"delegation":[8310,6983,2000,4838],"delegatorTokens":9999999983825}},{"ix":30,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":5,"t":30,"tokens":[9310,7983,3000,5838],"delegation":[8310,6983,2000,4838],"delegatorTokens":9999999983825,"jailed":[1000000000000017,null,null,null],"status":["unbonding","bonded","unbonded","bonded"]}},{"ix":31,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":4,"t":24,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[true,false,true,true]}},{"ix":32,"action":{"kind":"Undelegate","val":2,"amt":4103},"partialState":{"h":5,"t":30,"tokens":[9310,7983,3000,5838],"delegation":[8310,6983,2000,4838],"delegatorTokens":9999999983825}},{"ix":33,"action":{"kind":"Undelegate","val":2,"amt":1475},"partialState":{"h":5,"t":30,"tokens":[9310,7983,1525,5838],"delegation":[8310,6983,525,4838],"delegatorTokens":9999999983825}},{"ix":34,"action":{"kind":"Deliver","chain":"consumer","numPackets":2},"partialState":{"h":4,"t":24,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,false,true,true]}},{"ix":35,"action":{"kind":"Delegate","val":0,"amt":3616},"partialState":{"h":5,"t":30,"tokens":[12926,7983,1525,5838],"delegation":[11926,6983,525,4838],"delegatorTokens":9999999980209}},{"ix":36,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":6,"t":36,"tokens":[12926,7983,1525,5838],"delegation":[11926,6983,525,4838],"delegatorTokens":9999999980209,"jailed":[1000000000000017,null,null,null],"status":["unbonding","bonded","unbonded","bonded"]}},{"ix":37,"action":{"kind":"Undelegate","val":1,"amt":2348},"partialState":{"h":6,"t":36,"tokens":[12926,5635,1525,5838],"delegation":[11926,4635,525,4838],"delegatorTokens":9999999980209}},{"ix":38,"action":{"kind":"Deliver","chain":"consumer","numPackets":1},"partialState":{"h":4,"t":24,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,false,true,true]}},{"ix":39,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":40,"action":{"kind":"Undelegate","val":1,"amt":1859},"partialState":{"h":6,"t":36,"tokens":[12926,3776,1525,5838],"delegation":[11926,2776,525,4838],"delegatorTokens":9999999980209}},{"ix":41,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":7,"t":42,"tokens":[12926,3776,1525,5838],"delegation":[11926,2776,525,4838],"delegatorTokens":9999999980209,"jailed":[1000000000000017,null,null,null],"status":["unbonding","bonded","unbonded","bonded"]}},{"ix":42,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":8,"t":48,"tokens":[12926,3776,1525,5838],"delegation":[11926,2776,525,4838],"delegatorTokens":9999999980209,"jailed":[1000000000000017,null,null,null],"status":["unbonding","bonded","unbonded","bonded"]}},{"ix":43,"action":{"kind":"Delegate","val":2,"amt":4382},"partialState":{"h":8,"t":48,"tokens":[12926,3776,5907,5838],"delegation":[11926,2776,4907,4838],"delegatorTokens":9999999975827}},{"ix":44,"action":{"kind":"Deliver","chain":"provider","numPackets":4},"partialState":{"h":8,"t":48,"tokens":[12926,3776,5907,5838],"delegation":[11926,2776,4907,4838],"delegatorTokens":9999999975827,"jailed":[1000000000000017,null,null,null],"status":["unbonding","bonded","unbonded","bonded"]}},{"ix":45,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":46,"action":{"kind":"Undelegate","val":3,"amt":2053},"partialState":{"h":8,"t":48,"tokens":[12926,3776,5907,3785],"delegation":[11926,2776,4907,2785],"delegatorTokens":9999999975827}},{"ix":47,"action":{"kind":"Delegate","val":2,"amt":2121},"partialState":{"h":8,"t":48,"tokens":[12926,3776,8028,3785],"delegation":[11926,2776,7028,2785],"delegatorTokens":9999999973706}},{"ix":48,"action":{"kind":"Deliver","chain":"provider","numPackets":3},"partialState":{"h":8,"t":48,"tokens":[12926,3776,8028,3785],"delegation":[11926,2776,7028,2785],"delegatorTokens":9999999973706,"jailed":[1000000000000017,null,null,null],"status":["unbonding","bonded","unbonded","bonded"]}},{"ix":49,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":50,"action":{"kind":"Undelegate","val":1,"amt":3214},"partialState":{"h":8,"t":48,"tokens":[12926,3776,8028,3785],"delegation":[11926,2776,7028,2785],"delegatorTokens":9999999973706}},{"ix":51,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":52,"action":{"kind":"Deliver","chain":"consumer","numPackets":1},"partialState":{"h":4,"t":24,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,false,true,true]}},{"ix":53,"action":{"kind":"Deliver","chain":"provider","numPackets":2},"partialState":{"h":8,"t":48,"tokens":[12926,3776,8028,3785],"delegation":[11926,2776,7028,2785],"delegatorTokens":9999999973706,"jailed":[1000000000000017,null,null,null],"status":["unbonding","bonded","unbonded","bonded"]}},{"ix":54,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":5,"t":30,"consumerPower":[null,7983,null,5838],"outstandingDowntime":[false,false,true,true]}},{"ix":55,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":56,"action":{"kind":"Undelegate","val":2,"amt":3239},"partialState":{"h":8,"t":48,"tokens":[12926,3776,4789,3785],"delegation":[11926,2776,3789,2785],"delegatorTokens":9999999973706}},{"ix":57,"action":{"kind":"Undelegate","val":2,"amt":4022},"partialState":{"h":8,"t":48,"tokens":[12926,3776,4789,3785],"delegation":[11926,2776,3789,2785],"delegatorTokens":9999999973706}},{"ix":58,"action":{"kind":"Deliver","chain":"consumer","numPackets":3},"partialState":{"h":5,"t":30,"consumerPower":[null,7983,null,5838],"outstandingDowntime":[false,false,true,true]}},{"ix":59,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":60,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":61,"action":{"kind":"Delegate","val":1,"amt":1894},"partialState":{"h":8,"t":48,"tokens":[12926,5670,4789,3785],"delegation":[11926,4670,3789,2785],"delegatorTokens":9999999971812}},{"ix":62,"action":{"kind":"Delegate","val":1,"amt":1687},"partialState":{"h":8,"t":48,"tokens":[12926,7357,4789,3785],"delegation":[11926,6357,3789,2785],"delegatorTokens":9999999970125}},{"ix":63,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":6,"t":36,"consumerPower":[null,3776,null,5838],"outstandingDowntime":[false,false,true,true]}},{"ix":64,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":9,"t":54,"tokens":[12926,7357,4789,3785],"delegation":[11926,6357,3789,2785],"delegatorTokens":9999999970125,"jailed":[1000000000000017,null,null,null],"status":["unbonding","bonded","bonded","unbonding"]}},{"ix":65,"action":{"kind":"Undelegate","val":1,"amt":3391},"partialState":{"h":9,"t":54,"tokens":[12926,3966,4789,3785],"delegation":[11926,2966,3789,2785],"delegatorTokens":9999999970125}},{"ix":66,"action":{"kind":"Delegate","val":2,"amt":2394},"partialState":{"h":9,"t":54,"tokens":[12926,3966,7183,3785],"delegation":[11926,2966,6183,2785],"delegatorTokens":9999999967731}},{"ix":67,"action":{"kind":"Deliver","chain":"provider","numPackets":3},"partialState":{"h":9,"t":54,"tokens":[12926,3966,7183,3785],"delegation":[11926,2966,6183,2785],"delegatorTokens":9999999967731,"jailed":[1000000000000017,null,null,null],"status":["unbonding","bonded","bonded","unbonding"]}},{"ix":68,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":69,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":10,"t":60,"tokens":[12926,3966,7183,3785],"delegation":[11926,2966,6183,2785],"delegatorTokens":9999999967731,"jailed":[1000000000000017,null,null,null],"status":["unbonding","bonded","bonded","unbonding"]}},{"ix":70,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":11,"t":66,"tokens":[12926,3966,7183,3785],"delegation":[11926,2966,6183,2785],"delegatorTokens":9999999967731,"jailed":[1000000000000017,null,null,null],"status":["unbonding","bonded","bonded","unbonding"]}},{"ix":71,"action":{"kind":"Deliver","chain":"consumer","numPackets":2},"partialState":{"h":6,"t":36,"consumerPower":[null,3776,null,5838],"outstandingDowntime":[false,false,true,true]}},{"ix":72,"action":{"kind":"Undelegate","val":3,"amt":2955},"partialState":{"h":11,"t":66,"tokens":[12926,3966,7183,3785],"delegation":[11926,2966,6183,2785],"delegatorTokens":9999999967731}},{"ix":73,"action":{"kind":"Delegate","val":0,"amt":2329},"partialState":{"h":11,"t":66,"tokens":[15255,3966,7183,3785],"delegation":[14255,2966,6183,2785],"delegatorTokens":9999999965402}},{"ix":74,"action":{"kind":"Delegate","val":3,"amt":2372},"partialState":{"h":11,"t":66,"tokens":[15255,3966,7183,6157],"delegation":[14255,2966,6183,5157],"delegatorTokens":9999999963030}},{"ix":75,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":76,"action":{"kind":"Undelegate","val":2,"amt":4598},"partialState":{"h":11,"t":66,"tokens":[15255,3966,2585,6157],"delegation":[14255,2966,1585,5157],"delegatorTokens":9999999963030}},{"ix":77,"action":{"kind":"Undelegate","val":0,"amt":3211},"partialState":{"h":11,"t":66,"tokens":[12044,3966,2585,6157],"delegation":[11044,2966,1585,5157],"delegatorTokens":9999999963030}},{"ix":78,"action":{"kind":"Undelegate","val":2,"amt":4779},"partialState":{"h":11,"t":66,"tokens":[12044,3966,2585,6157],"delegation":[11044,2966,1585,5157],"delegatorTokens":9999999963030}},{"ix":79,"action":{"kind":"Delegate","val":3,"amt":4994},"partialState":{"h":11,"t":66,"tokens":[12044,3966,2585,11151],"delegation":[11044,2966,1585,10151],"delegatorTokens":9999999958036}},{"ix":80,"action":{"kind":"Delegate","val":1,"amt":3524},"partialState":{"h":11,"t":66,"tokens":[12044,7490,2585,11151],"delegation":[11044,6490,1585,10151],"delegatorTokens":9999999954512}},{"ix":81,"action":{"kind":"Undelegate","val":2,"amt":1299},"partialState":{"h":11,"t":66,"tokens":[12044,7490,1286,11151],"delegation":[11044,6490,286,10151],"delegatorTokens":9999999954512}},{"ix":82,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":7,"t":42,"consumerPower":[null,3966,7183,null],"outstandingDowntime":[false,false,true,true]}},{"ix":83,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":84,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":85,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":12,"t":72,"tokens":[12044,7490,1286,11151],"delegation":[11044,6490,286,10151],"delegatorTokens":9999999954512,"jailed":[1000000000000017,null,null,null],"status":["unbonding","bonded","unbonding","bonded"]}},{"ix":86,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":87,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":8,"t":48,"consumerPower":[null,3966,7183,null],"outstandingDowntime":[false,false,true,true]}},{"ix":88,"action":{"kind":"Deliver","chain":"provider","numPackets":6},"partialState":{"h":12,"t":72,"tokens":[12044,7490,1286,11151],"delegation":[11044,6490,286,10151],"delegatorTokens":9999999954512,"jailed":[1000000000000017,null,null,null],"status":["unbonding","bonded","unbonding","bonded"]}},{"ix":89,"action":{"kind":"Deliver","chain":"provider","numPackets":4},"partialState":{"h":12,"t":72,"tokens":[12044,7490,1286,11151],"delegation":[11044,6490,286,10151],"delegatorTokens":9999999954512,"jailed":[1000000000000017,null,null,null],"status":["unbonding","bonded","unbonding","bonded"]}},{"ix":90,"action":{"kind":"Delegate","val":2,"amt":3215},"partialState":{"h":12,"t":72,"tokens":[12044,7490,4501,11151],"delegation":[11044,6490,3501,10151],"delegatorTokens":9999999951297}},{"ix":91,"action":{"kind":"Delegate","val":0,"amt":4473},"partialState":{"h":12,"t":72,"tokens":[16517,7490,4501,11151],"delegation":[15517,6490,3501,10151],"delegatorTokens":9999999946824}},{"ix":92,"action":{"kind":"Undelegate","val":2,"amt":3453},"partialState":{"h":12,"t":72,"tokens":[16517,7490,1048,11151],"delegation":[15517,6490,48,10151],"delegatorTokens":9999999946824}},{"ix":93,"action":{"kind":"Undelegate","val":3,"amt":3390},"partialState":{"h":12,"t":72,"tokens":[16517,7490,1048,7761],"delegation":[15517,6490,48,6761],"delegatorTokens":9999999946824}},{"ix":94,"action":{"kind":"Undelegate","val":2,"amt":4918},"partialState":{"h":12,"t":72,"tokens":[16517,7490,1048,7761],"delegation":[15517,6490,48,6761],"delegatorTokens":9999999946824}},{"ix":95,"action":{"kind":"Undelegate","val":0,"amt":1543},"partialState":{"h":12,"t":72,"tokens":[14974,7490,1048,7761],"delegation":[13974,6490,48,6761],"delegatorTokens":9999999946824}},{"ix":96,"action":{"kind":"Delegate","val":2,"amt":4918},"partialState":{"h":12,"t":72,"tokens":[14974,7490,5966,7761],"delegation":[13974,6490,4966,6761],"delegatorTokens":9999999941906}},{"ix":97,"action":{"kind":"Undelegate","val":0,"amt":1659},"partialState":{"h":12,"t":72,"tokens":[13315,7490,5966,7761],"delegation":[12315,6490,4966,6761],"delegatorTokens":9999999941906}},{"ix":98,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":99,"action":{"kind":"Deliver","chain":"provider","numPackets":1},"partialState":{"h":12,"t":72,"tokens":[13315,7490,5966,7761],"delegation":[12315,6490,4966,6761],"delegatorTokens":9999999941906,"jailed":[1000000000000017,null,null,null],"status":["unbonding","bonded","unbonding","bonded"]}},{"ix":100,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":13,"t":78,"tokens":[13315,7490,5966,7761],"delegation":[12315,6490,4966,6761],"delegatorTokens":9999999941906,"jailed":[1000000000000017,null,null,null],"status":["unbonding","bonded","unbonding","bonded"]}},{"ix":101,"action":{"kind":"Undelegate","val":1,"amt":3372},"partialState":{"h":13,"t":78,"tokens":[13315,4118,5966,7761],"delegation":[12315,3118,4966,6761],"delegatorTokens":9999999941906}},{"ix":102,"action":{"kind":"Deliver","chain":"provider","numPackets":2},"partialState":{"h":13,"t":78,"tokens":[13315,4118,5966,7761],"delegation":[12315,3118,4966,6761],"delegatorTokens":9999999941906,"jailed":[1000000000000017,null,null,null],"status":["unbonding","bonded","unbonding","bonded"]}},{"ix":103,"action":{"kind":"Undelegate","val":0,"amt":1102},"partialState":{"h":13,"t":78,"tokens":[12213,4118,5966,7761],"delegation":[11213,3118,4966,6761],"delegatorTokens":9999999941906}},{"ix":104,"action":{"kind":"Deliver","chain":"consumer","numPackets":2},"partialState":{"h":8,"t":48,"consumerPower":[null,3966,7183,null],"outstandingDowntime":[false,false,true,true]}},{"ix":105,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":106,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":107,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":9,"t":54,"consumerPower":[null,7490,null,11151],"outstandingDowntime":[false,false,true,true]}},{"ix":108,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":14,"t":84,"tokens":[12213,4118,5966,7761],"delegation":[11213,3118,4966,6761],"delegatorTokens":9999999941906,"jailed":[1000000000000017,null,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":109,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":110,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":111,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":112,"action":{"kind":"Undelegate","val":1,"amt":3873},"partialState":{"h":14,"t":84,"tokens":[12213,4118,5966,7761],"delegation":[11213,3118,4966,6761],"delegatorTokens":9999999941906}},{"ix":113,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":15,"t":90,"tokens":[12213,4118,5966,7761],"delegation":[11213,3118,4966,6761],"delegatorTokens":9999999941906,"jailed":[1000000000000017,null,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":114,"action":{"kind":"Undelegate","val":3,"amt":4977},"partialState":{"h":15,"t":90,"tokens":[12213,4118,5966,2784],"delegation":[11213,3118,4966,1784],"delegatorTokens":9999999941906}},{"ix":115,"action":{"kind":"Deliver","chain":"consumer","numPackets":3},"partialState":{"h":9,"t":54,"consumerPower":[null,7490,null,11151],"outstandingDowntime":[false,false,true,true]}},{"ix":116,"action":{"kind":"Deliver","chain":"consumer","numPackets":4},"partialState":{"h":9,"t":54,"consumerPower":[null,7490,null,11151],"outstandingDowntime":[false,false,true,true]}},{"ix":117,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":118,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":16,"t":96,"tokens":[12213,4118,5966,2784],"delegation":[11213,3118,4966,1784],"delegatorTokens":9999999941906,"jailed":[1000000000000017,null,null,null],"status":["unbonding","bonded","bonded","unbonding"]}},{"ix":119,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":120,"action":{"kind":"Deliver","chain":"consumer","numPackets":2},"partialState":{"h":9,"t":54,"consumerPower":[null,7490,null,11151],"outstandingDowntime":[false,false,true,true]}},{"ix":121,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":122,"action":{"kind":"Undelegate","val":0,"amt":1356},"partialState":{"h":16,"t":96,"tokens":[10857,4118,5966,2784],"delegation":[9857,3118,4966,1784],"delegatorTokens":9999999941906}},{"ix":123,"action":{"kind":"Delegate","val":1,"amt":3989},"partialState":{"h":16,"t":96,"tokens":[10857,8107,5966,2784],"delegation":[9857,7107,4966,1784],"delegatorTokens":9999999937917}},{"ix":124,"action":{"kind":"Undelegate","val":1,"amt":3168},"partialState":{"h":16,"t":96,"tokens":[10857,4939,5966,2784],"delegation":[9857,3939,4966,1784],"delegatorTokens":9999999937917}},{"ix":125,"action":{"kind":"Undelegate","val":1,"amt":4309},"partialState":{"h":16,"t":96,"tokens":[10857,4939,5966,2784],"delegation":[9857,3939,4966,1784],"delegatorTokens":9999999937917}},{"ix":126,"action":{"kind":"Delegate","val":2,"amt":3148},"partialState":{"h":16,"t":96,"tokens":[10857,4939,9114,2784],"delegation":[9857,3939,8114,1784],"delegatorTokens":9999999934769}},{"ix":127,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":128,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":129,"action":{"kind":"Deliver","chain":"consumer","numPackets":6},"partialState":{"h":9,"t":54,"consumerPower":[null,7490,null,11151],"outstandingDowntime":[false,false,true,true]}},{"ix":130,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":10,"t":60,"consumerPower":[null,null,5966,7761],"outstandingDowntime":[false,false,true,true]}},{"ix":131,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":132,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":133,"action":{"kind":"Undelegate","val":1,"amt":4475},"partialState":{"h":16,"t":96,"tokens":[10857,4939,9114,2784],"delegation":[9857,3939,8114,1784],"delegatorTokens":9999999934769}},{"ix":134,"action":{"kind":"Delegate","val":3,"amt":4969},"partialState":{"h":16,"t":96,"tokens":[10857,4939,9114,7753],"delegation":[9857,3939,8114,6753],"delegatorTokens":9999999929800}},{"ix":135,"action":{"kind":"Undelegate","val":0,"amt":2544},"partialState":{"h":16,"t":96,"tokens":[8313,4939,9114,7753],"delegation":[7313,3939,8114,6753],"delegatorTokens":9999999929800}},{"ix":136,"action":{"kind":"Deliver","chain":"consumer","numPackets":5},"partialState":{"h":10,"t":60,"consumerPower":[null,null,5966,7761],"outstandingDowntime":[false,false,true,true]}},{"ix":137,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":11,"t":66,"consumerPower":[null,null,5966,7761],"outstandingDowntime":[false,false,true,true]}},{"ix":138,"action":{"kind":"Deliver","chain":"consumer","numPackets":4},"partialState":{"h":11,"t":66,"consumerPower":[null,null,5966,7761],"outstandingDowntime":[false,false,true,true]}},{"ix":139,"action":{"kind":"Delegate","val":1,"amt":4511},"partialState":{"h":16,"t":96,"tokens":[8313,9450,9114,7753],"delegation":[7313,8450,8114,6753],"delegatorTokens":9999999925289}},{"ix":140,"action":{"kind":"Undelegate","val":0,"amt":1454},"partialState":{"h":16,"t":96,"tokens":[6859,9450,9114,7753],"delegation":[5859,8450,8114,6753],"delegatorTokens":9999999925289}},{"ix":141,"action":{"kind":"Delegate","val":3,"amt":2993},"partialState":{"h":16,"t":96,"tokens":[6859,9450,9114,10746],"delegation":[5859,8450,8114,9746],"delegatorTokens":9999999922296}},{"ix":142,"action":{"kind":"Undelegate","val":0,"amt":3931},"partialState":{"h":16,"t":96,"tokens":[2928,9450,9114,10746],"delegation":[1928,8450,8114,9746],"delegatorTokens":9999999922296}},{"ix":143,"action":{"kind":"Undelegate","val":1,"amt":1973},"partialState":{"h":16,"t":96,"tokens":[2928,7477,9114,10746],"delegation":[1928,6477,8114,9746],"delegatorTokens":9999999922296}},{"ix":144,"action":{"kind":"Undelegate","val":3,"amt":4878},"partialState":{"h":16,"t":96,"tokens":[2928,7477,9114,5868],"delegation":[1928,6477,8114,4868],"delegatorTokens":9999999922296}},{"ix":145,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":12,"t":72,"consumerPower":[null,null,5966,7761],"outstandingDowntime":[false,false,true,true]}},{"ix":146,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":13,"t":78,"consumerPower":[null,null,5966,7761],"outstandingDowntime":[false,false,true,true]}},{"ix":147,"action":{"kind":"Deliver","chain":"consumer","numPackets":6},"partialState":{"h":13,"t":78,"consumerPower":[null,null,5966,7761],"outstandingDowntime":[false,false,true,true]}},{"ix":148,"action":{"kind":"Deliver","chain":"provider","numPackets":1},"partialState":{"h":16,"t":96,"tokens":[2928,7477,9114,5868],"delegation":[1928,6477,8114,4868],"delegatorTokens":9999999922296,"jailed":[1000000000000017,null,null,null],"status":["unbonding","bonded","bonded","unbonding"]}},{"ix":149,"action":{"kind":"Deliver","chain":"consumer","numPackets":3},"partialState":{"h":13,"t":78,"consumerPower":[null,null,5966,7761],"outstandingDowntime":[false,false,true,true]}},{"ix":150,"action":{"kind":"Deliver","chain":"provider","numPackets":3},"partialState":{"h":16,"t":96,"tokens":[2928,7477,9114,5868],"delegation":[1928,6477,8114,4868],"delegatorTokens":9999999922296,"jailed":[1000000000000017,null,null,null],"status":["unbonding","bonded","bonded","unbonding"]}},{"ix":151,"action":{"kind":"Deliver","chain":"consumer","numPackets":4},"partialState":{"h":13,"t":78,"consumerPower":[null,null,5966,7761],"outstandingDowntime":[false,false,true,true]}},{"ix":152,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":14,"t":84,"consumerPower":[null,null,5966,7761],"outstandingDowntime":[false,false,true,true]}},{"ix":153,"action":{"kind":"Delegate","val":3,"amt":2757},"partialState":{"h":16,"t":96,"tokens":[2928,7477,9114,8625],"delegation":[1928,6477,8114,7625],"delegatorTokens":9999999919539}},{"ix":154,"action":{"kind":"Deliver","chain":"provider","numPackets":4},"partialState":{"h":16,"t":96,"tokens":[2928,7477,9114,8625],"delegation":[1928,6477,8114,7625],"delegatorTokens":9999999919539,"jailed":[1000000000000017,null,null,null],"status":["unbonding","bonded","bonded","unbonding"]}},{"ix":155,"action":{"kind":"Deliver","chain":"provider","numPackets":5},"partialState":{"h":16,"t":96,"tokens":[2928,7477,9114,8625],"delegation":[1928,6477,8114,7625],"delegatorTokens":9999999919539,"jailed":[1000000000000017,null,null,null],"status":["unbonding","bonded","bonded","unbonding"]}},{"ix":156,"action":{"kind":"Delegate","val":2,"amt":1855},"partialState":{"h":16,"t":96,"tokens":[2928,7477,10969,8625],"delegation":[1928,6477,9969,7625],"delegatorTokens":9999999917684}},{"ix":157,"action":{"kind":"Deliver","chain":"provider","numPackets":5},"partialState":{"h":16,"t":96,"tokens":[2928,7477,10969,8625],"delegation":[1928,6477,9969,7625],"delegatorTokens":9999999917684,"jailed":[1000000000000017,null,null,null],"status":["unbonding","bonded","bonded","unbonding"]}},{"ix":158,"action":{"kind":"Deliver","chain":"consumer","numPackets":3},"partialState":{"h":14,"t":84,"consumerPower":[null,null,5966,7761],"outstandingDowntime":[false,false,true,true]}},{"ix":159,"action":{"kind":"Undelegate","val":3,"amt":4484},"partialState":{"h":16,"t":96,"tokens":[2928,7477,10969,4141],"delegation":[1928,6477,9969,3141],"delegatorTokens":9999999917684}},{"ix":160,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":15,"t":90,"consumerPower":[null,null,5966,7761],"outstandingDowntime":[false,false,true,true]}},{"ix":161,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":17,"t":102,"tokens":[2928,7477,10969,4141],"delegation":[1928,6477,9969,3141],"delegatorTokens":9999999917684,"jailed":[1000000000000017,null,null,null],"status":["unbonding","bonded","bonded","unbonding"]}},{"ix":162,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":16,"t":96,"consumerPower":[null,null,5966,7761],"outstandingDowntime":[false,false,true,true]}},{"ix":163,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":164,"action":{"kind":"Undelegate","val":0,"amt":3518},"partialState":{"h":17,"t":102,"tokens":[2928,7477,10969,4141],"delegation":[1928,6477,9969,3141],"delegatorTokens":9999999917684}},{"ix":165,"action":{"kind":"Undelegate","val":0,"amt":3065},"partialState":{"h":17,"t":102,"tokens":[2928,7477,10969,4141],"delegation":[1928,6477,9969,3141],"delegatorTokens":9999999917684}},{"ix":166,"action":{"kind":"Undelegate","val":2,"amt":3531},"partialState":{"h":17,"t":102,"tokens":[2928,7477,7438,4141],"delegation":[1928,6477,6438,3141],"delegatorTokens":9999999917684}},{"ix":167,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":18,"t":108,"tokens":[2928,7477,7438,4141],"delegation":[1928,6477,6438,3141],"delegatorTokens":9999999917684,"jailed":[1000000000000017,null,null,null],"status":["unbonding","bonded","bonded","unbonding"]}},{"ix":168,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":169,"action":{"kind":"Delegate","val":0,"amt":3960},"partialState":{"h":18,"t":108,"tokens":[6888,7477,7438,4141],"delegation":[5888,6477,6438,3141],"delegatorTokens":9999999913724}},{"ix":170,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":171,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":172,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":17,"t":102,"consumerPower":[null,null,5966,7761],"outstandingDowntime":[false,false,true,true]}},{"ix":173,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":18,"t":108,"consumerPower":[null,null,5966,7761],"outstandingDowntime":[false,false,true,true]}},{"ix":174,"action":{"kind":"Undelegate","val":1,"amt":1687},"partialState":{"h":18,"t":108,"tokens":[6888,5790,7438,4141],"delegation":[5888,4790,6438,3141],"delegatorTokens":9999999913724}},{"ix":175,"action":{"kind":"Deliver","chain":"provider","numPackets":2},"partialState":{"h":18,"t":108,"tokens":[6888,5790,7438,4141],"delegation":[5888,4790,6438,3141],"delegatorTokens":9999999913724,"jailed":[1000000000000017,null,null,null],"status":["unbonding","bonded","bonded","unbonding"]}},{"ix":176,"action":{"kind":"Delegate","val":3,"amt":4044},"partialState":{"h":18,"t":108,"tokens":[6888,5790,7438,8185],"delegation":[5888,4790,6438,7185],"delegatorTokens":9999999909680}},{"ix":177,"action":{"kind":"Undelegate","val":0,"amt":4420},"partialState":{"h":18,"t":108,"tokens":[2468,5790,7438,8185],"delegation":[1468,4790,6438,7185],"delegatorTokens":9999999909680}},{"ix":178,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":179,"action":{"kind":"Undelegate","val":0,"amt":3303},"partialState":{"h":18,"t":108,"tokens":[2468,5790,7438,8185],"delegation":[1468,4790,6438,7185],"delegatorTokens":9999999909680}},{"ix":180,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":19,"t":114,"tokens":[2468,5790,7438,8185],"delegation":[1468,4790,6438,7185],"delegatorTokens":9999999913724,"jailed":[1000000000000017,null,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":181,"action":{"kind":"Undelegate","val":2,"amt":2790},"partialState":{"h":19,"t":114,"tokens":[2468,5790,4648,8185],"delegation":[1468,4790,3648,7185],"delegatorTokens":9999999913724}},{"ix":182,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":183,"action":{"kind":"Delegate","val":0,"amt":4396},"partialState":{"h":19,"t":114,"tokens":[6864,5790,4648,8185],"delegation":[5864,4790,3648,7185],"delegatorTokens":9999999909328}},{"ix":184,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":20,"t":120,"tokens":[6864,5790,4648,8185],"delegation":[5864,4790,3648,7185],"delegatorTokens":9999999909328,"jailed":[1000000000000017,null,null,null],"status":["unbonded","bonded","unbonding","bonded"]}},{"ix":185,"action":{"kind":"Deliver","chain":"provider","numPackets":5},"partialState":{"h":20,"t":120,"tokens":[6864,5790,4648,8185],"delegation":[5864,4790,3648,7185],"delegatorTokens":9999999909328,"jailed":[1000000000000017,null,null,null],"status":["unbonded","bonded","unbonding","bonded"]}},{"ix":186,"action":{"kind":"Delegate","val":0,"amt":3550},"partialState":{"h":20,"t":120,"tokens":[10414,5790,4648,8185],"delegation":[9414,4790,3648,7185],"delegatorTokens":9999999905778}},{"ix":187,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":188,"action":{"kind":"Delegate","val":1,"amt":1001},"partialState":{"h":20,"t":120,"tokens":[10414,6791,4648,8185],"delegation":[9414,5791,3648,7185],"delegatorTokens":9999999904777}},{"ix":189,"action":{"kind":"Delegate","val":0,"amt":4393},"partialState":{"h":20,"t":120,"tokens":[14807,6791,4648,8185],"delegation":[13807,5791,3648,7185],"delegatorTokens":9999999900384}},{"ix":190,"action":{"kind":"Delegate","val":1,"amt":1123},"partialState":{"h":20,"t":120,"tokens":[14807,7914,4648,8185],"delegation":[13807,6914,3648,7185],"delegatorTokens":9999999899261}},{"ix":191,"action":{"kind":"Undelegate","val":3,"amt":2273},"partialState":{"h":20,"t":120,"tokens":[14807,7914,4648,5912],"delegation":[13807,6914,3648,4912],"delegatorTokens":9999999899261}},{"ix":192,"action":{"kind":"Undelegate","val":3,"amt":1352},"partialState":{"h":20,"t":120,"tokens":[14807,7914,4648,4560],"delegation":[13807,6914,3648,3560],"delegatorTokens":9999999899261}},{"ix":193,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":194,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":195,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":196,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":197,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":198,"action":{"kind":"Delegate","val":0,"amt":2156},"partialState":{"h":20,"t":120,"tokens":[16963,7914,4648,4560],"delegation":[15963,6914,3648,3560],"delegatorTokens":9999999897105}},{"ix":199,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":19,"t":114,"consumerPower":[null,null,5966,7761],"outstandingDowntime":[false,false,true,true]}}],"events":["send_downtime_slash_request","send_downtime_slash_request","insufficient_shares","send_downtime_slash_request","insufficient_shares","insufficient_shares","insufficient_shares","receive_slash_request_unbonded","receive_downtime_slash_request","jail","receive_slash_request_unbonded","send_vsc_with_downtime_ack","insufficient_shares","more_than_one_third_val_power_change","send_vsc_without_downtime_ack","insufficient_shares","receive_downtime_slash_ack","send_vsc_not_because_change","send_vsc_without_downtime_ack","send_vsc_without_downtime_ack","insufficient_shares","consumer_del_val","consumer_update_val","consumer_add_val","insufficient_shares","consumer_update_val","more_than_one_third_val_power_change","send_vsc_without_downtime_ack","send_vsc_without_downtime_ack","insufficient_shares","insufficient_shares","consumer_update_val","consumer_add_val","consumer_del_val","more_than_one_third_val_power_change","rebond_unval","send_vsc_without_downtime_ack","insufficient_shares","send_vsc_without_downtime_ack","consumer_update_val","consumer_del_val","consumer_add_val","more_than_one_third_val_power_change","rebond_unval","send_vsc_without_downtime_ack","insufficient_shares","more_than_one_third_val_power_change","rebond_unval","some_undels_expired_but_not_completed","send_vsc_without_downtime_ack","insufficient_shares","consumer_update_val","consumer_del_val","consumer_add_val","insufficient_shares","consumer_send_maturation","consumer_send_maturation","consumer_send_maturation","consumer_send_maturation","send_vsc_without_downtime_ack","consumer_send_maturation","consumer_send_maturation","insufficient_shares","insufficient_shares","some_undels_expired_but_not_completed","send_vsc_without_downtime_ack","consumer_send_maturation","insufficient_shares","more_than_one_third_val_power_change","rebond_unval","some_undels_expired_but_not_completed","complete_undel_immediate","complete_undel_immediate","set_unval_hold_false","send_vsc_without_downtime_ack","more_than_one_third_val_power_change","rebond_unval","complete_unval_in_endblock","send_vsc_without_downtime_ack","consumer_send_maturation","consumer_send_maturation"]},{"meta":{"commit":"7ffd0c04e4205cbc9caf212abfe6c59ee43153bf"},"constants":{"P":"provider","C":"consumer","UNBONDING_SECONDS_P":70,"UNBONDING_SECONDS_C":50,"TRUSTING_SECONDS":49,"NUM_VALIDATORS":4,"MAX_VALIDATORS":2,"SLASH_DOUBLESIGN":0,"SLASH_DOWNTIME":0,"JAIL_SECONDS":999999999999999,"BLOCK_SECONDS":6,"INITIAL_DELEGATOR_TOKENS":10000000000000,"DELEGATE_AMT_MIN":1000,"DELEGATE_AMT_MAX":5000,"UNDELEGATE_AMT_MIN":1000,"UNDELEGATE_AMT_MAX":5000,"ISDOWNTIME_PROBABILITY":0.5,"MAX_NUM_PACKETS_FOR_DELIVER":6},"actions":[{"ix":0,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":1,"action":{"kind":"ConsumerSlash","val":3,"infractionHeight":0,"isDowntime":false},"partialState":{"h":1,"t":6,"outstandingDowntime":[false,false,false,false]}},{"ix":2,"action":{"kind":"Delegate","val":0,"amt":4116},"partialState":{"h":1,"t":6,"tokens":[9116,4000,3000,2000],"delegation":[8116,3000,2000,1000],"delegatorTokens":9999999995884}},{"ix":3,"action":{"kind":"ConsumerSlash","val":2,"infractionHeight":0,"isDowntime":true},"partialState":{"h":1,"t":6,"outstandingDowntime":[false,false,true,false]}},{"ix":4,"action":{"kind":"Delegate","val":0,"amt":2570},"partialState":{"h":1,"t":6,"tokens":[11686,4000,3000,2000],"delegation":[10686,3000,2000,1000],"delegatorTokens":9999999993314}},{"ix":5,"action":{"kind":"Undelegate","val":3,"amt":3806},"partialState":{"h":1,"t":6,"tokens":[11686,4000,3000,2000],"delegation":[10686,3000,2000,1000],"delegatorTokens":9999999993314}},{"ix":6,"action":{"kind":"Undelegate","val":3,"amt":4293},"partialState":{"h":1,"t":6,"tokens":[11686,4000,3000,2000],"delegation":[10686,3000,2000,1000],"delegatorTokens":9999999993314}},{"ix":7,"action":{"kind":"Delegate","val":3,"amt":4371},"partialState":{"h":1,"t":6,"tokens":[11686,4000,3000,6371],"delegation":[10686,3000,2000,5371],"delegatorTokens":9999999988943}},{"ix":8,"action":{"kind":"Deliver","chain":"provider","numPackets":6},"partialState":{"h":1,"t":6,"tokens":[11686,4000,3000,6371],"delegation":[10686,3000,2000,5371],"delegatorTokens":9999999988943,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":9,"action":{"kind":"ConsumerSlash","val":3,"infractionHeight":0,"isDowntime":true},"partialState":{"h":1,"t":6,"outstandingDowntime":[false,false,true,true]}},{"ix":10,"action":{"kind":"Delegate","val":0,"amt":1735},"partialState":{"h":1,"t":6,"tokens":[13421,4000,3000,6371],"delegation":[12421,3000,2000,5371],"delegatorTokens":9999999987208}},{"ix":11,"action":{"kind":"Undelegate","val":3,"amt":3238},"partialState":{"h":1,"t":6,"tokens":[13421,4000,3000,3133],"delegation":[12421,3000,2000,2133],"delegatorTokens":9999999987208}},{"ix":12,"action":{"kind":"Deliver","chain":"provider","numPackets":3},"partialState":{"h":1,"t":6,"tokens":[13421,4000,3000,3133],"delegation":[12421,3000,2000,2133],"delegatorTokens":9999999987208,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":13,"action":{"kind":"Undelegate","val":0,"amt":4079},"partialState":{"h":1,"t":6,"tokens":[9342,4000,3000,3133],"delegation":[8342,3000,2000,2133],"delegatorTokens":9999999987208}},{"ix":14,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":2,"t":12,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,false,true,true]}},{"ix":15,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":16,"action":{"kind":"Undelegate","val":2,"amt":2783},"partialState":{"h":1,"t":6,"tokens":[9342,4000,3000,3133],"delegation":[8342,3000,2000,2133],"delegatorTokens":9999999987208}},{"ix":17,"action":{"kind":"Undelegate","val":3,"amt":2631},"partialState":{"h":1,"t":6,"tokens":[9342,4000,3000,3133],"delegation":[8342,3000,2000,2133],"delegatorTokens":9999999987208}},{"ix":18,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":3,"t":18,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,false,true,true]}},{"ix":19,"action":{"kind":"Delegate","val":2,"amt":3239},"partialState":{"h":1,"t":6,"tokens":[9342,4000,6239,3133],"delegation":[8342,3000,5239,2133],"delegatorTokens":9999999983969}},{"ix":20,"action":{"kind":"Undelegate","val":3,"amt":2755},"partialState":{"h":1,"t":6,"tokens":[9342,4000,6239,3133],"delegation":[8342,3000,5239,2133],"delegatorTokens":9999999983969}},{"ix":21,"action":{"kind":"Delegate","val":0,"amt":4933},"partialState":{"h":1,"t":6,"tokens":[14275,4000,6239,3133],"delegation":[13275,3000,5239,2133],"delegatorTokens":9999999979036}},{"ix":22,"action":{"kind":"Delegate","val":1,"amt":3947},"partialState":{"h":1,"t":6,"tokens":[14275,7947,6239,3133],"delegation":[13275,6947,5239,2133],"delegatorTokens":9999999975089}},{"ix":23,"action":{"kind":"ConsumerSlash","val":1,"infractionHeight":0,"isDowntime":true},"partialState":{"h":3,"t":18,"outstandingDowntime":[false,true,true,true]}},{"ix":24,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":25,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":26,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":27,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":2,"t":12,"tokens":[14275,7947,6239,3133],"delegation":[13275,6947,5239,2133],"delegatorTokens":9999999975089,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":28,"action":{"kind":"Deliver","chain":"consumer","numPackets":4},"partialState":{"h":3,"t":18,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,true,true,true]}},{"ix":29,"action":{"kind":"Delegate","val":1,"amt":4137},"partialState":{"h":2,"t":12,"tokens":[14275,12084,6239,3133],"delegation":[13275,11084,5239,2133],"delegatorTokens":9999999970952}},{"ix":30,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":31,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":3,"t":18,"tokens":[14275,12084,6239,3133],"delegation":[13275,11084,5239,2133],"delegatorTokens":9999999970952,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":32,"action":{"kind":"Deliver","chain":"consumer","numPackets":3},"partialState":{"h":3,"t":18,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,true,true,true]}},{"ix":33,"action":{"kind":"Undelegate","val":1,"amt":2853},"partialState":{"h":3,"t":18,"tokens":[14275,9231,6239,3133],"delegation":[13275,8231,5239,2133],"delegatorTokens":9999999970952}},{"ix":34,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":4,"t":24,"consumerPower":[14275,7947,null,null],"outstandingDowntime":[false,true,true,true]}},{"ix":35,"action":{"kind":"Delegate","val":1,"amt":2360},"partialState":{"h":3,"t":18,"tokens":[14275,11591,6239,3133],"delegation":[13275,10591,5239,2133],"delegatorTokens":9999999968592}},{"ix":36,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":37,"action":{"kind":"Undelegate","val":2,"amt":2488},"partialState":{"h":3,"t":18,"tokens":[14275,11591,3751,3133],"delegation":[13275,10591,2751,2133],"delegatorTokens":9999999968592}},{"ix":38,"action":{"kind":"Deliver","chain":"provider","numPackets":5},"partialState":{"h":3,"t":18,"tokens":[14275,11591,3751,3133],"delegation":[13275,10591,2751,2133],"delegatorTokens":9999999968592,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":39,"action":{"kind":"Undelegate","val":1,"amt":4009},"partialState":{"h":3,"t":18,"tokens":[14275,7582,3751,3133],"delegation":[13275,6582,2751,2133],"delegatorTokens":9999999968592}},{"ix":40,"action":{"kind":"Deliver","chain":"consumer","numPackets":5},"partialState":{"h":4,"t":24,"consumerPower":[14275,7947,null,null],"outstandingDowntime":[false,true,true,true]}},{"ix":41,"action":{"kind":"Undelegate","val":3,"amt":4352},"partialState":{"h":3,"t":18,"tokens":[14275,7582,3751,3133],"delegation":[13275,6582,2751,2133],"delegatorTokens":9999999968592}},{"ix":42,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":43,"action":{"kind":"Delegate","val":0,"amt":3377},"partialState":{"h":3,"t":18,"tokens":[17652,7582,3751,3133],"delegation":[16652,6582,2751,2133],"delegatorTokens":9999999965215}},{"ix":44,"action":{"kind":"Undelegate","val":2,"amt":1976},"partialState":{"h":3,"t":18,"tokens":[17652,7582,1775,3133],"delegation":[16652,6582,775,2133],"delegatorTokens":9999999965215}},{"ix":45,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":5,"t":30,"consumerPower":[14275,7947,null,null],"outstandingDowntime":[false,true,true,true]}},{"ix":46,"action":{"kind":"Deliver","chain":"provider","numPackets":3},"partialState":{"h":3,"t":18,"tokens":[17652,7582,1775,3133],"delegation":[16652,6582,775,2133],"delegatorTokens":9999999965215,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":47,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":4,"t":24,"tokens":[17652,7582,1775,3133],"delegation":[16652,6582,775,2133],"delegatorTokens":9999999965215,"jailed":[null,1000000000000017,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":48,"action":{"kind":"Undelegate","val":1,"amt":3742},"partialState":{"h":4,"t":24,"tokens":[17652,3840,1775,3133],"delegation":[16652,2840,775,2133],"delegatorTokens":9999999965215}},{"ix":49,"action":{"kind":"Undelegate","val":1,"amt":1930},"partialState":{"h":4,"t":24,"tokens":[17652,1910,1775,3133],"delegation":[16652,910,775,2133],"delegatorTokens":9999999965215}},{"ix":50,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":5,"t":30,"tokens":[17652,1910,1775,3133],"delegation":[16652,910,775,2133],"delegatorTokens":9999999965215,"jailed":[null,1000000000000017,null,null],"status":["bonded","unbonding","unbonded","bonded"]}},{"ix":51,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":52,"action":{"kind":"Undelegate","val":2,"amt":4546},"partialState":{"h":5,"t":30,"tokens":[17652,1910,1775,3133],"delegation":[16652,910,775,2133],"delegatorTokens":9999999965215}},{"ix":53,"action":{"kind":"Deliver","chain":"consumer","numPackets":5},"partialState":{"h":5,"t":30,"consumerPower":[14275,7947,null,null],"outstandingDowntime":[false,false,true,true]}},{"ix":54,"action":{"kind":"Delegate","val":1,"amt":3225},"partialState":{"h":5,"t":30,"tokens":[17652,5135,1775,3133],"delegation":[16652,4135,775,2133],"delegatorTokens":9999999961990}},{"ix":55,"action":{"kind":"Delegate","val":1,"amt":4363},"partialState":{"h":5,"t":30,"tokens":[17652,9498,1775,3133],"delegation":[16652,8498,775,2133],"delegatorTokens":9999999957627}},{"ix":56,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":6,"t":36,"tokens":[17652,9498,1775,3133],"delegation":[16652,8498,775,2133],"delegatorTokens":9999999957627,"jailed":[null,1000000000000017,null,null],"status":["bonded","unbonding","unbonded","bonded"]}},{"ix":57,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":58,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":59,"action":{"kind":"Deliver","chain":"consumer","numPackets":5},"partialState":{"h":5,"t":30,"consumerPower":[14275,7947,null,null],"outstandingDowntime":[false,false,true,true]}},{"ix":60,"action":{"kind":"Delegate","val":2,"amt":1435},"partialState":{"h":6,"t":36,"tokens":[17652,9498,3210,3133],"delegation":[16652,8498,2210,2133],"delegatorTokens":9999999956192}},{"ix":61,"action":{"kind":"Deliver","chain":"provider","numPackets":6},"partialState":{"h":6,"t":36,"tokens":[17652,9498,3210,3133],"delegation":[16652,8498,2210,2133],"delegatorTokens":9999999956192,"jailed":[null,1000000000000017,null,null],"status":["bonded","unbonding","unbonded","bonded"]}},{"ix":62,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":7,"t":42,"tokens":[17652,9498,3210,3133],"delegation":[16652,8498,2210,2133],"delegatorTokens":9999999956192,"jailed":[null,1000000000000017,null,null],"status":["bonded","unbonding","bonded","unbonding"]}},{"ix":63,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":6,"t":36,"consumerPower":[17652,null,null,3133],"outstandingDowntime":[false,false,true,true]}},{"ix":64,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":65,"action":{"kind":"Deliver","chain":"consumer","numPackets":3},"partialState":{"h":6,"t":36,"consumerPower":[17652,null,null,3133],"outstandingDowntime":[false,false,true,true]}},{"ix":66,"action":{"kind":"Delegate","val":2,"amt":4367},"partialState":{"h":7,"t":42,"tokens":[17652,9498,7577,3133],"delegation":[16652,8498,6577,2133],"delegatorTokens":9999999951825}},{"ix":67,"action":{"kind":"Deliver","chain":"consumer","numPackets":1},"partialState":{"h":6,"t":36,"consumerPower":[17652,null,null,3133],"outstandingDowntime":[false,false,true,true]}},{"ix":68,"action":{"kind":"Deliver","chain":"consumer","numPackets":2},"partialState":{"h":6,"t":36,"consumerPower":[17652,null,null,3133],"outstandingDowntime":[false,false,true,true]}},{"ix":69,"action":{"kind":"Delegate","val":0,"amt":3429},"partialState":{"h":7,"t":42,"tokens":[21081,9498,7577,3133],"delegation":[20081,8498,6577,2133],"delegatorTokens":9999999948396}},{"ix":70,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":8,"t":48,"tokens":[21081,9498,7577,3133],"delegation":[20081,8498,6577,2133],"delegatorTokens":9999999948396,"jailed":[null,1000000000000017,null,null],"status":["bonded","unbonding","bonded","unbonding"]}},{"ix":71,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":72,"action":{"kind":"Deliver","chain":"provider","numPackets":2},"partialState":{"h":8,"t":48,"tokens":[21081,9498,7577,3133],"delegation":[20081,8498,6577,2133],"delegatorTokens":9999999948396,"jailed":[null,1000000000000017,null,null],"status":["bonded","unbonding","bonded","unbonding"]}},{"ix":73,"action":{"kind":"Deliver","chain":"consumer","numPackets":3},"partialState":{"h":6,"t":36,"consumerPower":[17652,null,null,3133],"outstandingDowntime":[false,false,true,true]}},{"ix":74,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":9,"t":54,"tokens":[21081,9498,7577,3133],"delegation":[20081,8498,6577,2133],"delegatorTokens":9999999948396,"jailed":[null,1000000000000017,null,null],"status":["bonded","unbonding","bonded","unbonding"]}},{"ix":75,"action":{"kind":"Delegate","val":0,"amt":3412},"partialState":{"h":9,"t":54,"tokens":[24493,9498,7577,3133],"delegation":[23493,8498,6577,2133],"delegatorTokens":9999999944984}},{"ix":76,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":77,"action":{"kind":"Delegate","val":0,"amt":2019},"partialState":{"h":9,"t":54,"tokens":[26512,9498,7577,3133],"delegation":[25512,8498,6577,2133],"delegatorTokens":9999999942965}},{"ix":78,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":79,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":7,"t":42,"consumerPower":[17652,null,3210,null],"outstandingDowntime":[false,false,true,true]}},{"ix":80,"action":{"kind":"Deliver","chain":"consumer","numPackets":4},"partialState":{"h":7,"t":42,"consumerPower":[17652,null,3210,null],"outstandingDowntime":[false,false,true,true]}},{"ix":81,"action":{"kind":"Delegate","val":3,"amt":3164},"partialState":{"h":9,"t":54,"tokens":[26512,9498,7577,6297],"delegation":[25512,8498,6577,5297],"delegatorTokens":9999999939801}},{"ix":82,"action":{"kind":"Deliver","chain":"provider","numPackets":5},"partialState":{"h":9,"t":54,"tokens":[26512,9498,7577,6297],"delegation":[25512,8498,6577,5297],"delegatorTokens":9999999939801,"jailed":[null,1000000000000017,null,null],"status":["bonded","unbonding","bonded","unbonding"]}},{"ix":83,"action":{"kind":"Undelegate","val":3,"amt":3043},"partialState":{"h":9,"t":54,"tokens":[26512,9498,7577,3254],"delegation":[25512,8498,6577,2254],"delegatorTokens":9999999939801}},{"ix":84,"action":{"kind":"Deliver","chain":"provider","numPackets":1},"partialState":{"h":9,"t":54,"tokens":[26512,9498,7577,3254],"delegation":[25512,8498,6577,2254],"delegatorTokens":9999999939801,"jailed":[null,1000000000000017,null,null],"status":["bonded","unbonding","bonded","unbonding"]}},{"ix":85,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":8,"t":48,"consumerPower":[21081,null,7577,null],"outstandingDowntime":[false,false,true,true]}},{"ix":86,"action":{"kind":"Deliver","chain":"consumer","numPackets":4},"partialState":{"h":8,"t":48,"consumerPower":[21081,null,7577,null],"outstandingDowntime":[false,false,true,true]}},{"ix":87,"action":{"kind":"Undelegate","val":3,"amt":2588},"partialState":{"h":9,"t":54,"tokens":[26512,9498,7577,3254],"delegation":[25512,8498,6577,2254],"delegatorTokens":9999999939801}},{"ix":88,"action":{"kind":"Delegate","val":3,"amt":2834},"partialState":{"h":9,"t":54,"tokens":[26512,9498,7577,6088],"delegation":[25512,8498,6577,5088],"delegatorTokens":9999999936967}},{"ix":89,"action":{"kind":"Delegate","val":3,"amt":1499},"partialState":{"h":9,"t":54,"tokens":[26512,9498,7577,7587],"delegation":[25512,8498,6577,6587],"delegatorTokens":9999999935468}},{"ix":90,"action":{"kind":"Delegate","val":3,"amt":1779},"partialState":{"h":9,"t":54,"tokens":[26512,9498,7577,9366],"delegation":[25512,8498,6577,8366],"delegatorTokens":9999999933689}},{"ix":91,"action":{"kind":"Deliver","chain":"consumer","numPackets":1},"partialState":{"h":8,"t":48,"consumerPower":[21081,null,7577,null],"outstandingDowntime":[false,false,true,true]}},{"ix":92,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":9,"t":54,"consumerPower":[21081,null,7577,null],"outstandingDowntime":[false,false,true,true]}},{"ix":93,"action":{"kind":"Undelegate","val":3,"amt":2788},"partialState":{"h":9,"t":54,"tokens":[26512,9498,7577,6578],"delegation":[25512,8498,6577,5578],"delegatorTokens":9999999933689}},{"ix":94,"action":{"kind":"Deliver","chain":"consumer","numPackets":2},"partialState":{"h":9,"t":54,"consumerPower":[21081,null,7577,null],"outstandingDowntime":[false,false,true,true]}},{"ix":95,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":10,"t":60,"tokens":[26512,9498,7577,6578],"delegation":[25512,8498,6577,5578],"delegatorTokens":9999999933689,"jailed":[null,1000000000000017,null,null],"status":["bonded","unbonding","bonded","unbonding"]}},{"ix":96,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":10,"t":60,"consumerPower":[21081,null,7577,null],"outstandingDowntime":[false,false,true,true]}},{"ix":97,"action":{"kind":"Deliver","chain":"consumer","numPackets":1},"partialState":{"h":10,"t":60,"consumerPower":[21081,null,7577,null],"outstandingDowntime":[false,false,true,true]}},{"ix":98,"action":{"kind":"Delegate","val":3,"amt":3835},"partialState":{"h":10,"t":60,"tokens":[26512,9498,7577,10413],"delegation":[25512,8498,6577,9413],"delegatorTokens":9999999929854}},{"ix":99,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":100,"action":{"kind":"Deliver","chain":"provider","numPackets":2},"partialState":{"h":10,"t":60,"tokens":[26512,9498,7577,10413],"delegation":[25512,8498,6577,9413],"delegatorTokens":9999999929854,"jailed":[null,1000000000000017,null,null],"status":["bonded","unbonding","bonded","unbonding"]}},{"ix":101,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":102,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":103,"action":{"kind":"Undelegate","val":2,"amt":4085},"partialState":{"h":10,"t":60,"tokens":[26512,9498,3492,10413],"delegation":[25512,8498,2492,9413],"delegatorTokens":9999999929854}},{"ix":104,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":105,"action":{"kind":"Delegate","val":1,"amt":1221},"partialState":{"h":10,"t":60,"tokens":[26512,10719,3492,10413],"delegation":[25512,9719,2492,9413],"delegatorTokens":9999999928633}},{"ix":106,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":11,"t":66,"consumerPower":[21081,null,7577,null],"outstandingDowntime":[false,false,true,true]}},{"ix":107,"action":{"kind":"Undelegate","val":0,"amt":4894},"partialState":{"h":10,"t":60,"tokens":[21618,10719,3492,10413],"delegation":[20618,9719,2492,9413],"delegatorTokens":9999999928633}},{"ix":108,"action":{"kind":"Deliver","chain":"consumer","numPackets":3},"partialState":{"h":11,"t":66,"consumerPower":[21081,null,7577,null],"outstandingDowntime":[false,false,true,true]}},{"ix":109,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":110,"action":{"kind":"Deliver","chain":"provider","numPackets":5},"partialState":{"h":10,"t":60,"tokens":[21618,10719,3492,10413],"delegation":[20618,9719,2492,9413],"delegatorTokens":9999999928633,"jailed":[null,1000000000000017,null,null],"status":["bonded","unbonding","bonded","unbonding"]}},{"ix":111,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":112,"action":{"kind":"Deliver","chain":"provider","numPackets":6},"partialState":{"h":10,"t":60,"tokens":[21618,10719,3492,10413],"delegation":[20618,9719,2492,9413],"delegatorTokens":9999999928633,"jailed":[null,1000000000000017,null,null],"status":["bonded","unbonding","bonded","unbonding"]}},{"ix":113,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":114,"action":{"kind":"Deliver","chain":"provider","numPackets":3},"partialState":{"h":10,"t":60,"tokens":[21618,10719,3492,10413],"delegation":[20618,9719,2492,9413],"delegatorTokens":9999999928633,"jailed":[null,1000000000000017,null,null],"status":["bonded","unbonding","bonded","unbonding"]}},{"ix":115,"action":{"kind":"Deliver","chain":"provider","numPackets":5},"partialState":{"h":10,"t":60,"tokens":[21618,10719,3492,10413],"delegation":[20618,9719,2492,9413],"delegatorTokens":9999999928633,"jailed":[null,1000000000000017,null,null],"status":["bonded","unbonding","bonded","unbonding"]}},{"ix":116,"action":{"kind":"Undelegate","val":3,"amt":1187},"partialState":{"h":10,"t":60,"tokens":[21618,10719,3492,9226],"delegation":[20618,9719,2492,8226],"delegatorTokens":9999999928633}},{"ix":117,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":118,"action":{"kind":"Delegate","val":1,"amt":2149},"partialState":{"h":10,"t":60,"tokens":[21618,12868,3492,9226],"delegation":[20618,11868,2492,8226],"delegatorTokens":9999999926484}},{"ix":119,"action":{"kind":"Deliver","chain":"provider","numPackets":4},"partialState":{"h":10,"t":60,"tokens":[21618,12868,3492,9226],"delegation":[20618,11868,2492,8226],"delegatorTokens":9999999926484,"jailed":[null,1000000000000017,null,null],"status":["bonded","unbonding","bonded","unbonding"]}},{"ix":120,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":12,"t":72,"consumerPower":[21081,null,7577,null],"outstandingDowntime":[false,false,true,true]}},{"ix":121,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":122,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":11,"t":66,"tokens":[21618,12868,3492,9226],"delegation":[20618,11868,2492,8226],"delegatorTokens":9999999926484,"jailed":[null,1000000000000017,null,null],"status":["bonded","unbonding","unbonding","bonded"]}},{"ix":123,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":13,"t":78,"consumerPower":[21081,null,7577,null],"outstandingDowntime":[false,false,true,true]}},{"ix":124,"action":{"kind":"Undelegate","val":2,"amt":1894},"partialState":{"h":11,"t":66,"tokens":[21618,12868,1598,9226],"delegation":[20618,11868,598,8226],"delegatorTokens":9999999926484}},{"ix":125,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":12,"t":72,"tokens":[21618,12868,1598,9226],"delegation":[20618,11868,598,8226],"delegatorTokens":9999999926484,"jailed":[null,1000000000000017,null,null],"status":["bonded","unbonding","unbonding","bonded"]}},{"ix":126,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":13,"t":78,"tokens":[21618,12868,1598,9226],"delegation":[20618,11868,598,8226],"delegatorTokens":9999999926484,"jailed":[null,1000000000000017,null,null],"status":["bonded","unbonding","unbonding","bonded"]}},{"ix":127,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":14,"t":84,"tokens":[21618,12868,1598,9226],"delegation":[20618,11868,598,8226],"delegatorTokens":9999999926484,"jailed":[null,1000000000000017,null,null],"status":["bonded","unbonding","unbonding","bonded"]}},{"ix":128,"action":{"kind":"Undelegate","val":3,"amt":3540},"partialState":{"h":14,"t":84,"tokens":[21618,12868,1598,5686],"delegation":[20618,11868,598,4686],"delegatorTokens":9999999926484}},{"ix":129,"action":{"kind":"Deliver","chain":"provider","numPackets":4},"partialState":{"h":14,"t":84,"tokens":[21618,12868,1598,5686],"delegation":[20618,11868,598,4686],"delegatorTokens":9999999926484,"jailed":[null,1000000000000017,null,null],"status":["bonded","unbonding","unbonding","bonded"]}},{"ix":130,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":131,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":132,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":15,"t":90,"tokens":[21618,12868,1598,5686],"delegation":[20618,11868,598,4686],"delegatorTokens":9999999926484,"jailed":[null,1000000000000017,null,null],"status":["bonded","unbonding","unbonding","bonded"]}},{"ix":133,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":14,"t":84,"consumerPower":[21081,null,7577,null],"outstandingDowntime":[false,false,true,true]}},{"ix":134,"action":{"kind":"Delegate","val":2,"amt":4932},"partialState":{"h":15,"t":90,"tokens":[21618,12868,6530,5686],"delegation":[20618,11868,5530,4686],"delegatorTokens":9999999921552}},{"ix":135,"action":{"kind":"Undelegate","val":2,"amt":1473},"partialState":{"h":15,"t":90,"tokens":[21618,12868,5057,5686],"delegation":[20618,11868,4057,4686],"delegatorTokens":9999999921552}},{"ix":136,"action":{"kind":"Delegate","val":2,"amt":1324},"partialState":{"h":15,"t":90,"tokens":[21618,12868,6381,5686],"delegation":[20618,11868,5381,4686],"delegatorTokens":9999999920228}},{"ix":137,"action":{"kind":"Deliver","chain":"provider","numPackets":2},"partialState":{"h":15,"t":90,"tokens":[21618,12868,6381,5686],"delegation":[20618,11868,5381,4686],"delegatorTokens":9999999920228,"jailed":[null,1000000000000017,null,null],"status":["bonded","unbonding","unbonding","bonded"]}},{"ix":138,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":139,"action":{"kind":"Undelegate","val":0,"amt":2224},"partialState":{"h":15,"t":90,"tokens":[19394,12868,6381,5686],"delegation":[18394,11868,5381,4686],"delegatorTokens":9999999920228}},{"ix":140,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":16,"t":96,"tokens":[19394,12868,6381,5686],"delegation":[18394,11868,5381,4686],"delegatorTokens":9999999927545,"jailed":[null,1000000000000017,null,null],"status":["bonded","unbonding","bonded","unbonding"]}},{"ix":141,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":142,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":143,"action":{"kind":"Deliver","chain":"consumer","numPackets":3},"partialState":{"h":14,"t":84,"consumerPower":[21081,null,7577,null],"outstandingDowntime":[false,false,true,true]}},{"ix":144,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":17,"t":102,"tokens":[19394,12868,6381,5686],"delegation":[18394,11868,5381,4686],"delegatorTokens":9999999927545,"jailed":[null,1000000000000017,null,null],"status":["bonded","unbonding","bonded","unbonding"]}},{"ix":145,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":146,"action":{"kind":"Deliver","chain":"consumer","numPackets":6},"partialState":{"h":14,"t":84,"consumerPower":[21081,null,7577,null],"outstandingDowntime":[false,false,true,true]}},{"ix":147,"action":{"kind":"Delegate","val":2,"amt":2407},"partialState":{"h":17,"t":102,"tokens":[19394,12868,8788,5686],"delegation":[18394,11868,7788,4686],"delegatorTokens":9999999925138}},{"ix":148,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":149,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":18,"t":108,"tokens":[19394,12868,8788,5686],"delegation":[18394,11868,7788,4686],"delegatorTokens":9999999925138,"jailed":[null,1000000000000017,null,null],"status":["bonded","unbonding","bonded","unbonding"]}},{"ix":150,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":151,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":15,"t":90,"consumerPower":[19394,null,6381,null],"outstandingDowntime":[false,false,true,true]}},{"ix":152,"action":{"kind":"Undelegate","val":2,"amt":2756},"partialState":{"h":18,"t":108,"tokens":[19394,12868,6032,5686],"delegation":[18394,11868,5032,4686],"delegatorTokens":9999999925138}},{"ix":153,"action":{"kind":"Delegate","val":2,"amt":2059},"partialState":{"h":18,"t":108,"tokens":[19394,12868,8091,5686],"delegation":[18394,11868,7091,4686],"delegatorTokens":9999999923079}},{"ix":154,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":16,"t":96,"consumerPower":[19394,null,6381,null],"outstandingDowntime":[false,false,true,true]}},{"ix":155,"action":{"kind":"Deliver","chain":"provider","numPackets":2},"partialState":{"h":18,"t":108,"tokens":[19394,12868,8091,5686],"delegation":[18394,11868,7091,4686],"delegatorTokens":9999999923079,"jailed":[null,1000000000000017,null,null],"status":["bonded","unbonding","bonded","unbonding"]}},{"ix":156,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":157,"action":{"kind":"Delegate","val":2,"amt":4002},"partialState":{"h":18,"t":108,"tokens":[19394,12868,12093,5686],"delegation":[18394,11868,11093,4686],"delegatorTokens":9999999919077}},{"ix":158,"action":{"kind":"Delegate","val":2,"amt":2758},"partialState":{"h":18,"t":108,"tokens":[19394,12868,14851,5686],"delegation":[18394,11868,13851,4686],"delegatorTokens":9999999916319}},{"ix":159,"action":{"kind":"Deliver","chain":"consumer","numPackets":4},"partialState":{"h":16,"t":96,"consumerPower":[19394,null,6381,null],"outstandingDowntime":[false,false,true,true]}},{"ix":160,"action":{"kind":"Deliver","chain":"provider","numPackets":6},"partialState":{"h":18,"t":108,"tokens":[19394,12868,14851,5686],"delegation":[18394,11868,13851,4686],"delegatorTokens":9999999916319,"jailed":[null,1000000000000017,null,null],"status":["bonded","unbonding","bonded","unbonding"]}},{"ix":161,"action":{"kind":"Delegate","val":2,"amt":2569},"partialState":{"h":18,"t":108,"tokens":[19394,12868,17420,5686],"delegation":[18394,11868,16420,4686],"delegatorTokens":9999999913750}},{"ix":162,"action":{"kind":"Undelegate","val":3,"amt":3950},"partialState":{"h":18,"t":108,"tokens":[19394,12868,17420,1736],"delegation":[18394,11868,16420,736],"delegatorTokens":9999999913750}},{"ix":163,"action":{"kind":"Deliver","chain":"provider","numPackets":5},"partialState":{"h":18,"t":108,"tokens":[19394,12868,17420,1736],"delegation":[18394,11868,16420,736],"delegatorTokens":9999999913750,"jailed":[null,1000000000000017,null,null],"status":["bonded","unbonding","bonded","unbonding"]}},{"ix":164,"action":{"kind":"Deliver","chain":"provider","numPackets":2},"partialState":{"h":18,"t":108,"tokens":[19394,12868,17420,1736],"delegation":[18394,11868,16420,736],"delegatorTokens":9999999913750,"jailed":[null,1000000000000017,null,null],"status":["bonded","unbonding","bonded","unbonding"]}},{"ix":165,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":166,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":17,"t":102,"consumerPower":[19394,null,6381,null],"outstandingDowntime":[false,false,true,true]}},{"ix":167,"action":{"kind":"Delegate","val":0,"amt":2772},"partialState":{"h":18,"t":108,"tokens":[22166,12868,17420,1736],"delegation":[21166,11868,16420,736],"delegatorTokens":9999999910978}},{"ix":168,"action":{"kind":"Undelegate","val":3,"amt":2067},"partialState":{"h":18,"t":108,"tokens":[22166,12868,17420,1736],"delegation":[21166,11868,16420,736],"delegatorTokens":9999999910978}},{"ix":169,"action":{"kind":"Delegate","val":1,"amt":3730},"partialState":{"h":18,"t":108,"tokens":[22166,16598,17420,1736],"delegation":[21166,15598,16420,736],"delegatorTokens":9999999907248}},{"ix":170,"action":{"kind":"Delegate","val":2,"amt":4728},"partialState":{"h":18,"t":108,"tokens":[22166,16598,22148,1736],"delegation":[21166,15598,21148,736],"delegatorTokens":9999999902520}},{"ix":171,"action":{"kind":"Deliver","chain":"provider","numPackets":2},"partialState":{"h":18,"t":108,"tokens":[22166,16598,22148,1736],"delegation":[21166,15598,21148,736],"delegatorTokens":9999999902520,"jailed":[null,1000000000000017,null,null],"status":["bonded","unbonding","bonded","unbonding"]}},{"ix":172,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":18,"t":108,"consumerPower":[19394,null,6381,null],"outstandingDowntime":[false,false,true,true]}},{"ix":173,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":19,"t":114,"consumerPower":[19394,null,6381,null],"outstandingDowntime":[false,false,true,true]}},{"ix":174,"action":{"kind":"Undelegate","val":0,"amt":3760},"partialState":{"h":18,"t":108,"tokens":[18406,16598,22148,1736],"delegation":[17406,15598,21148,736],"delegatorTokens":9999999902520}},{"ix":175,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":176,"action":{"kind":"Undelegate","val":0,"amt":1889},"partialState":{"h":18,"t":108,"tokens":[16517,16598,22148,1736],"delegation":[15517,15598,21148,736],"delegatorTokens":9999999902520}},{"ix":177,"action":{"kind":"Undelegate","val":0,"amt":1331},"partialState":{"h":18,"t":108,"tokens":[15186,16598,22148,1736],"delegation":[14186,15598,21148,736],"delegatorTokens":9999999902520}},{"ix":178,"action":{"kind":"Delegate","val":1,"amt":4411},"partialState":{"h":18,"t":108,"tokens":[15186,21009,22148,1736],"delegation":[14186,20009,21148,736],"delegatorTokens":9999999898109}},{"ix":179,"action":{"kind":"Deliver","chain":"consumer","numPackets":6},"partialState":{"h":19,"t":114,"consumerPower":[19394,null,6381,null],"outstandingDowntime":[false,false,true,true]}},{"ix":180,"action":{"kind":"Delegate","val":3,"amt":3075},"partialState":{"h":18,"t":108,"tokens":[15186,21009,22148,4811],"delegation":[14186,20009,21148,3811],"delegatorTokens":9999999895034}},{"ix":181,"action":{"kind":"Deliver","chain":"consumer","numPackets":1},"partialState":{"h":19,"t":114,"consumerPower":[19394,null,6381,null],"outstandingDowntime":[false,false,true,true]}},{"ix":182,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":183,"action":{"kind":"Delegate","val":2,"amt":4752},"partialState":{"h":18,"t":108,"tokens":[15186,21009,26900,4811],"delegation":[14186,20009,25900,3811],"delegatorTokens":9999999890282}},{"ix":184,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":185,"action":{"kind":"Delegate","val":0,"amt":4670},"partialState":{"h":18,"t":108,"tokens":[19856,21009,26900,4811],"delegation":[18856,20009,25900,3811],"delegatorTokens":9999999885612}},{"ix":186,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":187,"action":{"kind":"Delegate","val":1,"amt":2861},"partialState":{"h":18,"t":108,"tokens":[19856,23870,26900,4811],"delegation":[18856,22870,25900,3811],"delegatorTokens":9999999882751}},{"ix":188,"action":{"kind":"Delegate","val":1,"amt":4346},"partialState":{"h":18,"t":108,"tokens":[19856,28216,26900,4811],"delegation":[18856,27216,25900,3811],"delegatorTokens":9999999878405}},{"ix":189,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":190,"action":{"kind":"Undelegate","val":1,"amt":1432},"partialState":{"h":18,"t":108,"tokens":[19856,26784,26900,4811],"delegation":[18856,25784,25900,3811],"delegatorTokens":9999999878405}},{"ix":191,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":20,"t":120,"consumerPower":[19394,null,6381,null],"outstandingDowntime":[false,false,true,true]}},{"ix":192,"action":{"kind":"Delegate","val":3,"amt":1800},"partialState":{"h":18,"t":108,"tokens":[19856,26784,26900,6611],"delegation":[18856,25784,25900,5611],"delegatorTokens":9999999876605}},{"ix":193,"action":{"kind":"Deliver","chain":"consumer","numPackets":3},"partialState":{"h":20,"t":120,"consumerPower":[19394,null,6381,null],"outstandingDowntime":[false,false,true,true]}},{"ix":194,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":195,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":19,"t":114,"tokens":[19856,26784,26900,6611],"delegation":[18856,25784,25900,5611],"delegatorTokens":9999999893603,"jailed":[null,1000000000000017,null,null],"status":["bonded","unbonding","bonded","unbonding"]}},{"ix":196,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":20,"t":120,"tokens":[19856,26784,26900,6611],"delegation":[18856,25784,25900,5611],"delegatorTokens":9999999893603,"jailed":[null,1000000000000017,null,null],"status":["bonded","unbonded","bonded","unbonding"]}},{"ix":197,"action":{"kind":"Deliver","chain":"consumer","numPackets":4},"partialState":{"h":20,"t":120,"consumerPower":[19394,null,6381,null],"outstandingDowntime":[false,false,true,true]}},{"ix":198,"action":{"kind":"Delegate","val":0,"amt":3898},"partialState":{"h":20,"t":120,"tokens":[23754,26784,26900,6611],"delegation":[22754,25784,25900,5611],"delegatorTokens":9999999889705}},{"ix":199,"action":{"kind":"Deliver","chain":"consumer","numPackets":1},"partialState":{"h":20,"t":120,"consumerPower":[19394,null,6381,null],"outstandingDowntime":[false,false,true,true]}}],"events":["send_double_sign_slash_request","send_downtime_slash_request","insufficient_shares","insufficient_shares","send_downtime_slash_request","insufficient_shares","insufficient_shares","insufficient_shares","send_downtime_slash_request","send_vsc_without_downtime_ack","send_vsc_without_downtime_ack","consumer_update_val","consumer_update_val","receive_double_sign_slash_request","insufficient_shares","receive_slash_request_unbonded","receive_slash_request_unbonded","receive_downtime_slash_request","jail","send_vsc_with_downtime_ack","send_vsc_without_downtime_ack","insufficient_shares","receive_downtime_slash_ack","send_vsc_without_downtime_ack","consumer_del_val","consumer_update_val","consumer_add_val","send_vsc_without_downtime_ack","consumer_add_val","consumer_del_val","consumer_update_val","consumer_update_val","insufficient_shares","send_vsc_without_downtime_ack","rebond_unval","send_vsc_without_downtime_ack","consumer_send_maturation","send_vsc_not_because_change","send_vsc_without_downtime_ack","some_undels_expired_but_not_completed","send_vsc_without_downtime_ack","rebond_unval","some_undels_expired_but_not_completed","complete_undel_immediate","complete_undel_immediate","send_vsc_without_downtime_ack","some_undels_expired_but_not_completed","send_vsc_without_downtime_ack","consumer_send_maturation","consumer_send_maturation","consumer_send_maturation","consumer_update_val","consumer_update_val","consumer_del_val","consumer_send_maturation","consumer_send_maturation","insufficient_shares","complete_undel_immediate","complete_undel_immediate","complete_undel_immediate","complete_undel_immediate","complete_undel_immediate","complete_undel_immediate","set_unval_hold_false","send_vsc_without_downtime_ack","complete_unval_in_endblock"]},{"meta":{"commit":"7ffd0c04e4205cbc9caf212abfe6c59ee43153bf"},"constants":{"P":"provider","C":"consumer","UNBONDING_SECONDS_P":70,"UNBONDING_SECONDS_C":50,"TRUSTING_SECONDS":49,"NUM_VALIDATORS":4,"MAX_VALIDATORS":2,"SLASH_DOUBLESIGN":0,"SLASH_DOWNTIME":0,"JAIL_SECONDS":999999999999999,"BLOCK_SECONDS":6,"INITIAL_DELEGATOR_TOKENS":10000000000000,"DELEGATE_AMT_MIN":1000,"DELEGATE_AMT_MAX":5000,"UNDELEGATE_AMT_MIN":1000,"UNDELEGATE_AMT_MAX":5000,"ISDOWNTIME_PROBABILITY":0.5,"MAX_NUM_PACKETS_FOR_DELIVER":6},"actions":[{"ix":0,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":1,"action":{"kind":"Delegate","val":0,"amt":4141},"partialState":{"h":1,"t":6,"tokens":[9141,4000,3000,2000],"delegation":[8141,3000,2000,1000],"delegatorTokens":9999999995859}},{"ix":2,"action":{"kind":"Undelegate","val":3,"amt":3274},"partialState":{"h":1,"t":6,"tokens":[9141,4000,3000,2000],"delegation":[8141,3000,2000,1000],"delegatorTokens":9999999995859}},{"ix":3,"action":{"kind":"Deliver","chain":"consumer","numPackets":6},"partialState":{"h":1,"t":6,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":4,"action":{"kind":"ConsumerSlash","val":3,"infractionHeight":0,"isDowntime":true},"partialState":{"h":1,"t":6,"outstandingDowntime":[false,false,false,true]}},{"ix":5,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":6,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":7,"action":{"kind":"Undelegate","val":1,"amt":4111},"partialState":{"h":1,"t":6,"tokens":[9141,4000,3000,2000],"delegation":[8141,3000,2000,1000],"delegatorTokens":9999999995859}},{"ix":8,"action":{"kind":"ConsumerSlash","val":0,"infractionHeight":0,"isDowntime":true},"partialState":{"h":1,"t":6,"outstandingDowntime":[true,false,false,true]}},{"ix":9,"action":{"kind":"ConsumerSlash","val":2,"infractionHeight":0,"isDowntime":true},"partialState":{"h":1,"t":6,"outstandingDowntime":[true,false,true,true]}},{"ix":10,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":2,"t":12,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[true,false,true,true]}},{"ix":11,"action":{"kind":"Delegate","val":1,"amt":2799},"partialState":{"h":1,"t":6,"tokens":[9141,6799,3000,2000],"delegation":[8141,5799,2000,1000],"delegatorTokens":9999999993060}},{"ix":12,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":13,"action":{"kind":"Delegate","val":0,"amt":2677},"partialState":{"h":1,"t":6,"tokens":[11818,6799,3000,2000],"delegation":[10818,5799,2000,1000],"delegatorTokens":9999999990383}},{"ix":14,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":3,"t":18,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[true,false,true,true]}},{"ix":15,"action":{"kind":"Deliver","chain":"provider","numPackets":6},"partialState":{"h":1,"t":6,"tokens":[11818,6799,3000,2000],"delegation":[10818,5799,2000,1000],"delegatorTokens":9999999990383,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":16,"action":{"kind":"Deliver","chain":"consumer","numPackets":2},"partialState":{"h":3,"t":18,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[true,false,true,true]}},{"ix":17,"action":{"kind":"Delegate","val":2,"amt":2867},"partialState":{"h":1,"t":6,"tokens":[11818,6799,5867,2000],"delegation":[10818,5799,4867,1000],"delegatorTokens":9999999987516}},{"ix":18,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":4,"t":24,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[true,false,true,true]}},{"ix":19,"action":{"kind":"Undelegate","val":3,"amt":4128},"partialState":{"h":1,"t":6,"tokens":[11818,6799,5867,2000],"delegation":[10818,5799,4867,1000],"delegatorTokens":9999999987516}},{"ix":20,"action":{"kind":"Undelegate","val":3,"amt":1718},"partialState":{"h":1,"t":6,"tokens":[11818,6799,5867,2000],"delegation":[10818,5799,4867,1000],"delegatorTokens":9999999987516}},{"ix":21,"action":{"kind":"Delegate","val":3,"amt":2945},"partialState":{"h":1,"t":6,"tokens":[11818,6799,5867,4945],"delegation":[10818,5799,4867,3945],"delegatorTokens":9999999984571}},{"ix":22,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":2,"t":12,"tokens":[11818,6799,5867,4945],"delegation":[10818,5799,4867,3945],"delegatorTokens":9999999984571,"jailed":[1000000000000005,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":23,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":5,"t":30,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[true,false,true,true]}},{"ix":24,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":3,"t":18,"tokens":[11818,6799,5867,4945],"delegation":[10818,5799,4867,3945],"delegatorTokens":9999999984571,"jailed":[1000000000000005,null,null,null],"status":["unbonding","bonded","bonded","unbonded"]}},{"ix":25,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":26,"action":{"kind":"Deliver","chain":"provider","numPackets":3},"partialState":{"h":3,"t":18,"tokens":[11818,6799,5867,4945],"delegation":[10818,5799,4867,3945],"delegatorTokens":9999999984571,"jailed":[1000000000000005,null,null,null],"status":["unbonding","bonded","bonded","unbonded"]}},{"ix":27,"action":{"kind":"Delegate","val":0,"amt":2967},"partialState":{"h":3,"t":18,"tokens":[14785,6799,5867,4945],"delegation":[13785,5799,4867,3945],"delegatorTokens":9999999981604}},{"ix":28,"action":{"kind":"Undelegate","val":3,"amt":1413},"partialState":{"h":3,"t":18,"tokens":[14785,6799,5867,3532],"delegation":[13785,5799,4867,2532],"delegatorTokens":9999999981604}},{"ix":29,"action":{"kind":"Deliver","chain":"provider","numPackets":5},"partialState":{"h":3,"t":18,"tokens":[14785,6799,5867,3532],"delegation":[13785,5799,4867,2532],"delegatorTokens":9999999981604,"jailed":[1000000000000005,null,null,null],"status":["unbonding","bonded","bonded","unbonded"]}},{"ix":30,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":4,"t":24,"tokens":[14785,6799,5867,3532],"delegation":[13785,5799,4867,2532],"delegatorTokens":9999999981604,"jailed":[1000000000000005,null,null,null],"status":["unbonding","bonded","bonded","unbonded"]}},{"ix":31,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":32,"action":{"kind":"Delegate","val":0,"amt":1848},"partialState":{"h":4,"t":24,"tokens":[16633,6799,5867,3532],"delegation":[15633,5799,4867,2532],"delegatorTokens":9999999979756}},{"ix":33,"action":{"kind":"Delegate","val":0,"amt":4604},"partialState":{"h":4,"t":24,"tokens":[21237,6799,5867,3532],"delegation":[20237,5799,4867,2532],"delegatorTokens":9999999975152}},{"ix":34,"action":{"kind":"Deliver","chain":"provider","numPackets":3},"partialState":{"h":4,"t":24,"tokens":[21237,6799,5867,3532],"delegation":[20237,5799,4867,2532],"delegatorTokens":9999999975152,"jailed":[1000000000000005,null,null,null],"status":["unbonding","bonded","bonded","unbonded"]}},{"ix":35,"action":{"kind":"Delegate","val":3,"amt":4407},"partialState":{"h":4,"t":24,"tokens":[21237,6799,5867,7939],"delegation":[20237,5799,4867,6939],"delegatorTokens":9999999970745}},{"ix":36,"action":{"kind":"Undelegate","val":3,"amt":4760},"partialState":{"h":4,"t":24,"tokens":[21237,6799,5867,3179],"delegation":[20237,5799,4867,2179],"delegatorTokens":9999999970745}},{"ix":37,"action":{"kind":"Deliver","chain":"consumer","numPackets":3},"partialState":{"h":5,"t":30,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,false,true,true]}},{"ix":38,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":39,"action":{"kind":"Undelegate","val":2,"amt":3851},"partialState":{"h":4,"t":24,"tokens":[21237,6799,2016,3179],"delegation":[20237,5799,1016,2179],"delegatorTokens":9999999970745}},{"ix":40,"action":{"kind":"Undelegate","val":0,"amt":1898},"partialState":{"h":4,"t":24,"tokens":[19339,6799,2016,3179],"delegation":[18339,5799,1016,2179],"delegatorTokens":9999999970745}},{"ix":41,"action":{"kind":"Delegate","val":0,"amt":4492},"partialState":{"h":4,"t":24,"tokens":[23831,6799,2016,3179],"delegation":[22831,5799,1016,2179],"delegatorTokens":9999999966253}},{"ix":42,"action":{"kind":"Deliver","chain":"consumer","numPackets":4},"partialState":{"h":5,"t":30,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,false,true,true]}},{"ix":43,"action":{"kind":"Delegate","val":2,"amt":3473},"partialState":{"h":4,"t":24,"tokens":[23831,6799,5489,3179],"delegation":[22831,5799,4489,2179],"delegatorTokens":9999999962780}},{"ix":44,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":45,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":46,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":5,"t":30,"tokens":[23831,6799,5489,3179],"delegation":[22831,5799,4489,2179],"delegatorTokens":9999999962780,"jailed":[1000000000000005,null,null,null],"status":["unbonding","bonded","bonded","unbonded"]}},{"ix":47,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":6,"t":36,"tokens":[23831,6799,5489,3179],"delegation":[22831,5799,4489,2179],"delegatorTokens":9999999962780,"jailed":[1000000000000005,null,null,null],"status":["unbonding","bonded","bonded","unbonded"]}},{"ix":48,"action":{"kind":"Delegate","val":3,"amt":3119},"partialState":{"h":6,"t":36,"tokens":[23831,6799,5489,6298],"delegation":[22831,5799,4489,5298],"delegatorTokens":9999999959661}},{"ix":49,"action":{"kind":"Delegate","val":3,"amt":3555},"partialState":{"h":6,"t":36,"tokens":[23831,6799,5489,9853],"delegation":[22831,5799,4489,8853],"delegatorTokens":9999999956106}},{"ix":50,"action":{"kind":"Delegate","val":0,"amt":4258},"partialState":{"h":6,"t":36,"tokens":[28089,6799,5489,9853],"delegation":[27089,5799,4489,8853],"delegatorTokens":9999999951848}},{"ix":51,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":7,"t":42,"tokens":[28089,6799,5489,9853],"delegation":[27089,5799,4489,8853],"delegatorTokens":9999999951848,"jailed":[1000000000000005,null,null,null],"status":["unbonding","bonded","unbonding","bonded"]}},{"ix":52,"action":{"kind":"Delegate","val":1,"amt":3315},"partialState":{"h":7,"t":42,"tokens":[28089,10114,5489,9853],"delegation":[27089,9114,4489,8853],"delegatorTokens":9999999948533}},{"ix":53,"action":{"kind":"Undelegate","val":3,"amt":2154},"partialState":{"h":7,"t":42,"tokens":[28089,10114,5489,7699],"delegation":[27089,9114,4489,6699],"delegatorTokens":9999999948533}},{"ix":54,"action":{"kind":"Delegate","val":1,"amt":1493},"partialState":{"h":7,"t":42,"tokens":[28089,11607,5489,7699],"delegation":[27089,10607,4489,6699],"delegatorTokens":9999999947040}},{"ix":55,"action":{"kind":"Delegate","val":0,"amt":3643},"partialState":{"h":7,"t":42,"tokens":[31732,11607,5489,7699],"delegation":[30732,10607,4489,6699],"delegatorTokens":9999999943397}},{"ix":56,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":6,"t":36,"consumerPower":[null,6799,5867,null],"outstandingDowntime":[false,false,true,true]}},{"ix":57,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":7,"t":42,"consumerPower":[null,6799,5867,null],"outstandingDowntime":[false,false,true,true]}},{"ix":58,"action":{"kind":"Deliver","chain":"provider","numPackets":3},"partialState":{"h":7,"t":42,"tokens":[31732,11607,5489,7699],"delegation":[30732,10607,4489,6699],"delegatorTokens":9999999943397,"jailed":[1000000000000005,null,null,null],"status":["unbonding","bonded","unbonding","bonded"]}},{"ix":59,"action":{"kind":"Undelegate","val":3,"amt":1079},"partialState":{"h":7,"t":42,"tokens":[31732,11607,5489,6620],"delegation":[30732,10607,4489,5620],"delegatorTokens":9999999943397}},{"ix":60,"action":{"kind":"Undelegate","val":3,"amt":4595},"partialState":{"h":7,"t":42,"tokens":[31732,11607,5489,2025],"delegation":[30732,10607,4489,1025],"delegatorTokens":9999999943397}},{"ix":61,"action":{"kind":"Undelegate","val":0,"amt":1074},"partialState":{"h":7,"t":42,"tokens":[30658,11607,5489,2025],"delegation":[29658,10607,4489,1025],"delegatorTokens":9999999943397}},{"ix":62,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":63,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":64,"action":{"kind":"Deliver","chain":"consumer","numPackets":3},"partialState":{"h":7,"t":42,"consumerPower":[null,6799,5867,null],"outstandingDowntime":[false,false,true,true]}},{"ix":65,"action":{"kind":"Deliver","chain":"provider","numPackets":1},"partialState":{"h":7,"t":42,"tokens":[30658,11607,5489,2025],"delegation":[29658,10607,4489,1025],"delegatorTokens":9999999943397,"jailed":[1000000000000005,null,null,null],"status":["unbonding","bonded","unbonding","bonded"]}},{"ix":66,"action":{"kind":"Undelegate","val":3,"amt":4904},"partialState":{"h":7,"t":42,"tokens":[30658,11607,5489,2025],"delegation":[29658,10607,4489,1025],"delegatorTokens":9999999943397}},{"ix":67,"action":{"kind":"Undelegate","val":0,"amt":1194},"partialState":{"h":7,"t":42,"tokens":[29464,11607,5489,2025],"delegation":[28464,10607,4489,1025],"delegatorTokens":9999999943397}},{"ix":68,"action":{"kind":"Undelegate","val":0,"amt":2824},"partialState":{"h":7,"t":42,"tokens":[26640,11607,5489,2025],"delegation":[25640,10607,4489,1025],"delegatorTokens":9999999943397}},{"ix":69,"action":{"kind":"Undelegate","val":0,"amt":4285},"partialState":{"h":7,"t":42,"tokens":[22355,11607,5489,2025],"delegation":[21355,10607,4489,1025],"delegatorTokens":9999999943397}},{"ix":70,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":8,"t":48,"consumerPower":[null,6799,5489,null],"outstandingDowntime":[false,false,true,true]}},{"ix":71,"action":{"kind":"Undelegate","val":0,"amt":4795},"partialState":{"h":7,"t":42,"tokens":[17560,11607,5489,2025],"delegation":[16560,10607,4489,1025],"delegatorTokens":9999999943397}},{"ix":72,"action":{"kind":"Deliver","chain":"provider","numPackets":1},"partialState":{"h":7,"t":42,"tokens":[17560,11607,5489,2025],"delegation":[16560,10607,4489,1025],"delegatorTokens":9999999943397,"jailed":[1000000000000005,null,null,null],"status":["unbonding","bonded","unbonding","bonded"]}},{"ix":73,"action":{"kind":"Undelegate","val":2,"amt":2156},"partialState":{"h":7,"t":42,"tokens":[17560,11607,3333,2025],"delegation":[16560,10607,2333,1025],"delegatorTokens":9999999943397}},{"ix":74,"action":{"kind":"Deliver","chain":"provider","numPackets":1},"partialState":{"h":7,"t":42,"tokens":[17560,11607,3333,2025],"delegation":[16560,10607,2333,1025],"delegatorTokens":9999999943397,"jailed":[1000000000000005,null,null,null],"status":["unbonding","bonded","unbonding","bonded"]}},{"ix":75,"action":{"kind":"Delegate","val":0,"amt":4239},"partialState":{"h":7,"t":42,"tokens":[21799,11607,3333,2025],"delegation":[20799,10607,2333,1025],"delegatorTokens":9999999939158}},{"ix":76,"action":{"kind":"Undelegate","val":1,"amt":1344},"partialState":{"h":7,"t":42,"tokens":[21799,10263,3333,2025],"delegation":[20799,9263,2333,1025],"delegatorTokens":9999999939158}},{"ix":77,"action":{"kind":"Delegate","val":3,"amt":3973},"partialState":{"h":7,"t":42,"tokens":[21799,10263,3333,5998],"delegation":[20799,9263,2333,4998],"delegatorTokens":9999999935185}},{"ix":78,"action":{"kind":"Delegate","val":0,"amt":1196},"partialState":{"h":7,"t":42,"tokens":[22995,10263,3333,5998],"delegation":[21995,9263,2333,4998],"delegatorTokens":9999999933989}},{"ix":79,"action":{"kind":"Delegate","val":2,"amt":2072},"partialState":{"h":7,"t":42,"tokens":[22995,10263,5405,5998],"delegation":[21995,9263,4405,4998],"delegatorTokens":9999999931917}},{"ix":80,"action":{"kind":"Undelegate","val":0,"amt":1053},"partialState":{"h":7,"t":42,"tokens":[21942,10263,5405,5998],"delegation":[20942,9263,4405,4998],"delegatorTokens":9999999931917}},{"ix":81,"action":{"kind":"Undelegate","val":1,"amt":2167},"partialState":{"h":7,"t":42,"tokens":[21942,8096,5405,5998],"delegation":[20942,7096,4405,4998],"delegatorTokens":9999999931917}},{"ix":82,"action":{"kind":"Delegate","val":1,"amt":4556},"partialState":{"h":7,"t":42,"tokens":[21942,12652,5405,5998],"delegation":[20942,11652,4405,4998],"delegatorTokens":9999999927361}},{"ix":83,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":9,"t":54,"consumerPower":[null,6799,5489,null],"outstandingDowntime":[false,false,true,true]}},{"ix":84,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":85,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":86,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":8,"t":48,"tokens":[21942,12652,5405,5998],"delegation":[20942,11652,4405,4998],"delegatorTokens":9999999927361,"jailed":[1000000000000005,null,null,null],"status":["unbonding","bonded","unbonding","bonded"]}},{"ix":87,"action":{"kind":"Undelegate","val":1,"amt":4283},"partialState":{"h":8,"t":48,"tokens":[21942,8369,5405,5998],"delegation":[20942,7369,4405,4998],"delegatorTokens":9999999927361}},{"ix":88,"action":{"kind":"Delegate","val":3,"amt":2331},"partialState":{"h":8,"t":48,"tokens":[21942,8369,5405,8329],"delegation":[20942,7369,4405,7329],"delegatorTokens":9999999925030}},{"ix":89,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":10,"t":60,"consumerPower":[null,6799,5489,null],"outstandingDowntime":[false,false,true,true]}},{"ix":90,"action":{"kind":"Deliver","chain":"provider","numPackets":5},"partialState":{"h":8,"t":48,"tokens":[21942,8369,5405,8329],"delegation":[20942,7369,4405,7329],"delegatorTokens":9999999925030,"jailed":[1000000000000005,null,null,null],"status":["unbonding","bonded","unbonding","bonded"]}},{"ix":91,"action":{"kind":"Delegate","val":3,"amt":2313},"partialState":{"h":8,"t":48,"tokens":[21942,8369,5405,10642],"delegation":[20942,7369,4405,9642],"delegatorTokens":9999999922717}},{"ix":92,"action":{"kind":"Delegate","val":1,"amt":1146},"partialState":{"h":8,"t":48,"tokens":[21942,9515,5405,10642],"delegation":[20942,8515,4405,9642],"delegatorTokens":9999999921571}},{"ix":93,"action":{"kind":"Deliver","chain":"provider","numPackets":6},"partialState":{"h":8,"t":48,"tokens":[21942,9515,5405,10642],"delegation":[20942,8515,4405,9642],"delegatorTokens":9999999921571,"jailed":[1000000000000005,null,null,null],"status":["unbonding","bonded","unbonding","bonded"]}},{"ix":94,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":95,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":96,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":11,"t":66,"consumerPower":[null,6799,5489,null],"outstandingDowntime":[false,false,true,true]}},{"ix":97,"action":{"kind":"Deliver","chain":"consumer","numPackets":1},"partialState":{"h":11,"t":66,"consumerPower":[null,6799,5489,null],"outstandingDowntime":[false,false,true,true]}},{"ix":98,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":12,"t":72,"consumerPower":[null,6799,null,9853],"outstandingDowntime":[false,false,true,true]}},{"ix":99,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":100,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":101,"action":{"kind":"Undelegate","val":2,"amt":3951},"partialState":{"h":8,"t":48,"tokens":[21942,9515,1454,10642],"delegation":[20942,8515,454,9642],"delegatorTokens":9999999921571}},{"ix":102,"action":{"kind":"Undelegate","val":1,"amt":3362},"partialState":{"h":8,"t":48,"tokens":[21942,6153,1454,10642],"delegation":[20942,5153,454,9642],"delegatorTokens":9999999921571}},{"ix":103,"action":{"kind":"Undelegate","val":0,"amt":1459},"partialState":{"h":8,"t":48,"tokens":[20483,6153,1454,10642],"delegation":[19483,5153,454,9642],"delegatorTokens":9999999921571}},{"ix":104,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":105,"action":{"kind":"Undelegate","val":2,"amt":2780},"partialState":{"h":8,"t":48,"tokens":[20483,6153,1454,10642],"delegation":[19483,5153,454,9642],"delegatorTokens":9999999921571}},{"ix":106,"action":{"kind":"Undelegate","val":0,"amt":2676},"partialState":{"h":8,"t":48,"tokens":[17807,6153,1454,10642],"delegation":[16807,5153,454,9642],"delegatorTokens":9999999921571}},{"ix":107,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":9,"t":54,"tokens":[17807,6153,1454,10642],"delegation":[16807,5153,454,9642],"delegatorTokens":9999999921571,"jailed":[1000000000000005,null,null,null],"status":["unbonding","bonded","unbonding","bonded"]}},{"ix":108,"action":{"kind":"Undelegate","val":2,"amt":1373},"partialState":{"h":9,"t":54,"tokens":[17807,6153,1454,10642],"delegation":[16807,5153,454,9642],"delegatorTokens":9999999921571}},{"ix":109,"action":{"kind":"Undelegate","val":1,"amt":1048},"partialState":{"h":9,"t":54,"tokens":[17807,5105,1454,10642],"delegation":[16807,4105,454,9642],"delegatorTokens":9999999921571}},{"ix":110,"action":{"kind":"Delegate","val":0,"amt":1467},"partialState":{"h":9,"t":54,"tokens":[19274,5105,1454,10642],"delegation":[18274,4105,454,9642],"delegatorTokens":9999999920104}},{"ix":111,"action":{"kind":"Undelegate","val":1,"amt":4869},"partialState":{"h":9,"t":54,"tokens":[19274,5105,1454,10642],"delegation":[18274,4105,454,9642],"delegatorTokens":9999999920104}},{"ix":112,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":13,"t":78,"consumerPower":[null,6799,null,9853],"outstandingDowntime":[false,false,true,true]}},{"ix":113,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":114,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":115,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":116,"action":{"kind":"Undelegate","val":3,"amt":1658},"partialState":{"h":9,"t":54,"tokens":[19274,5105,1454,8984],"delegation":[18274,4105,454,7984],"delegatorTokens":9999999920104}},{"ix":117,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":10,"t":60,"tokens":[19274,5105,1454,8984],"delegation":[18274,4105,454,7984],"delegatorTokens":9999999920104,"jailed":[1000000000000005,null,null,null],"status":["unbonding","bonded","unbonding","bonded"]}},{"ix":118,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":11,"t":66,"tokens":[19274,5105,1454,8984],"delegation":[18274,4105,454,7984],"delegatorTokens":9999999920104,"jailed":[1000000000000005,null,null,null],"status":["unbonding","bonded","unbonding","bonded"]}},{"ix":119,"action":{"kind":"Delegate","val":3,"amt":4362},"partialState":{"h":11,"t":66,"tokens":[19274,5105,1454,13346],"delegation":[18274,4105,454,12346],"delegatorTokens":9999999915742}},{"ix":120,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":12,"t":72,"tokens":[19274,5105,1454,13346],"delegation":[18274,4105,454,12346],"delegatorTokens":9999999915742,"jailed":[1000000000000005,null,null,null],"status":["unbonding","bonded","unbonding","bonded"]}},{"ix":121,"action":{"kind":"Undelegate","val":1,"amt":2352},"partialState":{"h":12,"t":72,"tokens":[19274,2753,1454,13346],"delegation":[18274,1753,454,12346],"delegatorTokens":9999999915742}},{"ix":122,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":123,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":124,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":14,"t":84,"consumerPower":[null,6799,null,9853],"outstandingDowntime":[false,false,true,true]}},{"ix":125,"action":{"kind":"Undelegate","val":3,"amt":4312},"partialState":{"h":12,"t":72,"tokens":[19274,2753,1454,9034],"delegation":[18274,1753,454,8034],"delegatorTokens":9999999915742}},{"ix":126,"action":{"kind":"Delegate","val":3,"amt":3349},"partialState":{"h":12,"t":72,"tokens":[19274,2753,1454,12383],"delegation":[18274,1753,454,11383],"delegatorTokens":9999999912393}},{"ix":127,"action":{"kind":"Delegate","val":3,"amt":1692},"partialState":{"h":12,"t":72,"tokens":[19274,2753,1454,14075],"delegation":[18274,1753,454,13075],"delegatorTokens":9999999910701}},{"ix":128,"action":{"kind":"Undelegate","val":1,"amt":1776},"partialState":{"h":12,"t":72,"tokens":[19274,2753,1454,14075],"delegation":[18274,1753,454,13075],"delegatorTokens":9999999910701}},{"ix":129,"action":{"kind":"Undelegate","val":3,"amt":4810},"partialState":{"h":12,"t":72,"tokens":[19274,2753,1454,9265],"delegation":[18274,1753,454,8265],"delegatorTokens":9999999910701}},{"ix":130,"action":{"kind":"Delegate","val":1,"amt":3697},"partialState":{"h":12,"t":72,"tokens":[19274,6450,1454,9265],"delegation":[18274,5450,454,8265],"delegatorTokens":9999999907004}},{"ix":131,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":132,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":15,"t":90,"consumerPower":[null,6799,null,9853],"outstandingDowntime":[false,false,true,true]}},{"ix":133,"action":{"kind":"Deliver","chain":"consumer","numPackets":4},"partialState":{"h":15,"t":90,"consumerPower":[null,6799,null,9853],"outstandingDowntime":[false,false,true,true]}},{"ix":134,"action":{"kind":"Deliver","chain":"consumer","numPackets":5},"partialState":{"h":15,"t":90,"consumerPower":[null,6799,null,9853],"outstandingDowntime":[false,false,true,true]}},{"ix":135,"action":{"kind":"Delegate","val":3,"amt":1844},"partialState":{"h":12,"t":72,"tokens":[19274,6450,1454,11109],"delegation":[18274,5450,454,10109],"delegatorTokens":9999999905160}},{"ix":136,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":137,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":13,"t":78,"tokens":[19274,6450,1454,11109],"delegation":[18274,5450,454,10109],"delegatorTokens":9999999905160,"jailed":[1000000000000005,null,null,null],"status":["unbonding","bonded","unbonding","bonded"]}},{"ix":138,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":16,"t":96,"consumerPower":[null,5105,null,8984],"outstandingDowntime":[false,false,true,true]}},{"ix":139,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":140,"action":{"kind":"Delegate","val":2,"amt":1657},"partialState":{"h":13,"t":78,"tokens":[19274,6450,3111,11109],"delegation":[18274,5450,2111,10109],"delegatorTokens":9999999903503}},{"ix":141,"action":{"kind":"Undelegate","val":3,"amt":1972},"partialState":{"h":13,"t":78,"tokens":[19274,6450,3111,9137],"delegation":[18274,5450,2111,8137],"delegatorTokens":9999999903503}},{"ix":142,"action":{"kind":"Delegate","val":1,"amt":4567},"partialState":{"h":13,"t":78,"tokens":[19274,11017,3111,9137],"delegation":[18274,10017,2111,8137],"delegatorTokens":9999999898936}},{"ix":143,"action":{"kind":"Undelegate","val":2,"amt":1907},"partialState":{"h":13,"t":78,"tokens":[19274,11017,1204,9137],"delegation":[18274,10017,204,8137],"delegatorTokens":9999999898936}},{"ix":144,"action":{"kind":"Delegate","val":0,"amt":4169},"partialState":{"h":13,"t":78,"tokens":[23443,11017,1204,9137],"delegation":[22443,10017,204,8137],"delegatorTokens":9999999894767}},{"ix":145,"action":{"kind":"Deliver","chain":"consumer","numPackets":1},"partialState":{"h":16,"t":96,"consumerPower":[null,5105,null,8984],"outstandingDowntime":[false,false,true,true]}},{"ix":146,"action":{"kind":"Delegate","val":2,"amt":3025},"partialState":{"h":13,"t":78,"tokens":[23443,11017,4229,9137],"delegation":[22443,10017,3229,8137],"delegatorTokens":9999999891742}},{"ix":147,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":148,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":149,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":150,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":151,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":152,"action":{"kind":"Deliver","chain":"consumer","numPackets":2},"partialState":{"h":16,"t":96,"consumerPower":[null,5105,null,8984],"outstandingDowntime":[false,false,true,true]}},{"ix":153,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":17,"t":102,"consumerPower":[null,5105,null,13346],"outstandingDowntime":[false,false,true,true]}},{"ix":154,"action":{"kind":"Deliver","chain":"consumer","numPackets":1},"partialState":{"h":17,"t":102,"consumerPower":[null,5105,null,13346],"outstandingDowntime":[false,false,true,true]}},{"ix":155,"action":{"kind":"Delegate","val":1,"amt":2024},"partialState":{"h":13,"t":78,"tokens":[23443,13041,4229,9137],"delegation":[22443,12041,3229,8137],"delegatorTokens":9999999889718}},{"ix":156,"action":{"kind":"Deliver","chain":"provider","numPackets":1},"partialState":{"h":13,"t":78,"tokens":[23443,13041,4229,9137],"delegation":[22443,12041,3229,8137],"delegatorTokens":9999999889718,"jailed":[1000000000000005,null,null,null],"status":["unbonding","bonded","unbonding","bonded"]}},{"ix":157,"action":{"kind":"Deliver","chain":"provider","numPackets":2},"partialState":{"h":13,"t":78,"tokens":[23443,13041,4229,9137],"delegation":[22443,12041,3229,8137],"delegatorTokens":9999999889718,"jailed":[1000000000000005,null,null,null],"status":["unbonding","bonded","unbonding","bonded"]}},{"ix":158,"action":{"kind":"Undelegate","val":3,"amt":2577},"partialState":{"h":13,"t":78,"tokens":[23443,13041,4229,6560],"delegation":[22443,12041,3229,5560],"delegatorTokens":9999999889718}},{"ix":159,"action":{"kind":"Delegate","val":1,"amt":4655},"partialState":{"h":13,"t":78,"tokens":[23443,17696,4229,6560],"delegation":[22443,16696,3229,5560],"delegatorTokens":9999999885063}},{"ix":160,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":161,"action":{"kind":"Delegate","val":3,"amt":1415},"partialState":{"h":13,"t":78,"tokens":[23443,17696,4229,7975],"delegation":[22443,16696,3229,6975],"delegatorTokens":9999999883648}},{"ix":162,"action":{"kind":"Undelegate","val":1,"amt":2806},"partialState":{"h":13,"t":78,"tokens":[23443,14890,4229,7975],"delegation":[22443,13890,3229,6975],"delegatorTokens":9999999883648}},{"ix":163,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":14,"t":84,"tokens":[23443,14890,4229,7975],"delegation":[22443,13890,3229,6975],"delegatorTokens":9999999883648,"jailed":[1000000000000005,null,null,null],"status":["unbonding","bonded","unbonding","bonded"]}},{"ix":164,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":165,"action":{"kind":"Deliver","chain":"consumer","numPackets":2},"partialState":{"h":17,"t":102,"consumerPower":[null,5105,null,13346],"outstandingDowntime":[false,false,true,true]}},{"ix":166,"action":{"kind":"Delegate","val":3,"amt":4662},"partialState":{"h":14,"t":84,"tokens":[23443,14890,4229,12637],"delegation":[22443,13890,3229,11637],"delegatorTokens":9999999878986}},{"ix":167,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":15,"t":90,"tokens":[23443,14890,4229,12637],"delegation":[22443,13890,3229,11637],"delegatorTokens":9999999878986,"jailed":[1000000000000005,null,null,null],"status":["unbonded","bonded","unbonding","bonded"]}},{"ix":168,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":18,"t":108,"consumerPower":[null,6450,null,11109],"outstandingDowntime":[false,false,true,true]}},{"ix":169,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":170,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":171,"action":{"kind":"Delegate","val":1,"amt":4973},"partialState":{"h":15,"t":90,"tokens":[23443,19863,4229,12637],"delegation":[22443,18863,3229,11637],"delegatorTokens":9999999874013}},{"ix":172,"action":{"kind":"Deliver","chain":"consumer","numPackets":6},"partialState":{"h":18,"t":108,"consumerPower":[null,6450,null,11109],"outstandingDowntime":[false,false,true,true]}},{"ix":173,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":19,"t":114,"consumerPower":[null,14890,null,7975],"outstandingDowntime":[false,false,true,true]}},{"ix":174,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":175,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":176,"action":{"kind":"Undelegate","val":3,"amt":1333},"partialState":{"h":15,"t":90,"tokens":[23443,19863,4229,11304],"delegation":[22443,18863,3229,10304],"delegatorTokens":9999999874013}},{"ix":177,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":178,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":16,"t":96,"tokens":[23443,19863,4229,11304],"delegation":[22443,18863,3229,10304],"delegatorTokens":9999999874013,"jailed":[1000000000000005,null,null,null],"status":["unbonded","bonded","unbonding","bonded"]}},{"ix":179,"action":{"kind":"Delegate","val":2,"amt":4653},"partialState":{"h":16,"t":96,"tokens":[23443,19863,8882,11304],"delegation":[22443,18863,7882,10304],"delegatorTokens":9999999869360}},{"ix":180,"action":{"kind":"Delegate","val":0,"amt":1039},"partialState":{"h":16,"t":96,"tokens":[24482,19863,8882,11304],"delegation":[23482,18863,7882,10304],"delegatorTokens":9999999868321}},{"ix":181,"action":{"kind":"Delegate","val":0,"amt":2631},"partialState":{"h":16,"t":96,"tokens":[27113,19863,8882,11304],"delegation":[26113,18863,7882,10304],"delegatorTokens":9999999865690}},{"ix":182,"action":{"kind":"Deliver","chain":"consumer","numPackets":3},"partialState":{"h":19,"t":114,"consumerPower":[null,14890,null,7975],"outstandingDowntime":[false,false,true,true]}},{"ix":183,"action":{"kind":"Deliver","chain":"consumer","numPackets":4},"partialState":{"h":19,"t":114,"consumerPower":[null,14890,null,7975],"outstandingDowntime":[false,false,true,true]}},{"ix":184,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":185,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":186,"action":{"kind":"Undelegate","val":1,"amt":3272},"partialState":{"h":16,"t":96,"tokens":[27113,16591,8882,11304],"delegation":[26113,15591,7882,10304],"delegatorTokens":9999999865690}},{"ix":187,"action":{"kind":"Undelegate","val":1,"amt":3325},"partialState":{"h":16,"t":96,"tokens":[27113,13266,8882,11304],"delegation":[26113,12266,7882,10304],"delegatorTokens":9999999865690}},{"ix":188,"action":{"kind":"Delegate","val":2,"amt":4764},"partialState":{"h":16,"t":96,"tokens":[27113,13266,13646,11304],"delegation":[26113,12266,12646,10304],"delegatorTokens":9999999860926}},{"ix":189,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":190,"action":{"kind":"Delegate","val":0,"amt":2956},"partialState":{"h":16,"t":96,"tokens":[30069,13266,13646,11304],"delegation":[29069,12266,12646,10304],"delegatorTokens":9999999857970}},{"ix":191,"action":{"kind":"Deliver","chain":"consumer","numPackets":5},"partialState":{"h":19,"t":114,"consumerPower":[null,14890,null,7975],"outstandingDowntime":[false,false,true,true]}},{"ix":192,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":193,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":194,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":17,"t":102,"tokens":[30069,13266,13646,11304],"delegation":[29069,12266,12646,10304],"delegatorTokens":9999999857970,"jailed":[1000000000000005,null,null,null],"status":["unbonded","bonded","bonded","unbonding"]}},{"ix":195,"action":{"kind":"Deliver","chain":"consumer","numPackets":3},"partialState":{"h":19,"t":114,"consumerPower":[null,14890,null,7975],"outstandingDowntime":[false,false,true,true]}},{"ix":196,"action":{"kind":"Delegate","val":0,"amt":2844},"partialState":{"h":17,"t":102,"tokens":[32913,13266,13646,11304],"delegation":[31913,12266,12646,10304],"delegatorTokens":9999999855126}},{"ix":197,"action":{"kind":"Deliver","chain":"consumer","numPackets":6},"partialState":{"h":19,"t":114,"consumerPower":[null,14890,null,7975],"outstandingDowntime":[false,false,true,true]}},{"ix":198,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":199,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":18,"t":108,"tokens":[32913,13266,13646,11304],"delegation":[31913,12266,12646,10304],"delegatorTokens":9999999855126,"jailed":[1000000000000005,null,null,null],"status":["unbonded","bonded","bonded","unbonding"]}}],"events":["insufficient_shares","send_downtime_slash_request","insufficient_shares","send_downtime_slash_request","send_downtime_slash_request","insufficient_shares","insufficient_shares","receive_slash_request_unbonded","receive_downtime_slash_request","jail","receive_slash_request_unbonded","send_vsc_with_downtime_ack","more_than_one_third_val_power_change","send_vsc_without_downtime_ack","send_vsc_not_because_change","send_vsc_without_downtime_ack","receive_downtime_slash_ack","send_vsc_without_downtime_ack","more_than_one_third_val_power_change","send_vsc_without_downtime_ack","consumer_del_val","consumer_update_val","consumer_add_val","insufficient_shares","consumer_update_val","send_vsc_without_downtime_ack","consumer_del_val","consumer_add_val","insufficient_shares","send_vsc_without_downtime_ack","insufficient_shares","insufficient_shares","send_vsc_without_downtime_ack","send_vsc_without_downtime_ack","insufficient_shares","consumer_send_maturation","consumer_send_maturation","send_vsc_without_downtime_ack","consumer_update_val","consumer_update_val","consumer_send_maturation","consumer_send_maturation","consumer_update_val","set_unval_hold_false","send_vsc_without_downtime_ack","complete_unval_in_endblock","send_vsc_without_downtime_ack","consumer_update_val","consumer_update_val","consumer_update_val","consumer_update_val","some_undels_expired_but_not_completed","send_vsc_without_downtime_ack","more_than_one_third_val_power_change","rebond_unval","some_undels_expired_but_not_completed","send_vsc_without_downtime_ack"]},{"meta":{"commit":"7ffd0c04e4205cbc9caf212abfe6c59ee43153bf"},"constants":{"P":"provider","C":"consumer","UNBONDING_SECONDS_P":70,"UNBONDING_SECONDS_C":50,"TRUSTING_SECONDS":49,"NUM_VALIDATORS":4,"MAX_VALIDATORS":2,"SLASH_DOUBLESIGN":0,"SLASH_DOWNTIME":0,"JAIL_SECONDS":999999999999999,"BLOCK_SECONDS":6,"INITIAL_DELEGATOR_TOKENS":10000000000000,"DELEGATE_AMT_MIN":1000,"DELEGATE_AMT_MAX":5000,"UNDELEGATE_AMT_MIN":1000,"UNDELEGATE_AMT_MAX":5000,"ISDOWNTIME_PROBABILITY":0.5,"MAX_NUM_PACKETS_FOR_DELIVER":6},"actions":[{"ix":0,"action":{"kind":"Delegate","val":1,"amt":1882},"partialState":{"h":1,"t":6,"tokens":[5000,5882,3000,2000],"delegation":[4000,4882,2000,1000],"delegatorTokens":9999999998118}},{"ix":1,"action":{"kind":"Delegate","val":0,"amt":4522},"partialState":{"h":1,"t":6,"tokens":[9522,5882,3000,2000],"delegation":[8522,4882,2000,1000],"delegatorTokens":9999999993596}},{"ix":2,"action":{"kind":"ConsumerSlash","val":1,"infractionHeight":0,"isDowntime":false},"partialState":{"h":1,"t":6,"outstandingDowntime":[false,false,false,false]}},{"ix":3,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":4,"action":{"kind":"Undelegate","val":2,"amt":4807},"partialState":{"h":1,"t":6,"tokens":[9522,5882,3000,2000],"delegation":[8522,4882,2000,1000],"delegatorTokens":9999999993596}},{"ix":5,"action":{"kind":"ConsumerSlash","val":2,"infractionHeight":0,"isDowntime":false},"partialState":{"h":1,"t":6,"outstandingDowntime":[false,false,false,false]}},{"ix":6,"action":{"kind":"Delegate","val":1,"amt":1307},"partialState":{"h":1,"t":6,"tokens":[9522,7189,3000,2000],"delegation":[8522,6189,2000,1000],"delegatorTokens":9999999992289}},{"ix":7,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":2,"t":12,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":8,"action":{"kind":"Undelegate","val":3,"amt":2965},"partialState":{"h":1,"t":6,"tokens":[9522,7189,3000,2000],"delegation":[8522,6189,2000,1000],"delegatorTokens":9999999992289}},{"ix":9,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":2,"t":12,"tokens":[9522,7189,3000,2000],"delegation":[8522,6189,2000,1000],"delegatorTokens":9999999992289,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":10,"action":{"kind":"ConsumerSlash","val":2,"infractionHeight":1,"isDowntime":false},"partialState":{"h":2,"t":12,"outstandingDowntime":[false,false,false,false]}},{"ix":11,"action":{"kind":"Deliver","chain":"consumer","numPackets":1},"partialState":{"h":2,"t":12,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":12,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":13,"action":{"kind":"ConsumerSlash","val":1,"infractionHeight":0,"isDowntime":false},"partialState":{"h":2,"t":12,"outstandingDowntime":[false,false,false,false]}},{"ix":14,"action":{"kind":"ConsumerSlash","val":2,"infractionHeight":0,"isDowntime":true},"partialState":{"h":2,"t":12,"outstandingDowntime":[false,false,true,false]}},{"ix":15,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":16,"action":{"kind":"Undelegate","val":3,"amt":4607},"partialState":{"h":2,"t":12,"tokens":[9522,7189,3000,2000],"delegation":[8522,6189,2000,1000],"delegatorTokens":9999999992289}},{"ix":17,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":3,"t":18,"tokens":[9522,7189,3000,2000],"delegation":[8522,6189,2000,1000],"delegatorTokens":9999999992289,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":18,"action":{"kind":"Delegate","val":3,"amt":3999},"partialState":{"h":3,"t":18,"tokens":[9522,7189,3000,5999],"delegation":[8522,6189,2000,4999],"delegatorTokens":9999999988290}},{"ix":19,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":20,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":21,"action":{"kind":"Deliver","chain":"consumer","numPackets":2},"partialState":{"h":2,"t":12,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,false,true,false]}},{"ix":22,"action":{"kind":"Delegate","val":0,"amt":3428},"partialState":{"h":3,"t":18,"tokens":[12950,7189,3000,5999],"delegation":[11950,6189,2000,4999],"delegatorTokens":9999999984862}},{"ix":23,"action":{"kind":"Deliver","chain":"provider","numPackets":4},"partialState":{"h":3,"t":18,"tokens":[12950,7189,3000,5999],"delegation":[11950,6189,2000,4999],"delegatorTokens":9999999984862,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":24,"action":{"kind":"Undelegate","val":0,"amt":1340},"partialState":{"h":3,"t":18,"tokens":[11610,7189,3000,5999],"delegation":[10610,6189,2000,4999],"delegatorTokens":9999999984862}},{"ix":25,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":3,"t":18,"consumerPower":[9522,7189,null,null],"outstandingDowntime":[false,false,true,false]}},{"ix":26,"action":{"kind":"ConsumerSlash","val":2,"infractionHeight":2,"isDowntime":false},"partialState":{"h":3,"t":18,"outstandingDowntime":[false,false,true,false]}},{"ix":27,"action":{"kind":"Delegate","val":0,"amt":2326},"partialState":{"h":3,"t":18,"tokens":[13936,7189,3000,5999],"delegation":[12936,6189,2000,4999],"delegatorTokens":9999999982536}},{"ix":28,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":29,"action":{"kind":"Delegate","val":1,"amt":2702},"partialState":{"h":3,"t":18,"tokens":[13936,9891,3000,5999],"delegation":[12936,8891,2000,4999],"delegatorTokens":9999999979834}},{"ix":30,"action":{"kind":"Delegate","val":0,"amt":1224},"partialState":{"h":3,"t":18,"tokens":[15160,9891,3000,5999],"delegation":[14160,8891,2000,4999],"delegatorTokens":9999999978610}},{"ix":31,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":32,"action":{"kind":"Delegate","val":1,"amt":1674},"partialState":{"h":3,"t":18,"tokens":[15160,11565,3000,5999],"delegation":[14160,10565,2000,4999],"delegatorTokens":9999999976936}},{"ix":33,"action":{"kind":"Deliver","chain":"provider","numPackets":1},"partialState":{"h":3,"t":18,"tokens":[15160,11565,3000,5999],"delegation":[14160,10565,2000,4999],"delegatorTokens":9999999976936,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":34,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":35,"action":{"kind":"Undelegate","val":2,"amt":3476},"partialState":{"h":3,"t":18,"tokens":[15160,11565,3000,5999],"delegation":[14160,10565,2000,4999],"delegatorTokens":9999999976936}},{"ix":36,"action":{"kind":"Delegate","val":0,"amt":4315},"partialState":{"h":3,"t":18,"tokens":[19475,11565,3000,5999],"delegation":[18475,10565,2000,4999],"delegatorTokens":9999999972621}},{"ix":37,"action":{"kind":"Undelegate","val":0,"amt":2752},"partialState":{"h":3,"t":18,"tokens":[16723,11565,3000,5999],"delegation":[15723,10565,2000,4999],"delegatorTokens":9999999972621}},{"ix":38,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":39,"action":{"kind":"Delegate","val":0,"amt":4803},"partialState":{"h":3,"t":18,"tokens":[21526,11565,3000,5999],"delegation":[20526,10565,2000,4999],"delegatorTokens":9999999967818}},{"ix":40,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":4,"t":24,"consumerPower":[9522,7189,null,null],"outstandingDowntime":[false,false,true,false]}},{"ix":41,"action":{"kind":"Deliver","chain":"provider","numPackets":6},"partialState":{"h":3,"t":18,"tokens":[21526,11565,3000,5999],"delegation":[20526,10565,2000,4999],"delegatorTokens":9999999967818,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":42,"action":{"kind":"Undelegate","val":3,"amt":2272},"partialState":{"h":3,"t":18,"tokens":[21526,11565,3000,3727],"delegation":[20526,10565,2000,2727],"delegatorTokens":9999999967818}},{"ix":43,"action":{"kind":"Delegate","val":3,"amt":1222},"partialState":{"h":3,"t":18,"tokens":[21526,11565,3000,4949],"delegation":[20526,10565,2000,3949],"delegatorTokens":9999999966596}},{"ix":44,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":45,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":5,"t":30,"consumerPower":[9522,7189,null,null],"outstandingDowntime":[false,false,true,false]}},{"ix":46,"action":{"kind":"ConsumerSlash","val":1,"infractionHeight":4,"isDowntime":true},"partialState":{"h":5,"t":30,"outstandingDowntime":[false,true,true,false]}},{"ix":47,"action":{"kind":"Deliver","chain":"provider","numPackets":4},"partialState":{"h":3,"t":18,"tokens":[21526,11565,3000,4949],"delegation":[20526,10565,2000,3949],"delegatorTokens":9999999966596,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":48,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":4,"t":24,"tokens":[21526,11565,3000,4949],"delegation":[20526,10565,2000,3949],"delegatorTokens":9999999966596,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":49,"action":{"kind":"Delegate","val":0,"amt":2209},"partialState":{"h":4,"t":24,"tokens":[23735,11565,3000,4949],"delegation":[22735,10565,2000,3949],"delegatorTokens":9999999964387}},{"ix":50,"action":{"kind":"Delegate","val":0,"amt":1932},"partialState":{"h":4,"t":24,"tokens":[25667,11565,3000,4949],"delegation":[24667,10565,2000,3949],"delegatorTokens":9999999962455}},{"ix":51,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":6,"t":36,"consumerPower":[9522,7189,null,null],"outstandingDowntime":[false,true,true,false]}},{"ix":52,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":53,"action":{"kind":"ConsumerSlash","val":3,"infractionHeight":1,"isDowntime":true},"partialState":{"h":6,"t":36,"outstandingDowntime":[false,true,true,true]}},{"ix":54,"action":{"kind":"Undelegate","val":0,"amt":3059},"partialState":{"h":4,"t":24,"tokens":[22608,11565,3000,4949],"delegation":[21608,10565,2000,3949],"delegatorTokens":9999999962455}},{"ix":55,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":7,"t":42,"consumerPower":[9522,7189,null,null],"outstandingDowntime":[false,true,true,true]}},{"ix":56,"action":{"kind":"Deliver","chain":"consumer","numPackets":3},"partialState":{"h":7,"t":42,"consumerPower":[9522,7189,null,null],"outstandingDowntime":[false,true,true,true]}},{"ix":57,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":58,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":8,"t":48,"consumerPower":[9522,7189,null,null],"outstandingDowntime":[false,true,true,true]}},{"ix":59,"action":{"kind":"Undelegate","val":2,"amt":4490},"partialState":{"h":4,"t":24,"tokens":[22608,11565,3000,4949],"delegation":[21608,10565,2000,3949],"delegatorTokens":9999999962455}},{"ix":60,"action":{"kind":"Deliver","chain":"provider","numPackets":5},"partialState":{"h":4,"t":24,"tokens":[22608,11565,3000,4949],"delegation":[21608,10565,2000,3949],"delegatorTokens":9999999962455,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":61,"action":{"kind":"Delegate","val":3,"amt":4712},"partialState":{"h":4,"t":24,"tokens":[22608,11565,3000,9661],"delegation":[21608,10565,2000,8661],"delegatorTokens":9999999957743}},{"ix":62,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":63,"action":{"kind":"Delegate","val":1,"amt":3828},"partialState":{"h":4,"t":24,"tokens":[22608,15393,3000,9661],"delegation":[21608,14393,2000,8661],"delegatorTokens":9999999953915}},{"ix":64,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":9,"t":54,"consumerPower":[9522,7189,null,null],"outstandingDowntime":[false,true,true,true]}},{"ix":65,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":5,"t":30,"tokens":[22608,15393,3000,9661],"delegation":[21608,14393,2000,8661],"delegatorTokens":9999999953915,"jailed":[null,1000000000000023,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":66,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":10,"t":60,"consumerPower":[9522,7189,null,null],"outstandingDowntime":[false,true,true,true]}},{"ix":67,"action":{"kind":"Delegate","val":1,"amt":2671},"partialState":{"h":5,"t":30,"tokens":[22608,18064,3000,9661],"delegation":[21608,17064,2000,8661],"delegatorTokens":9999999951244}},{"ix":68,"action":{"kind":"Undelegate","val":2,"amt":3549},"partialState":{"h":5,"t":30,"tokens":[22608,18064,3000,9661],"delegation":[21608,17064,2000,8661],"delegatorTokens":9999999951244}},{"ix":69,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":70,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":6,"t":36,"tokens":[22608,18064,3000,9661],"delegation":[21608,17064,2000,8661],"delegatorTokens":9999999951244,"jailed":[null,1000000000000023,null,null],"status":["bonded","unbonding","unbonded","bonded"]}},{"ix":71,"action":{"kind":"Delegate","val":1,"amt":3292},"partialState":{"h":6,"t":36,"tokens":[22608,21356,3000,9661],"delegation":[21608,20356,2000,8661],"delegatorTokens":9999999947952}},{"ix":72,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":73,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":11,"t":66,"consumerPower":[9522,7189,null,null],"outstandingDowntime":[false,true,true,true]}},{"ix":74,"action":{"kind":"Deliver","chain":"provider","numPackets":4},"partialState":{"h":6,"t":36,"tokens":[22608,21356,3000,9661],"delegation":[21608,20356,2000,8661],"delegatorTokens":9999999947952,"jailed":[null,1000000000000023,null,null],"status":["bonded","unbonding","unbonded","bonded"]}},{"ix":75,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":7,"t":42,"tokens":[22608,21356,3000,9661],"delegation":[21608,20356,2000,8661],"delegatorTokens":9999999947952,"jailed":[null,1000000000000023,null,null],"status":["bonded","unbonding","unbonded","bonded"]}},{"ix":76,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":77,"action":{"kind":"Undelegate","val":2,"amt":3754},"partialState":{"h":7,"t":42,"tokens":[22608,21356,3000,9661],"delegation":[21608,20356,2000,8661],"delegatorTokens":9999999947952}},{"ix":78,"action":{"kind":"Deliver","chain":"consumer","numPackets":5},"partialState":{"h":11,"t":66,"consumerPower":[9522,7189,null,null],"outstandingDowntime":[false,false,true,true]}},{"ix":79,"action":{"kind":"Delegate","val":0,"amt":2120},"partialState":{"h":7,"t":42,"tokens":[24728,21356,3000,9661],"delegation":[23728,20356,2000,8661],"delegatorTokens":9999999945832}},{"ix":80,"action":{"kind":"Delegate","val":2,"amt":3115},"partialState":{"h":7,"t":42,"tokens":[24728,21356,6115,9661],"delegation":[23728,20356,5115,8661],"delegatorTokens":9999999942717}},{"ix":81,"action":{"kind":"Delegate","val":2,"amt":2787},"partialState":{"h":7,"t":42,"tokens":[24728,21356,8902,9661],"delegation":[23728,20356,7902,8661],"delegatorTokens":9999999939930}},{"ix":82,"action":{"kind":"Delegate","val":2,"amt":4134},"partialState":{"h":7,"t":42,"tokens":[24728,21356,13036,9661],"delegation":[23728,20356,12036,8661],"delegatorTokens":9999999935796}},{"ix":83,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":84,"action":{"kind":"Delegate","val":0,"amt":2489},"partialState":{"h":7,"t":42,"tokens":[27217,21356,13036,9661],"delegation":[26217,20356,12036,8661],"delegatorTokens":9999999933307}},{"ix":85,"action":{"kind":"Delegate","val":3,"amt":4745},"partialState":{"h":7,"t":42,"tokens":[27217,21356,13036,14406],"delegation":[26217,20356,12036,13406],"delegatorTokens":9999999928562}},{"ix":86,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":8,"t":48,"tokens":[27217,21356,13036,14406],"delegation":[26217,20356,12036,13406],"delegatorTokens":9999999928562,"jailed":[null,1000000000000023,null,null],"status":["bonded","unbonding","unbonded","bonded"]}},{"ix":87,"action":{"kind":"Deliver","chain":"consumer","numPackets":6},"partialState":{"h":11,"t":66,"consumerPower":[9522,7189,null,null],"outstandingDowntime":[false,false,true,true]}},{"ix":88,"action":{"kind":"Deliver","chain":"consumer","numPackets":1},"partialState":{"h":11,"t":66,"consumerPower":[9522,7189,null,null],"outstandingDowntime":[false,false,true,true]}},{"ix":89,"action":{"kind":"Delegate","val":0,"amt":3816},"partialState":{"h":8,"t":48,"tokens":[31033,21356,13036,14406],"delegation":[30033,20356,12036,13406],"delegatorTokens":9999999924746}},{"ix":90,"action":{"kind":"Undelegate","val":0,"amt":1574},"partialState":{"h":8,"t":48,"tokens":[29459,21356,13036,14406],"delegation":[28459,20356,12036,13406],"delegatorTokens":9999999924746}},{"ix":91,"action":{"kind":"Deliver","chain":"consumer","numPackets":2},"partialState":{"h":11,"t":66,"consumerPower":[9522,7189,null,null],"outstandingDowntime":[false,false,true,true]}},{"ix":92,"action":{"kind":"Deliver","chain":"provider","numPackets":5},"partialState":{"h":8,"t":48,"tokens":[29459,21356,13036,14406],"delegation":[28459,20356,12036,13406],"delegatorTokens":9999999924746,"jailed":[null,1000000000000023,null,null],"status":["bonded","unbonding","unbonded","bonded"]}},{"ix":93,"action":{"kind":"Deliver","chain":"provider","numPackets":6},"partialState":{"h":8,"t":48,"tokens":[29459,21356,13036,14406],"delegation":[28459,20356,12036,13406],"delegatorTokens":9999999924746,"jailed":[null,1000000000000023,null,null],"status":["bonded","unbonding","unbonded","bonded"]}},{"ix":94,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":9,"t":54,"tokens":[29459,21356,13036,14406],"delegation":[28459,20356,12036,13406],"delegatorTokens":9999999924746,"jailed":[null,1000000000000023,null,null],"status":["bonded","unbonding","unbonded","bonded"]}},{"ix":95,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":12,"t":72,"consumerPower":[22608,null,null,9661],"outstandingDowntime":[false,false,true,true]}},{"ix":96,"action":{"kind":"Deliver","chain":"provider","numPackets":5},"partialState":{"h":9,"t":54,"tokens":[29459,21356,13036,14406],"delegation":[28459,20356,12036,13406],"delegatorTokens":9999999924746,"jailed":[null,1000000000000023,null,null],"status":["bonded","unbonding","unbonded","bonded"]}},{"ix":97,"action":{"kind":"Delegate","val":1,"amt":3010},"partialState":{"h":9,"t":54,"tokens":[29459,24366,13036,14406],"delegation":[28459,23366,12036,13406],"delegatorTokens":9999999921736}},{"ix":98,"action":{"kind":"Deliver","chain":"provider","numPackets":1},"partialState":{"h":9,"t":54,"tokens":[29459,24366,13036,14406],"delegation":[28459,23366,12036,13406],"delegatorTokens":9999999921736,"jailed":[null,1000000000000023,null,null],"status":["bonded","unbonding","unbonded","bonded"]}},{"ix":99,"action":{"kind":"Delegate","val":1,"amt":4842},"partialState":{"h":9,"t":54,"tokens":[29459,29208,13036,14406],"delegation":[28459,28208,12036,13406],"delegatorTokens":9999999916894}},{"ix":100,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":13,"t":78,"consumerPower":[22608,null,null,9661],"outstandingDowntime":[false,false,true,true]}},{"ix":101,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":102,"action":{"kind":"Deliver","chain":"provider","numPackets":4},"partialState":{"h":9,"t":54,"tokens":[29459,29208,13036,14406],"delegation":[28459,28208,12036,13406],"delegatorTokens":9999999916894,"jailed":[null,1000000000000023,null,null],"status":["bonded","unbonding","unbonded","bonded"]}},{"ix":103,"action":{"kind":"Undelegate","val":0,"amt":1445},"partialState":{"h":9,"t":54,"tokens":[28014,29208,13036,14406],"delegation":[27014,28208,12036,13406],"delegatorTokens":9999999916894}},{"ix":104,"action":{"kind":"Delegate","val":1,"amt":1096},"partialState":{"h":9,"t":54,"tokens":[28014,30304,13036,14406],"delegation":[27014,29304,12036,13406],"delegatorTokens":9999999915798}},{"ix":105,"action":{"kind":"Deliver","chain":"consumer","numPackets":5},"partialState":{"h":13,"t":78,"consumerPower":[22608,null,null,9661],"outstandingDowntime":[false,false,true,true]}},{"ix":106,"action":{"kind":"Delegate","val":3,"amt":3698},"partialState":{"h":9,"t":54,"tokens":[28014,30304,13036,18104],"delegation":[27014,29304,12036,17104],"delegatorTokens":9999999912100}},{"ix":107,"action":{"kind":"Undelegate","val":2,"amt":1039},"partialState":{"h":9,"t":54,"tokens":[28014,30304,11997,18104],"delegation":[27014,29304,10997,17104],"delegatorTokens":9999999912100}},{"ix":108,"action":{"kind":"Undelegate","val":2,"amt":4587},"partialState":{"h":9,"t":54,"tokens":[28014,30304,7410,18104],"delegation":[27014,29304,6410,17104],"delegatorTokens":9999999912100}},{"ix":109,"action":{"kind":"Undelegate","val":2,"amt":1772},"partialState":{"h":9,"t":54,"tokens":[28014,30304,5638,18104],"delegation":[27014,29304,4638,17104],"delegatorTokens":9999999912100}},{"ix":110,"action":{"kind":"Deliver","chain":"consumer","numPackets":1},"partialState":{"h":13,"t":78,"consumerPower":[22608,null,null,9661],"outstandingDowntime":[false,false,true,true]}},{"ix":111,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":10,"t":60,"tokens":[28014,30304,5638,18104],"delegation":[27014,29304,4638,17104],"delegatorTokens":9999999912100,"jailed":[null,1000000000000023,null,null],"status":["bonded","unbonding","unbonded","bonded"]}},{"ix":112,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":14,"t":84,"consumerPower":[27217,null,null,14406],"outstandingDowntime":[false,false,true,true]}},{"ix":113,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":114,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":115,"action":{"kind":"Deliver","chain":"consumer","numPackets":2},"partialState":{"h":14,"t":84,"consumerPower":[27217,null,null,14406],"outstandingDowntime":[false,false,true,true]}},{"ix":116,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":15,"t":90,"consumerPower":[29459,null,null,14406],"outstandingDowntime":[false,false,true,true]}},{"ix":117,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":118,"action":{"kind":"Undelegate","val":3,"amt":4960},"partialState":{"h":10,"t":60,"tokens":[28014,30304,5638,13144],"delegation":[27014,29304,4638,12144],"delegatorTokens":9999999912100}},{"ix":119,"action":{"kind":"Deliver","chain":"provider","numPackets":4},"partialState":{"h":10,"t":60,"tokens":[28014,30304,5638,13144],"delegation":[27014,29304,4638,12144],"delegatorTokens":9999999912100,"jailed":[null,1000000000000023,null,null],"status":["bonded","unbonding","unbonded","bonded"]}},{"ix":120,"action":{"kind":"Undelegate","val":0,"amt":1485},"partialState":{"h":10,"t":60,"tokens":[26529,30304,5638,13144],"delegation":[25529,29304,4638,12144],"delegatorTokens":9999999912100}},{"ix":121,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":122,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":123,"action":{"kind":"Delegate","val":0,"amt":2357},"partialState":{"h":10,"t":60,"tokens":[28886,30304,5638,13144],"delegation":[27886,29304,4638,12144],"delegatorTokens":9999999909743}},{"ix":124,"action":{"kind":"Undelegate","val":1,"amt":3937},"partialState":{"h":10,"t":60,"tokens":[28886,26367,5638,13144],"delegation":[27886,25367,4638,12144],"delegatorTokens":9999999909743}},{"ix":125,"action":{"kind":"Delegate","val":3,"amt":3045},"partialState":{"h":10,"t":60,"tokens":[28886,26367,5638,16189],"delegation":[27886,25367,4638,15189],"delegatorTokens":9999999906698}},{"ix":126,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":127,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":128,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":16,"t":96,"consumerPower":[29459,null,null,14406],"outstandingDowntime":[false,false,true,true]}},{"ix":129,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":17,"t":102,"consumerPower":[29459,null,null,14406],"outstandingDowntime":[false,false,true,true]}},{"ix":130,"action":{"kind":"Delegate","val":0,"amt":2755},"partialState":{"h":10,"t":60,"tokens":[31641,26367,5638,16189],"delegation":[30641,25367,4638,15189],"delegatorTokens":9999999903943}},{"ix":131,"action":{"kind":"Undelegate","val":0,"amt":4962},"partialState":{"h":10,"t":60,"tokens":[26679,26367,5638,16189],"delegation":[25679,25367,4638,15189],"delegatorTokens":9999999903943}},{"ix":132,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":133,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":134,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":11,"t":66,"tokens":[26679,26367,5638,16189],"delegation":[25679,25367,4638,15189],"delegatorTokens":9999999903943,"jailed":[null,1000000000000023,null,null],"status":["bonded","unbonding","unbonded","bonded"]}},{"ix":135,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":136,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":18,"t":108,"consumerPower":[29459,null,null,14406],"outstandingDowntime":[false,false,true,true]}},{"ix":137,"action":{"kind":"Deliver","chain":"provider","numPackets":5},"partialState":{"h":11,"t":66,"tokens":[26679,26367,5638,16189],"delegation":[25679,25367,4638,15189],"delegatorTokens":9999999903943,"jailed":[null,1000000000000023,null,null],"status":["bonded","unbonding","unbonded","bonded"]}},{"ix":138,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":12,"t":72,"tokens":[26679,26367,5638,16189],"delegation":[25679,25367,4638,15189],"delegatorTokens":9999999903943,"jailed":[null,1000000000000023,null,null],"status":["bonded","unbonding","unbonded","bonded"]}},{"ix":139,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":140,"action":{"kind":"Deliver","chain":"consumer","numPackets":4},"partialState":{"h":18,"t":108,"consumerPower":[29459,null,null,14406],"outstandingDowntime":[false,false,true,true]}},{"ix":141,"action":{"kind":"Delegate","val":2,"amt":4316},"partialState":{"h":12,"t":72,"tokens":[26679,26367,9954,16189],"delegation":[25679,25367,8954,15189],"delegatorTokens":9999999899627}},{"ix":142,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":13,"t":78,"tokens":[26679,26367,9954,16189],"delegation":[25679,25367,8954,15189],"delegatorTokens":9999999899627,"jailed":[null,1000000000000023,null,null],"status":["bonded","unbonding","unbonded","bonded"]}},{"ix":143,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":14,"t":84,"tokens":[26679,26367,9954,16189],"delegation":[25679,25367,8954,15189],"delegatorTokens":9999999899627,"jailed":[null,1000000000000023,null,null],"status":["bonded","unbonding","unbonded","bonded"]}},{"ix":144,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":145,"action":{"kind":"Delegate","val":3,"amt":2738},"partialState":{"h":14,"t":84,"tokens":[26679,26367,9954,18927],"delegation":[25679,25367,8954,17927],"delegatorTokens":9999999896889}},{"ix":146,"action":{"kind":"Undelegate","val":1,"amt":4225},"partialState":{"h":14,"t":84,"tokens":[26679,22142,9954,18927],"delegation":[25679,21142,8954,17927],"delegatorTokens":9999999896889}},{"ix":147,"action":{"kind":"Undelegate","val":2,"amt":3803},"partialState":{"h":14,"t":84,"tokens":[26679,22142,6151,18927],"delegation":[25679,21142,5151,17927],"delegatorTokens":9999999896889}},{"ix":148,"action":{"kind":"Undelegate","val":2,"amt":2223},"partialState":{"h":14,"t":84,"tokens":[26679,22142,3928,18927],"delegation":[25679,21142,2928,17927],"delegatorTokens":9999999896889}},{"ix":149,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":15,"t":90,"tokens":[26679,22142,3928,18927],"delegation":[25679,21142,2928,17927],"delegatorTokens":9999999896889,"jailed":[null,1000000000000023,null,null],"status":["bonded","unbonding","unbonded","bonded"]}},{"ix":150,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":151,"action":{"kind":"Undelegate","val":3,"amt":4698},"partialState":{"h":15,"t":90,"tokens":[26679,22142,3928,14229],"delegation":[25679,21142,2928,13229],"delegatorTokens":9999999896889}},{"ix":152,"action":{"kind":"Delegate","val":1,"amt":3973},"partialState":{"h":15,"t":90,"tokens":[26679,26115,3928,14229],"delegation":[25679,25115,2928,13229],"delegatorTokens":9999999892916}},{"ix":153,"action":{"kind":"Delegate","val":3,"amt":2299},"partialState":{"h":15,"t":90,"tokens":[26679,26115,3928,16528],"delegation":[25679,25115,2928,15528],"delegatorTokens":9999999890617}},{"ix":154,"action":{"kind":"Undelegate","val":3,"amt":3651},"partialState":{"h":15,"t":90,"tokens":[26679,26115,3928,12877],"delegation":[25679,25115,2928,11877],"delegatorTokens":9999999890617}},{"ix":155,"action":{"kind":"Undelegate","val":2,"amt":4618},"partialState":{"h":15,"t":90,"tokens":[26679,26115,3928,12877],"delegation":[25679,25115,2928,11877],"delegatorTokens":9999999890617}},{"ix":156,"action":{"kind":"Delegate","val":2,"amt":4854},"partialState":{"h":15,"t":90,"tokens":[26679,26115,8782,12877],"delegation":[25679,25115,7782,11877],"delegatorTokens":9999999885763}},{"ix":157,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":19,"t":114,"consumerPower":[26679,null,null,16189],"outstandingDowntime":[false,false,true,true]}},{"ix":158,"action":{"kind":"Deliver","chain":"consumer","numPackets":5},"partialState":{"h":19,"t":114,"consumerPower":[26679,null,null,16189],"outstandingDowntime":[false,false,true,true]}},{"ix":159,"action":{"kind":"Deliver","chain":"consumer","numPackets":5},"partialState":{"h":19,"t":114,"consumerPower":[26679,null,null,16189],"outstandingDowntime":[false,false,true,true]}},{"ix":160,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":20,"t":120,"consumerPower":[26679,null,null,16189],"outstandingDowntime":[false,false,true,true]}},{"ix":161,"action":{"kind":"Deliver","chain":"provider","numPackets":5},"partialState":{"h":15,"t":90,"tokens":[26679,26115,8782,12877],"delegation":[25679,25115,7782,11877],"delegatorTokens":9999999885763,"jailed":[null,1000000000000023,null,null],"status":["bonded","unbonding","unbonded","bonded"]}},{"ix":162,"action":{"kind":"Deliver","chain":"provider","numPackets":3},"partialState":{"h":15,"t":90,"tokens":[26679,26115,8782,12877],"delegation":[25679,25115,7782,11877],"delegatorTokens":9999999885763,"jailed":[null,1000000000000023,null,null],"status":["bonded","unbonding","unbonded","bonded"]}},{"ix":163,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":164,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":21,"t":126,"consumerPower":[26679,null,null,16189],"outstandingDowntime":[false,false,true,true]}},{"ix":165,"action":{"kind":"Deliver","chain":"provider","numPackets":5},"partialState":{"h":15,"t":90,"tokens":[26679,26115,8782,12877],"delegation":[25679,25115,7782,11877],"delegatorTokens":9999999885763,"jailed":[null,1000000000000023,null,null],"status":["bonded","unbonding","unbonded","bonded"]}},{"ix":166,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":167,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":168,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":16,"t":96,"tokens":[26679,26115,8782,12877],"delegation":[25679,25115,7782,11877],"delegatorTokens":9999999885763,"jailed":[null,1000000000000023,null,null],"status":["bonded","unbonding","unbonded","bonded"]}},{"ix":169,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":170,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":22,"t":132,"consumerPower":[26679,null,null,16189],"outstandingDowntime":[false,false,true,true]}},{"ix":171,"action":{"kind":"Delegate","val":3,"amt":1875},"partialState":{"h":16,"t":96,"tokens":[26679,26115,8782,14752],"delegation":[25679,25115,7782,13752],"delegatorTokens":9999999883888}},{"ix":172,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":23,"t":138,"consumerPower":[26679,null,null,16189],"outstandingDowntime":[false,false,true,true]}},{"ix":173,"action":{"kind":"Deliver","chain":"provider","numPackets":3},"partialState":{"h":16,"t":96,"tokens":[26679,26115,8782,14752],"delegation":[25679,25115,7782,13752],"delegatorTokens":9999999883888,"jailed":[null,1000000000000023,null,null],"status":["bonded","unbonding","unbonded","bonded"]}},{"ix":174,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":175,"action":{"kind":"Delegate","val":2,"amt":4904},"partialState":{"h":16,"t":96,"tokens":[26679,26115,13686,14752],"delegation":[25679,25115,12686,13752],"delegatorTokens":9999999878984}},{"ix":176,"action":{"kind":"Delegate","val":2,"amt":4274},"partialState":{"h":16,"t":96,"tokens":[26679,26115,17960,14752],"delegation":[25679,25115,16960,13752],"delegatorTokens":9999999874710}},{"ix":177,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":17,"t":102,"tokens":[26679,26115,17960,14752],"delegation":[25679,25115,16960,13752],"delegatorTokens":9999999884133,"jailed":[null,1000000000000023,null,null],"status":["bonded","unbonding","bonded","unbonding"]}},{"ix":178,"action":{"kind":"Deliver","chain":"provider","numPackets":1},"partialState":{"h":17,"t":102,"tokens":[26679,26115,17960,14752],"delegation":[25679,25115,16960,13752],"delegatorTokens":9999999884133,"jailed":[null,1000000000000023,null,null],"status":["bonded","unbonding","bonded","unbonding"]}},{"ix":179,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":180,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":181,"action":{"kind":"Delegate","val":3,"amt":1396},"partialState":{"h":17,"t":102,"tokens":[26679,26115,17960,16148],"delegation":[25679,25115,16960,15148],"delegatorTokens":9999999882737}},{"ix":182,"action":{"kind":"Delegate","val":0,"amt":3569},"partialState":{"h":17,"t":102,"tokens":[30248,26115,17960,16148],"delegation":[29248,25115,16960,15148],"delegatorTokens":9999999879168}},{"ix":183,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":18,"t":108,"tokens":[30248,26115,17960,16148],"delegation":[29248,25115,16960,15148],"delegatorTokens":9999999879168,"jailed":[null,1000000000000023,null,null],"status":["bonded","unbonded","bonded","unbonding"]}},{"ix":184,"action":{"kind":"Undelegate","val":2,"amt":4099},"partialState":{"h":18,"t":108,"tokens":[30248,26115,13861,16148],"delegation":[29248,25115,12861,15148],"delegatorTokens":9999999879168}},{"ix":185,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":19,"t":114,"tokens":[30248,26115,13861,16148],"delegation":[29248,25115,12861,15148],"delegatorTokens":9999999879168,"jailed":[null,1000000000000023,null,null],"status":["bonded","unbonded","unbonding","bonded"]}},{"ix":186,"action":{"kind":"Deliver","chain":"provider","numPackets":1},"partialState":{"h":19,"t":114,"tokens":[30248,26115,13861,16148],"delegation":[29248,25115,12861,15148],"delegatorTokens":9999999879168,"jailed":[null,1000000000000023,null,null],"status":["bonded","unbonded","unbonding","bonded"]}},{"ix":187,"action":{"kind":"Undelegate","val":2,"amt":4238},"partialState":{"h":19,"t":114,"tokens":[30248,26115,9623,16148],"delegation":[29248,25115,8623,15148],"delegatorTokens":9999999879168}},{"ix":188,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":20,"t":120,"tokens":[30248,26115,9623,16148],"delegation":[29248,25115,8623,15148],"delegatorTokens":9999999879168,"jailed":[null,1000000000000023,null,null],"status":["bonded","unbonded","unbonding","bonded"]}},{"ix":189,"action":{"kind":"Undelegate","val":3,"amt":2491},"partialState":{"h":20,"t":120,"tokens":[30248,26115,9623,13657],"delegation":[29248,25115,8623,12657],"delegatorTokens":9999999879168}},{"ix":190,"action":{"kind":"Undelegate","val":2,"amt":3053},"partialState":{"h":20,"t":120,"tokens":[30248,26115,6570,13657],"delegation":[29248,25115,5570,12657],"delegatorTokens":9999999879168}},{"ix":191,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":24,"t":144,"consumerPower":[26679,null,null,16189],"outstandingDowntime":[false,false,true,true]}},{"ix":192,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":21,"t":126,"tokens":[30248,26115,6570,13657],"delegation":[29248,25115,5570,12657],"delegatorTokens":9999999879168,"jailed":[null,1000000000000023,null,null],"status":["bonded","unbonded","unbonding","bonded"]}},{"ix":193,"action":{"kind":"Deliver","chain":"provider","numPackets":5},"partialState":{"h":21,"t":126,"tokens":[30248,26115,6570,13657],"delegation":[29248,25115,5570,12657],"delegatorTokens":9999999879168,"jailed":[null,1000000000000023,null,null],"status":["bonded","unbonded","unbonding","bonded"]}},{"ix":194,"action":{"kind":"Deliver","chain":"consumer","numPackets":6},"partialState":{"h":24,"t":144,"consumerPower":[26679,null,null,16189],"outstandingDowntime":[false,false,true,true]}},{"ix":195,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":22,"t":132,"tokens":[30248,26115,6570,13657],"delegation":[29248,25115,5570,12657],"delegatorTokens":9999999879168,"jailed":[null,1000000000000023,null,null],"status":["bonded","unbonded","unbonding","bonded"]}},{"ix":196,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":25,"t":150,"consumerPower":[30248,null,null,16148],"outstandingDowntime":[false,false,true,true]}},{"ix":197,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":198,"action":{"kind":"Delegate","val":2,"amt":1857},"partialState":{"h":22,"t":132,"tokens":[30248,26115,8427,13657],"delegation":[29248,25115,7427,12657],"delegatorTokens":9999999877311}},{"ix":199,"action":{"kind":"Undelegate","val":3,"amt":2378},"partialState":{"h":22,"t":132,"tokens":[30248,26115,8427,11279],"delegation":[29248,25115,7427,10279],"delegatorTokens":9999999877311}}],"events":["send_double_sign_slash_request","insufficient_shares","send_double_sign_slash_request","insufficient_shares","send_vsc_without_downtime_ack","send_double_sign_slash_request","send_double_sign_slash_request","send_downtime_slash_request","insufficient_shares","consumer_update_val","consumer_update_val","send_double_sign_slash_request","receive_double_sign_slash_request","insufficient_shares","receive_double_sign_slash_request","receive_double_sign_slash_request","receive_double_sign_slash_request","send_downtime_slash_request","receive_double_sign_slash_request","receive_slash_request_unbonded","send_vsc_without_downtime_ack","send_downtime_slash_request","insufficient_shares","receive_downtime_slash_request","jail","receive_slash_request_unbonded","send_vsc_with_downtime_ack","insufficient_shares","send_vsc_without_downtime_ack","insufficient_shares","receive_downtime_slash_ack","send_vsc_without_downtime_ack","send_vsc_without_downtime_ack","consumer_send_maturation","consumer_update_val","consumer_del_val","consumer_add_val","send_vsc_without_downtime_ack","consumer_update_val","consumer_update_val","consumer_update_val","send_vsc_without_downtime_ack","send_vsc_without_downtime_ack","insufficient_shares","consumer_update_val","consumer_update_val","consumer_send_maturation","consumer_send_maturation","consumer_send_maturation","some_undels_expired_but_not_completed","send_vsc_without_downtime_ack","consumer_send_maturation","more_than_one_third_val_power_change","some_undels_expired_but_not_completed","complete_undel_immediate","complete_undel_immediate","complete_undel_immediate","complete_undel_immediate","set_unval_hold_false","send_vsc_without_downtime_ack","complete_unval_in_endblock","send_vsc_without_downtime_ack","more_than_one_third_val_power_change","rebond_unval","send_vsc_without_downtime_ack","send_vsc_not_because_change","send_vsc_without_downtime_ack","consumer_send_maturation","some_undels_expired_but_not_completed","send_vsc_without_downtime_ack","some_undels_expired_but_not_completed","consumer_update_val","consumer_del_val","consumer_update_val"]},{"meta":{"commit":"7ffd0c04e4205cbc9caf212abfe6c59ee43153bf"},"constants":{"P":"provider","C":"consumer","UNBONDING_SECONDS_P":70,"UNBONDING_SECONDS_C":50,"TRUSTING_SECONDS":49,"NUM_VALIDATORS":4,"MAX_VALIDATORS":2,"SLASH_DOUBLESIGN":0,"SLASH_DOWNTIME":0,"JAIL_SECONDS":999999999999999,"BLOCK_SECONDS":6,"INITIAL_DELEGATOR_TOKENS":10000000000000,"DELEGATE_AMT_MIN":1000,"DELEGATE_AMT_MAX":5000,"UNDELEGATE_AMT_MIN":1000,"UNDELEGATE_AMT_MAX":5000,"ISDOWNTIME_PROBABILITY":0.5,"MAX_NUM_PACKETS_FOR_DELIVER":6},"actions":[{"ix":0,"action":{"kind":"Undelegate","val":1,"amt":4868},"partialState":{"h":1,"t":6,"tokens":[5000,4000,3000,2000],"delegation":[4000,3000,2000,1000],"delegatorTokens":10000000000000}},{"ix":1,"action":{"kind":"Delegate","val":1,"amt":2102},"partialState":{"h":1,"t":6,"tokens":[5000,6102,3000,2000],"delegation":[4000,5102,2000,1000],"delegatorTokens":9999999997898}},{"ix":2,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":2,"t":12,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":3,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":4,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":5,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":6,"action":{"kind":"Delegate","val":2,"amt":2732},"partialState":{"h":1,"t":6,"tokens":[5000,6102,5732,2000],"delegation":[4000,5102,4732,1000],"delegatorTokens":9999999995166}},{"ix":7,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":3,"t":18,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":8,"action":{"kind":"Undelegate","val":1,"amt":2023},"partialState":{"h":1,"t":6,"tokens":[5000,4079,5732,2000],"delegation":[4000,3079,4732,1000],"delegatorTokens":9999999995166}},{"ix":9,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":10,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":11,"action":{"kind":"Undelegate","val":2,"amt":4307},"partialState":{"h":1,"t":6,"tokens":[5000,4079,1425,2000],"delegation":[4000,3079,425,1000],"delegatorTokens":9999999995166}},{"ix":12,"action":{"kind":"Deliver","chain":"provider","numPackets":2},"partialState":{"h":1,"t":6,"tokens":[5000,4079,1425,2000],"delegation":[4000,3079,425,1000],"delegatorTokens":9999999995166,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":13,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":14,"action":{"kind":"ConsumerSlash","val":2,"infractionHeight":2,"isDowntime":true},"partialState":{"h":3,"t":18,"outstandingDowntime":[false,false,true,false]}},{"ix":15,"action":{"kind":"Deliver","chain":"provider","numPackets":1},"partialState":{"h":1,"t":6,"tokens":[5000,4079,1425,2000],"delegation":[4000,3079,425,1000],"delegatorTokens":9999999995166,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":16,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":17,"action":{"kind":"ConsumerSlash","val":0,"infractionHeight":2,"isDowntime":true},"partialState":{"h":3,"t":18,"outstandingDowntime":[true,false,true,false]}},{"ix":18,"action":{"kind":"Deliver","chain":"provider","numPackets":4},"partialState":{"h":1,"t":6,"tokens":[5000,4079,1425,2000],"delegation":[4000,3079,425,1000],"delegatorTokens":9999999995166,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":19,"action":{"kind":"ConsumerSlash","val":3,"infractionHeight":2,"isDowntime":true},"partialState":{"h":3,"t":18,"outstandingDowntime":[true,false,true,true]}},{"ix":20,"action":{"kind":"Delegate","val":0,"amt":1826},"partialState":{"h":1,"t":6,"tokens":[6826,4079,1425,2000],"delegation":[5826,3079,425,1000],"delegatorTokens":9999999993340}},{"ix":21,"action":{"kind":"Undelegate","val":3,"amt":4505},"partialState":{"h":1,"t":6,"tokens":[6826,4079,1425,2000],"delegation":[5826,3079,425,1000],"delegatorTokens":9999999993340}},{"ix":22,"action":{"kind":"Undelegate","val":1,"amt":4244},"partialState":{"h":1,"t":6,"tokens":[6826,4079,1425,2000],"delegation":[5826,3079,425,1000],"delegatorTokens":9999999993340}},{"ix":23,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":4,"t":24,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[true,false,true,true]}},{"ix":24,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":5,"t":30,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[true,false,true,true]}},{"ix":25,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":2,"t":12,"tokens":[6826,4079,1425,2000],"delegation":[5826,3079,425,1000],"delegatorTokens":9999999993340,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":26,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":27,"action":{"kind":"Undelegate","val":1,"amt":3232},"partialState":{"h":2,"t":12,"tokens":[6826,4079,1425,2000],"delegation":[5826,3079,425,1000],"delegatorTokens":9999999993340}},{"ix":28,"action":{"kind":"Undelegate","val":3,"amt":1624},"partialState":{"h":2,"t":12,"tokens":[6826,4079,1425,2000],"delegation":[5826,3079,425,1000],"delegatorTokens":9999999993340}},{"ix":29,"action":{"kind":"Undelegate","val":3,"amt":2410},"partialState":{"h":2,"t":12,"tokens":[6826,4079,1425,2000],"delegation":[5826,3079,425,1000],"delegatorTokens":9999999993340}},{"ix":30,"action":{"kind":"Delegate","val":1,"amt":1172},"partialState":{"h":2,"t":12,"tokens":[6826,5251,1425,2000],"delegation":[5826,4251,425,1000],"delegatorTokens":9999999992168}},{"ix":31,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":3,"t":18,"tokens":[6826,5251,1425,2000],"delegation":[5826,4251,425,1000],"delegatorTokens":9999999992168,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":32,"action":{"kind":"Delegate","val":0,"amt":4943},"partialState":{"h":3,"t":18,"tokens":[11769,5251,1425,2000],"delegation":[10769,4251,425,1000],"delegatorTokens":9999999987225}},{"ix":33,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":34,"action":{"kind":"Delegate","val":0,"amt":4464},"partialState":{"h":3,"t":18,"tokens":[16233,5251,1425,2000],"delegation":[15233,4251,425,1000],"delegatorTokens":9999999982761}},{"ix":35,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":4,"t":24,"tokens":[16233,5251,1425,2000],"delegation":[15233,4251,425,1000],"delegatorTokens":9999999982761,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":36,"action":{"kind":"Deliver","chain":"provider","numPackets":3},"partialState":{"h":4,"t":24,"tokens":[16233,5251,1425,2000],"delegation":[15233,4251,425,1000],"delegatorTokens":9999999982761,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":37,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":38,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":39,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":5,"t":30,"tokens":[16233,5251,1425,2000],"delegation":[15233,4251,425,1000],"delegatorTokens":9999999982761,"jailed":[1000000000000023,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":40,"action":{"kind":"Delegate","val":3,"amt":1975},"partialState":{"h":5,"t":30,"tokens":[16233,5251,1425,3975],"delegation":[15233,4251,425,2975],"delegatorTokens":9999999980786}},{"ix":41,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":42,"action":{"kind":"Delegate","val":3,"amt":2167},"partialState":{"h":5,"t":30,"tokens":[16233,5251,1425,6142],"delegation":[15233,4251,425,5142],"delegatorTokens":9999999978619}},{"ix":43,"action":{"kind":"Undelegate","val":1,"amt":2661},"partialState":{"h":5,"t":30,"tokens":[16233,2590,1425,6142],"delegation":[15233,1590,425,5142],"delegatorTokens":9999999978619}},{"ix":44,"action":{"kind":"Undelegate","val":1,"amt":2304},"partialState":{"h":5,"t":30,"tokens":[16233,2590,1425,6142],"delegation":[15233,1590,425,5142],"delegatorTokens":9999999978619}},{"ix":45,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":6,"t":36,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[true,false,true,true]}},{"ix":46,"action":{"kind":"Delegate","val":2,"amt":2564},"partialState":{"h":5,"t":30,"tokens":[16233,2590,3989,6142],"delegation":[15233,1590,2989,5142],"delegatorTokens":9999999976055}},{"ix":47,"action":{"kind":"Deliver","chain":"consumer","numPackets":6},"partialState":{"h":6,"t":36,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[true,false,true,true]}},{"ix":48,"action":{"kind":"Undelegate","val":2,"amt":4554},"partialState":{"h":5,"t":30,"tokens":[16233,2590,3989,6142],"delegation":[15233,1590,2989,5142],"delegatorTokens":9999999976055}},{"ix":49,"action":{"kind":"Delegate","val":0,"amt":2360},"partialState":{"h":5,"t":30,"tokens":[18593,2590,3989,6142],"delegation":[17593,1590,2989,5142],"delegatorTokens":9999999973695}},{"ix":50,"action":{"kind":"Undelegate","val":3,"amt":2067},"partialState":{"h":5,"t":30,"tokens":[18593,2590,3989,4075],"delegation":[17593,1590,2989,3075],"delegatorTokens":9999999973695}},{"ix":51,"action":{"kind":"Deliver","chain":"provider","numPackets":6},"partialState":{"h":5,"t":30,"tokens":[18593,2590,3989,4075],"delegation":[17593,1590,2989,3075],"delegatorTokens":9999999973695,"jailed":[1000000000000023,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":52,"action":{"kind":"Delegate","val":2,"amt":3128},"partialState":{"h":5,"t":30,"tokens":[18593,2590,7117,4075],"delegation":[17593,1590,6117,3075],"delegatorTokens":9999999970567}},{"ix":53,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":7,"t":42,"consumerPower":[16233,5251,null,null],"outstandingDowntime":[true,false,true,true]}},{"ix":54,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":55,"action":{"kind":"Undelegate","val":0,"amt":2358},"partialState":{"h":5,"t":30,"tokens":[16235,2590,7117,4075],"delegation":[15235,1590,6117,3075],"delegatorTokens":9999999970567}},{"ix":56,"action":{"kind":"Deliver","chain":"provider","numPackets":6},"partialState":{"h":5,"t":30,"tokens":[16235,2590,7117,4075],"delegation":[15235,1590,6117,3075],"delegatorTokens":9999999970567,"jailed":[1000000000000023,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":57,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":6,"t":36,"tokens":[16235,2590,7117,4075],"delegation":[15235,1590,6117,3075],"delegatorTokens":9999999970567,"jailed":[1000000000000023,null,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":58,"action":{"kind":"Delegate","val":1,"amt":3094},"partialState":{"h":6,"t":36,"tokens":[16235,5684,7117,4075],"delegation":[15235,4684,6117,3075],"delegatorTokens":9999999967473}},{"ix":59,"action":{"kind":"Undelegate","val":3,"amt":2847},"partialState":{"h":6,"t":36,"tokens":[16235,5684,7117,1228],"delegation":[15235,4684,6117,228],"delegatorTokens":9999999967473}},{"ix":60,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":7,"t":42,"tokens":[16235,5684,7117,1228],"delegation":[15235,4684,6117,228],"delegatorTokens":9999999967473,"jailed":[1000000000000023,null,null,null],"status":["unbonding","bonded","bonded","unbonding"]}},{"ix":61,"action":{"kind":"Deliver","chain":"consumer","numPackets":2},"partialState":{"h":7,"t":42,"consumerPower":[16233,5251,null,null],"outstandingDowntime":[false,false,true,true]}},{"ix":62,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":63,"action":{"kind":"Deliver","chain":"provider","numPackets":3},"partialState":{"h":7,"t":42,"tokens":[16235,5684,7117,1228],"delegation":[15235,4684,6117,228],"delegatorTokens":9999999967473,"jailed":[1000000000000023,null,null,null],"status":["unbonding","bonded","bonded","unbonding"]}},{"ix":64,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":8,"t":48,"consumerPower":[null,null,7117,4075],"outstandingDowntime":[false,false,true,true]}},{"ix":65,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":66,"action":{"kind":"Undelegate","val":2,"amt":4606},"partialState":{"h":7,"t":42,"tokens":[16235,5684,2511,1228],"delegation":[15235,4684,1511,228],"delegatorTokens":9999999967473}},{"ix":67,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":68,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":9,"t":54,"consumerPower":[null,null,7117,4075],"outstandingDowntime":[false,false,true,true]}},{"ix":69,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":10,"t":60,"consumerPower":[null,null,7117,4075],"outstandingDowntime":[false,false,true,true]}},{"ix":70,"action":{"kind":"Undelegate","val":1,"amt":3796},"partialState":{"h":7,"t":42,"tokens":[16235,1888,2511,1228],"delegation":[15235,888,1511,228],"delegatorTokens":9999999967473}},{"ix":71,"action":{"kind":"Undelegate","val":2,"amt":4060},"partialState":{"h":7,"t":42,"tokens":[16235,1888,2511,1228],"delegation":[15235,888,1511,228],"delegatorTokens":9999999967473}},{"ix":72,"action":{"kind":"Deliver","chain":"provider","numPackets":5},"partialState":{"h":7,"t":42,"tokens":[16235,1888,2511,1228],"delegation":[15235,888,1511,228],"delegatorTokens":9999999967473,"jailed":[1000000000000023,null,null,null],"status":["unbonding","bonded","bonded","unbonding"]}},{"ix":73,"action":{"kind":"Delegate","val":1,"amt":4037},"partialState":{"h":7,"t":42,"tokens":[16235,5925,2511,1228],"delegation":[15235,4925,1511,228],"delegatorTokens":9999999963436}},{"ix":74,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":8,"t":48,"tokens":[16235,5925,2511,1228],"delegation":[15235,4925,1511,228],"delegatorTokens":9999999963436,"jailed":[1000000000000023,null,null,null],"status":["unbonding","bonded","bonded","unbonding"]}},{"ix":75,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":76,"action":{"kind":"Delegate","val":0,"amt":2454},"partialState":{"h":8,"t":48,"tokens":[18689,5925,2511,1228],"delegation":[17689,4925,1511,228],"delegatorTokens":9999999960982}},{"ix":77,"action":{"kind":"Delegate","val":2,"amt":1823},"partialState":{"h":8,"t":48,"tokens":[18689,5925,4334,1228],"delegation":[17689,4925,3334,228],"delegatorTokens":9999999959159}},{"ix":78,"action":{"kind":"Deliver","chain":"provider","numPackets":1},"partialState":{"h":8,"t":48,"tokens":[18689,5925,4334,1228],"delegation":[17689,4925,3334,228],"delegatorTokens":9999999959159,"jailed":[1000000000000023,null,null,null],"status":["unbonding","bonded","bonded","unbonding"]}},{"ix":79,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":11,"t":66,"consumerPower":[null,null,7117,4075],"outstandingDowntime":[false,false,true,true]}},{"ix":80,"action":{"kind":"Delegate","val":2,"amt":3038},"partialState":{"h":8,"t":48,"tokens":[18689,5925,7372,1228],"delegation":[17689,4925,6372,228],"delegatorTokens":9999999956121}},{"ix":81,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":12,"t":72,"consumerPower":[null,null,7117,4075],"outstandingDowntime":[false,false,true,true]}},{"ix":82,"action":{"kind":"Deliver","chain":"provider","numPackets":4},"partialState":{"h":8,"t":48,"tokens":[18689,5925,7372,1228],"delegation":[17689,4925,6372,228],"delegatorTokens":9999999956121,"jailed":[1000000000000023,null,null,null],"status":["unbonding","bonded","bonded","unbonding"]}},{"ix":83,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":84,"action":{"kind":"Undelegate","val":2,"amt":3785},"partialState":{"h":8,"t":48,"tokens":[18689,5925,3587,1228],"delegation":[17689,4925,2587,228],"delegatorTokens":9999999956121}},{"ix":85,"action":{"kind":"Undelegate","val":3,"amt":4082},"partialState":{"h":8,"t":48,"tokens":[18689,5925,3587,1228],"delegation":[17689,4925,2587,228],"delegatorTokens":9999999956121}},{"ix":86,"action":{"kind":"Undelegate","val":3,"amt":1925},"partialState":{"h":8,"t":48,"tokens":[18689,5925,3587,1228],"delegation":[17689,4925,2587,228],"delegatorTokens":9999999956121}},{"ix":87,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":9,"t":54,"tokens":[18689,5925,3587,1228],"delegation":[17689,4925,2587,228],"delegatorTokens":9999999956121,"jailed":[1000000000000023,null,null,null],"status":["unbonding","bonded","bonded","unbonding"]}},{"ix":88,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":10,"t":60,"tokens":[18689,5925,3587,1228],"delegation":[17689,4925,2587,228],"delegatorTokens":9999999956121,"jailed":[1000000000000023,null,null,null],"status":["unbonding","bonded","bonded","unbonding"]}},{"ix":89,"action":{"kind":"Delegate","val":0,"amt":4513},"partialState":{"h":10,"t":60,"tokens":[23202,5925,3587,1228],"delegation":[22202,4925,2587,228],"delegatorTokens":9999999951608}},{"ix":90,"action":{"kind":"Delegate","val":0,"amt":2480},"partialState":{"h":10,"t":60,"tokens":[25682,5925,3587,1228],"delegation":[24682,4925,2587,228],"delegatorTokens":9999999949128}},{"ix":91,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":11,"t":66,"tokens":[25682,5925,3587,1228],"delegation":[24682,4925,2587,228],"delegatorTokens":9999999949128,"jailed":[1000000000000023,null,null,null],"status":["unbonding","bonded","bonded","unbonding"]}},{"ix":92,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":93,"action":{"kind":"Deliver","chain":"provider","numPackets":6},"partialState":{"h":11,"t":66,"tokens":[25682,5925,3587,1228],"delegation":[24682,4925,2587,228],"delegatorTokens":9999999949128,"jailed":[1000000000000023,null,null,null],"status":["unbonding","bonded","bonded","unbonding"]}},{"ix":94,"action":{"kind":"Deliver","chain":"consumer","numPackets":1},"partialState":{"h":12,"t":72,"consumerPower":[null,null,7117,4075],"outstandingDowntime":[false,false,true,true]}},{"ix":95,"action":{"kind":"Delegate","val":1,"amt":2445},"partialState":{"h":11,"t":66,"tokens":[25682,8370,3587,1228],"delegation":[24682,7370,2587,228],"delegatorTokens":9999999946683}},{"ix":96,"action":{"kind":"Delegate","val":1,"amt":4060},"partialState":{"h":11,"t":66,"tokens":[25682,12430,3587,1228],"delegation":[24682,11430,2587,228],"delegatorTokens":9999999942623}},{"ix":97,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":12,"t":72,"tokens":[25682,12430,3587,1228],"delegation":[24682,11430,2587,228],"delegatorTokens":9999999942623,"jailed":[1000000000000023,null,null,null],"status":["unbonding","bonded","bonded","unbonding"]}},{"ix":98,"action":{"kind":"Deliver","chain":"consumer","numPackets":1},"partialState":{"h":12,"t":72,"consumerPower":[null,null,7117,4075],"outstandingDowntime":[false,false,true,true]}},{"ix":99,"action":{"kind":"Delegate","val":2,"amt":2942},"partialState":{"h":12,"t":72,"tokens":[25682,12430,6529,1228],"delegation":[24682,11430,5529,228],"delegatorTokens":9999999939681}},{"ix":100,"action":{"kind":"Delegate","val":2,"amt":4255},"partialState":{"h":12,"t":72,"tokens":[25682,12430,10784,1228],"delegation":[24682,11430,9784,228],"delegatorTokens":9999999935426}},{"ix":101,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":102,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":13,"t":78,"consumerPower":[null,5925,2511,null],"outstandingDowntime":[false,false,true,true]}},{"ix":103,"action":{"kind":"Deliver","chain":"consumer","numPackets":1},"partialState":{"h":13,"t":78,"consumerPower":[null,5925,2511,null],"outstandingDowntime":[false,false,true,true]}},{"ix":104,"action":{"kind":"Delegate","val":1,"amt":2484},"partialState":{"h":12,"t":72,"tokens":[25682,14914,10784,1228],"delegation":[24682,13914,9784,228],"delegatorTokens":9999999932942}},{"ix":105,"action":{"kind":"Delegate","val":1,"amt":2938},"partialState":{"h":12,"t":72,"tokens":[25682,17852,10784,1228],"delegation":[24682,16852,9784,228],"delegatorTokens":9999999930004}},{"ix":106,"action":{"kind":"Deliver","chain":"provider","numPackets":2},"partialState":{"h":12,"t":72,"tokens":[25682,17852,10784,1228],"delegation":[24682,16852,9784,228],"delegatorTokens":9999999930004,"jailed":[1000000000000023,null,null,null],"status":["unbonding","bonded","bonded","unbonding"]}},{"ix":107,"action":{"kind":"Delegate","val":0,"amt":2273},"partialState":{"h":12,"t":72,"tokens":[27955,17852,10784,1228],"delegation":[26955,16852,9784,228],"delegatorTokens":9999999927731}},{"ix":108,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":13,"t":78,"tokens":[27955,17852,10784,1228],"delegation":[26955,16852,9784,228],"delegatorTokens":9999999927731,"jailed":[1000000000000023,null,null,null],"status":["unbonding","bonded","bonded","unbonding"]}},{"ix":109,"action":{"kind":"Delegate","val":2,"amt":4928},"partialState":{"h":13,"t":78,"tokens":[27955,17852,15712,1228],"delegation":[26955,16852,14712,228],"delegatorTokens":9999999922803}},{"ix":110,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":14,"t":84,"consumerPower":[null,5925,3587,null],"outstandingDowntime":[false,false,true,true]}},{"ix":111,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":112,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":113,"action":{"kind":"Deliver","chain":"provider","numPackets":2},"partialState":{"h":13,"t":78,"tokens":[27955,17852,15712,1228],"delegation":[26955,16852,14712,228],"delegatorTokens":9999999922803,"jailed":[1000000000000023,null,null,null],"status":["unbonding","bonded","bonded","unbonding"]}},{"ix":114,"action":{"kind":"Deliver","chain":"consumer","numPackets":6},"partialState":{"h":14,"t":84,"consumerPower":[null,5925,3587,null],"outstandingDowntime":[false,false,true,true]}},{"ix":115,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":116,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":117,"action":{"kind":"Deliver","chain":"consumer","numPackets":4},"partialState":{"h":14,"t":84,"consumerPower":[null,5925,3587,null],"outstandingDowntime":[false,false,true,true]}},{"ix":118,"action":{"kind":"Undelegate","val":0,"amt":3682},"partialState":{"h":13,"t":78,"tokens":[24273,17852,15712,1228],"delegation":[23273,16852,14712,228],"delegatorTokens":9999999922803}},{"ix":119,"action":{"kind":"Undelegate","val":2,"amt":4624},"partialState":{"h":13,"t":78,"tokens":[24273,17852,11088,1228],"delegation":[23273,16852,10088,228],"delegatorTokens":9999999922803}},{"ix":120,"action":{"kind":"Delegate","val":3,"amt":1724},"partialState":{"h":13,"t":78,"tokens":[24273,17852,11088,2952],"delegation":[23273,16852,10088,1952],"delegatorTokens":9999999921079}},{"ix":121,"action":{"kind":"Undelegate","val":3,"amt":1745},"partialState":{"h":13,"t":78,"tokens":[24273,17852,11088,1207],"delegation":[23273,16852,10088,207],"delegatorTokens":9999999921079}},{"ix":122,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":123,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":124,"action":{"kind":"Deliver","chain":"provider","numPackets":2},"partialState":{"h":13,"t":78,"tokens":[24273,17852,11088,1207],"delegation":[23273,16852,10088,207],"delegatorTokens":9999999921079,"jailed":[1000000000000023,null,null,null],"status":["unbonding","bonded","bonded","unbonding"]}},{"ix":125,"action":{"kind":"Deliver","chain":"provider","numPackets":5},"partialState":{"h":13,"t":78,"tokens":[24273,17852,11088,1207],"delegation":[23273,16852,10088,207],"delegatorTokens":9999999921079,"jailed":[1000000000000023,null,null,null],"status":["unbonding","bonded","bonded","unbonding"]}},{"ix":126,"action":{"kind":"Delegate","val":0,"amt":4011},"partialState":{"h":13,"t":78,"tokens":[28284,17852,11088,1207],"delegation":[27284,16852,10088,207],"delegatorTokens":9999999917068}},{"ix":127,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":128,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":129,"action":{"kind":"Deliver","chain":"provider","numPackets":4},"partialState":{"h":13,"t":78,"tokens":[28284,17852,11088,1207],"delegation":[27284,16852,10088,207],"delegatorTokens":9999999917068,"jailed":[1000000000000023,null,null,null],"status":["unbonding","bonded","bonded","unbonding"]}},{"ix":130,"action":{"kind":"Undelegate","val":3,"amt":1751},"partialState":{"h":13,"t":78,"tokens":[28284,17852,11088,1207],"delegation":[27284,16852,10088,207],"delegatorTokens":9999999917068}},{"ix":131,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":132,"action":{"kind":"Delegate","val":0,"amt":2599},"partialState":{"h":13,"t":78,"tokens":[30883,17852,11088,1207],"delegation":[29883,16852,10088,207],"delegatorTokens":9999999914469}},{"ix":133,"action":{"kind":"Undelegate","val":2,"amt":3610},"partialState":{"h":13,"t":78,"tokens":[30883,17852,7478,1207],"delegation":[29883,16852,6478,207],"delegatorTokens":9999999914469}},{"ix":134,"action":{"kind":"Undelegate","val":0,"amt":4441},"partialState":{"h":13,"t":78,"tokens":[26442,17852,7478,1207],"delegation":[25442,16852,6478,207],"delegatorTokens":9999999914469}},{"ix":135,"action":{"kind":"Undelegate","val":0,"amt":1870},"partialState":{"h":13,"t":78,"tokens":[24572,17852,7478,1207],"delegation":[23572,16852,6478,207],"delegatorTokens":9999999914469}},{"ix":136,"action":{"kind":"Undelegate","val":1,"amt":1541},"partialState":{"h":13,"t":78,"tokens":[24572,16311,7478,1207],"delegation":[23572,15311,6478,207],"delegatorTokens":9999999914469}},{"ix":137,"action":{"kind":"Deliver","chain":"provider","numPackets":3},"partialState":{"h":13,"t":78,"tokens":[24572,16311,7478,1207],"delegation":[23572,15311,6478,207],"delegatorTokens":9999999914469,"jailed":[1000000000000023,null,null,null],"status":["unbonding","bonded","bonded","unbonding"]}},{"ix":138,"action":{"kind":"Undelegate","val":1,"amt":4366},"partialState":{"h":13,"t":78,"tokens":[24572,11945,7478,1207],"delegation":[23572,10945,6478,207],"delegatorTokens":9999999914469}},{"ix":139,"action":{"kind":"Delegate","val":0,"amt":4009},"partialState":{"h":13,"t":78,"tokens":[28581,11945,7478,1207],"delegation":[27581,10945,6478,207],"delegatorTokens":9999999910460}},{"ix":140,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":141,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":14,"t":84,"tokens":[28581,11945,7478,1207],"delegation":[27581,10945,6478,207],"delegatorTokens":9999999910460,"jailed":[1000000000000023,null,null,null],"status":["unbonding","bonded","bonded","unbonding"]}},{"ix":142,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":15,"t":90,"consumerPower":[null,12430,3587,null],"outstandingDowntime":[false,false,true,true]}},{"ix":143,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":144,"action":{"kind":"Deliver","chain":"provider","numPackets":2},"partialState":{"h":14,"t":84,"tokens":[28581,11945,7478,1207],"delegation":[27581,10945,6478,207],"delegatorTokens":9999999910460,"jailed":[1000000000000023,null,null,null],"status":["unbonding","bonded","bonded","unbonding"]}},{"ix":145,"action":{"kind":"Undelegate","val":1,"amt":2250},"partialState":{"h":14,"t":84,"tokens":[28581,9695,7478,1207],"delegation":[27581,8695,6478,207],"delegatorTokens":9999999910460}},{"ix":146,"action":{"kind":"Deliver","chain":"consumer","numPackets":5},"partialState":{"h":15,"t":90,"consumerPower":[null,12430,3587,null],"outstandingDowntime":[false,false,true,true]}},{"ix":147,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":148,"action":{"kind":"Delegate","val":2,"amt":1972},"partialState":{"h":14,"t":84,"tokens":[28581,9695,9450,1207],"delegation":[27581,8695,8450,207],"delegatorTokens":9999999908488}},{"ix":149,"action":{"kind":"Deliver","chain":"consumer","numPackets":3},"partialState":{"h":15,"t":90,"consumerPower":[null,12430,3587,null],"outstandingDowntime":[false,false,true,true]}},{"ix":150,"action":{"kind":"Delegate","val":0,"amt":2619},"partialState":{"h":14,"t":84,"tokens":[31200,9695,9450,1207],"delegation":[30200,8695,8450,207],"delegatorTokens":9999999905869}},{"ix":151,"action":{"kind":"Deliver","chain":"provider","numPackets":4},"partialState":{"h":14,"t":84,"tokens":[31200,9695,9450,1207],"delegation":[30200,8695,8450,207],"delegatorTokens":9999999905869,"jailed":[1000000000000023,null,null,null],"status":["unbonding","bonded","bonded","unbonding"]}},{"ix":152,"action":{"kind":"Deliver","chain":"consumer","numPackets":3},"partialState":{"h":15,"t":90,"consumerPower":[null,12430,3587,null],"outstandingDowntime":[false,false,true,true]}},{"ix":153,"action":{"kind":"Delegate","val":1,"amt":4089},"partialState":{"h":14,"t":84,"tokens":[31200,13784,9450,1207],"delegation":[30200,12784,8450,207],"delegatorTokens":9999999901780}},{"ix":154,"action":{"kind":"Undelegate","val":3,"amt":1224},"partialState":{"h":14,"t":84,"tokens":[31200,13784,9450,1207],"delegation":[30200,12784,8450,207],"delegatorTokens":9999999901780}},{"ix":155,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":156,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":157,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":16,"t":96,"consumerPower":[null,17852,10784,null],"outstandingDowntime":[false,false,true,true]}},{"ix":158,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":15,"t":90,"tokens":[31200,13784,9450,1207],"delegation":[30200,12784,8450,207],"delegatorTokens":9999999901780,"jailed":[1000000000000023,null,null,null],"status":["unbonding","bonded","bonded","unbonding"]}},{"ix":159,"action":{"kind":"Delegate","val":1,"amt":3806},"partialState":{"h":15,"t":90,"tokens":[31200,17590,9450,1207],"delegation":[30200,16590,8450,207],"delegatorTokens":9999999897974}},{"ix":160,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":17,"t":102,"consumerPower":[null,17852,10784,null],"outstandingDowntime":[false,false,true,true]}},{"ix":161,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":162,"action":{"kind":"Undelegate","val":2,"amt":2080},"partialState":{"h":15,"t":90,"tokens":[31200,17590,7370,1207],"delegation":[30200,16590,6370,207],"delegatorTokens":9999999897974}},{"ix":163,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":164,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":18,"t":108,"consumerPower":[null,17852,10784,null],"outstandingDowntime":[false,false,true,true]}},{"ix":165,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":19,"t":114,"consumerPower":[null,17852,10784,null],"outstandingDowntime":[false,false,true,true]}},{"ix":166,"action":{"kind":"Deliver","chain":"consumer","numPackets":5},"partialState":{"h":19,"t":114,"consumerPower":[null,17852,10784,null],"outstandingDowntime":[false,false,true,true]}},{"ix":167,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":168,"action":{"kind":"Undelegate","val":0,"amt":1814},"partialState":{"h":15,"t":90,"tokens":[29386,17590,7370,1207],"delegation":[28386,16590,6370,207],"delegatorTokens":9999999897974}},{"ix":169,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":20,"t":120,"consumerPower":[null,11945,7478,null],"outstandingDowntime":[false,false,true,true]}},{"ix":170,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":171,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":21,"t":126,"consumerPower":[null,11945,7478,null],"outstandingDowntime":[false,false,true,true]}},{"ix":172,"action":{"kind":"Undelegate","val":0,"amt":3393},"partialState":{"h":15,"t":90,"tokens":[25993,17590,7370,1207],"delegation":[24993,16590,6370,207],"delegatorTokens":9999999897974}},{"ix":173,"action":{"kind":"Undelegate","val":0,"amt":1220},"partialState":{"h":15,"t":90,"tokens":[24773,17590,7370,1207],"delegation":[23773,16590,6370,207],"delegatorTokens":9999999897974}},{"ix":174,"action":{"kind":"Deliver","chain":"consumer","numPackets":1},"partialState":{"h":21,"t":126,"consumerPower":[null,11945,7478,null],"outstandingDowntime":[false,false,true,true]}},{"ix":175,"action":{"kind":"Delegate","val":3,"amt":4388},"partialState":{"h":15,"t":90,"tokens":[24773,17590,7370,5595],"delegation":[23773,16590,6370,4595],"delegatorTokens":9999999893586}},{"ix":176,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":16,"t":96,"tokens":[24773,17590,7370,5595],"delegation":[23773,16590,6370,4595],"delegatorTokens":9999999893586,"jailed":[1000000000000023,null,null,null],"status":["unbonding","bonded","bonded","unbonding"]}},{"ix":177,"action":{"kind":"Delegate","val":1,"amt":3890},"partialState":{"h":16,"t":96,"tokens":[24773,21480,7370,5595],"delegation":[23773,20480,6370,4595],"delegatorTokens":9999999889696}},{"ix":178,"action":{"kind":"Undelegate","val":1,"amt":4687},"partialState":{"h":16,"t":96,"tokens":[24773,16793,7370,5595],"delegation":[23773,15793,6370,4595],"delegatorTokens":9999999889696}},{"ix":179,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":180,"action":{"kind":"Delegate","val":1,"amt":1977},"partialState":{"h":16,"t":96,"tokens":[24773,18770,7370,5595],"delegation":[23773,17770,6370,4595],"delegatorTokens":9999999887719}},{"ix":181,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":17,"t":102,"tokens":[24773,18770,7370,5595],"delegation":[23773,17770,6370,4595],"delegatorTokens":9999999887719,"jailed":[1000000000000023,null,null,null],"status":["unbonding","bonded","bonded","unbonding"]}},{"ix":182,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":183,"action":{"kind":"Delegate","val":3,"amt":2978},"partialState":{"h":17,"t":102,"tokens":[24773,18770,7370,8573],"delegation":[23773,17770,6370,7573],"delegatorTokens":9999999884741}},{"ix":184,"action":{"kind":"Undelegate","val":0,"amt":3593},"partialState":{"h":17,"t":102,"tokens":[21180,18770,7370,8573],"delegation":[20180,17770,6370,7573],"delegatorTokens":9999999884741}},{"ix":185,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":18,"t":108,"tokens":[21180,18770,7370,8573],"delegation":[20180,17770,6370,7573],"delegatorTokens":9999999884741,"jailed":[1000000000000023,null,null,null],"status":["unbonding","bonded","unbonding","bonded"]}},{"ix":186,"action":{"kind":"Undelegate","val":0,"amt":3424},"partialState":{"h":18,"t":108,"tokens":[17756,18770,7370,8573],"delegation":[16756,17770,6370,7573],"delegatorTokens":9999999884741}},{"ix":187,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":22,"t":132,"consumerPower":[null,11945,7478,null],"outstandingDowntime":[false,false,true,true]}},{"ix":188,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":189,"action":{"kind":"Undelegate","val":2,"amt":2046},"partialState":{"h":18,"t":108,"tokens":[17756,18770,5324,8573],"delegation":[16756,17770,4324,7573],"delegatorTokens":9999999884741}},{"ix":190,"action":{"kind":"Delegate","val":3,"amt":4442},"partialState":{"h":18,"t":108,"tokens":[17756,18770,5324,13015],"delegation":[16756,17770,4324,12015],"delegatorTokens":9999999880299}},{"ix":191,"action":{"kind":"Undelegate","val":3,"amt":3754},"partialState":{"h":18,"t":108,"tokens":[17756,18770,5324,9261],"delegation":[16756,17770,4324,8261],"delegatorTokens":9999999880299}},{"ix":192,"action":{"kind":"Delegate","val":1,"amt":3727},"partialState":{"h":18,"t":108,"tokens":[17756,22497,5324,9261],"delegation":[16756,21497,4324,8261],"delegatorTokens":9999999876572}},{"ix":193,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":194,"action":{"kind":"Deliver","chain":"provider","numPackets":6},"partialState":{"h":18,"t":108,"tokens":[17756,22497,5324,9261],"delegation":[16756,21497,4324,8261],"delegatorTokens":9999999876572,"jailed":[1000000000000023,null,null,null],"status":["unbonding","bonded","unbonding","bonded"]}},{"ix":195,"action":{"kind":"Undelegate","val":2,"amt":2854},"partialState":{"h":18,"t":108,"tokens":[17756,22497,2470,9261],"delegation":[16756,21497,1470,8261],"delegatorTokens":9999999876572}},{"ix":196,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":19,"t":114,"tokens":[17756,22497,2470,9261],"delegation":[16756,21497,1470,8261],"delegatorTokens":9999999889988,"jailed":[1000000000000023,null,null,null],"status":["unbonding","bonded","unbonding","bonded"]}},{"ix":197,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":20,"t":120,"tokens":[17756,22497,2470,9261],"delegation":[16756,21497,1470,8261],"delegatorTokens":9999999889988,"jailed":[1000000000000023,null,null,null],"status":["unbonded","bonded","unbonding","bonded"]}},{"ix":198,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":199,"action":{"kind":"Deliver","chain":"provider","numPackets":5},"partialState":{"h":20,"t":120,"tokens":[17756,22497,2470,9261],"delegation":[16756,21497,1470,8261],"delegatorTokens":9999999889988,"jailed":[1000000000000023,null,null,null],"status":["unbonded","bonded","unbonding","bonded"]}}],"events":["insufficient_shares","send_downtime_slash_request","send_downtime_slash_request","send_downtime_slash_request","insufficient_shares","insufficient_shares","send_vsc_without_downtime_ack","insufficient_shares","insufficient_shares","insufficient_shares","send_vsc_without_downtime_ack","send_vsc_without_downtime_ack","receive_slash_request_unbonded","receive_downtime_slash_request","jail","receive_slash_request_unbonded","insufficient_shares","insufficient_shares","consumer_update_val","consumer_update_val","more_than_one_third_val_power_change","send_vsc_with_downtime_ack","more_than_one_third_val_power_change","rebond_unval","send_vsc_without_downtime_ack","receive_downtime_slash_ack","consumer_del_val","consumer_del_val","consumer_add_val","consumer_add_val","insufficient_shares","send_vsc_without_downtime_ack","insufficient_shares","insufficient_shares","send_vsc_without_downtime_ack","send_vsc_without_downtime_ack","consumer_add_val","consumer_del_val","consumer_update_val","send_vsc_without_downtime_ack","consumer_update_val","insufficient_shares","some_undels_expired_but_not_completed","send_vsc_without_downtime_ack","consumer_update_val","insufficient_shares","consumer_send_maturation","consumer_send_maturation","consumer_send_maturation","consumer_update_val","consumer_update_val","send_vsc_without_downtime_ack","consumer_send_maturation","consumer_update_val","consumer_update_val","send_vsc_without_downtime_ack","send_vsc_without_downtime_ack","rebond_unval","some_undels_expired_but_not_completed","send_vsc_without_downtime_ack","consumer_send_maturation","consumer_send_maturation","some_undels_expired_but_not_completed","complete_undel_immediate","complete_undel_immediate","complete_undel_immediate","complete_undel_immediate","complete_undel_immediate","set_unval_hold_false","send_vsc_without_downtime_ack","complete_unval_in_endblock","some_undels_expired_but_not_completed"]},{"meta":{"commit":"7ffd0c04e4205cbc9caf212abfe6c59ee43153bf"},"constants":{"P":"provider","C":"consumer","UNBONDING_SECONDS_P":70,"UNBONDING_SECONDS_C":50,"TRUSTING_SECONDS":49,"NUM_VALIDATORS":4,"MAX_VALIDATORS":2,"SLASH_DOUBLESIGN":0,"SLASH_DOWNTIME":0,"JAIL_SECONDS":999999999999999,"BLOCK_SECONDS":6,"INITIAL_DELEGATOR_TOKENS":10000000000000,"DELEGATE_AMT_MIN":1000,"DELEGATE_AMT_MAX":5000,"UNDELEGATE_AMT_MIN":1000,"UNDELEGATE_AMT_MAX":5000,"ISDOWNTIME_PROBABILITY":0.5,"MAX_NUM_PACKETS_FOR_DELIVER":6},"actions":[{"ix":0,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":2,"t":12,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":1,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":2,"action":{"kind":"Delegate","val":1,"amt":4274},"partialState":{"h":1,"t":6,"tokens":[5000,8274,3000,2000],"delegation":[4000,7274,2000,1000],"delegatorTokens":9999999995726}},{"ix":3,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":2,"t":12,"tokens":[5000,8274,3000,2000],"delegation":[4000,7274,2000,1000],"delegatorTokens":9999999995726,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":4,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":5,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":6,"action":{"kind":"Deliver","chain":"consumer","numPackets":6},"partialState":{"h":2,"t":12,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":7,"action":{"kind":"Deliver","chain":"provider","numPackets":1},"partialState":{"h":2,"t":12,"tokens":[5000,8274,3000,2000],"delegation":[4000,7274,2000,1000],"delegatorTokens":9999999995726,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":8,"action":{"kind":"Undelegate","val":2,"amt":4369},"partialState":{"h":2,"t":12,"tokens":[5000,8274,3000,2000],"delegation":[4000,7274,2000,1000],"delegatorTokens":9999999995726}},{"ix":9,"action":{"kind":"ConsumerSlash","val":0,"infractionHeight":1,"isDowntime":true},"partialState":{"h":2,"t":12,"outstandingDowntime":[true,false,false,false]}},{"ix":10,"action":{"kind":"ConsumerSlash","val":3,"infractionHeight":1,"isDowntime":true},"partialState":{"h":2,"t":12,"outstandingDowntime":[true,false,false,true]}},{"ix":11,"action":{"kind":"ConsumerSlash","val":2,"infractionHeight":0,"isDowntime":true},"partialState":{"h":2,"t":12,"outstandingDowntime":[true,false,true,true]}},{"ix":12,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":3,"t":18,"tokens":[5000,8274,3000,2000],"delegation":[4000,7274,2000,1000],"delegatorTokens":9999999995726,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":13,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":14,"action":{"kind":"Delegate","val":1,"amt":4667},"partialState":{"h":3,"t":18,"tokens":[5000,12941,3000,2000],"delegation":[4000,11941,2000,1000],"delegatorTokens":9999999991059}},{"ix":15,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":3,"t":18,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[true,false,true,true]}},{"ix":16,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":17,"action":{"kind":"Delegate","val":1,"amt":1738},"partialState":{"h":3,"t":18,"tokens":[5000,14679,3000,2000],"delegation":[4000,13679,2000,1000],"delegatorTokens":9999999989321}},{"ix":18,"action":{"kind":"Delegate","val":0,"amt":3741},"partialState":{"h":3,"t":18,"tokens":[8741,14679,3000,2000],"delegation":[7741,13679,2000,1000],"delegatorTokens":9999999985580}},{"ix":19,"action":{"kind":"Delegate","val":3,"amt":1126},"partialState":{"h":3,"t":18,"tokens":[8741,14679,3000,3126],"delegation":[7741,13679,2000,2126],"delegatorTokens":9999999984454}},{"ix":20,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":21,"action":{"kind":"Deliver","chain":"consumer","numPackets":6},"partialState":{"h":3,"t":18,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[true,false,true,true]}},{"ix":22,"action":{"kind":"Deliver","chain":"consumer","numPackets":6},"partialState":{"h":3,"t":18,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[true,false,true,true]}},{"ix":23,"action":{"kind":"Undelegate","val":1,"amt":3153},"partialState":{"h":3,"t":18,"tokens":[8741,11526,3000,3126],"delegation":[7741,10526,2000,2126],"delegatorTokens":9999999984454}},{"ix":24,"action":{"kind":"Deliver","chain":"provider","numPackets":5},"partialState":{"h":3,"t":18,"tokens":[8741,11526,3000,3126],"delegation":[7741,10526,2000,2126],"delegatorTokens":9999999984454,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":25,"action":{"kind":"Undelegate","val":2,"amt":2810},"partialState":{"h":3,"t":18,"tokens":[8741,11526,3000,3126],"delegation":[7741,10526,2000,2126],"delegatorTokens":9999999984454}},{"ix":26,"action":{"kind":"Deliver","chain":"provider","numPackets":1},"partialState":{"h":3,"t":18,"tokens":[8741,11526,3000,3126],"delegation":[7741,10526,2000,2126],"delegatorTokens":9999999984454,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":27,"action":{"kind":"Deliver","chain":"provider","numPackets":3},"partialState":{"h":3,"t":18,"tokens":[8741,11526,3000,3126],"delegation":[7741,10526,2000,2126],"delegatorTokens":9999999984454,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":28,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":4,"t":24,"consumerPower":[5000,8274,null,null],"outstandingDowntime":[true,false,true,true]}},{"ix":29,"action":{"kind":"Deliver","chain":"provider","numPackets":2},"partialState":{"h":3,"t":18,"tokens":[8741,11526,3000,3126],"delegation":[7741,10526,2000,2126],"delegatorTokens":9999999984454,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":30,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":5,"t":30,"consumerPower":[5000,8274,null,null],"outstandingDowntime":[true,false,true,true]}},{"ix":31,"action":{"kind":"Deliver","chain":"provider","numPackets":6},"partialState":{"h":3,"t":18,"tokens":[8741,11526,3000,3126],"delegation":[7741,10526,2000,2126],"delegatorTokens":9999999984454,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":32,"action":{"kind":"Delegate","val":3,"amt":4521},"partialState":{"h":3,"t":18,"tokens":[8741,11526,3000,7647],"delegation":[7741,10526,2000,6647],"delegatorTokens":9999999979933}},{"ix":33,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":4,"t":24,"tokens":[8741,11526,3000,7647],"delegation":[7741,10526,2000,6647],"delegatorTokens":9999999979933,"jailed":[1000000000000017,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":34,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":35,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":6,"t":36,"consumerPower":[5000,8274,null,null],"outstandingDowntime":[true,false,true,true]}},{"ix":36,"action":{"kind":"Undelegate","val":0,"amt":4128},"partialState":{"h":4,"t":24,"tokens":[4613,11526,3000,7647],"delegation":[3613,10526,2000,6647],"delegatorTokens":9999999979933}},{"ix":37,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":38,"action":{"kind":"Undelegate","val":3,"amt":4332},"partialState":{"h":4,"t":24,"tokens":[4613,11526,3000,3315],"delegation":[3613,10526,2000,2315],"delegatorTokens":9999999979933}},{"ix":39,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":40,"action":{"kind":"Delegate","val":3,"amt":1519},"partialState":{"h":4,"t":24,"tokens":[4613,11526,3000,4834],"delegation":[3613,10526,2000,3834],"delegatorTokens":9999999978414}},{"ix":41,"action":{"kind":"Deliver","chain":"consumer","numPackets":5},"partialState":{"h":6,"t":36,"consumerPower":[5000,8274,null,null],"outstandingDowntime":[true,false,true,true]}},{"ix":42,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":7,"t":42,"consumerPower":[5000,8274,null,null],"outstandingDowntime":[true,false,true,true]}},{"ix":43,"action":{"kind":"Delegate","val":2,"amt":4496},"partialState":{"h":4,"t":24,"tokens":[4613,11526,7496,4834],"delegation":[3613,10526,6496,3834],"delegatorTokens":9999999973918}},{"ix":44,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":45,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":8,"t":48,"consumerPower":[5000,8274,null,null],"outstandingDowntime":[true,false,true,true]}},{"ix":46,"action":{"kind":"Deliver","chain":"consumer","numPackets":5},"partialState":{"h":8,"t":48,"consumerPower":[5000,8274,null,null],"outstandingDowntime":[true,false,true,true]}},{"ix":47,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":48,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":9,"t":54,"consumerPower":[5000,8274,null,null],"outstandingDowntime":[true,false,true,true]}},{"ix":49,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":50,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":5,"t":30,"tokens":[4613,11526,7496,4834],"delegation":[3613,10526,6496,3834],"delegatorTokens":9999999973918,"jailed":[1000000000000017,null,null,null],"status":["unbonding","bonded","bonded","unbonded"]}},{"ix":51,"action":{"kind":"Deliver","chain":"consumer","numPackets":5},"partialState":{"h":9,"t":54,"consumerPower":[5000,8274,null,null],"outstandingDowntime":[false,false,true,true]}},{"ix":52,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":10,"t":60,"consumerPower":[8741,11526,null,null],"outstandingDowntime":[false,false,true,true]}},{"ix":53,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":54,"action":{"kind":"Deliver","chain":"provider","numPackets":5},"partialState":{"h":5,"t":30,"tokens":[4613,11526,7496,4834],"delegation":[3613,10526,6496,3834],"delegatorTokens":9999999973918,"jailed":[1000000000000017,null,null,null],"status":["unbonding","bonded","bonded","unbonded"]}},{"ix":55,"action":{"kind":"Undelegate","val":1,"amt":3183},"partialState":{"h":5,"t":30,"tokens":[4613,8343,7496,4834],"delegation":[3613,7343,6496,3834],"delegatorTokens":9999999973918}},{"ix":56,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":57,"action":{"kind":"Deliver","chain":"provider","numPackets":5},"partialState":{"h":5,"t":30,"tokens":[4613,8343,7496,4834],"delegation":[3613,7343,6496,3834],"delegatorTokens":9999999973918,"jailed":[1000000000000017,null,null,null],"status":["unbonding","bonded","bonded","unbonded"]}},{"ix":58,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":11,"t":66,"consumerPower":[8741,11526,null,null],"outstandingDowntime":[false,false,true,true]}},{"ix":59,"action":{"kind":"Deliver","chain":"consumer","numPackets":4},"partialState":{"h":11,"t":66,"consumerPower":[8741,11526,null,null],"outstandingDowntime":[false,false,true,true]}},{"ix":60,"action":{"kind":"Deliver","chain":"provider","numPackets":5},"partialState":{"h":5,"t":30,"tokens":[4613,8343,7496,4834],"delegation":[3613,7343,6496,3834],"delegatorTokens":9999999973918,"jailed":[1000000000000017,null,null,null],"status":["unbonding","bonded","bonded","unbonded"]}},{"ix":61,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":6,"t":36,"tokens":[4613,8343,7496,4834],"delegation":[3613,7343,6496,3834],"delegatorTokens":9999999973918,"jailed":[1000000000000017,null,null,null],"status":["unbonding","bonded","bonded","unbonded"]}},{"ix":62,"action":{"kind":"Undelegate","val":2,"amt":2381},"partialState":{"h":6,"t":36,"tokens":[4613,8343,5115,4834],"delegation":[3613,7343,4115,3834],"delegatorTokens":9999999973918}},{"ix":63,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":7,"t":42,"tokens":[4613,8343,5115,4834],"delegation":[3613,7343,4115,3834],"delegatorTokens":9999999973918,"jailed":[1000000000000017,null,null,null],"status":["unbonding","bonded","bonded","unbonded"]}},{"ix":64,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":12,"t":72,"consumerPower":[8741,11526,null,null],"outstandingDowntime":[false,false,true,true]}},{"ix":65,"action":{"kind":"Undelegate","val":2,"amt":1625},"partialState":{"h":7,"t":42,"tokens":[4613,8343,3490,4834],"delegation":[3613,7343,2490,3834],"delegatorTokens":9999999973918}},{"ix":66,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":8,"t":48,"tokens":[4613,8343,3490,4834],"delegation":[3613,7343,2490,3834],"delegatorTokens":9999999973918,"jailed":[1000000000000017,null,null,null],"status":["unbonding","bonded","unbonding","bonded"]}},{"ix":67,"action":{"kind":"Undelegate","val":0,"amt":4163},"partialState":{"h":8,"t":48,"tokens":[4613,8343,3490,4834],"delegation":[3613,7343,2490,3834],"delegatorTokens":9999999973918}},{"ix":68,"action":{"kind":"Deliver","chain":"consumer","numPackets":1},"partialState":{"h":12,"t":72,"consumerPower":[8741,11526,null,null],"outstandingDowntime":[false,false,true,true]}},{"ix":69,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":70,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":71,"action":{"kind":"Undelegate","val":1,"amt":1003},"partialState":{"h":8,"t":48,"tokens":[4613,7340,3490,4834],"delegation":[3613,6340,2490,3834],"delegatorTokens":9999999973918}},{"ix":72,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":73,"action":{"kind":"Deliver","chain":"provider","numPackets":6},"partialState":{"h":8,"t":48,"tokens":[4613,7340,3490,4834],"delegation":[3613,6340,2490,3834],"delegatorTokens":9999999973918,"jailed":[1000000000000017,null,null,null],"status":["unbonding","bonded","unbonding","bonded"]}},{"ix":74,"action":{"kind":"Delegate","val":1,"amt":2369},"partialState":{"h":8,"t":48,"tokens":[4613,9709,3490,4834],"delegation":[3613,8709,2490,3834],"delegatorTokens":9999999971549}},{"ix":75,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":76,"action":{"kind":"Delegate","val":3,"amt":1232},"partialState":{"h":8,"t":48,"tokens":[4613,9709,3490,6066],"delegation":[3613,8709,2490,5066],"delegatorTokens":9999999970317}},{"ix":77,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":9,"t":54,"tokens":[4613,9709,3490,6066],"delegation":[3613,8709,2490,5066],"delegatorTokens":9999999970317,"jailed":[1000000000000017,null,null,null],"status":["unbonding","bonded","unbonding","bonded"]}},{"ix":78,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":79,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":80,"action":{"kind":"Undelegate","val":0,"amt":2710},"partialState":{"h":9,"t":54,"tokens":[1903,9709,3490,6066],"delegation":[903,8709,2490,5066],"delegatorTokens":9999999970317}},{"ix":81,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":13,"t":78,"consumerPower":[null,11526,7496,null],"outstandingDowntime":[false,false,true,true]}},{"ix":82,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":83,"action":{"kind":"Undelegate","val":3,"amt":3385},"partialState":{"h":9,"t":54,"tokens":[1903,9709,3490,2681],"delegation":[903,8709,2490,1681],"delegatorTokens":9999999970317}},{"ix":84,"action":{"kind":"Undelegate","val":1,"amt":4554},"partialState":{"h":9,"t":54,"tokens":[1903,5155,3490,2681],"delegation":[903,4155,2490,1681],"delegatorTokens":9999999970317}},{"ix":85,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":86,"action":{"kind":"Delegate","val":2,"amt":3080},"partialState":{"h":9,"t":54,"tokens":[1903,5155,6570,2681],"delegation":[903,4155,5570,1681],"delegatorTokens":9999999967237}},{"ix":87,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":88,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":89,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":90,"action":{"kind":"Undelegate","val":3,"amt":4649},"partialState":{"h":9,"t":54,"tokens":[1903,5155,6570,2681],"delegation":[903,4155,5570,1681],"delegatorTokens":9999999967237}},{"ix":91,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":14,"t":84,"consumerPower":[null,11526,7496,null],"outstandingDowntime":[false,false,true,true]}},{"ix":92,"action":{"kind":"Undelegate","val":3,"amt":4104},"partialState":{"h":9,"t":54,"tokens":[1903,5155,6570,2681],"delegation":[903,4155,5570,1681],"delegatorTokens":9999999967237}},{"ix":93,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":15,"t":90,"consumerPower":[null,11526,7496,null],"outstandingDowntime":[false,false,true,true]}},{"ix":94,"action":{"kind":"Deliver","chain":"consumer","numPackets":1},"partialState":{"h":15,"t":90,"consumerPower":[null,11526,7496,null],"outstandingDowntime":[false,false,true,true]}},{"ix":95,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":16,"t":96,"consumerPower":[null,8343,7496,null],"outstandingDowntime":[false,false,true,true]}},{"ix":96,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":97,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":98,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":10,"t":60,"tokens":[1903,5155,6570,2681],"delegation":[903,4155,5570,1681],"delegatorTokens":9999999967237,"jailed":[1000000000000017,null,null,null],"status":["unbonding","bonded","bonded","unbonding"]}},{"ix":99,"action":{"kind":"Deliver","chain":"provider","numPackets":3},"partialState":{"h":10,"t":60,"tokens":[1903,5155,6570,2681],"delegation":[903,4155,5570,1681],"delegatorTokens":9999999967237,"jailed":[1000000000000017,null,null,null],"status":["unbonding","bonded","bonded","unbonding"]}},{"ix":100,"action":{"kind":"Delegate","val":3,"amt":1465},"partialState":{"h":10,"t":60,"tokens":[1903,5155,6570,4146],"delegation":[903,4155,5570,3146],"delegatorTokens":9999999965772}},{"ix":101,"action":{"kind":"Delegate","val":1,"amt":1638},"partialState":{"h":10,"t":60,"tokens":[1903,6793,6570,4146],"delegation":[903,5793,5570,3146],"delegatorTokens":9999999964134}},{"ix":102,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":103,"action":{"kind":"Deliver","chain":"consumer","numPackets":3},"partialState":{"h":16,"t":96,"consumerPower":[null,8343,7496,null],"outstandingDowntime":[false,false,true,true]}},{"ix":104,"action":{"kind":"Deliver","chain":"provider","numPackets":1},"partialState":{"h":10,"t":60,"tokens":[1903,6793,6570,4146],"delegation":[903,5793,5570,3146],"delegatorTokens":9999999964134,"jailed":[1000000000000017,null,null,null],"status":["unbonding","bonded","bonded","unbonding"]}},{"ix":105,"action":{"kind":"Delegate","val":2,"amt":2785},"partialState":{"h":10,"t":60,"tokens":[1903,6793,9355,4146],"delegation":[903,5793,8355,3146],"delegatorTokens":9999999961349}},{"ix":106,"action":{"kind":"Undelegate","val":2,"amt":4083},"partialState":{"h":10,"t":60,"tokens":[1903,6793,5272,4146],"delegation":[903,5793,4272,3146],"delegatorTokens":9999999961349}},{"ix":107,"action":{"kind":"Delegate","val":3,"amt":4366},"partialState":{"h":10,"t":60,"tokens":[1903,6793,5272,8512],"delegation":[903,5793,4272,7512],"delegatorTokens":9999999956983}},{"ix":108,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":109,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":11,"t":66,"tokens":[1903,6793,5272,8512],"delegation":[903,5793,4272,7512],"delegatorTokens":9999999956983,"jailed":[1000000000000017,null,null,null],"status":["unbonding","bonded","unbonding","bonded"]}},{"ix":110,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":111,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":12,"t":72,"tokens":[1903,6793,5272,8512],"delegation":[903,5793,4272,7512],"delegatorTokens":9999999956983,"jailed":[1000000000000017,null,null,null],"status":["unbonding","bonded","unbonding","bonded"]}},{"ix":112,"action":{"kind":"Delegate","val":3,"amt":3671},"partialState":{"h":12,"t":72,"tokens":[1903,6793,5272,12183],"delegation":[903,5793,4272,11183],"delegatorTokens":9999999953312}},{"ix":113,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":13,"t":78,"tokens":[1903,6793,5272,12183],"delegation":[903,5793,4272,11183],"delegatorTokens":9999999953312,"jailed":[1000000000000017,null,null,null],"status":["unbonding","bonded","unbonding","bonded"]}},{"ix":114,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":115,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":116,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":17,"t":102,"consumerPower":[null,9709,null,6066],"outstandingDowntime":[false,false,true,true]}},{"ix":117,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":118,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":119,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":14,"t":84,"tokens":[1903,6793,5272,12183],"delegation":[903,5793,4272,11183],"delegatorTokens":9999999953312,"jailed":[1000000000000017,null,null,null],"status":["unbonding","bonded","unbonding","bonded"]}},{"ix":120,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":121,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":122,"action":{"kind":"Deliver","chain":"consumer","numPackets":2},"partialState":{"h":17,"t":102,"consumerPower":[null,9709,null,6066],"outstandingDowntime":[false,false,true,true]}},{"ix":123,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":124,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":18,"t":108,"consumerPower":[null,6793,null,8512],"outstandingDowntime":[false,false,true,true]}},{"ix":125,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":126,"action":{"kind":"Deliver","chain":"provider","numPackets":3},"partialState":{"h":14,"t":84,"tokens":[1903,6793,5272,12183],"delegation":[903,5793,4272,11183],"delegatorTokens":9999999953312,"jailed":[1000000000000017,null,null,null],"status":["unbonding","bonded","unbonding","bonded"]}},{"ix":127,"action":{"kind":"Deliver","chain":"provider","numPackets":4},"partialState":{"h":14,"t":84,"tokens":[1903,6793,5272,12183],"delegation":[903,5793,4272,11183],"delegatorTokens":9999999953312,"jailed":[1000000000000017,null,null,null],"status":["unbonding","bonded","unbonding","bonded"]}},{"ix":128,"action":{"kind":"Undelegate","val":0,"amt":2444},"partialState":{"h":14,"t":84,"tokens":[1903,6793,5272,12183],"delegation":[903,5793,4272,11183],"delegatorTokens":9999999953312}},{"ix":129,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":15,"t":90,"tokens":[1903,6793,5272,12183],"delegation":[903,5793,4272,11183],"delegatorTokens":9999999953312,"jailed":[1000000000000017,null,null,null],"status":["unbonding","bonded","unbonding","bonded"]}},{"ix":130,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":19,"t":114,"consumerPower":[null,6793,null,8512],"outstandingDowntime":[false,false,true,true]}},{"ix":131,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":16,"t":96,"tokens":[1903,6793,5272,12183],"delegation":[903,5793,4272,11183],"delegatorTokens":9999999953312,"jailed":[1000000000000017,null,null,null],"status":["unbonding","bonded","unbonding","bonded"]}},{"ix":132,"action":{"kind":"Undelegate","val":2,"amt":2968},"partialState":{"h":16,"t":96,"tokens":[1903,6793,2304,12183],"delegation":[903,5793,1304,11183],"delegatorTokens":9999999953312}},{"ix":133,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":134,"action":{"kind":"Deliver","chain":"consumer","numPackets":5},"partialState":{"h":19,"t":114,"consumerPower":[null,6793,null,8512],"outstandingDowntime":[false,false,true,true]}},{"ix":135,"action":{"kind":"Undelegate","val":3,"amt":1098},"partialState":{"h":16,"t":96,"tokens":[1903,6793,2304,11085],"delegation":[903,5793,1304,10085],"delegatorTokens":9999999953312}},{"ix":136,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":20,"t":120,"consumerPower":[null,6793,null,12183],"outstandingDowntime":[false,false,true,true]}},{"ix":137,"action":{"kind":"Deliver","chain":"consumer","numPackets":2},"partialState":{"h":20,"t":120,"consumerPower":[null,6793,null,12183],"outstandingDowntime":[false,false,true,true]}},{"ix":138,"action":{"kind":"Undelegate","val":2,"amt":3025},"partialState":{"h":16,"t":96,"tokens":[1903,6793,2304,11085],"delegation":[903,5793,1304,10085],"delegatorTokens":9999999953312}},{"ix":139,"action":{"kind":"Delegate","val":1,"amt":4959},"partialState":{"h":16,"t":96,"tokens":[1903,11752,2304,11085],"delegation":[903,10752,1304,10085],"delegatorTokens":9999999948353}},{"ix":140,"action":{"kind":"Deliver","chain":"consumer","numPackets":4},"partialState":{"h":20,"t":120,"consumerPower":[null,6793,null,12183],"outstandingDowntime":[false,false,true,true]}},{"ix":141,"action":{"kind":"Delegate","val":0,"amt":3602},"partialState":{"h":16,"t":96,"tokens":[5505,11752,2304,11085],"delegation":[4505,10752,1304,10085],"delegatorTokens":9999999944751}},{"ix":142,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":143,"action":{"kind":"Deliver","chain":"consumer","numPackets":4},"partialState":{"h":20,"t":120,"consumerPower":[null,6793,null,12183],"outstandingDowntime":[false,false,true,true]}},{"ix":144,"action":{"kind":"Delegate","val":3,"amt":1283},"partialState":{"h":16,"t":96,"tokens":[5505,11752,2304,12368],"delegation":[4505,10752,1304,11368],"delegatorTokens":9999999943468}},{"ix":145,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":146,"action":{"kind":"Undelegate","val":1,"amt":4820},"partialState":{"h":16,"t":96,"tokens":[5505,6932,2304,12368],"delegation":[4505,5932,1304,11368],"delegatorTokens":9999999943468}},{"ix":147,"action":{"kind":"Deliver","chain":"consumer","numPackets":1},"partialState":{"h":20,"t":120,"consumerPower":[null,6793,null,12183],"outstandingDowntime":[false,false,true,true]}},{"ix":148,"action":{"kind":"Undelegate","val":0,"amt":4506},"partialState":{"h":16,"t":96,"tokens":[5505,6932,2304,12368],"delegation":[4505,5932,1304,11368],"delegatorTokens":9999999943468}},{"ix":149,"action":{"kind":"Deliver","chain":"provider","numPackets":2},"partialState":{"h":16,"t":96,"tokens":[5505,6932,2304,12368],"delegation":[4505,5932,1304,11368],"delegatorTokens":9999999943468,"jailed":[1000000000000017,null,null,null],"status":["unbonding","bonded","unbonding","bonded"]}},{"ix":150,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":151,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":152,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":21,"t":126,"consumerPower":[null,6793,null,12183],"outstandingDowntime":[false,false,true,true]}},{"ix":153,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":154,"action":{"kind":"Delegate","val":3,"amt":1628},"partialState":{"h":16,"t":96,"tokens":[5505,6932,2304,13996],"delegation":[4505,5932,1304,12996],"delegatorTokens":9999999941840}},{"ix":155,"action":{"kind":"Delegate","val":1,"amt":4624},"partialState":{"h":16,"t":96,"tokens":[5505,11556,2304,13996],"delegation":[4505,10556,1304,12996],"delegatorTokens":9999999937216}},{"ix":156,"action":{"kind":"Undelegate","val":3,"amt":1707},"partialState":{"h":16,"t":96,"tokens":[5505,11556,2304,12289],"delegation":[4505,10556,1304,11289],"delegatorTokens":9999999937216}},{"ix":157,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":158,"action":{"kind":"Undelegate","val":3,"amt":3886},"partialState":{"h":16,"t":96,"tokens":[5505,11556,2304,8403],"delegation":[4505,10556,1304,7403],"delegatorTokens":9999999937216}},{"ix":159,"action":{"kind":"Delegate","val":3,"amt":3086},"partialState":{"h":16,"t":96,"tokens":[5505,11556,2304,11489],"delegation":[4505,10556,1304,10489],"delegatorTokens":9999999934130}},{"ix":160,"action":{"kind":"Delegate","val":1,"amt":3765},"partialState":{"h":16,"t":96,"tokens":[5505,15321,2304,11489],"delegation":[4505,14321,1304,10489],"delegatorTokens":9999999930365}},{"ix":161,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":22,"t":132,"consumerPower":[null,6793,null,12183],"outstandingDowntime":[false,false,true,true]}},{"ix":162,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":17,"t":102,"tokens":[5505,15321,2304,11489],"delegation":[4505,14321,1304,10489],"delegatorTokens":9999999933518,"jailed":[1000000000000017,null,null,null],"status":["unbonding","bonded","unbonding","bonded"]}},{"ix":163,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":164,"action":{"kind":"Undelegate","val":1,"amt":2416},"partialState":{"h":17,"t":102,"tokens":[5505,12905,2304,11489],"delegation":[4505,11905,1304,10489],"delegatorTokens":9999999933518}},{"ix":165,"action":{"kind":"Delegate","val":3,"amt":2409},"partialState":{"h":17,"t":102,"tokens":[5505,12905,2304,13898],"delegation":[4505,11905,1304,12898],"delegatorTokens":9999999931109}},{"ix":166,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":167,"action":{"kind":"Undelegate","val":1,"amt":3641},"partialState":{"h":17,"t":102,"tokens":[5505,9264,2304,13898],"delegation":[4505,8264,1304,12898],"delegatorTokens":9999999931109}},{"ix":168,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":23,"t":138,"consumerPower":[null,6793,null,12183],"outstandingDowntime":[false,false,true,true]}},{"ix":169,"action":{"kind":"Deliver","chain":"consumer","numPackets":5},"partialState":{"h":23,"t":138,"consumerPower":[null,6793,null,12183],"outstandingDowntime":[false,false,true,true]}},{"ix":170,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":171,"action":{"kind":"Undelegate","val":2,"amt":1195},"partialState":{"h":17,"t":102,"tokens":[5505,9264,1109,13898],"delegation":[4505,8264,109,12898],"delegatorTokens":9999999931109}},{"ix":172,"action":{"kind":"Undelegate","val":0,"amt":2794},"partialState":{"h":17,"t":102,"tokens":[2711,9264,1109,13898],"delegation":[1711,8264,109,12898],"delegatorTokens":9999999931109}},{"ix":173,"action":{"kind":"Deliver","chain":"consumer","numPackets":4},"partialState":{"h":23,"t":138,"consumerPower":[null,6793,null,12183],"outstandingDowntime":[false,false,true,true]}},{"ix":174,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":18,"t":108,"tokens":[2711,9264,1109,13898],"delegation":[1711,8264,109,12898],"delegatorTokens":9999999931109,"jailed":[1000000000000017,null,null,null],"status":["unbonding","bonded","unbonding","bonded"]}},{"ix":175,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":24,"t":144,"consumerPower":[null,6793,null,12183],"outstandingDowntime":[false,false,true,true]}},{"ix":176,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":177,"action":{"kind":"Deliver","chain":"provider","numPackets":4},"partialState":{"h":18,"t":108,"tokens":[2711,9264,1109,13898],"delegation":[1711,8264,109,12898],"delegatorTokens":9999999931109,"jailed":[1000000000000017,null,null,null],"status":["unbonding","bonded","unbonding","bonded"]}},{"ix":178,"action":{"kind":"Undelegate","val":1,"amt":3521},"partialState":{"h":18,"t":108,"tokens":[2711,5743,1109,13898],"delegation":[1711,4743,109,12898],"delegatorTokens":9999999931109}},{"ix":179,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":180,"action":{"kind":"Deliver","chain":"provider","numPackets":4},"partialState":{"h":18,"t":108,"tokens":[2711,5743,1109,13898],"delegation":[1711,4743,109,12898],"delegatorTokens":9999999931109,"jailed":[1000000000000017,null,null,null],"status":["unbonding","bonded","unbonding","bonded"]}},{"ix":181,"action":{"kind":"Delegate","val":0,"amt":4148},"partialState":{"h":18,"t":108,"tokens":[6859,5743,1109,13898],"delegation":[5859,4743,109,12898],"delegatorTokens":9999999926961}},{"ix":182,"action":{"kind":"Undelegate","val":2,"amt":1790},"partialState":{"h":18,"t":108,"tokens":[6859,5743,1109,13898],"delegation":[5859,4743,109,12898],"delegatorTokens":9999999926961}},{"ix":183,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":184,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":19,"t":114,"tokens":[6859,5743,1109,13898],"delegation":[5859,4743,109,12898],"delegatorTokens":9999999935421,"jailed":[1000000000000017,null,null,null],"status":["unbonding","bonded","unbonding","bonded"]}},{"ix":185,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":186,"action":{"kind":"Delegate","val":0,"amt":4185},"partialState":{"h":19,"t":114,"tokens":[11044,5743,1109,13898],"delegation":[10044,4743,109,12898],"delegatorTokens":9999999931236}},{"ix":187,"action":{"kind":"Deliver","chain":"consumer","numPackets":1},"partialState":{"h":24,"t":144,"consumerPower":[null,6793,null,12183],"outstandingDowntime":[false,false,true,true]}},{"ix":188,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":189,"action":{"kind":"Undelegate","val":3,"amt":1605},"partialState":{"h":19,"t":114,"tokens":[11044,5743,1109,12293],"delegation":[10044,4743,109,11293],"delegatorTokens":9999999931236}},{"ix":190,"action":{"kind":"Undelegate","val":1,"amt":2451},"partialState":{"h":19,"t":114,"tokens":[11044,3292,1109,12293],"delegation":[10044,2292,109,11293],"delegatorTokens":9999999931236}},{"ix":191,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":25,"t":150,"consumerPower":[null,15321,null,11489],"outstandingDowntime":[false,false,true,true]}},{"ix":192,"action":{"kind":"Deliver","chain":"consumer","numPackets":3},"partialState":{"h":25,"t":150,"consumerPower":[null,15321,null,11489],"outstandingDowntime":[false,false,true,true]}},{"ix":193,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":26,"t":156,"consumerPower":[null,9264,null,13898],"outstandingDowntime":[false,false,true,true]}},{"ix":194,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":195,"action":{"kind":"Deliver","chain":"consumer","numPackets":5},"partialState":{"h":26,"t":156,"consumerPower":[null,9264,null,13898],"outstandingDowntime":[false,false,true,true]}},{"ix":196,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":20,"t":120,"tokens":[11044,3292,1109,12293],"delegation":[10044,2292,109,11293],"delegatorTokens":9999999931236,"jailed":[1000000000000017,null,null,null],"status":["unbonded","bonded","unbonding","bonded"]}},{"ix":197,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":198,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":21,"t":126,"tokens":[11044,3292,1109,12293],"delegation":[10044,2292,109,11293],"delegatorTokens":9999999931236,"jailed":[1000000000000017,null,null,null],"status":["unbonded","bonded","unbonding","bonded"]}},{"ix":199,"action":{"kind":"Delegate","val":1,"amt":4180},"partialState":{"h":21,"t":126,"tokens":[11044,7472,1109,12293],"delegation":[10044,6472,109,11293],"delegatorTokens":9999999927056}}],"events":["send_vsc_without_downtime_ack","insufficient_shares","send_downtime_slash_request","send_downtime_slash_request","send_downtime_slash_request","insufficient_shares","consumer_update_val","receive_downtime_slash_request","jail","receive_slash_request_unbonded","receive_slash_request_unbonded","send_vsc_with_downtime_ack","more_than_one_third_val_power_change","send_vsc_without_downtime_ack","receive_downtime_slash_ack","consumer_update_val","consumer_update_val","send_vsc_without_downtime_ack","send_vsc_without_downtime_ack","more_than_one_third_val_power_change","send_vsc_without_downtime_ack","insufficient_shares","send_vsc_without_downtime_ack","consumer_send_maturation","consumer_del_val","consumer_add_val","insufficient_shares","insufficient_shares","consumer_update_val","more_than_one_third_val_power_change","rebond_unval","send_vsc_without_downtime_ack","more_than_one_third_val_power_change","rebond_unval","send_vsc_without_downtime_ack","send_vsc_without_downtime_ack","consumer_del_val","consumer_add_val","consumer_update_val","consumer_update_val","consumer_del_val","consumer_update_val","insufficient_shares","consumer_send_maturation","some_undels_expired_but_not_completed","consumer_update_val","insufficient_shares","insufficient_shares","consumer_send_maturation","some_undels_expired_but_not_completed","complete_undel_immediate","send_vsc_without_downtime_ack","some_undels_expired_but_not_completed","send_vsc_without_downtime_ack","insufficient_shares","some_undels_expired_but_not_completed","complete_undel_immediate","complete_undel_immediate","set_unval_hold_false","send_vsc_without_downtime_ack","consumer_send_maturation","consumer_update_val","consumer_update_val","consumer_send_maturation","consumer_send_maturation","consumer_send_maturation","consumer_update_val","consumer_update_val","complete_unval_in_endblock","some_undels_expired_but_not_completed","send_vsc_without_downtime_ack","some_undels_expired_but_not_completed"]},{"meta":{"commit":"7ffd0c04e4205cbc9caf212abfe6c59ee43153bf"},"constants":{"P":"provider","C":"consumer","UNBONDING_SECONDS_P":70,"UNBONDING_SECONDS_C":50,"TRUSTING_SECONDS":49,"NUM_VALIDATORS":4,"MAX_VALIDATORS":2,"SLASH_DOUBLESIGN":0,"SLASH_DOWNTIME":0,"JAIL_SECONDS":999999999999999,"BLOCK_SECONDS":6,"INITIAL_DELEGATOR_TOKENS":10000000000000,"DELEGATE_AMT_MIN":1000,"DELEGATE_AMT_MAX":5000,"UNDELEGATE_AMT_MIN":1000,"UNDELEGATE_AMT_MAX":5000,"ISDOWNTIME_PROBABILITY":0.5,"MAX_NUM_PACKETS_FOR_DELIVER":6},"actions":[{"ix":0,"action":{"kind":"Deliver","chain":"consumer","numPackets":5},"partialState":{"h":1,"t":6,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":1,"action":{"kind":"Deliver","chain":"provider","numPackets":6},"partialState":{"h":1,"t":6,"tokens":[5000,4000,3000,2000],"delegation":[4000,3000,2000,1000],"delegatorTokens":10000000000000,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":2,"action":{"kind":"Delegate","val":1,"amt":4653},"partialState":{"h":1,"t":6,"tokens":[5000,8653,3000,2000],"delegation":[4000,7653,2000,1000],"delegatorTokens":9999999995347}},{"ix":3,"action":{"kind":"Deliver","chain":"consumer","numPackets":3},"partialState":{"h":1,"t":6,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":4,"action":{"kind":"Undelegate","val":1,"amt":4626},"partialState":{"h":1,"t":6,"tokens":[5000,4027,3000,2000],"delegation":[4000,3027,2000,1000],"delegatorTokens":9999999995347}},{"ix":5,"action":{"kind":"Deliver","chain":"provider","numPackets":1},"partialState":{"h":1,"t":6,"tokens":[5000,4027,3000,2000],"delegation":[4000,3027,2000,1000],"delegatorTokens":9999999995347,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":6,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":2,"t":12,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":7,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":8,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":3,"t":18,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":9,"action":{"kind":"ConsumerSlash","val":3,"infractionHeight":1,"isDowntime":true},"partialState":{"h":3,"t":18,"outstandingDowntime":[false,false,false,true]}},{"ix":10,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":11,"action":{"kind":"Deliver","chain":"provider","numPackets":1},"partialState":{"h":1,"t":6,"tokens":[5000,4027,3000,2000],"delegation":[4000,3027,2000,1000],"delegatorTokens":9999999995347,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":12,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":13,"action":{"kind":"ConsumerSlash","val":2,"infractionHeight":0,"isDowntime":true},"partialState":{"h":3,"t":18,"outstandingDowntime":[false,false,true,true]}},{"ix":14,"action":{"kind":"Delegate","val":0,"amt":3798},"partialState":{"h":1,"t":6,"tokens":[8798,4027,3000,2000],"delegation":[7798,3027,2000,1000],"delegatorTokens":9999999991549}},{"ix":15,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":16,"action":{"kind":"Undelegate","val":0,"amt":4713},"partialState":{"h":1,"t":6,"tokens":[4085,4027,3000,2000],"delegation":[3085,3027,2000,1000],"delegatorTokens":9999999991549}},{"ix":17,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":4,"t":24,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,false,true,true]}},{"ix":18,"action":{"kind":"Deliver","chain":"provider","numPackets":1},"partialState":{"h":1,"t":6,"tokens":[4085,4027,3000,2000],"delegation":[3085,3027,2000,1000],"delegatorTokens":9999999991549,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":19,"action":{"kind":"Delegate","val":0,"amt":2515},"partialState":{"h":1,"t":6,"tokens":[6600,4027,3000,2000],"delegation":[5600,3027,2000,1000],"delegatorTokens":9999999989034}},{"ix":20,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":2,"t":12,"tokens":[6600,4027,3000,2000],"delegation":[5600,3027,2000,1000],"delegatorTokens":9999999989034,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":21,"action":{"kind":"Deliver","chain":"consumer","numPackets":6},"partialState":{"h":4,"t":24,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,false,true,true]}},{"ix":22,"action":{"kind":"Deliver","chain":"provider","numPackets":4},"partialState":{"h":2,"t":12,"tokens":[6600,4027,3000,2000],"delegation":[5600,3027,2000,1000],"delegatorTokens":9999999989034,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":23,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":3,"t":18,"tokens":[6600,4027,3000,2000],"delegation":[5600,3027,2000,1000],"delegatorTokens":9999999989034,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":24,"action":{"kind":"Deliver","chain":"provider","numPackets":6},"partialState":{"h":3,"t":18,"tokens":[6600,4027,3000,2000],"delegation":[5600,3027,2000,1000],"delegatorTokens":9999999989034,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":25,"action":{"kind":"ConsumerSlash","val":3,"infractionHeight":1,"isDowntime":true},"partialState":{"h":4,"t":24,"outstandingDowntime":[false,false,true,true]}},{"ix":26,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":27,"action":{"kind":"Undelegate","val":3,"amt":1040},"partialState":{"h":3,"t":18,"tokens":[6600,4027,3000,2000],"delegation":[5600,3027,2000,1000],"delegatorTokens":9999999989034}},{"ix":28,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":29,"action":{"kind":"Delegate","val":3,"amt":1830},"partialState":{"h":3,"t":18,"tokens":[6600,4027,3000,3830],"delegation":[5600,3027,2000,2830],"delegatorTokens":9999999987204}},{"ix":30,"action":{"kind":"Undelegate","val":1,"amt":3908},"partialState":{"h":3,"t":18,"tokens":[6600,4027,3000,3830],"delegation":[5600,3027,2000,2830],"delegatorTokens":9999999987204}},{"ix":31,"action":{"kind":"ConsumerSlash","val":2,"infractionHeight":0,"isDowntime":true},"partialState":{"h":4,"t":24,"outstandingDowntime":[false,false,true,true]}},{"ix":32,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":33,"action":{"kind":"Undelegate","val":1,"amt":3051},"partialState":{"h":3,"t":18,"tokens":[6600,4027,3000,3830],"delegation":[5600,3027,2000,2830],"delegatorTokens":9999999987204}},{"ix":34,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":4,"t":24,"tokens":[6600,4027,3000,3830],"delegation":[5600,3027,2000,2830],"delegatorTokens":9999999987204,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":35,"action":{"kind":"Delegate","val":1,"amt":4604},"partialState":{"h":4,"t":24,"tokens":[6600,8631,3000,3830],"delegation":[5600,7631,2000,2830],"delegatorTokens":9999999982600}},{"ix":36,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":5,"t":30,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,false,true,true]}},{"ix":37,"action":{"kind":"Delegate","val":0,"amt":1086},"partialState":{"h":4,"t":24,"tokens":[7686,8631,3000,3830],"delegation":[6686,7631,2000,2830],"delegatorTokens":9999999981514}},{"ix":38,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":39,"action":{"kind":"Undelegate","val":0,"amt":3096},"partialState":{"h":4,"t":24,"tokens":[4590,8631,3000,3830],"delegation":[3590,7631,2000,2830],"delegatorTokens":9999999981514}},{"ix":40,"action":{"kind":"ConsumerSlash","val":2,"infractionHeight":3,"isDowntime":true},"partialState":{"h":5,"t":30,"outstandingDowntime":[false,false,true,true]}},{"ix":41,"action":{"kind":"Undelegate","val":2,"amt":3338},"partialState":{"h":4,"t":24,"tokens":[4590,8631,3000,3830],"delegation":[3590,7631,2000,2830],"delegatorTokens":9999999981514}},{"ix":42,"action":{"kind":"Deliver","chain":"provider","numPackets":1},"partialState":{"h":4,"t":24,"tokens":[4590,8631,3000,3830],"delegation":[3590,7631,2000,2830],"delegatorTokens":9999999981514,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":43,"action":{"kind":"Undelegate","val":2,"amt":2503},"partialState":{"h":4,"t":24,"tokens":[4590,8631,3000,3830],"delegation":[3590,7631,2000,2830],"delegatorTokens":9999999981514}},{"ix":44,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":45,"action":{"kind":"ConsumerSlash","val":1,"infractionHeight":2,"isDowntime":false},"partialState":{"h":5,"t":30,"outstandingDowntime":[false,false,true,true]}},{"ix":46,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":47,"action":{"kind":"Deliver","chain":"provider","numPackets":5},"partialState":{"h":4,"t":24,"tokens":[4590,8631,3000,3830],"delegation":[3590,7631,2000,2830],"delegatorTokens":9999999981514,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":48,"action":{"kind":"Undelegate","val":2,"amt":2749},"partialState":{"h":4,"t":24,"tokens":[4590,8631,3000,3830],"delegation":[3590,7631,2000,2830],"delegatorTokens":9999999981514}},{"ix":49,"action":{"kind":"Deliver","chain":"consumer","numPackets":4},"partialState":{"h":5,"t":30,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,false,true,true]}},{"ix":50,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":6,"t":36,"consumerPower":[6600,4027,null,null],"outstandingDowntime":[false,false,true,true]}},{"ix":51,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":5,"t":30,"tokens":[4590,8631,3000,3830],"delegation":[3590,7631,2000,2830],"delegatorTokens":9999999981514,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":52,"action":{"kind":"Deliver","chain":"provider","numPackets":1},"partialState":{"h":5,"t":30,"tokens":[4590,8631,3000,3830],"delegation":[3590,7631,2000,2830],"delegatorTokens":9999999981514,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":53,"action":{"kind":"Deliver","chain":"provider","numPackets":6},"partialState":{"h":5,"t":30,"tokens":[4590,8631,3000,3830],"delegation":[3590,7631,2000,2830],"delegatorTokens":9999999981514,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":54,"action":{"kind":"Deliver","chain":"consumer","numPackets":3},"partialState":{"h":6,"t":36,"consumerPower":[6600,4027,null,null],"outstandingDowntime":[false,false,true,true]}},{"ix":55,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":56,"action":{"kind":"Delegate","val":0,"amt":4147},"partialState":{"h":5,"t":30,"tokens":[8737,8631,3000,3830],"delegation":[7737,7631,2000,2830],"delegatorTokens":9999999977367}},{"ix":57,"action":{"kind":"Deliver","chain":"provider","numPackets":5},"partialState":{"h":5,"t":30,"tokens":[8737,8631,3000,3830],"delegation":[7737,7631,2000,2830],"delegatorTokens":9999999977367,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":58,"action":{"kind":"Delegate","val":3,"amt":4011},"partialState":{"h":5,"t":30,"tokens":[8737,8631,3000,7841],"delegation":[7737,7631,2000,6841],"delegatorTokens":9999999973356}},{"ix":59,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":60,"action":{"kind":"Undelegate","val":0,"amt":1419},"partialState":{"h":5,"t":30,"tokens":[7318,8631,3000,7841],"delegation":[6318,7631,2000,6841],"delegatorTokens":9999999973356}},{"ix":61,"action":{"kind":"Delegate","val":3,"amt":4425},"partialState":{"h":5,"t":30,"tokens":[7318,8631,3000,12266],"delegation":[6318,7631,2000,11266],"delegatorTokens":9999999968931}},{"ix":62,"action":{"kind":"Delegate","val":2,"amt":4996},"partialState":{"h":5,"t":30,"tokens":[7318,8631,7996,12266],"delegation":[6318,7631,6996,11266],"delegatorTokens":9999999963935}},{"ix":63,"action":{"kind":"Undelegate","val":1,"amt":1127},"partialState":{"h":5,"t":30,"tokens":[7318,7504,7996,12266],"delegation":[6318,6504,6996,11266],"delegatorTokens":9999999963935}},{"ix":64,"action":{"kind":"Delegate","val":3,"amt":4428},"partialState":{"h":5,"t":30,"tokens":[7318,7504,7996,16694],"delegation":[6318,6504,6996,15694],"delegatorTokens":9999999959507}},{"ix":65,"action":{"kind":"Deliver","chain":"provider","numPackets":3},"partialState":{"h":5,"t":30,"tokens":[7318,7504,7996,16694],"delegation":[6318,6504,6996,15694],"delegatorTokens":9999999959507,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":66,"action":{"kind":"Deliver","chain":"provider","numPackets":5},"partialState":{"h":5,"t":30,"tokens":[7318,7504,7996,16694],"delegation":[6318,6504,6996,15694],"delegatorTokens":9999999959507,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":67,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":7,"t":42,"consumerPower":[6600,4027,null,null],"outstandingDowntime":[false,false,true,true]}},{"ix":68,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":6,"t":36,"tokens":[7318,7504,7996,16694],"delegation":[6318,6504,6996,15694],"delegatorTokens":9999999959507,"jailed":[null,null,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":69,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":8,"t":48,"consumerPower":[6600,4027,null,null],"outstandingDowntime":[false,false,true,true]}},{"ix":70,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":9,"t":54,"consumerPower":[6600,4027,null,null],"outstandingDowntime":[false,false,true,true]}},{"ix":71,"action":{"kind":"Deliver","chain":"provider","numPackets":1},"partialState":{"h":6,"t":36,"tokens":[7318,7504,7996,16694],"delegation":[6318,6504,6996,15694],"delegatorTokens":9999999959507,"jailed":[null,null,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":72,"action":{"kind":"Delegate","val":1,"amt":3095},"partialState":{"h":6,"t":36,"tokens":[7318,10599,7996,16694],"delegation":[6318,9599,6996,15694],"delegatorTokens":9999999956412}},{"ix":73,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":74,"action":{"kind":"Deliver","chain":"consumer","numPackets":2},"partialState":{"h":9,"t":54,"consumerPower":[6600,4027,null,null],"outstandingDowntime":[false,false,true,true]}},{"ix":75,"action":{"kind":"Deliver","chain":"provider","numPackets":2},"partialState":{"h":6,"t":36,"tokens":[7318,10599,7996,16694],"delegation":[6318,9599,6996,15694],"delegatorTokens":9999999956412,"jailed":[null,null,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":76,"action":{"kind":"Delegate","val":3,"amt":2629},"partialState":{"h":6,"t":36,"tokens":[7318,10599,7996,19323],"delegation":[6318,9599,6996,18323],"delegatorTokens":9999999953783}},{"ix":77,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":78,"action":{"kind":"Undelegate","val":0,"amt":4440},"partialState":{"h":6,"t":36,"tokens":[2878,10599,7996,19323],"delegation":[1878,9599,6996,18323],"delegatorTokens":9999999953783}},{"ix":79,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":80,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":10,"t":60,"consumerPower":[4590,8631,null,null],"outstandingDowntime":[false,false,true,true]}},{"ix":81,"action":{"kind":"Delegate","val":0,"amt":2488},"partialState":{"h":6,"t":36,"tokens":[5366,10599,7996,19323],"delegation":[4366,9599,6996,18323],"delegatorTokens":9999999951295}},{"ix":82,"action":{"kind":"Undelegate","val":1,"amt":1458},"partialState":{"h":6,"t":36,"tokens":[5366,9141,7996,19323],"delegation":[4366,8141,6996,18323],"delegatorTokens":9999999951295}},{"ix":83,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":11,"t":66,"consumerPower":[4590,8631,null,null],"outstandingDowntime":[false,false,true,true]}},{"ix":84,"action":{"kind":"Undelegate","val":0,"amt":4672},"partialState":{"h":6,"t":36,"tokens":[5366,9141,7996,19323],"delegation":[4366,8141,6996,18323],"delegatorTokens":9999999951295}},{"ix":85,"action":{"kind":"Delegate","val":3,"amt":3494},"partialState":{"h":6,"t":36,"tokens":[5366,9141,7996,22817],"delegation":[4366,8141,6996,21817],"delegatorTokens":9999999947801}},{"ix":86,"action":{"kind":"Undelegate","val":1,"amt":2512},"partialState":{"h":6,"t":36,"tokens":[5366,6629,7996,22817],"delegation":[4366,5629,6996,21817],"delegatorTokens":9999999947801}},{"ix":87,"action":{"kind":"Undelegate","val":3,"amt":3228},"partialState":{"h":6,"t":36,"tokens":[5366,6629,7996,19589],"delegation":[4366,5629,6996,18589],"delegatorTokens":9999999947801}},{"ix":88,"action":{"kind":"Delegate","val":2,"amt":1009},"partialState":{"h":6,"t":36,"tokens":[5366,6629,9005,19589],"delegation":[4366,5629,8005,18589],"delegatorTokens":9999999946792}},{"ix":89,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":7,"t":42,"tokens":[5366,6629,9005,19589],"delegation":[4366,5629,8005,18589],"delegatorTokens":9999999946792,"jailed":[null,null,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":90,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":91,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":92,"action":{"kind":"Delegate","val":1,"amt":3745},"partialState":{"h":7,"t":42,"tokens":[5366,10374,9005,19589],"delegation":[4366,9374,8005,18589],"delegatorTokens":9999999943047}},{"ix":93,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":94,"action":{"kind":"Deliver","chain":"consumer","numPackets":4},"partialState":{"h":11,"t":66,"consumerPower":[4590,8631,null,null],"outstandingDowntime":[false,false,true,true]}},{"ix":95,"action":{"kind":"Undelegate","val":0,"amt":3788},"partialState":{"h":7,"t":42,"tokens":[1578,10374,9005,19589],"delegation":[578,9374,8005,18589],"delegatorTokens":9999999943047}},{"ix":96,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":8,"t":48,"tokens":[1578,10374,9005,19589],"delegation":[578,9374,8005,18589],"delegatorTokens":9999999943047,"jailed":[null,null,null,null],"status":["unbonding","bonded","unbonding","bonded"]}},{"ix":97,"action":{"kind":"Delegate","val":1,"amt":2129},"partialState":{"h":8,"t":48,"tokens":[1578,12503,9005,19589],"delegation":[578,11503,8005,18589],"delegatorTokens":9999999940918}},{"ix":98,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":99,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":9,"t":54,"tokens":[1578,12503,9005,19589],"delegation":[578,11503,8005,18589],"delegatorTokens":9999999940918,"jailed":[null,null,null,null],"status":["unbonding","bonded","unbonding","bonded"]}},{"ix":100,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":12,"t":72,"consumerPower":[null,null,7996,16694],"outstandingDowntime":[false,false,true,true]}},{"ix":101,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":13,"t":78,"consumerPower":[null,null,7996,16694],"outstandingDowntime":[false,false,true,true]}},{"ix":102,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":103,"action":{"kind":"Delegate","val":2,"amt":2150},"partialState":{"h":9,"t":54,"tokens":[1578,12503,11155,19589],"delegation":[578,11503,10155,18589],"delegatorTokens":9999999938768}},{"ix":104,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":10,"t":60,"tokens":[1578,12503,11155,19589],"delegation":[578,11503,10155,18589],"delegatorTokens":9999999938768,"jailed":[null,null,null,null],"status":["unbonding","bonded","unbonding","bonded"]}},{"ix":105,"action":{"kind":"Delegate","val":1,"amt":4920},"partialState":{"h":10,"t":60,"tokens":[1578,17423,11155,19589],"delegation":[578,16423,10155,18589],"delegatorTokens":9999999933848}},{"ix":106,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":11,"t":66,"tokens":[1578,17423,11155,19589],"delegation":[578,16423,10155,18589],"delegatorTokens":9999999933848,"jailed":[null,null,null,null],"status":["unbonding","bonded","unbonding","bonded"]}},{"ix":107,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":108,"action":{"kind":"Deliver","chain":"provider","numPackets":3},"partialState":{"h":11,"t":66,"tokens":[1578,17423,11155,19589],"delegation":[578,16423,10155,18589],"delegatorTokens":9999999933848,"jailed":[null,null,null,null],"status":["unbonding","bonded","unbonding","bonded"]}},{"ix":109,"action":{"kind":"Undelegate","val":0,"amt":1098},"partialState":{"h":11,"t":66,"tokens":[1578,17423,11155,19589],"delegation":[578,16423,10155,18589],"delegatorTokens":9999999933848}},{"ix":110,"action":{"kind":"Delegate","val":0,"amt":3880},"partialState":{"h":11,"t":66,"tokens":[5458,17423,11155,19589],"delegation":[4458,16423,10155,18589],"delegatorTokens":9999999929968}},{"ix":111,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":12,"t":72,"tokens":[5458,17423,11155,19589],"delegation":[4458,16423,10155,18589],"delegatorTokens":9999999929968,"jailed":[null,null,null,null],"status":["unbonding","bonded","unbonding","bonded"]}},{"ix":112,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":113,"action":{"kind":"Deliver","chain":"provider","numPackets":3},"partialState":{"h":12,"t":72,"tokens":[5458,17423,11155,19589],"delegation":[4458,16423,10155,18589],"delegatorTokens":9999999929968,"jailed":[null,null,null,null],"status":["unbonding","bonded","unbonding","bonded"]}},{"ix":114,"action":{"kind":"Undelegate","val":1,"amt":3010},"partialState":{"h":12,"t":72,"tokens":[5458,14413,11155,19589],"delegation":[4458,13413,10155,18589],"delegatorTokens":9999999929968}},{"ix":115,"action":{"kind":"Undelegate","val":3,"amt":1394},"partialState":{"h":12,"t":72,"tokens":[5458,14413,11155,18195],"delegation":[4458,13413,10155,17195],"delegatorTokens":9999999929968}},{"ix":116,"action":{"kind":"Undelegate","val":2,"amt":1817},"partialState":{"h":12,"t":72,"tokens":[5458,14413,9338,18195],"delegation":[4458,13413,8338,17195],"delegatorTokens":9999999929968}},{"ix":117,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":14,"t":84,"consumerPower":[null,null,7996,16694],"outstandingDowntime":[false,false,true,true]}},{"ix":118,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":119,"action":{"kind":"Undelegate","val":1,"amt":1241},"partialState":{"h":12,"t":72,"tokens":[5458,13172,9338,18195],"delegation":[4458,12172,8338,17195],"delegatorTokens":9999999929968}},{"ix":120,"action":{"kind":"Undelegate","val":0,"amt":3544},"partialState":{"h":12,"t":72,"tokens":[1914,13172,9338,18195],"delegation":[914,12172,8338,17195],"delegatorTokens":9999999929968}},{"ix":121,"action":{"kind":"Deliver","chain":"consumer","numPackets":2},"partialState":{"h":14,"t":84,"consumerPower":[null,null,7996,16694],"outstandingDowntime":[false,false,true,true]}},{"ix":122,"action":{"kind":"Deliver","chain":"consumer","numPackets":2},"partialState":{"h":14,"t":84,"consumerPower":[null,null,7996,16694],"outstandingDowntime":[false,false,true,true]}},{"ix":123,"action":{"kind":"Deliver","chain":"consumer","numPackets":4},"partialState":{"h":14,"t":84,"consumerPower":[null,null,7996,16694],"outstandingDowntime":[false,false,true,true]}},{"ix":124,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":125,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":126,"action":{"kind":"Delegate","val":0,"amt":2775},"partialState":{"h":12,"t":72,"tokens":[4689,13172,9338,18195],"delegation":[3689,12172,8338,17195],"delegatorTokens":9999999927193}},{"ix":127,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":13,"t":78,"tokens":[4689,13172,9338,18195],"delegation":[3689,12172,8338,17195],"delegatorTokens":9999999927193,"jailed":[null,null,null,null],"status":["unbonding","bonded","unbonding","bonded"]}},{"ix":128,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":14,"t":84,"tokens":[4689,13172,9338,18195],"delegation":[3689,12172,8338,17195],"delegatorTokens":9999999927193,"jailed":[null,null,null,null],"status":["unbonding","bonded","unbonding","bonded"]}},{"ix":129,"action":{"kind":"Deliver","chain":"provider","numPackets":4},"partialState":{"h":14,"t":84,"tokens":[4689,13172,9338,18195],"delegation":[3689,12172,8338,17195],"delegatorTokens":9999999927193,"jailed":[null,null,null,null],"status":["unbonding","bonded","unbonding","bonded"]}},{"ix":130,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":15,"t":90,"tokens":[4689,13172,9338,18195],"delegation":[3689,12172,8338,17195],"delegatorTokens":9999999927193,"jailed":[null,null,null,null],"status":["unbonding","bonded","unbonding","bonded"]}},{"ix":131,"action":{"kind":"Delegate","val":3,"amt":4445},"partialState":{"h":15,"t":90,"tokens":[4689,13172,9338,22640],"delegation":[3689,12172,8338,21640],"delegatorTokens":9999999922748}},{"ix":132,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":133,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":134,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":135,"action":{"kind":"Deliver","chain":"consumer","numPackets":6},"partialState":{"h":14,"t":84,"consumerPower":[null,null,7996,16694],"outstandingDowntime":[false,false,true,true]}},{"ix":136,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":15,"t":90,"consumerPower":[null,13172,null,18195],"outstandingDowntime":[false,false,true,true]}},{"ix":137,"action":{"kind":"Deliver","chain":"consumer","numPackets":5},"partialState":{"h":15,"t":90,"consumerPower":[null,13172,null,18195],"outstandingDowntime":[false,false,true,true]}},{"ix":138,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":139,"action":{"kind":"Undelegate","val":3,"amt":4017},"partialState":{"h":15,"t":90,"tokens":[4689,13172,9338,18623],"delegation":[3689,12172,8338,17623],"delegatorTokens":9999999922748}},{"ix":140,"action":{"kind":"Delegate","val":3,"amt":3119},"partialState":{"h":15,"t":90,"tokens":[4689,13172,9338,21742],"delegation":[3689,12172,8338,20742],"delegatorTokens":9999999919629}},{"ix":141,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":16,"t":96,"consumerPower":[null,13172,null,18195],"outstandingDowntime":[false,false,true,true]}},{"ix":142,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":143,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":17,"t":102,"consumerPower":[null,13172,null,18195],"outstandingDowntime":[false,false,true,true]}},{"ix":144,"action":{"kind":"Undelegate","val":1,"amt":4216},"partialState":{"h":15,"t":90,"tokens":[4689,8956,9338,21742],"delegation":[3689,7956,8338,20742],"delegatorTokens":9999999919629}},{"ix":145,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":18,"t":108,"consumerPower":[null,13172,null,18195],"outstandingDowntime":[false,false,true,true]}},{"ix":146,"action":{"kind":"Delegate","val":2,"amt":1894},"partialState":{"h":15,"t":90,"tokens":[4689,8956,11232,21742],"delegation":[3689,7956,10232,20742],"delegatorTokens":9999999917735}},{"ix":147,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":19,"t":114,"consumerPower":[null,13172,null,18195],"outstandingDowntime":[false,false,true,true]}},{"ix":148,"action":{"kind":"Deliver","chain":"provider","numPackets":6},"partialState":{"h":15,"t":90,"tokens":[4689,8956,11232,21742],"delegation":[3689,7956,10232,20742],"delegatorTokens":9999999917735,"jailed":[null,null,null,null],"status":["unbonding","bonded","unbonding","bonded"]}},{"ix":149,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":16,"t":96,"tokens":[4689,8956,11232,21742],"delegation":[3689,7956,10232,20742],"delegatorTokens":9999999927074,"jailed":[null,null,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":150,"action":{"kind":"Delegate","val":1,"amt":4562},"partialState":{"h":16,"t":96,"tokens":[4689,13518,11232,21742],"delegation":[3689,12518,10232,20742],"delegatorTokens":9999999922512}},{"ix":151,"action":{"kind":"Delegate","val":3,"amt":3746},"partialState":{"h":16,"t":96,"tokens":[4689,13518,11232,25488],"delegation":[3689,12518,10232,24488],"delegatorTokens":9999999918766}},{"ix":152,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":20,"t":120,"consumerPower":[null,13172,null,18195],"outstandingDowntime":[false,false,true,true]}},{"ix":153,"action":{"kind":"Delegate","val":0,"amt":1837},"partialState":{"h":16,"t":96,"tokens":[6526,13518,11232,25488],"delegation":[5526,12518,10232,24488],"delegatorTokens":9999999916929}},{"ix":154,"action":{"kind":"Undelegate","val":3,"amt":4521},"partialState":{"h":16,"t":96,"tokens":[6526,13518,11232,20967],"delegation":[5526,12518,10232,19967],"delegatorTokens":9999999916929}},{"ix":155,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":21,"t":126,"consumerPower":[null,13172,null,18195],"outstandingDowntime":[false,false,true,true]}},{"ix":156,"action":{"kind":"Deliver","chain":"consumer","numPackets":4},"partialState":{"h":21,"t":126,"consumerPower":[null,13172,null,18195],"outstandingDowntime":[false,false,true,true]}},{"ix":157,"action":{"kind":"Deliver","chain":"provider","numPackets":1},"partialState":{"h":16,"t":96,"tokens":[6526,13518,11232,20967],"delegation":[5526,12518,10232,19967],"delegatorTokens":9999999916929,"jailed":[null,null,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":158,"action":{"kind":"Delegate","val":3,"amt":2049},"partialState":{"h":16,"t":96,"tokens":[6526,13518,11232,23016],"delegation":[5526,12518,10232,22016],"delegatorTokens":9999999914880}},{"ix":159,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":160,"action":{"kind":"Undelegate","val":0,"amt":2910},"partialState":{"h":16,"t":96,"tokens":[3616,13518,11232,23016],"delegation":[2616,12518,10232,22016],"delegatorTokens":9999999914880}},{"ix":161,"action":{"kind":"Deliver","chain":"consumer","numPackets":1},"partialState":{"h":21,"t":126,"consumerPower":[null,13172,null,18195],"outstandingDowntime":[false,false,true,true]}},{"ix":162,"action":{"kind":"Delegate","val":2,"amt":2984},"partialState":{"h":16,"t":96,"tokens":[3616,13518,14216,23016],"delegation":[2616,12518,13216,22016],"delegatorTokens":9999999911896}},{"ix":163,"action":{"kind":"Undelegate","val":2,"amt":1457},"partialState":{"h":16,"t":96,"tokens":[3616,13518,12759,23016],"delegation":[2616,12518,11759,22016],"delegatorTokens":9999999911896}},{"ix":164,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":165,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":17,"t":102,"tokens":[3616,13518,12759,23016],"delegation":[2616,12518,11759,22016],"delegatorTokens":9999999914992,"jailed":[null,null,null,null],"status":["unbonding","bonded","unbonding","bonded"]}},{"ix":166,"action":{"kind":"Delegate","val":2,"amt":4752},"partialState":{"h":17,"t":102,"tokens":[3616,13518,17511,23016],"delegation":[2616,12518,16511,22016],"delegatorTokens":9999999910240}},{"ix":167,"action":{"kind":"Undelegate","val":1,"amt":1185},"partialState":{"h":17,"t":102,"tokens":[3616,12333,17511,23016],"delegation":[2616,11333,16511,22016],"delegatorTokens":9999999910240}},{"ix":168,"action":{"kind":"Delegate","val":0,"amt":4717},"partialState":{"h":17,"t":102,"tokens":[8333,12333,17511,23016],"delegation":[7333,11333,16511,22016],"delegatorTokens":9999999905523}},{"ix":169,"action":{"kind":"Undelegate","val":2,"amt":4711},"partialState":{"h":17,"t":102,"tokens":[8333,12333,12800,23016],"delegation":[7333,11333,11800,22016],"delegatorTokens":9999999905523}},{"ix":170,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":171,"action":{"kind":"Delegate","val":2,"amt":2251},"partialState":{"h":17,"t":102,"tokens":[8333,12333,15051,23016],"delegation":[7333,11333,14051,22016],"delegatorTokens":9999999903272}},{"ix":172,"action":{"kind":"Deliver","chain":"consumer","numPackets":5},"partialState":{"h":21,"t":126,"consumerPower":[null,13172,null,18195],"outstandingDowntime":[false,false,true,true]}},{"ix":173,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":18,"t":108,"tokens":[8333,12333,15051,23016],"delegation":[7333,11333,14051,22016],"delegatorTokens":9999999903272,"jailed":[null,null,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":174,"action":{"kind":"Undelegate","val":1,"amt":3487},"partialState":{"h":18,"t":108,"tokens":[8333,8846,15051,23016],"delegation":[7333,7846,14051,22016],"delegatorTokens":9999999903272}},{"ix":175,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":19,"t":114,"tokens":[8333,8846,15051,23016],"delegation":[7333,7846,14051,22016],"delegatorTokens":9999999903272,"jailed":[null,null,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":176,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":22,"t":132,"consumerPower":[null,null,11232,21742],"outstandingDowntime":[false,false,true,true]}},{"ix":177,"action":{"kind":"Deliver","chain":"provider","numPackets":4},"partialState":{"h":19,"t":114,"tokens":[8333,8846,15051,23016],"delegation":[7333,7846,14051,22016],"delegatorTokens":9999999903272,"jailed":[null,null,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":178,"action":{"kind":"Deliver","chain":"consumer","numPackets":3},"partialState":{"h":22,"t":132,"consumerPower":[null,null,11232,21742],"outstandingDowntime":[false,false,true,true]}},{"ix":179,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":180,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":20,"t":120,"tokens":[8333,8846,15051,23016],"delegation":[7333,7846,14051,22016],"delegatorTokens":9999999905818,"jailed":[null,null,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":181,"action":{"kind":"Undelegate","val":0,"amt":4924},"partialState":{"h":20,"t":120,"tokens":[3409,8846,15051,23016],"delegation":[2409,7846,14051,22016],"delegatorTokens":9999999905818}},{"ix":182,"action":{"kind":"Delegate","val":2,"amt":2405},"partialState":{"h":20,"t":120,"tokens":[3409,8846,17456,23016],"delegation":[2409,7846,16456,22016],"delegatorTokens":9999999903413}},{"ix":183,"action":{"kind":"Deliver","chain":"consumer","numPackets":1},"partialState":{"h":22,"t":132,"consumerPower":[null,null,11232,21742],"outstandingDowntime":[false,false,true,true]}},{"ix":184,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":23,"t":138,"consumerPower":[null,null,15051,23016],"outstandingDowntime":[false,false,true,true]}},{"ix":185,"action":{"kind":"Deliver","chain":"consumer","numPackets":6},"partialState":{"h":23,"t":138,"consumerPower":[null,null,15051,23016],"outstandingDowntime":[false,false,true,true]}},{"ix":186,"action":{"kind":"Delegate","val":3,"amt":2602},"partialState":{"h":20,"t":120,"tokens":[3409,8846,17456,25618],"delegation":[2409,7846,16456,24618],"delegatorTokens":9999999900811}},{"ix":187,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":188,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":189,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":190,"action":{"kind":"Undelegate","val":0,"amt":3176},"partialState":{"h":20,"t":120,"tokens":[3409,8846,17456,25618],"delegation":[2409,7846,16456,24618],"delegatorTokens":9999999900811}},{"ix":191,"action":{"kind":"Undelegate","val":3,"amt":2176},"partialState":{"h":20,"t":120,"tokens":[3409,8846,17456,23442],"delegation":[2409,7846,16456,22442],"delegatorTokens":9999999900811}},{"ix":192,"action":{"kind":"Deliver","chain":"provider","numPackets":1},"partialState":{"h":20,"t":120,"tokens":[3409,8846,17456,23442],"delegation":[2409,7846,16456,22442],"delegatorTokens":9999999900811,"jailed":[null,null,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":193,"action":{"kind":"Undelegate","val":3,"amt":2475},"partialState":{"h":20,"t":120,"tokens":[3409,8846,17456,20967],"delegation":[2409,7846,16456,19967],"delegatorTokens":9999999900811}},{"ix":194,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":24,"t":144,"consumerPower":[null,null,15051,23016],"outstandingDowntime":[false,false,true,true]}},{"ix":195,"action":{"kind":"Deliver","chain":"provider","numPackets":6},"partialState":{"h":20,"t":120,"tokens":[3409,8846,17456,20967],"delegation":[2409,7846,16456,19967],"delegatorTokens":9999999900811,"jailed":[null,null,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":196,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":21,"t":126,"tokens":[3409,8846,17456,20967],"delegation":[2409,7846,16456,19967],"delegatorTokens":9999999900811,"jailed":[null,null,null,null],"status":["unbonded","unbonding","bonded","bonded"]}},{"ix":197,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":25,"t":150,"consumerPower":[null,null,15051,23016],"outstandingDowntime":[false,false,true,true]}},{"ix":198,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":26,"t":156,"consumerPower":[null,null,15051,23016],"outstandingDowntime":[false,false,true,true]}},{"ix":199,"action":{"kind":"Delegate","val":1,"amt":1559},"partialState":{"h":21,"t":126,"tokens":[3409,10405,17456,20967],"delegation":[2409,9405,16456,19967],"delegatorTokens":9999999899252}}],"events":["send_downtime_slash_request","send_downtime_slash_request","send_vsc_without_downtime_ack","downtime_slash_request_outstanding","insufficient_shares","insufficient_shares","downtime_slash_request_outstanding","insufficient_shares","downtime_slash_request_outstanding","insufficient_shares","insufficient_shares","send_double_sign_slash_request","insufficient_shares","consumer_update_val","consumer_update_val","receive_slash_request_unbonded","receive_slash_request_unbonded","send_vsc_without_downtime_ack","more_than_one_third_val_power_change","send_vsc_without_downtime_ack","receive_double_sign_slash_request","consumer_update_val","consumer_update_val","insufficient_shares","send_vsc_without_downtime_ack","more_than_one_third_val_power_change","rebond_unval","send_vsc_without_downtime_ack","send_vsc_without_downtime_ack","consumer_del_val","consumer_del_val","consumer_add_val","consumer_add_val","send_vsc_without_downtime_ack","insufficient_shares","send_vsc_without_downtime_ack","some_undels_expired_but_not_completed","consumer_send_maturation","consumer_del_val","consumer_update_val","consumer_add_val","consumer_send_maturation","more_than_one_third_val_power_change","rebond_unval","complete_undel_immediate","complete_undel_immediate","send_vsc_without_downtime_ack","consumer_send_maturation","more_than_one_third_val_power_change","rebond_unval","some_undels_expired_but_not_completed","complete_undel_immediate","send_vsc_without_downtime_ack","more_than_one_third_val_power_change","rebond_unval","some_undels_expired_but_not_completed","send_vsc_without_downtime_ack","some_undels_expired_but_not_completed","send_vsc_not_because_change","send_vsc_without_downtime_ack","consumer_del_val","consumer_add_val","consumer_update_val","some_undels_expired_but_not_completed","complete_undel_immediate","complete_undel_immediate","set_unval_hold_false","consumer_del_val","consumer_update_val","consumer_update_val","insufficient_shares","consumer_send_maturation","consumer_send_maturation","consumer_send_maturation","consumer_send_maturation","consumer_send_maturation","complete_unval_in_endblock","send_vsc_without_downtime_ack"]},{"meta":{"commit":"7ffd0c04e4205cbc9caf212abfe6c59ee43153bf"},"constants":{"P":"provider","C":"consumer","UNBONDING_SECONDS_P":70,"UNBONDING_SECONDS_C":50,"TRUSTING_SECONDS":49,"NUM_VALIDATORS":4,"MAX_VALIDATORS":2,"SLASH_DOUBLESIGN":0,"SLASH_DOWNTIME":0,"JAIL_SECONDS":999999999999999,"BLOCK_SECONDS":6,"INITIAL_DELEGATOR_TOKENS":10000000000000,"DELEGATE_AMT_MIN":1000,"DELEGATE_AMT_MAX":5000,"UNDELEGATE_AMT_MIN":1000,"UNDELEGATE_AMT_MAX":5000,"ISDOWNTIME_PROBABILITY":0.5,"MAX_NUM_PACKETS_FOR_DELIVER":6},"actions":[{"ix":0,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":1,"action":{"kind":"Deliver","chain":"consumer","numPackets":3},"partialState":{"h":1,"t":6,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":2,"action":{"kind":"Deliver","chain":"provider","numPackets":2},"partialState":{"h":1,"t":6,"tokens":[5000,4000,3000,2000],"delegation":[4000,3000,2000,1000],"delegatorTokens":10000000000000,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":3,"action":{"kind":"Undelegate","val":3,"amt":3716},"partialState":{"h":1,"t":6,"tokens":[5000,4000,3000,2000],"delegation":[4000,3000,2000,1000],"delegatorTokens":10000000000000}},{"ix":4,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":2,"t":12,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":5,"action":{"kind":"Deliver","chain":"consumer","numPackets":3},"partialState":{"h":2,"t":12,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":6,"action":{"kind":"ConsumerSlash","val":3,"infractionHeight":0,"isDowntime":true},"partialState":{"h":2,"t":12,"outstandingDowntime":[false,false,false,true]}},{"ix":7,"action":{"kind":"ConsumerSlash","val":2,"infractionHeight":0,"isDowntime":true},"partialState":{"h":2,"t":12,"outstandingDowntime":[false,false,true,true]}},{"ix":8,"action":{"kind":"Delegate","val":0,"amt":1190},"partialState":{"h":1,"t":6,"tokens":[6190,4000,3000,2000],"delegation":[5190,3000,2000,1000],"delegatorTokens":9999999998810}},{"ix":9,"action":{"kind":"Undelegate","val":3,"amt":4433},"partialState":{"h":1,"t":6,"tokens":[6190,4000,3000,2000],"delegation":[5190,3000,2000,1000],"delegatorTokens":9999999998810}},{"ix":10,"action":{"kind":"Delegate","val":0,"amt":1107},"partialState":{"h":1,"t":6,"tokens":[7297,4000,3000,2000],"delegation":[6297,3000,2000,1000],"delegatorTokens":9999999997703}},{"ix":11,"action":{"kind":"Deliver","chain":"consumer","numPackets":5},"partialState":{"h":2,"t":12,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,false,true,true]}},{"ix":12,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":3,"t":18,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,false,true,true]}},{"ix":13,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":4,"t":24,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,false,true,true]}},{"ix":14,"action":{"kind":"Deliver","chain":"consumer","numPackets":5},"partialState":{"h":4,"t":24,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,false,true,true]}},{"ix":15,"action":{"kind":"ConsumerSlash","val":2,"infractionHeight":0,"isDowntime":true},"partialState":{"h":4,"t":24,"outstandingDowntime":[false,false,true,true]}},{"ix":16,"action":{"kind":"ConsumerSlash","val":2,"infractionHeight":3,"isDowntime":false},"partialState":{"h":4,"t":24,"outstandingDowntime":[false,false,true,true]}},{"ix":17,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":2,"t":12,"tokens":[7297,4000,3000,2000],"delegation":[6297,3000,2000,1000],"delegatorTokens":9999999997703,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":18,"action":{"kind":"Deliver","chain":"provider","numPackets":4},"partialState":{"h":2,"t":12,"tokens":[7297,4000,3000,2000],"delegation":[6297,3000,2000,1000],"delegatorTokens":9999999997703,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":19,"action":{"kind":"Deliver","chain":"provider","numPackets":3},"partialState":{"h":2,"t":12,"tokens":[7297,4000,3000,2000],"delegation":[6297,3000,2000,1000],"delegatorTokens":9999999997703,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":20,"action":{"kind":"Undelegate","val":1,"amt":4299},"partialState":{"h":2,"t":12,"tokens":[7297,4000,3000,2000],"delegation":[6297,3000,2000,1000],"delegatorTokens":9999999997703}},{"ix":21,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":5,"t":30,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,false,true,true]}},{"ix":22,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":3,"t":18,"tokens":[7297,4000,3000,2000],"delegation":[6297,3000,2000,1000],"delegatorTokens":9999999997703,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":23,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":24,"action":{"kind":"ConsumerSlash","val":1,"infractionHeight":0,"isDowntime":false},"partialState":{"h":5,"t":30,"outstandingDowntime":[false,false,true,true]}},{"ix":25,"action":{"kind":"Delegate","val":3,"amt":4721},"partialState":{"h":3,"t":18,"tokens":[7297,4000,3000,6721],"delegation":[6297,3000,2000,5721],"delegatorTokens":9999999992982}},{"ix":26,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":4,"t":24,"tokens":[7297,4000,3000,6721],"delegation":[6297,3000,2000,5721],"delegatorTokens":9999999992982,"jailed":[null,null,null,null],"status":["bonded","unbonding","unbonded","bonded"]}},{"ix":27,"action":{"kind":"Deliver","chain":"provider","numPackets":6},"partialState":{"h":4,"t":24,"tokens":[7297,4000,3000,6721],"delegation":[6297,3000,2000,5721],"delegatorTokens":9999999992982,"jailed":[null,null,null,null],"status":["bonded","unbonding","unbonded","bonded"]}},{"ix":28,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":29,"action":{"kind":"Deliver","chain":"provider","numPackets":1},"partialState":{"h":4,"t":24,"tokens":[7297,4000,3000,6721],"delegation":[6297,3000,2000,5721],"delegatorTokens":9999999992982,"jailed":[null,null,null,null],"status":["bonded","unbonding","unbonded","bonded"]}},{"ix":30,"action":{"kind":"Delegate","val":0,"amt":4410},"partialState":{"h":4,"t":24,"tokens":[11707,4000,3000,6721],"delegation":[10707,3000,2000,5721],"delegatorTokens":9999999988572}},{"ix":31,"action":{"kind":"Delegate","val":2,"amt":2628},"partialState":{"h":4,"t":24,"tokens":[11707,4000,5628,6721],"delegation":[10707,3000,4628,5721],"delegatorTokens":9999999985944}},{"ix":32,"action":{"kind":"Undelegate","val":3,"amt":3361},"partialState":{"h":4,"t":24,"tokens":[11707,4000,5628,3360],"delegation":[10707,3000,4628,2360],"delegatorTokens":9999999985944}},{"ix":33,"action":{"kind":"Undelegate","val":2,"amt":1150},"partialState":{"h":4,"t":24,"tokens":[11707,4000,4478,3360],"delegation":[10707,3000,3478,2360],"delegatorTokens":9999999985944}},{"ix":34,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":6,"t":36,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,false,true,true]}},{"ix":35,"action":{"kind":"Delegate","val":2,"amt":2750},"partialState":{"h":4,"t":24,"tokens":[11707,4000,7228,3360],"delegation":[10707,3000,6228,2360],"delegatorTokens":9999999983194}},{"ix":36,"action":{"kind":"Undelegate","val":2,"amt":1236},"partialState":{"h":4,"t":24,"tokens":[11707,4000,5992,3360],"delegation":[10707,3000,4992,2360],"delegatorTokens":9999999983194}},{"ix":37,"action":{"kind":"Undelegate","val":0,"amt":4222},"partialState":{"h":4,"t":24,"tokens":[7485,4000,5992,3360],"delegation":[6485,3000,4992,2360],"delegatorTokens":9999999983194}},{"ix":38,"action":{"kind":"Undelegate","val":1,"amt":2349},"partialState":{"h":4,"t":24,"tokens":[7485,1651,5992,3360],"delegation":[6485,651,4992,2360],"delegatorTokens":9999999983194}},{"ix":39,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":40,"action":{"kind":"Delegate","val":3,"amt":3142},"partialState":{"h":4,"t":24,"tokens":[7485,1651,5992,6502],"delegation":[6485,651,4992,5502],"delegatorTokens":9999999980052}},{"ix":41,"action":{"kind":"Delegate","val":0,"amt":3292},"partialState":{"h":4,"t":24,"tokens":[10777,1651,5992,6502],"delegation":[9777,651,4992,5502],"delegatorTokens":9999999976760}},{"ix":42,"action":{"kind":"Deliver","chain":"consumer","numPackets":6},"partialState":{"h":6,"t":36,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,false,true,true]}},{"ix":43,"action":{"kind":"Undelegate","val":1,"amt":1697},"partialState":{"h":4,"t":24,"tokens":[10777,1651,5992,6502],"delegation":[9777,651,4992,5502],"delegatorTokens":9999999976760}},{"ix":44,"action":{"kind":"Undelegate","val":3,"amt":1588},"partialState":{"h":4,"t":24,"tokens":[10777,1651,5992,4914],"delegation":[9777,651,4992,3914],"delegatorTokens":9999999976760}},{"ix":45,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":5,"t":30,"tokens":[10777,1651,5992,4914],"delegation":[9777,651,4992,3914],"delegatorTokens":9999999976760,"jailed":[null,null,null,null],"status":["bonded","unbonding","bonded","unbonding"]}},{"ix":46,"action":{"kind":"Undelegate","val":1,"amt":3789},"partialState":{"h":5,"t":30,"tokens":[10777,1651,5992,4914],"delegation":[9777,651,4992,3914],"delegatorTokens":9999999976760}},{"ix":47,"action":{"kind":"Undelegate","val":3,"amt":3538},"partialState":{"h":5,"t":30,"tokens":[10777,1651,5992,1376],"delegation":[9777,651,4992,376],"delegatorTokens":9999999976760}},{"ix":48,"action":{"kind":"Deliver","chain":"provider","numPackets":4},"partialState":{"h":5,"t":30,"tokens":[10777,1651,5992,1376],"delegation":[9777,651,4992,376],"delegatorTokens":9999999976760,"jailed":[null,null,null,null],"status":["bonded","unbonding","bonded","unbonding"]}},{"ix":49,"action":{"kind":"Delegate","val":3,"amt":1570},"partialState":{"h":5,"t":30,"tokens":[10777,1651,5992,2946],"delegation":[9777,651,4992,1946],"delegatorTokens":9999999975190}},{"ix":50,"action":{"kind":"Deliver","chain":"provider","numPackets":2},"partialState":{"h":5,"t":30,"tokens":[10777,1651,5992,2946],"delegation":[9777,651,4992,1946],"delegatorTokens":9999999975190,"jailed":[null,null,null,null],"status":["bonded","unbonding","bonded","unbonding"]}},{"ix":51,"action":{"kind":"Deliver","chain":"provider","numPackets":6},"partialState":{"h":5,"t":30,"tokens":[10777,1651,5992,2946],"delegation":[9777,651,4992,1946],"delegatorTokens":9999999975190,"jailed":[null,null,null,null],"status":["bonded","unbonding","bonded","unbonding"]}},{"ix":52,"action":{"kind":"Undelegate","val":2,"amt":2149},"partialState":{"h":5,"t":30,"tokens":[10777,1651,3843,2946],"delegation":[9777,651,2843,1946],"delegatorTokens":9999999975190}},{"ix":53,"action":{"kind":"Undelegate","val":0,"amt":1534},"partialState":{"h":5,"t":30,"tokens":[9243,1651,3843,2946],"delegation":[8243,651,2843,1946],"delegatorTokens":9999999975190}},{"ix":54,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":55,"action":{"kind":"Delegate","val":0,"amt":3028},"partialState":{"h":5,"t":30,"tokens":[12271,1651,3843,2946],"delegation":[11271,651,2843,1946],"delegatorTokens":9999999972162}},{"ix":56,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":6,"t":36,"tokens":[12271,1651,3843,2946],"delegation":[11271,651,2843,1946],"delegatorTokens":9999999972162,"jailed":[null,null,null,null],"status":["bonded","unbonding","bonded","unbonding"]}},{"ix":57,"action":{"kind":"Delegate","val":0,"amt":1626},"partialState":{"h":6,"t":36,"tokens":[13897,1651,3843,2946],"delegation":[12897,651,2843,1946],"delegatorTokens":9999999970536}},{"ix":58,"action":{"kind":"Delegate","val":1,"amt":2347},"partialState":{"h":6,"t":36,"tokens":[13897,3998,3843,2946],"delegation":[12897,2998,2843,1946],"delegatorTokens":9999999968189}},{"ix":59,"action":{"kind":"Deliver","chain":"provider","numPackets":1},"partialState":{"h":6,"t":36,"tokens":[13897,3998,3843,2946],"delegation":[12897,2998,2843,1946],"delegatorTokens":9999999968189,"jailed":[null,null,null,null],"status":["bonded","unbonding","bonded","unbonding"]}},{"ix":60,"action":{"kind":"Delegate","val":2,"amt":3104},"partialState":{"h":6,"t":36,"tokens":[13897,3998,6947,2946],"delegation":[12897,2998,5947,1946],"delegatorTokens":9999999965085}},{"ix":61,"action":{"kind":"Undelegate","val":3,"amt":1464},"partialState":{"h":6,"t":36,"tokens":[13897,3998,6947,1482],"delegation":[12897,2998,5947,482],"delegatorTokens":9999999965085}},{"ix":62,"action":{"kind":"Undelegate","val":2,"amt":3254},"partialState":{"h":6,"t":36,"tokens":[13897,3998,3693,1482],"delegation":[12897,2998,2693,482],"delegatorTokens":9999999965085}},{"ix":63,"action":{"kind":"Deliver","chain":"provider","numPackets":6},"partialState":{"h":6,"t":36,"tokens":[13897,3998,3693,1482],"delegation":[12897,2998,2693,482],"delegatorTokens":9999999965085,"jailed":[null,null,null,null],"status":["bonded","unbonding","bonded","unbonding"]}},{"ix":64,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":7,"t":42,"consumerPower":[7297,4000,null,null],"outstandingDowntime":[false,false,true,true]}},{"ix":65,"action":{"kind":"Deliver","chain":"consumer","numPackets":2},"partialState":{"h":7,"t":42,"consumerPower":[7297,4000,null,null],"outstandingDowntime":[false,false,true,true]}},{"ix":66,"action":{"kind":"Undelegate","val":1,"amt":3096},"partialState":{"h":6,"t":36,"tokens":[13897,3998,3693,1482],"delegation":[12897,2998,2693,482],"delegatorTokens":9999999965085}},{"ix":67,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":68,"action":{"kind":"Delegate","val":0,"amt":3927},"partialState":{"h":6,"t":36,"tokens":[17824,3998,3693,1482],"delegation":[16824,2998,2693,482],"delegatorTokens":9999999961158}},{"ix":69,"action":{"kind":"Delegate","val":2,"amt":2630},"partialState":{"h":6,"t":36,"tokens":[17824,3998,6323,1482],"delegation":[16824,2998,5323,482],"delegatorTokens":9999999958528}},{"ix":70,"action":{"kind":"Delegate","val":2,"amt":4661},"partialState":{"h":6,"t":36,"tokens":[17824,3998,10984,1482],"delegation":[16824,2998,9984,482],"delegatorTokens":9999999953867}},{"ix":71,"action":{"kind":"Delegate","val":0,"amt":3456},"partialState":{"h":6,"t":36,"tokens":[21280,3998,10984,1482],"delegation":[20280,2998,9984,482],"delegatorTokens":9999999950411}},{"ix":72,"action":{"kind":"Undelegate","val":3,"amt":3912},"partialState":{"h":6,"t":36,"tokens":[21280,3998,10984,1482],"delegation":[20280,2998,9984,482],"delegatorTokens":9999999950411}},{"ix":73,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":8,"t":48,"consumerPower":[10777,null,5992,null],"outstandingDowntime":[false,false,true,true]}},{"ix":74,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":75,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":9,"t":54,"consumerPower":[10777,null,5992,null],"outstandingDowntime":[false,false,true,true]}},{"ix":76,"action":{"kind":"Undelegate","val":3,"amt":4109},"partialState":{"h":6,"t":36,"tokens":[21280,3998,10984,1482],"delegation":[20280,2998,9984,482],"delegatorTokens":9999999950411}},{"ix":77,"action":{"kind":"Undelegate","val":1,"amt":3605},"partialState":{"h":6,"t":36,"tokens":[21280,3998,10984,1482],"delegation":[20280,2998,9984,482],"delegatorTokens":9999999950411}},{"ix":78,"action":{"kind":"Undelegate","val":2,"amt":4131},"partialState":{"h":6,"t":36,"tokens":[21280,3998,6853,1482],"delegation":[20280,2998,5853,482],"delegatorTokens":9999999950411}},{"ix":79,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":7,"t":42,"tokens":[21280,3998,6853,1482],"delegation":[20280,2998,5853,482],"delegatorTokens":9999999950411,"jailed":[null,null,null,null],"status":["bonded","unbonding","bonded","unbonding"]}},{"ix":80,"action":{"kind":"Deliver","chain":"provider","numPackets":3},"partialState":{"h":7,"t":42,"tokens":[21280,3998,6853,1482],"delegation":[20280,2998,5853,482],"delegatorTokens":9999999950411,"jailed":[null,null,null,null],"status":["bonded","unbonding","bonded","unbonding"]}},{"ix":81,"action":{"kind":"Delegate","val":1,"amt":2757},"partialState":{"h":7,"t":42,"tokens":[21280,6755,6853,1482],"delegation":[20280,5755,5853,482],"delegatorTokens":9999999947654}},{"ix":82,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":10,"t":60,"consumerPower":[10777,null,5992,null],"outstandingDowntime":[false,false,true,true]}},{"ix":83,"action":{"kind":"Deliver","chain":"provider","numPackets":6},"partialState":{"h":7,"t":42,"tokens":[21280,6755,6853,1482],"delegation":[20280,5755,5853,482],"delegatorTokens":9999999947654,"jailed":[null,null,null,null],"status":["bonded","unbonding","bonded","unbonding"]}},{"ix":84,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":85,"action":{"kind":"Delegate","val":2,"amt":2839},"partialState":{"h":7,"t":42,"tokens":[21280,6755,9692,1482],"delegation":[20280,5755,8692,482],"delegatorTokens":9999999944815}},{"ix":86,"action":{"kind":"Deliver","chain":"consumer","numPackets":6},"partialState":{"h":10,"t":60,"consumerPower":[10777,null,5992,null],"outstandingDowntime":[false,false,true,true]}},{"ix":87,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":8,"t":48,"tokens":[21280,6755,9692,1482],"delegation":[20280,5755,8692,482],"delegatorTokens":9999999944815,"jailed":[null,null,null,null],"status":["bonded","unbonding","bonded","unbonding"]}},{"ix":88,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":89,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":11,"t":66,"consumerPower":[12271,null,3843,null],"outstandingDowntime":[false,false,true,true]}},{"ix":90,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":91,"action":{"kind":"Undelegate","val":0,"amt":1917},"partialState":{"h":8,"t":48,"tokens":[19363,6755,9692,1482],"delegation":[18363,5755,8692,482],"delegatorTokens":9999999944815}},{"ix":92,"action":{"kind":"Deliver","chain":"provider","numPackets":6},"partialState":{"h":8,"t":48,"tokens":[19363,6755,9692,1482],"delegation":[18363,5755,8692,482],"delegatorTokens":9999999944815,"jailed":[null,null,null,null],"status":["bonded","unbonding","bonded","unbonding"]}},{"ix":93,"action":{"kind":"Delegate","val":1,"amt":2684},"partialState":{"h":8,"t":48,"tokens":[19363,9439,9692,1482],"delegation":[18363,8439,8692,482],"delegatorTokens":9999999942131}},{"ix":94,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":95,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":96,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":12,"t":72,"consumerPower":[12271,null,3843,null],"outstandingDowntime":[false,false,true,true]}},{"ix":97,"action":{"kind":"Undelegate","val":0,"amt":1266},"partialState":{"h":8,"t":48,"tokens":[18097,9439,9692,1482],"delegation":[17097,8439,8692,482],"delegatorTokens":9999999942131}},{"ix":98,"action":{"kind":"Deliver","chain":"consumer","numPackets":2},"partialState":{"h":12,"t":72,"consumerPower":[12271,null,3843,null],"outstandingDowntime":[false,false,true,true]}},{"ix":99,"action":{"kind":"Delegate","val":3,"amt":4222},"partialState":{"h":8,"t":48,"tokens":[18097,9439,9692,5704],"delegation":[17097,8439,8692,4704],"delegatorTokens":9999999937909}},{"ix":100,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":9,"t":54,"tokens":[18097,9439,9692,5704],"delegation":[17097,8439,8692,4704],"delegatorTokens":9999999937909,"jailed":[null,null,null,null],"status":["bonded","unbonding","bonded","unbonding"]}},{"ix":101,"action":{"kind":"Undelegate","val":2,"amt":2676},"partialState":{"h":9,"t":54,"tokens":[18097,9439,7016,5704],"delegation":[17097,8439,6016,4704],"delegatorTokens":9999999937909}},{"ix":102,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":103,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":13,"t":78,"consumerPower":[21280,null,6853,null],"outstandingDowntime":[false,false,true,true]}},{"ix":104,"action":{"kind":"Deliver","chain":"provider","numPackets":6},"partialState":{"h":9,"t":54,"tokens":[18097,9439,7016,5704],"delegation":[17097,8439,6016,4704],"delegatorTokens":9999999937909,"jailed":[null,null,null,null],"status":["bonded","unbonding","bonded","unbonding"]}},{"ix":105,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":14,"t":84,"consumerPower":[21280,null,6853,null],"outstandingDowntime":[false,false,true,true]}},{"ix":106,"action":{"kind":"Undelegate","val":3,"amt":3123},"partialState":{"h":9,"t":54,"tokens":[18097,9439,7016,2581],"delegation":[17097,8439,6016,1581],"delegatorTokens":9999999937909}},{"ix":107,"action":{"kind":"Delegate","val":0,"amt":1329},"partialState":{"h":9,"t":54,"tokens":[19426,9439,7016,2581],"delegation":[18426,8439,6016,1581],"delegatorTokens":9999999936580}},{"ix":108,"action":{"kind":"Deliver","chain":"consumer","numPackets":3},"partialState":{"h":14,"t":84,"consumerPower":[21280,null,6853,null],"outstandingDowntime":[false,false,true,true]}},{"ix":109,"action":{"kind":"Undelegate","val":2,"amt":4733},"partialState":{"h":9,"t":54,"tokens":[19426,9439,2283,2581],"delegation":[18426,8439,1283,1581],"delegatorTokens":9999999936580}},{"ix":110,"action":{"kind":"Undelegate","val":3,"amt":4326},"partialState":{"h":9,"t":54,"tokens":[19426,9439,2283,2581],"delegation":[18426,8439,1283,1581],"delegatorTokens":9999999936580}},{"ix":111,"action":{"kind":"Undelegate","val":2,"amt":1372},"partialState":{"h":9,"t":54,"tokens":[19426,9439,2283,2581],"delegation":[18426,8439,1283,1581],"delegatorTokens":9999999936580}},{"ix":112,"action":{"kind":"Delegate","val":2,"amt":4419},"partialState":{"h":9,"t":54,"tokens":[19426,9439,6702,2581],"delegation":[18426,8439,5702,1581],"delegatorTokens":9999999932161}},{"ix":113,"action":{"kind":"Delegate","val":0,"amt":4948},"partialState":{"h":9,"t":54,"tokens":[24374,9439,6702,2581],"delegation":[23374,8439,5702,1581],"delegatorTokens":9999999927213}},{"ix":114,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":10,"t":60,"tokens":[24374,9439,6702,2581],"delegation":[23374,8439,5702,1581],"delegatorTokens":9999999927213,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonding","unbonding"]}},{"ix":115,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":11,"t":66,"tokens":[24374,9439,6702,2581],"delegation":[23374,8439,5702,1581],"delegatorTokens":9999999927213,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonding","unbonding"]}},{"ix":116,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":15,"t":90,"consumerPower":[21280,null,9692,null],"outstandingDowntime":[false,false,true,true]}},{"ix":117,"action":{"kind":"Delegate","val":2,"amt":3286},"partialState":{"h":11,"t":66,"tokens":[24374,9439,9988,2581],"delegation":[23374,8439,8988,1581],"delegatorTokens":9999999923927}},{"ix":118,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":119,"action":{"kind":"Deliver","chain":"provider","numPackets":3},"partialState":{"h":11,"t":66,"tokens":[24374,9439,9988,2581],"delegation":[23374,8439,8988,1581],"delegatorTokens":9999999923927,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonding","unbonding"]}},{"ix":120,"action":{"kind":"Delegate","val":1,"amt":2521},"partialState":{"h":11,"t":66,"tokens":[24374,11960,9988,2581],"delegation":[23374,10960,8988,1581],"delegatorTokens":9999999921406}},{"ix":121,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":122,"action":{"kind":"Deliver","chain":"consumer","numPackets":4},"partialState":{"h":15,"t":90,"consumerPower":[21280,null,9692,null],"outstandingDowntime":[false,false,true,true]}},{"ix":123,"action":{"kind":"Delegate","val":2,"amt":2295},"partialState":{"h":11,"t":66,"tokens":[24374,11960,12283,2581],"delegation":[23374,10960,11283,1581],"delegatorTokens":9999999919111}},{"ix":124,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":12,"t":72,"tokens":[24374,11960,12283,2581],"delegation":[23374,10960,11283,1581],"delegatorTokens":9999999919111,"jailed":[null,null,null,null],"status":["bonded","unbonding","bonded","unbonding"]}},{"ix":125,"action":{"kind":"Undelegate","val":2,"amt":2629},"partialState":{"h":12,"t":72,"tokens":[24374,11960,9654,2581],"delegation":[23374,10960,8654,1581],"delegatorTokens":9999999919111}},{"ix":126,"action":{"kind":"Delegate","val":0,"amt":2539},"partialState":{"h":12,"t":72,"tokens":[26913,11960,9654,2581],"delegation":[25913,10960,8654,1581],"delegatorTokens":9999999916572}},{"ix":127,"action":{"kind":"Undelegate","val":3,"amt":2605},"partialState":{"h":12,"t":72,"tokens":[26913,11960,9654,2581],"delegation":[25913,10960,8654,1581],"delegatorTokens":9999999916572}},{"ix":128,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":13,"t":78,"tokens":[26913,11960,9654,2581],"delegation":[25913,10960,8654,1581],"delegatorTokens":9999999916572,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonding","unbonding"]}},{"ix":129,"action":{"kind":"Deliver","chain":"provider","numPackets":4},"partialState":{"h":13,"t":78,"tokens":[26913,11960,9654,2581],"delegation":[25913,10960,8654,1581],"delegatorTokens":9999999916572,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonding","unbonding"]}},{"ix":130,"action":{"kind":"Deliver","chain":"consumer","numPackets":2},"partialState":{"h":15,"t":90,"consumerPower":[21280,null,9692,null],"outstandingDowntime":[false,false,true,true]}},{"ix":131,"action":{"kind":"Deliver","chain":"consumer","numPackets":6},"partialState":{"h":15,"t":90,"consumerPower":[21280,null,9692,null],"outstandingDowntime":[false,false,true,true]}},{"ix":132,"action":{"kind":"Deliver","chain":"consumer","numPackets":3},"partialState":{"h":15,"t":90,"consumerPower":[21280,null,9692,null],"outstandingDowntime":[false,false,true,true]}},{"ix":133,"action":{"kind":"Delegate","val":2,"amt":1995},"partialState":{"h":13,"t":78,"tokens":[26913,11960,11649,2581],"delegation":[25913,10960,10649,1581],"delegatorTokens":9999999914577}},{"ix":134,"action":{"kind":"Delegate","val":3,"amt":2084},"partialState":{"h":13,"t":78,"tokens":[26913,11960,11649,4665],"delegation":[25913,10960,10649,3665],"delegatorTokens":9999999912493}},{"ix":135,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":136,"action":{"kind":"Delegate","val":1,"amt":4749},"partialState":{"h":13,"t":78,"tokens":[26913,16709,11649,4665],"delegation":[25913,15709,10649,3665],"delegatorTokens":9999999907744}},{"ix":137,"action":{"kind":"Deliver","chain":"consumer","numPackets":4},"partialState":{"h":15,"t":90,"consumerPower":[21280,null,9692,null],"outstandingDowntime":[false,false,true,true]}},{"ix":138,"action":{"kind":"Deliver","chain":"consumer","numPackets":4},"partialState":{"h":15,"t":90,"consumerPower":[21280,null,9692,null],"outstandingDowntime":[false,false,true,true]}},{"ix":139,"action":{"kind":"Delegate","val":0,"amt":1703},"partialState":{"h":13,"t":78,"tokens":[28616,16709,11649,4665],"delegation":[27616,15709,10649,3665],"delegatorTokens":9999999906041}},{"ix":140,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":16,"t":96,"consumerPower":[24374,null,12283,null],"outstandingDowntime":[false,false,true,true]}},{"ix":141,"action":{"kind":"Undelegate","val":0,"amt":4762},"partialState":{"h":13,"t":78,"tokens":[23854,16709,11649,4665],"delegation":[22854,15709,10649,3665],"delegatorTokens":9999999906041}},{"ix":142,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":143,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":144,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":14,"t":84,"tokens":[23854,16709,11649,4665],"delegation":[22854,15709,10649,3665],"delegatorTokens":9999999906041,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonding","unbonding"]}},{"ix":145,"action":{"kind":"Undelegate","val":1,"amt":1838},"partialState":{"h":14,"t":84,"tokens":[23854,14871,11649,4665],"delegation":[22854,13871,10649,3665],"delegatorTokens":9999999906041}},{"ix":146,"action":{"kind":"Deliver","chain":"provider","numPackets":6},"partialState":{"h":14,"t":84,"tokens":[23854,14871,11649,4665],"delegation":[22854,13871,10649,3665],"delegatorTokens":9999999906041,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonding","unbonding"]}},{"ix":147,"action":{"kind":"Delegate","val":1,"amt":3127},"partialState":{"h":14,"t":84,"tokens":[23854,17998,11649,4665],"delegation":[22854,16998,10649,3665],"delegatorTokens":9999999902914}},{"ix":148,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":149,"action":{"kind":"Delegate","val":1,"amt":2308},"partialState":{"h":14,"t":84,"tokens":[23854,20306,11649,4665],"delegation":[22854,19306,10649,3665],"delegatorTokens":9999999900606}},{"ix":150,"action":{"kind":"Delegate","val":0,"amt":4650},"partialState":{"h":14,"t":84,"tokens":[28504,20306,11649,4665],"delegation":[27504,19306,10649,3665],"delegatorTokens":9999999895956}},{"ix":151,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":152,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":15,"t":90,"tokens":[28504,20306,11649,4665],"delegation":[27504,19306,10649,3665],"delegatorTokens":9999999895956,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonding","unbonding"]}},{"ix":153,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":154,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":17,"t":102,"consumerPower":[24374,null,12283,null],"outstandingDowntime":[false,false,true,true]}},{"ix":155,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":18,"t":108,"consumerPower":[24374,null,12283,null],"outstandingDowntime":[false,false,true,true]}},{"ix":156,"action":{"kind":"Delegate","val":1,"amt":4232},"partialState":{"h":15,"t":90,"tokens":[28504,24538,11649,4665],"delegation":[27504,23538,10649,3665],"delegatorTokens":9999999891724}},{"ix":157,"action":{"kind":"Undelegate","val":2,"amt":2646},"partialState":{"h":15,"t":90,"tokens":[28504,24538,9003,4665],"delegation":[27504,23538,8003,3665],"delegatorTokens":9999999891724}},{"ix":158,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":19,"t":114,"consumerPower":[24374,null,12283,null],"outstandingDowntime":[false,false,true,true]}},{"ix":159,"action":{"kind":"Deliver","chain":"consumer","numPackets":6},"partialState":{"h":19,"t":114,"consumerPower":[24374,null,12283,null],"outstandingDowntime":[false,false,true,true]}},{"ix":160,"action":{"kind":"Delegate","val":1,"amt":2861},"partialState":{"h":15,"t":90,"tokens":[28504,27399,9003,4665],"delegation":[27504,26399,8003,3665],"delegatorTokens":9999999888863}},{"ix":161,"action":{"kind":"Deliver","chain":"provider","numPackets":4},"partialState":{"h":15,"t":90,"tokens":[28504,27399,9003,4665],"delegation":[27504,26399,8003,3665],"delegatorTokens":9999999888863,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonding","unbonding"]}},{"ix":162,"action":{"kind":"Undelegate","val":2,"amt":2388},"partialState":{"h":15,"t":90,"tokens":[28504,27399,6615,4665],"delegation":[27504,26399,5615,3665],"delegatorTokens":9999999888863}},{"ix":163,"action":{"kind":"Undelegate","val":0,"amt":3794},"partialState":{"h":15,"t":90,"tokens":[24710,27399,6615,4665],"delegation":[23710,26399,5615,3665],"delegatorTokens":9999999888863}},{"ix":164,"action":{"kind":"Delegate","val":1,"amt":4207},"partialState":{"h":15,"t":90,"tokens":[24710,31606,6615,4665],"delegation":[23710,30606,5615,3665],"delegatorTokens":9999999884656}},{"ix":165,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":20,"t":120,"consumerPower":[23854,16709,null,null],"outstandingDowntime":[false,false,true,true]}},{"ix":166,"action":{"kind":"Deliver","chain":"provider","numPackets":5},"partialState":{"h":15,"t":90,"tokens":[24710,31606,6615,4665],"delegation":[23710,30606,5615,3665],"delegatorTokens":9999999884656,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonding","unbonding"]}},{"ix":167,"action":{"kind":"Undelegate","val":2,"amt":3434},"partialState":{"h":15,"t":90,"tokens":[24710,31606,3181,4665],"delegation":[23710,30606,2181,3665],"delegatorTokens":9999999884656}},{"ix":168,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":16,"t":96,"tokens":[24710,31606,3181,4665],"delegation":[23710,30606,2181,3665],"delegatorTokens":9999999884656,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonding","unbonding"]}},{"ix":169,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":170,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":171,"action":{"kind":"Delegate","val":1,"amt":3054},"partialState":{"h":16,"t":96,"tokens":[24710,34660,3181,4665],"delegation":[23710,33660,2181,3665],"delegatorTokens":9999999881602}},{"ix":172,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":21,"t":126,"consumerPower":[23854,16709,null,null],"outstandingDowntime":[false,false,true,true]}},{"ix":173,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":17,"t":102,"tokens":[24710,34660,3181,4665],"delegation":[23710,33660,2181,3665],"delegatorTokens":9999999895508,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonding","unbonded"]}},{"ix":174,"action":{"kind":"Deliver","chain":"provider","numPackets":5},"partialState":{"h":17,"t":102,"tokens":[24710,34660,3181,4665],"delegation":[23710,33660,2181,3665],"delegatorTokens":9999999895508,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonding","unbonded"]}},{"ix":175,"action":{"kind":"Deliver","chain":"consumer","numPackets":1},"partialState":{"h":21,"t":126,"consumerPower":[23854,16709,null,null],"outstandingDowntime":[false,false,true,true]}},{"ix":176,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":18,"t":108,"tokens":[24710,34660,3181,4665],"delegation":[23710,33660,2181,3665],"delegatorTokens":9999999902729,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonding","unbonded"]}},{"ix":177,"action":{"kind":"Delegate","val":1,"amt":2365},"partialState":{"h":18,"t":108,"tokens":[24710,37025,3181,4665],"delegation":[23710,36025,2181,3665],"delegatorTokens":9999999900364}},{"ix":178,"action":{"kind":"Deliver","chain":"consumer","numPackets":4},"partialState":{"h":21,"t":126,"consumerPower":[23854,16709,null,null],"outstandingDowntime":[false,false,true,true]}},{"ix":179,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":22,"t":132,"consumerPower":[24710,34660,null,null],"outstandingDowntime":[false,false,true,true]}},{"ix":180,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":181,"action":{"kind":"Delegate","val":1,"amt":2918},"partialState":{"h":18,"t":108,"tokens":[24710,39943,3181,4665],"delegation":[23710,38943,2181,3665],"delegatorTokens":9999999897446}},{"ix":182,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":183,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":184,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":23,"t":138,"consumerPower":[24710,34660,null,null],"outstandingDowntime":[false,false,true,true]}},{"ix":185,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":24,"t":144,"consumerPower":[24710,34660,null,null],"outstandingDowntime":[false,false,true,true]}},{"ix":186,"action":{"kind":"Undelegate","val":0,"amt":1394},"partialState":{"h":18,"t":108,"tokens":[23316,39943,3181,4665],"delegation":[22316,38943,2181,3665],"delegatorTokens":9999999897446}},{"ix":187,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":188,"action":{"kind":"Deliver","chain":"provider","numPackets":5},"partialState":{"h":18,"t":108,"tokens":[23316,39943,3181,4665],"delegation":[22316,38943,2181,3665],"delegatorTokens":9999999897446,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonding","unbonded"]}},{"ix":189,"action":{"kind":"Delegate","val":0,"amt":2933},"partialState":{"h":18,"t":108,"tokens":[26249,39943,3181,4665],"delegation":[25249,38943,2181,3665],"delegatorTokens":9999999894513}},{"ix":190,"action":{"kind":"Deliver","chain":"provider","numPackets":5},"partialState":{"h":18,"t":108,"tokens":[26249,39943,3181,4665],"delegation":[25249,38943,2181,3665],"delegatorTokens":9999999894513,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonding","unbonded"]}},{"ix":191,"action":{"kind":"Undelegate","val":0,"amt":4599},"partialState":{"h":18,"t":108,"tokens":[21650,39943,3181,4665],"delegation":[20650,38943,2181,3665],"delegatorTokens":9999999894513}},{"ix":192,"action":{"kind":"Delegate","val":3,"amt":3618},"partialState":{"h":18,"t":108,"tokens":[21650,39943,3181,8283],"delegation":[20650,38943,2181,7283],"delegatorTokens":9999999890895}},{"ix":193,"action":{"kind":"Deliver","chain":"consumer","numPackets":6},"partialState":{"h":24,"t":144,"consumerPower":[24710,34660,null,null],"outstandingDowntime":[false,false,true,true]}},{"ix":194,"action":{"kind":"Undelegate","val":2,"amt":1997},"partialState":{"h":18,"t":108,"tokens":[21650,39943,1184,8283],"delegation":[20650,38943,184,7283],"delegatorTokens":9999999890895}},{"ix":195,"action":{"kind":"Deliver","chain":"provider","numPackets":6},"partialState":{"h":18,"t":108,"tokens":[21650,39943,1184,8283],"delegation":[20650,38943,184,7283],"delegatorTokens":9999999890895,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonding","unbonded"]}},{"ix":196,"action":{"kind":"Undelegate","val":2,"amt":4035},"partialState":{"h":18,"t":108,"tokens":[21650,39943,1184,8283],"delegation":[20650,38943,184,7283],"delegatorTokens":9999999890895}},{"ix":197,"action":{"kind":"Undelegate","val":2,"amt":4909},"partialState":{"h":18,"t":108,"tokens":[21650,39943,1184,8283],"delegation":[20650,38943,184,7283],"delegatorTokens":9999999890895}},{"ix":198,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":19,"t":114,"tokens":[21650,39943,1184,8283],"delegation":[20650,38943,184,7283],"delegatorTokens":9999999899744,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonding","unbonded"]}},{"ix":199,"action":{"kind":"Undelegate","val":0,"amt":4865},"partialState":{"h":19,"t":114,"tokens":[16785,39943,1184,8283],"delegation":[15785,38943,184,7283],"delegatorTokens":9999999899744}}],"events":["insufficient_shares","send_downtime_slash_request","send_downtime_slash_request","insufficient_shares","downtime_slash_request_outstanding","send_double_sign_slash_request","send_vsc_without_downtime_ack","insufficient_shares","receive_slash_request_unbonded","receive_slash_request_unbonded","send_double_sign_slash_request","more_than_one_third_val_power_change","send_vsc_without_downtime_ack","insufficient_shares","more_than_one_third_val_power_change","send_vsc_without_downtime_ack","insufficient_shares","receive_double_sign_slash_request","send_vsc_without_downtime_ack","consumer_update_val","insufficient_shares","insufficient_shares","consumer_del_val","consumer_del_val","consumer_update_val","consumer_add_val","insufficient_shares","insufficient_shares","send_vsc_without_downtime_ack","receive_double_sign_slash_request","send_vsc_without_downtime_ack","consumer_update_val","consumer_update_val","send_vsc_without_downtime_ack","consumer_update_val","consumer_update_val","insufficient_shares","insufficient_shares","rebond_unval","send_vsc_without_downtime_ack","consumer_update_val","more_than_one_third_val_power_change","rebond_unval","send_vsc_without_downtime_ack","insufficient_shares","rebond_unval","send_vsc_without_downtime_ack","consumer_send_maturation","consumer_update_val","consumer_del_val","consumer_update_val","send_vsc_without_downtime_ack","send_vsc_without_downtime_ack","consumer_send_maturation","consumer_send_maturation","consumer_send_maturation","consumer_update_val","consumer_add_val","consumer_del_val","set_undel_hold_false","set_undel_hold_false","set_undel_hold_false","set_undel_hold_false","set_undel_hold_false","set_undel_hold_false","set_unval_hold_false","send_vsc_without_downtime_ack","complete_unval_in_endblock","complete_undel_in_endblock","send_vsc_without_downtime_ack","some_undels_expired_but_not_completed","complete_undel_immediate","complete_undel_immediate","complete_undel_immediate","consumer_send_maturation","consumer_update_val","consumer_update_val","consumer_send_maturation","insufficient_shares","insufficient_shares","some_undels_expired_but_not_completed","complete_undel_immediate","complete_undel_immediate","complete_undel_immediate","send_vsc_without_downtime_ack"]},{"meta":{"commit":"7ffd0c04e4205cbc9caf212abfe6c59ee43153bf"},"constants":{"P":"provider","C":"consumer","UNBONDING_SECONDS_P":70,"UNBONDING_SECONDS_C":50,"TRUSTING_SECONDS":49,"NUM_VALIDATORS":4,"MAX_VALIDATORS":2,"SLASH_DOUBLESIGN":0,"SLASH_DOWNTIME":0,"JAIL_SECONDS":999999999999999,"BLOCK_SECONDS":6,"INITIAL_DELEGATOR_TOKENS":10000000000000,"DELEGATE_AMT_MIN":1000,"DELEGATE_AMT_MAX":5000,"UNDELEGATE_AMT_MIN":1000,"UNDELEGATE_AMT_MAX":5000,"ISDOWNTIME_PROBABILITY":0.5,"MAX_NUM_PACKETS_FOR_DELIVER":6},"actions":[{"ix":0,"action":{"kind":"Undelegate","val":2,"amt":1964},"partialState":{"h":1,"t":6,"tokens":[5000,4000,1036,2000],"delegation":[4000,3000,36,1000],"delegatorTokens":10000000000000}},{"ix":1,"action":{"kind":"Delegate","val":0,"amt":3621},"partialState":{"h":1,"t":6,"tokens":[8621,4000,1036,2000],"delegation":[7621,3000,36,1000],"delegatorTokens":9999999996379}},{"ix":2,"action":{"kind":"Undelegate","val":2,"amt":1599},"partialState":{"h":1,"t":6,"tokens":[8621,4000,1036,2000],"delegation":[7621,3000,36,1000],"delegatorTokens":9999999996379}},{"ix":3,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":4,"action":{"kind":"Delegate","val":0,"amt":3354},"partialState":{"h":1,"t":6,"tokens":[11975,4000,1036,2000],"delegation":[10975,3000,36,1000],"delegatorTokens":9999999993025}},{"ix":5,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":2,"t":12,"tokens":[11975,4000,1036,2000],"delegation":[10975,3000,36,1000],"delegatorTokens":9999999993025,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":6,"action":{"kind":"Deliver","chain":"consumer","numPackets":3},"partialState":{"h":1,"t":6,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":7,"action":{"kind":"Deliver","chain":"provider","numPackets":3},"partialState":{"h":2,"t":12,"tokens":[11975,4000,1036,2000],"delegation":[10975,3000,36,1000],"delegatorTokens":9999999993025,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":8,"action":{"kind":"ConsumerSlash","val":3,"infractionHeight":0,"isDowntime":true},"partialState":{"h":1,"t":6,"outstandingDowntime":[false,false,false,true]}},{"ix":9,"action":{"kind":"Undelegate","val":2,"amt":2785},"partialState":{"h":2,"t":12,"tokens":[11975,4000,1036,2000],"delegation":[10975,3000,36,1000],"delegatorTokens":9999999993025}},{"ix":10,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":11,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":12,"action":{"kind":"ConsumerSlash","val":3,"infractionHeight":0,"isDowntime":false},"partialState":{"h":1,"t":6,"outstandingDowntime":[false,false,false,true]}},{"ix":13,"action":{"kind":"ConsumerSlash","val":2,"infractionHeight":0,"isDowntime":true},"partialState":{"h":1,"t":6,"outstandingDowntime":[false,false,true,true]}},{"ix":14,"action":{"kind":"Undelegate","val":0,"amt":2126},"partialState":{"h":2,"t":12,"tokens":[9849,4000,1036,2000],"delegation":[8849,3000,36,1000],"delegatorTokens":9999999993025}},{"ix":15,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":2,"t":12,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,false,true,true]}},{"ix":16,"action":{"kind":"Deliver","chain":"provider","numPackets":3},"partialState":{"h":2,"t":12,"tokens":[9849,4000,1036,2000],"delegation":[8849,3000,36,1000],"delegatorTokens":9999999993025,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":17,"action":{"kind":"Deliver","chain":"provider","numPackets":5},"partialState":{"h":2,"t":12,"tokens":[9849,4000,1036,2000],"delegation":[8849,3000,36,1000],"delegatorTokens":9999999993025,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":18,"action":{"kind":"Delegate","val":1,"amt":4082},"partialState":{"h":2,"t":12,"tokens":[9849,8082,1036,2000],"delegation":[8849,7082,36,1000],"delegatorTokens":9999999988943}},{"ix":19,"action":{"kind":"Deliver","chain":"provider","numPackets":5},"partialState":{"h":2,"t":12,"tokens":[9849,8082,1036,2000],"delegation":[8849,7082,36,1000],"delegatorTokens":9999999988943,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":20,"action":{"kind":"ConsumerSlash","val":0,"infractionHeight":0,"isDowntime":false},"partialState":{"h":2,"t":12,"outstandingDowntime":[false,false,true,true]}},{"ix":21,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":22,"action":{"kind":"Deliver","chain":"provider","numPackets":2},"partialState":{"h":2,"t":12,"tokens":[9849,8082,1036,2000],"delegation":[8849,7082,36,1000],"delegatorTokens":9999999988943,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":23,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":24,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":3,"t":18,"tokens":[9849,8082,1036,2000],"delegation":[8849,7082,36,1000],"delegatorTokens":9999999988943,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":25,"action":{"kind":"Undelegate","val":1,"amt":1176},"partialState":{"h":3,"t":18,"tokens":[9849,6906,1036,2000],"delegation":[8849,5906,36,1000],"delegatorTokens":9999999988943}},{"ix":26,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":27,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":3,"t":18,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,false,true,true]}},{"ix":28,"action":{"kind":"Deliver","chain":"provider","numPackets":4},"partialState":{"h":3,"t":18,"tokens":[9849,6906,1036,2000],"delegation":[8849,5906,36,1000],"delegatorTokens":9999999988943,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":29,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":4,"t":24,"tokens":[9849,6906,1036,2000],"delegation":[8849,5906,36,1000],"delegatorTokens":9999999988943,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":30,"action":{"kind":"Delegate","val":2,"amt":4661},"partialState":{"h":4,"t":24,"tokens":[9849,6906,5697,2000],"delegation":[8849,5906,4697,1000],"delegatorTokens":9999999984282}},{"ix":31,"action":{"kind":"Undelegate","val":3,"amt":1942},"partialState":{"h":4,"t":24,"tokens":[9849,6906,5697,2000],"delegation":[8849,5906,4697,1000],"delegatorTokens":9999999984282}},{"ix":32,"action":{"kind":"Deliver","chain":"provider","numPackets":1},"partialState":{"h":4,"t":24,"tokens":[9849,6906,5697,2000],"delegation":[8849,5906,4697,1000],"delegatorTokens":9999999984282,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":33,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":34,"action":{"kind":"Undelegate","val":0,"amt":3385},"partialState":{"h":4,"t":24,"tokens":[6464,6906,5697,2000],"delegation":[5464,5906,4697,1000],"delegatorTokens":9999999984282}},{"ix":35,"action":{"kind":"Deliver","chain":"provider","numPackets":6},"partialState":{"h":4,"t":24,"tokens":[6464,6906,5697,2000],"delegation":[5464,5906,4697,1000],"delegatorTokens":9999999984282,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":36,"action":{"kind":"Deliver","chain":"consumer","numPackets":4},"partialState":{"h":3,"t":18,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,false,true,true]}},{"ix":37,"action":{"kind":"Undelegate","val":1,"amt":3689},"partialState":{"h":4,"t":24,"tokens":[6464,3217,5697,2000],"delegation":[5464,2217,4697,1000],"delegatorTokens":9999999984282}},{"ix":38,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":4,"t":24,"consumerPower":[9849,8082,null,null],"outstandingDowntime":[false,false,true,true]}},{"ix":39,"action":{"kind":"Deliver","chain":"consumer","numPackets":5},"partialState":{"h":4,"t":24,"consumerPower":[9849,8082,null,null],"outstandingDowntime":[false,false,true,true]}},{"ix":40,"action":{"kind":"Deliver","chain":"consumer","numPackets":4},"partialState":{"h":4,"t":24,"consumerPower":[9849,8082,null,null],"outstandingDowntime":[false,false,true,true]}},{"ix":41,"action":{"kind":"Undelegate","val":2,"amt":3270},"partialState":{"h":4,"t":24,"tokens":[6464,3217,2427,2000],"delegation":[5464,2217,1427,1000],"delegatorTokens":9999999984282}},{"ix":42,"action":{"kind":"Delegate","val":0,"amt":3006},"partialState":{"h":4,"t":24,"tokens":[9470,3217,2427,2000],"delegation":[8470,2217,1427,1000],"delegatorTokens":9999999981276}},{"ix":43,"action":{"kind":"Delegate","val":0,"amt":3223},"partialState":{"h":4,"t":24,"tokens":[12693,3217,2427,2000],"delegation":[11693,2217,1427,1000],"delegatorTokens":9999999978053}},{"ix":44,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":45,"action":{"kind":"Delegate","val":3,"amt":2228},"partialState":{"h":4,"t":24,"tokens":[12693,3217,2427,4228],"delegation":[11693,2217,1427,3228],"delegatorTokens":9999999975825}},{"ix":46,"action":{"kind":"Deliver","chain":"consumer","numPackets":2},"partialState":{"h":4,"t":24,"consumerPower":[9849,8082,null,null],"outstandingDowntime":[false,false,true,true]}},{"ix":47,"action":{"kind":"Delegate","val":3,"amt":2181},"partialState":{"h":4,"t":24,"tokens":[12693,3217,2427,6409],"delegation":[11693,2217,1427,5409],"delegatorTokens":9999999973644}},{"ix":48,"action":{"kind":"Deliver","chain":"consumer","numPackets":1},"partialState":{"h":4,"t":24,"consumerPower":[9849,8082,null,null],"outstandingDowntime":[false,false,true,true]}},{"ix":49,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":50,"action":{"kind":"Delegate","val":0,"amt":3836},"partialState":{"h":4,"t":24,"tokens":[16529,3217,2427,6409],"delegation":[15529,2217,1427,5409],"delegatorTokens":9999999969808}},{"ix":51,"action":{"kind":"Deliver","chain":"provider","numPackets":5},"partialState":{"h":4,"t":24,"tokens":[16529,3217,2427,6409],"delegation":[15529,2217,1427,5409],"delegatorTokens":9999999969808,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":52,"action":{"kind":"Undelegate","val":1,"amt":4291},"partialState":{"h":4,"t":24,"tokens":[16529,3217,2427,6409],"delegation":[15529,2217,1427,5409],"delegatorTokens":9999999969808}},{"ix":53,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":5,"t":30,"tokens":[16529,3217,2427,6409],"delegation":[15529,2217,1427,5409],"delegatorTokens":9999999969808,"jailed":[null,null,null,null],"status":["bonded","unbonding","unbonded","bonded"]}},{"ix":54,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":5,"t":30,"consumerPower":[9849,8082,null,null],"outstandingDowntime":[false,false,true,true]}},{"ix":55,"action":{"kind":"Delegate","val":3,"amt":3389},"partialState":{"h":5,"t":30,"tokens":[16529,3217,2427,9798],"delegation":[15529,2217,1427,8798],"delegatorTokens":9999999966419}},{"ix":56,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":57,"action":{"kind":"Delegate","val":1,"amt":1640},"partialState":{"h":5,"t":30,"tokens":[16529,4857,2427,9798],"delegation":[15529,3857,1427,8798],"delegatorTokens":9999999964779}},{"ix":58,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":6,"t":36,"consumerPower":[9849,8082,null,null],"outstandingDowntime":[false,false,true,true]}},{"ix":59,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":6,"t":36,"tokens":[16529,4857,2427,9798],"delegation":[15529,3857,1427,8798],"delegatorTokens":9999999964779,"jailed":[null,null,null,null],"status":["bonded","unbonding","unbonded","bonded"]}},{"ix":60,"action":{"kind":"Deliver","chain":"provider","numPackets":6},"partialState":{"h":6,"t":36,"tokens":[16529,4857,2427,9798],"delegation":[15529,3857,1427,8798],"delegatorTokens":9999999964779,"jailed":[null,null,null,null],"status":["bonded","unbonding","unbonded","bonded"]}},{"ix":61,"action":{"kind":"Undelegate","val":3,"amt":1993},"partialState":{"h":6,"t":36,"tokens":[16529,4857,2427,7805],"delegation":[15529,3857,1427,6805],"delegatorTokens":9999999964779}},{"ix":62,"action":{"kind":"Undelegate","val":2,"amt":3709},"partialState":{"h":6,"t":36,"tokens":[16529,4857,2427,7805],"delegation":[15529,3857,1427,6805],"delegatorTokens":9999999964779}},{"ix":63,"action":{"kind":"Undelegate","val":0,"amt":2739},"partialState":{"h":6,"t":36,"tokens":[13790,4857,2427,7805],"delegation":[12790,3857,1427,6805],"delegatorTokens":9999999964779}},{"ix":64,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":65,"action":{"kind":"Delegate","val":3,"amt":1410},"partialState":{"h":6,"t":36,"tokens":[13790,4857,2427,9215],"delegation":[12790,3857,1427,8215],"delegatorTokens":9999999963369}},{"ix":66,"action":{"kind":"Deliver","chain":"consumer","numPackets":5},"partialState":{"h":6,"t":36,"consumerPower":[9849,8082,null,null],"outstandingDowntime":[false,false,true,true]}},{"ix":67,"action":{"kind":"Deliver","chain":"consumer","numPackets":3},"partialState":{"h":6,"t":36,"consumerPower":[9849,8082,null,null],"outstandingDowntime":[false,false,true,true]}},{"ix":68,"action":{"kind":"Undelegate","val":1,"amt":4167},"partialState":{"h":6,"t":36,"tokens":[13790,4857,2427,9215],"delegation":[12790,3857,1427,8215],"delegatorTokens":9999999963369}},{"ix":69,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":70,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":71,"action":{"kind":"Deliver","chain":"provider","numPackets":3},"partialState":{"h":6,"t":36,"tokens":[13790,4857,2427,9215],"delegation":[12790,3857,1427,8215],"delegatorTokens":9999999963369,"jailed":[null,null,null,null],"status":["bonded","unbonding","unbonded","bonded"]}},{"ix":72,"action":{"kind":"Delegate","val":0,"amt":4156},"partialState":{"h":6,"t":36,"tokens":[17946,4857,2427,9215],"delegation":[16946,3857,1427,8215],"delegatorTokens":9999999959213}},{"ix":73,"action":{"kind":"Deliver","chain":"provider","numPackets":1},"partialState":{"h":6,"t":36,"tokens":[17946,4857,2427,9215],"delegation":[16946,3857,1427,8215],"delegatorTokens":9999999959213,"jailed":[null,null,null,null],"status":["bonded","unbonding","unbonded","bonded"]}},{"ix":74,"action":{"kind":"Undelegate","val":1,"amt":1954},"partialState":{"h":6,"t":36,"tokens":[17946,2903,2427,9215],"delegation":[16946,1903,1427,8215],"delegatorTokens":9999999959213}},{"ix":75,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":76,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":7,"t":42,"consumerPower":[16529,null,null,6409],"outstandingDowntime":[false,false,true,true]}},{"ix":77,"action":{"kind":"Delegate","val":3,"amt":2223},"partialState":{"h":6,"t":36,"tokens":[17946,2903,2427,11438],"delegation":[16946,1903,1427,10438],"delegatorTokens":9999999956990}},{"ix":78,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":7,"t":42,"tokens":[17946,2903,2427,11438],"delegation":[16946,1903,1427,10438],"delegatorTokens":9999999956990,"jailed":[null,null,null,null],"status":["bonded","unbonding","unbonded","bonded"]}},{"ix":79,"action":{"kind":"Deliver","chain":"provider","numPackets":1},"partialState":{"h":7,"t":42,"tokens":[17946,2903,2427,11438],"delegation":[16946,1903,1427,10438],"delegatorTokens":9999999956990,"jailed":[null,null,null,null],"status":["bonded","unbonding","unbonded","bonded"]}},{"ix":80,"action":{"kind":"Deliver","chain":"provider","numPackets":1},"partialState":{"h":7,"t":42,"tokens":[17946,2903,2427,11438],"delegation":[16946,1903,1427,10438],"delegatorTokens":9999999956990,"jailed":[null,null,null,null],"status":["bonded","unbonding","unbonded","bonded"]}},{"ix":81,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":8,"t":48,"tokens":[17946,2903,2427,11438],"delegation":[16946,1903,1427,10438],"delegatorTokens":9999999956990,"jailed":[null,null,null,null],"status":["bonded","unbonding","unbonded","bonded"]}},{"ix":82,"action":{"kind":"Undelegate","val":2,"amt":4243},"partialState":{"h":8,"t":48,"tokens":[17946,2903,2427,11438],"delegation":[16946,1903,1427,10438],"delegatorTokens":9999999956990}},{"ix":83,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":8,"t":48,"consumerPower":[16529,null,null,6409],"outstandingDowntime":[false,false,true,true]}},{"ix":84,"action":{"kind":"Deliver","chain":"consumer","numPackets":6},"partialState":{"h":8,"t":48,"consumerPower":[16529,null,null,6409],"outstandingDowntime":[false,false,true,true]}},{"ix":85,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":9,"t":54,"tokens":[17946,2903,2427,11438],"delegation":[16946,1903,1427,10438],"delegatorTokens":9999999956990,"jailed":[null,null,null,null],"status":["bonded","unbonding","unbonded","bonded"]}},{"ix":86,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":10,"t":60,"tokens":[17946,2903,2427,11438],"delegation":[16946,1903,1427,10438],"delegatorTokens":9999999956990,"jailed":[null,null,null,null],"status":["bonded","unbonding","unbonded","bonded"]}},{"ix":87,"action":{"kind":"Deliver","chain":"consumer","numPackets":2},"partialState":{"h":8,"t":48,"consumerPower":[16529,null,null,6409],"outstandingDowntime":[false,false,true,true]}},{"ix":88,"action":{"kind":"Deliver","chain":"consumer","numPackets":4},"partialState":{"h":8,"t":48,"consumerPower":[16529,null,null,6409],"outstandingDowntime":[false,false,true,true]}},{"ix":89,"action":{"kind":"Undelegate","val":2,"amt":1025},"partialState":{"h":10,"t":60,"tokens":[17946,2903,1402,11438],"delegation":[16946,1903,402,10438],"delegatorTokens":9999999956990}},{"ix":90,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":91,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":9,"t":54,"consumerPower":[17946,null,null,11438],"outstandingDowntime":[false,false,true,true]}},{"ix":92,"action":{"kind":"Delegate","val":2,"amt":3227},"partialState":{"h":10,"t":60,"tokens":[17946,2903,4629,11438],"delegation":[16946,1903,3629,10438],"delegatorTokens":9999999953763}},{"ix":93,"action":{"kind":"Undelegate","val":1,"amt":1562},"partialState":{"h":10,"t":60,"tokens":[17946,1341,4629,11438],"delegation":[16946,341,3629,10438],"delegatorTokens":9999999953763}},{"ix":94,"action":{"kind":"Deliver","chain":"provider","numPackets":5},"partialState":{"h":10,"t":60,"tokens":[17946,1341,4629,11438],"delegation":[16946,341,3629,10438],"delegatorTokens":9999999953763,"jailed":[null,null,null,null],"status":["bonded","unbonding","unbonded","bonded"]}},{"ix":95,"action":{"kind":"Deliver","chain":"consumer","numPackets":6},"partialState":{"h":9,"t":54,"consumerPower":[17946,null,null,11438],"outstandingDowntime":[false,false,true,true]}},{"ix":96,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":97,"action":{"kind":"Deliver","chain":"provider","numPackets":3},"partialState":{"h":10,"t":60,"tokens":[17946,1341,4629,11438],"delegation":[16946,341,3629,10438],"delegatorTokens":9999999953763,"jailed":[null,null,null,null],"status":["bonded","unbonding","unbonded","bonded"]}},{"ix":98,"action":{"kind":"Delegate","val":0,"amt":2618},"partialState":{"h":10,"t":60,"tokens":[20564,1341,4629,11438],"delegation":[19564,341,3629,10438],"delegatorTokens":9999999951145}},{"ix":99,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":10,"t":60,"consumerPower":[17946,null,null,11438],"outstandingDowntime":[false,false,true,true]}},{"ix":100,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":11,"t":66,"tokens":[20564,1341,4629,11438],"delegation":[19564,341,3629,10438],"delegatorTokens":9999999951145,"jailed":[null,null,null,null],"status":["bonded","unbonding","unbonded","bonded"]}},{"ix":101,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":102,"action":{"kind":"Deliver","chain":"consumer","numPackets":2},"partialState":{"h":10,"t":60,"consumerPower":[17946,null,null,11438],"outstandingDowntime":[false,false,true,true]}},{"ix":103,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":11,"t":66,"consumerPower":[17946,null,null,11438],"outstandingDowntime":[false,false,true,true]}},{"ix":104,"action":{"kind":"Delegate","val":0,"amt":3399},"partialState":{"h":11,"t":66,"tokens":[23963,1341,4629,11438],"delegation":[22963,341,3629,10438],"delegatorTokens":9999999947746}},{"ix":105,"action":{"kind":"Deliver","chain":"provider","numPackets":1},"partialState":{"h":11,"t":66,"tokens":[23963,1341,4629,11438],"delegation":[22963,341,3629,10438],"delegatorTokens":9999999947746,"jailed":[null,null,null,null],"status":["bonded","unbonding","unbonded","bonded"]}},{"ix":106,"action":{"kind":"Delegate","val":3,"amt":1624},"partialState":{"h":11,"t":66,"tokens":[23963,1341,4629,13062],"delegation":[22963,341,3629,12062],"delegatorTokens":9999999946122}},{"ix":107,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":108,"action":{"kind":"Deliver","chain":"provider","numPackets":1},"partialState":{"h":11,"t":66,"tokens":[23963,1341,4629,13062],"delegation":[22963,341,3629,12062],"delegatorTokens":9999999946122,"jailed":[null,null,null,null],"status":["bonded","unbonding","unbonded","bonded"]}},{"ix":109,"action":{"kind":"Delegate","val":1,"amt":2013},"partialState":{"h":11,"t":66,"tokens":[23963,3354,4629,13062],"delegation":[22963,2354,3629,12062],"delegatorTokens":9999999944109}},{"ix":110,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":111,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":12,"t":72,"consumerPower":[17946,null,null,11438],"outstandingDowntime":[false,false,true,true]}},{"ix":112,"action":{"kind":"Delegate","val":1,"amt":4663},"partialState":{"h":11,"t":66,"tokens":[23963,8017,4629,13062],"delegation":[22963,7017,3629,12062],"delegatorTokens":9999999939446}},{"ix":113,"action":{"kind":"Deliver","chain":"provider","numPackets":6},"partialState":{"h":11,"t":66,"tokens":[23963,8017,4629,13062],"delegation":[22963,7017,3629,12062],"delegatorTokens":9999999939446,"jailed":[null,null,null,null],"status":["bonded","unbonding","unbonded","bonded"]}},{"ix":114,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":115,"action":{"kind":"Deliver","chain":"provider","numPackets":5},"partialState":{"h":11,"t":66,"tokens":[23963,8017,4629,13062],"delegation":[22963,7017,3629,12062],"delegatorTokens":9999999939446,"jailed":[null,null,null,null],"status":["bonded","unbonding","unbonded","bonded"]}},{"ix":116,"action":{"kind":"Deliver","chain":"provider","numPackets":6},"partialState":{"h":11,"t":66,"tokens":[23963,8017,4629,13062],"delegation":[22963,7017,3629,12062],"delegatorTokens":9999999939446,"jailed":[null,null,null,null],"status":["bonded","unbonding","unbonded","bonded"]}},{"ix":117,"action":{"kind":"Delegate","val":1,"amt":1085},"partialState":{"h":11,"t":66,"tokens":[23963,9102,4629,13062],"delegation":[22963,8102,3629,12062],"delegatorTokens":9999999938361}},{"ix":118,"action":{"kind":"Delegate","val":0,"amt":4063},"partialState":{"h":11,"t":66,"tokens":[28026,9102,4629,13062],"delegation":[27026,8102,3629,12062],"delegatorTokens":9999999934298}},{"ix":119,"action":{"kind":"Undelegate","val":3,"amt":3038},"partialState":{"h":11,"t":66,"tokens":[28026,9102,4629,10024],"delegation":[27026,8102,3629,9024],"delegatorTokens":9999999934298}},{"ix":120,"action":{"kind":"Delegate","val":3,"amt":3812},"partialState":{"h":11,"t":66,"tokens":[28026,9102,4629,13836],"delegation":[27026,8102,3629,12836],"delegatorTokens":9999999930486}},{"ix":121,"action":{"kind":"Delegate","val":0,"amt":1128},"partialState":{"h":11,"t":66,"tokens":[29154,9102,4629,13836],"delegation":[28154,8102,3629,12836],"delegatorTokens":9999999929358}},{"ix":122,"action":{"kind":"Undelegate","val":0,"amt":4039},"partialState":{"h":11,"t":66,"tokens":[25115,9102,4629,13836],"delegation":[24115,8102,3629,12836],"delegatorTokens":9999999929358}},{"ix":123,"action":{"kind":"Deliver","chain":"provider","numPackets":1},"partialState":{"h":11,"t":66,"tokens":[25115,9102,4629,13836],"delegation":[24115,8102,3629,12836],"delegatorTokens":9999999929358,"jailed":[null,null,null,null],"status":["bonded","unbonding","unbonded","bonded"]}},{"ix":124,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":125,"action":{"kind":"Delegate","val":2,"amt":4429},"partialState":{"h":11,"t":66,"tokens":[25115,9102,9058,13836],"delegation":[24115,8102,8058,12836],"delegatorTokens":9999999924929}},{"ix":126,"action":{"kind":"Deliver","chain":"consumer","numPackets":3},"partialState":{"h":12,"t":72,"consumerPower":[17946,null,null,11438],"outstandingDowntime":[false,false,true,true]}},{"ix":127,"action":{"kind":"Delegate","val":0,"amt":2310},"partialState":{"h":11,"t":66,"tokens":[27425,9102,9058,13836],"delegation":[26425,8102,8058,12836],"delegatorTokens":9999999922619}},{"ix":128,"action":{"kind":"Undelegate","val":0,"amt":4936},"partialState":{"h":11,"t":66,"tokens":[22489,9102,9058,13836],"delegation":[21489,8102,8058,12836],"delegatorTokens":9999999922619}},{"ix":129,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":13,"t":78,"consumerPower":[17946,null,null,11438],"outstandingDowntime":[false,false,true,true]}},{"ix":130,"action":{"kind":"Undelegate","val":3,"amt":2212},"partialState":{"h":11,"t":66,"tokens":[22489,9102,9058,11624],"delegation":[21489,8102,8058,10624],"delegatorTokens":9999999922619}},{"ix":131,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":132,"action":{"kind":"Delegate","val":2,"amt":4291},"partialState":{"h":11,"t":66,"tokens":[22489,9102,13349,11624],"delegation":[21489,8102,12349,10624],"delegatorTokens":9999999918328}},{"ix":133,"action":{"kind":"Deliver","chain":"provider","numPackets":6},"partialState":{"h":11,"t":66,"tokens":[22489,9102,13349,11624],"delegation":[21489,8102,12349,10624],"delegatorTokens":9999999918328,"jailed":[null,null,null,null],"status":["bonded","unbonding","unbonded","bonded"]}},{"ix":134,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":135,"action":{"kind":"Undelegate","val":1,"amt":2008},"partialState":{"h":11,"t":66,"tokens":[22489,7094,13349,11624],"delegation":[21489,6094,12349,10624],"delegatorTokens":9999999918328}},{"ix":136,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":12,"t":72,"tokens":[22489,7094,13349,11624],"delegation":[21489,6094,12349,10624],"delegatorTokens":9999999918328,"jailed":[null,null,null,null],"status":["bonded","unbonding","bonded","unbonding"]}},{"ix":137,"action":{"kind":"Deliver","chain":"provider","numPackets":5},"partialState":{"h":12,"t":72,"tokens":[22489,7094,13349,11624],"delegation":[21489,6094,12349,10624],"delegatorTokens":9999999918328,"jailed":[null,null,null,null],"status":["bonded","unbonding","bonded","unbonding"]}},{"ix":138,"action":{"kind":"Deliver","chain":"provider","numPackets":3},"partialState":{"h":12,"t":72,"tokens":[22489,7094,13349,11624],"delegation":[21489,6094,12349,10624],"delegatorTokens":9999999918328,"jailed":[null,null,null,null],"status":["bonded","unbonding","bonded","unbonding"]}},{"ix":139,"action":{"kind":"Deliver","chain":"consumer","numPackets":4},"partialState":{"h":13,"t":78,"consumerPower":[17946,null,null,11438],"outstandingDowntime":[false,false,true,true]}},{"ix":140,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":14,"t":84,"consumerPower":[20564,null,null,11438],"outstandingDowntime":[false,false,true,true]}},{"ix":141,"action":{"kind":"Delegate","val":1,"amt":2202},"partialState":{"h":12,"t":72,"tokens":[22489,9296,13349,11624],"delegation":[21489,8296,12349,10624],"delegatorTokens":9999999916126}},{"ix":142,"action":{"kind":"Deliver","chain":"provider","numPackets":1},"partialState":{"h":12,"t":72,"tokens":[22489,9296,13349,11624],"delegation":[21489,8296,12349,10624],"delegatorTokens":9999999916126,"jailed":[null,null,null,null],"status":["bonded","unbonding","bonded","unbonding"]}},{"ix":143,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":144,"action":{"kind":"Delegate","val":1,"amt":1951},"partialState":{"h":12,"t":72,"tokens":[22489,11247,13349,11624],"delegation":[21489,10247,12349,10624],"delegatorTokens":9999999914175}},{"ix":145,"action":{"kind":"Deliver","chain":"provider","numPackets":3},"partialState":{"h":12,"t":72,"tokens":[22489,11247,13349,11624],"delegation":[21489,10247,12349,10624],"delegatorTokens":9999999914175,"jailed":[null,null,null,null],"status":["bonded","unbonding","bonded","unbonding"]}},{"ix":146,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":147,"action":{"kind":"Deliver","chain":"provider","numPackets":4},"partialState":{"h":12,"t":72,"tokens":[22489,11247,13349,11624],"delegation":[21489,10247,12349,10624],"delegatorTokens":9999999914175,"jailed":[null,null,null,null],"status":["bonded","unbonding","bonded","unbonding"]}},{"ix":148,"action":{"kind":"Undelegate","val":1,"amt":2364},"partialState":{"h":12,"t":72,"tokens":[22489,8883,13349,11624],"delegation":[21489,7883,12349,10624],"delegatorTokens":9999999914175}},{"ix":149,"action":{"kind":"Deliver","chain":"consumer","numPackets":6},"partialState":{"h":14,"t":84,"consumerPower":[20564,null,null,11438],"outstandingDowntime":[false,false,true,true]}},{"ix":150,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":15,"t":90,"consumerPower":[20564,null,null,11438],"outstandingDowntime":[false,false,true,true]}},{"ix":151,"action":{"kind":"Deliver","chain":"consumer","numPackets":6},"partialState":{"h":15,"t":90,"consumerPower":[20564,null,null,11438],"outstandingDowntime":[false,false,true,true]}},{"ix":152,"action":{"kind":"Deliver","chain":"provider","numPackets":6},"partialState":{"h":12,"t":72,"tokens":[22489,8883,13349,11624],"delegation":[21489,7883,12349,10624],"delegatorTokens":9999999914175,"jailed":[null,null,null,null],"status":["bonded","unbonding","bonded","unbonding"]}},{"ix":153,"action":{"kind":"Undelegate","val":2,"amt":3229},"partialState":{"h":12,"t":72,"tokens":[22489,8883,10120,11624],"delegation":[21489,7883,9120,10624],"delegatorTokens":9999999914175}},{"ix":154,"action":{"kind":"Undelegate","val":2,"amt":2114},"partialState":{"h":12,"t":72,"tokens":[22489,8883,8006,11624],"delegation":[21489,7883,7006,10624],"delegatorTokens":9999999914175}},{"ix":155,"action":{"kind":"Delegate","val":0,"amt":4598},"partialState":{"h":12,"t":72,"tokens":[27087,8883,8006,11624],"delegation":[26087,7883,7006,10624],"delegatorTokens":9999999909577}},{"ix":156,"action":{"kind":"Deliver","chain":"provider","numPackets":3},"partialState":{"h":12,"t":72,"tokens":[27087,8883,8006,11624],"delegation":[26087,7883,7006,10624],"delegatorTokens":9999999909577,"jailed":[null,null,null,null],"status":["bonded","unbonding","bonded","unbonding"]}},{"ix":157,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":158,"action":{"kind":"Deliver","chain":"consumer","numPackets":6},"partialState":{"h":15,"t":90,"consumerPower":[20564,null,null,11438],"outstandingDowntime":[false,false,true,true]}},{"ix":159,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":160,"action":{"kind":"Undelegate","val":3,"amt":1221},"partialState":{"h":12,"t":72,"tokens":[27087,8883,8006,10403],"delegation":[26087,7883,7006,9403],"delegatorTokens":9999999909577}},{"ix":161,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":162,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":163,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":13,"t":78,"tokens":[27087,8883,8006,10403],"delegation":[26087,7883,7006,9403],"delegatorTokens":9999999909577,"jailed":[null,null,null,null],"status":["bonded","unbonding","unbonding","bonded"]}},{"ix":164,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":14,"t":84,"tokens":[27087,8883,8006,10403],"delegation":[26087,7883,7006,9403],"delegatorTokens":9999999911541,"jailed":[null,null,null,null],"status":["bonded","unbonding","unbonding","bonded"]}},{"ix":165,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":16,"t":96,"consumerPower":[20564,null,null,11438],"outstandingDowntime":[false,false,true,true]}},{"ix":166,"action":{"kind":"Delegate","val":3,"amt":2771},"partialState":{"h":14,"t":84,"tokens":[27087,8883,8006,13174],"delegation":[26087,7883,7006,12174],"delegatorTokens":9999999908770}},{"ix":167,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":168,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":15,"t":90,"tokens":[27087,8883,8006,13174],"delegation":[26087,7883,7006,12174],"delegatorTokens":9999999910896,"jailed":[null,null,null,null],"status":["bonded","unbonding","unbonding","bonded"]}},{"ix":169,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":16,"t":96,"tokens":[27087,8883,8006,13174],"delegation":[26087,7883,7006,12174],"delegatorTokens":9999999910896,"jailed":[null,null,null,null],"status":["bonded","unbonding","unbonding","bonded"]}},{"ix":170,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":17,"t":102,"consumerPower":[20564,null,null,11438],"outstandingDowntime":[false,false,true,true]}},{"ix":171,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":172,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":173,"action":{"kind":"Deliver","chain":"provider","numPackets":6},"partialState":{"h":16,"t":96,"tokens":[27087,8883,8006,13174],"delegation":[26087,7883,7006,12174],"delegatorTokens":9999999910896,"jailed":[null,null,null,null],"status":["bonded","unbonding","unbonding","bonded"]}},{"ix":174,"action":{"kind":"Undelegate","val":0,"amt":1437},"partialState":{"h":16,"t":96,"tokens":[25650,8883,8006,13174],"delegation":[24650,7883,7006,12174],"delegatorTokens":9999999910896}},{"ix":175,"action":{"kind":"Deliver","chain":"provider","numPackets":4},"partialState":{"h":16,"t":96,"tokens":[25650,8883,8006,13174],"delegation":[24650,7883,7006,12174],"delegatorTokens":9999999910896,"jailed":[null,null,null,null],"status":["bonded","unbonding","unbonding","bonded"]}},{"ix":176,"action":{"kind":"Delegate","val":3,"amt":3587},"partialState":{"h":16,"t":96,"tokens":[25650,8883,8006,16761],"delegation":[24650,7883,7006,15761],"delegatorTokens":9999999907309}},{"ix":177,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":18,"t":108,"consumerPower":[20564,null,null,11438],"outstandingDowntime":[false,false,true,true]}},{"ix":178,"action":{"kind":"Undelegate","val":2,"amt":1528},"partialState":{"h":16,"t":96,"tokens":[25650,8883,6478,16761],"delegation":[24650,7883,5478,15761],"delegatorTokens":9999999907309}},{"ix":179,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":19,"t":114,"consumerPower":[20564,null,null,11438],"outstandingDowntime":[false,false,true,true]}},{"ix":180,"action":{"kind":"Deliver","chain":"consumer","numPackets":4},"partialState":{"h":19,"t":114,"consumerPower":[20564,null,null,11438],"outstandingDowntime":[false,false,true,true]}},{"ix":181,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":182,"action":{"kind":"Undelegate","val":1,"amt":4721},"partialState":{"h":16,"t":96,"tokens":[25650,4162,6478,16761],"delegation":[24650,3162,5478,15761],"delegatorTokens":9999999907309}},{"ix":183,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":184,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":185,"action":{"kind":"Undelegate","val":3,"amt":1464},"partialState":{"h":16,"t":96,"tokens":[25650,4162,6478,15297],"delegation":[24650,3162,5478,14297],"delegatorTokens":9999999907309}},{"ix":186,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":187,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":20,"t":120,"consumerPower":[27087,null,null,13174],"outstandingDowntime":[false,false,true,true]}},{"ix":188,"action":{"kind":"Delegate","val":2,"amt":4923},"partialState":{"h":16,"t":96,"tokens":[25650,4162,11401,15297],"delegation":[24650,3162,10401,14297],"delegatorTokens":9999999902386}},{"ix":189,"action":{"kind":"Delegate","val":0,"amt":2721},"partialState":{"h":16,"t":96,"tokens":[28371,4162,11401,15297],"delegation":[27371,3162,10401,14297],"delegatorTokens":9999999899665}},{"ix":190,"action":{"kind":"Deliver","chain":"consumer","numPackets":1},"partialState":{"h":20,"t":120,"consumerPower":[27087,null,null,13174],"outstandingDowntime":[false,false,true,true]}},{"ix":191,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":17,"t":102,"tokens":[28371,4162,11401,15297],"delegation":[27371,3162,10401,14297],"delegatorTokens":9999999911185,"jailed":[null,null,null,null],"status":["bonded","unbonding","unbonding","bonded"]}},{"ix":192,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":193,"action":{"kind":"Delegate","val":1,"amt":2564},"partialState":{"h":17,"t":102,"tokens":[28371,6726,11401,15297],"delegation":[27371,5726,10401,14297],"delegatorTokens":9999999908621}},{"ix":194,"action":{"kind":"Deliver","chain":"provider","numPackets":2},"partialState":{"h":17,"t":102,"tokens":[28371,6726,11401,15297],"delegation":[27371,5726,10401,14297],"delegatorTokens":9999999908621,"jailed":[null,null,null,null],"status":["bonded","unbonding","unbonding","bonded"]}},{"ix":195,"action":{"kind":"Undelegate","val":1,"amt":1504},"partialState":{"h":17,"t":102,"tokens":[28371,5222,11401,15297],"delegation":[27371,4222,10401,14297],"delegatorTokens":9999999908621}},{"ix":196,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":18,"t":108,"tokens":[28371,5222,11401,15297],"delegation":[27371,4222,10401,14297],"delegatorTokens":9999999908621,"jailed":[null,null,null,null],"status":["bonded","unbonded","unbonding","bonded"]}},{"ix":197,"action":{"kind":"Undelegate","val":1,"amt":3011},"partialState":{"h":18,"t":108,"tokens":[28371,2211,11401,15297],"delegation":[27371,1211,10401,14297],"delegatorTokens":9999999908621}},{"ix":198,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":199,"action":{"kind":"Deliver","chain":"consumer","numPackets":4},"partialState":{"h":20,"t":120,"consumerPower":[27087,null,null,13174],"outstandingDowntime":[false,false,true,true]}}],"events":["insufficient_shares","send_vsc_without_downtime_ack","send_downtime_slash_request","insufficient_shares","send_double_sign_slash_request","send_downtime_slash_request","send_double_sign_slash_request","send_vsc_without_downtime_ack","receive_double_sign_slash_request","receive_slash_request_unbonded","receive_slash_request_unbonded","send_vsc_without_downtime_ack","insufficient_shares","consumer_update_val","consumer_update_val","receive_double_sign_slash_request","insufficient_shares","send_vsc_without_downtime_ack","send_vsc_without_downtime_ack","insufficient_shares","insufficient_shares","consumer_del_val","consumer_update_val","consumer_add_val","send_vsc_without_downtime_ack","insufficient_shares","consumer_update_val","consumer_update_val","send_vsc_without_downtime_ack","consumer_send_maturation","consumer_send_maturation","more_than_one_third_val_power_change","send_vsc_without_downtime_ack","consumer_update_val","rebond_unval","set_undel_hold_false","set_undel_hold_false","send_vsc_without_downtime_ack","complete_undel_in_endblock","consumer_send_maturation","consumer_send_maturation","complete_undel_in_endblock","send_vsc_without_downtime_ack","some_undels_expired_but_not_completed","consumer_send_maturation","consumer_send_maturation","consumer_update_val","consumer_del_val","consumer_update_val","some_undels_expired_but_not_completed","complete_undel_immediate","complete_undel_immediate","complete_undel_immediate","complete_undel_immediate","set_unval_hold_false","send_vsc_without_downtime_ack","complete_unval_in_endblock","set_undel_hold_false","set_undel_hold_false","set_undel_hold_false","send_vsc_not_because_change","send_vsc_without_downtime_ack"]},{"meta":{"commit":"7ffd0c04e4205cbc9caf212abfe6c59ee43153bf"},"constants":{"P":"provider","C":"consumer","UNBONDING_SECONDS_P":70,"UNBONDING_SECONDS_C":50,"TRUSTING_SECONDS":49,"NUM_VALIDATORS":4,"MAX_VALIDATORS":2,"SLASH_DOUBLESIGN":0,"SLASH_DOWNTIME":0,"JAIL_SECONDS":999999999999999,"BLOCK_SECONDS":6,"INITIAL_DELEGATOR_TOKENS":10000000000000,"DELEGATE_AMT_MIN":1000,"DELEGATE_AMT_MAX":5000,"UNDELEGATE_AMT_MIN":1000,"UNDELEGATE_AMT_MAX":5000,"ISDOWNTIME_PROBABILITY":0.5,"MAX_NUM_PACKETS_FOR_DELIVER":6},"actions":[{"ix":0,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":2,"t":12,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":1,"action":{"kind":"Delegate","val":1,"amt":2691},"partialState":{"h":1,"t":6,"tokens":[5000,6691,3000,2000],"delegation":[4000,5691,2000,1000],"delegatorTokens":9999999997309}},{"ix":2,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":3,"action":{"kind":"ConsumerSlash","val":2,"infractionHeight":0,"isDowntime":true},"partialState":{"h":2,"t":12,"outstandingDowntime":[false,false,true,false]}},{"ix":4,"action":{"kind":"Undelegate","val":0,"amt":2828},"partialState":{"h":1,"t":6,"tokens":[2172,6691,3000,2000],"delegation":[1172,5691,2000,1000],"delegatorTokens":9999999997309}},{"ix":5,"action":{"kind":"Undelegate","val":0,"amt":4036},"partialState":{"h":1,"t":6,"tokens":[2172,6691,3000,2000],"delegation":[1172,5691,2000,1000],"delegatorTokens":9999999997309}},{"ix":6,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":3,"t":18,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,false,true,false]}},{"ix":7,"action":{"kind":"Undelegate","val":3,"amt":2002},"partialState":{"h":1,"t":6,"tokens":[2172,6691,3000,2000],"delegation":[1172,5691,2000,1000],"delegatorTokens":9999999997309}},{"ix":8,"action":{"kind":"Undelegate","val":2,"amt":2831},"partialState":{"h":1,"t":6,"tokens":[2172,6691,3000,2000],"delegation":[1172,5691,2000,1000],"delegatorTokens":9999999997309}},{"ix":9,"action":{"kind":"ConsumerSlash","val":3,"infractionHeight":2,"isDowntime":true},"partialState":{"h":3,"t":18,"outstandingDowntime":[false,false,true,true]}},{"ix":10,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":11,"action":{"kind":"ConsumerSlash","val":0,"infractionHeight":1,"isDowntime":false},"partialState":{"h":3,"t":18,"outstandingDowntime":[false,false,true,true]}},{"ix":12,"action":{"kind":"Delegate","val":1,"amt":4477},"partialState":{"h":1,"t":6,"tokens":[2172,11168,3000,2000],"delegation":[1172,10168,2000,1000],"delegatorTokens":9999999992832}},{"ix":13,"action":{"kind":"Deliver","chain":"provider","numPackets":1},"partialState":{"h":1,"t":6,"tokens":[2172,11168,3000,2000],"delegation":[1172,10168,2000,1000],"delegatorTokens":9999999992832,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":14,"action":{"kind":"Undelegate","val":2,"amt":2017},"partialState":{"h":1,"t":6,"tokens":[2172,11168,3000,2000],"delegation":[1172,10168,2000,1000],"delegatorTokens":9999999992832}},{"ix":15,"action":{"kind":"Undelegate","val":3,"amt":2199},"partialState":{"h":1,"t":6,"tokens":[2172,11168,3000,2000],"delegation":[1172,10168,2000,1000],"delegatorTokens":9999999992832}},{"ix":16,"action":{"kind":"Deliver","chain":"consumer","numPackets":6},"partialState":{"h":3,"t":18,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,false,true,true]}},{"ix":17,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":4,"t":24,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,false,true,true]}},{"ix":18,"action":{"kind":"Delegate","val":0,"amt":3069},"partialState":{"h":1,"t":6,"tokens":[5241,11168,3000,2000],"delegation":[4241,10168,2000,1000],"delegatorTokens":9999999989763}},{"ix":19,"action":{"kind":"Delegate","val":0,"amt":4810},"partialState":{"h":1,"t":6,"tokens":[10051,11168,3000,2000],"delegation":[9051,10168,2000,1000],"delegatorTokens":9999999984953}},{"ix":20,"action":{"kind":"Deliver","chain":"consumer","numPackets":3},"partialState":{"h":4,"t":24,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,false,true,true]}},{"ix":21,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":22,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":2,"t":12,"tokens":[10051,11168,3000,2000],"delegation":[9051,10168,2000,1000],"delegatorTokens":9999999984953,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":23,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":24,"action":{"kind":"Delegate","val":1,"amt":2335},"partialState":{"h":2,"t":12,"tokens":[10051,13503,3000,2000],"delegation":[9051,12503,2000,1000],"delegatorTokens":9999999982618}},{"ix":25,"action":{"kind":"Deliver","chain":"consumer","numPackets":5},"partialState":{"h":4,"t":24,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,false,true,true]}},{"ix":26,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":27,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":28,"action":{"kind":"Delegate","val":2,"amt":4485},"partialState":{"h":2,"t":12,"tokens":[10051,13503,7485,2000],"delegation":[9051,12503,6485,1000],"delegatorTokens":9999999978133}},{"ix":29,"action":{"kind":"Deliver","chain":"provider","numPackets":1},"partialState":{"h":2,"t":12,"tokens":[10051,13503,7485,2000],"delegation":[9051,12503,6485,1000],"delegatorTokens":9999999978133,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":30,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":3,"t":18,"tokens":[10051,13503,7485,2000],"delegation":[9051,12503,6485,1000],"delegatorTokens":9999999978133,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":31,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":32,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":4,"t":24,"tokens":[10051,13503,7485,2000],"delegation":[9051,12503,6485,1000],"delegatorTokens":9999999978133,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":33,"action":{"kind":"Delegate","val":2,"amt":4507},"partialState":{"h":4,"t":24,"tokens":[10051,13503,11992,2000],"delegation":[9051,12503,10992,1000],"delegatorTokens":9999999973626}},{"ix":34,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":5,"t":30,"tokens":[10051,13503,11992,2000],"delegation":[9051,12503,10992,1000],"delegatorTokens":9999999973626,"jailed":[null,null,null,null],"status":["unbonding","bonded","bonded","unbonded"]}},{"ix":35,"action":{"kind":"Delegate","val":2,"amt":3144},"partialState":{"h":5,"t":30,"tokens":[10051,13503,15136,2000],"delegation":[9051,12503,14136,1000],"delegatorTokens":9999999970482}},{"ix":36,"action":{"kind":"Undelegate","val":1,"amt":4730},"partialState":{"h":5,"t":30,"tokens":[10051,8773,15136,2000],"delegation":[9051,7773,14136,1000],"delegatorTokens":9999999970482}},{"ix":37,"action":{"kind":"Undelegate","val":2,"amt":2347},"partialState":{"h":5,"t":30,"tokens":[10051,8773,12789,2000],"delegation":[9051,7773,11789,1000],"delegatorTokens":9999999970482}},{"ix":38,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":5,"t":30,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,false,true,true]}},{"ix":39,"action":{"kind":"Undelegate","val":0,"amt":2488},"partialState":{"h":5,"t":30,"tokens":[7563,8773,12789,2000],"delegation":[6563,7773,11789,1000],"delegatorTokens":9999999970482}},{"ix":40,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":6,"t":36,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,false,true,true]}},{"ix":41,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":7,"t":42,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,false,true,true]}},{"ix":42,"action":{"kind":"Delegate","val":0,"amt":3162},"partialState":{"h":5,"t":30,"tokens":[10725,8773,12789,2000],"delegation":[9725,7773,11789,1000],"delegatorTokens":9999999967320}},{"ix":43,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":44,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":6,"t":36,"tokens":[10725,8773,12789,2000],"delegation":[9725,7773,11789,1000],"delegatorTokens":9999999967320,"jailed":[null,null,null,null],"status":["bonded","unbonding","bonded","unbonded"]}},{"ix":45,"action":{"kind":"Deliver","chain":"consumer","numPackets":1},"partialState":{"h":7,"t":42,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,false,true,true]}},{"ix":46,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":47,"action":{"kind":"Undelegate","val":1,"amt":1656},"partialState":{"h":6,"t":36,"tokens":[10725,7117,12789,2000],"delegation":[9725,6117,11789,1000],"delegatorTokens":9999999967320}},{"ix":48,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":49,"action":{"kind":"Undelegate","val":1,"amt":3643},"partialState":{"h":6,"t":36,"tokens":[10725,3474,12789,2000],"delegation":[9725,2474,11789,1000],"delegatorTokens":9999999967320}},{"ix":50,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":51,"action":{"kind":"Deliver","chain":"provider","numPackets":6},"partialState":{"h":6,"t":36,"tokens":[10725,3474,12789,2000],"delegation":[9725,2474,11789,1000],"delegatorTokens":9999999967320,"jailed":[null,null,null,null],"status":["bonded","unbonding","bonded","unbonded"]}},{"ix":52,"action":{"kind":"Undelegate","val":2,"amt":1841},"partialState":{"h":6,"t":36,"tokens":[10725,3474,10948,2000],"delegation":[9725,2474,9948,1000],"delegatorTokens":9999999967320}},{"ix":53,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":54,"action":{"kind":"Undelegate","val":1,"amt":4560},"partialState":{"h":6,"t":36,"tokens":[10725,3474,10948,2000],"delegation":[9725,2474,9948,1000],"delegatorTokens":9999999967320}},{"ix":55,"action":{"kind":"Delegate","val":2,"amt":4678},"partialState":{"h":6,"t":36,"tokens":[10725,3474,15626,2000],"delegation":[9725,2474,14626,1000],"delegatorTokens":9999999962642}},{"ix":56,"action":{"kind":"Undelegate","val":2,"amt":1747},"partialState":{"h":6,"t":36,"tokens":[10725,3474,13879,2000],"delegation":[9725,2474,12879,1000],"delegatorTokens":9999999962642}},{"ix":57,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":7,"t":42,"tokens":[10725,3474,13879,2000],"delegation":[9725,2474,12879,1000],"delegatorTokens":9999999962642,"jailed":[null,null,null,null],"status":["bonded","unbonding","bonded","unbonded"]}},{"ix":58,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":59,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":60,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":8,"t":48,"consumerPower":[10051,11168,null,null],"outstandingDowntime":[false,false,true,true]}},{"ix":61,"action":{"kind":"Deliver","chain":"consumer","numPackets":4},"partialState":{"h":8,"t":48,"consumerPower":[10051,11168,null,null],"outstandingDowntime":[false,false,true,true]}},{"ix":62,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":8,"t":48,"tokens":[10725,3474,13879,2000],"delegation":[9725,2474,12879,1000],"delegatorTokens":9999999962642,"jailed":[null,null,null,null],"status":["bonded","unbonding","bonded","unbonded"]}},{"ix":63,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":64,"action":{"kind":"Delegate","val":3,"amt":4340},"partialState":{"h":8,"t":48,"tokens":[10725,3474,13879,6340],"delegation":[9725,2474,12879,5340],"delegatorTokens":9999999958302}},{"ix":65,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":66,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":9,"t":54,"consumerPower":[10725,null,12789,null],"outstandingDowntime":[false,false,true,true]}},{"ix":67,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":10,"t":60,"consumerPower":[10725,null,12789,null],"outstandingDowntime":[false,false,true,true]}},{"ix":68,"action":{"kind":"Deliver","chain":"consumer","numPackets":2},"partialState":{"h":10,"t":60,"consumerPower":[10725,null,12789,null],"outstandingDowntime":[false,false,true,true]}},{"ix":69,"action":{"kind":"Delegate","val":3,"amt":2988},"partialState":{"h":8,"t":48,"tokens":[10725,3474,13879,9328],"delegation":[9725,2474,12879,8328],"delegatorTokens":9999999955314}},{"ix":70,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":11,"t":66,"consumerPower":[10725,null,13879,null],"outstandingDowntime":[false,false,true,true]}},{"ix":71,"action":{"kind":"Deliver","chain":"consumer","numPackets":1},"partialState":{"h":11,"t":66,"consumerPower":[10725,null,13879,null],"outstandingDowntime":[false,false,true,true]}},{"ix":72,"action":{"kind":"Undelegate","val":2,"amt":3696},"partialState":{"h":8,"t":48,"tokens":[10725,3474,10183,9328],"delegation":[9725,2474,9183,8328],"delegatorTokens":9999999955314}},{"ix":73,"action":{"kind":"Undelegate","val":2,"amt":1270},"partialState":{"h":8,"t":48,"tokens":[10725,3474,8913,9328],"delegation":[9725,2474,7913,8328],"delegatorTokens":9999999955314}},{"ix":74,"action":{"kind":"Deliver","chain":"consumer","numPackets":6},"partialState":{"h":11,"t":66,"consumerPower":[10725,null,13879,null],"outstandingDowntime":[false,false,true,true]}},{"ix":75,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":76,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":77,"action":{"kind":"Delegate","val":0,"amt":2731},"partialState":{"h":8,"t":48,"tokens":[13456,3474,8913,9328],"delegation":[12456,2474,7913,8328],"delegatorTokens":9999999952583}},{"ix":78,"action":{"kind":"Undelegate","val":3,"amt":2585},"partialState":{"h":8,"t":48,"tokens":[13456,3474,8913,6743],"delegation":[12456,2474,7913,5743],"delegatorTokens":9999999952583}},{"ix":79,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":12,"t":72,"consumerPower":[10725,null,13879,null],"outstandingDowntime":[false,false,true,true]}},{"ix":80,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":9,"t":54,"tokens":[13456,3474,8913,6743],"delegation":[12456,2474,7913,5743],"delegatorTokens":9999999952583,"jailed":[null,null,null,null],"status":["bonded","unbonding","bonded","unbonded"]}},{"ix":81,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":13,"t":78,"consumerPower":[10725,null,13879,null],"outstandingDowntime":[false,false,true,true]}},{"ix":82,"action":{"kind":"Delegate","val":1,"amt":3879},"partialState":{"h":9,"t":54,"tokens":[13456,7353,8913,6743],"delegation":[12456,6353,7913,5743],"delegatorTokens":9999999948704}},{"ix":83,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":84,"action":{"kind":"Deliver","chain":"consumer","numPackets":5},"partialState":{"h":13,"t":78,"consumerPower":[10725,null,13879,null],"outstandingDowntime":[false,false,true,true]}},{"ix":85,"action":{"kind":"Delegate","val":2,"amt":4778},"partialState":{"h":9,"t":54,"tokens":[13456,7353,13691,6743],"delegation":[12456,6353,12691,5743],"delegatorTokens":9999999943926}},{"ix":86,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":87,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":88,"action":{"kind":"Deliver","chain":"consumer","numPackets":3},"partialState":{"h":13,"t":78,"consumerPower":[10725,null,13879,null],"outstandingDowntime":[false,false,true,true]}},{"ix":89,"action":{"kind":"Undelegate","val":2,"amt":2761},"partialState":{"h":9,"t":54,"tokens":[13456,7353,10930,6743],"delegation":[12456,6353,9930,5743],"delegatorTokens":9999999943926}},{"ix":90,"action":{"kind":"Deliver","chain":"consumer","numPackets":4},"partialState":{"h":13,"t":78,"consumerPower":[10725,null,13879,null],"outstandingDowntime":[false,false,true,true]}},{"ix":91,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":92,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":14,"t":84,"consumerPower":[10725,null,13879,null],"outstandingDowntime":[false,false,true,true]}},{"ix":93,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":94,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":15,"t":90,"consumerPower":[10725,null,13879,null],"outstandingDowntime":[false,false,true,true]}},{"ix":95,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":96,"action":{"kind":"Deliver","chain":"provider","numPackets":5},"partialState":{"h":9,"t":54,"tokens":[13456,7353,10930,6743],"delegation":[12456,6353,9930,5743],"delegatorTokens":9999999943926,"jailed":[null,null,null,null],"status":["bonded","unbonding","bonded","unbonded"]}},{"ix":97,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":98,"action":{"kind":"Undelegate","val":1,"amt":3416},"partialState":{"h":9,"t":54,"tokens":[13456,3937,10930,6743],"delegation":[12456,2937,9930,5743],"delegatorTokens":9999999943926}},{"ix":99,"action":{"kind":"Delegate","val":1,"amt":3133},"partialState":{"h":9,"t":54,"tokens":[13456,7070,10930,6743],"delegation":[12456,6070,9930,5743],"delegatorTokens":9999999940793}},{"ix":100,"action":{"kind":"Undelegate","val":0,"amt":2060},"partialState":{"h":9,"t":54,"tokens":[11396,7070,10930,6743],"delegation":[10396,6070,9930,5743],"delegatorTokens":9999999940793}},{"ix":101,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":102,"action":{"kind":"Delegate","val":0,"amt":3064},"partialState":{"h":9,"t":54,"tokens":[14460,7070,10930,6743],"delegation":[13460,6070,9930,5743],"delegatorTokens":9999999937729}},{"ix":103,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":104,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":105,"action":{"kind":"Delegate","val":3,"amt":1811},"partialState":{"h":9,"t":54,"tokens":[14460,7070,10930,8554],"delegation":[13460,6070,9930,7554],"delegatorTokens":9999999935918}},{"ix":106,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":107,"action":{"kind":"Undelegate","val":0,"amt":1010},"partialState":{"h":9,"t":54,"tokens":[13450,7070,10930,8554],"delegation":[12450,6070,9930,7554],"delegatorTokens":9999999935918}},{"ix":108,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":109,"action":{"kind":"Delegate","val":2,"amt":4249},"partialState":{"h":9,"t":54,"tokens":[13450,7070,15179,8554],"delegation":[12450,6070,14179,7554],"delegatorTokens":9999999931669}},{"ix":110,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":10,"t":60,"tokens":[13450,7070,15179,8554],"delegation":[12450,6070,14179,7554],"delegatorTokens":9999999931669,"jailed":[null,null,null,null],"status":["bonded","unbonding","bonded","unbonded"]}},{"ix":111,"action":{"kind":"Undelegate","val":0,"amt":2368},"partialState":{"h":10,"t":60,"tokens":[11082,7070,15179,8554],"delegation":[10082,6070,14179,7554],"delegatorTokens":9999999931669}},{"ix":112,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":113,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":11,"t":66,"tokens":[11082,7070,15179,8554],"delegation":[10082,6070,14179,7554],"delegatorTokens":9999999931669,"jailed":[null,null,null,null],"status":["bonded","unbonding","bonded","unbonded"]}},{"ix":114,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":115,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":116,"action":{"kind":"Undelegate","val":2,"amt":4338},"partialState":{"h":11,"t":66,"tokens":[11082,7070,10841,8554],"delegation":[10082,6070,9841,7554],"delegatorTokens":9999999931669}},{"ix":117,"action":{"kind":"Deliver","chain":"provider","numPackets":5},"partialState":{"h":11,"t":66,"tokens":[11082,7070,10841,8554],"delegation":[10082,6070,9841,7554],"delegatorTokens":9999999931669,"jailed":[null,null,null,null],"status":["bonded","unbonding","bonded","unbonded"]}},{"ix":118,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":119,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":120,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":16,"t":96,"consumerPower":[10725,null,13879,null],"outstandingDowntime":[false,false,true,true]}},{"ix":121,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":12,"t":72,"tokens":[11082,7070,10841,8554],"delegation":[10082,6070,9841,7554],"delegatorTokens":9999999931669,"jailed":[null,null,null,null],"status":["bonded","unbonding","bonded","unbonded"]}},{"ix":122,"action":{"kind":"Delegate","val":0,"amt":4287},"partialState":{"h":12,"t":72,"tokens":[15369,7070,10841,8554],"delegation":[14369,6070,9841,7554],"delegatorTokens":9999999927382}},{"ix":123,"action":{"kind":"Undelegate","val":3,"amt":1151},"partialState":{"h":12,"t":72,"tokens":[15369,7070,10841,7403],"delegation":[14369,6070,9841,6403],"delegatorTokens":9999999927382}},{"ix":124,"action":{"kind":"Deliver","chain":"provider","numPackets":6},"partialState":{"h":12,"t":72,"tokens":[15369,7070,10841,7403],"delegation":[14369,6070,9841,6403],"delegatorTokens":9999999927382,"jailed":[null,null,null,null],"status":["bonded","unbonding","bonded","unbonded"]}},{"ix":125,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":13,"t":78,"tokens":[15369,7070,10841,7403],"delegation":[14369,6070,9841,6403],"delegatorTokens":9999999927382,"jailed":[null,null,null,null],"status":["bonded","unbonding","bonded","unbonded"]}},{"ix":126,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":127,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":17,"t":102,"consumerPower":[10725,null,13879,null],"outstandingDowntime":[false,false,true,true]}},{"ix":128,"action":{"kind":"Undelegate","val":3,"amt":2620},"partialState":{"h":13,"t":78,"tokens":[15369,7070,10841,4783],"delegation":[14369,6070,9841,3783],"delegatorTokens":9999999927382}},{"ix":129,"action":{"kind":"Undelegate","val":1,"amt":1937},"partialState":{"h":13,"t":78,"tokens":[15369,5133,10841,4783],"delegation":[14369,4133,9841,3783],"delegatorTokens":9999999927382}},{"ix":130,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":14,"t":84,"tokens":[15369,5133,10841,4783],"delegation":[14369,4133,9841,3783],"delegatorTokens":9999999927382,"jailed":[null,null,null,null],"status":["bonded","unbonding","bonded","unbonded"]}},{"ix":131,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":15,"t":90,"tokens":[15369,5133,10841,4783],"delegation":[14369,4133,9841,3783],"delegatorTokens":9999999927382,"jailed":[null,null,null,null],"status":["bonded","unbonding","bonded","unbonded"]}},{"ix":132,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":18,"t":108,"consumerPower":[10725,null,13879,null],"outstandingDowntime":[false,false,true,true]}},{"ix":133,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":134,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":19,"t":114,"consumerPower":[10725,null,13879,null],"outstandingDowntime":[false,false,true,true]}},{"ix":135,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":20,"t":120,"consumerPower":[10725,null,13879,null],"outstandingDowntime":[false,false,true,true]}},{"ix":136,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":16,"t":96,"tokens":[15369,5133,10841,4783],"delegation":[14369,4133,9841,3783],"delegatorTokens":9999999927382,"jailed":[null,null,null,null],"status":["bonded","unbonding","bonded","unbonded"]}},{"ix":137,"action":{"kind":"Delegate","val":0,"amt":1392},"partialState":{"h":16,"t":96,"tokens":[16761,5133,10841,4783],"delegation":[15761,4133,9841,3783],"delegatorTokens":9999999925990}},{"ix":138,"action":{"kind":"Deliver","chain":"provider","numPackets":3},"partialState":{"h":16,"t":96,"tokens":[16761,5133,10841,4783],"delegation":[15761,4133,9841,3783],"delegatorTokens":9999999925990,"jailed":[null,null,null,null],"status":["bonded","unbonding","bonded","unbonded"]}},{"ix":139,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":140,"action":{"kind":"Deliver","chain":"consumer","numPackets":5},"partialState":{"h":20,"t":120,"consumerPower":[10725,null,13879,null],"outstandingDowntime":[false,false,true,true]}},{"ix":141,"action":{"kind":"Delegate","val":2,"amt":3116},"partialState":{"h":16,"t":96,"tokens":[16761,5133,13957,4783],"delegation":[15761,4133,12957,3783],"delegatorTokens":9999999922874}},{"ix":142,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":21,"t":126,"consumerPower":[15369,null,10841,null],"outstandingDowntime":[false,false,true,true]}},{"ix":143,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":144,"action":{"kind":"Deliver","chain":"consumer","numPackets":6},"partialState":{"h":21,"t":126,"consumerPower":[15369,null,10841,null],"outstandingDowntime":[false,false,true,true]}},{"ix":145,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":146,"action":{"kind":"Delegate","val":1,"amt":2326},"partialState":{"h":16,"t":96,"tokens":[16761,7459,13957,4783],"delegation":[15761,6459,12957,3783],"delegatorTokens":9999999920548}},{"ix":147,"action":{"kind":"Deliver","chain":"consumer","numPackets":1},"partialState":{"h":21,"t":126,"consumerPower":[15369,null,10841,null],"outstandingDowntime":[false,false,true,true]}},{"ix":148,"action":{"kind":"Deliver","chain":"consumer","numPackets":4},"partialState":{"h":21,"t":126,"consumerPower":[15369,null,10841,null],"outstandingDowntime":[false,false,true,true]}},{"ix":149,"action":{"kind":"Deliver","chain":"consumer","numPackets":3},"partialState":{"h":21,"t":126,"consumerPower":[15369,null,10841,null],"outstandingDowntime":[false,false,true,true]}},{"ix":150,"action":{"kind":"Delegate","val":2,"amt":1577},"partialState":{"h":16,"t":96,"tokens":[16761,7459,15534,4783],"delegation":[15761,6459,14534,3783],"delegatorTokens":9999999918971}},{"ix":151,"action":{"kind":"Delegate","val":1,"amt":3025},"partialState":{"h":16,"t":96,"tokens":[16761,10484,15534,4783],"delegation":[15761,9484,14534,3783],"delegatorTokens":9999999915946}},{"ix":152,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":153,"action":{"kind":"Undelegate","val":3,"amt":2587},"partialState":{"h":16,"t":96,"tokens":[16761,10484,15534,2196],"delegation":[15761,9484,14534,1196],"delegatorTokens":9999999915946}},{"ix":154,"action":{"kind":"Deliver","chain":"provider","numPackets":6},"partialState":{"h":16,"t":96,"tokens":[16761,10484,15534,2196],"delegation":[15761,9484,14534,1196],"delegatorTokens":9999999915946,"jailed":[null,null,null,null],"status":["bonded","unbonding","bonded","unbonded"]}},{"ix":155,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":22,"t":132,"consumerPower":[15369,null,10841,null],"outstandingDowntime":[false,false,true,true]}},{"ix":156,"action":{"kind":"Deliver","chain":"consumer","numPackets":2},"partialState":{"h":22,"t":132,"consumerPower":[15369,null,10841,null],"outstandingDowntime":[false,false,true,true]}},{"ix":157,"action":{"kind":"Delegate","val":3,"amt":3632},"partialState":{"h":16,"t":96,"tokens":[16761,10484,15534,5828],"delegation":[15761,9484,14534,4828],"delegatorTokens":9999999912314}},{"ix":158,"action":{"kind":"Delegate","val":3,"amt":2459},"partialState":{"h":16,"t":96,"tokens":[16761,10484,15534,8287],"delegation":[15761,9484,14534,7287],"delegatorTokens":9999999909855}},{"ix":159,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":17,"t":102,"tokens":[16761,10484,15534,8287],"delegation":[15761,9484,14534,7287],"delegatorTokens":9999999912683,"jailed":[null,null,null,null],"status":["bonded","unbonding","bonded","unbonded"]}},{"ix":160,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":161,"action":{"kind":"Deliver","chain":"provider","numPackets":3},"partialState":{"h":17,"t":102,"tokens":[16761,10484,15534,8287],"delegation":[15761,9484,14534,7287],"delegatorTokens":9999999912683,"jailed":[null,null,null,null],"status":["bonded","unbonding","bonded","unbonded"]}},{"ix":162,"action":{"kind":"Undelegate","val":2,"amt":1823},"partialState":{"h":17,"t":102,"tokens":[16761,10484,13711,8287],"delegation":[15761,9484,12711,7287],"delegatorTokens":9999999912683}},{"ix":163,"action":{"kind":"Delegate","val":2,"amt":1322},"partialState":{"h":17,"t":102,"tokens":[16761,10484,15033,8287],"delegation":[15761,9484,14033,7287],"delegatorTokens":9999999911361}},{"ix":164,"action":{"kind":"Undelegate","val":3,"amt":2190},"partialState":{"h":17,"t":102,"tokens":[16761,10484,15033,6097],"delegation":[15761,9484,14033,5097],"delegatorTokens":9999999911361}},{"ix":165,"action":{"kind":"Deliver","chain":"provider","numPackets":6},"partialState":{"h":17,"t":102,"tokens":[16761,10484,15033,6097],"delegation":[15761,9484,14033,5097],"delegatorTokens":9999999911361,"jailed":[null,null,null,null],"status":["bonded","unbonding","bonded","unbonded"]}},{"ix":166,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":167,"action":{"kind":"Undelegate","val":1,"amt":1858},"partialState":{"h":17,"t":102,"tokens":[16761,8626,15033,6097],"delegation":[15761,7626,14033,5097],"delegatorTokens":9999999911361}},{"ix":168,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":169,"action":{"kind":"Undelegate","val":0,"amt":3389},"partialState":{"h":17,"t":102,"tokens":[13372,8626,15033,6097],"delegation":[12372,7626,14033,5097],"delegatorTokens":9999999911361}},{"ix":170,"action":{"kind":"Deliver","chain":"provider","numPackets":5},"partialState":{"h":17,"t":102,"tokens":[13372,8626,15033,6097],"delegation":[12372,7626,14033,5097],"delegatorTokens":9999999911361,"jailed":[null,null,null,null],"status":["bonded","unbonding","bonded","unbonded"]}},{"ix":171,"action":{"kind":"Delegate","val":0,"amt":4057},"partialState":{"h":17,"t":102,"tokens":[17429,8626,15033,6097],"delegation":[16429,7626,14033,5097],"delegatorTokens":9999999907304}},{"ix":172,"action":{"kind":"Deliver","chain":"consumer","numPackets":1},"partialState":{"h":22,"t":132,"consumerPower":[15369,null,10841,null],"outstandingDowntime":[false,false,true,true]}},{"ix":173,"action":{"kind":"Delegate","val":2,"amt":1281},"partialState":{"h":17,"t":102,"tokens":[17429,8626,16314,6097],"delegation":[16429,7626,15314,5097],"delegatorTokens":9999999906023}},{"ix":174,"action":{"kind":"Deliver","chain":"provider","numPackets":3},"partialState":{"h":17,"t":102,"tokens":[17429,8626,16314,6097],"delegation":[16429,7626,15314,5097],"delegatorTokens":9999999906023,"jailed":[null,null,null,null],"status":["bonded","unbonding","bonded","unbonded"]}},{"ix":175,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":18,"t":108,"tokens":[17429,8626,16314,6097],"delegation":[16429,7626,15314,5097],"delegatorTokens":9999999915588,"jailed":[null,null,null,null],"status":["bonded","unbonded","bonded","unbonded"]}},{"ix":176,"action":{"kind":"Deliver","chain":"consumer","numPackets":5},"partialState":{"h":22,"t":132,"consumerPower":[15369,null,10841,null],"outstandingDowntime":[false,false,true,true]}},{"ix":177,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":178,"action":{"kind":"Deliver","chain":"provider","numPackets":2},"partialState":{"h":18,"t":108,"tokens":[17429,8626,16314,6097],"delegation":[16429,7626,15314,5097],"delegatorTokens":9999999915588,"jailed":[null,null,null,null],"status":["bonded","unbonded","bonded","unbonded"]}},{"ix":179,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":180,"action":{"kind":"Delegate","val":3,"amt":4202},"partialState":{"h":18,"t":108,"tokens":[17429,8626,16314,10299],"delegation":[16429,7626,15314,9299],"delegatorTokens":9999999911386}},{"ix":181,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":182,"action":{"kind":"Undelegate","val":3,"amt":1909},"partialState":{"h":18,"t":108,"tokens":[17429,8626,16314,8390],"delegation":[16429,7626,15314,7390],"delegatorTokens":9999999911386}},{"ix":183,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":23,"t":138,"consumerPower":[16761,null,15534,null],"outstandingDowntime":[false,false,true,true]}},{"ix":184,"action":{"kind":"Deliver","chain":"provider","numPackets":1},"partialState":{"h":18,"t":108,"tokens":[17429,8626,16314,8390],"delegation":[16429,7626,15314,7390],"delegatorTokens":9999999911386,"jailed":[null,null,null,null],"status":["bonded","unbonded","bonded","unbonded"]}},{"ix":185,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":24,"t":144,"consumerPower":[16761,null,15534,null],"outstandingDowntime":[false,false,true,true]}},{"ix":186,"action":{"kind":"Delegate","val":3,"amt":3248},"partialState":{"h":18,"t":108,"tokens":[17429,8626,16314,11638],"delegation":[16429,7626,15314,10638],"delegatorTokens":9999999908138}},{"ix":187,"action":{"kind":"Undelegate","val":0,"amt":2544},"partialState":{"h":18,"t":108,"tokens":[14885,8626,16314,11638],"delegation":[13885,7626,15314,10638],"delegatorTokens":9999999908138}},{"ix":188,"action":{"kind":"Undelegate","val":1,"amt":2626},"partialState":{"h":18,"t":108,"tokens":[14885,6000,16314,11638],"delegation":[13885,5000,15314,10638],"delegatorTokens":9999999908138}},{"ix":189,"action":{"kind":"Delegate","val":3,"amt":1288},"partialState":{"h":18,"t":108,"tokens":[14885,6000,16314,12926],"delegation":[13885,5000,15314,11926],"delegatorTokens":9999999906850}},{"ix":190,"action":{"kind":"Undelegate","val":2,"amt":2015},"partialState":{"h":18,"t":108,"tokens":[14885,6000,14299,12926],"delegation":[13885,5000,13299,11926],"delegatorTokens":9999999906850}},{"ix":191,"action":{"kind":"Delegate","val":3,"amt":1508},"partialState":{"h":18,"t":108,"tokens":[14885,6000,14299,14434],"delegation":[13885,5000,13299,13434],"delegatorTokens":9999999905342}},{"ix":192,"action":{"kind":"Delegate","val":3,"amt":3844},"partialState":{"h":18,"t":108,"tokens":[14885,6000,14299,18278],"delegation":[13885,5000,13299,17278],"delegatorTokens":9999999901498}},{"ix":193,"action":{"kind":"Deliver","chain":"consumer","numPackets":1},"partialState":{"h":24,"t":144,"consumerPower":[16761,null,15534,null],"outstandingDowntime":[false,false,true,true]}},{"ix":194,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":195,"action":{"kind":"Delegate","val":2,"amt":4066},"partialState":{"h":18,"t":108,"tokens":[14885,6000,18365,18278],"delegation":[13885,5000,17365,17278],"delegatorTokens":9999999897432}},{"ix":196,"action":{"kind":"Delegate","val":0,"amt":1263},"partialState":{"h":18,"t":108,"tokens":[16148,6000,18365,18278],"delegation":[15148,5000,17365,17278],"delegatorTokens":9999999896169}},{"ix":197,"action":{"kind":"Deliver","chain":"consumer","numPackets":6},"partialState":{"h":24,"t":144,"consumerPower":[16761,null,15534,null],"outstandingDowntime":[false,false,true,true]}},{"ix":198,"action":{"kind":"Undelegate","val":0,"amt":2826},"partialState":{"h":18,"t":108,"tokens":[13322,6000,18365,18278],"delegation":[12322,5000,17365,17278],"delegatorTokens":9999999896169}},{"ix":199,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}}],"events":["send_downtime_slash_request","insufficient_shares","insufficient_shares","insufficient_shares","send_downtime_slash_request","send_double_sign_slash_request","insufficient_shares","insufficient_shares","send_vsc_without_downtime_ack","receive_slash_request_unbonded","send_vsc_without_downtime_ack","more_than_one_third_val_power_change","send_vsc_without_downtime_ack","more_than_one_third_val_power_change","rebond_unval","send_vsc_without_downtime_ack","receive_double_sign_slash_request","insufficient_shares","receive_slash_request_unbonded","send_vsc_without_downtime_ack","consumer_update_val","consumer_update_val","consumer_del_val","consumer_update_val","consumer_add_val","consumer_update_val","send_vsc_without_downtime_ack","send_vsc_without_downtime_ack","send_vsc_without_downtime_ack","send_vsc_without_downtime_ack","send_vsc_without_downtime_ack","consumer_send_maturation","some_undels_expired_but_not_completed","send_vsc_not_because_change","send_vsc_without_downtime_ack","consumer_send_maturation","consumer_send_maturation","consumer_send_maturation","consumer_send_maturation","consumer_update_val","consumer_update_val","complete_undel_immediate","set_undel_hold_false","set_undel_hold_false","set_undel_hold_false","set_unval_hold_false","set_undel_hold_false","set_undel_hold_false","set_undel_hold_false","set_undel_hold_false","send_vsc_without_downtime_ack","complete_unval_in_endblock","complete_undel_in_endblock","send_vsc_without_downtime_ack","consumer_update_val","consumer_update_val"]},{"meta":{"commit":"7ffd0c04e4205cbc9caf212abfe6c59ee43153bf"},"constants":{"P":"provider","C":"consumer","UNBONDING_SECONDS_P":70,"UNBONDING_SECONDS_C":50,"TRUSTING_SECONDS":49,"NUM_VALIDATORS":4,"MAX_VALIDATORS":2,"SLASH_DOUBLESIGN":0,"SLASH_DOWNTIME":0,"JAIL_SECONDS":999999999999999,"BLOCK_SECONDS":6,"INITIAL_DELEGATOR_TOKENS":10000000000000,"DELEGATE_AMT_MIN":1000,"DELEGATE_AMT_MAX":5000,"UNDELEGATE_AMT_MIN":1000,"UNDELEGATE_AMT_MAX":5000,"ISDOWNTIME_PROBABILITY":0.5,"MAX_NUM_PACKETS_FOR_DELIVER":6},"actions":[{"ix":0,"action":{"kind":"Delegate","val":1,"amt":2717},"partialState":{"h":1,"t":6,"tokens":[5000,6717,3000,2000],"delegation":[4000,5717,2000,1000],"delegatorTokens":9999999997283}},{"ix":1,"action":{"kind":"Deliver","chain":"consumer","numPackets":6},"partialState":{"h":1,"t":6,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":2,"action":{"kind":"Undelegate","val":3,"amt":2838},"partialState":{"h":1,"t":6,"tokens":[5000,6717,3000,2000],"delegation":[4000,5717,2000,1000],"delegatorTokens":9999999997283}},{"ix":3,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":4,"action":{"kind":"Undelegate","val":0,"amt":4703},"partialState":{"h":1,"t":6,"tokens":[5000,6717,3000,2000],"delegation":[4000,5717,2000,1000],"delegatorTokens":9999999997283}},{"ix":5,"action":{"kind":"ConsumerSlash","val":2,"infractionHeight":0,"isDowntime":true},"partialState":{"h":1,"t":6,"outstandingDowntime":[false,false,true,false]}},{"ix":6,"action":{"kind":"ConsumerSlash","val":3,"infractionHeight":0,"isDowntime":true},"partialState":{"h":1,"t":6,"outstandingDowntime":[false,false,true,true]}},{"ix":7,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":2,"t":12,"tokens":[5000,6717,3000,2000],"delegation":[4000,5717,2000,1000],"delegatorTokens":9999999997283,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":8,"action":{"kind":"ConsumerSlash","val":1,"infractionHeight":0,"isDowntime":false},"partialState":{"h":1,"t":6,"outstandingDowntime":[false,false,true,true]}},{"ix":9,"action":{"kind":"Undelegate","val":2,"amt":4744},"partialState":{"h":2,"t":12,"tokens":[5000,6717,3000,2000],"delegation":[4000,5717,2000,1000],"delegatorTokens":9999999997283}},{"ix":10,"action":{"kind":"Undelegate","val":3,"amt":3066},"partialState":{"h":2,"t":12,"tokens":[5000,6717,3000,2000],"delegation":[4000,5717,2000,1000],"delegatorTokens":9999999997283}},{"ix":11,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":3,"t":18,"tokens":[5000,6717,3000,2000],"delegation":[4000,5717,2000,1000],"delegatorTokens":9999999997283,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":12,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":2,"t":12,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,false,true,true]}},{"ix":13,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":3,"t":18,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,false,true,true]}},{"ix":14,"action":{"kind":"Deliver","chain":"provider","numPackets":4},"partialState":{"h":3,"t":18,"tokens":[5000,6717,3000,2000],"delegation":[4000,5717,2000,1000],"delegatorTokens":9999999997283,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":15,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":4,"t":24,"tokens":[5000,6717,3000,2000],"delegation":[4000,5717,2000,1000],"delegatorTokens":9999999997283,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":16,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":5,"t":30,"tokens":[5000,6717,3000,2000],"delegation":[4000,5717,2000,1000],"delegatorTokens":9999999997283,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":17,"action":{"kind":"Deliver","chain":"provider","numPackets":5},"partialState":{"h":5,"t":30,"tokens":[5000,6717,3000,2000],"delegation":[4000,5717,2000,1000],"delegatorTokens":9999999997283,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":18,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":19,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":20,"action":{"kind":"Deliver","chain":"provider","numPackets":5},"partialState":{"h":5,"t":30,"tokens":[5000,6717,3000,2000],"delegation":[4000,5717,2000,1000],"delegatorTokens":9999999997283,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":21,"action":{"kind":"Undelegate","val":1,"amt":1993},"partialState":{"h":5,"t":30,"tokens":[5000,4724,3000,2000],"delegation":[4000,3724,2000,1000],"delegatorTokens":9999999997283}},{"ix":22,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":4,"t":24,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,false,true,true]}},{"ix":23,"action":{"kind":"Undelegate","val":1,"amt":1569},"partialState":{"h":5,"t":30,"tokens":[5000,3155,3000,2000],"delegation":[4000,2155,2000,1000],"delegatorTokens":9999999997283}},{"ix":24,"action":{"kind":"Undelegate","val":2,"amt":4772},"partialState":{"h":5,"t":30,"tokens":[5000,3155,3000,2000],"delegation":[4000,2155,2000,1000],"delegatorTokens":9999999997283}},{"ix":25,"action":{"kind":"Undelegate","val":0,"amt":3817},"partialState":{"h":5,"t":30,"tokens":[1183,3155,3000,2000],"delegation":[183,2155,2000,1000],"delegatorTokens":9999999997283}},{"ix":26,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":6,"t":36,"tokens":[1183,3155,3000,2000],"delegation":[183,2155,2000,1000],"delegatorTokens":9999999997283,"jailed":[null,null,null,null],"status":["unbonding","bonded","bonded","unbonded"]}},{"ix":27,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":28,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":29,"action":{"kind":"Deliver","chain":"consumer","numPackets":3},"partialState":{"h":4,"t":24,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,false,true,true]}},{"ix":30,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":7,"t":42,"tokens":[1183,3155,3000,2000],"delegation":[183,2155,2000,1000],"delegatorTokens":9999999997283,"jailed":[null,null,null,null],"status":["unbonding","bonded","bonded","unbonded"]}},{"ix":31,"action":{"kind":"Deliver","chain":"provider","numPackets":4},"partialState":{"h":7,"t":42,"tokens":[1183,3155,3000,2000],"delegation":[183,2155,2000,1000],"delegatorTokens":9999999997283,"jailed":[null,null,null,null],"status":["unbonding","bonded","bonded","unbonded"]}},{"ix":32,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":33,"action":{"kind":"Deliver","chain":"consumer","numPackets":6},"partialState":{"h":4,"t":24,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,false,true,true]}},{"ix":34,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":35,"action":{"kind":"Deliver","chain":"provider","numPackets":3},"partialState":{"h":7,"t":42,"tokens":[1183,3155,3000,2000],"delegation":[183,2155,2000,1000],"delegatorTokens":9999999997283,"jailed":[null,null,null,null],"status":["unbonding","bonded","bonded","unbonded"]}},{"ix":36,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":8,"t":48,"tokens":[1183,3155,3000,2000],"delegation":[183,2155,2000,1000],"delegatorTokens":9999999997283,"jailed":[null,null,null,null],"status":["unbonding","bonded","bonded","unbonded"]}},{"ix":37,"action":{"kind":"Delegate","val":3,"amt":2488},"partialState":{"h":8,"t":48,"tokens":[1183,3155,3000,4488],"delegation":[183,2155,2000,3488],"delegatorTokens":9999999994795}},{"ix":38,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":5,"t":30,"consumerPower":[null,3155,3000,null],"outstandingDowntime":[false,false,true,true]}},{"ix":39,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":6,"t":36,"consumerPower":[null,3155,3000,null],"outstandingDowntime":[false,false,true,true]}},{"ix":40,"action":{"kind":"Undelegate","val":2,"amt":1202},"partialState":{"h":8,"t":48,"tokens":[1183,3155,1798,4488],"delegation":[183,2155,798,3488],"delegatorTokens":9999999994795}},{"ix":41,"action":{"kind":"Delegate","val":3,"amt":4893},"partialState":{"h":8,"t":48,"tokens":[1183,3155,1798,9381],"delegation":[183,2155,798,8381],"delegatorTokens":9999999989902}},{"ix":42,"action":{"kind":"Delegate","val":2,"amt":3956},"partialState":{"h":8,"t":48,"tokens":[1183,3155,5754,9381],"delegation":[183,2155,4754,8381],"delegatorTokens":9999999985946}},{"ix":43,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":9,"t":54,"tokens":[1183,3155,5754,9381],"delegation":[183,2155,4754,8381],"delegatorTokens":9999999985946,"jailed":[null,null,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":44,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":45,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":46,"action":{"kind":"Delegate","val":0,"amt":3442},"partialState":{"h":9,"t":54,"tokens":[4625,3155,5754,9381],"delegation":[3625,2155,4754,8381],"delegatorTokens":9999999982504}},{"ix":47,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":48,"action":{"kind":"Delegate","val":2,"amt":3017},"partialState":{"h":9,"t":54,"tokens":[4625,3155,8771,9381],"delegation":[3625,2155,7771,8381],"delegatorTokens":9999999979487}},{"ix":49,"action":{"kind":"Deliver","chain":"provider","numPackets":1},"partialState":{"h":9,"t":54,"tokens":[4625,3155,8771,9381],"delegation":[3625,2155,7771,8381],"delegatorTokens":9999999979487,"jailed":[null,null,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":50,"action":{"kind":"Delegate","val":2,"amt":1867},"partialState":{"h":9,"t":54,"tokens":[4625,3155,10638,9381],"delegation":[3625,2155,9638,8381],"delegatorTokens":9999999977620}},{"ix":51,"action":{"kind":"Undelegate","val":1,"amt":2319},"partialState":{"h":9,"t":54,"tokens":[4625,3155,10638,9381],"delegation":[3625,2155,9638,8381],"delegatorTokens":9999999977620}},{"ix":52,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":53,"action":{"kind":"Delegate","val":1,"amt":3621},"partialState":{"h":9,"t":54,"tokens":[4625,6776,10638,9381],"delegation":[3625,5776,9638,8381],"delegatorTokens":9999999973999}},{"ix":54,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":55,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":7,"t":42,"consumerPower":[null,3155,3000,null],"outstandingDowntime":[false,false,true,true]}},{"ix":56,"action":{"kind":"Undelegate","val":0,"amt":1977},"partialState":{"h":9,"t":54,"tokens":[2648,6776,10638,9381],"delegation":[1648,5776,9638,8381],"delegatorTokens":9999999973999}},{"ix":57,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":8,"t":48,"consumerPower":[null,3155,3000,null],"outstandingDowntime":[false,false,true,true]}},{"ix":58,"action":{"kind":"Undelegate","val":3,"amt":4264},"partialState":{"h":9,"t":54,"tokens":[2648,6776,10638,5117],"delegation":[1648,5776,9638,4117],"delegatorTokens":9999999973999}},{"ix":59,"action":{"kind":"Undelegate","val":1,"amt":3843},"partialState":{"h":9,"t":54,"tokens":[2648,2933,10638,5117],"delegation":[1648,1933,9638,4117],"delegatorTokens":9999999973999}},{"ix":60,"action":{"kind":"Deliver","chain":"provider","numPackets":6},"partialState":{"h":9,"t":54,"tokens":[2648,2933,10638,5117],"delegation":[1648,1933,9638,4117],"delegatorTokens":9999999973999,"jailed":[null,null,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":61,"action":{"kind":"Delegate","val":3,"amt":3423},"partialState":{"h":9,"t":54,"tokens":[2648,2933,10638,8540],"delegation":[1648,1933,9638,7540],"delegatorTokens":9999999970576}},{"ix":62,"action":{"kind":"Undelegate","val":3,"amt":1372},"partialState":{"h":9,"t":54,"tokens":[2648,2933,10638,7168],"delegation":[1648,1933,9638,6168],"delegatorTokens":9999999970576}},{"ix":63,"action":{"kind":"Delegate","val":1,"amt":4327},"partialState":{"h":9,"t":54,"tokens":[2648,7260,10638,7168],"delegation":[1648,6260,9638,6168],"delegatorTokens":9999999966249}},{"ix":64,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":10,"t":60,"tokens":[2648,7260,10638,7168],"delegation":[1648,6260,9638,6168],"delegatorTokens":9999999966249,"jailed":[null,null,null,null],"status":["unbonding","bonded","bonded","unbonding"]}},{"ix":65,"action":{"kind":"Undelegate","val":3,"amt":2807},"partialState":{"h":10,"t":60,"tokens":[2648,7260,10638,4361],"delegation":[1648,6260,9638,3361],"delegatorTokens":9999999966249}},{"ix":66,"action":{"kind":"Undelegate","val":3,"amt":3576},"partialState":{"h":10,"t":60,"tokens":[2648,7260,10638,4361],"delegation":[1648,6260,9638,3361],"delegatorTokens":9999999966249}},{"ix":67,"action":{"kind":"Delegate","val":2,"amt":1552},"partialState":{"h":10,"t":60,"tokens":[2648,7260,12190,4361],"delegation":[1648,6260,11190,3361],"delegatorTokens":9999999964697}},{"ix":68,"action":{"kind":"Undelegate","val":0,"amt":1847},"partialState":{"h":10,"t":60,"tokens":[2648,7260,12190,4361],"delegation":[1648,6260,11190,3361],"delegatorTokens":9999999964697}},{"ix":69,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":70,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":11,"t":66,"tokens":[2648,7260,12190,4361],"delegation":[1648,6260,11190,3361],"delegatorTokens":9999999964697,"jailed":[null,null,null,null],"status":["unbonding","bonded","bonded","unbonding"]}},{"ix":71,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":12,"t":72,"tokens":[2648,7260,12190,4361],"delegation":[1648,6260,11190,3361],"delegatorTokens":9999999964697,"jailed":[null,null,null,null],"status":["unbonding","bonded","bonded","unbonding"]}},{"ix":72,"action":{"kind":"Undelegate","val":3,"amt":2314},"partialState":{"h":12,"t":72,"tokens":[2648,7260,12190,2047],"delegation":[1648,6260,11190,1047],"delegatorTokens":9999999964697}},{"ix":73,"action":{"kind":"Undelegate","val":2,"amt":1605},"partialState":{"h":12,"t":72,"tokens":[2648,7260,10585,2047],"delegation":[1648,6260,9585,1047],"delegatorTokens":9999999964697}},{"ix":74,"action":{"kind":"Delegate","val":1,"amt":2934},"partialState":{"h":12,"t":72,"tokens":[2648,10194,10585,2047],"delegation":[1648,9194,9585,1047],"delegatorTokens":9999999961763}},{"ix":75,"action":{"kind":"Deliver","chain":"consumer","numPackets":2},"partialState":{"h":8,"t":48,"consumerPower":[null,3155,3000,null],"outstandingDowntime":[false,false,true,true]}},{"ix":76,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":77,"action":{"kind":"Undelegate","val":1,"amt":2423},"partialState":{"h":12,"t":72,"tokens":[2648,7771,10585,2047],"delegation":[1648,6771,9585,1047],"delegatorTokens":9999999961763}},{"ix":78,"action":{"kind":"Undelegate","val":0,"amt":3082},"partialState":{"h":12,"t":72,"tokens":[2648,7771,10585,2047],"delegation":[1648,6771,9585,1047],"delegatorTokens":9999999961763}},{"ix":79,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":80,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":9,"t":54,"consumerPower":[null,7260,10638,null],"outstandingDowntime":[false,false,true,true]}},{"ix":81,"action":{"kind":"Deliver","chain":"consumer","numPackets":1},"partialState":{"h":9,"t":54,"consumerPower":[null,7260,10638,null],"outstandingDowntime":[false,false,true,true]}},{"ix":82,"action":{"kind":"Deliver","chain":"provider","numPackets":2},"partialState":{"h":12,"t":72,"tokens":[2648,7771,10585,2047],"delegation":[1648,6771,9585,1047],"delegatorTokens":9999999961763,"jailed":[null,null,null,null],"status":["unbonding","bonded","bonded","unbonding"]}},{"ix":83,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":84,"action":{"kind":"Undelegate","val":2,"amt":1573},"partialState":{"h":12,"t":72,"tokens":[2648,7771,9012,2047],"delegation":[1648,6771,8012,1047],"delegatorTokens":9999999961763}},{"ix":85,"action":{"kind":"Deliver","chain":"consumer","numPackets":5},"partialState":{"h":9,"t":54,"consumerPower":[null,7260,10638,null],"outstandingDowntime":[false,false,true,true]}},{"ix":86,"action":{"kind":"Delegate","val":2,"amt":1368},"partialState":{"h":12,"t":72,"tokens":[2648,7771,10380,2047],"delegation":[1648,6771,9380,1047],"delegatorTokens":9999999960395}},{"ix":87,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":10,"t":60,"consumerPower":[null,7260,12190,null],"outstandingDowntime":[false,false,true,true]}},{"ix":88,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":89,"action":{"kind":"Delegate","val":1,"amt":1784},"partialState":{"h":12,"t":72,"tokens":[2648,9555,10380,2047],"delegation":[1648,8555,9380,1047],"delegatorTokens":9999999958611}},{"ix":90,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":13,"t":78,"tokens":[2648,9555,10380,2047],"delegation":[1648,8555,9380,1047],"delegatorTokens":9999999958611,"jailed":[null,null,null,null],"status":["unbonding","bonded","bonded","unbonding"]}},{"ix":91,"action":{"kind":"Deliver","chain":"provider","numPackets":4},"partialState":{"h":13,"t":78,"tokens":[2648,9555,10380,2047],"delegation":[1648,8555,9380,1047],"delegatorTokens":9999999958611,"jailed":[null,null,null,null],"status":["unbonding","bonded","bonded","unbonding"]}},{"ix":92,"action":{"kind":"Deliver","chain":"consumer","numPackets":3},"partialState":{"h":10,"t":60,"consumerPower":[null,7260,12190,null],"outstandingDowntime":[false,false,true,true]}},{"ix":93,"action":{"kind":"Deliver","chain":"provider","numPackets":2},"partialState":{"h":13,"t":78,"tokens":[2648,9555,10380,2047],"delegation":[1648,8555,9380,1047],"delegatorTokens":9999999958611,"jailed":[null,null,null,null],"status":["unbonding","bonded","bonded","unbonding"]}},{"ix":94,"action":{"kind":"Delegate","val":3,"amt":4725},"partialState":{"h":13,"t":78,"tokens":[2648,9555,10380,6772],"delegation":[1648,8555,9380,5772],"delegatorTokens":9999999953886}},{"ix":95,"action":{"kind":"Delegate","val":3,"amt":1757},"partialState":{"h":13,"t":78,"tokens":[2648,9555,10380,8529],"delegation":[1648,8555,9380,7529],"delegatorTokens":9999999952129}},{"ix":96,"action":{"kind":"Deliver","chain":"provider","numPackets":4},"partialState":{"h":13,"t":78,"tokens":[2648,9555,10380,8529],"delegation":[1648,8555,9380,7529],"delegatorTokens":9999999952129,"jailed":[null,null,null,null],"status":["unbonding","bonded","bonded","unbonding"]}},{"ix":97,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":14,"t":84,"tokens":[2648,9555,10380,8529],"delegation":[1648,8555,9380,7529],"delegatorTokens":9999999952129,"jailed":[null,null,null,null],"status":["unbonding","bonded","bonded","unbonding"]}},{"ix":98,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":11,"t":66,"consumerPower":[null,7260,12190,null],"outstandingDowntime":[false,false,true,true]}},{"ix":99,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":12,"t":72,"consumerPower":[null,7260,12190,null],"outstandingDowntime":[false,false,true,true]}},{"ix":100,"action":{"kind":"Delegate","val":3,"amt":2656},"partialState":{"h":14,"t":84,"tokens":[2648,9555,10380,11185],"delegation":[1648,8555,9380,10185],"delegatorTokens":9999999949473}},{"ix":101,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":13,"t":78,"consumerPower":[null,7260,12190,null],"outstandingDowntime":[false,false,true,true]}},{"ix":102,"action":{"kind":"Delegate","val":0,"amt":2849},"partialState":{"h":14,"t":84,"tokens":[5497,9555,10380,11185],"delegation":[4497,8555,9380,10185],"delegatorTokens":9999999946624}},{"ix":103,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":104,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":15,"t":90,"tokens":[5497,9555,10380,11185],"delegation":[4497,8555,9380,10185],"delegatorTokens":9999999946624,"jailed":[null,null,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":105,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":106,"action":{"kind":"Delegate","val":2,"amt":1467},"partialState":{"h":15,"t":90,"tokens":[5497,9555,11847,11185],"delegation":[4497,8555,10847,10185],"delegatorTokens":9999999945157}},{"ix":107,"action":{"kind":"Undelegate","val":0,"amt":4998},"partialState":{"h":15,"t":90,"tokens":[5497,9555,11847,11185],"delegation":[4497,8555,10847,10185],"delegatorTokens":9999999945157}},{"ix":108,"action":{"kind":"Delegate","val":1,"amt":3516},"partialState":{"h":15,"t":90,"tokens":[5497,13071,11847,11185],"delegation":[4497,12071,10847,10185],"delegatorTokens":9999999941641}},{"ix":109,"action":{"kind":"Undelegate","val":2,"amt":1269},"partialState":{"h":15,"t":90,"tokens":[5497,13071,10578,11185],"delegation":[4497,12071,9578,10185],"delegatorTokens":9999999941641}},{"ix":110,"action":{"kind":"Delegate","val":2,"amt":2991},"partialState":{"h":15,"t":90,"tokens":[5497,13071,13569,11185],"delegation":[4497,12071,12569,10185],"delegatorTokens":9999999938650}},{"ix":111,"action":{"kind":"Undelegate","val":2,"amt":4968},"partialState":{"h":15,"t":90,"tokens":[5497,13071,8601,11185],"delegation":[4497,12071,7601,10185],"delegatorTokens":9999999938650}},{"ix":112,"action":{"kind":"Deliver","chain":"provider","numPackets":1},"partialState":{"h":15,"t":90,"tokens":[5497,13071,8601,11185],"delegation":[4497,12071,7601,10185],"delegatorTokens":9999999938650,"jailed":[null,null,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":113,"action":{"kind":"Delegate","val":3,"amt":2107},"partialState":{"h":15,"t":90,"tokens":[5497,13071,8601,13292],"delegation":[4497,12071,7601,12292],"delegatorTokens":9999999936543}},{"ix":114,"action":{"kind":"Deliver","chain":"consumer","numPackets":6},"partialState":{"h":13,"t":78,"consumerPower":[null,7260,12190,null],"outstandingDowntime":[false,false,true,true]}},{"ix":115,"action":{"kind":"Deliver","chain":"consumer","numPackets":5},"partialState":{"h":13,"t":78,"consumerPower":[null,7260,12190,null],"outstandingDowntime":[false,false,true,true]}},{"ix":116,"action":{"kind":"Deliver","chain":"consumer","numPackets":4},"partialState":{"h":13,"t":78,"consumerPower":[null,7260,12190,null],"outstandingDowntime":[false,false,true,true]}},{"ix":117,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":118,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":119,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":120,"action":{"kind":"Deliver","chain":"consumer","numPackets":4},"partialState":{"h":13,"t":78,"consumerPower":[null,7260,12190,null],"outstandingDowntime":[false,false,true,true]}},{"ix":121,"action":{"kind":"Deliver","chain":"consumer","numPackets":2},"partialState":{"h":13,"t":78,"consumerPower":[null,7260,12190,null],"outstandingDowntime":[false,false,true,true]}},{"ix":122,"action":{"kind":"Undelegate","val":3,"amt":3150},"partialState":{"h":15,"t":90,"tokens":[5497,13071,8601,10142],"delegation":[4497,12071,7601,9142],"delegatorTokens":9999999936543}},{"ix":123,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":124,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":14,"t":84,"consumerPower":[null,9555,10380,null],"outstandingDowntime":[false,false,true,true]}},{"ix":125,"action":{"kind":"Delegate","val":1,"amt":1114},"partialState":{"h":15,"t":90,"tokens":[5497,14185,8601,10142],"delegation":[4497,13185,7601,9142],"delegatorTokens":9999999935429}},{"ix":126,"action":{"kind":"Delegate","val":0,"amt":3368},"partialState":{"h":15,"t":90,"tokens":[8865,14185,8601,10142],"delegation":[7865,13185,7601,9142],"delegatorTokens":9999999932061}},{"ix":127,"action":{"kind":"Delegate","val":3,"amt":3663},"partialState":{"h":15,"t":90,"tokens":[8865,14185,8601,13805],"delegation":[7865,13185,7601,12805],"delegatorTokens":9999999928398}},{"ix":128,"action":{"kind":"Deliver","chain":"consumer","numPackets":1},"partialState":{"h":14,"t":84,"consumerPower":[null,9555,10380,null],"outstandingDowntime":[false,false,true,true]}},{"ix":129,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":130,"action":{"kind":"Undelegate","val":1,"amt":1104},"partialState":{"h":15,"t":90,"tokens":[8865,13081,8601,13805],"delegation":[7865,12081,7601,12805],"delegatorTokens":9999999928398}},{"ix":131,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":132,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":15,"t":90,"consumerPower":[null,9555,10380,null],"outstandingDowntime":[false,false,true,true]}},{"ix":133,"action":{"kind":"Delegate","val":1,"amt":1578},"partialState":{"h":15,"t":90,"tokens":[8865,14659,8601,13805],"delegation":[7865,13659,7601,12805],"delegatorTokens":9999999926820}},{"ix":134,"action":{"kind":"Deliver","chain":"consumer","numPackets":1},"partialState":{"h":15,"t":90,"consumerPower":[null,9555,10380,null],"outstandingDowntime":[false,false,true,true]}},{"ix":135,"action":{"kind":"Delegate","val":1,"amt":3897},"partialState":{"h":15,"t":90,"tokens":[8865,18556,8601,13805],"delegation":[7865,17556,7601,12805],"delegatorTokens":9999999922923}},{"ix":136,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":137,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":16,"t":96,"tokens":[8865,18556,8601,13805],"delegation":[7865,17556,7601,12805],"delegatorTokens":9999999922923,"jailed":[null,null,null,null],"status":["unbonding","bonded","unbonding","bonded"]}},{"ix":138,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":139,"action":{"kind":"Deliver","chain":"provider","numPackets":2},"partialState":{"h":16,"t":96,"tokens":[8865,18556,8601,13805],"delegation":[7865,17556,7601,12805],"delegatorTokens":9999999922923,"jailed":[null,null,null,null],"status":["unbonding","bonded","unbonding","bonded"]}},{"ix":140,"action":{"kind":"Delegate","val":1,"amt":2523},"partialState":{"h":16,"t":96,"tokens":[8865,21079,8601,13805],"delegation":[7865,20079,7601,12805],"delegatorTokens":9999999920400}},{"ix":141,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":142,"action":{"kind":"Delegate","val":0,"amt":4943},"partialState":{"h":16,"t":96,"tokens":[13808,21079,8601,13805],"delegation":[12808,20079,7601,12805],"delegatorTokens":9999999915457}},{"ix":143,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":144,"action":{"kind":"Undelegate","val":1,"amt":2267},"partialState":{"h":16,"t":96,"tokens":[13808,18812,8601,13805],"delegation":[12808,17812,7601,12805],"delegatorTokens":9999999915457}},{"ix":145,"action":{"kind":"Undelegate","val":0,"amt":1944},"partialState":{"h":16,"t":96,"tokens":[11864,18812,8601,13805],"delegation":[10864,17812,7601,12805],"delegatorTokens":9999999915457}},{"ix":146,"action":{"kind":"Undelegate","val":1,"amt":2097},"partialState":{"h":16,"t":96,"tokens":[11864,16715,8601,13805],"delegation":[10864,15715,7601,12805],"delegatorTokens":9999999915457}},{"ix":147,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":17,"t":102,"tokens":[11864,16715,8601,13805],"delegation":[10864,15715,7601,12805],"delegatorTokens":9999999915457,"jailed":[null,null,null,null],"status":["unbonding","bonded","unbonding","bonded"]}},{"ix":148,"action":{"kind":"Delegate","val":0,"amt":3605},"partialState":{"h":17,"t":102,"tokens":[15469,16715,8601,13805],"delegation":[14469,15715,7601,12805],"delegatorTokens":9999999911852}},{"ix":149,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":150,"action":{"kind":"Delegate","val":3,"amt":4651},"partialState":{"h":17,"t":102,"tokens":[15469,16715,8601,18456],"delegation":[14469,15715,7601,17456],"delegatorTokens":9999999907201}},{"ix":151,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":152,"action":{"kind":"Deliver","chain":"provider","numPackets":5},"partialState":{"h":17,"t":102,"tokens":[15469,16715,8601,18456],"delegation":[14469,15715,7601,17456],"delegatorTokens":9999999907201,"jailed":[null,null,null,null],"status":["unbonding","bonded","unbonding","bonded"]}},{"ix":153,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":16,"t":96,"consumerPower":[null,9555,10380,null],"outstandingDowntime":[false,false,true,true]}},{"ix":154,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":18,"t":108,"tokens":[15469,16715,8601,18456],"delegation":[14469,15715,7601,17456],"delegatorTokens":9999999914580,"jailed":[null,null,null,null],"status":["unbonded","bonded","unbonding","bonded"]}},{"ix":155,"action":{"kind":"Delegate","val":0,"amt":2555},"partialState":{"h":18,"t":108,"tokens":[18024,16715,8601,18456],"delegation":[17024,15715,7601,17456],"delegatorTokens":9999999912025}},{"ix":156,"action":{"kind":"Deliver","chain":"consumer","numPackets":3},"partialState":{"h":16,"t":96,"consumerPower":[null,9555,10380,null],"outstandingDowntime":[false,false,true,true]}},{"ix":157,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":158,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":19,"t":114,"tokens":[18024,16715,8601,18456],"delegation":[17024,15715,7601,17456],"delegatorTokens":9999999912025,"jailed":[null,null,null,null],"status":["bonded","unbonding","unbonding","bonded"]}},{"ix":159,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":20,"t":120,"tokens":[18024,16715,8601,18456],"delegation":[17024,15715,7601,17456],"delegatorTokens":9999999912025,"jailed":[null,null,null,null],"status":["bonded","unbonding","unbonding","bonded"]}},{"ix":160,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":21,"t":126,"tokens":[18024,16715,8601,18456],"delegation":[17024,15715,7601,17456],"delegatorTokens":9999999912025,"jailed":[null,null,null,null],"status":["bonded","unbonding","unbonding","bonded"]}},{"ix":161,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":162,"action":{"kind":"Deliver","chain":"consumer","numPackets":4},"partialState":{"h":16,"t":96,"consumerPower":[null,9555,10380,null],"outstandingDowntime":[false,false,true,true]}},{"ix":163,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":22,"t":132,"tokens":[18024,16715,8601,18456],"delegation":[17024,15715,7601,17456],"delegatorTokens":9999999912025,"jailed":[null,null,null,null],"status":["bonded","unbonding","unbonding","bonded"]}},{"ix":164,"action":{"kind":"Deliver","chain":"provider","numPackets":2},"partialState":{"h":22,"t":132,"tokens":[18024,16715,8601,18456],"delegation":[17024,15715,7601,17456],"delegatorTokens":9999999912025,"jailed":[null,null,null,null],"status":["bonded","unbonding","unbonding","bonded"]}},{"ix":165,"action":{"kind":"Deliver","chain":"provider","numPackets":5},"partialState":{"h":22,"t":132,"tokens":[18024,16715,8601,18456],"delegation":[17024,15715,7601,17456],"delegatorTokens":9999999912025,"jailed":[null,null,null,null],"status":["bonded","unbonding","unbonding","bonded"]}},{"ix":166,"action":{"kind":"Undelegate","val":1,"amt":4291},"partialState":{"h":22,"t":132,"tokens":[18024,12424,8601,18456],"delegation":[17024,11424,7601,17456],"delegatorTokens":9999999912025}},{"ix":167,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":168,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":169,"action":{"kind":"Undelegate","val":3,"amt":3317},"partialState":{"h":22,"t":132,"tokens":[18024,12424,8601,15139],"delegation":[17024,11424,7601,14139],"delegatorTokens":9999999912025}},{"ix":170,"action":{"kind":"Delegate","val":1,"amt":1542},"partialState":{"h":22,"t":132,"tokens":[18024,13966,8601,15139],"delegation":[17024,12966,7601,14139],"delegatorTokens":9999999910483}},{"ix":171,"action":{"kind":"Deliver","chain":"provider","numPackets":3},"partialState":{"h":22,"t":132,"tokens":[18024,13966,8601,15139],"delegation":[17024,12966,7601,14139],"delegatorTokens":9999999910483,"jailed":[null,null,null,null],"status":["bonded","unbonding","unbonding","bonded"]}},{"ix":172,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":23,"t":138,"tokens":[18024,13966,8601,15139],"delegation":[17024,12966,7601,14139],"delegatorTokens":9999999910483,"jailed":[null,null,null,null],"status":["bonded","unbonding","unbonding","bonded"]}},{"ix":173,"action":{"kind":"Undelegate","val":1,"amt":1842},"partialState":{"h":23,"t":138,"tokens":[18024,12124,8601,15139],"delegation":[17024,11124,7601,14139],"delegatorTokens":9999999910483}},{"ix":174,"action":{"kind":"Deliver","chain":"provider","numPackets":3},"partialState":{"h":23,"t":138,"tokens":[18024,12124,8601,15139],"delegation":[17024,11124,7601,14139],"delegatorTokens":9999999910483,"jailed":[null,null,null,null],"status":["bonded","unbonding","unbonding","bonded"]}},{"ix":175,"action":{"kind":"Delegate","val":1,"amt":3256},"partialState":{"h":23,"t":138,"tokens":[18024,15380,8601,15139],"delegation":[17024,14380,7601,14139],"delegatorTokens":9999999907227}},{"ix":176,"action":{"kind":"Delegate","val":1,"amt":3722},"partialState":{"h":23,"t":138,"tokens":[18024,19102,8601,15139],"delegation":[17024,18102,7601,14139],"delegatorTokens":9999999903505}},{"ix":177,"action":{"kind":"Delegate","val":3,"amt":1933},"partialState":{"h":23,"t":138,"tokens":[18024,19102,8601,17072],"delegation":[17024,18102,7601,16072],"delegatorTokens":9999999901572}},{"ix":178,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":179,"action":{"kind":"Undelegate","val":0,"amt":4614},"partialState":{"h":23,"t":138,"tokens":[13410,19102,8601,17072],"delegation":[12410,18102,7601,16072],"delegatorTokens":9999999901572}},{"ix":180,"action":{"kind":"Delegate","val":0,"amt":4473},"partialState":{"h":23,"t":138,"tokens":[17883,19102,8601,17072],"delegation":[16883,18102,7601,16072],"delegatorTokens":9999999897099}},{"ix":181,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":182,"action":{"kind":"Undelegate","val":1,"amt":2088},"partialState":{"h":23,"t":138,"tokens":[17883,17014,8601,17072],"delegation":[16883,16014,7601,16072],"delegatorTokens":9999999897099}},{"ix":183,"action":{"kind":"Undelegate","val":1,"amt":4930},"partialState":{"h":23,"t":138,"tokens":[17883,12084,8601,17072],"delegation":[16883,11084,7601,16072],"delegatorTokens":9999999897099}},{"ix":184,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":185,"action":{"kind":"Deliver","chain":"consumer","numPackets":6},"partialState":{"h":16,"t":96,"consumerPower":[null,9555,10380,null],"outstandingDowntime":[false,false,true,true]}},{"ix":186,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":187,"action":{"kind":"Deliver","chain":"provider","numPackets":3},"partialState":{"h":23,"t":138,"tokens":[17883,12084,8601,17072],"delegation":[16883,11084,7601,16072],"delegatorTokens":9999999897099,"jailed":[null,null,null,null],"status":["bonded","unbonding","unbonding","bonded"]}},{"ix":188,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":189,"action":{"kind":"Undelegate","val":1,"amt":4908},"partialState":{"h":23,"t":138,"tokens":[17883,7176,8601,17072],"delegation":[16883,6176,7601,16072],"delegatorTokens":9999999897099}},{"ix":190,"action":{"kind":"Deliver","chain":"consumer","numPackets":5},"partialState":{"h":16,"t":96,"consumerPower":[null,9555,10380,null],"outstandingDowntime":[false,false,true,true]}},{"ix":191,"action":{"kind":"Deliver","chain":"provider","numPackets":5},"partialState":{"h":23,"t":138,"tokens":[17883,7176,8601,17072],"delegation":[16883,6176,7601,16072],"delegatorTokens":9999999897099,"jailed":[null,null,null,null],"status":["bonded","unbonding","unbonding","bonded"]}},{"ix":192,"action":{"kind":"Delegate","val":2,"amt":4742},"partialState":{"h":23,"t":138,"tokens":[17883,7176,13343,17072],"delegation":[16883,6176,12343,16072],"delegatorTokens":9999999892357}},{"ix":193,"action":{"kind":"Delegate","val":2,"amt":2225},"partialState":{"h":23,"t":138,"tokens":[17883,7176,15568,17072],"delegation":[16883,6176,14568,16072],"delegatorTokens":9999999890132}},{"ix":194,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":195,"action":{"kind":"Delegate","val":1,"amt":4617},"partialState":{"h":23,"t":138,"tokens":[17883,11793,15568,17072],"delegation":[16883,10793,14568,16072],"delegatorTokens":9999999885515}},{"ix":196,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":197,"action":{"kind":"Delegate","val":3,"amt":2015},"partialState":{"h":23,"t":138,"tokens":[17883,11793,15568,19087],"delegation":[16883,10793,14568,18087],"delegatorTokens":9999999883500}},{"ix":198,"action":{"kind":"Undelegate","val":0,"amt":3738},"partialState":{"h":23,"t":138,"tokens":[14145,11793,15568,19087],"delegation":[13145,10793,14568,18087],"delegatorTokens":9999999883500}},{"ix":199,"action":{"kind":"Deliver","chain":"consumer","numPackets":6},"partialState":{"h":16,"t":96,"consumerPower":[null,9555,10380,null],"outstandingDowntime":[false,false,true,true]}}],"events":["insufficient_shares","insufficient_shares","send_downtime_slash_request","send_downtime_slash_request","send_vsc_without_downtime_ack","send_double_sign_slash_request","insufficient_shares","insufficient_shares","receive_double_sign_slash_request","receive_slash_request_unbonded","receive_slash_request_unbonded","insufficient_shares","more_than_one_third_val_power_change","send_vsc_without_downtime_ack","consumer_update_val","consumer_del_val","consumer_add_val","more_than_one_third_val_power_change","send_vsc_without_downtime_ack","insufficient_shares","more_than_one_third_val_power_change","rebond_unval","send_vsc_without_downtime_ack","insufficient_shares","insufficient_shares","send_vsc_without_downtime_ack","insufficient_shares","consumer_update_val","consumer_update_val","consumer_del_val","consumer_update_val","send_vsc_without_downtime_ack","more_than_one_third_val_power_change","rebond_unval","send_vsc_without_downtime_ack","insufficient_shares","consumer_send_maturation","consumer_send_maturation","consumer_update_val","consumer_update_val","more_than_one_third_val_power_change","rebond_unval","send_vsc_without_downtime_ack","set_undel_hold_false","set_undel_hold_false","set_undel_hold_false","set_unval_hold_false","send_vsc_without_downtime_ack","complete_unval_in_endblock","complete_undel_in_endblock","send_vsc_without_downtime_ack","more_than_one_third_val_power_change","send_vsc_without_downtime_ack","some_undels_expired_but_not_completed","some_undels_expired_but_not_completed","some_undels_expired_but_not_completed","send_vsc_without_downtime_ack"]},{"meta":{"commit":"7ffd0c04e4205cbc9caf212abfe6c59ee43153bf"},"constants":{"P":"provider","C":"consumer","UNBONDING_SECONDS_P":70,"UNBONDING_SECONDS_C":50,"TRUSTING_SECONDS":49,"NUM_VALIDATORS":4,"MAX_VALIDATORS":2,"SLASH_DOUBLESIGN":0,"SLASH_DOWNTIME":0,"JAIL_SECONDS":999999999999999,"BLOCK_SECONDS":6,"INITIAL_DELEGATOR_TOKENS":10000000000000,"DELEGATE_AMT_MIN":1000,"DELEGATE_AMT_MAX":5000,"UNDELEGATE_AMT_MIN":1000,"UNDELEGATE_AMT_MAX":5000,"ISDOWNTIME_PROBABILITY":0.5,"MAX_NUM_PACKETS_FOR_DELIVER":6},"actions":[{"ix":0,"action":{"kind":"Deliver","chain":"consumer","numPackets":6},"partialState":{"h":1,"t":6,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":1,"action":{"kind":"Deliver","chain":"consumer","numPackets":4},"partialState":{"h":1,"t":6,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":2,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":3,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":2,"t":12,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":4,"action":{"kind":"Undelegate","val":1,"amt":1220},"partialState":{"h":1,"t":6,"tokens":[5000,2780,3000,2000],"delegation":[4000,1780,2000,1000],"delegatorTokens":10000000000000}},{"ix":5,"action":{"kind":"Deliver","chain":"consumer","numPackets":5},"partialState":{"h":2,"t":12,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":6,"action":{"kind":"Deliver","chain":"provider","numPackets":5},"partialState":{"h":1,"t":6,"tokens":[5000,2780,3000,2000],"delegation":[4000,1780,2000,1000],"delegatorTokens":10000000000000,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":7,"action":{"kind":"Undelegate","val":1,"amt":4750},"partialState":{"h":1,"t":6,"tokens":[5000,2780,3000,2000],"delegation":[4000,1780,2000,1000],"delegatorTokens":10000000000000}},{"ix":8,"action":{"kind":"Undelegate","val":2,"amt":1332},"partialState":{"h":1,"t":6,"tokens":[5000,2780,1668,2000],"delegation":[4000,1780,668,1000],"delegatorTokens":10000000000000}},{"ix":9,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":10,"action":{"kind":"Deliver","chain":"provider","numPackets":1},"partialState":{"h":1,"t":6,"tokens":[5000,2780,1668,2000],"delegation":[4000,1780,668,1000],"delegatorTokens":10000000000000,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":11,"action":{"kind":"Undelegate","val":0,"amt":3498},"partialState":{"h":1,"t":6,"tokens":[1502,2780,1668,2000],"delegation":[502,1780,668,1000],"delegatorTokens":10000000000000}},{"ix":12,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":13,"action":{"kind":"ConsumerSlash","val":2,"infractionHeight":0,"isDowntime":true},"partialState":{"h":2,"t":12,"outstandingDowntime":[false,false,true,false]}},{"ix":14,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":15,"action":{"kind":"ConsumerSlash","val":3,"infractionHeight":1,"isDowntime":true},"partialState":{"h":2,"t":12,"outstandingDowntime":[false,false,true,true]}},{"ix":16,"action":{"kind":"Deliver","chain":"consumer","numPackets":4},"partialState":{"h":2,"t":12,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,false,true,true]}},{"ix":17,"action":{"kind":"ConsumerSlash","val":2,"infractionHeight":1,"isDowntime":false},"partialState":{"h":2,"t":12,"outstandingDowntime":[false,false,true,true]}},{"ix":18,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":3,"t":18,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,false,true,true]}},{"ix":19,"action":{"kind":"Delegate","val":3,"amt":3125},"partialState":{"h":1,"t":6,"tokens":[1502,2780,1668,5125],"delegation":[502,1780,668,4125],"delegatorTokens":9999999996875}},{"ix":20,"action":{"kind":"Undelegate","val":3,"amt":2376},"partialState":{"h":1,"t":6,"tokens":[1502,2780,1668,2749],"delegation":[502,1780,668,1749],"delegatorTokens":9999999996875}},{"ix":21,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":22,"action":{"kind":"Deliver","chain":"consumer","numPackets":1},"partialState":{"h":3,"t":18,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,false,true,true]}},{"ix":23,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":4,"t":24,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,false,true,true]}},{"ix":24,"action":{"kind":"Undelegate","val":0,"amt":2369},"partialState":{"h":1,"t":6,"tokens":[1502,2780,1668,2749],"delegation":[502,1780,668,1749],"delegatorTokens":9999999996875}},{"ix":25,"action":{"kind":"Deliver","chain":"provider","numPackets":5},"partialState":{"h":1,"t":6,"tokens":[1502,2780,1668,2749],"delegation":[502,1780,668,1749],"delegatorTokens":9999999996875,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":26,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":27,"action":{"kind":"Deliver","chain":"consumer","numPackets":5},"partialState":{"h":4,"t":24,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,false,true,true]}},{"ix":28,"action":{"kind":"ConsumerSlash","val":1,"infractionHeight":2,"isDowntime":false},"partialState":{"h":4,"t":24,"outstandingDowntime":[false,false,true,true]}},{"ix":29,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":30,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":5,"t":30,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,false,true,true]}},{"ix":31,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":32,"action":{"kind":"Undelegate","val":2,"amt":2156},"partialState":{"h":1,"t":6,"tokens":[1502,2780,1668,2749],"delegation":[502,1780,668,1749],"delegatorTokens":9999999996875}},{"ix":33,"action":{"kind":"Delegate","val":1,"amt":2729},"partialState":{"h":1,"t":6,"tokens":[1502,5509,1668,2749],"delegation":[502,4509,668,1749],"delegatorTokens":9999999994146}},{"ix":34,"action":{"kind":"Undelegate","val":3,"amt":4576},"partialState":{"h":1,"t":6,"tokens":[1502,5509,1668,2749],"delegation":[502,4509,668,1749],"delegatorTokens":9999999994146}},{"ix":35,"action":{"kind":"Deliver","chain":"consumer","numPackets":1},"partialState":{"h":5,"t":30,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,false,true,true]}},{"ix":36,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":37,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":38,"action":{"kind":"Deliver","chain":"provider","numPackets":3},"partialState":{"h":1,"t":6,"tokens":[1502,5509,1668,2749],"delegation":[502,4509,668,1749],"delegatorTokens":9999999994146,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":39,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":40,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":6,"t":36,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,false,true,true]}},{"ix":41,"action":{"kind":"Undelegate","val":1,"amt":4914},"partialState":{"h":1,"t":6,"tokens":[1502,5509,1668,2749],"delegation":[502,4509,668,1749],"delegatorTokens":9999999994146}},{"ix":42,"action":{"kind":"Deliver","chain":"provider","numPackets":5},"partialState":{"h":1,"t":6,"tokens":[1502,5509,1668,2749],"delegation":[502,4509,668,1749],"delegatorTokens":9999999994146,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":43,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":44,"action":{"kind":"Delegate","val":0,"amt":1816},"partialState":{"h":1,"t":6,"tokens":[3318,5509,1668,2749],"delegation":[2318,4509,668,1749],"delegatorTokens":9999999992330}},{"ix":45,"action":{"kind":"Deliver","chain":"consumer","numPackets":6},"partialState":{"h":6,"t":36,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,false,true,true]}},{"ix":46,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":2,"t":12,"tokens":[3318,5509,1668,2749],"delegation":[2318,4509,668,1749],"delegatorTokens":9999999992330,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":47,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":48,"action":{"kind":"Deliver","chain":"consumer","numPackets":5},"partialState":{"h":6,"t":36,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,false,true,true]}},{"ix":49,"action":{"kind":"Undelegate","val":1,"amt":2776},"partialState":{"h":2,"t":12,"tokens":[3318,2733,1668,2749],"delegation":[2318,1733,668,1749],"delegatorTokens":9999999992330}},{"ix":50,"action":{"kind":"Undelegate","val":2,"amt":2260},"partialState":{"h":2,"t":12,"tokens":[3318,2733,1668,2749],"delegation":[2318,1733,668,1749],"delegatorTokens":9999999992330}},{"ix":51,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":52,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":3,"t":18,"tokens":[3318,2733,1668,2749],"delegation":[2318,1733,668,1749],"delegatorTokens":9999999992330,"jailed":[null,null,null,null],"status":["bonded","unbonding","unbonded","bonded"]}},{"ix":53,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":4,"t":24,"tokens":[3318,2733,1668,2749],"delegation":[2318,1733,668,1749],"delegatorTokens":9999999992330,"jailed":[null,null,null,null],"status":["bonded","unbonding","unbonded","bonded"]}},{"ix":54,"action":{"kind":"Delegate","val":0,"amt":4399},"partialState":{"h":4,"t":24,"tokens":[7717,2733,1668,2749],"delegation":[6717,1733,668,1749],"delegatorTokens":9999999987931}},{"ix":55,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":56,"action":{"kind":"Deliver","chain":"consumer","numPackets":5},"partialState":{"h":6,"t":36,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,false,true,true]}},{"ix":57,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":58,"action":{"kind":"Delegate","val":0,"amt":3025},"partialState":{"h":4,"t":24,"tokens":[10742,2733,1668,2749],"delegation":[9742,1733,668,1749],"delegatorTokens":9999999984906}},{"ix":59,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":7,"t":42,"consumerPower":[3318,null,null,2749],"outstandingDowntime":[false,false,true,true]}},{"ix":60,"action":{"kind":"Undelegate","val":3,"amt":1865},"partialState":{"h":4,"t":24,"tokens":[10742,2733,1668,2749],"delegation":[9742,1733,668,1749],"delegatorTokens":9999999984906}},{"ix":61,"action":{"kind":"Undelegate","val":1,"amt":2266},"partialState":{"h":4,"t":24,"tokens":[10742,2733,1668,2749],"delegation":[9742,1733,668,1749],"delegatorTokens":9999999984906}},{"ix":62,"action":{"kind":"Undelegate","val":3,"amt":2376},"partialState":{"h":4,"t":24,"tokens":[10742,2733,1668,2749],"delegation":[9742,1733,668,1749],"delegatorTokens":9999999984906}},{"ix":63,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":5,"t":30,"tokens":[10742,2733,1668,2749],"delegation":[9742,1733,668,1749],"delegatorTokens":9999999984906,"jailed":[null,null,null,null],"status":["bonded","unbonding","unbonded","bonded"]}},{"ix":64,"action":{"kind":"Deliver","chain":"consumer","numPackets":6},"partialState":{"h":7,"t":42,"consumerPower":[3318,null,null,2749],"outstandingDowntime":[false,false,true,true]}},{"ix":65,"action":{"kind":"Delegate","val":3,"amt":4960},"partialState":{"h":5,"t":30,"tokens":[10742,2733,1668,7709],"delegation":[9742,1733,668,6709],"delegatorTokens":9999999979946}},{"ix":66,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":67,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":6,"t":36,"tokens":[10742,2733,1668,7709],"delegation":[9742,1733,668,6709],"delegatorTokens":9999999979946,"jailed":[null,null,null,null],"status":["bonded","unbonding","unbonded","bonded"]}},{"ix":68,"action":{"kind":"Undelegate","val":3,"amt":2020},"partialState":{"h":6,"t":36,"tokens":[10742,2733,1668,5689],"delegation":[9742,1733,668,4689],"delegatorTokens":9999999979946}},{"ix":69,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":8,"t":48,"consumerPower":[3318,null,null,2749],"outstandingDowntime":[false,false,true,true]}},{"ix":70,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":7,"t":42,"tokens":[10742,2733,1668,5689],"delegation":[9742,1733,668,4689],"delegatorTokens":9999999979946,"jailed":[null,null,null,null],"status":["bonded","unbonding","unbonded","bonded"]}},{"ix":71,"action":{"kind":"Delegate","val":0,"amt":4254},"partialState":{"h":7,"t":42,"tokens":[14996,2733,1668,5689],"delegation":[13996,1733,668,4689],"delegatorTokens":9999999975692}},{"ix":72,"action":{"kind":"Undelegate","val":2,"amt":1483},"partialState":{"h":7,"t":42,"tokens":[14996,2733,1668,5689],"delegation":[13996,1733,668,4689],"delegatorTokens":9999999975692}},{"ix":73,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":9,"t":54,"consumerPower":[3318,null,null,2749],"outstandingDowntime":[false,false,true,true]}},{"ix":74,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":75,"action":{"kind":"Deliver","chain":"provider","numPackets":4},"partialState":{"h":7,"t":42,"tokens":[14996,2733,1668,5689],"delegation":[13996,1733,668,4689],"delegatorTokens":9999999975692,"jailed":[null,null,null,null],"status":["bonded","unbonding","unbonded","bonded"]}},{"ix":76,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":8,"t":48,"tokens":[14996,2733,1668,5689],"delegation":[13996,1733,668,4689],"delegatorTokens":9999999975692,"jailed":[null,null,null,null],"status":["bonded","unbonding","unbonded","bonded"]}},{"ix":77,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":78,"action":{"kind":"Undelegate","val":1,"amt":3368},"partialState":{"h":8,"t":48,"tokens":[14996,2733,1668,5689],"delegation":[13996,1733,668,4689],"delegatorTokens":9999999975692}},{"ix":79,"action":{"kind":"Deliver","chain":"provider","numPackets":2},"partialState":{"h":8,"t":48,"tokens":[14996,2733,1668,5689],"delegation":[13996,1733,668,4689],"delegatorTokens":9999999975692,"jailed":[null,null,null,null],"status":["bonded","unbonding","unbonded","bonded"]}},{"ix":80,"action":{"kind":"Undelegate","val":2,"amt":4274},"partialState":{"h":8,"t":48,"tokens":[14996,2733,1668,5689],"delegation":[13996,1733,668,4689],"delegatorTokens":9999999975692}},{"ix":81,"action":{"kind":"Delegate","val":3,"amt":4239},"partialState":{"h":8,"t":48,"tokens":[14996,2733,1668,9928],"delegation":[13996,1733,668,8928],"delegatorTokens":9999999971453}},{"ix":82,"action":{"kind":"Deliver","chain":"consumer","numPackets":5},"partialState":{"h":9,"t":54,"consumerPower":[3318,null,null,2749],"outstandingDowntime":[false,false,true,true]}},{"ix":83,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":84,"action":{"kind":"Delegate","val":1,"amt":1923},"partialState":{"h":8,"t":48,"tokens":[14996,4656,1668,9928],"delegation":[13996,3656,668,8928],"delegatorTokens":9999999969530}},{"ix":85,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":86,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":10,"t":60,"consumerPower":[10742,null,null,5689],"outstandingDowntime":[false,false,true,true]}},{"ix":87,"action":{"kind":"Deliver","chain":"consumer","numPackets":2},"partialState":{"h":10,"t":60,"consumerPower":[10742,null,null,5689],"outstandingDowntime":[false,false,true,true]}},{"ix":88,"action":{"kind":"Deliver","chain":"provider","numPackets":6},"partialState":{"h":8,"t":48,"tokens":[14996,4656,1668,9928],"delegation":[13996,3656,668,8928],"delegatorTokens":9999999969530,"jailed":[null,null,null,null],"status":["bonded","unbonding","unbonded","bonded"]}},{"ix":89,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":90,"action":{"kind":"Delegate","val":3,"amt":4558},"partialState":{"h":8,"t":48,"tokens":[14996,4656,1668,14486],"delegation":[13996,3656,668,13486],"delegatorTokens":9999999964972}},{"ix":91,"action":{"kind":"Deliver","chain":"consumer","numPackets":2},"partialState":{"h":10,"t":60,"consumerPower":[10742,null,null,5689],"outstandingDowntime":[false,false,true,true]}},{"ix":92,"action":{"kind":"Delegate","val":1,"amt":1956},"partialState":{"h":8,"t":48,"tokens":[14996,6612,1668,14486],"delegation":[13996,5612,668,13486],"delegatorTokens":9999999963016}},{"ix":93,"action":{"kind":"Deliver","chain":"provider","numPackets":3},"partialState":{"h":8,"t":48,"tokens":[14996,6612,1668,14486],"delegation":[13996,5612,668,13486],"delegatorTokens":9999999963016,"jailed":[null,null,null,null],"status":["bonded","unbonding","unbonded","bonded"]}},{"ix":94,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":9,"t":54,"tokens":[14996,6612,1668,14486],"delegation":[13996,5612,668,13486],"delegatorTokens":9999999963016,"jailed":[null,null,null,null],"status":["bonded","unbonding","unbonded","bonded"]}},{"ix":95,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":10,"t":60,"tokens":[14996,6612,1668,14486],"delegation":[13996,5612,668,13486],"delegatorTokens":9999999963016,"jailed":[null,null,null,null],"status":["bonded","unbonding","unbonded","bonded"]}},{"ix":96,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":11,"t":66,"consumerPower":[10742,null,null,5689],"outstandingDowntime":[false,false,true,true]}},{"ix":97,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":12,"t":72,"consumerPower":[10742,null,null,5689],"outstandingDowntime":[false,false,true,true]}},{"ix":98,"action":{"kind":"Delegate","val":2,"amt":2394},"partialState":{"h":10,"t":60,"tokens":[14996,6612,4062,14486],"delegation":[13996,5612,3062,13486],"delegatorTokens":9999999960622}},{"ix":99,"action":{"kind":"Deliver","chain":"consumer","numPackets":5},"partialState":{"h":12,"t":72,"consumerPower":[10742,null,null,5689],"outstandingDowntime":[false,false,true,true]}},{"ix":100,"action":{"kind":"Deliver","chain":"consumer","numPackets":2},"partialState":{"h":12,"t":72,"consumerPower":[10742,null,null,5689],"outstandingDowntime":[false,false,true,true]}},{"ix":101,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":11,"t":66,"tokens":[14996,6612,4062,14486],"delegation":[13996,5612,3062,13486],"delegatorTokens":9999999960622,"jailed":[null,null,null,null],"status":["bonded","unbonding","unbonded","bonded"]}},{"ix":102,"action":{"kind":"Deliver","chain":"consumer","numPackets":4},"partialState":{"h":12,"t":72,"consumerPower":[10742,null,null,5689],"outstandingDowntime":[false,false,true,true]}},{"ix":103,"action":{"kind":"Undelegate","val":2,"amt":4847},"partialState":{"h":11,"t":66,"tokens":[14996,6612,4062,14486],"delegation":[13996,5612,3062,13486],"delegatorTokens":9999999960622}},{"ix":104,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":105,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":12,"t":72,"tokens":[14996,6612,4062,14486],"delegation":[13996,5612,3062,13486],"delegatorTokens":9999999960622,"jailed":[null,null,null,null],"status":["bonded","unbonding","unbonded","bonded"]}},{"ix":106,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":107,"action":{"kind":"Deliver","chain":"provider","numPackets":1},"partialState":{"h":12,"t":72,"tokens":[14996,6612,4062,14486],"delegation":[13996,5612,3062,13486],"delegatorTokens":9999999960622,"jailed":[null,null,null,null],"status":["bonded","unbonding","unbonded","bonded"]}},{"ix":108,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":109,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":13,"t":78,"consumerPower":[14996,null,null,14486],"outstandingDowntime":[false,false,true,true]}},{"ix":110,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":13,"t":78,"tokens":[14996,6612,4062,14486],"delegation":[13996,5612,3062,13486],"delegatorTokens":9999999960622,"jailed":[null,null,null,null],"status":["bonded","unbonding","unbonded","bonded"]}},{"ix":111,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":14,"t":84,"tokens":[14996,6612,4062,14486],"delegation":[13996,5612,3062,13486],"delegatorTokens":9999999960622,"jailed":[null,null,null,null],"status":["bonded","unbonding","unbonded","bonded"]}},{"ix":112,"action":{"kind":"Delegate","val":0,"amt":3786},"partialState":{"h":14,"t":84,"tokens":[18782,6612,4062,14486],"delegation":[17782,5612,3062,13486],"delegatorTokens":9999999956836}},{"ix":113,"action":{"kind":"Deliver","chain":"consumer","numPackets":2},"partialState":{"h":13,"t":78,"consumerPower":[14996,null,null,14486],"outstandingDowntime":[false,false,true,true]}},{"ix":114,"action":{"kind":"Undelegate","val":3,"amt":3014},"partialState":{"h":14,"t":84,"tokens":[18782,6612,4062,11472],"delegation":[17782,5612,3062,10472],"delegatorTokens":9999999956836}},{"ix":115,"action":{"kind":"Delegate","val":1,"amt":4551},"partialState":{"h":14,"t":84,"tokens":[18782,11163,4062,11472],"delegation":[17782,10163,3062,10472],"delegatorTokens":9999999952285}},{"ix":116,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":14,"t":84,"consumerPower":[14996,null,null,14486],"outstandingDowntime":[false,false,true,true]}},{"ix":117,"action":{"kind":"Deliver","chain":"provider","numPackets":2},"partialState":{"h":14,"t":84,"tokens":[18782,11163,4062,11472],"delegation":[17782,10163,3062,10472],"delegatorTokens":9999999952285,"jailed":[null,null,null,null],"status":["bonded","unbonding","unbonded","bonded"]}},{"ix":118,"action":{"kind":"Undelegate","val":1,"amt":4595},"partialState":{"h":14,"t":84,"tokens":[18782,6568,4062,11472],"delegation":[17782,5568,3062,10472],"delegatorTokens":9999999952285}},{"ix":119,"action":{"kind":"Undelegate","val":1,"amt":2250},"partialState":{"h":14,"t":84,"tokens":[18782,4318,4062,11472],"delegation":[17782,3318,3062,10472],"delegatorTokens":9999999952285}},{"ix":120,"action":{"kind":"Undelegate","val":0,"amt":1704},"partialState":{"h":14,"t":84,"tokens":[17078,4318,4062,11472],"delegation":[16078,3318,3062,10472],"delegatorTokens":9999999952285}},{"ix":121,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":15,"t":90,"tokens":[17078,4318,4062,11472],"delegation":[16078,3318,3062,10472],"delegatorTokens":9999999952285,"jailed":[null,null,null,null],"status":["bonded","unbonding","unbonded","bonded"]}},{"ix":122,"action":{"kind":"Deliver","chain":"consumer","numPackets":3},"partialState":{"h":14,"t":84,"consumerPower":[14996,null,null,14486],"outstandingDowntime":[false,false,true,true]}},{"ix":123,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":15,"t":90,"consumerPower":[14996,null,null,14486],"outstandingDowntime":[false,false,true,true]}},{"ix":124,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":125,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":16,"t":96,"tokens":[17078,4318,4062,11472],"delegation":[16078,3318,3062,10472],"delegatorTokens":9999999952285,"jailed":[null,null,null,null],"status":["bonded","unbonding","unbonded","bonded"]}},{"ix":126,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":127,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":128,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":129,"action":{"kind":"Deliver","chain":"consumer","numPackets":2},"partialState":{"h":15,"t":90,"consumerPower":[14996,null,null,14486],"outstandingDowntime":[false,false,true,true]}},{"ix":130,"action":{"kind":"Undelegate","val":2,"amt":3930},"partialState":{"h":16,"t":96,"tokens":[17078,4318,4062,11472],"delegation":[16078,3318,3062,10472],"delegatorTokens":9999999952285}},{"ix":131,"action":{"kind":"Deliver","chain":"provider","numPackets":6},"partialState":{"h":16,"t":96,"tokens":[17078,4318,4062,11472],"delegation":[16078,3318,3062,10472],"delegatorTokens":9999999952285,"jailed":[null,null,null,null],"status":["bonded","unbonding","unbonded","bonded"]}},{"ix":132,"action":{"kind":"Delegate","val":2,"amt":2115},"partialState":{"h":16,"t":96,"tokens":[17078,4318,6177,11472],"delegation":[16078,3318,5177,10472],"delegatorTokens":9999999950170}},{"ix":133,"action":{"kind":"Delegate","val":3,"amt":3872},"partialState":{"h":16,"t":96,"tokens":[17078,4318,6177,15344],"delegation":[16078,3318,5177,14344],"delegatorTokens":9999999946298}},{"ix":134,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":16,"t":96,"consumerPower":[17078,null,null,11472],"outstandingDowntime":[false,false,true,true]}},{"ix":135,"action":{"kind":"Delegate","val":0,"amt":3434},"partialState":{"h":16,"t":96,"tokens":[20512,4318,6177,15344],"delegation":[19512,3318,5177,14344],"delegatorTokens":9999999942864}},{"ix":136,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":17,"t":102,"consumerPower":[17078,null,null,11472],"outstandingDowntime":[false,false,true,true]}},{"ix":137,"action":{"kind":"Deliver","chain":"consumer","numPackets":2},"partialState":{"h":17,"t":102,"consumerPower":[17078,null,null,11472],"outstandingDowntime":[false,false,true,true]}},{"ix":138,"action":{"kind":"Delegate","val":1,"amt":4698},"partialState":{"h":16,"t":96,"tokens":[20512,9016,6177,15344],"delegation":[19512,8016,5177,14344],"delegatorTokens":9999999938166}},{"ix":139,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":140,"action":{"kind":"Undelegate","val":1,"amt":2598},"partialState":{"h":16,"t":96,"tokens":[20512,6418,6177,15344],"delegation":[19512,5418,5177,14344],"delegatorTokens":9999999938166}},{"ix":141,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":17,"t":102,"tokens":[20512,6418,6177,15344],"delegation":[19512,5418,5177,14344],"delegatorTokens":9999999938166,"jailed":[null,null,null,null],"status":["bonded","unbonding","unbonded","bonded"]}},{"ix":142,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":18,"t":108,"tokens":[20512,6418,6177,15344],"delegation":[19512,5418,5177,14344],"delegatorTokens":9999999938166,"jailed":[null,null,null,null],"status":["bonded","unbonding","unbonded","bonded"]}},{"ix":143,"action":{"kind":"Deliver","chain":"provider","numPackets":3},"partialState":{"h":18,"t":108,"tokens":[20512,6418,6177,15344],"delegation":[19512,5418,5177,14344],"delegatorTokens":9999999938166,"jailed":[null,null,null,null],"status":["bonded","unbonding","unbonded","bonded"]}},{"ix":144,"action":{"kind":"Deliver","chain":"provider","numPackets":1},"partialState":{"h":18,"t":108,"tokens":[20512,6418,6177,15344],"delegation":[19512,5418,5177,14344],"delegatorTokens":9999999938166,"jailed":[null,null,null,null],"status":["bonded","unbonding","unbonded","bonded"]}},{"ix":145,"action":{"kind":"Deliver","chain":"consumer","numPackets":6},"partialState":{"h":17,"t":102,"consumerPower":[17078,null,null,11472],"outstandingDowntime":[false,false,true,true]}},{"ix":146,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":18,"t":108,"consumerPower":[20512,null,null,15344],"outstandingDowntime":[false,false,true,true]}},{"ix":147,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":19,"t":114,"tokens":[20512,6418,6177,15344],"delegation":[19512,5418,5177,14344],"delegatorTokens":9999999949368,"jailed":[null,null,null,null],"status":["bonded","unbonding","unbonded","bonded"]}},{"ix":148,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":149,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":20,"t":120,"tokens":[20512,6418,6177,15344],"delegation":[19512,5418,5177,14344],"delegatorTokens":9999999949368,"jailed":[null,null,null,null],"status":["bonded","unbonded","unbonded","bonded"]}},{"ix":150,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":21,"t":126,"tokens":[20512,6418,6177,15344],"delegation":[19512,5418,5177,14344],"delegatorTokens":9999999949368,"jailed":[null,null,null,null],"status":["bonded","unbonded","unbonded","bonded"]}},{"ix":151,"action":{"kind":"Delegate","val":0,"amt":2001},"partialState":{"h":21,"t":126,"tokens":[22513,6418,6177,15344],"delegation":[21513,5418,5177,14344],"delegatorTokens":9999999947367}},{"ix":152,"action":{"kind":"Deliver","chain":"consumer","numPackets":2},"partialState":{"h":18,"t":108,"consumerPower":[20512,null,null,15344],"outstandingDowntime":[false,false,true,true]}},{"ix":153,"action":{"kind":"Delegate","val":0,"amt":2656},"partialState":{"h":21,"t":126,"tokens":[25169,6418,6177,15344],"delegation":[24169,5418,5177,14344],"delegatorTokens":9999999944711}},{"ix":154,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":19,"t":114,"consumerPower":[20512,null,null,15344],"outstandingDowntime":[false,false,true,true]}},{"ix":155,"action":{"kind":"Deliver","chain":"provider","numPackets":3},"partialState":{"h":21,"t":126,"tokens":[25169,6418,6177,15344],"delegation":[24169,5418,5177,14344],"delegatorTokens":9999999944711,"jailed":[null,null,null,null],"status":["bonded","unbonded","unbonded","bonded"]}},{"ix":156,"action":{"kind":"Delegate","val":2,"amt":4319},"partialState":{"h":21,"t":126,"tokens":[25169,6418,10496,15344],"delegation":[24169,5418,9496,14344],"delegatorTokens":9999999940392}},{"ix":157,"action":{"kind":"Undelegate","val":0,"amt":3714},"partialState":{"h":21,"t":126,"tokens":[21455,6418,10496,15344],"delegation":[20455,5418,9496,14344],"delegatorTokens":9999999940392}},{"ix":158,"action":{"kind":"Deliver","chain":"provider","numPackets":5},"partialState":{"h":21,"t":126,"tokens":[21455,6418,10496,15344],"delegation":[20455,5418,9496,14344],"delegatorTokens":9999999940392,"jailed":[null,null,null,null],"status":["bonded","unbonded","unbonded","bonded"]}},{"ix":159,"action":{"kind":"Undelegate","val":2,"amt":4933},"partialState":{"h":21,"t":126,"tokens":[21455,6418,5563,15344],"delegation":[20455,5418,4563,14344],"delegatorTokens":9999999940392}},{"ix":160,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":161,"action":{"kind":"Deliver","chain":"consumer","numPackets":1},"partialState":{"h":19,"t":114,"consumerPower":[20512,null,null,15344],"outstandingDowntime":[false,false,true,true]}},{"ix":162,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":163,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":164,"action":{"kind":"Deliver","chain":"consumer","numPackets":4},"partialState":{"h":19,"t":114,"consumerPower":[20512,null,null,15344],"outstandingDowntime":[false,false,true,true]}},{"ix":165,"action":{"kind":"Delegate","val":2,"amt":3246},"partialState":{"h":21,"t":126,"tokens":[21455,6418,8809,15344],"delegation":[20455,5418,7809,14344],"delegatorTokens":9999999937146}},{"ix":166,"action":{"kind":"Undelegate","val":0,"amt":3596},"partialState":{"h":21,"t":126,"tokens":[17859,6418,8809,15344],"delegation":[16859,5418,7809,14344],"delegatorTokens":9999999937146}},{"ix":167,"action":{"kind":"Deliver","chain":"provider","numPackets":5},"partialState":{"h":21,"t":126,"tokens":[17859,6418,8809,15344],"delegation":[16859,5418,7809,14344],"delegatorTokens":9999999937146,"jailed":[null,null,null,null],"status":["bonded","unbonded","unbonded","bonded"]}},{"ix":168,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":169,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":170,"action":{"kind":"Deliver","chain":"consumer","numPackets":4},"partialState":{"h":19,"t":114,"consumerPower":[20512,null,null,15344],"outstandingDowntime":[false,false,true,true]}},{"ix":171,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":20,"t":120,"consumerPower":[20512,null,null,15344],"outstandingDowntime":[false,false,true,true]}},{"ix":172,"action":{"kind":"Undelegate","val":0,"amt":1367},"partialState":{"h":21,"t":126,"tokens":[16492,6418,8809,15344],"delegation":[15492,5418,7809,14344],"delegatorTokens":9999999937146}},{"ix":173,"action":{"kind":"Deliver","chain":"provider","numPackets":2},"partialState":{"h":21,"t":126,"tokens":[16492,6418,8809,15344],"delegation":[15492,5418,7809,14344],"delegatorTokens":9999999937146,"jailed":[null,null,null,null],"status":["bonded","unbonded","unbonded","bonded"]}},{"ix":174,"action":{"kind":"Deliver","chain":"consumer","numPackets":4},"partialState":{"h":20,"t":120,"consumerPower":[20512,null,null,15344],"outstandingDowntime":[false,false,true,true]}},{"ix":175,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":176,"action":{"kind":"Delegate","val":3,"amt":2461},"partialState":{"h":21,"t":126,"tokens":[16492,6418,8809,17805],"delegation":[15492,5418,7809,16805],"delegatorTokens":9999999934685}},{"ix":177,"action":{"kind":"Undelegate","val":1,"amt":4582},"partialState":{"h":21,"t":126,"tokens":[16492,1836,8809,17805],"delegation":[15492,836,7809,16805],"delegatorTokens":9999999934685}},{"ix":178,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":179,"action":{"kind":"Undelegate","val":3,"amt":2422},"partialState":{"h":21,"t":126,"tokens":[16492,1836,8809,15383],"delegation":[15492,836,7809,14383],"delegatorTokens":9999999934685}},{"ix":180,"action":{"kind":"Deliver","chain":"provider","numPackets":5},"partialState":{"h":21,"t":126,"tokens":[16492,1836,8809,15383],"delegation":[15492,836,7809,14383],"delegatorTokens":9999999934685,"jailed":[null,null,null,null],"status":["bonded","unbonded","unbonded","bonded"]}},{"ix":181,"action":{"kind":"Delegate","val":1,"amt":3450},"partialState":{"h":21,"t":126,"tokens":[16492,5286,8809,15383],"delegation":[15492,4286,7809,14383],"delegatorTokens":9999999931235}},{"ix":182,"action":{"kind":"Deliver","chain":"provider","numPackets":1},"partialState":{"h":21,"t":126,"tokens":[16492,5286,8809,15383],"delegation":[15492,4286,7809,14383],"delegatorTokens":9999999931235,"jailed":[null,null,null,null],"status":["bonded","unbonded","unbonded","bonded"]}},{"ix":183,"action":{"kind":"Undelegate","val":2,"amt":2688},"partialState":{"h":21,"t":126,"tokens":[16492,5286,6121,15383],"delegation":[15492,4286,5121,14383],"delegatorTokens":9999999931235}},{"ix":184,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":22,"t":132,"tokens":[16492,5286,6121,15383],"delegation":[15492,4286,5121,14383],"delegatorTokens":9999999933255,"jailed":[null,null,null,null],"status":["bonded","unbonded","unbonded","bonded"]}},{"ix":185,"action":{"kind":"Undelegate","val":0,"amt":2423},"partialState":{"h":22,"t":132,"tokens":[14069,5286,6121,15383],"delegation":[13069,4286,5121,14383],"delegatorTokens":9999999933255}},{"ix":186,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":23,"t":138,"tokens":[14069,5286,6121,15383],"delegation":[13069,4286,5121,14383],"delegatorTokens":9999999933255,"jailed":[null,null,null,null],"status":["bonded","unbonded","unbonded","bonded"]}},{"ix":187,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":24,"t":144,"tokens":[14069,5286,6121,15383],"delegation":[13069,4286,5121,14383],"delegatorTokens":9999999933255,"jailed":[null,null,null,null],"status":["bonded","unbonded","unbonded","bonded"]}},{"ix":188,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":21,"t":126,"consumerPower":[20512,null,null,15344],"outstandingDowntime":[false,false,true,true]}},{"ix":189,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":25,"t":150,"tokens":[14069,5286,6121,15383],"delegation":[13069,4286,5121,14383],"delegatorTokens":9999999933255,"jailed":[null,null,null,null],"status":["bonded","unbonded","unbonded","bonded"]}},{"ix":190,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":191,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":192,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":193,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":194,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":22,"t":132,"consumerPower":[20512,null,null,15344],"outstandingDowntime":[false,false,true,true]}},{"ix":195,"action":{"kind":"Undelegate","val":0,"amt":4635},"partialState":{"h":25,"t":150,"tokens":[9434,5286,6121,15383],"delegation":[8434,4286,5121,14383],"delegatorTokens":9999999933255}},{"ix":196,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":23,"t":138,"consumerPower":[20512,null,null,15344],"outstandingDowntime":[false,false,true,true]}},{"ix":197,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":26,"t":156,"tokens":[9434,5286,6121,15383],"delegation":[8434,4286,5121,14383],"delegatorTokens":9999999933255,"jailed":[null,null,null,null],"status":["bonded","unbonded","unbonded","bonded"]}},{"ix":198,"action":{"kind":"Undelegate","val":2,"amt":3917},"partialState":{"h":26,"t":156,"tokens":[9434,5286,2204,15383],"delegation":[8434,4286,1204,14383],"delegatorTokens":9999999933255}},{"ix":199,"action":{"kind":"Delegate","val":0,"amt":3217},"partialState":{"h":26,"t":156,"tokens":[12651,5286,2204,15383],"delegation":[11651,4286,1204,14383],"delegatorTokens":9999999930038}}],"events":["insufficient_shares","send_downtime_slash_request","send_downtime_slash_request","send_double_sign_slash_request","insufficient_shares","receive_double_sign_slash_request","send_double_sign_slash_request","insufficient_shares","insufficient_shares","insufficient_shares","receive_double_sign_slash_request","receive_slash_request_unbonded","receive_slash_request_unbonded","send_vsc_without_downtime_ack","insufficient_shares","more_than_one_third_val_power_change","send_vsc_without_downtime_ack","consumer_update_val","consumer_del_val","consumer_add_val","insufficient_shares","insufficient_shares","insufficient_shares","send_vsc_without_downtime_ack","send_vsc_without_downtime_ack","send_vsc_without_downtime_ack","insufficient_shares","send_vsc_without_downtime_ack","insufficient_shares","insufficient_shares","consumer_update_val","consumer_update_val","send_vsc_without_downtime_ack","insufficient_shares","consumer_update_val","consumer_update_val","some_undels_expired_but_not_completed","some_undels_expired_but_not_completed","send_vsc_without_downtime_ack","insufficient_shares","consumer_send_maturation","consumer_send_maturation","consumer_update_val","consumer_update_val","send_vsc_without_downtime_ack","consumer_update_val","consumer_update_val","some_undels_expired_but_not_completed","complete_undel_immediate","complete_undel_immediate","complete_undel_immediate","complete_undel_immediate","complete_undel_immediate","set_unval_hold_false","complete_unval_in_endblock","consumer_send_maturation","consumer_send_maturation","consumer_send_maturation","complete_undel_immediate","send_vsc_without_downtime_ack","send_vsc_without_downtime_ack","consumer_send_maturation","consumer_send_maturation","send_vsc_without_downtime_ack"]},{"meta":{"commit":"7ffd0c04e4205cbc9caf212abfe6c59ee43153bf"},"constants":{"P":"provider","C":"consumer","UNBONDING_SECONDS_P":70,"UNBONDING_SECONDS_C":50,"TRUSTING_SECONDS":49,"NUM_VALIDATORS":4,"MAX_VALIDATORS":2,"SLASH_DOUBLESIGN":0,"SLASH_DOWNTIME":0,"JAIL_SECONDS":999999999999999,"BLOCK_SECONDS":6,"INITIAL_DELEGATOR_TOKENS":10000000000000,"DELEGATE_AMT_MIN":1000,"DELEGATE_AMT_MAX":5000,"UNDELEGATE_AMT_MIN":1000,"UNDELEGATE_AMT_MAX":5000,"ISDOWNTIME_PROBABILITY":0.5,"MAX_NUM_PACKETS_FOR_DELIVER":6},"actions":[{"ix":0,"action":{"kind":"Delegate","val":2,"amt":3526},"partialState":{"h":1,"t":6,"tokens":[5000,4000,6526,2000],"delegation":[4000,3000,5526,1000],"delegatorTokens":9999999996474}},{"ix":1,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":2,"action":{"kind":"ConsumerSlash","val":2,"infractionHeight":0,"isDowntime":true},"partialState":{"h":1,"t":6,"outstandingDowntime":[false,false,true,false]}},{"ix":3,"action":{"kind":"Undelegate","val":2,"amt":3501},"partialState":{"h":1,"t":6,"tokens":[5000,4000,3025,2000],"delegation":[4000,3000,2025,1000],"delegatorTokens":9999999996474}},{"ix":4,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":5,"action":{"kind":"ConsumerSlash","val":2,"infractionHeight":0,"isDowntime":true},"partialState":{"h":1,"t":6,"outstandingDowntime":[false,false,true,false]}},{"ix":6,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":2,"t":12,"tokens":[5000,4000,3025,2000],"delegation":[4000,3000,2025,1000],"delegatorTokens":9999999996474,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":7,"action":{"kind":"Deliver","chain":"provider","numPackets":1},"partialState":{"h":2,"t":12,"tokens":[5000,4000,3025,2000],"delegation":[4000,3000,2025,1000],"delegatorTokens":9999999996474,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":8,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":2,"t":12,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,false,true,false]}},{"ix":9,"action":{"kind":"Delegate","val":0,"amt":1283},"partialState":{"h":2,"t":12,"tokens":[6283,4000,3025,2000],"delegation":[5283,3000,2025,1000],"delegatorTokens":9999999995191}},{"ix":10,"action":{"kind":"ConsumerSlash","val":3,"infractionHeight":1,"isDowntime":true},"partialState":{"h":2,"t":12,"outstandingDowntime":[false,false,true,true]}},{"ix":11,"action":{"kind":"ConsumerSlash","val":3,"infractionHeight":1,"isDowntime":true},"partialState":{"h":2,"t":12,"outstandingDowntime":[false,false,true,true]}},{"ix":12,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":3,"t":18,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,false,true,true]}},{"ix":13,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":3,"t":18,"tokens":[6283,4000,3025,2000],"delegation":[5283,3000,2025,1000],"delegatorTokens":9999999995191,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":14,"action":{"kind":"Undelegate","val":2,"amt":1772},"partialState":{"h":3,"t":18,"tokens":[6283,4000,1253,2000],"delegation":[5283,3000,253,1000],"delegatorTokens":9999999995191}},{"ix":15,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":4,"t":24,"tokens":[6283,4000,1253,2000],"delegation":[5283,3000,253,1000],"delegatorTokens":9999999995191,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":16,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":17,"action":{"kind":"Deliver","chain":"consumer","numPackets":3},"partialState":{"h":3,"t":18,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,false,true,true]}},{"ix":18,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":4,"t":24,"consumerPower":[6283,4000,null,null],"outstandingDowntime":[false,false,true,true]}},{"ix":19,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":5,"t":30,"tokens":[6283,4000,1253,2000],"delegation":[5283,3000,253,1000],"delegatorTokens":9999999995191,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":20,"action":{"kind":"Undelegate","val":3,"amt":4086},"partialState":{"h":5,"t":30,"tokens":[6283,4000,1253,2000],"delegation":[5283,3000,253,1000],"delegatorTokens":9999999995191}},{"ix":21,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":22,"action":{"kind":"ConsumerSlash","val":3,"infractionHeight":2,"isDowntime":true},"partialState":{"h":4,"t":24,"outstandingDowntime":[false,false,true,true]}},{"ix":23,"action":{"kind":"ConsumerSlash","val":2,"infractionHeight":0,"isDowntime":false},"partialState":{"h":4,"t":24,"outstandingDowntime":[false,false,true,true]}},{"ix":24,"action":{"kind":"ConsumerSlash","val":3,"infractionHeight":3,"isDowntime":true},"partialState":{"h":4,"t":24,"outstandingDowntime":[false,false,true,true]}},{"ix":25,"action":{"kind":"Deliver","chain":"consumer","numPackets":4},"partialState":{"h":4,"t":24,"consumerPower":[6283,4000,null,null],"outstandingDowntime":[false,false,true,true]}},{"ix":26,"action":{"kind":"Undelegate","val":0,"amt":1936},"partialState":{"h":5,"t":30,"tokens":[4347,4000,1253,2000],"delegation":[3347,3000,253,1000],"delegatorTokens":9999999995191}},{"ix":27,"action":{"kind":"Deliver","chain":"provider","numPackets":3},"partialState":{"h":5,"t":30,"tokens":[4347,4000,1253,2000],"delegation":[3347,3000,253,1000],"delegatorTokens":9999999995191,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":28,"action":{"kind":"ConsumerSlash","val":3,"infractionHeight":1,"isDowntime":false},"partialState":{"h":4,"t":24,"outstandingDowntime":[false,false,true,true]}},{"ix":29,"action":{"kind":"Deliver","chain":"consumer","numPackets":6},"partialState":{"h":4,"t":24,"consumerPower":[6283,4000,null,null],"outstandingDowntime":[false,false,true,true]}},{"ix":30,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":6,"t":36,"tokens":[4347,4000,1253,2000],"delegation":[3347,3000,253,1000],"delegatorTokens":9999999995191,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":31,"action":{"kind":"Delegate","val":1,"amt":1805},"partialState":{"h":6,"t":36,"tokens":[4347,5805,1253,2000],"delegation":[3347,4805,253,1000],"delegatorTokens":9999999993386}},{"ix":32,"action":{"kind":"ConsumerSlash","val":2,"infractionHeight":0,"isDowntime":true},"partialState":{"h":4,"t":24,"outstandingDowntime":[false,false,true,true]}},{"ix":33,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":34,"action":{"kind":"Deliver","chain":"provider","numPackets":5},"partialState":{"h":6,"t":36,"tokens":[4347,5805,1253,2000],"delegation":[3347,4805,253,1000],"delegatorTokens":9999999993386,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":35,"action":{"kind":"Undelegate","val":1,"amt":3028},"partialState":{"h":6,"t":36,"tokens":[4347,2777,1253,2000],"delegation":[3347,1777,253,1000],"delegatorTokens":9999999993386}},{"ix":36,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":37,"action":{"kind":"Deliver","chain":"consumer","numPackets":4},"partialState":{"h":4,"t":24,"consumerPower":[6283,4000,null,null],"outstandingDowntime":[false,false,true,true]}},{"ix":38,"action":{"kind":"ConsumerSlash","val":2,"infractionHeight":2,"isDowntime":false},"partialState":{"h":4,"t":24,"outstandingDowntime":[false,false,true,true]}},{"ix":39,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":40,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":5,"t":30,"consumerPower":[6283,4000,null,null],"outstandingDowntime":[false,false,true,true]}},{"ix":41,"action":{"kind":"Undelegate","val":0,"amt":3436},"partialState":{"h":6,"t":36,"tokens":[4347,2777,1253,2000],"delegation":[3347,1777,253,1000],"delegatorTokens":9999999993386}},{"ix":42,"action":{"kind":"Delegate","val":3,"amt":1497},"partialState":{"h":6,"t":36,"tokens":[4347,2777,1253,3497],"delegation":[3347,1777,253,2497],"delegatorTokens":9999999991889}},{"ix":43,"action":{"kind":"Undelegate","val":0,"amt":2662},"partialState":{"h":6,"t":36,"tokens":[1685,2777,1253,3497],"delegation":[685,1777,253,2497],"delegatorTokens":9999999991889}},{"ix":44,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":45,"action":{"kind":"Undelegate","val":2,"amt":1604},"partialState":{"h":6,"t":36,"tokens":[1685,2777,1253,3497],"delegation":[685,1777,253,2497],"delegatorTokens":9999999991889}},{"ix":46,"action":{"kind":"Deliver","chain":"provider","numPackets":4},"partialState":{"h":6,"t":36,"tokens":[1685,2777,1253,3497],"delegation":[685,1777,253,2497],"delegatorTokens":9999999991889,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":47,"action":{"kind":"Deliver","chain":"provider","numPackets":5},"partialState":{"h":6,"t":36,"tokens":[1685,2777,1253,3497],"delegation":[685,1777,253,2497],"delegatorTokens":9999999991889,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":48,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":49,"action":{"kind":"Delegate","val":0,"amt":4472},"partialState":{"h":6,"t":36,"tokens":[6157,2777,1253,3497],"delegation":[5157,1777,253,2497],"delegatorTokens":9999999987417}},{"ix":50,"action":{"kind":"Undelegate","val":1,"amt":1620},"partialState":{"h":6,"t":36,"tokens":[6157,1157,1253,3497],"delegation":[5157,157,253,2497],"delegatorTokens":9999999987417}},{"ix":51,"action":{"kind":"Undelegate","val":1,"amt":2992},"partialState":{"h":6,"t":36,"tokens":[6157,1157,1253,3497],"delegation":[5157,157,253,2497],"delegatorTokens":9999999987417}},{"ix":52,"action":{"kind":"Undelegate","val":0,"amt":2744},"partialState":{"h":6,"t":36,"tokens":[3413,1157,1253,3497],"delegation":[2413,157,253,2497],"delegatorTokens":9999999987417}},{"ix":53,"action":{"kind":"Delegate","val":3,"amt":3956},"partialState":{"h":6,"t":36,"tokens":[3413,1157,1253,7453],"delegation":[2413,157,253,6453],"delegatorTokens":9999999983461}},{"ix":54,"action":{"kind":"ConsumerSlash","val":3,"infractionHeight":0,"isDowntime":false},"partialState":{"h":5,"t":30,"outstandingDowntime":[false,false,true,true]}},{"ix":55,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":56,"action":{"kind":"Undelegate","val":0,"amt":3478},"partialState":{"h":6,"t":36,"tokens":[3413,1157,1253,7453],"delegation":[2413,157,253,6453],"delegatorTokens":9999999983461}},{"ix":57,"action":{"kind":"Delegate","val":1,"amt":1196},"partialState":{"h":6,"t":36,"tokens":[3413,2353,1253,7453],"delegation":[2413,1353,253,6453],"delegatorTokens":9999999982265}},{"ix":58,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":6,"t":36,"consumerPower":[6283,4000,null,null],"outstandingDowntime":[false,false,true,true]}},{"ix":59,"action":{"kind":"ConsumerSlash","val":3,"infractionHeight":4,"isDowntime":true},"partialState":{"h":6,"t":36,"outstandingDowntime":[false,false,true,true]}},{"ix":60,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":7,"t":42,"tokens":[3413,2353,1253,7453],"delegation":[2413,1353,253,6453],"delegatorTokens":9999999982265,"jailed":[null,null,null,null],"status":["bonded","unbonding","unbonded","bonded"]}},{"ix":61,"action":{"kind":"Delegate","val":2,"amt":1667},"partialState":{"h":7,"t":42,"tokens":[3413,2353,2920,7453],"delegation":[2413,1353,1920,6453],"delegatorTokens":9999999980598}},{"ix":62,"action":{"kind":"Undelegate","val":2,"amt":2015},"partialState":{"h":7,"t":42,"tokens":[3413,2353,2920,7453],"delegation":[2413,1353,1920,6453],"delegatorTokens":9999999980598}},{"ix":63,"action":{"kind":"Deliver","chain":"provider","numPackets":4},"partialState":{"h":7,"t":42,"tokens":[3413,2353,2920,7453],"delegation":[2413,1353,1920,6453],"delegatorTokens":9999999980598,"jailed":[null,null,null,null],"status":["bonded","unbonding","unbonded","bonded"]}},{"ix":64,"action":{"kind":"Undelegate","val":0,"amt":2125},"partialState":{"h":7,"t":42,"tokens":[1288,2353,2920,7453],"delegation":[288,1353,1920,6453],"delegatorTokens":9999999980598}},{"ix":65,"action":{"kind":"Deliver","chain":"consumer","numPackets":3},"partialState":{"h":6,"t":36,"consumerPower":[6283,4000,null,null],"outstandingDowntime":[false,false,true,true]}},{"ix":66,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":8,"t":48,"tokens":[1288,2353,2920,7453],"delegation":[288,1353,1920,6453],"delegatorTokens":9999999980598,"jailed":[null,null,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":67,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":9,"t":54,"tokens":[1288,2353,2920,7453],"delegation":[288,1353,1920,6453],"delegatorTokens":9999999980598,"jailed":[null,null,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":68,"action":{"kind":"Deliver","chain":"consumer","numPackets":4},"partialState":{"h":6,"t":36,"consumerPower":[6283,4000,null,null],"outstandingDowntime":[false,false,true,true]}},{"ix":69,"action":{"kind":"Delegate","val":0,"amt":3715},"partialState":{"h":9,"t":54,"tokens":[5003,2353,2920,7453],"delegation":[4003,1353,1920,6453],"delegatorTokens":9999999976883}},{"ix":70,"action":{"kind":"Undelegate","val":1,"amt":3674},"partialState":{"h":9,"t":54,"tokens":[5003,2353,2920,7453],"delegation":[4003,1353,1920,6453],"delegatorTokens":9999999976883}},{"ix":71,"action":{"kind":"Undelegate","val":0,"amt":1709},"partialState":{"h":9,"t":54,"tokens":[3294,2353,2920,7453],"delegation":[2294,1353,1920,6453],"delegatorTokens":9999999976883}},{"ix":72,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":73,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":74,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":10,"t":60,"tokens":[3294,2353,2920,7453],"delegation":[2294,1353,1920,6453],"delegatorTokens":9999999976883,"jailed":[null,null,null,null],"status":["bonded","unbonding","unbonding","bonded"]}},{"ix":75,"action":{"kind":"ConsumerSlash","val":0,"infractionHeight":0,"isDowntime":true},"partialState":{"h":6,"t":36,"outstandingDowntime":[true,false,true,true]}},{"ix":76,"action":{"kind":"Deliver","chain":"provider","numPackets":5},"partialState":{"h":10,"t":60,"tokens":[3294,2353,2920,7453],"delegation":[2294,1353,1920,6453],"delegatorTokens":9999999976883,"jailed":[null,null,null,null],"status":["bonded","unbonding","unbonding","bonded"]}},{"ix":77,"action":{"kind":"Delegate","val":1,"amt":2914},"partialState":{"h":10,"t":60,"tokens":[3294,5267,2920,7453],"delegation":[2294,4267,1920,6453],"delegatorTokens":9999999973969}},{"ix":78,"action":{"kind":"Deliver","chain":"consumer","numPackets":1},"partialState":{"h":6,"t":36,"consumerPower":[6283,4000,null,null],"outstandingDowntime":[true,false,true,true]}},{"ix":79,"action":{"kind":"Deliver","chain":"consumer","numPackets":2},"partialState":{"h":6,"t":36,"consumerPower":[6283,4000,null,null],"outstandingDowntime":[true,false,true,true]}},{"ix":80,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":11,"t":66,"tokens":[3294,5267,2920,7453],"delegation":[2294,4267,1920,6453],"delegatorTokens":9999999973969,"jailed":[null,null,null,null],"status":["unbonding","bonded","unbonding","bonded"]}},{"ix":81,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":7,"t":42,"consumerPower":[null,null,2920,7453],"outstandingDowntime":[true,false,true,true]}},{"ix":82,"action":{"kind":"Delegate","val":1,"amt":2916},"partialState":{"h":11,"t":66,"tokens":[3294,8183,2920,7453],"delegation":[2294,7183,1920,6453],"delegatorTokens":9999999971053}},{"ix":83,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":12,"t":72,"tokens":[3294,8183,2920,7453],"delegation":[2294,7183,1920,6453],"delegatorTokens":9999999971053,"jailed":[null,null,null,null],"status":["unbonding","bonded","unbonding","bonded"]}},{"ix":84,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":8,"t":48,"consumerPower":[null,null,2920,7453],"outstandingDowntime":[true,false,true,true]}},{"ix":85,"action":{"kind":"Deliver","chain":"provider","numPackets":3},"partialState":{"h":12,"t":72,"tokens":[3294,8183,2920,7453],"delegation":[2294,7183,1920,6453],"delegatorTokens":9999999971053,"jailed":[null,null,null,null],"status":["unbonding","bonded","unbonding","bonded"]}},{"ix":86,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":87,"action":{"kind":"Deliver","chain":"consumer","numPackets":5},"partialState":{"h":8,"t":48,"consumerPower":[null,null,2920,7453],"outstandingDowntime":[true,false,true,true]}},{"ix":88,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":89,"action":{"kind":"Undelegate","val":1,"amt":2386},"partialState":{"h":12,"t":72,"tokens":[3294,5797,2920,7453],"delegation":[2294,4797,1920,6453],"delegatorTokens":9999999971053}},{"ix":90,"action":{"kind":"Delegate","val":2,"amt":4762},"partialState":{"h":12,"t":72,"tokens":[3294,5797,7682,7453],"delegation":[2294,4797,6682,6453],"delegatorTokens":9999999966291}},{"ix":91,"action":{"kind":"Deliver","chain":"provider","numPackets":4},"partialState":{"h":12,"t":72,"tokens":[3294,5797,7682,7453],"delegation":[2294,4797,6682,6453],"delegatorTokens":9999999966291,"jailed":[null,null,null,null],"status":["unbonding","bonded","unbonding","bonded"]}},{"ix":92,"action":{"kind":"Deliver","chain":"consumer","numPackets":6},"partialState":{"h":8,"t":48,"consumerPower":[null,null,2920,7453],"outstandingDowntime":[true,false,true,true]}},{"ix":93,"action":{"kind":"Delegate","val":0,"amt":1020},"partialState":{"h":12,"t":72,"tokens":[4314,5797,7682,7453],"delegation":[3314,4797,6682,6453],"delegatorTokens":9999999965271}},{"ix":94,"action":{"kind":"Delegate","val":1,"amt":3342},"partialState":{"h":12,"t":72,"tokens":[4314,9139,7682,7453],"delegation":[3314,8139,6682,6453],"delegatorTokens":9999999961929}},{"ix":95,"action":{"kind":"Delegate","val":3,"amt":4077},"partialState":{"h":12,"t":72,"tokens":[4314,9139,7682,11530],"delegation":[3314,8139,6682,10530],"delegatorTokens":9999999957852}},{"ix":96,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":9,"t":54,"consumerPower":[null,5267,null,7453],"outstandingDowntime":[true,false,true,true]}},{"ix":97,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":98,"action":{"kind":"Deliver","chain":"consumer","numPackets":6},"partialState":{"h":9,"t":54,"consumerPower":[null,5267,null,7453],"outstandingDowntime":[true,false,true,true]}},{"ix":99,"action":{"kind":"Deliver","chain":"consumer","numPackets":2},"partialState":{"h":9,"t":54,"consumerPower":[null,5267,null,7453],"outstandingDowntime":[true,false,true,true]}},{"ix":100,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":10,"t":60,"consumerPower":[null,5267,null,7453],"outstandingDowntime":[true,false,true,true]}},{"ix":101,"action":{"kind":"Deliver","chain":"consumer","numPackets":3},"partialState":{"h":10,"t":60,"consumerPower":[null,5267,null,7453],"outstandingDowntime":[true,false,true,true]}},{"ix":102,"action":{"kind":"Deliver","chain":"consumer","numPackets":5},"partialState":{"h":10,"t":60,"consumerPower":[null,5267,null,7453],"outstandingDowntime":[true,false,true,true]}},{"ix":103,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":11,"t":66,"consumerPower":[null,5267,null,7453],"outstandingDowntime":[true,false,true,true]}},{"ix":104,"action":{"kind":"Undelegate","val":3,"amt":4520},"partialState":{"h":12,"t":72,"tokens":[4314,9139,7682,7010],"delegation":[3314,8139,6682,6010],"delegatorTokens":9999999957852}},{"ix":105,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":106,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":12,"t":72,"consumerPower":[null,5267,null,7453],"outstandingDowntime":[true,false,true,true]}},{"ix":107,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":13,"t":78,"tokens":[4314,9139,7682,7010],"delegation":[3314,8139,6682,6010],"delegatorTokens":9999999957852,"jailed":[1000000000000071,null,null,null],"status":["unbonding","bonded","bonded","unbonding"]}},{"ix":108,"action":{"kind":"Deliver","chain":"consumer","numPackets":5},"partialState":{"h":12,"t":72,"consumerPower":[null,5267,null,7453],"outstandingDowntime":[true,false,true,true]}},{"ix":109,"action":{"kind":"Undelegate","val":0,"amt":3833},"partialState":{"h":13,"t":78,"tokens":[4314,9139,7682,7010],"delegation":[3314,8139,6682,6010],"delegatorTokens":9999999957852}},{"ix":110,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":13,"t":78,"consumerPower":[null,8183,null,7453],"outstandingDowntime":[true,false,true,true]}},{"ix":111,"action":{"kind":"Delegate","val":2,"amt":3801},"partialState":{"h":13,"t":78,"tokens":[4314,9139,11483,7010],"delegation":[3314,8139,10483,6010],"delegatorTokens":9999999954051}},{"ix":112,"action":{"kind":"Deliver","chain":"provider","numPackets":2},"partialState":{"h":13,"t":78,"tokens":[4314,9139,11483,7010],"delegation":[3314,8139,10483,6010],"delegatorTokens":9999999954051,"jailed":[1000000000000071,null,null,null],"status":["unbonding","bonded","bonded","unbonding"]}},{"ix":113,"action":{"kind":"Undelegate","val":1,"amt":2244},"partialState":{"h":13,"t":78,"tokens":[4314,6895,11483,7010],"delegation":[3314,5895,10483,6010],"delegatorTokens":9999999954051}},{"ix":114,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":14,"t":84,"consumerPower":[null,8183,null,7453],"outstandingDowntime":[true,false,true,true]}},{"ix":115,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":15,"t":90,"consumerPower":[null,8183,null,7453],"outstandingDowntime":[true,false,true,true]}},{"ix":116,"action":{"kind":"Deliver","chain":"consumer","numPackets":2},"partialState":{"h":15,"t":90,"consumerPower":[null,8183,null,7453],"outstandingDowntime":[true,false,true,true]}},{"ix":117,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":16,"t":96,"consumerPower":[null,8183,null,7453],"outstandingDowntime":[true,false,true,true]}},{"ix":118,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":119,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":120,"action":{"kind":"Undelegate","val":2,"amt":1557},"partialState":{"h":13,"t":78,"tokens":[4314,6895,9926,7010],"delegation":[3314,5895,8926,6010],"delegatorTokens":9999999954051}},{"ix":121,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":17,"t":102,"consumerPower":[null,8183,null,7453],"outstandingDowntime":[true,false,true,true]}},{"ix":122,"action":{"kind":"Undelegate","val":3,"amt":1831},"partialState":{"h":13,"t":78,"tokens":[4314,6895,9926,5179],"delegation":[3314,5895,8926,4179],"delegatorTokens":9999999954051}},{"ix":123,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":124,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":14,"t":84,"tokens":[4314,6895,9926,5179],"delegation":[3314,5895,8926,4179],"delegatorTokens":9999999954051,"jailed":[1000000000000071,null,null,null],"status":["unbonding","bonded","bonded","unbonding"]}},{"ix":125,"action":{"kind":"Undelegate","val":0,"amt":3540},"partialState":{"h":14,"t":84,"tokens":[4314,6895,9926,5179],"delegation":[3314,5895,8926,4179],"delegatorTokens":9999999954051}},{"ix":126,"action":{"kind":"Delegate","val":3,"amt":2041},"partialState":{"h":14,"t":84,"tokens":[4314,6895,9926,7220],"delegation":[3314,5895,8926,6220],"delegatorTokens":9999999952010}},{"ix":127,"action":{"kind":"Deliver","chain":"provider","numPackets":4},"partialState":{"h":14,"t":84,"tokens":[4314,6895,9926,7220],"delegation":[3314,5895,8926,6220],"delegatorTokens":9999999952010,"jailed":[1000000000000071,null,null,null],"status":["unbonding","bonded","bonded","unbonding"]}},{"ix":128,"action":{"kind":"Delegate","val":2,"amt":4155},"partialState":{"h":14,"t":84,"tokens":[4314,6895,14081,7220],"delegation":[3314,5895,13081,6220],"delegatorTokens":9999999947855}},{"ix":129,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":18,"t":108,"consumerPower":[null,8183,null,7453],"outstandingDowntime":[true,false,true,true]}},{"ix":130,"action":{"kind":"Undelegate","val":1,"amt":4093},"partialState":{"h":14,"t":84,"tokens":[4314,2802,14081,7220],"delegation":[3314,1802,13081,6220],"delegatorTokens":9999999947855}},{"ix":131,"action":{"kind":"Deliver","chain":"provider","numPackets":3},"partialState":{"h":14,"t":84,"tokens":[4314,2802,14081,7220],"delegation":[3314,1802,13081,6220],"delegatorTokens":9999999947855,"jailed":[1000000000000071,null,null,null],"status":["unbonding","bonded","bonded","unbonding"]}},{"ix":132,"action":{"kind":"Deliver","chain":"consumer","numPackets":1},"partialState":{"h":18,"t":108,"consumerPower":[null,8183,null,7453],"outstandingDowntime":[false,false,true,true]}},{"ix":133,"action":{"kind":"Deliver","chain":"consumer","numPackets":1},"partialState":{"h":18,"t":108,"consumerPower":[null,8183,null,7453],"outstandingDowntime":[false,false,true,true]}},{"ix":134,"action":{"kind":"Delegate","val":1,"amt":3897},"partialState":{"h":14,"t":84,"tokens":[4314,6699,14081,7220],"delegation":[3314,5699,13081,6220],"delegatorTokens":9999999943958}},{"ix":135,"action":{"kind":"Undelegate","val":3,"amt":2929},"partialState":{"h":14,"t":84,"tokens":[4314,6699,14081,4291],"delegation":[3314,5699,13081,3291],"delegatorTokens":9999999943958}},{"ix":136,"action":{"kind":"Undelegate","val":1,"amt":2623},"partialState":{"h":14,"t":84,"tokens":[4314,4076,14081,4291],"delegation":[3314,3076,13081,3291],"delegatorTokens":9999999943958}},{"ix":137,"action":{"kind":"Undelegate","val":3,"amt":1333},"partialState":{"h":14,"t":84,"tokens":[4314,4076,14081,2958],"delegation":[3314,3076,13081,1958],"delegatorTokens":9999999943958}},{"ix":138,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":139,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":19,"t":114,"consumerPower":[null,9139,7682,null],"outstandingDowntime":[false,false,true,true]}},{"ix":140,"action":{"kind":"Undelegate","val":2,"amt":1000},"partialState":{"h":14,"t":84,"tokens":[4314,4076,13081,2958],"delegation":[3314,3076,12081,1958],"delegatorTokens":9999999943958}},{"ix":141,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":142,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":143,"action":{"kind":"Delegate","val":1,"amt":1984},"partialState":{"h":14,"t":84,"tokens":[4314,6060,13081,2958],"delegation":[3314,5060,12081,1958],"delegatorTokens":9999999941974}},{"ix":144,"action":{"kind":"Undelegate","val":1,"amt":1695},"partialState":{"h":14,"t":84,"tokens":[4314,4365,13081,2958],"delegation":[3314,3365,12081,1958],"delegatorTokens":9999999941974}},{"ix":145,"action":{"kind":"Delegate","val":2,"amt":1401},"partialState":{"h":14,"t":84,"tokens":[4314,4365,14482,2958],"delegation":[3314,3365,13482,1958],"delegatorTokens":9999999940573}},{"ix":146,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":147,"action":{"kind":"Undelegate","val":0,"amt":1881},"partialState":{"h":14,"t":84,"tokens":[2433,4365,14482,2958],"delegation":[1433,3365,13482,1958],"delegatorTokens":9999999940573}},{"ix":148,"action":{"kind":"Deliver","chain":"provider","numPackets":1},"partialState":{"h":14,"t":84,"tokens":[2433,4365,14482,2958],"delegation":[1433,3365,13482,1958],"delegatorTokens":9999999940573,"jailed":[1000000000000071,null,null,null],"status":["unbonding","bonded","bonded","unbonding"]}},{"ix":149,"action":{"kind":"Delegate","val":3,"amt":3401},"partialState":{"h":14,"t":84,"tokens":[2433,4365,14482,6359],"delegation":[1433,3365,13482,5359],"delegatorTokens":9999999937172}},{"ix":150,"action":{"kind":"Undelegate","val":1,"amt":2503},"partialState":{"h":14,"t":84,"tokens":[2433,1862,14482,6359],"delegation":[1433,862,13482,5359],"delegatorTokens":9999999937172}},{"ix":151,"action":{"kind":"Delegate","val":2,"amt":3343},"partialState":{"h":14,"t":84,"tokens":[2433,1862,17825,6359],"delegation":[1433,862,16825,5359],"delegatorTokens":9999999933829}},{"ix":152,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":153,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":20,"t":120,"consumerPower":[null,9139,7682,null],"outstandingDowntime":[false,false,true,true]}},{"ix":154,"action":{"kind":"Undelegate","val":2,"amt":2200},"partialState":{"h":14,"t":84,"tokens":[2433,1862,15625,6359],"delegation":[1433,862,14625,5359],"delegatorTokens":9999999933829}},{"ix":155,"action":{"kind":"Deliver","chain":"provider","numPackets":3},"partialState":{"h":14,"t":84,"tokens":[2433,1862,15625,6359],"delegation":[1433,862,14625,5359],"delegatorTokens":9999999933829,"jailed":[1000000000000071,null,null,null],"status":["unbonding","bonded","bonded","unbonding"]}},{"ix":156,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":157,"action":{"kind":"Deliver","chain":"provider","numPackets":3},"partialState":{"h":14,"t":84,"tokens":[2433,1862,15625,6359],"delegation":[1433,862,14625,5359],"delegatorTokens":9999999933829,"jailed":[1000000000000071,null,null,null],"status":["unbonding","bonded","bonded","unbonding"]}},{"ix":158,"action":{"kind":"Delegate","val":2,"amt":1681},"partialState":{"h":14,"t":84,"tokens":[2433,1862,17306,6359],"delegation":[1433,862,16306,5359],"delegatorTokens":9999999932148}},{"ix":159,"action":{"kind":"Deliver","chain":"consumer","numPackets":5},"partialState":{"h":20,"t":120,"consumerPower":[null,9139,7682,null],"outstandingDowntime":[false,false,true,true]}},{"ix":160,"action":{"kind":"Delegate","val":3,"amt":2238},"partialState":{"h":14,"t":84,"tokens":[2433,1862,17306,8597],"delegation":[1433,862,16306,7597],"delegatorTokens":9999999929910}},{"ix":161,"action":{"kind":"Delegate","val":1,"amt":3889},"partialState":{"h":14,"t":84,"tokens":[2433,5751,17306,8597],"delegation":[1433,4751,16306,7597],"delegatorTokens":9999999926021}},{"ix":162,"action":{"kind":"Undelegate","val":1,"amt":4447},"partialState":{"h":14,"t":84,"tokens":[2433,1304,17306,8597],"delegation":[1433,304,16306,7597],"delegatorTokens":9999999926021}},{"ix":163,"action":{"kind":"Delegate","val":0,"amt":4904},"partialState":{"h":14,"t":84,"tokens":[7337,1304,17306,8597],"delegation":[6337,304,16306,7597],"delegatorTokens":9999999921117}},{"ix":164,"action":{"kind":"Delegate","val":0,"amt":2673},"partialState":{"h":14,"t":84,"tokens":[10010,1304,17306,8597],"delegation":[9010,304,16306,7597],"delegatorTokens":9999999918444}},{"ix":165,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":166,"action":{"kind":"Deliver","chain":"consumer","numPackets":2},"partialState":{"h":20,"t":120,"consumerPower":[null,9139,7682,null],"outstandingDowntime":[false,false,true,true]}},{"ix":167,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":168,"action":{"kind":"Undelegate","val":0,"amt":1065},"partialState":{"h":14,"t":84,"tokens":[8945,1304,17306,8597],"delegation":[7945,304,16306,7597],"delegatorTokens":9999999918444}},{"ix":169,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":21,"t":126,"consumerPower":[null,9139,7682,null],"outstandingDowntime":[false,false,true,true]}},{"ix":170,"action":{"kind":"Undelegate","val":2,"amt":2082},"partialState":{"h":14,"t":84,"tokens":[8945,1304,15224,8597],"delegation":[7945,304,14224,7597],"delegatorTokens":9999999918444}},{"ix":171,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":172,"action":{"kind":"Delegate","val":1,"amt":2746},"partialState":{"h":14,"t":84,"tokens":[8945,4050,15224,8597],"delegation":[7945,3050,14224,7597],"delegatorTokens":9999999915698}},{"ix":173,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":15,"t":90,"tokens":[8945,4050,15224,8597],"delegation":[7945,3050,14224,7597],"delegatorTokens":9999999919199,"jailed":[1000000000000071,null,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":174,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":175,"action":{"kind":"Undelegate","val":2,"amt":3296},"partialState":{"h":15,"t":90,"tokens":[8945,4050,11928,8597],"delegation":[7945,3050,10928,7597],"delegatorTokens":9999999919199}},{"ix":176,"action":{"kind":"Undelegate","val":2,"amt":3262},"partialState":{"h":15,"t":90,"tokens":[8945,4050,8666,8597],"delegation":[7945,3050,7666,7597],"delegatorTokens":9999999919199}},{"ix":177,"action":{"kind":"Deliver","chain":"provider","numPackets":4},"partialState":{"h":15,"t":90,"tokens":[8945,4050,8666,8597],"delegation":[7945,3050,7666,7597],"delegatorTokens":9999999919199,"jailed":[1000000000000071,null,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":178,"action":{"kind":"Deliver","chain":"provider","numPackets":6},"partialState":{"h":15,"t":90,"tokens":[8945,4050,8666,8597],"delegation":[7945,3050,7666,7597],"delegatorTokens":9999999919199,"jailed":[1000000000000071,null,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":179,"action":{"kind":"Delegate","val":0,"amt":2162},"partialState":{"h":15,"t":90,"tokens":[11107,4050,8666,8597],"delegation":[10107,3050,7666,7597],"delegatorTokens":9999999917037}},{"ix":180,"action":{"kind":"Delegate","val":2,"amt":4632},"partialState":{"h":15,"t":90,"tokens":[11107,4050,13298,8597],"delegation":[10107,3050,12298,7597],"delegatorTokens":9999999912405}},{"ix":181,"action":{"kind":"Deliver","chain":"consumer","numPackets":4},"partialState":{"h":21,"t":126,"consumerPower":[null,9139,7682,null],"outstandingDowntime":[false,false,true,true]}},{"ix":182,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":22,"t":132,"consumerPower":[null,6895,9926,null],"outstandingDowntime":[false,false,true,true]}},{"ix":183,"action":{"kind":"Undelegate","val":1,"amt":4018},"partialState":{"h":15,"t":90,"tokens":[11107,4050,13298,8597],"delegation":[10107,3050,12298,7597],"delegatorTokens":9999999912405}},{"ix":184,"action":{"kind":"Delegate","val":2,"amt":1226},"partialState":{"h":15,"t":90,"tokens":[11107,4050,14524,8597],"delegation":[10107,3050,13524,7597],"delegatorTokens":9999999911179}},{"ix":185,"action":{"kind":"Undelegate","val":0,"amt":4497},"partialState":{"h":15,"t":90,"tokens":[6610,4050,14524,8597],"delegation":[5610,3050,13524,7597],"delegatorTokens":9999999911179}},{"ix":186,"action":{"kind":"Undelegate","val":3,"amt":4640},"partialState":{"h":15,"t":90,"tokens":[6610,4050,14524,3957],"delegation":[5610,3050,13524,2957],"delegatorTokens":9999999911179}},{"ix":187,"action":{"kind":"Deliver","chain":"provider","numPackets":2},"partialState":{"h":15,"t":90,"tokens":[6610,4050,14524,3957],"delegation":[5610,3050,13524,2957],"delegatorTokens":9999999911179,"jailed":[1000000000000071,null,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":188,"action":{"kind":"Undelegate","val":2,"amt":2474},"partialState":{"h":15,"t":90,"tokens":[6610,4050,12050,3957],"delegation":[5610,3050,11050,2957],"delegatorTokens":9999999911179}},{"ix":189,"action":{"kind":"Undelegate","val":0,"amt":2109},"partialState":{"h":15,"t":90,"tokens":[4501,4050,12050,3957],"delegation":[3501,3050,11050,2957],"delegatorTokens":9999999911179}},{"ix":190,"action":{"kind":"Delegate","val":1,"amt":2948},"partialState":{"h":15,"t":90,"tokens":[4501,6998,12050,3957],"delegation":[3501,5998,11050,2957],"delegatorTokens":9999999908231}},{"ix":191,"action":{"kind":"Deliver","chain":"consumer","numPackets":5},"partialState":{"h":22,"t":132,"consumerPower":[null,6895,9926,null],"outstandingDowntime":[false,false,true,true]}},{"ix":192,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":16,"t":96,"tokens":[4501,6998,12050,3957],"delegation":[3501,5998,11050,2957],"delegatorTokens":9999999910003,"jailed":[1000000000000071,null,null,null],"status":["unbonding","bonded","bonded","unbonding"]}},{"ix":193,"action":{"kind":"Undelegate","val":3,"amt":2640},"partialState":{"h":16,"t":96,"tokens":[4501,6998,12050,1317],"delegation":[3501,5998,11050,317],"delegatorTokens":9999999910003}},{"ix":194,"action":{"kind":"Delegate","val":0,"amt":3044},"partialState":{"h":16,"t":96,"tokens":[7545,6998,12050,1317],"delegation":[6545,5998,11050,317],"delegatorTokens":9999999906959}},{"ix":195,"action":{"kind":"Undelegate","val":0,"amt":1406},"partialState":{"h":16,"t":96,"tokens":[6139,6998,12050,1317],"delegation":[5139,5998,11050,317],"delegatorTokens":9999999906959}},{"ix":196,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":17,"t":102,"tokens":[6139,6998,12050,1317],"delegation":[5139,5998,11050,317],"delegatorTokens":9999999906959,"jailed":[1000000000000071,null,null,null],"status":["unbonding","bonded","bonded","unbonding"]}},{"ix":197,"action":{"kind":"Undelegate","val":0,"amt":4425},"partialState":{"h":17,"t":102,"tokens":[1714,6998,12050,1317],"delegation":[714,5998,11050,317],"delegatorTokens":9999999906959}},{"ix":198,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":199,"action":{"kind":"Deliver","chain":"consumer","numPackets":1},"partialState":{"h":22,"t":132,"consumerPower":[null,6895,9926,null],"outstandingDowntime":[false,false,true,true]}}],"events":["send_downtime_slash_request","downtime_slash_request_outstanding","send_vsc_not_because_change","send_vsc_without_downtime_ack","send_downtime_slash_request","downtime_slash_request_outstanding","send_vsc_without_downtime_ack","send_vsc_not_because_change","send_vsc_without_downtime_ack","consumer_update_val","insufficient_shares","downtime_slash_request_outstanding","send_double_sign_slash_request","downtime_slash_request_outstanding","send_double_sign_slash_request","receive_slash_request_unbonded","receive_slash_request_unbonded","send_vsc_without_downtime_ack","downtime_slash_request_outstanding","send_double_sign_slash_request","insufficient_shares","insufficient_shares","insufficient_shares","send_double_sign_slash_request","insufficient_shares","downtime_slash_request_outstanding","more_than_one_third_val_power_change","send_vsc_without_downtime_ack","insufficient_shares","receive_double_sign_slash_request","receive_double_sign_slash_request","receive_double_sign_slash_request","send_vsc_without_downtime_ack","insufficient_shares","rebond_unval","send_vsc_without_downtime_ack","send_downtime_slash_request","more_than_one_third_val_power_change","rebond_unval","send_vsc_without_downtime_ack","consumer_del_val","consumer_del_val","consumer_add_val","consumer_add_val","send_vsc_without_downtime_ack","receive_double_sign_slash_request","consumer_del_val","consumer_del_val","consumer_add_val","more_than_one_third_val_power_change","rebond_unval","receive_downtime_slash_request","jail","send_vsc_with_downtime_ack","insufficient_shares","consumer_send_maturation","consumer_send_maturation","consumer_update_val","consumer_send_maturation","consumer_send_maturation","consumer_send_maturation","consumer_send_maturation","some_undels_expired_but_not_completed","send_vsc_without_downtime_ack","insufficient_shares","consumer_send_maturation","consumer_send_maturation","receive_downtime_slash_ack","consumer_update_val","consumer_add_val","consumer_del_val","more_than_one_third_val_power_change","rebond_unval","complete_undel_immediate","set_undel_hold_false","set_undel_hold_false","set_undel_hold_false","set_undel_hold_false","set_undel_hold_false","set_undel_hold_false","set_undel_hold_false","set_undel_hold_false","set_unval_hold_false","send_vsc_without_downtime_ack","consumer_send_maturation","consumer_update_val","consumer_update_val","insufficient_shares","more_than_one_third_val_power_change","rebond_unval","complete_undel_in_endblock","send_vsc_without_downtime_ack","send_vsc_not_because_change","send_vsc_without_downtime_ack"]},{"meta":{"commit":"7ffd0c04e4205cbc9caf212abfe6c59ee43153bf"},"constants":{"P":"provider","C":"consumer","UNBONDING_SECONDS_P":70,"UNBONDING_SECONDS_C":50,"TRUSTING_SECONDS":49,"NUM_VALIDATORS":4,"MAX_VALIDATORS":2,"SLASH_DOUBLESIGN":0,"SLASH_DOWNTIME":0,"JAIL_SECONDS":999999999999999,"BLOCK_SECONDS":6,"INITIAL_DELEGATOR_TOKENS":10000000000000,"DELEGATE_AMT_MIN":1000,"DELEGATE_AMT_MAX":5000,"UNDELEGATE_AMT_MIN":1000,"UNDELEGATE_AMT_MAX":5000,"ISDOWNTIME_PROBABILITY":0.5,"MAX_NUM_PACKETS_FOR_DELIVER":6},"actions":[{"ix":0,"action":{"kind":"Delegate","val":2,"amt":1834},"partialState":{"h":1,"t":6,"tokens":[5000,4000,4834,2000],"delegation":[4000,3000,3834,1000],"delegatorTokens":9999999998166}},{"ix":1,"action":{"kind":"Delegate","val":1,"amt":2674},"partialState":{"h":1,"t":6,"tokens":[5000,6674,4834,2000],"delegation":[4000,5674,3834,1000],"delegatorTokens":9999999995492}},{"ix":2,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":2,"t":12,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":3,"action":{"kind":"Delegate","val":0,"amt":3201},"partialState":{"h":1,"t":6,"tokens":[8201,6674,4834,2000],"delegation":[7201,5674,3834,1000],"delegatorTokens":9999999992291}},{"ix":4,"action":{"kind":"ConsumerSlash","val":3,"infractionHeight":1,"isDowntime":true},"partialState":{"h":2,"t":12,"outstandingDowntime":[false,false,false,true]}},{"ix":5,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":6,"action":{"kind":"Undelegate","val":2,"amt":3322},"partialState":{"h":1,"t":6,"tokens":[8201,6674,1512,2000],"delegation":[7201,5674,512,1000],"delegatorTokens":9999999992291}},{"ix":7,"action":{"kind":"Deliver","chain":"provider","numPackets":6},"partialState":{"h":1,"t":6,"tokens":[8201,6674,1512,2000],"delegation":[7201,5674,512,1000],"delegatorTokens":9999999992291,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":8,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":3,"t":18,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,false,false,true]}},{"ix":9,"action":{"kind":"Delegate","val":1,"amt":2169},"partialState":{"h":1,"t":6,"tokens":[8201,8843,1512,2000],"delegation":[7201,7843,512,1000],"delegatorTokens":9999999990122}},{"ix":10,"action":{"kind":"ConsumerSlash","val":0,"infractionHeight":2,"isDowntime":true},"partialState":{"h":3,"t":18,"outstandingDowntime":[true,false,false,true]}},{"ix":11,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":4,"t":24,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[true,false,false,true]}},{"ix":12,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":2,"t":12,"tokens":[8201,8843,1512,2000],"delegation":[7201,7843,512,1000],"delegatorTokens":9999999990122,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":13,"action":{"kind":"Deliver","chain":"provider","numPackets":5},"partialState":{"h":2,"t":12,"tokens":[8201,8843,1512,2000],"delegation":[7201,7843,512,1000],"delegatorTokens":9999999990122,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":14,"action":{"kind":"ConsumerSlash","val":0,"infractionHeight":2,"isDowntime":true},"partialState":{"h":4,"t":24,"outstandingDowntime":[true,false,false,true]}},{"ix":15,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":3,"t":18,"tokens":[8201,8843,1512,2000],"delegation":[7201,7843,512,1000],"delegatorTokens":9999999990122,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":16,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":17,"action":{"kind":"ConsumerSlash","val":2,"infractionHeight":1,"isDowntime":true},"partialState":{"h":4,"t":24,"outstandingDowntime":[true,false,true,true]}},{"ix":18,"action":{"kind":"Undelegate","val":2,"amt":4492},"partialState":{"h":3,"t":18,"tokens":[8201,8843,1512,2000],"delegation":[7201,7843,512,1000],"delegatorTokens":9999999990122}},{"ix":19,"action":{"kind":"Delegate","val":2,"amt":1813},"partialState":{"h":3,"t":18,"tokens":[8201,8843,3325,2000],"delegation":[7201,7843,2325,1000],"delegatorTokens":9999999988309}},{"ix":20,"action":{"kind":"Delegate","val":3,"amt":4852},"partialState":{"h":3,"t":18,"tokens":[8201,8843,3325,6852],"delegation":[7201,7843,2325,5852],"delegatorTokens":9999999983457}},{"ix":21,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":22,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":23,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":24,"action":{"kind":"Delegate","val":0,"amt":4946},"partialState":{"h":3,"t":18,"tokens":[13147,8843,3325,6852],"delegation":[12147,7843,2325,5852],"delegatorTokens":9999999978511}},{"ix":25,"action":{"kind":"Deliver","chain":"provider","numPackets":1},"partialState":{"h":3,"t":18,"tokens":[13147,8843,3325,6852],"delegation":[12147,7843,2325,5852],"delegatorTokens":9999999978511,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":26,"action":{"kind":"Delegate","val":3,"amt":3663},"partialState":{"h":3,"t":18,"tokens":[13147,8843,3325,10515],"delegation":[12147,7843,2325,9515],"delegatorTokens":9999999974848}},{"ix":27,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":5,"t":30,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[true,false,true,true]}},{"ix":28,"action":{"kind":"Deliver","chain":"provider","numPackets":1},"partialState":{"h":3,"t":18,"tokens":[13147,8843,3325,10515],"delegation":[12147,7843,2325,9515],"delegatorTokens":9999999974848,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":29,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":30,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":6,"t":36,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[true,false,true,true]}},{"ix":31,"action":{"kind":"Deliver","chain":"provider","numPackets":1},"partialState":{"h":3,"t":18,"tokens":[13147,8843,3325,10515],"delegation":[12147,7843,2325,9515],"delegatorTokens":9999999974848,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":32,"action":{"kind":"Undelegate","val":1,"amt":2774},"partialState":{"h":3,"t":18,"tokens":[13147,6069,3325,10515],"delegation":[12147,5069,2325,9515],"delegatorTokens":9999999974848}},{"ix":33,"action":{"kind":"Delegate","val":3,"amt":4165},"partialState":{"h":3,"t":18,"tokens":[13147,6069,3325,14680],"delegation":[12147,5069,2325,13680],"delegatorTokens":9999999970683}},{"ix":34,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":7,"t":42,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[true,false,true,true]}},{"ix":35,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":4,"t":24,"tokens":[13147,6069,3325,14680],"delegation":[12147,5069,2325,13680],"delegatorTokens":9999999970683,"jailed":[1000000000000017,null,null,null],"status":["bonded","unbonding","unbonded","bonded"]}},{"ix":36,"action":{"kind":"Undelegate","val":2,"amt":1617},"partialState":{"h":4,"t":24,"tokens":[13147,6069,1708,14680],"delegation":[12147,5069,708,13680],"delegatorTokens":9999999970683}},{"ix":37,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":38,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":39,"action":{"kind":"Delegate","val":0,"amt":1054},"partialState":{"h":4,"t":24,"tokens":[14201,6069,1708,14680],"delegation":[13201,5069,708,13680],"delegatorTokens":9999999969629}},{"ix":40,"action":{"kind":"Delegate","val":0,"amt":1849},"partialState":{"h":4,"t":24,"tokens":[16050,6069,1708,14680],"delegation":[15050,5069,708,13680],"delegatorTokens":9999999967780}},{"ix":41,"action":{"kind":"Delegate","val":0,"amt":4564},"partialState":{"h":4,"t":24,"tokens":[20614,6069,1708,14680],"delegation":[19614,5069,708,13680],"delegatorTokens":9999999963216}},{"ix":42,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":5,"t":30,"tokens":[20614,6069,1708,14680],"delegation":[19614,5069,708,13680],"delegatorTokens":9999999963216,"jailed":[1000000000000017,null,null,null],"status":["unbonding","bonded","unbonded","bonded"]}},{"ix":43,"action":{"kind":"Deliver","chain":"consumer","numPackets":3},"partialState":{"h":7,"t":42,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,false,true,true]}},{"ix":44,"action":{"kind":"Delegate","val":3,"amt":2364},"partialState":{"h":5,"t":30,"tokens":[20614,6069,1708,17044],"delegation":[19614,5069,708,16044],"delegatorTokens":9999999960852}},{"ix":45,"action":{"kind":"Undelegate","val":1,"amt":4823},"partialState":{"h":5,"t":30,"tokens":[20614,1246,1708,17044],"delegation":[19614,246,708,16044],"delegatorTokens":9999999960852}},{"ix":46,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":47,"action":{"kind":"Deliver","chain":"consumer","numPackets":2},"partialState":{"h":7,"t":42,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,false,true,true]}},{"ix":48,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":8,"t":48,"consumerPower":[13147,null,null,14680],"outstandingDowntime":[false,false,true,true]}},{"ix":49,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":6,"t":36,"tokens":[20614,1246,1708,17044],"delegation":[19614,246,708,16044],"delegatorTokens":9999999960852,"jailed":[1000000000000017,null,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":50,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":51,"action":{"kind":"Deliver","chain":"consumer","numPackets":6},"partialState":{"h":8,"t":48,"consumerPower":[13147,null,null,14680],"outstandingDowntime":[false,false,true,true]}},{"ix":52,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":9,"t":54,"consumerPower":[null,6069,null,14680],"outstandingDowntime":[false,false,true,true]}},{"ix":53,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":54,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":55,"action":{"kind":"Deliver","chain":"provider","numPackets":6},"partialState":{"h":6,"t":36,"tokens":[20614,1246,1708,17044],"delegation":[19614,246,708,16044],"delegatorTokens":9999999960852,"jailed":[1000000000000017,null,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":56,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":7,"t":42,"tokens":[20614,1246,1708,17044],"delegation":[19614,246,708,16044],"delegatorTokens":9999999960852,"jailed":[1000000000000017,null,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":57,"action":{"kind":"Delegate","val":1,"amt":4911},"partialState":{"h":7,"t":42,"tokens":[20614,6157,1708,17044],"delegation":[19614,5157,708,16044],"delegatorTokens":9999999955941}},{"ix":58,"action":{"kind":"Delegate","val":1,"amt":4519},"partialState":{"h":7,"t":42,"tokens":[20614,10676,1708,17044],"delegation":[19614,9676,708,16044],"delegatorTokens":9999999951422}},{"ix":59,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":10,"t":60,"consumerPower":[null,6069,null,14680],"outstandingDowntime":[false,false,true,true]}},{"ix":60,"action":{"kind":"Undelegate","val":1,"amt":2839},"partialState":{"h":7,"t":42,"tokens":[20614,7837,1708,17044],"delegation":[19614,6837,708,16044],"delegatorTokens":9999999951422}},{"ix":61,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":8,"t":48,"tokens":[20614,7837,1708,17044],"delegation":[19614,6837,708,16044],"delegatorTokens":9999999951422,"jailed":[1000000000000017,null,null,null],"status":["unbonding","bonded","unbonding","bonded"]}},{"ix":62,"action":{"kind":"Undelegate","val":2,"amt":2675},"partialState":{"h":8,"t":48,"tokens":[20614,7837,1708,17044],"delegation":[19614,6837,708,16044],"delegatorTokens":9999999951422}},{"ix":63,"action":{"kind":"Undelegate","val":0,"amt":2916},"partialState":{"h":8,"t":48,"tokens":[17698,7837,1708,17044],"delegation":[16698,6837,708,16044],"delegatorTokens":9999999951422}},{"ix":64,"action":{"kind":"Undelegate","val":3,"amt":4873},"partialState":{"h":8,"t":48,"tokens":[17698,7837,1708,12171],"delegation":[16698,6837,708,11171],"delegatorTokens":9999999951422}},{"ix":65,"action":{"kind":"Undelegate","val":1,"amt":4768},"partialState":{"h":8,"t":48,"tokens":[17698,3069,1708,12171],"delegation":[16698,2069,708,11171],"delegatorTokens":9999999951422}},{"ix":66,"action":{"kind":"Deliver","chain":"consumer","numPackets":1},"partialState":{"h":10,"t":60,"consumerPower":[null,6069,null,14680],"outstandingDowntime":[false,false,true,true]}},{"ix":67,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":68,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":69,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":11,"t":66,"consumerPower":[null,null,1708,17044],"outstandingDowntime":[false,false,true,true]}},{"ix":70,"action":{"kind":"Deliver","chain":"consumer","numPackets":4},"partialState":{"h":11,"t":66,"consumerPower":[null,null,1708,17044],"outstandingDowntime":[false,false,true,true]}},{"ix":71,"action":{"kind":"Deliver","chain":"consumer","numPackets":4},"partialState":{"h":11,"t":66,"consumerPower":[null,null,1708,17044],"outstandingDowntime":[false,false,true,true]}},{"ix":72,"action":{"kind":"Delegate","val":2,"amt":4859},"partialState":{"h":8,"t":48,"tokens":[17698,3069,6567,12171],"delegation":[16698,2069,5567,11171],"delegatorTokens":9999999946563}},{"ix":73,"action":{"kind":"Undelegate","val":0,"amt":4596},"partialState":{"h":8,"t":48,"tokens":[13102,3069,6567,12171],"delegation":[12102,2069,5567,11171],"delegatorTokens":9999999946563}},{"ix":74,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":12,"t":72,"consumerPower":[null,null,1708,17044],"outstandingDowntime":[false,false,true,true]}},{"ix":75,"action":{"kind":"Deliver","chain":"provider","numPackets":6},"partialState":{"h":8,"t":48,"tokens":[13102,3069,6567,12171],"delegation":[12102,2069,5567,11171],"delegatorTokens":9999999946563,"jailed":[1000000000000017,null,null,null],"status":["unbonding","bonded","unbonding","bonded"]}},{"ix":76,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":13,"t":78,"consumerPower":[null,null,1708,17044],"outstandingDowntime":[false,false,true,true]}},{"ix":77,"action":{"kind":"Undelegate","val":0,"amt":4402},"partialState":{"h":8,"t":48,"tokens":[8700,3069,6567,12171],"delegation":[7700,2069,5567,11171],"delegatorTokens":9999999946563}},{"ix":78,"action":{"kind":"Deliver","chain":"provider","numPackets":5},"partialState":{"h":8,"t":48,"tokens":[8700,3069,6567,12171],"delegation":[7700,2069,5567,11171],"delegatorTokens":9999999946563,"jailed":[1000000000000017,null,null,null],"status":["unbonding","bonded","unbonding","bonded"]}},{"ix":79,"action":{"kind":"Delegate","val":3,"amt":1166},"partialState":{"h":8,"t":48,"tokens":[8700,3069,6567,13337],"delegation":[7700,2069,5567,12337],"delegatorTokens":9999999945397}},{"ix":80,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":81,"action":{"kind":"Delegate","val":1,"amt":4626},"partialState":{"h":8,"t":48,"tokens":[8700,7695,6567,13337],"delegation":[7700,6695,5567,12337],"delegatorTokens":9999999940771}},{"ix":82,"action":{"kind":"Undelegate","val":0,"amt":3340},"partialState":{"h":8,"t":48,"tokens":[5360,7695,6567,13337],"delegation":[4360,6695,5567,12337],"delegatorTokens":9999999940771}},{"ix":83,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":14,"t":84,"consumerPower":[null,null,1708,17044],"outstandingDowntime":[false,false,true,true]}},{"ix":84,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":9,"t":54,"tokens":[5360,7695,6567,13337],"delegation":[4360,6695,5567,12337],"delegatorTokens":9999999940771,"jailed":[1000000000000017,null,null,null],"status":["unbonding","bonded","unbonding","bonded"]}},{"ix":85,"action":{"kind":"Undelegate","val":1,"amt":4191},"partialState":{"h":9,"t":54,"tokens":[5360,3504,6567,13337],"delegation":[4360,2504,5567,12337],"delegatorTokens":9999999940771}},{"ix":86,"action":{"kind":"Delegate","val":2,"amt":1352},"partialState":{"h":9,"t":54,"tokens":[5360,3504,7919,13337],"delegation":[4360,2504,6919,12337],"delegatorTokens":9999999939419}},{"ix":87,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":88,"action":{"kind":"Delegate","val":3,"amt":1396},"partialState":{"h":9,"t":54,"tokens":[5360,3504,7919,14733],"delegation":[4360,2504,6919,13733],"delegatorTokens":9999999938023}},{"ix":89,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":15,"t":90,"consumerPower":[null,null,1708,17044],"outstandingDowntime":[false,false,true,true]}},{"ix":90,"action":{"kind":"Undelegate","val":3,"amt":1234},"partialState":{"h":9,"t":54,"tokens":[5360,3504,7919,13499],"delegation":[4360,2504,6919,12499],"delegatorTokens":9999999938023}},{"ix":91,"action":{"kind":"Undelegate","val":0,"amt":1872},"partialState":{"h":9,"t":54,"tokens":[3488,3504,7919,13499],"delegation":[2488,2504,6919,12499],"delegatorTokens":9999999938023}},{"ix":92,"action":{"kind":"Deliver","chain":"consumer","numPackets":1},"partialState":{"h":15,"t":90,"consumerPower":[null,null,1708,17044],"outstandingDowntime":[false,false,true,true]}},{"ix":93,"action":{"kind":"Delegate","val":1,"amt":4555},"partialState":{"h":9,"t":54,"tokens":[3488,8059,7919,13499],"delegation":[2488,7059,6919,12499],"delegatorTokens":9999999933468}},{"ix":94,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":95,"action":{"kind":"Undelegate","val":0,"amt":3772},"partialState":{"h":9,"t":54,"tokens":[3488,8059,7919,13499],"delegation":[2488,7059,6919,12499],"delegatorTokens":9999999933468}},{"ix":96,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":97,"action":{"kind":"Deliver","chain":"provider","numPackets":3},"partialState":{"h":9,"t":54,"tokens":[3488,8059,7919,13499],"delegation":[2488,7059,6919,12499],"delegatorTokens":9999999933468,"jailed":[1000000000000017,null,null,null],"status":["unbonding","bonded","unbonding","bonded"]}},{"ix":98,"action":{"kind":"Undelegate","val":3,"amt":4719},"partialState":{"h":9,"t":54,"tokens":[3488,8059,7919,8780],"delegation":[2488,7059,6919,7780],"delegatorTokens":9999999933468}},{"ix":99,"action":{"kind":"Deliver","chain":"consumer","numPackets":1},"partialState":{"h":15,"t":90,"consumerPower":[null,null,1708,17044],"outstandingDowntime":[false,false,true,true]}},{"ix":100,"action":{"kind":"Deliver","chain":"consumer","numPackets":4},"partialState":{"h":15,"t":90,"consumerPower":[null,null,1708,17044],"outstandingDowntime":[false,false,true,true]}},{"ix":101,"action":{"kind":"Delegate","val":3,"amt":1642},"partialState":{"h":9,"t":54,"tokens":[3488,8059,7919,10422],"delegation":[2488,7059,6919,9422],"delegatorTokens":9999999931826}},{"ix":102,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":103,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":16,"t":96,"consumerPower":[null,7837,null,17044],"outstandingDowntime":[false,false,true,true]}},{"ix":104,"action":{"kind":"Delegate","val":2,"amt":2530},"partialState":{"h":9,"t":54,"tokens":[3488,8059,10449,10422],"delegation":[2488,7059,9449,9422],"delegatorTokens":9999999929296}},{"ix":105,"action":{"kind":"Delegate","val":3,"amt":1215},"partialState":{"h":9,"t":54,"tokens":[3488,8059,10449,11637],"delegation":[2488,7059,9449,10637],"delegatorTokens":9999999928081}},{"ix":106,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":107,"action":{"kind":"Delegate","val":1,"amt":1442},"partialState":{"h":9,"t":54,"tokens":[3488,9501,10449,11637],"delegation":[2488,8501,9449,10637],"delegatorTokens":9999999926639}},{"ix":108,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":109,"action":{"kind":"Deliver","chain":"consumer","numPackets":4},"partialState":{"h":16,"t":96,"consumerPower":[null,7837,null,17044],"outstandingDowntime":[false,false,true,true]}},{"ix":110,"action":{"kind":"Undelegate","val":3,"amt":2176},"partialState":{"h":9,"t":54,"tokens":[3488,9501,10449,9461],"delegation":[2488,8501,9449,8461],"delegatorTokens":9999999926639}},{"ix":111,"action":{"kind":"Delegate","val":3,"amt":2472},"partialState":{"h":9,"t":54,"tokens":[3488,9501,10449,11933],"delegation":[2488,8501,9449,10933],"delegatorTokens":9999999924167}},{"ix":112,"action":{"kind":"Deliver","chain":"consumer","numPackets":5},"partialState":{"h":16,"t":96,"consumerPower":[null,7837,null,17044],"outstandingDowntime":[false,false,true,true]}},{"ix":113,"action":{"kind":"Delegate","val":3,"amt":1925},"partialState":{"h":9,"t":54,"tokens":[3488,9501,10449,13858],"delegation":[2488,8501,9449,12858],"delegatorTokens":9999999922242}},{"ix":114,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":115,"action":{"kind":"Undelegate","val":3,"amt":2220},"partialState":{"h":9,"t":54,"tokens":[3488,9501,10449,11638],"delegation":[2488,8501,9449,10638],"delegatorTokens":9999999922242}},{"ix":116,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":10,"t":60,"tokens":[3488,9501,10449,11638],"delegation":[2488,8501,9449,10638],"delegatorTokens":9999999922242,"jailed":[1000000000000017,null,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":117,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":118,"action":{"kind":"Undelegate","val":1,"amt":1356},"partialState":{"h":10,"t":60,"tokens":[3488,8145,10449,11638],"delegation":[2488,7145,9449,10638],"delegatorTokens":9999999922242}},{"ix":119,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":120,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":121,"action":{"kind":"Delegate","val":0,"amt":2118},"partialState":{"h":10,"t":60,"tokens":[5606,8145,10449,11638],"delegation":[4606,7145,9449,10638],"delegatorTokens":9999999920124}},{"ix":122,"action":{"kind":"Delegate","val":0,"amt":1000},"partialState":{"h":10,"t":60,"tokens":[6606,8145,10449,11638],"delegation":[5606,7145,9449,10638],"delegatorTokens":9999999919124}},{"ix":123,"action":{"kind":"Delegate","val":1,"amt":4156},"partialState":{"h":10,"t":60,"tokens":[6606,12301,10449,11638],"delegation":[5606,11301,9449,10638],"delegatorTokens":9999999914968}},{"ix":124,"action":{"kind":"Undelegate","val":3,"amt":2059},"partialState":{"h":10,"t":60,"tokens":[6606,12301,10449,9579],"delegation":[5606,11301,9449,8579],"delegatorTokens":9999999914968}},{"ix":125,"action":{"kind":"Deliver","chain":"provider","numPackets":5},"partialState":{"h":10,"t":60,"tokens":[6606,12301,10449,9579],"delegation":[5606,11301,9449,8579],"delegatorTokens":9999999914968,"jailed":[1000000000000017,null,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":126,"action":{"kind":"Undelegate","val":1,"amt":2146},"partialState":{"h":10,"t":60,"tokens":[6606,10155,10449,9579],"delegation":[5606,9155,9449,8579],"delegatorTokens":9999999914968}},{"ix":127,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":17,"t":102,"consumerPower":[null,7837,null,17044],"outstandingDowntime":[false,false,true,true]}},{"ix":128,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":11,"t":66,"tokens":[6606,10155,10449,9579],"delegation":[5606,9155,9449,8579],"delegatorTokens":9999999914968,"jailed":[1000000000000017,null,null,null],"status":["unbonding","bonded","bonded","unbonding"]}},{"ix":129,"action":{"kind":"Delegate","val":0,"amt":1841},"partialState":{"h":11,"t":66,"tokens":[8447,10155,10449,9579],"delegation":[7447,9155,9449,8579],"delegatorTokens":9999999913127}},{"ix":130,"action":{"kind":"Delegate","val":0,"amt":3516},"partialState":{"h":11,"t":66,"tokens":[11963,10155,10449,9579],"delegation":[10963,9155,9449,8579],"delegatorTokens":9999999909611}},{"ix":131,"action":{"kind":"Delegate","val":3,"amt":2150},"partialState":{"h":11,"t":66,"tokens":[11963,10155,10449,11729],"delegation":[10963,9155,9449,10729],"delegatorTokens":9999999907461}},{"ix":132,"action":{"kind":"Delegate","val":1,"amt":1936},"partialState":{"h":11,"t":66,"tokens":[11963,12091,10449,11729],"delegation":[10963,11091,9449,10729],"delegatorTokens":9999999905525}},{"ix":133,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":12,"t":72,"tokens":[11963,12091,10449,11729],"delegation":[10963,11091,9449,10729],"delegatorTokens":9999999905525,"jailed":[1000000000000017,null,null,null],"status":["unbonding","bonded","unbonding","bonded"]}},{"ix":134,"action":{"kind":"Undelegate","val":1,"amt":3753},"partialState":{"h":12,"t":72,"tokens":[11963,8338,10449,11729],"delegation":[10963,7338,9449,10729],"delegatorTokens":9999999905525}},{"ix":135,"action":{"kind":"Undelegate","val":3,"amt":2228},"partialState":{"h":12,"t":72,"tokens":[11963,8338,10449,9501],"delegation":[10963,7338,9449,8501],"delegatorTokens":9999999905525}},{"ix":136,"action":{"kind":"Undelegate","val":2,"amt":2505},"partialState":{"h":12,"t":72,"tokens":[11963,8338,7944,9501],"delegation":[10963,7338,6944,8501],"delegatorTokens":9999999905525}},{"ix":137,"action":{"kind":"Deliver","chain":"provider","numPackets":2},"partialState":{"h":12,"t":72,"tokens":[11963,8338,7944,9501],"delegation":[10963,7338,6944,8501],"delegatorTokens":9999999905525,"jailed":[1000000000000017,null,null,null],"status":["unbonding","bonded","unbonding","bonded"]}},{"ix":138,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":139,"action":{"kind":"Deliver","chain":"consumer","numPackets":3},"partialState":{"h":17,"t":102,"consumerPower":[null,7837,null,17044],"outstandingDowntime":[false,false,true,true]}},{"ix":140,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":13,"t":78,"tokens":[11963,8338,7944,9501],"delegation":[10963,7338,6944,8501],"delegatorTokens":9999999905525,"jailed":[1000000000000017,null,null,null],"status":["unbonding","bonded","unbonding","bonded"]}},{"ix":141,"action":{"kind":"Delegate","val":1,"amt":3516},"partialState":{"h":13,"t":78,"tokens":[11963,11854,7944,9501],"delegation":[10963,10854,6944,8501],"delegatorTokens":9999999902009}},{"ix":142,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":143,"action":{"kind":"Delegate","val":1,"amt":3392},"partialState":{"h":13,"t":78,"tokens":[11963,15246,7944,9501],"delegation":[10963,14246,6944,8501],"delegatorTokens":9999999898617}},{"ix":144,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":145,"action":{"kind":"Undelegate","val":3,"amt":2893},"partialState":{"h":13,"t":78,"tokens":[11963,15246,7944,6608],"delegation":[10963,14246,6944,5608],"delegatorTokens":9999999898617}},{"ix":146,"action":{"kind":"Undelegate","val":0,"amt":1952},"partialState":{"h":13,"t":78,"tokens":[10011,15246,7944,6608],"delegation":[9011,14246,6944,5608],"delegatorTokens":9999999898617}},{"ix":147,"action":{"kind":"Deliver","chain":"provider","numPackets":5},"partialState":{"h":13,"t":78,"tokens":[10011,15246,7944,6608],"delegation":[9011,14246,6944,5608],"delegatorTokens":9999999898617,"jailed":[1000000000000017,null,null,null],"status":["unbonding","bonded","unbonding","bonded"]}},{"ix":148,"action":{"kind":"Delegate","val":1,"amt":1290},"partialState":{"h":13,"t":78,"tokens":[10011,16536,7944,6608],"delegation":[9011,15536,6944,5608],"delegatorTokens":9999999897327}},{"ix":149,"action":{"kind":"Undelegate","val":2,"amt":4364},"partialState":{"h":13,"t":78,"tokens":[10011,16536,3580,6608],"delegation":[9011,15536,2580,5608],"delegatorTokens":9999999897327}},{"ix":150,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":151,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":18,"t":108,"consumerPower":[null,10155,10449,null],"outstandingDowntime":[false,false,true,true]}},{"ix":152,"action":{"kind":"Deliver","chain":"consumer","numPackets":3},"partialState":{"h":18,"t":108,"consumerPower":[null,10155,10449,null],"outstandingDowntime":[false,false,true,true]}},{"ix":153,"action":{"kind":"Deliver","chain":"consumer","numPackets":5},"partialState":{"h":18,"t":108,"consumerPower":[null,10155,10449,null],"outstandingDowntime":[false,false,true,true]}},{"ix":154,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":155,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":14,"t":84,"tokens":[10011,16536,3580,6608],"delegation":[9011,15536,2580,5608],"delegatorTokens":9999999897327,"jailed":[1000000000000017,null,null,null],"status":["unbonding","bonded","unbonding","bonded"]}},{"ix":156,"action":{"kind":"Delegate","val":3,"amt":2879},"partialState":{"h":14,"t":84,"tokens":[10011,16536,3580,9487],"delegation":[9011,15536,2580,8487],"delegatorTokens":9999999894448}},{"ix":157,"action":{"kind":"Deliver","chain":"consumer","numPackets":5},"partialState":{"h":18,"t":108,"consumerPower":[null,10155,10449,null],"outstandingDowntime":[false,false,true,true]}},{"ix":158,"action":{"kind":"Deliver","chain":"provider","numPackets":4},"partialState":{"h":14,"t":84,"tokens":[10011,16536,3580,9487],"delegation":[9011,15536,2580,8487],"delegatorTokens":9999999894448,"jailed":[1000000000000017,null,null,null],"status":["unbonding","bonded","unbonding","bonded"]}},{"ix":159,"action":{"kind":"Undelegate","val":1,"amt":3968},"partialState":{"h":14,"t":84,"tokens":[10011,12568,3580,9487],"delegation":[9011,11568,2580,8487],"delegatorTokens":9999999894448}},{"ix":160,"action":{"kind":"Delegate","val":3,"amt":2286},"partialState":{"h":14,"t":84,"tokens":[10011,12568,3580,11773],"delegation":[9011,11568,2580,10773],"delegatorTokens":9999999892162}},{"ix":161,"action":{"kind":"Undelegate","val":1,"amt":2357},"partialState":{"h":14,"t":84,"tokens":[10011,10211,3580,11773],"delegation":[9011,9211,2580,10773],"delegatorTokens":9999999892162}},{"ix":162,"action":{"kind":"Deliver","chain":"consumer","numPackets":1},"partialState":{"h":18,"t":108,"consumerPower":[null,10155,10449,null],"outstandingDowntime":[false,false,true,true]}},{"ix":163,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":15,"t":90,"tokens":[10011,10211,3580,11773],"delegation":[9011,9211,2580,10773],"delegatorTokens":9999999895484,"jailed":[1000000000000017,null,null,null],"status":["unbonding","bonded","unbonding","bonded"]}},{"ix":164,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":165,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":166,"action":{"kind":"Undelegate","val":1,"amt":1811},"partialState":{"h":15,"t":90,"tokens":[10011,8400,3580,11773],"delegation":[9011,7400,2580,10773],"delegatorTokens":9999999895484}},{"ix":167,"action":{"kind":"Delegate","val":1,"amt":2868},"partialState":{"h":15,"t":90,"tokens":[10011,11268,3580,11773],"delegation":[9011,10268,2580,10773],"delegatorTokens":9999999892616}},{"ix":168,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":16,"t":96,"tokens":[10011,11268,3580,11773],"delegation":[9011,10268,2580,10773],"delegatorTokens":9999999895390,"jailed":[1000000000000017,null,null,null],"status":["unbonding","bonded","unbonding","bonded"]}},{"ix":169,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":170,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":171,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":19,"t":114,"consumerPower":[null,8338,null,9501],"outstandingDowntime":[false,false,true,true]}},{"ix":172,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":173,"action":{"kind":"Deliver","chain":"consumer","numPackets":1},"partialState":{"h":19,"t":114,"consumerPower":[null,8338,null,9501],"outstandingDowntime":[false,false,true,true]}},{"ix":174,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":20,"t":120,"consumerPower":[null,16536,null,6608],"outstandingDowntime":[false,false,true,true]}},{"ix":175,"action":{"kind":"Deliver","chain":"provider","numPackets":5},"partialState":{"h":16,"t":96,"tokens":[10011,11268,3580,11773],"delegation":[9011,10268,2580,10773],"delegatorTokens":9999999895390,"jailed":[1000000000000017,null,null,null],"status":["unbonding","bonded","unbonding","bonded"]}},{"ix":176,"action":{"kind":"Deliver","chain":"provider","numPackets":1},"partialState":{"h":16,"t":96,"tokens":[10011,11268,3580,11773],"delegation":[9011,10268,2580,10773],"delegatorTokens":9999999895390,"jailed":[1000000000000017,null,null,null],"status":["unbonding","bonded","unbonding","bonded"]}},{"ix":177,"action":{"kind":"Deliver","chain":"consumer","numPackets":6},"partialState":{"h":20,"t":120,"consumerPower":[null,16536,null,6608],"outstandingDowntime":[false,false,true,true]}},{"ix":178,"action":{"kind":"Undelegate","val":3,"amt":2090},"partialState":{"h":16,"t":96,"tokens":[10011,11268,3580,9683],"delegation":[9011,10268,2580,8683],"delegatorTokens":9999999895390}},{"ix":179,"action":{"kind":"Undelegate","val":3,"amt":1616},"partialState":{"h":16,"t":96,"tokens":[10011,11268,3580,8067],"delegation":[9011,10268,2580,7067],"delegatorTokens":9999999895390}},{"ix":180,"action":{"kind":"Deliver","chain":"provider","numPackets":6},"partialState":{"h":16,"t":96,"tokens":[10011,11268,3580,8067],"delegation":[9011,10268,2580,7067],"delegatorTokens":9999999895390,"jailed":[1000000000000017,null,null,null],"status":["unbonding","bonded","unbonding","bonded"]}},{"ix":181,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":21,"t":126,"consumerPower":[null,10211,null,11773],"outstandingDowntime":[false,false,true,true]}},{"ix":182,"action":{"kind":"Undelegate","val":0,"amt":4449},"partialState":{"h":16,"t":96,"tokens":[5562,11268,3580,8067],"delegation":[4562,10268,2580,7067],"delegatorTokens":9999999895390}},{"ix":183,"action":{"kind":"Deliver","chain":"consumer","numPackets":1},"partialState":{"h":21,"t":126,"consumerPower":[null,10211,null,11773],"outstandingDowntime":[false,false,true,true]}},{"ix":184,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":17,"t":102,"tokens":[5562,11268,3580,8067],"delegation":[4562,10268,2580,7067],"delegatorTokens":9999999897007,"jailed":[1000000000000017,null,null,null],"status":["unbonding","bonded","unbonding","bonded"]}},{"ix":185,"action":{"kind":"Undelegate","val":2,"amt":4737},"partialState":{"h":17,"t":102,"tokens":[5562,11268,3580,8067],"delegation":[4562,10268,2580,7067],"delegatorTokens":9999999897007}},{"ix":186,"action":{"kind":"Deliver","chain":"consumer","numPackets":5},"partialState":{"h":21,"t":126,"consumerPower":[null,10211,null,11773],"outstandingDowntime":[false,false,true,true]}},{"ix":187,"action":{"kind":"Undelegate","val":3,"amt":1881},"partialState":{"h":17,"t":102,"tokens":[5562,11268,3580,6186],"delegation":[4562,10268,2580,5186],"delegatorTokens":9999999897007}},{"ix":188,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":22,"t":132,"consumerPower":[null,11268,null,11773],"outstandingDowntime":[false,false,true,true]}},{"ix":189,"action":{"kind":"Deliver","chain":"provider","numPackets":4},"partialState":{"h":17,"t":102,"tokens":[5562,11268,3580,6186],"delegation":[4562,10268,2580,5186],"delegatorTokens":9999999897007,"jailed":[1000000000000017,null,null,null],"status":["unbonding","bonded","unbonding","bonded"]}},{"ix":190,"action":{"kind":"Delegate","val":3,"amt":3232},"partialState":{"h":17,"t":102,"tokens":[5562,11268,3580,9418],"delegation":[4562,10268,2580,8418],"delegatorTokens":9999999893775}},{"ix":191,"action":{"kind":"Delegate","val":2,"amt":4924},"partialState":{"h":17,"t":102,"tokens":[5562,11268,8504,9418],"delegation":[4562,10268,7504,8418],"delegatorTokens":9999999888851}},{"ix":192,"action":{"kind":"Delegate","val":2,"amt":4371},"partialState":{"h":17,"t":102,"tokens":[5562,11268,12875,9418],"delegation":[4562,10268,11875,8418],"delegatorTokens":9999999884480}},{"ix":193,"action":{"kind":"Undelegate","val":3,"amt":1652},"partialState":{"h":17,"t":102,"tokens":[5562,11268,12875,7766],"delegation":[4562,10268,11875,6766],"delegatorTokens":9999999884480}},{"ix":194,"action":{"kind":"Undelegate","val":0,"amt":4843},"partialState":{"h":17,"t":102,"tokens":[5562,11268,12875,7766],"delegation":[4562,10268,11875,6766],"delegatorTokens":9999999884480}},{"ix":195,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":23,"t":138,"consumerPower":[null,11268,null,11773],"outstandingDowntime":[false,false,true,true]}},{"ix":196,"action":{"kind":"Undelegate","val":2,"amt":3483},"partialState":{"h":17,"t":102,"tokens":[5562,11268,9392,7766],"delegation":[4562,10268,8392,6766],"delegatorTokens":9999999884480}},{"ix":197,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":198,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":24,"t":144,"consumerPower":[null,11268,null,11773],"outstandingDowntime":[false,false,true,true]}},{"ix":199,"action":{"kind":"Delegate","val":3,"amt":2997},"partialState":{"h":17,"t":102,"tokens":[5562,11268,9392,10763],"delegation":[4562,10268,8392,9763],"delegatorTokens":9999999881483}}],"events":["send_downtime_slash_request","send_downtime_slash_request","send_vsc_without_downtime_ack","downtime_slash_request_outstanding","receive_slash_request_unbonded","send_downtime_slash_request","insufficient_shares","more_than_one_third_val_power_change","receive_downtime_slash_request","jail","receive_slash_request_unbonded","send_vsc_with_downtime_ack","rebond_unval","send_vsc_without_downtime_ack","receive_downtime_slash_ack","consumer_update_val","consumer_del_val","consumer_add_val","send_vsc_without_downtime_ack","consumer_del_val","consumer_add_val","rebond_unval","send_vsc_without_downtime_ack","insufficient_shares","consumer_del_val","consumer_add_val","consumer_update_val","send_vsc_without_downtime_ack","insufficient_shares","consumer_add_val","consumer_del_val","more_than_one_third_val_power_change","rebond_unval","send_vsc_without_downtime_ack","consumer_send_maturation","consumer_send_maturation","more_than_one_third_val_power_change","rebond_unval","send_vsc_without_downtime_ack","more_than_one_third_val_power_change","rebond_unval","send_vsc_without_downtime_ack","send_vsc_without_downtime_ack","consumer_send_maturation","consumer_update_val","consumer_del_val","consumer_add_val","some_undels_expired_but_not_completed","send_vsc_without_downtime_ack","complete_undel_immediate","set_undel_hold_false","send_vsc_without_downtime_ack","complete_undel_in_endblock","send_vsc_without_downtime_ack","consumer_update_val","consumer_del_val","consumer_add_val","consumer_send_maturation","consumer_update_val","consumer_update_val","consumer_update_val","consumer_update_val","some_undels_expired_but_not_completed","complete_undel_immediate","set_unval_hold_false","send_vsc_without_downtime_ack","insufficient_shares","consumer_update_val","insufficient_shares"]},{"meta":{"commit":"7ffd0c04e4205cbc9caf212abfe6c59ee43153bf"},"constants":{"P":"provider","C":"consumer","UNBONDING_SECONDS_P":70,"UNBONDING_SECONDS_C":50,"TRUSTING_SECONDS":49,"NUM_VALIDATORS":4,"MAX_VALIDATORS":2,"SLASH_DOUBLESIGN":0,"SLASH_DOWNTIME":0,"JAIL_SECONDS":999999999999999,"BLOCK_SECONDS":6,"INITIAL_DELEGATOR_TOKENS":10000000000000,"DELEGATE_AMT_MIN":1000,"DELEGATE_AMT_MAX":5000,"UNDELEGATE_AMT_MIN":1000,"UNDELEGATE_AMT_MAX":5000,"ISDOWNTIME_PROBABILITY":0.5,"MAX_NUM_PACKETS_FOR_DELIVER":6},"actions":[{"ix":0,"action":{"kind":"ConsumerSlash","val":2,"infractionHeight":0,"isDowntime":false},"partialState":{"h":1,"t":6,"outstandingDowntime":[false,false,false,false]}},{"ix":1,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":2,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":2,"t":12,"tokens":[5000,4000,3000,2000],"delegation":[4000,3000,2000,1000],"delegatorTokens":10000000000000,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":3,"action":{"kind":"Deliver","chain":"consumer","numPackets":6},"partialState":{"h":1,"t":6,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":4,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":3,"t":18,"tokens":[5000,4000,3000,2000],"delegation":[4000,3000,2000,1000],"delegatorTokens":10000000000000,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":5,"action":{"kind":"Delegate","val":1,"amt":2551},"partialState":{"h":3,"t":18,"tokens":[5000,6551,3000,2000],"delegation":[4000,5551,2000,1000],"delegatorTokens":9999999997449}},{"ix":6,"action":{"kind":"ConsumerSlash","val":3,"infractionHeight":0,"isDowntime":true},"partialState":{"h":1,"t":6,"outstandingDowntime":[false,false,false,true]}},{"ix":7,"action":{"kind":"Delegate","val":1,"amt":3750},"partialState":{"h":3,"t":18,"tokens":[5000,10301,3000,2000],"delegation":[4000,9301,2000,1000],"delegatorTokens":9999999993699}},{"ix":8,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":9,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":10,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":4,"t":24,"tokens":[5000,10301,3000,2000],"delegation":[4000,9301,2000,1000],"delegatorTokens":9999999993699,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":11,"action":{"kind":"Deliver","chain":"provider","numPackets":6},"partialState":{"h":4,"t":24,"tokens":[5000,10301,3000,2000],"delegation":[4000,9301,2000,1000],"delegatorTokens":9999999993699,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":12,"action":{"kind":"ConsumerSlash","val":2,"infractionHeight":0,"isDowntime":true},"partialState":{"h":1,"t":6,"outstandingDowntime":[false,false,true,true]}},{"ix":13,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":5,"t":30,"tokens":[5000,10301,3000,2000],"delegation":[4000,9301,2000,1000],"delegatorTokens":9999999993699,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":14,"action":{"kind":"Deliver","chain":"consumer","numPackets":3},"partialState":{"h":1,"t":6,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,false,true,true]}},{"ix":15,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":16,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":6,"t":36,"tokens":[5000,10301,3000,2000],"delegation":[4000,9301,2000,1000],"delegatorTokens":9999999993699,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":17,"action":{"kind":"ConsumerSlash","val":3,"infractionHeight":0,"isDowntime":true},"partialState":{"h":1,"t":6,"outstandingDowntime":[false,false,true,true]}},{"ix":18,"action":{"kind":"ConsumerSlash","val":2,"infractionHeight":0,"isDowntime":false},"partialState":{"h":1,"t":6,"outstandingDowntime":[false,false,true,true]}},{"ix":19,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":7,"t":42,"tokens":[5000,10301,3000,2000],"delegation":[4000,9301,2000,1000],"delegatorTokens":9999999993699,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":20,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":8,"t":48,"tokens":[5000,10301,3000,2000],"delegation":[4000,9301,2000,1000],"delegatorTokens":9999999993699,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":21,"action":{"kind":"Delegate","val":0,"amt":3072},"partialState":{"h":8,"t":48,"tokens":[8072,10301,3000,2000],"delegation":[7072,9301,2000,1000],"delegatorTokens":9999999990627}},{"ix":22,"action":{"kind":"Deliver","chain":"consumer","numPackets":3},"partialState":{"h":1,"t":6,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,false,true,true]}},{"ix":23,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":24,"action":{"kind":"ConsumerSlash","val":1,"infractionHeight":0,"isDowntime":true},"partialState":{"h":1,"t":6,"outstandingDowntime":[false,true,true,true]}},{"ix":25,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":2,"t":12,"consumerPower":[5000,10301,null,null],"outstandingDowntime":[false,true,true,true]}},{"ix":26,"action":{"kind":"Deliver","chain":"consumer","numPackets":5},"partialState":{"h":2,"t":12,"consumerPower":[5000,10301,null,null],"outstandingDowntime":[false,true,true,true]}},{"ix":27,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":28,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":3,"t":18,"consumerPower":[5000,10301,null,null],"outstandingDowntime":[false,true,true,true]}},{"ix":29,"action":{"kind":"Deliver","chain":"consumer","numPackets":2},"partialState":{"h":3,"t":18,"consumerPower":[5000,10301,null,null],"outstandingDowntime":[false,true,true,true]}},{"ix":30,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":4,"t":24,"consumerPower":[5000,10301,null,null],"outstandingDowntime":[false,true,true,true]}},{"ix":31,"action":{"kind":"Deliver","chain":"provider","numPackets":6},"partialState":{"h":8,"t":48,"tokens":[8072,10301,3000,2000],"delegation":[7072,9301,2000,1000],"delegatorTokens":9999999990627,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":32,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":9,"t":54,"tokens":[8072,10301,3000,2000],"delegation":[7072,9301,2000,1000],"delegatorTokens":9999999990627,"jailed":[null,1000000000000047,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":33,"action":{"kind":"Undelegate","val":1,"amt":4866},"partialState":{"h":9,"t":54,"tokens":[8072,5435,3000,2000],"delegation":[7072,4435,2000,1000],"delegatorTokens":9999999990627}},{"ix":34,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":35,"action":{"kind":"Undelegate","val":0,"amt":3415},"partialState":{"h":9,"t":54,"tokens":[4657,5435,3000,2000],"delegation":[3657,4435,2000,1000],"delegatorTokens":9999999990627}},{"ix":36,"action":{"kind":"Delegate","val":0,"amt":2917},"partialState":{"h":9,"t":54,"tokens":[7574,5435,3000,2000],"delegation":[6574,4435,2000,1000],"delegatorTokens":9999999987710}},{"ix":37,"action":{"kind":"Deliver","chain":"provider","numPackets":6},"partialState":{"h":9,"t":54,"tokens":[7574,5435,3000,2000],"delegation":[6574,4435,2000,1000],"delegatorTokens":9999999987710,"jailed":[null,1000000000000047,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":38,"action":{"kind":"Delegate","val":0,"amt":4346},"partialState":{"h":9,"t":54,"tokens":[11920,5435,3000,2000],"delegation":[10920,4435,2000,1000],"delegatorTokens":9999999983364}},{"ix":39,"action":{"kind":"Undelegate","val":0,"amt":4952},"partialState":{"h":9,"t":54,"tokens":[6968,5435,3000,2000],"delegation":[5968,4435,2000,1000],"delegatorTokens":9999999983364}},{"ix":40,"action":{"kind":"Undelegate","val":0,"amt":2806},"partialState":{"h":9,"t":54,"tokens":[4162,5435,3000,2000],"delegation":[3162,4435,2000,1000],"delegatorTokens":9999999983364}},{"ix":41,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":10,"t":60,"tokens":[4162,5435,3000,2000],"delegation":[3162,4435,2000,1000],"delegatorTokens":9999999983364,"jailed":[null,1000000000000047,null,null],"status":["bonded","unbonding","bonded","unbonded"]}},{"ix":42,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":43,"action":{"kind":"Deliver","chain":"provider","numPackets":5},"partialState":{"h":10,"t":60,"tokens":[4162,5435,3000,2000],"delegation":[3162,4435,2000,1000],"delegatorTokens":9999999983364,"jailed":[null,1000000000000047,null,null],"status":["bonded","unbonding","bonded","unbonded"]}},{"ix":44,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":45,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":46,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":11,"t":66,"tokens":[4162,5435,3000,2000],"delegation":[3162,4435,2000,1000],"delegatorTokens":9999999983364,"jailed":[null,1000000000000047,null,null],"status":["bonded","unbonding","bonded","unbonded"]}},{"ix":47,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":48,"action":{"kind":"Deliver","chain":"provider","numPackets":6},"partialState":{"h":11,"t":66,"tokens":[4162,5435,3000,2000],"delegation":[3162,4435,2000,1000],"delegatorTokens":9999999983364,"jailed":[null,1000000000000047,null,null],"status":["bonded","unbonding","bonded","unbonded"]}},{"ix":49,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":50,"action":{"kind":"Deliver","chain":"provider","numPackets":5},"partialState":{"h":11,"t":66,"tokens":[4162,5435,3000,2000],"delegation":[3162,4435,2000,1000],"delegatorTokens":9999999983364,"jailed":[null,1000000000000047,null,null],"status":["bonded","unbonding","bonded","unbonded"]}},{"ix":51,"action":{"kind":"Undelegate","val":0,"amt":2515},"partialState":{"h":11,"t":66,"tokens":[1647,5435,3000,2000],"delegation":[647,4435,2000,1000],"delegatorTokens":9999999983364}},{"ix":52,"action":{"kind":"Deliver","chain":"provider","numPackets":6},"partialState":{"h":11,"t":66,"tokens":[1647,5435,3000,2000],"delegation":[647,4435,2000,1000],"delegatorTokens":9999999983364,"jailed":[null,1000000000000047,null,null],"status":["bonded","unbonding","bonded","unbonded"]}},{"ix":53,"action":{"kind":"Undelegate","val":3,"amt":3444},"partialState":{"h":11,"t":66,"tokens":[1647,5435,3000,2000],"delegation":[647,4435,2000,1000],"delegatorTokens":9999999983364}},{"ix":54,"action":{"kind":"Deliver","chain":"consumer","numPackets":6},"partialState":{"h":4,"t":24,"consumerPower":[5000,10301,null,null],"outstandingDowntime":[false,false,true,true]}},{"ix":55,"action":{"kind":"Deliver","chain":"provider","numPackets":5},"partialState":{"h":11,"t":66,"tokens":[1647,5435,3000,2000],"delegation":[647,4435,2000,1000],"delegatorTokens":9999999983364,"jailed":[null,1000000000000047,null,null],"status":["bonded","unbonding","bonded","unbonded"]}},{"ix":56,"action":{"kind":"Deliver","chain":"provider","numPackets":3},"partialState":{"h":11,"t":66,"tokens":[1647,5435,3000,2000],"delegation":[647,4435,2000,1000],"delegatorTokens":9999999983364,"jailed":[null,1000000000000047,null,null],"status":["bonded","unbonding","bonded","unbonded"]}},{"ix":57,"action":{"kind":"Delegate","val":2,"amt":2296},"partialState":{"h":11,"t":66,"tokens":[1647,5435,5296,2000],"delegation":[647,4435,4296,1000],"delegatorTokens":9999999981068}},{"ix":58,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":5,"t":30,"consumerPower":[4162,null,3000,null],"outstandingDowntime":[false,false,true,true]}},{"ix":59,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":60,"action":{"kind":"Undelegate","val":0,"amt":2515},"partialState":{"h":11,"t":66,"tokens":[1647,5435,5296,2000],"delegation":[647,4435,4296,1000],"delegatorTokens":9999999981068}},{"ix":61,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":62,"action":{"kind":"Deliver","chain":"provider","numPackets":2},"partialState":{"h":11,"t":66,"tokens":[1647,5435,5296,2000],"delegation":[647,4435,4296,1000],"delegatorTokens":9999999981068,"jailed":[null,1000000000000047,null,null],"status":["bonded","unbonding","bonded","unbonded"]}},{"ix":63,"action":{"kind":"Undelegate","val":2,"amt":1967},"partialState":{"h":11,"t":66,"tokens":[1647,5435,3329,2000],"delegation":[647,4435,2329,1000],"delegatorTokens":9999999981068}},{"ix":64,"action":{"kind":"Undelegate","val":1,"amt":4292},"partialState":{"h":11,"t":66,"tokens":[1647,1143,3329,2000],"delegation":[647,143,2329,1000],"delegatorTokens":9999999981068}},{"ix":65,"action":{"kind":"Undelegate","val":0,"amt":4813},"partialState":{"h":11,"t":66,"tokens":[1647,1143,3329,2000],"delegation":[647,143,2329,1000],"delegatorTokens":9999999981068}},{"ix":66,"action":{"kind":"Deliver","chain":"provider","numPackets":4},"partialState":{"h":11,"t":66,"tokens":[1647,1143,3329,2000],"delegation":[647,143,2329,1000],"delegatorTokens":9999999981068,"jailed":[null,1000000000000047,null,null],"status":["bonded","unbonding","bonded","unbonded"]}},{"ix":67,"action":{"kind":"Deliver","chain":"provider","numPackets":6},"partialState":{"h":11,"t":66,"tokens":[1647,1143,3329,2000],"delegation":[647,143,2329,1000],"delegatorTokens":9999999981068,"jailed":[null,1000000000000047,null,null],"status":["bonded","unbonding","bonded","unbonded"]}},{"ix":68,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":12,"t":72,"tokens":[1647,1143,3329,2000],"delegation":[647,143,2329,1000],"delegatorTokens":9999999981068,"jailed":[null,1000000000000047,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":69,"action":{"kind":"Undelegate","val":1,"amt":3335},"partialState":{"h":12,"t":72,"tokens":[1647,1143,3329,2000],"delegation":[647,143,2329,1000],"delegatorTokens":9999999981068}},{"ix":70,"action":{"kind":"Deliver","chain":"consumer","numPackets":6},"partialState":{"h":5,"t":30,"consumerPower":[4162,null,3000,null],"outstandingDowntime":[false,false,true,true]}},{"ix":71,"action":{"kind":"Deliver","chain":"consumer","numPackets":1},"partialState":{"h":5,"t":30,"consumerPower":[4162,null,3000,null],"outstandingDowntime":[false,false,true,true]}},{"ix":72,"action":{"kind":"Undelegate","val":2,"amt":1545},"partialState":{"h":12,"t":72,"tokens":[1647,1143,1784,2000],"delegation":[647,143,784,1000],"delegatorTokens":9999999981068}},{"ix":73,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":74,"action":{"kind":"Delegate","val":1,"amt":4463},"partialState":{"h":12,"t":72,"tokens":[1647,5606,1784,2000],"delegation":[647,4606,784,1000],"delegatorTokens":9999999976605}},{"ix":75,"action":{"kind":"Deliver","chain":"provider","numPackets":5},"partialState":{"h":12,"t":72,"tokens":[1647,5606,1784,2000],"delegation":[647,4606,784,1000],"delegatorTokens":9999999976605,"jailed":[null,1000000000000047,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":76,"action":{"kind":"Deliver","chain":"provider","numPackets":5},"partialState":{"h":12,"t":72,"tokens":[1647,5606,1784,2000],"delegation":[647,4606,784,1000],"delegatorTokens":9999999976605,"jailed":[null,1000000000000047,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":77,"action":{"kind":"Deliver","chain":"consumer","numPackets":6},"partialState":{"h":5,"t":30,"consumerPower":[4162,null,3000,null],"outstandingDowntime":[false,false,true,true]}},{"ix":78,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":6,"t":36,"consumerPower":[4162,null,3000,null],"outstandingDowntime":[false,false,true,true]}},{"ix":79,"action":{"kind":"Delegate","val":0,"amt":1034},"partialState":{"h":12,"t":72,"tokens":[2681,5606,1784,2000],"delegation":[1681,4606,784,1000],"delegatorTokens":9999999975571}},{"ix":80,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":81,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":82,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":83,"action":{"kind":"Deliver","chain":"provider","numPackets":3},"partialState":{"h":12,"t":72,"tokens":[2681,5606,1784,2000],"delegation":[1681,4606,784,1000],"delegatorTokens":9999999975571,"jailed":[null,1000000000000047,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":84,"action":{"kind":"Delegate","val":3,"amt":2153},"partialState":{"h":12,"t":72,"tokens":[2681,5606,1784,4153],"delegation":[1681,4606,784,3153],"delegatorTokens":9999999973418}},{"ix":85,"action":{"kind":"Undelegate","val":3,"amt":4683},"partialState":{"h":12,"t":72,"tokens":[2681,5606,1784,4153],"delegation":[1681,4606,784,3153],"delegatorTokens":9999999973418}},{"ix":86,"action":{"kind":"Deliver","chain":"provider","numPackets":2},"partialState":{"h":12,"t":72,"tokens":[2681,5606,1784,4153],"delegation":[1681,4606,784,3153],"delegatorTokens":9999999973418,"jailed":[null,1000000000000047,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":87,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":7,"t":42,"consumerPower":[4162,null,3000,null],"outstandingDowntime":[false,false,true,true]}},{"ix":88,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":8,"t":48,"consumerPower":[4162,null,3000,null],"outstandingDowntime":[false,false,true,true]}},{"ix":89,"action":{"kind":"Deliver","chain":"provider","numPackets":5},"partialState":{"h":12,"t":72,"tokens":[2681,5606,1784,4153],"delegation":[1681,4606,784,3153],"delegatorTokens":9999999973418,"jailed":[null,1000000000000047,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":90,"action":{"kind":"Undelegate","val":3,"amt":1247},"partialState":{"h":12,"t":72,"tokens":[2681,5606,1784,2906],"delegation":[1681,4606,784,1906],"delegatorTokens":9999999973418}},{"ix":91,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":9,"t":54,"consumerPower":[4162,null,3000,null],"outstandingDowntime":[false,false,true,true]}},{"ix":92,"action":{"kind":"Deliver","chain":"consumer","numPackets":6},"partialState":{"h":9,"t":54,"consumerPower":[4162,null,3000,null],"outstandingDowntime":[false,false,true,true]}},{"ix":93,"action":{"kind":"Delegate","val":0,"amt":3762},"partialState":{"h":12,"t":72,"tokens":[6443,5606,1784,2906],"delegation":[5443,4606,784,1906],"delegatorTokens":9999999969656}},{"ix":94,"action":{"kind":"Deliver","chain":"consumer","numPackets":4},"partialState":{"h":9,"t":54,"consumerPower":[4162,null,3000,null],"outstandingDowntime":[false,false,true,true]}},{"ix":95,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":13,"t":78,"tokens":[6443,5606,1784,2906],"delegation":[5443,4606,784,1906],"delegatorTokens":9999999969656,"jailed":[null,1000000000000047,null,null],"status":["bonded","unbonding","unbonding","bonded"]}},{"ix":96,"action":{"kind":"Delegate","val":1,"amt":2658},"partialState":{"h":13,"t":78,"tokens":[6443,8264,1784,2906],"delegation":[5443,7264,784,1906],"delegatorTokens":9999999966998}},{"ix":97,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":10,"t":60,"consumerPower":[4162,null,3000,null],"outstandingDowntime":[false,false,true,true]}},{"ix":98,"action":{"kind":"Deliver","chain":"consumer","numPackets":4},"partialState":{"h":10,"t":60,"consumerPower":[4162,null,3000,null],"outstandingDowntime":[false,false,true,true]}},{"ix":99,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":100,"action":{"kind":"Undelegate","val":1,"amt":3577},"partialState":{"h":13,"t":78,"tokens":[6443,4687,1784,2906],"delegation":[5443,3687,784,1906],"delegatorTokens":9999999966998}},{"ix":101,"action":{"kind":"Deliver","chain":"consumer","numPackets":6},"partialState":{"h":10,"t":60,"consumerPower":[4162,null,3000,null],"outstandingDowntime":[false,false,true,true]}},{"ix":102,"action":{"kind":"Undelegate","val":1,"amt":4268},"partialState":{"h":13,"t":78,"tokens":[6443,4687,1784,2906],"delegation":[5443,3687,784,1906],"delegatorTokens":9999999966998}},{"ix":103,"action":{"kind":"Delegate","val":1,"amt":2284},"partialState":{"h":13,"t":78,"tokens":[6443,6971,1784,2906],"delegation":[5443,5971,784,1906],"delegatorTokens":9999999964714}},{"ix":104,"action":{"kind":"Undelegate","val":1,"amt":3003},"partialState":{"h":13,"t":78,"tokens":[6443,3968,1784,2906],"delegation":[5443,2968,784,1906],"delegatorTokens":9999999964714}},{"ix":105,"action":{"kind":"Undelegate","val":2,"amt":1284},"partialState":{"h":13,"t":78,"tokens":[6443,3968,1784,2906],"delegation":[5443,2968,784,1906],"delegatorTokens":9999999964714}},{"ix":106,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":107,"action":{"kind":"Delegate","val":0,"amt":1489},"partialState":{"h":13,"t":78,"tokens":[7932,3968,1784,2906],"delegation":[6932,2968,784,1906],"delegatorTokens":9999999963225}},{"ix":108,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":11,"t":66,"consumerPower":[null,null,3329,2000],"outstandingDowntime":[false,false,true,true]}},{"ix":109,"action":{"kind":"Undelegate","val":3,"amt":2897},"partialState":{"h":13,"t":78,"tokens":[7932,3968,1784,2906],"delegation":[6932,2968,784,1906],"delegatorTokens":9999999963225}},{"ix":110,"action":{"kind":"Undelegate","val":3,"amt":1525},"partialState":{"h":13,"t":78,"tokens":[7932,3968,1784,1381],"delegation":[6932,2968,784,381],"delegatorTokens":9999999963225}},{"ix":111,"action":{"kind":"Deliver","chain":"provider","numPackets":4},"partialState":{"h":13,"t":78,"tokens":[7932,3968,1784,1381],"delegation":[6932,2968,784,381],"delegatorTokens":9999999963225,"jailed":[null,1000000000000047,null,null],"status":["bonded","unbonding","unbonding","bonded"]}},{"ix":112,"action":{"kind":"Delegate","val":2,"amt":3148},"partialState":{"h":13,"t":78,"tokens":[7932,3968,4932,1381],"delegation":[6932,2968,3932,381],"delegatorTokens":9999999960077}},{"ix":113,"action":{"kind":"Undelegate","val":1,"amt":1275},"partialState":{"h":13,"t":78,"tokens":[7932,2693,4932,1381],"delegation":[6932,1693,3932,381],"delegatorTokens":9999999960077}},{"ix":114,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":115,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":12,"t":72,"consumerPower":[null,null,3329,2000],"outstandingDowntime":[false,false,true,true]}},{"ix":116,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":117,"action":{"kind":"Delegate","val":0,"amt":2485},"partialState":{"h":13,"t":78,"tokens":[10417,2693,4932,1381],"delegation":[9417,1693,3932,381],"delegatorTokens":9999999957592}},{"ix":118,"action":{"kind":"Undelegate","val":3,"amt":4869},"partialState":{"h":13,"t":78,"tokens":[10417,2693,4932,1381],"delegation":[9417,1693,3932,381],"delegatorTokens":9999999957592}},{"ix":119,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":120,"action":{"kind":"Undelegate","val":0,"amt":3209},"partialState":{"h":13,"t":78,"tokens":[7208,2693,4932,1381],"delegation":[6208,1693,3932,381],"delegatorTokens":9999999957592}},{"ix":121,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":122,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":13,"t":78,"consumerPower":[null,null,3329,2000],"outstandingDowntime":[false,false,true,true]}},{"ix":123,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":124,"action":{"kind":"Delegate","val":1,"amt":1121},"partialState":{"h":13,"t":78,"tokens":[7208,3814,4932,1381],"delegation":[6208,2814,3932,381],"delegatorTokens":9999999956471}},{"ix":125,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":14,"t":84,"tokens":[7208,3814,4932,1381],"delegation":[6208,2814,3932,381],"delegatorTokens":9999999956471,"jailed":[null,1000000000000047,null,null],"status":["bonded","unbonding","bonded","unbonding"]}},{"ix":126,"action":{"kind":"Deliver","chain":"provider","numPackets":6},"partialState":{"h":14,"t":84,"tokens":[7208,3814,4932,1381],"delegation":[6208,2814,3932,381],"delegatorTokens":9999999956471,"jailed":[null,1000000000000047,null,null],"status":["bonded","unbonding","bonded","unbonding"]}},{"ix":127,"action":{"kind":"Delegate","val":2,"amt":3436},"partialState":{"h":14,"t":84,"tokens":[7208,3814,8368,1381],"delegation":[6208,2814,7368,381],"delegatorTokens":9999999953035}},{"ix":128,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":129,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":130,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":15,"t":90,"tokens":[7208,3814,8368,1381],"delegation":[6208,2814,7368,381],"delegatorTokens":9999999953035,"jailed":[null,1000000000000047,null,null],"status":["bonded","unbonding","bonded","unbonding"]}},{"ix":131,"action":{"kind":"Delegate","val":2,"amt":2364},"partialState":{"h":15,"t":90,"tokens":[7208,3814,10732,1381],"delegation":[6208,2814,9732,381],"delegatorTokens":9999999950671}},{"ix":132,"action":{"kind":"Delegate","val":2,"amt":4449},"partialState":{"h":15,"t":90,"tokens":[7208,3814,15181,1381],"delegation":[6208,2814,14181,381],"delegatorTokens":9999999946222}},{"ix":133,"action":{"kind":"Delegate","val":1,"amt":4868},"partialState":{"h":15,"t":90,"tokens":[7208,8682,15181,1381],"delegation":[6208,7682,14181,381],"delegatorTokens":9999999941354}},{"ix":134,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":16,"t":96,"tokens":[7208,8682,15181,1381],"delegation":[6208,7682,14181,381],"delegatorTokens":9999999941354,"jailed":[null,1000000000000047,null,null],"status":["bonded","unbonding","bonded","unbonding"]}},{"ix":135,"action":{"kind":"Deliver","chain":"consumer","numPackets":6},"partialState":{"h":13,"t":78,"consumerPower":[null,null,3329,2000],"outstandingDowntime":[false,false,true,true]}},{"ix":136,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":137,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":138,"action":{"kind":"Deliver","chain":"provider","numPackets":6},"partialState":{"h":16,"t":96,"tokens":[7208,8682,15181,1381],"delegation":[6208,7682,14181,381],"delegatorTokens":9999999941354,"jailed":[null,1000000000000047,null,null],"status":["bonded","unbonding","bonded","unbonding"]}},{"ix":139,"action":{"kind":"Delegate","val":0,"amt":3267},"partialState":{"h":16,"t":96,"tokens":[10475,8682,15181,1381],"delegation":[9475,7682,14181,381],"delegatorTokens":9999999938087}},{"ix":140,"action":{"kind":"Delegate","val":1,"amt":1757},"partialState":{"h":16,"t":96,"tokens":[10475,10439,15181,1381],"delegation":[9475,9439,14181,381],"delegatorTokens":9999999936330}},{"ix":141,"action":{"kind":"Deliver","chain":"provider","numPackets":6},"partialState":{"h":16,"t":96,"tokens":[10475,10439,15181,1381],"delegation":[9475,9439,14181,381],"delegatorTokens":9999999936330,"jailed":[null,1000000000000047,null,null],"status":["bonded","unbonding","bonded","unbonding"]}},{"ix":142,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":143,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":17,"t":102,"tokens":[10475,10439,15181,1381],"delegation":[9475,9439,14181,381],"delegatorTokens":9999999936330,"jailed":[null,1000000000000047,null,null],"status":["bonded","unbonding","bonded","unbonding"]}},{"ix":144,"action":{"kind":"Delegate","val":1,"amt":1393},"partialState":{"h":17,"t":102,"tokens":[10475,11832,15181,1381],"delegation":[9475,10832,14181,381],"delegatorTokens":9999999934937}},{"ix":145,"action":{"kind":"Delegate","val":2,"amt":4434},"partialState":{"h":17,"t":102,"tokens":[10475,11832,19615,1381],"delegation":[9475,10832,18615,381],"delegatorTokens":9999999930503}},{"ix":146,"action":{"kind":"Deliver","chain":"provider","numPackets":6},"partialState":{"h":17,"t":102,"tokens":[10475,11832,19615,1381],"delegation":[9475,10832,18615,381],"delegatorTokens":9999999930503,"jailed":[null,1000000000000047,null,null],"status":["bonded","unbonding","bonded","unbonding"]}},{"ix":147,"action":{"kind":"Delegate","val":3,"amt":1991},"partialState":{"h":17,"t":102,"tokens":[10475,11832,19615,3372],"delegation":[9475,10832,18615,2372],"delegatorTokens":9999999928512}},{"ix":148,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":18,"t":108,"tokens":[10475,11832,19615,3372],"delegation":[9475,10832,18615,2372],"delegatorTokens":9999999928512,"jailed":[null,1000000000000047,null,null],"status":["bonded","unbonding","bonded","unbonding"]}},{"ix":149,"action":{"kind":"Deliver","chain":"consumer","numPackets":1},"partialState":{"h":13,"t":78,"consumerPower":[null,null,3329,2000],"outstandingDowntime":[false,false,true,true]}},{"ix":150,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":151,"action":{"kind":"Delegate","val":0,"amt":2842},"partialState":{"h":18,"t":108,"tokens":[13317,11832,19615,3372],"delegation":[12317,10832,18615,2372],"delegatorTokens":9999999925670}},{"ix":152,"action":{"kind":"Delegate","val":1,"amt":4161},"partialState":{"h":18,"t":108,"tokens":[13317,15993,19615,3372],"delegation":[12317,14993,18615,2372],"delegatorTokens":9999999921509}},{"ix":153,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":14,"t":84,"consumerPower":[7208,null,15181,null],"outstandingDowntime":[false,false,true,true]}},{"ix":154,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":19,"t":114,"tokens":[13317,15993,19615,3372],"delegation":[12317,14993,18615,2372],"delegatorTokens":9999999921509,"jailed":[null,1000000000000047,null,null],"status":["bonded","unbonding","bonded","unbonding"]}},{"ix":155,"action":{"kind":"Deliver","chain":"consumer","numPackets":1},"partialState":{"h":14,"t":84,"consumerPower":[7208,null,15181,null],"outstandingDowntime":[false,false,true,true]}},{"ix":156,"action":{"kind":"Delegate","val":3,"amt":4946},"partialState":{"h":19,"t":114,"tokens":[13317,15993,19615,8318],"delegation":[12317,14993,18615,7318],"delegatorTokens":9999999916563}},{"ix":157,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":158,"action":{"kind":"Deliver","chain":"consumer","numPackets":1},"partialState":{"h":14,"t":84,"consumerPower":[7208,null,15181,null],"outstandingDowntime":[false,false,true,true]}},{"ix":159,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":160,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":161,"action":{"kind":"Deliver","chain":"consumer","numPackets":3},"partialState":{"h":14,"t":84,"consumerPower":[7208,null,15181,null],"outstandingDowntime":[false,false,true,true]}},{"ix":162,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":15,"t":90,"consumerPower":[10475,null,19615,null],"outstandingDowntime":[false,false,true,true]}},{"ix":163,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":164,"action":{"kind":"Delegate","val":1,"amt":4390},"partialState":{"h":19,"t":114,"tokens":[13317,20383,19615,8318],"delegation":[12317,19383,18615,7318],"delegatorTokens":9999999912173}},{"ix":165,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":166,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":167,"action":{"kind":"Delegate","val":0,"amt":4003},"partialState":{"h":19,"t":114,"tokens":[17320,20383,19615,8318],"delegation":[16320,19383,18615,7318],"delegatorTokens":9999999908170}},{"ix":168,"action":{"kind":"Delegate","val":1,"amt":1750},"partialState":{"h":19,"t":114,"tokens":[17320,22133,19615,8318],"delegation":[16320,21133,18615,7318],"delegatorTokens":9999999906420}},{"ix":169,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":170,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":171,"action":{"kind":"Undelegate","val":1,"amt":2395},"partialState":{"h":19,"t":114,"tokens":[17320,19738,19615,8318],"delegation":[16320,18738,18615,7318],"delegatorTokens":9999999906420}},{"ix":172,"action":{"kind":"Delegate","val":1,"amt":3216},"partialState":{"h":19,"t":114,"tokens":[17320,22954,19615,8318],"delegation":[16320,21954,18615,7318],"delegatorTokens":9999999903204}},{"ix":173,"action":{"kind":"Undelegate","val":1,"amt":1041},"partialState":{"h":19,"t":114,"tokens":[17320,21913,19615,8318],"delegation":[16320,20913,18615,7318],"delegatorTokens":9999999903204}},{"ix":174,"action":{"kind":"Delegate","val":0,"amt":2195},"partialState":{"h":19,"t":114,"tokens":[19515,21913,19615,8318],"delegation":[18515,20913,18615,7318],"delegatorTokens":9999999901009}},{"ix":175,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":176,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":177,"action":{"kind":"Deliver","chain":"consumer","numPackets":6},"partialState":{"h":15,"t":90,"consumerPower":[10475,null,19615,null],"outstandingDowntime":[false,false,true,true]}},{"ix":178,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":179,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":16,"t":96,"consumerPower":[10475,null,19615,null],"outstandingDowntime":[false,false,true,true]}},{"ix":180,"action":{"kind":"Deliver","chain":"provider","numPackets":2},"partialState":{"h":19,"t":114,"tokens":[19515,21913,19615,8318],"delegation":[18515,20913,18615,7318],"delegatorTokens":9999999901009,"jailed":[null,1000000000000047,null,null],"status":["bonded","unbonding","bonded","unbonding"]}},{"ix":181,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":182,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":17,"t":102,"consumerPower":[10475,null,19615,null],"outstandingDowntime":[false,false,true,true]}},{"ix":183,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":18,"t":108,"consumerPower":[10475,null,19615,null],"outstandingDowntime":[false,false,true,true]}},{"ix":184,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":20,"t":120,"tokens":[19515,21913,19615,8318],"delegation":[18515,20913,18615,7318],"delegatorTokens":9999999901009,"jailed":[null,1000000000000047,null,null],"status":["bonded","unbonding","bonded","unbonding"]}},{"ix":185,"action":{"kind":"Deliver","chain":"consumer","numPackets":5},"partialState":{"h":18,"t":108,"consumerPower":[10475,null,19615,null],"outstandingDowntime":[false,false,true,true]}},{"ix":186,"action":{"kind":"Undelegate","val":3,"amt":4869},"partialState":{"h":20,"t":120,"tokens":[19515,21913,19615,3449],"delegation":[18515,20913,18615,2449],"delegatorTokens":9999999901009}},{"ix":187,"action":{"kind":"Undelegate","val":1,"amt":4787},"partialState":{"h":20,"t":120,"tokens":[19515,17126,19615,3449],"delegation":[18515,16126,18615,2449],"delegatorTokens":9999999901009}},{"ix":188,"action":{"kind":"Delegate","val":1,"amt":3720},"partialState":{"h":20,"t":120,"tokens":[19515,20846,19615,3449],"delegation":[18515,19846,18615,2449],"delegatorTokens":9999999897289}},{"ix":189,"action":{"kind":"Delegate","val":2,"amt":2897},"partialState":{"h":20,"t":120,"tokens":[19515,20846,22512,3449],"delegation":[18515,19846,21512,2449],"delegatorTokens":9999999894392}},{"ix":190,"action":{"kind":"Deliver","chain":"consumer","numPackets":5},"partialState":{"h":18,"t":108,"consumerPower":[10475,null,19615,null],"outstandingDowntime":[false,false,true,true]}},{"ix":191,"action":{"kind":"Deliver","chain":"consumer","numPackets":4},"partialState":{"h":18,"t":108,"consumerPower":[10475,null,19615,null],"outstandingDowntime":[false,false,true,true]}},{"ix":192,"action":{"kind":"Delegate","val":0,"amt":1926},"partialState":{"h":20,"t":120,"tokens":[21441,20846,22512,3449],"delegation":[20441,19846,21512,2449],"delegatorTokens":9999999892466}},{"ix":193,"action":{"kind":"Undelegate","val":3,"amt":3029},"partialState":{"h":20,"t":120,"tokens":[21441,20846,22512,3449],"delegation":[20441,19846,21512,2449],"delegatorTokens":9999999892466}},{"ix":194,"action":{"kind":"Deliver","chain":"provider","numPackets":5},"partialState":{"h":20,"t":120,"tokens":[21441,20846,22512,3449],"delegation":[20441,19846,21512,2449],"delegatorTokens":9999999892466,"jailed":[null,1000000000000047,null,null],"status":["bonded","unbonding","bonded","unbonding"]}},{"ix":195,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":196,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":19,"t":114,"consumerPower":[13317,null,19615,null],"outstandingDowntime":[false,false,true,true]}},{"ix":197,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":21,"t":126,"tokens":[21441,20846,22512,3449],"delegation":[20441,19846,21512,2449],"delegatorTokens":9999999892466,"jailed":[null,1000000000000047,null,null],"status":["bonded","unbonding","bonded","unbonding"]}},{"ix":198,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":20,"t":120,"consumerPower":[13317,null,19615,null],"outstandingDowntime":[false,false,true,true]}},{"ix":199,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}}],"events":["send_double_sign_slash_request","send_downtime_slash_request","send_vsc_without_downtime_ack","send_downtime_slash_request","downtime_slash_request_outstanding","send_double_sign_slash_request","send_downtime_slash_request","consumer_update_val","receive_double_sign_slash_request","receive_double_sign_slash_request","receive_slash_request_unbonded","receive_slash_request_unbonded","receive_downtime_slash_request","jail","send_vsc_with_downtime_ack","more_than_one_third_val_power_change","send_vsc_without_downtime_ack","insufficient_shares","receive_downtime_slash_ack","consumer_update_val","consumer_del_val","consumer_add_val","insufficient_shares","insufficient_shares","more_than_one_third_val_power_change","send_vsc_without_downtime_ack","insufficient_shares","insufficient_shares","more_than_one_third_val_power_change","rebond_unval","send_vsc_without_downtime_ack","insufficient_shares","insufficient_shares","consumer_send_maturation","consumer_del_val","consumer_update_val","consumer_add_val","insufficient_shares","insufficient_shares","more_than_one_third_val_power_change","rebond_unval","send_vsc_without_downtime_ack","send_vsc_without_downtime_ack","send_vsc_without_downtime_ack","send_vsc_without_downtime_ack","send_vsc_without_downtime_ack","consumer_send_maturation","consumer_send_maturation","consumer_add_val","consumer_update_val","consumer_del_val","send_vsc_without_downtime_ack","consumer_update_val","consumer_update_val","set_undel_hold_false","set_undel_hold_false","set_undel_hold_false","set_undel_hold_false","set_unval_hold_false","send_vsc_without_downtime_ack","insufficient_shares","consumer_update_val","send_vsc_without_downtime_ack","consumer_send_maturation"]},{"meta":{"commit":"7ffd0c04e4205cbc9caf212abfe6c59ee43153bf"},"constants":{"P":"provider","C":"consumer","UNBONDING_SECONDS_P":70,"UNBONDING_SECONDS_C":50,"TRUSTING_SECONDS":49,"NUM_VALIDATORS":4,"MAX_VALIDATORS":2,"SLASH_DOUBLESIGN":0,"SLASH_DOWNTIME":0,"JAIL_SECONDS":999999999999999,"BLOCK_SECONDS":6,"INITIAL_DELEGATOR_TOKENS":10000000000000,"DELEGATE_AMT_MIN":1000,"DELEGATE_AMT_MAX":5000,"UNDELEGATE_AMT_MIN":1000,"UNDELEGATE_AMT_MAX":5000,"ISDOWNTIME_PROBABILITY":0.5,"MAX_NUM_PACKETS_FOR_DELIVER":6},"actions":[{"ix":0,"action":{"kind":"ConsumerSlash","val":3,"infractionHeight":0,"isDowntime":false},"partialState":{"h":1,"t":6,"outstandingDowntime":[false,false,false,false]}},{"ix":1,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":2,"t":12,"tokens":[5000,4000,3000,2000],"delegation":[4000,3000,2000,1000],"delegatorTokens":10000000000000,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":2,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":3,"t":18,"tokens":[5000,4000,3000,2000],"delegation":[4000,3000,2000,1000],"delegatorTokens":10000000000000,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":3,"action":{"kind":"ConsumerSlash","val":3,"infractionHeight":0,"isDowntime":true},"partialState":{"h":1,"t":6,"outstandingDowntime":[false,false,false,true]}},{"ix":4,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":5,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":6,"action":{"kind":"Deliver","chain":"provider","numPackets":2},"partialState":{"h":3,"t":18,"tokens":[5000,4000,3000,2000],"delegation":[4000,3000,2000,1000],"delegatorTokens":10000000000000,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":7,"action":{"kind":"Delegate","val":1,"amt":4831},"partialState":{"h":3,"t":18,"tokens":[5000,8831,3000,2000],"delegation":[4000,7831,2000,1000],"delegatorTokens":9999999995169}},{"ix":8,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":2,"t":12,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,false,false,true]}},{"ix":9,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":3,"t":18,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,false,false,true]}},{"ix":10,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":11,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":4,"t":24,"tokens":[5000,8831,3000,2000],"delegation":[4000,7831,2000,1000],"delegatorTokens":9999999995169,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":12,"action":{"kind":"Delegate","val":1,"amt":3371},"partialState":{"h":4,"t":24,"tokens":[5000,12202,3000,2000],"delegation":[4000,11202,2000,1000],"delegatorTokens":9999999991798}},{"ix":13,"action":{"kind":"ConsumerSlash","val":2,"infractionHeight":0,"isDowntime":true},"partialState":{"h":3,"t":18,"outstandingDowntime":[false,false,true,true]}},{"ix":14,"action":{"kind":"Deliver","chain":"provider","numPackets":2},"partialState":{"h":4,"t":24,"tokens":[5000,12202,3000,2000],"delegation":[4000,11202,2000,1000],"delegatorTokens":9999999991798,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":15,"action":{"kind":"ConsumerSlash","val":2,"infractionHeight":0,"isDowntime":false},"partialState":{"h":3,"t":18,"outstandingDowntime":[false,false,true,true]}},{"ix":16,"action":{"kind":"ConsumerSlash","val":1,"infractionHeight":0,"isDowntime":true},"partialState":{"h":3,"t":18,"outstandingDowntime":[false,true,true,true]}},{"ix":17,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":4,"t":24,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,true,true,true]}},{"ix":18,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":19,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":20,"action":{"kind":"Delegate","val":1,"amt":1987},"partialState":{"h":4,"t":24,"tokens":[5000,14189,3000,2000],"delegation":[4000,13189,2000,1000],"delegatorTokens":9999999989811}},{"ix":21,"action":{"kind":"Delegate","val":0,"amt":1750},"partialState":{"h":4,"t":24,"tokens":[6750,14189,3000,2000],"delegation":[5750,13189,2000,1000],"delegatorTokens":9999999988061}},{"ix":22,"action":{"kind":"Delegate","val":0,"amt":1292},"partialState":{"h":4,"t":24,"tokens":[8042,14189,3000,2000],"delegation":[7042,13189,2000,1000],"delegatorTokens":9999999986769}},{"ix":23,"action":{"kind":"Undelegate","val":1,"amt":2751},"partialState":{"h":4,"t":24,"tokens":[8042,11438,3000,2000],"delegation":[7042,10438,2000,1000],"delegatorTokens":9999999986769}},{"ix":24,"action":{"kind":"Delegate","val":2,"amt":1843},"partialState":{"h":4,"t":24,"tokens":[8042,11438,4843,2000],"delegation":[7042,10438,3843,1000],"delegatorTokens":9999999984926}},{"ix":25,"action":{"kind":"Deliver","chain":"provider","numPackets":2},"partialState":{"h":4,"t":24,"tokens":[8042,11438,4843,2000],"delegation":[7042,10438,3843,1000],"delegatorTokens":9999999984926,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":26,"action":{"kind":"Deliver","chain":"provider","numPackets":5},"partialState":{"h":4,"t":24,"tokens":[8042,11438,4843,2000],"delegation":[7042,10438,3843,1000],"delegatorTokens":9999999984926,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":27,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":5,"t":30,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,true,true,true]}},{"ix":28,"action":{"kind":"Undelegate","val":3,"amt":4354},"partialState":{"h":4,"t":24,"tokens":[8042,11438,4843,2000],"delegation":[7042,10438,3843,1000],"delegatorTokens":9999999984926}},{"ix":29,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":30,"action":{"kind":"Undelegate","val":2,"amt":2285},"partialState":{"h":4,"t":24,"tokens":[8042,11438,2558,2000],"delegation":[7042,10438,1558,1000],"delegatorTokens":9999999984926}},{"ix":31,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":32,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":33,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":34,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":6,"t":36,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,true,true,true]}},{"ix":35,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":5,"t":30,"tokens":[8042,11438,2558,2000],"delegation":[7042,10438,1558,1000],"delegatorTokens":9999999984926,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":36,"action":{"kind":"Deliver","chain":"consumer","numPackets":3},"partialState":{"h":6,"t":36,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,true,true,true]}},{"ix":37,"action":{"kind":"Deliver","chain":"consumer","numPackets":6},"partialState":{"h":6,"t":36,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,true,true,true]}},{"ix":38,"action":{"kind":"Delegate","val":1,"amt":3696},"partialState":{"h":5,"t":30,"tokens":[8042,15134,2558,2000],"delegation":[7042,14134,1558,1000],"delegatorTokens":9999999981230}},{"ix":39,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":7,"t":42,"consumerPower":[5000,8831,null,null],"outstandingDowntime":[false,true,true,true]}},{"ix":40,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":6,"t":36,"tokens":[8042,15134,2558,2000],"delegation":[7042,14134,1558,1000],"delegatorTokens":9999999981230,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":41,"action":{"kind":"Undelegate","val":1,"amt":2643},"partialState":{"h":6,"t":36,"tokens":[8042,12491,2558,2000],"delegation":[7042,11491,1558,1000],"delegatorTokens":9999999981230}},{"ix":42,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":7,"t":42,"tokens":[8042,12491,2558,2000],"delegation":[7042,11491,1558,1000],"delegatorTokens":9999999981230,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":43,"action":{"kind":"Undelegate","val":1,"amt":2432},"partialState":{"h":7,"t":42,"tokens":[8042,10059,2558,2000],"delegation":[7042,9059,1558,1000],"delegatorTokens":9999999981230}},{"ix":44,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":8,"t":48,"tokens":[8042,10059,2558,2000],"delegation":[7042,9059,1558,1000],"delegatorTokens":9999999981230,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":45,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":8,"t":48,"consumerPower":[5000,8831,null,null],"outstandingDowntime":[false,true,true,true]}},{"ix":46,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":47,"action":{"kind":"Deliver","chain":"consumer","numPackets":2},"partialState":{"h":8,"t":48,"consumerPower":[5000,8831,null,null],"outstandingDowntime":[false,true,true,true]}},{"ix":48,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":49,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":50,"action":{"kind":"Undelegate","val":0,"amt":1261},"partialState":{"h":8,"t":48,"tokens":[6781,10059,2558,2000],"delegation":[5781,9059,1558,1000],"delegatorTokens":9999999981230}},{"ix":51,"action":{"kind":"Deliver","chain":"provider","numPackets":4},"partialState":{"h":8,"t":48,"tokens":[6781,10059,2558,2000],"delegation":[5781,9059,1558,1000],"delegatorTokens":9999999981230,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":52,"action":{"kind":"Delegate","val":1,"amt":2928},"partialState":{"h":8,"t":48,"tokens":[6781,12987,2558,2000],"delegation":[5781,11987,1558,1000],"delegatorTokens":9999999978302}},{"ix":53,"action":{"kind":"Undelegate","val":3,"amt":3598},"partialState":{"h":8,"t":48,"tokens":[6781,12987,2558,2000],"delegation":[5781,11987,1558,1000],"delegatorTokens":9999999978302}},{"ix":54,"action":{"kind":"Undelegate","val":0,"amt":2050},"partialState":{"h":8,"t":48,"tokens":[4731,12987,2558,2000],"delegation":[3731,11987,1558,1000],"delegatorTokens":9999999978302}},{"ix":55,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":9,"t":54,"tokens":[4731,12987,2558,2000],"delegation":[3731,11987,1558,1000],"delegatorTokens":9999999978302,"jailed":[null,1000000000000047,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":56,"action":{"kind":"Deliver","chain":"consumer","numPackets":5},"partialState":{"h":8,"t":48,"consumerPower":[5000,8831,null,null],"outstandingDowntime":[false,true,true,true]}},{"ix":57,"action":{"kind":"Deliver","chain":"consumer","numPackets":2},"partialState":{"h":8,"t":48,"consumerPower":[5000,8831,null,null],"outstandingDowntime":[false,true,true,true]}},{"ix":58,"action":{"kind":"Undelegate","val":3,"amt":1975},"partialState":{"h":9,"t":54,"tokens":[4731,12987,2558,2000],"delegation":[3731,11987,1558,1000],"delegatorTokens":9999999978302}},{"ix":59,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":60,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":61,"action":{"kind":"Deliver","chain":"consumer","numPackets":6},"partialState":{"h":8,"t":48,"consumerPower":[5000,8831,null,null],"outstandingDowntime":[false,true,true,true]}},{"ix":62,"action":{"kind":"Delegate","val":2,"amt":3420},"partialState":{"h":9,"t":54,"tokens":[4731,12987,5978,2000],"delegation":[3731,11987,4978,1000],"delegatorTokens":9999999974882}},{"ix":63,"action":{"kind":"Delegate","val":0,"amt":1964},"partialState":{"h":9,"t":54,"tokens":[6695,12987,5978,2000],"delegation":[5695,11987,4978,1000],"delegatorTokens":9999999972918}},{"ix":64,"action":{"kind":"Delegate","val":1,"amt":4222},"partialState":{"h":9,"t":54,"tokens":[6695,17209,5978,2000],"delegation":[5695,16209,4978,1000],"delegatorTokens":9999999968696}},{"ix":65,"action":{"kind":"Undelegate","val":0,"amt":3438},"partialState":{"h":9,"t":54,"tokens":[3257,17209,5978,2000],"delegation":[2257,16209,4978,1000],"delegatorTokens":9999999968696}},{"ix":66,"action":{"kind":"Deliver","chain":"provider","numPackets":5},"partialState":{"h":9,"t":54,"tokens":[3257,17209,5978,2000],"delegation":[2257,16209,4978,1000],"delegatorTokens":9999999968696,"jailed":[null,1000000000000047,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":67,"action":{"kind":"Deliver","chain":"provider","numPackets":3},"partialState":{"h":9,"t":54,"tokens":[3257,17209,5978,2000],"delegation":[2257,16209,4978,1000],"delegatorTokens":9999999968696,"jailed":[null,1000000000000047,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":68,"action":{"kind":"Undelegate","val":0,"amt":3353},"partialState":{"h":9,"t":54,"tokens":[3257,17209,5978,2000],"delegation":[2257,16209,4978,1000],"delegatorTokens":9999999968696}},{"ix":69,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":10,"t":60,"tokens":[3257,17209,5978,2000],"delegation":[2257,16209,4978,1000],"delegatorTokens":9999999968696,"jailed":[null,1000000000000047,null,null],"status":["bonded","unbonding","bonded","unbonded"]}},{"ix":70,"action":{"kind":"Undelegate","val":3,"amt":1592},"partialState":{"h":10,"t":60,"tokens":[3257,17209,5978,2000],"delegation":[2257,16209,4978,1000],"delegatorTokens":9999999968696}},{"ix":71,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":72,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":73,"action":{"kind":"Deliver","chain":"consumer","numPackets":1},"partialState":{"h":8,"t":48,"consumerPower":[5000,8831,null,null],"outstandingDowntime":[false,false,true,true]}},{"ix":74,"action":{"kind":"Undelegate","val":1,"amt":4218},"partialState":{"h":10,"t":60,"tokens":[3257,12991,5978,2000],"delegation":[2257,11991,4978,1000],"delegatorTokens":9999999968696}},{"ix":75,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":11,"t":66,"tokens":[3257,12991,5978,2000],"delegation":[2257,11991,4978,1000],"delegatorTokens":9999999968696,"jailed":[null,1000000000000047,null,null],"status":["bonded","unbonding","bonded","unbonded"]}},{"ix":76,"action":{"kind":"Deliver","chain":"consumer","numPackets":1},"partialState":{"h":8,"t":48,"consumerPower":[5000,8831,null,null],"outstandingDowntime":[false,false,true,true]}},{"ix":77,"action":{"kind":"Deliver","chain":"consumer","numPackets":6},"partialState":{"h":8,"t":48,"consumerPower":[5000,8831,null,null],"outstandingDowntime":[false,false,true,true]}},{"ix":78,"action":{"kind":"Undelegate","val":0,"amt":2061},"partialState":{"h":11,"t":66,"tokens":[1196,12991,5978,2000],"delegation":[196,11991,4978,1000],"delegatorTokens":9999999968696}},{"ix":79,"action":{"kind":"Deliver","chain":"consumer","numPackets":1},"partialState":{"h":8,"t":48,"consumerPower":[5000,8831,null,null],"outstandingDowntime":[false,false,true,true]}},{"ix":80,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":9,"t":54,"consumerPower":[3257,null,5978,null],"outstandingDowntime":[false,false,true,true]}},{"ix":81,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":82,"action":{"kind":"Delegate","val":0,"amt":2631},"partialState":{"h":11,"t":66,"tokens":[3827,12991,5978,2000],"delegation":[2827,11991,4978,1000],"delegatorTokens":9999999966065}},{"ix":83,"action":{"kind":"Deliver","chain":"consumer","numPackets":2},"partialState":{"h":9,"t":54,"consumerPower":[3257,null,5978,null],"outstandingDowntime":[false,false,true,true]}},{"ix":84,"action":{"kind":"Undelegate","val":0,"amt":1792},"partialState":{"h":11,"t":66,"tokens":[2035,12991,5978,2000],"delegation":[1035,11991,4978,1000],"delegatorTokens":9999999966065}},{"ix":85,"action":{"kind":"Deliver","chain":"consumer","numPackets":5},"partialState":{"h":9,"t":54,"consumerPower":[3257,null,5978,null],"outstandingDowntime":[false,false,true,true]}},{"ix":86,"action":{"kind":"Undelegate","val":1,"amt":2087},"partialState":{"h":11,"t":66,"tokens":[2035,10904,5978,2000],"delegation":[1035,9904,4978,1000],"delegatorTokens":9999999966065}},{"ix":87,"action":{"kind":"Deliver","chain":"provider","numPackets":4},"partialState":{"h":11,"t":66,"tokens":[2035,10904,5978,2000],"delegation":[1035,9904,4978,1000],"delegatorTokens":9999999966065,"jailed":[null,1000000000000047,null,null],"status":["bonded","unbonding","bonded","unbonded"]}},{"ix":88,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":10,"t":60,"consumerPower":[3257,null,5978,null],"outstandingDowntime":[false,false,true,true]}},{"ix":89,"action":{"kind":"Undelegate","val":1,"amt":2685},"partialState":{"h":11,"t":66,"tokens":[2035,8219,5978,2000],"delegation":[1035,7219,4978,1000],"delegatorTokens":9999999966065}},{"ix":90,"action":{"kind":"Deliver","chain":"consumer","numPackets":5},"partialState":{"h":10,"t":60,"consumerPower":[3257,null,5978,null],"outstandingDowntime":[false,false,true,true]}},{"ix":91,"action":{"kind":"Undelegate","val":0,"amt":2794},"partialState":{"h":11,"t":66,"tokens":[2035,8219,5978,2000],"delegation":[1035,7219,4978,1000],"delegatorTokens":9999999966065}},{"ix":92,"action":{"kind":"Delegate","val":2,"amt":3951},"partialState":{"h":11,"t":66,"tokens":[2035,8219,9929,2000],"delegation":[1035,7219,8929,1000],"delegatorTokens":9999999962114}},{"ix":93,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":94,"action":{"kind":"Undelegate","val":1,"amt":2035},"partialState":{"h":11,"t":66,"tokens":[2035,6184,9929,2000],"delegation":[1035,5184,8929,1000],"delegatorTokens":9999999962114}},{"ix":95,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":12,"t":72,"tokens":[2035,6184,9929,2000],"delegation":[1035,5184,8929,1000],"delegatorTokens":9999999962114,"jailed":[null,1000000000000047,null,null],"status":["bonded","unbonding","bonded","unbonded"]}},{"ix":96,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":11,"t":66,"consumerPower":[3257,null,5978,null],"outstandingDowntime":[false,false,true,true]}},{"ix":97,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":98,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":13,"t":78,"tokens":[2035,6184,9929,2000],"delegation":[1035,5184,8929,1000],"delegatorTokens":9999999962114,"jailed":[null,1000000000000047,null,null],"status":["bonded","unbonding","bonded","unbonded"]}},{"ix":99,"action":{"kind":"Undelegate","val":1,"amt":4743},"partialState":{"h":13,"t":78,"tokens":[2035,1441,9929,2000],"delegation":[1035,441,8929,1000],"delegatorTokens":9999999962114}},{"ix":100,"action":{"kind":"Deliver","chain":"consumer","numPackets":5},"partialState":{"h":11,"t":66,"consumerPower":[3257,null,5978,null],"outstandingDowntime":[false,false,true,true]}},{"ix":101,"action":{"kind":"Deliver","chain":"consumer","numPackets":3},"partialState":{"h":11,"t":66,"consumerPower":[3257,null,5978,null],"outstandingDowntime":[false,false,true,true]}},{"ix":102,"action":{"kind":"Delegate","val":0,"amt":1893},"partialState":{"h":13,"t":78,"tokens":[3928,1441,9929,2000],"delegation":[2928,441,8929,1000],"delegatorTokens":9999999960221}},{"ix":103,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":12,"t":72,"consumerPower":[2035,null,9929,null],"outstandingDowntime":[false,false,true,true]}},{"ix":104,"action":{"kind":"Undelegate","val":3,"amt":3719},"partialState":{"h":13,"t":78,"tokens":[3928,1441,9929,2000],"delegation":[2928,441,8929,1000],"delegatorTokens":9999999960221}},{"ix":105,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":106,"action":{"kind":"Undelegate","val":1,"amt":1821},"partialState":{"h":13,"t":78,"tokens":[3928,1441,9929,2000],"delegation":[2928,441,8929,1000],"delegatorTokens":9999999960221}},{"ix":107,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":108,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":109,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":13,"t":78,"consumerPower":[2035,null,9929,null],"outstandingDowntime":[false,false,true,true]}},{"ix":110,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":14,"t":84,"consumerPower":[2035,null,9929,null],"outstandingDowntime":[false,false,true,true]}},{"ix":111,"action":{"kind":"Deliver","chain":"provider","numPackets":6},"partialState":{"h":13,"t":78,"tokens":[3928,1441,9929,2000],"delegation":[2928,441,8929,1000],"delegatorTokens":9999999960221,"jailed":[null,1000000000000047,null,null],"status":["bonded","unbonding","bonded","unbonded"]}},{"ix":112,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":15,"t":90,"consumerPower":[2035,null,9929,null],"outstandingDowntime":[false,false,true,true]}},{"ix":113,"action":{"kind":"Deliver","chain":"provider","numPackets":4},"partialState":{"h":13,"t":78,"tokens":[3928,1441,9929,2000],"delegation":[2928,441,8929,1000],"delegatorTokens":9999999960221,"jailed":[null,1000000000000047,null,null],"status":["bonded","unbonding","bonded","unbonded"]}},{"ix":114,"action":{"kind":"Delegate","val":0,"amt":2772},"partialState":{"h":13,"t":78,"tokens":[6700,1441,9929,2000],"delegation":[5700,441,8929,1000],"delegatorTokens":9999999957449}},{"ix":115,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":116,"action":{"kind":"Undelegate","val":1,"amt":2670},"partialState":{"h":13,"t":78,"tokens":[6700,1441,9929,2000],"delegation":[5700,441,8929,1000],"delegatorTokens":9999999957449}},{"ix":117,"action":{"kind":"Deliver","chain":"provider","numPackets":5},"partialState":{"h":13,"t":78,"tokens":[6700,1441,9929,2000],"delegation":[5700,441,8929,1000],"delegatorTokens":9999999957449,"jailed":[null,1000000000000047,null,null],"status":["bonded","unbonding","bonded","unbonded"]}},{"ix":118,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":16,"t":96,"consumerPower":[2035,null,9929,null],"outstandingDowntime":[false,false,true,true]}},{"ix":119,"action":{"kind":"Delegate","val":1,"amt":1254},"partialState":{"h":13,"t":78,"tokens":[6700,2695,9929,2000],"delegation":[5700,1695,8929,1000],"delegatorTokens":9999999956195}},{"ix":120,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":14,"t":84,"tokens":[6700,2695,9929,2000],"delegation":[5700,1695,8929,1000],"delegatorTokens":9999999956195,"jailed":[null,1000000000000047,null,null],"status":["bonded","unbonding","bonded","unbonded"]}},{"ix":121,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":15,"t":90,"tokens":[6700,2695,9929,2000],"delegation":[5700,1695,8929,1000],"delegatorTokens":9999999956195,"jailed":[null,1000000000000047,null,null],"status":["bonded","unbonding","bonded","unbonded"]}},{"ix":122,"action":{"kind":"Undelegate","val":0,"amt":3493},"partialState":{"h":15,"t":90,"tokens":[3207,2695,9929,2000],"delegation":[2207,1695,8929,1000],"delegatorTokens":9999999956195}},{"ix":123,"action":{"kind":"Undelegate","val":2,"amt":4679},"partialState":{"h":15,"t":90,"tokens":[3207,2695,5250,2000],"delegation":[2207,1695,4250,1000],"delegatorTokens":9999999956195}},{"ix":124,"action":{"kind":"Undelegate","val":2,"amt":3325},"partialState":{"h":15,"t":90,"tokens":[3207,2695,1925,2000],"delegation":[2207,1695,925,1000],"delegatorTokens":9999999956195}},{"ix":125,"action":{"kind":"Deliver","chain":"consumer","numPackets":1},"partialState":{"h":16,"t":96,"consumerPower":[2035,null,9929,null],"outstandingDowntime":[false,false,true,true]}},{"ix":126,"action":{"kind":"Deliver","chain":"consumer","numPackets":6},"partialState":{"h":16,"t":96,"consumerPower":[2035,null,9929,null],"outstandingDowntime":[false,false,true,true]}},{"ix":127,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":128,"action":{"kind":"Undelegate","val":0,"amt":1481},"partialState":{"h":15,"t":90,"tokens":[1726,2695,1925,2000],"delegation":[726,1695,925,1000],"delegatorTokens":9999999956195}},{"ix":129,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":17,"t":102,"consumerPower":[6700,null,9929,null],"outstandingDowntime":[false,false,true,true]}},{"ix":130,"action":{"kind":"Delegate","val":0,"amt":4790},"partialState":{"h":15,"t":90,"tokens":[6516,2695,1925,2000],"delegation":[5516,1695,925,1000],"delegatorTokens":9999999951405}},{"ix":131,"action":{"kind":"Delegate","val":0,"amt":4322},"partialState":{"h":15,"t":90,"tokens":[10838,2695,1925,2000],"delegation":[9838,1695,925,1000],"delegatorTokens":9999999947083}},{"ix":132,"action":{"kind":"Undelegate","val":1,"amt":2836},"partialState":{"h":15,"t":90,"tokens":[10838,2695,1925,2000],"delegation":[9838,1695,925,1000],"delegatorTokens":9999999947083}},{"ix":133,"action":{"kind":"Delegate","val":3,"amt":2862},"partialState":{"h":15,"t":90,"tokens":[10838,2695,1925,4862],"delegation":[9838,1695,925,3862],"delegatorTokens":9999999944221}},{"ix":134,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":135,"action":{"kind":"Delegate","val":2,"amt":1386},"partialState":{"h":15,"t":90,"tokens":[10838,2695,3311,4862],"delegation":[9838,1695,2311,3862],"delegatorTokens":9999999942835}},{"ix":136,"action":{"kind":"Deliver","chain":"provider","numPackets":4},"partialState":{"h":15,"t":90,"tokens":[10838,2695,3311,4862],"delegation":[9838,1695,2311,3862],"delegatorTokens":9999999942835,"jailed":[null,1000000000000047,null,null],"status":["bonded","unbonding","bonded","unbonded"]}},{"ix":137,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":138,"action":{"kind":"Deliver","chain":"consumer","numPackets":2},"partialState":{"h":17,"t":102,"consumerPower":[6700,null,9929,null],"outstandingDowntime":[false,false,true,true]}},{"ix":139,"action":{"kind":"Delegate","val":2,"amt":2676},"partialState":{"h":15,"t":90,"tokens":[10838,2695,5987,4862],"delegation":[9838,1695,4987,3862],"delegatorTokens":9999999940159}},{"ix":140,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":141,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":142,"action":{"kind":"Deliver","chain":"provider","numPackets":1},"partialState":{"h":15,"t":90,"tokens":[10838,2695,5987,4862],"delegation":[9838,1695,4987,3862],"delegatorTokens":9999999940159,"jailed":[null,1000000000000047,null,null],"status":["bonded","unbonding","bonded","unbonded"]}},{"ix":143,"action":{"kind":"Undelegate","val":3,"amt":2167},"partialState":{"h":15,"t":90,"tokens":[10838,2695,5987,2695],"delegation":[9838,1695,4987,1695],"delegatorTokens":9999999940159}},{"ix":144,"action":{"kind":"Undelegate","val":1,"amt":2540},"partialState":{"h":15,"t":90,"tokens":[10838,2695,5987,2695],"delegation":[9838,1695,4987,1695],"delegatorTokens":9999999940159}},{"ix":145,"action":{"kind":"Undelegate","val":1,"amt":2745},"partialState":{"h":15,"t":90,"tokens":[10838,2695,5987,2695],"delegation":[9838,1695,4987,1695],"delegatorTokens":9999999940159}},{"ix":146,"action":{"kind":"Undelegate","val":1,"amt":1019},"partialState":{"h":15,"t":90,"tokens":[10838,1676,5987,2695],"delegation":[9838,676,4987,1695],"delegatorTokens":9999999940159}},{"ix":147,"action":{"kind":"Deliver","chain":"provider","numPackets":2},"partialState":{"h":15,"t":90,"tokens":[10838,1676,5987,2695],"delegation":[9838,676,4987,1695],"delegatorTokens":9999999940159,"jailed":[null,1000000000000047,null,null],"status":["bonded","unbonding","bonded","unbonded"]}},{"ix":148,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":16,"t":96,"tokens":[10838,1676,5987,2695],"delegation":[9838,676,4987,1695],"delegatorTokens":9999999940159,"jailed":[null,1000000000000047,null,null],"status":["bonded","unbonding","bonded","unbonded"]}},{"ix":149,"action":{"kind":"Delegate","val":0,"amt":1169},"partialState":{"h":16,"t":96,"tokens":[12007,1676,5987,2695],"delegation":[11007,676,4987,1695],"delegatorTokens":9999999938990}},{"ix":150,"action":{"kind":"Delegate","val":3,"amt":3812},"partialState":{"h":16,"t":96,"tokens":[12007,1676,5987,6507],"delegation":[11007,676,4987,5507],"delegatorTokens":9999999935178}},{"ix":151,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":152,"action":{"kind":"Undelegate","val":3,"amt":2430},"partialState":{"h":16,"t":96,"tokens":[12007,1676,5987,4077],"delegation":[11007,676,4987,3077],"delegatorTokens":9999999935178}},{"ix":153,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":18,"t":108,"consumerPower":[6700,null,9929,null],"outstandingDowntime":[false,false,true,true]}},{"ix":154,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":155,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":17,"t":102,"tokens":[12007,1676,5987,4077],"delegation":[11007,676,4987,3077],"delegatorTokens":9999999935178,"jailed":[null,1000000000000047,null,null],"status":["bonded","unbonding","bonded","unbonded"]}},{"ix":156,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":19,"t":114,"consumerPower":[6700,null,9929,null],"outstandingDowntime":[false,false,true,true]}},{"ix":157,"action":{"kind":"Delegate","val":3,"amt":1862},"partialState":{"h":17,"t":102,"tokens":[12007,1676,5987,5939],"delegation":[11007,676,4987,4939],"delegatorTokens":9999999933316}},{"ix":158,"action":{"kind":"Delegate","val":0,"amt":2643},"partialState":{"h":17,"t":102,"tokens":[14650,1676,5987,5939],"delegation":[13650,676,4987,4939],"delegatorTokens":9999999930673}},{"ix":159,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":20,"t":120,"consumerPower":[6700,null,9929,null],"outstandingDowntime":[false,false,true,true]}},{"ix":160,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":161,"action":{"kind":"Undelegate","val":0,"amt":1984},"partialState":{"h":17,"t":102,"tokens":[12666,1676,5987,5939],"delegation":[11666,676,4987,4939],"delegatorTokens":9999999930673}},{"ix":162,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":18,"t":108,"tokens":[12666,1676,5987,5939],"delegation":[11666,676,4987,4939],"delegatorTokens":9999999930673,"jailed":[null,1000000000000047,null,null],"status":["bonded","unbonding","bonded","unbonded"]}},{"ix":163,"action":{"kind":"Undelegate","val":1,"amt":4182},"partialState":{"h":18,"t":108,"tokens":[12666,1676,5987,5939],"delegation":[11666,676,4987,4939],"delegatorTokens":9999999930673}},{"ix":164,"action":{"kind":"Deliver","chain":"consumer","numPackets":1},"partialState":{"h":20,"t":120,"consumerPower":[6700,null,9929,null],"outstandingDowntime":[false,false,true,true]}},{"ix":165,"action":{"kind":"Undelegate","val":3,"amt":4595},"partialState":{"h":18,"t":108,"tokens":[12666,1676,5987,1344],"delegation":[11666,676,4987,344],"delegatorTokens":9999999930673}},{"ix":166,"action":{"kind":"Undelegate","val":2,"amt":4153},"partialState":{"h":18,"t":108,"tokens":[12666,1676,1834,1344],"delegation":[11666,676,834,344],"delegatorTokens":9999999930673}},{"ix":167,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":168,"action":{"kind":"Delegate","val":3,"amt":1127},"partialState":{"h":18,"t":108,"tokens":[12666,1676,1834,2471],"delegation":[11666,676,834,1471],"delegatorTokens":9999999929546}},{"ix":169,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":21,"t":126,"consumerPower":[10838,null,5987,null],"outstandingDowntime":[false,false,true,true]}},{"ix":170,"action":{"kind":"Deliver","chain":"consumer","numPackets":4},"partialState":{"h":21,"t":126,"consumerPower":[10838,null,5987,null],"outstandingDowntime":[false,false,true,true]}},{"ix":171,"action":{"kind":"Undelegate","val":3,"amt":4576},"partialState":{"h":18,"t":108,"tokens":[12666,1676,1834,2471],"delegation":[11666,676,834,1471],"delegatorTokens":9999999929546}},{"ix":172,"action":{"kind":"Delegate","val":3,"amt":3343},"partialState":{"h":18,"t":108,"tokens":[12666,1676,1834,5814],"delegation":[11666,676,834,4814],"delegatorTokens":9999999926203}},{"ix":173,"action":{"kind":"Delegate","val":1,"amt":2255},"partialState":{"h":18,"t":108,"tokens":[12666,3931,1834,5814],"delegation":[11666,2931,834,4814],"delegatorTokens":9999999923948}},{"ix":174,"action":{"kind":"Undelegate","val":1,"amt":4295},"partialState":{"h":18,"t":108,"tokens":[12666,3931,1834,5814],"delegation":[11666,2931,834,4814],"delegatorTokens":9999999923948}},{"ix":175,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":176,"action":{"kind":"Deliver","chain":"provider","numPackets":5},"partialState":{"h":18,"t":108,"tokens":[12666,3931,1834,5814],"delegation":[11666,2931,834,4814],"delegatorTokens":9999999923948,"jailed":[null,1000000000000047,null,null],"status":["bonded","unbonding","bonded","unbonded"]}},{"ix":177,"action":{"kind":"Deliver","chain":"consumer","numPackets":5},"partialState":{"h":21,"t":126,"consumerPower":[10838,null,5987,null],"outstandingDowntime":[false,false,true,true]}},{"ix":178,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":19,"t":114,"tokens":[12666,3931,1834,5814],"delegation":[11666,2931,834,4814],"delegatorTokens":9999999931627,"jailed":[null,1000000000000047,null,null],"status":["bonded","unbonding","unbonding","bonded"]}},{"ix":179,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":180,"action":{"kind":"Delegate","val":1,"amt":1481},"partialState":{"h":19,"t":114,"tokens":[12666,5412,1834,5814],"delegation":[11666,4412,834,4814],"delegatorTokens":9999999930146}},{"ix":181,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":182,"action":{"kind":"Undelegate","val":0,"amt":4018},"partialState":{"h":19,"t":114,"tokens":[8648,5412,1834,5814],"delegation":[7648,4412,834,4814],"delegatorTokens":9999999930146}},{"ix":183,"action":{"kind":"Delegate","val":3,"amt":1552},"partialState":{"h":19,"t":114,"tokens":[8648,5412,1834,7366],"delegation":[7648,4412,834,6366],"delegatorTokens":9999999928594}},{"ix":184,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":22,"t":132,"consumerPower":[12007,null,5987,null],"outstandingDowntime":[false,false,true,true]}},{"ix":185,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":23,"t":138,"consumerPower":[12007,null,5987,null],"outstandingDowntime":[false,false,true,true]}},{"ix":186,"action":{"kind":"Delegate","val":1,"amt":4761},"partialState":{"h":19,"t":114,"tokens":[8648,10173,1834,7366],"delegation":[7648,9173,834,6366],"delegatorTokens":9999999923833}},{"ix":187,"action":{"kind":"Undelegate","val":2,"amt":4997},"partialState":{"h":19,"t":114,"tokens":[8648,10173,1834,7366],"delegation":[7648,9173,834,6366],"delegatorTokens":9999999923833}},{"ix":188,"action":{"kind":"Deliver","chain":"consumer","numPackets":3},"partialState":{"h":23,"t":138,"consumerPower":[12007,null,5987,null],"outstandingDowntime":[false,false,true,true]}},{"ix":189,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":20,"t":120,"tokens":[8648,10173,1834,7366],"delegation":[7648,9173,834,6366],"delegatorTokens":9999999926265,"jailed":[null,1000000000000047,null,null],"status":["bonded","unbonding","unbonding","bonded"]}},{"ix":190,"action":{"kind":"Deliver","chain":"consumer","numPackets":2},"partialState":{"h":23,"t":138,"consumerPower":[12007,null,5987,null],"outstandingDowntime":[false,false,true,true]}},{"ix":191,"action":{"kind":"Undelegate","val":1,"amt":1051},"partialState":{"h":20,"t":120,"tokens":[8648,9122,1834,7366],"delegation":[7648,8122,834,6366],"delegatorTokens":9999999926265}},{"ix":192,"action":{"kind":"Deliver","chain":"consumer","numPackets":5},"partialState":{"h":23,"t":138,"consumerPower":[12007,null,5987,null],"outstandingDowntime":[false,false,true,true]}},{"ix":193,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":194,"action":{"kind":"Delegate","val":3,"amt":1515},"partialState":{"h":20,"t":120,"tokens":[8648,9122,1834,8881],"delegation":[7648,8122,834,7881],"delegatorTokens":9999999924750}},{"ix":195,"action":{"kind":"Undelegate","val":0,"amt":3550},"partialState":{"h":20,"t":120,"tokens":[5098,9122,1834,8881],"delegation":[4098,8122,834,7881],"delegatorTokens":9999999924750}},{"ix":196,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":197,"action":{"kind":"Deliver","chain":"provider","numPackets":6},"partialState":{"h":20,"t":120,"tokens":[5098,9122,1834,8881],"delegation":[4098,8122,834,7881],"delegatorTokens":9999999924750,"jailed":[null,1000000000000047,null,null],"status":["bonded","unbonding","unbonding","bonded"]}},{"ix":198,"action":{"kind":"Deliver","chain":"provider","numPackets":1},"partialState":{"h":20,"t":120,"tokens":[5098,9122,1834,8881],"delegation":[4098,8122,834,7881],"delegatorTokens":9999999924750,"jailed":[null,1000000000000047,null,null],"status":["bonded","unbonding","unbonding","bonded"]}},{"ix":199,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":21,"t":126,"tokens":[5098,9122,1834,8881],"delegation":[4098,8122,834,7881],"delegatorTokens":9999999928061,"jailed":[null,1000000000000047,null,null],"status":["bonded","unbonding","unbonding","bonded"]}}],"events":["send_double_sign_slash_request","send_downtime_slash_request","send_vsc_without_downtime_ack","send_downtime_slash_request","receive_double_sign_slash_request","send_double_sign_slash_request","send_downtime_slash_request","insufficient_shares","receive_slash_request_unbonded","send_vsc_without_downtime_ack","consumer_update_val","send_vsc_without_downtime_ack","send_vsc_without_downtime_ack","send_vsc_without_downtime_ack","receive_double_sign_slash_request","insufficient_shares","receive_slash_request_unbonded","receive_downtime_slash_request","jail","send_vsc_with_downtime_ack","insufficient_shares","insufficient_shares","more_than_one_third_val_power_change","send_vsc_without_downtime_ack","insufficient_shares","receive_downtime_slash_ack","send_vsc_not_because_change","send_vsc_without_downtime_ack","consumer_update_val","consumer_del_val","consumer_add_val","insufficient_shares","send_vsc_without_downtime_ack","consumer_update_val","consumer_update_val","insufficient_shares","insufficient_shares","insufficient_shares","consumer_send_maturation","send_vsc_without_downtime_ack","consumer_update_val","insufficient_shares","insufficient_shares","insufficient_shares","send_vsc_without_downtime_ack","consumer_send_maturation","consumer_send_maturation","consumer_send_maturation","consumer_send_maturation","consumer_send_maturation","consumer_send_maturation","some_undels_expired_but_not_completed","send_vsc_without_downtime_ack","send_vsc_without_downtime_ack","insufficient_shares","consumer_send_maturation","consumer_send_maturation","consumer_update_val","consumer_update_val","insufficient_shares","insufficient_shares","some_undels_expired_but_not_completed","complete_undel_immediate","complete_undel_immediate","complete_undel_immediate","set_undel_hold_false","set_undel_hold_false","set_undel_hold_false","send_vsc_without_downtime_ack","consumer_update_val","insufficient_shares","complete_undel_in_endblock","send_vsc_without_downtime_ack","complete_undel_in_endblock","set_undel_hold_false","set_unval_hold_false","set_undel_hold_false","set_undel_hold_false","set_undel_hold_false","set_undel_hold_false","set_undel_hold_false","set_undel_hold_false","send_vsc_without_downtime_ack"]},{"meta":{"commit":"7ffd0c04e4205cbc9caf212abfe6c59ee43153bf"},"constants":{"P":"provider","C":"consumer","UNBONDING_SECONDS_P":70,"UNBONDING_SECONDS_C":50,"TRUSTING_SECONDS":49,"NUM_VALIDATORS":4,"MAX_VALIDATORS":2,"SLASH_DOUBLESIGN":0,"SLASH_DOWNTIME":0,"JAIL_SECONDS":999999999999999,"BLOCK_SECONDS":6,"INITIAL_DELEGATOR_TOKENS":10000000000000,"DELEGATE_AMT_MIN":1000,"DELEGATE_AMT_MAX":5000,"UNDELEGATE_AMT_MIN":1000,"UNDELEGATE_AMT_MAX":5000,"ISDOWNTIME_PROBABILITY":0.5,"MAX_NUM_PACKETS_FOR_DELIVER":6},"actions":[{"ix":0,"action":{"kind":"ConsumerSlash","val":0,"infractionHeight":0,"isDowntime":true},"partialState":{"h":1,"t":6,"outstandingDowntime":[true,false,false,false]}},{"ix":1,"action":{"kind":"Undelegate","val":0,"amt":3310},"partialState":{"h":1,"t":6,"tokens":[1690,4000,3000,2000],"delegation":[690,3000,2000,1000],"delegatorTokens":10000000000000}},{"ix":2,"action":{"kind":"ConsumerSlash","val":3,"infractionHeight":0,"isDowntime":true},"partialState":{"h":1,"t":6,"outstandingDowntime":[true,false,false,true]}},{"ix":3,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":4,"action":{"kind":"Delegate","val":0,"amt":2537},"partialState":{"h":1,"t":6,"tokens":[4227,4000,3000,2000],"delegation":[3227,3000,2000,1000],"delegatorTokens":9999999997463}},{"ix":5,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":2,"t":12,"tokens":[4227,4000,3000,2000],"delegation":[3227,3000,2000,1000],"delegatorTokens":9999999997463,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":6,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":3,"t":18,"tokens":[4227,4000,3000,2000],"delegation":[3227,3000,2000,1000],"delegatorTokens":9999999997463,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":7,"action":{"kind":"ConsumerSlash","val":2,"infractionHeight":0,"isDowntime":true},"partialState":{"h":1,"t":6,"outstandingDowntime":[true,false,true,true]}},{"ix":8,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":4,"t":24,"tokens":[4227,4000,3000,2000],"delegation":[3227,3000,2000,1000],"delegatorTokens":9999999997463,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":9,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":5,"t":30,"tokens":[4227,4000,3000,2000],"delegation":[3227,3000,2000,1000],"delegatorTokens":9999999997463,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":10,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":6,"t":36,"tokens":[4227,4000,3000,2000],"delegation":[3227,3000,2000,1000],"delegatorTokens":9999999997463,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":11,"action":{"kind":"Delegate","val":1,"amt":4023},"partialState":{"h":6,"t":36,"tokens":[4227,8023,3000,2000],"delegation":[3227,7023,2000,1000],"delegatorTokens":9999999993440}},{"ix":12,"action":{"kind":"Delegate","val":3,"amt":2093},"partialState":{"h":6,"t":36,"tokens":[4227,8023,3000,4093],"delegation":[3227,7023,2000,3093],"delegatorTokens":9999999991347}},{"ix":13,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":2,"t":12,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[true,false,true,true]}},{"ix":14,"action":{"kind":"Deliver","chain":"provider","numPackets":1},"partialState":{"h":6,"t":36,"tokens":[4227,8023,3000,4093],"delegation":[3227,7023,2000,3093],"delegatorTokens":9999999991347,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":15,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":16,"action":{"kind":"Deliver","chain":"provider","numPackets":1},"partialState":{"h":6,"t":36,"tokens":[4227,8023,3000,4093],"delegation":[3227,7023,2000,3093],"delegatorTokens":9999999991347,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":17,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":3,"t":18,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[true,false,true,true]}},{"ix":18,"action":{"kind":"Undelegate","val":0,"amt":3736},"partialState":{"h":6,"t":36,"tokens":[4227,8023,3000,4093],"delegation":[3227,7023,2000,3093],"delegatorTokens":9999999991347}},{"ix":19,"action":{"kind":"Deliver","chain":"provider","numPackets":6},"partialState":{"h":6,"t":36,"tokens":[4227,8023,3000,4093],"delegation":[3227,7023,2000,3093],"delegatorTokens":9999999991347,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":20,"action":{"kind":"Delegate","val":2,"amt":3191},"partialState":{"h":6,"t":36,"tokens":[4227,8023,6191,4093],"delegation":[3227,7023,5191,3093],"delegatorTokens":9999999988156}},{"ix":21,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":22,"action":{"kind":"Deliver","chain":"provider","numPackets":3},"partialState":{"h":6,"t":36,"tokens":[4227,8023,6191,4093],"delegation":[3227,7023,5191,3093],"delegatorTokens":9999999988156,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":23,"action":{"kind":"Deliver","chain":"provider","numPackets":3},"partialState":{"h":6,"t":36,"tokens":[4227,8023,6191,4093],"delegation":[3227,7023,5191,3093],"delegatorTokens":9999999988156,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":24,"action":{"kind":"Undelegate","val":2,"amt":1471},"partialState":{"h":6,"t":36,"tokens":[4227,8023,4720,4093],"delegation":[3227,7023,3720,3093],"delegatorTokens":9999999988156}},{"ix":25,"action":{"kind":"Undelegate","val":3,"amt":3214},"partialState":{"h":6,"t":36,"tokens":[4227,8023,4720,4093],"delegation":[3227,7023,3720,3093],"delegatorTokens":9999999988156}},{"ix":26,"action":{"kind":"Delegate","val":1,"amt":4839},"partialState":{"h":6,"t":36,"tokens":[4227,12862,4720,4093],"delegation":[3227,11862,3720,3093],"delegatorTokens":9999999983317}},{"ix":27,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":28,"action":{"kind":"Deliver","chain":"provider","numPackets":5},"partialState":{"h":6,"t":36,"tokens":[4227,12862,4720,4093],"delegation":[3227,11862,3720,3093],"delegatorTokens":9999999983317,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":29,"action":{"kind":"Delegate","val":0,"amt":1806},"partialState":{"h":6,"t":36,"tokens":[6033,12862,4720,4093],"delegation":[5033,11862,3720,3093],"delegatorTokens":9999999981511}},{"ix":30,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":4,"t":24,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[true,false,true,true]}},{"ix":31,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":5,"t":30,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[true,false,true,true]}},{"ix":32,"action":{"kind":"Undelegate","val":1,"amt":3738},"partialState":{"h":6,"t":36,"tokens":[6033,9124,4720,4093],"delegation":[5033,8124,3720,3093],"delegatorTokens":9999999981511}},{"ix":33,"action":{"kind":"Delegate","val":1,"amt":2364},"partialState":{"h":6,"t":36,"tokens":[6033,11488,4720,4093],"delegation":[5033,10488,3720,3093],"delegatorTokens":9999999979147}},{"ix":34,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":7,"t":42,"tokens":[6033,11488,4720,4093],"delegation":[5033,10488,3720,3093],"delegatorTokens":9999999979147,"jailed":[1000000000000035,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":35,"action":{"kind":"Delegate","val":1,"amt":4249},"partialState":{"h":7,"t":42,"tokens":[6033,15737,4720,4093],"delegation":[5033,14737,3720,3093],"delegatorTokens":9999999974898}},{"ix":36,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":6,"t":36,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[true,false,true,true]}},{"ix":37,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":7,"t":42,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[true,false,true,true]}},{"ix":38,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":8,"t":48,"tokens":[6033,15737,4720,4093],"delegation":[5033,14737,3720,3093],"delegatorTokens":9999999974898,"jailed":[1000000000000035,null,null,null],"status":["unbonding","bonded","bonded","unbonded"]}},{"ix":39,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":40,"action":{"kind":"Undelegate","val":1,"amt":4389},"partialState":{"h":8,"t":48,"tokens":[6033,11348,4720,4093],"delegation":[5033,10348,3720,3093],"delegatorTokens":9999999974898}},{"ix":41,"action":{"kind":"Delegate","val":0,"amt":1330},"partialState":{"h":8,"t":48,"tokens":[7363,11348,4720,4093],"delegation":[6363,10348,3720,3093],"delegatorTokens":9999999973568}},{"ix":42,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":9,"t":54,"tokens":[7363,11348,4720,4093],"delegation":[6363,10348,3720,3093],"delegatorTokens":9999999973568,"jailed":[1000000000000035,null,null,null],"status":["unbonding","bonded","bonded","unbonded"]}},{"ix":43,"action":{"kind":"Undelegate","val":3,"amt":4948},"partialState":{"h":9,"t":54,"tokens":[7363,11348,4720,4093],"delegation":[6363,10348,3720,3093],"delegatorTokens":9999999973568}},{"ix":44,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":45,"action":{"kind":"Undelegate","val":1,"amt":3020},"partialState":{"h":9,"t":54,"tokens":[7363,8328,4720,4093],"delegation":[6363,7328,3720,3093],"delegatorTokens":9999999973568}},{"ix":46,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":47,"action":{"kind":"Undelegate","val":2,"amt":4600},"partialState":{"h":9,"t":54,"tokens":[7363,8328,4720,4093],"delegation":[6363,7328,3720,3093],"delegatorTokens":9999999973568}},{"ix":48,"action":{"kind":"Undelegate","val":0,"amt":2036},"partialState":{"h":9,"t":54,"tokens":[5327,8328,4720,4093],"delegation":[4327,7328,3720,3093],"delegatorTokens":9999999973568}},{"ix":49,"action":{"kind":"Delegate","val":2,"amt":3147},"partialState":{"h":9,"t":54,"tokens":[5327,8328,7867,4093],"delegation":[4327,7328,6867,3093],"delegatorTokens":9999999970421}},{"ix":50,"action":{"kind":"Deliver","chain":"provider","numPackets":2},"partialState":{"h":9,"t":54,"tokens":[5327,8328,7867,4093],"delegation":[4327,7328,6867,3093],"delegatorTokens":9999999970421,"jailed":[1000000000000035,null,null,null],"status":["unbonding","bonded","bonded","unbonded"]}},{"ix":51,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":52,"action":{"kind":"Deliver","chain":"provider","numPackets":3},"partialState":{"h":9,"t":54,"tokens":[5327,8328,7867,4093],"delegation":[4327,7328,6867,3093],"delegatorTokens":9999999970421,"jailed":[1000000000000035,null,null,null],"status":["unbonding","bonded","bonded","unbonded"]}},{"ix":53,"action":{"kind":"Undelegate","val":1,"amt":1534},"partialState":{"h":9,"t":54,"tokens":[5327,6794,7867,4093],"delegation":[4327,5794,6867,3093],"delegatorTokens":9999999970421}},{"ix":54,"action":{"kind":"Undelegate","val":1,"amt":2711},"partialState":{"h":9,"t":54,"tokens":[5327,4083,7867,4093],"delegation":[4327,3083,6867,3093],"delegatorTokens":9999999970421}},{"ix":55,"action":{"kind":"Deliver","chain":"provider","numPackets":2},"partialState":{"h":9,"t":54,"tokens":[5327,4083,7867,4093],"delegation":[4327,3083,6867,3093],"delegatorTokens":9999999970421,"jailed":[1000000000000035,null,null,null],"status":["unbonding","bonded","bonded","unbonded"]}},{"ix":56,"action":{"kind":"Delegate","val":2,"amt":2456},"partialState":{"h":9,"t":54,"tokens":[5327,4083,10323,4093],"delegation":[4327,3083,9323,3093],"delegatorTokens":9999999967965}},{"ix":57,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":10,"t":60,"tokens":[5327,4083,10323,4093],"delegation":[4327,3083,9323,3093],"delegatorTokens":9999999967965,"jailed":[1000000000000035,null,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":58,"action":{"kind":"Delegate","val":0,"amt":3175},"partialState":{"h":10,"t":60,"tokens":[8502,4083,10323,4093],"delegation":[7502,3083,9323,3093],"delegatorTokens":9999999964790}},{"ix":59,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":60,"action":{"kind":"Deliver","chain":"consumer","numPackets":4},"partialState":{"h":7,"t":42,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,false,true,true]}},{"ix":61,"action":{"kind":"Undelegate","val":2,"amt":4592},"partialState":{"h":10,"t":60,"tokens":[8502,4083,5731,4093],"delegation":[7502,3083,4731,3093],"delegatorTokens":9999999964790}},{"ix":62,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":11,"t":66,"tokens":[8502,4083,5731,4093],"delegation":[7502,3083,4731,3093],"delegatorTokens":9999999964790,"jailed":[1000000000000035,null,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":63,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":64,"action":{"kind":"Undelegate","val":0,"amt":1354},"partialState":{"h":11,"t":66,"tokens":[7148,4083,5731,4093],"delegation":[6148,3083,4731,3093],"delegatorTokens":9999999964790}},{"ix":65,"action":{"kind":"Undelegate","val":1,"amt":2858},"partialState":{"h":11,"t":66,"tokens":[7148,1225,5731,4093],"delegation":[6148,225,4731,3093],"delegatorTokens":9999999964790}},{"ix":66,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":67,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":12,"t":72,"tokens":[7148,1225,5731,4093],"delegation":[6148,225,4731,3093],"delegatorTokens":9999999964790,"jailed":[1000000000000035,null,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":68,"action":{"kind":"Undelegate","val":1,"amt":4520},"partialState":{"h":12,"t":72,"tokens":[7148,1225,5731,4093],"delegation":[6148,225,4731,3093],"delegatorTokens":9999999964790}},{"ix":69,"action":{"kind":"Deliver","chain":"provider","numPackets":1},"partialState":{"h":12,"t":72,"tokens":[7148,1225,5731,4093],"delegation":[6148,225,4731,3093],"delegatorTokens":9999999964790,"jailed":[1000000000000035,null,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":70,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":13,"t":78,"tokens":[7148,1225,5731,4093],"delegation":[6148,225,4731,3093],"delegatorTokens":9999999964790,"jailed":[1000000000000035,null,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":71,"action":{"kind":"Deliver","chain":"provider","numPackets":3},"partialState":{"h":13,"t":78,"tokens":[7148,1225,5731,4093],"delegation":[6148,225,4731,3093],"delegatorTokens":9999999964790,"jailed":[1000000000000035,null,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":72,"action":{"kind":"Undelegate","val":2,"amt":1742},"partialState":{"h":13,"t":78,"tokens":[7148,1225,3989,4093],"delegation":[6148,225,2989,3093],"delegatorTokens":9999999964790}},{"ix":73,"action":{"kind":"Deliver","chain":"consumer","numPackets":6},"partialState":{"h":7,"t":42,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,false,true,true]}},{"ix":74,"action":{"kind":"Delegate","val":3,"amt":3892},"partialState":{"h":13,"t":78,"tokens":[7148,1225,3989,7985],"delegation":[6148,225,2989,6985],"delegatorTokens":9999999960898}},{"ix":75,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":76,"action":{"kind":"Deliver","chain":"provider","numPackets":3},"partialState":{"h":13,"t":78,"tokens":[7148,1225,3989,7985],"delegation":[6148,225,2989,6985],"delegatorTokens":9999999960898,"jailed":[1000000000000035,null,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":77,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":14,"t":84,"tokens":[7148,1225,3989,7985],"delegation":[6148,225,2989,6985],"delegatorTokens":9999999960898,"jailed":[1000000000000035,null,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":78,"action":{"kind":"Delegate","val":0,"amt":4757},"partialState":{"h":14,"t":84,"tokens":[11905,1225,3989,7985],"delegation":[10905,225,2989,6985],"delegatorTokens":9999999956141}},{"ix":79,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":80,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":8,"t":48,"consumerPower":[null,null,5731,4093],"outstandingDowntime":[false,false,true,true]}},{"ix":81,"action":{"kind":"Delegate","val":2,"amt":1969},"partialState":{"h":14,"t":84,"tokens":[11905,1225,5958,7985],"delegation":[10905,225,4958,6985],"delegatorTokens":9999999954172}},{"ix":82,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":83,"action":{"kind":"Deliver","chain":"provider","numPackets":1},"partialState":{"h":14,"t":84,"tokens":[11905,1225,5958,7985],"delegation":[10905,225,4958,6985],"delegatorTokens":9999999954172,"jailed":[1000000000000035,null,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":84,"action":{"kind":"Delegate","val":3,"amt":1530},"partialState":{"h":14,"t":84,"tokens":[11905,1225,5958,9515],"delegation":[10905,225,4958,8515],"delegatorTokens":9999999952642}},{"ix":85,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":9,"t":54,"consumerPower":[null,null,5731,4093],"outstandingDowntime":[false,false,true,true]}},{"ix":86,"action":{"kind":"Undelegate","val":2,"amt":2689},"partialState":{"h":14,"t":84,"tokens":[11905,1225,3269,9515],"delegation":[10905,225,2269,8515],"delegatorTokens":9999999952642}},{"ix":87,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":88,"action":{"kind":"Deliver","chain":"consumer","numPackets":3},"partialState":{"h":9,"t":54,"consumerPower":[null,null,5731,4093],"outstandingDowntime":[false,false,true,true]}},{"ix":89,"action":{"kind":"Undelegate","val":1,"amt":1748},"partialState":{"h":14,"t":84,"tokens":[11905,1225,3269,9515],"delegation":[10905,225,2269,8515],"delegatorTokens":9999999952642}},{"ix":90,"action":{"kind":"Undelegate","val":1,"amt":2850},"partialState":{"h":14,"t":84,"tokens":[11905,1225,3269,9515],"delegation":[10905,225,2269,8515],"delegatorTokens":9999999952642}},{"ix":91,"action":{"kind":"Delegate","val":3,"amt":2876},"partialState":{"h":14,"t":84,"tokens":[11905,1225,3269,12391],"delegation":[10905,225,2269,11391],"delegatorTokens":9999999949766}},{"ix":92,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":93,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":94,"action":{"kind":"Undelegate","val":2,"amt":3406},"partialState":{"h":14,"t":84,"tokens":[11905,1225,3269,12391],"delegation":[10905,225,2269,11391],"delegatorTokens":9999999949766}},{"ix":95,"action":{"kind":"Deliver","chain":"consumer","numPackets":5},"partialState":{"h":9,"t":54,"consumerPower":[null,null,5731,4093],"outstandingDowntime":[false,false,true,true]}},{"ix":96,"action":{"kind":"Undelegate","val":3,"amt":2955},"partialState":{"h":14,"t":84,"tokens":[11905,1225,3269,9436],"delegation":[10905,225,2269,8436],"delegatorTokens":9999999949766}},{"ix":97,"action":{"kind":"Undelegate","val":2,"amt":1525},"partialState":{"h":14,"t":84,"tokens":[11905,1225,1744,9436],"delegation":[10905,225,744,8436],"delegatorTokens":9999999949766}},{"ix":98,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":99,"action":{"kind":"Deliver","chain":"consumer","numPackets":3},"partialState":{"h":9,"t":54,"consumerPower":[null,null,5731,4093],"outstandingDowntime":[false,false,true,true]}},{"ix":100,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":10,"t":60,"consumerPower":[null,null,5731,4093],"outstandingDowntime":[false,false,true,true]}},{"ix":101,"action":{"kind":"Undelegate","val":2,"amt":2986},"partialState":{"h":14,"t":84,"tokens":[11905,1225,1744,9436],"delegation":[10905,225,744,8436],"delegatorTokens":9999999949766}},{"ix":102,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":15,"t":90,"tokens":[11905,1225,1744,9436],"delegation":[10905,225,744,8436],"delegatorTokens":9999999949766,"jailed":[1000000000000035,null,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":103,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":104,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":105,"action":{"kind":"Deliver","chain":"consumer","numPackets":4},"partialState":{"h":10,"t":60,"consumerPower":[null,null,5731,4093],"outstandingDowntime":[false,false,true,true]}},{"ix":106,"action":{"kind":"Undelegate","val":0,"amt":4941},"partialState":{"h":15,"t":90,"tokens":[6964,1225,1744,9436],"delegation":[5964,225,744,8436],"delegatorTokens":9999999949766}},{"ix":107,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":108,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":109,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":11,"t":66,"consumerPower":[null,null,3989,7985],"outstandingDowntime":[false,false,true,true]}},{"ix":110,"action":{"kind":"Deliver","chain":"provider","numPackets":3},"partialState":{"h":15,"t":90,"tokens":[6964,1225,1744,9436],"delegation":[5964,225,744,8436],"delegatorTokens":9999999949766,"jailed":[1000000000000035,null,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":111,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":112,"action":{"kind":"Deliver","chain":"provider","numPackets":2},"partialState":{"h":15,"t":90,"tokens":[6964,1225,1744,9436],"delegation":[5964,225,744,8436],"delegatorTokens":9999999949766,"jailed":[1000000000000035,null,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":113,"action":{"kind":"Undelegate","val":1,"amt":4849},"partialState":{"h":15,"t":90,"tokens":[6964,1225,1744,9436],"delegation":[5964,225,744,8436],"delegatorTokens":9999999949766}},{"ix":114,"action":{"kind":"Deliver","chain":"provider","numPackets":1},"partialState":{"h":15,"t":90,"tokens":[6964,1225,1744,9436],"delegation":[5964,225,744,8436],"delegatorTokens":9999999949766,"jailed":[1000000000000035,null,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":115,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":116,"action":{"kind":"Deliver","chain":"provider","numPackets":1},"partialState":{"h":15,"t":90,"tokens":[6964,1225,1744,9436],"delegation":[5964,225,744,8436],"delegatorTokens":9999999949766,"jailed":[1000000000000035,null,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":117,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":12,"t":72,"consumerPower":[null,null,3989,7985],"outstandingDowntime":[false,false,true,true]}},{"ix":118,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":13,"t":78,"consumerPower":[null,null,3989,7985],"outstandingDowntime":[false,false,true,true]}},{"ix":119,"action":{"kind":"Undelegate","val":0,"amt":1112},"partialState":{"h":15,"t":90,"tokens":[5852,1225,1744,9436],"delegation":[4852,225,744,8436],"delegatorTokens":9999999949766}},{"ix":120,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":121,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":16,"t":96,"tokens":[5852,1225,1744,9436],"delegation":[4852,225,744,8436],"delegatorTokens":9999999949766,"jailed":[1000000000000035,null,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":122,"action":{"kind":"Delegate","val":0,"amt":4692},"partialState":{"h":16,"t":96,"tokens":[10544,1225,1744,9436],"delegation":[9544,225,744,8436],"delegatorTokens":9999999945074}},{"ix":123,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":14,"t":84,"consumerPower":[null,null,3989,7985],"outstandingDowntime":[false,false,true,true]}},{"ix":124,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":15,"t":90,"consumerPower":[null,null,3989,7985],"outstandingDowntime":[false,false,true,true]}},{"ix":125,"action":{"kind":"Delegate","val":1,"amt":2474},"partialState":{"h":16,"t":96,"tokens":[10544,3699,1744,9436],"delegation":[9544,2699,744,8436],"delegatorTokens":9999999942600}},{"ix":126,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":127,"action":{"kind":"Delegate","val":3,"amt":4641},"partialState":{"h":16,"t":96,"tokens":[10544,3699,1744,14077],"delegation":[9544,2699,744,13077],"delegatorTokens":9999999937959}},{"ix":128,"action":{"kind":"Deliver","chain":"provider","numPackets":3},"partialState":{"h":16,"t":96,"tokens":[10544,3699,1744,14077],"delegation":[9544,2699,744,13077],"delegatorTokens":9999999937959,"jailed":[1000000000000035,null,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":129,"action":{"kind":"Delegate","val":3,"amt":4763},"partialState":{"h":16,"t":96,"tokens":[10544,3699,1744,18840],"delegation":[9544,2699,744,17840],"delegatorTokens":9999999933196}},{"ix":130,"action":{"kind":"Delegate","val":1,"amt":2151},"partialState":{"h":16,"t":96,"tokens":[10544,5850,1744,18840],"delegation":[9544,4850,744,17840],"delegatorTokens":9999999931045}},{"ix":131,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":132,"action":{"kind":"Undelegate","val":3,"amt":4835},"partialState":{"h":16,"t":96,"tokens":[10544,5850,1744,14005],"delegation":[9544,4850,744,13005],"delegatorTokens":9999999931045}},{"ix":133,"action":{"kind":"Deliver","chain":"consumer","numPackets":5},"partialState":{"h":15,"t":90,"consumerPower":[null,null,3989,7985],"outstandingDowntime":[false,false,true,true]}},{"ix":134,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":17,"t":102,"tokens":[10544,5850,1744,14005],"delegation":[9544,4850,744,13005],"delegatorTokens":9999999931045,"jailed":[1000000000000035,null,null,null],"status":["unbonding","bonded","unbonding","bonded"]}},{"ix":135,"action":{"kind":"Delegate","val":1,"amt":1272},"partialState":{"h":17,"t":102,"tokens":[10544,7122,1744,14005],"delegation":[9544,6122,744,13005],"delegatorTokens":9999999929773}},{"ix":136,"action":{"kind":"Deliver","chain":"provider","numPackets":2},"partialState":{"h":17,"t":102,"tokens":[10544,7122,1744,14005],"delegation":[9544,6122,744,13005],"delegatorTokens":9999999929773,"jailed":[1000000000000035,null,null,null],"status":["unbonding","bonded","unbonding","bonded"]}},{"ix":137,"action":{"kind":"Undelegate","val":3,"amt":1090},"partialState":{"h":17,"t":102,"tokens":[10544,7122,1744,12915],"delegation":[9544,6122,744,11915],"delegatorTokens":9999999929773}},{"ix":138,"action":{"kind":"Deliver","chain":"consumer","numPackets":5},"partialState":{"h":15,"t":90,"consumerPower":[null,null,3989,7985],"outstandingDowntime":[false,false,true,true]}},{"ix":139,"action":{"kind":"Delegate","val":2,"amt":1702},"partialState":{"h":17,"t":102,"tokens":[10544,7122,3446,12915],"delegation":[9544,6122,2446,11915],"delegatorTokens":9999999928071}},{"ix":140,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":141,"action":{"kind":"Delegate","val":1,"amt":2285},"partialState":{"h":17,"t":102,"tokens":[10544,9407,3446,12915],"delegation":[9544,8407,2446,11915],"delegatorTokens":9999999925786}},{"ix":142,"action":{"kind":"Delegate","val":0,"amt":4011},"partialState":{"h":17,"t":102,"tokens":[14555,9407,3446,12915],"delegation":[13555,8407,2446,11915],"delegatorTokens":9999999921775}},{"ix":143,"action":{"kind":"Undelegate","val":1,"amt":4330},"partialState":{"h":17,"t":102,"tokens":[14555,5077,3446,12915],"delegation":[13555,4077,2446,11915],"delegatorTokens":9999999921775}},{"ix":144,"action":{"kind":"Deliver","chain":"consumer","numPackets":1},"partialState":{"h":15,"t":90,"consumerPower":[null,null,3989,7985],"outstandingDowntime":[false,false,true,true]}},{"ix":145,"action":{"kind":"Deliver","chain":"provider","numPackets":4},"partialState":{"h":17,"t":102,"tokens":[14555,5077,3446,12915],"delegation":[13555,4077,2446,11915],"delegatorTokens":9999999921775,"jailed":[1000000000000035,null,null,null],"status":["unbonding","bonded","unbonding","bonded"]}},{"ix":146,"action":{"kind":"Delegate","val":2,"amt":3433},"partialState":{"h":17,"t":102,"tokens":[14555,5077,6879,12915],"delegation":[13555,4077,5879,11915],"delegatorTokens":9999999918342}},{"ix":147,"action":{"kind":"Deliver","chain":"consumer","numPackets":4},"partialState":{"h":15,"t":90,"consumerPower":[null,null,3989,7985],"outstandingDowntime":[false,false,true,true]}},{"ix":148,"action":{"kind":"Deliver","chain":"consumer","numPackets":5},"partialState":{"h":15,"t":90,"consumerPower":[null,null,3989,7985],"outstandingDowntime":[false,false,true,true]}},{"ix":149,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":150,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":18,"t":108,"tokens":[14555,5077,6879,12915],"delegation":[13555,4077,5879,11915],"delegatorTokens":9999999918342,"jailed":[1000000000000035,null,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":151,"action":{"kind":"Delegate","val":2,"amt":2747},"partialState":{"h":18,"t":108,"tokens":[14555,5077,9626,12915],"delegation":[13555,4077,8626,11915],"delegatorTokens":9999999915595}},{"ix":152,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":16,"t":96,"consumerPower":[null,null,1744,9436],"outstandingDowntime":[false,false,true,true]}},{"ix":153,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":19,"t":114,"tokens":[14555,5077,9626,12915],"delegation":[13555,4077,8626,11915],"delegatorTokens":9999999915595,"jailed":[1000000000000035,null,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":154,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":20,"t":120,"tokens":[14555,5077,9626,12915],"delegation":[13555,4077,8626,11915],"delegatorTokens":9999999915595,"jailed":[1000000000000035,null,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":155,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":21,"t":126,"tokens":[14555,5077,9626,12915],"delegation":[13555,4077,8626,11915],"delegatorTokens":9999999915595,"jailed":[1000000000000035,null,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":156,"action":{"kind":"Undelegate","val":3,"amt":2701},"partialState":{"h":21,"t":126,"tokens":[14555,5077,9626,10214],"delegation":[13555,4077,8626,9214],"delegatorTokens":9999999915595}},{"ix":157,"action":{"kind":"Delegate","val":3,"amt":3292},"partialState":{"h":21,"t":126,"tokens":[14555,5077,9626,13506],"delegation":[13555,4077,8626,12506],"delegatorTokens":9999999912303}},{"ix":158,"action":{"kind":"Deliver","chain":"consumer","numPackets":3},"partialState":{"h":16,"t":96,"consumerPower":[null,null,1744,9436],"outstandingDowntime":[false,false,true,true]}},{"ix":159,"action":{"kind":"Deliver","chain":"consumer","numPackets":6},"partialState":{"h":16,"t":96,"consumerPower":[null,null,1744,9436],"outstandingDowntime":[false,false,true,true]}},{"ix":160,"action":{"kind":"Deliver","chain":"consumer","numPackets":5},"partialState":{"h":16,"t":96,"consumerPower":[null,null,1744,9436],"outstandingDowntime":[false,false,true,true]}},{"ix":161,"action":{"kind":"Undelegate","val":2,"amt":2331},"partialState":{"h":21,"t":126,"tokens":[14555,5077,7295,13506],"delegation":[13555,4077,6295,12506],"delegatorTokens":9999999912303}},{"ix":162,"action":{"kind":"Delegate","val":2,"amt":1508},"partialState":{"h":21,"t":126,"tokens":[14555,5077,8803,13506],"delegation":[13555,4077,7803,12506],"delegatorTokens":9999999910795}},{"ix":163,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":22,"t":132,"tokens":[14555,5077,8803,13506],"delegation":[13555,4077,7803,12506],"delegatorTokens":9999999910795,"jailed":[1000000000000035,null,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":164,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":165,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":166,"action":{"kind":"Deliver","chain":"consumer","numPackets":3},"partialState":{"h":16,"t":96,"consumerPower":[null,null,1744,9436],"outstandingDowntime":[false,false,true,true]}},{"ix":167,"action":{"kind":"Undelegate","val":3,"amt":1672},"partialState":{"h":22,"t":132,"tokens":[14555,5077,8803,11834],"delegation":[13555,4077,7803,10834],"delegatorTokens":9999999910795}},{"ix":168,"action":{"kind":"Deliver","chain":"consumer","numPackets":6},"partialState":{"h":16,"t":96,"consumerPower":[null,null,1744,9436],"outstandingDowntime":[false,false,true,true]}},{"ix":169,"action":{"kind":"Delegate","val":1,"amt":3234},"partialState":{"h":22,"t":132,"tokens":[14555,8311,8803,11834],"delegation":[13555,7311,7803,10834],"delegatorTokens":9999999907561}},{"ix":170,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":171,"action":{"kind":"Undelegate","val":2,"amt":2052},"partialState":{"h":22,"t":132,"tokens":[14555,8311,6751,11834],"delegation":[13555,7311,5751,10834],"delegatorTokens":9999999907561}},{"ix":172,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":173,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":174,"action":{"kind":"Delegate","val":0,"amt":3375},"partialState":{"h":22,"t":132,"tokens":[17930,8311,6751,11834],"delegation":[16930,7311,5751,10834],"delegatorTokens":9999999904186}},{"ix":175,"action":{"kind":"Undelegate","val":0,"amt":4382},"partialState":{"h":22,"t":132,"tokens":[13548,8311,6751,11834],"delegation":[12548,7311,5751,10834],"delegatorTokens":9999999904186}},{"ix":176,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":17,"t":102,"consumerPower":[null,null,9626,12915],"outstandingDowntime":[false,false,true,true]}},{"ix":177,"action":{"kind":"Delegate","val":0,"amt":2915},"partialState":{"h":22,"t":132,"tokens":[16463,8311,6751,11834],"delegation":[15463,7311,5751,10834],"delegatorTokens":9999999901271}},{"ix":178,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":179,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":18,"t":108,"consumerPower":[null,null,9626,12915],"outstandingDowntime":[false,false,true,true]}},{"ix":180,"action":{"kind":"Delegate","val":2,"amt":2224},"partialState":{"h":22,"t":132,"tokens":[16463,8311,8975,11834],"delegation":[15463,7311,7975,10834],"delegatorTokens":9999999899047}},{"ix":181,"action":{"kind":"Deliver","chain":"consumer","numPackets":3},"partialState":{"h":18,"t":108,"consumerPower":[null,null,9626,12915],"outstandingDowntime":[false,false,true,true]}},{"ix":182,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":183,"action":{"kind":"Delegate","val":0,"amt":2421},"partialState":{"h":22,"t":132,"tokens":[18884,8311,8975,11834],"delegation":[17884,7311,7975,10834],"delegatorTokens":9999999896626}},{"ix":184,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":23,"t":138,"tokens":[18884,8311,8975,11834],"delegation":[17884,7311,7975,10834],"delegatorTokens":9999999896626,"jailed":[1000000000000035,null,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":185,"action":{"kind":"Delegate","val":0,"amt":3458},"partialState":{"h":23,"t":138,"tokens":[22342,8311,8975,11834],"delegation":[21342,7311,7975,10834],"delegatorTokens":9999999893168}},{"ix":186,"action":{"kind":"Deliver","chain":"provider","numPackets":4},"partialState":{"h":23,"t":138,"tokens":[22342,8311,8975,11834],"delegation":[21342,7311,7975,10834],"delegatorTokens":9999999893168,"jailed":[1000000000000035,null,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":187,"action":{"kind":"Deliver","chain":"provider","numPackets":1},"partialState":{"h":23,"t":138,"tokens":[22342,8311,8975,11834],"delegation":[21342,7311,7975,10834],"delegatorTokens":9999999893168,"jailed":[1000000000000035,null,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":188,"action":{"kind":"Undelegate","val":3,"amt":1997},"partialState":{"h":23,"t":138,"tokens":[22342,8311,8975,9837],"delegation":[21342,7311,7975,8837],"delegatorTokens":9999999893168}},{"ix":189,"action":{"kind":"Delegate","val":0,"amt":4813},"partialState":{"h":23,"t":138,"tokens":[27155,8311,8975,9837],"delegation":[26155,7311,7975,8837],"delegatorTokens":9999999888355}},{"ix":190,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":191,"action":{"kind":"Delegate","val":0,"amt":3685},"partialState":{"h":23,"t":138,"tokens":[30840,8311,8975,9837],"delegation":[29840,7311,7975,8837],"delegatorTokens":9999999884670}},{"ix":192,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":24,"t":144,"tokens":[30840,8311,8975,9837],"delegation":[29840,7311,7975,8837],"delegatorTokens":9999999906879,"jailed":[1000000000000035,null,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":193,"action":{"kind":"Deliver","chain":"provider","numPackets":4},"partialState":{"h":24,"t":144,"tokens":[30840,8311,8975,9837],"delegation":[29840,7311,7975,8837],"delegatorTokens":9999999906879,"jailed":[1000000000000035,null,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":194,"action":{"kind":"Undelegate","val":0,"amt":4522},"partialState":{"h":24,"t":144,"tokens":[26318,8311,8975,9837],"delegation":[25318,7311,7975,8837],"delegatorTokens":9999999906879}},{"ix":195,"action":{"kind":"Deliver","chain":"consumer","numPackets":6},"partialState":{"h":18,"t":108,"consumerPower":[null,null,9626,12915],"outstandingDowntime":[false,false,true,true]}},{"ix":196,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":197,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":198,"action":{"kind":"Deliver","chain":"consumer","numPackets":1},"partialState":{"h":18,"t":108,"consumerPower":[null,null,9626,12915],"outstandingDowntime":[false,false,true,true]}},{"ix":199,"action":{"kind":"Deliver","chain":"provider","numPackets":4},"partialState":{"h":24,"t":144,"tokens":[26318,8311,8975,9837],"delegation":[25318,7311,7975,8837],"delegatorTokens":9999999906879,"jailed":[1000000000000035,null,null,null],"status":["unbonding","unbonding","bonded","bonded"]}}],"events":["send_downtime_slash_request","send_downtime_slash_request","send_vsc_without_downtime_ack","send_downtime_slash_request","insufficient_shares","insufficient_shares","receive_downtime_slash_request","jail","receive_slash_request_unbonded","receive_slash_request_unbonded","send_vsc_with_downtime_ack","send_vsc_without_downtime_ack","send_vsc_without_downtime_ack","insufficient_shares","insufficient_shares","send_vsc_without_downtime_ack","receive_downtime_slash_ack","send_vsc_without_downtime_ack","send_vsc_not_because_change","send_vsc_without_downtime_ack","insufficient_shares","some_undels_expired_but_not_completed","send_vsc_without_downtime_ack","consumer_del_val","consumer_del_val","consumer_add_val","consumer_add_val","insufficient_shares","insufficient_shares","insufficient_shares","insufficient_shares","send_vsc_without_downtime_ack","consumer_update_val","consumer_update_val","insufficient_shares","send_vsc_not_because_change","send_vsc_without_downtime_ack","rebond_unval","send_vsc_without_downtime_ack","more_than_one_third_val_power_change","rebond_unval","send_vsc_without_downtime_ack","consumer_update_val","consumer_update_val","some_undels_expired_but_not_completed","send_vsc_without_downtime_ack","some_undels_expired_but_not_completed","some_undels_expired_but_not_completed","send_vsc_without_downtime_ack","consumer_send_maturation","consumer_send_maturation","consumer_send_maturation","consumer_send_maturation","consumer_send_maturation","consumer_send_maturation","consumer_send_maturation","consumer_del_val","consumer_update_val","consumer_update_val","some_undels_expired_but_not_completed","send_vsc_without_downtime_ack","some_undels_expired_but_not_completed","complete_undel_immediate","complete_undel_immediate","complete_undel_immediate","set_unval_hold_false","complete_undel_immediate","complete_undel_immediate","complete_undel_immediate","complete_undel_immediate","complete_undel_immediate","send_vsc_without_downtime_ack"]},{"meta":{"commit":"7ffd0c04e4205cbc9caf212abfe6c59ee43153bf"},"constants":{"P":"provider","C":"consumer","UNBONDING_SECONDS_P":70,"UNBONDING_SECONDS_C":50,"TRUSTING_SECONDS":49,"NUM_VALIDATORS":4,"MAX_VALIDATORS":2,"SLASH_DOUBLESIGN":0,"SLASH_DOWNTIME":0,"JAIL_SECONDS":999999999999999,"BLOCK_SECONDS":6,"INITIAL_DELEGATOR_TOKENS":10000000000000,"DELEGATE_AMT_MIN":1000,"DELEGATE_AMT_MAX":5000,"UNDELEGATE_AMT_MIN":1000,"UNDELEGATE_AMT_MAX":5000,"ISDOWNTIME_PROBABILITY":0.5,"MAX_NUM_PACKETS_FOR_DELIVER":6},"actions":[{"ix":0,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":2,"t":12,"tokens":[5000,4000,3000,2000],"delegation":[4000,3000,2000,1000],"delegatorTokens":10000000000000,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":1,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":2,"t":12,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":2,"action":{"kind":"Undelegate","val":2,"amt":4620},"partialState":{"h":2,"t":12,"tokens":[5000,4000,3000,2000],"delegation":[4000,3000,2000,1000],"delegatorTokens":10000000000000}},{"ix":3,"action":{"kind":"Deliver","chain":"consumer","numPackets":2},"partialState":{"h":2,"t":12,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":4,"action":{"kind":"ConsumerSlash","val":2,"infractionHeight":0,"isDowntime":true},"partialState":{"h":2,"t":12,"outstandingDowntime":[false,false,true,false]}},{"ix":5,"action":{"kind":"Deliver","chain":"provider","numPackets":5},"partialState":{"h":2,"t":12,"tokens":[5000,4000,3000,2000],"delegation":[4000,3000,2000,1000],"delegatorTokens":10000000000000,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":6,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":7,"action":{"kind":"Delegate","val":0,"amt":2735},"partialState":{"h":2,"t":12,"tokens":[7735,4000,3000,2000],"delegation":[6735,3000,2000,1000],"delegatorTokens":9999999997265}},{"ix":8,"action":{"kind":"ConsumerSlash","val":3,"infractionHeight":0,"isDowntime":true},"partialState":{"h":2,"t":12,"outstandingDowntime":[false,false,true,true]}},{"ix":9,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":3,"t":18,"tokens":[7735,4000,3000,2000],"delegation":[6735,3000,2000,1000],"delegatorTokens":9999999997265,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":10,"action":{"kind":"Deliver","chain":"consumer","numPackets":3},"partialState":{"h":2,"t":12,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,false,true,true]}},{"ix":11,"action":{"kind":"Undelegate","val":2,"amt":3674},"partialState":{"h":3,"t":18,"tokens":[7735,4000,3000,2000],"delegation":[6735,3000,2000,1000],"delegatorTokens":9999999997265}},{"ix":12,"action":{"kind":"ConsumerSlash","val":0,"infractionHeight":1,"isDowntime":true},"partialState":{"h":2,"t":12,"outstandingDowntime":[true,false,true,true]}},{"ix":13,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":4,"t":24,"tokens":[7735,4000,3000,2000],"delegation":[6735,3000,2000,1000],"delegatorTokens":9999999997265,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":14,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":3,"t":18,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[true,false,true,true]}},{"ix":15,"action":{"kind":"Deliver","chain":"provider","numPackets":4},"partialState":{"h":4,"t":24,"tokens":[7735,4000,3000,2000],"delegation":[6735,3000,2000,1000],"delegatorTokens":9999999997265,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":16,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":17,"action":{"kind":"Delegate","val":0,"amt":3341},"partialState":{"h":4,"t":24,"tokens":[11076,4000,3000,2000],"delegation":[10076,3000,2000,1000],"delegatorTokens":9999999993924}},{"ix":18,"action":{"kind":"Deliver","chain":"provider","numPackets":2},"partialState":{"h":4,"t":24,"tokens":[11076,4000,3000,2000],"delegation":[10076,3000,2000,1000],"delegatorTokens":9999999993924,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":19,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":20,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":4,"t":24,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[true,false,true,true]}},{"ix":21,"action":{"kind":"Deliver","chain":"provider","numPackets":2},"partialState":{"h":4,"t":24,"tokens":[11076,4000,3000,2000],"delegation":[10076,3000,2000,1000],"delegatorTokens":9999999993924,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":22,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":5,"t":30,"tokens":[11076,4000,3000,2000],"delegation":[10076,3000,2000,1000],"delegatorTokens":9999999993924,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":23,"action":{"kind":"Undelegate","val":3,"amt":2371},"partialState":{"h":5,"t":30,"tokens":[11076,4000,3000,2000],"delegation":[10076,3000,2000,1000],"delegatorTokens":9999999993924}},{"ix":24,"action":{"kind":"Deliver","chain":"provider","numPackets":4},"partialState":{"h":5,"t":30,"tokens":[11076,4000,3000,2000],"delegation":[10076,3000,2000,1000],"delegatorTokens":9999999993924,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":25,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":26,"action":{"kind":"Delegate","val":2,"amt":3539},"partialState":{"h":5,"t":30,"tokens":[11076,4000,6539,2000],"delegation":[10076,3000,5539,1000],"delegatorTokens":9999999990385}},{"ix":27,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":5,"t":30,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[true,false,true,true]}},{"ix":28,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":6,"t":36,"tokens":[11076,4000,6539,2000],"delegation":[10076,3000,5539,1000],"delegatorTokens":9999999990385,"jailed":[1000000000000029,null,null,null],"status":["bonded","unbonding","bonded","unbonded"]}},{"ix":29,"action":{"kind":"Delegate","val":3,"amt":2406},"partialState":{"h":6,"t":36,"tokens":[11076,4000,6539,4406],"delegation":[10076,3000,5539,3406],"delegatorTokens":9999999987979}},{"ix":30,"action":{"kind":"Undelegate","val":0,"amt":2999},"partialState":{"h":6,"t":36,"tokens":[8077,4000,6539,4406],"delegation":[7077,3000,5539,3406],"delegatorTokens":9999999987979}},{"ix":31,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":6,"t":36,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[true,false,true,true]}},{"ix":32,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":33,"action":{"kind":"Delegate","val":3,"amt":1899},"partialState":{"h":6,"t":36,"tokens":[8077,4000,6539,6305],"delegation":[7077,3000,5539,5305],"delegatorTokens":9999999986080}},{"ix":34,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":7,"t":42,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[true,false,true,true]}},{"ix":35,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":7,"t":42,"tokens":[8077,4000,6539,6305],"delegation":[7077,3000,5539,5305],"delegatorTokens":9999999986080,"jailed":[1000000000000029,null,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":36,"action":{"kind":"Undelegate","val":3,"amt":1076},"partialState":{"h":7,"t":42,"tokens":[8077,4000,6539,5229],"delegation":[7077,3000,5539,4229],"delegatorTokens":9999999986080}},{"ix":37,"action":{"kind":"Delegate","val":1,"amt":4024},"partialState":{"h":7,"t":42,"tokens":[8077,8024,6539,5229],"delegation":[7077,7024,5539,4229],"delegatorTokens":9999999982056}},{"ix":38,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":39,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":8,"t":48,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[true,false,true,true]}},{"ix":40,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":8,"t":48,"tokens":[8077,8024,6539,5229],"delegation":[7077,7024,5539,4229],"delegatorTokens":9999999982056,"jailed":[1000000000000029,null,null,null],"status":["unbonding","bonded","bonded","unbonding"]}},{"ix":41,"action":{"kind":"Deliver","chain":"consumer","numPackets":4},"partialState":{"h":8,"t":48,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,false,true,true]}},{"ix":42,"action":{"kind":"Undelegate","val":0,"amt":3318},"partialState":{"h":8,"t":48,"tokens":[4759,8024,6539,5229],"delegation":[3759,7024,5539,4229],"delegatorTokens":9999999982056}},{"ix":43,"action":{"kind":"Undelegate","val":1,"amt":2533},"partialState":{"h":8,"t":48,"tokens":[4759,5491,6539,5229],"delegation":[3759,4491,5539,4229],"delegatorTokens":9999999982056}},{"ix":44,"action":{"kind":"Undelegate","val":0,"amt":4649},"partialState":{"h":8,"t":48,"tokens":[4759,5491,6539,5229],"delegation":[3759,4491,5539,4229],"delegatorTokens":9999999982056}},{"ix":45,"action":{"kind":"Deliver","chain":"consumer","numPackets":3},"partialState":{"h":8,"t":48,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,false,true,true]}},{"ix":46,"action":{"kind":"Deliver","chain":"consumer","numPackets":1},"partialState":{"h":8,"t":48,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,false,true,true]}},{"ix":47,"action":{"kind":"Delegate","val":2,"amt":4117},"partialState":{"h":8,"t":48,"tokens":[4759,5491,10656,5229],"delegation":[3759,4491,9656,4229],"delegatorTokens":9999999977939}},{"ix":48,"action":{"kind":"Delegate","val":3,"amt":3228},"partialState":{"h":8,"t":48,"tokens":[4759,5491,10656,8457],"delegation":[3759,4491,9656,7457],"delegatorTokens":9999999974711}},{"ix":49,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":9,"t":54,"consumerPower":[null,null,6539,6305],"outstandingDowntime":[false,false,true,true]}},{"ix":50,"action":{"kind":"Undelegate","val":3,"amt":3736},"partialState":{"h":8,"t":48,"tokens":[4759,5491,10656,4721],"delegation":[3759,4491,9656,3721],"delegatorTokens":9999999974711}},{"ix":51,"action":{"kind":"Deliver","chain":"consumer","numPackets":5},"partialState":{"h":9,"t":54,"consumerPower":[null,null,6539,6305],"outstandingDowntime":[false,false,true,true]}},{"ix":52,"action":{"kind":"Delegate","val":3,"amt":2175},"partialState":{"h":8,"t":48,"tokens":[4759,5491,10656,6896],"delegation":[3759,4491,9656,5896],"delegatorTokens":9999999972536}},{"ix":53,"action":{"kind":"Deliver","chain":"provider","numPackets":4},"partialState":{"h":8,"t":48,"tokens":[4759,5491,10656,6896],"delegation":[3759,4491,9656,5896],"delegatorTokens":9999999972536,"jailed":[1000000000000029,null,null,null],"status":["unbonding","bonded","bonded","unbonding"]}},{"ix":54,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":9,"t":54,"tokens":[4759,5491,10656,6896],"delegation":[3759,4491,9656,5896],"delegatorTokens":9999999972536,"jailed":[1000000000000029,null,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":55,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":10,"t":60,"consumerPower":[null,null,6539,6305],"outstandingDowntime":[false,false,true,true]}},{"ix":56,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":11,"t":66,"consumerPower":[null,null,6539,6305],"outstandingDowntime":[false,false,true,true]}},{"ix":57,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":58,"action":{"kind":"Deliver","chain":"consumer","numPackets":2},"partialState":{"h":11,"t":66,"consumerPower":[null,null,6539,6305],"outstandingDowntime":[false,false,true,true]}},{"ix":59,"action":{"kind":"Delegate","val":1,"amt":4044},"partialState":{"h":9,"t":54,"tokens":[4759,9535,10656,6896],"delegation":[3759,8535,9656,5896],"delegatorTokens":9999999968492}},{"ix":60,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":61,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":12,"t":72,"consumerPower":[null,8024,6539,null],"outstandingDowntime":[false,false,true,true]}},{"ix":62,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":63,"action":{"kind":"Delegate","val":3,"amt":1966},"partialState":{"h":9,"t":54,"tokens":[4759,9535,10656,8862],"delegation":[3759,8535,9656,7862],"delegatorTokens":9999999966526}},{"ix":64,"action":{"kind":"Undelegate","val":3,"amt":2958},"partialState":{"h":9,"t":54,"tokens":[4759,9535,10656,5904],"delegation":[3759,8535,9656,4904],"delegatorTokens":9999999966526}},{"ix":65,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":66,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":10,"t":60,"tokens":[4759,9535,10656,5904],"delegation":[3759,8535,9656,4904],"delegatorTokens":9999999966526,"jailed":[1000000000000029,null,null,null],"status":["unbonding","bonded","bonded","unbonding"]}},{"ix":67,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":11,"t":66,"tokens":[4759,9535,10656,5904],"delegation":[3759,8535,9656,4904],"delegatorTokens":9999999966526,"jailed":[1000000000000029,null,null,null],"status":["unbonding","bonded","bonded","unbonding"]}},{"ix":68,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":69,"action":{"kind":"Undelegate","val":3,"amt":2915},"partialState":{"h":11,"t":66,"tokens":[4759,9535,10656,2989],"delegation":[3759,8535,9656,1989],"delegatorTokens":9999999966526}},{"ix":70,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":12,"t":72,"tokens":[4759,9535,10656,2989],"delegation":[3759,8535,9656,1989],"delegatorTokens":9999999966526,"jailed":[1000000000000029,null,null,null],"status":["unbonding","bonded","bonded","unbonding"]}},{"ix":71,"action":{"kind":"Delegate","val":1,"amt":1370},"partialState":{"h":12,"t":72,"tokens":[4759,10905,10656,2989],"delegation":[3759,9905,9656,1989],"delegatorTokens":9999999965156}},{"ix":72,"action":{"kind":"Deliver","chain":"provider","numPackets":5},"partialState":{"h":12,"t":72,"tokens":[4759,10905,10656,2989],"delegation":[3759,9905,9656,1989],"delegatorTokens":9999999965156,"jailed":[1000000000000029,null,null,null],"status":["unbonding","bonded","bonded","unbonding"]}},{"ix":73,"action":{"kind":"Undelegate","val":3,"amt":2112},"partialState":{"h":12,"t":72,"tokens":[4759,10905,10656,2989],"delegation":[3759,9905,9656,1989],"delegatorTokens":9999999965156}},{"ix":74,"action":{"kind":"Delegate","val":3,"amt":1672},"partialState":{"h":12,"t":72,"tokens":[4759,10905,10656,4661],"delegation":[3759,9905,9656,3661],"delegatorTokens":9999999963484}},{"ix":75,"action":{"kind":"Undelegate","val":0,"amt":4521},"partialState":{"h":12,"t":72,"tokens":[4759,10905,10656,4661],"delegation":[3759,9905,9656,3661],"delegatorTokens":9999999963484}},{"ix":76,"action":{"kind":"Deliver","chain":"provider","numPackets":6},"partialState":{"h":12,"t":72,"tokens":[4759,10905,10656,4661],"delegation":[3759,9905,9656,3661],"delegatorTokens":9999999963484,"jailed":[1000000000000029,null,null,null],"status":["unbonding","bonded","bonded","unbonding"]}},{"ix":77,"action":{"kind":"Undelegate","val":1,"amt":2528},"partialState":{"h":12,"t":72,"tokens":[4759,8377,10656,4661],"delegation":[3759,7377,9656,3661],"delegatorTokens":9999999963484}},{"ix":78,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":79,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":13,"t":78,"consumerPower":[null,8024,6539,null],"outstandingDowntime":[false,false,true,true]}},{"ix":80,"action":{"kind":"Delegate","val":0,"amt":4560},"partialState":{"h":12,"t":72,"tokens":[9319,8377,10656,4661],"delegation":[8319,7377,9656,3661],"delegatorTokens":9999999958924}},{"ix":81,"action":{"kind":"Deliver","chain":"consumer","numPackets":6},"partialState":{"h":13,"t":78,"consumerPower":[null,8024,6539,null],"outstandingDowntime":[false,false,true,true]}},{"ix":82,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":13,"t":78,"tokens":[9319,8377,10656,4661],"delegation":[8319,7377,9656,3661],"delegatorTokens":9999999958924,"jailed":[1000000000000029,null,null,null],"status":["unbonding","bonded","bonded","unbonding"]}},{"ix":83,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":84,"action":{"kind":"Delegate","val":3,"amt":3680},"partialState":{"h":13,"t":78,"tokens":[9319,8377,10656,8341],"delegation":[8319,7377,9656,7341],"delegatorTokens":9999999955244}},{"ix":85,"action":{"kind":"Delegate","val":3,"amt":3997},"partialState":{"h":13,"t":78,"tokens":[9319,8377,10656,12338],"delegation":[8319,7377,9656,11338],"delegatorTokens":9999999951247}},{"ix":86,"action":{"kind":"Undelegate","val":1,"amt":4308},"partialState":{"h":13,"t":78,"tokens":[9319,4069,10656,12338],"delegation":[8319,3069,9656,11338],"delegatorTokens":9999999951247}},{"ix":87,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":14,"t":84,"consumerPower":[null,9535,10656,null],"outstandingDowntime":[false,false,true,true]}},{"ix":88,"action":{"kind":"Delegate","val":1,"amt":2821},"partialState":{"h":13,"t":78,"tokens":[9319,6890,10656,12338],"delegation":[8319,5890,9656,11338],"delegatorTokens":9999999948426}},{"ix":89,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":90,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":91,"action":{"kind":"Undelegate","val":2,"amt":2578},"partialState":{"h":13,"t":78,"tokens":[9319,6890,8078,12338],"delegation":[8319,5890,7078,11338],"delegatorTokens":9999999948426}},{"ix":92,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":14,"t":84,"tokens":[9319,6890,8078,12338],"delegation":[8319,5890,7078,11338],"delegatorTokens":9999999948426,"jailed":[1000000000000029,null,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":93,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":94,"action":{"kind":"Deliver","chain":"consumer","numPackets":1},"partialState":{"h":14,"t":84,"consumerPower":[null,9535,10656,null],"outstandingDowntime":[false,false,true,true]}},{"ix":95,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":96,"action":{"kind":"Undelegate","val":2,"amt":3294},"partialState":{"h":14,"t":84,"tokens":[9319,6890,4784,12338],"delegation":[8319,5890,3784,11338],"delegatorTokens":9999999948426}},{"ix":97,"action":{"kind":"Undelegate","val":2,"amt":2221},"partialState":{"h":14,"t":84,"tokens":[9319,6890,2563,12338],"delegation":[8319,5890,1563,11338],"delegatorTokens":9999999948426}},{"ix":98,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":99,"action":{"kind":"Delegate","val":2,"amt":4009},"partialState":{"h":14,"t":84,"tokens":[9319,6890,6572,12338],"delegation":[8319,5890,5572,11338],"delegatorTokens":9999999944417}},{"ix":100,"action":{"kind":"Delegate","val":0,"amt":1212},"partialState":{"h":14,"t":84,"tokens":[10531,6890,6572,12338],"delegation":[9531,5890,5572,11338],"delegatorTokens":9999999943205}},{"ix":101,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":102,"action":{"kind":"Undelegate","val":3,"amt":4362},"partialState":{"h":14,"t":84,"tokens":[10531,6890,6572,7976],"delegation":[9531,5890,5572,6976],"delegatorTokens":9999999943205}},{"ix":103,"action":{"kind":"Delegate","val":0,"amt":2307},"partialState":{"h":14,"t":84,"tokens":[12838,6890,6572,7976],"delegation":[11838,5890,5572,6976],"delegatorTokens":9999999940898}},{"ix":104,"action":{"kind":"Delegate","val":2,"amt":4152},"partialState":{"h":14,"t":84,"tokens":[12838,6890,10724,7976],"delegation":[11838,5890,9724,6976],"delegatorTokens":9999999936746}},{"ix":105,"action":{"kind":"Deliver","chain":"consumer","numPackets":6},"partialState":{"h":14,"t":84,"consumerPower":[null,9535,10656,null],"outstandingDowntime":[false,false,true,true]}},{"ix":106,"action":{"kind":"Deliver","chain":"consumer","numPackets":4},"partialState":{"h":14,"t":84,"consumerPower":[null,9535,10656,null],"outstandingDowntime":[false,false,true,true]}},{"ix":107,"action":{"kind":"Delegate","val":3,"amt":3414},"partialState":{"h":14,"t":84,"tokens":[12838,6890,10724,11390],"delegation":[11838,5890,9724,10390],"delegatorTokens":9999999933332}},{"ix":108,"action":{"kind":"Deliver","chain":"provider","numPackets":5},"partialState":{"h":14,"t":84,"tokens":[12838,6890,10724,11390],"delegation":[11838,5890,9724,10390],"delegatorTokens":9999999933332,"jailed":[1000000000000029,null,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":109,"action":{"kind":"Undelegate","val":1,"amt":4614},"partialState":{"h":14,"t":84,"tokens":[12838,2276,10724,11390],"delegation":[11838,1276,9724,10390],"delegatorTokens":9999999933332}},{"ix":110,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":111,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":112,"action":{"kind":"Deliver","chain":"provider","numPackets":2},"partialState":{"h":14,"t":84,"tokens":[12838,2276,10724,11390],"delegation":[11838,1276,9724,10390],"delegatorTokens":9999999933332,"jailed":[1000000000000029,null,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":113,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":114,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":15,"t":90,"consumerPower":[null,8377,10656,null],"outstandingDowntime":[false,false,true,true]}},{"ix":115,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":116,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":117,"action":{"kind":"Undelegate","val":0,"amt":4511},"partialState":{"h":14,"t":84,"tokens":[8327,2276,10724,11390],"delegation":[7327,1276,9724,10390],"delegatorTokens":9999999933332}},{"ix":118,"action":{"kind":"Delegate","val":2,"amt":1409},"partialState":{"h":14,"t":84,"tokens":[8327,2276,12133,11390],"delegation":[7327,1276,11133,10390],"delegatorTokens":9999999931923}},{"ix":119,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":15,"t":90,"tokens":[8327,2276,12133,11390],"delegation":[7327,1276,11133,10390],"delegatorTokens":9999999931923,"jailed":[1000000000000029,null,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":120,"action":{"kind":"Undelegate","val":3,"amt":1197},"partialState":{"h":15,"t":90,"tokens":[8327,2276,12133,10193],"delegation":[7327,1276,11133,9193],"delegatorTokens":9999999931923}},{"ix":121,"action":{"kind":"Delegate","val":1,"amt":4595},"partialState":{"h":15,"t":90,"tokens":[8327,6871,12133,10193],"delegation":[7327,5871,11133,9193],"delegatorTokens":9999999927328}},{"ix":122,"action":{"kind":"Undelegate","val":1,"amt":1225},"partialState":{"h":15,"t":90,"tokens":[8327,5646,12133,10193],"delegation":[7327,4646,11133,9193],"delegatorTokens":9999999927328}},{"ix":123,"action":{"kind":"Deliver","chain":"provider","numPackets":1},"partialState":{"h":15,"t":90,"tokens":[8327,5646,12133,10193],"delegation":[7327,4646,11133,9193],"delegatorTokens":9999999927328,"jailed":[1000000000000029,null,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":124,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":125,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":16,"t":96,"tokens":[8327,5646,12133,10193],"delegation":[7327,4646,11133,9193],"delegatorTokens":9999999927328,"jailed":[1000000000000029,null,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":126,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":127,"action":{"kind":"Delegate","val":3,"amt":2974},"partialState":{"h":16,"t":96,"tokens":[8327,5646,12133,13167],"delegation":[7327,4646,11133,12167],"delegatorTokens":9999999924354}},{"ix":128,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":129,"action":{"kind":"Deliver","chain":"consumer","numPackets":2},"partialState":{"h":15,"t":90,"consumerPower":[null,8377,10656,null],"outstandingDowntime":[false,false,true,true]}},{"ix":130,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":131,"action":{"kind":"Undelegate","val":3,"amt":4276},"partialState":{"h":16,"t":96,"tokens":[8327,5646,12133,8891],"delegation":[7327,4646,11133,7891],"delegatorTokens":9999999924354}},{"ix":132,"action":{"kind":"Delegate","val":1,"amt":3556},"partialState":{"h":16,"t":96,"tokens":[8327,9202,12133,8891],"delegation":[7327,8202,11133,7891],"delegatorTokens":9999999920798}},{"ix":133,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":17,"t":102,"tokens":[8327,9202,12133,8891],"delegation":[7327,8202,11133,7891],"delegatorTokens":9999999920798,"jailed":[1000000000000029,null,null,null],"status":["unbonding","bonded","bonded","unbonding"]}},{"ix":134,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":18,"t":108,"tokens":[8327,9202,12133,8891],"delegation":[7327,8202,11133,7891],"delegatorTokens":9999999920798,"jailed":[1000000000000029,null,null,null],"status":["unbonding","bonded","bonded","unbonding"]}},{"ix":135,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":19,"t":114,"tokens":[8327,9202,12133,8891],"delegation":[7327,8202,11133,7891],"delegatorTokens":9999999920798,"jailed":[1000000000000029,null,null,null],"status":["unbonding","bonded","bonded","unbonding"]}},{"ix":136,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":20,"t":120,"tokens":[8327,9202,12133,8891],"delegation":[7327,8202,11133,7891],"delegatorTokens":9999999920798,"jailed":[1000000000000029,null,null,null],"status":["unbonding","bonded","bonded","unbonding"]}},{"ix":137,"action":{"kind":"Undelegate","val":3,"amt":2956},"partialState":{"h":20,"t":120,"tokens":[8327,9202,12133,5935],"delegation":[7327,8202,11133,4935],"delegatorTokens":9999999920798}},{"ix":138,"action":{"kind":"Delegate","val":2,"amt":1188},"partialState":{"h":20,"t":120,"tokens":[8327,9202,13321,5935],"delegation":[7327,8202,12321,4935],"delegatorTokens":9999999919610}},{"ix":139,"action":{"kind":"Undelegate","val":3,"amt":3742},"partialState":{"h":20,"t":120,"tokens":[8327,9202,13321,2193],"delegation":[7327,8202,12321,1193],"delegatorTokens":9999999919610}},{"ix":140,"action":{"kind":"Delegate","val":0,"amt":4802},"partialState":{"h":20,"t":120,"tokens":[13129,9202,13321,2193],"delegation":[12129,8202,12321,1193],"delegatorTokens":9999999914808}},{"ix":141,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":16,"t":96,"consumerPower":[null,null,12133,11390],"outstandingDowntime":[false,false,true,true]}},{"ix":142,"action":{"kind":"Undelegate","val":0,"amt":2129},"partialState":{"h":20,"t":120,"tokens":[11000,9202,13321,2193],"delegation":[10000,8202,12321,1193],"delegatorTokens":9999999914808}},{"ix":143,"action":{"kind":"Deliver","chain":"provider","numPackets":4},"partialState":{"h":20,"t":120,"tokens":[11000,9202,13321,2193],"delegation":[10000,8202,12321,1193],"delegatorTokens":9999999914808,"jailed":[1000000000000029,null,null,null],"status":["unbonding","bonded","bonded","unbonding"]}},{"ix":144,"action":{"kind":"Undelegate","val":3,"amt":1775},"partialState":{"h":20,"t":120,"tokens":[11000,9202,13321,2193],"delegation":[10000,8202,12321,1193],"delegatorTokens":9999999914808}},{"ix":145,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":146,"action":{"kind":"Deliver","chain":"provider","numPackets":3},"partialState":{"h":20,"t":120,"tokens":[11000,9202,13321,2193],"delegation":[10000,8202,12321,1193],"delegatorTokens":9999999914808,"jailed":[1000000000000029,null,null,null],"status":["unbonding","bonded","bonded","unbonding"]}},{"ix":147,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":21,"t":126,"tokens":[11000,9202,13321,2193],"delegation":[10000,8202,12321,1193],"delegatorTokens":9999999914808,"jailed":[1000000000000029,null,null,null],"status":["unbonding","bonded","bonded","unbonding"]}},{"ix":148,"action":{"kind":"Deliver","chain":"provider","numPackets":2},"partialState":{"h":21,"t":126,"tokens":[11000,9202,13321,2193],"delegation":[10000,8202,12321,1193],"delegatorTokens":9999999914808,"jailed":[1000000000000029,null,null,null],"status":["unbonding","bonded","bonded","unbonding"]}},{"ix":149,"action":{"kind":"Undelegate","val":1,"amt":3012},"partialState":{"h":21,"t":126,"tokens":[11000,6190,13321,2193],"delegation":[10000,5190,12321,1193],"delegatorTokens":9999999914808}},{"ix":150,"action":{"kind":"Delegate","val":2,"amt":2416},"partialState":{"h":21,"t":126,"tokens":[11000,6190,15737,2193],"delegation":[10000,5190,14737,1193],"delegatorTokens":9999999912392}},{"ix":151,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":152,"action":{"kind":"Deliver","chain":"consumer","numPackets":5},"partialState":{"h":16,"t":96,"consumerPower":[null,null,12133,11390],"outstandingDowntime":[false,false,true,true]}},{"ix":153,"action":{"kind":"Deliver","chain":"consumer","numPackets":4},"partialState":{"h":16,"t":96,"consumerPower":[null,null,12133,11390],"outstandingDowntime":[false,false,true,true]}},{"ix":154,"action":{"kind":"Delegate","val":2,"amt":2067},"partialState":{"h":21,"t":126,"tokens":[11000,6190,17804,2193],"delegation":[10000,5190,16804,1193],"delegatorTokens":9999999910325}},{"ix":155,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":156,"action":{"kind":"Deliver","chain":"provider","numPackets":2},"partialState":{"h":21,"t":126,"tokens":[11000,6190,17804,2193],"delegation":[10000,5190,16804,1193],"delegatorTokens":9999999910325,"jailed":[1000000000000029,null,null,null],"status":["unbonding","bonded","bonded","unbonding"]}},{"ix":157,"action":{"kind":"Deliver","chain":"provider","numPackets":1},"partialState":{"h":21,"t":126,"tokens":[11000,6190,17804,2193],"delegation":[10000,5190,16804,1193],"delegatorTokens":9999999910325,"jailed":[1000000000000029,null,null,null],"status":["unbonding","bonded","bonded","unbonding"]}},{"ix":158,"action":{"kind":"Delegate","val":3,"amt":4820},"partialState":{"h":21,"t":126,"tokens":[11000,6190,17804,7013],"delegation":[10000,5190,16804,6013],"delegatorTokens":9999999905505}},{"ix":159,"action":{"kind":"Undelegate","val":3,"amt":4958},"partialState":{"h":21,"t":126,"tokens":[11000,6190,17804,2055],"delegation":[10000,5190,16804,1055],"delegatorTokens":9999999905505}},{"ix":160,"action":{"kind":"Deliver","chain":"consumer","numPackets":5},"partialState":{"h":16,"t":96,"consumerPower":[null,null,12133,11390],"outstandingDowntime":[false,false,true,true]}},{"ix":161,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":162,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":163,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":164,"action":{"kind":"Undelegate","val":3,"amt":4216},"partialState":{"h":21,"t":126,"tokens":[11000,6190,17804,2055],"delegation":[10000,5190,16804,1055],"delegatorTokens":9999999905505}},{"ix":165,"action":{"kind":"Undelegate","val":1,"amt":2328},"partialState":{"h":21,"t":126,"tokens":[11000,3862,17804,2055],"delegation":[10000,2862,16804,1055],"delegatorTokens":9999999905505}},{"ix":166,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":167,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":17,"t":102,"consumerPower":[null,9202,12133,null],"outstandingDowntime":[false,false,true,true]}},{"ix":168,"action":{"kind":"Delegate","val":0,"amt":1073},"partialState":{"h":21,"t":126,"tokens":[12073,3862,17804,2055],"delegation":[11073,2862,16804,1055],"delegatorTokens":9999999904432}},{"ix":169,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":170,"action":{"kind":"Undelegate","val":0,"amt":2392},"partialState":{"h":21,"t":126,"tokens":[9681,3862,17804,2055],"delegation":[8681,2862,16804,1055],"delegatorTokens":9999999904432}},{"ix":171,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":18,"t":108,"consumerPower":[null,9202,12133,null],"outstandingDowntime":[false,false,true,true]}},{"ix":172,"action":{"kind":"Delegate","val":3,"amt":3447},"partialState":{"h":21,"t":126,"tokens":[9681,3862,17804,5502],"delegation":[8681,2862,16804,4502],"delegatorTokens":9999999900985}},{"ix":173,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":22,"t":132,"tokens":[9681,3862,17804,5502],"delegation":[8681,2862,16804,4502],"delegatorTokens":9999999900985,"jailed":[1000000000000029,null,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":174,"action":{"kind":"Deliver","chain":"provider","numPackets":5},"partialState":{"h":22,"t":132,"tokens":[9681,3862,17804,5502],"delegation":[8681,2862,16804,4502],"delegatorTokens":9999999900985,"jailed":[1000000000000029,null,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":175,"action":{"kind":"Undelegate","val":3,"amt":3031},"partialState":{"h":22,"t":132,"tokens":[9681,3862,17804,2471],"delegation":[8681,2862,16804,1471],"delegatorTokens":9999999900985}},{"ix":176,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":19,"t":114,"consumerPower":[null,9202,12133,null],"outstandingDowntime":[false,false,true,true]}},{"ix":177,"action":{"kind":"Deliver","chain":"provider","numPackets":3},"partialState":{"h":22,"t":132,"tokens":[9681,3862,17804,2471],"delegation":[8681,2862,16804,1471],"delegatorTokens":9999999900985,"jailed":[1000000000000029,null,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":178,"action":{"kind":"Delegate","val":1,"amt":3150},"partialState":{"h":22,"t":132,"tokens":[9681,7012,17804,2471],"delegation":[8681,6012,16804,1471],"delegatorTokens":9999999897835}},{"ix":179,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":180,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":23,"t":138,"tokens":[9681,7012,17804,2471],"delegation":[8681,6012,16804,1471],"delegatorTokens":9999999897835,"jailed":[1000000000000029,null,null,null],"status":["unbonding","bonded","bonded","unbonding"]}},{"ix":181,"action":{"kind":"Undelegate","val":0,"amt":1090},"partialState":{"h":23,"t":138,"tokens":[8591,7012,17804,2471],"delegation":[7591,6012,16804,1471],"delegatorTokens":9999999897835}},{"ix":182,"action":{"kind":"Delegate","val":0,"amt":1243},"partialState":{"h":23,"t":138,"tokens":[9834,7012,17804,2471],"delegation":[8834,6012,16804,1471],"delegatorTokens":9999999896592}},{"ix":183,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":184,"action":{"kind":"Delegate","val":3,"amt":1708},"partialState":{"h":23,"t":138,"tokens":[9834,7012,17804,4179],"delegation":[8834,6012,16804,3179],"delegatorTokens":9999999894884}},{"ix":185,"action":{"kind":"Deliver","chain":"consumer","numPackets":5},"partialState":{"h":19,"t":114,"consumerPower":[null,9202,12133,null],"outstandingDowntime":[false,false,true,true]}},{"ix":186,"action":{"kind":"Deliver","chain":"provider","numPackets":1},"partialState":{"h":23,"t":138,"tokens":[9834,7012,17804,4179],"delegation":[8834,6012,16804,3179],"delegatorTokens":9999999894884,"jailed":[1000000000000029,null,null,null],"status":["unbonding","bonded","bonded","unbonding"]}},{"ix":187,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":20,"t":120,"consumerPower":[null,null,17804,5502],"outstandingDowntime":[false,false,true,true]}},{"ix":188,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":21,"t":126,"consumerPower":[null,null,17804,5502],"outstandingDowntime":[false,false,true,true]}},{"ix":189,"action":{"kind":"Delegate","val":2,"amt":4943},"partialState":{"h":23,"t":138,"tokens":[9834,7012,22747,4179],"delegation":[8834,6012,21747,3179],"delegatorTokens":9999999889941}},{"ix":190,"action":{"kind":"Undelegate","val":3,"amt":3028},"partialState":{"h":23,"t":138,"tokens":[9834,7012,22747,1151],"delegation":[8834,6012,21747,151],"delegatorTokens":9999999889941}},{"ix":191,"action":{"kind":"Undelegate","val":2,"amt":3858},"partialState":{"h":23,"t":138,"tokens":[9834,7012,18889,1151],"delegation":[8834,6012,17889,151],"delegatorTokens":9999999889941}},{"ix":192,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":193,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":24,"t":144,"tokens":[9834,7012,18889,1151],"delegation":[8834,6012,17889,151],"delegatorTokens":9999999892940,"jailed":[1000000000000029,null,null,null],"status":["unbonding","bonded","bonded","unbonding"]}},{"ix":194,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":195,"action":{"kind":"Undelegate","val":3,"amt":1338},"partialState":{"h":24,"t":144,"tokens":[9834,7012,18889,1151],"delegation":[8834,6012,17889,151],"delegatorTokens":9999999892940}},{"ix":196,"action":{"kind":"Delegate","val":1,"amt":2277},"partialState":{"h":24,"t":144,"tokens":[9834,9289,18889,1151],"delegation":[8834,8289,17889,151],"delegatorTokens":9999999890663}},{"ix":197,"action":{"kind":"Undelegate","val":1,"amt":2864},"partialState":{"h":24,"t":144,"tokens":[9834,6425,18889,1151],"delegation":[8834,5425,17889,151],"delegatorTokens":9999999890663}},{"ix":198,"action":{"kind":"Deliver","chain":"provider","numPackets":4},"partialState":{"h":24,"t":144,"tokens":[9834,6425,18889,1151],"delegation":[8834,5425,17889,151],"delegatorTokens":9999999890663,"jailed":[1000000000000029,null,null,null],"status":["unbonding","bonded","bonded","unbonding"]}},{"ix":199,"action":{"kind":"Delegate","val":1,"amt":2137},"partialState":{"h":24,"t":144,"tokens":[9834,8562,18889,1151],"delegation":[8834,7562,17889,151],"delegatorTokens":9999999888526}}],"events":["insufficient_shares","send_downtime_slash_request","send_downtime_slash_request","send_vsc_without_downtime_ack","insufficient_shares","send_downtime_slash_request","receive_slash_request_unbonded","receive_slash_request_unbonded","send_vsc_without_downtime_ack","insufficient_shares","more_than_one_third_val_power_change","receive_downtime_slash_request","jail","send_vsc_with_downtime_ack","more_than_one_third_val_power_change","send_vsc_without_downtime_ack","more_than_one_third_val_power_change","rebond_unval","send_vsc_without_downtime_ack","receive_downtime_slash_ack","insufficient_shares","consumer_del_val","consumer_del_val","consumer_add_val","consumer_add_val","more_than_one_third_val_power_change","rebond_unval","send_vsc_without_downtime_ack","consumer_add_val","consumer_del_val","more_than_one_third_val_power_change","rebond_unval","send_vsc_without_downtime_ack","send_vsc_not_because_change","send_vsc_without_downtime_ack","insufficient_shares","insufficient_shares","send_vsc_without_downtime_ack","consumer_update_val","consumer_update_val","consumer_del_val","more_than_one_third_val_power_change","rebond_unval","send_vsc_without_downtime_ack","consumer_update_val","send_vsc_without_downtime_ack","send_vsc_without_downtime_ack","more_than_one_third_val_power_change","rebond_unval","send_vsc_without_downtime_ack","some_undels_expired_but_not_completed","some_undels_expired_but_not_completed","consumer_del_val","consumer_update_val","consumer_add_val","insufficient_shares","some_undels_expired_but_not_completed","send_vsc_without_downtime_ack","insufficient_shares","consumer_del_val","consumer_add_val","consumer_send_maturation","consumer_send_maturation","consumer_send_maturation","consumer_send_maturation","rebond_unval","some_undels_expired_but_not_completed","send_vsc_without_downtime_ack","rebond_unval","send_vsc_without_downtime_ack","consumer_update_val","consumer_del_val","consumer_add_val","consumer_send_maturation","some_undels_expired_but_not_completed","complete_undel_immediate","set_unval_hold_false","send_vsc_without_downtime_ack","insufficient_shares"]},{"meta":{"commit":"7ffd0c04e4205cbc9caf212abfe6c59ee43153bf"},"constants":{"P":"provider","C":"consumer","UNBONDING_SECONDS_P":70,"UNBONDING_SECONDS_C":50,"TRUSTING_SECONDS":49,"NUM_VALIDATORS":4,"MAX_VALIDATORS":2,"SLASH_DOUBLESIGN":0,"SLASH_DOWNTIME":0,"JAIL_SECONDS":999999999999999,"BLOCK_SECONDS":6,"INITIAL_DELEGATOR_TOKENS":10000000000000,"DELEGATE_AMT_MIN":1000,"DELEGATE_AMT_MAX":5000,"UNDELEGATE_AMT_MIN":1000,"UNDELEGATE_AMT_MAX":5000,"ISDOWNTIME_PROBABILITY":0.5,"MAX_NUM_PACKETS_FOR_DELIVER":6},"actions":[{"ix":0,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":1,"action":{"kind":"ConsumerSlash","val":2,"infractionHeight":0,"isDowntime":true},"partialState":{"h":1,"t":6,"outstandingDowntime":[false,false,true,false]}},{"ix":2,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":3,"action":{"kind":"Undelegate","val":1,"amt":3072},"partialState":{"h":1,"t":6,"tokens":[5000,4000,3000,2000],"delegation":[4000,3000,2000,1000],"delegatorTokens":10000000000000}},{"ix":4,"action":{"kind":"Deliver","chain":"consumer","numPackets":2},"partialState":{"h":1,"t":6,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,false,true,false]}},{"ix":5,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":2,"t":12,"tokens":[5000,4000,3000,2000],"delegation":[4000,3000,2000,1000],"delegatorTokens":10000000000000,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":6,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":7,"action":{"kind":"Deliver","chain":"provider","numPackets":5},"partialState":{"h":2,"t":12,"tokens":[5000,4000,3000,2000],"delegation":[4000,3000,2000,1000],"delegatorTokens":10000000000000,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":8,"action":{"kind":"Undelegate","val":3,"amt":3954},"partialState":{"h":2,"t":12,"tokens":[5000,4000,3000,2000],"delegation":[4000,3000,2000,1000],"delegatorTokens":10000000000000}},{"ix":9,"action":{"kind":"Undelegate","val":2,"amt":2191},"partialState":{"h":2,"t":12,"tokens":[5000,4000,3000,2000],"delegation":[4000,3000,2000,1000],"delegatorTokens":10000000000000}},{"ix":10,"action":{"kind":"Undelegate","val":1,"amt":3507},"partialState":{"h":2,"t":12,"tokens":[5000,4000,3000,2000],"delegation":[4000,3000,2000,1000],"delegatorTokens":10000000000000}},{"ix":11,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":3,"t":18,"tokens":[5000,4000,3000,2000],"delegation":[4000,3000,2000,1000],"delegatorTokens":10000000000000,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":12,"action":{"kind":"ConsumerSlash","val":3,"infractionHeight":0,"isDowntime":true},"partialState":{"h":1,"t":6,"outstandingDowntime":[false,false,true,true]}},{"ix":13,"action":{"kind":"ConsumerSlash","val":2,"infractionHeight":0,"isDowntime":false},"partialState":{"h":1,"t":6,"outstandingDowntime":[false,false,true,true]}},{"ix":14,"action":{"kind":"ConsumerSlash","val":1,"infractionHeight":0,"isDowntime":true},"partialState":{"h":1,"t":6,"outstandingDowntime":[false,true,true,true]}},{"ix":15,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":16,"action":{"kind":"Undelegate","val":3,"amt":1735},"partialState":{"h":3,"t":18,"tokens":[5000,4000,3000,2000],"delegation":[4000,3000,2000,1000],"delegatorTokens":10000000000000}},{"ix":17,"action":{"kind":"Delegate","val":0,"amt":3906},"partialState":{"h":3,"t":18,"tokens":[8906,4000,3000,2000],"delegation":[7906,3000,2000,1000],"delegatorTokens":9999999996094}},{"ix":18,"action":{"kind":"Undelegate","val":2,"amt":1456},"partialState":{"h":3,"t":18,"tokens":[8906,4000,1544,2000],"delegation":[7906,3000,544,1000],"delegatorTokens":9999999996094}},{"ix":19,"action":{"kind":"Deliver","chain":"consumer","numPackets":4},"partialState":{"h":1,"t":6,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,true,true,true]}},{"ix":20,"action":{"kind":"Undelegate","val":3,"amt":3328},"partialState":{"h":3,"t":18,"tokens":[8906,4000,1544,2000],"delegation":[7906,3000,544,1000],"delegatorTokens":9999999996094}},{"ix":21,"action":{"kind":"Deliver","chain":"provider","numPackets":4},"partialState":{"h":3,"t":18,"tokens":[8906,4000,1544,2000],"delegation":[7906,3000,544,1000],"delegatorTokens":9999999996094,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":22,"action":{"kind":"Delegate","val":1,"amt":2193},"partialState":{"h":3,"t":18,"tokens":[8906,6193,1544,2000],"delegation":[7906,5193,544,1000],"delegatorTokens":9999999993901}},{"ix":23,"action":{"kind":"Undelegate","val":2,"amt":1558},"partialState":{"h":3,"t":18,"tokens":[8906,6193,1544,2000],"delegation":[7906,5193,544,1000],"delegatorTokens":9999999993901}},{"ix":24,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":25,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":2,"t":12,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,true,true,true]}},{"ix":26,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":27,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":4,"t":24,"tokens":[8906,6193,1544,2000],"delegation":[7906,5193,544,1000],"delegatorTokens":9999999993901,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":28,"action":{"kind":"Delegate","val":1,"amt":1088},"partialState":{"h":4,"t":24,"tokens":[8906,7281,1544,2000],"delegation":[7906,6281,544,1000],"delegatorTokens":9999999992813}},{"ix":29,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":30,"action":{"kind":"Delegate","val":1,"amt":4468},"partialState":{"h":4,"t":24,"tokens":[8906,11749,1544,2000],"delegation":[7906,10749,544,1000],"delegatorTokens":9999999988345}},{"ix":31,"action":{"kind":"Deliver","chain":"consumer","numPackets":2},"partialState":{"h":2,"t":12,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,true,true,true]}},{"ix":32,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":33,"action":{"kind":"Deliver","chain":"provider","numPackets":1},"partialState":{"h":4,"t":24,"tokens":[8906,11749,1544,2000],"delegation":[7906,10749,544,1000],"delegatorTokens":9999999988345,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":34,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":35,"action":{"kind":"Deliver","chain":"provider","numPackets":4},"partialState":{"h":4,"t":24,"tokens":[8906,11749,1544,2000],"delegation":[7906,10749,544,1000],"delegatorTokens":9999999988345,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":36,"action":{"kind":"Deliver","chain":"provider","numPackets":1},"partialState":{"h":4,"t":24,"tokens":[8906,11749,1544,2000],"delegation":[7906,10749,544,1000],"delegatorTokens":9999999988345,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":37,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":38,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":39,"action":{"kind":"Delegate","val":3,"amt":4390},"partialState":{"h":4,"t":24,"tokens":[8906,11749,1544,6390],"delegation":[7906,10749,544,5390],"delegatorTokens":9999999983955}},{"ix":40,"action":{"kind":"Deliver","chain":"consumer","numPackets":5},"partialState":{"h":2,"t":12,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,true,true,true]}},{"ix":41,"action":{"kind":"Deliver","chain":"provider","numPackets":5},"partialState":{"h":4,"t":24,"tokens":[8906,11749,1544,6390],"delegation":[7906,10749,544,5390],"delegatorTokens":9999999983955,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":42,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":5,"t":30,"tokens":[8906,11749,1544,6390],"delegation":[7906,10749,544,5390],"delegatorTokens":9999999983955,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":43,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":44,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":6,"t":36,"tokens":[8906,11749,1544,6390],"delegation":[7906,10749,544,5390],"delegatorTokens":9999999983955,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":45,"action":{"kind":"Delegate","val":2,"amt":2466},"partialState":{"h":6,"t":36,"tokens":[8906,11749,4010,6390],"delegation":[7906,10749,3010,5390],"delegatorTokens":9999999981489}},{"ix":46,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":3,"t":18,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,true,true,true]}},{"ix":47,"action":{"kind":"Deliver","chain":"provider","numPackets":4},"partialState":{"h":6,"t":36,"tokens":[8906,11749,4010,6390],"delegation":[7906,10749,3010,5390],"delegatorTokens":9999999981489,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":48,"action":{"kind":"Undelegate","val":3,"amt":3524},"partialState":{"h":6,"t":36,"tokens":[8906,11749,4010,2866],"delegation":[7906,10749,3010,1866],"delegatorTokens":9999999981489}},{"ix":49,"action":{"kind":"Undelegate","val":0,"amt":4820},"partialState":{"h":6,"t":36,"tokens":[4086,11749,4010,2866],"delegation":[3086,10749,3010,1866],"delegatorTokens":9999999981489}},{"ix":50,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":7,"t":42,"tokens":[4086,11749,4010,2866],"delegation":[3086,10749,3010,1866],"delegatorTokens":9999999981489,"jailed":[null,1000000000000035,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":51,"action":{"kind":"Undelegate","val":3,"amt":4728},"partialState":{"h":7,"t":42,"tokens":[4086,11749,4010,2866],"delegation":[3086,10749,3010,1866],"delegatorTokens":9999999981489}},{"ix":52,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":4,"t":24,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,true,true,true]}},{"ix":53,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":5,"t":30,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,true,true,true]}},{"ix":54,"action":{"kind":"Delegate","val":2,"amt":1977},"partialState":{"h":7,"t":42,"tokens":[4086,11749,5987,2866],"delegation":[3086,10749,4987,1866],"delegatorTokens":9999999979512}},{"ix":55,"action":{"kind":"Delegate","val":3,"amt":2567},"partialState":{"h":7,"t":42,"tokens":[4086,11749,5987,5433],"delegation":[3086,10749,4987,4433],"delegatorTokens":9999999976945}},{"ix":56,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":6,"t":36,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,true,true,true]}},{"ix":57,"action":{"kind":"Deliver","chain":"provider","numPackets":4},"partialState":{"h":7,"t":42,"tokens":[4086,11749,5987,5433],"delegation":[3086,10749,4987,4433],"delegatorTokens":9999999976945,"jailed":[null,1000000000000035,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":58,"action":{"kind":"Undelegate","val":1,"amt":4049},"partialState":{"h":7,"t":42,"tokens":[4086,7700,5987,5433],"delegation":[3086,6700,4987,4433],"delegatorTokens":9999999976945}},{"ix":59,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":7,"t":42,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,true,true,true]}},{"ix":60,"action":{"kind":"Delegate","val":2,"amt":4877},"partialState":{"h":7,"t":42,"tokens":[4086,7700,10864,5433],"delegation":[3086,6700,9864,4433],"delegatorTokens":9999999972068}},{"ix":61,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":62,"action":{"kind":"Delegate","val":3,"amt":4512},"partialState":{"h":7,"t":42,"tokens":[4086,7700,10864,9945],"delegation":[3086,6700,9864,8945],"delegatorTokens":9999999967556}},{"ix":63,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":64,"action":{"kind":"Deliver","chain":"provider","numPackets":5},"partialState":{"h":7,"t":42,"tokens":[4086,7700,10864,9945],"delegation":[3086,6700,9864,8945],"delegatorTokens":9999999967556,"jailed":[null,1000000000000035,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":65,"action":{"kind":"Deliver","chain":"consumer","numPackets":6},"partialState":{"h":7,"t":42,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,true,true,true]}},{"ix":66,"action":{"kind":"Delegate","val":0,"amt":3625},"partialState":{"h":7,"t":42,"tokens":[7711,7700,10864,9945],"delegation":[6711,6700,9864,8945],"delegatorTokens":9999999963931}},{"ix":67,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":8,"t":48,"consumerPower":[8906,11749,null,null],"outstandingDowntime":[false,true,true,true]}},{"ix":68,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":8,"t":48,"tokens":[7711,7700,10864,9945],"delegation":[6711,6700,9864,8945],"delegatorTokens":9999999963931,"jailed":[null,1000000000000035,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":69,"action":{"kind":"Deliver","chain":"provider","numPackets":2},"partialState":{"h":8,"t":48,"tokens":[7711,7700,10864,9945],"delegation":[6711,6700,9864,8945],"delegatorTokens":9999999963931,"jailed":[null,1000000000000035,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":70,"action":{"kind":"Delegate","val":3,"amt":2736},"partialState":{"h":8,"t":48,"tokens":[7711,7700,10864,12681],"delegation":[6711,6700,9864,11681],"delegatorTokens":9999999961195}},{"ix":71,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":72,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":9,"t":54,"consumerPower":[8906,11749,null,null],"outstandingDowntime":[false,true,true,true]}},{"ix":73,"action":{"kind":"Deliver","chain":"consumer","numPackets":6},"partialState":{"h":9,"t":54,"consumerPower":[8906,11749,null,null],"outstandingDowntime":[false,false,true,true]}},{"ix":74,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":9,"t":54,"tokens":[7711,7700,10864,12681],"delegation":[6711,6700,9864,11681],"delegatorTokens":9999999961195,"jailed":[null,1000000000000035,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":75,"action":{"kind":"Undelegate","val":1,"amt":4982},"partialState":{"h":9,"t":54,"tokens":[7711,2718,10864,12681],"delegation":[6711,1718,9864,11681],"delegatorTokens":9999999961195}},{"ix":76,"action":{"kind":"Undelegate","val":2,"amt":2119},"partialState":{"h":9,"t":54,"tokens":[7711,2718,8745,12681],"delegation":[6711,1718,7745,11681],"delegatorTokens":9999999961195}},{"ix":77,"action":{"kind":"Delegate","val":0,"amt":4409},"partialState":{"h":9,"t":54,"tokens":[12120,2718,8745,12681],"delegation":[11120,1718,7745,11681],"delegatorTokens":9999999956786}},{"ix":78,"action":{"kind":"Deliver","chain":"provider","numPackets":4},"partialState":{"h":9,"t":54,"tokens":[12120,2718,8745,12681],"delegation":[11120,1718,7745,11681],"delegatorTokens":9999999956786,"jailed":[null,1000000000000035,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":79,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":80,"action":{"kind":"Deliver","chain":"provider","numPackets":1},"partialState":{"h":9,"t":54,"tokens":[12120,2718,8745,12681],"delegation":[11120,1718,7745,11681],"delegatorTokens":9999999956786,"jailed":[null,1000000000000035,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":81,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":10,"t":60,"consumerPower":[4086,11749,null,null],"outstandingDowntime":[false,false,true,true]}},{"ix":82,"action":{"kind":"Undelegate","val":3,"amt":4785},"partialState":{"h":9,"t":54,"tokens":[12120,2718,8745,7896],"delegation":[11120,1718,7745,6896],"delegatorTokens":9999999956786}},{"ix":83,"action":{"kind":"Deliver","chain":"consumer","numPackets":1},"partialState":{"h":10,"t":60,"consumerPower":[4086,11749,null,null],"outstandingDowntime":[false,false,true,true]}},{"ix":84,"action":{"kind":"Delegate","val":3,"amt":2051},"partialState":{"h":9,"t":54,"tokens":[12120,2718,8745,9947],"delegation":[11120,1718,7745,8947],"delegatorTokens":9999999954735}},{"ix":85,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":11,"t":66,"consumerPower":[null,null,10864,9945],"outstandingDowntime":[false,false,true,true]}},{"ix":86,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":12,"t":72,"consumerPower":[null,null,10864,9945],"outstandingDowntime":[false,false,true,true]}},{"ix":87,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":88,"action":{"kind":"Undelegate","val":1,"amt":4523},"partialState":{"h":9,"t":54,"tokens":[12120,2718,8745,9947],"delegation":[11120,1718,7745,8947],"delegatorTokens":9999999954735}},{"ix":89,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":90,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":91,"action":{"kind":"Delegate","val":2,"amt":3975},"partialState":{"h":9,"t":54,"tokens":[12120,2718,12720,9947],"delegation":[11120,1718,11720,8947],"delegatorTokens":9999999950760}},{"ix":92,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":13,"t":78,"consumerPower":[null,null,10864,9945],"outstandingDowntime":[false,false,true,true]}},{"ix":93,"action":{"kind":"Delegate","val":2,"amt":2522},"partialState":{"h":9,"t":54,"tokens":[12120,2718,15242,9947],"delegation":[11120,1718,14242,8947],"delegatorTokens":9999999948238}},{"ix":94,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":10,"t":60,"tokens":[12120,2718,15242,9947],"delegation":[11120,1718,14242,8947],"delegatorTokens":9999999948238,"jailed":[null,1000000000000035,null,null],"status":["bonded","unbonding","bonded","unbonding"]}},{"ix":95,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":14,"t":84,"consumerPower":[null,null,10864,9945],"outstandingDowntime":[false,false,true,true]}},{"ix":96,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":11,"t":66,"tokens":[12120,2718,15242,9947],"delegation":[11120,1718,14242,8947],"delegatorTokens":9999999948238,"jailed":[null,1000000000000035,null,null],"status":["bonded","unbonding","bonded","unbonding"]}},{"ix":97,"action":{"kind":"Delegate","val":1,"amt":1173},"partialState":{"h":11,"t":66,"tokens":[12120,3891,15242,9947],"delegation":[11120,2891,14242,8947],"delegatorTokens":9999999947065}},{"ix":98,"action":{"kind":"Undelegate","val":2,"amt":1271},"partialState":{"h":11,"t":66,"tokens":[12120,3891,13971,9947],"delegation":[11120,2891,12971,8947],"delegatorTokens":9999999947065}},{"ix":99,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":100,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":12,"t":72,"tokens":[12120,3891,13971,9947],"delegation":[11120,2891,12971,8947],"delegatorTokens":9999999947065,"jailed":[null,1000000000000035,null,null],"status":["bonded","unbonding","bonded","unbonding"]}},{"ix":101,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":13,"t":78,"tokens":[12120,3891,13971,9947],"delegation":[11120,2891,12971,8947],"delegatorTokens":9999999947065,"jailed":[null,1000000000000035,null,null],"status":["bonded","unbonding","bonded","unbonding"]}},{"ix":102,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":103,"action":{"kind":"Deliver","chain":"consumer","numPackets":4},"partialState":{"h":14,"t":84,"consumerPower":[null,null,10864,9945],"outstandingDowntime":[false,false,true,true]}},{"ix":104,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":14,"t":84,"tokens":[12120,3891,13971,9947],"delegation":[11120,2891,12971,8947],"delegatorTokens":9999999947065,"jailed":[null,1000000000000035,null,null],"status":["bonded","unbonding","bonded","unbonding"]}},{"ix":105,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":106,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":15,"t":90,"consumerPower":[12120,null,13971,null],"outstandingDowntime":[false,false,true,true]}},{"ix":107,"action":{"kind":"Undelegate","val":1,"amt":4991},"partialState":{"h":14,"t":84,"tokens":[12120,3891,13971,9947],"delegation":[11120,2891,12971,8947],"delegatorTokens":9999999947065}},{"ix":108,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":16,"t":96,"consumerPower":[12120,null,13971,null],"outstandingDowntime":[false,false,true,true]}},{"ix":109,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":15,"t":90,"tokens":[12120,3891,13971,9947],"delegation":[11120,2891,12971,8947],"delegatorTokens":9999999947065,"jailed":[null,1000000000000035,null,null],"status":["bonded","unbonding","bonded","unbonding"]}},{"ix":110,"action":{"kind":"Delegate","val":1,"amt":4515},"partialState":{"h":15,"t":90,"tokens":[12120,8406,13971,9947],"delegation":[11120,7406,12971,8947],"delegatorTokens":9999999942550}},{"ix":111,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":16,"t":96,"tokens":[12120,8406,13971,9947],"delegation":[11120,7406,12971,8947],"delegatorTokens":9999999942550,"jailed":[null,1000000000000035,null,null],"status":["bonded","unbonding","bonded","unbonding"]}},{"ix":112,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":17,"t":102,"consumerPower":[12120,null,13971,null],"outstandingDowntime":[false,false,true,true]}},{"ix":113,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":114,"action":{"kind":"Deliver","chain":"provider","numPackets":2},"partialState":{"h":16,"t":96,"tokens":[12120,8406,13971,9947],"delegation":[11120,7406,12971,8947],"delegatorTokens":9999999942550,"jailed":[null,1000000000000035,null,null],"status":["bonded","unbonding","bonded","unbonding"]}},{"ix":115,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":116,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":18,"t":108,"consumerPower":[12120,null,13971,null],"outstandingDowntime":[false,false,true,true]}},{"ix":117,"action":{"kind":"Delegate","val":3,"amt":3032},"partialState":{"h":16,"t":96,"tokens":[12120,8406,13971,12979],"delegation":[11120,7406,12971,11979],"delegatorTokens":9999999939518}},{"ix":118,"action":{"kind":"Undelegate","val":2,"amt":1083},"partialState":{"h":16,"t":96,"tokens":[12120,8406,12888,12979],"delegation":[11120,7406,11888,11979],"delegatorTokens":9999999939518}},{"ix":119,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":17,"t":102,"tokens":[12120,8406,12888,12979],"delegation":[11120,7406,11888,11979],"delegatorTokens":9999999939518,"jailed":[null,1000000000000035,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":120,"action":{"kind":"Deliver","chain":"consumer","numPackets":1},"partialState":{"h":18,"t":108,"consumerPower":[12120,null,13971,null],"outstandingDowntime":[false,false,true,true]}},{"ix":121,"action":{"kind":"Deliver","chain":"consumer","numPackets":5},"partialState":{"h":18,"t":108,"consumerPower":[12120,null,13971,null],"outstandingDowntime":[false,false,true,true]}},{"ix":122,"action":{"kind":"Delegate","val":3,"amt":3210},"partialState":{"h":17,"t":102,"tokens":[12120,8406,12888,16189],"delegation":[11120,7406,11888,15189],"delegatorTokens":9999999936308}},{"ix":123,"action":{"kind":"Deliver","chain":"consumer","numPackets":1},"partialState":{"h":18,"t":108,"consumerPower":[12120,null,13971,null],"outstandingDowntime":[false,false,true,true]}},{"ix":124,"action":{"kind":"Delegate","val":3,"amt":2527},"partialState":{"h":17,"t":102,"tokens":[12120,8406,12888,18716],"delegation":[11120,7406,11888,17716],"delegatorTokens":9999999933781}},{"ix":125,"action":{"kind":"Deliver","chain":"consumer","numPackets":1},"partialState":{"h":18,"t":108,"consumerPower":[12120,null,13971,null],"outstandingDowntime":[false,false,true,true]}},{"ix":126,"action":{"kind":"Delegate","val":0,"amt":2586},"partialState":{"h":17,"t":102,"tokens":[14706,8406,12888,18716],"delegation":[13706,7406,11888,17716],"delegatorTokens":9999999931195}},{"ix":127,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":128,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":129,"action":{"kind":"Deliver","chain":"provider","numPackets":6},"partialState":{"h":17,"t":102,"tokens":[14706,8406,12888,18716],"delegation":[13706,7406,11888,17716],"delegatorTokens":9999999931195,"jailed":[null,1000000000000035,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":130,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":19,"t":114,"consumerPower":[12120,null,13971,null],"outstandingDowntime":[false,false,true,true]}},{"ix":131,"action":{"kind":"Undelegate","val":2,"amt":4065},"partialState":{"h":17,"t":102,"tokens":[14706,8406,8823,18716],"delegation":[13706,7406,7823,17716],"delegatorTokens":9999999931195}},{"ix":132,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":133,"action":{"kind":"Deliver","chain":"consumer","numPackets":1},"partialState":{"h":19,"t":114,"consumerPower":[12120,null,13971,null],"outstandingDowntime":[false,false,true,true]}},{"ix":134,"action":{"kind":"Undelegate","val":1,"amt":1216},"partialState":{"h":17,"t":102,"tokens":[14706,7190,8823,18716],"delegation":[13706,6190,7823,17716],"delegatorTokens":9999999931195}},{"ix":135,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":20,"t":120,"consumerPower":[12120,null,13971,null],"outstandingDowntime":[false,false,true,true]}},{"ix":136,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":18,"t":108,"tokens":[14706,7190,8823,18716],"delegation":[13706,6190,7823,17716],"delegatorTokens":9999999932651,"jailed":[null,1000000000000035,null,null],"status":["bonded","unbonding","unbonding","bonded"]}},{"ix":137,"action":{"kind":"Deliver","chain":"consumer","numPackets":1},"partialState":{"h":20,"t":120,"consumerPower":[12120,null,13971,null],"outstandingDowntime":[false,false,true,true]}},{"ix":138,"action":{"kind":"Undelegate","val":1,"amt":3220},"partialState":{"h":18,"t":108,"tokens":[14706,3970,8823,18716],"delegation":[13706,2970,7823,17716],"delegatorTokens":9999999932651}},{"ix":139,"action":{"kind":"Deliver","chain":"provider","numPackets":3},"partialState":{"h":18,"t":108,"tokens":[14706,3970,8823,18716],"delegation":[13706,2970,7823,17716],"delegatorTokens":9999999932651,"jailed":[null,1000000000000035,null,null],"status":["bonded","unbonding","unbonding","bonded"]}},{"ix":140,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":19,"t":114,"tokens":[14706,3970,8823,18716],"delegation":[13706,2970,7823,17716],"delegatorTokens":9999999940995,"jailed":[null,1000000000000035,null,null],"status":["bonded","unbonding","unbonding","bonded"]}},{"ix":141,"action":{"kind":"Deliver","chain":"consumer","numPackets":4},"partialState":{"h":20,"t":120,"consumerPower":[12120,null,13971,null],"outstandingDowntime":[false,false,true,true]}},{"ix":142,"action":{"kind":"Delegate","val":1,"amt":2230},"partialState":{"h":19,"t":114,"tokens":[14706,6200,8823,18716],"delegation":[13706,5200,7823,17716],"delegatorTokens":9999999938765}},{"ix":143,"action":{"kind":"Undelegate","val":3,"amt":2850},"partialState":{"h":19,"t":114,"tokens":[14706,6200,8823,15866],"delegation":[13706,5200,7823,14866],"delegatorTokens":9999999938765}},{"ix":144,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":145,"action":{"kind":"Undelegate","val":0,"amt":3289},"partialState":{"h":19,"t":114,"tokens":[11417,6200,8823,15866],"delegation":[10417,5200,7823,14866],"delegatorTokens":9999999938765}},{"ix":146,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":147,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":148,"action":{"kind":"Deliver","chain":"provider","numPackets":6},"partialState":{"h":19,"t":114,"tokens":[11417,6200,8823,15866],"delegation":[10417,5200,7823,14866],"delegatorTokens":9999999938765,"jailed":[null,1000000000000035,null,null],"status":["bonded","unbonding","unbonding","bonded"]}},{"ix":149,"action":{"kind":"Undelegate","val":1,"amt":2833},"partialState":{"h":19,"t":114,"tokens":[11417,3367,8823,15866],"delegation":[10417,2367,7823,14866],"delegatorTokens":9999999938765}},{"ix":150,"action":{"kind":"Delegate","val":1,"amt":2858},"partialState":{"h":19,"t":114,"tokens":[11417,6225,8823,15866],"delegation":[10417,5225,7823,14866],"delegatorTokens":9999999935907}},{"ix":151,"action":{"kind":"Deliver","chain":"consumer","numPackets":5},"partialState":{"h":20,"t":120,"consumerPower":[12120,null,13971,null],"outstandingDowntime":[false,false,true,true]}},{"ix":152,"action":{"kind":"Undelegate","val":2,"amt":3728},"partialState":{"h":19,"t":114,"tokens":[11417,6225,5095,15866],"delegation":[10417,5225,4095,14866],"delegatorTokens":9999999935907}},{"ix":153,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":20,"t":120,"tokens":[11417,6225,5095,15866],"delegation":[10417,5225,4095,14866],"delegatorTokens":9999999935907,"jailed":[null,1000000000000035,null,null],"status":["bonded","unbonding","unbonding","bonded"]}},{"ix":154,"action":{"kind":"Deliver","chain":"provider","numPackets":5},"partialState":{"h":20,"t":120,"tokens":[11417,6225,5095,15866],"delegation":[10417,5225,4095,14866],"delegatorTokens":9999999935907,"jailed":[null,1000000000000035,null,null],"status":["bonded","unbonding","unbonding","bonded"]}},{"ix":155,"action":{"kind":"Delegate","val":3,"amt":1863},"partialState":{"h":20,"t":120,"tokens":[11417,6225,5095,17729],"delegation":[10417,5225,4095,16729],"delegatorTokens":9999999934044}},{"ix":156,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":21,"t":126,"tokens":[11417,6225,5095,17729],"delegation":[10417,5225,4095,16729],"delegatorTokens":9999999934044,"jailed":[null,1000000000000035,null,null],"status":["bonded","unbonding","unbonding","bonded"]}},{"ix":157,"action":{"kind":"Delegate","val":3,"amt":3282},"partialState":{"h":21,"t":126,"tokens":[11417,6225,5095,21011],"delegation":[10417,5225,4095,20011],"delegatorTokens":9999999930762}},{"ix":158,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":21,"t":126,"consumerPower":[14706,null,null,18716],"outstandingDowntime":[false,false,true,true]}},{"ix":159,"action":{"kind":"Undelegate","val":2,"amt":3765},"partialState":{"h":21,"t":126,"tokens":[11417,6225,1330,21011],"delegation":[10417,5225,330,20011],"delegatorTokens":9999999930762}},{"ix":160,"action":{"kind":"Delegate","val":2,"amt":1351},"partialState":{"h":21,"t":126,"tokens":[11417,6225,2681,21011],"delegation":[10417,5225,1681,20011],"delegatorTokens":9999999929411}},{"ix":161,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":162,"action":{"kind":"Deliver","chain":"consumer","numPackets":3},"partialState":{"h":21,"t":126,"consumerPower":[14706,null,null,18716],"outstandingDowntime":[false,false,true,true]}},{"ix":163,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":164,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":165,"action":{"kind":"Delegate","val":1,"amt":1251},"partialState":{"h":21,"t":126,"tokens":[11417,7476,2681,21011],"delegation":[10417,6476,1681,20011],"delegatorTokens":9999999928160}},{"ix":166,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":22,"t":132,"tokens":[11417,7476,2681,21011],"delegation":[10417,6476,1681,20011],"delegatorTokens":9999999928160,"jailed":[null,1000000000000035,null,null],"status":["bonded","unbonding","unbonding","bonded"]}},{"ix":167,"action":{"kind":"Delegate","val":1,"amt":2498},"partialState":{"h":22,"t":132,"tokens":[11417,9974,2681,21011],"delegation":[10417,8974,1681,20011],"delegatorTokens":9999999925662}},{"ix":168,"action":{"kind":"Delegate","val":0,"amt":3200},"partialState":{"h":22,"t":132,"tokens":[14617,9974,2681,21011],"delegation":[13617,8974,1681,20011],"delegatorTokens":9999999922462}},{"ix":169,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":170,"action":{"kind":"Deliver","chain":"consumer","numPackets":2},"partialState":{"h":21,"t":126,"consumerPower":[14706,null,null,18716],"outstandingDowntime":[false,false,true,true]}},{"ix":171,"action":{"kind":"Undelegate","val":0,"amt":1126},"partialState":{"h":22,"t":132,"tokens":[13491,9974,2681,21011],"delegation":[12491,8974,1681,20011],"delegatorTokens":9999999922462}},{"ix":172,"action":{"kind":"Undelegate","val":3,"amt":2382},"partialState":{"h":22,"t":132,"tokens":[13491,9974,2681,18629],"delegation":[12491,8974,1681,17629],"delegatorTokens":9999999922462}},{"ix":173,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":174,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":23,"t":138,"tokens":[13491,9974,2681,18629],"delegation":[12491,8974,1681,17629],"delegatorTokens":9999999922462,"jailed":[null,1000000000000035,null,null],"status":["bonded","unbonding","unbonding","bonded"]}},{"ix":175,"action":{"kind":"Undelegate","val":3,"amt":2473},"partialState":{"h":23,"t":138,"tokens":[13491,9974,2681,16156],"delegation":[12491,8974,1681,15156],"delegatorTokens":9999999922462}},{"ix":176,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":22,"t":132,"consumerPower":[11417,null,null,17729],"outstandingDowntime":[false,false,true,true]}},{"ix":177,"action":{"kind":"Delegate","val":1,"amt":4783},"partialState":{"h":23,"t":138,"tokens":[13491,14757,2681,16156],"delegation":[12491,13757,1681,15156],"delegatorTokens":9999999917679}},{"ix":178,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":179,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":23,"t":138,"consumerPower":[11417,null,null,17729],"outstandingDowntime":[false,false,true,true]}},{"ix":180,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":24,"t":144,"consumerPower":[11417,null,null,17729],"outstandingDowntime":[false,false,true,true]}},{"ix":181,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":182,"action":{"kind":"Undelegate","val":0,"amt":3513},"partialState":{"h":23,"t":138,"tokens":[9978,14757,2681,16156],"delegation":[8978,13757,1681,15156],"delegatorTokens":9999999917679}},{"ix":183,"action":{"kind":"Deliver","chain":"provider","numPackets":2},"partialState":{"h":23,"t":138,"tokens":[9978,14757,2681,16156],"delegation":[8978,13757,1681,15156],"delegatorTokens":9999999917679,"jailed":[null,1000000000000035,null,null],"status":["bonded","unbonding","unbonding","bonded"]}},{"ix":184,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":25,"t":150,"consumerPower":[11417,null,null,17729],"outstandingDowntime":[false,false,true,true]}},{"ix":185,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":186,"action":{"kind":"Delegate","val":2,"amt":3419},"partialState":{"h":23,"t":138,"tokens":[9978,14757,6100,16156],"delegation":[8978,13757,5100,15156],"delegatorTokens":9999999914260}},{"ix":187,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":188,"action":{"kind":"Delegate","val":1,"amt":3599},"partialState":{"h":23,"t":138,"tokens":[9978,18356,6100,16156],"delegation":[8978,17356,5100,15156],"delegatorTokens":9999999910661}},{"ix":189,"action":{"kind":"Deliver","chain":"consumer","numPackets":1},"partialState":{"h":25,"t":150,"consumerPower":[11417,null,null,17729],"outstandingDowntime":[false,false,true,true]}},{"ix":190,"action":{"kind":"Deliver","chain":"consumer","numPackets":1},"partialState":{"h":25,"t":150,"consumerPower":[11417,null,null,17729],"outstandingDowntime":[false,false,true,true]}},{"ix":191,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":24,"t":144,"tokens":[9978,18356,6100,16156],"delegation":[8978,17356,5100,15156],"delegatorTokens":9999999914710,"jailed":[null,1000000000000035,null,null],"status":["bonded","unbonding","unbonding","bonded"]}},{"ix":192,"action":{"kind":"Undelegate","val":0,"amt":4633},"partialState":{"h":24,"t":144,"tokens":[5345,18356,6100,16156],"delegation":[4345,17356,5100,15156],"delegatorTokens":9999999914710}},{"ix":193,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":26,"t":156,"consumerPower":[11417,null,null,21011],"outstandingDowntime":[false,false,true,true]}},{"ix":194,"action":{"kind":"Undelegate","val":1,"amt":3742},"partialState":{"h":24,"t":144,"tokens":[5345,14614,6100,16156],"delegation":[4345,13614,5100,15156],"delegatorTokens":9999999914710}},{"ix":195,"action":{"kind":"Undelegate","val":0,"amt":4068},"partialState":{"h":24,"t":144,"tokens":[1277,14614,6100,16156],"delegation":[277,13614,5100,15156],"delegatorTokens":9999999914710}},{"ix":196,"action":{"kind":"Deliver","chain":"consumer","numPackets":4},"partialState":{"h":26,"t":156,"consumerPower":[11417,null,null,21011],"outstandingDowntime":[false,false,true,true]}},{"ix":197,"action":{"kind":"Deliver","chain":"consumer","numPackets":4},"partialState":{"h":26,"t":156,"consumerPower":[11417,null,null,21011],"outstandingDowntime":[false,false,true,true]}},{"ix":198,"action":{"kind":"Delegate","val":3,"amt":4710},"partialState":{"h":24,"t":144,"tokens":[1277,14614,6100,20866],"delegation":[277,13614,5100,19866],"delegatorTokens":9999999910000}},{"ix":199,"action":{"kind":"Delegate","val":2,"amt":2881},"partialState":{"h":24,"t":144,"tokens":[1277,14614,8981,20866],"delegation":[277,13614,7981,19866],"delegatorTokens":9999999907119}}],"events":["send_downtime_slash_request","insufficient_shares","insufficient_shares","insufficient_shares","insufficient_shares","send_downtime_slash_request","send_double_sign_slash_request","send_downtime_slash_request","insufficient_shares","insufficient_shares","insufficient_shares","send_vsc_without_downtime_ack","send_vsc_without_downtime_ack","receive_double_sign_slash_request","receive_slash_request_unbonded","receive_slash_request_unbonded","receive_downtime_slash_request","jail","send_vsc_with_downtime_ack","insufficient_shares","consumer_update_val","consumer_update_val","more_than_one_third_val_power_change","send_vsc_without_downtime_ack","receive_downtime_slash_ack","send_vsc_without_downtime_ack","consumer_update_val","consumer_del_val","consumer_del_val","consumer_add_val","consumer_add_val","insufficient_shares","more_than_one_third_val_power_change","rebond_unval","send_vsc_without_downtime_ack","send_vsc_without_downtime_ack","consumer_del_val","consumer_add_val","consumer_update_val","insufficient_shares","some_undels_expired_but_not_completed","consumer_send_maturation","consumer_send_maturation","more_than_one_third_val_power_change","rebond_unval","send_vsc_without_downtime_ack","consumer_send_maturation","consumer_send_maturation","more_than_one_third_val_power_change","rebond_unval","complete_undel_immediate","send_vsc_without_downtime_ack","some_undels_expired_but_not_completed","complete_undel_immediate","complete_undel_immediate","send_vsc_not_because_change","send_vsc_without_downtime_ack","some_undels_expired_but_not_completed","send_vsc_without_downtime_ack","send_vsc_without_downtime_ack","consumer_update_val","consumer_del_val","consumer_add_val","some_undels_expired_but_not_completed","send_vsc_without_downtime_ack","send_vsc_without_downtime_ack","consumer_update_val","consumer_update_val","consumer_send_maturation","consumer_send_maturation","consumer_send_maturation","some_undels_expired_but_not_completed","complete_undel_immediate","set_unval_hold_false","send_vsc_without_downtime_ack","consumer_update_val"]},{"meta":{"commit":"7ffd0c04e4205cbc9caf212abfe6c59ee43153bf"},"constants":{"P":"provider","C":"consumer","UNBONDING_SECONDS_P":70,"UNBONDING_SECONDS_C":50,"TRUSTING_SECONDS":49,"NUM_VALIDATORS":4,"MAX_VALIDATORS":2,"SLASH_DOUBLESIGN":0,"SLASH_DOWNTIME":0,"JAIL_SECONDS":999999999999999,"BLOCK_SECONDS":6,"INITIAL_DELEGATOR_TOKENS":10000000000000,"DELEGATE_AMT_MIN":1000,"DELEGATE_AMT_MAX":5000,"UNDELEGATE_AMT_MIN":1000,"UNDELEGATE_AMT_MAX":5000,"ISDOWNTIME_PROBABILITY":0.5,"MAX_NUM_PACKETS_FOR_DELIVER":6},"actions":[{"ix":0,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":2,"t":12,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":1,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":3,"t":18,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":2,"action":{"kind":"Deliver","chain":"consumer","numPackets":1},"partialState":{"h":3,"t":18,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":3,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":4,"action":{"kind":"Undelegate","val":1,"amt":4538},"partialState":{"h":1,"t":6,"tokens":[5000,4000,3000,2000],"delegation":[4000,3000,2000,1000],"delegatorTokens":10000000000000}},{"ix":5,"action":{"kind":"Deliver","chain":"consumer","numPackets":2},"partialState":{"h":3,"t":18,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":6,"action":{"kind":"Delegate","val":0,"amt":2070},"partialState":{"h":1,"t":6,"tokens":[7070,4000,3000,2000],"delegation":[6070,3000,2000,1000],"delegatorTokens":9999999997930}},{"ix":7,"action":{"kind":"Deliver","chain":"consumer","numPackets":3},"partialState":{"h":3,"t":18,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":8,"action":{"kind":"Deliver","chain":"provider","numPackets":5},"partialState":{"h":1,"t":6,"tokens":[7070,4000,3000,2000],"delegation":[6070,3000,2000,1000],"delegatorTokens":9999999997930,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":9,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":4,"t":24,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":10,"action":{"kind":"Deliver","chain":"provider","numPackets":2},"partialState":{"h":1,"t":6,"tokens":[7070,4000,3000,2000],"delegation":[6070,3000,2000,1000],"delegatorTokens":9999999997930,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":11,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":5,"t":30,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":12,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":13,"action":{"kind":"Delegate","val":1,"amt":2469},"partialState":{"h":1,"t":6,"tokens":[7070,6469,3000,2000],"delegation":[6070,5469,2000,1000],"delegatorTokens":9999999995461}},{"ix":14,"action":{"kind":"Delegate","val":2,"amt":2327},"partialState":{"h":1,"t":6,"tokens":[7070,6469,5327,2000],"delegation":[6070,5469,4327,1000],"delegatorTokens":9999999993134}},{"ix":15,"action":{"kind":"Deliver","chain":"consumer","numPackets":4},"partialState":{"h":5,"t":30,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":16,"action":{"kind":"Deliver","chain":"consumer","numPackets":2},"partialState":{"h":5,"t":30,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":17,"action":{"kind":"Undelegate","val":2,"amt":2673},"partialState":{"h":1,"t":6,"tokens":[7070,6469,2654,2000],"delegation":[6070,5469,1654,1000],"delegatorTokens":9999999993134}},{"ix":18,"action":{"kind":"Delegate","val":1,"amt":1587},"partialState":{"h":1,"t":6,"tokens":[7070,8056,2654,2000],"delegation":[6070,7056,1654,1000],"delegatorTokens":9999999991547}},{"ix":19,"action":{"kind":"Delegate","val":0,"amt":4454},"partialState":{"h":1,"t":6,"tokens":[11524,8056,2654,2000],"delegation":[10524,7056,1654,1000],"delegatorTokens":9999999987093}},{"ix":20,"action":{"kind":"Delegate","val":2,"amt":1692},"partialState":{"h":1,"t":6,"tokens":[11524,8056,4346,2000],"delegation":[10524,7056,3346,1000],"delegatorTokens":9999999985401}},{"ix":21,"action":{"kind":"Deliver","chain":"provider","numPackets":3},"partialState":{"h":1,"t":6,"tokens":[11524,8056,4346,2000],"delegation":[10524,7056,3346,1000],"delegatorTokens":9999999985401,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":22,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":2,"t":12,"tokens":[11524,8056,4346,2000],"delegation":[10524,7056,3346,1000],"delegatorTokens":9999999985401,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":23,"action":{"kind":"Delegate","val":3,"amt":1871},"partialState":{"h":2,"t":12,"tokens":[11524,8056,4346,3871],"delegation":[10524,7056,3346,2871],"delegatorTokens":9999999983530}},{"ix":24,"action":{"kind":"ConsumerSlash","val":2,"infractionHeight":4,"isDowntime":false},"partialState":{"h":5,"t":30,"outstandingDowntime":[false,false,false,false]}},{"ix":25,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":26,"action":{"kind":"ConsumerSlash","val":0,"infractionHeight":0,"isDowntime":true},"partialState":{"h":5,"t":30,"outstandingDowntime":[true,false,false,false]}},{"ix":27,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":3,"t":18,"tokens":[11524,8056,4346,3871],"delegation":[10524,7056,3346,2871],"delegatorTokens":9999999983530,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":28,"action":{"kind":"Deliver","chain":"consumer","numPackets":1},"partialState":{"h":5,"t":30,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[true,false,false,false]}},{"ix":29,"action":{"kind":"Deliver","chain":"consumer","numPackets":2},"partialState":{"h":5,"t":30,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[true,false,false,false]}},{"ix":30,"action":{"kind":"ConsumerSlash","val":2,"infractionHeight":3,"isDowntime":true},"partialState":{"h":5,"t":30,"outstandingDowntime":[true,false,true,false]}},{"ix":31,"action":{"kind":"Delegate","val":0,"amt":4581},"partialState":{"h":3,"t":18,"tokens":[16105,8056,4346,3871],"delegation":[15105,7056,3346,2871],"delegatorTokens":9999999978949}},{"ix":32,"action":{"kind":"Delegate","val":1,"amt":2906},"partialState":{"h":3,"t":18,"tokens":[16105,10962,4346,3871],"delegation":[15105,9962,3346,2871],"delegatorTokens":9999999976043}},{"ix":33,"action":{"kind":"Delegate","val":0,"amt":1814},"partialState":{"h":3,"t":18,"tokens":[17919,10962,4346,3871],"delegation":[16919,9962,3346,2871],"delegatorTokens":9999999974229}},{"ix":34,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":35,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":6,"t":36,"consumerPower":[11524,8056,null,null],"outstandingDowntime":[true,false,true,false]}},{"ix":36,"action":{"kind":"ConsumerSlash","val":2,"infractionHeight":3,"isDowntime":false},"partialState":{"h":6,"t":36,"outstandingDowntime":[true,false,true,false]}},{"ix":37,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":4,"t":24,"tokens":[17919,10962,4346,3871],"delegation":[16919,9962,3346,2871],"delegatorTokens":9999999974229,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":38,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":7,"t":42,"consumerPower":[11524,8056,null,null],"outstandingDowntime":[true,false,true,false]}},{"ix":39,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":40,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":41,"action":{"kind":"Deliver","chain":"provider","numPackets":5},"partialState":{"h":4,"t":24,"tokens":[17919,10962,4346,3871],"delegation":[16919,9962,3346,2871],"delegatorTokens":9999999974229,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":42,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":5,"t":30,"tokens":[17919,10962,4346,3871],"delegation":[16919,9962,3346,2871],"delegatorTokens":9999999974229,"jailed":[1000000000000023,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":43,"action":{"kind":"Deliver","chain":"consumer","numPackets":6},"partialState":{"h":7,"t":42,"consumerPower":[11524,8056,null,null],"outstandingDowntime":[true,false,true,false]}},{"ix":44,"action":{"kind":"ConsumerSlash","val":3,"infractionHeight":3,"isDowntime":true},"partialState":{"h":7,"t":42,"outstandingDowntime":[true,false,true,true]}},{"ix":45,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":46,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":6,"t":36,"tokens":[17919,10962,4346,3871],"delegation":[16919,9962,3346,2871],"delegatorTokens":9999999974229,"jailed":[1000000000000023,null,null,null],"status":["unbonding","bonded","bonded","unbonded"]}},{"ix":47,"action":{"kind":"Delegate","val":2,"amt":4945},"partialState":{"h":6,"t":36,"tokens":[17919,10962,9291,3871],"delegation":[16919,9962,8291,2871],"delegatorTokens":9999999969284}},{"ix":48,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":49,"action":{"kind":"Undelegate","val":0,"amt":4875},"partialState":{"h":6,"t":36,"tokens":[13044,10962,9291,3871],"delegation":[12044,9962,8291,2871],"delegatorTokens":9999999969284}},{"ix":50,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":8,"t":48,"consumerPower":[17919,10962,null,null],"outstandingDowntime":[true,false,true,true]}},{"ix":51,"action":{"kind":"Delegate","val":3,"amt":2449},"partialState":{"h":6,"t":36,"tokens":[13044,10962,9291,6320],"delegation":[12044,9962,8291,5320],"delegatorTokens":9999999966835}},{"ix":52,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":53,"action":{"kind":"Delegate","val":0,"amt":3978},"partialState":{"h":6,"t":36,"tokens":[17022,10962,9291,6320],"delegation":[16022,9962,8291,5320],"delegatorTokens":9999999962857}},{"ix":54,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":55,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":56,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":57,"action":{"kind":"Delegate","val":0,"amt":4280},"partialState":{"h":6,"t":36,"tokens":[21302,10962,9291,6320],"delegation":[20302,9962,8291,5320],"delegatorTokens":9999999958577}},{"ix":58,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":7,"t":42,"tokens":[21302,10962,9291,6320],"delegation":[20302,9962,8291,5320],"delegatorTokens":9999999958577,"jailed":[1000000000000023,null,null,null],"status":["unbonding","bonded","bonded","unbonded"]}},{"ix":59,"action":{"kind":"Delegate","val":2,"amt":1929},"partialState":{"h":7,"t":42,"tokens":[21302,10962,11220,6320],"delegation":[20302,9962,10220,5320],"delegatorTokens":9999999956648}},{"ix":60,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":9,"t":54,"consumerPower":[17919,10962,null,null],"outstandingDowntime":[true,false,true,true]}},{"ix":61,"action":{"kind":"Undelegate","val":1,"amt":4296},"partialState":{"h":7,"t":42,"tokens":[21302,6666,11220,6320],"delegation":[20302,5666,10220,5320],"delegatorTokens":9999999956648}},{"ix":62,"action":{"kind":"Deliver","chain":"provider","numPackets":5},"partialState":{"h":7,"t":42,"tokens":[21302,6666,11220,6320],"delegation":[20302,5666,10220,5320],"delegatorTokens":9999999956648,"jailed":[1000000000000023,null,null,null],"status":["unbonding","bonded","bonded","unbonded"]}},{"ix":63,"action":{"kind":"Deliver","chain":"provider","numPackets":4},"partialState":{"h":7,"t":42,"tokens":[21302,6666,11220,6320],"delegation":[20302,5666,10220,5320],"delegatorTokens":9999999956648,"jailed":[1000000000000023,null,null,null],"status":["unbonding","bonded","bonded","unbonded"]}},{"ix":64,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":8,"t":48,"tokens":[21302,6666,11220,6320],"delegation":[20302,5666,10220,5320],"delegatorTokens":9999999956648,"jailed":[1000000000000023,null,null,null],"status":["unbonding","bonded","bonded","unbonded"]}},{"ix":65,"action":{"kind":"Deliver","chain":"consumer","numPackets":1},"partialState":{"h":9,"t":54,"consumerPower":[17919,10962,null,null],"outstandingDowntime":[false,false,true,true]}},{"ix":66,"action":{"kind":"Undelegate","val":0,"amt":3004},"partialState":{"h":8,"t":48,"tokens":[18298,6666,11220,6320],"delegation":[17298,5666,10220,5320],"delegatorTokens":9999999956648}},{"ix":67,"action":{"kind":"Undelegate","val":0,"amt":4178},"partialState":{"h":8,"t":48,"tokens":[14120,6666,11220,6320],"delegation":[13120,5666,10220,5320],"delegatorTokens":9999999956648}},{"ix":68,"action":{"kind":"Deliver","chain":"provider","numPackets":6},"partialState":{"h":8,"t":48,"tokens":[14120,6666,11220,6320],"delegation":[13120,5666,10220,5320],"delegatorTokens":9999999956648,"jailed":[1000000000000023,null,null,null],"status":["unbonding","bonded","bonded","unbonded"]}},{"ix":69,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":70,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":9,"t":54,"tokens":[14120,6666,11220,6320],"delegation":[13120,5666,10220,5320],"delegatorTokens":9999999956648,"jailed":[1000000000000023,null,null,null],"status":["unbonding","bonded","bonded","unbonded"]}},{"ix":71,"action":{"kind":"Deliver","chain":"provider","numPackets":3},"partialState":{"h":9,"t":54,"tokens":[14120,6666,11220,6320],"delegation":[13120,5666,10220,5320],"delegatorTokens":9999999956648,"jailed":[1000000000000023,null,null,null],"status":["unbonding","bonded","bonded","unbonded"]}},{"ix":72,"action":{"kind":"Deliver","chain":"provider","numPackets":6},"partialState":{"h":9,"t":54,"tokens":[14120,6666,11220,6320],"delegation":[13120,5666,10220,5320],"delegatorTokens":9999999956648,"jailed":[1000000000000023,null,null,null],"status":["unbonding","bonded","bonded","unbonded"]}},{"ix":73,"action":{"kind":"Undelegate","val":1,"amt":3931},"partialState":{"h":9,"t":54,"tokens":[14120,2735,11220,6320],"delegation":[13120,1735,10220,5320],"delegatorTokens":9999999956648}},{"ix":74,"action":{"kind":"Deliver","chain":"provider","numPackets":6},"partialState":{"h":9,"t":54,"tokens":[14120,2735,11220,6320],"delegation":[13120,1735,10220,5320],"delegatorTokens":9999999956648,"jailed":[1000000000000023,null,null,null],"status":["unbonding","bonded","bonded","unbonded"]}},{"ix":75,"action":{"kind":"Deliver","chain":"provider","numPackets":5},"partialState":{"h":9,"t":54,"tokens":[14120,2735,11220,6320],"delegation":[13120,1735,10220,5320],"delegatorTokens":9999999956648,"jailed":[1000000000000023,null,null,null],"status":["unbonding","bonded","bonded","unbonded"]}},{"ix":76,"action":{"kind":"Deliver","chain":"provider","numPackets":3},"partialState":{"h":9,"t":54,"tokens":[14120,2735,11220,6320],"delegation":[13120,1735,10220,5320],"delegatorTokens":9999999956648,"jailed":[1000000000000023,null,null,null],"status":["unbonding","bonded","bonded","unbonded"]}},{"ix":77,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":10,"t":60,"consumerPower":[null,10962,4346,null],"outstandingDowntime":[false,false,true,true]}},{"ix":78,"action":{"kind":"Deliver","chain":"consumer","numPackets":4},"partialState":{"h":10,"t":60,"consumerPower":[null,10962,4346,null],"outstandingDowntime":[false,false,true,true]}},{"ix":79,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":80,"action":{"kind":"Deliver","chain":"consumer","numPackets":2},"partialState":{"h":10,"t":60,"consumerPower":[null,10962,4346,null],"outstandingDowntime":[false,false,true,true]}},{"ix":81,"action":{"kind":"Undelegate","val":1,"amt":3710},"partialState":{"h":9,"t":54,"tokens":[14120,2735,11220,6320],"delegation":[13120,1735,10220,5320],"delegatorTokens":9999999956648}},{"ix":82,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":83,"action":{"kind":"Deliver","chain":"provider","numPackets":6},"partialState":{"h":9,"t":54,"tokens":[14120,2735,11220,6320],"delegation":[13120,1735,10220,5320],"delegatorTokens":9999999956648,"jailed":[1000000000000023,null,null,null],"status":["unbonding","bonded","bonded","unbonded"]}},{"ix":84,"action":{"kind":"Deliver","chain":"consumer","numPackets":1},"partialState":{"h":10,"t":60,"consumerPower":[null,10962,4346,null],"outstandingDowntime":[false,false,true,true]}},{"ix":85,"action":{"kind":"Deliver","chain":"provider","numPackets":6},"partialState":{"h":9,"t":54,"tokens":[14120,2735,11220,6320],"delegation":[13120,1735,10220,5320],"delegatorTokens":9999999956648,"jailed":[1000000000000023,null,null,null],"status":["unbonding","bonded","bonded","unbonded"]}},{"ix":86,"action":{"kind":"Delegate","val":2,"amt":3686},"partialState":{"h":9,"t":54,"tokens":[14120,2735,14906,6320],"delegation":[13120,1735,13906,5320],"delegatorTokens":9999999952962}},{"ix":87,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":88,"action":{"kind":"Deliver","chain":"consumer","numPackets":6},"partialState":{"h":10,"t":60,"consumerPower":[null,10962,4346,null],"outstandingDowntime":[false,false,true,true]}},{"ix":89,"action":{"kind":"Delegate","val":3,"amt":3849},"partialState":{"h":9,"t":54,"tokens":[14120,2735,14906,10169],"delegation":[13120,1735,13906,9169],"delegatorTokens":9999999949113}},{"ix":90,"action":{"kind":"Deliver","chain":"provider","numPackets":1},"partialState":{"h":9,"t":54,"tokens":[14120,2735,14906,10169],"delegation":[13120,1735,13906,9169],"delegatorTokens":9999999949113,"jailed":[1000000000000023,null,null,null],"status":["unbonding","bonded","bonded","unbonded"]}},{"ix":91,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":92,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":93,"action":{"kind":"Undelegate","val":3,"amt":3020},"partialState":{"h":9,"t":54,"tokens":[14120,2735,14906,7149],"delegation":[13120,1735,13906,6149],"delegatorTokens":9999999949113}},{"ix":94,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":11,"t":66,"consumerPower":[null,6666,11220,null],"outstandingDowntime":[false,false,true,true]}},{"ix":95,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":96,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":97,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":12,"t":72,"consumerPower":[null,6666,11220,null],"outstandingDowntime":[false,false,true,true]}},{"ix":98,"action":{"kind":"Undelegate","val":2,"amt":2261},"partialState":{"h":9,"t":54,"tokens":[14120,2735,12645,7149],"delegation":[13120,1735,11645,6149],"delegatorTokens":9999999949113}},{"ix":99,"action":{"kind":"Undelegate","val":1,"amt":2703},"partialState":{"h":9,"t":54,"tokens":[14120,2735,12645,7149],"delegation":[13120,1735,11645,6149],"delegatorTokens":9999999949113}},{"ix":100,"action":{"kind":"Deliver","chain":"consumer","numPackets":6},"partialState":{"h":12,"t":72,"consumerPower":[null,6666,11220,null],"outstandingDowntime":[false,false,true,true]}},{"ix":101,"action":{"kind":"Undelegate","val":0,"amt":4428},"partialState":{"h":9,"t":54,"tokens":[9692,2735,12645,7149],"delegation":[8692,1735,11645,6149],"delegatorTokens":9999999949113}},{"ix":102,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":103,"action":{"kind":"Undelegate","val":1,"amt":2052},"partialState":{"h":9,"t":54,"tokens":[9692,2735,12645,7149],"delegation":[8692,1735,11645,6149],"delegatorTokens":9999999949113}},{"ix":104,"action":{"kind":"Deliver","chain":"provider","numPackets":2},"partialState":{"h":9,"t":54,"tokens":[9692,2735,12645,7149],"delegation":[8692,1735,11645,6149],"delegatorTokens":9999999949113,"jailed":[1000000000000023,null,null,null],"status":["unbonding","bonded","bonded","unbonded"]}},{"ix":105,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":106,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":10,"t":60,"tokens":[9692,2735,12645,7149],"delegation":[8692,1735,11645,6149],"delegatorTokens":9999999949113,"jailed":[1000000000000023,null,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":107,"action":{"kind":"Deliver","chain":"consumer","numPackets":6},"partialState":{"h":12,"t":72,"consumerPower":[null,6666,11220,null],"outstandingDowntime":[false,false,true,true]}},{"ix":108,"action":{"kind":"Deliver","chain":"provider","numPackets":3},"partialState":{"h":10,"t":60,"tokens":[9692,2735,12645,7149],"delegation":[8692,1735,11645,6149],"delegatorTokens":9999999949113,"jailed":[1000000000000023,null,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":109,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":110,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":111,"action":{"kind":"Deliver","chain":"consumer","numPackets":1},"partialState":{"h":12,"t":72,"consumerPower":[null,6666,11220,null],"outstandingDowntime":[false,false,true,true]}},{"ix":112,"action":{"kind":"Delegate","val":2,"amt":2379},"partialState":{"h":10,"t":60,"tokens":[9692,2735,15024,7149],"delegation":[8692,1735,14024,6149],"delegatorTokens":9999999946734}},{"ix":113,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":114,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":115,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":116,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":13,"t":78,"consumerPower":[null,6666,11220,null],"outstandingDowntime":[false,false,true,true]}},{"ix":117,"action":{"kind":"Deliver","chain":"consumer","numPackets":3},"partialState":{"h":13,"t":78,"consumerPower":[null,6666,11220,null],"outstandingDowntime":[false,false,true,true]}},{"ix":118,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":14,"t":84,"consumerPower":[null,6666,11220,null],"outstandingDowntime":[false,false,true,true]}},{"ix":119,"action":{"kind":"Delegate","val":0,"amt":1866},"partialState":{"h":10,"t":60,"tokens":[11558,2735,15024,7149],"delegation":[10558,1735,14024,6149],"delegatorTokens":9999999944868}},{"ix":120,"action":{"kind":"Delegate","val":3,"amt":3206},"partialState":{"h":10,"t":60,"tokens":[11558,2735,15024,10355],"delegation":[10558,1735,14024,9355],"delegatorTokens":9999999941662}},{"ix":121,"action":{"kind":"Delegate","val":0,"amt":2451},"partialState":{"h":10,"t":60,"tokens":[14009,2735,15024,10355],"delegation":[13009,1735,14024,9355],"delegatorTokens":9999999939211}},{"ix":122,"action":{"kind":"Undelegate","val":1,"amt":2299},"partialState":{"h":10,"t":60,"tokens":[14009,2735,15024,10355],"delegation":[13009,1735,14024,9355],"delegatorTokens":9999999939211}},{"ix":123,"action":{"kind":"Delegate","val":2,"amt":2368},"partialState":{"h":10,"t":60,"tokens":[14009,2735,17392,10355],"delegation":[13009,1735,16392,9355],"delegatorTokens":9999999936843}},{"ix":124,"action":{"kind":"Delegate","val":3,"amt":3353},"partialState":{"h":10,"t":60,"tokens":[14009,2735,17392,13708],"delegation":[13009,1735,16392,12708],"delegatorTokens":9999999933490}},{"ix":125,"action":{"kind":"Deliver","chain":"provider","numPackets":6},"partialState":{"h":10,"t":60,"tokens":[14009,2735,17392,13708],"delegation":[13009,1735,16392,12708],"delegatorTokens":9999999933490,"jailed":[1000000000000023,null,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":126,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":127,"action":{"kind":"Undelegate","val":2,"amt":3268},"partialState":{"h":10,"t":60,"tokens":[14009,2735,14124,13708],"delegation":[13009,1735,13124,12708],"delegatorTokens":9999999933490}},{"ix":128,"action":{"kind":"Delegate","val":2,"amt":2882},"partialState":{"h":10,"t":60,"tokens":[14009,2735,17006,13708],"delegation":[13009,1735,16006,12708],"delegatorTokens":9999999930608}},{"ix":129,"action":{"kind":"Deliver","chain":"provider","numPackets":3},"partialState":{"h":10,"t":60,"tokens":[14009,2735,17006,13708],"delegation":[13009,1735,16006,12708],"delegatorTokens":9999999930608,"jailed":[1000000000000023,null,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":130,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":15,"t":90,"consumerPower":[null,6666,11220,null],"outstandingDowntime":[false,false,true,true]}},{"ix":131,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":132,"action":{"kind":"Delegate","val":0,"amt":2477},"partialState":{"h":10,"t":60,"tokens":[16486,2735,17006,13708],"delegation":[15486,1735,16006,12708],"delegatorTokens":9999999928131}},{"ix":133,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":134,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":11,"t":66,"tokens":[16486,2735,17006,13708],"delegation":[15486,1735,16006,12708],"delegatorTokens":9999999928131,"jailed":[1000000000000023,null,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":135,"action":{"kind":"Deliver","chain":"consumer","numPackets":6},"partialState":{"h":15,"t":90,"consumerPower":[null,6666,11220,null],"outstandingDowntime":[false,false,true,true]}},{"ix":136,"action":{"kind":"Delegate","val":2,"amt":4232},"partialState":{"h":11,"t":66,"tokens":[16486,2735,21238,13708],"delegation":[15486,1735,20238,12708],"delegatorTokens":9999999923899}},{"ix":137,"action":{"kind":"Deliver","chain":"consumer","numPackets":3},"partialState":{"h":15,"t":90,"consumerPower":[null,6666,11220,null],"outstandingDowntime":[false,false,true,true]}},{"ix":138,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":139,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":16,"t":96,"consumerPower":[null,null,12645,7149],"outstandingDowntime":[false,false,true,true]}},{"ix":140,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":141,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":17,"t":102,"consumerPower":[null,null,12645,7149],"outstandingDowntime":[false,false,true,true]}},{"ix":142,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":143,"action":{"kind":"Delegate","val":0,"amt":2168},"partialState":{"h":11,"t":66,"tokens":[18654,2735,21238,13708],"delegation":[17654,1735,20238,12708],"delegatorTokens":9999999921731}},{"ix":144,"action":{"kind":"Deliver","chain":"consumer","numPackets":5},"partialState":{"h":17,"t":102,"consumerPower":[null,null,12645,7149],"outstandingDowntime":[false,false,true,true]}},{"ix":145,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":18,"t":108,"consumerPower":[null,null,12645,7149],"outstandingDowntime":[false,false,true,true]}},{"ix":146,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":147,"action":{"kind":"Delegate","val":1,"amt":4324},"partialState":{"h":11,"t":66,"tokens":[18654,7059,21238,13708],"delegation":[17654,6059,20238,12708],"delegatorTokens":9999999917407}},{"ix":148,"action":{"kind":"Deliver","chain":"consumer","numPackets":1},"partialState":{"h":18,"t":108,"consumerPower":[null,null,12645,7149],"outstandingDowntime":[false,false,true,true]}},{"ix":149,"action":{"kind":"Delegate","val":3,"amt":4997},"partialState":{"h":11,"t":66,"tokens":[18654,7059,21238,18705],"delegation":[17654,6059,20238,17705],"delegatorTokens":9999999912410}},{"ix":150,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":151,"action":{"kind":"Undelegate","val":3,"amt":2357},"partialState":{"h":11,"t":66,"tokens":[18654,7059,21238,16348],"delegation":[17654,6059,20238,15348],"delegatorTokens":9999999912410}},{"ix":152,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":153,"action":{"kind":"Deliver","chain":"consumer","numPackets":5},"partialState":{"h":18,"t":108,"consumerPower":[null,null,12645,7149],"outstandingDowntime":[false,false,true,true]}},{"ix":154,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":155,"action":{"kind":"Delegate","val":2,"amt":2392},"partialState":{"h":11,"t":66,"tokens":[18654,7059,23630,16348],"delegation":[17654,6059,22630,15348],"delegatorTokens":9999999910018}},{"ix":156,"action":{"kind":"Delegate","val":1,"amt":1351},"partialState":{"h":11,"t":66,"tokens":[18654,8410,23630,16348],"delegation":[17654,7410,22630,15348],"delegatorTokens":9999999908667}},{"ix":157,"action":{"kind":"Undelegate","val":3,"amt":2409},"partialState":{"h":11,"t":66,"tokens":[18654,8410,23630,13939],"delegation":[17654,7410,22630,12939],"delegatorTokens":9999999908667}},{"ix":158,"action":{"kind":"Undelegate","val":1,"amt":1586},"partialState":{"h":11,"t":66,"tokens":[18654,6824,23630,13939],"delegation":[17654,5824,22630,12939],"delegatorTokens":9999999908667}},{"ix":159,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":160,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":161,"action":{"kind":"Undelegate","val":2,"amt":2360},"partialState":{"h":11,"t":66,"tokens":[18654,6824,21270,13939],"delegation":[17654,5824,20270,12939],"delegatorTokens":9999999908667}},{"ix":162,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":12,"t":72,"tokens":[18654,6824,21270,13939],"delegation":[17654,5824,20270,12939],"delegatorTokens":9999999908667,"jailed":[1000000000000023,null,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":163,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":164,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":165,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":13,"t":78,"tokens":[18654,6824,21270,13939],"delegation":[17654,5824,20270,12939],"delegatorTokens":9999999908667,"jailed":[1000000000000023,null,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":166,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":167,"action":{"kind":"Delegate","val":1,"amt":1777},"partialState":{"h":13,"t":78,"tokens":[18654,8601,21270,13939],"delegation":[17654,7601,20270,12939],"delegatorTokens":9999999906890}},{"ix":168,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":19,"t":114,"consumerPower":[null,null,12645,7149],"outstandingDowntime":[false,false,true,true]}},{"ix":169,"action":{"kind":"Deliver","chain":"consumer","numPackets":5},"partialState":{"h":19,"t":114,"consumerPower":[null,null,12645,7149],"outstandingDowntime":[false,false,true,true]}},{"ix":170,"action":{"kind":"Delegate","val":0,"amt":1939},"partialState":{"h":13,"t":78,"tokens":[20593,8601,21270,13939],"delegation":[19593,7601,20270,12939],"delegatorTokens":9999999904951}},{"ix":171,"action":{"kind":"Undelegate","val":0,"amt":2125},"partialState":{"h":13,"t":78,"tokens":[18468,8601,21270,13939],"delegation":[17468,7601,20270,12939],"delegatorTokens":9999999904951}},{"ix":172,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":20,"t":120,"consumerPower":[null,null,21270,13939],"outstandingDowntime":[false,false,true,true]}},{"ix":173,"action":{"kind":"Delegate","val":3,"amt":2276},"partialState":{"h":13,"t":78,"tokens":[18468,8601,21270,16215],"delegation":[17468,7601,20270,15215],"delegatorTokens":9999999902675}},{"ix":174,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":175,"action":{"kind":"Delegate","val":0,"amt":4886},"partialState":{"h":13,"t":78,"tokens":[23354,8601,21270,16215],"delegation":[22354,7601,20270,15215],"delegatorTokens":9999999897789}},{"ix":176,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":177,"action":{"kind":"Deliver","chain":"provider","numPackets":1},"partialState":{"h":13,"t":78,"tokens":[23354,8601,21270,16215],"delegation":[22354,7601,20270,15215],"delegatorTokens":9999999897789,"jailed":[1000000000000023,null,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":178,"action":{"kind":"Deliver","chain":"consumer","numPackets":4},"partialState":{"h":20,"t":120,"consumerPower":[null,null,21270,13939],"outstandingDowntime":[false,false,true,true]}},{"ix":179,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":180,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":181,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":182,"action":{"kind":"Deliver","chain":"consumer","numPackets":5},"partialState":{"h":20,"t":120,"consumerPower":[null,null,21270,13939],"outstandingDowntime":[false,false,true,true]}},{"ix":183,"action":{"kind":"Deliver","chain":"provider","numPackets":2},"partialState":{"h":13,"t":78,"tokens":[23354,8601,21270,16215],"delegation":[22354,7601,20270,15215],"delegatorTokens":9999999897789,"jailed":[1000000000000023,null,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":184,"action":{"kind":"Delegate","val":0,"amt":4811},"partialState":{"h":13,"t":78,"tokens":[28165,8601,21270,16215],"delegation":[27165,7601,20270,15215],"delegatorTokens":9999999892978}},{"ix":185,"action":{"kind":"Delegate","val":3,"amt":4487},"partialState":{"h":13,"t":78,"tokens":[28165,8601,21270,20702],"delegation":[27165,7601,20270,19702],"delegatorTokens":9999999888491}},{"ix":186,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":14,"t":84,"tokens":[28165,8601,21270,20702],"delegation":[27165,7601,20270,19702],"delegatorTokens":9999999891164,"jailed":[1000000000000023,null,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":187,"action":{"kind":"Deliver","chain":"consumer","numPackets":1},"partialState":{"h":20,"t":120,"consumerPower":[null,null,21270,13939],"outstandingDowntime":[false,false,true,true]}},{"ix":188,"action":{"kind":"Deliver","chain":"provider","numPackets":1},"partialState":{"h":14,"t":84,"tokens":[28165,8601,21270,20702],"delegation":[27165,7601,20270,19702],"delegatorTokens":9999999891164,"jailed":[1000000000000023,null,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":189,"action":{"kind":"Deliver","chain":"provider","numPackets":6},"partialState":{"h":14,"t":84,"tokens":[28165,8601,21270,20702],"delegation":[27165,7601,20270,19702],"delegatorTokens":9999999891164,"jailed":[1000000000000023,null,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":190,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":191,"action":{"kind":"Undelegate","val":1,"amt":2346},"partialState":{"h":14,"t":84,"tokens":[28165,6255,21270,20702],"delegation":[27165,5255,20270,19702],"delegatorTokens":9999999891164}},{"ix":192,"action":{"kind":"Delegate","val":2,"amt":2708},"partialState":{"h":14,"t":84,"tokens":[28165,6255,23978,20702],"delegation":[27165,5255,22978,19702],"delegatorTokens":9999999888456}},{"ix":193,"action":{"kind":"Delegate","val":1,"amt":3291},"partialState":{"h":14,"t":84,"tokens":[28165,9546,23978,20702],"delegation":[27165,8546,22978,19702],"delegatorTokens":9999999885165}},{"ix":194,"action":{"kind":"Delegate","val":3,"amt":4394},"partialState":{"h":14,"t":84,"tokens":[28165,9546,23978,25096],"delegation":[27165,8546,22978,24096],"delegatorTokens":9999999880771}},{"ix":195,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":196,"action":{"kind":"Undelegate","val":2,"amt":1143},"partialState":{"h":14,"t":84,"tokens":[28165,9546,22835,25096],"delegation":[27165,8546,21835,24096],"delegatorTokens":9999999880771}},{"ix":197,"action":{"kind":"Undelegate","val":1,"amt":1641},"partialState":{"h":14,"t":84,"tokens":[28165,7905,22835,25096],"delegation":[27165,6905,21835,24096],"delegatorTokens":9999999880771}},{"ix":198,"action":{"kind":"Deliver","chain":"provider","numPackets":6},"partialState":{"h":14,"t":84,"tokens":[28165,7905,22835,25096],"delegation":[27165,6905,21835,24096],"delegatorTokens":9999999880771,"jailed":[1000000000000023,null,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":199,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":21,"t":126,"consumerPower":[null,null,21270,13939],"outstandingDowntime":[false,false,true,true]}}],"events":["insufficient_shares","send_vsc_without_downtime_ack","send_double_sign_slash_request","send_downtime_slash_request","send_downtime_slash_request","consumer_update_val","consumer_update_val","send_double_sign_slash_request","send_vsc_without_downtime_ack","receive_double_sign_slash_request","receive_downtime_slash_request","jail","receive_slash_request_unbonded","send_downtime_slash_request","send_vsc_with_downtime_ack","consumer_update_val","consumer_update_val","send_vsc_without_downtime_ack","receive_double_sign_slash_request","receive_slash_request_unbonded","send_vsc_without_downtime_ack","receive_downtime_slash_ack","send_vsc_not_because_change","send_vsc_without_downtime_ack","consumer_del_val","consumer_add_val","insufficient_shares","consumer_update_val","consumer_update_val","insufficient_shares","insufficient_shares","more_than_one_third_val_power_change","send_vsc_without_downtime_ack","insufficient_shares","consumer_send_maturation","send_vsc_without_downtime_ack","consumer_del_val","consumer_update_val","consumer_add_val","consumer_send_maturation","send_vsc_without_downtime_ack","consumer_send_maturation","consumer_send_maturation","consumer_send_maturation","consumer_update_val","consumer_update_val","some_undels_expired_but_not_completed","complete_undel_immediate","set_unval_hold_false","send_vsc_without_downtime_ack"]},{"meta":{"commit":"7ffd0c04e4205cbc9caf212abfe6c59ee43153bf"},"constants":{"P":"provider","C":"consumer","UNBONDING_SECONDS_P":70,"UNBONDING_SECONDS_C":50,"TRUSTING_SECONDS":49,"NUM_VALIDATORS":4,"MAX_VALIDATORS":2,"SLASH_DOUBLESIGN":0,"SLASH_DOWNTIME":0,"JAIL_SECONDS":999999999999999,"BLOCK_SECONDS":6,"INITIAL_DELEGATOR_TOKENS":10000000000000,"DELEGATE_AMT_MIN":1000,"DELEGATE_AMT_MAX":5000,"UNDELEGATE_AMT_MIN":1000,"UNDELEGATE_AMT_MAX":5000,"ISDOWNTIME_PROBABILITY":0.5,"MAX_NUM_PACKETS_FOR_DELIVER":6},"actions":[{"ix":0,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":1,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":2,"t":12,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":2,"action":{"kind":"ConsumerSlash","val":2,"infractionHeight":1,"isDowntime":false},"partialState":{"h":2,"t":12,"outstandingDowntime":[false,false,false,false]}},{"ix":3,"action":{"kind":"Undelegate","val":2,"amt":4535},"partialState":{"h":1,"t":6,"tokens":[5000,4000,3000,2000],"delegation":[4000,3000,2000,1000],"delegatorTokens":10000000000000}},{"ix":4,"action":{"kind":"Delegate","val":1,"amt":1750},"partialState":{"h":1,"t":6,"tokens":[5000,5750,3000,2000],"delegation":[4000,4750,2000,1000],"delegatorTokens":9999999998250}},{"ix":5,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":6,"action":{"kind":"Delegate","val":0,"amt":4385},"partialState":{"h":1,"t":6,"tokens":[9385,5750,3000,2000],"delegation":[8385,4750,2000,1000],"delegatorTokens":9999999993865}},{"ix":7,"action":{"kind":"ConsumerSlash","val":2,"infractionHeight":1,"isDowntime":true},"partialState":{"h":2,"t":12,"outstandingDowntime":[false,false,true,false]}},{"ix":8,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":3,"t":18,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,false,true,false]}},{"ix":9,"action":{"kind":"Undelegate","val":2,"amt":3042},"partialState":{"h":1,"t":6,"tokens":[9385,5750,3000,2000],"delegation":[8385,4750,2000,1000],"delegatorTokens":9999999993865}},{"ix":10,"action":{"kind":"Deliver","chain":"consumer","numPackets":3},"partialState":{"h":3,"t":18,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,false,true,false]}},{"ix":11,"action":{"kind":"Deliver","chain":"consumer","numPackets":6},"partialState":{"h":3,"t":18,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,false,true,false]}},{"ix":12,"action":{"kind":"ConsumerSlash","val":3,"infractionHeight":0,"isDowntime":true},"partialState":{"h":3,"t":18,"outstandingDowntime":[false,false,true,true]}},{"ix":13,"action":{"kind":"Undelegate","val":0,"amt":3096},"partialState":{"h":1,"t":6,"tokens":[6289,5750,3000,2000],"delegation":[5289,4750,2000,1000],"delegatorTokens":9999999993865}},{"ix":14,"action":{"kind":"Deliver","chain":"provider","numPackets":6},"partialState":{"h":1,"t":6,"tokens":[6289,5750,3000,2000],"delegation":[5289,4750,2000,1000],"delegatorTokens":9999999993865,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":15,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":16,"action":{"kind":"Undelegate","val":1,"amt":3956},"partialState":{"h":1,"t":6,"tokens":[6289,1794,3000,2000],"delegation":[5289,794,2000,1000],"delegatorTokens":9999999993865}},{"ix":17,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":18,"action":{"kind":"ConsumerSlash","val":1,"infractionHeight":2,"isDowntime":true},"partialState":{"h":3,"t":18,"outstandingDowntime":[false,true,true,true]}},{"ix":19,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":20,"action":{"kind":"Delegate","val":0,"amt":1881},"partialState":{"h":1,"t":6,"tokens":[8170,1794,3000,2000],"delegation":[7170,794,2000,1000],"delegatorTokens":9999999991984}},{"ix":21,"action":{"kind":"Deliver","chain":"provider","numPackets":4},"partialState":{"h":1,"t":6,"tokens":[8170,1794,3000,2000],"delegation":[7170,794,2000,1000],"delegatorTokens":9999999991984,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":22,"action":{"kind":"Undelegate","val":2,"amt":2237},"partialState":{"h":1,"t":6,"tokens":[8170,1794,3000,2000],"delegation":[7170,794,2000,1000],"delegatorTokens":9999999991984}},{"ix":23,"action":{"kind":"Undelegate","val":2,"amt":2168},"partialState":{"h":1,"t":6,"tokens":[8170,1794,3000,2000],"delegation":[7170,794,2000,1000],"delegatorTokens":9999999991984}},{"ix":24,"action":{"kind":"Delegate","val":1,"amt":3569},"partialState":{"h":1,"t":6,"tokens":[8170,5363,3000,2000],"delegation":[7170,4363,2000,1000],"delegatorTokens":9999999988415}},{"ix":25,"action":{"kind":"Deliver","chain":"provider","numPackets":5},"partialState":{"h":1,"t":6,"tokens":[8170,5363,3000,2000],"delegation":[7170,4363,2000,1000],"delegatorTokens":9999999988415,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":26,"action":{"kind":"Delegate","val":1,"amt":4649},"partialState":{"h":1,"t":6,"tokens":[8170,10012,3000,2000],"delegation":[7170,9012,2000,1000],"delegatorTokens":9999999983766}},{"ix":27,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":28,"action":{"kind":"Deliver","chain":"consumer","numPackets":6},"partialState":{"h":3,"t":18,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,true,true,true]}},{"ix":29,"action":{"kind":"Delegate","val":2,"amt":4824},"partialState":{"h":1,"t":6,"tokens":[8170,10012,7824,2000],"delegation":[7170,9012,6824,1000],"delegatorTokens":9999999978942}},{"ix":30,"action":{"kind":"Undelegate","val":0,"amt":1114},"partialState":{"h":1,"t":6,"tokens":[7056,10012,7824,2000],"delegation":[6056,9012,6824,1000],"delegatorTokens":9999999978942}},{"ix":31,"action":{"kind":"Undelegate","val":3,"amt":3003},"partialState":{"h":1,"t":6,"tokens":[7056,10012,7824,2000],"delegation":[6056,9012,6824,1000],"delegatorTokens":9999999978942}},{"ix":32,"action":{"kind":"Undelegate","val":2,"amt":4534},"partialState":{"h":1,"t":6,"tokens":[7056,10012,3290,2000],"delegation":[6056,9012,2290,1000],"delegatorTokens":9999999978942}},{"ix":33,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":34,"action":{"kind":"Delegate","val":2,"amt":2856},"partialState":{"h":1,"t":6,"tokens":[7056,10012,6146,2000],"delegation":[6056,9012,5146,1000],"delegatorTokens":9999999976086}},{"ix":35,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":36,"action":{"kind":"Deliver","chain":"provider","numPackets":2},"partialState":{"h":1,"t":6,"tokens":[7056,10012,6146,2000],"delegation":[6056,9012,5146,1000],"delegatorTokens":9999999976086,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":37,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":4,"t":24,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,true,true,true]}},{"ix":38,"action":{"kind":"Deliver","chain":"provider","numPackets":2},"partialState":{"h":1,"t":6,"tokens":[7056,10012,6146,2000],"delegation":[6056,9012,5146,1000],"delegatorTokens":9999999976086,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":39,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":40,"action":{"kind":"Delegate","val":1,"amt":4654},"partialState":{"h":1,"t":6,"tokens":[7056,14666,6146,2000],"delegation":[6056,13666,5146,1000],"delegatorTokens":9999999971432}},{"ix":41,"action":{"kind":"Deliver","chain":"provider","numPackets":2},"partialState":{"h":1,"t":6,"tokens":[7056,14666,6146,2000],"delegation":[6056,13666,5146,1000],"delegatorTokens":9999999971432,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":42,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":43,"action":{"kind":"Undelegate","val":1,"amt":1524},"partialState":{"h":1,"t":6,"tokens":[7056,13142,6146,2000],"delegation":[6056,12142,5146,1000],"delegatorTokens":9999999971432}},{"ix":44,"action":{"kind":"Deliver","chain":"consumer","numPackets":2},"partialState":{"h":4,"t":24,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,true,true,true]}},{"ix":45,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":2,"t":12,"tokens":[7056,13142,6146,2000],"delegation":[6056,12142,5146,1000],"delegatorTokens":9999999971432,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":46,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":47,"action":{"kind":"Delegate","val":1,"amt":4926},"partialState":{"h":2,"t":12,"tokens":[7056,18068,6146,2000],"delegation":[6056,17068,5146,1000],"delegatorTokens":9999999966506}},{"ix":48,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":3,"t":18,"tokens":[7056,18068,6146,2000],"delegation":[6056,17068,5146,1000],"delegatorTokens":9999999966506,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":49,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":50,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":51,"action":{"kind":"Delegate","val":2,"amt":3469},"partialState":{"h":3,"t":18,"tokens":[7056,18068,9615,2000],"delegation":[6056,17068,8615,1000],"delegatorTokens":9999999963037}},{"ix":52,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":53,"action":{"kind":"Delegate","val":3,"amt":2941},"partialState":{"h":3,"t":18,"tokens":[7056,18068,9615,4941],"delegation":[6056,17068,8615,3941],"delegatorTokens":9999999960096}},{"ix":54,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":5,"t":30,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,true,true,true]}},{"ix":55,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":4,"t":24,"tokens":[7056,18068,9615,4941],"delegation":[6056,17068,8615,3941],"delegatorTokens":9999999960096,"jailed":[null,null,null,null],"status":["unbonding","bonded","bonded","unbonded"]}},{"ix":56,"action":{"kind":"Delegate","val":2,"amt":3510},"partialState":{"h":4,"t":24,"tokens":[7056,18068,13125,4941],"delegation":[6056,17068,12125,3941],"delegatorTokens":9999999956586}},{"ix":57,"action":{"kind":"Deliver","chain":"provider","numPackets":1},"partialState":{"h":4,"t":24,"tokens":[7056,18068,13125,4941],"delegation":[6056,17068,12125,3941],"delegatorTokens":9999999956586,"jailed":[null,null,null,null],"status":["unbonding","bonded","bonded","unbonded"]}},{"ix":58,"action":{"kind":"Undelegate","val":3,"amt":4128},"partialState":{"h":4,"t":24,"tokens":[7056,18068,13125,4941],"delegation":[6056,17068,12125,3941],"delegatorTokens":9999999956586}},{"ix":59,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":6,"t":36,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,true,true,true]}},{"ix":60,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":5,"t":30,"tokens":[7056,18068,13125,4941],"delegation":[6056,17068,12125,3941],"delegatorTokens":9999999956586,"jailed":[null,null,null,null],"status":["unbonding","bonded","bonded","unbonded"]}},{"ix":61,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":62,"action":{"kind":"Delegate","val":2,"amt":1838},"partialState":{"h":5,"t":30,"tokens":[7056,18068,14963,4941],"delegation":[6056,17068,13963,3941],"delegatorTokens":9999999954748}},{"ix":63,"action":{"kind":"Deliver","chain":"provider","numPackets":5},"partialState":{"h":5,"t":30,"tokens":[7056,18068,14963,4941],"delegation":[6056,17068,13963,3941],"delegatorTokens":9999999954748,"jailed":[null,null,null,null],"status":["unbonding","bonded","bonded","unbonded"]}},{"ix":64,"action":{"kind":"Undelegate","val":3,"amt":3442},"partialState":{"h":5,"t":30,"tokens":[7056,18068,14963,1499],"delegation":[6056,17068,13963,499],"delegatorTokens":9999999954748}},{"ix":65,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":66,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":67,"action":{"kind":"Deliver","chain":"provider","numPackets":1},"partialState":{"h":5,"t":30,"tokens":[7056,18068,14963,1499],"delegation":[6056,17068,13963,499],"delegatorTokens":9999999954748,"jailed":[null,null,null,null],"status":["unbonding","bonded","bonded","unbonded"]}},{"ix":68,"action":{"kind":"Undelegate","val":0,"amt":2143},"partialState":{"h":5,"t":30,"tokens":[4913,18068,14963,1499],"delegation":[3913,17068,13963,499],"delegatorTokens":9999999954748}},{"ix":69,"action":{"kind":"Deliver","chain":"provider","numPackets":6},"partialState":{"h":5,"t":30,"tokens":[4913,18068,14963,1499],"delegation":[3913,17068,13963,499],"delegatorTokens":9999999954748,"jailed":[null,null,null,null],"status":["unbonding","bonded","bonded","unbonded"]}},{"ix":70,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":7,"t":42,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,true,true,true]}},{"ix":71,"action":{"kind":"Deliver","chain":"provider","numPackets":4},"partialState":{"h":5,"t":30,"tokens":[4913,18068,14963,1499],"delegation":[3913,17068,13963,499],"delegatorTokens":9999999954748,"jailed":[null,null,null,null],"status":["unbonding","bonded","bonded","unbonded"]}},{"ix":72,"action":{"kind":"Undelegate","val":0,"amt":2552},"partialState":{"h":5,"t":30,"tokens":[2361,18068,14963,1499],"delegation":[1361,17068,13963,499],"delegatorTokens":9999999954748}},{"ix":73,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":8,"t":48,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,true,true,true]}},{"ix":74,"action":{"kind":"Undelegate","val":1,"amt":4663},"partialState":{"h":5,"t":30,"tokens":[2361,13405,14963,1499],"delegation":[1361,12405,13963,499],"delegatorTokens":9999999954748}},{"ix":75,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":6,"t":36,"tokens":[2361,13405,14963,1499],"delegation":[1361,12405,13963,499],"delegatorTokens":9999999954748,"jailed":[null,1000000000000029,null,null],"status":["unbonding","bonded","bonded","unbonded"]}},{"ix":76,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":9,"t":54,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,true,true,true]}},{"ix":77,"action":{"kind":"Delegate","val":1,"amt":2706},"partialState":{"h":6,"t":36,"tokens":[2361,16111,14963,1499],"delegation":[1361,15111,13963,499],"delegatorTokens":9999999952042}},{"ix":78,"action":{"kind":"Undelegate","val":2,"amt":2148},"partialState":{"h":6,"t":36,"tokens":[2361,16111,12815,1499],"delegation":[1361,15111,11815,499],"delegatorTokens":9999999952042}},{"ix":79,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":80,"action":{"kind":"Delegate","val":0,"amt":3403},"partialState":{"h":6,"t":36,"tokens":[5764,16111,12815,1499],"delegation":[4764,15111,11815,499],"delegatorTokens":9999999948639}},{"ix":81,"action":{"kind":"Delegate","val":2,"amt":4429},"partialState":{"h":6,"t":36,"tokens":[5764,16111,17244,1499],"delegation":[4764,15111,16244,499],"delegatorTokens":9999999944210}},{"ix":82,"action":{"kind":"Deliver","chain":"consumer","numPackets":2},"partialState":{"h":9,"t":54,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,true,true,true]}},{"ix":83,"action":{"kind":"Undelegate","val":1,"amt":4263},"partialState":{"h":6,"t":36,"tokens":[5764,11848,17244,1499],"delegation":[4764,10848,16244,499],"delegatorTokens":9999999944210}},{"ix":84,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":7,"t":42,"tokens":[5764,11848,17244,1499],"delegation":[4764,10848,16244,499],"delegatorTokens":9999999944210,"jailed":[null,1000000000000029,null,null],"status":["bonded","unbonding","bonded","unbonded"]}},{"ix":85,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":8,"t":48,"tokens":[5764,11848,17244,1499],"delegation":[4764,10848,16244,499],"delegatorTokens":9999999944210,"jailed":[null,1000000000000029,null,null],"status":["bonded","unbonding","bonded","unbonded"]}},{"ix":86,"action":{"kind":"Deliver","chain":"provider","numPackets":3},"partialState":{"h":8,"t":48,"tokens":[5764,11848,17244,1499],"delegation":[4764,10848,16244,499],"delegatorTokens":9999999944210,"jailed":[null,1000000000000029,null,null],"status":["bonded","unbonding","bonded","unbonded"]}},{"ix":87,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":10,"t":60,"consumerPower":[7056,18068,null,null],"outstandingDowntime":[false,true,true,true]}},{"ix":88,"action":{"kind":"Delegate","val":0,"amt":3572},"partialState":{"h":8,"t":48,"tokens":[9336,11848,17244,1499],"delegation":[8336,10848,16244,499],"delegatorTokens":9999999940638}},{"ix":89,"action":{"kind":"Delegate","val":1,"amt":1187},"partialState":{"h":8,"t":48,"tokens":[9336,13035,17244,1499],"delegation":[8336,12035,16244,499],"delegatorTokens":9999999939451}},{"ix":90,"action":{"kind":"Undelegate","val":3,"amt":3215},"partialState":{"h":8,"t":48,"tokens":[9336,13035,17244,1499],"delegation":[8336,12035,16244,499],"delegatorTokens":9999999939451}},{"ix":91,"action":{"kind":"Undelegate","val":0,"amt":3298},"partialState":{"h":8,"t":48,"tokens":[6038,13035,17244,1499],"delegation":[5038,12035,16244,499],"delegatorTokens":9999999939451}},{"ix":92,"action":{"kind":"Deliver","chain":"consumer","numPackets":6},"partialState":{"h":10,"t":60,"consumerPower":[7056,18068,null,null],"outstandingDowntime":[false,false,true,true]}},{"ix":93,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":94,"action":{"kind":"Undelegate","val":2,"amt":2344},"partialState":{"h":8,"t":48,"tokens":[6038,13035,14900,1499],"delegation":[5038,12035,13900,499],"delegatorTokens":9999999939451}},{"ix":95,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":11,"t":66,"consumerPower":[5764,null,17244,null],"outstandingDowntime":[false,false,true,true]}},{"ix":96,"action":{"kind":"Undelegate","val":2,"amt":4657},"partialState":{"h":8,"t":48,"tokens":[6038,13035,10243,1499],"delegation":[5038,12035,9243,499],"delegatorTokens":9999999939451}},{"ix":97,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":98,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":9,"t":54,"tokens":[6038,13035,10243,1499],"delegation":[5038,12035,9243,499],"delegatorTokens":9999999939451,"jailed":[null,1000000000000029,null,null],"status":["bonded","unbonding","bonded","unbonded"]}},{"ix":99,"action":{"kind":"Deliver","chain":"consumer","numPackets":6},"partialState":{"h":11,"t":66,"consumerPower":[5764,null,17244,null],"outstandingDowntime":[false,false,true,true]}},{"ix":100,"action":{"kind":"Undelegate","val":2,"amt":2421},"partialState":{"h":9,"t":54,"tokens":[6038,13035,7822,1499],"delegation":[5038,12035,6822,499],"delegatorTokens":9999999939451}},{"ix":101,"action":{"kind":"Delegate","val":3,"amt":4681},"partialState":{"h":9,"t":54,"tokens":[6038,13035,7822,6180],"delegation":[5038,12035,6822,5180],"delegatorTokens":9999999934770}},{"ix":102,"action":{"kind":"Deliver","chain":"provider","numPackets":1},"partialState":{"h":9,"t":54,"tokens":[6038,13035,7822,6180],"delegation":[5038,12035,6822,5180],"delegatorTokens":9999999934770,"jailed":[null,1000000000000029,null,null],"status":["bonded","unbonding","bonded","unbonded"]}},{"ix":103,"action":{"kind":"Undelegate","val":1,"amt":4382},"partialState":{"h":9,"t":54,"tokens":[6038,8653,7822,6180],"delegation":[5038,7653,6822,5180],"delegatorTokens":9999999934770}},{"ix":104,"action":{"kind":"Delegate","val":3,"amt":4616},"partialState":{"h":9,"t":54,"tokens":[6038,8653,7822,10796],"delegation":[5038,7653,6822,9796],"delegatorTokens":9999999930154}},{"ix":105,"action":{"kind":"Delegate","val":3,"amt":3509},"partialState":{"h":9,"t":54,"tokens":[6038,8653,7822,14305],"delegation":[5038,7653,6822,13305],"delegatorTokens":9999999926645}},{"ix":106,"action":{"kind":"Deliver","chain":"provider","numPackets":5},"partialState":{"h":9,"t":54,"tokens":[6038,8653,7822,14305],"delegation":[5038,7653,6822,13305],"delegatorTokens":9999999926645,"jailed":[null,1000000000000029,null,null],"status":["bonded","unbonding","bonded","unbonded"]}},{"ix":107,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":10,"t":60,"tokens":[6038,8653,7822,14305],"delegation":[5038,7653,6822,13305],"delegatorTokens":9999999926645,"jailed":[null,1000000000000029,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":108,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":12,"t":72,"consumerPower":[5764,null,17244,null],"outstandingDowntime":[false,false,true,true]}},{"ix":109,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":110,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":11,"t":66,"tokens":[6038,8653,7822,14305],"delegation":[5038,7653,6822,13305],"delegatorTokens":9999999926645,"jailed":[null,1000000000000029,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":111,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":12,"t":72,"tokens":[6038,8653,7822,14305],"delegation":[5038,7653,6822,13305],"delegatorTokens":9999999926645,"jailed":[null,1000000000000029,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":112,"action":{"kind":"Delegate","val":0,"amt":1985},"partialState":{"h":12,"t":72,"tokens":[8023,8653,7822,14305],"delegation":[7023,7653,6822,13305],"delegatorTokens":9999999924660}},{"ix":113,"action":{"kind":"Undelegate","val":1,"amt":4263},"partialState":{"h":12,"t":72,"tokens":[8023,4390,7822,14305],"delegation":[7023,3390,6822,13305],"delegatorTokens":9999999924660}},{"ix":114,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":13,"t":78,"tokens":[8023,4390,7822,14305],"delegation":[7023,3390,6822,13305],"delegatorTokens":9999999924660,"jailed":[null,1000000000000029,null,null],"status":["bonded","unbonding","unbonding","bonded"]}},{"ix":115,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":116,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":14,"t":84,"tokens":[8023,4390,7822,14305],"delegation":[7023,3390,6822,13305],"delegatorTokens":9999999924660,"jailed":[null,1000000000000029,null,null],"status":["bonded","unbonding","unbonding","bonded"]}},{"ix":117,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":13,"t":78,"consumerPower":[5764,null,17244,null],"outstandingDowntime":[false,false,true,true]}},{"ix":118,"action":{"kind":"Undelegate","val":1,"amt":1537},"partialState":{"h":14,"t":84,"tokens":[8023,2853,7822,14305],"delegation":[7023,1853,6822,13305],"delegatorTokens":9999999924660}},{"ix":119,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":14,"t":84,"consumerPower":[5764,null,17244,null],"outstandingDowntime":[false,false,true,true]}},{"ix":120,"action":{"kind":"Delegate","val":2,"amt":4553},"partialState":{"h":14,"t":84,"tokens":[8023,2853,12375,14305],"delegation":[7023,1853,11375,13305],"delegatorTokens":9999999920107}},{"ix":121,"action":{"kind":"Deliver","chain":"consumer","numPackets":4},"partialState":{"h":14,"t":84,"consumerPower":[5764,null,17244,null],"outstandingDowntime":[false,false,true,true]}},{"ix":122,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":123,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":124,"action":{"kind":"Delegate","val":2,"amt":3651},"partialState":{"h":14,"t":84,"tokens":[8023,2853,16026,14305],"delegation":[7023,1853,15026,13305],"delegatorTokens":9999999916456}},{"ix":125,"action":{"kind":"Deliver","chain":"consumer","numPackets":1},"partialState":{"h":14,"t":84,"consumerPower":[5764,null,17244,null],"outstandingDowntime":[false,false,true,true]}},{"ix":126,"action":{"kind":"Deliver","chain":"provider","numPackets":6},"partialState":{"h":14,"t":84,"tokens":[8023,2853,16026,14305],"delegation":[7023,1853,15026,13305],"delegatorTokens":9999999916456,"jailed":[null,1000000000000029,null,null],"status":["bonded","unbonding","unbonding","bonded"]}},{"ix":127,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":15,"t":90,"tokens":[8023,2853,16026,14305],"delegation":[7023,1853,15026,13305],"delegatorTokens":9999999916456,"jailed":[null,1000000000000029,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":128,"action":{"kind":"Undelegate","val":1,"amt":3975},"partialState":{"h":15,"t":90,"tokens":[8023,2853,16026,14305],"delegation":[7023,1853,15026,13305],"delegatorTokens":9999999916456}},{"ix":129,"action":{"kind":"Delegate","val":2,"amt":2943},"partialState":{"h":15,"t":90,"tokens":[8023,2853,18969,14305],"delegation":[7023,1853,17969,13305],"delegatorTokens":9999999913513}},{"ix":130,"action":{"kind":"Deliver","chain":"provider","numPackets":1},"partialState":{"h":15,"t":90,"tokens":[8023,2853,18969,14305],"delegation":[7023,1853,17969,13305],"delegatorTokens":9999999913513,"jailed":[null,1000000000000029,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":131,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":16,"t":96,"tokens":[8023,2853,18969,14305],"delegation":[7023,1853,17969,13305],"delegatorTokens":9999999913513,"jailed":[null,1000000000000029,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":132,"action":{"kind":"Undelegate","val":3,"amt":2913},"partialState":{"h":16,"t":96,"tokens":[8023,2853,18969,11392],"delegation":[7023,1853,17969,10392],"delegatorTokens":9999999913513}},{"ix":133,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":15,"t":90,"consumerPower":[8023,null,null,14305],"outstandingDowntime":[false,false,true,true]}},{"ix":134,"action":{"kind":"Deliver","chain":"consumer","numPackets":3},"partialState":{"h":15,"t":90,"consumerPower":[8023,null,null,14305],"outstandingDowntime":[false,false,true,true]}},{"ix":135,"action":{"kind":"Delegate","val":3,"amt":3603},"partialState":{"h":16,"t":96,"tokens":[8023,2853,18969,14995],"delegation":[7023,1853,17969,13995],"delegatorTokens":9999999909910}},{"ix":136,"action":{"kind":"Undelegate","val":0,"amt":1728},"partialState":{"h":16,"t":96,"tokens":[6295,2853,18969,14995],"delegation":[5295,1853,17969,13995],"delegatorTokens":9999999909910}},{"ix":137,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":16,"t":96,"consumerPower":[null,null,16026,14305],"outstandingDowntime":[false,false,true,true]}},{"ix":138,"action":{"kind":"Delegate","val":2,"amt":4995},"partialState":{"h":16,"t":96,"tokens":[6295,2853,23964,14995],"delegation":[5295,1853,22964,13995],"delegatorTokens":9999999904915}},{"ix":139,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":17,"t":102,"tokens":[6295,2853,23964,14995],"delegation":[5295,1853,22964,13995],"delegatorTokens":9999999904915,"jailed":[null,1000000000000029,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":140,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":17,"t":102,"consumerPower":[null,null,16026,14305],"outstandingDowntime":[false,false,true,true]}},{"ix":141,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":18,"t":108,"tokens":[6295,2853,23964,14995],"delegation":[5295,1853,22964,13995],"delegatorTokens":9999999904915,"jailed":[null,1000000000000029,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":142,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":19,"t":114,"tokens":[6295,2853,23964,14995],"delegation":[5295,1853,22964,13995],"delegatorTokens":9999999904915,"jailed":[null,1000000000000029,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":143,"action":{"kind":"Deliver","chain":"consumer","numPackets":5},"partialState":{"h":17,"t":102,"consumerPower":[null,null,16026,14305],"outstandingDowntime":[false,false,true,true]}},{"ix":144,"action":{"kind":"Delegate","val":2,"amt":1881},"partialState":{"h":19,"t":114,"tokens":[6295,2853,25845,14995],"delegation":[5295,1853,24845,13995],"delegatorTokens":9999999903034}},{"ix":145,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":20,"t":120,"tokens":[6295,2853,25845,14995],"delegation":[5295,1853,24845,13995],"delegatorTokens":9999999903034,"jailed":[null,1000000000000029,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":146,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":147,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":148,"action":{"kind":"Deliver","chain":"consumer","numPackets":4},"partialState":{"h":17,"t":102,"consumerPower":[null,null,16026,14305],"outstandingDowntime":[false,false,true,true]}},{"ix":149,"action":{"kind":"Undelegate","val":2,"amt":1023},"partialState":{"h":20,"t":120,"tokens":[6295,2853,24822,14995],"delegation":[5295,1853,23822,13995],"delegatorTokens":9999999903034}},{"ix":150,"action":{"kind":"Deliver","chain":"consumer","numPackets":2},"partialState":{"h":17,"t":102,"consumerPower":[null,null,16026,14305],"outstandingDowntime":[false,false,true,true]}},{"ix":151,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":152,"action":{"kind":"Deliver","chain":"provider","numPackets":5},"partialState":{"h":20,"t":120,"tokens":[6295,2853,24822,14995],"delegation":[5295,1853,23822,13995],"delegatorTokens":9999999903034,"jailed":[null,1000000000000029,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":153,"action":{"kind":"Undelegate","val":2,"amt":3393},"partialState":{"h":20,"t":120,"tokens":[6295,2853,21429,14995],"delegation":[5295,1853,20429,13995],"delegatorTokens":9999999903034}},{"ix":154,"action":{"kind":"Deliver","chain":"provider","numPackets":5},"partialState":{"h":20,"t":120,"tokens":[6295,2853,21429,14995],"delegation":[5295,1853,20429,13995],"delegatorTokens":9999999903034,"jailed":[null,1000000000000029,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":155,"action":{"kind":"Undelegate","val":1,"amt":2033},"partialState":{"h":20,"t":120,"tokens":[6295,2853,21429,14995],"delegation":[5295,1853,20429,13995],"delegatorTokens":9999999903034}},{"ix":156,"action":{"kind":"Undelegate","val":1,"amt":3995},"partialState":{"h":20,"t":120,"tokens":[6295,2853,21429,14995],"delegation":[5295,1853,20429,13995],"delegatorTokens":9999999903034}},{"ix":157,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":158,"action":{"kind":"Deliver","chain":"provider","numPackets":1},"partialState":{"h":20,"t":120,"tokens":[6295,2853,21429,14995],"delegation":[5295,1853,20429,13995],"delegatorTokens":9999999903034,"jailed":[null,1000000000000029,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":159,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":18,"t":108,"consumerPower":[null,null,23964,14995],"outstandingDowntime":[false,false,true,true]}},{"ix":160,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":161,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":19,"t":114,"consumerPower":[null,null,23964,14995],"outstandingDowntime":[false,false,true,true]}},{"ix":162,"action":{"kind":"Undelegate","val":3,"amt":1329},"partialState":{"h":20,"t":120,"tokens":[6295,2853,21429,13666],"delegation":[5295,1853,20429,12666],"delegatorTokens":9999999903034}},{"ix":163,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":164,"action":{"kind":"Delegate","val":2,"amt":2329},"partialState":{"h":20,"t":120,"tokens":[6295,2853,23758,13666],"delegation":[5295,1853,22758,12666],"delegatorTokens":9999999900705}},{"ix":165,"action":{"kind":"Deliver","chain":"provider","numPackets":1},"partialState":{"h":20,"t":120,"tokens":[6295,2853,23758,13666],"delegation":[5295,1853,22758,12666],"delegatorTokens":9999999900705,"jailed":[null,1000000000000029,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":166,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":167,"action":{"kind":"Undelegate","val":1,"amt":2079},"partialState":{"h":20,"t":120,"tokens":[6295,2853,23758,13666],"delegation":[5295,1853,22758,12666],"delegatorTokens":9999999900705}},{"ix":168,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":20,"t":120,"consumerPower":[null,null,23964,14995],"outstandingDowntime":[false,false,true,true]}},{"ix":169,"action":{"kind":"Delegate","val":2,"amt":1693},"partialState":{"h":20,"t":120,"tokens":[6295,2853,25451,13666],"delegation":[5295,1853,24451,12666],"delegatorTokens":9999999899012}},{"ix":170,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":171,"action":{"kind":"Delegate","val":2,"amt":1837},"partialState":{"h":20,"t":120,"tokens":[6295,2853,27288,13666],"delegation":[5295,1853,26288,12666],"delegatorTokens":9999999897175}},{"ix":172,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":21,"t":126,"consumerPower":[null,null,23964,14995],"outstandingDowntime":[false,false,true,true]}},{"ix":173,"action":{"kind":"Undelegate","val":1,"amt":1651},"partialState":{"h":20,"t":120,"tokens":[6295,1202,27288,13666],"delegation":[5295,202,26288,12666],"delegatorTokens":9999999897175}},{"ix":174,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":21,"t":126,"tokens":[6295,1202,27288,13666],"delegation":[5295,202,26288,12666],"delegatorTokens":9999999897175,"jailed":[null,1000000000000029,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":175,"action":{"kind":"Deliver","chain":"provider","numPackets":2},"partialState":{"h":21,"t":126,"tokens":[6295,1202,27288,13666],"delegation":[5295,202,26288,12666],"delegatorTokens":9999999897175,"jailed":[null,1000000000000029,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":176,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":22,"t":132,"tokens":[6295,1202,27288,13666],"delegation":[5295,202,26288,12666],"delegatorTokens":9999999911399,"jailed":[null,1000000000000029,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":177,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":178,"action":{"kind":"Delegate","val":0,"amt":3420},"partialState":{"h":22,"t":132,"tokens":[9715,1202,27288,13666],"delegation":[8715,202,26288,12666],"delegatorTokens":9999999907979}},{"ix":179,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":180,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":181,"action":{"kind":"Delegate","val":0,"amt":1287},"partialState":{"h":22,"t":132,"tokens":[11002,1202,27288,13666],"delegation":[10002,202,26288,12666],"delegatorTokens":9999999906692}},{"ix":182,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":22,"t":132,"consumerPower":[null,null,23964,14995],"outstandingDowntime":[false,false,true,true]}},{"ix":183,"action":{"kind":"Deliver","chain":"provider","numPackets":1},"partialState":{"h":22,"t":132,"tokens":[11002,1202,27288,13666],"delegation":[10002,202,26288,12666],"delegatorTokens":9999999906692,"jailed":[null,1000000000000029,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":184,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":185,"action":{"kind":"Deliver","chain":"consumer","numPackets":6},"partialState":{"h":22,"t":132,"consumerPower":[null,null,23964,14995],"outstandingDowntime":[false,false,true,true]}},{"ix":186,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":23,"t":138,"consumerPower":[null,null,27288,13666],"outstandingDowntime":[false,false,true,true]}},{"ix":187,"action":{"kind":"Delegate","val":1,"amt":1630},"partialState":{"h":22,"t":132,"tokens":[11002,2832,27288,13666],"delegation":[10002,1832,26288,12666],"delegatorTokens":9999999905062}},{"ix":188,"action":{"kind":"Delegate","val":1,"amt":3287},"partialState":{"h":22,"t":132,"tokens":[11002,6119,27288,13666],"delegation":[10002,5119,26288,12666],"delegatorTokens":9999999901775}},{"ix":189,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":190,"action":{"kind":"Deliver","chain":"provider","numPackets":6},"partialState":{"h":22,"t":132,"tokens":[11002,6119,27288,13666],"delegation":[10002,5119,26288,12666],"delegatorTokens":9999999901775,"jailed":[null,1000000000000029,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":191,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":23,"t":138,"tokens":[11002,6119,27288,13666],"delegation":[10002,5119,26288,12666],"delegatorTokens":9999999920986,"jailed":[null,1000000000000029,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":192,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":24,"t":144,"consumerPower":[null,null,27288,13666],"outstandingDowntime":[false,false,true,true]}},{"ix":193,"action":{"kind":"Undelegate","val":3,"amt":4365},"partialState":{"h":23,"t":138,"tokens":[11002,6119,27288,9301],"delegation":[10002,5119,26288,8301],"delegatorTokens":9999999920986}},{"ix":194,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":195,"action":{"kind":"Delegate","val":2,"amt":1457},"partialState":{"h":23,"t":138,"tokens":[11002,6119,28745,9301],"delegation":[10002,5119,27745,8301],"delegatorTokens":9999999919529}},{"ix":196,"action":{"kind":"Undelegate","val":1,"amt":2245},"partialState":{"h":23,"t":138,"tokens":[11002,3874,28745,9301],"delegation":[10002,2874,27745,8301],"delegatorTokens":9999999919529}},{"ix":197,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":198,"action":{"kind":"Delegate","val":2,"amt":4804},"partialState":{"h":23,"t":138,"tokens":[11002,3874,33549,9301],"delegation":[10002,2874,32549,8301],"delegatorTokens":9999999914725}},{"ix":199,"action":{"kind":"Deliver","chain":"provider","numPackets":5},"partialState":{"h":23,"t":138,"tokens":[11002,3874,33549,9301],"delegation":[10002,2874,32549,8301],"delegatorTokens":9999999914725,"jailed":[null,1000000000000029,null,null],"status":["unbonding","unbonding","bonded","bonded"]}}],"events":["send_double_sign_slash_request","insufficient_shares","send_downtime_slash_request","insufficient_shares","send_downtime_slash_request","send_downtime_slash_request","insufficient_shares","insufficient_shares","insufficient_shares","receive_double_sign_slash_request","receive_slash_request_unbonded","send_vsc_without_downtime_ack","send_vsc_without_downtime_ack","more_than_one_third_val_power_change","send_vsc_without_downtime_ack","insufficient_shares","receive_slash_request_unbonded","send_vsc_without_downtime_ack","receive_downtime_slash_request","jail","send_vsc_with_downtime_ack","rebond_unval","send_vsc_without_downtime_ack","consumer_update_val","consumer_update_val","insufficient_shares","receive_downtime_slash_ack","consumer_update_val","consumer_add_val","consumer_del_val","send_vsc_without_downtime_ack","more_than_one_third_val_power_change","send_vsc_without_downtime_ack","more_than_one_third_val_power_change","rebond_unval","send_vsc_without_downtime_ack","some_undels_expired_but_not_completed","more_than_one_third_val_power_change","rebond_unval","send_vsc_without_downtime_ack","insufficient_shares","send_vsc_without_downtime_ack","consumer_update_val","consumer_del_val","consumer_add_val","consumer_del_val","consumer_add_val","send_vsc_without_downtime_ack","some_undels_expired_but_not_completed","some_undels_expired_but_not_completed","send_vsc_without_downtime_ack","insufficient_shares","insufficient_shares","consumer_update_val","consumer_update_val","consumer_send_maturation","consumer_send_maturation","insufficient_shares","consumer_send_maturation","consumer_send_maturation","consumer_send_maturation","consumer_send_maturation","some_undels_expired_but_not_completed","send_vsc_without_downtime_ack","some_undels_expired_but_not_completed","complete_undel_immediate","complete_undel_immediate","complete_undel_immediate","complete_undel_immediate","complete_undel_immediate","consumer_update_val","consumer_update_val","complete_undel_immediate","complete_undel_immediate","complete_undel_immediate","complete_undel_immediate","complete_undel_immediate","complete_undel_immediate","set_unval_hold_false","consumer_send_maturation","consumer_send_maturation","consumer_send_maturation"]},{"meta":{"commit":"7ffd0c04e4205cbc9caf212abfe6c59ee43153bf"},"constants":{"P":"provider","C":"consumer","UNBONDING_SECONDS_P":70,"UNBONDING_SECONDS_C":50,"TRUSTING_SECONDS":49,"NUM_VALIDATORS":4,"MAX_VALIDATORS":2,"SLASH_DOUBLESIGN":0,"SLASH_DOWNTIME":0,"JAIL_SECONDS":999999999999999,"BLOCK_SECONDS":6,"INITIAL_DELEGATOR_TOKENS":10000000000000,"DELEGATE_AMT_MIN":1000,"DELEGATE_AMT_MAX":5000,"UNDELEGATE_AMT_MIN":1000,"UNDELEGATE_AMT_MAX":5000,"ISDOWNTIME_PROBABILITY":0.5,"MAX_NUM_PACKETS_FOR_DELIVER":6},"actions":[{"ix":0,"action":{"kind":"Undelegate","val":0,"amt":4895},"partialState":{"h":1,"t":6,"tokens":[5000,4000,3000,2000],"delegation":[4000,3000,2000,1000],"delegatorTokens":10000000000000}},{"ix":1,"action":{"kind":"ConsumerSlash","val":3,"infractionHeight":0,"isDowntime":true},"partialState":{"h":1,"t":6,"outstandingDowntime":[false,false,false,true]}},{"ix":2,"action":{"kind":"ConsumerSlash","val":2,"infractionHeight":0,"isDowntime":true},"partialState":{"h":1,"t":6,"outstandingDowntime":[false,false,true,true]}},{"ix":3,"action":{"kind":"Delegate","val":0,"amt":4978},"partialState":{"h":1,"t":6,"tokens":[9978,4000,3000,2000],"delegation":[8978,3000,2000,1000],"delegatorTokens":9999999995022}},{"ix":4,"action":{"kind":"Undelegate","val":2,"amt":1338},"partialState":{"h":1,"t":6,"tokens":[9978,4000,1662,2000],"delegation":[8978,3000,662,1000],"delegatorTokens":9999999995022}},{"ix":5,"action":{"kind":"Undelegate","val":0,"amt":1579},"partialState":{"h":1,"t":6,"tokens":[8399,4000,1662,2000],"delegation":[7399,3000,662,1000],"delegatorTokens":9999999995022}},{"ix":6,"action":{"kind":"Delegate","val":0,"amt":3070},"partialState":{"h":1,"t":6,"tokens":[11469,4000,1662,2000],"delegation":[10469,3000,662,1000],"delegatorTokens":9999999991952}},{"ix":7,"action":{"kind":"Delegate","val":1,"amt":3874},"partialState":{"h":1,"t":6,"tokens":[11469,7874,1662,2000],"delegation":[10469,6874,662,1000],"delegatorTokens":9999999988078}},{"ix":8,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":2,"t":12,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,false,true,true]}},{"ix":9,"action":{"kind":"Undelegate","val":0,"amt":4769},"partialState":{"h":1,"t":6,"tokens":[6700,7874,1662,2000],"delegation":[5700,6874,662,1000],"delegatorTokens":9999999988078}},{"ix":10,"action":{"kind":"Undelegate","val":0,"amt":1282},"partialState":{"h":1,"t":6,"tokens":[5418,7874,1662,2000],"delegation":[4418,6874,662,1000],"delegatorTokens":9999999988078}},{"ix":11,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":2,"t":12,"tokens":[5418,7874,1662,2000],"delegation":[4418,6874,662,1000],"delegatorTokens":9999999988078,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":12,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":13,"action":{"kind":"Deliver","chain":"provider","numPackets":5},"partialState":{"h":2,"t":12,"tokens":[5418,7874,1662,2000],"delegation":[4418,6874,662,1000],"delegatorTokens":9999999988078,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":14,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":3,"t":18,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,false,true,true]}},{"ix":15,"action":{"kind":"Deliver","chain":"consumer","numPackets":1},"partialState":{"h":3,"t":18,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,false,true,true]}},{"ix":16,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":4,"t":24,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,false,true,true]}},{"ix":17,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":18,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":19,"action":{"kind":"ConsumerSlash","val":0,"infractionHeight":0,"isDowntime":true},"partialState":{"h":4,"t":24,"outstandingDowntime":[true,false,true,true]}},{"ix":20,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":3,"t":18,"tokens":[5418,7874,1662,2000],"delegation":[4418,6874,662,1000],"delegatorTokens":9999999988078,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":21,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":22,"action":{"kind":"Deliver","chain":"consumer","numPackets":4},"partialState":{"h":4,"t":24,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[true,false,true,true]}},{"ix":23,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":24,"action":{"kind":"Undelegate","val":2,"amt":1321},"partialState":{"h":3,"t":18,"tokens":[5418,7874,1662,2000],"delegation":[4418,6874,662,1000],"delegatorTokens":9999999988078}},{"ix":25,"action":{"kind":"Undelegate","val":2,"amt":2178},"partialState":{"h":3,"t":18,"tokens":[5418,7874,1662,2000],"delegation":[4418,6874,662,1000],"delegatorTokens":9999999988078}},{"ix":26,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":5,"t":30,"consumerPower":[5418,7874,null,null],"outstandingDowntime":[true,false,true,true]}},{"ix":27,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":28,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":29,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":6,"t":36,"consumerPower":[5418,7874,null,null],"outstandingDowntime":[true,false,true,true]}},{"ix":30,"action":{"kind":"Deliver","chain":"provider","numPackets":4},"partialState":{"h":3,"t":18,"tokens":[5418,7874,1662,2000],"delegation":[4418,6874,662,1000],"delegatorTokens":9999999988078,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":31,"action":{"kind":"Undelegate","val":2,"amt":4032},"partialState":{"h":3,"t":18,"tokens":[5418,7874,1662,2000],"delegation":[4418,6874,662,1000],"delegatorTokens":9999999988078}},{"ix":32,"action":{"kind":"Deliver","chain":"provider","numPackets":6},"partialState":{"h":3,"t":18,"tokens":[5418,7874,1662,2000],"delegation":[4418,6874,662,1000],"delegatorTokens":9999999988078,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":33,"action":{"kind":"Undelegate","val":2,"amt":3273},"partialState":{"h":3,"t":18,"tokens":[5418,7874,1662,2000],"delegation":[4418,6874,662,1000],"delegatorTokens":9999999988078}},{"ix":34,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":7,"t":42,"consumerPower":[5418,7874,null,null],"outstandingDowntime":[true,false,true,true]}},{"ix":35,"action":{"kind":"Deliver","chain":"consumer","numPackets":5},"partialState":{"h":7,"t":42,"consumerPower":[5418,7874,null,null],"outstandingDowntime":[true,false,true,true]}},{"ix":36,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":4,"t":24,"tokens":[5418,7874,1662,2000],"delegation":[4418,6874,662,1000],"delegatorTokens":9999999988078,"jailed":[1000000000000017,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":37,"action":{"kind":"Deliver","chain":"provider","numPackets":4},"partialState":{"h":4,"t":24,"tokens":[5418,7874,1662,2000],"delegation":[4418,6874,662,1000],"delegatorTokens":9999999988078,"jailed":[1000000000000017,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":38,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":39,"action":{"kind":"Deliver","chain":"consumer","numPackets":6},"partialState":{"h":7,"t":42,"consumerPower":[5418,7874,null,null],"outstandingDowntime":[true,false,true,true]}},{"ix":40,"action":{"kind":"Deliver","chain":"provider","numPackets":3},"partialState":{"h":4,"t":24,"tokens":[5418,7874,1662,2000],"delegation":[4418,6874,662,1000],"delegatorTokens":9999999988078,"jailed":[1000000000000017,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":41,"action":{"kind":"Delegate","val":2,"amt":4931},"partialState":{"h":4,"t":24,"tokens":[5418,7874,6593,2000],"delegation":[4418,6874,5593,1000],"delegatorTokens":9999999983147}},{"ix":42,"action":{"kind":"Deliver","chain":"provider","numPackets":6},"partialState":{"h":4,"t":24,"tokens":[5418,7874,6593,2000],"delegation":[4418,6874,5593,1000],"delegatorTokens":9999999983147,"jailed":[1000000000000017,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":43,"action":{"kind":"Deliver","chain":"consumer","numPackets":1},"partialState":{"h":7,"t":42,"consumerPower":[5418,7874,null,null],"outstandingDowntime":[true,false,true,true]}},{"ix":44,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":45,"action":{"kind":"Undelegate","val":3,"amt":2645},"partialState":{"h":4,"t":24,"tokens":[5418,7874,6593,2000],"delegation":[4418,6874,5593,1000],"delegatorTokens":9999999983147}},{"ix":46,"action":{"kind":"Undelegate","val":1,"amt":2288},"partialState":{"h":4,"t":24,"tokens":[5418,5586,6593,2000],"delegation":[4418,4586,5593,1000],"delegatorTokens":9999999983147}},{"ix":47,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":8,"t":48,"consumerPower":[5418,7874,null,null],"outstandingDowntime":[true,false,true,true]}},{"ix":48,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":49,"action":{"kind":"Undelegate","val":2,"amt":2620},"partialState":{"h":4,"t":24,"tokens":[5418,5586,3973,2000],"delegation":[4418,4586,2973,1000],"delegatorTokens":9999999983147}},{"ix":50,"action":{"kind":"Deliver","chain":"consumer","numPackets":4},"partialState":{"h":8,"t":48,"consumerPower":[5418,7874,null,null],"outstandingDowntime":[true,false,true,true]}},{"ix":51,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":5,"t":30,"tokens":[5418,5586,3973,2000],"delegation":[4418,4586,2973,1000],"delegatorTokens":9999999983147,"jailed":[1000000000000017,null,null,null],"status":["unbonding","bonded","bonded","unbonded"]}},{"ix":52,"action":{"kind":"Undelegate","val":1,"amt":3088},"partialState":{"h":5,"t":30,"tokens":[5418,2498,3973,2000],"delegation":[4418,1498,2973,1000],"delegatorTokens":9999999983147}},{"ix":53,"action":{"kind":"Undelegate","val":1,"amt":4192},"partialState":{"h":5,"t":30,"tokens":[5418,2498,3973,2000],"delegation":[4418,1498,2973,1000],"delegatorTokens":9999999983147}},{"ix":54,"action":{"kind":"Delegate","val":3,"amt":3757},"partialState":{"h":5,"t":30,"tokens":[5418,2498,3973,5757],"delegation":[4418,1498,2973,4757],"delegatorTokens":9999999979390}},{"ix":55,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":9,"t":54,"consumerPower":[5418,7874,null,null],"outstandingDowntime":[true,false,true,true]}},{"ix":56,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":57,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":6,"t":36,"tokens":[5418,2498,3973,5757],"delegation":[4418,1498,2973,4757],"delegatorTokens":9999999979390,"jailed":[1000000000000017,null,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":58,"action":{"kind":"Deliver","chain":"consumer","numPackets":5},"partialState":{"h":9,"t":54,"consumerPower":[5418,7874,null,null],"outstandingDowntime":[false,false,true,true]}},{"ix":59,"action":{"kind":"Deliver","chain":"provider","numPackets":5},"partialState":{"h":6,"t":36,"tokens":[5418,2498,3973,5757],"delegation":[4418,1498,2973,4757],"delegatorTokens":9999999979390,"jailed":[1000000000000017,null,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":60,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":7,"t":42,"tokens":[5418,2498,3973,5757],"delegation":[4418,1498,2973,4757],"delegatorTokens":9999999979390,"jailed":[1000000000000017,null,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":61,"action":{"kind":"Deliver","chain":"provider","numPackets":3},"partialState":{"h":7,"t":42,"tokens":[5418,2498,3973,5757],"delegation":[4418,1498,2973,4757],"delegatorTokens":9999999979390,"jailed":[1000000000000017,null,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":62,"action":{"kind":"Deliver","chain":"provider","numPackets":2},"partialState":{"h":7,"t":42,"tokens":[5418,2498,3973,5757],"delegation":[4418,1498,2973,4757],"delegatorTokens":9999999979390,"jailed":[1000000000000017,null,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":63,"action":{"kind":"Undelegate","val":1,"amt":2983},"partialState":{"h":7,"t":42,"tokens":[5418,2498,3973,5757],"delegation":[4418,1498,2973,4757],"delegatorTokens":9999999979390}},{"ix":64,"action":{"kind":"Deliver","chain":"consumer","numPackets":6},"partialState":{"h":9,"t":54,"consumerPower":[5418,7874,null,null],"outstandingDowntime":[false,false,true,true]}},{"ix":65,"action":{"kind":"Undelegate","val":3,"amt":4282},"partialState":{"h":7,"t":42,"tokens":[5418,2498,3973,1475],"delegation":[4418,1498,2973,475],"delegatorTokens":9999999979390}},{"ix":66,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":10,"t":60,"consumerPower":[null,null,3973,5757],"outstandingDowntime":[false,false,true,true]}},{"ix":67,"action":{"kind":"Undelegate","val":3,"amt":2907},"partialState":{"h":7,"t":42,"tokens":[5418,2498,3973,1475],"delegation":[4418,1498,2973,475],"delegatorTokens":9999999979390}},{"ix":68,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":11,"t":66,"consumerPower":[null,null,3973,5757],"outstandingDowntime":[false,false,true,true]}},{"ix":69,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":70,"action":{"kind":"Deliver","chain":"consumer","numPackets":1},"partialState":{"h":11,"t":66,"consumerPower":[null,null,3973,5757],"outstandingDowntime":[false,false,true,true]}},{"ix":71,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":8,"t":48,"tokens":[5418,2498,3973,1475],"delegation":[4418,1498,2973,475],"delegatorTokens":9999999979390,"jailed":[1000000000000017,null,null,null],"status":["unbonding","bonded","bonded","unbonding"]}},{"ix":72,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":73,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":74,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":75,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":12,"t":72,"consumerPower":[null,null,3973,5757],"outstandingDowntime":[false,false,true,true]}},{"ix":76,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":77,"action":{"kind":"Deliver","chain":"consumer","numPackets":2},"partialState":{"h":12,"t":72,"consumerPower":[null,null,3973,5757],"outstandingDowntime":[false,false,true,true]}},{"ix":78,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":79,"action":{"kind":"Delegate","val":1,"amt":3762},"partialState":{"h":8,"t":48,"tokens":[5418,6260,3973,1475],"delegation":[4418,5260,2973,475],"delegatorTokens":9999999975628}},{"ix":80,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":81,"action":{"kind":"Deliver","chain":"consumer","numPackets":3},"partialState":{"h":12,"t":72,"consumerPower":[null,null,3973,5757],"outstandingDowntime":[false,false,true,true]}},{"ix":82,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":83,"action":{"kind":"Delegate","val":0,"amt":3052},"partialState":{"h":8,"t":48,"tokens":[8470,6260,3973,1475],"delegation":[7470,5260,2973,475],"delegatorTokens":9999999972576}},{"ix":84,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":9,"t":54,"tokens":[8470,6260,3973,1475],"delegation":[7470,5260,2973,475],"delegatorTokens":9999999972576,"jailed":[1000000000000017,null,null,null],"status":["unbonding","bonded","bonded","unbonding"]}},{"ix":85,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":86,"action":{"kind":"Deliver","chain":"provider","numPackets":5},"partialState":{"h":9,"t":54,"tokens":[8470,6260,3973,1475],"delegation":[7470,5260,2973,475],"delegatorTokens":9999999972576,"jailed":[1000000000000017,null,null,null],"status":["unbonding","bonded","bonded","unbonding"]}},{"ix":87,"action":{"kind":"Deliver","chain":"consumer","numPackets":4},"partialState":{"h":12,"t":72,"consumerPower":[null,null,3973,5757],"outstandingDowntime":[false,false,true,true]}},{"ix":88,"action":{"kind":"Delegate","val":1,"amt":2846},"partialState":{"h":9,"t":54,"tokens":[8470,9106,3973,1475],"delegation":[7470,8106,2973,475],"delegatorTokens":9999999969730}},{"ix":89,"action":{"kind":"Delegate","val":1,"amt":4915},"partialState":{"h":9,"t":54,"tokens":[8470,14021,3973,1475],"delegation":[7470,13021,2973,475],"delegatorTokens":9999999964815}},{"ix":90,"action":{"kind":"Delegate","val":3,"amt":1598},"partialState":{"h":9,"t":54,"tokens":[8470,14021,3973,3073],"delegation":[7470,13021,2973,2073],"delegatorTokens":9999999963217}},{"ix":91,"action":{"kind":"Delegate","val":2,"amt":4996},"partialState":{"h":9,"t":54,"tokens":[8470,14021,8969,3073],"delegation":[7470,13021,7969,2073],"delegatorTokens":9999999958221}},{"ix":92,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":93,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":13,"t":78,"consumerPower":[null,2498,3973,null],"outstandingDowntime":[false,false,true,true]}},{"ix":94,"action":{"kind":"Undelegate","val":3,"amt":1039},"partialState":{"h":9,"t":54,"tokens":[8470,14021,8969,2034],"delegation":[7470,13021,7969,1034],"delegatorTokens":9999999958221}},{"ix":95,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":96,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":14,"t":84,"consumerPower":[null,2498,3973,null],"outstandingDowntime":[false,false,true,true]}},{"ix":97,"action":{"kind":"Delegate","val":3,"amt":4942},"partialState":{"h":9,"t":54,"tokens":[8470,14021,8969,6976],"delegation":[7470,13021,7969,5976],"delegatorTokens":9999999953279}},{"ix":98,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":10,"t":60,"tokens":[8470,14021,8969,6976],"delegation":[7470,13021,7969,5976],"delegatorTokens":9999999953279,"jailed":[1000000000000017,null,null,null],"status":["unbonding","bonded","bonded","unbonding"]}},{"ix":99,"action":{"kind":"Deliver","chain":"consumer","numPackets":2},"partialState":{"h":14,"t":84,"consumerPower":[null,2498,3973,null],"outstandingDowntime":[false,false,true,true]}},{"ix":100,"action":{"kind":"Deliver","chain":"consumer","numPackets":4},"partialState":{"h":14,"t":84,"consumerPower":[null,2498,3973,null],"outstandingDowntime":[false,false,true,true]}},{"ix":101,"action":{"kind":"Deliver","chain":"provider","numPackets":1},"partialState":{"h":10,"t":60,"tokens":[8470,14021,8969,6976],"delegation":[7470,13021,7969,5976],"delegatorTokens":9999999953279,"jailed":[1000000000000017,null,null,null],"status":["unbonding","bonded","bonded","unbonding"]}},{"ix":102,"action":{"kind":"Undelegate","val":3,"amt":4365},"partialState":{"h":10,"t":60,"tokens":[8470,14021,8969,2611],"delegation":[7470,13021,7969,1611],"delegatorTokens":9999999953279}},{"ix":103,"action":{"kind":"Undelegate","val":1,"amt":4913},"partialState":{"h":10,"t":60,"tokens":[8470,9108,8969,2611],"delegation":[7470,8108,7969,1611],"delegatorTokens":9999999953279}},{"ix":104,"action":{"kind":"Undelegate","val":0,"amt":1546},"partialState":{"h":10,"t":60,"tokens":[6924,9108,8969,2611],"delegation":[5924,8108,7969,1611],"delegatorTokens":9999999953279}},{"ix":105,"action":{"kind":"Delegate","val":0,"amt":1096},"partialState":{"h":10,"t":60,"tokens":[8020,9108,8969,2611],"delegation":[7020,8108,7969,1611],"delegatorTokens":9999999952183}},{"ix":106,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":11,"t":66,"tokens":[8020,9108,8969,2611],"delegation":[7020,8108,7969,1611],"delegatorTokens":9999999952183,"jailed":[1000000000000017,null,null,null],"status":["unbonding","bonded","bonded","unbonding"]}},{"ix":107,"action":{"kind":"Undelegate","val":3,"amt":3589},"partialState":{"h":11,"t":66,"tokens":[8020,9108,8969,2611],"delegation":[7020,8108,7969,1611],"delegatorTokens":9999999952183}},{"ix":108,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":109,"action":{"kind":"Deliver","chain":"consumer","numPackets":6},"partialState":{"h":14,"t":84,"consumerPower":[null,2498,3973,null],"outstandingDowntime":[false,false,true,true]}},{"ix":110,"action":{"kind":"Deliver","chain":"consumer","numPackets":5},"partialState":{"h":14,"t":84,"consumerPower":[null,2498,3973,null],"outstandingDowntime":[false,false,true,true]}},{"ix":111,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":112,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":12,"t":72,"tokens":[8020,9108,8969,2611],"delegation":[7020,8108,7969,1611],"delegatorTokens":9999999952183,"jailed":[1000000000000017,null,null,null],"status":["unbonding","bonded","bonded","unbonding"]}},{"ix":113,"action":{"kind":"Deliver","chain":"consumer","numPackets":3},"partialState":{"h":14,"t":84,"consumerPower":[null,2498,3973,null],"outstandingDowntime":[false,false,true,true]}},{"ix":114,"action":{"kind":"Delegate","val":3,"amt":4982},"partialState":{"h":12,"t":72,"tokens":[8020,9108,8969,7593],"delegation":[7020,8108,7969,6593],"delegatorTokens":9999999947201}},{"ix":115,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":15,"t":90,"consumerPower":[null,9108,8969,null],"outstandingDowntime":[false,false,true,true]}},{"ix":116,"action":{"kind":"Delegate","val":0,"amt":3431},"partialState":{"h":12,"t":72,"tokens":[11451,9108,8969,7593],"delegation":[10451,8108,7969,6593],"delegatorTokens":9999999943770}},{"ix":117,"action":{"kind":"Undelegate","val":1,"amt":4688},"partialState":{"h":12,"t":72,"tokens":[11451,4420,8969,7593],"delegation":[10451,3420,7969,6593],"delegatorTokens":9999999943770}},{"ix":118,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":13,"t":78,"tokens":[11451,4420,8969,7593],"delegation":[10451,3420,7969,6593],"delegatorTokens":9999999943770,"jailed":[1000000000000017,null,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":119,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":16,"t":96,"consumerPower":[null,9108,8969,null],"outstandingDowntime":[false,false,true,true]}},{"ix":120,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":121,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":122,"action":{"kind":"Deliver","chain":"provider","numPackets":1},"partialState":{"h":13,"t":78,"tokens":[11451,4420,8969,7593],"delegation":[10451,3420,7969,6593],"delegatorTokens":9999999943770,"jailed":[1000000000000017,null,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":123,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":17,"t":102,"consumerPower":[null,9108,8969,null],"outstandingDowntime":[false,false,true,true]}},{"ix":124,"action":{"kind":"Deliver","chain":"provider","numPackets":2},"partialState":{"h":13,"t":78,"tokens":[11451,4420,8969,7593],"delegation":[10451,3420,7969,6593],"delegatorTokens":9999999943770,"jailed":[1000000000000017,null,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":125,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":14,"t":84,"tokens":[11451,4420,8969,7593],"delegation":[10451,3420,7969,6593],"delegatorTokens":9999999952738,"jailed":[1000000000000017,null,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":126,"action":{"kind":"Deliver","chain":"provider","numPackets":3},"partialState":{"h":14,"t":84,"tokens":[11451,4420,8969,7593],"delegation":[10451,3420,7969,6593],"delegatorTokens":9999999952738,"jailed":[1000000000000017,null,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":127,"action":{"kind":"Undelegate","val":1,"amt":1539},"partialState":{"h":14,"t":84,"tokens":[11451,2881,8969,7593],"delegation":[10451,1881,7969,6593],"delegatorTokens":9999999952738}},{"ix":128,"action":{"kind":"Deliver","chain":"provider","numPackets":6},"partialState":{"h":14,"t":84,"tokens":[11451,2881,8969,7593],"delegation":[10451,1881,7969,6593],"delegatorTokens":9999999952738,"jailed":[1000000000000017,null,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":129,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":18,"t":108,"consumerPower":[null,9108,8969,null],"outstandingDowntime":[false,false,true,true]}},{"ix":130,"action":{"kind":"Undelegate","val":3,"amt":2367},"partialState":{"h":14,"t":84,"tokens":[11451,2881,8969,5226],"delegation":[10451,1881,7969,4226],"delegatorTokens":9999999952738}},{"ix":131,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":15,"t":90,"tokens":[11451,2881,8969,5226],"delegation":[10451,1881,7969,4226],"delegatorTokens":9999999952738,"jailed":[1000000000000017,null,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":132,"action":{"kind":"Undelegate","val":1,"amt":2784},"partialState":{"h":15,"t":90,"tokens":[11451,2881,8969,5226],"delegation":[10451,1881,7969,4226],"delegatorTokens":9999999952738}},{"ix":133,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":134,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":135,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":136,"action":{"kind":"Deliver","chain":"provider","numPackets":1},"partialState":{"h":15,"t":90,"tokens":[11451,2881,8969,5226],"delegation":[10451,1881,7969,4226],"delegatorTokens":9999999952738,"jailed":[1000000000000017,null,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":137,"action":{"kind":"Undelegate","val":1,"amt":1459},"partialState":{"h":15,"t":90,"tokens":[11451,1422,8969,5226],"delegation":[10451,422,7969,4226],"delegatorTokens":9999999952738}},{"ix":138,"action":{"kind":"Undelegate","val":1,"amt":2746},"partialState":{"h":15,"t":90,"tokens":[11451,1422,8969,5226],"delegation":[10451,422,7969,4226],"delegatorTokens":9999999952738}},{"ix":139,"action":{"kind":"Deliver","chain":"provider","numPackets":5},"partialState":{"h":15,"t":90,"tokens":[11451,1422,8969,5226],"delegation":[10451,422,7969,4226],"delegatorTokens":9999999952738,"jailed":[1000000000000017,null,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":140,"action":{"kind":"Delegate","val":3,"amt":2226},"partialState":{"h":15,"t":90,"tokens":[11451,1422,8969,7452],"delegation":[10451,422,7969,6452],"delegatorTokens":9999999950512}},{"ix":141,"action":{"kind":"Delegate","val":3,"amt":4370},"partialState":{"h":15,"t":90,"tokens":[11451,1422,8969,11822],"delegation":[10451,422,7969,10822],"delegatorTokens":9999999946142}},{"ix":142,"action":{"kind":"Undelegate","val":0,"amt":1114},"partialState":{"h":15,"t":90,"tokens":[10337,1422,8969,11822],"delegation":[9337,422,7969,10822],"delegatorTokens":9999999946142}},{"ix":143,"action":{"kind":"Delegate","val":1,"amt":2325},"partialState":{"h":15,"t":90,"tokens":[10337,3747,8969,11822],"delegation":[9337,2747,7969,10822],"delegatorTokens":9999999943817}},{"ix":144,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":145,"action":{"kind":"Delegate","val":3,"amt":3400},"partialState":{"h":15,"t":90,"tokens":[10337,3747,8969,15222],"delegation":[9337,2747,7969,14222],"delegatorTokens":9999999940417}},{"ix":146,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":19,"t":114,"consumerPower":[null,9108,8969,null],"outstandingDowntime":[false,false,true,true]}},{"ix":147,"action":{"kind":"Delegate","val":2,"amt":3251},"partialState":{"h":15,"t":90,"tokens":[10337,3747,12220,15222],"delegation":[9337,2747,11220,14222],"delegatorTokens":9999999937166}},{"ix":148,"action":{"kind":"Deliver","chain":"consumer","numPackets":1},"partialState":{"h":19,"t":114,"consumerPower":[null,9108,8969,null],"outstandingDowntime":[false,false,true,true]}},{"ix":149,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":16,"t":96,"tokens":[10337,3747,12220,15222],"delegation":[9337,2747,11220,14222],"delegatorTokens":9999999937166,"jailed":[1000000000000017,null,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":150,"action":{"kind":"Undelegate","val":1,"amt":4052},"partialState":{"h":16,"t":96,"tokens":[10337,3747,12220,15222],"delegation":[9337,2747,11220,14222],"delegatorTokens":9999999937166}},{"ix":151,"action":{"kind":"Undelegate","val":0,"amt":3727},"partialState":{"h":16,"t":96,"tokens":[6610,3747,12220,15222],"delegation":[5610,2747,11220,14222],"delegatorTokens":9999999937166}},{"ix":152,"action":{"kind":"Undelegate","val":1,"amt":4282},"partialState":{"h":16,"t":96,"tokens":[6610,3747,12220,15222],"delegation":[5610,2747,11220,14222],"delegatorTokens":9999999937166}},{"ix":153,"action":{"kind":"Deliver","chain":"provider","numPackets":3},"partialState":{"h":16,"t":96,"tokens":[6610,3747,12220,15222],"delegation":[5610,2747,11220,14222],"delegatorTokens":9999999937166,"jailed":[1000000000000017,null,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":154,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":155,"action":{"kind":"Delegate","val":3,"amt":1937},"partialState":{"h":16,"t":96,"tokens":[6610,3747,12220,17159],"delegation":[5610,2747,11220,16159],"delegatorTokens":9999999935229}},{"ix":156,"action":{"kind":"Deliver","chain":"provider","numPackets":6},"partialState":{"h":16,"t":96,"tokens":[6610,3747,12220,17159],"delegation":[5610,2747,11220,16159],"delegatorTokens":9999999935229,"jailed":[1000000000000017,null,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":157,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":158,"action":{"kind":"Delegate","val":1,"amt":4367},"partialState":{"h":16,"t":96,"tokens":[6610,8114,12220,17159],"delegation":[5610,7114,11220,16159],"delegatorTokens":9999999930862}},{"ix":159,"action":{"kind":"Deliver","chain":"consumer","numPackets":3},"partialState":{"h":19,"t":114,"consumerPower":[null,9108,8969,null],"outstandingDowntime":[false,false,true,true]}},{"ix":160,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":161,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":17,"t":102,"tokens":[6610,8114,12220,17159],"delegation":[5610,7114,11220,16159],"delegatorTokens":9999999930862,"jailed":[1000000000000017,null,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":162,"action":{"kind":"Undelegate","val":2,"amt":2357},"partialState":{"h":17,"t":102,"tokens":[6610,8114,9863,17159],"delegation":[5610,7114,8863,16159],"delegatorTokens":9999999930862}},{"ix":163,"action":{"kind":"Deliver","chain":"provider","numPackets":1},"partialState":{"h":17,"t":102,"tokens":[6610,8114,9863,17159],"delegation":[5610,7114,8863,16159],"delegatorTokens":9999999930862,"jailed":[1000000000000017,null,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":164,"action":{"kind":"Deliver","chain":"provider","numPackets":3},"partialState":{"h":17,"t":102,"tokens":[6610,8114,9863,17159],"delegation":[5610,7114,8863,16159],"delegatorTokens":9999999930862,"jailed":[1000000000000017,null,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":165,"action":{"kind":"Deliver","chain":"consumer","numPackets":6},"partialState":{"h":19,"t":114,"consumerPower":[null,9108,8969,null],"outstandingDowntime":[false,false,true,true]}},{"ix":166,"action":{"kind":"Delegate","val":2,"amt":2445},"partialState":{"h":17,"t":102,"tokens":[6610,8114,12308,17159],"delegation":[5610,7114,11308,16159],"delegatorTokens":9999999928417}},{"ix":167,"action":{"kind":"Deliver","chain":"consumer","numPackets":1},"partialState":{"h":19,"t":114,"consumerPower":[null,9108,8969,null],"outstandingDowntime":[false,false,true,true]}},{"ix":168,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":169,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":170,"action":{"kind":"Deliver","chain":"consumer","numPackets":3},"partialState":{"h":19,"t":114,"consumerPower":[null,9108,8969,null],"outstandingDowntime":[false,false,true,true]}},{"ix":171,"action":{"kind":"Delegate","val":3,"amt":4135},"partialState":{"h":17,"t":102,"tokens":[6610,8114,12308,21294],"delegation":[5610,7114,11308,20294],"delegatorTokens":9999999924282}},{"ix":172,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":173,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":18,"t":108,"tokens":[6610,8114,12308,21294],"delegation":[5610,7114,11308,20294],"delegatorTokens":9999999924282,"jailed":[1000000000000017,null,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":174,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":20,"t":120,"consumerPower":[null,null,12220,15222],"outstandingDowntime":[false,false,true,true]}},{"ix":175,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":19,"t":114,"tokens":[6610,8114,12308,21294],"delegation":[5610,7114,11308,20294],"delegatorTokens":9999999924282,"jailed":[1000000000000017,null,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":176,"action":{"kind":"Delegate","val":2,"amt":1411},"partialState":{"h":19,"t":114,"tokens":[6610,8114,13719,21294],"delegation":[5610,7114,12719,20294],"delegatorTokens":9999999922871}},{"ix":177,"action":{"kind":"Deliver","chain":"provider","numPackets":2},"partialState":{"h":19,"t":114,"tokens":[6610,8114,13719,21294],"delegation":[5610,7114,12719,20294],"delegatorTokens":9999999922871,"jailed":[1000000000000017,null,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":178,"action":{"kind":"Delegate","val":1,"amt":3653},"partialState":{"h":19,"t":114,"tokens":[6610,11767,13719,21294],"delegation":[5610,10767,12719,20294],"delegatorTokens":9999999919218}},{"ix":179,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":180,"action":{"kind":"Deliver","chain":"provider","numPackets":5},"partialState":{"h":19,"t":114,"tokens":[6610,11767,13719,21294],"delegation":[5610,10767,12719,20294],"delegatorTokens":9999999919218,"jailed":[1000000000000017,null,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":181,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":21,"t":126,"consumerPower":[null,null,12220,15222],"outstandingDowntime":[false,false,true,true]}},{"ix":182,"action":{"kind":"Delegate","val":0,"amt":1820},"partialState":{"h":19,"t":114,"tokens":[8430,11767,13719,21294],"delegation":[7430,10767,12719,20294],"delegatorTokens":9999999917398}},{"ix":183,"action":{"kind":"Deliver","chain":"provider","numPackets":3},"partialState":{"h":19,"t":114,"tokens":[8430,11767,13719,21294],"delegation":[7430,10767,12719,20294],"delegatorTokens":9999999917398,"jailed":[1000000000000017,null,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":184,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":185,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":22,"t":132,"consumerPower":[null,null,12220,15222],"outstandingDowntime":[false,false,true,true]}},{"ix":186,"action":{"kind":"Undelegate","val":1,"amt":2736},"partialState":{"h":19,"t":114,"tokens":[8430,9031,13719,21294],"delegation":[7430,8031,12719,20294],"delegatorTokens":9999999917398}},{"ix":187,"action":{"kind":"Undelegate","val":1,"amt":3697},"partialState":{"h":19,"t":114,"tokens":[8430,5334,13719,21294],"delegation":[7430,4334,12719,20294],"delegatorTokens":9999999917398}},{"ix":188,"action":{"kind":"Undelegate","val":2,"amt":1714},"partialState":{"h":19,"t":114,"tokens":[8430,5334,12005,21294],"delegation":[7430,4334,11005,20294],"delegatorTokens":9999999917398}},{"ix":189,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":23,"t":138,"consumerPower":[null,null,12220,15222],"outstandingDowntime":[false,false,true,true]}},{"ix":190,"action":{"kind":"Delegate","val":3,"amt":2244},"partialState":{"h":19,"t":114,"tokens":[8430,5334,12005,23538],"delegation":[7430,4334,11005,22538],"delegatorTokens":9999999915154}},{"ix":191,"action":{"kind":"Deliver","chain":"provider","numPackets":3},"partialState":{"h":19,"t":114,"tokens":[8430,5334,12005,23538],"delegation":[7430,4334,11005,22538],"delegatorTokens":9999999915154,"jailed":[1000000000000017,null,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":192,"action":{"kind":"Delegate","val":1,"amt":1309},"partialState":{"h":19,"t":114,"tokens":[8430,6643,12005,23538],"delegation":[7430,5643,11005,22538],"delegatorTokens":9999999913845}},{"ix":193,"action":{"kind":"Undelegate","val":0,"amt":2559},"partialState":{"h":19,"t":114,"tokens":[5871,6643,12005,23538],"delegation":[4871,5643,11005,22538],"delegatorTokens":9999999913845}},{"ix":194,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":195,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":196,"action":{"kind":"Deliver","chain":"provider","numPackets":4},"partialState":{"h":19,"t":114,"tokens":[5871,6643,12005,23538],"delegation":[4871,5643,11005,22538],"delegatorTokens":9999999913845,"jailed":[1000000000000017,null,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":197,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":20,"t":120,"tokens":[5871,6643,12005,23538],"delegation":[4871,5643,11005,22538],"delegatorTokens":9999999926123,"jailed":[1000000000000017,null,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":198,"action":{"kind":"Undelegate","val":2,"amt":4376},"partialState":{"h":20,"t":120,"tokens":[5871,6643,7629,23538],"delegation":[4871,5643,6629,22538],"delegatorTokens":9999999926123}},{"ix":199,"action":{"kind":"Deliver","chain":"provider","numPackets":2},"partialState":{"h":20,"t":120,"tokens":[5871,6643,7629,23538],"delegation":[4871,5643,6629,22538],"delegatorTokens":9999999926123,"jailed":[1000000000000017,null,null,null],"status":["unbonding","unbonding","bonded","bonded"]}}],"events":["insufficient_shares","send_downtime_slash_request","send_downtime_slash_request","send_vsc_without_downtime_ack","send_downtime_slash_request","insufficient_shares","insufficient_shares","consumer_update_val","consumer_update_val","insufficient_shares","insufficient_shares","receive_slash_request_unbonded","receive_slash_request_unbonded","receive_downtime_slash_request","jail","insufficient_shares","more_than_one_third_val_power_change","send_vsc_with_downtime_ack","insufficient_shares","more_than_one_third_val_power_change","send_vsc_without_downtime_ack","receive_downtime_slash_ack","insufficient_shares","consumer_del_val","consumer_del_val","consumer_add_val","consumer_add_val","insufficient_shares","more_than_one_third_val_power_change","rebond_unval","send_vsc_without_downtime_ack","send_vsc_without_downtime_ack","consumer_add_val","consumer_del_val","consumer_send_maturation","send_vsc_without_downtime_ack","send_vsc_without_downtime_ack","insufficient_shares","consumer_update_val","consumer_update_val","more_than_one_third_val_power_change","rebond_unval","send_vsc_without_downtime_ack","some_undels_expired_but_not_completed","complete_undel_immediate","complete_undel_immediate","complete_undel_immediate","complete_undel_immediate","send_vsc_without_downtime_ack","insufficient_shares","insufficient_shares","consumer_send_maturation","consumer_send_maturation","send_vsc_without_downtime_ack","insufficient_shares","insufficient_shares","some_undels_expired_but_not_completed","send_vsc_without_downtime_ack","some_undels_expired_but_not_completed","send_vsc_without_downtime_ack","consumer_del_val","consumer_add_val","consumer_update_val","consumer_send_maturation","some_undels_expired_but_not_completed","complete_undel_immediate","complete_undel_immediate","set_unval_hold_false","complete_undel_immediate","complete_undel_immediate","send_vsc_without_downtime_ack"]},{"meta":{"commit":"7ffd0c04e4205cbc9caf212abfe6c59ee43153bf"},"constants":{"P":"provider","C":"consumer","UNBONDING_SECONDS_P":70,"UNBONDING_SECONDS_C":50,"TRUSTING_SECONDS":49,"NUM_VALIDATORS":4,"MAX_VALIDATORS":2,"SLASH_DOUBLESIGN":0,"SLASH_DOWNTIME":0,"JAIL_SECONDS":999999999999999,"BLOCK_SECONDS":6,"INITIAL_DELEGATOR_TOKENS":10000000000000,"DELEGATE_AMT_MIN":1000,"DELEGATE_AMT_MAX":5000,"UNDELEGATE_AMT_MIN":1000,"UNDELEGATE_AMT_MAX":5000,"ISDOWNTIME_PROBABILITY":0.5,"MAX_NUM_PACKETS_FOR_DELIVER":6},"actions":[{"ix":0,"action":{"kind":"ConsumerSlash","val":2,"infractionHeight":0,"isDowntime":true},"partialState":{"h":1,"t":6,"outstandingDowntime":[false,false,true,false]}},{"ix":1,"action":{"kind":"Delegate","val":1,"amt":4582},"partialState":{"h":1,"t":6,"tokens":[5000,8582,3000,2000],"delegation":[4000,7582,2000,1000],"delegatorTokens":9999999995418}},{"ix":2,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":2,"t":12,"tokens":[5000,8582,3000,2000],"delegation":[4000,7582,2000,1000],"delegatorTokens":9999999995418,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":3,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":2,"t":12,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,false,true,false]}},{"ix":4,"action":{"kind":"Deliver","chain":"consumer","numPackets":3},"partialState":{"h":2,"t":12,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,false,true,false]}},{"ix":5,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":3,"t":18,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,false,true,false]}},{"ix":6,"action":{"kind":"ConsumerSlash","val":3,"infractionHeight":1,"isDowntime":true},"partialState":{"h":3,"t":18,"outstandingDowntime":[false,false,true,true]}},{"ix":7,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":4,"t":24,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,false,true,true]}},{"ix":8,"action":{"kind":"ConsumerSlash","val":0,"infractionHeight":3,"isDowntime":true},"partialState":{"h":4,"t":24,"outstandingDowntime":[true,false,true,true]}},{"ix":9,"action":{"kind":"Undelegate","val":3,"amt":3275},"partialState":{"h":2,"t":12,"tokens":[5000,8582,3000,2000],"delegation":[4000,7582,2000,1000],"delegatorTokens":9999999995418}},{"ix":10,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":5,"t":30,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[true,false,true,true]}},{"ix":11,"action":{"kind":"Undelegate","val":3,"amt":1252},"partialState":{"h":2,"t":12,"tokens":[5000,8582,3000,2000],"delegation":[4000,7582,2000,1000],"delegatorTokens":9999999995418}},{"ix":12,"action":{"kind":"Deliver","chain":"consumer","numPackets":1},"partialState":{"h":5,"t":30,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[true,false,true,true]}},{"ix":13,"action":{"kind":"Delegate","val":1,"amt":4375},"partialState":{"h":2,"t":12,"tokens":[5000,12957,3000,2000],"delegation":[4000,11957,2000,1000],"delegatorTokens":9999999991043}},{"ix":14,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":15,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":3,"t":18,"tokens":[5000,12957,3000,2000],"delegation":[4000,11957,2000,1000],"delegatorTokens":9999999991043,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":16,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":4,"t":24,"tokens":[5000,12957,3000,2000],"delegation":[4000,11957,2000,1000],"delegatorTokens":9999999991043,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":17,"action":{"kind":"Undelegate","val":2,"amt":4605},"partialState":{"h":4,"t":24,"tokens":[5000,12957,3000,2000],"delegation":[4000,11957,2000,1000],"delegatorTokens":9999999991043}},{"ix":18,"action":{"kind":"Delegate","val":3,"amt":1079},"partialState":{"h":4,"t":24,"tokens":[5000,12957,3000,3079],"delegation":[4000,11957,2000,2079],"delegatorTokens":9999999989964}},{"ix":19,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":20,"action":{"kind":"Deliver","chain":"consumer","numPackets":1},"partialState":{"h":5,"t":30,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[true,false,true,true]}},{"ix":21,"action":{"kind":"Undelegate","val":1,"amt":1386},"partialState":{"h":4,"t":24,"tokens":[5000,11571,3000,3079],"delegation":[4000,10571,2000,2079],"delegatorTokens":9999999989964}},{"ix":22,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":23,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":24,"action":{"kind":"Deliver","chain":"provider","numPackets":4},"partialState":{"h":4,"t":24,"tokens":[5000,11571,3000,3079],"delegation":[4000,10571,2000,2079],"delegatorTokens":9999999989964,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":25,"action":{"kind":"Undelegate","val":2,"amt":2294},"partialState":{"h":4,"t":24,"tokens":[5000,11571,3000,3079],"delegation":[4000,10571,2000,2079],"delegatorTokens":9999999989964}},{"ix":26,"action":{"kind":"Delegate","val":1,"amt":4491},"partialState":{"h":4,"t":24,"tokens":[5000,16062,3000,3079],"delegation":[4000,15062,2000,2079],"delegatorTokens":9999999985473}},{"ix":27,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":6,"t":36,"consumerPower":[5000,8582,null,null],"outstandingDowntime":[true,false,true,true]}},{"ix":28,"action":{"kind":"Deliver","chain":"provider","numPackets":1},"partialState":{"h":4,"t":24,"tokens":[5000,16062,3000,3079],"delegation":[4000,15062,2000,2079],"delegatorTokens":9999999985473,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":29,"action":{"kind":"Delegate","val":0,"amt":2191},"partialState":{"h":4,"t":24,"tokens":[7191,16062,3000,3079],"delegation":[6191,15062,2000,2079],"delegatorTokens":9999999983282}},{"ix":30,"action":{"kind":"Undelegate","val":3,"amt":2053},"partialState":{"h":4,"t":24,"tokens":[7191,16062,3000,1026],"delegation":[6191,15062,2000,26],"delegatorTokens":9999999983282}},{"ix":31,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":5,"t":30,"tokens":[7191,16062,3000,1026],"delegation":[6191,15062,2000,26],"delegatorTokens":9999999983282,"jailed":[1000000000000023,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":32,"action":{"kind":"Undelegate","val":2,"amt":2194},"partialState":{"h":5,"t":30,"tokens":[7191,16062,3000,1026],"delegation":[6191,15062,2000,26],"delegatorTokens":9999999983282}},{"ix":33,"action":{"kind":"Deliver","chain":"consumer","numPackets":3},"partialState":{"h":6,"t":36,"consumerPower":[5000,8582,null,null],"outstandingDowntime":[true,false,true,true]}},{"ix":34,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":7,"t":42,"consumerPower":[5000,12957,null,null],"outstandingDowntime":[true,false,true,true]}},{"ix":35,"action":{"kind":"Undelegate","val":1,"amt":1354},"partialState":{"h":5,"t":30,"tokens":[7191,14708,3000,1026],"delegation":[6191,13708,2000,26],"delegatorTokens":9999999983282}},{"ix":36,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":8,"t":48,"consumerPower":[5000,12957,null,null],"outstandingDowntime":[true,false,true,true]}},{"ix":37,"action":{"kind":"Undelegate","val":0,"amt":2395},"partialState":{"h":5,"t":30,"tokens":[4796,14708,3000,1026],"delegation":[3796,13708,2000,26],"delegatorTokens":9999999983282}},{"ix":38,"action":{"kind":"Undelegate","val":1,"amt":4085},"partialState":{"h":5,"t":30,"tokens":[4796,10623,3000,1026],"delegation":[3796,9623,2000,26],"delegatorTokens":9999999983282}},{"ix":39,"action":{"kind":"Delegate","val":0,"amt":4741},"partialState":{"h":5,"t":30,"tokens":[9537,10623,3000,1026],"delegation":[8537,9623,2000,26],"delegatorTokens":9999999978541}},{"ix":40,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":9,"t":54,"consumerPower":[5000,12957,null,null],"outstandingDowntime":[true,false,true,true]}},{"ix":41,"action":{"kind":"Deliver","chain":"consumer","numPackets":4},"partialState":{"h":9,"t":54,"consumerPower":[5000,12957,null,null],"outstandingDowntime":[true,false,true,true]}},{"ix":42,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":10,"t":60,"consumerPower":[5000,12957,null,null],"outstandingDowntime":[true,false,true,true]}},{"ix":43,"action":{"kind":"Delegate","val":0,"amt":2445},"partialState":{"h":5,"t":30,"tokens":[11982,10623,3000,1026],"delegation":[10982,9623,2000,26],"delegatorTokens":9999999976096}},{"ix":44,"action":{"kind":"Deliver","chain":"consumer","numPackets":1},"partialState":{"h":10,"t":60,"consumerPower":[5000,12957,null,null],"outstandingDowntime":[true,false,true,true]}},{"ix":45,"action":{"kind":"Undelegate","val":0,"amt":2701},"partialState":{"h":5,"t":30,"tokens":[9281,10623,3000,1026],"delegation":[8281,9623,2000,26],"delegatorTokens":9999999976096}},{"ix":46,"action":{"kind":"Deliver","chain":"consumer","numPackets":6},"partialState":{"h":10,"t":60,"consumerPower":[5000,12957,null,null],"outstandingDowntime":[true,false,true,true]}},{"ix":47,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":48,"action":{"kind":"Deliver","chain":"consumer","numPackets":1},"partialState":{"h":10,"t":60,"consumerPower":[5000,12957,null,null],"outstandingDowntime":[true,false,true,true]}},{"ix":49,"action":{"kind":"Delegate","val":2,"amt":1748},"partialState":{"h":5,"t":30,"tokens":[9281,10623,4748,1026],"delegation":[8281,9623,3748,26],"delegatorTokens":9999999974348}},{"ix":50,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":51,"action":{"kind":"Delegate","val":2,"amt":4417},"partialState":{"h":5,"t":30,"tokens":[9281,10623,9165,1026],"delegation":[8281,9623,8165,26],"delegatorTokens":9999999969931}},{"ix":52,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":53,"action":{"kind":"Undelegate","val":2,"amt":1728},"partialState":{"h":5,"t":30,"tokens":[9281,10623,7437,1026],"delegation":[8281,9623,6437,26],"delegatorTokens":9999999969931}},{"ix":54,"action":{"kind":"Deliver","chain":"consumer","numPackets":5},"partialState":{"h":10,"t":60,"consumerPower":[5000,12957,null,null],"outstandingDowntime":[true,false,true,true]}},{"ix":55,"action":{"kind":"Delegate","val":3,"amt":2760},"partialState":{"h":5,"t":30,"tokens":[9281,10623,7437,3786],"delegation":[8281,9623,6437,2786],"delegatorTokens":9999999967171}},{"ix":56,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":6,"t":36,"tokens":[9281,10623,7437,3786],"delegation":[8281,9623,6437,2786],"delegatorTokens":9999999967171,"jailed":[1000000000000023,null,null,null],"status":["unbonding","bonded","bonded","unbonded"]}},{"ix":57,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":7,"t":42,"tokens":[9281,10623,7437,3786],"delegation":[8281,9623,6437,2786],"delegatorTokens":9999999967171,"jailed":[1000000000000023,null,null,null],"status":["unbonding","bonded","bonded","unbonded"]}},{"ix":58,"action":{"kind":"Delegate","val":0,"amt":2542},"partialState":{"h":7,"t":42,"tokens":[11823,10623,7437,3786],"delegation":[10823,9623,6437,2786],"delegatorTokens":9999999964629}},{"ix":59,"action":{"kind":"Deliver","chain":"consumer","numPackets":1},"partialState":{"h":10,"t":60,"consumerPower":[5000,12957,null,null],"outstandingDowntime":[false,false,true,true]}},{"ix":60,"action":{"kind":"Undelegate","val":2,"amt":2147},"partialState":{"h":7,"t":42,"tokens":[11823,10623,5290,3786],"delegation":[10823,9623,4290,2786],"delegatorTokens":9999999964629}},{"ix":61,"action":{"kind":"Deliver","chain":"provider","numPackets":5},"partialState":{"h":7,"t":42,"tokens":[11823,10623,5290,3786],"delegation":[10823,9623,4290,2786],"delegatorTokens":9999999964629,"jailed":[1000000000000023,null,null,null],"status":["unbonding","bonded","bonded","unbonded"]}},{"ix":62,"action":{"kind":"Undelegate","val":0,"amt":4144},"partialState":{"h":7,"t":42,"tokens":[7679,10623,5290,3786],"delegation":[6679,9623,4290,2786],"delegatorTokens":9999999964629}},{"ix":63,"action":{"kind":"Delegate","val":1,"amt":1575},"partialState":{"h":7,"t":42,"tokens":[7679,12198,5290,3786],"delegation":[6679,11198,4290,2786],"delegatorTokens":9999999963054}},{"ix":64,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":65,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":66,"action":{"kind":"Deliver","chain":"consumer","numPackets":4},"partialState":{"h":10,"t":60,"consumerPower":[5000,12957,null,null],"outstandingDowntime":[false,false,true,true]}},{"ix":67,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":11,"t":66,"consumerPower":[null,10623,7437,null],"outstandingDowntime":[false,false,true,true]}},{"ix":68,"action":{"kind":"Undelegate","val":3,"amt":1005},"partialState":{"h":7,"t":42,"tokens":[7679,12198,5290,2781],"delegation":[6679,11198,4290,1781],"delegatorTokens":9999999963054}},{"ix":69,"action":{"kind":"Delegate","val":1,"amt":4125},"partialState":{"h":7,"t":42,"tokens":[7679,16323,5290,2781],"delegation":[6679,15323,4290,1781],"delegatorTokens":9999999958929}},{"ix":70,"action":{"kind":"Deliver","chain":"consumer","numPackets":6},"partialState":{"h":11,"t":66,"consumerPower":[null,10623,7437,null],"outstandingDowntime":[false,false,true,true]}},{"ix":71,"action":{"kind":"Undelegate","val":3,"amt":3568},"partialState":{"h":7,"t":42,"tokens":[7679,16323,5290,2781],"delegation":[6679,15323,4290,1781],"delegatorTokens":9999999958929}},{"ix":72,"action":{"kind":"Undelegate","val":1,"amt":1021},"partialState":{"h":7,"t":42,"tokens":[7679,15302,5290,2781],"delegation":[6679,14302,4290,1781],"delegatorTokens":9999999958929}},{"ix":73,"action":{"kind":"Deliver","chain":"provider","numPackets":6},"partialState":{"h":7,"t":42,"tokens":[7679,15302,5290,2781],"delegation":[6679,14302,4290,1781],"delegatorTokens":9999999958929,"jailed":[1000000000000023,null,null,null],"status":["unbonding","bonded","bonded","unbonded"]}},{"ix":74,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":75,"action":{"kind":"Delegate","val":2,"amt":2069},"partialState":{"h":7,"t":42,"tokens":[7679,15302,7359,2781],"delegation":[6679,14302,6359,1781],"delegatorTokens":9999999956860}},{"ix":76,"action":{"kind":"Deliver","chain":"provider","numPackets":1},"partialState":{"h":7,"t":42,"tokens":[7679,15302,7359,2781],"delegation":[6679,14302,6359,1781],"delegatorTokens":9999999956860,"jailed":[1000000000000023,null,null,null],"status":["unbonding","bonded","bonded","unbonded"]}},{"ix":77,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":8,"t":48,"tokens":[7679,15302,7359,2781],"delegation":[6679,14302,6359,1781],"delegatorTokens":9999999956860,"jailed":[1000000000000023,null,null,null],"status":["unbonding","bonded","bonded","unbonded"]}},{"ix":78,"action":{"kind":"Delegate","val":1,"amt":3877},"partialState":{"h":8,"t":48,"tokens":[7679,19179,7359,2781],"delegation":[6679,18179,6359,1781],"delegatorTokens":9999999952983}},{"ix":79,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":9,"t":54,"tokens":[7679,19179,7359,2781],"delegation":[6679,18179,6359,1781],"delegatorTokens":9999999952983,"jailed":[1000000000000023,null,null,null],"status":["unbonding","bonded","bonded","unbonded"]}},{"ix":80,"action":{"kind":"Delegate","val":3,"amt":3250},"partialState":{"h":9,"t":54,"tokens":[7679,19179,7359,6031],"delegation":[6679,18179,6359,5031],"delegatorTokens":9999999949733}},{"ix":81,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":10,"t":60,"tokens":[7679,19179,7359,6031],"delegation":[6679,18179,6359,5031],"delegatorTokens":9999999949733,"jailed":[1000000000000023,null,null,null],"status":["unbonding","bonded","bonded","unbonded"]}},{"ix":82,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":11,"t":66,"tokens":[7679,19179,7359,6031],"delegation":[6679,18179,6359,5031],"delegatorTokens":9999999949733,"jailed":[1000000000000023,null,null,null],"status":["unbonding","bonded","bonded","unbonded"]}},{"ix":83,"action":{"kind":"Deliver","chain":"provider","numPackets":2},"partialState":{"h":11,"t":66,"tokens":[7679,19179,7359,6031],"delegation":[6679,18179,6359,5031],"delegatorTokens":9999999949733,"jailed":[1000000000000023,null,null,null],"status":["unbonding","bonded","bonded","unbonded"]}},{"ix":84,"action":{"kind":"Delegate","val":0,"amt":3060},"partialState":{"h":11,"t":66,"tokens":[10739,19179,7359,6031],"delegation":[9739,18179,6359,5031],"delegatorTokens":9999999946673}},{"ix":85,"action":{"kind":"Delegate","val":3,"amt":1707},"partialState":{"h":11,"t":66,"tokens":[10739,19179,7359,7738],"delegation":[9739,18179,6359,6738],"delegatorTokens":9999999944966}},{"ix":86,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":87,"action":{"kind":"Undelegate","val":2,"amt":3933},"partialState":{"h":11,"t":66,"tokens":[10739,19179,3426,7738],"delegation":[9739,18179,2426,6738],"delegatorTokens":9999999944966}},{"ix":88,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":89,"action":{"kind":"Undelegate","val":3,"amt":2458},"partialState":{"h":11,"t":66,"tokens":[10739,19179,3426,5280],"delegation":[9739,18179,2426,4280],"delegatorTokens":9999999944966}},{"ix":90,"action":{"kind":"Deliver","chain":"provider","numPackets":6},"partialState":{"h":11,"t":66,"tokens":[10739,19179,3426,5280],"delegation":[9739,18179,2426,4280],"delegatorTokens":9999999944966,"jailed":[1000000000000023,null,null,null],"status":["unbonding","bonded","bonded","unbonded"]}},{"ix":91,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":12,"t":72,"consumerPower":[null,10623,7437,null],"outstandingDowntime":[false,false,true,true]}},{"ix":92,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":93,"action":{"kind":"Deliver","chain":"consumer","numPackets":1},"partialState":{"h":12,"t":72,"consumerPower":[null,10623,7437,null],"outstandingDowntime":[false,false,true,true]}},{"ix":94,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":12,"t":72,"tokens":[10739,19179,3426,5280],"delegation":[9739,18179,2426,4280],"delegatorTokens":9999999944966,"jailed":[1000000000000023,null,null,null],"status":["unbonding","bonded","unbonding","bonded"]}},{"ix":95,"action":{"kind":"Deliver","chain":"provider","numPackets":6},"partialState":{"h":12,"t":72,"tokens":[10739,19179,3426,5280],"delegation":[9739,18179,2426,4280],"delegatorTokens":9999999944966,"jailed":[1000000000000023,null,null,null],"status":["unbonding","bonded","unbonding","bonded"]}},{"ix":96,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":97,"action":{"kind":"Delegate","val":1,"amt":3432},"partialState":{"h":12,"t":72,"tokens":[10739,22611,3426,5280],"delegation":[9739,21611,2426,4280],"delegatorTokens":9999999941534}},{"ix":98,"action":{"kind":"Undelegate","val":0,"amt":1666},"partialState":{"h":12,"t":72,"tokens":[9073,22611,3426,5280],"delegation":[8073,21611,2426,4280],"delegatorTokens":9999999941534}},{"ix":99,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":100,"action":{"kind":"Delegate","val":2,"amt":2565},"partialState":{"h":12,"t":72,"tokens":[9073,22611,5991,5280],"delegation":[8073,21611,4991,4280],"delegatorTokens":9999999938969}},{"ix":101,"action":{"kind":"Undelegate","val":0,"amt":3905},"partialState":{"h":12,"t":72,"tokens":[5168,22611,5991,5280],"delegation":[4168,21611,4991,4280],"delegatorTokens":9999999938969}},{"ix":102,"action":{"kind":"Delegate","val":2,"amt":4605},"partialState":{"h":12,"t":72,"tokens":[5168,22611,10596,5280],"delegation":[4168,21611,9596,4280],"delegatorTokens":9999999934364}},{"ix":103,"action":{"kind":"Delegate","val":0,"amt":4338},"partialState":{"h":12,"t":72,"tokens":[9506,22611,10596,5280],"delegation":[8506,21611,9596,4280],"delegatorTokens":9999999930026}},{"ix":104,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":13,"t":78,"tokens":[9506,22611,10596,5280],"delegation":[8506,21611,9596,4280],"delegatorTokens":9999999930026,"jailed":[1000000000000023,null,null,null],"status":["unbonding","bonded","bonded","unbonding"]}},{"ix":105,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":106,"action":{"kind":"Deliver","chain":"provider","numPackets":1},"partialState":{"h":13,"t":78,"tokens":[9506,22611,10596,5280],"delegation":[8506,21611,9596,4280],"delegatorTokens":9999999930026,"jailed":[1000000000000023,null,null,null],"status":["unbonding","bonded","bonded","unbonding"]}},{"ix":107,"action":{"kind":"Undelegate","val":2,"amt":3728},"partialState":{"h":13,"t":78,"tokens":[9506,22611,6868,5280],"delegation":[8506,21611,5868,4280],"delegatorTokens":9999999930026}},{"ix":108,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":109,"action":{"kind":"Undelegate","val":0,"amt":2405},"partialState":{"h":13,"t":78,"tokens":[7101,22611,6868,5280],"delegation":[6101,21611,5868,4280],"delegatorTokens":9999999930026}},{"ix":110,"action":{"kind":"Deliver","chain":"consumer","numPackets":6},"partialState":{"h":12,"t":72,"consumerPower":[null,10623,7437,null],"outstandingDowntime":[false,false,true,true]}},{"ix":111,"action":{"kind":"Delegate","val":3,"amt":1810},"partialState":{"h":13,"t":78,"tokens":[7101,22611,6868,7090],"delegation":[6101,21611,5868,6090],"delegatorTokens":9999999928216}},{"ix":112,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":13,"t":78,"consumerPower":[null,19179,null,5280],"outstandingDowntime":[false,false,true,true]}},{"ix":113,"action":{"kind":"Deliver","chain":"consumer","numPackets":2},"partialState":{"h":13,"t":78,"consumerPower":[null,19179,null,5280],"outstandingDowntime":[false,false,true,true]}},{"ix":114,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":115,"action":{"kind":"Undelegate","val":3,"amt":4069},"partialState":{"h":13,"t":78,"tokens":[7101,22611,6868,3021],"delegation":[6101,21611,5868,2021],"delegatorTokens":9999999928216}},{"ix":116,"action":{"kind":"Undelegate","val":3,"amt":4278},"partialState":{"h":13,"t":78,"tokens":[7101,22611,6868,3021],"delegation":[6101,21611,5868,2021],"delegatorTokens":9999999928216}},{"ix":117,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":14,"t":84,"consumerPower":[null,19179,null,5280],"outstandingDowntime":[false,false,true,true]}},{"ix":118,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":15,"t":90,"consumerPower":[null,19179,null,5280],"outstandingDowntime":[false,false,true,true]}},{"ix":119,"action":{"kind":"Deliver","chain":"provider","numPackets":3},"partialState":{"h":13,"t":78,"tokens":[7101,22611,6868,3021],"delegation":[6101,21611,5868,2021],"delegatorTokens":9999999928216,"jailed":[1000000000000023,null,null,null],"status":["unbonding","bonded","bonded","unbonding"]}},{"ix":120,"action":{"kind":"Deliver","chain":"consumer","numPackets":5},"partialState":{"h":15,"t":90,"consumerPower":[null,19179,null,5280],"outstandingDowntime":[false,false,true,true]}},{"ix":121,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":16,"t":96,"consumerPower":[null,19179,null,5280],"outstandingDowntime":[false,false,true,true]}},{"ix":122,"action":{"kind":"Deliver","chain":"provider","numPackets":3},"partialState":{"h":13,"t":78,"tokens":[7101,22611,6868,3021],"delegation":[6101,21611,5868,2021],"delegatorTokens":9999999928216,"jailed":[1000000000000023,null,null,null],"status":["unbonding","bonded","bonded","unbonding"]}},{"ix":123,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":17,"t":102,"consumerPower":[null,19179,null,5280],"outstandingDowntime":[false,false,true,true]}},{"ix":124,"action":{"kind":"Deliver","chain":"provider","numPackets":3},"partialState":{"h":13,"t":78,"tokens":[7101,22611,6868,3021],"delegation":[6101,21611,5868,2021],"delegatorTokens":9999999928216,"jailed":[1000000000000023,null,null,null],"status":["unbonding","bonded","bonded","unbonding"]}},{"ix":125,"action":{"kind":"Undelegate","val":3,"amt":2970},"partialState":{"h":13,"t":78,"tokens":[7101,22611,6868,3021],"delegation":[6101,21611,5868,2021],"delegatorTokens":9999999928216}},{"ix":126,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":14,"t":84,"tokens":[7101,22611,6868,3021],"delegation":[6101,21611,5868,2021],"delegatorTokens":9999999928216,"jailed":[1000000000000023,null,null,null],"status":["unbonding","bonded","bonded","unbonding"]}},{"ix":127,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":18,"t":108,"consumerPower":[null,19179,null,5280],"outstandingDowntime":[false,false,true,true]}},{"ix":128,"action":{"kind":"Delegate","val":0,"amt":3408},"partialState":{"h":14,"t":84,"tokens":[10509,22611,6868,3021],"delegation":[9509,21611,5868,2021],"delegatorTokens":9999999924808}},{"ix":129,"action":{"kind":"Deliver","chain":"consumer","numPackets":6},"partialState":{"h":18,"t":108,"consumerPower":[null,19179,null,5280],"outstandingDowntime":[false,false,true,true]}},{"ix":130,"action":{"kind":"Deliver","chain":"consumer","numPackets":2},"partialState":{"h":18,"t":108,"consumerPower":[null,19179,null,5280],"outstandingDowntime":[false,false,true,true]}},{"ix":131,"action":{"kind":"Deliver","chain":"consumer","numPackets":4},"partialState":{"h":18,"t":108,"consumerPower":[null,19179,null,5280],"outstandingDowntime":[false,false,true,true]}},{"ix":132,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":133,"action":{"kind":"Undelegate","val":0,"amt":1855},"partialState":{"h":14,"t":84,"tokens":[8654,22611,6868,3021],"delegation":[7654,21611,5868,2021],"delegatorTokens":9999999924808}},{"ix":134,"action":{"kind":"Deliver","chain":"consumer","numPackets":2},"partialState":{"h":18,"t":108,"consumerPower":[null,19179,null,5280],"outstandingDowntime":[false,false,true,true]}},{"ix":135,"action":{"kind":"Delegate","val":2,"amt":2658},"partialState":{"h":14,"t":84,"tokens":[8654,22611,9526,3021],"delegation":[7654,21611,8526,2021],"delegatorTokens":9999999922150}},{"ix":136,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":19,"t":114,"consumerPower":[null,22611,10596,null],"outstandingDowntime":[false,false,true,true]}},{"ix":137,"action":{"kind":"Delegate","val":2,"amt":1511},"partialState":{"h":14,"t":84,"tokens":[8654,22611,11037,3021],"delegation":[7654,21611,10037,2021],"delegatorTokens":9999999920639}},{"ix":138,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":20,"t":120,"consumerPower":[null,22611,10596,null],"outstandingDowntime":[false,false,true,true]}},{"ix":139,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":140,"action":{"kind":"Delegate","val":0,"amt":1110},"partialState":{"h":14,"t":84,"tokens":[9764,22611,11037,3021],"delegation":[8764,21611,10037,2021],"delegatorTokens":9999999919529}},{"ix":141,"action":{"kind":"Delegate","val":2,"amt":2454},"partialState":{"h":14,"t":84,"tokens":[9764,22611,13491,3021],"delegation":[8764,21611,12491,2021],"delegatorTokens":9999999917075}},{"ix":142,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":143,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":15,"t":90,"tokens":[9764,22611,13491,3021],"delegation":[8764,21611,12491,2021],"delegatorTokens":9999999917075,"jailed":[1000000000000023,null,null,null],"status":["unbonding","bonded","bonded","unbonding"]}},{"ix":144,"action":{"kind":"Undelegate","val":3,"amt":2256},"partialState":{"h":15,"t":90,"tokens":[9764,22611,13491,3021],"delegation":[8764,21611,12491,2021],"delegatorTokens":9999999917075}},{"ix":145,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":146,"action":{"kind":"Delegate","val":1,"amt":1516},"partialState":{"h":15,"t":90,"tokens":[9764,24127,13491,3021],"delegation":[8764,23127,12491,2021],"delegatorTokens":9999999915559}},{"ix":147,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":16,"t":96,"tokens":[9764,24127,13491,3021],"delegation":[8764,23127,12491,2021],"delegatorTokens":9999999915559,"jailed":[1000000000000023,null,null,null],"status":["unbonding","bonded","bonded","unbonding"]}},{"ix":148,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":17,"t":102,"tokens":[9764,24127,13491,3021],"delegation":[8764,23127,12491,2021],"delegatorTokens":9999999915559,"jailed":[1000000000000023,null,null,null],"status":["unbonding","bonded","bonded","unbonding"]}},{"ix":149,"action":{"kind":"Deliver","chain":"provider","numPackets":2},"partialState":{"h":17,"t":102,"tokens":[9764,24127,13491,3021],"delegation":[8764,23127,12491,2021],"delegatorTokens":9999999915559,"jailed":[1000000000000023,null,null,null],"status":["unbonding","bonded","bonded","unbonding"]}},{"ix":150,"action":{"kind":"Deliver","chain":"provider","numPackets":3},"partialState":{"h":17,"t":102,"tokens":[9764,24127,13491,3021],"delegation":[8764,23127,12491,2021],"delegatorTokens":9999999915559,"jailed":[1000000000000023,null,null,null],"status":["unbonding","bonded","bonded","unbonding"]}},{"ix":151,"action":{"kind":"Undelegate","val":2,"amt":1003},"partialState":{"h":17,"t":102,"tokens":[9764,24127,12488,3021],"delegation":[8764,23127,11488,2021],"delegatorTokens":9999999915559}},{"ix":152,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":18,"t":108,"tokens":[9764,24127,12488,3021],"delegation":[8764,23127,11488,2021],"delegatorTokens":9999999915559,"jailed":[1000000000000023,null,null,null],"status":["unbonding","bonded","bonded","unbonding"]}},{"ix":153,"action":{"kind":"Delegate","val":0,"amt":2303},"partialState":{"h":18,"t":108,"tokens":[12067,24127,12488,3021],"delegation":[11067,23127,11488,2021],"delegatorTokens":9999999913256}},{"ix":154,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":155,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":19,"t":114,"tokens":[12067,24127,12488,3021],"delegation":[11067,23127,11488,2021],"delegatorTokens":9999999913256,"jailed":[1000000000000023,null,null,null],"status":["unbonding","bonded","bonded","unbonding"]}},{"ix":156,"action":{"kind":"Deliver","chain":"provider","numPackets":6},"partialState":{"h":19,"t":114,"tokens":[12067,24127,12488,3021],"delegation":[11067,23127,11488,2021],"delegatorTokens":9999999913256,"jailed":[1000000000000023,null,null,null],"status":["unbonding","bonded","bonded","unbonding"]}},{"ix":157,"action":{"kind":"Delegate","val":3,"amt":2667},"partialState":{"h":19,"t":114,"tokens":[12067,24127,12488,5688],"delegation":[11067,23127,11488,4688],"delegatorTokens":9999999910589}},{"ix":158,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":21,"t":126,"consumerPower":[null,22611,10596,null],"outstandingDowntime":[false,false,true,true]}},{"ix":159,"action":{"kind":"Undelegate","val":1,"amt":3732},"partialState":{"h":19,"t":114,"tokens":[12067,20395,12488,5688],"delegation":[11067,19395,11488,4688],"delegatorTokens":9999999910589}},{"ix":160,"action":{"kind":"Deliver","chain":"consumer","numPackets":6},"partialState":{"h":21,"t":126,"consumerPower":[null,22611,10596,null],"outstandingDowntime":[false,false,true,true]}},{"ix":161,"action":{"kind":"Delegate","val":1,"amt":1216},"partialState":{"h":19,"t":114,"tokens":[12067,21611,12488,5688],"delegation":[11067,20611,11488,4688],"delegatorTokens":9999999909373}},{"ix":162,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":163,"action":{"kind":"Deliver","chain":"consumer","numPackets":4},"partialState":{"h":21,"t":126,"consumerPower":[null,22611,10596,null],"outstandingDowntime":[false,false,true,true]}},{"ix":164,"action":{"kind":"Delegate","val":0,"amt":4188},"partialState":{"h":19,"t":114,"tokens":[16255,21611,12488,5688],"delegation":[15255,20611,11488,4688],"delegatorTokens":9999999905185}},{"ix":165,"action":{"kind":"Undelegate","val":2,"amt":3002},"partialState":{"h":19,"t":114,"tokens":[16255,21611,9486,5688],"delegation":[15255,20611,8486,4688],"delegatorTokens":9999999905185}},{"ix":166,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":20,"t":120,"tokens":[16255,21611,9486,5688],"delegation":[15255,20611,8486,4688],"delegatorTokens":9999999905185,"jailed":[1000000000000023,null,null,null],"status":["unbonding","bonded","bonded","unbonding"]}},{"ix":167,"action":{"kind":"Undelegate","val":2,"amt":4407},"partialState":{"h":20,"t":120,"tokens":[16255,21611,5079,5688],"delegation":[15255,20611,4079,4688],"delegatorTokens":9999999905185}},{"ix":168,"action":{"kind":"Deliver","chain":"provider","numPackets":6},"partialState":{"h":20,"t":120,"tokens":[16255,21611,5079,5688],"delegation":[15255,20611,4079,4688],"delegatorTokens":9999999905185,"jailed":[1000000000000023,null,null,null],"status":["unbonding","bonded","bonded","unbonding"]}},{"ix":169,"action":{"kind":"Deliver","chain":"consumer","numPackets":1},"partialState":{"h":21,"t":126,"consumerPower":[null,22611,10596,null],"outstandingDowntime":[false,false,true,true]}},{"ix":170,"action":{"kind":"Deliver","chain":"provider","numPackets":3},"partialState":{"h":20,"t":120,"tokens":[16255,21611,5079,5688],"delegation":[15255,20611,4079,4688],"delegatorTokens":9999999905185,"jailed":[1000000000000023,null,null,null],"status":["unbonding","bonded","bonded","unbonding"]}},{"ix":171,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":172,"action":{"kind":"Undelegate","val":3,"amt":1914},"partialState":{"h":20,"t":120,"tokens":[16255,21611,5079,3774],"delegation":[15255,20611,4079,2774],"delegatorTokens":9999999905185}},{"ix":173,"action":{"kind":"Delegate","val":0,"amt":2928},"partialState":{"h":20,"t":120,"tokens":[19183,21611,5079,3774],"delegation":[18183,20611,4079,2774],"delegatorTokens":9999999902257}},{"ix":174,"action":{"kind":"Deliver","chain":"provider","numPackets":3},"partialState":{"h":20,"t":120,"tokens":[19183,21611,5079,3774],"delegation":[18183,20611,4079,2774],"delegatorTokens":9999999902257,"jailed":[1000000000000023,null,null,null],"status":["unbonding","bonded","bonded","unbonding"]}},{"ix":175,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":176,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":21,"t":126,"tokens":[19183,21611,5079,3774],"delegation":[18183,20611,4079,2774],"delegatorTokens":9999999917959,"jailed":[1000000000000023,null,null,null],"status":["unbonding","bonded","bonded","unbonding"]}},{"ix":177,"action":{"kind":"Deliver","chain":"consumer","numPackets":5},"partialState":{"h":21,"t":126,"consumerPower":[null,22611,10596,null],"outstandingDowntime":[false,false,true,true]}},{"ix":178,"action":{"kind":"Deliver","chain":"consumer","numPackets":3},"partialState":{"h":21,"t":126,"consumerPower":[null,22611,10596,null],"outstandingDowntime":[false,false,true,true]}},{"ix":179,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":180,"action":{"kind":"Deliver","chain":"provider","numPackets":6},"partialState":{"h":21,"t":126,"tokens":[19183,21611,5079,3774],"delegation":[18183,20611,4079,2774],"delegatorTokens":9999999917959,"jailed":[1000000000000023,null,null,null],"status":["unbonding","bonded","bonded","unbonding"]}},{"ix":181,"action":{"kind":"Undelegate","val":0,"amt":3638},"partialState":{"h":21,"t":126,"tokens":[15545,21611,5079,3774],"delegation":[14545,20611,4079,2774],"delegatorTokens":9999999917959}},{"ix":182,"action":{"kind":"Deliver","chain":"consumer","numPackets":1},"partialState":{"h":21,"t":126,"consumerPower":[null,22611,10596,null],"outstandingDowntime":[false,false,true,true]}},{"ix":183,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":22,"t":132,"consumerPower":[null,21611,9486,null],"outstandingDowntime":[false,false,true,true]}},{"ix":184,"action":{"kind":"Undelegate","val":0,"amt":3674},"partialState":{"h":21,"t":126,"tokens":[11871,21611,5079,3774],"delegation":[10871,20611,4079,2774],"delegatorTokens":9999999917959}},{"ix":185,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":23,"t":138,"consumerPower":[null,21611,9486,null],"outstandingDowntime":[false,false,true,true]}},{"ix":186,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":187,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":188,"action":{"kind":"Delegate","val":0,"amt":4303},"partialState":{"h":21,"t":126,"tokens":[16174,21611,5079,3774],"delegation":[15174,20611,4079,2774],"delegatorTokens":9999999913656}},{"ix":189,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":190,"action":{"kind":"Deliver","chain":"provider","numPackets":4},"partialState":{"h":21,"t":126,"tokens":[16174,21611,5079,3774],"delegation":[15174,20611,4079,2774],"delegatorTokens":9999999913656,"jailed":[1000000000000023,null,null,null],"status":["unbonding","bonded","bonded","unbonding"]}},{"ix":191,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":192,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":193,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":194,"action":{"kind":"Undelegate","val":2,"amt":1450},"partialState":{"h":21,"t":126,"tokens":[16174,21611,3629,3774],"delegation":[15174,20611,2629,2774],"delegatorTokens":9999999913656}},{"ix":195,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":196,"action":{"kind":"Deliver","chain":"consumer","numPackets":1},"partialState":{"h":23,"t":138,"consumerPower":[null,21611,9486,null],"outstandingDowntime":[false,false,true,true]}},{"ix":197,"action":{"kind":"Undelegate","val":0,"amt":4115},"partialState":{"h":21,"t":126,"tokens":[12059,21611,3629,3774],"delegation":[11059,20611,2629,2774],"delegatorTokens":9999999913656}},{"ix":198,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":199,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":24,"t":144,"consumerPower":[null,21611,9486,null],"outstandingDowntime":[false,false,true,true]}}],"events":["send_downtime_slash_request","send_vsc_without_downtime_ack","send_downtime_slash_request","send_downtime_slash_request","insufficient_shares","insufficient_shares","send_vsc_without_downtime_ack","insufficient_shares","insufficient_shares","consumer_update_val","receive_slash_request_unbonded","receive_slash_request_unbonded","receive_downtime_slash_request","jail","send_vsc_with_downtime_ack","insufficient_shares","consumer_update_val","more_than_one_third_val_power_change","send_vsc_without_downtime_ack","receive_downtime_slash_ack","consumer_del_val","consumer_update_val","consumer_add_val","insufficient_shares","send_vsc_without_downtime_ack","send_vsc_without_downtime_ack","send_vsc_without_downtime_ack","rebond_unval","send_vsc_without_downtime_ack","consumer_update_val","consumer_del_val","consumer_add_val","insufficient_shares","consumer_send_maturation","consumer_send_maturation","insufficient_shares","send_vsc_without_downtime_ack","consumer_update_val","consumer_add_val","consumer_del_val","consumer_send_maturation","consumer_send_maturation","send_vsc_without_downtime_ack","insufficient_shares","send_vsc_without_downtime_ack","some_undels_expired_but_not_completed","some_undels_expired_but_not_completed","send_vsc_without_downtime_ack","some_undels_expired_but_not_completed","send_vsc_without_downtime_ack","complete_undel_immediate","complete_undel_immediate","complete_undel_immediate","complete_undel_immediate","complete_undel_immediate","complete_undel_immediate","complete_undel_immediate","set_unval_hold_false","send_vsc_without_downtime_ack","consumer_send_maturation","consumer_send_maturation","consumer_send_maturation","consumer_update_val","consumer_update_val"]},{"meta":{"commit":"7ffd0c04e4205cbc9caf212abfe6c59ee43153bf"},"constants":{"P":"provider","C":"consumer","UNBONDING_SECONDS_P":70,"UNBONDING_SECONDS_C":50,"TRUSTING_SECONDS":49,"NUM_VALIDATORS":4,"MAX_VALIDATORS":2,"SLASH_DOUBLESIGN":0,"SLASH_DOWNTIME":0,"JAIL_SECONDS":999999999999999,"BLOCK_SECONDS":6,"INITIAL_DELEGATOR_TOKENS":10000000000000,"DELEGATE_AMT_MIN":1000,"DELEGATE_AMT_MAX":5000,"UNDELEGATE_AMT_MIN":1000,"UNDELEGATE_AMT_MAX":5000,"ISDOWNTIME_PROBABILITY":0.5,"MAX_NUM_PACKETS_FOR_DELIVER":6},"actions":[{"ix":0,"action":{"kind":"Delegate","val":1,"amt":4872},"partialState":{"h":1,"t":6,"tokens":[5000,8872,3000,2000],"delegation":[4000,7872,2000,1000],"delegatorTokens":9999999995128}},{"ix":1,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":2,"action":{"kind":"ConsumerSlash","val":1,"infractionHeight":0,"isDowntime":true},"partialState":{"h":1,"t":6,"outstandingDowntime":[false,true,false,false]}},{"ix":3,"action":{"kind":"Deliver","chain":"provider","numPackets":3},"partialState":{"h":1,"t":6,"tokens":[5000,8872,3000,2000],"delegation":[4000,7872,2000,1000],"delegatorTokens":9999999995128,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":4,"action":{"kind":"Delegate","val":0,"amt":2636},"partialState":{"h":1,"t":6,"tokens":[7636,8872,3000,2000],"delegation":[6636,7872,2000,1000],"delegatorTokens":9999999992492}},{"ix":5,"action":{"kind":"Delegate","val":3,"amt":4225},"partialState":{"h":1,"t":6,"tokens":[7636,8872,3000,6225],"delegation":[6636,7872,2000,5225],"delegatorTokens":9999999988267}},{"ix":6,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":7,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":8,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":2,"t":12,"tokens":[7636,8872,3000,6225],"delegation":[6636,7872,2000,5225],"delegatorTokens":9999999988267,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":9,"action":{"kind":"Undelegate","val":3,"amt":1969},"partialState":{"h":2,"t":12,"tokens":[7636,8872,3000,4256],"delegation":[6636,7872,2000,3256],"delegatorTokens":9999999988267}},{"ix":10,"action":{"kind":"ConsumerSlash","val":2,"infractionHeight":0,"isDowntime":true},"partialState":{"h":1,"t":6,"outstandingDowntime":[false,true,true,false]}},{"ix":11,"action":{"kind":"Delegate","val":0,"amt":2622},"partialState":{"h":2,"t":12,"tokens":[10258,8872,3000,4256],"delegation":[9258,7872,2000,3256],"delegatorTokens":9999999985645}},{"ix":12,"action":{"kind":"Undelegate","val":0,"amt":4322},"partialState":{"h":2,"t":12,"tokens":[5936,8872,3000,4256],"delegation":[4936,7872,2000,3256],"delegatorTokens":9999999985645}},{"ix":13,"action":{"kind":"Deliver","chain":"consumer","numPackets":4},"partialState":{"h":1,"t":6,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,true,true,false]}},{"ix":14,"action":{"kind":"ConsumerSlash","val":3,"infractionHeight":0,"isDowntime":true},"partialState":{"h":1,"t":6,"outstandingDowntime":[false,true,true,true]}},{"ix":15,"action":{"kind":"Deliver","chain":"provider","numPackets":1},"partialState":{"h":2,"t":12,"tokens":[5936,8872,3000,4256],"delegation":[4936,7872,2000,3256],"delegatorTokens":9999999985645,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":16,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":2,"t":12,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,true,true,true]}},{"ix":17,"action":{"kind":"Undelegate","val":2,"amt":3477},"partialState":{"h":2,"t":12,"tokens":[5936,8872,3000,4256],"delegation":[4936,7872,2000,3256],"delegatorTokens":9999999985645}},{"ix":18,"action":{"kind":"Undelegate","val":1,"amt":3873},"partialState":{"h":2,"t":12,"tokens":[5936,4999,3000,4256],"delegation":[4936,3999,2000,3256],"delegatorTokens":9999999985645}},{"ix":19,"action":{"kind":"Deliver","chain":"provider","numPackets":5},"partialState":{"h":2,"t":12,"tokens":[5936,4999,3000,4256],"delegation":[4936,3999,2000,3256],"delegatorTokens":9999999985645,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":20,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":3,"t":18,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,true,true,true]}},{"ix":21,"action":{"kind":"Undelegate","val":2,"amt":3953},"partialState":{"h":2,"t":12,"tokens":[5936,4999,3000,4256],"delegation":[4936,3999,2000,3256],"delegatorTokens":9999999985645}},{"ix":22,"action":{"kind":"Deliver","chain":"provider","numPackets":6},"partialState":{"h":2,"t":12,"tokens":[5936,4999,3000,4256],"delegation":[4936,3999,2000,3256],"delegatorTokens":9999999985645,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":23,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":4,"t":24,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,true,true,true]}},{"ix":24,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":25,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":3,"t":18,"tokens":[5936,4999,3000,4256],"delegation":[4936,3999,2000,3256],"delegatorTokens":9999999985645,"jailed":[null,1000000000000011,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":26,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":27,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":4,"t":24,"tokens":[5936,4999,3000,4256],"delegation":[4936,3999,2000,3256],"delegatorTokens":9999999985645,"jailed":[null,1000000000000011,null,null],"status":["bonded","unbonding","unbonded","bonded"]}},{"ix":28,"action":{"kind":"Deliver","chain":"provider","numPackets":4},"partialState":{"h":4,"t":24,"tokens":[5936,4999,3000,4256],"delegation":[4936,3999,2000,3256],"delegatorTokens":9999999985645,"jailed":[null,1000000000000011,null,null],"status":["bonded","unbonding","unbonded","bonded"]}},{"ix":29,"action":{"kind":"Undelegate","val":3,"amt":1858},"partialState":{"h":4,"t":24,"tokens":[5936,4999,3000,2398],"delegation":[4936,3999,2000,1398],"delegatorTokens":9999999985645}},{"ix":30,"action":{"kind":"Deliver","chain":"consumer","numPackets":6},"partialState":{"h":4,"t":24,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,false,true,true]}},{"ix":31,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":5,"t":30,"tokens":[5936,4999,3000,2398],"delegation":[4936,3999,2000,1398],"delegatorTokens":9999999985645,"jailed":[null,1000000000000011,null,null],"status":["bonded","unbonding","bonded","unbonding"]}},{"ix":32,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":33,"action":{"kind":"Delegate","val":0,"amt":3037},"partialState":{"h":5,"t":30,"tokens":[8973,4999,3000,2398],"delegation":[7973,3999,2000,1398],"delegatorTokens":9999999982608}},{"ix":34,"action":{"kind":"Delegate","val":3,"amt":2592},"partialState":{"h":5,"t":30,"tokens":[8973,4999,3000,4990],"delegation":[7973,3999,2000,3990],"delegatorTokens":9999999980016}},{"ix":35,"action":{"kind":"Delegate","val":3,"amt":3372},"partialState":{"h":5,"t":30,"tokens":[8973,4999,3000,8362],"delegation":[7973,3999,2000,7362],"delegatorTokens":9999999976644}},{"ix":36,"action":{"kind":"Deliver","chain":"provider","numPackets":6},"partialState":{"h":5,"t":30,"tokens":[8973,4999,3000,8362],"delegation":[7973,3999,2000,7362],"delegatorTokens":9999999976644,"jailed":[null,1000000000000011,null,null],"status":["bonded","unbonding","bonded","unbonding"]}},{"ix":37,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":6,"t":36,"tokens":[8973,4999,3000,8362],"delegation":[7973,3999,2000,7362],"delegatorTokens":9999999976644,"jailed":[null,1000000000000011,null,null],"status":["bonded","unbonding","unbonding","bonded"]}},{"ix":38,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":5,"t":30,"consumerPower":[5936,4999,null,null],"outstandingDowntime":[false,false,true,true]}},{"ix":39,"action":{"kind":"Undelegate","val":2,"amt":2274},"partialState":{"h":6,"t":36,"tokens":[8973,4999,3000,8362],"delegation":[7973,3999,2000,7362],"delegatorTokens":9999999976644}},{"ix":40,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":7,"t":42,"tokens":[8973,4999,3000,8362],"delegation":[7973,3999,2000,7362],"delegatorTokens":9999999976644,"jailed":[null,1000000000000011,null,null],"status":["bonded","unbonding","unbonding","bonded"]}},{"ix":41,"action":{"kind":"Delegate","val":2,"amt":2432},"partialState":{"h":7,"t":42,"tokens":[8973,4999,5432,8362],"delegation":[7973,3999,4432,7362],"delegatorTokens":9999999974212}},{"ix":42,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":43,"action":{"kind":"Delegate","val":2,"amt":4913},"partialState":{"h":7,"t":42,"tokens":[8973,4999,10345,8362],"delegation":[7973,3999,9345,7362],"delegatorTokens":9999999969299}},{"ix":44,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":45,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":46,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":47,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":48,"action":{"kind":"Undelegate","val":2,"amt":3374},"partialState":{"h":7,"t":42,"tokens":[8973,4999,6971,8362],"delegation":[7973,3999,5971,7362],"delegatorTokens":9999999969299}},{"ix":49,"action":{"kind":"Undelegate","val":1,"amt":4207},"partialState":{"h":7,"t":42,"tokens":[8973,4999,6971,8362],"delegation":[7973,3999,5971,7362],"delegatorTokens":9999999969299}},{"ix":50,"action":{"kind":"Deliver","chain":"consumer","numPackets":4},"partialState":{"h":5,"t":30,"consumerPower":[5936,4999,null,null],"outstandingDowntime":[false,false,true,true]}},{"ix":51,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":52,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":53,"action":{"kind":"Deliver","chain":"provider","numPackets":6},"partialState":{"h":7,"t":42,"tokens":[8973,4999,6971,8362],"delegation":[7973,3999,5971,7362],"delegatorTokens":9999999969299,"jailed":[null,1000000000000011,null,null],"status":["bonded","unbonding","unbonding","bonded"]}},{"ix":54,"action":{"kind":"Undelegate","val":3,"amt":1824},"partialState":{"h":7,"t":42,"tokens":[8973,4999,6971,6538],"delegation":[7973,3999,5971,5538],"delegatorTokens":9999999969299}},{"ix":55,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":6,"t":36,"consumerPower":[8973,null,null,8362],"outstandingDowntime":[false,false,true,true]}},{"ix":56,"action":{"kind":"Deliver","chain":"consumer","numPackets":4},"partialState":{"h":6,"t":36,"consumerPower":[8973,null,null,8362],"outstandingDowntime":[false,false,true,true]}},{"ix":57,"action":{"kind":"Deliver","chain":"consumer","numPackets":5},"partialState":{"h":6,"t":36,"consumerPower":[8973,null,null,8362],"outstandingDowntime":[false,false,true,true]}},{"ix":58,"action":{"kind":"Delegate","val":3,"amt":3863},"partialState":{"h":7,"t":42,"tokens":[8973,4999,6971,10401],"delegation":[7973,3999,5971,9401],"delegatorTokens":9999999965436}},{"ix":59,"action":{"kind":"Delegate","val":0,"amt":1003},"partialState":{"h":7,"t":42,"tokens":[9976,4999,6971,10401],"delegation":[8976,3999,5971,9401],"delegatorTokens":9999999964433}},{"ix":60,"action":{"kind":"Deliver","chain":"provider","numPackets":4},"partialState":{"h":7,"t":42,"tokens":[9976,4999,6971,10401],"delegation":[8976,3999,5971,9401],"delegatorTokens":9999999964433,"jailed":[null,1000000000000011,null,null],"status":["bonded","unbonding","unbonding","bonded"]}},{"ix":61,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":62,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":63,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":64,"action":{"kind":"Delegate","val":2,"amt":1740},"partialState":{"h":7,"t":42,"tokens":[9976,4999,8711,10401],"delegation":[8976,3999,7711,9401],"delegatorTokens":9999999962693}},{"ix":65,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":66,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":7,"t":42,"consumerPower":[8973,null,null,8362],"outstandingDowntime":[false,false,true,true]}},{"ix":67,"action":{"kind":"Undelegate","val":1,"amt":4963},"partialState":{"h":7,"t":42,"tokens":[9976,4999,8711,10401],"delegation":[8976,3999,7711,9401],"delegatorTokens":9999999962693}},{"ix":68,"action":{"kind":"Delegate","val":1,"amt":3634},"partialState":{"h":7,"t":42,"tokens":[9976,8633,8711,10401],"delegation":[8976,7633,7711,9401],"delegatorTokens":9999999959059}},{"ix":69,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":70,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":71,"action":{"kind":"Undelegate","val":0,"amt":4337},"partialState":{"h":7,"t":42,"tokens":[5639,8633,8711,10401],"delegation":[4639,7633,7711,9401],"delegatorTokens":9999999959059}},{"ix":72,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":73,"action":{"kind":"Delegate","val":3,"amt":2077},"partialState":{"h":7,"t":42,"tokens":[5639,8633,8711,12478],"delegation":[4639,7633,7711,11478],"delegatorTokens":9999999956982}},{"ix":74,"action":{"kind":"Delegate","val":0,"amt":3383},"partialState":{"h":7,"t":42,"tokens":[9022,8633,8711,12478],"delegation":[8022,7633,7711,11478],"delegatorTokens":9999999953599}},{"ix":75,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":76,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":77,"action":{"kind":"Deliver","chain":"provider","numPackets":5},"partialState":{"h":7,"t":42,"tokens":[9022,8633,8711,12478],"delegation":[8022,7633,7711,11478],"delegatorTokens":9999999953599,"jailed":[null,1000000000000011,null,null],"status":["bonded","unbonding","unbonding","bonded"]}},{"ix":78,"action":{"kind":"Deliver","chain":"provider","numPackets":5},"partialState":{"h":7,"t":42,"tokens":[9022,8633,8711,12478],"delegation":[8022,7633,7711,11478],"delegatorTokens":9999999953599,"jailed":[null,1000000000000011,null,null],"status":["bonded","unbonding","unbonding","bonded"]}},{"ix":79,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":8,"t":48,"tokens":[9022,8633,8711,12478],"delegation":[8022,7633,7711,11478],"delegatorTokens":9999999953599,"jailed":[null,1000000000000011,null,null],"status":["bonded","unbonding","unbonding","bonded"]}},{"ix":80,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":81,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":82,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":8,"t":48,"consumerPower":[8973,null,null,8362],"outstandingDowntime":[false,false,true,true]}},{"ix":83,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":84,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":85,"action":{"kind":"Undelegate","val":0,"amt":1809},"partialState":{"h":8,"t":48,"tokens":[7213,8633,8711,12478],"delegation":[6213,7633,7711,11478],"delegatorTokens":9999999953599}},{"ix":86,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":9,"t":54,"tokens":[7213,8633,8711,12478],"delegation":[6213,7633,7711,11478],"delegatorTokens":9999999953599,"jailed":[null,1000000000000011,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":87,"action":{"kind":"Undelegate","val":3,"amt":3043},"partialState":{"h":9,"t":54,"tokens":[7213,8633,8711,9435],"delegation":[6213,7633,7711,8435],"delegatorTokens":9999999953599}},{"ix":88,"action":{"kind":"Delegate","val":3,"amt":4530},"partialState":{"h":9,"t":54,"tokens":[7213,8633,8711,13965],"delegation":[6213,7633,7711,12965],"delegatorTokens":9999999949069}},{"ix":89,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":90,"action":{"kind":"Delegate","val":0,"amt":3877},"partialState":{"h":9,"t":54,"tokens":[11090,8633,8711,13965],"delegation":[10090,7633,7711,12965],"delegatorTokens":9999999945192}},{"ix":91,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":92,"action":{"kind":"Deliver","chain":"consumer","numPackets":6},"partialState":{"h":8,"t":48,"consumerPower":[8973,null,null,8362],"outstandingDowntime":[false,false,true,true]}},{"ix":93,"action":{"kind":"Delegate","val":2,"amt":3297},"partialState":{"h":9,"t":54,"tokens":[11090,8633,12008,13965],"delegation":[10090,7633,11008,12965],"delegatorTokens":9999999941895}},{"ix":94,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":95,"action":{"kind":"Deliver","chain":"consumer","numPackets":3},"partialState":{"h":8,"t":48,"consumerPower":[8973,null,null,8362],"outstandingDowntime":[false,false,true,true]}},{"ix":96,"action":{"kind":"Deliver","chain":"consumer","numPackets":4},"partialState":{"h":8,"t":48,"consumerPower":[8973,null,null,8362],"outstandingDowntime":[false,false,true,true]}},{"ix":97,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":9,"t":54,"consumerPower":[9022,null,null,12478],"outstandingDowntime":[false,false,true,true]}},{"ix":98,"action":{"kind":"Deliver","chain":"consumer","numPackets":5},"partialState":{"h":9,"t":54,"consumerPower":[9022,null,null,12478],"outstandingDowntime":[false,false,true,true]}},{"ix":99,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":100,"action":{"kind":"Deliver","chain":"provider","numPackets":5},"partialState":{"h":9,"t":54,"tokens":[11090,8633,12008,13965],"delegation":[10090,7633,11008,12965],"delegatorTokens":9999999941895,"jailed":[null,1000000000000011,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":101,"action":{"kind":"Delegate","val":2,"amt":3322},"partialState":{"h":9,"t":54,"tokens":[11090,8633,15330,13965],"delegation":[10090,7633,14330,12965],"delegatorTokens":9999999938573}},{"ix":102,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":10,"t":60,"tokens":[11090,8633,15330,13965],"delegation":[10090,7633,14330,12965],"delegatorTokens":9999999938573,"jailed":[null,1000000000000011,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":103,"action":{"kind":"Deliver","chain":"provider","numPackets":5},"partialState":{"h":10,"t":60,"tokens":[11090,8633,15330,13965],"delegation":[10090,7633,14330,12965],"delegatorTokens":9999999938573,"jailed":[null,1000000000000011,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":104,"action":{"kind":"Undelegate","val":2,"amt":2055},"partialState":{"h":10,"t":60,"tokens":[11090,8633,13275,13965],"delegation":[10090,7633,12275,12965],"delegatorTokens":9999999938573}},{"ix":105,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":10,"t":60,"consumerPower":[9022,null,null,12478],"outstandingDowntime":[false,false,true,true]}},{"ix":106,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":11,"t":66,"tokens":[11090,8633,13275,13965],"delegation":[10090,7633,12275,12965],"delegatorTokens":9999999938573,"jailed":[null,1000000000000011,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":107,"action":{"kind":"Undelegate","val":0,"amt":3323},"partialState":{"h":11,"t":66,"tokens":[7767,8633,13275,13965],"delegation":[6767,7633,12275,12965],"delegatorTokens":9999999938573}},{"ix":108,"action":{"kind":"Undelegate","val":3,"amt":3383},"partialState":{"h":11,"t":66,"tokens":[7767,8633,13275,10582],"delegation":[6767,7633,12275,9582],"delegatorTokens":9999999938573}},{"ix":109,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":110,"action":{"kind":"Undelegate","val":1,"amt":4458},"partialState":{"h":11,"t":66,"tokens":[7767,4175,13275,10582],"delegation":[6767,3175,12275,9582],"delegatorTokens":9999999938573}},{"ix":111,"action":{"kind":"Undelegate","val":3,"amt":1173},"partialState":{"h":11,"t":66,"tokens":[7767,4175,13275,9409],"delegation":[6767,3175,12275,8409],"delegatorTokens":9999999938573}},{"ix":112,"action":{"kind":"Delegate","val":2,"amt":2406},"partialState":{"h":11,"t":66,"tokens":[7767,4175,15681,9409],"delegation":[6767,3175,14681,8409],"delegatorTokens":9999999936167}},{"ix":113,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":12,"t":72,"tokens":[7767,4175,15681,9409],"delegation":[6767,3175,14681,8409],"delegatorTokens":9999999936167,"jailed":[null,1000000000000011,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":114,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":115,"action":{"kind":"Delegate","val":0,"amt":3829},"partialState":{"h":12,"t":72,"tokens":[11596,4175,15681,9409],"delegation":[10596,3175,14681,8409],"delegatorTokens":9999999932338}},{"ix":116,"action":{"kind":"Undelegate","val":1,"amt":4302},"partialState":{"h":12,"t":72,"tokens":[11596,4175,15681,9409],"delegation":[10596,3175,14681,8409],"delegatorTokens":9999999932338}},{"ix":117,"action":{"kind":"Undelegate","val":3,"amt":2619},"partialState":{"h":12,"t":72,"tokens":[11596,4175,15681,6790],"delegation":[10596,3175,14681,5790],"delegatorTokens":9999999932338}},{"ix":118,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":11,"t":66,"consumerPower":[9022,null,null,12478],"outstandingDowntime":[false,false,true,true]}},{"ix":119,"action":{"kind":"Delegate","val":2,"amt":4208},"partialState":{"h":12,"t":72,"tokens":[11596,4175,19889,6790],"delegation":[10596,3175,18889,5790],"delegatorTokens":9999999928130}},{"ix":120,"action":{"kind":"Delegate","val":1,"amt":1959},"partialState":{"h":12,"t":72,"tokens":[11596,6134,19889,6790],"delegation":[10596,5134,18889,5790],"delegatorTokens":9999999926171}},{"ix":121,"action":{"kind":"Deliver","chain":"consumer","numPackets":2},"partialState":{"h":11,"t":66,"consumerPower":[9022,null,null,12478],"outstandingDowntime":[false,false,true,true]}},{"ix":122,"action":{"kind":"Delegate","val":2,"amt":2150},"partialState":{"h":12,"t":72,"tokens":[11596,6134,22039,6790],"delegation":[10596,5134,21039,5790],"delegatorTokens":9999999924021}},{"ix":123,"action":{"kind":"Undelegate","val":3,"amt":1219},"partialState":{"h":12,"t":72,"tokens":[11596,6134,22039,5571],"delegation":[10596,5134,21039,4571],"delegatorTokens":9999999924021}},{"ix":124,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":13,"t":78,"tokens":[11596,6134,22039,5571],"delegation":[10596,5134,21039,4571],"delegatorTokens":9999999924021,"jailed":[null,1000000000000011,null,null],"status":["bonded","unbonding","bonded","unbonding"]}},{"ix":125,"action":{"kind":"Delegate","val":2,"amt":2795},"partialState":{"h":13,"t":78,"tokens":[11596,6134,24834,5571],"delegation":[10596,5134,23834,4571],"delegatorTokens":9999999921226}},{"ix":126,"action":{"kind":"Undelegate","val":1,"amt":4591},"partialState":{"h":13,"t":78,"tokens":[11596,1543,24834,5571],"delegation":[10596,543,23834,4571],"delegatorTokens":9999999921226}},{"ix":127,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":12,"t":72,"consumerPower":[null,null,15330,13965],"outstandingDowntime":[false,false,true,true]}},{"ix":128,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":129,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":130,"action":{"kind":"Deliver","chain":"provider","numPackets":3},"partialState":{"h":13,"t":78,"tokens":[11596,1543,24834,5571],"delegation":[10596,543,23834,4571],"delegatorTokens":9999999921226,"jailed":[null,1000000000000011,null,null],"status":["bonded","unbonding","bonded","unbonding"]}},{"ix":131,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":132,"action":{"kind":"Undelegate","val":1,"amt":2701},"partialState":{"h":13,"t":78,"tokens":[11596,1543,24834,5571],"delegation":[10596,543,23834,4571],"delegatorTokens":9999999921226}},{"ix":133,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":134,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":13,"t":78,"consumerPower":[null,null,15330,13965],"outstandingDowntime":[false,false,true,true]}},{"ix":135,"action":{"kind":"Delegate","val":3,"amt":2020},"partialState":{"h":13,"t":78,"tokens":[11596,1543,24834,7591],"delegation":[10596,543,23834,6591],"delegatorTokens":9999999919206}},{"ix":136,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":137,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":14,"t":84,"tokens":[11596,1543,24834,7591],"delegation":[10596,543,23834,6591],"delegatorTokens":9999999919206,"jailed":[null,1000000000000011,null,null],"status":["bonded","unbonding","bonded","unbonding"]}},{"ix":138,"action":{"kind":"Undelegate","val":0,"amt":1182},"partialState":{"h":14,"t":84,"tokens":[10414,1543,24834,7591],"delegation":[9414,543,23834,6591],"delegatorTokens":9999999919206}},{"ix":139,"action":{"kind":"Delegate","val":2,"amt":2629},"partialState":{"h":14,"t":84,"tokens":[10414,1543,27463,7591],"delegation":[9414,543,26463,6591],"delegatorTokens":9999999916577}},{"ix":140,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":14,"t":84,"consumerPower":[null,null,15330,13965],"outstandingDowntime":[false,false,true,true]}},{"ix":141,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":142,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":143,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":15,"t":90,"consumerPower":[null,null,15330,13965],"outstandingDowntime":[false,false,true,true]}},{"ix":144,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":145,"action":{"kind":"Deliver","chain":"provider","numPackets":1},"partialState":{"h":14,"t":84,"tokens":[10414,1543,27463,7591],"delegation":[9414,543,26463,6591],"delegatorTokens":9999999916577,"jailed":[null,1000000000000011,null,null],"status":["bonded","unbonding","bonded","unbonding"]}},{"ix":146,"action":{"kind":"Delegate","val":0,"amt":2688},"partialState":{"h":14,"t":84,"tokens":[13102,1543,27463,7591],"delegation":[12102,543,26463,6591],"delegatorTokens":9999999913889}},{"ix":147,"action":{"kind":"Delegate","val":2,"amt":1807},"partialState":{"h":14,"t":84,"tokens":[13102,1543,29270,7591],"delegation":[12102,543,28270,6591],"delegatorTokens":9999999912082}},{"ix":148,"action":{"kind":"Deliver","chain":"provider","numPackets":4},"partialState":{"h":14,"t":84,"tokens":[13102,1543,29270,7591],"delegation":[12102,543,28270,6591],"delegatorTokens":9999999912082,"jailed":[null,1000000000000011,null,null],"status":["bonded","unbonding","bonded","unbonding"]}},{"ix":149,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":150,"action":{"kind":"Deliver","chain":"provider","numPackets":3},"partialState":{"h":14,"t":84,"tokens":[13102,1543,29270,7591],"delegation":[12102,543,28270,6591],"delegatorTokens":9999999912082,"jailed":[null,1000000000000011,null,null],"status":["bonded","unbonding","bonded","unbonding"]}},{"ix":151,"action":{"kind":"Undelegate","val":0,"amt":3967},"partialState":{"h":14,"t":84,"tokens":[9135,1543,29270,7591],"delegation":[8135,543,28270,6591],"delegatorTokens":9999999912082}},{"ix":152,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":153,"action":{"kind":"Deliver","chain":"provider","numPackets":2},"partialState":{"h":14,"t":84,"tokens":[9135,1543,29270,7591],"delegation":[8135,543,28270,6591],"delegatorTokens":9999999912082,"jailed":[null,1000000000000011,null,null],"status":["bonded","unbonding","bonded","unbonding"]}},{"ix":154,"action":{"kind":"Delegate","val":1,"amt":2020},"partialState":{"h":14,"t":84,"tokens":[9135,3563,29270,7591],"delegation":[8135,2563,28270,6591],"delegatorTokens":9999999910062}},{"ix":155,"action":{"kind":"Undelegate","val":2,"amt":3721},"partialState":{"h":14,"t":84,"tokens":[9135,3563,25549,7591],"delegation":[8135,2563,24549,6591],"delegatorTokens":9999999910062}},{"ix":156,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":16,"t":96,"consumerPower":[null,null,15330,13965],"outstandingDowntime":[false,false,true,true]}},{"ix":157,"action":{"kind":"Deliver","chain":"consumer","numPackets":6},"partialState":{"h":16,"t":96,"consumerPower":[null,null,15330,13965],"outstandingDowntime":[false,false,true,true]}},{"ix":158,"action":{"kind":"Deliver","chain":"provider","numPackets":4},"partialState":{"h":14,"t":84,"tokens":[9135,3563,25549,7591],"delegation":[8135,2563,24549,6591],"delegatorTokens":9999999910062,"jailed":[null,1000000000000011,null,null],"status":["bonded","unbonding","bonded","unbonding"]}},{"ix":159,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":17,"t":102,"consumerPower":[11596,null,22039,null],"outstandingDowntime":[false,false,true,true]}},{"ix":160,"action":{"kind":"Delegate","val":2,"amt":3991},"partialState":{"h":14,"t":84,"tokens":[9135,3563,29540,7591],"delegation":[8135,2563,28540,6591],"delegatorTokens":9999999906071}},{"ix":161,"action":{"kind":"Delegate","val":0,"amt":2339},"partialState":{"h":14,"t":84,"tokens":[11474,3563,29540,7591],"delegation":[10474,2563,28540,6591],"delegatorTokens":9999999903732}},{"ix":162,"action":{"kind":"Undelegate","val":1,"amt":3392},"partialState":{"h":14,"t":84,"tokens":[11474,3563,29540,7591],"delegation":[10474,2563,28540,6591],"delegatorTokens":9999999903732}},{"ix":163,"action":{"kind":"Undelegate","val":1,"amt":4988},"partialState":{"h":14,"t":84,"tokens":[11474,3563,29540,7591],"delegation":[10474,2563,28540,6591],"delegatorTokens":9999999903732}},{"ix":164,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":18,"t":108,"consumerPower":[11596,null,22039,null],"outstandingDowntime":[false,false,true,true]}},{"ix":165,"action":{"kind":"Undelegate","val":0,"amt":3242},"partialState":{"h":14,"t":84,"tokens":[8232,3563,29540,7591],"delegation":[7232,2563,28540,6591],"delegatorTokens":9999999903732}},{"ix":166,"action":{"kind":"Delegate","val":3,"amt":1316},"partialState":{"h":14,"t":84,"tokens":[8232,3563,29540,8907],"delegation":[7232,2563,28540,7907],"delegatorTokens":9999999902416}},{"ix":167,"action":{"kind":"Undelegate","val":1,"amt":1775},"partialState":{"h":14,"t":84,"tokens":[8232,1788,29540,8907],"delegation":[7232,788,28540,7907],"delegatorTokens":9999999902416}},{"ix":168,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":19,"t":114,"consumerPower":[11596,null,22039,null],"outstandingDowntime":[false,false,true,true]}},{"ix":169,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":20,"t":120,"consumerPower":[11596,null,22039,null],"outstandingDowntime":[false,false,true,true]}},{"ix":170,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":171,"action":{"kind":"Deliver","chain":"provider","numPackets":3},"partialState":{"h":14,"t":84,"tokens":[8232,1788,29540,8907],"delegation":[7232,788,28540,7907],"delegatorTokens":9999999902416,"jailed":[null,1000000000000011,null,null],"status":["bonded","unbonding","bonded","unbonding"]}},{"ix":172,"action":{"kind":"Deliver","chain":"provider","numPackets":1},"partialState":{"h":14,"t":84,"tokens":[8232,1788,29540,8907],"delegation":[7232,788,28540,7907],"delegatorTokens":9999999902416,"jailed":[null,1000000000000011,null,null],"status":["bonded","unbonding","bonded","unbonding"]}},{"ix":173,"action":{"kind":"Undelegate","val":0,"amt":1414},"partialState":{"h":14,"t":84,"tokens":[6818,1788,29540,8907],"delegation":[5818,788,28540,7907],"delegatorTokens":9999999902416}},{"ix":174,"action":{"kind":"Delegate","val":0,"amt":3306},"partialState":{"h":14,"t":84,"tokens":[10124,1788,29540,8907],"delegation":[9124,788,28540,7907],"delegatorTokens":9999999899110}},{"ix":175,"action":{"kind":"Delegate","val":3,"amt":2912},"partialState":{"h":14,"t":84,"tokens":[10124,1788,29540,11819],"delegation":[9124,788,28540,10819],"delegatorTokens":9999999896198}},{"ix":176,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":177,"action":{"kind":"Delegate","val":3,"amt":2372},"partialState":{"h":14,"t":84,"tokens":[10124,1788,29540,14191],"delegation":[9124,788,28540,13191],"delegatorTokens":9999999893826}},{"ix":178,"action":{"kind":"Undelegate","val":3,"amt":4751},"partialState":{"h":14,"t":84,"tokens":[10124,1788,29540,9440],"delegation":[9124,788,28540,8440],"delegatorTokens":9999999893826}},{"ix":179,"action":{"kind":"Deliver","chain":"provider","numPackets":1},"partialState":{"h":14,"t":84,"tokens":[10124,1788,29540,9440],"delegation":[9124,788,28540,8440],"delegatorTokens":9999999893826,"jailed":[null,1000000000000011,null,null],"status":["bonded","unbonding","bonded","unbonding"]}},{"ix":180,"action":{"kind":"Delegate","val":2,"amt":3234},"partialState":{"h":14,"t":84,"tokens":[10124,1788,32774,9440],"delegation":[9124,788,31774,8440],"delegatorTokens":9999999890592}},{"ix":181,"action":{"kind":"Delegate","val":3,"amt":4542},"partialState":{"h":14,"t":84,"tokens":[10124,1788,32774,13982],"delegation":[9124,788,31774,12982],"delegatorTokens":9999999886050}},{"ix":182,"action":{"kind":"Delegate","val":3,"amt":3120},"partialState":{"h":14,"t":84,"tokens":[10124,1788,32774,17102],"delegation":[9124,788,31774,16102],"delegatorTokens":9999999882930}},{"ix":183,"action":{"kind":"Undelegate","val":2,"amt":4243},"partialState":{"h":14,"t":84,"tokens":[10124,1788,28531,17102],"delegation":[9124,788,27531,16102],"delegatorTokens":9999999882930}},{"ix":184,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":21,"t":126,"consumerPower":[11596,null,22039,null],"outstandingDowntime":[false,false,true,true]}},{"ix":185,"action":{"kind":"Deliver","chain":"provider","numPackets":3},"partialState":{"h":14,"t":84,"tokens":[10124,1788,28531,17102],"delegation":[9124,788,27531,16102],"delegatorTokens":9999999882930,"jailed":[null,1000000000000011,null,null],"status":["bonded","unbonding","bonded","unbonding"]}},{"ix":186,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":187,"action":{"kind":"Delegate","val":0,"amt":3858},"partialState":{"h":14,"t":84,"tokens":[13982,1788,28531,17102],"delegation":[12982,788,27531,16102],"delegatorTokens":9999999879072}},{"ix":188,"action":{"kind":"Deliver","chain":"consumer","numPackets":6},"partialState":{"h":21,"t":126,"consumerPower":[11596,null,22039,null],"outstandingDowntime":[false,false,true,true]}},{"ix":189,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":190,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":191,"action":{"kind":"Undelegate","val":3,"amt":1061},"partialState":{"h":14,"t":84,"tokens":[13982,1788,28531,16041],"delegation":[12982,788,27531,15041],"delegatorTokens":9999999879072}},{"ix":192,"action":{"kind":"Deliver","chain":"provider","numPackets":1},"partialState":{"h":14,"t":84,"tokens":[13982,1788,28531,16041],"delegation":[12982,788,27531,15041],"delegatorTokens":9999999879072,"jailed":[null,1000000000000011,null,null],"status":["bonded","unbonding","bonded","unbonding"]}},{"ix":193,"action":{"kind":"Undelegate","val":2,"amt":1290},"partialState":{"h":14,"t":84,"tokens":[13982,1788,27241,16041],"delegation":[12982,788,26241,15041],"delegatorTokens":9999999879072}},{"ix":194,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":15,"t":90,"tokens":[13982,1788,27241,16041],"delegation":[12982,788,26241,15041],"delegatorTokens":9999999889236,"jailed":[null,1000000000000011,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":195,"action":{"kind":"Deliver","chain":"provider","numPackets":6},"partialState":{"h":15,"t":90,"tokens":[13982,1788,27241,16041],"delegation":[12982,788,26241,15041],"delegatorTokens":9999999889236,"jailed":[null,1000000000000011,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":196,"action":{"kind":"Undelegate","val":2,"amt":3162},"partialState":{"h":15,"t":90,"tokens":[13982,1788,24079,16041],"delegation":[12982,788,23079,15041],"delegatorTokens":9999999889236}},{"ix":197,"action":{"kind":"Delegate","val":2,"amt":1877},"partialState":{"h":15,"t":90,"tokens":[13982,1788,25956,16041],"delegation":[12982,788,24956,15041],"delegatorTokens":9999999887359}},{"ix":198,"action":{"kind":"Undelegate","val":0,"amt":2935},"partialState":{"h":15,"t":90,"tokens":[11047,1788,25956,16041],"delegation":[10047,788,24956,15041],"delegatorTokens":9999999887359}},{"ix":199,"action":{"kind":"Delegate","val":2,"amt":1863},"partialState":{"h":15,"t":90,"tokens":[11047,1788,27819,16041],"delegation":[10047,788,26819,15041],"delegatorTokens":9999999885496}}],"events":["send_downtime_slash_request","send_vsc_without_downtime_ack","send_downtime_slash_request","send_downtime_slash_request","insufficient_shares","insufficient_shares","receive_downtime_slash_request","jail","receive_slash_request_unbonded","receive_slash_request_unbonded","send_vsc_with_downtime_ack","more_than_one_third_val_power_change","send_vsc_without_downtime_ack","receive_downtime_slash_ack","more_than_one_third_val_power_change","send_vsc_without_downtime_ack","more_than_one_third_val_power_change","rebond_unval","send_vsc_without_downtime_ack","consumer_update_val","consumer_update_val","insufficient_shares","insufficient_shares","consumer_del_val","consumer_add_val","consumer_del_val","consumer_update_val","insufficient_shares","send_vsc_without_downtime_ack","more_than_one_third_val_power_change","rebond_unval","send_vsc_without_downtime_ack","consumer_update_val","consumer_update_val","send_vsc_without_downtime_ack","send_vsc_without_downtime_ack","send_vsc_without_downtime_ack","insufficient_shares","more_than_one_third_val_power_change","rebond_unval","send_vsc_without_downtime_ack","consumer_del_val","consumer_add_val","consumer_update_val","insufficient_shares","send_vsc_without_downtime_ack","consumer_send_maturation","consumer_send_maturation","consumer_send_maturation","consumer_send_maturation","consumer_send_maturation","consumer_update_val","consumer_del_val","consumer_add_val","insufficient_shares","insufficient_shares","consumer_send_maturation","consumer_send_maturation","consumer_send_maturation","more_than_one_third_val_power_change","rebond_unval","some_undels_expired_but_not_completed","complete_undel_immediate","complete_undel_immediate","complete_undel_immediate","set_unval_hold_false","set_undel_hold_false","set_undel_hold_false","set_undel_hold_false","set_undel_hold_false","send_vsc_without_downtime_ack"]},{"meta":{"commit":"7ffd0c04e4205cbc9caf212abfe6c59ee43153bf"},"constants":{"P":"provider","C":"consumer","UNBONDING_SECONDS_P":70,"UNBONDING_SECONDS_C":50,"TRUSTING_SECONDS":49,"NUM_VALIDATORS":4,"MAX_VALIDATORS":2,"SLASH_DOUBLESIGN":0,"SLASH_DOWNTIME":0,"JAIL_SECONDS":999999999999999,"BLOCK_SECONDS":6,"INITIAL_DELEGATOR_TOKENS":10000000000000,"DELEGATE_AMT_MIN":1000,"DELEGATE_AMT_MAX":5000,"UNDELEGATE_AMT_MIN":1000,"UNDELEGATE_AMT_MAX":5000,"ISDOWNTIME_PROBABILITY":0.5,"MAX_NUM_PACKETS_FOR_DELIVER":6},"actions":[{"ix":0,"action":{"kind":"Delegate","val":0,"amt":3358},"partialState":{"h":1,"t":6,"tokens":[8358,4000,3000,2000],"delegation":[7358,3000,2000,1000],"delegatorTokens":9999999996642}},{"ix":1,"action":{"kind":"Deliver","chain":"consumer","numPackets":4},"partialState":{"h":1,"t":6,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":2,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":3,"action":{"kind":"Deliver","chain":"provider","numPackets":4},"partialState":{"h":1,"t":6,"tokens":[8358,4000,3000,2000],"delegation":[7358,3000,2000,1000],"delegatorTokens":9999999996642,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":4,"action":{"kind":"Undelegate","val":1,"amt":2745},"partialState":{"h":1,"t":6,"tokens":[8358,1255,3000,2000],"delegation":[7358,255,2000,1000],"delegatorTokens":9999999996642}},{"ix":5,"action":{"kind":"Delegate","val":1,"amt":4154},"partialState":{"h":1,"t":6,"tokens":[8358,5409,3000,2000],"delegation":[7358,4409,2000,1000],"delegatorTokens":9999999992488}},{"ix":6,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":2,"t":12,"tokens":[8358,5409,3000,2000],"delegation":[7358,4409,2000,1000],"delegatorTokens":9999999992488,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":7,"action":{"kind":"Deliver","chain":"consumer","numPackets":6},"partialState":{"h":1,"t":6,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":8,"action":{"kind":"Delegate","val":1,"amt":4023},"partialState":{"h":2,"t":12,"tokens":[8358,9432,3000,2000],"delegation":[7358,8432,2000,1000],"delegatorTokens":9999999988465}},{"ix":9,"action":{"kind":"Deliver","chain":"provider","numPackets":4},"partialState":{"h":2,"t":12,"tokens":[8358,9432,3000,2000],"delegation":[7358,8432,2000,1000],"delegatorTokens":9999999988465,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":10,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":2,"t":12,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":11,"action":{"kind":"Delegate","val":2,"amt":2942},"partialState":{"h":2,"t":12,"tokens":[8358,9432,5942,2000],"delegation":[7358,8432,4942,1000],"delegatorTokens":9999999985523}},{"ix":12,"action":{"kind":"Deliver","chain":"consumer","numPackets":1},"partialState":{"h":2,"t":12,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":13,"action":{"kind":"Deliver","chain":"consumer","numPackets":5},"partialState":{"h":2,"t":12,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":14,"action":{"kind":"ConsumerSlash","val":2,"infractionHeight":1,"isDowntime":true},"partialState":{"h":2,"t":12,"outstandingDowntime":[false,false,true,false]}},{"ix":15,"action":{"kind":"Delegate","val":0,"amt":2325},"partialState":{"h":2,"t":12,"tokens":[10683,9432,5942,2000],"delegation":[9683,8432,4942,1000],"delegatorTokens":9999999983198}},{"ix":16,"action":{"kind":"Delegate","val":0,"amt":1414},"partialState":{"h":2,"t":12,"tokens":[12097,9432,5942,2000],"delegation":[11097,8432,4942,1000],"delegatorTokens":9999999981784}},{"ix":17,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":3,"t":18,"tokens":[12097,9432,5942,2000],"delegation":[11097,8432,4942,1000],"delegatorTokens":9999999981784,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":18,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":19,"action":{"kind":"Delegate","val":3,"amt":3995},"partialState":{"h":3,"t":18,"tokens":[12097,9432,5942,5995],"delegation":[11097,8432,4942,4995],"delegatorTokens":9999999977789}},{"ix":20,"action":{"kind":"ConsumerSlash","val":2,"infractionHeight":0,"isDowntime":false},"partialState":{"h":2,"t":12,"outstandingDowntime":[false,false,true,false]}},{"ix":21,"action":{"kind":"Delegate","val":2,"amt":4238},"partialState":{"h":3,"t":18,"tokens":[12097,9432,10180,5995],"delegation":[11097,8432,9180,4995],"delegatorTokens":9999999973551}},{"ix":22,"action":{"kind":"ConsumerSlash","val":3,"infractionHeight":1,"isDowntime":true},"partialState":{"h":2,"t":12,"outstandingDowntime":[false,false,true,true]}},{"ix":23,"action":{"kind":"ConsumerSlash","val":3,"infractionHeight":1,"isDowntime":false},"partialState":{"h":2,"t":12,"outstandingDowntime":[false,false,true,true]}},{"ix":24,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":3,"t":18,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,false,true,true]}},{"ix":25,"action":{"kind":"Delegate","val":0,"amt":4402},"partialState":{"h":3,"t":18,"tokens":[16499,9432,10180,5995],"delegation":[15499,8432,9180,4995],"delegatorTokens":9999999969149}},{"ix":26,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":4,"t":24,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,false,true,true]}},{"ix":27,"action":{"kind":"Undelegate","val":3,"amt":4840},"partialState":{"h":3,"t":18,"tokens":[16499,9432,10180,1155],"delegation":[15499,8432,9180,155],"delegatorTokens":9999999969149}},{"ix":28,"action":{"kind":"Undelegate","val":2,"amt":2520},"partialState":{"h":3,"t":18,"tokens":[16499,9432,7660,1155],"delegation":[15499,8432,6660,155],"delegatorTokens":9999999969149}},{"ix":29,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":30,"action":{"kind":"Deliver","chain":"consumer","numPackets":6},"partialState":{"h":4,"t":24,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,false,true,true]}},{"ix":31,"action":{"kind":"ConsumerSlash","val":2,"infractionHeight":0,"isDowntime":false},"partialState":{"h":4,"t":24,"outstandingDowntime":[false,false,true,true]}},{"ix":32,"action":{"kind":"Delegate","val":3,"amt":2951},"partialState":{"h":3,"t":18,"tokens":[16499,9432,7660,4106],"delegation":[15499,8432,6660,3106],"delegatorTokens":9999999966198}},{"ix":33,"action":{"kind":"Deliver","chain":"consumer","numPackets":5},"partialState":{"h":4,"t":24,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,false,true,true]}},{"ix":34,"action":{"kind":"Deliver","chain":"provider","numPackets":4},"partialState":{"h":3,"t":18,"tokens":[16499,9432,7660,4106],"delegation":[15499,8432,6660,3106],"delegatorTokens":9999999966198,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":35,"action":{"kind":"ConsumerSlash","val":1,"infractionHeight":1,"isDowntime":true},"partialState":{"h":4,"t":24,"outstandingDowntime":[false,true,true,true]}},{"ix":36,"action":{"kind":"Deliver","chain":"provider","numPackets":1},"partialState":{"h":3,"t":18,"tokens":[16499,9432,7660,4106],"delegation":[15499,8432,6660,3106],"delegatorTokens":9999999966198,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":37,"action":{"kind":"Deliver","chain":"provider","numPackets":5},"partialState":{"h":3,"t":18,"tokens":[16499,9432,7660,4106],"delegation":[15499,8432,6660,3106],"delegatorTokens":9999999966198,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":38,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":5,"t":30,"consumerPower":[8358,5409,null,null],"outstandingDowntime":[false,true,true,true]}},{"ix":39,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":4,"t":24,"tokens":[16499,9432,7660,4106],"delegation":[15499,8432,6660,3106],"delegatorTokens":9999999966198,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":40,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":5,"t":30,"tokens":[16499,9432,7660,4106],"delegation":[15499,8432,6660,3106],"delegatorTokens":9999999966198,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":41,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":42,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":6,"t":36,"consumerPower":[8358,5409,null,null],"outstandingDowntime":[false,true,true,true]}},{"ix":43,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":44,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":6,"t":36,"tokens":[16499,9432,7660,4106],"delegation":[15499,8432,6660,3106],"delegatorTokens":9999999966198,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":45,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":7,"t":42,"tokens":[16499,9432,7660,4106],"delegation":[15499,8432,6660,3106],"delegatorTokens":9999999966198,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":46,"action":{"kind":"Delegate","val":0,"amt":1054},"partialState":{"h":7,"t":42,"tokens":[17553,9432,7660,4106],"delegation":[16553,8432,6660,3106],"delegatorTokens":9999999965144}},{"ix":47,"action":{"kind":"Undelegate","val":1,"amt":4111},"partialState":{"h":7,"t":42,"tokens":[17553,5321,7660,4106],"delegation":[16553,4321,6660,3106],"delegatorTokens":9999999965144}},{"ix":48,"action":{"kind":"Delegate","val":1,"amt":3327},"partialState":{"h":7,"t":42,"tokens":[17553,8648,7660,4106],"delegation":[16553,7648,6660,3106],"delegatorTokens":9999999961817}},{"ix":49,"action":{"kind":"Delegate","val":1,"amt":1087},"partialState":{"h":7,"t":42,"tokens":[17553,9735,7660,4106],"delegation":[16553,8735,6660,3106],"delegatorTokens":9999999960730}},{"ix":50,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":8,"t":48,"tokens":[17553,9735,7660,4106],"delegation":[16553,8735,6660,3106],"delegatorTokens":9999999960730,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":51,"action":{"kind":"Deliver","chain":"provider","numPackets":3},"partialState":{"h":8,"t":48,"tokens":[17553,9735,7660,4106],"delegation":[16553,8735,6660,3106],"delegatorTokens":9999999960730,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":52,"action":{"kind":"Deliver","chain":"consumer","numPackets":2},"partialState":{"h":6,"t":36,"consumerPower":[8358,5409,null,null],"outstandingDowntime":[false,true,true,true]}},{"ix":53,"action":{"kind":"Delegate","val":0,"amt":1612},"partialState":{"h":8,"t":48,"tokens":[19165,9735,7660,4106],"delegation":[18165,8735,6660,3106],"delegatorTokens":9999999959118}},{"ix":54,"action":{"kind":"Delegate","val":3,"amt":2796},"partialState":{"h":8,"t":48,"tokens":[19165,9735,7660,6902],"delegation":[18165,8735,6660,5902],"delegatorTokens":9999999956322}},{"ix":55,"action":{"kind":"Deliver","chain":"consumer","numPackets":2},"partialState":{"h":6,"t":36,"consumerPower":[8358,5409,null,null],"outstandingDowntime":[false,true,true,true]}},{"ix":56,"action":{"kind":"Deliver","chain":"provider","numPackets":1},"partialState":{"h":8,"t":48,"tokens":[19165,9735,7660,6902],"delegation":[18165,8735,6660,5902],"delegatorTokens":9999999956322,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":57,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":58,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":59,"action":{"kind":"Delegate","val":0,"amt":2016},"partialState":{"h":8,"t":48,"tokens":[21181,9735,7660,6902],"delegation":[20181,8735,6660,5902],"delegatorTokens":9999999954306}},{"ix":60,"action":{"kind":"Delegate","val":3,"amt":4010},"partialState":{"h":8,"t":48,"tokens":[21181,9735,7660,10912],"delegation":[20181,8735,6660,9912],"delegatorTokens":9999999950296}},{"ix":61,"action":{"kind":"Undelegate","val":1,"amt":1712},"partialState":{"h":8,"t":48,"tokens":[21181,8023,7660,10912],"delegation":[20181,7023,6660,9912],"delegatorTokens":9999999950296}},{"ix":62,"action":{"kind":"Undelegate","val":1,"amt":4073},"partialState":{"h":8,"t":48,"tokens":[21181,3950,7660,10912],"delegation":[20181,2950,6660,9912],"delegatorTokens":9999999950296}},{"ix":63,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":9,"t":54,"tokens":[21181,3950,7660,10912],"delegation":[20181,2950,6660,9912],"delegatorTokens":9999999950296,"jailed":[null,1000000000000047,null,null],"status":["bonded","unbonding","unbonded","bonded"]}},{"ix":64,"action":{"kind":"Undelegate","val":1,"amt":3683},"partialState":{"h":9,"t":54,"tokens":[21181,3950,7660,10912],"delegation":[20181,2950,6660,9912],"delegatorTokens":9999999950296}},{"ix":65,"action":{"kind":"Delegate","val":3,"amt":2478},"partialState":{"h":9,"t":54,"tokens":[21181,3950,7660,13390],"delegation":[20181,2950,6660,12390],"delegatorTokens":9999999947818}},{"ix":66,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":10,"t":60,"tokens":[21181,3950,7660,13390],"delegation":[20181,2950,6660,12390],"delegatorTokens":9999999947818,"jailed":[null,1000000000000047,null,null],"status":["bonded","unbonding","unbonded","bonded"]}},{"ix":67,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":11,"t":66,"tokens":[21181,3950,7660,13390],"delegation":[20181,2950,6660,12390],"delegatorTokens":9999999947818,"jailed":[null,1000000000000047,null,null],"status":["bonded","unbonding","unbonded","bonded"]}},{"ix":68,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":69,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":70,"action":{"kind":"Deliver","chain":"consumer","numPackets":1},"partialState":{"h":6,"t":36,"consumerPower":[8358,5409,null,null],"outstandingDowntime":[false,true,true,true]}},{"ix":71,"action":{"kind":"Delegate","val":3,"amt":4569},"partialState":{"h":11,"t":66,"tokens":[21181,3950,7660,17959],"delegation":[20181,2950,6660,16959],"delegatorTokens":9999999943249}},{"ix":72,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":73,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":12,"t":72,"tokens":[21181,3950,7660,17959],"delegation":[20181,2950,6660,16959],"delegatorTokens":9999999943249,"jailed":[null,1000000000000047,null,null],"status":["bonded","unbonding","unbonded","bonded"]}},{"ix":74,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":13,"t":78,"tokens":[21181,3950,7660,17959],"delegation":[20181,2950,6660,16959],"delegatorTokens":9999999943249,"jailed":[null,1000000000000047,null,null],"status":["bonded","unbonding","unbonded","bonded"]}},{"ix":75,"action":{"kind":"Undelegate","val":1,"amt":1668},"partialState":{"h":13,"t":78,"tokens":[21181,2282,7660,17959],"delegation":[20181,1282,6660,16959],"delegatorTokens":9999999943249}},{"ix":76,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":7,"t":42,"consumerPower":[17553,9735,null,null],"outstandingDowntime":[false,true,true,true]}},{"ix":77,"action":{"kind":"Deliver","chain":"provider","numPackets":6},"partialState":{"h":13,"t":78,"tokens":[21181,2282,7660,17959],"delegation":[20181,1282,6660,16959],"delegatorTokens":9999999943249,"jailed":[null,1000000000000047,null,null],"status":["bonded","unbonding","unbonded","bonded"]}},{"ix":78,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":8,"t":48,"consumerPower":[17553,9735,null,null],"outstandingDowntime":[false,true,true,true]}},{"ix":79,"action":{"kind":"Undelegate","val":1,"amt":3023},"partialState":{"h":13,"t":78,"tokens":[21181,2282,7660,17959],"delegation":[20181,1282,6660,16959],"delegatorTokens":9999999943249}},{"ix":80,"action":{"kind":"Undelegate","val":0,"amt":4379},"partialState":{"h":13,"t":78,"tokens":[16802,2282,7660,17959],"delegation":[15802,1282,6660,16959],"delegatorTokens":9999999943249}},{"ix":81,"action":{"kind":"Undelegate","val":0,"amt":3090},"partialState":{"h":13,"t":78,"tokens":[13712,2282,7660,17959],"delegation":[12712,1282,6660,16959],"delegatorTokens":9999999943249}},{"ix":82,"action":{"kind":"Delegate","val":0,"amt":2902},"partialState":{"h":13,"t":78,"tokens":[16614,2282,7660,17959],"delegation":[15614,1282,6660,16959],"delegatorTokens":9999999940347}},{"ix":83,"action":{"kind":"Deliver","chain":"consumer","numPackets":1},"partialState":{"h":8,"t":48,"consumerPower":[17553,9735,null,null],"outstandingDowntime":[false,false,true,true]}},{"ix":84,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":85,"action":{"kind":"Delegate","val":1,"amt":1246},"partialState":{"h":13,"t":78,"tokens":[16614,3528,7660,17959],"delegation":[15614,2528,6660,16959],"delegatorTokens":9999999939101}},{"ix":86,"action":{"kind":"Deliver","chain":"consumer","numPackets":5},"partialState":{"h":8,"t":48,"consumerPower":[17553,9735,null,null],"outstandingDowntime":[false,false,true,true]}},{"ix":87,"action":{"kind":"Delegate","val":1,"amt":3379},"partialState":{"h":13,"t":78,"tokens":[16614,6907,7660,17959],"delegation":[15614,5907,6660,16959],"delegatorTokens":9999999935722}},{"ix":88,"action":{"kind":"Deliver","chain":"consumer","numPackets":1},"partialState":{"h":8,"t":48,"consumerPower":[17553,9735,null,null],"outstandingDowntime":[false,false,true,true]}},{"ix":89,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":90,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":14,"t":84,"tokens":[16614,6907,7660,17959],"delegation":[15614,5907,6660,16959],"delegatorTokens":9999999935722,"jailed":[null,1000000000000047,null,null],"status":["bonded","unbonding","unbonded","bonded"]}},{"ix":91,"action":{"kind":"Undelegate","val":0,"amt":3461},"partialState":{"h":14,"t":84,"tokens":[13153,6907,7660,17959],"delegation":[12153,5907,6660,16959],"delegatorTokens":9999999935722}},{"ix":92,"action":{"kind":"Undelegate","val":0,"amt":4916},"partialState":{"h":14,"t":84,"tokens":[8237,6907,7660,17959],"delegation":[7237,5907,6660,16959],"delegatorTokens":9999999935722}},{"ix":93,"action":{"kind":"Deliver","chain":"consumer","numPackets":3},"partialState":{"h":8,"t":48,"consumerPower":[17553,9735,null,null],"outstandingDowntime":[false,false,true,true]}},{"ix":94,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":95,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":15,"t":90,"tokens":[8237,6907,7660,17959],"delegation":[7237,5907,6660,16959],"delegatorTokens":9999999935722,"jailed":[null,1000000000000047,null,null],"status":["bonded","unbonding","unbonded","bonded"]}},{"ix":96,"action":{"kind":"Deliver","chain":"provider","numPackets":2},"partialState":{"h":15,"t":90,"tokens":[8237,6907,7660,17959],"delegation":[7237,5907,6660,16959],"delegatorTokens":9999999935722,"jailed":[null,1000000000000047,null,null],"status":["bonded","unbonding","unbonded","bonded"]}},{"ix":97,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":98,"action":{"kind":"Delegate","val":3,"amt":1243},"partialState":{"h":15,"t":90,"tokens":[8237,6907,7660,19202],"delegation":[7237,5907,6660,18202],"delegatorTokens":9999999934479}},{"ix":99,"action":{"kind":"Delegate","val":1,"amt":3536},"partialState":{"h":15,"t":90,"tokens":[8237,10443,7660,19202],"delegation":[7237,9443,6660,18202],"delegatorTokens":9999999930943}},{"ix":100,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":101,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":102,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":9,"t":54,"consumerPower":[21181,null,null,17959],"outstandingDowntime":[false,false,true,true]}},{"ix":103,"action":{"kind":"Undelegate","val":1,"amt":2287},"partialState":{"h":15,"t":90,"tokens":[8237,8156,7660,19202],"delegation":[7237,7156,6660,18202],"delegatorTokens":9999999930943}},{"ix":104,"action":{"kind":"Deliver","chain":"provider","numPackets":6},"partialState":{"h":15,"t":90,"tokens":[8237,8156,7660,19202],"delegation":[7237,7156,6660,18202],"delegatorTokens":9999999930943,"jailed":[null,1000000000000047,null,null],"status":["bonded","unbonding","unbonded","bonded"]}},{"ix":105,"action":{"kind":"Deliver","chain":"provider","numPackets":6},"partialState":{"h":15,"t":90,"tokens":[8237,8156,7660,19202],"delegation":[7237,7156,6660,18202],"delegatorTokens":9999999930943,"jailed":[null,1000000000000047,null,null],"status":["bonded","unbonding","unbonded","bonded"]}},{"ix":106,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":107,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":10,"t":60,"consumerPower":[21181,null,null,17959],"outstandingDowntime":[false,false,true,true]}},{"ix":108,"action":{"kind":"Deliver","chain":"consumer","numPackets":4},"partialState":{"h":10,"t":60,"consumerPower":[21181,null,null,17959],"outstandingDowntime":[false,false,true,true]}},{"ix":109,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":110,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":111,"action":{"kind":"Deliver","chain":"provider","numPackets":3},"partialState":{"h":15,"t":90,"tokens":[8237,8156,7660,19202],"delegation":[7237,7156,6660,18202],"delegatorTokens":9999999930943,"jailed":[null,1000000000000047,null,null],"status":["bonded","unbonding","unbonded","bonded"]}},{"ix":112,"action":{"kind":"Undelegate","val":0,"amt":4658},"partialState":{"h":15,"t":90,"tokens":[3579,8156,7660,19202],"delegation":[2579,7156,6660,18202],"delegatorTokens":9999999930943}},{"ix":113,"action":{"kind":"Undelegate","val":3,"amt":3337},"partialState":{"h":15,"t":90,"tokens":[3579,8156,7660,15865],"delegation":[2579,7156,6660,14865],"delegatorTokens":9999999930943}},{"ix":114,"action":{"kind":"Deliver","chain":"consumer","numPackets":1},"partialState":{"h":10,"t":60,"consumerPower":[21181,null,null,17959],"outstandingDowntime":[false,false,true,true]}},{"ix":115,"action":{"kind":"Undelegate","val":2,"amt":1434},"partialState":{"h":15,"t":90,"tokens":[3579,8156,6226,15865],"delegation":[2579,7156,5226,14865],"delegatorTokens":9999999930943}},{"ix":116,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":117,"action":{"kind":"Delegate","val":0,"amt":2395},"partialState":{"h":15,"t":90,"tokens":[5974,8156,6226,15865],"delegation":[4974,7156,5226,14865],"delegatorTokens":9999999928548}},{"ix":118,"action":{"kind":"Undelegate","val":0,"amt":1593},"partialState":{"h":15,"t":90,"tokens":[4381,8156,6226,15865],"delegation":[3381,7156,5226,14865],"delegatorTokens":9999999928548}},{"ix":119,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":120,"action":{"kind":"Delegate","val":1,"amt":1838},"partialState":{"h":15,"t":90,"tokens":[4381,9994,6226,15865],"delegation":[3381,8994,5226,14865],"delegatorTokens":9999999926710}},{"ix":121,"action":{"kind":"Undelegate","val":1,"amt":2285},"partialState":{"h":15,"t":90,"tokens":[4381,7709,6226,15865],"delegation":[3381,6709,5226,14865],"delegatorTokens":9999999926710}},{"ix":122,"action":{"kind":"Deliver","chain":"consumer","numPackets":6},"partialState":{"h":10,"t":60,"consumerPower":[21181,null,null,17959],"outstandingDowntime":[false,false,true,true]}},{"ix":123,"action":{"kind":"Deliver","chain":"consumer","numPackets":3},"partialState":{"h":10,"t":60,"consumerPower":[21181,null,null,17959],"outstandingDowntime":[false,false,true,true]}},{"ix":124,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":11,"t":66,"consumerPower":[16614,null,null,17959],"outstandingDowntime":[false,false,true,true]}},{"ix":125,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":126,"action":{"kind":"Deliver","chain":"provider","numPackets":6},"partialState":{"h":15,"t":90,"tokens":[4381,7709,6226,15865],"delegation":[3381,6709,5226,14865],"delegatorTokens":9999999926710,"jailed":[null,1000000000000047,null,null],"status":["bonded","unbonding","unbonded","bonded"]}},{"ix":127,"action":{"kind":"Delegate","val":1,"amt":4001},"partialState":{"h":15,"t":90,"tokens":[4381,11710,6226,15865],"delegation":[3381,10710,5226,14865],"delegatorTokens":9999999922709}},{"ix":128,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":12,"t":72,"consumerPower":[16614,null,null,17959],"outstandingDowntime":[false,false,true,true]}},{"ix":129,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":130,"action":{"kind":"Delegate","val":2,"amt":3387},"partialState":{"h":15,"t":90,"tokens":[4381,11710,9613,15865],"delegation":[3381,10710,8613,14865],"delegatorTokens":9999999919322}},{"ix":131,"action":{"kind":"Undelegate","val":0,"amt":4808},"partialState":{"h":15,"t":90,"tokens":[4381,11710,9613,15865],"delegation":[3381,10710,8613,14865],"delegatorTokens":9999999919322}},{"ix":132,"action":{"kind":"Undelegate","val":3,"amt":3651},"partialState":{"h":15,"t":90,"tokens":[4381,11710,9613,12214],"delegation":[3381,10710,8613,11214],"delegatorTokens":9999999919322}},{"ix":133,"action":{"kind":"Delegate","val":0,"amt":2832},"partialState":{"h":15,"t":90,"tokens":[7213,11710,9613,12214],"delegation":[6213,10710,8613,11214],"delegatorTokens":9999999916490}},{"ix":134,"action":{"kind":"Delegate","val":3,"amt":4921},"partialState":{"h":15,"t":90,"tokens":[7213,11710,9613,17135],"delegation":[6213,10710,8613,16135],"delegatorTokens":9999999911569}},{"ix":135,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":136,"action":{"kind":"Delegate","val":0,"amt":1840},"partialState":{"h":15,"t":90,"tokens":[9053,11710,9613,17135],"delegation":[8053,10710,8613,16135],"delegatorTokens":9999999909729}},{"ix":137,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":138,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":139,"action":{"kind":"Undelegate","val":3,"amt":1609},"partialState":{"h":15,"t":90,"tokens":[9053,11710,9613,15526],"delegation":[8053,10710,8613,14526],"delegatorTokens":9999999909729}},{"ix":140,"action":{"kind":"Deliver","chain":"consumer","numPackets":3},"partialState":{"h":12,"t":72,"consumerPower":[16614,null,null,17959],"outstandingDowntime":[false,false,true,true]}},{"ix":141,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":13,"t":78,"consumerPower":[16614,null,null,17959],"outstandingDowntime":[false,false,true,true]}},{"ix":142,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":14,"t":84,"consumerPower":[16614,null,null,17959],"outstandingDowntime":[false,false,true,true]}},{"ix":143,"action":{"kind":"Undelegate","val":0,"amt":2172},"partialState":{"h":15,"t":90,"tokens":[6881,11710,9613,15526],"delegation":[5881,10710,8613,14526],"delegatorTokens":9999999909729}},{"ix":144,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":16,"t":96,"tokens":[6881,11710,9613,15526],"delegation":[5881,10710,8613,14526],"delegatorTokens":9999999909729,"jailed":[null,1000000000000047,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":145,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":17,"t":102,"tokens":[6881,11710,9613,15526],"delegation":[5881,10710,8613,14526],"delegatorTokens":9999999909729,"jailed":[null,1000000000000047,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":146,"action":{"kind":"Delegate","val":1,"amt":3555},"partialState":{"h":17,"t":102,"tokens":[6881,15265,9613,15526],"delegation":[5881,14265,8613,14526],"delegatorTokens":9999999906174}},{"ix":147,"action":{"kind":"Delegate","val":1,"amt":3495},"partialState":{"h":17,"t":102,"tokens":[6881,18760,9613,15526],"delegation":[5881,17760,8613,14526],"delegatorTokens":9999999902679}},{"ix":148,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":149,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":150,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":18,"t":108,"tokens":[6881,18760,9613,15526],"delegation":[5881,17760,8613,14526],"delegatorTokens":9999999902679,"jailed":[null,1000000000000047,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":151,"action":{"kind":"Undelegate","val":0,"amt":4869},"partialState":{"h":18,"t":108,"tokens":[2012,18760,9613,15526],"delegation":[1012,17760,8613,14526],"delegatorTokens":9999999902679}},{"ix":152,"action":{"kind":"Undelegate","val":2,"amt":2201},"partialState":{"h":18,"t":108,"tokens":[2012,18760,7412,15526],"delegation":[1012,17760,6412,14526],"delegatorTokens":9999999902679}},{"ix":153,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":19,"t":114,"tokens":[2012,18760,7412,15526],"delegation":[1012,17760,6412,14526],"delegatorTokens":9999999902679,"jailed":[null,1000000000000047,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":154,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":155,"action":{"kind":"Deliver","chain":"provider","numPackets":4},"partialState":{"h":19,"t":114,"tokens":[2012,18760,7412,15526],"delegation":[1012,17760,6412,14526],"delegatorTokens":9999999902679,"jailed":[null,1000000000000047,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":156,"action":{"kind":"Deliver","chain":"provider","numPackets":6},"partialState":{"h":19,"t":114,"tokens":[2012,18760,7412,15526],"delegation":[1012,17760,6412,14526],"delegatorTokens":9999999902679,"jailed":[null,1000000000000047,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":157,"action":{"kind":"Undelegate","val":3,"amt":4839},"partialState":{"h":19,"t":114,"tokens":[2012,18760,7412,10687],"delegation":[1012,17760,6412,9687],"delegatorTokens":9999999902679}},{"ix":158,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":20,"t":120,"tokens":[2012,18760,7412,10687],"delegation":[1012,17760,6412,9687],"delegatorTokens":9999999902679,"jailed":[null,1000000000000047,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":159,"action":{"kind":"Undelegate","val":3,"amt":3873},"partialState":{"h":20,"t":120,"tokens":[2012,18760,7412,6814],"delegation":[1012,17760,6412,5814],"delegatorTokens":9999999902679}},{"ix":160,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":15,"t":90,"consumerPower":[16614,null,null,17959],"outstandingDowntime":[false,false,true,true]}},{"ix":161,"action":{"kind":"Undelegate","val":3,"amt":2797},"partialState":{"h":20,"t":120,"tokens":[2012,18760,7412,4017],"delegation":[1012,17760,6412,3017],"delegatorTokens":9999999902679}},{"ix":162,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":21,"t":126,"tokens":[2012,18760,7412,4017],"delegation":[1012,17760,6412,3017],"delegatorTokens":9999999902679,"jailed":[null,1000000000000047,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":163,"action":{"kind":"Deliver","chain":"consumer","numPackets":3},"partialState":{"h":15,"t":90,"consumerPower":[16614,null,null,17959],"outstandingDowntime":[false,false,true,true]}},{"ix":164,"action":{"kind":"Delegate","val":3,"amt":2143},"partialState":{"h":21,"t":126,"tokens":[2012,18760,7412,6160],"delegation":[1012,17760,6412,5160],"delegatorTokens":9999999900536}},{"ix":165,"action":{"kind":"Deliver","chain":"consumer","numPackets":4},"partialState":{"h":15,"t":90,"consumerPower":[16614,null,null,17959],"outstandingDowntime":[false,false,true,true]}},{"ix":166,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":167,"action":{"kind":"Delegate","val":0,"amt":1972},"partialState":{"h":21,"t":126,"tokens":[3984,18760,7412,6160],"delegation":[2984,17760,6412,5160],"delegatorTokens":9999999898564}},{"ix":168,"action":{"kind":"Undelegate","val":2,"amt":2613},"partialState":{"h":21,"t":126,"tokens":[3984,18760,4799,6160],"delegation":[2984,17760,3799,5160],"delegatorTokens":9999999898564}},{"ix":169,"action":{"kind":"Deliver","chain":"provider","numPackets":4},"partialState":{"h":21,"t":126,"tokens":[3984,18760,4799,6160],"delegation":[2984,17760,3799,5160],"delegatorTokens":9999999898564,"jailed":[null,1000000000000047,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":170,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":171,"action":{"kind":"Undelegate","val":1,"amt":1165},"partialState":{"h":21,"t":126,"tokens":[3984,17595,4799,6160],"delegation":[2984,16595,3799,5160],"delegatorTokens":9999999898564}},{"ix":172,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":173,"action":{"kind":"Undelegate","val":0,"amt":3102},"partialState":{"h":21,"t":126,"tokens":[3984,17595,4799,6160],"delegation":[2984,16595,3799,5160],"delegatorTokens":9999999898564}},{"ix":174,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":175,"action":{"kind":"Deliver","chain":"consumer","numPackets":4},"partialState":{"h":15,"t":90,"consumerPower":[16614,null,null,17959],"outstandingDowntime":[false,false,true,true]}},{"ix":176,"action":{"kind":"Deliver","chain":"provider","numPackets":5},"partialState":{"h":21,"t":126,"tokens":[3984,17595,4799,6160],"delegation":[2984,16595,3799,5160],"delegatorTokens":9999999898564,"jailed":[null,1000000000000047,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":177,"action":{"kind":"Delegate","val":0,"amt":2323},"partialState":{"h":21,"t":126,"tokens":[6307,17595,4799,6160],"delegation":[5307,16595,3799,5160],"delegatorTokens":9999999896241}},{"ix":178,"action":{"kind":"Deliver","chain":"provider","numPackets":2},"partialState":{"h":21,"t":126,"tokens":[6307,17595,4799,6160],"delegation":[5307,16595,3799,5160],"delegatorTokens":9999999896241,"jailed":[null,1000000000000047,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":179,"action":{"kind":"Deliver","chain":"consumer","numPackets":3},"partialState":{"h":15,"t":90,"consumerPower":[16614,null,null,17959],"outstandingDowntime":[false,false,true,true]}},{"ix":180,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":22,"t":132,"tokens":[6307,17595,4799,6160],"delegation":[5307,16595,3799,5160],"delegatorTokens":9999999898986,"jailed":[null,1000000000000047,null,null],"status":["bonded","unbonding","unbonding","bonded"]}},{"ix":181,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":16,"t":96,"consumerPower":[null,null,7412,10687],"outstandingDowntime":[false,false,true,true]}},{"ix":182,"action":{"kind":"Undelegate","val":3,"amt":1705},"partialState":{"h":22,"t":132,"tokens":[6307,17595,4799,4455],"delegation":[5307,16595,3799,3455],"delegatorTokens":9999999898986}},{"ix":183,"action":{"kind":"Delegate","val":2,"amt":3468},"partialState":{"h":22,"t":132,"tokens":[6307,17595,8267,4455],"delegation":[5307,16595,7267,3455],"delegatorTokens":9999999895518}},{"ix":184,"action":{"kind":"Deliver","chain":"provider","numPackets":6},"partialState":{"h":22,"t":132,"tokens":[6307,17595,8267,4455],"delegation":[5307,16595,7267,3455],"delegatorTokens":9999999895518,"jailed":[null,1000000000000047,null,null],"status":["bonded","unbonding","unbonding","bonded"]}},{"ix":185,"action":{"kind":"Undelegate","val":1,"amt":2162},"partialState":{"h":22,"t":132,"tokens":[6307,15433,8267,4455],"delegation":[5307,14433,7267,3455],"delegatorTokens":9999999895518}},{"ix":186,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":17,"t":102,"consumerPower":[null,null,7412,10687],"outstandingDowntime":[false,false,true,true]}},{"ix":187,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":18,"t":108,"consumerPower":[null,null,7412,10687],"outstandingDowntime":[false,false,true,true]}},{"ix":188,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":19,"t":114,"consumerPower":[null,null,7412,10687],"outstandingDowntime":[false,false,true,true]}},{"ix":189,"action":{"kind":"Undelegate","val":2,"amt":2391},"partialState":{"h":22,"t":132,"tokens":[6307,15433,5876,4455],"delegation":[5307,14433,4876,3455],"delegatorTokens":9999999895518}},{"ix":190,"action":{"kind":"Undelegate","val":2,"amt":4080},"partialState":{"h":22,"t":132,"tokens":[6307,15433,1796,4455],"delegation":[5307,14433,796,3455],"delegatorTokens":9999999895518}},{"ix":191,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":192,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":193,"action":{"kind":"Deliver","chain":"consumer","numPackets":3},"partialState":{"h":19,"t":114,"consumerPower":[null,null,7412,10687],"outstandingDowntime":[false,false,true,true]}},{"ix":194,"action":{"kind":"Delegate","val":2,"amt":2410},"partialState":{"h":22,"t":132,"tokens":[6307,15433,4206,4455],"delegation":[5307,14433,3206,3455],"delegatorTokens":9999999893108}},{"ix":195,"action":{"kind":"Undelegate","val":1,"amt":1060},"partialState":{"h":22,"t":132,"tokens":[6307,14373,4206,4455],"delegation":[5307,13373,3206,3455],"delegatorTokens":9999999893108}},{"ix":196,"action":{"kind":"Undelegate","val":1,"amt":2093},"partialState":{"h":22,"t":132,"tokens":[6307,12280,4206,4455],"delegation":[5307,11280,3206,3455],"delegatorTokens":9999999893108}},{"ix":197,"action":{"kind":"Delegate","val":0,"amt":3102},"partialState":{"h":22,"t":132,"tokens":[9409,12280,4206,4455],"delegation":[8409,11280,3206,3455],"delegatorTokens":9999999890006}},{"ix":198,"action":{"kind":"Deliver","chain":"provider","numPackets":5},"partialState":{"h":22,"t":132,"tokens":[9409,12280,4206,4455],"delegation":[8409,11280,3206,3455],"delegatorTokens":9999999890006,"jailed":[null,1000000000000047,null,null],"status":["bonded","unbonding","unbonding","bonded"]}},{"ix":199,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":23,"t":138,"tokens":[9409,12280,4206,4455],"delegation":[8409,11280,3206,3455],"delegatorTokens":9999999907262,"jailed":[null,1000000000000047,null,null],"status":["bonded","unbonding","unbonding","bonded"]}}],"events":["send_vsc_without_downtime_ack","send_downtime_slash_request","send_vsc_without_downtime_ack","send_double_sign_slash_request","send_downtime_slash_request","send_double_sign_slash_request","send_double_sign_slash_request","receive_double_sign_slash_request","receive_double_sign_slash_request","send_downtime_slash_request","consumer_update_val","consumer_update_val","receive_slash_request_unbonded","receive_slash_request_unbonded","send_vsc_without_downtime_ack","send_vsc_without_downtime_ack","receive_double_sign_slash_request","more_than_one_third_val_power_change","receive_downtime_slash_request","jail","send_vsc_with_downtime_ack","insufficient_shares","send_vsc_without_downtime_ack","send_vsc_without_downtime_ack","consumer_update_val","consumer_update_val","insufficient_shares","receive_downtime_slash_ack","some_undels_expired_but_not_completed","send_vsc_without_downtime_ack","send_vsc_without_downtime_ack","consumer_update_val","consumer_del_val","consumer_add_val","consumer_update_val","insufficient_shares","consumer_send_maturation","more_than_one_third_val_power_change","some_undels_expired_but_not_completed","send_vsc_without_downtime_ack","send_vsc_without_downtime_ack","some_undels_expired_but_not_completed","send_vsc_without_downtime_ack","some_undels_expired_but_not_completed","send_vsc_without_downtime_ack","insufficient_shares","more_than_one_third_val_power_change","rebond_unval","complete_undel_immediate","send_vsc_without_downtime_ack","consumer_send_maturation","consumer_send_maturation","consumer_send_maturation","consumer_del_val","consumer_add_val","consumer_update_val","consumer_send_maturation","consumer_send_maturation","consumer_send_maturation","complete_undel_immediate","complete_undel_immediate","complete_undel_immediate","complete_undel_immediate","complete_undel_immediate","set_unval_hold_false","send_vsc_without_downtime_ack"]},{"meta":{"commit":"7ffd0c04e4205cbc9caf212abfe6c59ee43153bf"},"constants":{"P":"provider","C":"consumer","UNBONDING_SECONDS_P":70,"UNBONDING_SECONDS_C":50,"TRUSTING_SECONDS":49,"NUM_VALIDATORS":4,"MAX_VALIDATORS":2,"SLASH_DOUBLESIGN":0,"SLASH_DOWNTIME":0,"JAIL_SECONDS":999999999999999,"BLOCK_SECONDS":6,"INITIAL_DELEGATOR_TOKENS":10000000000000,"DELEGATE_AMT_MIN":1000,"DELEGATE_AMT_MAX":5000,"UNDELEGATE_AMT_MIN":1000,"UNDELEGATE_AMT_MAX":5000,"ISDOWNTIME_PROBABILITY":0.5,"MAX_NUM_PACKETS_FOR_DELIVER":6},"actions":[{"ix":0,"action":{"kind":"Delegate","val":2,"amt":4498},"partialState":{"h":1,"t":6,"tokens":[5000,4000,7498,2000],"delegation":[4000,3000,6498,1000],"delegatorTokens":9999999995502}},{"ix":1,"action":{"kind":"Delegate","val":3,"amt":2091},"partialState":{"h":1,"t":6,"tokens":[5000,4000,7498,4091],"delegation":[4000,3000,6498,3091],"delegatorTokens":9999999993411}},{"ix":2,"action":{"kind":"Delegate","val":1,"amt":3982},"partialState":{"h":1,"t":6,"tokens":[5000,7982,7498,4091],"delegation":[4000,6982,6498,3091],"delegatorTokens":9999999989429}},{"ix":3,"action":{"kind":"ConsumerSlash","val":1,"infractionHeight":0,"isDowntime":true},"partialState":{"h":1,"t":6,"outstandingDowntime":[false,true,false,false]}},{"ix":4,"action":{"kind":"Undelegate","val":2,"amt":1023},"partialState":{"h":1,"t":6,"tokens":[5000,7982,6475,4091],"delegation":[4000,6982,5475,3091],"delegatorTokens":9999999989429}},{"ix":5,"action":{"kind":"Undelegate","val":3,"amt":4038},"partialState":{"h":1,"t":6,"tokens":[5000,7982,6475,4091],"delegation":[4000,6982,5475,3091],"delegatorTokens":9999999989429}},{"ix":6,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":7,"action":{"kind":"ConsumerSlash","val":2,"infractionHeight":0,"isDowntime":false},"partialState":{"h":1,"t":6,"outstandingDowntime":[false,true,false,false]}},{"ix":8,"action":{"kind":"ConsumerSlash","val":2,"infractionHeight":0,"isDowntime":true},"partialState":{"h":1,"t":6,"outstandingDowntime":[false,true,true,false]}},{"ix":9,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":10,"action":{"kind":"ConsumerSlash","val":3,"infractionHeight":0,"isDowntime":true},"partialState":{"h":1,"t":6,"outstandingDowntime":[false,true,true,true]}},{"ix":11,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":12,"action":{"kind":"Deliver","chain":"provider","numPackets":5},"partialState":{"h":1,"t":6,"tokens":[5000,7982,6475,4091],"delegation":[4000,6982,5475,3091],"delegatorTokens":9999999989429,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":13,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":14,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":2,"t":12,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,true,true,true]}},{"ix":15,"action":{"kind":"Delegate","val":1,"amt":4265},"partialState":{"h":1,"t":6,"tokens":[5000,12247,6475,4091],"delegation":[4000,11247,5475,3091],"delegatorTokens":9999999985164}},{"ix":16,"action":{"kind":"Delegate","val":1,"amt":3746},"partialState":{"h":1,"t":6,"tokens":[5000,15993,6475,4091],"delegation":[4000,14993,5475,3091],"delegatorTokens":9999999981418}},{"ix":17,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":18,"action":{"kind":"Delegate","val":0,"amt":4233},"partialState":{"h":1,"t":6,"tokens":[9233,15993,6475,4091],"delegation":[8233,14993,5475,3091],"delegatorTokens":9999999977185}},{"ix":19,"action":{"kind":"Undelegate","val":3,"amt":4768},"partialState":{"h":1,"t":6,"tokens":[9233,15993,6475,4091],"delegation":[8233,14993,5475,3091],"delegatorTokens":9999999977185}},{"ix":20,"action":{"kind":"Delegate","val":0,"amt":4033},"partialState":{"h":1,"t":6,"tokens":[13266,15993,6475,4091],"delegation":[12266,14993,5475,3091],"delegatorTokens":9999999973152}},{"ix":21,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":22,"action":{"kind":"Undelegate","val":2,"amt":1120},"partialState":{"h":1,"t":6,"tokens":[13266,15993,5355,4091],"delegation":[12266,14993,4355,3091],"delegatorTokens":9999999973152}},{"ix":23,"action":{"kind":"Undelegate","val":3,"amt":2059},"partialState":{"h":1,"t":6,"tokens":[13266,15993,5355,2032],"delegation":[12266,14993,4355,1032],"delegatorTokens":9999999973152}},{"ix":24,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":2,"t":12,"tokens":[13266,15993,5355,2032],"delegation":[12266,14993,4355,1032],"delegatorTokens":9999999973152,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":25,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":26,"action":{"kind":"Delegate","val":0,"amt":4483},"partialState":{"h":2,"t":12,"tokens":[17749,15993,5355,2032],"delegation":[16749,14993,4355,1032],"delegatorTokens":9999999968669}},{"ix":27,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":3,"t":18,"tokens":[17749,15993,5355,2032],"delegation":[16749,14993,4355,1032],"delegatorTokens":9999999968669,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":28,"action":{"kind":"Undelegate","val":1,"amt":4689},"partialState":{"h":3,"t":18,"tokens":[17749,11304,5355,2032],"delegation":[16749,10304,4355,1032],"delegatorTokens":9999999968669}},{"ix":29,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":3,"t":18,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,true,true,true]}},{"ix":30,"action":{"kind":"Undelegate","val":3,"amt":2229},"partialState":{"h":3,"t":18,"tokens":[17749,11304,5355,2032],"delegation":[16749,10304,4355,1032],"delegatorTokens":9999999968669}},{"ix":31,"action":{"kind":"Undelegate","val":0,"amt":4503},"partialState":{"h":3,"t":18,"tokens":[13246,11304,5355,2032],"delegation":[12246,10304,4355,1032],"delegatorTokens":9999999968669}},{"ix":32,"action":{"kind":"Delegate","val":0,"amt":3924},"partialState":{"h":3,"t":18,"tokens":[17170,11304,5355,2032],"delegation":[16170,10304,4355,1032],"delegatorTokens":9999999964745}},{"ix":33,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":34,"action":{"kind":"Undelegate","val":1,"amt":4141},"partialState":{"h":3,"t":18,"tokens":[17170,7163,5355,2032],"delegation":[16170,6163,4355,1032],"delegatorTokens":9999999964745}},{"ix":35,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":4,"t":24,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,true,true,true]}},{"ix":36,"action":{"kind":"Delegate","val":3,"amt":3123},"partialState":{"h":3,"t":18,"tokens":[17170,7163,5355,5155],"delegation":[16170,6163,4355,4155],"delegatorTokens":9999999961622}},{"ix":37,"action":{"kind":"Deliver","chain":"provider","numPackets":3},"partialState":{"h":3,"t":18,"tokens":[17170,7163,5355,5155],"delegation":[16170,6163,4355,4155],"delegatorTokens":9999999961622,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":38,"action":{"kind":"Deliver","chain":"provider","numPackets":2},"partialState":{"h":3,"t":18,"tokens":[17170,7163,5355,5155],"delegation":[16170,6163,4355,4155],"delegatorTokens":9999999961622,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":39,"action":{"kind":"Undelegate","val":2,"amt":1514},"partialState":{"h":3,"t":18,"tokens":[17170,7163,3841,5155],"delegation":[16170,6163,2841,4155],"delegatorTokens":9999999961622}},{"ix":40,"action":{"kind":"Undelegate","val":3,"amt":1476},"partialState":{"h":3,"t":18,"tokens":[17170,7163,3841,3679],"delegation":[16170,6163,2841,2679],"delegatorTokens":9999999961622}},{"ix":41,"action":{"kind":"Deliver","chain":"provider","numPackets":5},"partialState":{"h":3,"t":18,"tokens":[17170,7163,3841,3679],"delegation":[16170,6163,2841,2679],"delegatorTokens":9999999961622,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":42,"action":{"kind":"Delegate","val":0,"amt":1413},"partialState":{"h":3,"t":18,"tokens":[18583,7163,3841,3679],"delegation":[17583,6163,2841,2679],"delegatorTokens":9999999960209}},{"ix":43,"action":{"kind":"Deliver","chain":"consumer","numPackets":2},"partialState":{"h":4,"t":24,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,true,true,true]}},{"ix":44,"action":{"kind":"Undelegate","val":1,"amt":3484},"partialState":{"h":3,"t":18,"tokens":[18583,3679,3841,3679],"delegation":[17583,2679,2841,2679],"delegatorTokens":9999999960209}},{"ix":45,"action":{"kind":"Undelegate","val":0,"amt":4740},"partialState":{"h":3,"t":18,"tokens":[13843,3679,3841,3679],"delegation":[12843,2679,2841,2679],"delegatorTokens":9999999960209}},{"ix":46,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":5,"t":30,"consumerPower":[13266,15993,null,null],"outstandingDowntime":[false,true,true,true]}},{"ix":47,"action":{"kind":"Deliver","chain":"provider","numPackets":3},"partialState":{"h":3,"t":18,"tokens":[13843,3679,3841,3679],"delegation":[12843,2679,2841,2679],"delegatorTokens":9999999960209,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":48,"action":{"kind":"Delegate","val":1,"amt":3820},"partialState":{"h":3,"t":18,"tokens":[13843,7499,3841,3679],"delegation":[12843,6499,2841,2679],"delegatorTokens":9999999956389}},{"ix":49,"action":{"kind":"Delegate","val":0,"amt":1083},"partialState":{"h":3,"t":18,"tokens":[14926,7499,3841,3679],"delegation":[13926,6499,2841,2679],"delegatorTokens":9999999955306}},{"ix":50,"action":{"kind":"Deliver","chain":"provider","numPackets":1},"partialState":{"h":3,"t":18,"tokens":[14926,7499,3841,3679],"delegation":[13926,6499,2841,2679],"delegatorTokens":9999999955306,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":51,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":4,"t":24,"tokens":[14926,7499,3841,3679],"delegation":[13926,6499,2841,2679],"delegatorTokens":9999999955306,"jailed":[null,1000000000000017,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":52,"action":{"kind":"Delegate","val":0,"amt":4841},"partialState":{"h":4,"t":24,"tokens":[19767,7499,3841,3679],"delegation":[18767,6499,2841,2679],"delegatorTokens":9999999950465}},{"ix":53,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":5,"t":30,"tokens":[19767,7499,3841,3679],"delegation":[18767,6499,2841,2679],"delegatorTokens":9999999950465,"jailed":[null,1000000000000017,null,null],"status":["bonded","unbonding","bonded","unbonded"]}},{"ix":54,"action":{"kind":"Deliver","chain":"consumer","numPackets":4},"partialState":{"h":5,"t":30,"consumerPower":[13266,15993,null,null],"outstandingDowntime":[false,false,true,true]}},{"ix":55,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":6,"t":36,"tokens":[19767,7499,3841,3679],"delegation":[18767,6499,2841,2679],"delegatorTokens":9999999950465,"jailed":[null,1000000000000017,null,null],"status":["bonded","unbonding","bonded","unbonded"]}},{"ix":56,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":57,"action":{"kind":"Undelegate","val":1,"amt":3114},"partialState":{"h":6,"t":36,"tokens":[19767,4385,3841,3679],"delegation":[18767,3385,2841,2679],"delegatorTokens":9999999950465}},{"ix":58,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":59,"action":{"kind":"Deliver","chain":"consumer","numPackets":1},"partialState":{"h":5,"t":30,"consumerPower":[13266,15993,null,null],"outstandingDowntime":[false,false,true,true]}},{"ix":60,"action":{"kind":"Undelegate","val":0,"amt":2653},"partialState":{"h":6,"t":36,"tokens":[17114,4385,3841,3679],"delegation":[16114,3385,2841,2679],"delegatorTokens":9999999950465}},{"ix":61,"action":{"kind":"Deliver","chain":"provider","numPackets":3},"partialState":{"h":6,"t":36,"tokens":[17114,4385,3841,3679],"delegation":[16114,3385,2841,2679],"delegatorTokens":9999999950465,"jailed":[null,1000000000000017,null,null],"status":["bonded","unbonding","bonded","unbonded"]}},{"ix":62,"action":{"kind":"Delegate","val":2,"amt":3564},"partialState":{"h":6,"t":36,"tokens":[17114,4385,7405,3679],"delegation":[16114,3385,6405,2679],"delegatorTokens":9999999946901}},{"ix":63,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":7,"t":42,"tokens":[17114,4385,7405,3679],"delegation":[16114,3385,6405,2679],"delegatorTokens":9999999946901,"jailed":[null,1000000000000017,null,null],"status":["bonded","unbonding","bonded","unbonded"]}},{"ix":64,"action":{"kind":"Delegate","val":2,"amt":4241},"partialState":{"h":7,"t":42,"tokens":[17114,4385,11646,3679],"delegation":[16114,3385,10646,2679],"delegatorTokens":9999999942660}},{"ix":65,"action":{"kind":"Delegate","val":2,"amt":1517},"partialState":{"h":7,"t":42,"tokens":[17114,4385,13163,3679],"delegation":[16114,3385,12163,2679],"delegatorTokens":9999999941143}},{"ix":66,"action":{"kind":"Delegate","val":0,"amt":4486},"partialState":{"h":7,"t":42,"tokens":[21600,4385,13163,3679],"delegation":[20600,3385,12163,2679],"delegatorTokens":9999999936657}},{"ix":67,"action":{"kind":"Undelegate","val":3,"amt":4213},"partialState":{"h":7,"t":42,"tokens":[21600,4385,13163,3679],"delegation":[20600,3385,12163,2679],"delegatorTokens":9999999936657}},{"ix":68,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":69,"action":{"kind":"Undelegate","val":0,"amt":2993},"partialState":{"h":7,"t":42,"tokens":[18607,4385,13163,3679],"delegation":[17607,3385,12163,2679],"delegatorTokens":9999999936657}},{"ix":70,"action":{"kind":"Delegate","val":2,"amt":3180},"partialState":{"h":7,"t":42,"tokens":[18607,4385,16343,3679],"delegation":[17607,3385,15343,2679],"delegatorTokens":9999999933477}},{"ix":71,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":72,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":8,"t":48,"tokens":[18607,4385,16343,3679],"delegation":[17607,3385,15343,2679],"delegatorTokens":9999999933477,"jailed":[null,1000000000000017,null,null],"status":["bonded","unbonding","bonded","unbonded"]}},{"ix":73,"action":{"kind":"Deliver","chain":"consumer","numPackets":3},"partialState":{"h":5,"t":30,"consumerPower":[13266,15993,null,null],"outstandingDowntime":[false,false,true,true]}},{"ix":74,"action":{"kind":"Deliver","chain":"provider","numPackets":5},"partialState":{"h":8,"t":48,"tokens":[18607,4385,16343,3679],"delegation":[17607,3385,15343,2679],"delegatorTokens":9999999933477,"jailed":[null,1000000000000017,null,null],"status":["bonded","unbonding","bonded","unbonded"]}},{"ix":75,"action":{"kind":"Deliver","chain":"consumer","numPackets":6},"partialState":{"h":5,"t":30,"consumerPower":[13266,15993,null,null],"outstandingDowntime":[false,false,true,true]}},{"ix":76,"action":{"kind":"Delegate","val":1,"amt":2155},"partialState":{"h":8,"t":48,"tokens":[18607,6540,16343,3679],"delegation":[17607,5540,15343,2679],"delegatorTokens":9999999931322}},{"ix":77,"action":{"kind":"Delegate","val":3,"amt":3890},"partialState":{"h":8,"t":48,"tokens":[18607,6540,16343,7569],"delegation":[17607,5540,15343,6569],"delegatorTokens":9999999927432}},{"ix":78,"action":{"kind":"Deliver","chain":"provider","numPackets":2},"partialState":{"h":8,"t":48,"tokens":[18607,6540,16343,7569],"delegation":[17607,5540,15343,6569],"delegatorTokens":9999999927432,"jailed":[null,1000000000000017,null,null],"status":["bonded","unbonding","bonded","unbonded"]}},{"ix":79,"action":{"kind":"Delegate","val":3,"amt":3407},"partialState":{"h":8,"t":48,"tokens":[18607,6540,16343,10976],"delegation":[17607,5540,15343,9976],"delegatorTokens":9999999924025}},{"ix":80,"action":{"kind":"Delegate","val":3,"amt":1942},"partialState":{"h":8,"t":48,"tokens":[18607,6540,16343,12918],"delegation":[17607,5540,15343,11918],"delegatorTokens":9999999922083}},{"ix":81,"action":{"kind":"Deliver","chain":"consumer","numPackets":5},"partialState":{"h":5,"t":30,"consumerPower":[13266,15993,null,null],"outstandingDowntime":[false,false,true,true]}},{"ix":82,"action":{"kind":"Deliver","chain":"consumer","numPackets":3},"partialState":{"h":5,"t":30,"consumerPower":[13266,15993,null,null],"outstandingDowntime":[false,false,true,true]}},{"ix":83,"action":{"kind":"Deliver","chain":"consumer","numPackets":6},"partialState":{"h":5,"t":30,"consumerPower":[13266,15993,null,null],"outstandingDowntime":[false,false,true,true]}},{"ix":84,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":6,"t":36,"consumerPower":[17114,null,7405,null],"outstandingDowntime":[false,false,true,true]}},{"ix":85,"action":{"kind":"Undelegate","val":0,"amt":1939},"partialState":{"h":8,"t":48,"tokens":[16668,6540,16343,12918],"delegation":[15668,5540,15343,11918],"delegatorTokens":9999999922083}},{"ix":86,"action":{"kind":"Undelegate","val":2,"amt":4098},"partialState":{"h":8,"t":48,"tokens":[16668,6540,12245,12918],"delegation":[15668,5540,11245,11918],"delegatorTokens":9999999922083}},{"ix":87,"action":{"kind":"Undelegate","val":3,"amt":3495},"partialState":{"h":8,"t":48,"tokens":[16668,6540,12245,9423],"delegation":[15668,5540,11245,8423],"delegatorTokens":9999999922083}},{"ix":88,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":89,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":9,"t":54,"tokens":[16668,6540,12245,9423],"delegation":[15668,5540,11245,8423],"delegatorTokens":9999999922083,"jailed":[null,1000000000000017,null,null],"status":["bonded","unbonding","bonded","unbonded"]}},{"ix":90,"action":{"kind":"Deliver","chain":"provider","numPackets":2},"partialState":{"h":9,"t":54,"tokens":[16668,6540,12245,9423],"delegation":[15668,5540,11245,8423],"delegatorTokens":9999999922083,"jailed":[null,1000000000000017,null,null],"status":["bonded","unbonding","bonded","unbonded"]}},{"ix":91,"action":{"kind":"Deliver","chain":"consumer","numPackets":3},"partialState":{"h":6,"t":36,"consumerPower":[17114,null,7405,null],"outstandingDowntime":[false,false,true,true]}},{"ix":92,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":10,"t":60,"tokens":[16668,6540,12245,9423],"delegation":[15668,5540,11245,8423],"delegatorTokens":9999999922083,"jailed":[null,1000000000000017,null,null],"status":["bonded","unbonding","bonded","unbonded"]}},{"ix":93,"action":{"kind":"Deliver","chain":"provider","numPackets":3},"partialState":{"h":10,"t":60,"tokens":[16668,6540,12245,9423],"delegation":[15668,5540,11245,8423],"delegatorTokens":9999999922083,"jailed":[null,1000000000000017,null,null],"status":["bonded","unbonding","bonded","unbonded"]}},{"ix":94,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":95,"action":{"kind":"Undelegate","val":2,"amt":3304},"partialState":{"h":10,"t":60,"tokens":[16668,6540,8941,9423],"delegation":[15668,5540,7941,8423],"delegatorTokens":9999999922083}},{"ix":96,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":11,"t":66,"tokens":[16668,6540,8941,9423],"delegation":[15668,5540,7941,8423],"delegatorTokens":9999999922083,"jailed":[null,1000000000000017,null,null],"status":["bonded","unbonding","unbonding","bonded"]}},{"ix":97,"action":{"kind":"Undelegate","val":3,"amt":2790},"partialState":{"h":11,"t":66,"tokens":[16668,6540,8941,6633],"delegation":[15668,5540,7941,5633],"delegatorTokens":9999999922083}},{"ix":98,"action":{"kind":"Undelegate","val":0,"amt":3329},"partialState":{"h":11,"t":66,"tokens":[13339,6540,8941,6633],"delegation":[12339,5540,7941,5633],"delegatorTokens":9999999922083}},{"ix":99,"action":{"kind":"Deliver","chain":"consumer","numPackets":1},"partialState":{"h":6,"t":36,"consumerPower":[17114,null,7405,null],"outstandingDowntime":[false,false,true,true]}},{"ix":100,"action":{"kind":"Delegate","val":2,"amt":1087},"partialState":{"h":11,"t":66,"tokens":[13339,6540,10028,6633],"delegation":[12339,5540,9028,5633],"delegatorTokens":9999999920996}},{"ix":101,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":12,"t":72,"tokens":[13339,6540,10028,6633],"delegation":[12339,5540,9028,5633],"delegatorTokens":9999999920996,"jailed":[null,1000000000000017,null,null],"status":["bonded","unbonding","bonded","unbonding"]}},{"ix":102,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":13,"t":78,"tokens":[13339,6540,10028,6633],"delegation":[12339,5540,9028,5633],"delegatorTokens":9999999920996,"jailed":[null,1000000000000017,null,null],"status":["bonded","unbonding","bonded","unbonding"]}},{"ix":103,"action":{"kind":"Undelegate","val":1,"amt":1216},"partialState":{"h":13,"t":78,"tokens":[13339,5324,10028,6633],"delegation":[12339,4324,9028,5633],"delegatorTokens":9999999920996}},{"ix":104,"action":{"kind":"Delegate","val":3,"amt":1331},"partialState":{"h":13,"t":78,"tokens":[13339,5324,10028,7964],"delegation":[12339,4324,9028,6964],"delegatorTokens":9999999919665}},{"ix":105,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":106,"action":{"kind":"Undelegate","val":1,"amt":2631},"partialState":{"h":13,"t":78,"tokens":[13339,2693,10028,7964],"delegation":[12339,1693,9028,6964],"delegatorTokens":9999999919665}},{"ix":107,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":7,"t":42,"consumerPower":[16668,null,12245,null],"outstandingDowntime":[false,false,true,true]}},{"ix":108,"action":{"kind":"Undelegate","val":1,"amt":4329},"partialState":{"h":13,"t":78,"tokens":[13339,2693,10028,7964],"delegation":[12339,1693,9028,6964],"delegatorTokens":9999999919665}},{"ix":109,"action":{"kind":"Delegate","val":0,"amt":2119},"partialState":{"h":13,"t":78,"tokens":[15458,2693,10028,7964],"delegation":[14458,1693,9028,6964],"delegatorTokens":9999999917546}},{"ix":110,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":111,"action":{"kind":"Delegate","val":3,"amt":1471},"partialState":{"h":13,"t":78,"tokens":[15458,2693,10028,9435],"delegation":[14458,1693,9028,8435],"delegatorTokens":9999999916075}},{"ix":112,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":113,"action":{"kind":"Deliver","chain":"provider","numPackets":6},"partialState":{"h":13,"t":78,"tokens":[15458,2693,10028,9435],"delegation":[14458,1693,9028,8435],"delegatorTokens":9999999916075,"jailed":[null,1000000000000017,null,null],"status":["bonded","unbonding","bonded","unbonding"]}},{"ix":114,"action":{"kind":"Deliver","chain":"provider","numPackets":3},"partialState":{"h":13,"t":78,"tokens":[15458,2693,10028,9435],"delegation":[14458,1693,9028,8435],"delegatorTokens":9999999916075,"jailed":[null,1000000000000017,null,null],"status":["bonded","unbonding","bonded","unbonding"]}},{"ix":115,"action":{"kind":"Delegate","val":2,"amt":1942},"partialState":{"h":13,"t":78,"tokens":[15458,2693,11970,9435],"delegation":[14458,1693,10970,8435],"delegatorTokens":9999999914133}},{"ix":116,"action":{"kind":"Deliver","chain":"provider","numPackets":2},"partialState":{"h":13,"t":78,"tokens":[15458,2693,11970,9435],"delegation":[14458,1693,10970,8435],"delegatorTokens":9999999914133,"jailed":[null,1000000000000017,null,null],"status":["bonded","unbonding","bonded","unbonding"]}},{"ix":117,"action":{"kind":"Undelegate","val":2,"amt":3562},"partialState":{"h":13,"t":78,"tokens":[15458,2693,8408,9435],"delegation":[14458,1693,7408,8435],"delegatorTokens":9999999914133}},{"ix":118,"action":{"kind":"Undelegate","val":1,"amt":2875},"partialState":{"h":13,"t":78,"tokens":[15458,2693,8408,9435],"delegation":[14458,1693,7408,8435],"delegatorTokens":9999999914133}},{"ix":119,"action":{"kind":"Delegate","val":2,"amt":4231},"partialState":{"h":13,"t":78,"tokens":[15458,2693,12639,9435],"delegation":[14458,1693,11639,8435],"delegatorTokens":9999999909902}},{"ix":120,"action":{"kind":"Deliver","chain":"consumer","numPackets":4},"partialState":{"h":7,"t":42,"consumerPower":[16668,null,12245,null],"outstandingDowntime":[false,false,true,true]}},{"ix":121,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":122,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":8,"t":48,"consumerPower":[13339,null,10028,null],"outstandingDowntime":[false,false,true,true]}},{"ix":123,"action":{"kind":"Undelegate","val":3,"amt":2773},"partialState":{"h":13,"t":78,"tokens":[15458,2693,12639,6662],"delegation":[14458,1693,11639,5662],"delegatorTokens":9999999909902}},{"ix":124,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":125,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":126,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":127,"action":{"kind":"Deliver","chain":"consumer","numPackets":5},"partialState":{"h":8,"t":48,"consumerPower":[13339,null,10028,null],"outstandingDowntime":[false,false,true,true]}},{"ix":128,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":14,"t":84,"tokens":[15458,2693,12639,6662],"delegation":[14458,1693,11639,5662],"delegatorTokens":9999999909902,"jailed":[null,1000000000000017,null,null],"status":["bonded","unbonding","bonded","unbonding"]}},{"ix":129,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":15,"t":90,"tokens":[15458,2693,12639,6662],"delegation":[14458,1693,11639,5662],"delegatorTokens":9999999909902,"jailed":[null,1000000000000017,null,null],"status":["bonded","unbonding","bonded","unbonding"]}},{"ix":130,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":9,"t":54,"consumerPower":[13339,null,10028,null],"outstandingDowntime":[false,false,true,true]}},{"ix":131,"action":{"kind":"Deliver","chain":"provider","numPackets":5},"partialState":{"h":15,"t":90,"tokens":[15458,2693,12639,6662],"delegation":[14458,1693,11639,5662],"delegatorTokens":9999999909902,"jailed":[null,1000000000000017,null,null],"status":["bonded","unbonding","bonded","unbonding"]}},{"ix":132,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":133,"action":{"kind":"Deliver","chain":"consumer","numPackets":2},"partialState":{"h":9,"t":54,"consumerPower":[13339,null,10028,null],"outstandingDowntime":[false,false,true,true]}},{"ix":134,"action":{"kind":"Undelegate","val":0,"amt":2355},"partialState":{"h":15,"t":90,"tokens":[13103,2693,12639,6662],"delegation":[12103,1693,11639,5662],"delegatorTokens":9999999909902}},{"ix":135,"action":{"kind":"Delegate","val":1,"amt":4365},"partialState":{"h":15,"t":90,"tokens":[13103,7058,12639,6662],"delegation":[12103,6058,11639,5662],"delegatorTokens":9999999905537}},{"ix":136,"action":{"kind":"Undelegate","val":3,"amt":1739},"partialState":{"h":15,"t":90,"tokens":[13103,7058,12639,4923],"delegation":[12103,6058,11639,3923],"delegatorTokens":9999999905537}},{"ix":137,"action":{"kind":"Undelegate","val":0,"amt":2203},"partialState":{"h":15,"t":90,"tokens":[10900,7058,12639,4923],"delegation":[9900,6058,11639,3923],"delegatorTokens":9999999905537}},{"ix":138,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":16,"t":96,"tokens":[10900,7058,12639,4923],"delegation":[9900,6058,11639,3923],"delegatorTokens":9999999905537,"jailed":[null,1000000000000017,null,null],"status":["bonded","unbonding","bonded","unbonding"]}},{"ix":139,"action":{"kind":"Delegate","val":1,"amt":2333},"partialState":{"h":16,"t":96,"tokens":[10900,9391,12639,4923],"delegation":[9900,8391,11639,3923],"delegatorTokens":9999999903204}},{"ix":140,"action":{"kind":"Undelegate","val":1,"amt":2808},"partialState":{"h":16,"t":96,"tokens":[10900,6583,12639,4923],"delegation":[9900,5583,11639,3923],"delegatorTokens":9999999903204}},{"ix":141,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":142,"action":{"kind":"Deliver","chain":"consumer","numPackets":5},"partialState":{"h":9,"t":54,"consumerPower":[13339,null,10028,null],"outstandingDowntime":[false,false,true,true]}},{"ix":143,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":144,"action":{"kind":"Delegate","val":0,"amt":4457},"partialState":{"h":16,"t":96,"tokens":[15357,6583,12639,4923],"delegation":[14357,5583,11639,3923],"delegatorTokens":9999999898747}},{"ix":145,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":146,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":147,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":10,"t":60,"consumerPower":[15458,null,12639,null],"outstandingDowntime":[false,false,true,true]}},{"ix":148,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":11,"t":66,"consumerPower":[15458,null,12639,null],"outstandingDowntime":[false,false,true,true]}},{"ix":149,"action":{"kind":"Delegate","val":2,"amt":4078},"partialState":{"h":16,"t":96,"tokens":[15357,6583,16717,4923],"delegation":[14357,5583,15717,3923],"delegatorTokens":9999999894669}},{"ix":150,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":151,"action":{"kind":"Delegate","val":3,"amt":4502},"partialState":{"h":16,"t":96,"tokens":[15357,6583,16717,9425],"delegation":[14357,5583,15717,8425],"delegatorTokens":9999999890167}},{"ix":152,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":12,"t":72,"consumerPower":[15458,null,12639,null],"outstandingDowntime":[false,false,true,true]}},{"ix":153,"action":{"kind":"Deliver","chain":"consumer","numPackets":2},"partialState":{"h":12,"t":72,"consumerPower":[15458,null,12639,null],"outstandingDowntime":[false,false,true,true]}},{"ix":154,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":155,"action":{"kind":"Delegate","val":0,"amt":3277},"partialState":{"h":16,"t":96,"tokens":[18634,6583,16717,9425],"delegation":[17634,5583,15717,8425],"delegatorTokens":9999999886890}},{"ix":156,"action":{"kind":"Undelegate","val":3,"amt":2634},"partialState":{"h":16,"t":96,"tokens":[18634,6583,16717,6791],"delegation":[17634,5583,15717,5791],"delegatorTokens":9999999886890}},{"ix":157,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":158,"action":{"kind":"Deliver","chain":"consumer","numPackets":1},"partialState":{"h":12,"t":72,"consumerPower":[15458,null,12639,null],"outstandingDowntime":[false,false,true,true]}},{"ix":159,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":160,"action":{"kind":"Undelegate","val":3,"amt":3101},"partialState":{"h":16,"t":96,"tokens":[18634,6583,16717,3690],"delegation":[17634,5583,15717,2690],"delegatorTokens":9999999886890}},{"ix":161,"action":{"kind":"Delegate","val":2,"amt":4251},"partialState":{"h":16,"t":96,"tokens":[18634,6583,20968,3690],"delegation":[17634,5583,19968,2690],"delegatorTokens":9999999882639}},{"ix":162,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":163,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":164,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":165,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":13,"t":78,"consumerPower":[15458,null,12639,null],"outstandingDowntime":[false,false,true,true]}},{"ix":166,"action":{"kind":"Deliver","chain":"provider","numPackets":5},"partialState":{"h":16,"t":96,"tokens":[18634,6583,20968,3690],"delegation":[17634,5583,19968,2690],"delegatorTokens":9999999882639,"jailed":[null,1000000000000017,null,null],"status":["bonded","unbonding","bonded","unbonding"]}},{"ix":167,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":168,"action":{"kind":"Undelegate","val":2,"amt":1603},"partialState":{"h":16,"t":96,"tokens":[18634,6583,19365,3690],"delegation":[17634,5583,18365,2690],"delegatorTokens":9999999882639}},{"ix":169,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":14,"t":84,"consumerPower":[15458,null,12639,null],"outstandingDowntime":[false,false,true,true]}},{"ix":170,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":171,"action":{"kind":"Undelegate","val":2,"amt":4446},"partialState":{"h":16,"t":96,"tokens":[18634,6583,14919,3690],"delegation":[17634,5583,13919,2690],"delegatorTokens":9999999882639}},{"ix":172,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":15,"t":90,"consumerPower":[15458,null,12639,null],"outstandingDowntime":[false,false,true,true]}},{"ix":173,"action":{"kind":"Undelegate","val":2,"amt":4837},"partialState":{"h":16,"t":96,"tokens":[18634,6583,10082,3690],"delegation":[17634,5583,9082,2690],"delegatorTokens":9999999882639}},{"ix":174,"action":{"kind":"Undelegate","val":2,"amt":3810},"partialState":{"h":16,"t":96,"tokens":[18634,6583,6272,3690],"delegation":[17634,5583,5272,2690],"delegatorTokens":9999999882639}},{"ix":175,"action":{"kind":"Delegate","val":0,"amt":2381},"partialState":{"h":16,"t":96,"tokens":[21015,6583,6272,3690],"delegation":[20015,5583,5272,2690],"delegatorTokens":9999999880258}},{"ix":176,"action":{"kind":"Delegate","val":1,"amt":1351},"partialState":{"h":16,"t":96,"tokens":[21015,7934,6272,3690],"delegation":[20015,6934,5272,2690],"delegatorTokens":9999999878907}},{"ix":177,"action":{"kind":"Deliver","chain":"consumer","numPackets":6},"partialState":{"h":15,"t":90,"consumerPower":[15458,null,12639,null],"outstandingDowntime":[false,false,true,true]}},{"ix":178,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":179,"action":{"kind":"Deliver","chain":"provider","numPackets":5},"partialState":{"h":16,"t":96,"tokens":[21015,7934,6272,3690],"delegation":[20015,6934,5272,2690],"delegatorTokens":9999999878907,"jailed":[null,1000000000000017,null,null],"status":["bonded","unbonding","bonded","unbonding"]}},{"ix":180,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":16,"t":96,"consumerPower":[15458,null,12639,null],"outstandingDowntime":[false,false,true,true]}},{"ix":181,"action":{"kind":"Delegate","val":3,"amt":1001},"partialState":{"h":16,"t":96,"tokens":[21015,7934,6272,4691],"delegation":[20015,6934,5272,3691],"delegatorTokens":9999999877906}},{"ix":182,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":183,"action":{"kind":"Undelegate","val":1,"amt":4768},"partialState":{"h":16,"t":96,"tokens":[21015,3166,6272,4691],"delegation":[20015,2166,5272,3691],"delegatorTokens":9999999877906}},{"ix":184,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":185,"action":{"kind":"Deliver","chain":"consumer","numPackets":6},"partialState":{"h":16,"t":96,"consumerPower":[15458,null,12639,null],"outstandingDowntime":[false,false,true,true]}},{"ix":186,"action":{"kind":"Undelegate","val":1,"amt":2165},"partialState":{"h":16,"t":96,"tokens":[21015,1001,6272,4691],"delegation":[20015,1,5272,3691],"delegatorTokens":9999999877906}},{"ix":187,"action":{"kind":"Delegate","val":3,"amt":2129},"partialState":{"h":16,"t":96,"tokens":[21015,1001,6272,6820],"delegation":[20015,1,5272,5820],"delegatorTokens":9999999875777}},{"ix":188,"action":{"kind":"Deliver","chain":"provider","numPackets":6},"partialState":{"h":16,"t":96,"tokens":[21015,1001,6272,6820],"delegation":[20015,1,5272,5820],"delegatorTokens":9999999875777,"jailed":[null,1000000000000017,null,null],"status":["bonded","unbonding","bonded","unbonding"]}},{"ix":189,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":17,"t":102,"tokens":[21015,1001,6272,6820],"delegation":[20015,1,5272,5820],"delegatorTokens":9999999904526,"jailed":[null,1000000000000017,null,null],"status":["bonded","unbonding","unbonding","bonded"]}},{"ix":190,"action":{"kind":"Deliver","chain":"consumer","numPackets":4},"partialState":{"h":16,"t":96,"consumerPower":[15458,null,12639,null],"outstandingDowntime":[false,false,true,true]}},{"ix":191,"action":{"kind":"Undelegate","val":3,"amt":1514},"partialState":{"h":17,"t":102,"tokens":[21015,1001,6272,5306],"delegation":[20015,1,5272,4306],"delegatorTokens":9999999904526}},{"ix":192,"action":{"kind":"Deliver","chain":"consumer","numPackets":4},"partialState":{"h":16,"t":96,"consumerPower":[15458,null,12639,null],"outstandingDowntime":[false,false,true,true]}},{"ix":193,"action":{"kind":"Delegate","val":2,"amt":3574},"partialState":{"h":17,"t":102,"tokens":[21015,1001,9846,5306],"delegation":[20015,1,8846,4306],"delegatorTokens":9999999900952}},{"ix":194,"action":{"kind":"Deliver","chain":"consumer","numPackets":4},"partialState":{"h":16,"t":96,"consumerPower":[15458,null,12639,null],"outstandingDowntime":[false,false,true,true]}},{"ix":195,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":196,"action":{"kind":"Undelegate","val":2,"amt":1388},"partialState":{"h":17,"t":102,"tokens":[21015,1001,8458,5306],"delegation":[20015,1,7458,4306],"delegatorTokens":9999999900952}},{"ix":197,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":17,"t":102,"consumerPower":[10900,null,12639,null],"outstandingDowntime":[false,false,true,true]}},{"ix":198,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":199,"action":{"kind":"Undelegate","val":3,"amt":4431},"partialState":{"h":17,"t":102,"tokens":[21015,1001,8458,5306],"delegation":[20015,1,7458,4306],"delegatorTokens":9999999900952}}],"events":["send_downtime_slash_request","insufficient_shares","send_double_sign_slash_request","send_downtime_slash_request","send_downtime_slash_request","insufficient_shares","send_vsc_without_downtime_ack","send_vsc_without_downtime_ack","insufficient_shares","receive_double_sign_slash_request","consumer_update_val","consumer_update_val","receive_downtime_slash_request","jail","receive_slash_request_unbonded","receive_slash_request_unbonded","send_vsc_with_downtime_ack","send_vsc_without_downtime_ack","receive_downtime_slash_ack","send_vsc_without_downtime_ack","insufficient_shares","send_vsc_without_downtime_ack","consumer_update_val","consumer_del_val","consumer_add_val","send_vsc_without_downtime_ack","more_than_one_third_val_power_change","send_vsc_without_downtime_ack","more_than_one_third_val_power_change","rebond_unval","send_vsc_without_downtime_ack","consumer_update_val","consumer_update_val","insufficient_shares","insufficient_shares","consumer_update_val","consumer_del_val","consumer_update_val","some_undels_expired_but_not_completed","send_vsc_without_downtime_ack","some_undels_expired_but_not_completed","send_vsc_without_downtime_ack","consumer_update_val","consumer_update_val","consumer_send_maturation","consumer_send_maturation","consumer_send_maturation","consumer_send_maturation","consumer_send_maturation","consumer_send_maturation","consumer_send_maturation","rebond_unval","complete_undel_immediate","complete_undel_immediate","complete_undel_immediate","complete_undel_immediate","complete_undel_immediate","complete_undel_immediate","complete_undel_immediate","complete_undel_immediate","complete_undel_immediate","complete_undel_immediate","set_unval_hold_false","set_undel_hold_false","set_undel_hold_false","send_vsc_without_downtime_ack","consumer_send_maturation","consumer_send_maturation","consumer_update_val","insufficient_shares"]},{"meta":{"commit":"7ffd0c04e4205cbc9caf212abfe6c59ee43153bf"},"constants":{"P":"provider","C":"consumer","UNBONDING_SECONDS_P":70,"UNBONDING_SECONDS_C":50,"TRUSTING_SECONDS":49,"NUM_VALIDATORS":4,"MAX_VALIDATORS":2,"SLASH_DOUBLESIGN":0,"SLASH_DOWNTIME":0,"JAIL_SECONDS":999999999999999,"BLOCK_SECONDS":6,"INITIAL_DELEGATOR_TOKENS":10000000000000,"DELEGATE_AMT_MIN":1000,"DELEGATE_AMT_MAX":5000,"UNDELEGATE_AMT_MIN":1000,"UNDELEGATE_AMT_MAX":5000,"ISDOWNTIME_PROBABILITY":0.5,"MAX_NUM_PACKETS_FOR_DELIVER":6},"actions":[{"ix":0,"action":{"kind":"Deliver","chain":"provider","numPackets":2},"partialState":{"h":1,"t":6,"tokens":[5000,4000,3000,2000],"delegation":[4000,3000,2000,1000],"delegatorTokens":10000000000000,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":1,"action":{"kind":"Undelegate","val":3,"amt":1973},"partialState":{"h":1,"t":6,"tokens":[5000,4000,3000,2000],"delegation":[4000,3000,2000,1000],"delegatorTokens":10000000000000}},{"ix":2,"action":{"kind":"ConsumerSlash","val":3,"infractionHeight":0,"isDowntime":true},"partialState":{"h":1,"t":6,"outstandingDowntime":[false,false,false,true]}},{"ix":3,"action":{"kind":"Delegate","val":2,"amt":1094},"partialState":{"h":1,"t":6,"tokens":[5000,4000,4094,2000],"delegation":[4000,3000,3094,1000],"delegatorTokens":9999999998906}},{"ix":4,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":2,"t":12,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,false,false,true]}},{"ix":5,"action":{"kind":"Undelegate","val":1,"amt":3253},"partialState":{"h":1,"t":6,"tokens":[5000,4000,4094,2000],"delegation":[4000,3000,3094,1000],"delegatorTokens":9999999998906}},{"ix":6,"action":{"kind":"Delegate","val":2,"amt":1261},"partialState":{"h":1,"t":6,"tokens":[5000,4000,5355,2000],"delegation":[4000,3000,4355,1000],"delegatorTokens":9999999997645}},{"ix":7,"action":{"kind":"Deliver","chain":"provider","numPackets":4},"partialState":{"h":1,"t":6,"tokens":[5000,4000,5355,2000],"delegation":[4000,3000,4355,1000],"delegatorTokens":9999999997645,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":8,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":3,"t":18,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,false,false,true]}},{"ix":9,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":4,"t":24,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,false,false,true]}},{"ix":10,"action":{"kind":"Deliver","chain":"consumer","numPackets":6},"partialState":{"h":4,"t":24,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,false,false,true]}},{"ix":11,"action":{"kind":"Delegate","val":1,"amt":1268},"partialState":{"h":1,"t":6,"tokens":[5000,5268,5355,2000],"delegation":[4000,4268,4355,1000],"delegatorTokens":9999999996377}},{"ix":12,"action":{"kind":"ConsumerSlash","val":2,"infractionHeight":1,"isDowntime":true},"partialState":{"h":4,"t":24,"outstandingDowntime":[false,false,true,true]}},{"ix":13,"action":{"kind":"Undelegate","val":2,"amt":2359},"partialState":{"h":1,"t":6,"tokens":[5000,5268,2996,2000],"delegation":[4000,4268,1996,1000],"delegatorTokens":9999999996377}},{"ix":14,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":2,"t":12,"tokens":[5000,5268,2996,2000],"delegation":[4000,4268,1996,1000],"delegatorTokens":9999999996377,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":15,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":5,"t":30,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,false,true,true]}},{"ix":16,"action":{"kind":"Undelegate","val":3,"amt":1954},"partialState":{"h":2,"t":12,"tokens":[5000,5268,2996,2000],"delegation":[4000,4268,1996,1000],"delegatorTokens":9999999996377}},{"ix":17,"action":{"kind":"Delegate","val":3,"amt":1522},"partialState":{"h":2,"t":12,"tokens":[5000,5268,2996,3522],"delegation":[4000,4268,1996,2522],"delegatorTokens":9999999994855}},{"ix":18,"action":{"kind":"ConsumerSlash","val":2,"infractionHeight":4,"isDowntime":true},"partialState":{"h":5,"t":30,"outstandingDowntime":[false,false,true,true]}},{"ix":19,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":20,"action":{"kind":"Undelegate","val":2,"amt":3919},"partialState":{"h":2,"t":12,"tokens":[5000,5268,2996,3522],"delegation":[4000,4268,1996,2522],"delegatorTokens":9999999994855}},{"ix":21,"action":{"kind":"Undelegate","val":1,"amt":1505},"partialState":{"h":2,"t":12,"tokens":[5000,3763,2996,3522],"delegation":[4000,2763,1996,2522],"delegatorTokens":9999999994855}},{"ix":22,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":23,"action":{"kind":"Delegate","val":1,"amt":2845},"partialState":{"h":2,"t":12,"tokens":[5000,6608,2996,3522],"delegation":[4000,5608,1996,2522],"delegatorTokens":9999999992010}},{"ix":24,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":25,"action":{"kind":"Delegate","val":0,"amt":2715},"partialState":{"h":2,"t":12,"tokens":[7715,6608,2996,3522],"delegation":[6715,5608,1996,2522],"delegatorTokens":9999999989295}},{"ix":26,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":27,"action":{"kind":"Delegate","val":1,"amt":4544},"partialState":{"h":2,"t":12,"tokens":[7715,11152,2996,3522],"delegation":[6715,10152,1996,2522],"delegatorTokens":9999999984751}},{"ix":28,"action":{"kind":"Delegate","val":3,"amt":1998},"partialState":{"h":2,"t":12,"tokens":[7715,11152,2996,5520],"delegation":[6715,10152,1996,4520],"delegatorTokens":9999999982753}},{"ix":29,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":30,"action":{"kind":"ConsumerSlash","val":2,"infractionHeight":3,"isDowntime":false},"partialState":{"h":5,"t":30,"outstandingDowntime":[false,false,true,true]}},{"ix":31,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":6,"t":36,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,false,true,true]}},{"ix":32,"action":{"kind":"Deliver","chain":"provider","numPackets":1},"partialState":{"h":2,"t":12,"tokens":[7715,11152,2996,5520],"delegation":[6715,10152,1996,4520],"delegatorTokens":9999999982753,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":33,"action":{"kind":"ConsumerSlash","val":3,"infractionHeight":4,"isDowntime":true},"partialState":{"h":6,"t":36,"outstandingDowntime":[false,false,true,true]}},{"ix":34,"action":{"kind":"ConsumerSlash","val":3,"infractionHeight":1,"isDowntime":true},"partialState":{"h":6,"t":36,"outstandingDowntime":[false,false,true,true]}},{"ix":35,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":3,"t":18,"tokens":[7715,11152,2996,5520],"delegation":[6715,10152,1996,4520],"delegatorTokens":9999999982753,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":36,"action":{"kind":"Undelegate","val":2,"amt":2044},"partialState":{"h":3,"t":18,"tokens":[7715,11152,2996,5520],"delegation":[6715,10152,1996,4520],"delegatorTokens":9999999982753}},{"ix":37,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":4,"t":24,"tokens":[7715,11152,2996,5520],"delegation":[6715,10152,1996,4520],"delegatorTokens":9999999982753,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":38,"action":{"kind":"Deliver","chain":"consumer","numPackets":4},"partialState":{"h":6,"t":36,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,false,true,true]}},{"ix":39,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":7,"t":42,"consumerPower":[7715,11152,null,null],"outstandingDowntime":[false,false,true,true]}},{"ix":40,"action":{"kind":"Delegate","val":1,"amt":3152},"partialState":{"h":4,"t":24,"tokens":[7715,14304,2996,5520],"delegation":[6715,13304,1996,4520],"delegatorTokens":9999999979601}},{"ix":41,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":42,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":43,"action":{"kind":"Deliver","chain":"provider","numPackets":6},"partialState":{"h":4,"t":24,"tokens":[7715,14304,2996,5520],"delegation":[6715,13304,1996,4520],"delegatorTokens":9999999979601,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":44,"action":{"kind":"Deliver","chain":"consumer","numPackets":6},"partialState":{"h":7,"t":42,"consumerPower":[7715,11152,null,null],"outstandingDowntime":[false,false,true,true]}},{"ix":45,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":46,"action":{"kind":"Deliver","chain":"consumer","numPackets":1},"partialState":{"h":7,"t":42,"consumerPower":[7715,11152,null,null],"outstandingDowntime":[false,false,true,true]}},{"ix":47,"action":{"kind":"Undelegate","val":2,"amt":1694},"partialState":{"h":4,"t":24,"tokens":[7715,14304,1302,5520],"delegation":[6715,13304,302,4520],"delegatorTokens":9999999979601}},{"ix":48,"action":{"kind":"Undelegate","val":3,"amt":2674},"partialState":{"h":4,"t":24,"tokens":[7715,14304,1302,2846],"delegation":[6715,13304,302,1846],"delegatorTokens":9999999979601}},{"ix":49,"action":{"kind":"ConsumerSlash","val":3,"infractionHeight":3,"isDowntime":true},"partialState":{"h":7,"t":42,"outstandingDowntime":[false,false,true,true]}},{"ix":50,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":5,"t":30,"tokens":[7715,14304,1302,2846],"delegation":[6715,13304,302,1846],"delegatorTokens":9999999979601,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":51,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":52,"action":{"kind":"Delegate","val":0,"amt":1259},"partialState":{"h":5,"t":30,"tokens":[8974,14304,1302,2846],"delegation":[7974,13304,302,1846],"delegatorTokens":9999999978342}},{"ix":53,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":54,"action":{"kind":"Deliver","chain":"provider","numPackets":2},"partialState":{"h":5,"t":30,"tokens":[8974,14304,1302,2846],"delegation":[7974,13304,302,1846],"delegatorTokens":9999999978342,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":55,"action":{"kind":"Undelegate","val":2,"amt":1105},"partialState":{"h":5,"t":30,"tokens":[8974,14304,1302,2846],"delegation":[7974,13304,302,1846],"delegatorTokens":9999999978342}},{"ix":56,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":8,"t":48,"consumerPower":[7715,11152,null,null],"outstandingDowntime":[false,false,true,true]}},{"ix":57,"action":{"kind":"ConsumerSlash","val":2,"infractionHeight":4,"isDowntime":false},"partialState":{"h":8,"t":48,"outstandingDowntime":[false,false,true,true]}},{"ix":58,"action":{"kind":"Undelegate","val":3,"amt":1443},"partialState":{"h":5,"t":30,"tokens":[8974,14304,1302,1403],"delegation":[7974,13304,302,403],"delegatorTokens":9999999978342}},{"ix":59,"action":{"kind":"Delegate","val":0,"amt":1148},"partialState":{"h":5,"t":30,"tokens":[10122,14304,1302,1403],"delegation":[9122,13304,302,403],"delegatorTokens":9999999977194}},{"ix":60,"action":{"kind":"Delegate","val":3,"amt":4731},"partialState":{"h":5,"t":30,"tokens":[10122,14304,1302,6134],"delegation":[9122,13304,302,5134],"delegatorTokens":9999999972463}},{"ix":61,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":62,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":63,"action":{"kind":"ConsumerSlash","val":2,"infractionHeight":0,"isDowntime":true},"partialState":{"h":8,"t":48,"outstandingDowntime":[false,false,true,true]}},{"ix":64,"action":{"kind":"Deliver","chain":"consumer","numPackets":5},"partialState":{"h":8,"t":48,"consumerPower":[7715,11152,null,null],"outstandingDowntime":[false,false,true,true]}},{"ix":65,"action":{"kind":"Undelegate","val":2,"amt":3225},"partialState":{"h":5,"t":30,"tokens":[10122,14304,1302,6134],"delegation":[9122,13304,302,5134],"delegatorTokens":9999999972463}},{"ix":66,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":9,"t":54,"consumerPower":[7715,11152,null,null],"outstandingDowntime":[false,false,true,true]}},{"ix":67,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":10,"t":60,"consumerPower":[7715,11152,null,null],"outstandingDowntime":[false,false,true,true]}},{"ix":68,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":6,"t":36,"tokens":[10122,14304,1302,6134],"delegation":[9122,13304,302,5134],"delegatorTokens":9999999972463,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":69,"action":{"kind":"Undelegate","val":1,"amt":1322},"partialState":{"h":6,"t":36,"tokens":[10122,12982,1302,6134],"delegation":[9122,11982,302,5134],"delegatorTokens":9999999972463}},{"ix":70,"action":{"kind":"ConsumerSlash","val":2,"infractionHeight":6,"isDowntime":true},"partialState":{"h":10,"t":60,"outstandingDowntime":[false,false,true,true]}},{"ix":71,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":72,"action":{"kind":"ConsumerSlash","val":2,"infractionHeight":1,"isDowntime":false},"partialState":{"h":10,"t":60,"outstandingDowntime":[false,false,true,true]}},{"ix":73,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":7,"t":42,"tokens":[10122,12982,1302,6134],"delegation":[9122,11982,302,5134],"delegatorTokens":9999999972463,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":74,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":75,"action":{"kind":"Deliver","chain":"consumer","numPackets":3},"partialState":{"h":10,"t":60,"consumerPower":[7715,11152,null,null],"outstandingDowntime":[false,false,true,true]}},{"ix":76,"action":{"kind":"ConsumerSlash","val":1,"infractionHeight":3,"isDowntime":true},"partialState":{"h":10,"t":60,"outstandingDowntime":[false,true,true,true]}},{"ix":77,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":78,"action":{"kind":"Deliver","chain":"consumer","numPackets":3},"partialState":{"h":10,"t":60,"consumerPower":[7715,11152,null,null],"outstandingDowntime":[false,true,true,true]}},{"ix":79,"action":{"kind":"Undelegate","val":3,"amt":4746},"partialState":{"h":7,"t":42,"tokens":[10122,12982,1302,1388],"delegation":[9122,11982,302,388],"delegatorTokens":9999999972463}},{"ix":80,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":81,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":82,"action":{"kind":"Undelegate","val":1,"amt":1538},"partialState":{"h":7,"t":42,"tokens":[10122,11444,1302,1388],"delegation":[9122,10444,302,388],"delegatorTokens":9999999972463}},{"ix":83,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":8,"t":48,"tokens":[10122,11444,1302,1388],"delegation":[9122,10444,302,388],"delegatorTokens":9999999972463,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":84,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":85,"action":{"kind":"Delegate","val":1,"amt":3976},"partialState":{"h":8,"t":48,"tokens":[10122,15420,1302,1388],"delegation":[9122,14420,302,388],"delegatorTokens":9999999968487}},{"ix":86,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":9,"t":54,"tokens":[10122,15420,1302,1388],"delegation":[9122,14420,302,388],"delegatorTokens":9999999968487,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":87,"action":{"kind":"Deliver","chain":"provider","numPackets":2},"partialState":{"h":9,"t":54,"tokens":[10122,15420,1302,1388],"delegation":[9122,14420,302,388],"delegatorTokens":9999999968487,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":88,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":89,"action":{"kind":"Undelegate","val":2,"amt":1791},"partialState":{"h":9,"t":54,"tokens":[10122,15420,1302,1388],"delegation":[9122,14420,302,388],"delegatorTokens":9999999968487}},{"ix":90,"action":{"kind":"Delegate","val":1,"amt":3955},"partialState":{"h":9,"t":54,"tokens":[10122,19375,1302,1388],"delegation":[9122,18375,302,388],"delegatorTokens":9999999964532}},{"ix":91,"action":{"kind":"Undelegate","val":3,"amt":1255},"partialState":{"h":9,"t":54,"tokens":[10122,19375,1302,1388],"delegation":[9122,18375,302,388],"delegatorTokens":9999999964532}},{"ix":92,"action":{"kind":"Delegate","val":3,"amt":4636},"partialState":{"h":9,"t":54,"tokens":[10122,19375,1302,6024],"delegation":[9122,18375,302,5024],"delegatorTokens":9999999959896}},{"ix":93,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":11,"t":66,"consumerPower":[10122,14304,null,null],"outstandingDowntime":[false,true,true,true]}},{"ix":94,"action":{"kind":"Undelegate","val":1,"amt":2252},"partialState":{"h":9,"t":54,"tokens":[10122,17123,1302,6024],"delegation":[9122,16123,302,5024],"delegatorTokens":9999999959896}},{"ix":95,"action":{"kind":"Undelegate","val":1,"amt":3313},"partialState":{"h":9,"t":54,"tokens":[10122,13810,1302,6024],"delegation":[9122,12810,302,5024],"delegatorTokens":9999999959896}},{"ix":96,"action":{"kind":"Delegate","val":1,"amt":3208},"partialState":{"h":9,"t":54,"tokens":[10122,17018,1302,6024],"delegation":[9122,16018,302,5024],"delegatorTokens":9999999956688}},{"ix":97,"action":{"kind":"Deliver","chain":"provider","numPackets":1},"partialState":{"h":9,"t":54,"tokens":[10122,17018,1302,6024],"delegation":[9122,16018,302,5024],"delegatorTokens":9999999956688,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":98,"action":{"kind":"Deliver","chain":"consumer","numPackets":4},"partialState":{"h":11,"t":66,"consumerPower":[10122,14304,null,null],"outstandingDowntime":[false,true,true,true]}},{"ix":99,"action":{"kind":"Undelegate","val":2,"amt":3392},"partialState":{"h":9,"t":54,"tokens":[10122,17018,1302,6024],"delegation":[9122,16018,302,5024],"delegatorTokens":9999999956688}},{"ix":100,"action":{"kind":"Deliver","chain":"consumer","numPackets":1},"partialState":{"h":11,"t":66,"consumerPower":[10122,14304,null,null],"outstandingDowntime":[false,true,true,true]}},{"ix":101,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":12,"t":72,"consumerPower":[10122,11444,null,null],"outstandingDowntime":[false,true,true,true]}},{"ix":102,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":13,"t":78,"consumerPower":[10122,11444,null,null],"outstandingDowntime":[false,true,true,true]}},{"ix":103,"action":{"kind":"Undelegate","val":0,"amt":2336},"partialState":{"h":9,"t":54,"tokens":[7786,17018,1302,6024],"delegation":[6786,16018,302,5024],"delegatorTokens":9999999956688}},{"ix":104,"action":{"kind":"Undelegate","val":2,"amt":2806},"partialState":{"h":9,"t":54,"tokens":[7786,17018,1302,6024],"delegation":[6786,16018,302,5024],"delegatorTokens":9999999956688}},{"ix":105,"action":{"kind":"Delegate","val":2,"amt":4966},"partialState":{"h":9,"t":54,"tokens":[7786,17018,6268,6024],"delegation":[6786,16018,5268,5024],"delegatorTokens":9999999951722}},{"ix":106,"action":{"kind":"Deliver","chain":"consumer","numPackets":4},"partialState":{"h":13,"t":78,"consumerPower":[10122,11444,null,null],"outstandingDowntime":[false,true,true,true]}},{"ix":107,"action":{"kind":"Delegate","val":2,"amt":1725},"partialState":{"h":9,"t":54,"tokens":[7786,17018,7993,6024],"delegation":[6786,16018,6993,5024],"delegatorTokens":9999999949997}},{"ix":108,"action":{"kind":"Deliver","chain":"consumer","numPackets":1},"partialState":{"h":13,"t":78,"consumerPower":[10122,11444,null,null],"outstandingDowntime":[false,true,true,true]}},{"ix":109,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":110,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":111,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":112,"action":{"kind":"Delegate","val":1,"amt":4886},"partialState":{"h":9,"t":54,"tokens":[7786,21904,7993,6024],"delegation":[6786,20904,6993,5024],"delegatorTokens":9999999945111}},{"ix":113,"action":{"kind":"Delegate","val":1,"amt":3709},"partialState":{"h":9,"t":54,"tokens":[7786,25613,7993,6024],"delegation":[6786,24613,6993,5024],"delegatorTokens":9999999941402}},{"ix":114,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":14,"t":84,"consumerPower":[10122,11444,null,null],"outstandingDowntime":[false,true,true,true]}},{"ix":115,"action":{"kind":"Delegate","val":2,"amt":3275},"partialState":{"h":9,"t":54,"tokens":[7786,25613,11268,6024],"delegation":[6786,24613,10268,5024],"delegatorTokens":9999999938127}},{"ix":116,"action":{"kind":"Deliver","chain":"provider","numPackets":2},"partialState":{"h":9,"t":54,"tokens":[7786,25613,11268,6024],"delegation":[6786,24613,10268,5024],"delegatorTokens":9999999938127,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":117,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":118,"action":{"kind":"Deliver","chain":"provider","numPackets":2},"partialState":{"h":9,"t":54,"tokens":[7786,25613,11268,6024],"delegation":[6786,24613,10268,5024],"delegatorTokens":9999999938127,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":119,"action":{"kind":"Undelegate","val":1,"amt":4399},"partialState":{"h":9,"t":54,"tokens":[7786,21214,11268,6024],"delegation":[6786,20214,10268,5024],"delegatorTokens":9999999938127}},{"ix":120,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":10,"t":60,"tokens":[7786,21214,11268,6024],"delegation":[6786,20214,10268,5024],"delegatorTokens":9999999938127,"jailed":[null,1000000000000053,null,null],"status":["unbonding","bonded","bonded","unbonded"]}},{"ix":121,"action":{"kind":"Deliver","chain":"consumer","numPackets":1},"partialState":{"h":14,"t":84,"consumerPower":[10122,11444,null,null],"outstandingDowntime":[false,true,true,true]}},{"ix":122,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":15,"t":90,"consumerPower":[10122,15420,null,null],"outstandingDowntime":[false,true,true,true]}},{"ix":123,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":11,"t":66,"tokens":[7786,21214,11268,6024],"delegation":[6786,20214,10268,5024],"delegatorTokens":9999999938127,"jailed":[null,1000000000000053,null,null],"status":["bonded","unbonding","bonded","unbonded"]}},{"ix":124,"action":{"kind":"Delegate","val":2,"amt":2580},"partialState":{"h":11,"t":66,"tokens":[7786,21214,13848,6024],"delegation":[6786,20214,12848,5024],"delegatorTokens":9999999935547}},{"ix":125,"action":{"kind":"Deliver","chain":"provider","numPackets":1},"partialState":{"h":11,"t":66,"tokens":[7786,21214,13848,6024],"delegation":[6786,20214,12848,5024],"delegatorTokens":9999999935547,"jailed":[null,1000000000000053,null,null],"status":["bonded","unbonding","bonded","unbonded"]}},{"ix":126,"action":{"kind":"Undelegate","val":0,"amt":4230},"partialState":{"h":11,"t":66,"tokens":[3556,21214,13848,6024],"delegation":[2556,20214,12848,5024],"delegatorTokens":9999999935547}},{"ix":127,"action":{"kind":"Undelegate","val":3,"amt":1012},"partialState":{"h":11,"t":66,"tokens":[3556,21214,13848,5012],"delegation":[2556,20214,12848,4012],"delegatorTokens":9999999935547}},{"ix":128,"action":{"kind":"Deliver","chain":"consumer","numPackets":2},"partialState":{"h":15,"t":90,"consumerPower":[10122,15420,null,null],"outstandingDowntime":[false,false,true,true]}},{"ix":129,"action":{"kind":"Delegate","val":2,"amt":4668},"partialState":{"h":11,"t":66,"tokens":[3556,21214,18516,5012],"delegation":[2556,20214,17516,4012],"delegatorTokens":9999999930879}},{"ix":130,"action":{"kind":"Delegate","val":2,"amt":3833},"partialState":{"h":11,"t":66,"tokens":[3556,21214,22349,5012],"delegation":[2556,20214,21349,4012],"delegatorTokens":9999999927046}},{"ix":131,"action":{"kind":"Delegate","val":0,"amt":2364},"partialState":{"h":11,"t":66,"tokens":[5920,21214,22349,5012],"delegation":[4920,20214,21349,4012],"delegatorTokens":9999999924682}},{"ix":132,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":16,"t":96,"consumerPower":[null,21214,11268,null],"outstandingDowntime":[false,false,true,true]}},{"ix":133,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":12,"t":72,"tokens":[5920,21214,22349,5012],"delegation":[4920,20214,21349,4012],"delegatorTokens":9999999924682,"jailed":[null,1000000000000053,null,null],"status":["bonded","unbonding","bonded","unbonded"]}},{"ix":134,"action":{"kind":"Delegate","val":0,"amt":1580},"partialState":{"h":12,"t":72,"tokens":[7500,21214,22349,5012],"delegation":[6500,20214,21349,4012],"delegatorTokens":9999999923102}},{"ix":135,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":136,"action":{"kind":"Delegate","val":0,"amt":1980},"partialState":{"h":12,"t":72,"tokens":[9480,21214,22349,5012],"delegation":[8480,20214,21349,4012],"delegatorTokens":9999999921122}},{"ix":137,"action":{"kind":"Deliver","chain":"provider","numPackets":3},"partialState":{"h":12,"t":72,"tokens":[9480,21214,22349,5012],"delegation":[8480,20214,21349,4012],"delegatorTokens":9999999921122,"jailed":[null,1000000000000053,null,null],"status":["bonded","unbonding","bonded","unbonded"]}},{"ix":138,"action":{"kind":"Undelegate","val":0,"amt":4256},"partialState":{"h":12,"t":72,"tokens":[5224,21214,22349,5012],"delegation":[4224,20214,21349,4012],"delegatorTokens":9999999921122}},{"ix":139,"action":{"kind":"Deliver","chain":"provider","numPackets":6},"partialState":{"h":12,"t":72,"tokens":[5224,21214,22349,5012],"delegation":[4224,20214,21349,4012],"delegatorTokens":9999999921122,"jailed":[null,1000000000000053,null,null],"status":["bonded","unbonding","bonded","unbonded"]}},{"ix":140,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":141,"action":{"kind":"Deliver","chain":"provider","numPackets":6},"partialState":{"h":12,"t":72,"tokens":[5224,21214,22349,5012],"delegation":[4224,20214,21349,4012],"delegatorTokens":9999999921122,"jailed":[null,1000000000000053,null,null],"status":["bonded","unbonding","bonded","unbonded"]}},{"ix":142,"action":{"kind":"Delegate","val":0,"amt":1889},"partialState":{"h":12,"t":72,"tokens":[7113,21214,22349,5012],"delegation":[6113,20214,21349,4012],"delegatorTokens":9999999919233}},{"ix":143,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":13,"t":78,"tokens":[7113,21214,22349,5012],"delegation":[6113,20214,21349,4012],"delegatorTokens":9999999919233,"jailed":[null,1000000000000053,null,null],"status":["bonded","unbonding","bonded","unbonded"]}},{"ix":144,"action":{"kind":"Undelegate","val":2,"amt":1594},"partialState":{"h":13,"t":78,"tokens":[7113,21214,20755,5012],"delegation":[6113,20214,19755,4012],"delegatorTokens":9999999919233}},{"ix":145,"action":{"kind":"Undelegate","val":2,"amt":3156},"partialState":{"h":13,"t":78,"tokens":[7113,21214,17599,5012],"delegation":[6113,20214,16599,4012],"delegatorTokens":9999999919233}},{"ix":146,"action":{"kind":"Delegate","val":1,"amt":4089},"partialState":{"h":13,"t":78,"tokens":[7113,25303,17599,5012],"delegation":[6113,24303,16599,4012],"delegatorTokens":9999999915144}},{"ix":147,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":17,"t":102,"consumerPower":[null,21214,11268,null],"outstandingDowntime":[false,false,true,true]}},{"ix":148,"action":{"kind":"Deliver","chain":"consumer","numPackets":3},"partialState":{"h":17,"t":102,"consumerPower":[null,21214,11268,null],"outstandingDowntime":[false,false,true,true]}},{"ix":149,"action":{"kind":"Delegate","val":2,"amt":2670},"partialState":{"h":13,"t":78,"tokens":[7113,25303,20269,5012],"delegation":[6113,24303,19269,4012],"delegatorTokens":9999999912474}},{"ix":150,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":14,"t":84,"tokens":[7113,25303,20269,5012],"delegation":[6113,24303,19269,4012],"delegatorTokens":9999999912474,"jailed":[null,1000000000000053,null,null],"status":["bonded","unbonding","bonded","unbonded"]}},{"ix":151,"action":{"kind":"Deliver","chain":"provider","numPackets":2},"partialState":{"h":14,"t":84,"tokens":[7113,25303,20269,5012],"delegation":[6113,24303,19269,4012],"delegatorTokens":9999999912474,"jailed":[null,1000000000000053,null,null],"status":["bonded","unbonding","bonded","unbonded"]}},{"ix":152,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":15,"t":90,"tokens":[7113,25303,20269,5012],"delegation":[6113,24303,19269,4012],"delegatorTokens":9999999916338,"jailed":[null,1000000000000053,null,null],"status":["bonded","unbonding","bonded","unbonded"]}},{"ix":153,"action":{"kind":"Delegate","val":2,"amt":4991},"partialState":{"h":15,"t":90,"tokens":[7113,25303,25260,5012],"delegation":[6113,24303,24260,4012],"delegatorTokens":9999999911347}},{"ix":154,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":16,"t":96,"tokens":[7113,25303,25260,5012],"delegation":[6113,24303,24260,4012],"delegatorTokens":9999999911347,"jailed":[null,1000000000000053,null,null],"status":["bonded","unbonding","bonded","unbonded"]}},{"ix":155,"action":{"kind":"Undelegate","val":0,"amt":2918},"partialState":{"h":16,"t":96,"tokens":[4195,25303,25260,5012],"delegation":[3195,24303,24260,4012],"delegatorTokens":9999999911347}},{"ix":156,"action":{"kind":"Deliver","chain":"consumer","numPackets":5},"partialState":{"h":17,"t":102,"consumerPower":[null,21214,11268,null],"outstandingDowntime":[false,false,true,true]}},{"ix":157,"action":{"kind":"Undelegate","val":0,"amt":4579},"partialState":{"h":16,"t":96,"tokens":[4195,25303,25260,5012],"delegation":[3195,24303,24260,4012],"delegatorTokens":9999999911347}},{"ix":158,"action":{"kind":"Deliver","chain":"consumer","numPackets":4},"partialState":{"h":17,"t":102,"consumerPower":[null,21214,11268,null],"outstandingDowntime":[false,false,true,true]}},{"ix":159,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":17,"t":102,"tokens":[4195,25303,25260,5012],"delegation":[3195,24303,24260,4012],"delegatorTokens":9999999911347,"jailed":[null,1000000000000053,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":160,"action":{"kind":"Delegate","val":0,"amt":3660},"partialState":{"h":17,"t":102,"tokens":[7855,25303,25260,5012],"delegation":[6855,24303,24260,4012],"delegatorTokens":9999999907687}},{"ix":161,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":162,"action":{"kind":"Undelegate","val":2,"amt":4242},"partialState":{"h":17,"t":102,"tokens":[7855,25303,21018,5012],"delegation":[6855,24303,20018,4012],"delegatorTokens":9999999907687}},{"ix":163,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":164,"action":{"kind":"Delegate","val":3,"amt":4786},"partialState":{"h":17,"t":102,"tokens":[7855,25303,21018,9798],"delegation":[6855,24303,20018,8798],"delegatorTokens":9999999902901}},{"ix":165,"action":{"kind":"Undelegate","val":2,"amt":2869},"partialState":{"h":17,"t":102,"tokens":[7855,25303,18149,9798],"delegation":[6855,24303,17149,8798],"delegatorTokens":9999999902901}},{"ix":166,"action":{"kind":"Delegate","val":0,"amt":1924},"partialState":{"h":17,"t":102,"tokens":[9779,25303,18149,9798],"delegation":[8779,24303,17149,8798],"delegatorTokens":9999999900977}},{"ix":167,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":18,"t":108,"tokens":[9779,25303,18149,9798],"delegation":[8779,24303,17149,8798],"delegatorTokens":9999999900977,"jailed":[null,1000000000000053,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":168,"action":{"kind":"Delegate","val":0,"amt":1492},"partialState":{"h":18,"t":108,"tokens":[11271,25303,18149,9798],"delegation":[10271,24303,17149,8798],"delegatorTokens":9999999899485}},{"ix":169,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":19,"t":114,"tokens":[11271,25303,18149,9798],"delegation":[10271,24303,17149,8798],"delegatorTokens":9999999899485,"jailed":[null,1000000000000053,null,null],"status":["bonded","unbonding","bonded","unbonding"]}},{"ix":170,"action":{"kind":"Deliver","chain":"provider","numPackets":2},"partialState":{"h":19,"t":114,"tokens":[11271,25303,18149,9798],"delegation":[10271,24303,17149,8798],"delegatorTokens":9999999899485,"jailed":[null,1000000000000053,null,null],"status":["bonded","unbonding","bonded","unbonding"]}},{"ix":171,"action":{"kind":"Deliver","chain":"consumer","numPackets":1},"partialState":{"h":17,"t":102,"consumerPower":[null,21214,11268,null],"outstandingDowntime":[false,false,true,true]}},{"ix":172,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":20,"t":120,"tokens":[11271,25303,18149,9798],"delegation":[10271,24303,17149,8798],"delegatorTokens":9999999899485,"jailed":[null,1000000000000053,null,null],"status":["bonded","unbonding","bonded","unbonding"]}},{"ix":173,"action":{"kind":"Undelegate","val":0,"amt":3518},"partialState":{"h":20,"t":120,"tokens":[7753,25303,18149,9798],"delegation":[6753,24303,17149,8798],"delegatorTokens":9999999899485}},{"ix":174,"action":{"kind":"Deliver","chain":"provider","numPackets":5},"partialState":{"h":20,"t":120,"tokens":[7753,25303,18149,9798],"delegation":[6753,24303,17149,8798],"delegatorTokens":9999999899485,"jailed":[null,1000000000000053,null,null],"status":["bonded","unbonding","bonded","unbonding"]}},{"ix":175,"action":{"kind":"Delegate","val":0,"amt":4592},"partialState":{"h":20,"t":120,"tokens":[12345,25303,18149,9798],"delegation":[11345,24303,17149,8798],"delegatorTokens":9999999894893}},{"ix":176,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":21,"t":126,"tokens":[12345,25303,18149,9798],"delegation":[11345,24303,17149,8798],"delegatorTokens":9999999894893,"jailed":[null,1000000000000053,null,null],"status":["bonded","unbonding","bonded","unbonding"]}},{"ix":177,"action":{"kind":"Deliver","chain":"consumer","numPackets":1},"partialState":{"h":17,"t":102,"consumerPower":[null,21214,11268,null],"outstandingDowntime":[false,false,true,true]}},{"ix":178,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":22,"t":132,"tokens":[12345,25303,18149,9798],"delegation":[11345,24303,17149,8798],"delegatorTokens":9999999894893,"jailed":[null,1000000000000053,null,null],"status":["bonded","unbonding","bonded","unbonding"]}},{"ix":179,"action":{"kind":"Deliver","chain":"consumer","numPackets":3},"partialState":{"h":17,"t":102,"consumerPower":[null,21214,11268,null],"outstandingDowntime":[false,false,true,true]}},{"ix":180,"action":{"kind":"Delegate","val":3,"amt":3592},"partialState":{"h":22,"t":132,"tokens":[12345,25303,18149,13390],"delegation":[11345,24303,17149,12390],"delegatorTokens":9999999891301}},{"ix":181,"action":{"kind":"Deliver","chain":"consumer","numPackets":5},"partialState":{"h":17,"t":102,"consumerPower":[null,21214,11268,null],"outstandingDowntime":[false,false,true,true]}},{"ix":182,"action":{"kind":"Deliver","chain":"provider","numPackets":4},"partialState":{"h":22,"t":132,"tokens":[12345,25303,18149,13390],"delegation":[11345,24303,17149,12390],"delegatorTokens":9999999891301,"jailed":[null,1000000000000053,null,null],"status":["bonded","unbonding","bonded","unbonding"]}},{"ix":183,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":184,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":23,"t":138,"tokens":[12345,25303,18149,13390],"delegation":[11345,24303,17149,12390],"delegatorTokens":9999999891301,"jailed":[null,1000000000000053,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":185,"action":{"kind":"Deliver","chain":"provider","numPackets":1},"partialState":{"h":23,"t":138,"tokens":[12345,25303,18149,13390],"delegation":[11345,24303,17149,12390],"delegatorTokens":9999999891301,"jailed":[null,1000000000000053,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":186,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":187,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":188,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":189,"action":{"kind":"Undelegate","val":2,"amt":1497},"partialState":{"h":23,"t":138,"tokens":[12345,25303,16652,13390],"delegation":[11345,24303,15652,12390],"delegatorTokens":9999999891301}},{"ix":190,"action":{"kind":"Deliver","chain":"consumer","numPackets":2},"partialState":{"h":17,"t":102,"consumerPower":[null,21214,11268,null],"outstandingDowntime":[false,false,true,true]}},{"ix":191,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":192,"action":{"kind":"Undelegate","val":1,"amt":2878},"partialState":{"h":23,"t":138,"tokens":[12345,22425,16652,13390],"delegation":[11345,21425,15652,12390],"delegatorTokens":9999999891301}},{"ix":193,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":194,"action":{"kind":"Deliver","chain":"consumer","numPackets":6},"partialState":{"h":17,"t":102,"consumerPower":[null,21214,11268,null],"outstandingDowntime":[false,false,true,true]}},{"ix":195,"action":{"kind":"Undelegate","val":0,"amt":4063},"partialState":{"h":23,"t":138,"tokens":[8282,22425,16652,13390],"delegation":[7282,21425,15652,12390],"delegatorTokens":9999999891301}},{"ix":196,"action":{"kind":"Deliver","chain":"provider","numPackets":1},"partialState":{"h":23,"t":138,"tokens":[8282,22425,16652,13390],"delegation":[7282,21425,15652,12390],"delegatorTokens":9999999891301,"jailed":[null,1000000000000053,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":197,"action":{"kind":"Delegate","val":3,"amt":1179},"partialState":{"h":23,"t":138,"tokens":[8282,22425,16652,14569],"delegation":[7282,21425,15652,13569],"delegatorTokens":9999999890122}},{"ix":198,"action":{"kind":"Undelegate","val":2,"amt":4823},"partialState":{"h":23,"t":138,"tokens":[8282,22425,11829,14569],"delegation":[7282,21425,10829,13569],"delegatorTokens":9999999890122}},{"ix":199,"action":{"kind":"Undelegate","val":2,"amt":4068},"partialState":{"h":23,"t":138,"tokens":[8282,22425,7761,14569],"delegation":[7282,21425,6761,13569],"delegatorTokens":9999999890122}}],"events":["insufficient_shares","send_downtime_slash_request","insufficient_shares","send_downtime_slash_request","send_vsc_without_downtime_ack","insufficient_shares","downtime_slash_request_outstanding","insufficient_shares","send_double_sign_slash_request","downtime_slash_request_outstanding","downtime_slash_request_outstanding","receive_slash_request_unbonded","send_vsc_without_downtime_ack","insufficient_shares","consumer_update_val","consumer_update_val","receive_double_sign_slash_request","downtime_slash_request_outstanding","receive_slash_request_unbonded","send_vsc_without_downtime_ack","insufficient_shares","send_double_sign_slash_request","downtime_slash_request_outstanding","insufficient_shares","send_vsc_without_downtime_ack","downtime_slash_request_outstanding","send_double_sign_slash_request","send_vsc_without_downtime_ack","send_downtime_slash_request","send_vsc_without_downtime_ack","send_vsc_without_downtime_ack","receive_double_sign_slash_request","insufficient_shares","insufficient_shares","consumer_update_val","consumer_update_val","insufficient_shares","consumer_update_val","insufficient_shares","receive_double_sign_slash_request","more_than_one_third_val_power_change","receive_downtime_slash_request","jail","send_vsc_with_downtime_ack","consumer_update_val","more_than_one_third_val_power_change","rebond_unval","send_vsc_without_downtime_ack","receive_downtime_slash_ack","consumer_send_maturation","consumer_send_maturation","consumer_del_val","consumer_update_val","consumer_add_val","send_vsc_without_downtime_ack","send_vsc_without_downtime_ack","some_undels_expired_but_not_completed","send_vsc_without_downtime_ack","some_undels_expired_but_not_completed","complete_undel_immediate","complete_undel_immediate","send_vsc_without_downtime_ack","insufficient_shares","some_undels_expired_but_not_completed","send_vsc_without_downtime_ack","some_undels_expired_but_not_completed","send_vsc_without_downtime_ack","more_than_one_third_val_power_change","rebond_unval","some_undels_expired_but_not_completed","send_vsc_without_downtime_ack","some_undels_expired_but_not_completed","send_vsc_without_downtime_ack","some_undels_expired_but_not_completed","more_than_one_third_val_power_change","rebond_unval","send_vsc_without_downtime_ack"]},{"meta":{"commit":"7ffd0c04e4205cbc9caf212abfe6c59ee43153bf"},"constants":{"P":"provider","C":"consumer","UNBONDING_SECONDS_P":70,"UNBONDING_SECONDS_C":50,"TRUSTING_SECONDS":49,"NUM_VALIDATORS":4,"MAX_VALIDATORS":2,"SLASH_DOUBLESIGN":0,"SLASH_DOWNTIME":0,"JAIL_SECONDS":999999999999999,"BLOCK_SECONDS":6,"INITIAL_DELEGATOR_TOKENS":10000000000000,"DELEGATE_AMT_MIN":1000,"DELEGATE_AMT_MAX":5000,"UNDELEGATE_AMT_MIN":1000,"UNDELEGATE_AMT_MAX":5000,"ISDOWNTIME_PROBABILITY":0.5,"MAX_NUM_PACKETS_FOR_DELIVER":6},"actions":[{"ix":0,"action":{"kind":"Deliver","chain":"provider","numPackets":5},"partialState":{"h":1,"t":6,"tokens":[5000,4000,3000,2000],"delegation":[4000,3000,2000,1000],"delegatorTokens":10000000000000,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":1,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":2,"t":12,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":2,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":2,"t":12,"tokens":[5000,4000,3000,2000],"delegation":[4000,3000,2000,1000],"delegatorTokens":10000000000000,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":3,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":4,"action":{"kind":"ConsumerSlash","val":2,"infractionHeight":0,"isDowntime":true},"partialState":{"h":2,"t":12,"outstandingDowntime":[false,false,true,false]}},{"ix":5,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":6,"action":{"kind":"ConsumerSlash","val":3,"infractionHeight":0,"isDowntime":true},"partialState":{"h":2,"t":12,"outstandingDowntime":[false,false,true,true]}},{"ix":7,"action":{"kind":"Deliver","chain":"provider","numPackets":1},"partialState":{"h":2,"t":12,"tokens":[5000,4000,3000,2000],"delegation":[4000,3000,2000,1000],"delegatorTokens":10000000000000,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":8,"action":{"kind":"Delegate","val":1,"amt":1912},"partialState":{"h":2,"t":12,"tokens":[5000,5912,3000,2000],"delegation":[4000,4912,2000,1000],"delegatorTokens":9999999998088}},{"ix":9,"action":{"kind":"ConsumerSlash","val":2,"infractionHeight":0,"isDowntime":true},"partialState":{"h":2,"t":12,"outstandingDowntime":[false,false,true,true]}},{"ix":10,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":11,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":3,"t":18,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,false,true,true]}},{"ix":12,"action":{"kind":"ConsumerSlash","val":2,"infractionHeight":0,"isDowntime":false},"partialState":{"h":3,"t":18,"outstandingDowntime":[false,false,true,true]}},{"ix":13,"action":{"kind":"Undelegate","val":3,"amt":1737},"partialState":{"h":2,"t":12,"tokens":[5000,5912,3000,2000],"delegation":[4000,4912,2000,1000],"delegatorTokens":9999999998088}},{"ix":14,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":4,"t":24,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,false,true,true]}},{"ix":15,"action":{"kind":"Deliver","chain":"provider","numPackets":5},"partialState":{"h":2,"t":12,"tokens":[5000,5912,3000,2000],"delegation":[4000,4912,2000,1000],"delegatorTokens":9999999998088,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":16,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":17,"action":{"kind":"ConsumerSlash","val":3,"infractionHeight":2,"isDowntime":true},"partialState":{"h":4,"t":24,"outstandingDowntime":[false,false,true,true]}},{"ix":18,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":19,"action":{"kind":"ConsumerSlash","val":2,"infractionHeight":1,"isDowntime":true},"partialState":{"h":4,"t":24,"outstandingDowntime":[false,false,true,true]}},{"ix":20,"action":{"kind":"Undelegate","val":2,"amt":1709},"partialState":{"h":2,"t":12,"tokens":[5000,5912,1291,2000],"delegation":[4000,4912,291,1000],"delegatorTokens":9999999998088}},{"ix":21,"action":{"kind":"Undelegate","val":2,"amt":2696},"partialState":{"h":2,"t":12,"tokens":[5000,5912,1291,2000],"delegation":[4000,4912,291,1000],"delegatorTokens":9999999998088}},{"ix":22,"action":{"kind":"Delegate","val":0,"amt":1201},"partialState":{"h":2,"t":12,"tokens":[6201,5912,1291,2000],"delegation":[5201,4912,291,1000],"delegatorTokens":9999999996887}},{"ix":23,"action":{"kind":"Deliver","chain":"provider","numPackets":4},"partialState":{"h":2,"t":12,"tokens":[6201,5912,1291,2000],"delegation":[5201,4912,291,1000],"delegatorTokens":9999999996887,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":24,"action":{"kind":"Undelegate","val":2,"amt":2755},"partialState":{"h":2,"t":12,"tokens":[6201,5912,1291,2000],"delegation":[5201,4912,291,1000],"delegatorTokens":9999999996887}},{"ix":25,"action":{"kind":"Deliver","chain":"consumer","numPackets":2},"partialState":{"h":4,"t":24,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,false,true,true]}},{"ix":26,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":3,"t":18,"tokens":[6201,5912,1291,2000],"delegation":[5201,4912,291,1000],"delegatorTokens":9999999996887,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":27,"action":{"kind":"Delegate","val":2,"amt":4978},"partialState":{"h":3,"t":18,"tokens":[6201,5912,6269,2000],"delegation":[5201,4912,5269,1000],"delegatorTokens":9999999991909}},{"ix":28,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":4,"t":24,"tokens":[6201,5912,6269,2000],"delegation":[5201,4912,5269,1000],"delegatorTokens":9999999991909,"jailed":[null,null,null,null],"status":["bonded","unbonding","bonded","unbonded"]}},{"ix":29,"action":{"kind":"Undelegate","val":3,"amt":3319},"partialState":{"h":4,"t":24,"tokens":[6201,5912,6269,2000],"delegation":[5201,4912,5269,1000],"delegatorTokens":9999999991909}},{"ix":30,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":5,"t":30,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,false,true,true]}},{"ix":31,"action":{"kind":"Undelegate","val":1,"amt":1684},"partialState":{"h":4,"t":24,"tokens":[6201,4228,6269,2000],"delegation":[5201,3228,5269,1000],"delegatorTokens":9999999991909}},{"ix":32,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":33,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":6,"t":36,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,false,true,true]}},{"ix":34,"action":{"kind":"Deliver","chain":"consumer","numPackets":1},"partialState":{"h":6,"t":36,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,false,true,true]}},{"ix":35,"action":{"kind":"Undelegate","val":3,"amt":1411},"partialState":{"h":4,"t":24,"tokens":[6201,4228,6269,2000],"delegation":[5201,3228,5269,1000],"delegatorTokens":9999999991909}},{"ix":36,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":5,"t":30,"tokens":[6201,4228,6269,2000],"delegation":[5201,3228,5269,1000],"delegatorTokens":9999999991909,"jailed":[null,null,null,null],"status":["bonded","unbonding","bonded","unbonded"]}},{"ix":37,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":38,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":39,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":7,"t":42,"consumerPower":[6201,5912,null,null],"outstandingDowntime":[false,false,true,true]}},{"ix":40,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":6,"t":36,"tokens":[6201,4228,6269,2000],"delegation":[5201,3228,5269,1000],"delegatorTokens":9999999991909,"jailed":[null,null,null,null],"status":["bonded","unbonding","bonded","unbonded"]}},{"ix":41,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":7,"t":42,"tokens":[6201,4228,6269,2000],"delegation":[5201,3228,5269,1000],"delegatorTokens":9999999991909,"jailed":[null,null,null,null],"status":["bonded","unbonding","bonded","unbonded"]}},{"ix":42,"action":{"kind":"Deliver","chain":"provider","numPackets":6},"partialState":{"h":7,"t":42,"tokens":[6201,4228,6269,2000],"delegation":[5201,3228,5269,1000],"delegatorTokens":9999999991909,"jailed":[null,null,null,null],"status":["bonded","unbonding","bonded","unbonded"]}},{"ix":43,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":8,"t":48,"tokens":[6201,4228,6269,2000],"delegation":[5201,3228,5269,1000],"delegatorTokens":9999999991909,"jailed":[null,null,null,null],"status":["bonded","unbonding","bonded","unbonded"]}},{"ix":44,"action":{"kind":"Undelegate","val":2,"amt":4521},"partialState":{"h":8,"t":48,"tokens":[6201,4228,1748,2000],"delegation":[5201,3228,748,1000],"delegatorTokens":9999999991909}},{"ix":45,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":46,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":9,"t":54,"tokens":[6201,4228,1748,2000],"delegation":[5201,3228,748,1000],"delegatorTokens":9999999991909,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonding","unbonded"]}},{"ix":47,"action":{"kind":"Deliver","chain":"consumer","numPackets":1},"partialState":{"h":7,"t":42,"consumerPower":[6201,5912,null,null],"outstandingDowntime":[false,false,true,true]}},{"ix":48,"action":{"kind":"Deliver","chain":"provider","numPackets":6},"partialState":{"h":9,"t":54,"tokens":[6201,4228,1748,2000],"delegation":[5201,3228,748,1000],"delegatorTokens":9999999991909,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonding","unbonded"]}},{"ix":49,"action":{"kind":"Delegate","val":1,"amt":2537},"partialState":{"h":9,"t":54,"tokens":[6201,6765,1748,2000],"delegation":[5201,5765,748,1000],"delegatorTokens":9999999989372}},{"ix":50,"action":{"kind":"Delegate","val":1,"amt":4821},"partialState":{"h":9,"t":54,"tokens":[6201,11586,1748,2000],"delegation":[5201,10586,748,1000],"delegatorTokens":9999999984551}},{"ix":51,"action":{"kind":"Delegate","val":3,"amt":1852},"partialState":{"h":9,"t":54,"tokens":[6201,11586,1748,3852],"delegation":[5201,10586,748,2852],"delegatorTokens":9999999982699}},{"ix":52,"action":{"kind":"Delegate","val":2,"amt":4102},"partialState":{"h":9,"t":54,"tokens":[6201,11586,5850,3852],"delegation":[5201,10586,4850,2852],"delegatorTokens":9999999978597}},{"ix":53,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":8,"t":48,"consumerPower":[6201,null,6269,null],"outstandingDowntime":[false,false,true,true]}},{"ix":54,"action":{"kind":"ConsumerSlash","val":2,"infractionHeight":2,"isDowntime":true},"partialState":{"h":8,"t":48,"outstandingDowntime":[false,false,true,true]}},{"ix":55,"action":{"kind":"Delegate","val":1,"amt":1847},"partialState":{"h":9,"t":54,"tokens":[6201,13433,5850,3852],"delegation":[5201,12433,4850,2852],"delegatorTokens":9999999976750}},{"ix":56,"action":{"kind":"Deliver","chain":"provider","numPackets":2},"partialState":{"h":9,"t":54,"tokens":[6201,13433,5850,3852],"delegation":[5201,12433,4850,2852],"delegatorTokens":9999999976750,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonding","unbonded"]}},{"ix":57,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":9,"t":54,"consumerPower":[6201,null,6269,null],"outstandingDowntime":[false,false,true,true]}},{"ix":58,"action":{"kind":"Undelegate","val":3,"amt":1814},"partialState":{"h":9,"t":54,"tokens":[6201,13433,5850,2038],"delegation":[5201,12433,4850,1038],"delegatorTokens":9999999976750}},{"ix":59,"action":{"kind":"ConsumerSlash","val":3,"infractionHeight":6,"isDowntime":true},"partialState":{"h":9,"t":54,"outstandingDowntime":[false,false,true,true]}},{"ix":60,"action":{"kind":"Deliver","chain":"provider","numPackets":2},"partialState":{"h":9,"t":54,"tokens":[6201,13433,5850,2038],"delegation":[5201,12433,4850,1038],"delegatorTokens":9999999976750,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonding","unbonded"]}},{"ix":61,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":10,"t":60,"consumerPower":[6201,null,6269,null],"outstandingDowntime":[false,false,true,true]}},{"ix":62,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":10,"t":60,"tokens":[6201,13433,5850,2038],"delegation":[5201,12433,4850,1038],"delegatorTokens":9999999976750,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonding","unbonded"]}},{"ix":63,"action":{"kind":"Undelegate","val":1,"amt":3895},"partialState":{"h":10,"t":60,"tokens":[6201,9538,5850,2038],"delegation":[5201,8538,4850,1038],"delegatorTokens":9999999976750}},{"ix":64,"action":{"kind":"Delegate","val":2,"amt":2837},"partialState":{"h":10,"t":60,"tokens":[6201,9538,8687,2038],"delegation":[5201,8538,7687,1038],"delegatorTokens":9999999973913}},{"ix":65,"action":{"kind":"Delegate","val":2,"amt":1045},"partialState":{"h":10,"t":60,"tokens":[6201,9538,9732,2038],"delegation":[5201,8538,8732,1038],"delegatorTokens":9999999972868}},{"ix":66,"action":{"kind":"Deliver","chain":"consumer","numPackets":5},"partialState":{"h":10,"t":60,"consumerPower":[6201,null,6269,null],"outstandingDowntime":[false,false,true,true]}},{"ix":67,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":68,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":69,"action":{"kind":"Undelegate","val":3,"amt":4934},"partialState":{"h":10,"t":60,"tokens":[6201,9538,9732,2038],"delegation":[5201,8538,8732,1038],"delegatorTokens":9999999972868}},{"ix":70,"action":{"kind":"Deliver","chain":"provider","numPackets":6},"partialState":{"h":10,"t":60,"tokens":[6201,9538,9732,2038],"delegation":[5201,8538,8732,1038],"delegatorTokens":9999999972868,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonding","unbonded"]}},{"ix":71,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":11,"t":66,"consumerPower":[6201,4228,null,null],"outstandingDowntime":[false,false,true,true]}},{"ix":72,"action":{"kind":"Delegate","val":2,"amt":3602},"partialState":{"h":10,"t":60,"tokens":[6201,9538,13334,2038],"delegation":[5201,8538,12334,1038],"delegatorTokens":9999999969266}},{"ix":73,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":74,"action":{"kind":"ConsumerSlash","val":1,"infractionHeight":5,"isDowntime":true},"partialState":{"h":11,"t":66,"outstandingDowntime":[false,true,true,true]}},{"ix":75,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":76,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":12,"t":72,"consumerPower":[6201,4228,null,null],"outstandingDowntime":[false,true,true,true]}},{"ix":77,"action":{"kind":"Deliver","chain":"provider","numPackets":3},"partialState":{"h":10,"t":60,"tokens":[6201,9538,13334,2038],"delegation":[5201,8538,12334,1038],"delegatorTokens":9999999969266,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonding","unbonded"]}},{"ix":78,"action":{"kind":"Deliver","chain":"consumer","numPackets":3},"partialState":{"h":12,"t":72,"consumerPower":[6201,4228,null,null],"outstandingDowntime":[false,true,true,true]}},{"ix":79,"action":{"kind":"Undelegate","val":0,"amt":3052},"partialState":{"h":10,"t":60,"tokens":[3149,9538,13334,2038],"delegation":[2149,8538,12334,1038],"delegatorTokens":9999999969266}},{"ix":80,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":81,"action":{"kind":"Undelegate","val":2,"amt":2829},"partialState":{"h":10,"t":60,"tokens":[3149,9538,10505,2038],"delegation":[2149,8538,9505,1038],"delegatorTokens":9999999969266}},{"ix":82,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":11,"t":66,"tokens":[3149,9538,10505,2038],"delegation":[2149,8538,9505,1038],"delegatorTokens":9999999969266,"jailed":[null,null,null,null],"status":["unbonding","bonded","bonded","unbonded"]}},{"ix":83,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":12,"t":72,"tokens":[3149,9538,10505,2038],"delegation":[2149,8538,9505,1038],"delegatorTokens":9999999969266,"jailed":[null,null,null,null],"status":["unbonding","bonded","bonded","unbonded"]}},{"ix":84,"action":{"kind":"Delegate","val":2,"amt":1393},"partialState":{"h":12,"t":72,"tokens":[3149,9538,11898,2038],"delegation":[2149,8538,10898,1038],"delegatorTokens":9999999967873}},{"ix":85,"action":{"kind":"Deliver","chain":"provider","numPackets":3},"partialState":{"h":12,"t":72,"tokens":[3149,9538,11898,2038],"delegation":[2149,8538,10898,1038],"delegatorTokens":9999999967873,"jailed":[null,null,null,null],"status":["unbonding","bonded","bonded","unbonded"]}},{"ix":86,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":87,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":13,"t":78,"consumerPower":[6201,4228,null,null],"outstandingDowntime":[false,true,true,true]}},{"ix":88,"action":{"kind":"Deliver","chain":"provider","numPackets":6},"partialState":{"h":12,"t":72,"tokens":[3149,9538,11898,2038],"delegation":[2149,8538,10898,1038],"delegatorTokens":9999999967873,"jailed":[null,null,null,null],"status":["unbonding","bonded","bonded","unbonded"]}},{"ix":89,"action":{"kind":"Deliver","chain":"consumer","numPackets":4},"partialState":{"h":13,"t":78,"consumerPower":[6201,4228,null,null],"outstandingDowntime":[false,true,true,true]}},{"ix":90,"action":{"kind":"Delegate","val":2,"amt":2833},"partialState":{"h":12,"t":72,"tokens":[3149,9538,14731,2038],"delegation":[2149,8538,13731,1038],"delegatorTokens":9999999965040}},{"ix":91,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":14,"t":84,"consumerPower":[null,9538,10505,null],"outstandingDowntime":[false,true,true,true]}},{"ix":92,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":15,"t":90,"consumerPower":[null,9538,10505,null],"outstandingDowntime":[false,true,true,true]}},{"ix":93,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":13,"t":78,"tokens":[3149,9538,14731,2038],"delegation":[2149,8538,13731,1038],"delegatorTokens":9999999965040,"jailed":[null,1000000000000071,null,null],"status":["unbonding","bonded","bonded","unbonded"]}},{"ix":94,"action":{"kind":"Deliver","chain":"provider","numPackets":2},"partialState":{"h":13,"t":78,"tokens":[3149,9538,14731,2038],"delegation":[2149,8538,13731,1038],"delegatorTokens":9999999965040,"jailed":[null,1000000000000071,null,null],"status":["unbonding","bonded","bonded","unbonded"]}},{"ix":95,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":16,"t":96,"consumerPower":[null,9538,10505,null],"outstandingDowntime":[false,true,true,true]}},{"ix":96,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":97,"action":{"kind":"Deliver","chain":"provider","numPackets":2},"partialState":{"h":13,"t":78,"tokens":[3149,9538,14731,2038],"delegation":[2149,8538,13731,1038],"delegatorTokens":9999999965040,"jailed":[null,1000000000000071,null,null],"status":["unbonding","bonded","bonded","unbonded"]}},{"ix":98,"action":{"kind":"Delegate","val":0,"amt":3447},"partialState":{"h":13,"t":78,"tokens":[6596,9538,14731,2038],"delegation":[5596,8538,13731,1038],"delegatorTokens":9999999961593}},{"ix":99,"action":{"kind":"Deliver","chain":"consumer","numPackets":1},"partialState":{"h":16,"t":96,"consumerPower":[null,9538,10505,null],"outstandingDowntime":[false,true,true,true]}},{"ix":100,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":101,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":102,"action":{"kind":"Undelegate","val":1,"amt":1541},"partialState":{"h":13,"t":78,"tokens":[6596,7997,14731,2038],"delegation":[5596,6997,13731,1038],"delegatorTokens":9999999961593}},{"ix":103,"action":{"kind":"Delegate","val":0,"amt":4468},"partialState":{"h":13,"t":78,"tokens":[11064,7997,14731,2038],"delegation":[10064,6997,13731,1038],"delegatorTokens":9999999957125}},{"ix":104,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":17,"t":102,"consumerPower":[null,9538,10505,null],"outstandingDowntime":[false,true,true,true]}},{"ix":105,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":14,"t":84,"tokens":[11064,7997,14731,2038],"delegation":[10064,6997,13731,1038],"delegatorTokens":9999999957125,"jailed":[null,1000000000000071,null,null],"status":["bonded","unbonding","bonded","unbonded"]}},{"ix":106,"action":{"kind":"Delegate","val":3,"amt":3523},"partialState":{"h":14,"t":84,"tokens":[11064,7997,14731,5561],"delegation":[10064,6997,13731,4561],"delegatorTokens":9999999953602}},{"ix":107,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":108,"action":{"kind":"Undelegate","val":3,"amt":2943},"partialState":{"h":14,"t":84,"tokens":[11064,7997,14731,2618],"delegation":[10064,6997,13731,1618],"delegatorTokens":9999999953602}},{"ix":109,"action":{"kind":"Undelegate","val":2,"amt":2564},"partialState":{"h":14,"t":84,"tokens":[11064,7997,12167,2618],"delegation":[10064,6997,11167,1618],"delegatorTokens":9999999953602}},{"ix":110,"action":{"kind":"Delegate","val":2,"amt":4764},"partialState":{"h":14,"t":84,"tokens":[11064,7997,16931,2618],"delegation":[10064,6997,15931,1618],"delegatorTokens":9999999948838}},{"ix":111,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":18,"t":108,"consumerPower":[null,9538,10505,null],"outstandingDowntime":[false,true,true,true]}},{"ix":112,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":113,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":15,"t":90,"tokens":[11064,7997,16931,2618],"delegation":[10064,6997,15931,1618],"delegatorTokens":9999999948838,"jailed":[null,1000000000000071,null,null],"status":["bonded","unbonding","bonded","unbonded"]}},{"ix":114,"action":{"kind":"Undelegate","val":2,"amt":1431},"partialState":{"h":15,"t":90,"tokens":[11064,7997,15500,2618],"delegation":[10064,6997,14500,1618],"delegatorTokens":9999999948838}},{"ix":115,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":116,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":117,"action":{"kind":"Deliver","chain":"consumer","numPackets":4},"partialState":{"h":18,"t":108,"consumerPower":[null,9538,10505,null],"outstandingDowntime":[false,false,true,true]}},{"ix":118,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":19,"t":114,"consumerPower":[11064,null,14731,null],"outstandingDowntime":[false,false,true,true]}},{"ix":119,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":16,"t":96,"tokens":[11064,7997,15500,2618],"delegation":[10064,6997,14500,1618],"delegatorTokens":9999999948838,"jailed":[null,1000000000000071,null,null],"status":["bonded","unbonding","bonded","unbonded"]}},{"ix":120,"action":{"kind":"Undelegate","val":1,"amt":1460},"partialState":{"h":16,"t":96,"tokens":[11064,6537,15500,2618],"delegation":[10064,5537,14500,1618],"delegatorTokens":9999999948838}},{"ix":121,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":122,"action":{"kind":"Undelegate","val":2,"amt":1749},"partialState":{"h":16,"t":96,"tokens":[11064,6537,13751,2618],"delegation":[10064,5537,12751,1618],"delegatorTokens":9999999948838}},{"ix":123,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":17,"t":102,"tokens":[11064,6537,13751,2618],"delegation":[10064,5537,12751,1618],"delegatorTokens":9999999948838,"jailed":[null,1000000000000071,null,null],"status":["bonded","unbonding","bonded","unbonded"]}},{"ix":124,"action":{"kind":"Deliver","chain":"consumer","numPackets":2},"partialState":{"h":19,"t":114,"consumerPower":[11064,null,14731,null],"outstandingDowntime":[false,false,true,true]}},{"ix":125,"action":{"kind":"Undelegate","val":3,"amt":3168},"partialState":{"h":17,"t":102,"tokens":[11064,6537,13751,2618],"delegation":[10064,5537,12751,1618],"delegatorTokens":9999999948838}},{"ix":126,"action":{"kind":"Delegate","val":0,"amt":3969},"partialState":{"h":17,"t":102,"tokens":[15033,6537,13751,2618],"delegation":[14033,5537,12751,1618],"delegatorTokens":9999999944869}},{"ix":127,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":20,"t":120,"consumerPower":[11064,null,15500,null],"outstandingDowntime":[false,false,true,true]}},{"ix":128,"action":{"kind":"Deliver","chain":"consumer","numPackets":5},"partialState":{"h":20,"t":120,"consumerPower":[11064,null,15500,null],"outstandingDowntime":[false,false,true,true]}},{"ix":129,"action":{"kind":"Delegate","val":2,"amt":1869},"partialState":{"h":17,"t":102,"tokens":[15033,6537,15620,2618],"delegation":[14033,5537,14620,1618],"delegatorTokens":9999999943000}},{"ix":130,"action":{"kind":"Undelegate","val":3,"amt":3738},"partialState":{"h":17,"t":102,"tokens":[15033,6537,15620,2618],"delegation":[14033,5537,14620,1618],"delegatorTokens":9999999943000}},{"ix":131,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":21,"t":126,"consumerPower":[11064,null,15500,null],"outstandingDowntime":[false,false,true,true]}},{"ix":132,"action":{"kind":"Delegate","val":3,"amt":1155},"partialState":{"h":17,"t":102,"tokens":[15033,6537,15620,3773],"delegation":[14033,5537,14620,2773],"delegatorTokens":9999999941845}},{"ix":133,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":134,"action":{"kind":"Delegate","val":0,"amt":3980},"partialState":{"h":17,"t":102,"tokens":[19013,6537,15620,3773],"delegation":[18013,5537,14620,2773],"delegatorTokens":9999999937865}},{"ix":135,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":136,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":137,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":138,"action":{"kind":"Undelegate","val":3,"amt":1524},"partialState":{"h":17,"t":102,"tokens":[19013,6537,15620,2249],"delegation":[18013,5537,14620,1249],"delegatorTokens":9999999937865}},{"ix":139,"action":{"kind":"Undelegate","val":2,"amt":1392},"partialState":{"h":17,"t":102,"tokens":[19013,6537,14228,2249],"delegation":[18013,5537,13228,1249],"delegatorTokens":9999999937865}},{"ix":140,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":141,"action":{"kind":"Delegate","val":1,"amt":1060},"partialState":{"h":17,"t":102,"tokens":[19013,7597,14228,2249],"delegation":[18013,6597,13228,1249],"delegatorTokens":9999999936805}},{"ix":142,"action":{"kind":"Delegate","val":0,"amt":4454},"partialState":{"h":17,"t":102,"tokens":[23467,7597,14228,2249],"delegation":[22467,6597,13228,1249],"delegatorTokens":9999999932351}},{"ix":143,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":144,"action":{"kind":"Deliver","chain":"provider","numPackets":1},"partialState":{"h":17,"t":102,"tokens":[23467,7597,14228,2249],"delegation":[22467,6597,13228,1249],"delegatorTokens":9999999932351,"jailed":[null,1000000000000071,null,null],"status":["bonded","unbonding","bonded","unbonded"]}},{"ix":145,"action":{"kind":"Undelegate","val":2,"amt":2015},"partialState":{"h":17,"t":102,"tokens":[23467,7597,12213,2249],"delegation":[22467,6597,11213,1249],"delegatorTokens":9999999932351}},{"ix":146,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":22,"t":132,"consumerPower":[11064,null,15500,null],"outstandingDowntime":[false,false,true,true]}},{"ix":147,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":23,"t":138,"consumerPower":[11064,null,15500,null],"outstandingDowntime":[false,false,true,true]}},{"ix":148,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":149,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":18,"t":108,"tokens":[23467,7597,12213,2249],"delegation":[22467,6597,11213,1249],"delegatorTokens":9999999934060,"jailed":[null,1000000000000071,null,null],"status":["bonded","unbonding","bonded","unbonded"]}},{"ix":150,"action":{"kind":"Undelegate","val":2,"amt":4054},"partialState":{"h":18,"t":108,"tokens":[23467,7597,8159,2249],"delegation":[22467,6597,7159,1249],"delegatorTokens":9999999934060}},{"ix":151,"action":{"kind":"Undelegate","val":2,"amt":2880},"partialState":{"h":18,"t":108,"tokens":[23467,7597,5279,2249],"delegation":[22467,6597,4279,1249],"delegatorTokens":9999999934060}},{"ix":152,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":19,"t":114,"tokens":[23467,7597,5279,2249],"delegation":[22467,6597,4279,1249],"delegatorTokens":9999999934060,"jailed":[null,1000000000000071,null,null],"status":["bonded","unbonding","bonded","unbonded"]}},{"ix":153,"action":{"kind":"Undelegate","val":0,"amt":1255},"partialState":{"h":19,"t":114,"tokens":[22212,7597,5279,2249],"delegation":[21212,6597,4279,1249],"delegatorTokens":9999999934060}},{"ix":154,"action":{"kind":"Delegate","val":0,"amt":4260},"partialState":{"h":19,"t":114,"tokens":[26472,7597,5279,2249],"delegation":[25472,6597,4279,1249],"delegatorTokens":9999999929800}},{"ix":155,"action":{"kind":"Deliver","chain":"provider","numPackets":6},"partialState":{"h":19,"t":114,"tokens":[26472,7597,5279,2249],"delegation":[25472,6597,4279,1249],"delegatorTokens":9999999929800,"jailed":[null,1000000000000071,null,null],"status":["bonded","unbonding","bonded","unbonded"]}},{"ix":156,"action":{"kind":"Deliver","chain":"provider","numPackets":4},"partialState":{"h":19,"t":114,"tokens":[26472,7597,5279,2249],"delegation":[25472,6597,4279,1249],"delegatorTokens":9999999929800,"jailed":[null,1000000000000071,null,null],"status":["bonded","unbonding","bonded","unbonded"]}},{"ix":157,"action":{"kind":"Deliver","chain":"consumer","numPackets":6},"partialState":{"h":23,"t":138,"consumerPower":[11064,null,15500,null],"outstandingDowntime":[false,false,true,true]}},{"ix":158,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":20,"t":120,"tokens":[26472,7597,5279,2249],"delegation":[25472,6597,4279,1249],"delegatorTokens":9999999931484,"jailed":[null,1000000000000071,null,null],"status":["bonded","unbonding","bonded","unbonded"]}},{"ix":159,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":160,"action":{"kind":"Undelegate","val":3,"amt":1173},"partialState":{"h":20,"t":120,"tokens":[26472,7597,5279,1076],"delegation":[25472,6597,4279,76],"delegatorTokens":9999999931484}},{"ix":161,"action":{"kind":"Undelegate","val":1,"amt":1632},"partialState":{"h":20,"t":120,"tokens":[26472,5965,5279,1076],"delegation":[25472,4965,4279,76],"delegatorTokens":9999999931484}},{"ix":162,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":163,"action":{"kind":"Deliver","chain":"consumer","numPackets":1},"partialState":{"h":23,"t":138,"consumerPower":[11064,null,15500,null],"outstandingDowntime":[false,false,true,true]}},{"ix":164,"action":{"kind":"Deliver","chain":"provider","numPackets":3},"partialState":{"h":20,"t":120,"tokens":[26472,5965,5279,1076],"delegation":[25472,4965,4279,76],"delegatorTokens":9999999931484,"jailed":[null,1000000000000071,null,null],"status":["bonded","unbonding","bonded","unbonded"]}},{"ix":165,"action":{"kind":"Deliver","chain":"consumer","numPackets":1},"partialState":{"h":23,"t":138,"consumerPower":[11064,null,15500,null],"outstandingDowntime":[false,false,true,true]}},{"ix":166,"action":{"kind":"Deliver","chain":"provider","numPackets":4},"partialState":{"h":20,"t":120,"tokens":[26472,5965,5279,1076],"delegation":[25472,4965,4279,76],"delegatorTokens":9999999931484,"jailed":[null,1000000000000071,null,null],"status":["bonded","unbonding","bonded","unbonded"]}},{"ix":167,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":168,"action":{"kind":"Delegate","val":3,"amt":4447},"partialState":{"h":20,"t":120,"tokens":[26472,5965,5279,5523],"delegation":[25472,4965,4279,4523],"delegatorTokens":9999999927037}},{"ix":169,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":170,"action":{"kind":"Deliver","chain":"consumer","numPackets":4},"partialState":{"h":23,"t":138,"consumerPower":[11064,null,15500,null],"outstandingDowntime":[false,false,true,true]}},{"ix":171,"action":{"kind":"Delegate","val":3,"amt":3957},"partialState":{"h":20,"t":120,"tokens":[26472,5965,5279,9480],"delegation":[25472,4965,4279,8480],"delegatorTokens":9999999923080}},{"ix":172,"action":{"kind":"Delegate","val":1,"amt":4087},"partialState":{"h":20,"t":120,"tokens":[26472,10052,5279,9480],"delegation":[25472,9052,4279,8480],"delegatorTokens":9999999918993}},{"ix":173,"action":{"kind":"Deliver","chain":"provider","numPackets":5},"partialState":{"h":20,"t":120,"tokens":[26472,10052,5279,9480],"delegation":[25472,9052,4279,8480],"delegatorTokens":9999999918993,"jailed":[null,1000000000000071,null,null],"status":["bonded","unbonding","bonded","unbonded"]}},{"ix":174,"action":{"kind":"Undelegate","val":3,"amt":2710},"partialState":{"h":20,"t":120,"tokens":[26472,10052,5279,6770],"delegation":[25472,9052,4279,5770],"delegatorTokens":9999999918993}},{"ix":175,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":21,"t":126,"tokens":[26472,10052,5279,6770],"delegation":[25472,9052,4279,5770],"delegatorTokens":9999999923514,"jailed":[null,1000000000000071,null,null],"status":["bonded","unbonding","unbonding","bonded"]}},{"ix":176,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":24,"t":144,"consumerPower":[23467,null,5279,null],"outstandingDowntime":[false,false,true,true]}},{"ix":177,"action":{"kind":"Deliver","chain":"provider","numPackets":6},"partialState":{"h":21,"t":126,"tokens":[26472,10052,5279,6770],"delegation":[25472,9052,4279,5770],"delegatorTokens":9999999923514,"jailed":[null,1000000000000071,null,null],"status":["bonded","unbonding","unbonding","bonded"]}},{"ix":178,"action":{"kind":"Deliver","chain":"consumer","numPackets":6},"partialState":{"h":24,"t":144,"consumerPower":[23467,null,5279,null],"outstandingDowntime":[false,false,true,true]}},{"ix":179,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":180,"action":{"kind":"Delegate","val":3,"amt":1025},"partialState":{"h":21,"t":126,"tokens":[26472,10052,5279,7795],"delegation":[25472,9052,4279,6795],"delegatorTokens":9999999922489}},{"ix":181,"action":{"kind":"Deliver","chain":"consumer","numPackets":2},"partialState":{"h":24,"t":144,"consumerPower":[23467,null,5279,null],"outstandingDowntime":[false,false,true,true]}},{"ix":182,"action":{"kind":"Deliver","chain":"consumer","numPackets":1},"partialState":{"h":24,"t":144,"consumerPower":[23467,null,5279,null],"outstandingDowntime":[false,false,true,true]}},{"ix":183,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":22,"t":132,"tokens":[26472,10052,5279,7795],"delegation":[25472,9052,4279,6795],"delegatorTokens":9999999924303,"jailed":[null,1000000000000071,null,null],"status":["bonded","unbonding","unbonding","bonded"]}},{"ix":184,"action":{"kind":"Deliver","chain":"provider","numPackets":1},"partialState":{"h":22,"t":132,"tokens":[26472,10052,5279,7795],"delegation":[25472,9052,4279,6795],"delegatorTokens":9999999924303,"jailed":[null,1000000000000071,null,null],"status":["bonded","unbonding","unbonding","bonded"]}},{"ix":185,"action":{"kind":"Undelegate","val":3,"amt":3176},"partialState":{"h":22,"t":132,"tokens":[26472,10052,5279,4619],"delegation":[25472,9052,4279,3619],"delegatorTokens":9999999924303}},{"ix":186,"action":{"kind":"Delegate","val":0,"amt":2516},"partialState":{"h":22,"t":132,"tokens":[28988,10052,5279,4619],"delegation":[27988,9052,4279,3619],"delegatorTokens":9999999921787}},{"ix":187,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":188,"action":{"kind":"Deliver","chain":"provider","numPackets":2},"partialState":{"h":22,"t":132,"tokens":[28988,10052,5279,4619],"delegation":[27988,9052,4279,3619],"delegatorTokens":9999999921787,"jailed":[null,1000000000000071,null,null],"status":["bonded","unbonding","unbonding","bonded"]}},{"ix":189,"action":{"kind":"Undelegate","val":2,"amt":2890},"partialState":{"h":22,"t":132,"tokens":[28988,10052,2389,4619],"delegation":[27988,9052,1389,3619],"delegatorTokens":9999999921787}},{"ix":190,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":25,"t":150,"consumerPower":[26472,null,5279,null],"outstandingDowntime":[false,false,true,true]}},{"ix":191,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":192,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":193,"action":{"kind":"Delegate","val":2,"amt":2085},"partialState":{"h":22,"t":132,"tokens":[28988,10052,4474,4619],"delegation":[27988,9052,3474,3619],"delegatorTokens":9999999919702}},{"ix":194,"action":{"kind":"Undelegate","val":1,"amt":2294},"partialState":{"h":22,"t":132,"tokens":[28988,7758,4474,4619],"delegation":[27988,6758,3474,3619],"delegatorTokens":9999999919702}},{"ix":195,"action":{"kind":"Undelegate","val":1,"amt":3232},"partialState":{"h":22,"t":132,"tokens":[28988,4526,4474,4619],"delegation":[27988,3526,3474,3619],"delegatorTokens":9999999919702}},{"ix":196,"action":{"kind":"Delegate","val":2,"amt":3452},"partialState":{"h":22,"t":132,"tokens":[28988,4526,7926,4619],"delegation":[27988,3526,6926,3619],"delegatorTokens":9999999916250}},{"ix":197,"action":{"kind":"Undelegate","val":0,"amt":2522},"partialState":{"h":22,"t":132,"tokens":[26466,4526,7926,4619],"delegation":[25466,3526,6926,3619],"delegatorTokens":9999999916250}},{"ix":198,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":23,"t":138,"tokens":[26466,4526,7926,4619],"delegation":[25466,3526,6926,3619],"delegatorTokens":9999999926026,"jailed":[null,1000000000000071,null,null],"status":["bonded","unbonding","bonded","unbonding"]}},{"ix":199,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}}],"events":["send_downtime_slash_request","send_downtime_slash_request","downtime_slash_request_outstanding","send_double_sign_slash_request","insufficient_shares","downtime_slash_request_outstanding","downtime_slash_request_outstanding","insufficient_shares","insufficient_shares","receive_slash_request_unbonded","receive_slash_request_unbonded","send_vsc_without_downtime_ack","more_than_one_third_val_power_change","send_vsc_without_downtime_ack","insufficient_shares","insufficient_shares","send_vsc_not_because_change","send_vsc_without_downtime_ack","consumer_update_val","consumer_update_val","receive_double_sign_slash_request","more_than_one_third_val_power_change","rebond_unval","send_vsc_without_downtime_ack","consumer_del_val","consumer_add_val","downtime_slash_request_outstanding","downtime_slash_request_outstanding","send_vsc_without_downtime_ack","insufficient_shares","consumer_add_val","consumer_del_val","send_downtime_slash_request","more_than_one_third_val_power_change","rebond_unval","send_vsc_without_downtime_ack","consumer_update_val","consumer_del_val","consumer_add_val","receive_downtime_slash_request","jail","send_vsc_with_downtime_ack","consumer_send_maturation","consumer_send_maturation","more_than_one_third_val_power_change","rebond_unval","send_vsc_without_downtime_ack","some_undels_expired_but_not_completed","send_vsc_without_downtime_ack","receive_downtime_slash_ack","consumer_update_val","consumer_add_val","consumer_del_val","send_vsc_without_downtime_ack","some_undels_expired_but_not_completed","send_vsc_without_downtime_ack","insufficient_shares","consumer_send_maturation","consumer_send_maturation","consumer_update_val","insufficient_shares","consumer_send_maturation","consumer_send_maturation","complete_undel_immediate","send_vsc_without_downtime_ack","send_vsc_without_downtime_ack","complete_undel_immediate","set_undel_hold_false","send_vsc_without_downtime_ack","complete_undel_in_endblock","send_vsc_without_downtime_ack","consumer_update_val","consumer_update_val","some_undels_expired_but_not_completed","complete_undel_immediate","set_undel_hold_false","set_undel_hold_false","set_undel_hold_false","send_vsc_without_downtime_ack","consumer_update_val","rebond_unval","complete_undel_in_endblock","send_vsc_without_downtime_ack"]},{"meta":{"commit":"7ffd0c04e4205cbc9caf212abfe6c59ee43153bf"},"constants":{"P":"provider","C":"consumer","UNBONDING_SECONDS_P":70,"UNBONDING_SECONDS_C":50,"TRUSTING_SECONDS":49,"NUM_VALIDATORS":4,"MAX_VALIDATORS":2,"SLASH_DOUBLESIGN":0,"SLASH_DOWNTIME":0,"JAIL_SECONDS":999999999999999,"BLOCK_SECONDS":6,"INITIAL_DELEGATOR_TOKENS":10000000000000,"DELEGATE_AMT_MIN":1000,"DELEGATE_AMT_MAX":5000,"UNDELEGATE_AMT_MIN":1000,"UNDELEGATE_AMT_MAX":5000,"ISDOWNTIME_PROBABILITY":0.5,"MAX_NUM_PACKETS_FOR_DELIVER":6},"actions":[{"ix":0,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":2,"t":12,"tokens":[5000,4000,3000,2000],"delegation":[4000,3000,2000,1000],"delegatorTokens":10000000000000,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":1,"action":{"kind":"Deliver","chain":"provider","numPackets":6},"partialState":{"h":2,"t":12,"tokens":[5000,4000,3000,2000],"delegation":[4000,3000,2000,1000],"delegatorTokens":10000000000000,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":2,"action":{"kind":"Delegate","val":0,"amt":4678},"partialState":{"h":2,"t":12,"tokens":[9678,4000,3000,2000],"delegation":[8678,3000,2000,1000],"delegatorTokens":9999999995322}},{"ix":3,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":3,"t":18,"tokens":[9678,4000,3000,2000],"delegation":[8678,3000,2000,1000],"delegatorTokens":9999999995322,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":4,"action":{"kind":"Delegate","val":1,"amt":2234},"partialState":{"h":3,"t":18,"tokens":[9678,6234,3000,2000],"delegation":[8678,5234,2000,1000],"delegatorTokens":9999999993088}},{"ix":5,"action":{"kind":"Undelegate","val":3,"amt":4821},"partialState":{"h":3,"t":18,"tokens":[9678,6234,3000,2000],"delegation":[8678,5234,2000,1000],"delegatorTokens":9999999993088}},{"ix":6,"action":{"kind":"Delegate","val":1,"amt":4431},"partialState":{"h":3,"t":18,"tokens":[9678,10665,3000,2000],"delegation":[8678,9665,2000,1000],"delegatorTokens":9999999988657}},{"ix":7,"action":{"kind":"Undelegate","val":3,"amt":1576},"partialState":{"h":3,"t":18,"tokens":[9678,10665,3000,2000],"delegation":[8678,9665,2000,1000],"delegatorTokens":9999999988657}},{"ix":8,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":2,"t":12,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":9,"action":{"kind":"Delegate","val":0,"amt":3751},"partialState":{"h":3,"t":18,"tokens":[13429,10665,3000,2000],"delegation":[12429,9665,2000,1000],"delegatorTokens":9999999984906}},{"ix":10,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":4,"t":24,"tokens":[13429,10665,3000,2000],"delegation":[12429,9665,2000,1000],"delegatorTokens":9999999984906,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":11,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":5,"t":30,"tokens":[13429,10665,3000,2000],"delegation":[12429,9665,2000,1000],"delegatorTokens":9999999984906,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":12,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":3,"t":18,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":13,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":14,"action":{"kind":"Delegate","val":0,"amt":4849},"partialState":{"h":5,"t":30,"tokens":[18278,10665,3000,2000],"delegation":[17278,9665,2000,1000],"delegatorTokens":9999999980057}},{"ix":15,"action":{"kind":"Deliver","chain":"provider","numPackets":5},"partialState":{"h":5,"t":30,"tokens":[18278,10665,3000,2000],"delegation":[17278,9665,2000,1000],"delegatorTokens":9999999980057,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":16,"action":{"kind":"Deliver","chain":"consumer","numPackets":6},"partialState":{"h":3,"t":18,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":17,"action":{"kind":"Deliver","chain":"provider","numPackets":2},"partialState":{"h":5,"t":30,"tokens":[18278,10665,3000,2000],"delegation":[17278,9665,2000,1000],"delegatorTokens":9999999980057,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":18,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":6,"t":36,"tokens":[18278,10665,3000,2000],"delegation":[17278,9665,2000,1000],"delegatorTokens":9999999980057,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":19,"action":{"kind":"Undelegate","val":2,"amt":3345},"partialState":{"h":6,"t":36,"tokens":[18278,10665,3000,2000],"delegation":[17278,9665,2000,1000],"delegatorTokens":9999999980057}},{"ix":20,"action":{"kind":"Deliver","chain":"consumer","numPackets":1},"partialState":{"h":3,"t":18,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":21,"action":{"kind":"Deliver","chain":"provider","numPackets":1},"partialState":{"h":6,"t":36,"tokens":[18278,10665,3000,2000],"delegation":[17278,9665,2000,1000],"delegatorTokens":9999999980057,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":22,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":4,"t":24,"consumerPower":[13429,10665,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":23,"action":{"kind":"ConsumerSlash","val":0,"infractionHeight":3,"isDowntime":true},"partialState":{"h":4,"t":24,"outstandingDowntime":[true,false,false,false]}},{"ix":24,"action":{"kind":"Delegate","val":0,"amt":4879},"partialState":{"h":6,"t":36,"tokens":[23157,10665,3000,2000],"delegation":[22157,9665,2000,1000],"delegatorTokens":9999999975178}},{"ix":25,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":5,"t":30,"consumerPower":[13429,10665,null,null],"outstandingDowntime":[true,false,false,false]}},{"ix":26,"action":{"kind":"ConsumerSlash","val":0,"infractionHeight":3,"isDowntime":true},"partialState":{"h":5,"t":30,"outstandingDowntime":[true,false,false,false]}},{"ix":27,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":7,"t":42,"tokens":[23157,10665,3000,2000],"delegation":[22157,9665,2000,1000],"delegatorTokens":9999999975178,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":28,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":29,"action":{"kind":"Undelegate","val":0,"amt":1012},"partialState":{"h":7,"t":42,"tokens":[22145,10665,3000,2000],"delegation":[21145,9665,2000,1000],"delegatorTokens":9999999975178}},{"ix":30,"action":{"kind":"Delegate","val":1,"amt":3474},"partialState":{"h":7,"t":42,"tokens":[22145,14139,3000,2000],"delegation":[21145,13139,2000,1000],"delegatorTokens":9999999971704}},{"ix":31,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":32,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":6,"t":36,"consumerPower":[13429,10665,null,null],"outstandingDowntime":[true,false,false,false]}},{"ix":33,"action":{"kind":"Undelegate","val":2,"amt":2102},"partialState":{"h":7,"t":42,"tokens":[22145,14139,3000,2000],"delegation":[21145,13139,2000,1000],"delegatorTokens":9999999971704}},{"ix":34,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":7,"t":42,"consumerPower":[13429,10665,null,null],"outstandingDowntime":[true,false,false,false]}},{"ix":35,"action":{"kind":"ConsumerSlash","val":0,"infractionHeight":4,"isDowntime":true},"partialState":{"h":7,"t":42,"outstandingDowntime":[true,false,false,false]}},{"ix":36,"action":{"kind":"Deliver","chain":"consumer","numPackets":5},"partialState":{"h":7,"t":42,"consumerPower":[13429,10665,null,null],"outstandingDowntime":[true,false,false,false]}},{"ix":37,"action":{"kind":"Undelegate","val":2,"amt":4340},"partialState":{"h":7,"t":42,"tokens":[22145,14139,3000,2000],"delegation":[21145,13139,2000,1000],"delegatorTokens":9999999971704}},{"ix":38,"action":{"kind":"Delegate","val":0,"amt":2803},"partialState":{"h":7,"t":42,"tokens":[24948,14139,3000,2000],"delegation":[23948,13139,2000,1000],"delegatorTokens":9999999968901}},{"ix":39,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":40,"action":{"kind":"ConsumerSlash","val":3,"infractionHeight":6,"isDowntime":true},"partialState":{"h":7,"t":42,"outstandingDowntime":[true,false,false,true]}},{"ix":41,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":8,"t":48,"tokens":[24948,14139,3000,2000],"delegation":[23948,13139,2000,1000],"delegatorTokens":9999999968901,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":42,"action":{"kind":"ConsumerSlash","val":0,"infractionHeight":4,"isDowntime":true},"partialState":{"h":7,"t":42,"outstandingDowntime":[true,false,false,true]}},{"ix":43,"action":{"kind":"Deliver","chain":"provider","numPackets":6},"partialState":{"h":8,"t":48,"tokens":[24948,14139,3000,2000],"delegation":[23948,13139,2000,1000],"delegatorTokens":9999999968901,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":44,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":45,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":46,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":8,"t":48,"consumerPower":[18278,10665,null,null],"outstandingDowntime":[true,false,false,true]}},{"ix":47,"action":{"kind":"ConsumerSlash","val":0,"infractionHeight":1,"isDowntime":true},"partialState":{"h":8,"t":48,"outstandingDowntime":[true,false,false,true]}},{"ix":48,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":49,"action":{"kind":"Delegate","val":3,"amt":3198},"partialState":{"h":8,"t":48,"tokens":[24948,14139,3000,5198],"delegation":[23948,13139,2000,4198],"delegatorTokens":9999999965703}},{"ix":50,"action":{"kind":"Delegate","val":0,"amt":1878},"partialState":{"h":8,"t":48,"tokens":[26826,14139,3000,5198],"delegation":[25826,13139,2000,4198],"delegatorTokens":9999999963825}},{"ix":51,"action":{"kind":"Delegate","val":3,"amt":3593},"partialState":{"h":8,"t":48,"tokens":[26826,14139,3000,8791],"delegation":[25826,13139,2000,7791],"delegatorTokens":9999999960232}},{"ix":52,"action":{"kind":"ConsumerSlash","val":0,"infractionHeight":2,"isDowntime":false},"partialState":{"h":8,"t":48,"outstandingDowntime":[true,false,false,true]}},{"ix":53,"action":{"kind":"ConsumerSlash","val":3,"infractionHeight":3,"isDowntime":true},"partialState":{"h":8,"t":48,"outstandingDowntime":[true,false,false,true]}},{"ix":54,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":55,"action":{"kind":"Deliver","chain":"provider","numPackets":1},"partialState":{"h":8,"t":48,"tokens":[26826,14139,3000,8791],"delegation":[25826,13139,2000,7791],"delegatorTokens":9999999960232,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":56,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":57,"action":{"kind":"ConsumerSlash","val":3,"infractionHeight":4,"isDowntime":false},"partialState":{"h":8,"t":48,"outstandingDowntime":[true,false,false,true]}},{"ix":58,"action":{"kind":"Delegate","val":1,"amt":2561},"partialState":{"h":8,"t":48,"tokens":[26826,16700,3000,8791],"delegation":[25826,15700,2000,7791],"delegatorTokens":9999999957671}},{"ix":59,"action":{"kind":"Undelegate","val":0,"amt":4368},"partialState":{"h":8,"t":48,"tokens":[22458,16700,3000,8791],"delegation":[21458,15700,2000,7791],"delegatorTokens":9999999957671}},{"ix":60,"action":{"kind":"Deliver","chain":"consumer","numPackets":5},"partialState":{"h":8,"t":48,"consumerPower":[18278,10665,null,null],"outstandingDowntime":[true,false,false,true]}},{"ix":61,"action":{"kind":"ConsumerSlash","val":0,"infractionHeight":4,"isDowntime":false},"partialState":{"h":8,"t":48,"outstandingDowntime":[true,false,false,true]}},{"ix":62,"action":{"kind":"ConsumerSlash","val":2,"infractionHeight":1,"isDowntime":true},"partialState":{"h":8,"t":48,"outstandingDowntime":[true,false,true,true]}},{"ix":63,"action":{"kind":"Deliver","chain":"provider","numPackets":6},"partialState":{"h":8,"t":48,"tokens":[22458,16700,3000,8791],"delegation":[21458,15700,2000,7791],"delegatorTokens":9999999957671,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":64,"action":{"kind":"Delegate","val":3,"amt":1154},"partialState":{"h":8,"t":48,"tokens":[22458,16700,3000,9945],"delegation":[21458,15700,2000,8945],"delegatorTokens":9999999956517}},{"ix":65,"action":{"kind":"Delegate","val":3,"amt":2941},"partialState":{"h":8,"t":48,"tokens":[22458,16700,3000,12886],"delegation":[21458,15700,2000,11886],"delegatorTokens":9999999953576}},{"ix":66,"action":{"kind":"Deliver","chain":"consumer","numPackets":3},"partialState":{"h":8,"t":48,"consumerPower":[18278,10665,null,null],"outstandingDowntime":[true,false,true,true]}},{"ix":67,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":9,"t":54,"consumerPower":[23157,10665,null,null],"outstandingDowntime":[true,false,true,true]}},{"ix":68,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":69,"action":{"kind":"Undelegate","val":1,"amt":2711},"partialState":{"h":8,"t":48,"tokens":[22458,13989,3000,12886],"delegation":[21458,12989,2000,11886],"delegatorTokens":9999999953576}},{"ix":70,"action":{"kind":"Delegate","val":2,"amt":3553},"partialState":{"h":8,"t":48,"tokens":[22458,13989,6553,12886],"delegation":[21458,12989,5553,11886],"delegatorTokens":9999999950023}},{"ix":71,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":10,"t":60,"consumerPower":[23157,10665,null,null],"outstandingDowntime":[true,false,true,true]}},{"ix":72,"action":{"kind":"Delegate","val":3,"amt":2718},"partialState":{"h":8,"t":48,"tokens":[22458,13989,6553,15604],"delegation":[21458,12989,5553,14604],"delegatorTokens":9999999947305}},{"ix":73,"action":{"kind":"Delegate","val":1,"amt":1606},"partialState":{"h":8,"t":48,"tokens":[22458,15595,6553,15604],"delegation":[21458,14595,5553,14604],"delegatorTokens":9999999945699}},{"ix":74,"action":{"kind":"Undelegate","val":3,"amt":1256},"partialState":{"h":8,"t":48,"tokens":[22458,15595,6553,14348],"delegation":[21458,14595,5553,13348],"delegatorTokens":9999999945699}},{"ix":75,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":76,"action":{"kind":"Deliver","chain":"consumer","numPackets":4},"partialState":{"h":10,"t":60,"consumerPower":[23157,10665,null,null],"outstandingDowntime":[true,false,true,true]}},{"ix":77,"action":{"kind":"Delegate","val":3,"amt":1023},"partialState":{"h":8,"t":48,"tokens":[22458,15595,6553,15371],"delegation":[21458,14595,5553,14371],"delegatorTokens":9999999944676}},{"ix":78,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":79,"action":{"kind":"Undelegate","val":3,"amt":4255},"partialState":{"h":8,"t":48,"tokens":[22458,15595,6553,11116],"delegation":[21458,14595,5553,10116],"delegatorTokens":9999999944676}},{"ix":80,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":11,"t":66,"consumerPower":[23157,10665,null,null],"outstandingDowntime":[true,false,true,true]}},{"ix":81,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":82,"action":{"kind":"Undelegate","val":2,"amt":2714},"partialState":{"h":8,"t":48,"tokens":[22458,15595,3839,11116],"delegation":[21458,14595,2839,10116],"delegatorTokens":9999999944676}},{"ix":83,"action":{"kind":"Undelegate","val":2,"amt":4258},"partialState":{"h":8,"t":48,"tokens":[22458,15595,3839,11116],"delegation":[21458,14595,2839,10116],"delegatorTokens":9999999944676}},{"ix":84,"action":{"kind":"Delegate","val":2,"amt":2039},"partialState":{"h":8,"t":48,"tokens":[22458,15595,5878,11116],"delegation":[21458,14595,4878,10116],"delegatorTokens":9999999942637}},{"ix":85,"action":{"kind":"Deliver","chain":"provider","numPackets":4},"partialState":{"h":8,"t":48,"tokens":[22458,15595,5878,11116],"delegation":[21458,14595,4878,10116],"delegatorTokens":9999999942637,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":86,"action":{"kind":"Undelegate","val":2,"amt":1830},"partialState":{"h":8,"t":48,"tokens":[22458,15595,4048,11116],"delegation":[21458,14595,3048,10116],"delegatorTokens":9999999942637}},{"ix":87,"action":{"kind":"Undelegate","val":0,"amt":2561},"partialState":{"h":8,"t":48,"tokens":[19897,15595,4048,11116],"delegation":[18897,14595,3048,10116],"delegatorTokens":9999999942637}},{"ix":88,"action":{"kind":"Deliver","chain":"consumer","numPackets":5},"partialState":{"h":11,"t":66,"consumerPower":[23157,10665,null,null],"outstandingDowntime":[true,false,true,true]}},{"ix":89,"action":{"kind":"Deliver","chain":"consumer","numPackets":4},"partialState":{"h":11,"t":66,"consumerPower":[23157,10665,null,null],"outstandingDowntime":[true,false,true,true]}},{"ix":90,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":91,"action":{"kind":"Delegate","val":2,"amt":3009},"partialState":{"h":8,"t":48,"tokens":[19897,15595,7057,11116],"delegation":[18897,14595,6057,10116],"delegatorTokens":9999999939628}},{"ix":92,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":93,"action":{"kind":"Undelegate","val":1,"amt":1512},"partialState":{"h":8,"t":48,"tokens":[19897,14083,7057,11116],"delegation":[18897,13083,6057,10116],"delegatorTokens":9999999939628}},{"ix":94,"action":{"kind":"Delegate","val":2,"amt":4709},"partialState":{"h":8,"t":48,"tokens":[19897,14083,11766,11116],"delegation":[18897,13083,10766,10116],"delegatorTokens":9999999934919}},{"ix":95,"action":{"kind":"Delegate","val":3,"amt":2779},"partialState":{"h":8,"t":48,"tokens":[19897,14083,11766,13895],"delegation":[18897,13083,10766,12895],"delegatorTokens":9999999932140}},{"ix":96,"action":{"kind":"Undelegate","val":2,"amt":4440},"partialState":{"h":8,"t":48,"tokens":[19897,14083,7326,13895],"delegation":[18897,13083,6326,12895],"delegatorTokens":9999999932140}},{"ix":97,"action":{"kind":"Undelegate","val":3,"amt":1330},"partialState":{"h":8,"t":48,"tokens":[19897,14083,7326,12565],"delegation":[18897,13083,6326,11565],"delegatorTokens":9999999932140}},{"ix":98,"action":{"kind":"Undelegate","val":0,"amt":1783},"partialState":{"h":8,"t":48,"tokens":[18114,14083,7326,12565],"delegation":[17114,13083,6326,11565],"delegatorTokens":9999999932140}},{"ix":99,"action":{"kind":"Delegate","val":2,"amt":3774},"partialState":{"h":8,"t":48,"tokens":[18114,14083,11100,12565],"delegation":[17114,13083,10100,11565],"delegatorTokens":9999999928366}},{"ix":100,"action":{"kind":"Undelegate","val":3,"amt":1545},"partialState":{"h":8,"t":48,"tokens":[18114,14083,11100,11020],"delegation":[17114,13083,10100,10020],"delegatorTokens":9999999928366}},{"ix":101,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":102,"action":{"kind":"Delegate","val":0,"amt":3631},"partialState":{"h":8,"t":48,"tokens":[21745,14083,11100,11020],"delegation":[20745,13083,10100,10020],"delegatorTokens":9999999924735}},{"ix":103,"action":{"kind":"Deliver","chain":"consumer","numPackets":6},"partialState":{"h":11,"t":66,"consumerPower":[23157,10665,null,null],"outstandingDowntime":[true,false,true,true]}},{"ix":104,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":105,"action":{"kind":"Deliver","chain":"provider","numPackets":4},"partialState":{"h":8,"t":48,"tokens":[21745,14083,11100,11020],"delegation":[20745,13083,10100,10020],"delegatorTokens":9999999924735,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":106,"action":{"kind":"Deliver","chain":"provider","numPackets":6},"partialState":{"h":8,"t":48,"tokens":[21745,14083,11100,11020],"delegation":[20745,13083,10100,10020],"delegatorTokens":9999999924735,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":107,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":12,"t":72,"consumerPower":[23157,10665,null,null],"outstandingDowntime":[true,false,true,true]}},{"ix":108,"action":{"kind":"Undelegate","val":0,"amt":2601},"partialState":{"h":8,"t":48,"tokens":[19144,14083,11100,11020],"delegation":[18144,13083,10100,10020],"delegatorTokens":9999999924735}},{"ix":109,"action":{"kind":"Undelegate","val":3,"amt":3368},"partialState":{"h":8,"t":48,"tokens":[19144,14083,11100,7652],"delegation":[18144,13083,10100,6652],"delegatorTokens":9999999924735}},{"ix":110,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":9,"t":54,"tokens":[19144,14083,11100,7652],"delegation":[18144,13083,10100,6652],"delegatorTokens":9999999924735,"jailed":[1000000000000047,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":111,"action":{"kind":"Delegate","val":1,"amt":3751},"partialState":{"h":9,"t":54,"tokens":[19144,17834,11100,7652],"delegation":[18144,16834,10100,6652],"delegatorTokens":9999999920984}},{"ix":112,"action":{"kind":"Delegate","val":1,"amt":3150},"partialState":{"h":9,"t":54,"tokens":[19144,20984,11100,7652],"delegation":[18144,19984,10100,6652],"delegatorTokens":9999999917834}},{"ix":113,"action":{"kind":"Deliver","chain":"provider","numPackets":5},"partialState":{"h":9,"t":54,"tokens":[19144,20984,11100,7652],"delegation":[18144,19984,10100,6652],"delegatorTokens":9999999917834,"jailed":[1000000000000047,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":114,"action":{"kind":"Deliver","chain":"consumer","numPackets":2},"partialState":{"h":12,"t":72,"consumerPower":[23157,10665,null,null],"outstandingDowntime":[true,false,true,true]}},{"ix":115,"action":{"kind":"Undelegate","val":1,"amt":3191},"partialState":{"h":9,"t":54,"tokens":[19144,17793,11100,7652],"delegation":[18144,16793,10100,6652],"delegatorTokens":9999999917834}},{"ix":116,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":117,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":10,"t":60,"tokens":[19144,17793,11100,7652],"delegation":[18144,16793,10100,6652],"delegatorTokens":9999999917834,"jailed":[1000000000000047,null,null,null],"status":["unbonding","bonded","bonded","unbonded"]}},{"ix":118,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":13,"t":78,"consumerPower":[24948,14139,null,null],"outstandingDowntime":[true,false,true,true]}},{"ix":119,"action":{"kind":"Undelegate","val":1,"amt":2427},"partialState":{"h":10,"t":60,"tokens":[19144,15366,11100,7652],"delegation":[18144,14366,10100,6652],"delegatorTokens":9999999917834}},{"ix":120,"action":{"kind":"Deliver","chain":"consumer","numPackets":3},"partialState":{"h":13,"t":78,"consumerPower":[24948,14139,null,null],"outstandingDowntime":[false,false,true,true]}},{"ix":121,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":122,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":123,"action":{"kind":"Delegate","val":2,"amt":2371},"partialState":{"h":10,"t":60,"tokens":[19144,15366,13471,7652],"delegation":[18144,14366,12471,6652],"delegatorTokens":9999999915463}},{"ix":124,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":11,"t":66,"tokens":[19144,15366,13471,7652],"delegation":[18144,14366,12471,6652],"delegatorTokens":9999999915463,"jailed":[1000000000000047,null,null,null],"status":["unbonding","bonded","bonded","unbonded"]}},{"ix":125,"action":{"kind":"Undelegate","val":1,"amt":4944},"partialState":{"h":11,"t":66,"tokens":[19144,10422,13471,7652],"delegation":[18144,9422,12471,6652],"delegatorTokens":9999999915463}},{"ix":126,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":12,"t":72,"tokens":[19144,10422,13471,7652],"delegation":[18144,9422,12471,6652],"delegatorTokens":9999999915463,"jailed":[1000000000000047,null,null,null],"status":["unbonding","bonded","bonded","unbonded"]}},{"ix":127,"action":{"kind":"Undelegate","val":2,"amt":3437},"partialState":{"h":12,"t":72,"tokens":[19144,10422,10034,7652],"delegation":[18144,9422,9034,6652],"delegatorTokens":9999999915463}},{"ix":128,"action":{"kind":"Deliver","chain":"consumer","numPackets":2},"partialState":{"h":13,"t":78,"consumerPower":[24948,14139,null,null],"outstandingDowntime":[false,false,true,true]}},{"ix":129,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":130,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":131,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":132,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":13,"t":78,"tokens":[19144,10422,10034,7652],"delegation":[18144,9422,9034,6652],"delegatorTokens":9999999915463,"jailed":[1000000000000047,null,null,null],"status":["unbonding","bonded","bonded","unbonded"]}},{"ix":133,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":134,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":135,"action":{"kind":"Delegate","val":1,"amt":2025},"partialState":{"h":13,"t":78,"tokens":[19144,12447,10034,7652],"delegation":[18144,11447,9034,6652],"delegatorTokens":9999999913438}},{"ix":136,"action":{"kind":"Deliver","chain":"consumer","numPackets":5},"partialState":{"h":13,"t":78,"consumerPower":[24948,14139,null,null],"outstandingDowntime":[false,false,true,true]}},{"ix":137,"action":{"kind":"Deliver","chain":"consumer","numPackets":1},"partialState":{"h":13,"t":78,"consumerPower":[24948,14139,null,null],"outstandingDowntime":[false,false,true,true]}},{"ix":138,"action":{"kind":"Delegate","val":1,"amt":1300},"partialState":{"h":13,"t":78,"tokens":[19144,13747,10034,7652],"delegation":[18144,12747,9034,6652],"delegatorTokens":9999999912138}},{"ix":139,"action":{"kind":"Deliver","chain":"provider","numPackets":4},"partialState":{"h":13,"t":78,"tokens":[19144,13747,10034,7652],"delegation":[18144,12747,9034,6652],"delegatorTokens":9999999912138,"jailed":[1000000000000047,null,null,null],"status":["unbonding","bonded","bonded","unbonded"]}},{"ix":140,"action":{"kind":"Delegate","val":0,"amt":2200},"partialState":{"h":13,"t":78,"tokens":[21344,13747,10034,7652],"delegation":[20344,12747,9034,6652],"delegatorTokens":9999999909938}},{"ix":141,"action":{"kind":"Delegate","val":3,"amt":2686},"partialState":{"h":13,"t":78,"tokens":[21344,13747,10034,10338],"delegation":[20344,12747,9034,9338],"delegatorTokens":9999999907252}},{"ix":142,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":14,"t":84,"consumerPower":[null,10422,13471,null],"outstandingDowntime":[false,false,true,true]}},{"ix":143,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":144,"action":{"kind":"Delegate","val":2,"amt":3818},"partialState":{"h":13,"t":78,"tokens":[21344,13747,13852,10338],"delegation":[20344,12747,12852,9338],"delegatorTokens":9999999903434}},{"ix":145,"action":{"kind":"Undelegate","val":2,"amt":4566},"partialState":{"h":13,"t":78,"tokens":[21344,13747,9286,10338],"delegation":[20344,12747,8286,9338],"delegatorTokens":9999999903434}},{"ix":146,"action":{"kind":"Delegate","val":0,"amt":4385},"partialState":{"h":13,"t":78,"tokens":[25729,13747,9286,10338],"delegation":[24729,12747,8286,9338],"delegatorTokens":9999999899049}},{"ix":147,"action":{"kind":"Deliver","chain":"consumer","numPackets":5},"partialState":{"h":14,"t":84,"consumerPower":[null,10422,13471,null],"outstandingDowntime":[false,false,true,true]}},{"ix":148,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":149,"action":{"kind":"Deliver","chain":"consumer","numPackets":1},"partialState":{"h":14,"t":84,"consumerPower":[null,10422,13471,null],"outstandingDowntime":[false,false,true,true]}},{"ix":150,"action":{"kind":"Undelegate","val":1,"amt":3779},"partialState":{"h":13,"t":78,"tokens":[25729,9968,9286,10338],"delegation":[24729,8968,8286,9338],"delegatorTokens":9999999899049}},{"ix":151,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":152,"action":{"kind":"Undelegate","val":0,"amt":2263},"partialState":{"h":13,"t":78,"tokens":[23466,9968,9286,10338],"delegation":[22466,8968,8286,9338],"delegatorTokens":9999999899049}},{"ix":153,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":14,"t":84,"tokens":[23466,9968,9286,10338],"delegation":[22466,8968,8286,9338],"delegatorTokens":9999999899049,"jailed":[1000000000000047,null,null,null],"status":["unbonding","bonded","unbonding","bonded"]}},{"ix":154,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":155,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":156,"action":{"kind":"Undelegate","val":1,"amt":4642},"partialState":{"h":14,"t":84,"tokens":[23466,5326,9286,10338],"delegation":[22466,4326,8286,9338],"delegatorTokens":9999999899049}},{"ix":157,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":15,"t":90,"tokens":[23466,5326,9286,10338],"delegation":[22466,4326,8286,9338],"delegatorTokens":9999999899049,"jailed":[1000000000000047,null,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":158,"action":{"kind":"Deliver","chain":"provider","numPackets":6},"partialState":{"h":15,"t":90,"tokens":[23466,5326,9286,10338],"delegation":[22466,4326,8286,9338],"delegatorTokens":9999999899049,"jailed":[1000000000000047,null,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":159,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":160,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":161,"action":{"kind":"Deliver","chain":"provider","numPackets":2},"partialState":{"h":15,"t":90,"tokens":[23466,5326,9286,10338],"delegation":[22466,4326,8286,9338],"delegatorTokens":9999999899049,"jailed":[1000000000000047,null,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":162,"action":{"kind":"Undelegate","val":1,"amt":4783},"partialState":{"h":15,"t":90,"tokens":[23466,5326,9286,10338],"delegation":[22466,4326,8286,9338],"delegatorTokens":9999999899049}},{"ix":163,"action":{"kind":"Deliver","chain":"provider","numPackets":4},"partialState":{"h":15,"t":90,"tokens":[23466,5326,9286,10338],"delegation":[22466,4326,8286,9338],"delegatorTokens":9999999899049,"jailed":[1000000000000047,null,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":164,"action":{"kind":"Delegate","val":2,"amt":1876},"partialState":{"h":15,"t":90,"tokens":[23466,5326,11162,10338],"delegation":[22466,4326,10162,9338],"delegatorTokens":9999999897173}},{"ix":165,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":166,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":167,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":16,"t":96,"tokens":[23466,5326,11162,10338],"delegation":[22466,4326,10162,9338],"delegatorTokens":9999999897173,"jailed":[1000000000000047,null,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":168,"action":{"kind":"Undelegate","val":3,"amt":4260},"partialState":{"h":16,"t":96,"tokens":[23466,5326,11162,6078],"delegation":[22466,4326,10162,5078],"delegatorTokens":9999999897173}},{"ix":169,"action":{"kind":"Delegate","val":0,"amt":1815},"partialState":{"h":16,"t":96,"tokens":[25281,5326,11162,6078],"delegation":[24281,4326,10162,5078],"delegatorTokens":9999999895358}},{"ix":170,"action":{"kind":"Deliver","chain":"consumer","numPackets":5},"partialState":{"h":14,"t":84,"consumerPower":[null,10422,13471,null],"outstandingDowntime":[false,false,true,true]}},{"ix":171,"action":{"kind":"Undelegate","val":3,"amt":2293},"partialState":{"h":16,"t":96,"tokens":[25281,5326,11162,3785],"delegation":[24281,4326,10162,2785],"delegatorTokens":9999999895358}},{"ix":172,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":173,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":15,"t":90,"consumerPower":[null,null,9286,10338],"outstandingDowntime":[false,false,true,true]}},{"ix":174,"action":{"kind":"Deliver","chain":"consumer","numPackets":6},"partialState":{"h":15,"t":90,"consumerPower":[null,null,9286,10338],"outstandingDowntime":[false,false,true,true]}},{"ix":175,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":16,"t":96,"consumerPower":[null,null,9286,10338],"outstandingDowntime":[false,false,true,true]}},{"ix":176,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":17,"t":102,"consumerPower":[null,null,9286,10338],"outstandingDowntime":[false,false,true,true]}},{"ix":177,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":17,"t":102,"tokens":[25281,5326,11162,3785],"delegation":[24281,4326,10162,2785],"delegatorTokens":9999999895358,"jailed":[1000000000000047,null,null,null],"status":["unbonding","bonded","bonded","unbonding"]}},{"ix":178,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":18,"t":108,"tokens":[25281,5326,11162,3785],"delegation":[24281,4326,10162,2785],"delegatorTokens":9999999895358,"jailed":[1000000000000047,null,null,null],"status":["unbonding","bonded","bonded","unbonding"]}},{"ix":179,"action":{"kind":"Delegate","val":0,"amt":4971},"partialState":{"h":18,"t":108,"tokens":[30252,5326,11162,3785],"delegation":[29252,4326,10162,2785],"delegatorTokens":9999999890387}},{"ix":180,"action":{"kind":"Deliver","chain":"provider","numPackets":6},"partialState":{"h":18,"t":108,"tokens":[30252,5326,11162,3785],"delegation":[29252,4326,10162,2785],"delegatorTokens":9999999890387,"jailed":[1000000000000047,null,null,null],"status":["unbonding","bonded","bonded","unbonding"]}},{"ix":181,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":19,"t":114,"tokens":[30252,5326,11162,3785],"delegation":[29252,4326,10162,2785],"delegatorTokens":9999999890387,"jailed":[1000000000000047,null,null,null],"status":["unbonding","bonded","bonded","unbonding"]}},{"ix":182,"action":{"kind":"Undelegate","val":3,"amt":1934},"partialState":{"h":19,"t":114,"tokens":[30252,5326,11162,1851],"delegation":[29252,4326,10162,851],"delegatorTokens":9999999890387}},{"ix":183,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":18,"t":108,"consumerPower":[null,null,9286,10338],"outstandingDowntime":[false,false,true,true]}},{"ix":184,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":19,"t":114,"consumerPower":[null,null,9286,10338],"outstandingDowntime":[false,false,true,true]}},{"ix":185,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":20,"t":120,"tokens":[30252,5326,11162,1851],"delegation":[29252,4326,10162,851],"delegatorTokens":9999999890387,"jailed":[1000000000000047,null,null,null],"status":["unbonding","bonded","bonded","unbonding"]}},{"ix":186,"action":{"kind":"Delegate","val":2,"amt":3022},"partialState":{"h":20,"t":120,"tokens":[30252,5326,14184,1851],"delegation":[29252,4326,13184,851],"delegatorTokens":9999999887365}},{"ix":187,"action":{"kind":"Delegate","val":2,"amt":4453},"partialState":{"h":20,"t":120,"tokens":[30252,5326,18637,1851],"delegation":[29252,4326,17637,851],"delegatorTokens":9999999882912}},{"ix":188,"action":{"kind":"Delegate","val":0,"amt":1666},"partialState":{"h":20,"t":120,"tokens":[31918,5326,18637,1851],"delegation":[30918,4326,17637,851],"delegatorTokens":9999999881246}},{"ix":189,"action":{"kind":"Deliver","chain":"provider","numPackets":1},"partialState":{"h":20,"t":120,"tokens":[31918,5326,18637,1851],"delegation":[30918,4326,17637,851],"delegatorTokens":9999999881246,"jailed":[1000000000000047,null,null,null],"status":["unbonding","bonded","bonded","unbonding"]}},{"ix":190,"action":{"kind":"Delegate","val":1,"amt":4499},"partialState":{"h":20,"t":120,"tokens":[31918,9825,18637,1851],"delegation":[30918,8825,17637,851],"delegatorTokens":9999999876747}},{"ix":191,"action":{"kind":"Deliver","chain":"provider","numPackets":6},"partialState":{"h":20,"t":120,"tokens":[31918,9825,18637,1851],"delegation":[30918,8825,17637,851],"delegatorTokens":9999999876747,"jailed":[1000000000000047,null,null,null],"status":["unbonding","bonded","bonded","unbonding"]}},{"ix":192,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":20,"t":120,"consumerPower":[null,null,9286,10338],"outstandingDowntime":[false,false,true,true]}},{"ix":193,"action":{"kind":"Undelegate","val":3,"amt":2198},"partialState":{"h":20,"t":120,"tokens":[31918,9825,18637,1851],"delegation":[30918,8825,17637,851],"delegatorTokens":9999999876747}},{"ix":194,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":21,"t":126,"tokens":[31918,9825,18637,1851],"delegation":[30918,8825,17637,851],"delegatorTokens":9999999876747,"jailed":[1000000000000047,null,null,null],"status":["unbonding","bonded","bonded","unbonding"]}},{"ix":195,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":22,"t":132,"tokens":[31918,9825,18637,1851],"delegation":[30918,8825,17637,851],"delegatorTokens":9999999876747,"jailed":[1000000000000047,null,null,null],"status":["unbonding","bonded","bonded","unbonding"]}},{"ix":196,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":23,"t":138,"tokens":[31918,9825,18637,1851],"delegation":[30918,8825,17637,851],"delegatorTokens":9999999876747,"jailed":[1000000000000047,null,null,null],"status":["unbonding","bonded","bonded","unbonding"]}},{"ix":197,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":21,"t":126,"consumerPower":[null,null,9286,10338],"outstandingDowntime":[false,false,true,true]}},{"ix":198,"action":{"kind":"Deliver","chain":"consumer","numPackets":4},"partialState":{"h":21,"t":126,"consumerPower":[null,null,9286,10338],"outstandingDowntime":[false,false,true,true]}},{"ix":199,"action":{"kind":"Deliver","chain":"provider","numPackets":2},"partialState":{"h":23,"t":138,"tokens":[31918,9825,18637,1851],"delegation":[30918,8825,17637,851],"delegatorTokens":9999999876747,"jailed":[1000000000000047,null,null,null],"status":["unbonding","bonded","bonded","unbonding"]}}],"events":["send_vsc_without_downtime_ack","insufficient_shares","insufficient_shares","send_vsc_without_downtime_ack","send_vsc_without_downtime_ack","insufficient_shares","consumer_update_val","consumer_update_val","send_downtime_slash_request","downtime_slash_request_outstanding","send_vsc_without_downtime_ack","insufficient_shares","downtime_slash_request_outstanding","insufficient_shares","send_downtime_slash_request","send_vsc_without_downtime_ack","downtime_slash_request_outstanding","consumer_update_val","downtime_slash_request_outstanding","send_double_sign_slash_request","downtime_slash_request_outstanding","send_double_sign_slash_request","send_double_sign_slash_request","send_downtime_slash_request","consumer_update_val","insufficient_shares","receive_double_sign_slash_request","receive_double_sign_slash_request","receive_double_sign_slash_request","receive_downtime_slash_request","jail","receive_slash_request_unbonded","receive_slash_request_unbonded","send_vsc_with_downtime_ack","more_than_one_third_val_power_change","send_vsc_without_downtime_ack","consumer_send_maturation","consumer_send_maturation","consumer_update_val","consumer_update_val","receive_downtime_slash_ack","send_vsc_without_downtime_ack","send_vsc_without_downtime_ack","send_vsc_without_downtime_ack","consumer_del_val","consumer_update_val","consumer_add_val","more_than_one_third_val_power_change","send_vsc_without_downtime_ack","more_than_one_third_val_power_change","rebond_unval","send_vsc_without_downtime_ack","insufficient_shares","send_vsc_without_downtime_ack","consumer_update_val","consumer_del_val","consumer_add_val","consumer_send_maturation","rebond_unval","send_vsc_without_downtime_ack","consumer_send_maturation","some_undels_expired_but_not_completed","send_vsc_not_because_change","send_vsc_without_downtime_ack","insufficient_shares","some_undels_expired_but_not_completed","send_vsc_without_downtime_ack","some_undels_expired_but_not_completed","some_undels_expired_but_not_completed"]},{"meta":{"commit":"7ffd0c04e4205cbc9caf212abfe6c59ee43153bf"},"constants":{"P":"provider","C":"consumer","UNBONDING_SECONDS_P":70,"UNBONDING_SECONDS_C":50,"TRUSTING_SECONDS":49,"NUM_VALIDATORS":4,"MAX_VALIDATORS":2,"SLASH_DOUBLESIGN":0,"SLASH_DOWNTIME":0,"JAIL_SECONDS":999999999999999,"BLOCK_SECONDS":6,"INITIAL_DELEGATOR_TOKENS":10000000000000,"DELEGATE_AMT_MIN":1000,"DELEGATE_AMT_MAX":5000,"UNDELEGATE_AMT_MIN":1000,"UNDELEGATE_AMT_MAX":5000,"ISDOWNTIME_PROBABILITY":0.5,"MAX_NUM_PACKETS_FOR_DELIVER":6},"actions":[{"ix":0,"action":{"kind":"Delegate","val":0,"amt":3820},"partialState":{"h":1,"t":6,"tokens":[8820,4000,3000,2000],"delegation":[7820,3000,2000,1000],"delegatorTokens":9999999996180}},{"ix":1,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":2,"t":12,"tokens":[8820,4000,3000,2000],"delegation":[7820,3000,2000,1000],"delegatorTokens":9999999996180,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":2,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":3,"action":{"kind":"ConsumerSlash","val":3,"infractionHeight":0,"isDowntime":true},"partialState":{"h":1,"t":6,"outstandingDowntime":[false,false,false,true]}},{"ix":4,"action":{"kind":"Delegate","val":1,"amt":2802},"partialState":{"h":2,"t":12,"tokens":[8820,6802,3000,2000],"delegation":[7820,5802,2000,1000],"delegatorTokens":9999999993378}},{"ix":5,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":2,"t":12,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,false,false,true]}},{"ix":6,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":3,"t":18,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,false,false,true]}},{"ix":7,"action":{"kind":"Delegate","val":1,"amt":3720},"partialState":{"h":2,"t":12,"tokens":[8820,10522,3000,2000],"delegation":[7820,9522,2000,1000],"delegatorTokens":9999999989658}},{"ix":8,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":9,"action":{"kind":"Deliver","chain":"consumer","numPackets":5},"partialState":{"h":3,"t":18,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,false,false,true]}},{"ix":10,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":11,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":3,"t":18,"tokens":[8820,10522,3000,2000],"delegation":[7820,9522,2000,1000],"delegatorTokens":9999999989658,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":12,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":4,"t":24,"tokens":[8820,10522,3000,2000],"delegation":[7820,9522,2000,1000],"delegatorTokens":9999999989658,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":13,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":14,"action":{"kind":"Deliver","chain":"provider","numPackets":3},"partialState":{"h":4,"t":24,"tokens":[8820,10522,3000,2000],"delegation":[7820,9522,2000,1000],"delegatorTokens":9999999989658,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":15,"action":{"kind":"ConsumerSlash","val":3,"infractionHeight":0,"isDowntime":false},"partialState":{"h":3,"t":18,"outstandingDowntime":[false,false,false,true]}},{"ix":16,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":4,"t":24,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,false,false,true]}},{"ix":17,"action":{"kind":"Delegate","val":3,"amt":2894},"partialState":{"h":4,"t":24,"tokens":[8820,10522,3000,4894],"delegation":[7820,9522,2000,3894],"delegatorTokens":9999999986764}},{"ix":18,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":5,"t":30,"tokens":[8820,10522,3000,4894],"delegation":[7820,9522,2000,3894],"delegatorTokens":9999999986764,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":19,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":5,"t":30,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,false,false,true]}},{"ix":20,"action":{"kind":"Delegate","val":3,"amt":4685},"partialState":{"h":5,"t":30,"tokens":[8820,10522,3000,9579],"delegation":[7820,9522,2000,8579],"delegatorTokens":9999999982079}},{"ix":21,"action":{"kind":"Deliver","chain":"consumer","numPackets":3},"partialState":{"h":5,"t":30,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,false,false,true]}},{"ix":22,"action":{"kind":"ConsumerSlash","val":3,"infractionHeight":2,"isDowntime":true},"partialState":{"h":5,"t":30,"outstandingDowntime":[false,false,false,true]}},{"ix":23,"action":{"kind":"ConsumerSlash","val":3,"infractionHeight":1,"isDowntime":true},"partialState":{"h":5,"t":30,"outstandingDowntime":[false,false,false,true]}},{"ix":24,"action":{"kind":"Deliver","chain":"provider","numPackets":2},"partialState":{"h":5,"t":30,"tokens":[8820,10522,3000,9579],"delegation":[7820,9522,2000,8579],"delegatorTokens":9999999982079,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":25,"action":{"kind":"Undelegate","val":1,"amt":1225},"partialState":{"h":5,"t":30,"tokens":[8820,9297,3000,9579],"delegation":[7820,8297,2000,8579],"delegatorTokens":9999999982079}},{"ix":26,"action":{"kind":"Delegate","val":0,"amt":1195},"partialState":{"h":5,"t":30,"tokens":[10015,9297,3000,9579],"delegation":[9015,8297,2000,8579],"delegatorTokens":9999999980884}},{"ix":27,"action":{"kind":"Undelegate","val":0,"amt":3172},"partialState":{"h":5,"t":30,"tokens":[6843,9297,3000,9579],"delegation":[5843,8297,2000,8579],"delegatorTokens":9999999980884}},{"ix":28,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":6,"t":36,"consumerPower":[8820,10522,null,null],"outstandingDowntime":[false,false,false,true]}},{"ix":29,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":7,"t":42,"consumerPower":[8820,10522,null,null],"outstandingDowntime":[false,false,false,true]}},{"ix":30,"action":{"kind":"Deliver","chain":"consumer","numPackets":4},"partialState":{"h":7,"t":42,"consumerPower":[8820,10522,null,null],"outstandingDowntime":[false,false,false,true]}},{"ix":31,"action":{"kind":"Undelegate","val":2,"amt":1509},"partialState":{"h":5,"t":30,"tokens":[6843,9297,1491,9579],"delegation":[5843,8297,491,8579],"delegatorTokens":9999999980884}},{"ix":32,"action":{"kind":"Deliver","chain":"consumer","numPackets":5},"partialState":{"h":7,"t":42,"consumerPower":[8820,10522,null,null],"outstandingDowntime":[false,false,false,true]}},{"ix":33,"action":{"kind":"Deliver","chain":"consumer","numPackets":4},"partialState":{"h":7,"t":42,"consumerPower":[8820,10522,null,null],"outstandingDowntime":[false,false,false,true]}},{"ix":34,"action":{"kind":"Delegate","val":2,"amt":1141},"partialState":{"h":5,"t":30,"tokens":[6843,9297,2632,9579],"delegation":[5843,8297,1632,8579],"delegatorTokens":9999999979743}},{"ix":35,"action":{"kind":"Delegate","val":1,"amt":4942},"partialState":{"h":5,"t":30,"tokens":[6843,14239,2632,9579],"delegation":[5843,13239,1632,8579],"delegatorTokens":9999999974801}},{"ix":36,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":6,"t":36,"tokens":[6843,14239,2632,9579],"delegation":[5843,13239,1632,8579],"delegatorTokens":9999999974801,"jailed":[null,null,null,null],"status":["unbonding","bonded","unbonded","bonded"]}},{"ix":37,"action":{"kind":"Deliver","chain":"consumer","numPackets":5},"partialState":{"h":7,"t":42,"consumerPower":[8820,10522,null,null],"outstandingDowntime":[false,false,false,true]}},{"ix":38,"action":{"kind":"Deliver","chain":"consumer","numPackets":1},"partialState":{"h":7,"t":42,"consumerPower":[8820,10522,null,null],"outstandingDowntime":[false,false,false,true]}},{"ix":39,"action":{"kind":"ConsumerSlash","val":2,"infractionHeight":0,"isDowntime":false},"partialState":{"h":7,"t":42,"outstandingDowntime":[false,false,false,true]}},{"ix":40,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":41,"action":{"kind":"Delegate","val":2,"amt":4205},"partialState":{"h":6,"t":36,"tokens":[6843,14239,6837,9579],"delegation":[5843,13239,5837,8579],"delegatorTokens":9999999970596}},{"ix":42,"action":{"kind":"Delegate","val":0,"amt":1152},"partialState":{"h":6,"t":36,"tokens":[7995,14239,6837,9579],"delegation":[6995,13239,5837,8579],"delegatorTokens":9999999969444}},{"ix":43,"action":{"kind":"Undelegate","val":2,"amt":3235},"partialState":{"h":6,"t":36,"tokens":[7995,14239,3602,9579],"delegation":[6995,13239,2602,8579],"delegatorTokens":9999999969444}},{"ix":44,"action":{"kind":"ConsumerSlash","val":2,"infractionHeight":2,"isDowntime":true},"partialState":{"h":7,"t":42,"outstandingDowntime":[false,false,true,true]}},{"ix":45,"action":{"kind":"Deliver","chain":"consumer","numPackets":4},"partialState":{"h":7,"t":42,"consumerPower":[8820,10522,null,null],"outstandingDowntime":[false,false,true,true]}},{"ix":46,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":8,"t":48,"consumerPower":[8820,10522,null,null],"outstandingDowntime":[false,false,true,true]}},{"ix":47,"action":{"kind":"Undelegate","val":1,"amt":3826},"partialState":{"h":6,"t":36,"tokens":[7995,10413,3602,9579],"delegation":[6995,9413,2602,8579],"delegatorTokens":9999999969444}},{"ix":48,"action":{"kind":"ConsumerSlash","val":3,"infractionHeight":4,"isDowntime":true},"partialState":{"h":8,"t":48,"outstandingDowntime":[false,false,true,true]}},{"ix":49,"action":{"kind":"Deliver","chain":"consumer","numPackets":2},"partialState":{"h":8,"t":48,"consumerPower":[8820,10522,null,null],"outstandingDowntime":[false,false,true,true]}},{"ix":50,"action":{"kind":"Undelegate","val":1,"amt":4999},"partialState":{"h":6,"t":36,"tokens":[7995,5414,3602,9579],"delegation":[6995,4414,2602,8579],"delegatorTokens":9999999969444}},{"ix":51,"action":{"kind":"Undelegate","val":0,"amt":3407},"partialState":{"h":6,"t":36,"tokens":[4588,5414,3602,9579],"delegation":[3588,4414,2602,8579],"delegatorTokens":9999999969444}},{"ix":52,"action":{"kind":"Deliver","chain":"provider","numPackets":2},"partialState":{"h":6,"t":36,"tokens":[4588,5414,3602,9579],"delegation":[3588,4414,2602,8579],"delegatorTokens":9999999969444,"jailed":[null,null,null,null],"status":["unbonding","bonded","unbonded","bonded"]}},{"ix":53,"action":{"kind":"Undelegate","val":1,"amt":4225},"partialState":{"h":6,"t":36,"tokens":[4588,1189,3602,9579],"delegation":[3588,189,2602,8579],"delegatorTokens":9999999969444}},{"ix":54,"action":{"kind":"Deliver","chain":"consumer","numPackets":3},"partialState":{"h":8,"t":48,"consumerPower":[8820,10522,null,null],"outstandingDowntime":[false,false,true,true]}},{"ix":55,"action":{"kind":"ConsumerSlash","val":2,"infractionHeight":4,"isDowntime":true},"partialState":{"h":8,"t":48,"outstandingDowntime":[false,false,true,true]}},{"ix":56,"action":{"kind":"ConsumerSlash","val":3,"infractionHeight":4,"isDowntime":false},"partialState":{"h":8,"t":48,"outstandingDowntime":[false,false,true,true]}},{"ix":57,"action":{"kind":"ConsumerSlash","val":1,"infractionHeight":3,"isDowntime":true},"partialState":{"h":8,"t":48,"outstandingDowntime":[false,true,true,true]}},{"ix":58,"action":{"kind":"Undelegate","val":0,"amt":4593},"partialState":{"h":6,"t":36,"tokens":[4588,1189,3602,9579],"delegation":[3588,189,2602,8579],"delegatorTokens":9999999969444}},{"ix":59,"action":{"kind":"Deliver","chain":"provider","numPackets":5},"partialState":{"h":6,"t":36,"tokens":[4588,1189,3602,9579],"delegation":[3588,189,2602,8579],"delegatorTokens":9999999969444,"jailed":[null,null,null,null],"status":["unbonding","bonded","unbonded","bonded"]}},{"ix":60,"action":{"kind":"Delegate","val":2,"amt":2517},"partialState":{"h":6,"t":36,"tokens":[4588,1189,6119,9579],"delegation":[3588,189,5119,8579],"delegatorTokens":9999999966927}},{"ix":61,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":9,"t":54,"consumerPower":[8820,10522,null,null],"outstandingDowntime":[false,true,true,true]}},{"ix":62,"action":{"kind":"Undelegate","val":2,"amt":4998},"partialState":{"h":6,"t":36,"tokens":[4588,1189,1121,9579],"delegation":[3588,189,121,8579],"delegatorTokens":9999999966927}},{"ix":63,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":64,"action":{"kind":"Delegate","val":0,"amt":2811},"partialState":{"h":6,"t":36,"tokens":[7399,1189,1121,9579],"delegation":[6399,189,121,8579],"delegatorTokens":9999999964116}},{"ix":65,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":66,"action":{"kind":"Undelegate","val":3,"amt":2744},"partialState":{"h":6,"t":36,"tokens":[7399,1189,1121,6835],"delegation":[6399,189,121,5835],"delegatorTokens":9999999964116}},{"ix":67,"action":{"kind":"Deliver","chain":"consumer","numPackets":1},"partialState":{"h":9,"t":54,"consumerPower":[8820,10522,null,null],"outstandingDowntime":[false,true,true,true]}},{"ix":68,"action":{"kind":"Undelegate","val":2,"amt":2089},"partialState":{"h":6,"t":36,"tokens":[7399,1189,1121,6835],"delegation":[6399,189,121,5835],"delegatorTokens":9999999964116}},{"ix":69,"action":{"kind":"Undelegate","val":3,"amt":1274},"partialState":{"h":6,"t":36,"tokens":[7399,1189,1121,5561],"delegation":[6399,189,121,4561],"delegatorTokens":9999999964116}},{"ix":70,"action":{"kind":"Undelegate","val":0,"amt":1742},"partialState":{"h":6,"t":36,"tokens":[5657,1189,1121,5561],"delegation":[4657,189,121,4561],"delegatorTokens":9999999964116}},{"ix":71,"action":{"kind":"Deliver","chain":"consumer","numPackets":5},"partialState":{"h":9,"t":54,"consumerPower":[8820,10522,null,null],"outstandingDowntime":[false,true,true,true]}},{"ix":72,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":73,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":74,"action":{"kind":"Undelegate","val":3,"amt":3313},"partialState":{"h":6,"t":36,"tokens":[5657,1189,1121,2248],"delegation":[4657,189,121,1248],"delegatorTokens":9999999964116}},{"ix":75,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":10,"t":60,"consumerPower":[8820,10522,null,null],"outstandingDowntime":[false,true,true,true]}},{"ix":76,"action":{"kind":"Deliver","chain":"provider","numPackets":6},"partialState":{"h":6,"t":36,"tokens":[5657,1189,1121,2248],"delegation":[4657,189,121,1248],"delegatorTokens":9999999964116,"jailed":[null,null,null,null],"status":["unbonding","bonded","unbonded","bonded"]}},{"ix":77,"action":{"kind":"Undelegate","val":0,"amt":1322},"partialState":{"h":6,"t":36,"tokens":[4335,1189,1121,2248],"delegation":[3335,189,121,1248],"delegatorTokens":9999999964116}},{"ix":78,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":79,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":7,"t":42,"tokens":[4335,1189,1121,2248],"delegation":[3335,189,121,1248],"delegatorTokens":9999999964116,"jailed":[null,1000000000000035,null,null],"status":["bonded","unbonding","unbonded","bonded"]}},{"ix":80,"action":{"kind":"Deliver","chain":"consumer","numPackets":3},"partialState":{"h":10,"t":60,"consumerPower":[8820,10522,null,null],"outstandingDowntime":[false,true,true,true]}},{"ix":81,"action":{"kind":"Undelegate","val":2,"amt":3940},"partialState":{"h":7,"t":42,"tokens":[4335,1189,1121,2248],"delegation":[3335,189,121,1248],"delegatorTokens":9999999964116}},{"ix":82,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":8,"t":48,"tokens":[4335,1189,1121,2248],"delegation":[3335,189,121,1248],"delegatorTokens":9999999964116,"jailed":[null,1000000000000035,null,null],"status":["bonded","unbonding","unbonded","bonded"]}},{"ix":83,"action":{"kind":"Deliver","chain":"consumer","numPackets":2},"partialState":{"h":10,"t":60,"consumerPower":[8820,10522,null,null],"outstandingDowntime":[false,false,true,true]}},{"ix":84,"action":{"kind":"Undelegate","val":0,"amt":4820},"partialState":{"h":8,"t":48,"tokens":[4335,1189,1121,2248],"delegation":[3335,189,121,1248],"delegatorTokens":9999999964116}},{"ix":85,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":9,"t":54,"tokens":[4335,1189,1121,2248],"delegation":[3335,189,121,1248],"delegatorTokens":9999999964116,"jailed":[null,1000000000000035,null,null],"status":["bonded","unbonding","unbonded","bonded"]}},{"ix":86,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":11,"t":66,"consumerPower":[4335,null,null,2248],"outstandingDowntime":[false,false,true,true]}},{"ix":87,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":12,"t":72,"consumerPower":[4335,null,null,2248],"outstandingDowntime":[false,false,true,true]}},{"ix":88,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":10,"t":60,"tokens":[4335,1189,1121,2248],"delegation":[3335,189,121,1248],"delegatorTokens":9999999964116,"jailed":[null,1000000000000035,null,null],"status":["bonded","unbonding","unbonded","bonded"]}},{"ix":89,"action":{"kind":"Undelegate","val":0,"amt":1002},"partialState":{"h":10,"t":60,"tokens":[3333,1189,1121,2248],"delegation":[2333,189,121,1248],"delegatorTokens":9999999964116}},{"ix":90,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":91,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":11,"t":66,"tokens":[3333,1189,1121,2248],"delegation":[2333,189,121,1248],"delegatorTokens":9999999964116,"jailed":[null,1000000000000035,null,null],"status":["bonded","unbonding","unbonded","bonded"]}},{"ix":92,"action":{"kind":"Deliver","chain":"provider","numPackets":1},"partialState":{"h":11,"t":66,"tokens":[3333,1189,1121,2248],"delegation":[2333,189,121,1248],"delegatorTokens":9999999964116,"jailed":[null,1000000000000035,null,null],"status":["bonded","unbonding","unbonded","bonded"]}},{"ix":93,"action":{"kind":"Undelegate","val":3,"amt":2740},"partialState":{"h":11,"t":66,"tokens":[3333,1189,1121,2248],"delegation":[2333,189,121,1248],"delegatorTokens":9999999964116}},{"ix":94,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":95,"action":{"kind":"Deliver","chain":"provider","numPackets":2},"partialState":{"h":11,"t":66,"tokens":[3333,1189,1121,2248],"delegation":[2333,189,121,1248],"delegatorTokens":9999999964116,"jailed":[null,1000000000000035,null,null],"status":["bonded","unbonding","unbonded","bonded"]}},{"ix":96,"action":{"kind":"Delegate","val":0,"amt":1305},"partialState":{"h":11,"t":66,"tokens":[4638,1189,1121,2248],"delegation":[3638,189,121,1248],"delegatorTokens":9999999962811}},{"ix":97,"action":{"kind":"Delegate","val":1,"amt":2284},"partialState":{"h":11,"t":66,"tokens":[4638,3473,1121,2248],"delegation":[3638,2473,121,1248],"delegatorTokens":9999999960527}},{"ix":98,"action":{"kind":"Deliver","chain":"consumer","numPackets":5},"partialState":{"h":12,"t":72,"consumerPower":[4335,null,null,2248],"outstandingDowntime":[false,false,true,true]}},{"ix":99,"action":{"kind":"Undelegate","val":3,"amt":2266},"partialState":{"h":11,"t":66,"tokens":[4638,3473,1121,2248],"delegation":[3638,2473,121,1248],"delegatorTokens":9999999960527}},{"ix":100,"action":{"kind":"Deliver","chain":"provider","numPackets":1},"partialState":{"h":11,"t":66,"tokens":[4638,3473,1121,2248],"delegation":[3638,2473,121,1248],"delegatorTokens":9999999960527,"jailed":[null,1000000000000035,null,null],"status":["bonded","unbonding","unbonded","bonded"]}},{"ix":101,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":12,"t":72,"tokens":[4638,3473,1121,2248],"delegation":[3638,2473,121,1248],"delegatorTokens":9999999960527,"jailed":[null,1000000000000035,null,null],"status":["bonded","unbonding","unbonded","bonded"]}},{"ix":102,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":13,"t":78,"tokens":[4638,3473,1121,2248],"delegation":[3638,2473,121,1248],"delegatorTokens":9999999960527,"jailed":[null,1000000000000035,null,null],"status":["bonded","unbonding","unbonded","bonded"]}},{"ix":103,"action":{"kind":"Deliver","chain":"consumer","numPackets":1},"partialState":{"h":12,"t":72,"consumerPower":[4335,null,null,2248],"outstandingDowntime":[false,false,true,true]}},{"ix":104,"action":{"kind":"Delegate","val":1,"amt":4935},"partialState":{"h":13,"t":78,"tokens":[4638,8408,1121,2248],"delegation":[3638,7408,121,1248],"delegatorTokens":9999999955592}},{"ix":105,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":13,"t":78,"consumerPower":[3333,null,null,2248],"outstandingDowntime":[false,false,true,true]}},{"ix":106,"action":{"kind":"Delegate","val":0,"amt":4743},"partialState":{"h":13,"t":78,"tokens":[9381,8408,1121,2248],"delegation":[8381,7408,121,1248],"delegatorTokens":9999999950849}},{"ix":107,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":14,"t":84,"consumerPower":[3333,null,null,2248],"outstandingDowntime":[false,false,true,true]}},{"ix":108,"action":{"kind":"Undelegate","val":2,"amt":4714},"partialState":{"h":13,"t":78,"tokens":[9381,8408,1121,2248],"delegation":[8381,7408,121,1248],"delegatorTokens":9999999950849}},{"ix":109,"action":{"kind":"Deliver","chain":"provider","numPackets":4},"partialState":{"h":13,"t":78,"tokens":[9381,8408,1121,2248],"delegation":[8381,7408,121,1248],"delegatorTokens":9999999950849,"jailed":[null,1000000000000035,null,null],"status":["bonded","unbonding","unbonded","bonded"]}},{"ix":110,"action":{"kind":"Deliver","chain":"consumer","numPackets":2},"partialState":{"h":14,"t":84,"consumerPower":[3333,null,null,2248],"outstandingDowntime":[false,false,true,true]}},{"ix":111,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":112,"action":{"kind":"Undelegate","val":2,"amt":2295},"partialState":{"h":13,"t":78,"tokens":[9381,8408,1121,2248],"delegation":[8381,7408,121,1248],"delegatorTokens":9999999950849}},{"ix":113,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":114,"action":{"kind":"Undelegate","val":2,"amt":1808},"partialState":{"h":13,"t":78,"tokens":[9381,8408,1121,2248],"delegation":[8381,7408,121,1248],"delegatorTokens":9999999950849}},{"ix":115,"action":{"kind":"Undelegate","val":1,"amt":4870},"partialState":{"h":13,"t":78,"tokens":[9381,3538,1121,2248],"delegation":[8381,2538,121,1248],"delegatorTokens":9999999950849}},{"ix":116,"action":{"kind":"Deliver","chain":"consumer","numPackets":2},"partialState":{"h":14,"t":84,"consumerPower":[3333,null,null,2248],"outstandingDowntime":[false,false,true,true]}},{"ix":117,"action":{"kind":"Deliver","chain":"provider","numPackets":4},"partialState":{"h":13,"t":78,"tokens":[9381,3538,1121,2248],"delegation":[8381,2538,121,1248],"delegatorTokens":9999999950849,"jailed":[null,1000000000000035,null,null],"status":["bonded","unbonding","unbonded","bonded"]}},{"ix":118,"action":{"kind":"Delegate","val":3,"amt":2124},"partialState":{"h":13,"t":78,"tokens":[9381,3538,1121,4372],"delegation":[8381,2538,121,3372],"delegatorTokens":9999999948725}},{"ix":119,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":15,"t":90,"consumerPower":[4638,null,null,2248],"outstandingDowntime":[false,false,true,true]}},{"ix":120,"action":{"kind":"Undelegate","val":3,"amt":4003},"partialState":{"h":13,"t":78,"tokens":[9381,3538,1121,4372],"delegation":[8381,2538,121,3372],"delegatorTokens":9999999948725}},{"ix":121,"action":{"kind":"Delegate","val":0,"amt":2624},"partialState":{"h":13,"t":78,"tokens":[12005,3538,1121,4372],"delegation":[11005,2538,121,3372],"delegatorTokens":9999999946101}},{"ix":122,"action":{"kind":"Undelegate","val":3,"amt":2932},"partialState":{"h":13,"t":78,"tokens":[12005,3538,1121,1440],"delegation":[11005,2538,121,440],"delegatorTokens":9999999946101}},{"ix":123,"action":{"kind":"Delegate","val":1,"amt":3341},"partialState":{"h":13,"t":78,"tokens":[12005,6879,1121,1440],"delegation":[11005,5879,121,440],"delegatorTokens":9999999942760}},{"ix":124,"action":{"kind":"Delegate","val":3,"amt":4150},"partialState":{"h":13,"t":78,"tokens":[12005,6879,1121,5590],"delegation":[11005,5879,121,4590],"delegatorTokens":9999999938610}},{"ix":125,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":16,"t":96,"consumerPower":[4638,null,null,2248],"outstandingDowntime":[false,false,true,true]}},{"ix":126,"action":{"kind":"Undelegate","val":2,"amt":3668},"partialState":{"h":13,"t":78,"tokens":[12005,6879,1121,5590],"delegation":[11005,5879,121,4590],"delegatorTokens":9999999938610}},{"ix":127,"action":{"kind":"Delegate","val":2,"amt":1519},"partialState":{"h":13,"t":78,"tokens":[12005,6879,2640,5590],"delegation":[11005,5879,1640,4590],"delegatorTokens":9999999937091}},{"ix":128,"action":{"kind":"Delegate","val":3,"amt":1165},"partialState":{"h":13,"t":78,"tokens":[12005,6879,2640,6755],"delegation":[11005,5879,1640,5755],"delegatorTokens":9999999935926}},{"ix":129,"action":{"kind":"Deliver","chain":"consumer","numPackets":1},"partialState":{"h":16,"t":96,"consumerPower":[4638,null,null,2248],"outstandingDowntime":[false,false,true,true]}},{"ix":130,"action":{"kind":"Delegate","val":3,"amt":3121},"partialState":{"h":13,"t":78,"tokens":[12005,6879,2640,9876],"delegation":[11005,5879,1640,8876],"delegatorTokens":9999999932805}},{"ix":131,"action":{"kind":"Deliver","chain":"consumer","numPackets":1},"partialState":{"h":16,"t":96,"consumerPower":[4638,null,null,2248],"outstandingDowntime":[false,false,true,true]}},{"ix":132,"action":{"kind":"Undelegate","val":2,"amt":1547},"partialState":{"h":13,"t":78,"tokens":[12005,6879,1093,9876],"delegation":[11005,5879,93,8876],"delegatorTokens":9999999932805}},{"ix":133,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":14,"t":84,"tokens":[12005,6879,1093,9876],"delegation":[11005,5879,93,8876],"delegatorTokens":9999999932805,"jailed":[null,1000000000000035,null,null],"status":["bonded","unbonding","unbonded","bonded"]}},{"ix":134,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":135,"action":{"kind":"Delegate","val":3,"amt":4118},"partialState":{"h":14,"t":84,"tokens":[12005,6879,1093,13994],"delegation":[11005,5879,93,12994],"delegatorTokens":9999999928687}},{"ix":136,"action":{"kind":"Undelegate","val":0,"amt":2514},"partialState":{"h":14,"t":84,"tokens":[9491,6879,1093,13994],"delegation":[8491,5879,93,12994],"delegatorTokens":9999999928687}},{"ix":137,"action":{"kind":"Deliver","chain":"consumer","numPackets":5},"partialState":{"h":16,"t":96,"consumerPower":[4638,null,null,2248],"outstandingDowntime":[false,false,true,true]}},{"ix":138,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":17,"t":102,"consumerPower":[4638,null,null,2248],"outstandingDowntime":[false,false,true,true]}},{"ix":139,"action":{"kind":"Delegate","val":2,"amt":3570},"partialState":{"h":14,"t":84,"tokens":[9491,6879,4663,13994],"delegation":[8491,5879,3663,12994],"delegatorTokens":9999999925117}},{"ix":140,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":18,"t":108,"consumerPower":[4638,null,null,2248],"outstandingDowntime":[false,false,true,true]}},{"ix":141,"action":{"kind":"Delegate","val":3,"amt":3036},"partialState":{"h":14,"t":84,"tokens":[9491,6879,4663,17030],"delegation":[8491,5879,3663,16030],"delegatorTokens":9999999922081}},{"ix":142,"action":{"kind":"Delegate","val":3,"amt":2446},"partialState":{"h":14,"t":84,"tokens":[9491,6879,4663,19476],"delegation":[8491,5879,3663,18476],"delegatorTokens":9999999919635}},{"ix":143,"action":{"kind":"Delegate","val":1,"amt":1214},"partialState":{"h":14,"t":84,"tokens":[9491,8093,4663,19476],"delegation":[8491,7093,3663,18476],"delegatorTokens":9999999918421}},{"ix":144,"action":{"kind":"Deliver","chain":"consumer","numPackets":3},"partialState":{"h":18,"t":108,"consumerPower":[4638,null,null,2248],"outstandingDowntime":[false,false,true,true]}},{"ix":145,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":146,"action":{"kind":"Undelegate","val":2,"amt":4637},"partialState":{"h":14,"t":84,"tokens":[9491,8093,4663,19476],"delegation":[8491,7093,3663,18476],"delegatorTokens":9999999918421}},{"ix":147,"action":{"kind":"Delegate","val":1,"amt":4557},"partialState":{"h":14,"t":84,"tokens":[9491,12650,4663,19476],"delegation":[8491,11650,3663,18476],"delegatorTokens":9999999913864}},{"ix":148,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":149,"action":{"kind":"Undelegate","val":2,"amt":2272},"partialState":{"h":14,"t":84,"tokens":[9491,12650,2391,19476],"delegation":[8491,11650,1391,18476],"delegatorTokens":9999999913864}},{"ix":150,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":15,"t":90,"tokens":[9491,12650,2391,19476],"delegation":[8491,11650,1391,18476],"delegatorTokens":9999999913864,"jailed":[null,1000000000000035,null,null],"status":["bonded","unbonding","unbonded","bonded"]}},{"ix":151,"action":{"kind":"Delegate","val":1,"amt":3669},"partialState":{"h":15,"t":90,"tokens":[9491,16319,2391,19476],"delegation":[8491,15319,1391,18476],"delegatorTokens":9999999910195}},{"ix":152,"action":{"kind":"Delegate","val":2,"amt":2004},"partialState":{"h":15,"t":90,"tokens":[9491,16319,4395,19476],"delegation":[8491,15319,3395,18476],"delegatorTokens":9999999908191}},{"ix":153,"action":{"kind":"Deliver","chain":"consumer","numPackets":2},"partialState":{"h":18,"t":108,"consumerPower":[4638,null,null,2248],"outstandingDowntime":[false,false,true,true]}},{"ix":154,"action":{"kind":"Deliver","chain":"provider","numPackets":4},"partialState":{"h":15,"t":90,"tokens":[9491,16319,4395,19476],"delegation":[8491,15319,3395,18476],"delegatorTokens":9999999908191,"jailed":[null,1000000000000035,null,null],"status":["bonded","unbonding","unbonded","bonded"]}},{"ix":155,"action":{"kind":"Deliver","chain":"consumer","numPackets":2},"partialState":{"h":18,"t":108,"consumerPower":[4638,null,null,2248],"outstandingDowntime":[false,false,true,true]}},{"ix":156,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":16,"t":96,"tokens":[9491,16319,4395,19476],"delegation":[8491,15319,3395,18476],"delegatorTokens":9999999908191,"jailed":[null,1000000000000035,null,null],"status":["bonded","unbonding","unbonded","bonded"]}},{"ix":157,"action":{"kind":"Undelegate","val":2,"amt":2951},"partialState":{"h":16,"t":96,"tokens":[9491,16319,1444,19476],"delegation":[8491,15319,444,18476],"delegatorTokens":9999999908191}},{"ix":158,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":159,"action":{"kind":"Delegate","val":1,"amt":1913},"partialState":{"h":16,"t":96,"tokens":[9491,18232,1444,19476],"delegation":[8491,17232,444,18476],"delegatorTokens":9999999906278}},{"ix":160,"action":{"kind":"Deliver","chain":"consumer","numPackets":2},"partialState":{"h":18,"t":108,"consumerPower":[4638,null,null,2248],"outstandingDowntime":[false,false,true,true]}},{"ix":161,"action":{"kind":"Delegate","val":2,"amt":1517},"partialState":{"h":16,"t":96,"tokens":[9491,18232,2961,19476],"delegation":[8491,17232,1961,18476],"delegatorTokens":9999999904761}},{"ix":162,"action":{"kind":"Deliver","chain":"provider","numPackets":2},"partialState":{"h":16,"t":96,"tokens":[9491,18232,2961,19476],"delegation":[8491,17232,1961,18476],"delegatorTokens":9999999904761,"jailed":[null,1000000000000035,null,null],"status":["bonded","unbonding","unbonded","bonded"]}},{"ix":163,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":164,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":165,"action":{"kind":"Delegate","val":0,"amt":2253},"partialState":{"h":16,"t":96,"tokens":[11744,18232,2961,19476],"delegation":[10744,17232,1961,18476],"delegatorTokens":9999999902508}},{"ix":166,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":167,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":168,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":169,"action":{"kind":"Delegate","val":0,"amt":2943},"partialState":{"h":16,"t":96,"tokens":[14687,18232,2961,19476],"delegation":[13687,17232,1961,18476],"delegatorTokens":9999999899565}},{"ix":170,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":19,"t":114,"consumerPower":[9491,null,null,19476],"outstandingDowntime":[false,false,true,true]}},{"ix":171,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":17,"t":102,"tokens":[14687,18232,2961,19476],"delegation":[13687,17232,1961,18476],"delegatorTokens":9999999899565,"jailed":[null,1000000000000035,null,null],"status":["bonded","unbonding","unbonded","bonded"]}},{"ix":172,"action":{"kind":"Deliver","chain":"consumer","numPackets":3},"partialState":{"h":19,"t":114,"consumerPower":[9491,null,null,19476],"outstandingDowntime":[false,false,true,true]}},{"ix":173,"action":{"kind":"Undelegate","val":2,"amt":3270},"partialState":{"h":17,"t":102,"tokens":[14687,18232,2961,19476],"delegation":[13687,17232,1961,18476],"delegatorTokens":9999999899565}},{"ix":174,"action":{"kind":"Undelegate","val":2,"amt":4917},"partialState":{"h":17,"t":102,"tokens":[14687,18232,2961,19476],"delegation":[13687,17232,1961,18476],"delegatorTokens":9999999899565}},{"ix":175,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":176,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":177,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":18,"t":108,"tokens":[14687,18232,2961,19476],"delegation":[13687,17232,1961,18476],"delegatorTokens":9999999899565,"jailed":[null,1000000000000035,null,null],"status":["bonded","unbonding","unbonded","bonded"]}},{"ix":178,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":20,"t":120,"consumerPower":[9491,null,null,19476],"outstandingDowntime":[false,false,true,true]}},{"ix":179,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":180,"action":{"kind":"Deliver","chain":"provider","numPackets":5},"partialState":{"h":18,"t":108,"tokens":[14687,18232,2961,19476],"delegation":[13687,17232,1961,18476],"delegatorTokens":9999999899565,"jailed":[null,1000000000000035,null,null],"status":["bonded","unbonding","unbonded","bonded"]}},{"ix":181,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":21,"t":126,"consumerPower":[9491,null,null,19476],"outstandingDowntime":[false,false,true,true]}},{"ix":182,"action":{"kind":"Deliver","chain":"consumer","numPackets":5},"partialState":{"h":21,"t":126,"consumerPower":[9491,null,null,19476],"outstandingDowntime":[false,false,true,true]}},{"ix":183,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":19,"t":114,"tokens":[14687,18232,2961,19476],"delegation":[13687,17232,1961,18476],"delegatorTokens":9999999899565,"jailed":[null,1000000000000035,null,null],"status":["bonded","unbonding","unbonded","bonded"]}},{"ix":184,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":22,"t":132,"consumerPower":[14687,null,null,19476],"outstandingDowntime":[false,false,true,true]}},{"ix":185,"action":{"kind":"Delegate","val":0,"amt":4978},"partialState":{"h":19,"t":114,"tokens":[19665,18232,2961,19476],"delegation":[18665,17232,1961,18476],"delegatorTokens":9999999894587}},{"ix":186,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":187,"action":{"kind":"Delegate","val":1,"amt":2286},"partialState":{"h":19,"t":114,"tokens":[19665,20518,2961,19476],"delegation":[18665,19518,1961,18476],"delegatorTokens":9999999892301}},{"ix":188,"action":{"kind":"Undelegate","val":2,"amt":3372},"partialState":{"h":19,"t":114,"tokens":[19665,20518,2961,19476],"delegation":[18665,19518,1961,18476],"delegatorTokens":9999999892301}},{"ix":189,"action":{"kind":"Delegate","val":1,"amt":2005},"partialState":{"h":19,"t":114,"tokens":[19665,22523,2961,19476],"delegation":[18665,21523,1961,18476],"delegatorTokens":9999999890296}},{"ix":190,"action":{"kind":"Deliver","chain":"consumer","numPackets":4},"partialState":{"h":22,"t":132,"consumerPower":[14687,null,null,19476],"outstandingDowntime":[false,false,true,true]}},{"ix":191,"action":{"kind":"Deliver","chain":"consumer","numPackets":2},"partialState":{"h":22,"t":132,"consumerPower":[14687,null,null,19476],"outstandingDowntime":[false,false,true,true]}},{"ix":192,"action":{"kind":"Delegate","val":1,"amt":3435},"partialState":{"h":19,"t":114,"tokens":[19665,25958,2961,19476],"delegation":[18665,24958,1961,18476],"delegatorTokens":9999999886861}},{"ix":193,"action":{"kind":"Delegate","val":2,"amt":1324},"partialState":{"h":19,"t":114,"tokens":[19665,25958,4285,19476],"delegation":[18665,24958,3285,18476],"delegatorTokens":9999999885537}},{"ix":194,"action":{"kind":"Delegate","val":3,"amt":2686},"partialState":{"h":19,"t":114,"tokens":[19665,25958,4285,22162],"delegation":[18665,24958,3285,21162],"delegatorTokens":9999999882851}},{"ix":195,"action":{"kind":"Deliver","chain":"provider","numPackets":2},"partialState":{"h":19,"t":114,"tokens":[19665,25958,4285,22162],"delegation":[18665,24958,3285,21162],"delegatorTokens":9999999882851,"jailed":[null,1000000000000035,null,null],"status":["bonded","unbonding","unbonded","bonded"]}},{"ix":196,"action":{"kind":"Delegate","val":0,"amt":3636},"partialState":{"h":19,"t":114,"tokens":[23301,25958,4285,22162],"delegation":[22301,24958,3285,21162],"delegatorTokens":9999999879215}},{"ix":197,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":198,"action":{"kind":"Undelegate","val":1,"amt":4212},"partialState":{"h":19,"t":114,"tokens":[23301,21746,4285,22162],"delegation":[22301,20746,3285,21162],"delegatorTokens":9999999879215}},{"ix":199,"action":{"kind":"Deliver","chain":"consumer","numPackets":4},"partialState":{"h":22,"t":132,"consumerPower":[14687,null,null,19476],"outstandingDowntime":[false,false,true,true]}}],"events":["send_vsc_without_downtime_ack","send_downtime_slash_request","send_vsc_without_downtime_ack","send_double_sign_slash_request","receive_slash_request_unbonded","downtime_slash_request_outstanding","downtime_slash_request_outstanding","receive_double_sign_slash_request","consumer_update_val","consumer_update_val","more_than_one_third_val_power_change","send_vsc_without_downtime_ack","send_double_sign_slash_request","send_downtime_slash_request","downtime_slash_request_outstanding","downtime_slash_request_outstanding","send_double_sign_slash_request","send_downtime_slash_request","insufficient_shares","insufficient_shares","receive_double_sign_slash_request","receive_double_sign_slash_request","more_than_one_third_val_power_change","rebond_unval","receive_slash_request_unbonded","receive_downtime_slash_request","jail","send_vsc_with_downtime_ack","insufficient_shares","receive_downtime_slash_ack","insufficient_shares","consumer_update_val","consumer_del_val","consumer_add_val","send_vsc_without_downtime_ack","insufficient_shares","insufficient_shares","send_vsc_without_downtime_ack","consumer_update_val","insufficient_shares","insufficient_shares","insufficient_shares","consumer_send_maturation","consumer_send_maturation","consumer_update_val","insufficient_shares","insufficient_shares","send_vsc_without_downtime_ack","insufficient_shares","send_vsc_without_downtime_ack","consumer_update_val","consumer_update_val","send_vsc_without_downtime_ack","insufficient_shares","insufficient_shares","some_undels_expired_but_not_completed","consumer_send_maturation","consumer_send_maturation","some_undels_expired_but_not_completed","consumer_send_maturation","consumer_update_val","insufficient_shares"]},{"meta":{"commit":"7ffd0c04e4205cbc9caf212abfe6c59ee43153bf"},"constants":{"P":"provider","C":"consumer","UNBONDING_SECONDS_P":70,"UNBONDING_SECONDS_C":50,"TRUSTING_SECONDS":49,"NUM_VALIDATORS":4,"MAX_VALIDATORS":2,"SLASH_DOUBLESIGN":0,"SLASH_DOWNTIME":0,"JAIL_SECONDS":999999999999999,"BLOCK_SECONDS":6,"INITIAL_DELEGATOR_TOKENS":10000000000000,"DELEGATE_AMT_MIN":1000,"DELEGATE_AMT_MAX":5000,"UNDELEGATE_AMT_MIN":1000,"UNDELEGATE_AMT_MAX":5000,"ISDOWNTIME_PROBABILITY":0.5,"MAX_NUM_PACKETS_FOR_DELIVER":6},"actions":[{"ix":0,"action":{"kind":"ConsumerSlash","val":2,"infractionHeight":0,"isDowntime":true},"partialState":{"h":1,"t":6,"outstandingDowntime":[false,false,true,false]}},{"ix":1,"action":{"kind":"Undelegate","val":2,"amt":1448},"partialState":{"h":1,"t":6,"tokens":[5000,4000,1552,2000],"delegation":[4000,3000,552,1000],"delegatorTokens":10000000000000}},{"ix":2,"action":{"kind":"ConsumerSlash","val":2,"infractionHeight":0,"isDowntime":true},"partialState":{"h":1,"t":6,"outstandingDowntime":[false,false,true,false]}},{"ix":3,"action":{"kind":"Deliver","chain":"provider","numPackets":3},"partialState":{"h":1,"t":6,"tokens":[5000,4000,1552,2000],"delegation":[4000,3000,552,1000],"delegatorTokens":10000000000000,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":4,"action":{"kind":"Deliver","chain":"provider","numPackets":2},"partialState":{"h":1,"t":6,"tokens":[5000,4000,1552,2000],"delegation":[4000,3000,552,1000],"delegatorTokens":10000000000000,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":5,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":6,"action":{"kind":"Deliver","chain":"provider","numPackets":3},"partialState":{"h":1,"t":6,"tokens":[5000,4000,1552,2000],"delegation":[4000,3000,552,1000],"delegatorTokens":10000000000000,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":7,"action":{"kind":"Undelegate","val":2,"amt":2499},"partialState":{"h":1,"t":6,"tokens":[5000,4000,1552,2000],"delegation":[4000,3000,552,1000],"delegatorTokens":10000000000000}},{"ix":8,"action":{"kind":"Delegate","val":2,"amt":1431},"partialState":{"h":1,"t":6,"tokens":[5000,4000,2983,2000],"delegation":[4000,3000,1983,1000],"delegatorTokens":9999999998569}},{"ix":9,"action":{"kind":"ConsumerSlash","val":2,"infractionHeight":0,"isDowntime":true},"partialState":{"h":1,"t":6,"outstandingDowntime":[false,false,true,false]}},{"ix":10,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":2,"t":12,"tokens":[5000,4000,2983,2000],"delegation":[4000,3000,1983,1000],"delegatorTokens":9999999998569,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":11,"action":{"kind":"ConsumerSlash","val":2,"infractionHeight":0,"isDowntime":true},"partialState":{"h":1,"t":6,"outstandingDowntime":[false,false,true,false]}},{"ix":12,"action":{"kind":"Delegate","val":0,"amt":3315},"partialState":{"h":2,"t":12,"tokens":[8315,4000,2983,2000],"delegation":[7315,3000,1983,1000],"delegatorTokens":9999999995254}},{"ix":13,"action":{"kind":"ConsumerSlash","val":3,"infractionHeight":0,"isDowntime":false},"partialState":{"h":1,"t":6,"outstandingDowntime":[false,false,true,false]}},{"ix":14,"action":{"kind":"Delegate","val":1,"amt":2956},"partialState":{"h":2,"t":12,"tokens":[8315,6956,2983,2000],"delegation":[7315,5956,1983,1000],"delegatorTokens":9999999992298}},{"ix":15,"action":{"kind":"Delegate","val":3,"amt":2770},"partialState":{"h":2,"t":12,"tokens":[8315,6956,2983,4770],"delegation":[7315,5956,1983,3770],"delegatorTokens":9999999989528}},{"ix":16,"action":{"kind":"ConsumerSlash","val":2,"infractionHeight":0,"isDowntime":false},"partialState":{"h":1,"t":6,"outstandingDowntime":[false,false,true,false]}},{"ix":17,"action":{"kind":"Deliver","chain":"provider","numPackets":3},"partialState":{"h":2,"t":12,"tokens":[8315,6956,2983,4770],"delegation":[7315,5956,1983,3770],"delegatorTokens":9999999989528,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":18,"action":{"kind":"Deliver","chain":"provider","numPackets":6},"partialState":{"h":2,"t":12,"tokens":[8315,6956,2983,4770],"delegation":[7315,5956,1983,3770],"delegatorTokens":9999999989528,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":19,"action":{"kind":"Delegate","val":3,"amt":2402},"partialState":{"h":2,"t":12,"tokens":[8315,6956,2983,7172],"delegation":[7315,5956,1983,6172],"delegatorTokens":9999999987126}},{"ix":20,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":21,"action":{"kind":"Deliver","chain":"provider","numPackets":1},"partialState":{"h":2,"t":12,"tokens":[8315,6956,2983,7172],"delegation":[7315,5956,1983,6172],"delegatorTokens":9999999987126,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":22,"action":{"kind":"Deliver","chain":"consumer","numPackets":4},"partialState":{"h":1,"t":6,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,false,true,false]}},{"ix":23,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":24,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":2,"t":12,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,false,true,false]}},{"ix":25,"action":{"kind":"Undelegate","val":2,"amt":2873},"partialState":{"h":2,"t":12,"tokens":[8315,6956,2983,7172],"delegation":[7315,5956,1983,6172],"delegatorTokens":9999999987126}},{"ix":26,"action":{"kind":"Undelegate","val":3,"amt":4465},"partialState":{"h":2,"t":12,"tokens":[8315,6956,2983,2707],"delegation":[7315,5956,1983,1707],"delegatorTokens":9999999987126}},{"ix":27,"action":{"kind":"Delegate","val":2,"amt":4124},"partialState":{"h":2,"t":12,"tokens":[8315,6956,7107,2707],"delegation":[7315,5956,6107,1707],"delegatorTokens":9999999983002}},{"ix":28,"action":{"kind":"Delegate","val":1,"amt":3549},"partialState":{"h":2,"t":12,"tokens":[8315,10505,7107,2707],"delegation":[7315,9505,6107,1707],"delegatorTokens":9999999979453}},{"ix":29,"action":{"kind":"Delegate","val":3,"amt":1965},"partialState":{"h":2,"t":12,"tokens":[8315,10505,7107,4672],"delegation":[7315,9505,6107,3672],"delegatorTokens":9999999977488}},{"ix":30,"action":{"kind":"Delegate","val":2,"amt":3692},"partialState":{"h":2,"t":12,"tokens":[8315,10505,10799,4672],"delegation":[7315,9505,9799,3672],"delegatorTokens":9999999973796}},{"ix":31,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":32,"action":{"kind":"Delegate","val":3,"amt":1854},"partialState":{"h":2,"t":12,"tokens":[8315,10505,10799,6526],"delegation":[7315,9505,9799,5526],"delegatorTokens":9999999971942}},{"ix":33,"action":{"kind":"Undelegate","val":2,"amt":4237},"partialState":{"h":2,"t":12,"tokens":[8315,10505,6562,6526],"delegation":[7315,9505,5562,5526],"delegatorTokens":9999999971942}},{"ix":34,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":35,"action":{"kind":"Delegate","val":0,"amt":4275},"partialState":{"h":2,"t":12,"tokens":[12590,10505,6562,6526],"delegation":[11590,9505,5562,5526],"delegatorTokens":9999999967667}},{"ix":36,"action":{"kind":"Delegate","val":2,"amt":1052},"partialState":{"h":2,"t":12,"tokens":[12590,10505,7614,6526],"delegation":[11590,9505,6614,5526],"delegatorTokens":9999999966615}},{"ix":37,"action":{"kind":"Undelegate","val":3,"amt":4590},"partialState":{"h":2,"t":12,"tokens":[12590,10505,7614,1936],"delegation":[11590,9505,6614,936],"delegatorTokens":9999999966615}},{"ix":38,"action":{"kind":"Delegate","val":0,"amt":3663},"partialState":{"h":2,"t":12,"tokens":[16253,10505,7614,1936],"delegation":[15253,9505,6614,936],"delegatorTokens":9999999962952}},{"ix":39,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":40,"action":{"kind":"Delegate","val":0,"amt":2955},"partialState":{"h":2,"t":12,"tokens":[19208,10505,7614,1936],"delegation":[18208,9505,6614,936],"delegatorTokens":9999999959997}},{"ix":41,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":3,"t":18,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,false,true,false]}},{"ix":42,"action":{"kind":"Undelegate","val":1,"amt":1331},"partialState":{"h":2,"t":12,"tokens":[19208,9174,7614,1936],"delegation":[18208,8174,6614,936],"delegatorTokens":9999999959997}},{"ix":43,"action":{"kind":"ConsumerSlash","val":3,"infractionHeight":0,"isDowntime":true},"partialState":{"h":3,"t":18,"outstandingDowntime":[false,false,true,true]}},{"ix":44,"action":{"kind":"ConsumerSlash","val":0,"infractionHeight":0,"isDowntime":true},"partialState":{"h":3,"t":18,"outstandingDowntime":[true,false,true,true]}},{"ix":45,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":46,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":3,"t":18,"tokens":[19208,9174,7614,1936],"delegation":[18208,8174,6614,936],"delegatorTokens":9999999959997,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":47,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":48,"action":{"kind":"Deliver","chain":"consumer","numPackets":2},"partialState":{"h":3,"t":18,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[true,false,true,true]}},{"ix":49,"action":{"kind":"Undelegate","val":2,"amt":4728},"partialState":{"h":3,"t":18,"tokens":[19208,9174,2886,1936],"delegation":[18208,8174,1886,936],"delegatorTokens":9999999959997}},{"ix":50,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":51,"action":{"kind":"Deliver","chain":"provider","numPackets":5},"partialState":{"h":3,"t":18,"tokens":[19208,9174,2886,1936],"delegation":[18208,8174,1886,936],"delegatorTokens":9999999959997,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":52,"action":{"kind":"Deliver","chain":"provider","numPackets":4},"partialState":{"h":3,"t":18,"tokens":[19208,9174,2886,1936],"delegation":[18208,8174,1886,936],"delegatorTokens":9999999959997,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":53,"action":{"kind":"Deliver","chain":"consumer","numPackets":6},"partialState":{"h":3,"t":18,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[true,false,true,true]}},{"ix":54,"action":{"kind":"Deliver","chain":"consumer","numPackets":6},"partialState":{"h":3,"t":18,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[true,false,true,true]}},{"ix":55,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":56,"action":{"kind":"Undelegate","val":0,"amt":2647},"partialState":{"h":3,"t":18,"tokens":[16561,9174,2886,1936],"delegation":[15561,8174,1886,936],"delegatorTokens":9999999959997}},{"ix":57,"action":{"kind":"Undelegate","val":3,"amt":2112},"partialState":{"h":3,"t":18,"tokens":[16561,9174,2886,1936],"delegation":[15561,8174,1886,936],"delegatorTokens":9999999959997}},{"ix":58,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":59,"action":{"kind":"Deliver","chain":"provider","numPackets":5},"partialState":{"h":3,"t":18,"tokens":[16561,9174,2886,1936],"delegation":[15561,8174,1886,936],"delegatorTokens":9999999959997,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":60,"action":{"kind":"Undelegate","val":2,"amt":2883},"partialState":{"h":3,"t":18,"tokens":[16561,9174,2886,1936],"delegation":[15561,8174,1886,936],"delegatorTokens":9999999959997}},{"ix":61,"action":{"kind":"Delegate","val":0,"amt":2767},"partialState":{"h":3,"t":18,"tokens":[19328,9174,2886,1936],"delegation":[18328,8174,1886,936],"delegatorTokens":9999999957230}},{"ix":62,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":4,"t":24,"tokens":[19328,9174,2886,1936],"delegation":[18328,8174,1886,936],"delegatorTokens":9999999957230,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":63,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":64,"action":{"kind":"Delegate","val":2,"amt":1679},"partialState":{"h":4,"t":24,"tokens":[19328,9174,4565,1936],"delegation":[18328,8174,3565,936],"delegatorTokens":9999999955551}},{"ix":65,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":66,"action":{"kind":"Undelegate","val":2,"amt":4217},"partialState":{"h":4,"t":24,"tokens":[19328,9174,4565,1936],"delegation":[18328,8174,3565,936],"delegatorTokens":9999999955551}},{"ix":67,"action":{"kind":"Deliver","chain":"consumer","numPackets":6},"partialState":{"h":3,"t":18,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[true,false,true,true]}},{"ix":68,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":69,"action":{"kind":"Delegate","val":3,"amt":2694},"partialState":{"h":4,"t":24,"tokens":[19328,9174,4565,4630],"delegation":[18328,8174,3565,3630],"delegatorTokens":9999999952857}},{"ix":70,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":5,"t":30,"tokens":[19328,9174,4565,4630],"delegation":[18328,8174,3565,3630],"delegatorTokens":9999999952857,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":71,"action":{"kind":"Undelegate","val":0,"amt":2266},"partialState":{"h":5,"t":30,"tokens":[17062,9174,4565,4630],"delegation":[16062,8174,3565,3630],"delegatorTokens":9999999952857}},{"ix":72,"action":{"kind":"Deliver","chain":"provider","numPackets":4},"partialState":{"h":5,"t":30,"tokens":[17062,9174,4565,4630],"delegation":[16062,8174,3565,3630],"delegatorTokens":9999999952857,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":73,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":74,"action":{"kind":"Undelegate","val":2,"amt":1657},"partialState":{"h":5,"t":30,"tokens":[17062,9174,2908,4630],"delegation":[16062,8174,1908,3630],"delegatorTokens":9999999952857}},{"ix":75,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":76,"action":{"kind":"Deliver","chain":"consumer","numPackets":5},"partialState":{"h":3,"t":18,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[true,false,true,true]}},{"ix":77,"action":{"kind":"Deliver","chain":"consumer","numPackets":4},"partialState":{"h":3,"t":18,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[true,false,true,true]}},{"ix":78,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":4,"t":24,"consumerPower":[19328,9174,null,null],"outstandingDowntime":[true,false,true,true]}},{"ix":79,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":80,"action":{"kind":"Undelegate","val":1,"amt":2597},"partialState":{"h":5,"t":30,"tokens":[17062,6577,2908,4630],"delegation":[16062,5577,1908,3630],"delegatorTokens":9999999952857}},{"ix":81,"action":{"kind":"Deliver","chain":"provider","numPackets":2},"partialState":{"h":5,"t":30,"tokens":[17062,6577,2908,4630],"delegation":[16062,5577,1908,3630],"delegatorTokens":9999999952857,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":82,"action":{"kind":"Delegate","val":0,"amt":4459},"partialState":{"h":5,"t":30,"tokens":[21521,6577,2908,4630],"delegation":[20521,5577,1908,3630],"delegatorTokens":9999999948398}},{"ix":83,"action":{"kind":"Undelegate","val":0,"amt":2617},"partialState":{"h":5,"t":30,"tokens":[18904,6577,2908,4630],"delegation":[17904,5577,1908,3630],"delegatorTokens":9999999948398}},{"ix":84,"action":{"kind":"Deliver","chain":"provider","numPackets":1},"partialState":{"h":5,"t":30,"tokens":[18904,6577,2908,4630],"delegation":[17904,5577,1908,3630],"delegatorTokens":9999999948398,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":85,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":5,"t":30,"consumerPower":[19328,9174,null,null],"outstandingDowntime":[true,false,true,true]}},{"ix":86,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":87,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":88,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":6,"t":36,"tokens":[18904,6577,2908,4630],"delegation":[17904,5577,1908,3630],"delegatorTokens":9999999948398,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":89,"action":{"kind":"Delegate","val":0,"amt":2905},"partialState":{"h":6,"t":36,"tokens":[21809,6577,2908,4630],"delegation":[20809,5577,1908,3630],"delegatorTokens":9999999945493}},{"ix":90,"action":{"kind":"Delegate","val":0,"amt":1345},"partialState":{"h":6,"t":36,"tokens":[23154,6577,2908,4630],"delegation":[22154,5577,1908,3630],"delegatorTokens":9999999944148}},{"ix":91,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":7,"t":42,"tokens":[23154,6577,2908,4630],"delegation":[22154,5577,1908,3630],"delegatorTokens":9999999944148,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":92,"action":{"kind":"Undelegate","val":2,"amt":1544},"partialState":{"h":7,"t":42,"tokens":[23154,6577,1364,4630],"delegation":[22154,5577,364,3630],"delegatorTokens":9999999944148}},{"ix":93,"action":{"kind":"Deliver","chain":"consumer","numPackets":1},"partialState":{"h":5,"t":30,"consumerPower":[19328,9174,null,null],"outstandingDowntime":[true,false,true,true]}},{"ix":94,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":6,"t":36,"consumerPower":[18904,6577,null,null],"outstandingDowntime":[true,false,true,true]}},{"ix":95,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":7,"t":42,"consumerPower":[18904,6577,null,null],"outstandingDowntime":[true,false,true,true]}},{"ix":96,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":97,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":98,"action":{"kind":"Undelegate","val":2,"amt":2319},"partialState":{"h":7,"t":42,"tokens":[23154,6577,1364,4630],"delegation":[22154,5577,364,3630],"delegatorTokens":9999999944148}},{"ix":99,"action":{"kind":"Undelegate","val":3,"amt":4219},"partialState":{"h":7,"t":42,"tokens":[23154,6577,1364,4630],"delegation":[22154,5577,364,3630],"delegatorTokens":9999999944148}},{"ix":100,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":8,"t":48,"consumerPower":[18904,6577,null,null],"outstandingDowntime":[true,false,true,true]}},{"ix":101,"action":{"kind":"Deliver","chain":"consumer","numPackets":6},"partialState":{"h":8,"t":48,"consumerPower":[18904,6577,null,null],"outstandingDowntime":[true,false,true,true]}},{"ix":102,"action":{"kind":"Delegate","val":1,"amt":3651},"partialState":{"h":7,"t":42,"tokens":[23154,10228,1364,4630],"delegation":[22154,9228,364,3630],"delegatorTokens":9999999940497}},{"ix":103,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":9,"t":54,"consumerPower":[18904,6577,null,null],"outstandingDowntime":[true,false,true,true]}},{"ix":104,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":105,"action":{"kind":"Delegate","val":3,"amt":2486},"partialState":{"h":7,"t":42,"tokens":[23154,10228,1364,7116],"delegation":[22154,9228,364,6116],"delegatorTokens":9999999938011}},{"ix":106,"action":{"kind":"Undelegate","val":2,"amt":3367},"partialState":{"h":7,"t":42,"tokens":[23154,10228,1364,7116],"delegation":[22154,9228,364,6116],"delegatorTokens":9999999938011}},{"ix":107,"action":{"kind":"Deliver","chain":"provider","numPackets":5},"partialState":{"h":7,"t":42,"tokens":[23154,10228,1364,7116],"delegation":[22154,9228,364,6116],"delegatorTokens":9999999938011,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":108,"action":{"kind":"Undelegate","val":0,"amt":3098},"partialState":{"h":7,"t":42,"tokens":[20056,10228,1364,7116],"delegation":[19056,9228,364,6116],"delegatorTokens":9999999938011}},{"ix":109,"action":{"kind":"Delegate","val":3,"amt":2430},"partialState":{"h":7,"t":42,"tokens":[20056,10228,1364,9546],"delegation":[19056,9228,364,8546],"delegatorTokens":9999999935581}},{"ix":110,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":111,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":112,"action":{"kind":"Deliver","chain":"consumer","numPackets":6},"partialState":{"h":9,"t":54,"consumerPower":[18904,6577,null,null],"outstandingDowntime":[true,false,true,true]}},{"ix":113,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":8,"t":48,"tokens":[20056,10228,1364,9546],"delegation":[19056,9228,364,8546],"delegatorTokens":9999999935581,"jailed":[1000000000000041,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":114,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":10,"t":60,"consumerPower":[18904,6577,null,null],"outstandingDowntime":[true,false,true,true]}},{"ix":115,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":9,"t":54,"tokens":[20056,10228,1364,9546],"delegation":[19056,9228,364,8546],"delegatorTokens":9999999935581,"jailed":[1000000000000041,null,null,null],"status":["unbonding","bonded","unbonded","bonded"]}},{"ix":116,"action":{"kind":"Deliver","chain":"provider","numPackets":1},"partialState":{"h":9,"t":54,"tokens":[20056,10228,1364,9546],"delegation":[19056,9228,364,8546],"delegatorTokens":9999999935581,"jailed":[1000000000000041,null,null,null],"status":["unbonding","bonded","unbonded","bonded"]}},{"ix":117,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":118,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":11,"t":66,"consumerPower":[18904,6577,null,null],"outstandingDowntime":[true,false,true,true]}},{"ix":119,"action":{"kind":"Deliver","chain":"provider","numPackets":1},"partialState":{"h":9,"t":54,"tokens":[20056,10228,1364,9546],"delegation":[19056,9228,364,8546],"delegatorTokens":9999999935581,"jailed":[1000000000000041,null,null,null],"status":["unbonding","bonded","unbonded","bonded"]}},{"ix":120,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":121,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":122,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":123,"action":{"kind":"Undelegate","val":3,"amt":1915},"partialState":{"h":9,"t":54,"tokens":[20056,10228,1364,7631],"delegation":[19056,9228,364,6631],"delegatorTokens":9999999935581}},{"ix":124,"action":{"kind":"Deliver","chain":"consumer","numPackets":3},"partialState":{"h":11,"t":66,"consumerPower":[18904,6577,null,null],"outstandingDowntime":[false,false,true,true]}},{"ix":125,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":12,"t":72,"consumerPower":[20056,10228,null,null],"outstandingDowntime":[false,false,true,true]}},{"ix":126,"action":{"kind":"Delegate","val":2,"amt":4867},"partialState":{"h":9,"t":54,"tokens":[20056,10228,6231,7631],"delegation":[19056,9228,5231,6631],"delegatorTokens":9999999930714}},{"ix":127,"action":{"kind":"Undelegate","val":3,"amt":3944},"partialState":{"h":9,"t":54,"tokens":[20056,10228,6231,3687],"delegation":[19056,9228,5231,2687],"delegatorTokens":9999999930714}},{"ix":128,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":129,"action":{"kind":"Deliver","chain":"consumer","numPackets":1},"partialState":{"h":12,"t":72,"consumerPower":[20056,10228,null,null],"outstandingDowntime":[false,false,true,true]}},{"ix":130,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":131,"action":{"kind":"Delegate","val":0,"amt":2279},"partialState":{"h":9,"t":54,"tokens":[22335,10228,6231,3687],"delegation":[21335,9228,5231,2687],"delegatorTokens":9999999928435}},{"ix":132,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":10,"t":60,"tokens":[22335,10228,6231,3687],"delegation":[21335,9228,5231,2687],"delegatorTokens":9999999928435,"jailed":[1000000000000041,null,null,null],"status":["unbonding","bonded","bonded","unbonding"]}},{"ix":133,"action":{"kind":"Undelegate","val":2,"amt":4057},"partialState":{"h":10,"t":60,"tokens":[22335,10228,2174,3687],"delegation":[21335,9228,1174,2687],"delegatorTokens":9999999928435}},{"ix":134,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":13,"t":78,"consumerPower":[20056,10228,null,null],"outstandingDowntime":[false,false,true,true]}},{"ix":135,"action":{"kind":"Undelegate","val":3,"amt":4706},"partialState":{"h":10,"t":60,"tokens":[22335,10228,2174,3687],"delegation":[21335,9228,1174,2687],"delegatorTokens":9999999928435}},{"ix":136,"action":{"kind":"Deliver","chain":"consumer","numPackets":4},"partialState":{"h":13,"t":78,"consumerPower":[20056,10228,null,null],"outstandingDowntime":[false,false,true,true]}},{"ix":137,"action":{"kind":"Delegate","val":0,"amt":1257},"partialState":{"h":10,"t":60,"tokens":[23592,10228,2174,3687],"delegation":[22592,9228,1174,2687],"delegatorTokens":9999999927178}},{"ix":138,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":139,"action":{"kind":"Deliver","chain":"provider","numPackets":3},"partialState":{"h":10,"t":60,"tokens":[23592,10228,2174,3687],"delegation":[22592,9228,1174,2687],"delegatorTokens":9999999927178,"jailed":[1000000000000041,null,null,null],"status":["unbonding","bonded","bonded","unbonding"]}},{"ix":140,"action":{"kind":"Deliver","chain":"consumer","numPackets":4},"partialState":{"h":13,"t":78,"consumerPower":[20056,10228,null,null],"outstandingDowntime":[false,false,true,true]}},{"ix":141,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":14,"t":84,"consumerPower":[null,10228,null,9546],"outstandingDowntime":[false,false,true,true]}},{"ix":142,"action":{"kind":"Undelegate","val":0,"amt":3600},"partialState":{"h":10,"t":60,"tokens":[19992,10228,2174,3687],"delegation":[18992,9228,1174,2687],"delegatorTokens":9999999927178}},{"ix":143,"action":{"kind":"Delegate","val":2,"amt":1580},"partialState":{"h":10,"t":60,"tokens":[19992,10228,3754,3687],"delegation":[18992,9228,2754,2687],"delegatorTokens":9999999925598}},{"ix":144,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":145,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":11,"t":66,"tokens":[19992,10228,3754,3687],"delegation":[18992,9228,2754,2687],"delegatorTokens":9999999925598,"jailed":[1000000000000041,null,null,null],"status":["unbonding","bonded","bonded","unbonding"]}},{"ix":146,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":147,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":148,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":15,"t":90,"consumerPower":[null,10228,null,9546],"outstandingDowntime":[false,false,true,true]}},{"ix":149,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":150,"action":{"kind":"Undelegate","val":2,"amt":4709},"partialState":{"h":11,"t":66,"tokens":[19992,10228,3754,3687],"delegation":[18992,9228,2754,2687],"delegatorTokens":9999999925598}},{"ix":151,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":152,"action":{"kind":"Delegate","val":0,"amt":3995},"partialState":{"h":11,"t":66,"tokens":[23987,10228,3754,3687],"delegation":[22987,9228,2754,2687],"delegatorTokens":9999999921603}},{"ix":153,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":154,"action":{"kind":"Undelegate","val":3,"amt":1919},"partialState":{"h":11,"t":66,"tokens":[23987,10228,3754,1768],"delegation":[22987,9228,2754,768],"delegatorTokens":9999999921603}},{"ix":155,"action":{"kind":"Delegate","val":2,"amt":1334},"partialState":{"h":11,"t":66,"tokens":[23987,10228,5088,1768],"delegation":[22987,9228,4088,768],"delegatorTokens":9999999920269}},{"ix":156,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":157,"action":{"kind":"Undelegate","val":2,"amt":3085},"partialState":{"h":11,"t":66,"tokens":[23987,10228,2003,1768],"delegation":[22987,9228,1003,768],"delegatorTokens":9999999920269}},{"ix":158,"action":{"kind":"Deliver","chain":"provider","numPackets":2},"partialState":{"h":11,"t":66,"tokens":[23987,10228,2003,1768],"delegation":[22987,9228,1003,768],"delegatorTokens":9999999920269,"jailed":[1000000000000041,null,null,null],"status":["unbonding","bonded","bonded","unbonding"]}},{"ix":159,"action":{"kind":"Deliver","chain":"provider","numPackets":2},"partialState":{"h":11,"t":66,"tokens":[23987,10228,2003,1768],"delegation":[22987,9228,1003,768],"delegatorTokens":9999999920269,"jailed":[1000000000000041,null,null,null],"status":["unbonding","bonded","bonded","unbonding"]}},{"ix":160,"action":{"kind":"Delegate","val":0,"amt":4672},"partialState":{"h":11,"t":66,"tokens":[28659,10228,2003,1768],"delegation":[27659,9228,1003,768],"delegatorTokens":9999999915597}},{"ix":161,"action":{"kind":"Delegate","val":2,"amt":4206},"partialState":{"h":11,"t":66,"tokens":[28659,10228,6209,1768],"delegation":[27659,9228,5209,768],"delegatorTokens":9999999911391}},{"ix":162,"action":{"kind":"Delegate","val":1,"amt":1440},"partialState":{"h":11,"t":66,"tokens":[28659,11668,6209,1768],"delegation":[27659,10668,5209,768],"delegatorTokens":9999999909951}},{"ix":163,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":16,"t":96,"consumerPower":[null,10228,null,9546],"outstandingDowntime":[false,false,true,true]}},{"ix":164,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":12,"t":72,"tokens":[28659,11668,6209,1768],"delegation":[27659,10668,5209,768],"delegatorTokens":9999999909951,"jailed":[1000000000000041,null,null,null],"status":["unbonding","bonded","bonded","unbonding"]}},{"ix":165,"action":{"kind":"Deliver","chain":"provider","numPackets":5},"partialState":{"h":12,"t":72,"tokens":[28659,11668,6209,1768],"delegation":[27659,10668,5209,768],"delegatorTokens":9999999909951,"jailed":[1000000000000041,null,null,null],"status":["unbonding","bonded","bonded","unbonding"]}},{"ix":166,"action":{"kind":"Deliver","chain":"consumer","numPackets":4},"partialState":{"h":16,"t":96,"consumerPower":[null,10228,null,9546],"outstandingDowntime":[false,false,true,true]}},{"ix":167,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":13,"t":78,"tokens":[28659,11668,6209,1768],"delegation":[27659,10668,5209,768],"delegatorTokens":9999999909951,"jailed":[1000000000000041,null,null,null],"status":["unbonding","bonded","bonded","unbonding"]}},{"ix":168,"action":{"kind":"Undelegate","val":0,"amt":1277},"partialState":{"h":13,"t":78,"tokens":[27382,11668,6209,1768],"delegation":[26382,10668,5209,768],"delegatorTokens":9999999909951}},{"ix":169,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":17,"t":102,"consumerPower":[null,10228,3754,null],"outstandingDowntime":[false,false,true,true]}},{"ix":170,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":171,"action":{"kind":"Undelegate","val":0,"amt":2100},"partialState":{"h":13,"t":78,"tokens":[25282,11668,6209,1768],"delegation":[24282,10668,5209,768],"delegatorTokens":9999999909951}},{"ix":172,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":18,"t":108,"consumerPower":[null,10228,3754,null],"outstandingDowntime":[false,false,true,true]}},{"ix":173,"action":{"kind":"Deliver","chain":"provider","numPackets":4},"partialState":{"h":13,"t":78,"tokens":[25282,11668,6209,1768],"delegation":[24282,10668,5209,768],"delegatorTokens":9999999909951,"jailed":[1000000000000041,null,null,null],"status":["unbonding","bonded","bonded","unbonding"]}},{"ix":174,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":19,"t":114,"consumerPower":[null,10228,3754,null],"outstandingDowntime":[false,false,true,true]}},{"ix":175,"action":{"kind":"Undelegate","val":3,"amt":1468},"partialState":{"h":13,"t":78,"tokens":[25282,11668,6209,1768],"delegation":[24282,10668,5209,768],"delegatorTokens":9999999909951}},{"ix":176,"action":{"kind":"Undelegate","val":0,"amt":1537},"partialState":{"h":13,"t":78,"tokens":[23745,11668,6209,1768],"delegation":[22745,10668,5209,768],"delegatorTokens":9999999909951}},{"ix":177,"action":{"kind":"Undelegate","val":0,"amt":4139},"partialState":{"h":13,"t":78,"tokens":[19606,11668,6209,1768],"delegation":[18606,10668,5209,768],"delegatorTokens":9999999909951}},{"ix":178,"action":{"kind":"Delegate","val":1,"amt":1559},"partialState":{"h":13,"t":78,"tokens":[19606,13227,6209,1768],"delegation":[18606,12227,5209,768],"delegatorTokens":9999999908392}},{"ix":179,"action":{"kind":"Delegate","val":3,"amt":3467},"partialState":{"h":13,"t":78,"tokens":[19606,13227,6209,5235],"delegation":[18606,12227,5209,4235],"delegatorTokens":9999999904925}},{"ix":180,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":181,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":14,"t":84,"tokens":[19606,13227,6209,5235],"delegation":[18606,12227,5209,4235],"delegatorTokens":9999999906373,"jailed":[1000000000000041,null,null,null],"status":["unbonding","bonded","bonded","unbonding"]}},{"ix":182,"action":{"kind":"Deliver","chain":"consumer","numPackets":4},"partialState":{"h":19,"t":114,"consumerPower":[null,10228,3754,null],"outstandingDowntime":[false,false,true,true]}},{"ix":183,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":184,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":15,"t":90,"tokens":[19606,13227,6209,5235],"delegation":[18606,12227,5209,4235],"delegatorTokens":9999999920996,"jailed":[1000000000000041,null,null,null],"status":["unbonding","bonded","bonded","unbonding"]}},{"ix":185,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":186,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":16,"t":96,"tokens":[19606,13227,6209,5235],"delegation":[18606,12227,5209,4235],"delegatorTokens":9999999928371,"jailed":[1000000000000041,null,null,null],"status":["unbonding","bonded","bonded","unbonding"]}},{"ix":187,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":188,"action":{"kind":"Undelegate","val":2,"amt":3374},"partialState":{"h":16,"t":96,"tokens":[19606,13227,2835,5235],"delegation":[18606,12227,1835,4235],"delegatorTokens":9999999928371}},{"ix":189,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":190,"action":{"kind":"Deliver","chain":"provider","numPackets":3},"partialState":{"h":16,"t":96,"tokens":[19606,13227,2835,5235],"delegation":[18606,12227,1835,4235],"delegatorTokens":9999999928371,"jailed":[1000000000000041,null,null,null],"status":["unbonding","bonded","bonded","unbonding"]}},{"ix":191,"action":{"kind":"Undelegate","val":3,"amt":2127},"partialState":{"h":16,"t":96,"tokens":[19606,13227,2835,3108],"delegation":[18606,12227,1835,2108],"delegatorTokens":9999999928371}},{"ix":192,"action":{"kind":"Deliver","chain":"provider","numPackets":2},"partialState":{"h":16,"t":96,"tokens":[19606,13227,2835,3108],"delegation":[18606,12227,1835,2108],"delegatorTokens":9999999928371,"jailed":[1000000000000041,null,null,null],"status":["unbonding","bonded","bonded","unbonding"]}},{"ix":193,"action":{"kind":"Deliver","chain":"provider","numPackets":3},"partialState":{"h":16,"t":96,"tokens":[19606,13227,2835,3108],"delegation":[18606,12227,1835,2108],"delegatorTokens":9999999928371,"jailed":[1000000000000041,null,null,null],"status":["unbonding","bonded","bonded","unbonding"]}},{"ix":194,"action":{"kind":"Undelegate","val":2,"amt":4912},"partialState":{"h":16,"t":96,"tokens":[19606,13227,2835,3108],"delegation":[18606,12227,1835,2108],"delegatorTokens":9999999928371}},{"ix":195,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":196,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":17,"t":102,"tokens":[19606,13227,2835,3108],"delegation":[18606,12227,1835,2108],"delegatorTokens":9999999928371,"jailed":[1000000000000041,null,null,null],"status":["unbonding","bonded","unbonding","bonded"]}},{"ix":197,"action":{"kind":"Delegate","val":3,"amt":1284},"partialState":{"h":17,"t":102,"tokens":[19606,13227,2835,4392],"delegation":[18606,12227,1835,3392],"delegatorTokens":9999999927087}},{"ix":198,"action":{"kind":"Deliver","chain":"provider","numPackets":2},"partialState":{"h":17,"t":102,"tokens":[19606,13227,2835,4392],"delegation":[18606,12227,1835,3392],"delegatorTokens":9999999927087,"jailed":[1000000000000041,null,null,null],"status":["unbonding","bonded","unbonding","bonded"]}},{"ix":199,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":18,"t":108,"tokens":[19606,13227,2835,4392],"delegation":[18606,12227,1835,3392],"delegatorTokens":9999999936224,"jailed":[1000000000000041,null,null,null],"status":["unbonding","bonded","unbonding","bonded"]}}],"events":["send_downtime_slash_request","downtime_slash_request_outstanding","insufficient_shares","downtime_slash_request_outstanding","send_vsc_not_because_change","send_vsc_without_downtime_ack","downtime_slash_request_outstanding","send_double_sign_slash_request","send_double_sign_slash_request","insufficient_shares","send_downtime_slash_request","send_downtime_slash_request","send_vsc_without_downtime_ack","receive_double_sign_slash_request","receive_double_sign_slash_request","insufficient_shares","insufficient_shares","receive_slash_request_unbonded","send_vsc_without_downtime_ack","insufficient_shares","consumer_update_val","consumer_update_val","send_vsc_without_downtime_ack","send_vsc_without_downtime_ack","consumer_update_val","consumer_update_val","insufficient_shares","insufficient_shares","insufficient_shares","receive_slash_request_unbonded","receive_downtime_slash_request","jail","send_vsc_with_downtime_ack","more_than_one_third_val_power_change","send_vsc_without_downtime_ack","receive_downtime_slash_ack","consumer_update_val","consumer_update_val","more_than_one_third_val_power_change","send_vsc_without_downtime_ack","consumer_send_maturation","consumer_send_maturation","consumer_send_maturation","insufficient_shares","consumer_del_val","consumer_add_val","send_vsc_without_downtime_ack","consumer_send_maturation","insufficient_shares","set_undel_hold_false","set_undel_hold_false","set_undel_hold_false","set_undel_hold_false","set_undel_hold_false","set_undel_hold_false","set_undel_hold_false","send_vsc_without_downtime_ack","set_undel_hold_false","set_undel_hold_false","set_undel_hold_false","set_undel_hold_false","consumer_add_val","consumer_del_val","insufficient_shares","complete_undel_in_endblock","send_vsc_without_downtime_ack","complete_undel_in_endblock","complete_undel_in_endblock","insufficient_shares","rebond_unval","send_vsc_without_downtime_ack","complete_undel_in_endblock","send_vsc_without_downtime_ack"]},{"meta":{"commit":"7ffd0c04e4205cbc9caf212abfe6c59ee43153bf"},"constants":{"P":"provider","C":"consumer","UNBONDING_SECONDS_P":70,"UNBONDING_SECONDS_C":50,"TRUSTING_SECONDS":49,"NUM_VALIDATORS":4,"MAX_VALIDATORS":2,"SLASH_DOUBLESIGN":0,"SLASH_DOWNTIME":0,"JAIL_SECONDS":999999999999999,"BLOCK_SECONDS":6,"INITIAL_DELEGATOR_TOKENS":10000000000000,"DELEGATE_AMT_MIN":1000,"DELEGATE_AMT_MAX":5000,"UNDELEGATE_AMT_MIN":1000,"UNDELEGATE_AMT_MAX":5000,"ISDOWNTIME_PROBABILITY":0.5,"MAX_NUM_PACKETS_FOR_DELIVER":6},"actions":[{"ix":0,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":1,"action":{"kind":"ConsumerSlash","val":3,"infractionHeight":0,"isDowntime":true},"partialState":{"h":1,"t":6,"outstandingDowntime":[false,false,false,true]}},{"ix":2,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":3,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":4,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":5,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":6,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":7,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":2,"t":12,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,false,false,true]}},{"ix":8,"action":{"kind":"Deliver","chain":"consumer","numPackets":4},"partialState":{"h":2,"t":12,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,false,false,true]}},{"ix":9,"action":{"kind":"ConsumerSlash","val":2,"infractionHeight":0,"isDowntime":true},"partialState":{"h":2,"t":12,"outstandingDowntime":[false,false,true,true]}},{"ix":10,"action":{"kind":"ConsumerSlash","val":3,"infractionHeight":1,"isDowntime":true},"partialState":{"h":2,"t":12,"outstandingDowntime":[false,false,true,true]}},{"ix":11,"action":{"kind":"Delegate","val":1,"amt":4188},"partialState":{"h":1,"t":6,"tokens":[5000,8188,3000,2000],"delegation":[4000,7188,2000,1000],"delegatorTokens":9999999995812}},{"ix":12,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":3,"t":18,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,false,true,true]}},{"ix":13,"action":{"kind":"Deliver","chain":"consumer","numPackets":4},"partialState":{"h":3,"t":18,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,false,true,true]}},{"ix":14,"action":{"kind":"Undelegate","val":2,"amt":1925},"partialState":{"h":1,"t":6,"tokens":[5000,8188,1075,2000],"delegation":[4000,7188,75,1000],"delegatorTokens":9999999995812}},{"ix":15,"action":{"kind":"Undelegate","val":2,"amt":1740},"partialState":{"h":1,"t":6,"tokens":[5000,8188,1075,2000],"delegation":[4000,7188,75,1000],"delegatorTokens":9999999995812}},{"ix":16,"action":{"kind":"ConsumerSlash","val":2,"infractionHeight":2,"isDowntime":true},"partialState":{"h":3,"t":18,"outstandingDowntime":[false,false,true,true]}},{"ix":17,"action":{"kind":"Undelegate","val":1,"amt":3758},"partialState":{"h":1,"t":6,"tokens":[5000,4430,1075,2000],"delegation":[4000,3430,75,1000],"delegatorTokens":9999999995812}},{"ix":18,"action":{"kind":"Undelegate","val":2,"amt":3905},"partialState":{"h":1,"t":6,"tokens":[5000,4430,1075,2000],"delegation":[4000,3430,75,1000],"delegatorTokens":9999999995812}},{"ix":19,"action":{"kind":"ConsumerSlash","val":2,"infractionHeight":0,"isDowntime":true},"partialState":{"h":3,"t":18,"outstandingDowntime":[false,false,true,true]}},{"ix":20,"action":{"kind":"Delegate","val":1,"amt":1987},"partialState":{"h":1,"t":6,"tokens":[5000,6417,1075,2000],"delegation":[4000,5417,75,1000],"delegatorTokens":9999999993825}},{"ix":21,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":2,"t":12,"tokens":[5000,6417,1075,2000],"delegation":[4000,5417,75,1000],"delegatorTokens":9999999993825,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":22,"action":{"kind":"ConsumerSlash","val":0,"infractionHeight":2,"isDowntime":true},"partialState":{"h":3,"t":18,"outstandingDowntime":[true,false,true,true]}},{"ix":23,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":4,"t":24,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[true,false,true,true]}},{"ix":24,"action":{"kind":"Deliver","chain":"consumer","numPackets":2},"partialState":{"h":4,"t":24,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[true,false,true,true]}},{"ix":25,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":26,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":27,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":28,"action":{"kind":"Delegate","val":3,"amt":2519},"partialState":{"h":2,"t":12,"tokens":[5000,6417,1075,4519],"delegation":[4000,5417,75,3519],"delegatorTokens":9999999991306}},{"ix":29,"action":{"kind":"Delegate","val":2,"amt":4913},"partialState":{"h":2,"t":12,"tokens":[5000,6417,5988,4519],"delegation":[4000,5417,4988,3519],"delegatorTokens":9999999986393}},{"ix":30,"action":{"kind":"Deliver","chain":"provider","numPackets":2},"partialState":{"h":2,"t":12,"tokens":[5000,6417,5988,4519],"delegation":[4000,5417,4988,3519],"delegatorTokens":9999999986393,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":31,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":5,"t":30,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[true,false,true,true]}},{"ix":32,"action":{"kind":"Delegate","val":0,"amt":2512},"partialState":{"h":2,"t":12,"tokens":[7512,6417,5988,4519],"delegation":[6512,5417,4988,3519],"delegatorTokens":9999999983881}},{"ix":33,"action":{"kind":"Deliver","chain":"consumer","numPackets":1},"partialState":{"h":5,"t":30,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[true,false,true,true]}},{"ix":34,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":3,"t":18,"tokens":[7512,6417,5988,4519],"delegation":[6512,5417,4988,3519],"delegatorTokens":9999999983881,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":35,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":4,"t":24,"tokens":[7512,6417,5988,4519],"delegation":[6512,5417,4988,3519],"delegatorTokens":9999999983881,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":36,"action":{"kind":"Deliver","chain":"consumer","numPackets":6},"partialState":{"h":5,"t":30,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[true,false,true,true]}},{"ix":37,"action":{"kind":"Undelegate","val":3,"amt":1264},"partialState":{"h":4,"t":24,"tokens":[7512,6417,5988,3255],"delegation":[6512,5417,4988,2255],"delegatorTokens":9999999983881}},{"ix":38,"action":{"kind":"Deliver","chain":"provider","numPackets":5},"partialState":{"h":4,"t":24,"tokens":[7512,6417,5988,3255],"delegation":[6512,5417,4988,2255],"delegatorTokens":9999999983881,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":39,"action":{"kind":"Undelegate","val":3,"amt":2746},"partialState":{"h":4,"t":24,"tokens":[7512,6417,5988,3255],"delegation":[6512,5417,4988,2255],"delegatorTokens":9999999983881}},{"ix":40,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":41,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":42,"action":{"kind":"Delegate","val":2,"amt":4344},"partialState":{"h":4,"t":24,"tokens":[7512,6417,10332,3255],"delegation":[6512,5417,9332,2255],"delegatorTokens":9999999979537}},{"ix":43,"action":{"kind":"Deliver","chain":"provider","numPackets":5},"partialState":{"h":4,"t":24,"tokens":[7512,6417,10332,3255],"delegation":[6512,5417,9332,2255],"delegatorTokens":9999999979537,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":44,"action":{"kind":"Delegate","val":2,"amt":3666},"partialState":{"h":4,"t":24,"tokens":[7512,6417,13998,3255],"delegation":[6512,5417,12998,2255],"delegatorTokens":9999999975871}},{"ix":45,"action":{"kind":"Deliver","chain":"provider","numPackets":4},"partialState":{"h":4,"t":24,"tokens":[7512,6417,13998,3255],"delegation":[6512,5417,12998,2255],"delegatorTokens":9999999975871,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":46,"action":{"kind":"Undelegate","val":2,"amt":2465},"partialState":{"h":4,"t":24,"tokens":[7512,6417,11533,3255],"delegation":[6512,5417,10533,2255],"delegatorTokens":9999999975871}},{"ix":47,"action":{"kind":"Undelegate","val":2,"amt":3242},"partialState":{"h":4,"t":24,"tokens":[7512,6417,8291,3255],"delegation":[6512,5417,7291,2255],"delegatorTokens":9999999975871}},{"ix":48,"action":{"kind":"Delegate","val":3,"amt":4401},"partialState":{"h":4,"t":24,"tokens":[7512,6417,8291,7656],"delegation":[6512,5417,7291,6656],"delegatorTokens":9999999971470}},{"ix":49,"action":{"kind":"Deliver","chain":"consumer","numPackets":2},"partialState":{"h":5,"t":30,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[true,false,true,true]}},{"ix":50,"action":{"kind":"Delegate","val":1,"amt":3505},"partialState":{"h":4,"t":24,"tokens":[7512,9922,8291,7656],"delegation":[6512,8922,7291,6656],"delegatorTokens":9999999967965}},{"ix":51,"action":{"kind":"Undelegate","val":0,"amt":3879},"partialState":{"h":4,"t":24,"tokens":[3633,9922,8291,7656],"delegation":[2633,8922,7291,6656],"delegatorTokens":9999999967965}},{"ix":52,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":53,"action":{"kind":"Delegate","val":2,"amt":2716},"partialState":{"h":4,"t":24,"tokens":[3633,9922,11007,7656],"delegation":[2633,8922,10007,6656],"delegatorTokens":9999999965249}},{"ix":54,"action":{"kind":"Deliver","chain":"consumer","numPackets":2},"partialState":{"h":5,"t":30,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[true,false,true,true]}},{"ix":55,"action":{"kind":"Deliver","chain":"consumer","numPackets":4},"partialState":{"h":5,"t":30,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[true,false,true,true]}},{"ix":56,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":6,"t":36,"consumerPower":[7512,6417,null,null],"outstandingDowntime":[true,false,true,true]}},{"ix":57,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":58,"action":{"kind":"Undelegate","val":2,"amt":4529},"partialState":{"h":4,"t":24,"tokens":[3633,9922,6478,7656],"delegation":[2633,8922,5478,6656],"delegatorTokens":9999999965249}},{"ix":59,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":60,"action":{"kind":"Delegate","val":2,"amt":3217},"partialState":{"h":4,"t":24,"tokens":[3633,9922,9695,7656],"delegation":[2633,8922,8695,6656],"delegatorTokens":9999999962032}},{"ix":61,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":62,"action":{"kind":"Delegate","val":1,"amt":1668},"partialState":{"h":4,"t":24,"tokens":[3633,11590,9695,7656],"delegation":[2633,10590,8695,6656],"delegatorTokens":9999999960364}},{"ix":63,"action":{"kind":"Delegate","val":3,"amt":2901},"partialState":{"h":4,"t":24,"tokens":[3633,11590,9695,10557],"delegation":[2633,10590,8695,9557],"delegatorTokens":9999999957463}},{"ix":64,"action":{"kind":"Undelegate","val":2,"amt":4199},"partialState":{"h":4,"t":24,"tokens":[3633,11590,5496,10557],"delegation":[2633,10590,4496,9557],"delegatorTokens":9999999957463}},{"ix":65,"action":{"kind":"Undelegate","val":0,"amt":3672},"partialState":{"h":4,"t":24,"tokens":[3633,11590,5496,10557],"delegation":[2633,10590,4496,9557],"delegatorTokens":9999999957463}},{"ix":66,"action":{"kind":"Deliver","chain":"provider","numPackets":4},"partialState":{"h":4,"t":24,"tokens":[3633,11590,5496,10557],"delegation":[2633,10590,4496,9557],"delegatorTokens":9999999957463,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":67,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":7,"t":42,"consumerPower":[7512,6417,null,null],"outstandingDowntime":[true,false,true,true]}},{"ix":68,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":69,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":5,"t":30,"tokens":[3633,11590,5496,10557],"delegation":[2633,10590,4496,9557],"delegatorTokens":9999999957463,"jailed":[1000000000000023,null,null,null],"status":["unbonding","bonded","unbonded","bonded"]}},{"ix":70,"action":{"kind":"Deliver","chain":"consumer","numPackets":6},"partialState":{"h":7,"t":42,"consumerPower":[7512,6417,null,null],"outstandingDowntime":[true,false,true,true]}},{"ix":71,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":72,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":73,"action":{"kind":"Undelegate","val":3,"amt":2596},"partialState":{"h":5,"t":30,"tokens":[3633,11590,5496,7961],"delegation":[2633,10590,4496,6961],"delegatorTokens":9999999957463}},{"ix":74,"action":{"kind":"Deliver","chain":"consumer","numPackets":6},"partialState":{"h":7,"t":42,"consumerPower":[7512,6417,null,null],"outstandingDowntime":[true,false,true,true]}},{"ix":75,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":8,"t":48,"consumerPower":[7512,6417,null,null],"outstandingDowntime":[true,false,true,true]}},{"ix":76,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":9,"t":54,"consumerPower":[7512,6417,null,null],"outstandingDowntime":[true,false,true,true]}},{"ix":77,"action":{"kind":"Delegate","val":3,"amt":1803},"partialState":{"h":5,"t":30,"tokens":[3633,11590,5496,9764],"delegation":[2633,10590,4496,8764],"delegatorTokens":9999999955660}},{"ix":78,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":10,"t":60,"consumerPower":[7512,6417,null,null],"outstandingDowntime":[true,false,true,true]}},{"ix":79,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":80,"action":{"kind":"Deliver","chain":"consumer","numPackets":3},"partialState":{"h":10,"t":60,"consumerPower":[7512,6417,null,null],"outstandingDowntime":[true,false,true,true]}},{"ix":81,"action":{"kind":"Delegate","val":0,"amt":1007},"partialState":{"h":5,"t":30,"tokens":[4640,11590,5496,9764],"delegation":[3640,10590,4496,8764],"delegatorTokens":9999999954653}},{"ix":82,"action":{"kind":"Deliver","chain":"consumer","numPackets":5},"partialState":{"h":10,"t":60,"consumerPower":[7512,6417,null,null],"outstandingDowntime":[true,false,true,true]}},{"ix":83,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":6,"t":36,"tokens":[4640,11590,5496,9764],"delegation":[3640,10590,4496,8764],"delegatorTokens":9999999954653,"jailed":[1000000000000023,null,null,null],"status":["unbonding","bonded","unbonded","bonded"]}},{"ix":84,"action":{"kind":"Undelegate","val":2,"amt":3112},"partialState":{"h":6,"t":36,"tokens":[4640,11590,2384,9764],"delegation":[3640,10590,1384,8764],"delegatorTokens":9999999954653}},{"ix":85,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":7,"t":42,"tokens":[4640,11590,2384,9764],"delegation":[3640,10590,1384,8764],"delegatorTokens":9999999954653,"jailed":[1000000000000023,null,null,null],"status":["unbonding","bonded","unbonded","bonded"]}},{"ix":86,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":87,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":88,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":8,"t":48,"tokens":[4640,11590,2384,9764],"delegation":[3640,10590,1384,8764],"delegatorTokens":9999999954653,"jailed":[1000000000000023,null,null,null],"status":["unbonding","bonded","unbonded","bonded"]}},{"ix":89,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":11,"t":66,"consumerPower":[7512,6417,null,null],"outstandingDowntime":[true,false,true,true]}},{"ix":90,"action":{"kind":"Deliver","chain":"provider","numPackets":5},"partialState":{"h":8,"t":48,"tokens":[4640,11590,2384,9764],"delegation":[3640,10590,1384,8764],"delegatorTokens":9999999954653,"jailed":[1000000000000023,null,null,null],"status":["unbonding","bonded","unbonded","bonded"]}},{"ix":91,"action":{"kind":"Undelegate","val":2,"amt":2136},"partialState":{"h":8,"t":48,"tokens":[4640,11590,2384,9764],"delegation":[3640,10590,1384,8764],"delegatorTokens":9999999954653}},{"ix":92,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":93,"action":{"kind":"Delegate","val":1,"amt":2355},"partialState":{"h":8,"t":48,"tokens":[4640,13945,2384,9764],"delegation":[3640,12945,1384,8764],"delegatorTokens":9999999952298}},{"ix":94,"action":{"kind":"Deliver","chain":"provider","numPackets":5},"partialState":{"h":8,"t":48,"tokens":[4640,13945,2384,9764],"delegation":[3640,12945,1384,8764],"delegatorTokens":9999999952298,"jailed":[1000000000000023,null,null,null],"status":["unbonding","bonded","unbonded","bonded"]}},{"ix":95,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":9,"t":54,"tokens":[4640,13945,2384,9764],"delegation":[3640,12945,1384,8764],"delegatorTokens":9999999952298,"jailed":[1000000000000023,null,null,null],"status":["unbonding","bonded","unbonded","bonded"]}},{"ix":96,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":12,"t":72,"consumerPower":[7512,6417,null,null],"outstandingDowntime":[true,false,true,true]}},{"ix":97,"action":{"kind":"Delegate","val":0,"amt":1420},"partialState":{"h":9,"t":54,"tokens":[6060,13945,2384,9764],"delegation":[5060,12945,1384,8764],"delegatorTokens":9999999950878}},{"ix":98,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":13,"t":78,"consumerPower":[7512,6417,null,null],"outstandingDowntime":[true,false,true,true]}},{"ix":99,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":100,"action":{"kind":"Undelegate","val":1,"amt":1016},"partialState":{"h":9,"t":54,"tokens":[6060,12929,2384,9764],"delegation":[5060,11929,1384,8764],"delegatorTokens":9999999950878}},{"ix":101,"action":{"kind":"Delegate","val":3,"amt":1422},"partialState":{"h":9,"t":54,"tokens":[6060,12929,2384,11186],"delegation":[5060,11929,1384,10186],"delegatorTokens":9999999949456}},{"ix":102,"action":{"kind":"Deliver","chain":"provider","numPackets":1},"partialState":{"h":9,"t":54,"tokens":[6060,12929,2384,11186],"delegation":[5060,11929,1384,10186],"delegatorTokens":9999999949456,"jailed":[1000000000000023,null,null,null],"status":["unbonding","bonded","unbonded","bonded"]}},{"ix":103,"action":{"kind":"Undelegate","val":2,"amt":2104},"partialState":{"h":9,"t":54,"tokens":[6060,12929,2384,11186],"delegation":[5060,11929,1384,10186],"delegatorTokens":9999999949456}},{"ix":104,"action":{"kind":"Deliver","chain":"consumer","numPackets":6},"partialState":{"h":13,"t":78,"consumerPower":[7512,6417,null,null],"outstandingDowntime":[false,false,true,true]}},{"ix":105,"action":{"kind":"Deliver","chain":"consumer","numPackets":1},"partialState":{"h":13,"t":78,"consumerPower":[7512,6417,null,null],"outstandingDowntime":[false,false,true,true]}},{"ix":106,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":10,"t":60,"tokens":[6060,12929,2384,11186],"delegation":[5060,11929,1384,10186],"delegatorTokens":9999999949456,"jailed":[1000000000000023,null,null,null],"status":["unbonding","bonded","unbonded","bonded"]}},{"ix":107,"action":{"kind":"Undelegate","val":0,"amt":3777},"partialState":{"h":10,"t":60,"tokens":[2283,12929,2384,11186],"delegation":[1283,11929,1384,10186],"delegatorTokens":9999999949456}},{"ix":108,"action":{"kind":"Delegate","val":1,"amt":1277},"partialState":{"h":10,"t":60,"tokens":[2283,14206,2384,11186],"delegation":[1283,13206,1384,10186],"delegatorTokens":9999999948179}},{"ix":109,"action":{"kind":"Deliver","chain":"provider","numPackets":3},"partialState":{"h":10,"t":60,"tokens":[2283,14206,2384,11186],"delegation":[1283,13206,1384,10186],"delegatorTokens":9999999948179,"jailed":[1000000000000023,null,null,null],"status":["unbonding","bonded","unbonded","bonded"]}},{"ix":110,"action":{"kind":"Undelegate","val":2,"amt":1549},"partialState":{"h":10,"t":60,"tokens":[2283,14206,2384,11186],"delegation":[1283,13206,1384,10186],"delegatorTokens":9999999948179}},{"ix":111,"action":{"kind":"Delegate","val":3,"amt":2204},"partialState":{"h":10,"t":60,"tokens":[2283,14206,2384,13390],"delegation":[1283,13206,1384,12390],"delegatorTokens":9999999945975}},{"ix":112,"action":{"kind":"Delegate","val":0,"amt":1092},"partialState":{"h":10,"t":60,"tokens":[3375,14206,2384,13390],"delegation":[2375,13206,1384,12390],"delegatorTokens":9999999944883}},{"ix":113,"action":{"kind":"Undelegate","val":3,"amt":1369},"partialState":{"h":10,"t":60,"tokens":[3375,14206,2384,12021],"delegation":[2375,13206,1384,11021],"delegatorTokens":9999999944883}},{"ix":114,"action":{"kind":"Undelegate","val":1,"amt":2469},"partialState":{"h":10,"t":60,"tokens":[3375,11737,2384,12021],"delegation":[2375,10737,1384,11021],"delegatorTokens":9999999944883}},{"ix":115,"action":{"kind":"Undelegate","val":3,"amt":1774},"partialState":{"h":10,"t":60,"tokens":[3375,11737,2384,10247],"delegation":[2375,10737,1384,9247],"delegatorTokens":9999999944883}},{"ix":116,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":14,"t":84,"consumerPower":[null,11590,null,9764],"outstandingDowntime":[false,false,true,true]}},{"ix":117,"action":{"kind":"Delegate","val":3,"amt":1513},"partialState":{"h":10,"t":60,"tokens":[3375,11737,2384,11760],"delegation":[2375,10737,1384,10760],"delegatorTokens":9999999943370}},{"ix":118,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":15,"t":90,"consumerPower":[null,11590,null,9764],"outstandingDowntime":[false,false,true,true]}},{"ix":119,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":120,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":11,"t":66,"tokens":[3375,11737,2384,11760],"delegation":[2375,10737,1384,10760],"delegatorTokens":9999999943370,"jailed":[1000000000000023,null,null,null],"status":["unbonding","bonded","unbonded","bonded"]}},{"ix":121,"action":{"kind":"Delegate","val":0,"amt":1113},"partialState":{"h":11,"t":66,"tokens":[4488,11737,2384,11760],"delegation":[3488,10737,1384,10760],"delegatorTokens":9999999942257}},{"ix":122,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":123,"action":{"kind":"Delegate","val":2,"amt":4757},"partialState":{"h":11,"t":66,"tokens":[4488,11737,7141,11760],"delegation":[3488,10737,6141,10760],"delegatorTokens":9999999937500}},{"ix":124,"action":{"kind":"Undelegate","val":1,"amt":2995},"partialState":{"h":11,"t":66,"tokens":[4488,8742,7141,11760],"delegation":[3488,7742,6141,10760],"delegatorTokens":9999999937500}},{"ix":125,"action":{"kind":"Undelegate","val":1,"amt":3283},"partialState":{"h":11,"t":66,"tokens":[4488,5459,7141,11760],"delegation":[3488,4459,6141,10760],"delegatorTokens":9999999937500}},{"ix":126,"action":{"kind":"Deliver","chain":"consumer","numPackets":3},"partialState":{"h":15,"t":90,"consumerPower":[null,11590,null,9764],"outstandingDowntime":[false,false,true,true]}},{"ix":127,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":128,"action":{"kind":"Delegate","val":0,"amt":2943},"partialState":{"h":11,"t":66,"tokens":[7431,5459,7141,11760],"delegation":[6431,4459,6141,10760],"delegatorTokens":9999999934557}},{"ix":129,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":130,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":16,"t":96,"consumerPower":[null,12929,null,11186],"outstandingDowntime":[false,false,true,true]}},{"ix":131,"action":{"kind":"Deliver","chain":"consumer","numPackets":4},"partialState":{"h":16,"t":96,"consumerPower":[null,12929,null,11186],"outstandingDowntime":[false,false,true,true]}},{"ix":132,"action":{"kind":"Undelegate","val":2,"amt":4413},"partialState":{"h":11,"t":66,"tokens":[7431,5459,2728,11760],"delegation":[6431,4459,1728,10760],"delegatorTokens":9999999934557}},{"ix":133,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":134,"action":{"kind":"Delegate","val":1,"amt":4318},"partialState":{"h":11,"t":66,"tokens":[7431,9777,2728,11760],"delegation":[6431,8777,1728,10760],"delegatorTokens":9999999930239}},{"ix":135,"action":{"kind":"Delegate","val":0,"amt":3606},"partialState":{"h":11,"t":66,"tokens":[11037,9777,2728,11760],"delegation":[10037,8777,1728,10760],"delegatorTokens":9999999926633}},{"ix":136,"action":{"kind":"Delegate","val":1,"amt":3503},"partialState":{"h":11,"t":66,"tokens":[11037,13280,2728,11760],"delegation":[10037,12280,1728,10760],"delegatorTokens":9999999923130}},{"ix":137,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":138,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":12,"t":72,"tokens":[11037,13280,2728,11760],"delegation":[10037,12280,1728,10760],"delegatorTokens":9999999923130,"jailed":[1000000000000023,null,null,null],"status":["unbonding","bonded","unbonded","bonded"]}},{"ix":139,"action":{"kind":"Deliver","chain":"consumer","numPackets":6},"partialState":{"h":16,"t":96,"consumerPower":[null,12929,null,11186],"outstandingDowntime":[false,false,true,true]}},{"ix":140,"action":{"kind":"Deliver","chain":"provider","numPackets":6},"partialState":{"h":12,"t":72,"tokens":[11037,13280,2728,11760],"delegation":[10037,12280,1728,10760],"delegatorTokens":9999999923130,"jailed":[1000000000000023,null,null,null],"status":["unbonding","bonded","unbonded","bonded"]}},{"ix":141,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":17,"t":102,"consumerPower":[null,11737,null,11760],"outstandingDowntime":[false,false,true,true]}},{"ix":142,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":143,"action":{"kind":"Delegate","val":0,"amt":2112},"partialState":{"h":12,"t":72,"tokens":[13149,13280,2728,11760],"delegation":[12149,12280,1728,10760],"delegatorTokens":9999999921018}},{"ix":144,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":145,"action":{"kind":"Deliver","chain":"provider","numPackets":3},"partialState":{"h":12,"t":72,"tokens":[13149,13280,2728,11760],"delegation":[12149,12280,1728,10760],"delegatorTokens":9999999921018,"jailed":[1000000000000023,null,null,null],"status":["unbonding","bonded","unbonded","bonded"]}},{"ix":146,"action":{"kind":"Undelegate","val":1,"amt":4983},"partialState":{"h":12,"t":72,"tokens":[13149,8297,2728,11760],"delegation":[12149,7297,1728,10760],"delegatorTokens":9999999921018}},{"ix":147,"action":{"kind":"Deliver","chain":"provider","numPackets":3},"partialState":{"h":12,"t":72,"tokens":[13149,8297,2728,11760],"delegation":[12149,7297,1728,10760],"delegatorTokens":9999999921018,"jailed":[1000000000000023,null,null,null],"status":["unbonding","bonded","unbonded","bonded"]}},{"ix":148,"action":{"kind":"Deliver","chain":"consumer","numPackets":6},"partialState":{"h":17,"t":102,"consumerPower":[null,11737,null,11760],"outstandingDowntime":[false,false,true,true]}},{"ix":149,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":150,"action":{"kind":"Undelegate","val":2,"amt":2688},"partialState":{"h":12,"t":72,"tokens":[13149,8297,2728,11760],"delegation":[12149,7297,1728,10760],"delegatorTokens":9999999921018}},{"ix":151,"action":{"kind":"Deliver","chain":"consumer","numPackets":4},"partialState":{"h":17,"t":102,"consumerPower":[null,11737,null,11760],"outstandingDowntime":[false,false,true,true]}},{"ix":152,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":153,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":154,"action":{"kind":"Delegate","val":3,"amt":2976},"partialState":{"h":12,"t":72,"tokens":[13149,8297,2728,14736],"delegation":[12149,7297,1728,13736],"delegatorTokens":9999999918042}},{"ix":155,"action":{"kind":"Undelegate","val":1,"amt":1496},"partialState":{"h":12,"t":72,"tokens":[13149,6801,2728,14736],"delegation":[12149,5801,1728,13736],"delegatorTokens":9999999918042}},{"ix":156,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":157,"action":{"kind":"Delegate","val":0,"amt":1764},"partialState":{"h":12,"t":72,"tokens":[14913,6801,2728,14736],"delegation":[13913,5801,1728,13736],"delegatorTokens":9999999916278}},{"ix":158,"action":{"kind":"Deliver","chain":"consumer","numPackets":2},"partialState":{"h":17,"t":102,"consumerPower":[null,11737,null,11760],"outstandingDowntime":[false,false,true,true]}},{"ix":159,"action":{"kind":"Delegate","val":1,"amt":1812},"partialState":{"h":12,"t":72,"tokens":[14913,8613,2728,14736],"delegation":[13913,7613,1728,13736],"delegatorTokens":9999999914466}},{"ix":160,"action":{"kind":"Undelegate","val":2,"amt":1806},"partialState":{"h":12,"t":72,"tokens":[14913,8613,2728,14736],"delegation":[13913,7613,1728,13736],"delegatorTokens":9999999914466}},{"ix":161,"action":{"kind":"Delegate","val":3,"amt":3075},"partialState":{"h":12,"t":72,"tokens":[14913,8613,2728,17811],"delegation":[13913,7613,1728,16811],"delegatorTokens":9999999911391}},{"ix":162,"action":{"kind":"Delegate","val":3,"amt":4506},"partialState":{"h":12,"t":72,"tokens":[14913,8613,2728,22317],"delegation":[13913,7613,1728,21317],"delegatorTokens":9999999906885}},{"ix":163,"action":{"kind":"Delegate","val":3,"amt":2949},"partialState":{"h":12,"t":72,"tokens":[14913,8613,2728,25266],"delegation":[13913,7613,1728,24266],"delegatorTokens":9999999903936}},{"ix":164,"action":{"kind":"Deliver","chain":"provider","numPackets":2},"partialState":{"h":12,"t":72,"tokens":[14913,8613,2728,25266],"delegation":[13913,7613,1728,24266],"delegatorTokens":9999999903936,"jailed":[1000000000000023,null,null,null],"status":["unbonding","bonded","unbonded","bonded"]}},{"ix":165,"action":{"kind":"Deliver","chain":"consumer","numPackets":3},"partialState":{"h":17,"t":102,"consumerPower":[null,11737,null,11760],"outstandingDowntime":[false,false,true,true]}},{"ix":166,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":167,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":18,"t":108,"consumerPower":[null,11737,null,11760],"outstandingDowntime":[false,false,true,true]}},{"ix":168,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":169,"action":{"kind":"Delegate","val":2,"amt":2271},"partialState":{"h":12,"t":72,"tokens":[14913,8613,4999,25266],"delegation":[13913,7613,3999,24266],"delegatorTokens":9999999901665}},{"ix":170,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":171,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":172,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":173,"action":{"kind":"Delegate","val":1,"amt":3590},"partialState":{"h":12,"t":72,"tokens":[14913,12203,4999,25266],"delegation":[13913,11203,3999,24266],"delegatorTokens":9999999898075}},{"ix":174,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":175,"action":{"kind":"Delegate","val":3,"amt":3520},"partialState":{"h":12,"t":72,"tokens":[14913,12203,4999,28786],"delegation":[13913,11203,3999,27786],"delegatorTokens":9999999894555}},{"ix":176,"action":{"kind":"Delegate","val":1,"amt":3951},"partialState":{"h":12,"t":72,"tokens":[14913,16154,4999,28786],"delegation":[13913,15154,3999,27786],"delegatorTokens":9999999890604}},{"ix":177,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":178,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":179,"action":{"kind":"Deliver","chain":"provider","numPackets":1},"partialState":{"h":12,"t":72,"tokens":[14913,16154,4999,28786],"delegation":[13913,15154,3999,27786],"delegatorTokens":9999999890604,"jailed":[1000000000000023,null,null,null],"status":["unbonding","bonded","unbonded","bonded"]}},{"ix":180,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":19,"t":114,"consumerPower":[null,11737,null,11760],"outstandingDowntime":[false,false,true,true]}},{"ix":181,"action":{"kind":"Deliver","chain":"consumer","numPackets":1},"partialState":{"h":19,"t":114,"consumerPower":[null,11737,null,11760],"outstandingDowntime":[false,false,true,true]}},{"ix":182,"action":{"kind":"Undelegate","val":1,"amt":1116},"partialState":{"h":12,"t":72,"tokens":[14913,15038,4999,28786],"delegation":[13913,14038,3999,27786],"delegatorTokens":9999999890604}},{"ix":183,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":184,"action":{"kind":"Delegate","val":0,"amt":3738},"partialState":{"h":12,"t":72,"tokens":[18651,15038,4999,28786],"delegation":[17651,14038,3999,27786],"delegatorTokens":9999999886866}},{"ix":185,"action":{"kind":"Deliver","chain":"consumer","numPackets":6},"partialState":{"h":19,"t":114,"consumerPower":[null,11737,null,11760],"outstandingDowntime":[false,false,true,true]}},{"ix":186,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":13,"t":78,"tokens":[18651,15038,4999,28786],"delegation":[17651,14038,3999,27786],"delegatorTokens":9999999886866,"jailed":[1000000000000023,null,null,null],"status":["unbonding","bonded","unbonded","bonded"]}},{"ix":187,"action":{"kind":"Deliver","chain":"provider","numPackets":4},"partialState":{"h":13,"t":78,"tokens":[18651,15038,4999,28786],"delegation":[17651,14038,3999,27786],"delegatorTokens":9999999886866,"jailed":[1000000000000023,null,null,null],"status":["unbonding","bonded","unbonded","bonded"]}},{"ix":188,"action":{"kind":"Deliver","chain":"provider","numPackets":2},"partialState":{"h":13,"t":78,"tokens":[18651,15038,4999,28786],"delegation":[17651,14038,3999,27786],"delegatorTokens":9999999886866,"jailed":[1000000000000023,null,null,null],"status":["unbonding","bonded","unbonded","bonded"]}},{"ix":189,"action":{"kind":"Undelegate","val":2,"amt":4357},"partialState":{"h":13,"t":78,"tokens":[18651,15038,4999,28786],"delegation":[17651,14038,3999,27786],"delegatorTokens":9999999886866}},{"ix":190,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":14,"t":84,"tokens":[18651,15038,4999,28786],"delegation":[17651,14038,3999,27786],"delegatorTokens":9999999892549,"jailed":[1000000000000023,null,null,null],"status":["unbonding","bonded","unbonded","bonded"]}},{"ix":191,"action":{"kind":"Undelegate","val":3,"amt":1748},"partialState":{"h":14,"t":84,"tokens":[18651,15038,4999,27038],"delegation":[17651,14038,3999,26038],"delegatorTokens":9999999892549}},{"ix":192,"action":{"kind":"Delegate","val":2,"amt":2671},"partialState":{"h":14,"t":84,"tokens":[18651,15038,7670,27038],"delegation":[17651,14038,6670,26038],"delegatorTokens":9999999889878}},{"ix":193,"action":{"kind":"Undelegate","val":0,"amt":4457},"partialState":{"h":14,"t":84,"tokens":[14194,15038,7670,27038],"delegation":[13194,14038,6670,26038],"delegatorTokens":9999999889878}},{"ix":194,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":195,"action":{"kind":"Delegate","val":1,"amt":3774},"partialState":{"h":14,"t":84,"tokens":[14194,18812,7670,27038],"delegation":[13194,17812,6670,26038],"delegatorTokens":9999999886104}},{"ix":196,"action":{"kind":"Deliver","chain":"provider","numPackets":4},"partialState":{"h":14,"t":84,"tokens":[14194,18812,7670,27038],"delegation":[13194,17812,6670,26038],"delegatorTokens":9999999886104,"jailed":[1000000000000023,null,null,null],"status":["unbonding","bonded","unbonded","bonded"]}},{"ix":197,"action":{"kind":"Undelegate","val":1,"amt":4821},"partialState":{"h":14,"t":84,"tokens":[14194,13991,7670,27038],"delegation":[13194,12991,6670,26038],"delegatorTokens":9999999886104}},{"ix":198,"action":{"kind":"Deliver","chain":"provider","numPackets":1},"partialState":{"h":14,"t":84,"tokens":[14194,13991,7670,27038],"delegation":[13194,12991,6670,26038],"delegatorTokens":9999999886104,"jailed":[1000000000000023,null,null,null],"status":["unbonding","bonded","unbonded","bonded"]}},{"ix":199,"action":{"kind":"Undelegate","val":1,"amt":3756},"partialState":{"h":14,"t":84,"tokens":[14194,10235,7670,27038],"delegation":[13194,9235,6670,26038],"delegatorTokens":9999999886104}}],"events":["send_downtime_slash_request","send_downtime_slash_request","downtime_slash_request_outstanding","insufficient_shares","downtime_slash_request_outstanding","insufficient_shares","downtime_slash_request_outstanding","send_vsc_without_downtime_ack","send_downtime_slash_request","receive_slash_request_unbonded","receive_slash_request_unbonded","send_vsc_without_downtime_ack","insufficient_shares","consumer_update_val","consumer_update_val","insufficient_shares","more_than_one_third_val_power_change","receive_downtime_slash_request","jail","send_vsc_with_downtime_ack","send_vsc_without_downtime_ack","send_vsc_not_because_change","send_vsc_without_downtime_ack","insufficient_shares","send_vsc_without_downtime_ack","insufficient_shares","receive_downtime_slash_ack","send_vsc_without_downtime_ack","insufficient_shares","consumer_del_val","consumer_update_val","consumer_add_val","consumer_send_maturation","consumer_send_maturation","send_vsc_without_downtime_ack","consumer_update_val","consumer_update_val","send_vsc_without_downtime_ack","consumer_update_val","consumer_update_val","insufficient_shares","insufficient_shares","set_undel_hold_false","set_undel_hold_false","send_vsc_without_downtime_ack","insufficient_shares","complete_undel_in_endblock"]},{"meta":{"commit":"7ffd0c04e4205cbc9caf212abfe6c59ee43153bf"},"constants":{"P":"provider","C":"consumer","UNBONDING_SECONDS_P":70,"UNBONDING_SECONDS_C":50,"TRUSTING_SECONDS":49,"NUM_VALIDATORS":4,"MAX_VALIDATORS":2,"SLASH_DOUBLESIGN":0,"SLASH_DOWNTIME":0,"JAIL_SECONDS":999999999999999,"BLOCK_SECONDS":6,"INITIAL_DELEGATOR_TOKENS":10000000000000,"DELEGATE_AMT_MIN":1000,"DELEGATE_AMT_MAX":5000,"UNDELEGATE_AMT_MIN":1000,"UNDELEGATE_AMT_MAX":5000,"ISDOWNTIME_PROBABILITY":0.5,"MAX_NUM_PACKETS_FOR_DELIVER":6},"actions":[{"ix":0,"action":{"kind":"Deliver","chain":"provider","numPackets":5},"partialState":{"h":1,"t":6,"tokens":[5000,4000,3000,2000],"delegation":[4000,3000,2000,1000],"delegatorTokens":10000000000000,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":1,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":2,"t":12,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":2,"action":{"kind":"ConsumerSlash","val":2,"infractionHeight":1,"isDowntime":false},"partialState":{"h":2,"t":12,"outstandingDowntime":[false,false,false,false]}},{"ix":3,"action":{"kind":"ConsumerSlash","val":2,"infractionHeight":1,"isDowntime":true},"partialState":{"h":2,"t":12,"outstandingDowntime":[false,false,true,false]}},{"ix":4,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":3,"t":18,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,false,true,false]}},{"ix":5,"action":{"kind":"ConsumerSlash","val":2,"infractionHeight":1,"isDowntime":true},"partialState":{"h":3,"t":18,"outstandingDowntime":[false,false,true,false]}},{"ix":6,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":7,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":4,"t":24,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,false,true,false]}},{"ix":8,"action":{"kind":"Undelegate","val":0,"amt":2375},"partialState":{"h":1,"t":6,"tokens":[2625,4000,3000,2000],"delegation":[1625,3000,2000,1000],"delegatorTokens":10000000000000}},{"ix":9,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":10,"action":{"kind":"Undelegate","val":3,"amt":3518},"partialState":{"h":1,"t":6,"tokens":[2625,4000,3000,2000],"delegation":[1625,3000,2000,1000],"delegatorTokens":10000000000000}},{"ix":11,"action":{"kind":"ConsumerSlash","val":3,"infractionHeight":3,"isDowntime":true},"partialState":{"h":4,"t":24,"outstandingDowntime":[false,false,true,true]}},{"ix":12,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":13,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":14,"action":{"kind":"ConsumerSlash","val":3,"infractionHeight":2,"isDowntime":false},"partialState":{"h":4,"t":24,"outstandingDowntime":[false,false,true,true]}},{"ix":15,"action":{"kind":"Undelegate","val":2,"amt":1870},"partialState":{"h":1,"t":6,"tokens":[2625,4000,1130,2000],"delegation":[1625,3000,130,1000],"delegatorTokens":10000000000000}},{"ix":16,"action":{"kind":"ConsumerSlash","val":2,"infractionHeight":1,"isDowntime":false},"partialState":{"h":4,"t":24,"outstandingDowntime":[false,false,true,true]}},{"ix":17,"action":{"kind":"Deliver","chain":"consumer","numPackets":3},"partialState":{"h":4,"t":24,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,false,true,true]}},{"ix":18,"action":{"kind":"ConsumerSlash","val":3,"infractionHeight":1,"isDowntime":true},"partialState":{"h":4,"t":24,"outstandingDowntime":[false,false,true,true]}},{"ix":19,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":2,"t":12,"tokens":[2625,4000,1130,2000],"delegation":[1625,3000,130,1000],"delegatorTokens":10000000000000,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":20,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":21,"action":{"kind":"ConsumerSlash","val":3,"infractionHeight":2,"isDowntime":false},"partialState":{"h":4,"t":24,"outstandingDowntime":[false,false,true,true]}},{"ix":22,"action":{"kind":"Deliver","chain":"consumer","numPackets":6},"partialState":{"h":4,"t":24,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,false,true,true]}},{"ix":23,"action":{"kind":"Deliver","chain":"provider","numPackets":2},"partialState":{"h":2,"t":12,"tokens":[2625,4000,1130,2000],"delegation":[1625,3000,130,1000],"delegatorTokens":10000000000000,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":24,"action":{"kind":"Deliver","chain":"provider","numPackets":1},"partialState":{"h":2,"t":12,"tokens":[2625,4000,1130,2000],"delegation":[1625,3000,130,1000],"delegatorTokens":10000000000000,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":25,"action":{"kind":"Undelegate","val":3,"amt":2909},"partialState":{"h":2,"t":12,"tokens":[2625,4000,1130,2000],"delegation":[1625,3000,130,1000],"delegatorTokens":10000000000000}},{"ix":26,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":5,"t":30,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,false,true,true]}},{"ix":27,"action":{"kind":"Undelegate","val":1,"amt":3290},"partialState":{"h":2,"t":12,"tokens":[2625,4000,1130,2000],"delegation":[1625,3000,130,1000],"delegatorTokens":10000000000000}},{"ix":28,"action":{"kind":"Undelegate","val":1,"amt":4895},"partialState":{"h":2,"t":12,"tokens":[2625,4000,1130,2000],"delegation":[1625,3000,130,1000],"delegatorTokens":10000000000000}},{"ix":29,"action":{"kind":"Undelegate","val":2,"amt":1553},"partialState":{"h":2,"t":12,"tokens":[2625,4000,1130,2000],"delegation":[1625,3000,130,1000],"delegatorTokens":10000000000000}},{"ix":30,"action":{"kind":"Deliver","chain":"consumer","numPackets":5},"partialState":{"h":5,"t":30,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,false,true,true]}},{"ix":31,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":3,"t":18,"tokens":[2625,4000,1130,2000],"delegation":[1625,3000,130,1000],"delegatorTokens":10000000000000,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":32,"action":{"kind":"Undelegate","val":2,"amt":2689},"partialState":{"h":3,"t":18,"tokens":[2625,4000,1130,2000],"delegation":[1625,3000,130,1000],"delegatorTokens":10000000000000}},{"ix":33,"action":{"kind":"ConsumerSlash","val":3,"infractionHeight":2,"isDowntime":false},"partialState":{"h":5,"t":30,"outstandingDowntime":[false,false,true,true]}},{"ix":34,"action":{"kind":"ConsumerSlash","val":3,"infractionHeight":0,"isDowntime":true},"partialState":{"h":5,"t":30,"outstandingDowntime":[false,false,true,true]}},{"ix":35,"action":{"kind":"Deliver","chain":"consumer","numPackets":5},"partialState":{"h":5,"t":30,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,false,true,true]}},{"ix":36,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":37,"action":{"kind":"ConsumerSlash","val":1,"infractionHeight":1,"isDowntime":true},"partialState":{"h":5,"t":30,"outstandingDowntime":[false,true,true,true]}},{"ix":38,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":39,"action":{"kind":"Deliver","chain":"provider","numPackets":3},"partialState":{"h":3,"t":18,"tokens":[2625,4000,1130,2000],"delegation":[1625,3000,130,1000],"delegatorTokens":10000000000000,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":40,"action":{"kind":"Delegate","val":1,"amt":3585},"partialState":{"h":3,"t":18,"tokens":[2625,7585,1130,2000],"delegation":[1625,6585,130,1000],"delegatorTokens":9999999996415}},{"ix":41,"action":{"kind":"Deliver","chain":"provider","numPackets":4},"partialState":{"h":3,"t":18,"tokens":[2625,7585,1130,2000],"delegation":[1625,6585,130,1000],"delegatorTokens":9999999996415,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":42,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":43,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":6,"t":36,"consumerPower":[2625,4000,null,null],"outstandingDowntime":[false,true,true,true]}},{"ix":44,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":4,"t":24,"tokens":[2625,7585,1130,2000],"delegation":[1625,6585,130,1000],"delegatorTokens":9999999996415,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":45,"action":{"kind":"Deliver","chain":"provider","numPackets":3},"partialState":{"h":4,"t":24,"tokens":[2625,7585,1130,2000],"delegation":[1625,6585,130,1000],"delegatorTokens":9999999996415,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":46,"action":{"kind":"Undelegate","val":3,"amt":2657},"partialState":{"h":4,"t":24,"tokens":[2625,7585,1130,2000],"delegation":[1625,6585,130,1000],"delegatorTokens":9999999996415}},{"ix":47,"action":{"kind":"Deliver","chain":"consumer","numPackets":4},"partialState":{"h":6,"t":36,"consumerPower":[2625,4000,null,null],"outstandingDowntime":[false,true,true,true]}},{"ix":48,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":49,"action":{"kind":"Undelegate","val":2,"amt":2551},"partialState":{"h":4,"t":24,"tokens":[2625,7585,1130,2000],"delegation":[1625,6585,130,1000],"delegatorTokens":9999999996415}},{"ix":50,"action":{"kind":"Deliver","chain":"consumer","numPackets":5},"partialState":{"h":6,"t":36,"consumerPower":[2625,4000,null,null],"outstandingDowntime":[false,true,true,true]}},{"ix":51,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":5,"t":30,"tokens":[2625,7585,1130,2000],"delegation":[1625,6585,130,1000],"delegatorTokens":9999999996415,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":52,"action":{"kind":"Delegate","val":2,"amt":4099},"partialState":{"h":5,"t":30,"tokens":[2625,7585,5229,2000],"delegation":[1625,6585,4229,1000],"delegatorTokens":9999999992316}},{"ix":53,"action":{"kind":"Deliver","chain":"consumer","numPackets":4},"partialState":{"h":6,"t":36,"consumerPower":[2625,4000,null,null],"outstandingDowntime":[false,true,true,true]}},{"ix":54,"action":{"kind":"Delegate","val":3,"amt":1358},"partialState":{"h":5,"t":30,"tokens":[2625,7585,5229,3358],"delegation":[1625,6585,4229,2358],"delegatorTokens":9999999990958}},{"ix":55,"action":{"kind":"Delegate","val":3,"amt":3860},"partialState":{"h":5,"t":30,"tokens":[2625,7585,5229,7218],"delegation":[1625,6585,4229,6218],"delegatorTokens":9999999987098}},{"ix":56,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":57,"action":{"kind":"Undelegate","val":2,"amt":1974},"partialState":{"h":5,"t":30,"tokens":[2625,7585,3255,7218],"delegation":[1625,6585,2255,6218],"delegatorTokens":9999999987098}},{"ix":58,"action":{"kind":"Delegate","val":2,"amt":1416},"partialState":{"h":5,"t":30,"tokens":[2625,7585,4671,7218],"delegation":[1625,6585,3671,6218],"delegatorTokens":9999999985682}},{"ix":59,"action":{"kind":"Undelegate","val":1,"amt":2558},"partialState":{"h":5,"t":30,"tokens":[2625,5027,4671,7218],"delegation":[1625,4027,3671,6218],"delegatorTokens":9999999985682}},{"ix":60,"action":{"kind":"Delegate","val":2,"amt":1394},"partialState":{"h":5,"t":30,"tokens":[2625,5027,6065,7218],"delegation":[1625,4027,5065,6218],"delegatorTokens":9999999984288}},{"ix":61,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":7,"t":42,"consumerPower":[2625,7585,null,null],"outstandingDowntime":[false,true,true,true]}},{"ix":62,"action":{"kind":"Delegate","val":3,"amt":3566},"partialState":{"h":5,"t":30,"tokens":[2625,5027,6065,10784],"delegation":[1625,4027,5065,9784],"delegatorTokens":9999999980722}},{"ix":63,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":8,"t":48,"consumerPower":[2625,7585,null,null],"outstandingDowntime":[false,true,true,true]}},{"ix":64,"action":{"kind":"Deliver","chain":"provider","numPackets":1},"partialState":{"h":5,"t":30,"tokens":[2625,5027,6065,10784],"delegation":[1625,4027,5065,9784],"delegatorTokens":9999999980722,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":65,"action":{"kind":"Deliver","chain":"consumer","numPackets":1},"partialState":{"h":8,"t":48,"consumerPower":[2625,7585,null,null],"outstandingDowntime":[false,true,true,true]}},{"ix":66,"action":{"kind":"Deliver","chain":"provider","numPackets":4},"partialState":{"h":5,"t":30,"tokens":[2625,5027,6065,10784],"delegation":[1625,4027,5065,9784],"delegatorTokens":9999999980722,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":67,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":9,"t":54,"consumerPower":[2625,7585,null,null],"outstandingDowntime":[false,true,true,true]}},{"ix":68,"action":{"kind":"Undelegate","val":3,"amt":1440},"partialState":{"h":5,"t":30,"tokens":[2625,5027,6065,9344],"delegation":[1625,4027,5065,8344],"delegatorTokens":9999999980722}},{"ix":69,"action":{"kind":"Deliver","chain":"provider","numPackets":5},"partialState":{"h":5,"t":30,"tokens":[2625,5027,6065,9344],"delegation":[1625,4027,5065,8344],"delegatorTokens":9999999980722,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":70,"action":{"kind":"Delegate","val":3,"amt":1010},"partialState":{"h":5,"t":30,"tokens":[2625,5027,6065,10354],"delegation":[1625,4027,5065,9354],"delegatorTokens":9999999979712}},{"ix":71,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":72,"action":{"kind":"Delegate","val":0,"amt":1937},"partialState":{"h":5,"t":30,"tokens":[4562,5027,6065,10354],"delegation":[3562,4027,5065,9354],"delegatorTokens":9999999977775}},{"ix":73,"action":{"kind":"Delegate","val":0,"amt":3325},"partialState":{"h":5,"t":30,"tokens":[7887,5027,6065,10354],"delegation":[6887,4027,5065,9354],"delegatorTokens":9999999974450}},{"ix":74,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":75,"action":{"kind":"Undelegate","val":2,"amt":2987},"partialState":{"h":5,"t":30,"tokens":[7887,5027,3078,10354],"delegation":[6887,4027,2078,9354],"delegatorTokens":9999999974450}},{"ix":76,"action":{"kind":"Undelegate","val":2,"amt":2319},"partialState":{"h":5,"t":30,"tokens":[7887,5027,3078,10354],"delegation":[6887,4027,2078,9354],"delegatorTokens":9999999974450}},{"ix":77,"action":{"kind":"Delegate","val":0,"amt":2483},"partialState":{"h":5,"t":30,"tokens":[10370,5027,3078,10354],"delegation":[9370,4027,2078,9354],"delegatorTokens":9999999971967}},{"ix":78,"action":{"kind":"Delegate","val":2,"amt":1917},"partialState":{"h":5,"t":30,"tokens":[10370,5027,4995,10354],"delegation":[9370,4027,3995,9354],"delegatorTokens":9999999970050}},{"ix":79,"action":{"kind":"Undelegate","val":0,"amt":1805},"partialState":{"h":5,"t":30,"tokens":[8565,5027,4995,10354],"delegation":[7565,4027,3995,9354],"delegatorTokens":9999999970050}},{"ix":80,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":10,"t":60,"consumerPower":[2625,7585,null,null],"outstandingDowntime":[false,true,true,true]}},{"ix":81,"action":{"kind":"Delegate","val":2,"amt":1450},"partialState":{"h":5,"t":30,"tokens":[8565,5027,6445,10354],"delegation":[7565,4027,5445,9354],"delegatorTokens":9999999968600}},{"ix":82,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":83,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":6,"t":36,"tokens":[8565,5027,6445,10354],"delegation":[7565,4027,5445,9354],"delegatorTokens":9999999968600,"jailed":[null,1000000000000029,null,null],"status":["bonded","unbonding","unbonded","bonded"]}},{"ix":84,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":85,"action":{"kind":"Delegate","val":3,"amt":4584},"partialState":{"h":6,"t":36,"tokens":[8565,5027,6445,14938],"delegation":[7565,4027,5445,13938],"delegatorTokens":9999999964016}},{"ix":86,"action":{"kind":"Undelegate","val":1,"amt":2616},"partialState":{"h":6,"t":36,"tokens":[8565,2411,6445,14938],"delegation":[7565,1411,5445,13938],"delegatorTokens":9999999964016}},{"ix":87,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":7,"t":42,"tokens":[8565,2411,6445,14938],"delegation":[7565,1411,5445,13938],"delegatorTokens":9999999964016,"jailed":[null,1000000000000029,null,null],"status":["bonded","unbonding","unbonded","bonded"]}},{"ix":88,"action":{"kind":"Undelegate","val":1,"amt":4985},"partialState":{"h":7,"t":42,"tokens":[8565,2411,6445,14938],"delegation":[7565,1411,5445,13938],"delegatorTokens":9999999964016}},{"ix":89,"action":{"kind":"Deliver","chain":"consumer","numPackets":1},"partialState":{"h":10,"t":60,"consumerPower":[2625,7585,null,null],"outstandingDowntime":[false,false,true,true]}},{"ix":90,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":91,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":92,"action":{"kind":"Deliver","chain":"consumer","numPackets":6},"partialState":{"h":10,"t":60,"consumerPower":[2625,7585,null,null],"outstandingDowntime":[false,false,true,true]}},{"ix":93,"action":{"kind":"Delegate","val":3,"amt":2322},"partialState":{"h":7,"t":42,"tokens":[8565,2411,6445,17260],"delegation":[7565,1411,5445,16260],"delegatorTokens":9999999961694}},{"ix":94,"action":{"kind":"Deliver","chain":"provider","numPackets":5},"partialState":{"h":7,"t":42,"tokens":[8565,2411,6445,17260],"delegation":[7565,1411,5445,16260],"delegatorTokens":9999999961694,"jailed":[null,1000000000000029,null,null],"status":["bonded","unbonding","unbonded","bonded"]}},{"ix":95,"action":{"kind":"Delegate","val":1,"amt":4748},"partialState":{"h":7,"t":42,"tokens":[8565,7159,6445,17260],"delegation":[7565,6159,5445,16260],"delegatorTokens":9999999956946}},{"ix":96,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":97,"action":{"kind":"Deliver","chain":"provider","numPackets":1},"partialState":{"h":7,"t":42,"tokens":[8565,7159,6445,17260],"delegation":[7565,6159,5445,16260],"delegatorTokens":9999999956946,"jailed":[null,1000000000000029,null,null],"status":["bonded","unbonding","unbonded","bonded"]}},{"ix":98,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":8,"t":48,"tokens":[8565,7159,6445,17260],"delegation":[7565,6159,5445,16260],"delegatorTokens":9999999956946,"jailed":[null,1000000000000029,null,null],"status":["bonded","unbonding","unbonded","bonded"]}},{"ix":99,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":100,"action":{"kind":"Undelegate","val":2,"amt":1622},"partialState":{"h":8,"t":48,"tokens":[8565,7159,4823,17260],"delegation":[7565,6159,3823,16260],"delegatorTokens":9999999956946}},{"ix":101,"action":{"kind":"Deliver","chain":"consumer","numPackets":2},"partialState":{"h":10,"t":60,"consumerPower":[2625,7585,null,null],"outstandingDowntime":[false,false,true,true]}},{"ix":102,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":11,"t":66,"consumerPower":[8565,null,null,14938],"outstandingDowntime":[false,false,true,true]}},{"ix":103,"action":{"kind":"Deliver","chain":"provider","numPackets":1},"partialState":{"h":8,"t":48,"tokens":[8565,7159,4823,17260],"delegation":[7565,6159,3823,16260],"delegatorTokens":9999999956946,"jailed":[null,1000000000000029,null,null],"status":["bonded","unbonding","unbonded","bonded"]}},{"ix":104,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":9,"t":54,"tokens":[8565,7159,4823,17260],"delegation":[7565,6159,3823,16260],"delegatorTokens":9999999956946,"jailed":[null,1000000000000029,null,null],"status":["bonded","unbonding","unbonded","bonded"]}},{"ix":105,"action":{"kind":"Delegate","val":3,"amt":1075},"partialState":{"h":9,"t":54,"tokens":[8565,7159,4823,18335],"delegation":[7565,6159,3823,17335],"delegatorTokens":9999999955871}},{"ix":106,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":107,"action":{"kind":"Deliver","chain":"provider","numPackets":1},"partialState":{"h":9,"t":54,"tokens":[8565,7159,4823,18335],"delegation":[7565,6159,3823,17335],"delegatorTokens":9999999955871,"jailed":[null,1000000000000029,null,null],"status":["bonded","unbonding","unbonded","bonded"]}},{"ix":108,"action":{"kind":"Delegate","val":0,"amt":3733},"partialState":{"h":9,"t":54,"tokens":[12298,7159,4823,18335],"delegation":[11298,6159,3823,17335],"delegatorTokens":9999999952138}},{"ix":109,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":12,"t":72,"consumerPower":[8565,null,null,14938],"outstandingDowntime":[false,false,true,true]}},{"ix":110,"action":{"kind":"Deliver","chain":"consumer","numPackets":2},"partialState":{"h":12,"t":72,"consumerPower":[8565,null,null,14938],"outstandingDowntime":[false,false,true,true]}},{"ix":111,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":10,"t":60,"tokens":[12298,7159,4823,18335],"delegation":[11298,6159,3823,17335],"delegatorTokens":9999999952138,"jailed":[null,1000000000000029,null,null],"status":["bonded","unbonding","unbonded","bonded"]}},{"ix":112,"action":{"kind":"Delegate","val":3,"amt":3919},"partialState":{"h":10,"t":60,"tokens":[12298,7159,4823,22254],"delegation":[11298,6159,3823,21254],"delegatorTokens":9999999948219}},{"ix":113,"action":{"kind":"Undelegate","val":1,"amt":3575},"partialState":{"h":10,"t":60,"tokens":[12298,3584,4823,22254],"delegation":[11298,2584,3823,21254],"delegatorTokens":9999999948219}},{"ix":114,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":11,"t":66,"tokens":[12298,3584,4823,22254],"delegation":[11298,2584,3823,21254],"delegatorTokens":9999999948219,"jailed":[null,1000000000000029,null,null],"status":["bonded","unbonding","unbonded","bonded"]}},{"ix":115,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":116,"action":{"kind":"Undelegate","val":2,"amt":1073},"partialState":{"h":11,"t":66,"tokens":[12298,3584,3750,22254],"delegation":[11298,2584,2750,21254],"delegatorTokens":9999999948219}},{"ix":117,"action":{"kind":"Undelegate","val":2,"amt":2121},"partialState":{"h":11,"t":66,"tokens":[12298,3584,1629,22254],"delegation":[11298,2584,629,21254],"delegatorTokens":9999999948219}},{"ix":118,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":12,"t":72,"tokens":[12298,3584,1629,22254],"delegation":[11298,2584,629,21254],"delegatorTokens":9999999948219,"jailed":[null,1000000000000029,null,null],"status":["bonded","unbonding","unbonded","bonded"]}},{"ix":119,"action":{"kind":"Delegate","val":0,"amt":3369},"partialState":{"h":12,"t":72,"tokens":[15667,3584,1629,22254],"delegation":[14667,2584,629,21254],"delegatorTokens":9999999944850}},{"ix":120,"action":{"kind":"Delegate","val":2,"amt":2361},"partialState":{"h":12,"t":72,"tokens":[15667,3584,3990,22254],"delegation":[14667,2584,2990,21254],"delegatorTokens":9999999942489}},{"ix":121,"action":{"kind":"Delegate","val":0,"amt":2494},"partialState":{"h":12,"t":72,"tokens":[18161,3584,3990,22254],"delegation":[17161,2584,2990,21254],"delegatorTokens":9999999939995}},{"ix":122,"action":{"kind":"Delegate","val":1,"amt":1328},"partialState":{"h":12,"t":72,"tokens":[18161,4912,3990,22254],"delegation":[17161,3912,2990,21254],"delegatorTokens":9999999938667}},{"ix":123,"action":{"kind":"Undelegate","val":1,"amt":3778},"partialState":{"h":12,"t":72,"tokens":[18161,1134,3990,22254],"delegation":[17161,134,2990,21254],"delegatorTokens":9999999938667}},{"ix":124,"action":{"kind":"Delegate","val":0,"amt":2214},"partialState":{"h":12,"t":72,"tokens":[20375,1134,3990,22254],"delegation":[19375,134,2990,21254],"delegatorTokens":9999999936453}},{"ix":125,"action":{"kind":"Deliver","chain":"provider","numPackets":5},"partialState":{"h":12,"t":72,"tokens":[20375,1134,3990,22254],"delegation":[19375,134,2990,21254],"delegatorTokens":9999999936453,"jailed":[null,1000000000000029,null,null],"status":["bonded","unbonding","unbonded","bonded"]}},{"ix":126,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":127,"action":{"kind":"Undelegate","val":2,"amt":4220},"partialState":{"h":12,"t":72,"tokens":[20375,1134,3990,22254],"delegation":[19375,134,2990,21254],"delegatorTokens":9999999936453}},{"ix":128,"action":{"kind":"Delegate","val":1,"amt":2281},"partialState":{"h":12,"t":72,"tokens":[20375,3415,3990,22254],"delegation":[19375,2415,2990,21254],"delegatorTokens":9999999934172}},{"ix":129,"action":{"kind":"Delegate","val":1,"amt":3691},"partialState":{"h":12,"t":72,"tokens":[20375,7106,3990,22254],"delegation":[19375,6106,2990,21254],"delegatorTokens":9999999930481}},{"ix":130,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":131,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":132,"action":{"kind":"Delegate","val":3,"amt":2323},"partialState":{"h":12,"t":72,"tokens":[20375,7106,3990,24577],"delegation":[19375,6106,2990,23577],"delegatorTokens":9999999928158}},{"ix":133,"action":{"kind":"Deliver","chain":"consumer","numPackets":4},"partialState":{"h":12,"t":72,"consumerPower":[8565,null,null,14938],"outstandingDowntime":[false,false,true,true]}},{"ix":134,"action":{"kind":"Delegate","val":3,"amt":3576},"partialState":{"h":12,"t":72,"tokens":[20375,7106,3990,28153],"delegation":[19375,6106,2990,27153],"delegatorTokens":9999999924582}},{"ix":135,"action":{"kind":"Deliver","chain":"consumer","numPackets":4},"partialState":{"h":12,"t":72,"consumerPower":[8565,null,null,14938],"outstandingDowntime":[false,false,true,true]}},{"ix":136,"action":{"kind":"Deliver","chain":"consumer","numPackets":1},"partialState":{"h":12,"t":72,"consumerPower":[8565,null,null,14938],"outstandingDowntime":[false,false,true,true]}},{"ix":137,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":138,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":13,"t":78,"consumerPower":[12298,null,null,22254],"outstandingDowntime":[false,false,true,true]}},{"ix":139,"action":{"kind":"Deliver","chain":"consumer","numPackets":1},"partialState":{"h":13,"t":78,"consumerPower":[12298,null,null,22254],"outstandingDowntime":[false,false,true,true]}},{"ix":140,"action":{"kind":"Undelegate","val":0,"amt":2936},"partialState":{"h":12,"t":72,"tokens":[17439,7106,3990,28153],"delegation":[16439,6106,2990,27153],"delegatorTokens":9999999924582}},{"ix":141,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":142,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":143,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":13,"t":78,"tokens":[17439,7106,3990,28153],"delegation":[16439,6106,2990,27153],"delegatorTokens":9999999924582,"jailed":[null,1000000000000029,null,null],"status":["bonded","unbonding","unbonded","bonded"]}},{"ix":144,"action":{"kind":"Deliver","chain":"consumer","numPackets":5},"partialState":{"h":13,"t":78,"consumerPower":[12298,null,null,22254],"outstandingDowntime":[false,false,true,true]}},{"ix":145,"action":{"kind":"Deliver","chain":"provider","numPackets":1},"partialState":{"h":13,"t":78,"tokens":[17439,7106,3990,28153],"delegation":[16439,6106,2990,27153],"delegatorTokens":9999999924582,"jailed":[null,1000000000000029,null,null],"status":["bonded","unbonding","unbonded","bonded"]}},{"ix":146,"action":{"kind":"Deliver","chain":"provider","numPackets":4},"partialState":{"h":13,"t":78,"tokens":[17439,7106,3990,28153],"delegation":[16439,6106,2990,27153],"delegatorTokens":9999999924582,"jailed":[null,1000000000000029,null,null],"status":["bonded","unbonding","unbonded","bonded"]}},{"ix":147,"action":{"kind":"Deliver","chain":"provider","numPackets":3},"partialState":{"h":13,"t":78,"tokens":[17439,7106,3990,28153],"delegation":[16439,6106,2990,27153],"delegatorTokens":9999999924582,"jailed":[null,1000000000000029,null,null],"status":["bonded","unbonding","unbonded","bonded"]}},{"ix":148,"action":{"kind":"Deliver","chain":"provider","numPackets":1},"partialState":{"h":13,"t":78,"tokens":[17439,7106,3990,28153],"delegation":[16439,6106,2990,27153],"delegatorTokens":9999999924582,"jailed":[null,1000000000000029,null,null],"status":["bonded","unbonding","unbonded","bonded"]}},{"ix":149,"action":{"kind":"Deliver","chain":"consumer","numPackets":6},"partialState":{"h":13,"t":78,"consumerPower":[12298,null,null,22254],"outstandingDowntime":[false,false,true,true]}},{"ix":150,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":14,"t":84,"tokens":[17439,7106,3990,28153],"delegation":[16439,6106,2990,27153],"delegatorTokens":9999999924582,"jailed":[null,1000000000000029,null,null],"status":["bonded","unbonding","unbonded","bonded"]}},{"ix":151,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":15,"t":90,"tokens":[17439,7106,3990,28153],"delegation":[16439,6106,2990,27153],"delegatorTokens":9999999924582,"jailed":[null,1000000000000029,null,null],"status":["bonded","unbonding","unbonded","bonded"]}},{"ix":152,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":14,"t":84,"consumerPower":[12298,null,null,22254],"outstandingDowntime":[false,false,true,true]}},{"ix":153,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":154,"action":{"kind":"Undelegate","val":2,"amt":2518},"partialState":{"h":15,"t":90,"tokens":[17439,7106,1472,28153],"delegation":[16439,6106,472,27153],"delegatorTokens":9999999924582}},{"ix":155,"action":{"kind":"Deliver","chain":"provider","numPackets":5},"partialState":{"h":15,"t":90,"tokens":[17439,7106,1472,28153],"delegation":[16439,6106,472,27153],"delegatorTokens":9999999924582,"jailed":[null,1000000000000029,null,null],"status":["bonded","unbonding","unbonded","bonded"]}},{"ix":156,"action":{"kind":"Delegate","val":3,"amt":4220},"partialState":{"h":15,"t":90,"tokens":[17439,7106,1472,32373],"delegation":[16439,6106,472,31373],"delegatorTokens":9999999920362}},{"ix":157,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":15,"t":90,"consumerPower":[12298,null,null,22254],"outstandingDowntime":[false,false,true,true]}},{"ix":158,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":16,"t":96,"consumerPower":[12298,null,null,22254],"outstandingDowntime":[false,false,true,true]}},{"ix":159,"action":{"kind":"Undelegate","val":0,"amt":1438},"partialState":{"h":15,"t":90,"tokens":[16001,7106,1472,32373],"delegation":[15001,6106,472,31373],"delegatorTokens":9999999920362}},{"ix":160,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":161,"action":{"kind":"Deliver","chain":"consumer","numPackets":6},"partialState":{"h":16,"t":96,"consumerPower":[12298,null,null,22254],"outstandingDowntime":[false,false,true,true]}},{"ix":162,"action":{"kind":"Delegate","val":0,"amt":4905},"partialState":{"h":15,"t":90,"tokens":[20906,7106,1472,32373],"delegation":[19906,6106,472,31373],"delegatorTokens":9999999915457}},{"ix":163,"action":{"kind":"Deliver","chain":"provider","numPackets":4},"partialState":{"h":15,"t":90,"tokens":[20906,7106,1472,32373],"delegation":[19906,6106,472,31373],"delegatorTokens":9999999915457,"jailed":[null,1000000000000029,null,null],"status":["bonded","unbonding","unbonded","bonded"]}},{"ix":164,"action":{"kind":"Delegate","val":3,"amt":3196},"partialState":{"h":15,"t":90,"tokens":[20906,7106,1472,35569],"delegation":[19906,6106,472,34569],"delegatorTokens":9999999912261}},{"ix":165,"action":{"kind":"Delegate","val":2,"amt":4954},"partialState":{"h":15,"t":90,"tokens":[20906,7106,6426,35569],"delegation":[19906,6106,5426,34569],"delegatorTokens":9999999907307}},{"ix":166,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":167,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":168,"action":{"kind":"Undelegate","val":1,"amt":4245},"partialState":{"h":15,"t":90,"tokens":[20906,2861,6426,35569],"delegation":[19906,1861,5426,34569],"delegatorTokens":9999999907307}},{"ix":169,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":17,"t":102,"consumerPower":[17439,null,null,28153],"outstandingDowntime":[false,false,true,true]}},{"ix":170,"action":{"kind":"Delegate","val":2,"amt":4612},"partialState":{"h":15,"t":90,"tokens":[20906,2861,11038,35569],"delegation":[19906,1861,10038,34569],"delegatorTokens":9999999902695}},{"ix":171,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":172,"action":{"kind":"Deliver","chain":"provider","numPackets":3},"partialState":{"h":15,"t":90,"tokens":[20906,2861,11038,35569],"delegation":[19906,1861,10038,34569],"delegatorTokens":9999999902695,"jailed":[null,1000000000000029,null,null],"status":["bonded","unbonding","unbonded","bonded"]}},{"ix":173,"action":{"kind":"Deliver","chain":"consumer","numPackets":2},"partialState":{"h":17,"t":102,"consumerPower":[17439,null,null,28153],"outstandingDowntime":[false,false,true,true]}},{"ix":174,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":175,"action":{"kind":"Undelegate","val":3,"amt":4521},"partialState":{"h":15,"t":90,"tokens":[20906,2861,11038,31048],"delegation":[19906,1861,10038,30048],"delegatorTokens":9999999902695}},{"ix":176,"action":{"kind":"Deliver","chain":"consumer","numPackets":3},"partialState":{"h":17,"t":102,"consumerPower":[17439,null,null,28153],"outstandingDowntime":[false,false,true,true]}},{"ix":177,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":18,"t":108,"consumerPower":[17439,null,null,28153],"outstandingDowntime":[false,false,true,true]}},{"ix":178,"action":{"kind":"Deliver","chain":"consumer","numPackets":6},"partialState":{"h":18,"t":108,"consumerPower":[17439,null,null,28153],"outstandingDowntime":[false,false,true,true]}},{"ix":179,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":16,"t":96,"tokens":[20906,2861,11038,31048],"delegation":[19906,1861,10038,30048],"delegatorTokens":9999999906940,"jailed":[null,1000000000000029,null,null],"status":["bonded","unbonding","unbonded","bonded"]}},{"ix":180,"action":{"kind":"Undelegate","val":0,"amt":2777},"partialState":{"h":16,"t":96,"tokens":[18129,2861,11038,31048],"delegation":[17129,1861,10038,30048],"delegatorTokens":9999999906940}},{"ix":181,"action":{"kind":"Delegate","val":3,"amt":3103},"partialState":{"h":16,"t":96,"tokens":[18129,2861,11038,34151],"delegation":[17129,1861,10038,33151],"delegatorTokens":9999999903837}},{"ix":182,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":17,"t":102,"tokens":[18129,2861,11038,34151],"delegation":[17129,1861,10038,33151],"delegatorTokens":9999999903837,"jailed":[null,1000000000000029,null,null],"status":["bonded","unbonding","unbonded","bonded"]}},{"ix":183,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":184,"action":{"kind":"Deliver","chain":"consumer","numPackets":2},"partialState":{"h":18,"t":108,"consumerPower":[17439,null,null,28153],"outstandingDowntime":[false,false,true,true]}},{"ix":185,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":186,"action":{"kind":"Delegate","val":1,"amt":2961},"partialState":{"h":17,"t":102,"tokens":[18129,5822,11038,34151],"delegation":[17129,4822,10038,33151],"delegatorTokens":9999999900876}},{"ix":187,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":188,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":189,"action":{"kind":"Undelegate","val":0,"amt":3235},"partialState":{"h":17,"t":102,"tokens":[14894,5822,11038,34151],"delegation":[13894,4822,10038,33151],"delegatorTokens":9999999900876}},{"ix":190,"action":{"kind":"Delegate","val":1,"amt":4699},"partialState":{"h":17,"t":102,"tokens":[14894,10521,11038,34151],"delegation":[13894,9521,10038,33151],"delegatorTokens":9999999896177}},{"ix":191,"action":{"kind":"Deliver","chain":"provider","numPackets":2},"partialState":{"h":17,"t":102,"tokens":[14894,10521,11038,34151],"delegation":[13894,9521,10038,33151],"delegatorTokens":9999999896177,"jailed":[null,1000000000000029,null,null],"status":["bonded","unbonding","unbonded","bonded"]}},{"ix":192,"action":{"kind":"Delegate","val":1,"amt":1489},"partialState":{"h":17,"t":102,"tokens":[14894,12010,11038,34151],"delegation":[13894,11010,10038,33151],"delegatorTokens":9999999894688}},{"ix":193,"action":{"kind":"Deliver","chain":"consumer","numPackets":3},"partialState":{"h":18,"t":108,"consumerPower":[17439,null,null,28153],"outstandingDowntime":[false,false,true,true]}},{"ix":194,"action":{"kind":"Deliver","chain":"consumer","numPackets":3},"partialState":{"h":18,"t":108,"consumerPower":[17439,null,null,28153],"outstandingDowntime":[false,false,true,true]}},{"ix":195,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":19,"t":114,"consumerPower":[20906,null,null,31048],"outstandingDowntime":[false,false,true,true]}},{"ix":196,"action":{"kind":"Delegate","val":3,"amt":2762},"partialState":{"h":17,"t":102,"tokens":[14894,12010,11038,36913],"delegation":[13894,11010,10038,35913],"delegatorTokens":9999999891926}},{"ix":197,"action":{"kind":"Delegate","val":0,"amt":2795},"partialState":{"h":17,"t":102,"tokens":[17689,12010,11038,36913],"delegation":[16689,11010,10038,35913],"delegatorTokens":9999999889131}},{"ix":198,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":18,"t":108,"tokens":[17689,12010,11038,36913],"delegation":[16689,11010,10038,35913],"delegatorTokens":9999999889131,"jailed":[null,1000000000000029,null,null],"status":["bonded","unbonding","unbonded","bonded"]}},{"ix":199,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}}],"events":["send_double_sign_slash_request","send_downtime_slash_request","downtime_slash_request_outstanding","insufficient_shares","send_downtime_slash_request","send_double_sign_slash_request","send_double_sign_slash_request","downtime_slash_request_outstanding","send_vsc_without_downtime_ack","send_double_sign_slash_request","receive_double_sign_slash_request","insufficient_shares","insufficient_shares","insufficient_shares","insufficient_shares","receive_slash_request_unbonded","insufficient_shares","send_double_sign_slash_request","downtime_slash_request_outstanding","send_downtime_slash_request","consumer_update_val","send_vsc_without_downtime_ack","receive_double_sign_slash_request","receive_double_sign_slash_request","insufficient_shares","insufficient_shares","receive_slash_request_unbonded","consumer_update_val","receive_double_sign_slash_request","receive_double_sign_slash_request","insufficient_shares","more_than_one_third_val_power_change","receive_downtime_slash_request","jail","send_vsc_with_downtime_ack","send_vsc_without_downtime_ack","insufficient_shares","receive_downtime_slash_ack","send_vsc_without_downtime_ack","consumer_update_val","consumer_del_val","consumer_add_val","send_vsc_not_because_change","send_vsc_without_downtime_ack","send_vsc_without_downtime_ack","send_vsc_without_downtime_ack","send_vsc_not_because_change","send_vsc_without_downtime_ack","insufficient_shares","consumer_update_val","consumer_update_val","send_vsc_without_downtime_ack","some_undels_expired_but_not_completed","consumer_send_maturation","consumer_send_maturation","consumer_update_val","consumer_update_val","complete_undel_immediate","complete_undel_immediate","send_vsc_without_downtime_ack","send_vsc_without_downtime_ack","consumer_update_val","consumer_update_val","some_undels_expired_but_not_completed","send_vsc_without_downtime_ack"]},{"meta":{"commit":"7ffd0c04e4205cbc9caf212abfe6c59ee43153bf"},"constants":{"P":"provider","C":"consumer","UNBONDING_SECONDS_P":70,"UNBONDING_SECONDS_C":50,"TRUSTING_SECONDS":49,"NUM_VALIDATORS":4,"MAX_VALIDATORS":2,"SLASH_DOUBLESIGN":0,"SLASH_DOWNTIME":0,"JAIL_SECONDS":999999999999999,"BLOCK_SECONDS":6,"INITIAL_DELEGATOR_TOKENS":10000000000000,"DELEGATE_AMT_MIN":1000,"DELEGATE_AMT_MAX":5000,"UNDELEGATE_AMT_MIN":1000,"UNDELEGATE_AMT_MAX":5000,"ISDOWNTIME_PROBABILITY":0.5,"MAX_NUM_PACKETS_FOR_DELIVER":6},"actions":[{"ix":0,"action":{"kind":"Delegate","val":0,"amt":2852},"partialState":{"h":1,"t":6,"tokens":[7852,4000,3000,2000],"delegation":[6852,3000,2000,1000],"delegatorTokens":9999999997148}},{"ix":1,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":2,"t":12,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":2,"action":{"kind":"Undelegate","val":2,"amt":1554},"partialState":{"h":1,"t":6,"tokens":[7852,4000,1446,2000],"delegation":[6852,3000,446,1000],"delegatorTokens":9999999997148}},{"ix":3,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":4,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":5,"action":{"kind":"Undelegate","val":1,"amt":4876},"partialState":{"h":1,"t":6,"tokens":[7852,4000,1446,2000],"delegation":[6852,3000,446,1000],"delegatorTokens":9999999997148}},{"ix":6,"action":{"kind":"Deliver","chain":"provider","numPackets":5},"partialState":{"h":1,"t":6,"tokens":[7852,4000,1446,2000],"delegation":[6852,3000,446,1000],"delegatorTokens":9999999997148,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":7,"action":{"kind":"Deliver","chain":"consumer","numPackets":6},"partialState":{"h":2,"t":12,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":8,"action":{"kind":"ConsumerSlash","val":0,"infractionHeight":1,"isDowntime":true},"partialState":{"h":2,"t":12,"outstandingDowntime":[true,false,false,false]}},{"ix":9,"action":{"kind":"ConsumerSlash","val":0,"infractionHeight":1,"isDowntime":false},"partialState":{"h":2,"t":12,"outstandingDowntime":[true,false,false,false]}},{"ix":10,"action":{"kind":"Undelegate","val":3,"amt":4442},"partialState":{"h":1,"t":6,"tokens":[7852,4000,1446,2000],"delegation":[6852,3000,446,1000],"delegatorTokens":9999999997148}},{"ix":11,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":12,"action":{"kind":"ConsumerSlash","val":2,"infractionHeight":0,"isDowntime":true},"partialState":{"h":2,"t":12,"outstandingDowntime":[true,false,true,false]}},{"ix":13,"action":{"kind":"Deliver","chain":"provider","numPackets":5},"partialState":{"h":1,"t":6,"tokens":[7852,4000,1446,2000],"delegation":[6852,3000,446,1000],"delegatorTokens":9999999997148,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":14,"action":{"kind":"ConsumerSlash","val":0,"infractionHeight":0,"isDowntime":true},"partialState":{"h":2,"t":12,"outstandingDowntime":[true,false,true,false]}},{"ix":15,"action":{"kind":"Deliver","chain":"consumer","numPackets":6},"partialState":{"h":2,"t":12,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[true,false,true,false]}},{"ix":16,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":2,"t":12,"tokens":[7852,4000,1446,2000],"delegation":[6852,3000,446,1000],"delegatorTokens":9999999997148,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":17,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":3,"t":18,"tokens":[7852,4000,1446,2000],"delegation":[6852,3000,446,1000],"delegatorTokens":9999999997148,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":18,"action":{"kind":"Delegate","val":1,"amt":4862},"partialState":{"h":3,"t":18,"tokens":[7852,8862,1446,2000],"delegation":[6852,7862,446,1000],"delegatorTokens":9999999992286}},{"ix":19,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":20,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":4,"t":24,"tokens":[7852,8862,1446,2000],"delegation":[6852,7862,446,1000],"delegatorTokens":9999999992286,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":21,"action":{"kind":"Delegate","val":2,"amt":2252},"partialState":{"h":4,"t":24,"tokens":[7852,8862,3698,2000],"delegation":[6852,7862,2698,1000],"delegatorTokens":9999999990034}},{"ix":22,"action":{"kind":"Deliver","chain":"provider","numPackets":4},"partialState":{"h":4,"t":24,"tokens":[7852,8862,3698,2000],"delegation":[6852,7862,2698,1000],"delegatorTokens":9999999990034,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":23,"action":{"kind":"ConsumerSlash","val":2,"infractionHeight":0,"isDowntime":true},"partialState":{"h":2,"t":12,"outstandingDowntime":[true,false,true,false]}},{"ix":24,"action":{"kind":"Delegate","val":0,"amt":3257},"partialState":{"h":4,"t":24,"tokens":[11109,8862,3698,2000],"delegation":[10109,7862,2698,1000],"delegatorTokens":9999999986777}},{"ix":25,"action":{"kind":"Delegate","val":1,"amt":2813},"partialState":{"h":4,"t":24,"tokens":[11109,11675,3698,2000],"delegation":[10109,10675,2698,1000],"delegatorTokens":9999999983964}},{"ix":26,"action":{"kind":"Delegate","val":2,"amt":2071},"partialState":{"h":4,"t":24,"tokens":[11109,11675,5769,2000],"delegation":[10109,10675,4769,1000],"delegatorTokens":9999999981893}},{"ix":27,"action":{"kind":"Undelegate","val":1,"amt":2362},"partialState":{"h":4,"t":24,"tokens":[11109,9313,5769,2000],"delegation":[10109,8313,4769,1000],"delegatorTokens":9999999981893}},{"ix":28,"action":{"kind":"Deliver","chain":"provider","numPackets":6},"partialState":{"h":4,"t":24,"tokens":[11109,9313,5769,2000],"delegation":[10109,8313,4769,1000],"delegatorTokens":9999999981893,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":29,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":5,"t":30,"tokens":[11109,9313,5769,2000],"delegation":[10109,8313,4769,1000],"delegatorTokens":9999999981893,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":30,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":31,"action":{"kind":"Delegate","val":3,"amt":1765},"partialState":{"h":5,"t":30,"tokens":[11109,9313,5769,3765],"delegation":[10109,8313,4769,2765],"delegatorTokens":9999999980128}},{"ix":32,"action":{"kind":"Undelegate","val":0,"amt":2004},"partialState":{"h":5,"t":30,"tokens":[9105,9313,5769,3765],"delegation":[8105,8313,4769,2765],"delegatorTokens":9999999980128}},{"ix":33,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":6,"t":36,"tokens":[9105,9313,5769,3765],"delegation":[8105,8313,4769,2765],"delegatorTokens":9999999980128,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":34,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":35,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":7,"t":42,"tokens":[9105,9313,5769,3765],"delegation":[8105,8313,4769,2765],"delegatorTokens":9999999980128,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":36,"action":{"kind":"ConsumerSlash","val":2,"infractionHeight":0,"isDowntime":false},"partialState":{"h":2,"t":12,"outstandingDowntime":[true,false,true,false]}},{"ix":37,"action":{"kind":"Delegate","val":3,"amt":1430},"partialState":{"h":7,"t":42,"tokens":[9105,9313,5769,5195],"delegation":[8105,8313,4769,4195],"delegatorTokens":9999999978698}},{"ix":38,"action":{"kind":"Delegate","val":2,"amt":1354},"partialState":{"h":7,"t":42,"tokens":[9105,9313,7123,5195],"delegation":[8105,8313,6123,4195],"delegatorTokens":9999999977344}},{"ix":39,"action":{"kind":"Delegate","val":3,"amt":2276},"partialState":{"h":7,"t":42,"tokens":[9105,9313,7123,7471],"delegation":[8105,8313,6123,6471],"delegatorTokens":9999999975068}},{"ix":40,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":8,"t":48,"tokens":[9105,9313,7123,7471],"delegation":[8105,8313,6123,6471],"delegatorTokens":9999999975068,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":41,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":3,"t":18,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[true,false,true,false]}},{"ix":42,"action":{"kind":"Delegate","val":1,"amt":4066},"partialState":{"h":8,"t":48,"tokens":[9105,13379,7123,7471],"delegation":[8105,12379,6123,6471],"delegatorTokens":9999999971002}},{"ix":43,"action":{"kind":"Undelegate","val":1,"amt":2395},"partialState":{"h":8,"t":48,"tokens":[9105,10984,7123,7471],"delegation":[8105,9984,6123,6471],"delegatorTokens":9999999971002}},{"ix":44,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":9,"t":54,"tokens":[9105,10984,7123,7471],"delegation":[8105,9984,6123,6471],"delegatorTokens":9999999971002,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":45,"action":{"kind":"Delegate","val":1,"amt":1715},"partialState":{"h":9,"t":54,"tokens":[9105,12699,7123,7471],"delegation":[8105,11699,6123,6471],"delegatorTokens":9999999969287}},{"ix":46,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":47,"action":{"kind":"Undelegate","val":2,"amt":1494},"partialState":{"h":9,"t":54,"tokens":[9105,12699,5629,7471],"delegation":[8105,11699,4629,6471],"delegatorTokens":9999999969287}},{"ix":48,"action":{"kind":"Deliver","chain":"provider","numPackets":3},"partialState":{"h":9,"t":54,"tokens":[9105,12699,5629,7471],"delegation":[8105,11699,4629,6471],"delegatorTokens":9999999969287,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":49,"action":{"kind":"Undelegate","val":2,"amt":1930},"partialState":{"h":9,"t":54,"tokens":[9105,12699,3699,7471],"delegation":[8105,11699,2699,6471],"delegatorTokens":9999999969287}},{"ix":50,"action":{"kind":"Undelegate","val":2,"amt":2999},"partialState":{"h":9,"t":54,"tokens":[9105,12699,3699,7471],"delegation":[8105,11699,2699,6471],"delegatorTokens":9999999969287}},{"ix":51,"action":{"kind":"ConsumerSlash","val":2,"infractionHeight":0,"isDowntime":true},"partialState":{"h":3,"t":18,"outstandingDowntime":[true,false,true,false]}},{"ix":52,"action":{"kind":"Delegate","val":3,"amt":4668},"partialState":{"h":9,"t":54,"tokens":[9105,12699,3699,12139],"delegation":[8105,11699,2699,11139],"delegatorTokens":9999999964619}},{"ix":53,"action":{"kind":"ConsumerSlash","val":2,"infractionHeight":2,"isDowntime":false},"partialState":{"h":3,"t":18,"outstandingDowntime":[true,false,true,false]}},{"ix":54,"action":{"kind":"Delegate","val":0,"amt":3332},"partialState":{"h":9,"t":54,"tokens":[12437,12699,3699,12139],"delegation":[11437,11699,2699,11139],"delegatorTokens":9999999961287}},{"ix":55,"action":{"kind":"Deliver","chain":"provider","numPackets":6},"partialState":{"h":9,"t":54,"tokens":[12437,12699,3699,12139],"delegation":[11437,11699,2699,11139],"delegatorTokens":9999999961287,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":56,"action":{"kind":"Deliver","chain":"provider","numPackets":2},"partialState":{"h":9,"t":54,"tokens":[12437,12699,3699,12139],"delegation":[11437,11699,2699,11139],"delegatorTokens":9999999961287,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":57,"action":{"kind":"Undelegate","val":3,"amt":2288},"partialState":{"h":9,"t":54,"tokens":[12437,12699,3699,9851],"delegation":[11437,11699,2699,8851],"delegatorTokens":9999999961287}},{"ix":58,"action":{"kind":"ConsumerSlash","val":3,"infractionHeight":0,"isDowntime":true},"partialState":{"h":3,"t":18,"outstandingDowntime":[true,false,true,true]}},{"ix":59,"action":{"kind":"Delegate","val":3,"amt":4707},"partialState":{"h":9,"t":54,"tokens":[12437,12699,3699,14558],"delegation":[11437,11699,2699,13558],"delegatorTokens":9999999956580}},{"ix":60,"action":{"kind":"Deliver","chain":"provider","numPackets":1},"partialState":{"h":9,"t":54,"tokens":[12437,12699,3699,14558],"delegation":[11437,11699,2699,13558],"delegatorTokens":9999999956580,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":61,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":4,"t":24,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[true,false,true,true]}},{"ix":62,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":5,"t":30,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[true,false,true,true]}},{"ix":63,"action":{"kind":"Delegate","val":0,"amt":4160},"partialState":{"h":9,"t":54,"tokens":[16597,12699,3699,14558],"delegation":[15597,11699,2699,13558],"delegatorTokens":9999999952420}},{"ix":64,"action":{"kind":"Delegate","val":0,"amt":1515},"partialState":{"h":9,"t":54,"tokens":[18112,12699,3699,14558],"delegation":[17112,11699,2699,13558],"delegatorTokens":9999999950905}},{"ix":65,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":6,"t":36,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[true,false,true,true]}},{"ix":66,"action":{"kind":"Deliver","chain":"consumer","numPackets":3},"partialState":{"h":6,"t":36,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[true,false,true,true]}},{"ix":67,"action":{"kind":"Undelegate","val":3,"amt":3480},"partialState":{"h":9,"t":54,"tokens":[18112,12699,3699,11078],"delegation":[17112,11699,2699,10078],"delegatorTokens":9999999950905}},{"ix":68,"action":{"kind":"Delegate","val":0,"amt":1499},"partialState":{"h":9,"t":54,"tokens":[19611,12699,3699,11078],"delegation":[18611,11699,2699,10078],"delegatorTokens":9999999949406}},{"ix":69,"action":{"kind":"Deliver","chain":"provider","numPackets":1},"partialState":{"h":9,"t":54,"tokens":[19611,12699,3699,11078],"delegation":[18611,11699,2699,10078],"delegatorTokens":9999999949406,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":70,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":71,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":72,"action":{"kind":"Delegate","val":3,"amt":1380},"partialState":{"h":9,"t":54,"tokens":[19611,12699,3699,12458],"delegation":[18611,11699,2699,11458],"delegatorTokens":9999999948026}},{"ix":73,"action":{"kind":"Delegate","val":1,"amt":1464},"partialState":{"h":9,"t":54,"tokens":[19611,14163,3699,12458],"delegation":[18611,13163,2699,11458],"delegatorTokens":9999999946562}},{"ix":74,"action":{"kind":"Delegate","val":2,"amt":3459},"partialState":{"h":9,"t":54,"tokens":[19611,14163,7158,12458],"delegation":[18611,13163,6158,11458],"delegatorTokens":9999999943103}},{"ix":75,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":76,"action":{"kind":"Delegate","val":2,"amt":4352},"partialState":{"h":9,"t":54,"tokens":[19611,14163,11510,12458],"delegation":[18611,13163,10510,11458],"delegatorTokens":9999999938751}},{"ix":77,"action":{"kind":"Undelegate","val":0,"amt":2115},"partialState":{"h":9,"t":54,"tokens":[17496,14163,11510,12458],"delegation":[16496,13163,10510,11458],"delegatorTokens":9999999938751}},{"ix":78,"action":{"kind":"Delegate","val":1,"amt":3526},"partialState":{"h":9,"t":54,"tokens":[17496,17689,11510,12458],"delegation":[16496,16689,10510,11458],"delegatorTokens":9999999935225}},{"ix":79,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":80,"action":{"kind":"Deliver","chain":"provider","numPackets":4},"partialState":{"h":9,"t":54,"tokens":[17496,17689,11510,12458],"delegation":[16496,16689,10510,11458],"delegatorTokens":9999999935225,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":81,"action":{"kind":"Deliver","chain":"provider","numPackets":5},"partialState":{"h":9,"t":54,"tokens":[17496,17689,11510,12458],"delegation":[16496,16689,10510,11458],"delegatorTokens":9999999935225,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":82,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":7,"t":42,"consumerPower":[11109,9313,null,null],"outstandingDowntime":[true,false,true,true]}},{"ix":83,"action":{"kind":"Undelegate","val":3,"amt":3709},"partialState":{"h":9,"t":54,"tokens":[17496,17689,11510,8749],"delegation":[16496,16689,10510,7749],"delegatorTokens":9999999935225}},{"ix":84,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":10,"t":60,"tokens":[17496,17689,11510,8749],"delegation":[16496,16689,10510,7749],"delegatorTokens":9999999935225,"jailed":[1000000000000053,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":85,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":11,"t":66,"tokens":[17496,17689,11510,8749],"delegation":[16496,16689,10510,7749],"delegatorTokens":9999999935225,"jailed":[1000000000000053,null,null,null],"status":["unbonding","bonded","bonded","unbonded"]}},{"ix":86,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":12,"t":72,"tokens":[17496,17689,11510,8749],"delegation":[16496,16689,10510,7749],"delegatorTokens":9999999935225,"jailed":[1000000000000053,null,null,null],"status":["unbonding","bonded","bonded","unbonded"]}},{"ix":87,"action":{"kind":"Delegate","val":2,"amt":2790},"partialState":{"h":12,"t":72,"tokens":[17496,17689,14300,8749],"delegation":[16496,16689,13300,7749],"delegatorTokens":9999999932435}},{"ix":88,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":89,"action":{"kind":"Undelegate","val":3,"amt":2748},"partialState":{"h":12,"t":72,"tokens":[17496,17689,14300,6001],"delegation":[16496,16689,13300,5001],"delegatorTokens":9999999932435}},{"ix":90,"action":{"kind":"Delegate","val":2,"amt":3815},"partialState":{"h":12,"t":72,"tokens":[17496,17689,18115,6001],"delegation":[16496,16689,17115,5001],"delegatorTokens":9999999928620}},{"ix":91,"action":{"kind":"Deliver","chain":"provider","numPackets":6},"partialState":{"h":12,"t":72,"tokens":[17496,17689,18115,6001],"delegation":[16496,16689,17115,5001],"delegatorTokens":9999999928620,"jailed":[1000000000000053,null,null,null],"status":["unbonding","bonded","bonded","unbonded"]}},{"ix":92,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":93,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":8,"t":48,"consumerPower":[11109,9313,null,null],"outstandingDowntime":[true,false,true,true]}},{"ix":94,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":95,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":96,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":97,"action":{"kind":"Deliver","chain":"provider","numPackets":1},"partialState":{"h":12,"t":72,"tokens":[17496,17689,18115,6001],"delegation":[16496,16689,17115,5001],"delegatorTokens":9999999928620,"jailed":[1000000000000053,null,null,null],"status":["unbonding","bonded","bonded","unbonded"]}},{"ix":98,"action":{"kind":"Delegate","val":1,"amt":2899},"partialState":{"h":12,"t":72,"tokens":[17496,20588,18115,6001],"delegation":[16496,19588,17115,5001],"delegatorTokens":9999999925721}},{"ix":99,"action":{"kind":"Deliver","chain":"provider","numPackets":3},"partialState":{"h":12,"t":72,"tokens":[17496,20588,18115,6001],"delegation":[16496,19588,17115,5001],"delegatorTokens":9999999925721,"jailed":[1000000000000053,null,null,null],"status":["unbonding","bonded","bonded","unbonded"]}},{"ix":100,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":9,"t":54,"consumerPower":[11109,9313,null,null],"outstandingDowntime":[true,false,true,true]}},{"ix":101,"action":{"kind":"Delegate","val":3,"amt":1647},"partialState":{"h":12,"t":72,"tokens":[17496,20588,18115,7648],"delegation":[16496,19588,17115,6648],"delegatorTokens":9999999924074}},{"ix":102,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":13,"t":78,"tokens":[17496,20588,18115,7648],"delegation":[16496,19588,17115,6648],"delegatorTokens":9999999924074,"jailed":[1000000000000053,null,null,null],"status":["unbonding","bonded","bonded","unbonded"]}},{"ix":103,"action":{"kind":"Undelegate","val":0,"amt":3885},"partialState":{"h":13,"t":78,"tokens":[13611,20588,18115,7648],"delegation":[12611,19588,17115,6648],"delegatorTokens":9999999924074}},{"ix":104,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":10,"t":60,"consumerPower":[11109,9313,null,null],"outstandingDowntime":[true,false,true,true]}},{"ix":105,"action":{"kind":"Delegate","val":0,"amt":2490},"partialState":{"h":13,"t":78,"tokens":[16101,20588,18115,7648],"delegation":[15101,19588,17115,6648],"delegatorTokens":9999999921584}},{"ix":106,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":14,"t":84,"tokens":[16101,20588,18115,7648],"delegation":[15101,19588,17115,6648],"delegatorTokens":9999999921584,"jailed":[1000000000000053,null,null,null],"status":["unbonding","bonded","bonded","unbonded"]}},{"ix":107,"action":{"kind":"Deliver","chain":"provider","numPackets":3},"partialState":{"h":14,"t":84,"tokens":[16101,20588,18115,7648],"delegation":[15101,19588,17115,6648],"delegatorTokens":9999999921584,"jailed":[1000000000000053,null,null,null],"status":["unbonding","bonded","bonded","unbonded"]}},{"ix":108,"action":{"kind":"Undelegate","val":3,"amt":1874},"partialState":{"h":14,"t":84,"tokens":[16101,20588,18115,5774],"delegation":[15101,19588,17115,4774],"delegatorTokens":9999999921584}},{"ix":109,"action":{"kind":"Undelegate","val":3,"amt":2449},"partialState":{"h":14,"t":84,"tokens":[16101,20588,18115,3325],"delegation":[15101,19588,17115,2325],"delegatorTokens":9999999921584}},{"ix":110,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":15,"t":90,"tokens":[16101,20588,18115,3325],"delegation":[15101,19588,17115,2325],"delegatorTokens":9999999921584,"jailed":[1000000000000053,null,null,null],"status":["unbonding","bonded","bonded","unbonded"]}},{"ix":111,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":112,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":16,"t":96,"tokens":[16101,20588,18115,3325],"delegation":[15101,19588,17115,2325],"delegatorTokens":9999999921584,"jailed":[1000000000000053,null,null,null],"status":["unbonding","bonded","bonded","unbonded"]}},{"ix":113,"action":{"kind":"Deliver","chain":"provider","numPackets":4},"partialState":{"h":16,"t":96,"tokens":[16101,20588,18115,3325],"delegation":[15101,19588,17115,2325],"delegatorTokens":9999999921584,"jailed":[1000000000000053,null,null,null],"status":["unbonding","bonded","bonded","unbonded"]}},{"ix":114,"action":{"kind":"Undelegate","val":0,"amt":1504},"partialState":{"h":16,"t":96,"tokens":[14597,20588,18115,3325],"delegation":[13597,19588,17115,2325],"delegatorTokens":9999999921584}},{"ix":115,"action":{"kind":"Undelegate","val":2,"amt":2570},"partialState":{"h":16,"t":96,"tokens":[14597,20588,15545,3325],"delegation":[13597,19588,14545,2325],"delegatorTokens":9999999921584}},{"ix":116,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":17,"t":102,"tokens":[14597,20588,15545,3325],"delegation":[13597,19588,14545,2325],"delegatorTokens":9999999921584,"jailed":[1000000000000053,null,null,null],"status":["unbonding","bonded","bonded","unbonded"]}},{"ix":117,"action":{"kind":"Undelegate","val":0,"amt":4413},"partialState":{"h":17,"t":102,"tokens":[10184,20588,15545,3325],"delegation":[9184,19588,14545,2325],"delegatorTokens":9999999921584}},{"ix":118,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":119,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":120,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":121,"action":{"kind":"Deliver","chain":"consumer","numPackets":4},"partialState":{"h":10,"t":60,"consumerPower":[11109,9313,null,null],"outstandingDowntime":[false,false,true,true]}},{"ix":122,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":123,"action":{"kind":"Undelegate","val":0,"amt":2435},"partialState":{"h":17,"t":102,"tokens":[7749,20588,15545,3325],"delegation":[6749,19588,14545,2325],"delegatorTokens":9999999921584}},{"ix":124,"action":{"kind":"Delegate","val":1,"amt":3726},"partialState":{"h":17,"t":102,"tokens":[7749,24314,15545,3325],"delegation":[6749,23314,14545,2325],"delegatorTokens":9999999917858}},{"ix":125,"action":{"kind":"Undelegate","val":2,"amt":1405},"partialState":{"h":17,"t":102,"tokens":[7749,24314,14140,3325],"delegation":[6749,23314,13140,2325],"delegatorTokens":9999999917858}},{"ix":126,"action":{"kind":"Deliver","chain":"provider","numPackets":1},"partialState":{"h":17,"t":102,"tokens":[7749,24314,14140,3325],"delegation":[6749,23314,13140,2325],"delegatorTokens":9999999917858,"jailed":[1000000000000053,null,null,null],"status":["unbonding","bonded","bonded","unbonded"]}},{"ix":127,"action":{"kind":"Deliver","chain":"consumer","numPackets":6},"partialState":{"h":10,"t":60,"consumerPower":[11109,9313,null,null],"outstandingDowntime":[false,false,true,true]}},{"ix":128,"action":{"kind":"Deliver","chain":"provider","numPackets":3},"partialState":{"h":17,"t":102,"tokens":[7749,24314,14140,3325],"delegation":[6749,23314,13140,2325],"delegatorTokens":9999999917858,"jailed":[1000000000000053,null,null,null],"status":["unbonding","bonded","bonded","unbonded"]}},{"ix":129,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":130,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":131,"action":{"kind":"Delegate","val":0,"amt":1575},"partialState":{"h":17,"t":102,"tokens":[9324,24314,14140,3325],"delegation":[8324,23314,13140,2325],"delegatorTokens":9999999916283}},{"ix":132,"action":{"kind":"Undelegate","val":1,"amt":4106},"partialState":{"h":17,"t":102,"tokens":[9324,20208,14140,3325],"delegation":[8324,19208,13140,2325],"delegatorTokens":9999999916283}},{"ix":133,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":134,"action":{"kind":"Undelegate","val":3,"amt":2226},"partialState":{"h":17,"t":102,"tokens":[9324,20208,14140,1099],"delegation":[8324,19208,13140,99],"delegatorTokens":9999999916283}},{"ix":135,"action":{"kind":"Deliver","chain":"provider","numPackets":4},"partialState":{"h":17,"t":102,"tokens":[9324,20208,14140,1099],"delegation":[8324,19208,13140,99],"delegatorTokens":9999999916283,"jailed":[1000000000000053,null,null,null],"status":["unbonding","bonded","bonded","unbonded"]}},{"ix":136,"action":{"kind":"Delegate","val":0,"amt":4393},"partialState":{"h":17,"t":102,"tokens":[13717,20208,14140,1099],"delegation":[12717,19208,13140,99],"delegatorTokens":9999999911890}},{"ix":137,"action":{"kind":"Undelegate","val":0,"amt":1399},"partialState":{"h":17,"t":102,"tokens":[12318,20208,14140,1099],"delegation":[11318,19208,13140,99],"delegatorTokens":9999999911890}},{"ix":138,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":139,"action":{"kind":"Undelegate","val":0,"amt":1818},"partialState":{"h":17,"t":102,"tokens":[10500,20208,14140,1099],"delegation":[9500,19208,13140,99],"delegatorTokens":9999999911890}},{"ix":140,"action":{"kind":"Deliver","chain":"consumer","numPackets":5},"partialState":{"h":10,"t":60,"consumerPower":[11109,9313,null,null],"outstandingDowntime":[false,false,true,true]}},{"ix":141,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":142,"action":{"kind":"Delegate","val":1,"amt":3059},"partialState":{"h":17,"t":102,"tokens":[10500,23267,14140,1099],"delegation":[9500,22267,13140,99],"delegatorTokens":9999999908831}},{"ix":143,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":11,"t":66,"consumerPower":[null,20588,18115,null],"outstandingDowntime":[false,false,true,true]}},{"ix":144,"action":{"kind":"Undelegate","val":1,"amt":2437},"partialState":{"h":17,"t":102,"tokens":[10500,20830,14140,1099],"delegation":[9500,19830,13140,99],"delegatorTokens":9999999908831}},{"ix":145,"action":{"kind":"Undelegate","val":0,"amt":3489},"partialState":{"h":17,"t":102,"tokens":[7011,20830,14140,1099],"delegation":[6011,19830,13140,99],"delegatorTokens":9999999908831}},{"ix":146,"action":{"kind":"Delegate","val":0,"amt":3876},"partialState":{"h":17,"t":102,"tokens":[10887,20830,14140,1099],"delegation":[9887,19830,13140,99],"delegatorTokens":9999999904955}},{"ix":147,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":148,"action":{"kind":"Undelegate","val":3,"amt":1925},"partialState":{"h":17,"t":102,"tokens":[10887,20830,14140,1099],"delegation":[9887,19830,13140,99],"delegatorTokens":9999999904955}},{"ix":149,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":150,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":151,"action":{"kind":"Deliver","chain":"consumer","numPackets":6},"partialState":{"h":11,"t":66,"consumerPower":[null,20588,18115,null],"outstandingDowntime":[false,false,true,true]}},{"ix":152,"action":{"kind":"Delegate","val":1,"amt":2171},"partialState":{"h":17,"t":102,"tokens":[10887,23001,14140,1099],"delegation":[9887,22001,13140,99],"delegatorTokens":9999999902784}},{"ix":153,"action":{"kind":"Deliver","chain":"provider","numPackets":6},"partialState":{"h":17,"t":102,"tokens":[10887,23001,14140,1099],"delegation":[9887,22001,13140,99],"delegatorTokens":9999999902784,"jailed":[1000000000000053,null,null,null],"status":["unbonding","bonded","bonded","unbonded"]}},{"ix":154,"action":{"kind":"Delegate","val":1,"amt":2403},"partialState":{"h":17,"t":102,"tokens":[10887,25404,14140,1099],"delegation":[9887,24404,13140,99],"delegatorTokens":9999999900381}},{"ix":155,"action":{"kind":"Undelegate","val":3,"amt":4719},"partialState":{"h":17,"t":102,"tokens":[10887,25404,14140,1099],"delegation":[9887,24404,13140,99],"delegatorTokens":9999999900381}},{"ix":156,"action":{"kind":"Deliver","chain":"consumer","numPackets":2},"partialState":{"h":11,"t":66,"consumerPower":[null,20588,18115,null],"outstandingDowntime":[false,false,true,true]}},{"ix":157,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":158,"action":{"kind":"Delegate","val":3,"amt":3139},"partialState":{"h":17,"t":102,"tokens":[10887,25404,14140,4238],"delegation":[9887,24404,13140,3238],"delegatorTokens":9999999897242}},{"ix":159,"action":{"kind":"Delegate","val":3,"amt":1967},"partialState":{"h":17,"t":102,"tokens":[10887,25404,14140,6205],"delegation":[9887,24404,13140,5205],"delegatorTokens":9999999895275}},{"ix":160,"action":{"kind":"Delegate","val":3,"amt":3725},"partialState":{"h":17,"t":102,"tokens":[10887,25404,14140,9930],"delegation":[9887,24404,13140,8930],"delegatorTokens":9999999891550}},{"ix":161,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":12,"t":72,"consumerPower":[null,20588,18115,null],"outstandingDowntime":[false,false,true,true]}},{"ix":162,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":163,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":164,"action":{"kind":"Deliver","chain":"provider","numPackets":5},"partialState":{"h":17,"t":102,"tokens":[10887,25404,14140,9930],"delegation":[9887,24404,13140,8930],"delegatorTokens":9999999891550,"jailed":[1000000000000053,null,null,null],"status":["unbonding","bonded","bonded","unbonded"]}},{"ix":165,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":166,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":13,"t":78,"consumerPower":[null,20588,18115,null],"outstandingDowntime":[false,false,true,true]}},{"ix":167,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":18,"t":108,"tokens":[10887,25404,14140,9930],"delegation":[9887,24404,13140,8930],"delegatorTokens":9999999891550,"jailed":[1000000000000053,null,null,null],"status":["unbonding","bonded","bonded","unbonded"]}},{"ix":168,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":19,"t":114,"tokens":[10887,25404,14140,9930],"delegation":[9887,24404,13140,8930],"delegatorTokens":9999999891550,"jailed":[1000000000000053,null,null,null],"status":["unbonding","bonded","bonded","unbonded"]}},{"ix":169,"action":{"kind":"Delegate","val":3,"amt":1980},"partialState":{"h":19,"t":114,"tokens":[10887,25404,14140,11910],"delegation":[9887,24404,13140,10910],"delegatorTokens":9999999889570}},{"ix":170,"action":{"kind":"Delegate","val":3,"amt":3406},"partialState":{"h":19,"t":114,"tokens":[10887,25404,14140,15316],"delegation":[9887,24404,13140,14316],"delegatorTokens":9999999886164}},{"ix":171,"action":{"kind":"Delegate","val":2,"amt":2377},"partialState":{"h":19,"t":114,"tokens":[10887,25404,16517,15316],"delegation":[9887,24404,15517,14316],"delegatorTokens":9999999883787}},{"ix":172,"action":{"kind":"Delegate","val":0,"amt":4049},"partialState":{"h":19,"t":114,"tokens":[14936,25404,16517,15316],"delegation":[13936,24404,15517,14316],"delegatorTokens":9999999879738}},{"ix":173,"action":{"kind":"Undelegate","val":3,"amt":4411},"partialState":{"h":19,"t":114,"tokens":[14936,25404,16517,10905],"delegation":[13936,24404,15517,9905],"delegatorTokens":9999999879738}},{"ix":174,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":14,"t":84,"consumerPower":[null,20588,18115,null],"outstandingDowntime":[false,false,true,true]}},{"ix":175,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":15,"t":90,"consumerPower":[null,20588,18115,null],"outstandingDowntime":[false,false,true,true]}},{"ix":176,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":16,"t":96,"consumerPower":[null,20588,18115,null],"outstandingDowntime":[false,false,true,true]}},{"ix":177,"action":{"kind":"Deliver","chain":"provider","numPackets":2},"partialState":{"h":19,"t":114,"tokens":[14936,25404,16517,10905],"delegation":[13936,24404,15517,9905],"delegatorTokens":9999999879738,"jailed":[1000000000000053,null,null,null],"status":["unbonding","bonded","bonded","unbonded"]}},{"ix":178,"action":{"kind":"Deliver","chain":"provider","numPackets":2},"partialState":{"h":19,"t":114,"tokens":[14936,25404,16517,10905],"delegation":[13936,24404,15517,9905],"delegatorTokens":9999999879738,"jailed":[1000000000000053,null,null,null],"status":["unbonding","bonded","bonded","unbonded"]}},{"ix":179,"action":{"kind":"Deliver","chain":"provider","numPackets":5},"partialState":{"h":19,"t":114,"tokens":[14936,25404,16517,10905],"delegation":[13936,24404,15517,9905],"delegatorTokens":9999999879738,"jailed":[1000000000000053,null,null,null],"status":["unbonding","bonded","bonded","unbonded"]}},{"ix":180,"action":{"kind":"Delegate","val":0,"amt":4040},"partialState":{"h":19,"t":114,"tokens":[18976,25404,16517,10905],"delegation":[17976,24404,15517,9905],"delegatorTokens":9999999875698}},{"ix":181,"action":{"kind":"Delegate","val":2,"amt":4466},"partialState":{"h":19,"t":114,"tokens":[18976,25404,20983,10905],"delegation":[17976,24404,19983,9905],"delegatorTokens":9999999871232}},{"ix":182,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":183,"action":{"kind":"Delegate","val":1,"amt":4426},"partialState":{"h":19,"t":114,"tokens":[18976,29830,20983,10905],"delegation":[17976,28830,19983,9905],"delegatorTokens":9999999866806}},{"ix":184,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":185,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":17,"t":102,"consumerPower":[null,20588,18115,null],"outstandingDowntime":[false,false,true,true]}},{"ix":186,"action":{"kind":"Undelegate","val":2,"amt":3296},"partialState":{"h":19,"t":114,"tokens":[18976,29830,17687,10905],"delegation":[17976,28830,16687,9905],"delegatorTokens":9999999866806}},{"ix":187,"action":{"kind":"Deliver","chain":"provider","numPackets":2},"partialState":{"h":19,"t":114,"tokens":[18976,29830,17687,10905],"delegation":[17976,28830,16687,9905],"delegatorTokens":9999999866806,"jailed":[1000000000000053,null,null,null],"status":["unbonding","bonded","bonded","unbonded"]}},{"ix":188,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":189,"action":{"kind":"Delegate","val":2,"amt":2593},"partialState":{"h":19,"t":114,"tokens":[18976,29830,20280,10905],"delegation":[17976,28830,19280,9905],"delegatorTokens":9999999864213}},{"ix":190,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":20,"t":120,"tokens":[18976,29830,20280,10905],"delegation":[17976,28830,19280,9905],"delegatorTokens":9999999865767,"jailed":[1000000000000053,null,null,null],"status":["unbonding","bonded","bonded","unbonded"]}},{"ix":191,"action":{"kind":"Deliver","chain":"consumer","numPackets":4},"partialState":{"h":17,"t":102,"consumerPower":[null,20588,18115,null],"outstandingDowntime":[false,false,true,true]}},{"ix":192,"action":{"kind":"Undelegate","val":3,"amt":4597},"partialState":{"h":20,"t":120,"tokens":[18976,29830,20280,6308],"delegation":[17976,28830,19280,5308],"delegatorTokens":9999999865767}},{"ix":193,"action":{"kind":"Deliver","chain":"provider","numPackets":1},"partialState":{"h":20,"t":120,"tokens":[18976,29830,20280,6308],"delegation":[17976,28830,19280,5308],"delegatorTokens":9999999865767,"jailed":[1000000000000053,null,null,null],"status":["unbonding","bonded","bonded","unbonded"]}},{"ix":194,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":195,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":196,"action":{"kind":"Deliver","chain":"provider","numPackets":4},"partialState":{"h":20,"t":120,"tokens":[18976,29830,20280,6308],"delegation":[17976,28830,19280,5308],"delegatorTokens":9999999865767,"jailed":[1000000000000053,null,null,null],"status":["unbonding","bonded","bonded","unbonded"]}},{"ix":197,"action":{"kind":"Undelegate","val":2,"amt":1068},"partialState":{"h":20,"t":120,"tokens":[18976,29830,19212,6308],"delegation":[17976,28830,18212,5308],"delegatorTokens":9999999865767}},{"ix":198,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":199,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}}],"events":["insufficient_shares","send_downtime_slash_request","send_double_sign_slash_request","insufficient_shares","send_downtime_slash_request","downtime_slash_request_outstanding","send_vsc_without_downtime_ack","send_vsc_without_downtime_ack","downtime_slash_request_outstanding","send_vsc_without_downtime_ack","send_vsc_without_downtime_ack","send_double_sign_slash_request","send_vsc_without_downtime_ack","insufficient_shares","downtime_slash_request_outstanding","send_double_sign_slash_request","send_downtime_slash_request","receive_double_sign_slash_request","receive_double_sign_slash_request","receive_double_sign_slash_request","consumer_update_val","consumer_update_val","receive_downtime_slash_request","jail","receive_slash_request_unbonded","receive_slash_request_unbonded","send_vsc_with_downtime_ack","more_than_one_third_val_power_change","send_vsc_without_downtime_ack","send_vsc_without_downtime_ack","some_undels_expired_but_not_completed","send_vsc_not_because_change","send_vsc_without_downtime_ack","send_vsc_not_because_change","send_vsc_without_downtime_ack","some_undels_expired_but_not_completed","send_vsc_without_downtime_ack","receive_downtime_slash_ack","consumer_del_val","consumer_update_val","consumer_add_val","insufficient_shares","insufficient_shares","some_undels_expired_but_not_completed","send_vsc_without_downtime_ack","consumer_send_maturation","consumer_send_maturation","consumer_send_maturation","complete_undel_immediate","send_vsc_without_downtime_ack"]},{"meta":{"commit":"7ffd0c04e4205cbc9caf212abfe6c59ee43153bf"},"constants":{"P":"provider","C":"consumer","UNBONDING_SECONDS_P":70,"UNBONDING_SECONDS_C":50,"TRUSTING_SECONDS":49,"NUM_VALIDATORS":4,"MAX_VALIDATORS":2,"SLASH_DOUBLESIGN":0,"SLASH_DOWNTIME":0,"JAIL_SECONDS":999999999999999,"BLOCK_SECONDS":6,"INITIAL_DELEGATOR_TOKENS":10000000000000,"DELEGATE_AMT_MIN":1000,"DELEGATE_AMT_MAX":5000,"UNDELEGATE_AMT_MIN":1000,"UNDELEGATE_AMT_MAX":5000,"ISDOWNTIME_PROBABILITY":0.5,"MAX_NUM_PACKETS_FOR_DELIVER":6},"actions":[{"ix":0,"action":{"kind":"ConsumerSlash","val":3,"infractionHeight":0,"isDowntime":true},"partialState":{"h":1,"t":6,"outstandingDowntime":[false,false,false,true]}},{"ix":1,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":2,"action":{"kind":"ConsumerSlash","val":2,"infractionHeight":0,"isDowntime":true},"partialState":{"h":1,"t":6,"outstandingDowntime":[false,false,true,true]}},{"ix":3,"action":{"kind":"Deliver","chain":"provider","numPackets":6},"partialState":{"h":1,"t":6,"tokens":[5000,4000,3000,2000],"delegation":[4000,3000,2000,1000],"delegatorTokens":10000000000000,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":4,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":5,"action":{"kind":"Undelegate","val":3,"amt":3677},"partialState":{"h":1,"t":6,"tokens":[5000,4000,3000,2000],"delegation":[4000,3000,2000,1000],"delegatorTokens":10000000000000}},{"ix":6,"action":{"kind":"ConsumerSlash","val":3,"infractionHeight":0,"isDowntime":false},"partialState":{"h":1,"t":6,"outstandingDowntime":[false,false,true,true]}},{"ix":7,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":8,"action":{"kind":"Undelegate","val":1,"amt":3374},"partialState":{"h":1,"t":6,"tokens":[5000,4000,3000,2000],"delegation":[4000,3000,2000,1000],"delegatorTokens":10000000000000}},{"ix":9,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":10,"action":{"kind":"Deliver","chain":"consumer","numPackets":2},"partialState":{"h":1,"t":6,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,false,true,true]}},{"ix":11,"action":{"kind":"Deliver","chain":"consumer","numPackets":4},"partialState":{"h":1,"t":6,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,false,true,true]}},{"ix":12,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":2,"t":12,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,false,true,true]}},{"ix":13,"action":{"kind":"Undelegate","val":3,"amt":2546},"partialState":{"h":1,"t":6,"tokens":[5000,4000,3000,2000],"delegation":[4000,3000,2000,1000],"delegatorTokens":10000000000000}},{"ix":14,"action":{"kind":"Deliver","chain":"consumer","numPackets":6},"partialState":{"h":2,"t":12,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,false,true,true]}},{"ix":15,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":2,"t":12,"tokens":[5000,4000,3000,2000],"delegation":[4000,3000,2000,1000],"delegatorTokens":10000000000000,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":16,"action":{"kind":"Delegate","val":0,"amt":2798},"partialState":{"h":2,"t":12,"tokens":[7798,4000,3000,2000],"delegation":[6798,3000,2000,1000],"delegatorTokens":9999999997202}},{"ix":17,"action":{"kind":"ConsumerSlash","val":2,"infractionHeight":1,"isDowntime":false},"partialState":{"h":2,"t":12,"outstandingDowntime":[false,false,true,true]}},{"ix":18,"action":{"kind":"Deliver","chain":"consumer","numPackets":2},"partialState":{"h":2,"t":12,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,false,true,true]}},{"ix":19,"action":{"kind":"Delegate","val":2,"amt":2775},"partialState":{"h":2,"t":12,"tokens":[7798,4000,5775,2000],"delegation":[6798,3000,4775,1000],"delegatorTokens":9999999994427}},{"ix":20,"action":{"kind":"Delegate","val":1,"amt":1343},"partialState":{"h":2,"t":12,"tokens":[7798,5343,5775,2000],"delegation":[6798,4343,4775,1000],"delegatorTokens":9999999993084}},{"ix":21,"action":{"kind":"ConsumerSlash","val":2,"infractionHeight":1,"isDowntime":true},"partialState":{"h":2,"t":12,"outstandingDowntime":[false,false,true,true]}},{"ix":22,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":23,"action":{"kind":"Delegate","val":1,"amt":2512},"partialState":{"h":2,"t":12,"tokens":[7798,7855,5775,2000],"delegation":[6798,6855,4775,1000],"delegatorTokens":9999999990572}},{"ix":24,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":3,"t":18,"tokens":[7798,7855,5775,2000],"delegation":[6798,6855,4775,1000],"delegatorTokens":9999999990572,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":25,"action":{"kind":"Deliver","chain":"consumer","numPackets":2},"partialState":{"h":2,"t":12,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,false,true,true]}},{"ix":26,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":3,"t":18,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,false,true,true]}},{"ix":27,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":28,"action":{"kind":"Delegate","val":0,"amt":4578},"partialState":{"h":3,"t":18,"tokens":[12376,7855,5775,2000],"delegation":[11376,6855,4775,1000],"delegatorTokens":9999999985994}},{"ix":29,"action":{"kind":"ConsumerSlash","val":3,"infractionHeight":1,"isDowntime":true},"partialState":{"h":3,"t":18,"outstandingDowntime":[false,false,true,true]}},{"ix":30,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":4,"t":24,"tokens":[12376,7855,5775,2000],"delegation":[11376,6855,4775,1000],"delegatorTokens":9999999985994,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":31,"action":{"kind":"Delegate","val":3,"amt":4628},"partialState":{"h":4,"t":24,"tokens":[12376,7855,5775,6628],"delegation":[11376,6855,4775,5628],"delegatorTokens":9999999981366}},{"ix":32,"action":{"kind":"ConsumerSlash","val":2,"infractionHeight":1,"isDowntime":true},"partialState":{"h":3,"t":18,"outstandingDowntime":[false,false,true,true]}},{"ix":33,"action":{"kind":"ConsumerSlash","val":2,"infractionHeight":0,"isDowntime":false},"partialState":{"h":3,"t":18,"outstandingDowntime":[false,false,true,true]}},{"ix":34,"action":{"kind":"ConsumerSlash","val":1,"infractionHeight":2,"isDowntime":true},"partialState":{"h":3,"t":18,"outstandingDowntime":[false,true,true,true]}},{"ix":35,"action":{"kind":"Undelegate","val":3,"amt":4633},"partialState":{"h":4,"t":24,"tokens":[12376,7855,5775,1995],"delegation":[11376,6855,4775,995],"delegatorTokens":9999999981366}},{"ix":36,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":5,"t":30,"tokens":[12376,7855,5775,1995],"delegation":[11376,6855,4775,995],"delegatorTokens":9999999981366,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":37,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":4,"t":24,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,true,true,true]}},{"ix":38,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":5,"t":30,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,true,true,true]}},{"ix":39,"action":{"kind":"Undelegate","val":0,"amt":1581},"partialState":{"h":5,"t":30,"tokens":[10795,7855,5775,1995],"delegation":[9795,6855,4775,995],"delegatorTokens":9999999981366}},{"ix":40,"action":{"kind":"Deliver","chain":"consumer","numPackets":4},"partialState":{"h":5,"t":30,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,true,true,true]}},{"ix":41,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":6,"t":36,"tokens":[10795,7855,5775,1995],"delegation":[9795,6855,4775,995],"delegatorTokens":9999999981366,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":42,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":43,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":6,"t":36,"consumerPower":[12376,7855,null,null],"outstandingDowntime":[false,true,true,true]}},{"ix":44,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":7,"t":42,"consumerPower":[12376,7855,null,null],"outstandingDowntime":[false,true,true,true]}},{"ix":45,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":8,"t":48,"consumerPower":[12376,7855,null,null],"outstandingDowntime":[false,true,true,true]}},{"ix":46,"action":{"kind":"Undelegate","val":0,"amt":4618},"partialState":{"h":6,"t":36,"tokens":[6177,7855,5775,1995],"delegation":[5177,6855,4775,995],"delegatorTokens":9999999981366}},{"ix":47,"action":{"kind":"Delegate","val":3,"amt":3651},"partialState":{"h":6,"t":36,"tokens":[6177,7855,5775,5646],"delegation":[5177,6855,4775,4646],"delegatorTokens":9999999977715}},{"ix":48,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":49,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":9,"t":54,"consumerPower":[12376,7855,null,null],"outstandingDowntime":[false,true,true,true]}},{"ix":50,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":51,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":10,"t":60,"consumerPower":[12376,7855,null,null],"outstandingDowntime":[false,true,true,true]}},{"ix":52,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":11,"t":66,"consumerPower":[12376,7855,null,null],"outstandingDowntime":[false,true,true,true]}},{"ix":53,"action":{"kind":"Delegate","val":0,"amt":3899},"partialState":{"h":6,"t":36,"tokens":[10076,7855,5775,5646],"delegation":[9076,6855,4775,4646],"delegatorTokens":9999999973816}},{"ix":54,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":55,"action":{"kind":"Deliver","chain":"provider","numPackets":5},"partialState":{"h":6,"t":36,"tokens":[10076,7855,5775,5646],"delegation":[9076,6855,4775,4646],"delegatorTokens":9999999973816,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":56,"action":{"kind":"Undelegate","val":3,"amt":3520},"partialState":{"h":6,"t":36,"tokens":[10076,7855,5775,2126],"delegation":[9076,6855,4775,1126],"delegatorTokens":9999999973816}},{"ix":57,"action":{"kind":"Deliver","chain":"consumer","numPackets":4},"partialState":{"h":11,"t":66,"consumerPower":[12376,7855,null,null],"outstandingDowntime":[false,true,true,true]}},{"ix":58,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":12,"t":72,"consumerPower":[12376,7855,null,null],"outstandingDowntime":[false,true,true,true]}},{"ix":59,"action":{"kind":"Deliver","chain":"provider","numPackets":5},"partialState":{"h":6,"t":36,"tokens":[10076,7855,5775,2126],"delegation":[9076,6855,4775,1126],"delegatorTokens":9999999973816,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":60,"action":{"kind":"Undelegate","val":3,"amt":2306},"partialState":{"h":6,"t":36,"tokens":[10076,7855,5775,2126],"delegation":[9076,6855,4775,1126],"delegatorTokens":9999999973816}},{"ix":61,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":7,"t":42,"tokens":[10076,7855,5775,2126],"delegation":[9076,6855,4775,1126],"delegatorTokens":9999999973816,"jailed":[null,1000000000000035,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":62,"action":{"kind":"Delegate","val":2,"amt":4693},"partialState":{"h":7,"t":42,"tokens":[10076,7855,10468,2126],"delegation":[9076,6855,9468,1126],"delegatorTokens":9999999969123}},{"ix":63,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":8,"t":48,"tokens":[10076,7855,10468,2126],"delegation":[9076,6855,9468,1126],"delegatorTokens":9999999969123,"jailed":[null,1000000000000035,null,null],"status":["bonded","unbonding","bonded","unbonded"]}},{"ix":64,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":9,"t":54,"tokens":[10076,7855,10468,2126],"delegation":[9076,6855,9468,1126],"delegatorTokens":9999999969123,"jailed":[null,1000000000000035,null,null],"status":["bonded","unbonding","bonded","unbonded"]}},{"ix":65,"action":{"kind":"Deliver","chain":"provider","numPackets":1},"partialState":{"h":9,"t":54,"tokens":[10076,7855,10468,2126],"delegation":[9076,6855,9468,1126],"delegatorTokens":9999999969123,"jailed":[null,1000000000000035,null,null],"status":["bonded","unbonding","bonded","unbonded"]}},{"ix":66,"action":{"kind":"Delegate","val":1,"amt":4166},"partialState":{"h":9,"t":54,"tokens":[10076,12021,10468,2126],"delegation":[9076,11021,9468,1126],"delegatorTokens":9999999964957}},{"ix":67,"action":{"kind":"Undelegate","val":2,"amt":1484},"partialState":{"h":9,"t":54,"tokens":[10076,12021,8984,2126],"delegation":[9076,11021,7984,1126],"delegatorTokens":9999999964957}},{"ix":68,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":13,"t":78,"consumerPower":[12376,7855,null,null],"outstandingDowntime":[false,true,true,true]}},{"ix":69,"action":{"kind":"Delegate","val":1,"amt":4785},"partialState":{"h":9,"t":54,"tokens":[10076,16806,8984,2126],"delegation":[9076,15806,7984,1126],"delegatorTokens":9999999960172}},{"ix":70,"action":{"kind":"Undelegate","val":3,"amt":3142},"partialState":{"h":9,"t":54,"tokens":[10076,16806,8984,2126],"delegation":[9076,15806,7984,1126],"delegatorTokens":9999999960172}},{"ix":71,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":72,"action":{"kind":"Undelegate","val":1,"amt":1318},"partialState":{"h":9,"t":54,"tokens":[10076,15488,8984,2126],"delegation":[9076,14488,7984,1126],"delegatorTokens":9999999960172}},{"ix":73,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":10,"t":60,"tokens":[10076,15488,8984,2126],"delegation":[9076,14488,7984,1126],"delegatorTokens":9999999960172,"jailed":[null,1000000000000035,null,null],"status":["bonded","unbonding","bonded","unbonded"]}},{"ix":74,"action":{"kind":"Delegate","val":2,"amt":4930},"partialState":{"h":10,"t":60,"tokens":[10076,15488,13914,2126],"delegation":[9076,14488,12914,1126],"delegatorTokens":9999999955242}},{"ix":75,"action":{"kind":"Deliver","chain":"consumer","numPackets":4},"partialState":{"h":13,"t":78,"consumerPower":[12376,7855,null,null],"outstandingDowntime":[false,false,true,true]}},{"ix":76,"action":{"kind":"Delegate","val":3,"amt":4818},"partialState":{"h":10,"t":60,"tokens":[10076,15488,13914,6944],"delegation":[9076,14488,12914,5944],"delegatorTokens":9999999950424}},{"ix":77,"action":{"kind":"Undelegate","val":2,"amt":2618},"partialState":{"h":10,"t":60,"tokens":[10076,15488,11296,6944],"delegation":[9076,14488,10296,5944],"delegatorTokens":9999999950424}},{"ix":78,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":79,"action":{"kind":"Delegate","val":0,"amt":3551},"partialState":{"h":10,"t":60,"tokens":[13627,15488,11296,6944],"delegation":[12627,14488,10296,5944],"delegatorTokens":9999999946873}},{"ix":80,"action":{"kind":"Undelegate","val":1,"amt":2565},"partialState":{"h":10,"t":60,"tokens":[13627,12923,11296,6944],"delegation":[12627,11923,10296,5944],"delegatorTokens":9999999946873}},{"ix":81,"action":{"kind":"Delegate","val":3,"amt":1023},"partialState":{"h":10,"t":60,"tokens":[13627,12923,11296,7967],"delegation":[12627,11923,10296,6967],"delegatorTokens":9999999945850}},{"ix":82,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":83,"action":{"kind":"Delegate","val":1,"amt":1049},"partialState":{"h":10,"t":60,"tokens":[13627,13972,11296,7967],"delegation":[12627,12972,10296,6967],"delegatorTokens":9999999944801}},{"ix":84,"action":{"kind":"Delegate","val":0,"amt":3468},"partialState":{"h":10,"t":60,"tokens":[17095,13972,11296,7967],"delegation":[16095,12972,10296,6967],"delegatorTokens":9999999941333}},{"ix":85,"action":{"kind":"Undelegate","val":0,"amt":3227},"partialState":{"h":10,"t":60,"tokens":[13868,13972,11296,7967],"delegation":[12868,12972,10296,6967],"delegatorTokens":9999999941333}},{"ix":86,"action":{"kind":"Deliver","chain":"provider","numPackets":4},"partialState":{"h":10,"t":60,"tokens":[13868,13972,11296,7967],"delegation":[12868,12972,10296,6967],"delegatorTokens":9999999941333,"jailed":[null,1000000000000035,null,null],"status":["bonded","unbonding","bonded","unbonded"]}},{"ix":87,"action":{"kind":"Undelegate","val":0,"amt":3999},"partialState":{"h":10,"t":60,"tokens":[9869,13972,11296,7967],"delegation":[8869,12972,10296,6967],"delegatorTokens":9999999941333}},{"ix":88,"action":{"kind":"Delegate","val":1,"amt":1223},"partialState":{"h":10,"t":60,"tokens":[9869,15195,11296,7967],"delegation":[8869,14195,10296,6967],"delegatorTokens":9999999940110}},{"ix":89,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":11,"t":66,"tokens":[9869,15195,11296,7967],"delegation":[8869,14195,10296,6967],"delegatorTokens":9999999940110,"jailed":[null,1000000000000035,null,null],"status":["bonded","unbonding","bonded","unbonded"]}},{"ix":90,"action":{"kind":"Delegate","val":3,"amt":4772},"partialState":{"h":11,"t":66,"tokens":[9869,15195,11296,12739],"delegation":[8869,14195,10296,11739],"delegatorTokens":9999999935338}},{"ix":91,"action":{"kind":"Deliver","chain":"provider","numPackets":2},"partialState":{"h":11,"t":66,"tokens":[9869,15195,11296,12739],"delegation":[8869,14195,10296,11739],"delegatorTokens":9999999935338,"jailed":[null,1000000000000035,null,null],"status":["bonded","unbonding","bonded","unbonded"]}},{"ix":92,"action":{"kind":"Deliver","chain":"provider","numPackets":6},"partialState":{"h":11,"t":66,"tokens":[9869,15195,11296,12739],"delegation":[8869,14195,10296,11739],"delegatorTokens":9999999935338,"jailed":[null,1000000000000035,null,null],"status":["bonded","unbonding","bonded","unbonded"]}},{"ix":93,"action":{"kind":"Deliver","chain":"provider","numPackets":2},"partialState":{"h":11,"t":66,"tokens":[9869,15195,11296,12739],"delegation":[8869,14195,10296,11739],"delegatorTokens":9999999935338,"jailed":[null,1000000000000035,null,null],"status":["bonded","unbonding","bonded","unbonded"]}},{"ix":94,"action":{"kind":"Delegate","val":0,"amt":1590},"partialState":{"h":11,"t":66,"tokens":[11459,15195,11296,12739],"delegation":[10459,14195,10296,11739],"delegatorTokens":9999999933748}},{"ix":95,"action":{"kind":"Undelegate","val":1,"amt":1631},"partialState":{"h":11,"t":66,"tokens":[11459,13564,11296,12739],"delegation":[10459,12564,10296,11739],"delegatorTokens":9999999933748}},{"ix":96,"action":{"kind":"Undelegate","val":3,"amt":4564},"partialState":{"h":11,"t":66,"tokens":[11459,13564,11296,8175],"delegation":[10459,12564,10296,7175],"delegatorTokens":9999999933748}},{"ix":97,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":98,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":99,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":14,"t":84,"consumerPower":[10076,null,10468,null],"outstandingDowntime":[false,false,true,true]}},{"ix":100,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":101,"action":{"kind":"Undelegate","val":0,"amt":2233},"partialState":{"h":11,"t":66,"tokens":[9226,13564,11296,8175],"delegation":[8226,12564,10296,7175],"delegatorTokens":9999999933748}},{"ix":102,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":103,"action":{"kind":"Delegate","val":0,"amt":3290},"partialState":{"h":11,"t":66,"tokens":[12516,13564,11296,8175],"delegation":[11516,12564,10296,7175],"delegatorTokens":9999999930458}},{"ix":104,"action":{"kind":"Undelegate","val":1,"amt":1980},"partialState":{"h":11,"t":66,"tokens":[12516,11584,11296,8175],"delegation":[11516,10584,10296,7175],"delegatorTokens":9999999930458}},{"ix":105,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":12,"t":72,"tokens":[12516,11584,11296,8175],"delegation":[11516,10584,10296,7175],"delegatorTokens":9999999930458,"jailed":[null,1000000000000035,null,null],"status":["bonded","unbonding","bonded","unbonded"]}},{"ix":106,"action":{"kind":"Deliver","chain":"consumer","numPackets":4},"partialState":{"h":14,"t":84,"consumerPower":[10076,null,10468,null],"outstandingDowntime":[false,false,true,true]}},{"ix":107,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":15,"t":90,"consumerPower":[9869,null,11296,null],"outstandingDowntime":[false,false,true,true]}},{"ix":108,"action":{"kind":"Delegate","val":2,"amt":4302},"partialState":{"h":12,"t":72,"tokens":[12516,11584,15598,8175],"delegation":[11516,10584,14598,7175],"delegatorTokens":9999999926156}},{"ix":109,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":13,"t":78,"tokens":[12516,11584,15598,8175],"delegation":[11516,10584,14598,7175],"delegatorTokens":9999999926156,"jailed":[null,1000000000000035,null,null],"status":["bonded","unbonding","bonded","unbonded"]}},{"ix":110,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":111,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":112,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":14,"t":84,"tokens":[12516,11584,15598,8175],"delegation":[11516,10584,14598,7175],"delegatorTokens":9999999926156,"jailed":[null,1000000000000035,null,null],"status":["bonded","unbonding","bonded","unbonded"]}},{"ix":113,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":114,"action":{"kind":"Undelegate","val":0,"amt":4367},"partialState":{"h":14,"t":84,"tokens":[8149,11584,15598,8175],"delegation":[7149,10584,14598,7175],"delegatorTokens":9999999926156}},{"ix":115,"action":{"kind":"Delegate","val":0,"amt":4376},"partialState":{"h":14,"t":84,"tokens":[12525,11584,15598,8175],"delegation":[11525,10584,14598,7175],"delegatorTokens":9999999921780}},{"ix":116,"action":{"kind":"Deliver","chain":"consumer","numPackets":1},"partialState":{"h":15,"t":90,"consumerPower":[9869,null,11296,null],"outstandingDowntime":[false,false,true,true]}},{"ix":117,"action":{"kind":"Undelegate","val":2,"amt":4764},"partialState":{"h":14,"t":84,"tokens":[12525,11584,10834,8175],"delegation":[11525,10584,9834,7175],"delegatorTokens":9999999921780}},{"ix":118,"action":{"kind":"Undelegate","val":1,"amt":4303},"partialState":{"h":14,"t":84,"tokens":[12525,7281,10834,8175],"delegation":[11525,6281,9834,7175],"delegatorTokens":9999999921780}},{"ix":119,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":16,"t":96,"consumerPower":[12516,null,11296,null],"outstandingDowntime":[false,false,true,true]}},{"ix":120,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":15,"t":90,"tokens":[12525,7281,10834,8175],"delegation":[11525,6281,9834,7175],"delegatorTokens":9999999921780,"jailed":[null,1000000000000035,null,null],"status":["bonded","unbonding","bonded","unbonded"]}},{"ix":121,"action":{"kind":"Undelegate","val":1,"amt":3975},"partialState":{"h":15,"t":90,"tokens":[12525,3306,10834,8175],"delegation":[11525,2306,9834,7175],"delegatorTokens":9999999921780}},{"ix":122,"action":{"kind":"Deliver","chain":"consumer","numPackets":6},"partialState":{"h":16,"t":96,"consumerPower":[12516,null,11296,null],"outstandingDowntime":[false,false,true,true]}},{"ix":123,"action":{"kind":"Deliver","chain":"provider","numPackets":6},"partialState":{"h":15,"t":90,"tokens":[12525,3306,10834,8175],"delegation":[11525,2306,9834,7175],"delegatorTokens":9999999921780,"jailed":[null,1000000000000035,null,null],"status":["bonded","unbonding","bonded","unbonded"]}},{"ix":124,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":125,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":126,"action":{"kind":"Delegate","val":3,"amt":3418},"partialState":{"h":15,"t":90,"tokens":[12525,3306,10834,11593],"delegation":[11525,2306,9834,10593],"delegatorTokens":9999999918362}},{"ix":127,"action":{"kind":"Deliver","chain":"consumer","numPackets":3},"partialState":{"h":16,"t":96,"consumerPower":[12516,null,11296,null],"outstandingDowntime":[false,false,true,true]}},{"ix":128,"action":{"kind":"Delegate","val":2,"amt":1595},"partialState":{"h":15,"t":90,"tokens":[12525,3306,12429,11593],"delegation":[11525,2306,11429,10593],"delegatorTokens":9999999916767}},{"ix":129,"action":{"kind":"Delegate","val":0,"amt":1721},"partialState":{"h":15,"t":90,"tokens":[14246,3306,12429,11593],"delegation":[13246,2306,11429,10593],"delegatorTokens":9999999915046}},{"ix":130,"action":{"kind":"Delegate","val":0,"amt":3736},"partialState":{"h":15,"t":90,"tokens":[17982,3306,12429,11593],"delegation":[16982,2306,11429,10593],"delegatorTokens":9999999911310}},{"ix":131,"action":{"kind":"Delegate","val":3,"amt":1274},"partialState":{"h":15,"t":90,"tokens":[17982,3306,12429,12867],"delegation":[16982,2306,11429,11867],"delegatorTokens":9999999910036}},{"ix":132,"action":{"kind":"Delegate","val":1,"amt":4443},"partialState":{"h":15,"t":90,"tokens":[17982,7749,12429,12867],"delegation":[16982,6749,11429,11867],"delegatorTokens":9999999905593}},{"ix":133,"action":{"kind":"Delegate","val":0,"amt":1853},"partialState":{"h":15,"t":90,"tokens":[19835,7749,12429,12867],"delegation":[18835,6749,11429,11867],"delegatorTokens":9999999903740}},{"ix":134,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":135,"action":{"kind":"Deliver","chain":"consumer","numPackets":2},"partialState":{"h":16,"t":96,"consumerPower":[12516,null,11296,null],"outstandingDowntime":[false,false,true,true]}},{"ix":136,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":17,"t":102,"consumerPower":[12516,null,15598,null],"outstandingDowntime":[false,false,true,true]}},{"ix":137,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":138,"action":{"kind":"Undelegate","val":2,"amt":1931},"partialState":{"h":15,"t":90,"tokens":[19835,7749,10498,12867],"delegation":[18835,6749,9498,11867],"delegatorTokens":9999999903740}},{"ix":139,"action":{"kind":"Delegate","val":3,"amt":2362},"partialState":{"h":15,"t":90,"tokens":[19835,7749,10498,15229],"delegation":[18835,6749,9498,14229],"delegatorTokens":9999999901378}},{"ix":140,"action":{"kind":"Deliver","chain":"provider","numPackets":2},"partialState":{"h":15,"t":90,"tokens":[19835,7749,10498,15229],"delegation":[18835,6749,9498,14229],"delegatorTokens":9999999901378,"jailed":[null,1000000000000035,null,null],"status":["bonded","unbonding","bonded","unbonded"]}},{"ix":141,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":142,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":18,"t":108,"consumerPower":[12516,null,15598,null],"outstandingDowntime":[false,false,true,true]}},{"ix":143,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":16,"t":96,"tokens":[19835,7749,10498,15229],"delegation":[18835,6749,9498,14229],"delegatorTokens":9999999901378,"jailed":[null,1000000000000035,null,null],"status":["bonded","unbonding","unbonding","bonded"]}},{"ix":144,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":145,"action":{"kind":"Delegate","val":3,"amt":1180},"partialState":{"h":16,"t":96,"tokens":[19835,7749,10498,16409],"delegation":[18835,6749,9498,15409],"delegatorTokens":9999999900198}},{"ix":146,"action":{"kind":"Deliver","chain":"consumer","numPackets":3},"partialState":{"h":18,"t":108,"consumerPower":[12516,null,15598,null],"outstandingDowntime":[false,false,true,true]}},{"ix":147,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":17,"t":102,"tokens":[19835,7749,10498,16409],"delegation":[18835,6749,9498,15409],"delegatorTokens":9999999900198,"jailed":[null,1000000000000035,null,null],"status":["bonded","unbonding","unbonding","bonded"]}},{"ix":148,"action":{"kind":"Delegate","val":2,"amt":4372},"partialState":{"h":17,"t":102,"tokens":[19835,7749,14870,16409],"delegation":[18835,6749,13870,15409],"delegatorTokens":9999999895826}},{"ix":149,"action":{"kind":"Undelegate","val":1,"amt":2643},"partialState":{"h":17,"t":102,"tokens":[19835,5106,14870,16409],"delegation":[18835,4106,13870,15409],"delegatorTokens":9999999895826}},{"ix":150,"action":{"kind":"Delegate","val":2,"amt":2439},"partialState":{"h":17,"t":102,"tokens":[19835,5106,17309,16409],"delegation":[18835,4106,16309,15409],"delegatorTokens":9999999893387}},{"ix":151,"action":{"kind":"Undelegate","val":2,"amt":2643},"partialState":{"h":17,"t":102,"tokens":[19835,5106,14666,16409],"delegation":[18835,4106,13666,15409],"delegatorTokens":9999999893387}},{"ix":152,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":19,"t":114,"consumerPower":[12525,null,10834,null],"outstandingDowntime":[false,false,true,true]}},{"ix":153,"action":{"kind":"Delegate","val":1,"amt":3530},"partialState":{"h":17,"t":102,"tokens":[19835,8636,14666,16409],"delegation":[18835,7636,13666,15409],"delegatorTokens":9999999889857}},{"ix":154,"action":{"kind":"Deliver","chain":"provider","numPackets":3},"partialState":{"h":17,"t":102,"tokens":[19835,8636,14666,16409],"delegation":[18835,7636,13666,15409],"delegatorTokens":9999999889857,"jailed":[null,1000000000000035,null,null],"status":["bonded","unbonding","unbonding","bonded"]}},{"ix":155,"action":{"kind":"Deliver","chain":"provider","numPackets":4},"partialState":{"h":17,"t":102,"tokens":[19835,8636,14666,16409],"delegation":[18835,7636,13666,15409],"delegatorTokens":9999999889857,"jailed":[null,1000000000000035,null,null],"status":["bonded","unbonding","unbonding","bonded"]}},{"ix":156,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":157,"action":{"kind":"Deliver","chain":"consumer","numPackets":2},"partialState":{"h":19,"t":114,"consumerPower":[12525,null,10834,null],"outstandingDowntime":[false,false,true,true]}},{"ix":158,"action":{"kind":"Deliver","chain":"provider","numPackets":1},"partialState":{"h":17,"t":102,"tokens":[19835,8636,14666,16409],"delegation":[18835,7636,13666,15409],"delegatorTokens":9999999889857,"jailed":[null,1000000000000035,null,null],"status":["bonded","unbonding","unbonding","bonded"]}},{"ix":159,"action":{"kind":"Undelegate","val":2,"amt":3613},"partialState":{"h":17,"t":102,"tokens":[19835,8636,11053,16409],"delegation":[18835,7636,10053,15409],"delegatorTokens":9999999889857}},{"ix":160,"action":{"kind":"Delegate","val":0,"amt":3264},"partialState":{"h":17,"t":102,"tokens":[23099,8636,11053,16409],"delegation":[22099,7636,10053,15409],"delegatorTokens":9999999886593}},{"ix":161,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":20,"t":120,"consumerPower":[19835,null,null,15229],"outstandingDowntime":[false,false,true,true]}},{"ix":162,"action":{"kind":"Deliver","chain":"provider","numPackets":2},"partialState":{"h":17,"t":102,"tokens":[23099,8636,11053,16409],"delegation":[22099,7636,10053,15409],"delegatorTokens":9999999886593,"jailed":[null,1000000000000035,null,null],"status":["bonded","unbonding","unbonding","bonded"]}},{"ix":163,"action":{"kind":"Delegate","val":0,"amt":4894},"partialState":{"h":17,"t":102,"tokens":[27993,8636,11053,16409],"delegation":[26993,7636,10053,15409],"delegatorTokens":9999999881699}},{"ix":164,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":165,"action":{"kind":"Deliver","chain":"consumer","numPackets":2},"partialState":{"h":20,"t":120,"consumerPower":[19835,null,null,15229],"outstandingDowntime":[false,false,true,true]}},{"ix":166,"action":{"kind":"Deliver","chain":"consumer","numPackets":1},"partialState":{"h":20,"t":120,"consumerPower":[19835,null,null,15229],"outstandingDowntime":[false,false,true,true]}},{"ix":167,"action":{"kind":"Delegate","val":2,"amt":3754},"partialState":{"h":17,"t":102,"tokens":[27993,8636,14807,16409],"delegation":[26993,7636,13807,15409],"delegatorTokens":9999999877945}},{"ix":168,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":18,"t":108,"tokens":[27993,8636,14807,16409],"delegation":[26993,7636,13807,15409],"delegatorTokens":9999999877945,"jailed":[null,1000000000000035,null,null],"status":["bonded","unbonding","unbonding","bonded"]}},{"ix":169,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":170,"action":{"kind":"Undelegate","val":3,"amt":4129},"partialState":{"h":18,"t":108,"tokens":[27993,8636,14807,12280],"delegation":[26993,7636,13807,11280],"delegatorTokens":9999999877945}},{"ix":171,"action":{"kind":"Undelegate","val":3,"amt":4457},"partialState":{"h":18,"t":108,"tokens":[27993,8636,14807,7823],"delegation":[26993,7636,13807,6823],"delegatorTokens":9999999877945}},{"ix":172,"action":{"kind":"Deliver","chain":"provider","numPackets":6},"partialState":{"h":18,"t":108,"tokens":[27993,8636,14807,7823],"delegation":[26993,7636,13807,6823],"delegatorTokens":9999999877945,"jailed":[null,1000000000000035,null,null],"status":["bonded","unbonding","unbonding","bonded"]}},{"ix":173,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":19,"t":114,"tokens":[27993,8636,14807,7823],"delegation":[26993,7636,13807,6823],"delegatorTokens":9999999877945,"jailed":[null,1000000000000035,null,null],"status":["bonded","unbonding","bonded","unbonding"]}},{"ix":174,"action":{"kind":"Undelegate","val":2,"amt":1753},"partialState":{"h":19,"t":114,"tokens":[27993,8636,13054,7823],"delegation":[26993,7636,12054,6823],"delegatorTokens":9999999877945}},{"ix":175,"action":{"kind":"Undelegate","val":3,"amt":4905},"partialState":{"h":19,"t":114,"tokens":[27993,8636,13054,2918],"delegation":[26993,7636,12054,1918],"delegatorTokens":9999999877945}},{"ix":176,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":21,"t":126,"consumerPower":[19835,null,null,15229],"outstandingDowntime":[false,false,true,true]}},{"ix":177,"action":{"kind":"Deliver","chain":"provider","numPackets":6},"partialState":{"h":19,"t":114,"tokens":[27993,8636,13054,2918],"delegation":[26993,7636,12054,1918],"delegatorTokens":9999999877945,"jailed":[null,1000000000000035,null,null],"status":["bonded","unbonding","bonded","unbonding"]}},{"ix":178,"action":{"kind":"Delegate","val":2,"amt":1056},"partialState":{"h":19,"t":114,"tokens":[27993,8636,14110,2918],"delegation":[26993,7636,13110,1918],"delegatorTokens":9999999876889}},{"ix":179,"action":{"kind":"Deliver","chain":"provider","numPackets":4},"partialState":{"h":19,"t":114,"tokens":[27993,8636,14110,2918],"delegation":[26993,7636,13110,1918],"delegatorTokens":9999999876889,"jailed":[null,1000000000000035,null,null],"status":["bonded","unbonding","bonded","unbonding"]}},{"ix":180,"action":{"kind":"Undelegate","val":1,"amt":4026},"partialState":{"h":19,"t":114,"tokens":[27993,4610,14110,2918],"delegation":[26993,3610,13110,1918],"delegatorTokens":9999999876889}},{"ix":181,"action":{"kind":"Undelegate","val":2,"amt":1013},"partialState":{"h":19,"t":114,"tokens":[27993,4610,13097,2918],"delegation":[26993,3610,12097,1918],"delegatorTokens":9999999876889}},{"ix":182,"action":{"kind":"Deliver","chain":"provider","numPackets":3},"partialState":{"h":19,"t":114,"tokens":[27993,4610,13097,2918],"delegation":[26993,3610,12097,1918],"delegatorTokens":9999999876889,"jailed":[null,1000000000000035,null,null],"status":["bonded","unbonding","bonded","unbonding"]}},{"ix":183,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":184,"action":{"kind":"Delegate","val":0,"amt":3603},"partialState":{"h":19,"t":114,"tokens":[31596,4610,13097,2918],"delegation":[30596,3610,12097,1918],"delegatorTokens":9999999873286}},{"ix":185,"action":{"kind":"Deliver","chain":"consumer","numPackets":2},"partialState":{"h":21,"t":126,"consumerPower":[19835,null,null,15229],"outstandingDowntime":[false,false,true,true]}},{"ix":186,"action":{"kind":"Delegate","val":0,"amt":4824},"partialState":{"h":19,"t":114,"tokens":[36420,4610,13097,2918],"delegation":[35420,3610,12097,1918],"delegatorTokens":9999999868462}},{"ix":187,"action":{"kind":"Undelegate","val":2,"amt":3775},"partialState":{"h":19,"t":114,"tokens":[36420,4610,9322,2918],"delegation":[35420,3610,8322,1918],"delegatorTokens":9999999868462}},{"ix":188,"action":{"kind":"Undelegate","val":3,"amt":1457},"partialState":{"h":19,"t":114,"tokens":[36420,4610,9322,1461],"delegation":[35420,3610,8322,461],"delegatorTokens":9999999868462}},{"ix":189,"action":{"kind":"Deliver","chain":"consumer","numPackets":1},"partialState":{"h":21,"t":126,"consumerPower":[19835,null,null,15229],"outstandingDowntime":[false,false,true,true]}},{"ix":190,"action":{"kind":"Deliver","chain":"provider","numPackets":5},"partialState":{"h":19,"t":114,"tokens":[36420,4610,9322,1461],"delegation":[35420,3610,8322,461],"delegatorTokens":9999999868462,"jailed":[null,1000000000000035,null,null],"status":["bonded","unbonding","bonded","unbonding"]}},{"ix":191,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":22,"t":132,"consumerPower":[27993,null,null,16409],"outstandingDowntime":[false,false,true,true]}},{"ix":192,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":20,"t":120,"tokens":[36420,4610,9322,1461],"delegation":[35420,3610,8322,461],"delegatorTokens":9999999868462,"jailed":[null,1000000000000035,null,null],"status":["bonded","unbonding","bonded","unbonding"]}},{"ix":193,"action":{"kind":"Delegate","val":3,"amt":1784},"partialState":{"h":20,"t":120,"tokens":[36420,4610,9322,3245],"delegation":[35420,3610,8322,2245],"delegatorTokens":9999999866678}},{"ix":194,"action":{"kind":"Delegate","val":0,"amt":4988},"partialState":{"h":20,"t":120,"tokens":[41408,4610,9322,3245],"delegation":[40408,3610,8322,2245],"delegatorTokens":9999999861690}},{"ix":195,"action":{"kind":"Deliver","chain":"provider","numPackets":2},"partialState":{"h":20,"t":120,"tokens":[41408,4610,9322,3245],"delegation":[40408,3610,8322,2245],"delegatorTokens":9999999861690,"jailed":[null,1000000000000035,null,null],"status":["bonded","unbonding","bonded","unbonding"]}},{"ix":196,"action":{"kind":"Delegate","val":0,"amt":4347},"partialState":{"h":20,"t":120,"tokens":[45755,4610,9322,3245],"delegation":[44755,3610,8322,2245],"delegatorTokens":9999999857343}},{"ix":197,"action":{"kind":"Delegate","val":2,"amt":2620},"partialState":{"h":20,"t":120,"tokens":[45755,4610,11942,3245],"delegation":[44755,3610,10942,2245],"delegatorTokens":9999999854723}},{"ix":198,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":21,"t":126,"tokens":[45755,4610,11942,3245],"delegation":[44755,3610,10942,2245],"delegatorTokens":9999999859356,"jailed":[null,1000000000000035,null,null],"status":["bonded","unbonding","bonded","unbonding"]}},{"ix":199,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":22,"t":132,"tokens":[45755,4610,11942,3245],"delegation":[44755,3610,10942,2245],"delegatorTokens":9999999859356,"jailed":[null,1000000000000035,null,null],"status":["bonded","unbonding","bonded","unbonding"]}}],"events":["send_downtime_slash_request","send_downtime_slash_request","insufficient_shares","send_double_sign_slash_request","insufficient_shares","insufficient_shares","send_double_sign_slash_request","downtime_slash_request_outstanding","send_vsc_without_downtime_ack","downtime_slash_request_outstanding","send_vsc_without_downtime_ack","downtime_slash_request_outstanding","send_double_sign_slash_request","send_downtime_slash_request","send_vsc_not_because_change","send_vsc_without_downtime_ack","send_vsc_without_downtime_ack","consumer_update_val","consumer_update_val","receive_double_sign_slash_request","receive_double_sign_slash_request","receive_double_sign_slash_request","insufficient_shares","receive_slash_request_unbonded","receive_slash_request_unbonded","receive_downtime_slash_request","jail","send_vsc_with_downtime_ack","more_than_one_third_val_power_change","send_vsc_without_downtime_ack","insufficient_shares","send_vsc_without_downtime_ack","receive_downtime_slash_ack","send_vsc_without_downtime_ack","consumer_update_val","consumer_del_val","consumer_add_val","send_vsc_without_downtime_ack","consumer_send_maturation","consumer_send_maturation","consumer_update_val","consumer_update_val","send_vsc_without_downtime_ack","consumer_update_val","send_vsc_without_downtime_ack","consumer_update_val","more_than_one_third_val_power_change","send_vsc_without_downtime_ack","some_undels_expired_but_not_completed","send_vsc_without_downtime_ack","consumer_update_val","consumer_update_val","consumer_update_val","consumer_del_val","consumer_add_val","some_undels_expired_but_not_completed","send_vsc_without_downtime_ack","more_than_one_third_val_power_change","rebond_unval","some_undels_expired_but_not_completed","send_vsc_without_downtime_ack","consumer_send_maturation","consumer_update_val","consumer_update_val","send_vsc_without_downtime_ack","complete_undel_immediate","send_vsc_without_downtime_ack","some_undels_expired_but_not_completed"]},{"meta":{"commit":"7ffd0c04e4205cbc9caf212abfe6c59ee43153bf"},"constants":{"P":"provider","C":"consumer","UNBONDING_SECONDS_P":70,"UNBONDING_SECONDS_C":50,"TRUSTING_SECONDS":49,"NUM_VALIDATORS":4,"MAX_VALIDATORS":2,"SLASH_DOUBLESIGN":0,"SLASH_DOWNTIME":0,"JAIL_SECONDS":999999999999999,"BLOCK_SECONDS":6,"INITIAL_DELEGATOR_TOKENS":10000000000000,"DELEGATE_AMT_MIN":1000,"DELEGATE_AMT_MAX":5000,"UNDELEGATE_AMT_MIN":1000,"UNDELEGATE_AMT_MAX":5000,"ISDOWNTIME_PROBABILITY":0.5,"MAX_NUM_PACKETS_FOR_DELIVER":6},"actions":[{"ix":0,"action":{"kind":"ConsumerSlash","val":2,"infractionHeight":0,"isDowntime":true},"partialState":{"h":1,"t":6,"outstandingDowntime":[false,false,true,false]}},{"ix":1,"action":{"kind":"Undelegate","val":2,"amt":4121},"partialState":{"h":1,"t":6,"tokens":[5000,4000,3000,2000],"delegation":[4000,3000,2000,1000],"delegatorTokens":10000000000000}},{"ix":2,"action":{"kind":"Undelegate","val":3,"amt":2318},"partialState":{"h":1,"t":6,"tokens":[5000,4000,3000,2000],"delegation":[4000,3000,2000,1000],"delegatorTokens":10000000000000}},{"ix":3,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":4,"action":{"kind":"ConsumerSlash","val":3,"infractionHeight":0,"isDowntime":false},"partialState":{"h":1,"t":6,"outstandingDowntime":[false,false,true,false]}},{"ix":5,"action":{"kind":"Delegate","val":2,"amt":4811},"partialState":{"h":1,"t":6,"tokens":[5000,4000,7811,2000],"delegation":[4000,3000,6811,1000],"delegatorTokens":9999999995189}},{"ix":6,"action":{"kind":"Undelegate","val":1,"amt":1682},"partialState":{"h":1,"t":6,"tokens":[5000,2318,7811,2000],"delegation":[4000,1318,6811,1000],"delegatorTokens":9999999995189}},{"ix":7,"action":{"kind":"Deliver","chain":"consumer","numPackets":3},"partialState":{"h":1,"t":6,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,false,true,false]}},{"ix":8,"action":{"kind":"Delegate","val":0,"amt":4504},"partialState":{"h":1,"t":6,"tokens":[9504,2318,7811,2000],"delegation":[8504,1318,6811,1000],"delegatorTokens":9999999990685}},{"ix":9,"action":{"kind":"Delegate","val":0,"amt":4387},"partialState":{"h":1,"t":6,"tokens":[13891,2318,7811,2000],"delegation":[12891,1318,6811,1000],"delegatorTokens":9999999986298}},{"ix":10,"action":{"kind":"Deliver","chain":"provider","numPackets":5},"partialState":{"h":1,"t":6,"tokens":[13891,2318,7811,2000],"delegation":[12891,1318,6811,1000],"delegatorTokens":9999999986298,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":11,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":12,"action":{"kind":"ConsumerSlash","val":3,"infractionHeight":0,"isDowntime":true},"partialState":{"h":1,"t":6,"outstandingDowntime":[false,false,true,true]}},{"ix":13,"action":{"kind":"Delegate","val":1,"amt":1360},"partialState":{"h":1,"t":6,"tokens":[13891,3678,7811,2000],"delegation":[12891,2678,6811,1000],"delegatorTokens":9999999984938}},{"ix":14,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":15,"action":{"kind":"ConsumerSlash","val":3,"infractionHeight":0,"isDowntime":false},"partialState":{"h":1,"t":6,"outstandingDowntime":[false,false,true,true]}},{"ix":16,"action":{"kind":"Delegate","val":3,"amt":1981},"partialState":{"h":1,"t":6,"tokens":[13891,3678,7811,3981],"delegation":[12891,2678,6811,2981],"delegatorTokens":9999999982957}},{"ix":17,"action":{"kind":"ConsumerSlash","val":2,"infractionHeight":0,"isDowntime":true},"partialState":{"h":1,"t":6,"outstandingDowntime":[false,false,true,true]}},{"ix":18,"action":{"kind":"Deliver","chain":"consumer","numPackets":6},"partialState":{"h":1,"t":6,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,false,true,true]}},{"ix":19,"action":{"kind":"ConsumerSlash","val":3,"infractionHeight":0,"isDowntime":true},"partialState":{"h":1,"t":6,"outstandingDowntime":[false,false,true,true]}},{"ix":20,"action":{"kind":"Deliver","chain":"consumer","numPackets":2},"partialState":{"h":1,"t":6,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,false,true,true]}},{"ix":21,"action":{"kind":"Deliver","chain":"provider","numPackets":4},"partialState":{"h":1,"t":6,"tokens":[13891,3678,7811,3981],"delegation":[12891,2678,6811,2981],"delegatorTokens":9999999982957,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":22,"action":{"kind":"Undelegate","val":2,"amt":4502},"partialState":{"h":1,"t":6,"tokens":[13891,3678,3309,3981],"delegation":[12891,2678,2309,2981],"delegatorTokens":9999999982957}},{"ix":23,"action":{"kind":"Undelegate","val":3,"amt":1291},"partialState":{"h":1,"t":6,"tokens":[13891,3678,3309,2690],"delegation":[12891,2678,2309,1690],"delegatorTokens":9999999982957}},{"ix":24,"action":{"kind":"Undelegate","val":3,"amt":4781},"partialState":{"h":1,"t":6,"tokens":[13891,3678,3309,2690],"delegation":[12891,2678,2309,1690],"delegatorTokens":9999999982957}},{"ix":25,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":26,"action":{"kind":"Deliver","chain":"consumer","numPackets":3},"partialState":{"h":1,"t":6,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,false,true,true]}},{"ix":27,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":28,"action":{"kind":"Deliver","chain":"provider","numPackets":2},"partialState":{"h":1,"t":6,"tokens":[13891,3678,3309,2690],"delegation":[12891,2678,2309,1690],"delegatorTokens":9999999982957,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":29,"action":{"kind":"Deliver","chain":"consumer","numPackets":4},"partialState":{"h":1,"t":6,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,false,true,true]}},{"ix":30,"action":{"kind":"Undelegate","val":2,"amt":4235},"partialState":{"h":1,"t":6,"tokens":[13891,3678,3309,2690],"delegation":[12891,2678,2309,1690],"delegatorTokens":9999999982957}},{"ix":31,"action":{"kind":"Deliver","chain":"consumer","numPackets":1},"partialState":{"h":1,"t":6,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,false,true,true]}},{"ix":32,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":2,"t":12,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,false,true,true]}},{"ix":33,"action":{"kind":"Delegate","val":1,"amt":3344},"partialState":{"h":1,"t":6,"tokens":[13891,7022,3309,2690],"delegation":[12891,6022,2309,1690],"delegatorTokens":9999999979613}},{"ix":34,"action":{"kind":"Undelegate","val":3,"amt":4616},"partialState":{"h":1,"t":6,"tokens":[13891,7022,3309,2690],"delegation":[12891,6022,2309,1690],"delegatorTokens":9999999979613}},{"ix":35,"action":{"kind":"ConsumerSlash","val":0,"infractionHeight":0,"isDowntime":true},"partialState":{"h":2,"t":12,"outstandingDowntime":[true,false,true,true]}},{"ix":36,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":37,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":2,"t":12,"tokens":[13891,7022,3309,2690],"delegation":[12891,6022,2309,1690],"delegatorTokens":9999999979613,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":38,"action":{"kind":"Delegate","val":2,"amt":1709},"partialState":{"h":2,"t":12,"tokens":[13891,7022,5018,2690],"delegation":[12891,6022,4018,1690],"delegatorTokens":9999999977904}},{"ix":39,"action":{"kind":"Delegate","val":2,"amt":3702},"partialState":{"h":2,"t":12,"tokens":[13891,7022,8720,2690],"delegation":[12891,6022,7720,1690],"delegatorTokens":9999999974202}},{"ix":40,"action":{"kind":"Deliver","chain":"consumer","numPackets":2},"partialState":{"h":2,"t":12,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[true,false,true,true]}},{"ix":41,"action":{"kind":"Undelegate","val":2,"amt":2768},"partialState":{"h":2,"t":12,"tokens":[13891,7022,5952,2690],"delegation":[12891,6022,4952,1690],"delegatorTokens":9999999974202}},{"ix":42,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":43,"action":{"kind":"Deliver","chain":"consumer","numPackets":1},"partialState":{"h":2,"t":12,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[true,false,true,true]}},{"ix":44,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":3,"t":18,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[true,false,true,true]}},{"ix":45,"action":{"kind":"Deliver","chain":"provider","numPackets":5},"partialState":{"h":2,"t":12,"tokens":[13891,7022,5952,2690],"delegation":[12891,6022,4952,1690],"delegatorTokens":9999999974202,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":46,"action":{"kind":"Deliver","chain":"provider","numPackets":4},"partialState":{"h":2,"t":12,"tokens":[13891,7022,5952,2690],"delegation":[12891,6022,4952,1690],"delegatorTokens":9999999974202,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":47,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":4,"t":24,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[true,false,true,true]}},{"ix":48,"action":{"kind":"Undelegate","val":0,"amt":1419},"partialState":{"h":2,"t":12,"tokens":[12472,7022,5952,2690],"delegation":[11472,6022,4952,1690],"delegatorTokens":9999999974202}},{"ix":49,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":50,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":3,"t":18,"tokens":[12472,7022,5952,2690],"delegation":[11472,6022,4952,1690],"delegatorTokens":9999999974202,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":51,"action":{"kind":"Delegate","val":1,"amt":4164},"partialState":{"h":3,"t":18,"tokens":[12472,11186,5952,2690],"delegation":[11472,10186,4952,1690],"delegatorTokens":9999999970038}},{"ix":52,"action":{"kind":"Deliver","chain":"consumer","numPackets":4},"partialState":{"h":4,"t":24,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[true,false,true,true]}},{"ix":53,"action":{"kind":"Undelegate","val":2,"amt":3859},"partialState":{"h":3,"t":18,"tokens":[12472,11186,2093,2690],"delegation":[11472,10186,1093,1690],"delegatorTokens":9999999970038}},{"ix":54,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":55,"action":{"kind":"Delegate","val":0,"amt":4781},"partialState":{"h":3,"t":18,"tokens":[17253,11186,2093,2690],"delegation":[16253,10186,1093,1690],"delegatorTokens":9999999965257}},{"ix":56,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":57,"action":{"kind":"Undelegate","val":0,"amt":1239},"partialState":{"h":3,"t":18,"tokens":[16014,11186,2093,2690],"delegation":[15014,10186,1093,1690],"delegatorTokens":9999999965257}},{"ix":58,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":59,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":60,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":61,"action":{"kind":"Undelegate","val":3,"amt":3551},"partialState":{"h":3,"t":18,"tokens":[16014,11186,2093,2690],"delegation":[15014,10186,1093,1690],"delegatorTokens":9999999965257}},{"ix":62,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":5,"t":30,"consumerPower":[13891,7022,null,null],"outstandingDowntime":[true,false,true,true]}},{"ix":63,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":64,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":4,"t":24,"tokens":[16014,11186,2093,2690],"delegation":[15014,10186,1093,1690],"delegatorTokens":9999999965257,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":65,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":6,"t":36,"consumerPower":[13891,7022,null,null],"outstandingDowntime":[true,false,true,true]}},{"ix":66,"action":{"kind":"Delegate","val":3,"amt":4336},"partialState":{"h":4,"t":24,"tokens":[16014,11186,2093,7026],"delegation":[15014,10186,1093,6026],"delegatorTokens":9999999960921}},{"ix":67,"action":{"kind":"Undelegate","val":3,"amt":2159},"partialState":{"h":4,"t":24,"tokens":[16014,11186,2093,4867],"delegation":[15014,10186,1093,3867],"delegatorTokens":9999999960921}},{"ix":68,"action":{"kind":"Deliver","chain":"provider","numPackets":1},"partialState":{"h":4,"t":24,"tokens":[16014,11186,2093,4867],"delegation":[15014,10186,1093,3867],"delegatorTokens":9999999960921,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":69,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":5,"t":30,"tokens":[16014,11186,2093,4867],"delegation":[15014,10186,1093,3867],"delegatorTokens":9999999960921,"jailed":[1000000000000023,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":70,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":6,"t":36,"tokens":[16014,11186,2093,4867],"delegation":[15014,10186,1093,3867],"delegatorTokens":9999999960921,"jailed":[1000000000000023,null,null,null],"status":["unbonding","bonded","unbonded","bonded"]}},{"ix":71,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":72,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":7,"t":42,"consumerPower":[13891,7022,null,null],"outstandingDowntime":[true,false,true,true]}},{"ix":73,"action":{"kind":"Undelegate","val":1,"amt":2678},"partialState":{"h":6,"t":36,"tokens":[16014,8508,2093,4867],"delegation":[15014,7508,1093,3867],"delegatorTokens":9999999960921}},{"ix":74,"action":{"kind":"Delegate","val":0,"amt":3042},"partialState":{"h":6,"t":36,"tokens":[19056,8508,2093,4867],"delegation":[18056,7508,1093,3867],"delegatorTokens":9999999957879}},{"ix":75,"action":{"kind":"Deliver","chain":"consumer","numPackets":6},"partialState":{"h":7,"t":42,"consumerPower":[13891,7022,null,null],"outstandingDowntime":[false,false,true,true]}},{"ix":76,"action":{"kind":"Delegate","val":3,"amt":1184},"partialState":{"h":6,"t":36,"tokens":[19056,8508,2093,6051],"delegation":[18056,7508,1093,5051],"delegatorTokens":9999999956695}},{"ix":77,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":78,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":7,"t":42,"tokens":[19056,8508,2093,6051],"delegation":[18056,7508,1093,5051],"delegatorTokens":9999999956695,"jailed":[1000000000000023,null,null,null],"status":["unbonding","bonded","unbonded","bonded"]}},{"ix":79,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":80,"action":{"kind":"Delegate","val":2,"amt":3267},"partialState":{"h":7,"t":42,"tokens":[19056,8508,5360,6051],"delegation":[18056,7508,4360,5051],"delegatorTokens":9999999953428}},{"ix":81,"action":{"kind":"Deliver","chain":"consumer","numPackets":6},"partialState":{"h":7,"t":42,"consumerPower":[13891,7022,null,null],"outstandingDowntime":[false,false,true,true]}},{"ix":82,"action":{"kind":"Delegate","val":3,"amt":1912},"partialState":{"h":7,"t":42,"tokens":[19056,8508,5360,7963],"delegation":[18056,7508,4360,6963],"delegatorTokens":9999999951516}},{"ix":83,"action":{"kind":"Deliver","chain":"consumer","numPackets":3},"partialState":{"h":7,"t":42,"consumerPower":[13891,7022,null,null],"outstandingDowntime":[false,false,true,true]}},{"ix":84,"action":{"kind":"Deliver","chain":"consumer","numPackets":2},"partialState":{"h":7,"t":42,"consumerPower":[13891,7022,null,null],"outstandingDowntime":[false,false,true,true]}},{"ix":85,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":86,"action":{"kind":"Deliver","chain":"provider","numPackets":4},"partialState":{"h":7,"t":42,"tokens":[19056,8508,5360,7963],"delegation":[18056,7508,4360,6963],"delegatorTokens":9999999951516,"jailed":[1000000000000023,null,null,null],"status":["unbonding","bonded","unbonded","bonded"]}},{"ix":87,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":8,"t":48,"consumerPower":[null,11186,null,4867],"outstandingDowntime":[false,false,true,true]}},{"ix":88,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":89,"action":{"kind":"Undelegate","val":2,"amt":2191},"partialState":{"h":7,"t":42,"tokens":[19056,8508,3169,7963],"delegation":[18056,7508,2169,6963],"delegatorTokens":9999999951516}},{"ix":90,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":91,"action":{"kind":"Undelegate","val":3,"amt":3510},"partialState":{"h":7,"t":42,"tokens":[19056,8508,3169,4453],"delegation":[18056,7508,2169,3453],"delegatorTokens":9999999951516}},{"ix":92,"action":{"kind":"Deliver","chain":"provider","numPackets":4},"partialState":{"h":7,"t":42,"tokens":[19056,8508,3169,4453],"delegation":[18056,7508,2169,3453],"delegatorTokens":9999999951516,"jailed":[1000000000000023,null,null,null],"status":["unbonding","bonded","unbonded","bonded"]}},{"ix":93,"action":{"kind":"Deliver","chain":"consumer","numPackets":5},"partialState":{"h":8,"t":48,"consumerPower":[null,11186,null,4867],"outstandingDowntime":[false,false,true,true]}},{"ix":94,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":95,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":96,"action":{"kind":"Undelegate","val":2,"amt":4326},"partialState":{"h":7,"t":42,"tokens":[19056,8508,3169,4453],"delegation":[18056,7508,2169,3453],"delegatorTokens":9999999951516}},{"ix":97,"action":{"kind":"Delegate","val":3,"amt":3958},"partialState":{"h":7,"t":42,"tokens":[19056,8508,3169,8411],"delegation":[18056,7508,2169,7411],"delegatorTokens":9999999947558}},{"ix":98,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":9,"t":54,"consumerPower":[null,11186,null,4867],"outstandingDowntime":[false,false,true,true]}},{"ix":99,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":100,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":101,"action":{"kind":"Deliver","chain":"provider","numPackets":4},"partialState":{"h":7,"t":42,"tokens":[19056,8508,3169,8411],"delegation":[18056,7508,2169,7411],"delegatorTokens":9999999947558,"jailed":[1000000000000023,null,null,null],"status":["unbonding","bonded","unbonded","bonded"]}},{"ix":102,"action":{"kind":"Undelegate","val":3,"amt":1573},"partialState":{"h":7,"t":42,"tokens":[19056,8508,3169,6838],"delegation":[18056,7508,2169,5838],"delegatorTokens":9999999947558}},{"ix":103,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":104,"action":{"kind":"Deliver","chain":"consumer","numPackets":6},"partialState":{"h":9,"t":54,"consumerPower":[null,11186,null,4867],"outstandingDowntime":[false,false,true,true]}},{"ix":105,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":106,"action":{"kind":"Undelegate","val":1,"amt":2683},"partialState":{"h":7,"t":42,"tokens":[19056,5825,3169,6838],"delegation":[18056,4825,2169,5838],"delegatorTokens":9999999947558}},{"ix":107,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":10,"t":60,"consumerPower":[null,11186,null,4867],"outstandingDowntime":[false,false,true,true]}},{"ix":108,"action":{"kind":"Deliver","chain":"consumer","numPackets":2},"partialState":{"h":10,"t":60,"consumerPower":[null,11186,null,4867],"outstandingDowntime":[false,false,true,true]}},{"ix":109,"action":{"kind":"Deliver","chain":"provider","numPackets":6},"partialState":{"h":7,"t":42,"tokens":[19056,5825,3169,6838],"delegation":[18056,4825,2169,5838],"delegatorTokens":9999999947558,"jailed":[1000000000000023,null,null,null],"status":["unbonding","bonded","unbonded","bonded"]}},{"ix":110,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":111,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":11,"t":66,"consumerPower":[null,11186,null,4867],"outstandingDowntime":[false,false,true,true]}},{"ix":112,"action":{"kind":"Delegate","val":2,"amt":1423},"partialState":{"h":7,"t":42,"tokens":[19056,5825,4592,6838],"delegation":[18056,4825,3592,5838],"delegatorTokens":9999999946135}},{"ix":113,"action":{"kind":"Deliver","chain":"provider","numPackets":5},"partialState":{"h":7,"t":42,"tokens":[19056,5825,4592,6838],"delegation":[18056,4825,3592,5838],"delegatorTokens":9999999946135,"jailed":[1000000000000023,null,null,null],"status":["unbonding","bonded","unbonded","bonded"]}},{"ix":114,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":115,"action":{"kind":"Undelegate","val":2,"amt":3059},"partialState":{"h":7,"t":42,"tokens":[19056,5825,1533,6838],"delegation":[18056,4825,533,5838],"delegatorTokens":9999999946135}},{"ix":116,"action":{"kind":"Delegate","val":3,"amt":3887},"partialState":{"h":7,"t":42,"tokens":[19056,5825,1533,10725],"delegation":[18056,4825,533,9725],"delegatorTokens":9999999942248}},{"ix":117,"action":{"kind":"Deliver","chain":"consumer","numPackets":3},"partialState":{"h":11,"t":66,"consumerPower":[null,11186,null,4867],"outstandingDowntime":[false,false,true,true]}},{"ix":118,"action":{"kind":"Delegate","val":3,"amt":1712},"partialState":{"h":7,"t":42,"tokens":[19056,5825,1533,12437],"delegation":[18056,4825,533,11437],"delegatorTokens":9999999940536}},{"ix":119,"action":{"kind":"Deliver","chain":"provider","numPackets":5},"partialState":{"h":7,"t":42,"tokens":[19056,5825,1533,12437],"delegation":[18056,4825,533,11437],"delegatorTokens":9999999940536,"jailed":[1000000000000023,null,null,null],"status":["unbonding","bonded","unbonded","bonded"]}},{"ix":120,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":12,"t":72,"consumerPower":[null,11186,null,4867],"outstandingDowntime":[false,false,true,true]}},{"ix":121,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":13,"t":78,"consumerPower":[null,11186,null,4867],"outstandingDowntime":[false,false,true,true]}},{"ix":122,"action":{"kind":"Undelegate","val":2,"amt":1834},"partialState":{"h":7,"t":42,"tokens":[19056,5825,1533,12437],"delegation":[18056,4825,533,11437],"delegatorTokens":9999999940536}},{"ix":123,"action":{"kind":"Delegate","val":2,"amt":3534},"partialState":{"h":7,"t":42,"tokens":[19056,5825,5067,12437],"delegation":[18056,4825,4067,11437],"delegatorTokens":9999999937002}},{"ix":124,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":14,"t":84,"consumerPower":[null,11186,null,4867],"outstandingDowntime":[false,false,true,true]}},{"ix":125,"action":{"kind":"Undelegate","val":0,"amt":3179},"partialState":{"h":7,"t":42,"tokens":[15877,5825,5067,12437],"delegation":[14877,4825,4067,11437],"delegatorTokens":9999999937002}},{"ix":126,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":127,"action":{"kind":"Undelegate","val":0,"amt":2688},"partialState":{"h":7,"t":42,"tokens":[13189,5825,5067,12437],"delegation":[12189,4825,4067,11437],"delegatorTokens":9999999937002}},{"ix":128,"action":{"kind":"Undelegate","val":1,"amt":3485},"partialState":{"h":7,"t":42,"tokens":[13189,2340,5067,12437],"delegation":[12189,1340,4067,11437],"delegatorTokens":9999999937002}},{"ix":129,"action":{"kind":"Undelegate","val":3,"amt":4094},"partialState":{"h":7,"t":42,"tokens":[13189,2340,5067,8343],"delegation":[12189,1340,4067,7343],"delegatorTokens":9999999937002}},{"ix":130,"action":{"kind":"Undelegate","val":0,"amt":4002},"partialState":{"h":7,"t":42,"tokens":[9187,2340,5067,8343],"delegation":[8187,1340,4067,7343],"delegatorTokens":9999999937002}},{"ix":131,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":132,"action":{"kind":"Deliver","chain":"consumer","numPackets":4},"partialState":{"h":14,"t":84,"consumerPower":[null,11186,null,4867],"outstandingDowntime":[false,false,true,true]}},{"ix":133,"action":{"kind":"Delegate","val":2,"amt":1842},"partialState":{"h":7,"t":42,"tokens":[9187,2340,6909,8343],"delegation":[8187,1340,5909,7343],"delegatorTokens":9999999935160}},{"ix":134,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":135,"action":{"kind":"Deliver","chain":"provider","numPackets":6},"partialState":{"h":7,"t":42,"tokens":[9187,2340,6909,8343],"delegation":[8187,1340,5909,7343],"delegatorTokens":9999999935160,"jailed":[1000000000000023,null,null,null],"status":["unbonding","bonded","unbonded","bonded"]}},{"ix":136,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":8,"t":48,"tokens":[9187,2340,6909,8343],"delegation":[8187,1340,5909,7343],"delegatorTokens":9999999935160,"jailed":[1000000000000023,null,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":137,"action":{"kind":"Undelegate","val":1,"amt":3076},"partialState":{"h":8,"t":48,"tokens":[9187,2340,6909,8343],"delegation":[8187,1340,5909,7343],"delegatorTokens":9999999935160}},{"ix":138,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":139,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":9,"t":54,"tokens":[9187,2340,6909,8343],"delegation":[8187,1340,5909,7343],"delegatorTokens":9999999935160,"jailed":[1000000000000023,null,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":140,"action":{"kind":"Undelegate","val":0,"amt":1556},"partialState":{"h":9,"t":54,"tokens":[7631,2340,6909,8343],"delegation":[6631,1340,5909,7343],"delegatorTokens":9999999935160}},{"ix":141,"action":{"kind":"Undelegate","val":0,"amt":1078},"partialState":{"h":9,"t":54,"tokens":[6553,2340,6909,8343],"delegation":[5553,1340,5909,7343],"delegatorTokens":9999999935160}},{"ix":142,"action":{"kind":"Undelegate","val":0,"amt":3561},"partialState":{"h":9,"t":54,"tokens":[2992,2340,6909,8343],"delegation":[1992,1340,5909,7343],"delegatorTokens":9999999935160}},{"ix":143,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":10,"t":60,"tokens":[2992,2340,6909,8343],"delegation":[1992,1340,5909,7343],"delegatorTokens":9999999935160,"jailed":[1000000000000023,null,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":144,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":11,"t":66,"tokens":[2992,2340,6909,8343],"delegation":[1992,1340,5909,7343],"delegatorTokens":9999999935160,"jailed":[1000000000000023,null,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":145,"action":{"kind":"Delegate","val":3,"amt":2933},"partialState":{"h":11,"t":66,"tokens":[2992,2340,6909,11276],"delegation":[1992,1340,5909,10276],"delegatorTokens":9999999932227}},{"ix":146,"action":{"kind":"Deliver","chain":"consumer","numPackets":4},"partialState":{"h":14,"t":84,"consumerPower":[null,11186,null,4867],"outstandingDowntime":[false,false,true,true]}},{"ix":147,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":12,"t":72,"tokens":[2992,2340,6909,11276],"delegation":[1992,1340,5909,10276],"delegatorTokens":9999999932227,"jailed":[1000000000000023,null,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":148,"action":{"kind":"Delegate","val":2,"amt":2526},"partialState":{"h":12,"t":72,"tokens":[2992,2340,9435,11276],"delegation":[1992,1340,8435,10276],"delegatorTokens":9999999929701}},{"ix":149,"action":{"kind":"Undelegate","val":1,"amt":1669},"partialState":{"h":12,"t":72,"tokens":[2992,2340,9435,11276],"delegation":[1992,1340,8435,10276],"delegatorTokens":9999999929701}},{"ix":150,"action":{"kind":"Deliver","chain":"consumer","numPackets":2},"partialState":{"h":14,"t":84,"consumerPower":[null,11186,null,4867],"outstandingDowntime":[false,false,true,true]}},{"ix":151,"action":{"kind":"Deliver","chain":"provider","numPackets":5},"partialState":{"h":12,"t":72,"tokens":[2992,2340,9435,11276],"delegation":[1992,1340,8435,10276],"delegatorTokens":9999999929701,"jailed":[1000000000000023,null,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":152,"action":{"kind":"Deliver","chain":"consumer","numPackets":6},"partialState":{"h":14,"t":84,"consumerPower":[null,11186,null,4867],"outstandingDowntime":[false,false,true,true]}},{"ix":153,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":15,"t":90,"consumerPower":[null,null,6909,8343],"outstandingDowntime":[false,false,true,true]}},{"ix":154,"action":{"kind":"Deliver","chain":"provider","numPackets":6},"partialState":{"h":12,"t":72,"tokens":[2992,2340,9435,11276],"delegation":[1992,1340,8435,10276],"delegatorTokens":9999999929701,"jailed":[1000000000000023,null,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":155,"action":{"kind":"Delegate","val":1,"amt":2093},"partialState":{"h":12,"t":72,"tokens":[2992,4433,9435,11276],"delegation":[1992,3433,8435,10276],"delegatorTokens":9999999927608}},{"ix":156,"action":{"kind":"Delegate","val":0,"amt":3493},"partialState":{"h":12,"t":72,"tokens":[6485,4433,9435,11276],"delegation":[5485,3433,8435,10276],"delegatorTokens":9999999924115}},{"ix":157,"action":{"kind":"Undelegate","val":3,"amt":4113},"partialState":{"h":12,"t":72,"tokens":[6485,4433,9435,7163],"delegation":[5485,3433,8435,6163],"delegatorTokens":9999999924115}},{"ix":158,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":159,"action":{"kind":"Undelegate","val":2,"amt":4286},"partialState":{"h":12,"t":72,"tokens":[6485,4433,5149,7163],"delegation":[5485,3433,4149,6163],"delegatorTokens":9999999924115}},{"ix":160,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":13,"t":78,"tokens":[6485,4433,5149,7163],"delegation":[5485,3433,4149,6163],"delegatorTokens":9999999924115,"jailed":[1000000000000023,null,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":161,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":162,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":163,"action":{"kind":"Deliver","chain":"consumer","numPackets":2},"partialState":{"h":15,"t":90,"consumerPower":[null,null,6909,8343],"outstandingDowntime":[false,false,true,true]}},{"ix":164,"action":{"kind":"Delegate","val":3,"amt":2888},"partialState":{"h":13,"t":78,"tokens":[6485,4433,5149,10051],"delegation":[5485,3433,4149,9051],"delegatorTokens":9999999921227}},{"ix":165,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":166,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":16,"t":96,"consumerPower":[null,null,6909,11276],"outstandingDowntime":[false,false,true,true]}},{"ix":167,"action":{"kind":"Undelegate","val":2,"amt":2229},"partialState":{"h":13,"t":78,"tokens":[6485,4433,2920,10051],"delegation":[5485,3433,1920,9051],"delegatorTokens":9999999921227}},{"ix":168,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":17,"t":102,"consumerPower":[null,null,6909,11276],"outstandingDowntime":[false,false,true,true]}},{"ix":169,"action":{"kind":"Undelegate","val":2,"amt":3164},"partialState":{"h":13,"t":78,"tokens":[6485,4433,2920,10051],"delegation":[5485,3433,1920,9051],"delegatorTokens":9999999921227}},{"ix":170,"action":{"kind":"Delegate","val":1,"amt":1770},"partialState":{"h":13,"t":78,"tokens":[6485,6203,2920,10051],"delegation":[5485,5203,1920,9051],"delegatorTokens":9999999919457}},{"ix":171,"action":{"kind":"Deliver","chain":"provider","numPackets":1},"partialState":{"h":13,"t":78,"tokens":[6485,6203,2920,10051],"delegation":[5485,5203,1920,9051],"delegatorTokens":9999999919457,"jailed":[1000000000000023,null,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":172,"action":{"kind":"Deliver","chain":"consumer","numPackets":3},"partialState":{"h":17,"t":102,"consumerPower":[null,null,6909,11276],"outstandingDowntime":[false,false,true,true]}},{"ix":173,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":14,"t":84,"tokens":[6485,6203,2920,10051],"delegation":[5485,5203,1920,9051],"delegatorTokens":9999999926932,"jailed":[1000000000000023,null,null,null],"status":["unbonding","bonded","unbonding","bonded"]}},{"ix":174,"action":{"kind":"Delegate","val":1,"amt":1535},"partialState":{"h":14,"t":84,"tokens":[6485,7738,2920,10051],"delegation":[5485,6738,1920,9051],"delegatorTokens":9999999925397}},{"ix":175,"action":{"kind":"Deliver","chain":"consumer","numPackets":1},"partialState":{"h":17,"t":102,"consumerPower":[null,null,6909,11276],"outstandingDowntime":[false,false,true,true]}},{"ix":176,"action":{"kind":"Deliver","chain":"provider","numPackets":1},"partialState":{"h":14,"t":84,"tokens":[6485,7738,2920,10051],"delegation":[5485,6738,1920,9051],"delegatorTokens":9999999925397,"jailed":[1000000000000023,null,null,null],"status":["unbonding","bonded","unbonding","bonded"]}},{"ix":177,"action":{"kind":"Undelegate","val":3,"amt":3338},"partialState":{"h":14,"t":84,"tokens":[6485,7738,2920,6713],"delegation":[5485,6738,1920,5713],"delegatorTokens":9999999925397}},{"ix":178,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":18,"t":108,"consumerPower":[null,null,5149,7163],"outstandingDowntime":[false,false,true,true]}},{"ix":179,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":180,"action":{"kind":"Deliver","chain":"consumer","numPackets":3},"partialState":{"h":18,"t":108,"consumerPower":[null,null,5149,7163],"outstandingDowntime":[false,false,true,true]}},{"ix":181,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":15,"t":90,"tokens":[6485,7738,2920,6713],"delegation":[5485,6738,1920,5713],"delegatorTokens":9999999925397,"jailed":[1000000000000023,null,null,null],"status":["unbonding","bonded","unbonding","bonded"]}},{"ix":182,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":19,"t":114,"consumerPower":[null,null,5149,7163],"outstandingDowntime":[false,false,true,true]}},{"ix":183,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":184,"action":{"kind":"Deliver","chain":"consumer","numPackets":3},"partialState":{"h":19,"t":114,"consumerPower":[null,null,5149,7163],"outstandingDowntime":[false,false,true,true]}},{"ix":185,"action":{"kind":"Deliver","chain":"consumer","numPackets":2},"partialState":{"h":19,"t":114,"consumerPower":[null,null,5149,7163],"outstandingDowntime":[false,false,true,true]}},{"ix":186,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":187,"action":{"kind":"Delegate","val":0,"amt":4514},"partialState":{"h":15,"t":90,"tokens":[10999,7738,2920,6713],"delegation":[9999,6738,1920,5713],"delegatorTokens":9999999920883}},{"ix":188,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":189,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":16,"t":96,"tokens":[10999,7738,2920,6713],"delegation":[9999,6738,1920,5713],"delegatorTokens":9999999920883,"jailed":[1000000000000023,null,null,null],"status":["unbonding","bonded","unbonding","bonded"]}},{"ix":190,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":20,"t":120,"consumerPower":[null,6203,null,10051],"outstandingDowntime":[false,false,true,true]}},{"ix":191,"action":{"kind":"Delegate","val":0,"amt":1802},"partialState":{"h":16,"t":96,"tokens":[12801,7738,2920,6713],"delegation":[11801,6738,1920,5713],"delegatorTokens":9999999919081}},{"ix":192,"action":{"kind":"Undelegate","val":0,"amt":1483},"partialState":{"h":16,"t":96,"tokens":[11318,7738,2920,6713],"delegation":[10318,6738,1920,5713],"delegatorTokens":9999999919081}},{"ix":193,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":194,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":195,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":17,"t":102,"tokens":[11318,7738,2920,6713],"delegation":[10318,6738,1920,5713],"delegatorTokens":9999999919081,"jailed":[1000000000000023,null,null,null],"status":["unbonding","bonded","unbonding","bonded"]}},{"ix":196,"action":{"kind":"Deliver","chain":"provider","numPackets":3},"partialState":{"h":17,"t":102,"tokens":[11318,7738,2920,6713],"delegation":[10318,6738,1920,5713],"delegatorTokens":9999999919081,"jailed":[1000000000000023,null,null,null],"status":["unbonding","bonded","unbonding","bonded"]}},{"ix":197,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":198,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":18,"t":108,"tokens":[11318,7738,2920,6713],"delegation":[10318,6738,1920,5713],"delegatorTokens":9999999930525,"jailed":[1000000000000023,null,null,null],"status":["unbonding","bonded","unbonding","bonded"]}},{"ix":199,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}}],"events":["send_downtime_slash_request","insufficient_shares","insufficient_shares","send_double_sign_slash_request","send_downtime_slash_request","send_double_sign_slash_request","downtime_slash_request_outstanding","downtime_slash_request_outstanding","insufficient_shares","insufficient_shares","insufficient_shares","send_downtime_slash_request","send_vsc_without_downtime_ack","receive_double_sign_slash_request","receive_double_sign_slash_request","receive_slash_request_unbonded","receive_slash_request_unbonded","send_vsc_without_downtime_ack","insufficient_shares","consumer_update_val","consumer_update_val","send_vsc_without_downtime_ack","receive_downtime_slash_request","jail","send_vsc_not_because_change","send_vsc_with_downtime_ack","send_vsc_without_downtime_ack","receive_downtime_slash_ack","send_vsc_without_downtime_ack","consumer_del_val","consumer_update_val","consumer_add_val","insufficient_shares","insufficient_shares","consumer_send_maturation","more_than_one_third_val_power_change","send_vsc_without_downtime_ack","insufficient_shares","send_vsc_not_because_change","send_vsc_without_downtime_ack","send_vsc_without_downtime_ack","insufficient_shares","consumer_del_val","consumer_update_val","consumer_add_val","set_undel_hold_false","set_undel_hold_false","set_undel_hold_false","send_vsc_without_downtime_ack","consumer_update_val","consumer_send_maturation","consumer_send_maturation","consumer_send_maturation","consumer_send_maturation","insufficient_shares","more_than_one_third_val_power_change","rebond_unval","complete_undel_in_endblock","send_vsc_without_downtime_ack","consumer_update_val","consumer_update_val","some_undels_expired_but_not_completed","send_vsc_without_downtime_ack","some_undels_expired_but_not_completed","consumer_add_val","consumer_del_val","consumer_update_val","some_undels_expired_but_not_completed","send_vsc_not_because_change","send_vsc_without_downtime_ack","complete_undel_immediate","complete_undel_immediate","complete_undel_immediate","complete_undel_immediate","complete_undel_immediate"]},{"meta":{"commit":"7ffd0c04e4205cbc9caf212abfe6c59ee43153bf"},"constants":{"P":"provider","C":"consumer","UNBONDING_SECONDS_P":70,"UNBONDING_SECONDS_C":50,"TRUSTING_SECONDS":49,"NUM_VALIDATORS":4,"MAX_VALIDATORS":2,"SLASH_DOUBLESIGN":0,"SLASH_DOWNTIME":0,"JAIL_SECONDS":999999999999999,"BLOCK_SECONDS":6,"INITIAL_DELEGATOR_TOKENS":10000000000000,"DELEGATE_AMT_MIN":1000,"DELEGATE_AMT_MAX":5000,"UNDELEGATE_AMT_MIN":1000,"UNDELEGATE_AMT_MAX":5000,"ISDOWNTIME_PROBABILITY":0.5,"MAX_NUM_PACKETS_FOR_DELIVER":6},"actions":[{"ix":0,"action":{"kind":"Undelegate","val":3,"amt":3851},"partialState":{"h":1,"t":6,"tokens":[5000,4000,3000,2000],"delegation":[4000,3000,2000,1000],"delegatorTokens":10000000000000}},{"ix":1,"action":{"kind":"Deliver","chain":"consumer","numPackets":5},"partialState":{"h":1,"t":6,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":2,"action":{"kind":"Delegate","val":0,"amt":2268},"partialState":{"h":1,"t":6,"tokens":[7268,4000,3000,2000],"delegation":[6268,3000,2000,1000],"delegatorTokens":9999999997732}},{"ix":3,"action":{"kind":"Undelegate","val":3,"amt":1710},"partialState":{"h":1,"t":6,"tokens":[7268,4000,3000,2000],"delegation":[6268,3000,2000,1000],"delegatorTokens":9999999997732}},{"ix":4,"action":{"kind":"ConsumerSlash","val":3,"infractionHeight":0,"isDowntime":false},"partialState":{"h":1,"t":6,"outstandingDowntime":[false,false,false,false]}},{"ix":5,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":2,"t":12,"tokens":[7268,4000,3000,2000],"delegation":[6268,3000,2000,1000],"delegatorTokens":9999999997732,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":6,"action":{"kind":"Undelegate","val":1,"amt":3319},"partialState":{"h":2,"t":12,"tokens":[7268,4000,3000,2000],"delegation":[6268,3000,2000,1000],"delegatorTokens":9999999997732}},{"ix":7,"action":{"kind":"Delegate","val":3,"amt":4686},"partialState":{"h":2,"t":12,"tokens":[7268,4000,3000,6686],"delegation":[6268,3000,2000,5686],"delegatorTokens":9999999993046}},{"ix":8,"action":{"kind":"ConsumerSlash","val":1,"infractionHeight":0,"isDowntime":true},"partialState":{"h":1,"t":6,"outstandingDowntime":[false,true,false,false]}},{"ix":9,"action":{"kind":"Delegate","val":0,"amt":1316},"partialState":{"h":2,"t":12,"tokens":[8584,4000,3000,6686],"delegation":[7584,3000,2000,5686],"delegatorTokens":9999999991730}},{"ix":10,"action":{"kind":"Delegate","val":2,"amt":1147},"partialState":{"h":2,"t":12,"tokens":[8584,4000,4147,6686],"delegation":[7584,3000,3147,5686],"delegatorTokens":9999999990583}},{"ix":11,"action":{"kind":"Delegate","val":1,"amt":1325},"partialState":{"h":2,"t":12,"tokens":[8584,5325,4147,6686],"delegation":[7584,4325,3147,5686],"delegatorTokens":9999999989258}},{"ix":12,"action":{"kind":"Undelegate","val":3,"amt":3587},"partialState":{"h":2,"t":12,"tokens":[8584,5325,4147,3099],"delegation":[7584,4325,3147,2099],"delegatorTokens":9999999989258}},{"ix":13,"action":{"kind":"Delegate","val":2,"amt":1404},"partialState":{"h":2,"t":12,"tokens":[8584,5325,5551,3099],"delegation":[7584,4325,4551,2099],"delegatorTokens":9999999987854}},{"ix":14,"action":{"kind":"ConsumerSlash","val":3,"infractionHeight":0,"isDowntime":true},"partialState":{"h":1,"t":6,"outstandingDowntime":[false,true,false,true]}},{"ix":15,"action":{"kind":"ConsumerSlash","val":1,"infractionHeight":0,"isDowntime":true},"partialState":{"h":1,"t":6,"outstandingDowntime":[false,true,false,true]}},{"ix":16,"action":{"kind":"Undelegate","val":2,"amt":3892},"partialState":{"h":2,"t":12,"tokens":[8584,5325,1659,3099],"delegation":[7584,4325,659,2099],"delegatorTokens":9999999987854}},{"ix":17,"action":{"kind":"Deliver","chain":"consumer","numPackets":1},"partialState":{"h":1,"t":6,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,true,false,true]}},{"ix":18,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":2,"t":12,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,true,false,true]}},{"ix":19,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":20,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":21,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":3,"t":18,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,true,false,true]}},{"ix":22,"action":{"kind":"ConsumerSlash","val":1,"infractionHeight":0,"isDowntime":true},"partialState":{"h":3,"t":18,"outstandingDowntime":[false,true,false,true]}},{"ix":23,"action":{"kind":"Deliver","chain":"provider","numPackets":5},"partialState":{"h":2,"t":12,"tokens":[8584,5325,1659,3099],"delegation":[7584,4325,659,2099],"delegatorTokens":9999999987854,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":24,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":4,"t":24,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,true,false,true]}},{"ix":25,"action":{"kind":"ConsumerSlash","val":1,"infractionHeight":2,"isDowntime":false},"partialState":{"h":4,"t":24,"outstandingDowntime":[false,true,false,true]}},{"ix":26,"action":{"kind":"ConsumerSlash","val":2,"infractionHeight":3,"isDowntime":true},"partialState":{"h":4,"t":24,"outstandingDowntime":[false,true,true,true]}},{"ix":27,"action":{"kind":"Delegate","val":2,"amt":1647},"partialState":{"h":2,"t":12,"tokens":[8584,5325,3306,3099],"delegation":[7584,4325,2306,2099],"delegatorTokens":9999999986207}},{"ix":28,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":5,"t":30,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,true,true,true]}},{"ix":29,"action":{"kind":"Undelegate","val":3,"amt":1496},"partialState":{"h":2,"t":12,"tokens":[8584,5325,3306,1603],"delegation":[7584,4325,2306,603],"delegatorTokens":9999999986207}},{"ix":30,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":3,"t":18,"tokens":[8584,5325,3306,1603],"delegation":[7584,4325,2306,603],"delegatorTokens":9999999986207,"jailed":[null,1000000000000011,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":31,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":32,"action":{"kind":"Undelegate","val":1,"amt":1580},"partialState":{"h":3,"t":18,"tokens":[8584,3745,3306,1603],"delegation":[7584,2745,2306,603],"delegatorTokens":9999999986207}},{"ix":33,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":34,"action":{"kind":"Delegate","val":0,"amt":4518},"partialState":{"h":3,"t":18,"tokens":[13102,3745,3306,1603],"delegation":[12102,2745,2306,603],"delegatorTokens":9999999981689}},{"ix":35,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":6,"t":36,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,true,true,true]}},{"ix":36,"action":{"kind":"Delegate","val":0,"amt":3440},"partialState":{"h":3,"t":18,"tokens":[16542,3745,3306,1603],"delegation":[15542,2745,2306,603],"delegatorTokens":9999999978249}},{"ix":37,"action":{"kind":"Delegate","val":3,"amt":3500},"partialState":{"h":3,"t":18,"tokens":[16542,3745,3306,5103],"delegation":[15542,2745,2306,4103],"delegatorTokens":9999999974749}},{"ix":38,"action":{"kind":"Undelegate","val":1,"amt":3845},"partialState":{"h":3,"t":18,"tokens":[16542,3745,3306,5103],"delegation":[15542,2745,2306,4103],"delegatorTokens":9999999974749}},{"ix":39,"action":{"kind":"Undelegate","val":2,"amt":2013},"partialState":{"h":3,"t":18,"tokens":[16542,3745,1293,5103],"delegation":[15542,2745,293,4103],"delegatorTokens":9999999974749}},{"ix":40,"action":{"kind":"Deliver","chain":"consumer","numPackets":5},"partialState":{"h":6,"t":36,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,true,true,true]}},{"ix":41,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":4,"t":24,"tokens":[16542,3745,1293,5103],"delegation":[15542,2745,293,4103],"delegatorTokens":9999999974749,"jailed":[null,1000000000000011,null,null],"status":["bonded","unbonding","unbonded","bonded"]}},{"ix":42,"action":{"kind":"Undelegate","val":0,"amt":4680},"partialState":{"h":4,"t":24,"tokens":[11862,3745,1293,5103],"delegation":[10862,2745,293,4103],"delegatorTokens":9999999974749}},{"ix":43,"action":{"kind":"Undelegate","val":3,"amt":2743},"partialState":{"h":4,"t":24,"tokens":[11862,3745,1293,2360],"delegation":[10862,2745,293,1360],"delegatorTokens":9999999974749}},{"ix":44,"action":{"kind":"Undelegate","val":3,"amt":2457},"partialState":{"h":4,"t":24,"tokens":[11862,3745,1293,2360],"delegation":[10862,2745,293,1360],"delegatorTokens":9999999974749}},{"ix":45,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":46,"action":{"kind":"Undelegate","val":1,"amt":3288},"partialState":{"h":4,"t":24,"tokens":[11862,3745,1293,2360],"delegation":[10862,2745,293,1360],"delegatorTokens":9999999974749}},{"ix":47,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":7,"t":42,"consumerPower":[7268,4000,null,null],"outstandingDowntime":[false,true,true,true]}},{"ix":48,"action":{"kind":"Undelegate","val":0,"amt":2481},"partialState":{"h":4,"t":24,"tokens":[9381,3745,1293,2360],"delegation":[8381,2745,293,1360],"delegatorTokens":9999999974749}},{"ix":49,"action":{"kind":"Deliver","chain":"consumer","numPackets":5},"partialState":{"h":7,"t":42,"consumerPower":[7268,4000,null,null],"outstandingDowntime":[false,false,true,true]}},{"ix":50,"action":{"kind":"Undelegate","val":3,"amt":2789},"partialState":{"h":4,"t":24,"tokens":[9381,3745,1293,2360],"delegation":[8381,2745,293,1360],"delegatorTokens":9999999974749}},{"ix":51,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":52,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":53,"action":{"kind":"Delegate","val":3,"amt":2923},"partialState":{"h":4,"t":24,"tokens":[9381,3745,1293,5283],"delegation":[8381,2745,293,4283],"delegatorTokens":9999999971826}},{"ix":54,"action":{"kind":"Delegate","val":3,"amt":3202},"partialState":{"h":4,"t":24,"tokens":[9381,3745,1293,8485],"delegation":[8381,2745,293,7485],"delegatorTokens":9999999968624}},{"ix":55,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":5,"t":30,"tokens":[9381,3745,1293,8485],"delegation":[8381,2745,293,7485],"delegatorTokens":9999999968624,"jailed":[null,1000000000000011,null,null],"status":["bonded","unbonding","unbonded","bonded"]}},{"ix":56,"action":{"kind":"Deliver","chain":"provider","numPackets":3},"partialState":{"h":5,"t":30,"tokens":[9381,3745,1293,8485],"delegation":[8381,2745,293,7485],"delegatorTokens":9999999968624,"jailed":[null,1000000000000011,null,null],"status":["bonded","unbonding","unbonded","bonded"]}},{"ix":57,"action":{"kind":"Undelegate","val":2,"amt":1532},"partialState":{"h":5,"t":30,"tokens":[9381,3745,1293,8485],"delegation":[8381,2745,293,7485],"delegatorTokens":9999999968624}},{"ix":58,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":59,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":8,"t":48,"consumerPower":[8584,5325,null,null],"outstandingDowntime":[false,false,true,true]}},{"ix":60,"action":{"kind":"Undelegate","val":3,"amt":2398},"partialState":{"h":5,"t":30,"tokens":[9381,3745,1293,6087],"delegation":[8381,2745,293,5087],"delegatorTokens":9999999968624}},{"ix":61,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":62,"action":{"kind":"Deliver","chain":"consumer","numPackets":6},"partialState":{"h":8,"t":48,"consumerPower":[8584,5325,null,null],"outstandingDowntime":[false,false,true,true]}},{"ix":63,"action":{"kind":"Deliver","chain":"provider","numPackets":2},"partialState":{"h":5,"t":30,"tokens":[9381,3745,1293,6087],"delegation":[8381,2745,293,5087],"delegatorTokens":9999999968624,"jailed":[null,1000000000000011,null,null],"status":["bonded","unbonding","unbonded","bonded"]}},{"ix":64,"action":{"kind":"Deliver","chain":"provider","numPackets":6},"partialState":{"h":5,"t":30,"tokens":[9381,3745,1293,6087],"delegation":[8381,2745,293,5087],"delegatorTokens":9999999968624,"jailed":[null,1000000000000011,null,null],"status":["bonded","unbonding","unbonded","bonded"]}},{"ix":65,"action":{"kind":"Delegate","val":3,"amt":3804},"partialState":{"h":5,"t":30,"tokens":[9381,3745,1293,9891],"delegation":[8381,2745,293,8891],"delegatorTokens":9999999964820}},{"ix":66,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":67,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":9,"t":54,"consumerPower":[16542,null,null,5103],"outstandingDowntime":[false,false,true,true]}},{"ix":68,"action":{"kind":"Undelegate","val":0,"amt":4526},"partialState":{"h":5,"t":30,"tokens":[4855,3745,1293,9891],"delegation":[3855,2745,293,8891],"delegatorTokens":9999999964820}},{"ix":69,"action":{"kind":"Deliver","chain":"consumer","numPackets":3},"partialState":{"h":9,"t":54,"consumerPower":[16542,null,null,5103],"outstandingDowntime":[false,false,true,true]}},{"ix":70,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":71,"action":{"kind":"Delegate","val":1,"amt":4275},"partialState":{"h":5,"t":30,"tokens":[4855,8020,1293,9891],"delegation":[3855,7020,293,8891],"delegatorTokens":9999999960545}},{"ix":72,"action":{"kind":"Delegate","val":1,"amt":3834},"partialState":{"h":5,"t":30,"tokens":[4855,11854,1293,9891],"delegation":[3855,10854,293,8891],"delegatorTokens":9999999956711}},{"ix":73,"action":{"kind":"Deliver","chain":"provider","numPackets":1},"partialState":{"h":5,"t":30,"tokens":[4855,11854,1293,9891],"delegation":[3855,10854,293,8891],"delegatorTokens":9999999956711,"jailed":[null,1000000000000011,null,null],"status":["bonded","unbonding","unbonded","bonded"]}},{"ix":74,"action":{"kind":"Undelegate","val":3,"amt":3331},"partialState":{"h":5,"t":30,"tokens":[4855,11854,1293,6560],"delegation":[3855,10854,293,5560],"delegatorTokens":9999999956711}},{"ix":75,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":76,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":10,"t":60,"consumerPower":[16542,null,null,5103],"outstandingDowntime":[false,false,true,true]}},{"ix":77,"action":{"kind":"Deliver","chain":"consumer","numPackets":5},"partialState":{"h":10,"t":60,"consumerPower":[16542,null,null,5103],"outstandingDowntime":[false,false,true,true]}},{"ix":78,"action":{"kind":"Undelegate","val":1,"amt":4665},"partialState":{"h":5,"t":30,"tokens":[4855,7189,1293,6560],"delegation":[3855,6189,293,5560],"delegatorTokens":9999999956711}},{"ix":79,"action":{"kind":"Undelegate","val":1,"amt":2020},"partialState":{"h":5,"t":30,"tokens":[4855,5169,1293,6560],"delegation":[3855,4169,293,5560],"delegatorTokens":9999999956711}},{"ix":80,"action":{"kind":"Deliver","chain":"consumer","numPackets":1},"partialState":{"h":10,"t":60,"consumerPower":[16542,null,null,5103],"outstandingDowntime":[false,false,true,true]}},{"ix":81,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":82,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":11,"t":66,"consumerPower":[16542,null,null,5103],"outstandingDowntime":[false,false,true,true]}},{"ix":83,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":84,"action":{"kind":"Undelegate","val":0,"amt":2894},"partialState":{"h":5,"t":30,"tokens":[1961,5169,1293,6560],"delegation":[961,4169,293,5560],"delegatorTokens":9999999956711}},{"ix":85,"action":{"kind":"Deliver","chain":"consumer","numPackets":5},"partialState":{"h":11,"t":66,"consumerPower":[16542,null,null,5103],"outstandingDowntime":[false,false,true,true]}},{"ix":86,"action":{"kind":"Undelegate","val":1,"amt":1670},"partialState":{"h":5,"t":30,"tokens":[1961,3499,1293,6560],"delegation":[961,2499,293,5560],"delegatorTokens":9999999956711}},{"ix":87,"action":{"kind":"Deliver","chain":"provider","numPackets":4},"partialState":{"h":5,"t":30,"tokens":[1961,3499,1293,6560],"delegation":[961,2499,293,5560],"delegatorTokens":9999999956711,"jailed":[null,1000000000000011,null,null],"status":["bonded","unbonding","unbonded","bonded"]}},{"ix":88,"action":{"kind":"Undelegate","val":0,"amt":1974},"partialState":{"h":5,"t":30,"tokens":[1961,3499,1293,6560],"delegation":[961,2499,293,5560],"delegatorTokens":9999999956711}},{"ix":89,"action":{"kind":"Undelegate","val":2,"amt":3586},"partialState":{"h":5,"t":30,"tokens":[1961,3499,1293,6560],"delegation":[961,2499,293,5560],"delegatorTokens":9999999956711}},{"ix":90,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":91,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":6,"t":36,"tokens":[1961,3499,1293,6560],"delegation":[961,2499,293,5560],"delegatorTokens":9999999956711,"jailed":[null,1000000000000011,null,null],"status":["bonded","unbonding","unbonded","bonded"]}},{"ix":92,"action":{"kind":"Undelegate","val":3,"amt":1989},"partialState":{"h":6,"t":36,"tokens":[1961,3499,1293,4571],"delegation":[961,2499,293,3571],"delegatorTokens":9999999956711}},{"ix":93,"action":{"kind":"Deliver","chain":"consumer","numPackets":6},"partialState":{"h":11,"t":66,"consumerPower":[16542,null,null,5103],"outstandingDowntime":[false,false,true,true]}},{"ix":94,"action":{"kind":"Deliver","chain":"provider","numPackets":6},"partialState":{"h":6,"t":36,"tokens":[1961,3499,1293,4571],"delegation":[961,2499,293,3571],"delegatorTokens":9999999956711,"jailed":[null,1000000000000011,null,null],"status":["bonded","unbonding","unbonded","bonded"]}},{"ix":95,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":12,"t":72,"consumerPower":[9381,null,null,8485],"outstandingDowntime":[false,false,true,true]}},{"ix":96,"action":{"kind":"Undelegate","val":2,"amt":2400},"partialState":{"h":6,"t":36,"tokens":[1961,3499,1293,4571],"delegation":[961,2499,293,3571],"delegatorTokens":9999999956711}},{"ix":97,"action":{"kind":"Delegate","val":0,"amt":2741},"partialState":{"h":6,"t":36,"tokens":[4702,3499,1293,4571],"delegation":[3702,2499,293,3571],"delegatorTokens":9999999953970}},{"ix":98,"action":{"kind":"Deliver","chain":"consumer","numPackets":3},"partialState":{"h":12,"t":72,"consumerPower":[9381,null,null,8485],"outstandingDowntime":[false,false,true,true]}},{"ix":99,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":100,"action":{"kind":"Deliver","chain":"consumer","numPackets":4},"partialState":{"h":12,"t":72,"consumerPower":[9381,null,null,8485],"outstandingDowntime":[false,false,true,true]}},{"ix":101,"action":{"kind":"Deliver","chain":"provider","numPackets":6},"partialState":{"h":6,"t":36,"tokens":[4702,3499,1293,4571],"delegation":[3702,2499,293,3571],"delegatorTokens":9999999953970,"jailed":[null,1000000000000011,null,null],"status":["bonded","unbonding","unbonded","bonded"]}},{"ix":102,"action":{"kind":"Undelegate","val":1,"amt":1361},"partialState":{"h":6,"t":36,"tokens":[4702,2138,1293,4571],"delegation":[3702,1138,293,3571],"delegatorTokens":9999999953970}},{"ix":103,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":7,"t":42,"tokens":[4702,2138,1293,4571],"delegation":[3702,1138,293,3571],"delegatorTokens":9999999953970,"jailed":[null,1000000000000011,null,null],"status":["bonded","unbonding","unbonded","bonded"]}},{"ix":104,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":13,"t":78,"consumerPower":[9381,null,null,8485],"outstandingDowntime":[false,false,true,true]}},{"ix":105,"action":{"kind":"Delegate","val":1,"amt":1097},"partialState":{"h":7,"t":42,"tokens":[4702,3235,1293,4571],"delegation":[3702,2235,293,3571],"delegatorTokens":9999999952873}},{"ix":106,"action":{"kind":"Deliver","chain":"provider","numPackets":4},"partialState":{"h":7,"t":42,"tokens":[4702,3235,1293,4571],"delegation":[3702,2235,293,3571],"delegatorTokens":9999999952873,"jailed":[null,1000000000000011,null,null],"status":["bonded","unbonding","unbonded","bonded"]}},{"ix":107,"action":{"kind":"Delegate","val":3,"amt":3748},"partialState":{"h":7,"t":42,"tokens":[4702,3235,1293,8319],"delegation":[3702,2235,293,7319],"delegatorTokens":9999999949125}},{"ix":108,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":109,"action":{"kind":"Deliver","chain":"consumer","numPackets":5},"partialState":{"h":13,"t":78,"consumerPower":[9381,null,null,8485],"outstandingDowntime":[false,false,true,true]}},{"ix":110,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":14,"t":84,"consumerPower":[1961,null,null,6560],"outstandingDowntime":[false,false,true,true]}},{"ix":111,"action":{"kind":"Undelegate","val":2,"amt":2609},"partialState":{"h":7,"t":42,"tokens":[4702,3235,1293,8319],"delegation":[3702,2235,293,7319],"delegatorTokens":9999999949125}},{"ix":112,"action":{"kind":"Deliver","chain":"consumer","numPackets":1},"partialState":{"h":14,"t":84,"consumerPower":[1961,null,null,6560],"outstandingDowntime":[false,false,true,true]}},{"ix":113,"action":{"kind":"Deliver","chain":"consumer","numPackets":1},"partialState":{"h":14,"t":84,"consumerPower":[1961,null,null,6560],"outstandingDowntime":[false,false,true,true]}},{"ix":114,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":115,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":116,"action":{"kind":"Delegate","val":1,"amt":2685},"partialState":{"h":7,"t":42,"tokens":[4702,5920,1293,8319],"delegation":[3702,4920,293,7319],"delegatorTokens":9999999946440}},{"ix":117,"action":{"kind":"Deliver","chain":"consumer","numPackets":4},"partialState":{"h":14,"t":84,"consumerPower":[1961,null,null,6560],"outstandingDowntime":[false,false,true,true]}},{"ix":118,"action":{"kind":"Deliver","chain":"provider","numPackets":4},"partialState":{"h":7,"t":42,"tokens":[4702,5920,1293,8319],"delegation":[3702,4920,293,7319],"delegatorTokens":9999999946440,"jailed":[null,1000000000000011,null,null],"status":["bonded","unbonding","unbonded","bonded"]}},{"ix":119,"action":{"kind":"Delegate","val":0,"amt":3195},"partialState":{"h":7,"t":42,"tokens":[7897,5920,1293,8319],"delegation":[6897,4920,293,7319],"delegatorTokens":9999999943245}},{"ix":120,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":8,"t":48,"tokens":[7897,5920,1293,8319],"delegation":[6897,4920,293,7319],"delegatorTokens":9999999943245,"jailed":[null,1000000000000011,null,null],"status":["bonded","unbonding","unbonded","bonded"]}},{"ix":121,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":122,"action":{"kind":"Undelegate","val":1,"amt":2336},"partialState":{"h":8,"t":48,"tokens":[7897,3584,1293,8319],"delegation":[6897,2584,293,7319],"delegatorTokens":9999999943245}},{"ix":123,"action":{"kind":"Delegate","val":2,"amt":2983},"partialState":{"h":8,"t":48,"tokens":[7897,3584,4276,8319],"delegation":[6897,2584,3276,7319],"delegatorTokens":9999999940262}},{"ix":124,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":125,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":126,"action":{"kind":"Deliver","chain":"consumer","numPackets":6},"partialState":{"h":14,"t":84,"consumerPower":[1961,null,null,6560],"outstandingDowntime":[false,false,true,true]}},{"ix":127,"action":{"kind":"Delegate","val":2,"amt":3028},"partialState":{"h":8,"t":48,"tokens":[7897,3584,7304,8319],"delegation":[6897,2584,6304,7319],"delegatorTokens":9999999937234}},{"ix":128,"action":{"kind":"Delegate","val":3,"amt":4298},"partialState":{"h":8,"t":48,"tokens":[7897,3584,7304,12617],"delegation":[6897,2584,6304,11617],"delegatorTokens":9999999932936}},{"ix":129,"action":{"kind":"Undelegate","val":1,"amt":3624},"partialState":{"h":8,"t":48,"tokens":[7897,3584,7304,12617],"delegation":[6897,2584,6304,11617],"delegatorTokens":9999999932936}},{"ix":130,"action":{"kind":"Undelegate","val":0,"amt":4830},"partialState":{"h":8,"t":48,"tokens":[3067,3584,7304,12617],"delegation":[2067,2584,6304,11617],"delegatorTokens":9999999932936}},{"ix":131,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":132,"action":{"kind":"Deliver","chain":"consumer","numPackets":6},"partialState":{"h":14,"t":84,"consumerPower":[1961,null,null,6560],"outstandingDowntime":[false,false,true,true]}},{"ix":133,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":134,"action":{"kind":"Deliver","chain":"consumer","numPackets":1},"partialState":{"h":14,"t":84,"consumerPower":[1961,null,null,6560],"outstandingDowntime":[false,false,true,true]}},{"ix":135,"action":{"kind":"Deliver","chain":"consumer","numPackets":6},"partialState":{"h":14,"t":84,"consumerPower":[1961,null,null,6560],"outstandingDowntime":[false,false,true,true]}},{"ix":136,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":137,"action":{"kind":"Deliver","chain":"consumer","numPackets":2},"partialState":{"h":14,"t":84,"consumerPower":[1961,null,null,6560],"outstandingDowntime":[false,false,true,true]}},{"ix":138,"action":{"kind":"Deliver","chain":"provider","numPackets":6},"partialState":{"h":8,"t":48,"tokens":[3067,3584,7304,12617],"delegation":[2067,2584,6304,11617],"delegatorTokens":9999999932936,"jailed":[null,1000000000000011,null,null],"status":["bonded","unbonding","unbonded","bonded"]}},{"ix":139,"action":{"kind":"Delegate","val":2,"amt":2132},"partialState":{"h":8,"t":48,"tokens":[3067,3584,9436,12617],"delegation":[2067,2584,8436,11617],"delegatorTokens":9999999930804}},{"ix":140,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":141,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":9,"t":54,"tokens":[3067,3584,9436,12617],"delegation":[2067,2584,8436,11617],"delegatorTokens":9999999930804,"jailed":[null,1000000000000011,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":142,"action":{"kind":"Deliver","chain":"provider","numPackets":4},"partialState":{"h":9,"t":54,"tokens":[3067,3584,9436,12617],"delegation":[2067,2584,8436,11617],"delegatorTokens":9999999930804,"jailed":[null,1000000000000011,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":143,"action":{"kind":"Deliver","chain":"provider","numPackets":1},"partialState":{"h":9,"t":54,"tokens":[3067,3584,9436,12617],"delegation":[2067,2584,8436,11617],"delegatorTokens":9999999930804,"jailed":[null,1000000000000011,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":144,"action":{"kind":"Undelegate","val":1,"amt":3871},"partialState":{"h":9,"t":54,"tokens":[3067,3584,9436,12617],"delegation":[2067,2584,8436,11617],"delegatorTokens":9999999930804}},{"ix":145,"action":{"kind":"Undelegate","val":0,"amt":2034},"partialState":{"h":9,"t":54,"tokens":[1033,3584,9436,12617],"delegation":[33,2584,8436,11617],"delegatorTokens":9999999930804}},{"ix":146,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":15,"t":90,"consumerPower":[4702,null,null,4571],"outstandingDowntime":[false,false,true,true]}},{"ix":147,"action":{"kind":"Undelegate","val":1,"amt":2246},"partialState":{"h":9,"t":54,"tokens":[1033,1338,9436,12617],"delegation":[33,338,8436,11617],"delegatorTokens":9999999930804}},{"ix":148,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":10,"t":60,"tokens":[1033,1338,9436,12617],"delegation":[33,338,8436,11617],"delegatorTokens":9999999930804,"jailed":[null,1000000000000011,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":149,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":150,"action":{"kind":"Deliver","chain":"provider","numPackets":1},"partialState":{"h":10,"t":60,"tokens":[1033,1338,9436,12617],"delegation":[33,338,8436,11617],"delegatorTokens":9999999930804,"jailed":[null,1000000000000011,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":151,"action":{"kind":"Deliver","chain":"provider","numPackets":4},"partialState":{"h":10,"t":60,"tokens":[1033,1338,9436,12617],"delegation":[33,338,8436,11617],"delegatorTokens":9999999930804,"jailed":[null,1000000000000011,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":152,"action":{"kind":"Undelegate","val":1,"amt":3517},"partialState":{"h":10,"t":60,"tokens":[1033,1338,9436,12617],"delegation":[33,338,8436,11617],"delegatorTokens":9999999930804}},{"ix":153,"action":{"kind":"Undelegate","val":0,"amt":4892},"partialState":{"h":10,"t":60,"tokens":[1033,1338,9436,12617],"delegation":[33,338,8436,11617],"delegatorTokens":9999999930804}},{"ix":154,"action":{"kind":"Delegate","val":0,"amt":2406},"partialState":{"h":10,"t":60,"tokens":[3439,1338,9436,12617],"delegation":[2439,338,8436,11617],"delegatorTokens":9999999928398}},{"ix":155,"action":{"kind":"Deliver","chain":"consumer","numPackets":2},"partialState":{"h":15,"t":90,"consumerPower":[4702,null,null,4571],"outstandingDowntime":[false,false,true,true]}},{"ix":156,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":157,"action":{"kind":"Undelegate","val":2,"amt":2725},"partialState":{"h":10,"t":60,"tokens":[3439,1338,6711,12617],"delegation":[2439,338,5711,11617],"delegatorTokens":9999999928398}},{"ix":158,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":11,"t":66,"tokens":[3439,1338,6711,12617],"delegation":[2439,338,5711,11617],"delegatorTokens":9999999928398,"jailed":[null,1000000000000011,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":159,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":16,"t":96,"consumerPower":[null,null,9436,12617],"outstandingDowntime":[false,false,true,true]}},{"ix":160,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":161,"action":{"kind":"Delegate","val":2,"amt":3673},"partialState":{"h":11,"t":66,"tokens":[3439,1338,10384,12617],"delegation":[2439,338,9384,11617],"delegatorTokens":9999999924725}},{"ix":162,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":17,"t":102,"consumerPower":[null,null,9436,12617],"outstandingDowntime":[false,false,true,true]}},{"ix":163,"action":{"kind":"Delegate","val":1,"amt":3413},"partialState":{"h":11,"t":66,"tokens":[3439,4751,10384,12617],"delegation":[2439,3751,9384,11617],"delegatorTokens":9999999921312}},{"ix":164,"action":{"kind":"Deliver","chain":"consumer","numPackets":1},"partialState":{"h":17,"t":102,"consumerPower":[null,null,9436,12617],"outstandingDowntime":[false,false,true,true]}},{"ix":165,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":166,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":12,"t":72,"tokens":[3439,4751,10384,12617],"delegation":[2439,3751,9384,11617],"delegatorTokens":9999999921312,"jailed":[null,1000000000000011,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":167,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":13,"t":78,"tokens":[3439,4751,10384,12617],"delegation":[2439,3751,9384,11617],"delegatorTokens":9999999921312,"jailed":[null,1000000000000011,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":168,"action":{"kind":"Undelegate","val":2,"amt":2518},"partialState":{"h":13,"t":78,"tokens":[3439,4751,7866,12617],"delegation":[2439,3751,6866,11617],"delegatorTokens":9999999921312}},{"ix":169,"action":{"kind":"Delegate","val":1,"amt":4570},"partialState":{"h":13,"t":78,"tokens":[3439,9321,7866,12617],"delegation":[2439,8321,6866,11617],"delegatorTokens":9999999916742}},{"ix":170,"action":{"kind":"Undelegate","val":0,"amt":2034},"partialState":{"h":13,"t":78,"tokens":[1405,9321,7866,12617],"delegation":[405,8321,6866,11617],"delegatorTokens":9999999916742}},{"ix":171,"action":{"kind":"Undelegate","val":2,"amt":4591},"partialState":{"h":13,"t":78,"tokens":[1405,9321,3275,12617],"delegation":[405,8321,2275,11617],"delegatorTokens":9999999916742}},{"ix":172,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":18,"t":108,"consumerPower":[null,null,9436,12617],"outstandingDowntime":[false,false,true,true]}},{"ix":173,"action":{"kind":"Delegate","val":2,"amt":2779},"partialState":{"h":13,"t":78,"tokens":[1405,9321,6054,12617],"delegation":[405,8321,5054,11617],"delegatorTokens":9999999913963}},{"ix":174,"action":{"kind":"Delegate","val":1,"amt":1426},"partialState":{"h":13,"t":78,"tokens":[1405,10747,6054,12617],"delegation":[405,9747,5054,11617],"delegatorTokens":9999999912537}},{"ix":175,"action":{"kind":"Undelegate","val":1,"amt":4587},"partialState":{"h":13,"t":78,"tokens":[1405,6160,6054,12617],"delegation":[405,5160,5054,11617],"delegatorTokens":9999999912537}},{"ix":176,"action":{"kind":"Deliver","chain":"provider","numPackets":4},"partialState":{"h":13,"t":78,"tokens":[1405,6160,6054,12617],"delegation":[405,5160,5054,11617],"delegatorTokens":9999999912537,"jailed":[null,1000000000000011,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":177,"action":{"kind":"Delegate","val":2,"amt":1569},"partialState":{"h":13,"t":78,"tokens":[1405,6160,7623,12617],"delegation":[405,5160,6623,11617],"delegatorTokens":9999999910968}},{"ix":178,"action":{"kind":"Undelegate","val":3,"amt":4542},"partialState":{"h":13,"t":78,"tokens":[1405,6160,7623,8075],"delegation":[405,5160,6623,7075],"delegatorTokens":9999999910968}},{"ix":179,"action":{"kind":"Delegate","val":2,"amt":3910},"partialState":{"h":13,"t":78,"tokens":[1405,6160,11533,8075],"delegation":[405,5160,10533,7075],"delegatorTokens":9999999907058}},{"ix":180,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":181,"action":{"kind":"Delegate","val":0,"amt":1557},"partialState":{"h":13,"t":78,"tokens":[2962,6160,11533,8075],"delegation":[1962,5160,10533,7075],"delegatorTokens":9999999905501}},{"ix":182,"action":{"kind":"Undelegate","val":3,"amt":4788},"partialState":{"h":13,"t":78,"tokens":[2962,6160,11533,3287],"delegation":[1962,5160,10533,2287],"delegatorTokens":9999999905501}},{"ix":183,"action":{"kind":"Undelegate","val":2,"amt":4207},"partialState":{"h":13,"t":78,"tokens":[2962,6160,7326,3287],"delegation":[1962,5160,6326,2287],"delegatorTokens":9999999905501}},{"ix":184,"action":{"kind":"Undelegate","val":2,"amt":1490},"partialState":{"h":13,"t":78,"tokens":[2962,6160,5836,3287],"delegation":[1962,5160,4836,2287],"delegatorTokens":9999999905501}},{"ix":185,"action":{"kind":"Delegate","val":0,"amt":1908},"partialState":{"h":13,"t":78,"tokens":[4870,6160,5836,3287],"delegation":[3870,5160,4836,2287],"delegatorTokens":9999999903593}},{"ix":186,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":187,"action":{"kind":"Deliver","chain":"consumer","numPackets":3},"partialState":{"h":18,"t":108,"consumerPower":[null,null,9436,12617],"outstandingDowntime":[false,false,true,true]}},{"ix":188,"action":{"kind":"Undelegate","val":2,"amt":4955},"partialState":{"h":13,"t":78,"tokens":[4870,6160,5836,3287],"delegation":[3870,5160,4836,2287],"delegatorTokens":9999999903593}},{"ix":189,"action":{"kind":"Delegate","val":2,"amt":3469},"partialState":{"h":13,"t":78,"tokens":[4870,6160,9305,3287],"delegation":[3870,5160,8305,2287],"delegatorTokens":9999999900124}},{"ix":190,"action":{"kind":"Deliver","chain":"provider","numPackets":3},"partialState":{"h":13,"t":78,"tokens":[4870,6160,9305,3287],"delegation":[3870,5160,8305,2287],"delegatorTokens":9999999900124,"jailed":[null,1000000000000011,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":191,"action":{"kind":"Deliver","chain":"provider","numPackets":6},"partialState":{"h":13,"t":78,"tokens":[4870,6160,9305,3287],"delegation":[3870,5160,8305,2287],"delegatorTokens":9999999900124,"jailed":[null,1000000000000011,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":192,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":14,"t":84,"tokens":[4870,6160,9305,3287],"delegation":[3870,5160,8305,2287],"delegatorTokens":9999999900124,"jailed":[null,1000000000000011,null,null],"status":["bonded","unbonding","bonded","unbonding"]}},{"ix":193,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":194,"action":{"kind":"Undelegate","val":1,"amt":4278},"partialState":{"h":14,"t":84,"tokens":[4870,1882,9305,3287],"delegation":[3870,882,8305,2287],"delegatorTokens":9999999900124}},{"ix":195,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":196,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":15,"t":90,"tokens":[4870,1882,9305,3287],"delegation":[3870,882,8305,2287],"delegatorTokens":9999999909099,"jailed":[null,1000000000000011,null,null],"status":["bonded","unbonding","bonded","unbonding"]}},{"ix":197,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":198,"action":{"kind":"Delegate","val":2,"amt":2265},"partialState":{"h":15,"t":90,"tokens":[4870,1882,11570,3287],"delegation":[3870,882,10570,2287],"delegatorTokens":9999999906834}},{"ix":199,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}}],"events":["insufficient_shares","insufficient_shares","send_double_sign_slash_request","send_vsc_without_downtime_ack","insufficient_shares","send_downtime_slash_request","send_downtime_slash_request","downtime_slash_request_outstanding","downtime_slash_request_outstanding","receive_double_sign_slash_request","send_double_sign_slash_request","send_downtime_slash_request","receive_downtime_slash_request","jail","receive_slash_request_unbonded","send_vsc_with_downtime_ack","insufficient_shares","send_vsc_without_downtime_ack","insufficient_shares","insufficient_shares","consumer_update_val","receive_downtime_slash_ack","insufficient_shares","send_vsc_without_downtime_ack","receive_double_sign_slash_request","insufficient_shares","consumer_update_val","consumer_update_val","consumer_update_val","consumer_del_val","consumer_add_val","insufficient_shares","insufficient_shares","receive_slash_request_unbonded","send_vsc_without_downtime_ack","consumer_update_val","consumer_update_val","insufficient_shares","send_vsc_without_downtime_ack","consumer_update_val","consumer_update_val","insufficient_shares","send_vsc_without_downtime_ack","insufficient_shares","more_than_one_third_val_power_change","send_vsc_without_downtime_ack","insufficient_shares","consumer_update_val","consumer_update_val","send_vsc_not_because_change","send_vsc_without_downtime_ack","insufficient_shares","insufficient_shares","send_vsc_without_downtime_ack","consumer_send_maturation","consumer_del_val","consumer_update_val","consumer_add_val","consumer_send_maturation","send_vsc_without_downtime_ack","consumer_send_maturation","insufficient_shares","more_than_one_third_val_power_change","rebond_unval","set_undel_hold_false","set_undel_hold_false","set_undel_hold_false","send_vsc_without_downtime_ack","complete_undel_in_endblock","send_vsc_not_because_change","send_vsc_without_downtime_ack"]},{"meta":{"commit":"7ffd0c04e4205cbc9caf212abfe6c59ee43153bf"},"constants":{"P":"provider","C":"consumer","UNBONDING_SECONDS_P":70,"UNBONDING_SECONDS_C":50,"TRUSTING_SECONDS":49,"NUM_VALIDATORS":4,"MAX_VALIDATORS":2,"SLASH_DOUBLESIGN":0,"SLASH_DOWNTIME":0,"JAIL_SECONDS":999999999999999,"BLOCK_SECONDS":6,"INITIAL_DELEGATOR_TOKENS":10000000000000,"DELEGATE_AMT_MIN":1000,"DELEGATE_AMT_MAX":5000,"UNDELEGATE_AMT_MIN":1000,"UNDELEGATE_AMT_MAX":5000,"ISDOWNTIME_PROBABILITY":0.5,"MAX_NUM_PACKETS_FOR_DELIVER":6},"actions":[{"ix":0,"action":{"kind":"Deliver","chain":"consumer","numPackets":4},"partialState":{"h":1,"t":6,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":1,"action":{"kind":"Undelegate","val":3,"amt":2580},"partialState":{"h":1,"t":6,"tokens":[5000,4000,3000,2000],"delegation":[4000,3000,2000,1000],"delegatorTokens":10000000000000}},{"ix":2,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":3,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":2,"t":12,"tokens":[5000,4000,3000,2000],"delegation":[4000,3000,2000,1000],"delegatorTokens":10000000000000,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":4,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":3,"t":18,"tokens":[5000,4000,3000,2000],"delegation":[4000,3000,2000,1000],"delegatorTokens":10000000000000,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":5,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":6,"action":{"kind":"Delegate","val":1,"amt":1433},"partialState":{"h":3,"t":18,"tokens":[5000,5433,3000,2000],"delegation":[4000,4433,2000,1000],"delegatorTokens":9999999998567}},{"ix":7,"action":{"kind":"Deliver","chain":"provider","numPackets":3},"partialState":{"h":3,"t":18,"tokens":[5000,5433,3000,2000],"delegation":[4000,4433,2000,1000],"delegatorTokens":9999999998567,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":8,"action":{"kind":"ConsumerSlash","val":2,"infractionHeight":0,"isDowntime":false},"partialState":{"h":1,"t":6,"outstandingDowntime":[false,false,false,false]}},{"ix":9,"action":{"kind":"Deliver","chain":"provider","numPackets":3},"partialState":{"h":3,"t":18,"tokens":[5000,5433,3000,2000],"delegation":[4000,4433,2000,1000],"delegatorTokens":9999999998567,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":10,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":2,"t":12,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":11,"action":{"kind":"Deliver","chain":"consumer","numPackets":3},"partialState":{"h":2,"t":12,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":12,"action":{"kind":"Deliver","chain":"provider","numPackets":5},"partialState":{"h":3,"t":18,"tokens":[5000,5433,3000,2000],"delegation":[4000,4433,2000,1000],"delegatorTokens":9999999998567,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":13,"action":{"kind":"ConsumerSlash","val":2,"infractionHeight":1,"isDowntime":true},"partialState":{"h":2,"t":12,"outstandingDowntime":[false,false,true,false]}},{"ix":14,"action":{"kind":"Delegate","val":3,"amt":3220},"partialState":{"h":3,"t":18,"tokens":[5000,5433,3000,5220],"delegation":[4000,4433,2000,4220],"delegatorTokens":9999999995347}},{"ix":15,"action":{"kind":"Undelegate","val":3,"amt":2362},"partialState":{"h":3,"t":18,"tokens":[5000,5433,3000,2858],"delegation":[4000,4433,2000,1858],"delegatorTokens":9999999995347}},{"ix":16,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":17,"action":{"kind":"Deliver","chain":"consumer","numPackets":4},"partialState":{"h":2,"t":12,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,false,true,false]}},{"ix":18,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":19,"action":{"kind":"Delegate","val":0,"amt":4337},"partialState":{"h":3,"t":18,"tokens":[9337,5433,3000,2858],"delegation":[8337,4433,2000,1858],"delegatorTokens":9999999991010}},{"ix":20,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":21,"action":{"kind":"Delegate","val":0,"amt":4837},"partialState":{"h":3,"t":18,"tokens":[14174,5433,3000,2858],"delegation":[13174,4433,2000,1858],"delegatorTokens":9999999986173}},{"ix":22,"action":{"kind":"Deliver","chain":"consumer","numPackets":6},"partialState":{"h":2,"t":12,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,false,true,false]}},{"ix":23,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":4,"t":24,"tokens":[14174,5433,3000,2858],"delegation":[13174,4433,2000,1858],"delegatorTokens":9999999986173,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":24,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":5,"t":30,"tokens":[14174,5433,3000,2858],"delegation":[13174,4433,2000,1858],"delegatorTokens":9999999986173,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":25,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":3,"t":18,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,false,true,false]}},{"ix":26,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":4,"t":24,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,false,true,false]}},{"ix":27,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":28,"action":{"kind":"Deliver","chain":"provider","numPackets":3},"partialState":{"h":5,"t":30,"tokens":[14174,5433,3000,2858],"delegation":[13174,4433,2000,1858],"delegatorTokens":9999999986173,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":29,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":30,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":5,"t":30,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,false,true,false]}},{"ix":31,"action":{"kind":"Deliver","chain":"provider","numPackets":2},"partialState":{"h":5,"t":30,"tokens":[14174,5433,3000,2858],"delegation":[13174,4433,2000,1858],"delegatorTokens":9999999986173,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":32,"action":{"kind":"ConsumerSlash","val":0,"infractionHeight":0,"isDowntime":true},"partialState":{"h":5,"t":30,"outstandingDowntime":[true,false,true,false]}},{"ix":33,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":6,"t":36,"tokens":[14174,5433,3000,2858],"delegation":[13174,4433,2000,1858],"delegatorTokens":9999999986173,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":34,"action":{"kind":"ConsumerSlash","val":2,"infractionHeight":2,"isDowntime":true},"partialState":{"h":5,"t":30,"outstandingDowntime":[true,false,true,false]}},{"ix":35,"action":{"kind":"Deliver","chain":"consumer","numPackets":2},"partialState":{"h":5,"t":30,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[true,false,true,false]}},{"ix":36,"action":{"kind":"Delegate","val":0,"amt":2139},"partialState":{"h":6,"t":36,"tokens":[16313,5433,3000,2858],"delegation":[15313,4433,2000,1858],"delegatorTokens":9999999984034}},{"ix":37,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":38,"action":{"kind":"ConsumerSlash","val":0,"infractionHeight":2,"isDowntime":false},"partialState":{"h":5,"t":30,"outstandingDowntime":[true,false,true,false]}},{"ix":39,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":6,"t":36,"consumerPower":[14174,5433,null,null],"outstandingDowntime":[true,false,true,false]}},{"ix":40,"action":{"kind":"Undelegate","val":1,"amt":2255},"partialState":{"h":6,"t":36,"tokens":[16313,3178,3000,2858],"delegation":[15313,2178,2000,1858],"delegatorTokens":9999999984034}},{"ix":41,"action":{"kind":"Undelegate","val":0,"amt":1511},"partialState":{"h":6,"t":36,"tokens":[14802,3178,3000,2858],"delegation":[13802,2178,2000,1858],"delegatorTokens":9999999984034}},{"ix":42,"action":{"kind":"Delegate","val":0,"amt":2653},"partialState":{"h":6,"t":36,"tokens":[17455,3178,3000,2858],"delegation":[16455,2178,2000,1858],"delegatorTokens":9999999981381}},{"ix":43,"action":{"kind":"Undelegate","val":1,"amt":1966},"partialState":{"h":6,"t":36,"tokens":[17455,1212,3000,2858],"delegation":[16455,212,2000,1858],"delegatorTokens":9999999981381}},{"ix":44,"action":{"kind":"Delegate","val":0,"amt":1147},"partialState":{"h":6,"t":36,"tokens":[18602,1212,3000,2858],"delegation":[17602,212,2000,1858],"delegatorTokens":9999999980234}},{"ix":45,"action":{"kind":"Undelegate","val":0,"amt":3645},"partialState":{"h":6,"t":36,"tokens":[14957,1212,3000,2858],"delegation":[13957,212,2000,1858],"delegatorTokens":9999999980234}},{"ix":46,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":47,"action":{"kind":"Delegate","val":1,"amt":1023},"partialState":{"h":6,"t":36,"tokens":[14957,2235,3000,2858],"delegation":[13957,1235,2000,1858],"delegatorTokens":9999999979211}},{"ix":48,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":7,"t":42,"consumerPower":[14174,5433,null,null],"outstandingDowntime":[true,false,true,false]}},{"ix":49,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":50,"action":{"kind":"Undelegate","val":0,"amt":1444},"partialState":{"h":6,"t":36,"tokens":[13513,2235,3000,2858],"delegation":[12513,1235,2000,1858],"delegatorTokens":9999999979211}},{"ix":51,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":52,"action":{"kind":"Deliver","chain":"consumer","numPackets":1},"partialState":{"h":7,"t":42,"consumerPower":[14174,5433,null,null],"outstandingDowntime":[true,false,true,false]}},{"ix":53,"action":{"kind":"Undelegate","val":0,"amt":3802},"partialState":{"h":6,"t":36,"tokens":[9711,2235,3000,2858],"delegation":[8711,1235,2000,1858],"delegatorTokens":9999999979211}},{"ix":54,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":8,"t":48,"consumerPower":[14174,5433,null,null],"outstandingDowntime":[true,false,true,false]}},{"ix":55,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":7,"t":42,"tokens":[9711,2235,3000,2858],"delegation":[8711,1235,2000,1858],"delegatorTokens":9999999979211,"jailed":[null,null,null,null],"status":["bonded","unbonding","bonded","unbonded"]}},{"ix":56,"action":{"kind":"Undelegate","val":1,"amt":1185},"partialState":{"h":7,"t":42,"tokens":[9711,1050,3000,2858],"delegation":[8711,50,2000,1858],"delegatorTokens":9999999979211}},{"ix":57,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":9,"t":54,"consumerPower":[14174,5433,null,null],"outstandingDowntime":[true,false,true,false]}},{"ix":58,"action":{"kind":"Delegate","val":0,"amt":2630},"partialState":{"h":7,"t":42,"tokens":[12341,1050,3000,2858],"delegation":[11341,50,2000,1858],"delegatorTokens":9999999976581}},{"ix":59,"action":{"kind":"Delegate","val":2,"amt":4683},"partialState":{"h":7,"t":42,"tokens":[12341,1050,7683,2858],"delegation":[11341,50,6683,1858],"delegatorTokens":9999999971898}},{"ix":60,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":10,"t":60,"consumerPower":[14174,5433,null,null],"outstandingDowntime":[true,false,true,false]}},{"ix":61,"action":{"kind":"Delegate","val":2,"amt":3953},"partialState":{"h":7,"t":42,"tokens":[12341,1050,11636,2858],"delegation":[11341,50,10636,1858],"delegatorTokens":9999999967945}},{"ix":62,"action":{"kind":"Undelegate","val":2,"amt":3540},"partialState":{"h":7,"t":42,"tokens":[12341,1050,8096,2858],"delegation":[11341,50,7096,1858],"delegatorTokens":9999999967945}},{"ix":63,"action":{"kind":"ConsumerSlash","val":2,"infractionHeight":1,"isDowntime":true},"partialState":{"h":10,"t":60,"outstandingDowntime":[true,false,true,false]}},{"ix":64,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":65,"action":{"kind":"Delegate","val":1,"amt":4385},"partialState":{"h":7,"t":42,"tokens":[12341,5435,8096,2858],"delegation":[11341,4435,7096,1858],"delegatorTokens":9999999963560}},{"ix":66,"action":{"kind":"Undelegate","val":0,"amt":1551},"partialState":{"h":7,"t":42,"tokens":[10790,5435,8096,2858],"delegation":[9790,4435,7096,1858],"delegatorTokens":9999999963560}},{"ix":67,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":68,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":11,"t":66,"consumerPower":[14174,5433,null,null],"outstandingDowntime":[true,false,true,false]}},{"ix":69,"action":{"kind":"ConsumerSlash","val":2,"infractionHeight":9,"isDowntime":false},"partialState":{"h":11,"t":66,"outstandingDowntime":[true,false,true,false]}},{"ix":70,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":12,"t":72,"consumerPower":[14174,5433,null,null],"outstandingDowntime":[true,false,true,false]}},{"ix":71,"action":{"kind":"Undelegate","val":1,"amt":1598},"partialState":{"h":7,"t":42,"tokens":[10790,3837,8096,2858],"delegation":[9790,2837,7096,1858],"delegatorTokens":9999999963560}},{"ix":72,"action":{"kind":"ConsumerSlash","val":3,"infractionHeight":0,"isDowntime":true},"partialState":{"h":12,"t":72,"outstandingDowntime":[true,false,true,true]}},{"ix":73,"action":{"kind":"Delegate","val":1,"amt":1302},"partialState":{"h":7,"t":42,"tokens":[10790,5139,8096,2858],"delegation":[9790,4139,7096,1858],"delegatorTokens":9999999962258}},{"ix":74,"action":{"kind":"Delegate","val":1,"amt":1924},"partialState":{"h":7,"t":42,"tokens":[10790,7063,8096,2858],"delegation":[9790,6063,7096,1858],"delegatorTokens":9999999960334}},{"ix":75,"action":{"kind":"Delegate","val":0,"amt":3025},"partialState":{"h":7,"t":42,"tokens":[13815,7063,8096,2858],"delegation":[12815,6063,7096,1858],"delegatorTokens":9999999957309}},{"ix":76,"action":{"kind":"Undelegate","val":0,"amt":2472},"partialState":{"h":7,"t":42,"tokens":[11343,7063,8096,2858],"delegation":[10343,6063,7096,1858],"delegatorTokens":9999999957309}},{"ix":77,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":8,"t":48,"tokens":[11343,7063,8096,2858],"delegation":[10343,6063,7096,1858],"delegatorTokens":9999999957309,"jailed":[null,null,null,null],"status":["bonded","unbonding","bonded","unbonded"]}},{"ix":78,"action":{"kind":"Undelegate","val":2,"amt":2721},"partialState":{"h":8,"t":48,"tokens":[11343,7063,5375,2858],"delegation":[10343,6063,4375,1858],"delegatorTokens":9999999957309}},{"ix":79,"action":{"kind":"Deliver","chain":"provider","numPackets":5},"partialState":{"h":8,"t":48,"tokens":[11343,7063,5375,2858],"delegation":[10343,6063,4375,1858],"delegatorTokens":9999999957309,"jailed":[null,null,null,null],"status":["bonded","unbonding","bonded","unbonded"]}},{"ix":80,"action":{"kind":"Delegate","val":2,"amt":2609},"partialState":{"h":8,"t":48,"tokens":[11343,7063,7984,2858],"delegation":[10343,6063,6984,1858],"delegatorTokens":9999999954700}},{"ix":81,"action":{"kind":"Deliver","chain":"provider","numPackets":4},"partialState":{"h":8,"t":48,"tokens":[11343,7063,7984,2858],"delegation":[10343,6063,6984,1858],"delegatorTokens":9999999954700,"jailed":[null,null,null,null],"status":["bonded","unbonding","bonded","unbonded"]}},{"ix":82,"action":{"kind":"Deliver","chain":"provider","numPackets":3},"partialState":{"h":8,"t":48,"tokens":[11343,7063,7984,2858],"delegation":[10343,6063,6984,1858],"delegatorTokens":9999999954700,"jailed":[null,null,null,null],"status":["bonded","unbonding","bonded","unbonded"]}},{"ix":83,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":84,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":13,"t":78,"consumerPower":[14174,5433,null,null],"outstandingDowntime":[true,false,true,true]}},{"ix":85,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":86,"action":{"kind":"Deliver","chain":"provider","numPackets":1},"partialState":{"h":8,"t":48,"tokens":[11343,7063,7984,2858],"delegation":[10343,6063,6984,1858],"delegatorTokens":9999999954700,"jailed":[null,null,null,null],"status":["bonded","unbonding","bonded","unbonded"]}},{"ix":87,"action":{"kind":"Delegate","val":3,"amt":4810},"partialState":{"h":8,"t":48,"tokens":[11343,7063,7984,7668],"delegation":[10343,6063,6984,6668],"delegatorTokens":9999999949890}},{"ix":88,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":9,"t":54,"tokens":[11343,7063,7984,7668],"delegation":[10343,6063,6984,6668],"delegatorTokens":9999999949890,"jailed":[1000000000000047,null,null,null],"status":["bonded","unbonding","bonded","unbonded"]}},{"ix":89,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":14,"t":84,"consumerPower":[14174,5433,null,null],"outstandingDowntime":[true,false,true,true]}},{"ix":90,"action":{"kind":"Deliver","chain":"consumer","numPackets":3},"partialState":{"h":14,"t":84,"consumerPower":[14174,5433,null,null],"outstandingDowntime":[true,false,true,true]}},{"ix":91,"action":{"kind":"Undelegate","val":0,"amt":1590},"partialState":{"h":9,"t":54,"tokens":[9753,7063,7984,7668],"delegation":[8753,6063,6984,6668],"delegatorTokens":9999999949890}},{"ix":92,"action":{"kind":"Undelegate","val":3,"amt":1367},"partialState":{"h":9,"t":54,"tokens":[9753,7063,7984,6301],"delegation":[8753,6063,6984,5301],"delegatorTokens":9999999949890}},{"ix":93,"action":{"kind":"Undelegate","val":0,"amt":1381},"partialState":{"h":9,"t":54,"tokens":[8372,7063,7984,6301],"delegation":[7372,6063,6984,5301],"delegatorTokens":9999999949890}},{"ix":94,"action":{"kind":"Deliver","chain":"consumer","numPackets":2},"partialState":{"h":14,"t":84,"consumerPower":[14174,5433,null,null],"outstandingDowntime":[true,false,true,true]}},{"ix":95,"action":{"kind":"Undelegate","val":0,"amt":4728},"partialState":{"h":9,"t":54,"tokens":[3644,7063,7984,6301],"delegation":[2644,6063,6984,5301],"delegatorTokens":9999999949890}},{"ix":96,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":97,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":98,"action":{"kind":"Undelegate","val":0,"amt":4089},"partialState":{"h":9,"t":54,"tokens":[3644,7063,7984,6301],"delegation":[2644,6063,6984,5301],"delegatorTokens":9999999949890}},{"ix":99,"action":{"kind":"Deliver","chain":"consumer","numPackets":3},"partialState":{"h":14,"t":84,"consumerPower":[14174,5433,null,null],"outstandingDowntime":[true,false,true,true]}},{"ix":100,"action":{"kind":"Delegate","val":1,"amt":4593},"partialState":{"h":9,"t":54,"tokens":[3644,11656,7984,6301],"delegation":[2644,10656,6984,5301],"delegatorTokens":9999999945297}},{"ix":101,"action":{"kind":"Undelegate","val":0,"amt":4394},"partialState":{"h":9,"t":54,"tokens":[3644,11656,7984,6301],"delegation":[2644,10656,6984,5301],"delegatorTokens":9999999945297}},{"ix":102,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":10,"t":60,"tokens":[3644,11656,7984,6301],"delegation":[2644,10656,6984,5301],"delegatorTokens":9999999945297,"jailed":[1000000000000047,null,null,null],"status":["unbonding","bonded","bonded","unbonded"]}},{"ix":103,"action":{"kind":"Deliver","chain":"provider","numPackets":1},"partialState":{"h":10,"t":60,"tokens":[3644,11656,7984,6301],"delegation":[2644,10656,6984,5301],"delegatorTokens":9999999945297,"jailed":[1000000000000047,null,null,null],"status":["unbonding","bonded","bonded","unbonded"]}},{"ix":104,"action":{"kind":"Deliver","chain":"provider","numPackets":3},"partialState":{"h":10,"t":60,"tokens":[3644,11656,7984,6301],"delegation":[2644,10656,6984,5301],"delegatorTokens":9999999945297,"jailed":[1000000000000047,null,null,null],"status":["unbonding","bonded","bonded","unbonded"]}},{"ix":105,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":106,"action":{"kind":"Undelegate","val":1,"amt":3725},"partialState":{"h":10,"t":60,"tokens":[3644,7931,7984,6301],"delegation":[2644,6931,6984,5301],"delegatorTokens":9999999945297}},{"ix":107,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":11,"t":66,"tokens":[3644,7931,7984,6301],"delegation":[2644,6931,6984,5301],"delegatorTokens":9999999945297,"jailed":[1000000000000047,null,null,null],"status":["unbonding","bonded","bonded","unbonded"]}},{"ix":108,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":109,"action":{"kind":"Delegate","val":2,"amt":1124},"partialState":{"h":11,"t":66,"tokens":[3644,7931,9108,6301],"delegation":[2644,6931,8108,5301],"delegatorTokens":9999999944173}},{"ix":110,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":15,"t":90,"consumerPower":[11343,null,8096,null],"outstandingDowntime":[true,false,true,true]}},{"ix":111,"action":{"kind":"Delegate","val":3,"amt":4452},"partialState":{"h":11,"t":66,"tokens":[3644,7931,9108,10753],"delegation":[2644,6931,8108,9753],"delegatorTokens":9999999939721}},{"ix":112,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":16,"t":96,"consumerPower":[11343,null,8096,null],"outstandingDowntime":[true,false,true,true]}},{"ix":113,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":114,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":17,"t":102,"consumerPower":[11343,null,8096,null],"outstandingDowntime":[true,false,true,true]}},{"ix":115,"action":{"kind":"Delegate","val":1,"amt":3490},"partialState":{"h":11,"t":66,"tokens":[3644,11421,9108,10753],"delegation":[2644,10421,8108,9753],"delegatorTokens":9999999936231}},{"ix":116,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":18,"t":108,"consumerPower":[11343,null,8096,null],"outstandingDowntime":[true,false,true,true]}},{"ix":117,"action":{"kind":"Undelegate","val":3,"amt":4825},"partialState":{"h":11,"t":66,"tokens":[3644,11421,9108,5928],"delegation":[2644,10421,8108,4928],"delegatorTokens":9999999936231}},{"ix":118,"action":{"kind":"Delegate","val":1,"amt":3082},"partialState":{"h":11,"t":66,"tokens":[3644,14503,9108,5928],"delegation":[2644,13503,8108,4928],"delegatorTokens":9999999933149}},{"ix":119,"action":{"kind":"Delegate","val":1,"amt":4016},"partialState":{"h":11,"t":66,"tokens":[3644,18519,9108,5928],"delegation":[2644,17519,8108,4928],"delegatorTokens":9999999929133}},{"ix":120,"action":{"kind":"Undelegate","val":2,"amt":1025},"partialState":{"h":11,"t":66,"tokens":[3644,18519,8083,5928],"delegation":[2644,17519,7083,4928],"delegatorTokens":9999999929133}},{"ix":121,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":122,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":123,"action":{"kind":"Deliver","chain":"consumer","numPackets":6},"partialState":{"h":18,"t":108,"consumerPower":[11343,null,8096,null],"outstandingDowntime":[false,false,true,true]}},{"ix":124,"action":{"kind":"Undelegate","val":2,"amt":2647},"partialState":{"h":11,"t":66,"tokens":[3644,18519,5436,5928],"delegation":[2644,17519,4436,4928],"delegatorTokens":9999999929133}},{"ix":125,"action":{"kind":"Delegate","val":2,"amt":4093},"partialState":{"h":11,"t":66,"tokens":[3644,18519,9529,5928],"delegation":[2644,17519,8529,4928],"delegatorTokens":9999999925040}},{"ix":126,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":12,"t":72,"tokens":[3644,18519,9529,5928],"delegation":[2644,17519,8529,4928],"delegatorTokens":9999999925040,"jailed":[1000000000000047,null,null,null],"status":["unbonding","bonded","bonded","unbonded"]}},{"ix":127,"action":{"kind":"Delegate","val":1,"amt":3690},"partialState":{"h":12,"t":72,"tokens":[3644,22209,9529,5928],"delegation":[2644,21209,8529,4928],"delegatorTokens":9999999921350}},{"ix":128,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":13,"t":78,"tokens":[3644,22209,9529,5928],"delegation":[2644,21209,8529,4928],"delegatorTokens":9999999921350,"jailed":[1000000000000047,null,null,null],"status":["unbonding","bonded","bonded","unbonded"]}},{"ix":129,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":130,"action":{"kind":"Deliver","chain":"consumer","numPackets":6},"partialState":{"h":18,"t":108,"consumerPower":[11343,null,8096,null],"outstandingDowntime":[false,false,true,true]}},{"ix":131,"action":{"kind":"Delegate","val":1,"amt":2298},"partialState":{"h":13,"t":78,"tokens":[3644,24507,9529,5928],"delegation":[2644,23507,8529,4928],"delegatorTokens":9999999919052}},{"ix":132,"action":{"kind":"Delegate","val":2,"amt":4559},"partialState":{"h":13,"t":78,"tokens":[3644,24507,14088,5928],"delegation":[2644,23507,13088,4928],"delegatorTokens":9999999914493}},{"ix":133,"action":{"kind":"Undelegate","val":3,"amt":3134},"partialState":{"h":13,"t":78,"tokens":[3644,24507,14088,2794],"delegation":[2644,23507,13088,1794],"delegatorTokens":9999999914493}},{"ix":134,"action":{"kind":"Delegate","val":1,"amt":3891},"partialState":{"h":13,"t":78,"tokens":[3644,28398,14088,2794],"delegation":[2644,27398,13088,1794],"delegatorTokens":9999999910602}},{"ix":135,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":136,"action":{"kind":"Undelegate","val":0,"amt":3123},"partialState":{"h":13,"t":78,"tokens":[3644,28398,14088,2794],"delegation":[2644,27398,13088,1794],"delegatorTokens":9999999910602}},{"ix":137,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":14,"t":84,"tokens":[3644,28398,14088,2794],"delegation":[2644,27398,13088,1794],"delegatorTokens":9999999910602,"jailed":[1000000000000047,null,null,null],"status":["unbonding","bonded","bonded","unbonded"]}},{"ix":138,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":139,"action":{"kind":"Undelegate","val":2,"amt":1372},"partialState":{"h":14,"t":84,"tokens":[3644,28398,12716,2794],"delegation":[2644,27398,11716,1794],"delegatorTokens":9999999910602}},{"ix":140,"action":{"kind":"Deliver","chain":"provider","numPackets":4},"partialState":{"h":14,"t":84,"tokens":[3644,28398,12716,2794],"delegation":[2644,27398,11716,1794],"delegatorTokens":9999999910602,"jailed":[1000000000000047,null,null,null],"status":["unbonding","bonded","bonded","unbonded"]}},{"ix":141,"action":{"kind":"Undelegate","val":3,"amt":2440},"partialState":{"h":14,"t":84,"tokens":[3644,28398,12716,2794],"delegation":[2644,27398,11716,1794],"delegatorTokens":9999999910602}},{"ix":142,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":15,"t":90,"tokens":[3644,28398,12716,2794],"delegation":[2644,27398,11716,1794],"delegatorTokens":9999999910602,"jailed":[1000000000000047,null,null,null],"status":["unbonding","bonded","bonded","unbonded"]}},{"ix":143,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":16,"t":96,"tokens":[3644,28398,12716,2794],"delegation":[2644,27398,11716,1794],"delegatorTokens":9999999912964,"jailed":[1000000000000047,null,null,null],"status":["unbonding","bonded","bonded","unbonded"]}},{"ix":144,"action":{"kind":"Undelegate","val":2,"amt":2092},"partialState":{"h":16,"t":96,"tokens":[3644,28398,10624,2794],"delegation":[2644,27398,9624,1794],"delegatorTokens":9999999912964}},{"ix":145,"action":{"kind":"Undelegate","val":0,"amt":2398},"partialState":{"h":16,"t":96,"tokens":[1246,28398,10624,2794],"delegation":[246,27398,9624,1794],"delegatorTokens":9999999912964}},{"ix":146,"action":{"kind":"Undelegate","val":3,"amt":4487},"partialState":{"h":16,"t":96,"tokens":[1246,28398,10624,2794],"delegation":[246,27398,9624,1794],"delegatorTokens":9999999912964}},{"ix":147,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":19,"t":114,"consumerPower":[null,18519,9529,null],"outstandingDowntime":[false,false,true,true]}},{"ix":148,"action":{"kind":"Undelegate","val":2,"amt":1887},"partialState":{"h":16,"t":96,"tokens":[1246,28398,8737,2794],"delegation":[246,27398,7737,1794],"delegatorTokens":9999999912964}},{"ix":149,"action":{"kind":"Undelegate","val":3,"amt":4499},"partialState":{"h":16,"t":96,"tokens":[1246,28398,8737,2794],"delegation":[246,27398,7737,1794],"delegatorTokens":9999999912964}},{"ix":150,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":20,"t":120,"consumerPower":[null,18519,9529,null],"outstandingDowntime":[false,false,true,true]}},{"ix":151,"action":{"kind":"Delegate","val":0,"amt":4633},"partialState":{"h":16,"t":96,"tokens":[5879,28398,8737,2794],"delegation":[4879,27398,7737,1794],"delegatorTokens":9999999908331}},{"ix":152,"action":{"kind":"Undelegate","val":1,"amt":3550},"partialState":{"h":16,"t":96,"tokens":[5879,24848,8737,2794],"delegation":[4879,23848,7737,1794],"delegatorTokens":9999999908331}},{"ix":153,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":154,"action":{"kind":"Delegate","val":1,"amt":1244},"partialState":{"h":16,"t":96,"tokens":[5879,26092,8737,2794],"delegation":[4879,25092,7737,1794],"delegatorTokens":9999999907087}},{"ix":155,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":17,"t":102,"tokens":[5879,26092,8737,2794],"delegation":[4879,25092,7737,1794],"delegatorTokens":9999999907087,"jailed":[1000000000000047,null,null,null],"status":["unbonding","bonded","bonded","unbonded"]}},{"ix":156,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":157,"action":{"kind":"Delegate","val":3,"amt":1655},"partialState":{"h":17,"t":102,"tokens":[5879,26092,8737,4449],"delegation":[4879,25092,7737,3449],"delegatorTokens":9999999905432}},{"ix":158,"action":{"kind":"Undelegate","val":1,"amt":1822},"partialState":{"h":17,"t":102,"tokens":[5879,24270,8737,4449],"delegation":[4879,23270,7737,3449],"delegatorTokens":9999999905432}},{"ix":159,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":18,"t":108,"tokens":[5879,24270,8737,4449],"delegation":[4879,23270,7737,3449],"delegatorTokens":9999999905432,"jailed":[1000000000000047,null,null,null],"status":["unbonding","bonded","bonded","unbonded"]}},{"ix":160,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":161,"action":{"kind":"Deliver","chain":"provider","numPackets":1},"partialState":{"h":18,"t":108,"tokens":[5879,24270,8737,4449],"delegation":[4879,23270,7737,3449],"delegatorTokens":9999999905432,"jailed":[1000000000000047,null,null,null],"status":["unbonding","bonded","bonded","unbonded"]}},{"ix":162,"action":{"kind":"Delegate","val":2,"amt":2655},"partialState":{"h":18,"t":108,"tokens":[5879,24270,11392,4449],"delegation":[4879,23270,10392,3449],"delegatorTokens":9999999902777}},{"ix":163,"action":{"kind":"Undelegate","val":2,"amt":4823},"partialState":{"h":18,"t":108,"tokens":[5879,24270,6569,4449],"delegation":[4879,23270,5569,3449],"delegatorTokens":9999999902777}},{"ix":164,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":165,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":21,"t":126,"consumerPower":[null,18519,9529,null],"outstandingDowntime":[false,false,true,true]}},{"ix":166,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":167,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":22,"t":132,"consumerPower":[null,18519,9529,null],"outstandingDowntime":[false,false,true,true]}},{"ix":168,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":169,"action":{"kind":"Delegate","val":3,"amt":2663},"partialState":{"h":18,"t":108,"tokens":[5879,24270,6569,7112],"delegation":[4879,23270,5569,6112],"delegatorTokens":9999999900114}},{"ix":170,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":171,"action":{"kind":"Undelegate","val":0,"amt":4375},"partialState":{"h":18,"t":108,"tokens":[1504,24270,6569,7112],"delegation":[504,23270,5569,6112],"delegatorTokens":9999999900114}},{"ix":172,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":173,"action":{"kind":"Delegate","val":2,"amt":2503},"partialState":{"h":18,"t":108,"tokens":[1504,24270,9072,7112],"delegation":[504,23270,8072,6112],"delegatorTokens":9999999897611}},{"ix":174,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":175,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":23,"t":138,"consumerPower":[null,18519,9529,null],"outstandingDowntime":[false,false,true,true]}},{"ix":176,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":24,"t":144,"consumerPower":[null,18519,9529,null],"outstandingDowntime":[false,false,true,true]}},{"ix":177,"action":{"kind":"Undelegate","val":2,"amt":2731},"partialState":{"h":18,"t":108,"tokens":[1504,24270,6341,7112],"delegation":[504,23270,5341,6112],"delegatorTokens":9999999897611}},{"ix":178,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":19,"t":114,"tokens":[1504,24270,6341,7112],"delegation":[504,23270,5341,6112],"delegatorTokens":9999999897611,"jailed":[1000000000000047,null,null,null],"status":["unbonding","bonded","unbonding","bonded"]}},{"ix":179,"action":{"kind":"Delegate","val":0,"amt":3588},"partialState":{"h":19,"t":114,"tokens":[5092,24270,6341,7112],"delegation":[4092,23270,5341,6112],"delegatorTokens":9999999894023}},{"ix":180,"action":{"kind":"Deliver","chain":"consumer","numPackets":2},"partialState":{"h":24,"t":144,"consumerPower":[null,18519,9529,null],"outstandingDowntime":[false,false,true,true]}},{"ix":181,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":25,"t":150,"consumerPower":[null,28398,14088,null],"outstandingDowntime":[false,false,true,true]}},{"ix":182,"action":{"kind":"Delegate","val":3,"amt":1244},"partialState":{"h":19,"t":114,"tokens":[5092,24270,6341,8356],"delegation":[4092,23270,5341,7356],"delegatorTokens":9999999892779}},{"ix":183,"action":{"kind":"Delegate","val":1,"amt":1789},"partialState":{"h":19,"t":114,"tokens":[5092,26059,6341,8356],"delegation":[4092,25059,5341,7356],"delegatorTokens":9999999890990}},{"ix":184,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":20,"t":120,"tokens":[5092,26059,6341,8356],"delegation":[4092,25059,5341,7356],"delegatorTokens":9999999890990,"jailed":[1000000000000047,null,null,null],"status":["unbonding","bonded","unbonding","bonded"]}},{"ix":185,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":186,"action":{"kind":"Deliver","chain":"provider","numPackets":5},"partialState":{"h":20,"t":120,"tokens":[5092,26059,6341,8356],"delegation":[4092,25059,5341,7356],"delegatorTokens":9999999890990,"jailed":[1000000000000047,null,null,null],"status":["unbonding","bonded","unbonding","bonded"]}},{"ix":187,"action":{"kind":"Deliver","chain":"provider","numPackets":6},"partialState":{"h":20,"t":120,"tokens":[5092,26059,6341,8356],"delegation":[4092,25059,5341,7356],"delegatorTokens":9999999890990,"jailed":[1000000000000047,null,null,null],"status":["unbonding","bonded","unbonding","bonded"]}},{"ix":188,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":21,"t":126,"tokens":[5092,26059,6341,8356],"delegation":[4092,25059,5341,7356],"delegatorTokens":9999999915959,"jailed":[1000000000000047,null,null,null],"status":["unbonding","bonded","unbonding","bonded"]}},{"ix":189,"action":{"kind":"Deliver","chain":"consumer","numPackets":1},"partialState":{"h":25,"t":150,"consumerPower":[null,28398,14088,null],"outstandingDowntime":[false,false,true,true]}},{"ix":190,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":26,"t":156,"consumerPower":[null,28398,12716,null],"outstandingDowntime":[false,false,true,true]}},{"ix":191,"action":{"kind":"Undelegate","val":3,"amt":3813},"partialState":{"h":21,"t":126,"tokens":[5092,26059,6341,4543],"delegation":[4092,25059,5341,3543],"delegatorTokens":9999999915959}},{"ix":192,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":27,"t":162,"consumerPower":[null,28398,12716,null],"outstandingDowntime":[false,false,true,true]}},{"ix":193,"action":{"kind":"Delegate","val":1,"amt":2318},"partialState":{"h":21,"t":126,"tokens":[5092,28377,6341,4543],"delegation":[4092,27377,5341,3543],"delegatorTokens":9999999913641}},{"ix":194,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":28,"t":168,"consumerPower":[null,28398,12716,null],"outstandingDowntime":[false,false,true,true]}},{"ix":195,"action":{"kind":"Delegate","val":0,"amt":2584},"partialState":{"h":21,"t":126,"tokens":[7676,28377,6341,4543],"delegation":[6676,27377,5341,3543],"delegatorTokens":9999999911057}},{"ix":196,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":197,"action":{"kind":"Delegate","val":3,"amt":4318},"partialState":{"h":21,"t":126,"tokens":[7676,28377,6341,8861],"delegation":[6676,27377,5341,7861],"delegatorTokens":9999999906739}},{"ix":198,"action":{"kind":"Delegate","val":2,"amt":4352},"partialState":{"h":21,"t":126,"tokens":[7676,28377,10693,8861],"delegation":[6676,27377,9693,7861],"delegatorTokens":9999999902387}},{"ix":199,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}}],"events":["insufficient_shares","send_double_sign_slash_request","send_downtime_slash_request","send_vsc_without_downtime_ack","receive_double_sign_slash_request","send_downtime_slash_request","receive_slash_request_unbonded","downtime_slash_request_outstanding","send_double_sign_slash_request","consumer_update_val","consumer_update_val","send_vsc_without_downtime_ack","downtime_slash_request_outstanding","send_double_sign_slash_request","send_downtime_slash_request","send_vsc_without_downtime_ack","receive_double_sign_slash_request","receive_double_sign_slash_request","receive_downtime_slash_request","jail","send_vsc_with_downtime_ack","insufficient_shares","insufficient_shares","more_than_one_third_val_power_change","rebond_unval","send_vsc_without_downtime_ack","receive_slash_request_unbonded","send_vsc_without_downtime_ack","consumer_send_maturation","consumer_update_val","consumer_del_val","consumer_add_val","receive_downtime_slash_ack","send_vsc_without_downtime_ack","send_vsc_without_downtime_ack","insufficient_shares","send_vsc_without_downtime_ack","insufficient_shares","set_undel_hold_false","send_vsc_without_downtime_ack","complete_undel_in_endblock","insufficient_shares","consumer_update_val","consumer_del_val","consumer_add_val","insufficient_shares","send_vsc_without_downtime_ack","send_vsc_without_downtime_ack","consumer_send_maturation","consumer_send_maturation","some_undels_expired_but_not_completed","send_vsc_without_downtime_ack","consumer_update_val","consumer_update_val","some_undels_expired_but_not_completed","send_vsc_without_downtime_ack","some_undels_expired_but_not_completed","complete_undel_immediate","complete_undel_immediate","complete_undel_immediate","complete_undel_immediate","complete_undel_immediate","complete_undel_immediate","complete_undel_immediate","complete_undel_immediate","complete_undel_immediate","complete_undel_immediate","complete_undel_immediate","consumer_update_val","consumer_send_maturation","consumer_send_maturation","consumer_send_maturation","consumer_send_maturation"]},{"meta":{"commit":"7ffd0c04e4205cbc9caf212abfe6c59ee43153bf"},"constants":{"P":"provider","C":"consumer","UNBONDING_SECONDS_P":70,"UNBONDING_SECONDS_C":50,"TRUSTING_SECONDS":49,"NUM_VALIDATORS":4,"MAX_VALIDATORS":2,"SLASH_DOUBLESIGN":0,"SLASH_DOWNTIME":0,"JAIL_SECONDS":999999999999999,"BLOCK_SECONDS":6,"INITIAL_DELEGATOR_TOKENS":10000000000000,"DELEGATE_AMT_MIN":1000,"DELEGATE_AMT_MAX":5000,"UNDELEGATE_AMT_MIN":1000,"UNDELEGATE_AMT_MAX":5000,"ISDOWNTIME_PROBABILITY":0.5,"MAX_NUM_PACKETS_FOR_DELIVER":6},"actions":[{"ix":0,"action":{"kind":"Delegate","val":3,"amt":4607},"partialState":{"h":1,"t":6,"tokens":[5000,4000,3000,6607],"delegation":[4000,3000,2000,5607],"delegatorTokens":9999999995393}},{"ix":1,"action":{"kind":"ConsumerSlash","val":2,"infractionHeight":0,"isDowntime":true},"partialState":{"h":1,"t":6,"outstandingDowntime":[false,false,true,false]}},{"ix":2,"action":{"kind":"ConsumerSlash","val":2,"infractionHeight":0,"isDowntime":true},"partialState":{"h":1,"t":6,"outstandingDowntime":[false,false,true,false]}},{"ix":3,"action":{"kind":"Delegate","val":2,"amt":3695},"partialState":{"h":1,"t":6,"tokens":[5000,4000,6695,6607],"delegation":[4000,3000,5695,5607],"delegatorTokens":9999999991698}},{"ix":4,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":2,"t":12,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,false,true,false]}},{"ix":5,"action":{"kind":"Deliver","chain":"provider","numPackets":3},"partialState":{"h":1,"t":6,"tokens":[5000,4000,6695,6607],"delegation":[4000,3000,5695,5607],"delegatorTokens":9999999991698,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":6,"action":{"kind":"Delegate","val":2,"amt":4729},"partialState":{"h":1,"t":6,"tokens":[5000,4000,11424,6607],"delegation":[4000,3000,10424,5607],"delegatorTokens":9999999986969}},{"ix":7,"action":{"kind":"Undelegate","val":2,"amt":4184},"partialState":{"h":1,"t":6,"tokens":[5000,4000,7240,6607],"delegation":[4000,3000,6240,5607],"delegatorTokens":9999999986969}},{"ix":8,"action":{"kind":"Deliver","chain":"provider","numPackets":2},"partialState":{"h":1,"t":6,"tokens":[5000,4000,7240,6607],"delegation":[4000,3000,6240,5607],"delegatorTokens":9999999986969,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":9,"action":{"kind":"Undelegate","val":2,"amt":3659},"partialState":{"h":1,"t":6,"tokens":[5000,4000,3581,6607],"delegation":[4000,3000,2581,5607],"delegatorTokens":9999999986969}},{"ix":10,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":3,"t":18,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,false,true,false]}},{"ix":11,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":12,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":13,"action":{"kind":"Delegate","val":2,"amt":1270},"partialState":{"h":1,"t":6,"tokens":[5000,4000,4851,6607],"delegation":[4000,3000,3851,5607],"delegatorTokens":9999999985699}},{"ix":14,"action":{"kind":"ConsumerSlash","val":3,"infractionHeight":0,"isDowntime":true},"partialState":{"h":3,"t":18,"outstandingDowntime":[false,false,true,true]}},{"ix":15,"action":{"kind":"Delegate","val":0,"amt":2142},"partialState":{"h":1,"t":6,"tokens":[7142,4000,4851,6607],"delegation":[6142,3000,3851,5607],"delegatorTokens":9999999983557}},{"ix":16,"action":{"kind":"Undelegate","val":1,"amt":3476},"partialState":{"h":1,"t":6,"tokens":[7142,4000,4851,6607],"delegation":[6142,3000,3851,5607],"delegatorTokens":9999999983557}},{"ix":17,"action":{"kind":"Delegate","val":0,"amt":1139},"partialState":{"h":1,"t":6,"tokens":[8281,4000,4851,6607],"delegation":[7281,3000,3851,5607],"delegatorTokens":9999999982418}},{"ix":18,"action":{"kind":"Delegate","val":0,"amt":1743},"partialState":{"h":1,"t":6,"tokens":[10024,4000,4851,6607],"delegation":[9024,3000,3851,5607],"delegatorTokens":9999999980675}},{"ix":19,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":4,"t":24,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,false,true,true]}},{"ix":20,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":5,"t":30,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,false,true,true]}},{"ix":21,"action":{"kind":"ConsumerSlash","val":2,"infractionHeight":0,"isDowntime":true},"partialState":{"h":5,"t":30,"outstandingDowntime":[false,false,true,true]}},{"ix":22,"action":{"kind":"Delegate","val":1,"amt":4201},"partialState":{"h":1,"t":6,"tokens":[10024,8201,4851,6607],"delegation":[9024,7201,3851,5607],"delegatorTokens":9999999976474}},{"ix":23,"action":{"kind":"Deliver","chain":"provider","numPackets":6},"partialState":{"h":1,"t":6,"tokens":[10024,8201,4851,6607],"delegation":[9024,7201,3851,5607],"delegatorTokens":9999999976474,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":24,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":6,"t":36,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,false,true,true]}},{"ix":25,"action":{"kind":"Deliver","chain":"provider","numPackets":2},"partialState":{"h":1,"t":6,"tokens":[10024,8201,4851,6607],"delegation":[9024,7201,3851,5607],"delegatorTokens":9999999976474,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":26,"action":{"kind":"Deliver","chain":"provider","numPackets":5},"partialState":{"h":1,"t":6,"tokens":[10024,8201,4851,6607],"delegation":[9024,7201,3851,5607],"delegatorTokens":9999999976474,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":27,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":7,"t":42,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,false,true,true]}},{"ix":28,"action":{"kind":"Deliver","chain":"provider","numPackets":6},"partialState":{"h":1,"t":6,"tokens":[10024,8201,4851,6607],"delegation":[9024,7201,3851,5607],"delegatorTokens":9999999976474,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":29,"action":{"kind":"Deliver","chain":"provider","numPackets":5},"partialState":{"h":1,"t":6,"tokens":[10024,8201,4851,6607],"delegation":[9024,7201,3851,5607],"delegatorTokens":9999999976474,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":30,"action":{"kind":"Deliver","chain":"provider","numPackets":4},"partialState":{"h":1,"t":6,"tokens":[10024,8201,4851,6607],"delegation":[9024,7201,3851,5607],"delegatorTokens":9999999976474,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":31,"action":{"kind":"ConsumerSlash","val":1,"infractionHeight":0,"isDowntime":true},"partialState":{"h":7,"t":42,"outstandingDowntime":[false,true,true,true]}},{"ix":32,"action":{"kind":"Undelegate","val":1,"amt":3073},"partialState":{"h":1,"t":6,"tokens":[10024,5128,4851,6607],"delegation":[9024,4128,3851,5607],"delegatorTokens":9999999976474}},{"ix":33,"action":{"kind":"Deliver","chain":"consumer","numPackets":2},"partialState":{"h":7,"t":42,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,true,true,true]}},{"ix":34,"action":{"kind":"Undelegate","val":3,"amt":2629},"partialState":{"h":1,"t":6,"tokens":[10024,5128,4851,3978],"delegation":[9024,4128,3851,2978],"delegatorTokens":9999999976474}},{"ix":35,"action":{"kind":"Undelegate","val":2,"amt":1634},"partialState":{"h":1,"t":6,"tokens":[10024,5128,3217,3978],"delegation":[9024,4128,2217,2978],"delegatorTokens":9999999976474}},{"ix":36,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":2,"t":12,"tokens":[10024,5128,3217,3978],"delegation":[9024,4128,2217,2978],"delegatorTokens":9999999976474,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":37,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":8,"t":48,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,true,true,true]}},{"ix":38,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":3,"t":18,"tokens":[10024,5128,3217,3978],"delegation":[9024,4128,2217,2978],"delegatorTokens":9999999976474,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":39,"action":{"kind":"Undelegate","val":1,"amt":1001},"partialState":{"h":3,"t":18,"tokens":[10024,4127,3217,3978],"delegation":[9024,3127,2217,2978],"delegatorTokens":9999999976474}},{"ix":40,"action":{"kind":"Undelegate","val":0,"amt":4499},"partialState":{"h":3,"t":18,"tokens":[5525,4127,3217,3978],"delegation":[4525,3127,2217,2978],"delegatorTokens":9999999976474}},{"ix":41,"action":{"kind":"Deliver","chain":"provider","numPackets":2},"partialState":{"h":3,"t":18,"tokens":[5525,4127,3217,3978],"delegation":[4525,3127,2217,2978],"delegatorTokens":9999999976474,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":42,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":4,"t":24,"tokens":[5525,4127,3217,3978],"delegation":[4525,3127,2217,2978],"delegatorTokens":9999999976474,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":43,"action":{"kind":"Delegate","val":2,"amt":3760},"partialState":{"h":4,"t":24,"tokens":[5525,4127,6977,3978],"delegation":[4525,3127,5977,2978],"delegatorTokens":9999999972714}},{"ix":44,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":5,"t":30,"tokens":[5525,4127,6977,3978],"delegation":[4525,3127,5977,2978],"delegatorTokens":9999999972714,"jailed":[null,null,null,null],"status":["bonded","unbonding","bonded","unbonded"]}},{"ix":45,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":46,"action":{"kind":"Deliver","chain":"provider","numPackets":2},"partialState":{"h":5,"t":30,"tokens":[5525,4127,6977,3978],"delegation":[4525,3127,5977,2978],"delegatorTokens":9999999972714,"jailed":[null,null,null,null],"status":["bonded","unbonding","bonded","unbonded"]}},{"ix":47,"action":{"kind":"Deliver","chain":"consumer","numPackets":1},"partialState":{"h":8,"t":48,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,true,true,true]}},{"ix":48,"action":{"kind":"Deliver","chain":"provider","numPackets":5},"partialState":{"h":5,"t":30,"tokens":[5525,4127,6977,3978],"delegation":[4525,3127,5977,2978],"delegatorTokens":9999999972714,"jailed":[null,null,null,null],"status":["bonded","unbonding","bonded","unbonded"]}},{"ix":49,"action":{"kind":"Delegate","val":1,"amt":3117},"partialState":{"h":5,"t":30,"tokens":[5525,7244,6977,3978],"delegation":[4525,6244,5977,2978],"delegatorTokens":9999999969597}},{"ix":50,"action":{"kind":"Delegate","val":1,"amt":2160},"partialState":{"h":5,"t":30,"tokens":[5525,9404,6977,3978],"delegation":[4525,8404,5977,2978],"delegatorTokens":9999999967437}},{"ix":51,"action":{"kind":"Deliver","chain":"provider","numPackets":5},"partialState":{"h":5,"t":30,"tokens":[5525,9404,6977,3978],"delegation":[4525,8404,5977,2978],"delegatorTokens":9999999967437,"jailed":[null,null,null,null],"status":["bonded","unbonding","bonded","unbonded"]}},{"ix":52,"action":{"kind":"Delegate","val":3,"amt":2777},"partialState":{"h":5,"t":30,"tokens":[5525,9404,6977,6755],"delegation":[4525,8404,5977,5755],"delegatorTokens":9999999964660}},{"ix":53,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":6,"t":36,"tokens":[5525,9404,6977,6755],"delegation":[4525,8404,5977,5755],"delegatorTokens":9999999964660,"jailed":[null,null,null,null],"status":["unbonding","bonded","bonded","unbonded"]}},{"ix":54,"action":{"kind":"Undelegate","val":2,"amt":1994},"partialState":{"h":6,"t":36,"tokens":[5525,9404,4983,6755],"delegation":[4525,8404,3983,5755],"delegatorTokens":9999999964660}},{"ix":55,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":56,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":57,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":58,"action":{"kind":"Deliver","chain":"provider","numPackets":1},"partialState":{"h":6,"t":36,"tokens":[5525,9404,4983,6755],"delegation":[4525,8404,3983,5755],"delegatorTokens":9999999964660,"jailed":[null,null,null,null],"status":["unbonding","bonded","bonded","unbonded"]}},{"ix":59,"action":{"kind":"Delegate","val":3,"amt":1390},"partialState":{"h":6,"t":36,"tokens":[5525,9404,4983,8145],"delegation":[4525,8404,3983,7145],"delegatorTokens":9999999963270}},{"ix":60,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":61,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":9,"t":54,"consumerPower":[10024,5128,null,null],"outstandingDowntime":[false,true,true,true]}},{"ix":62,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":63,"action":{"kind":"Deliver","chain":"provider","numPackets":4},"partialState":{"h":6,"t":36,"tokens":[5525,9404,4983,8145],"delegation":[4525,8404,3983,7145],"delegatorTokens":9999999963270,"jailed":[null,null,null,null],"status":["unbonding","bonded","bonded","unbonded"]}},{"ix":64,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":65,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":66,"action":{"kind":"Delegate","val":0,"amt":2981},"partialState":{"h":6,"t":36,"tokens":[8506,9404,4983,8145],"delegation":[7506,8404,3983,7145],"delegatorTokens":9999999960289}},{"ix":67,"action":{"kind":"Deliver","chain":"provider","numPackets":5},"partialState":{"h":6,"t":36,"tokens":[8506,9404,4983,8145],"delegation":[7506,8404,3983,7145],"delegatorTokens":9999999960289,"jailed":[null,null,null,null],"status":["unbonding","bonded","bonded","unbonded"]}},{"ix":68,"action":{"kind":"Delegate","val":1,"amt":4761},"partialState":{"h":6,"t":36,"tokens":[8506,14165,4983,8145],"delegation":[7506,13165,3983,7145],"delegatorTokens":9999999955528}},{"ix":69,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":10,"t":60,"consumerPower":[10024,5128,null,null],"outstandingDowntime":[false,true,true,true]}},{"ix":70,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":71,"action":{"kind":"Delegate","val":2,"amt":2932},"partialState":{"h":6,"t":36,"tokens":[8506,14165,7915,8145],"delegation":[7506,13165,6915,7145],"delegatorTokens":9999999952596}},{"ix":72,"action":{"kind":"Delegate","val":3,"amt":4101},"partialState":{"h":6,"t":36,"tokens":[8506,14165,7915,12246],"delegation":[7506,13165,6915,11246],"delegatorTokens":9999999948495}},{"ix":73,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":74,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":7,"t":42,"tokens":[8506,14165,7915,12246],"delegation":[7506,13165,6915,11246],"delegatorTokens":9999999948495,"jailed":[null,1000000000000035,null,null],"status":["unbonding","bonded","unbonding","bonded"]}},{"ix":75,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":76,"action":{"kind":"Delegate","val":3,"amt":3557},"partialState":{"h":7,"t":42,"tokens":[8506,14165,7915,15803],"delegation":[7506,13165,6915,14803],"delegatorTokens":9999999944938}},{"ix":77,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":8,"t":48,"tokens":[8506,14165,7915,15803],"delegation":[7506,13165,6915,14803],"delegatorTokens":9999999944938,"jailed":[null,1000000000000035,null,null],"status":["bonded","unbonding","unbonding","bonded"]}},{"ix":78,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":11,"t":66,"consumerPower":[10024,5128,null,null],"outstandingDowntime":[false,true,true,true]}},{"ix":79,"action":{"kind":"Delegate","val":1,"amt":2802},"partialState":{"h":8,"t":48,"tokens":[8506,16967,7915,15803],"delegation":[7506,15967,6915,14803],"delegatorTokens":9999999942136}},{"ix":80,"action":{"kind":"Deliver","chain":"provider","numPackets":6},"partialState":{"h":8,"t":48,"tokens":[8506,16967,7915,15803],"delegation":[7506,15967,6915,14803],"delegatorTokens":9999999942136,"jailed":[null,1000000000000035,null,null],"status":["bonded","unbonding","unbonding","bonded"]}},{"ix":81,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":82,"action":{"kind":"Deliver","chain":"provider","numPackets":5},"partialState":{"h":8,"t":48,"tokens":[8506,16967,7915,15803],"delegation":[7506,15967,6915,14803],"delegatorTokens":9999999942136,"jailed":[null,1000000000000035,null,null],"status":["bonded","unbonding","unbonding","bonded"]}},{"ix":83,"action":{"kind":"Delegate","val":1,"amt":2442},"partialState":{"h":8,"t":48,"tokens":[8506,19409,7915,15803],"delegation":[7506,18409,6915,14803],"delegatorTokens":9999999939694}},{"ix":84,"action":{"kind":"Delegate","val":1,"amt":1585},"partialState":{"h":8,"t":48,"tokens":[8506,20994,7915,15803],"delegation":[7506,19994,6915,14803],"delegatorTokens":9999999938109}},{"ix":85,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":86,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":87,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":12,"t":72,"consumerPower":[10024,5128,null,null],"outstandingDowntime":[false,true,true,true]}},{"ix":88,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":89,"action":{"kind":"Undelegate","val":2,"amt":2185},"partialState":{"h":8,"t":48,"tokens":[8506,20994,5730,15803],"delegation":[7506,19994,4730,14803],"delegatorTokens":9999999938109}},{"ix":90,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":91,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":9,"t":54,"tokens":[8506,20994,5730,15803],"delegation":[7506,19994,4730,14803],"delegatorTokens":9999999938109,"jailed":[null,1000000000000035,null,null],"status":["bonded","unbonding","unbonding","bonded"]}},{"ix":92,"action":{"kind":"Undelegate","val":3,"amt":3721},"partialState":{"h":9,"t":54,"tokens":[8506,20994,5730,12082],"delegation":[7506,19994,4730,11082],"delegatorTokens":9999999938109}},{"ix":93,"action":{"kind":"Deliver","chain":"consumer","numPackets":6},"partialState":{"h":12,"t":72,"consumerPower":[10024,5128,null,null],"outstandingDowntime":[false,false,true,true]}},{"ix":94,"action":{"kind":"Delegate","val":1,"amt":3446},"partialState":{"h":9,"t":54,"tokens":[8506,24440,5730,12082],"delegation":[7506,23440,4730,11082],"delegatorTokens":9999999934663}},{"ix":95,"action":{"kind":"Deliver","chain":"provider","numPackets":5},"partialState":{"h":9,"t":54,"tokens":[8506,24440,5730,12082],"delegation":[7506,23440,4730,11082],"delegatorTokens":9999999934663,"jailed":[null,1000000000000035,null,null],"status":["bonded","unbonding","unbonding","bonded"]}},{"ix":96,"action":{"kind":"Undelegate","val":2,"amt":1476},"partialState":{"h":9,"t":54,"tokens":[8506,24440,4254,12082],"delegation":[7506,23440,3254,11082],"delegatorTokens":9999999934663}},{"ix":97,"action":{"kind":"Undelegate","val":2,"amt":4639},"partialState":{"h":9,"t":54,"tokens":[8506,24440,4254,12082],"delegation":[7506,23440,3254,11082],"delegatorTokens":9999999934663}},{"ix":98,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":13,"t":78,"consumerPower":[8506,null,null,15803],"outstandingDowntime":[false,false,true,true]}},{"ix":99,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":10,"t":60,"tokens":[8506,24440,4254,12082],"delegation":[7506,23440,3254,11082],"delegatorTokens":9999999934663,"jailed":[null,1000000000000035,null,null],"status":["bonded","unbonding","unbonding","bonded"]}},{"ix":100,"action":{"kind":"Undelegate","val":2,"amt":4005},"partialState":{"h":10,"t":60,"tokens":[8506,24440,4254,12082],"delegation":[7506,23440,3254,11082],"delegatorTokens":9999999934663}},{"ix":101,"action":{"kind":"Delegate","val":3,"amt":4371},"partialState":{"h":10,"t":60,"tokens":[8506,24440,4254,16453],"delegation":[7506,23440,3254,15453],"delegatorTokens":9999999930292}},{"ix":102,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":14,"t":84,"consumerPower":[8506,null,null,15803],"outstandingDowntime":[false,false,true,true]}},{"ix":103,"action":{"kind":"Deliver","chain":"provider","numPackets":6},"partialState":{"h":10,"t":60,"tokens":[8506,24440,4254,16453],"delegation":[7506,23440,3254,15453],"delegatorTokens":9999999930292,"jailed":[null,1000000000000035,null,null],"status":["bonded","unbonding","unbonding","bonded"]}},{"ix":104,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":15,"t":90,"consumerPower":[8506,null,null,15803],"outstandingDowntime":[false,false,true,true]}},{"ix":105,"action":{"kind":"Deliver","chain":"provider","numPackets":1},"partialState":{"h":10,"t":60,"tokens":[8506,24440,4254,16453],"delegation":[7506,23440,3254,15453],"delegatorTokens":9999999930292,"jailed":[null,1000000000000035,null,null],"status":["bonded","unbonding","unbonding","bonded"]}},{"ix":106,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":107,"action":{"kind":"Deliver","chain":"provider","numPackets":6},"partialState":{"h":10,"t":60,"tokens":[8506,24440,4254,16453],"delegation":[7506,23440,3254,15453],"delegatorTokens":9999999930292,"jailed":[null,1000000000000035,null,null],"status":["bonded","unbonding","unbonding","bonded"]}},{"ix":108,"action":{"kind":"Undelegate","val":1,"amt":4850},"partialState":{"h":10,"t":60,"tokens":[8506,19590,4254,16453],"delegation":[7506,18590,3254,15453],"delegatorTokens":9999999930292}},{"ix":109,"action":{"kind":"Deliver","chain":"consumer","numPackets":2},"partialState":{"h":15,"t":90,"consumerPower":[8506,null,null,15803],"outstandingDowntime":[false,false,true,true]}},{"ix":110,"action":{"kind":"Deliver","chain":"consumer","numPackets":4},"partialState":{"h":15,"t":90,"consumerPower":[8506,null,null,15803],"outstandingDowntime":[false,false,true,true]}},{"ix":111,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":112,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":11,"t":66,"tokens":[8506,19590,4254,16453],"delegation":[7506,18590,3254,15453],"delegatorTokens":9999999930292,"jailed":[null,1000000000000035,null,null],"status":["bonded","unbonding","unbonding","bonded"]}},{"ix":113,"action":{"kind":"Deliver","chain":"provider","numPackets":6},"partialState":{"h":11,"t":66,"tokens":[8506,19590,4254,16453],"delegation":[7506,18590,3254,15453],"delegatorTokens":9999999930292,"jailed":[null,1000000000000035,null,null],"status":["bonded","unbonding","unbonding","bonded"]}},{"ix":114,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":16,"t":96,"consumerPower":[8506,null,null,15803],"outstandingDowntime":[false,false,true,true]}},{"ix":115,"action":{"kind":"Deliver","chain":"consumer","numPackets":3},"partialState":{"h":16,"t":96,"consumerPower":[8506,null,null,15803],"outstandingDowntime":[false,false,true,true]}},{"ix":116,"action":{"kind":"Undelegate","val":3,"amt":1090},"partialState":{"h":11,"t":66,"tokens":[8506,19590,4254,15363],"delegation":[7506,18590,3254,14363],"delegatorTokens":9999999930292}},{"ix":117,"action":{"kind":"Delegate","val":2,"amt":2856},"partialState":{"h":11,"t":66,"tokens":[8506,19590,7110,15363],"delegation":[7506,18590,6110,14363],"delegatorTokens":9999999927436}},{"ix":118,"action":{"kind":"Delegate","val":2,"amt":4595},"partialState":{"h":11,"t":66,"tokens":[8506,19590,11705,15363],"delegation":[7506,18590,10705,14363],"delegatorTokens":9999999922841}},{"ix":119,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":120,"action":{"kind":"Deliver","chain":"provider","numPackets":2},"partialState":{"h":11,"t":66,"tokens":[8506,19590,11705,15363],"delegation":[7506,18590,10705,14363],"delegatorTokens":9999999922841,"jailed":[null,1000000000000035,null,null],"status":["bonded","unbonding","unbonding","bonded"]}},{"ix":121,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":12,"t":72,"tokens":[8506,19590,11705,15363],"delegation":[7506,18590,10705,14363],"delegatorTokens":9999999922841,"jailed":[null,1000000000000035,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":122,"action":{"kind":"Deliver","chain":"provider","numPackets":1},"partialState":{"h":12,"t":72,"tokens":[8506,19590,11705,15363],"delegation":[7506,18590,10705,14363],"delegatorTokens":9999999922841,"jailed":[null,1000000000000035,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":123,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":124,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":13,"t":78,"tokens":[8506,19590,11705,15363],"delegation":[7506,18590,10705,14363],"delegatorTokens":9999999922841,"jailed":[null,1000000000000035,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":125,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":126,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":127,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":128,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":129,"action":{"kind":"Deliver","chain":"provider","numPackets":6},"partialState":{"h":13,"t":78,"tokens":[8506,19590,11705,15363],"delegation":[7506,18590,10705,14363],"delegatorTokens":9999999922841,"jailed":[null,1000000000000035,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":130,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":17,"t":102,"consumerPower":[8506,null,null,12082],"outstandingDowntime":[false,false,true,true]}},{"ix":131,"action":{"kind":"Undelegate","val":1,"amt":1083},"partialState":{"h":13,"t":78,"tokens":[8506,18507,11705,15363],"delegation":[7506,17507,10705,14363],"delegatorTokens":9999999922841}},{"ix":132,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":133,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":134,"action":{"kind":"Deliver","chain":"consumer","numPackets":6},"partialState":{"h":17,"t":102,"consumerPower":[8506,null,null,12082],"outstandingDowntime":[false,false,true,true]}},{"ix":135,"action":{"kind":"Deliver","chain":"consumer","numPackets":4},"partialState":{"h":17,"t":102,"consumerPower":[8506,null,null,12082],"outstandingDowntime":[false,false,true,true]}},{"ix":136,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":14,"t":84,"tokens":[8506,18507,11705,15363],"delegation":[7506,17507,10705,14363],"delegatorTokens":9999999922841,"jailed":[null,1000000000000035,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":137,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":15,"t":90,"tokens":[8506,18507,11705,15363],"delegation":[7506,17507,10705,14363],"delegatorTokens":9999999922841,"jailed":[null,1000000000000035,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":138,"action":{"kind":"Delegate","val":1,"amt":3699},"partialState":{"h":15,"t":90,"tokens":[8506,22206,11705,15363],"delegation":[7506,21206,10705,14363],"delegatorTokens":9999999919142}},{"ix":139,"action":{"kind":"Undelegate","val":2,"amt":2911},"partialState":{"h":15,"t":90,"tokens":[8506,22206,8794,15363],"delegation":[7506,21206,7794,14363],"delegatorTokens":9999999919142}},{"ix":140,"action":{"kind":"Delegate","val":3,"amt":1220},"partialState":{"h":15,"t":90,"tokens":[8506,22206,8794,16583],"delegation":[7506,21206,7794,15583],"delegatorTokens":9999999917922}},{"ix":141,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":18,"t":108,"consumerPower":[null,null,11705,15363],"outstandingDowntime":[false,false,true,true]}},{"ix":142,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":143,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":144,"action":{"kind":"Deliver","chain":"consumer","numPackets":4},"partialState":{"h":18,"t":108,"consumerPower":[null,null,11705,15363],"outstandingDowntime":[false,false,true,true]}},{"ix":145,"action":{"kind":"Delegate","val":2,"amt":4289},"partialState":{"h":15,"t":90,"tokens":[8506,22206,13083,16583],"delegation":[7506,21206,12083,15583],"delegatorTokens":9999999913633}},{"ix":146,"action":{"kind":"Deliver","chain":"provider","numPackets":6},"partialState":{"h":15,"t":90,"tokens":[8506,22206,13083,16583],"delegation":[7506,21206,12083,15583],"delegatorTokens":9999999913633,"jailed":[null,1000000000000035,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":147,"action":{"kind":"Undelegate","val":1,"amt":1953},"partialState":{"h":15,"t":90,"tokens":[8506,20253,13083,16583],"delegation":[7506,19253,12083,15583],"delegatorTokens":9999999913633}},{"ix":148,"action":{"kind":"Delegate","val":1,"amt":2046},"partialState":{"h":15,"t":90,"tokens":[8506,22299,13083,16583],"delegation":[7506,21299,12083,15583],"delegatorTokens":9999999911587}},{"ix":149,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":19,"t":114,"consumerPower":[null,null,11705,15363],"outstandingDowntime":[false,false,true,true]}},{"ix":150,"action":{"kind":"Delegate","val":1,"amt":2538},"partialState":{"h":15,"t":90,"tokens":[8506,24837,13083,16583],"delegation":[7506,23837,12083,15583],"delegatorTokens":9999999909049}},{"ix":151,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":16,"t":96,"tokens":[8506,24837,13083,16583],"delegation":[7506,23837,12083,15583],"delegatorTokens":9999999909049,"jailed":[null,1000000000000035,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":152,"action":{"kind":"Deliver","chain":"provider","numPackets":4},"partialState":{"h":16,"t":96,"tokens":[8506,24837,13083,16583],"delegation":[7506,23837,12083,15583],"delegatorTokens":9999999909049,"jailed":[null,1000000000000035,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":153,"action":{"kind":"Delegate","val":2,"amt":2033},"partialState":{"h":16,"t":96,"tokens":[8506,24837,15116,16583],"delegation":[7506,23837,14116,15583],"delegatorTokens":9999999907016}},{"ix":154,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":17,"t":102,"tokens":[8506,24837,15116,16583],"delegation":[7506,23837,14116,15583],"delegatorTokens":9999999922195,"jailed":[null,1000000000000035,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":155,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":18,"t":108,"tokens":[8506,24837,15116,16583],"delegation":[7506,23837,14116,15583],"delegatorTokens":9999999922195,"jailed":[null,1000000000000035,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":156,"action":{"kind":"Undelegate","val":0,"amt":3662},"partialState":{"h":18,"t":108,"tokens":[4844,24837,15116,16583],"delegation":[3844,23837,14116,15583],"delegatorTokens":9999999922195}},{"ix":157,"action":{"kind":"Undelegate","val":1,"amt":1075},"partialState":{"h":18,"t":108,"tokens":[4844,23762,15116,16583],"delegation":[3844,22762,14116,15583],"delegatorTokens":9999999922195}},{"ix":158,"action":{"kind":"Deliver","chain":"provider","numPackets":3},"partialState":{"h":18,"t":108,"tokens":[4844,23762,15116,16583],"delegation":[3844,22762,14116,15583],"delegatorTokens":9999999922195,"jailed":[null,1000000000000035,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":159,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":19,"t":114,"tokens":[4844,23762,15116,16583],"delegation":[3844,22762,14116,15583],"delegatorTokens":9999999922195,"jailed":[null,1000000000000035,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":160,"action":{"kind":"Deliver","chain":"provider","numPackets":6},"partialState":{"h":19,"t":114,"tokens":[4844,23762,15116,16583],"delegation":[3844,22762,14116,15583],"delegatorTokens":9999999922195,"jailed":[null,1000000000000035,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":161,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":20,"t":120,"consumerPower":[null,null,11705,15363],"outstandingDowntime":[false,false,true,true]}},{"ix":162,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":20,"t":120,"tokens":[4844,23762,15116,16583],"delegation":[3844,22762,14116,15583],"delegatorTokens":9999999922195,"jailed":[null,1000000000000035,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":163,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":164,"action":{"kind":"Deliver","chain":"provider","numPackets":1},"partialState":{"h":20,"t":120,"tokens":[4844,23762,15116,16583],"delegation":[3844,22762,14116,15583],"delegatorTokens":9999999922195,"jailed":[null,1000000000000035,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":165,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":166,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":167,"action":{"kind":"Undelegate","val":3,"amt":1929},"partialState":{"h":20,"t":120,"tokens":[4844,23762,15116,14654],"delegation":[3844,22762,14116,13654],"delegatorTokens":9999999922195}},{"ix":168,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":21,"t":126,"consumerPower":[null,null,11705,15363],"outstandingDowntime":[false,false,true,true]}},{"ix":169,"action":{"kind":"Undelegate","val":3,"amt":2449},"partialState":{"h":20,"t":120,"tokens":[4844,23762,15116,12205],"delegation":[3844,22762,14116,11205],"delegatorTokens":9999999922195}},{"ix":170,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":171,"action":{"kind":"Deliver","chain":"consumer","numPackets":1},"partialState":{"h":21,"t":126,"consumerPower":[null,null,11705,15363],"outstandingDowntime":[false,false,true,true]}},{"ix":172,"action":{"kind":"Undelegate","val":0,"amt":1835},"partialState":{"h":20,"t":120,"tokens":[3009,23762,15116,12205],"delegation":[2009,22762,14116,11205],"delegatorTokens":9999999922195}},{"ix":173,"action":{"kind":"Delegate","val":2,"amt":4506},"partialState":{"h":20,"t":120,"tokens":[3009,23762,19622,12205],"delegation":[2009,22762,18622,11205],"delegatorTokens":9999999917689}},{"ix":174,"action":{"kind":"Delegate","val":1,"amt":4894},"partialState":{"h":20,"t":120,"tokens":[3009,28656,19622,12205],"delegation":[2009,27656,18622,11205],"delegatorTokens":9999999912795}},{"ix":175,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":21,"t":126,"tokens":[3009,28656,19622,12205],"delegation":[2009,27656,18622,11205],"delegatorTokens":9999999912795,"jailed":[null,1000000000000035,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":176,"action":{"kind":"Deliver","chain":"consumer","numPackets":6},"partialState":{"h":21,"t":126,"consumerPower":[null,null,11705,15363],"outstandingDowntime":[false,false,true,true]}},{"ix":177,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":22,"t":132,"consumerPower":[null,null,15116,16583],"outstandingDowntime":[false,false,true,true]}},{"ix":178,"action":{"kind":"Undelegate","val":1,"amt":3137},"partialState":{"h":21,"t":126,"tokens":[3009,25519,19622,12205],"delegation":[2009,24519,18622,11205],"delegatorTokens":9999999912795}},{"ix":179,"action":{"kind":"Undelegate","val":0,"amt":1513},"partialState":{"h":21,"t":126,"tokens":[1496,25519,19622,12205],"delegation":[496,24519,18622,11205],"delegatorTokens":9999999912795}},{"ix":180,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":22,"t":132,"tokens":[1496,25519,19622,12205],"delegation":[496,24519,18622,11205],"delegatorTokens":9999999912795,"jailed":[null,1000000000000035,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":181,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":182,"action":{"kind":"Delegate","val":3,"amt":4728},"partialState":{"h":22,"t":132,"tokens":[1496,25519,19622,16933],"delegation":[496,24519,18622,15933],"delegatorTokens":9999999908067}},{"ix":183,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":23,"t":138,"tokens":[1496,25519,19622,16933],"delegation":[496,24519,18622,15933],"delegatorTokens":9999999908067,"jailed":[null,1000000000000035,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":184,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":185,"action":{"kind":"Deliver","chain":"provider","numPackets":6},"partialState":{"h":23,"t":138,"tokens":[1496,25519,19622,16933],"delegation":[496,24519,18622,15933],"delegatorTokens":9999999908067,"jailed":[null,1000000000000035,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":186,"action":{"kind":"Undelegate","val":3,"amt":3441},"partialState":{"h":23,"t":138,"tokens":[1496,25519,19622,13492],"delegation":[496,24519,18622,12492],"delegatorTokens":9999999908067}},{"ix":187,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":24,"t":144,"tokens":[1496,25519,19622,13492],"delegation":[496,24519,18622,12492],"delegatorTokens":9999999908067,"jailed":[null,1000000000000035,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":188,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":189,"action":{"kind":"Delegate","val":0,"amt":3118},"partialState":{"h":24,"t":144,"tokens":[4614,25519,19622,13492],"delegation":[3614,24519,18622,12492],"delegatorTokens":9999999904949}},{"ix":190,"action":{"kind":"Undelegate","val":0,"amt":1784},"partialState":{"h":24,"t":144,"tokens":[2830,25519,19622,13492],"delegation":[1830,24519,18622,12492],"delegatorTokens":9999999904949}},{"ix":191,"action":{"kind":"Delegate","val":1,"amt":3260},"partialState":{"h":24,"t":144,"tokens":[2830,28779,19622,13492],"delegation":[1830,27779,18622,12492],"delegatorTokens":9999999901689}},{"ix":192,"action":{"kind":"Deliver","chain":"provider","numPackets":1},"partialState":{"h":24,"t":144,"tokens":[2830,28779,19622,13492],"delegation":[1830,27779,18622,12492],"delegatorTokens":9999999901689,"jailed":[null,1000000000000035,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":193,"action":{"kind":"Deliver","chain":"provider","numPackets":2},"partialState":{"h":24,"t":144,"tokens":[2830,28779,19622,13492],"delegation":[1830,27779,18622,12492],"delegatorTokens":9999999901689,"jailed":[null,1000000000000035,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":194,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":25,"t":150,"tokens":[2830,28779,19622,13492],"delegation":[1830,27779,18622,12492],"delegatorTokens":9999999901689,"jailed":[null,1000000000000035,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":195,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":26,"t":156,"tokens":[2830,28779,19622,13492],"delegation":[1830,27779,18622,12492],"delegatorTokens":9999999901689,"jailed":[null,1000000000000035,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":196,"action":{"kind":"Undelegate","val":1,"amt":3695},"partialState":{"h":26,"t":156,"tokens":[2830,25084,19622,13492],"delegation":[1830,24084,18622,12492],"delegatorTokens":9999999901689}},{"ix":197,"action":{"kind":"Deliver","chain":"consumer","numPackets":4},"partialState":{"h":22,"t":132,"consumerPower":[null,null,15116,16583],"outstandingDowntime":[false,false,true,true]}},{"ix":198,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":199,"action":{"kind":"Delegate","val":3,"amt":3594},"partialState":{"h":26,"t":156,"tokens":[2830,25084,19622,17086],"delegation":[1830,24084,18622,16086],"delegatorTokens":9999999898095}}],"events":["send_downtime_slash_request","downtime_slash_request_outstanding","send_downtime_slash_request","insufficient_shares","downtime_slash_request_outstanding","send_downtime_slash_request","receive_slash_request_unbonded","receive_slash_request_unbonded","send_vsc_without_downtime_ack","send_vsc_without_downtime_ack","more_than_one_third_val_power_change","send_vsc_without_downtime_ack","more_than_one_third_val_power_change","rebond_unval","send_vsc_without_downtime_ack","consumer_update_val","consumer_update_val","more_than_one_third_val_power_change","receive_downtime_slash_request","jail","send_vsc_with_downtime_ack","more_than_one_third_val_power_change","rebond_unval","send_vsc_without_downtime_ack","send_vsc_not_because_change","send_vsc_without_downtime_ack","receive_downtime_slash_ack","insufficient_shares","consumer_update_val","consumer_del_val","consumer_del_val","consumer_add_val","send_vsc_without_downtime_ack","insufficient_shares","send_vsc_without_downtime_ack","more_than_one_third_val_power_change","rebond_unval","send_vsc_without_downtime_ack","consumer_update_val","some_undels_expired_but_not_completed","send_vsc_not_because_change","send_vsc_without_downtime_ack","consumer_send_maturation","consumer_update_val","consumer_del_val","consumer_add_val","some_undels_expired_but_not_completed","send_vsc_without_downtime_ack","complete_undel_immediate","complete_undel_immediate","complete_undel_immediate","complete_undel_immediate","complete_undel_immediate","send_vsc_without_downtime_ack","some_undels_expired_but_not_completed","send_vsc_not_because_change","send_vsc_without_downtime_ack","some_undels_expired_but_not_completed","send_vsc_without_downtime_ack","consumer_send_maturation","consumer_send_maturation","consumer_send_maturation","consumer_send_maturation","consumer_send_maturation","consumer_update_val","consumer_update_val","some_undels_expired_but_not_completed","send_vsc_not_because_change","send_vsc_without_downtime_ack","some_undels_expired_but_not_completed","send_vsc_without_downtime_ack","some_undels_expired_but_not_completed","send_vsc_without_downtime_ack","send_vsc_not_because_change","send_vsc_without_downtime_ack","some_undels_expired_but_not_completed"]},{"meta":{"commit":"7ffd0c04e4205cbc9caf212abfe6c59ee43153bf"},"constants":{"P":"provider","C":"consumer","UNBONDING_SECONDS_P":70,"UNBONDING_SECONDS_C":50,"TRUSTING_SECONDS":49,"NUM_VALIDATORS":4,"MAX_VALIDATORS":2,"SLASH_DOUBLESIGN":0,"SLASH_DOWNTIME":0,"JAIL_SECONDS":999999999999999,"BLOCK_SECONDS":6,"INITIAL_DELEGATOR_TOKENS":10000000000000,"DELEGATE_AMT_MIN":1000,"DELEGATE_AMT_MAX":5000,"UNDELEGATE_AMT_MIN":1000,"UNDELEGATE_AMT_MAX":5000,"ISDOWNTIME_PROBABILITY":0.5,"MAX_NUM_PACKETS_FOR_DELIVER":6},"actions":[{"ix":0,"action":{"kind":"Undelegate","val":3,"amt":1377},"partialState":{"h":1,"t":6,"tokens":[5000,4000,3000,2000],"delegation":[4000,3000,2000,1000],"delegatorTokens":10000000000000}},{"ix":1,"action":{"kind":"ConsumerSlash","val":1,"infractionHeight":0,"isDowntime":true},"partialState":{"h":1,"t":6,"outstandingDowntime":[false,true,false,false]}},{"ix":2,"action":{"kind":"Delegate","val":2,"amt":2623},"partialState":{"h":1,"t":6,"tokens":[5000,4000,5623,2000],"delegation":[4000,3000,4623,1000],"delegatorTokens":9999999997377}},{"ix":3,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":4,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":5,"action":{"kind":"Undelegate","val":2,"amt":1826},"partialState":{"h":1,"t":6,"tokens":[5000,4000,3797,2000],"delegation":[4000,3000,2797,1000],"delegatorTokens":9999999997377}},{"ix":6,"action":{"kind":"Deliver","chain":"provider","numPackets":1},"partialState":{"h":1,"t":6,"tokens":[5000,4000,3797,2000],"delegation":[4000,3000,2797,1000],"delegatorTokens":9999999997377,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":7,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":2,"t":12,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,true,false,false]}},{"ix":8,"action":{"kind":"Delegate","val":3,"amt":2613},"partialState":{"h":1,"t":6,"tokens":[5000,4000,3797,4613],"delegation":[4000,3000,2797,3613],"delegatorTokens":9999999994764}},{"ix":9,"action":{"kind":"ConsumerSlash","val":2,"infractionHeight":0,"isDowntime":false},"partialState":{"h":2,"t":12,"outstandingDowntime":[false,true,false,false]}},{"ix":10,"action":{"kind":"Delegate","val":1,"amt":3334},"partialState":{"h":1,"t":6,"tokens":[5000,7334,3797,4613],"delegation":[4000,6334,2797,3613],"delegatorTokens":9999999991430}},{"ix":11,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":12,"action":{"kind":"Delegate","val":1,"amt":3237},"partialState":{"h":1,"t":6,"tokens":[5000,10571,3797,4613],"delegation":[4000,9571,2797,3613],"delegatorTokens":9999999988193}},{"ix":13,"action":{"kind":"Delegate","val":0,"amt":4261},"partialState":{"h":1,"t":6,"tokens":[9261,10571,3797,4613],"delegation":[8261,9571,2797,3613],"delegatorTokens":9999999983932}},{"ix":14,"action":{"kind":"Undelegate","val":3,"amt":3918},"partialState":{"h":1,"t":6,"tokens":[9261,10571,3797,4613],"delegation":[8261,9571,2797,3613],"delegatorTokens":9999999983932}},{"ix":15,"action":{"kind":"Delegate","val":1,"amt":1290},"partialState":{"h":1,"t":6,"tokens":[9261,11861,3797,4613],"delegation":[8261,10861,2797,3613],"delegatorTokens":9999999982642}},{"ix":16,"action":{"kind":"Delegate","val":0,"amt":1839},"partialState":{"h":1,"t":6,"tokens":[11100,11861,3797,4613],"delegation":[10100,10861,2797,3613],"delegatorTokens":9999999980803}},{"ix":17,"action":{"kind":"Deliver","chain":"consumer","numPackets":5},"partialState":{"h":2,"t":12,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,true,false,false]}},{"ix":18,"action":{"kind":"ConsumerSlash","val":2,"infractionHeight":1,"isDowntime":true},"partialState":{"h":2,"t":12,"outstandingDowntime":[false,true,true,false]}},{"ix":19,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":3,"t":18,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,true,true,false]}},{"ix":20,"action":{"kind":"Deliver","chain":"provider","numPackets":5},"partialState":{"h":1,"t":6,"tokens":[11100,11861,3797,4613],"delegation":[10100,10861,2797,3613],"delegatorTokens":9999999980803,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":21,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":22,"action":{"kind":"ConsumerSlash","val":1,"infractionHeight":1,"isDowntime":true},"partialState":{"h":3,"t":18,"outstandingDowntime":[false,true,true,false]}},{"ix":23,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":4,"t":24,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,true,true,false]}},{"ix":24,"action":{"kind":"Deliver","chain":"provider","numPackets":4},"partialState":{"h":1,"t":6,"tokens":[11100,11861,3797,4613],"delegation":[10100,10861,2797,3613],"delegatorTokens":9999999980803,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":25,"action":{"kind":"ConsumerSlash","val":2,"infractionHeight":0,"isDowntime":true},"partialState":{"h":4,"t":24,"outstandingDowntime":[false,true,true,false]}},{"ix":26,"action":{"kind":"ConsumerSlash","val":3,"infractionHeight":1,"isDowntime":true},"partialState":{"h":4,"t":24,"outstandingDowntime":[false,true,true,true]}},{"ix":27,"action":{"kind":"Undelegate","val":1,"amt":1236},"partialState":{"h":1,"t":6,"tokens":[11100,10625,3797,4613],"delegation":[10100,9625,2797,3613],"delegatorTokens":9999999980803}},{"ix":28,"action":{"kind":"Delegate","val":2,"amt":4807},"partialState":{"h":1,"t":6,"tokens":[11100,10625,8604,4613],"delegation":[10100,9625,7604,3613],"delegatorTokens":9999999975996}},{"ix":29,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":30,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":31,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":32,"action":{"kind":"Undelegate","val":0,"amt":3652},"partialState":{"h":1,"t":6,"tokens":[7448,10625,8604,4613],"delegation":[6448,9625,7604,3613],"delegatorTokens":9999999975996}},{"ix":33,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":34,"action":{"kind":"Deliver","chain":"provider","numPackets":3},"partialState":{"h":1,"t":6,"tokens":[7448,10625,8604,4613],"delegation":[6448,9625,7604,3613],"delegatorTokens":9999999975996,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":35,"action":{"kind":"Undelegate","val":2,"amt":4774},"partialState":{"h":1,"t":6,"tokens":[7448,10625,3830,4613],"delegation":[6448,9625,2830,3613],"delegatorTokens":9999999975996}},{"ix":36,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":37,"action":{"kind":"Deliver","chain":"consumer","numPackets":1},"partialState":{"h":4,"t":24,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,true,true,true]}},{"ix":38,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":39,"action":{"kind":"Undelegate","val":2,"amt":3603},"partialState":{"h":1,"t":6,"tokens":[7448,10625,3830,4613],"delegation":[6448,9625,2830,3613],"delegatorTokens":9999999975996}},{"ix":40,"action":{"kind":"Delegate","val":3,"amt":3592},"partialState":{"h":1,"t":6,"tokens":[7448,10625,3830,8205],"delegation":[6448,9625,2830,7205],"delegatorTokens":9999999972404}},{"ix":41,"action":{"kind":"Deliver","chain":"consumer","numPackets":3},"partialState":{"h":4,"t":24,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,true,true,true]}},{"ix":42,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":43,"action":{"kind":"Deliver","chain":"consumer","numPackets":4},"partialState":{"h":4,"t":24,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,true,true,true]}},{"ix":44,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":45,"action":{"kind":"Delegate","val":2,"amt":2551},"partialState":{"h":1,"t":6,"tokens":[7448,10625,6381,8205],"delegation":[6448,9625,5381,7205],"delegatorTokens":9999999969853}},{"ix":46,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":47,"action":{"kind":"Deliver","chain":"consumer","numPackets":4},"partialState":{"h":4,"t":24,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,true,true,true]}},{"ix":48,"action":{"kind":"Delegate","val":0,"amt":4198},"partialState":{"h":1,"t":6,"tokens":[11646,10625,6381,8205],"delegation":[10646,9625,5381,7205],"delegatorTokens":9999999965655}},{"ix":49,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":50,"action":{"kind":"Delegate","val":2,"amt":2992},"partialState":{"h":1,"t":6,"tokens":[11646,10625,9373,8205],"delegation":[10646,9625,8373,7205],"delegatorTokens":9999999962663}},{"ix":51,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":5,"t":30,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,true,true,true]}},{"ix":52,"action":{"kind":"Delegate","val":1,"amt":2864},"partialState":{"h":1,"t":6,"tokens":[11646,13489,9373,8205],"delegation":[10646,12489,8373,7205],"delegatorTokens":9999999959799}},{"ix":53,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":2,"t":12,"tokens":[11646,13489,9373,8205],"delegation":[10646,12489,8373,7205],"delegatorTokens":9999999959799,"jailed":[null,1000000000000005,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":54,"action":{"kind":"Delegate","val":3,"amt":1136},"partialState":{"h":2,"t":12,"tokens":[11646,13489,9373,9341],"delegation":[10646,12489,8373,8341],"delegatorTokens":9999999958663}},{"ix":55,"action":{"kind":"Undelegate","val":1,"amt":3091},"partialState":{"h":2,"t":12,"tokens":[11646,10398,9373,9341],"delegation":[10646,9398,8373,8341],"delegatorTokens":9999999958663}},{"ix":56,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":6,"t":36,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,true,true,true]}},{"ix":57,"action":{"kind":"Undelegate","val":2,"amt":3618},"partialState":{"h":2,"t":12,"tokens":[11646,10398,5755,9341],"delegation":[10646,9398,4755,8341],"delegatorTokens":9999999958663}},{"ix":58,"action":{"kind":"Undelegate","val":3,"amt":3976},"partialState":{"h":2,"t":12,"tokens":[11646,10398,5755,5365],"delegation":[10646,9398,4755,4365],"delegatorTokens":9999999958663}},{"ix":59,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":3,"t":18,"tokens":[11646,10398,5755,5365],"delegation":[10646,9398,4755,4365],"delegatorTokens":9999999958663,"jailed":[null,1000000000000005,null,null],"status":["bonded","unbonding","bonded","unbonded"]}},{"ix":60,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":61,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":62,"action":{"kind":"Deliver","chain":"provider","numPackets":4},"partialState":{"h":3,"t":18,"tokens":[11646,10398,5755,5365],"delegation":[10646,9398,4755,4365],"delegatorTokens":9999999958663,"jailed":[null,1000000000000005,null,null],"status":["bonded","unbonding","bonded","unbonded"]}},{"ix":63,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":4,"t":24,"tokens":[11646,10398,5755,5365],"delegation":[10646,9398,4755,4365],"delegatorTokens":9999999958663,"jailed":[null,1000000000000005,null,null],"status":["bonded","unbonding","bonded","unbonded"]}},{"ix":64,"action":{"kind":"Undelegate","val":3,"amt":2063},"partialState":{"h":4,"t":24,"tokens":[11646,10398,5755,3302],"delegation":[10646,9398,4755,2302],"delegatorTokens":9999999958663}},{"ix":65,"action":{"kind":"Deliver","chain":"consumer","numPackets":3},"partialState":{"h":6,"t":36,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,false,true,true]}},{"ix":66,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":5,"t":30,"tokens":[11646,10398,5755,3302],"delegation":[10646,9398,4755,2302],"delegatorTokens":9999999958663,"jailed":[null,1000000000000005,null,null],"status":["bonded","unbonding","bonded","unbonded"]}},{"ix":67,"action":{"kind":"Deliver","chain":"provider","numPackets":4},"partialState":{"h":5,"t":30,"tokens":[11646,10398,5755,3302],"delegation":[10646,9398,4755,2302],"delegatorTokens":9999999958663,"jailed":[null,1000000000000005,null,null],"status":["bonded","unbonding","bonded","unbonded"]}},{"ix":68,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":69,"action":{"kind":"Delegate","val":1,"amt":2243},"partialState":{"h":5,"t":30,"tokens":[11646,12641,5755,3302],"delegation":[10646,11641,4755,2302],"delegatorTokens":9999999956420}},{"ix":70,"action":{"kind":"Delegate","val":0,"amt":4643},"partialState":{"h":5,"t":30,"tokens":[16289,12641,5755,3302],"delegation":[15289,11641,4755,2302],"delegatorTokens":9999999951777}},{"ix":71,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":6,"t":36,"tokens":[16289,12641,5755,3302],"delegation":[15289,11641,4755,2302],"delegatorTokens":9999999951777,"jailed":[null,1000000000000005,null,null],"status":["bonded","unbonding","bonded","unbonded"]}},{"ix":72,"action":{"kind":"Deliver","chain":"provider","numPackets":2},"partialState":{"h":6,"t":36,"tokens":[16289,12641,5755,3302],"delegation":[15289,11641,4755,2302],"delegatorTokens":9999999951777,"jailed":[null,1000000000000005,null,null],"status":["bonded","unbonding","bonded","unbonded"]}},{"ix":73,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":74,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":75,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":7,"t":42,"tokens":[16289,12641,5755,3302],"delegation":[15289,11641,4755,2302],"delegatorTokens":9999999951777,"jailed":[null,1000000000000005,null,null],"status":["bonded","unbonding","bonded","unbonded"]}},{"ix":76,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":77,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":78,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":7,"t":42,"consumerPower":[11646,null,5755,null],"outstandingDowntime":[false,false,true,true]}},{"ix":79,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":8,"t":48,"tokens":[16289,12641,5755,3302],"delegation":[15289,11641,4755,2302],"delegatorTokens":9999999951777,"jailed":[null,1000000000000005,null,null],"status":["bonded","unbonding","bonded","unbonded"]}},{"ix":80,"action":{"kind":"Undelegate","val":1,"amt":3055},"partialState":{"h":8,"t":48,"tokens":[16289,9586,5755,3302],"delegation":[15289,8586,4755,2302],"delegatorTokens":9999999951777}},{"ix":81,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":9,"t":54,"tokens":[16289,9586,5755,3302],"delegation":[15289,8586,4755,2302],"delegatorTokens":9999999951777,"jailed":[null,1000000000000005,null,null],"status":["bonded","unbonding","bonded","unbonded"]}},{"ix":82,"action":{"kind":"Undelegate","val":3,"amt":1448},"partialState":{"h":9,"t":54,"tokens":[16289,9586,5755,1854],"delegation":[15289,8586,4755,854],"delegatorTokens":9999999951777}},{"ix":83,"action":{"kind":"Undelegate","val":3,"amt":4361},"partialState":{"h":9,"t":54,"tokens":[16289,9586,5755,1854],"delegation":[15289,8586,4755,854],"delegatorTokens":9999999951777}},{"ix":84,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":10,"t":60,"tokens":[16289,9586,5755,1854],"delegation":[15289,8586,4755,854],"delegatorTokens":9999999951777,"jailed":[null,1000000000000005,null,null],"status":["bonded","unbonding","bonded","unbonded"]}},{"ix":85,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":11,"t":66,"tokens":[16289,9586,5755,1854],"delegation":[15289,8586,4755,854],"delegatorTokens":9999999951777,"jailed":[null,1000000000000005,null,null],"status":["bonded","unbonding","bonded","unbonded"]}},{"ix":86,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":8,"t":48,"consumerPower":[11646,null,5755,null],"outstandingDowntime":[false,false,true,true]}},{"ix":87,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":88,"action":{"kind":"Deliver","chain":"provider","numPackets":6},"partialState":{"h":11,"t":66,"tokens":[16289,9586,5755,1854],"delegation":[15289,8586,4755,854],"delegatorTokens":9999999951777,"jailed":[null,1000000000000005,null,null],"status":["bonded","unbonding","bonded","unbonded"]}},{"ix":89,"action":{"kind":"Delegate","val":2,"amt":4856},"partialState":{"h":11,"t":66,"tokens":[16289,9586,10611,1854],"delegation":[15289,8586,9611,854],"delegatorTokens":9999999946921}},{"ix":90,"action":{"kind":"Undelegate","val":0,"amt":2146},"partialState":{"h":11,"t":66,"tokens":[14143,9586,10611,1854],"delegation":[13143,8586,9611,854],"delegatorTokens":9999999946921}},{"ix":91,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":9,"t":54,"consumerPower":[11646,null,5755,null],"outstandingDowntime":[false,false,true,true]}},{"ix":92,"action":{"kind":"Undelegate","val":3,"amt":3805},"partialState":{"h":11,"t":66,"tokens":[14143,9586,10611,1854],"delegation":[13143,8586,9611,854],"delegatorTokens":9999999946921}},{"ix":93,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":12,"t":72,"tokens":[14143,9586,10611,1854],"delegation":[13143,8586,9611,854],"delegatorTokens":9999999946921,"jailed":[null,1000000000000005,null,null],"status":["bonded","unbonding","bonded","unbonded"]}},{"ix":94,"action":{"kind":"Undelegate","val":0,"amt":3635},"partialState":{"h":12,"t":72,"tokens":[10508,9586,10611,1854],"delegation":[9508,8586,9611,854],"delegatorTokens":9999999946921}},{"ix":95,"action":{"kind":"Undelegate","val":0,"amt":4468},"partialState":{"h":12,"t":72,"tokens":[6040,9586,10611,1854],"delegation":[5040,8586,9611,854],"delegatorTokens":9999999946921}},{"ix":96,"action":{"kind":"Undelegate","val":3,"amt":3128},"partialState":{"h":12,"t":72,"tokens":[6040,9586,10611,1854],"delegation":[5040,8586,9611,854],"delegatorTokens":9999999946921}},{"ix":97,"action":{"kind":"Delegate","val":3,"amt":1681},"partialState":{"h":12,"t":72,"tokens":[6040,9586,10611,3535],"delegation":[5040,8586,9611,2535],"delegatorTokens":9999999945240}},{"ix":98,"action":{"kind":"Undelegate","val":3,"amt":4204},"partialState":{"h":12,"t":72,"tokens":[6040,9586,10611,3535],"delegation":[5040,8586,9611,2535],"delegatorTokens":9999999945240}},{"ix":99,"action":{"kind":"Delegate","val":3,"amt":1209},"partialState":{"h":12,"t":72,"tokens":[6040,9586,10611,4744],"delegation":[5040,8586,9611,3744],"delegatorTokens":9999999944031}},{"ix":100,"action":{"kind":"Undelegate","val":3,"amt":4648},"partialState":{"h":12,"t":72,"tokens":[6040,9586,10611,4744],"delegation":[5040,8586,9611,3744],"delegatorTokens":9999999944031}},{"ix":101,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":102,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":13,"t":78,"tokens":[6040,9586,10611,4744],"delegation":[5040,8586,9611,3744],"delegatorTokens":9999999944031,"jailed":[null,1000000000000005,null,null],"status":["bonded","unbonding","bonded","unbonded"]}},{"ix":103,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":10,"t":60,"consumerPower":[11646,null,5755,null],"outstandingDowntime":[false,false,true,true]}},{"ix":104,"action":{"kind":"Delegate","val":0,"amt":1307},"partialState":{"h":13,"t":78,"tokens":[7347,9586,10611,4744],"delegation":[6347,8586,9611,3744],"delegatorTokens":9999999942724}},{"ix":105,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":11,"t":66,"consumerPower":[11646,null,5755,null],"outstandingDowntime":[false,false,true,true]}},{"ix":106,"action":{"kind":"Deliver","chain":"consumer","numPackets":3},"partialState":{"h":11,"t":66,"consumerPower":[11646,null,5755,null],"outstandingDowntime":[false,false,true,true]}},{"ix":107,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":108,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":109,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":14,"t":84,"tokens":[7347,9586,10611,4744],"delegation":[6347,8586,9611,3744],"delegatorTokens":9999999942724,"jailed":[null,1000000000000005,null,null],"status":["bonded","unbonding","bonded","unbonded"]}},{"ix":110,"action":{"kind":"Deliver","chain":"provider","numPackets":3},"partialState":{"h":14,"t":84,"tokens":[7347,9586,10611,4744],"delegation":[6347,8586,9611,3744],"delegatorTokens":9999999942724,"jailed":[null,1000000000000005,null,null],"status":["bonded","unbonding","bonded","unbonded"]}},{"ix":111,"action":{"kind":"Undelegate","val":0,"amt":1431},"partialState":{"h":14,"t":84,"tokens":[5916,9586,10611,4744],"delegation":[4916,8586,9611,3744],"delegatorTokens":9999999942724}},{"ix":112,"action":{"kind":"Undelegate","val":3,"amt":3417},"partialState":{"h":14,"t":84,"tokens":[5916,9586,10611,1327],"delegation":[4916,8586,9611,327],"delegatorTokens":9999999942724}},{"ix":113,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":12,"t":72,"consumerPower":[16289,null,5755,null],"outstandingDowntime":[false,false,true,true]}},{"ix":114,"action":{"kind":"Undelegate","val":1,"amt":2485},"partialState":{"h":14,"t":84,"tokens":[5916,7101,10611,1327],"delegation":[4916,6101,9611,327],"delegatorTokens":9999999942724}},{"ix":115,"action":{"kind":"Undelegate","val":3,"amt":3974},"partialState":{"h":14,"t":84,"tokens":[5916,7101,10611,1327],"delegation":[4916,6101,9611,327],"delegatorTokens":9999999942724}},{"ix":116,"action":{"kind":"Delegate","val":2,"amt":3219},"partialState":{"h":14,"t":84,"tokens":[5916,7101,13830,1327],"delegation":[4916,6101,12830,327],"delegatorTokens":9999999939505}},{"ix":117,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":15,"t":90,"tokens":[5916,7101,13830,1327],"delegation":[4916,6101,12830,327],"delegatorTokens":9999999939505,"jailed":[null,1000000000000005,null,null],"status":["bonded","unbonding","bonded","unbonded"]}},{"ix":118,"action":{"kind":"Delegate","val":1,"amt":1527},"partialState":{"h":15,"t":90,"tokens":[5916,8628,13830,1327],"delegation":[4916,7628,12830,327],"delegatorTokens":9999999937978}},{"ix":119,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":16,"t":96,"tokens":[5916,8628,13830,1327],"delegation":[4916,7628,12830,327],"delegatorTokens":9999999937978,"jailed":[null,1000000000000005,null,null],"status":["bonded","unbonding","bonded","unbonded"]}},{"ix":120,"action":{"kind":"Undelegate","val":3,"amt":3249},"partialState":{"h":16,"t":96,"tokens":[5916,8628,13830,1327],"delegation":[4916,7628,12830,327],"delegatorTokens":9999999937978}},{"ix":121,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":122,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":17,"t":102,"tokens":[5916,8628,13830,1327],"delegation":[4916,7628,12830,327],"delegatorTokens":9999999937978,"jailed":[null,1000000000000005,null,null],"status":["bonded","unbonding","bonded","unbonded"]}},{"ix":123,"action":{"kind":"Undelegate","val":0,"amt":4547},"partialState":{"h":17,"t":102,"tokens":[1369,8628,13830,1327],"delegation":[369,7628,12830,327],"delegatorTokens":9999999937978}},{"ix":124,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":18,"t":108,"tokens":[1369,8628,13830,1327],"delegation":[369,7628,12830,327],"delegatorTokens":9999999937978,"jailed":[null,1000000000000005,null,null],"status":["bonded","unbonding","bonded","unbonded"]}},{"ix":125,"action":{"kind":"Delegate","val":1,"amt":1519},"partialState":{"h":18,"t":108,"tokens":[1369,10147,13830,1327],"delegation":[369,9147,12830,327],"delegatorTokens":9999999936459}},{"ix":126,"action":{"kind":"Deliver","chain":"provider","numPackets":2},"partialState":{"h":18,"t":108,"tokens":[1369,10147,13830,1327],"delegation":[369,9147,12830,327],"delegatorTokens":9999999936459,"jailed":[null,1000000000000005,null,null],"status":["bonded","unbonding","bonded","unbonded"]}},{"ix":127,"action":{"kind":"Deliver","chain":"consumer","numPackets":6},"partialState":{"h":12,"t":72,"consumerPower":[16289,null,5755,null],"outstandingDowntime":[false,false,true,true]}},{"ix":128,"action":{"kind":"Undelegate","val":2,"amt":1714},"partialState":{"h":18,"t":108,"tokens":[1369,10147,12116,1327],"delegation":[369,9147,11116,327],"delegatorTokens":9999999936459}},{"ix":129,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":13,"t":78,"consumerPower":[5916,null,13830,null],"outstandingDowntime":[false,false,true,true]}},{"ix":130,"action":{"kind":"Undelegate","val":0,"amt":4310},"partialState":{"h":18,"t":108,"tokens":[1369,10147,12116,1327],"delegation":[369,9147,11116,327],"delegatorTokens":9999999936459}},{"ix":131,"action":{"kind":"Deliver","chain":"consumer","numPackets":5},"partialState":{"h":13,"t":78,"consumerPower":[5916,null,13830,null],"outstandingDowntime":[false,false,true,true]}},{"ix":132,"action":{"kind":"Deliver","chain":"provider","numPackets":6},"partialState":{"h":18,"t":108,"tokens":[1369,10147,12116,1327],"delegation":[369,9147,11116,327],"delegatorTokens":9999999936459,"jailed":[null,1000000000000005,null,null],"status":["bonded","unbonding","bonded","unbonded"]}},{"ix":133,"action":{"kind":"Undelegate","val":2,"amt":1457},"partialState":{"h":18,"t":108,"tokens":[1369,10147,10659,1327],"delegation":[369,9147,9659,327],"delegatorTokens":9999999936459}},{"ix":134,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":135,"action":{"kind":"Deliver","chain":"consumer","numPackets":3},"partialState":{"h":13,"t":78,"consumerPower":[5916,null,13830,null],"outstandingDowntime":[false,false,true,true]}},{"ix":136,"action":{"kind":"Delegate","val":3,"amt":1470},"partialState":{"h":18,"t":108,"tokens":[1369,10147,10659,2797],"delegation":[369,9147,9659,1797],"delegatorTokens":9999999934989}},{"ix":137,"action":{"kind":"Undelegate","val":2,"amt":1602},"partialState":{"h":18,"t":108,"tokens":[1369,10147,9057,2797],"delegation":[369,9147,8057,1797],"delegatorTokens":9999999934989}},{"ix":138,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":19,"t":114,"tokens":[1369,10147,9057,2797],"delegation":[369,9147,8057,1797],"delegatorTokens":9999999934989,"jailed":[null,1000000000000005,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":139,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":14,"t":84,"consumerPower":[5916,null,13830,null],"outstandingDowntime":[false,false,true,true]}},{"ix":140,"action":{"kind":"Delegate","val":1,"amt":3871},"partialState":{"h":19,"t":114,"tokens":[1369,14018,9057,2797],"delegation":[369,13018,8057,1797],"delegatorTokens":9999999931118}},{"ix":141,"action":{"kind":"Delegate","val":2,"amt":2354},"partialState":{"h":19,"t":114,"tokens":[1369,14018,11411,2797],"delegation":[369,13018,10411,1797],"delegatorTokens":9999999928764}},{"ix":142,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":15,"t":90,"consumerPower":[5916,null,13830,null],"outstandingDowntime":[false,false,true,true]}},{"ix":143,"action":{"kind":"Undelegate","val":0,"amt":4091},"partialState":{"h":19,"t":114,"tokens":[1369,14018,11411,2797],"delegation":[369,13018,10411,1797],"delegatorTokens":9999999928764}},{"ix":144,"action":{"kind":"Undelegate","val":0,"amt":2416},"partialState":{"h":19,"t":114,"tokens":[1369,14018,11411,2797],"delegation":[369,13018,10411,1797],"delegatorTokens":9999999928764}},{"ix":145,"action":{"kind":"Undelegate","val":2,"amt":3627},"partialState":{"h":19,"t":114,"tokens":[1369,14018,7784,2797],"delegation":[369,13018,6784,1797],"delegatorTokens":9999999928764}},{"ix":146,"action":{"kind":"Undelegate","val":3,"amt":3436},"partialState":{"h":19,"t":114,"tokens":[1369,14018,7784,2797],"delegation":[369,13018,6784,1797],"delegatorTokens":9999999928764}},{"ix":147,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":148,"action":{"kind":"Deliver","chain":"provider","numPackets":1},"partialState":{"h":19,"t":114,"tokens":[1369,14018,7784,2797],"delegation":[369,13018,6784,1797],"delegatorTokens":9999999928764,"jailed":[null,1000000000000005,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":149,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":150,"action":{"kind":"Delegate","val":2,"amt":3732},"partialState":{"h":19,"t":114,"tokens":[1369,14018,11516,2797],"delegation":[369,13018,10516,1797],"delegatorTokens":9999999925032}},{"ix":151,"action":{"kind":"Delegate","val":2,"amt":2181},"partialState":{"h":19,"t":114,"tokens":[1369,14018,13697,2797],"delegation":[369,13018,12697,1797],"delegatorTokens":9999999922851}},{"ix":152,"action":{"kind":"Delegate","val":2,"amt":4149},"partialState":{"h":19,"t":114,"tokens":[1369,14018,17846,2797],"delegation":[369,13018,16846,1797],"delegatorTokens":9999999918702}},{"ix":153,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":154,"action":{"kind":"Undelegate","val":0,"amt":3096},"partialState":{"h":19,"t":114,"tokens":[1369,14018,17846,2797],"delegation":[369,13018,16846,1797],"delegatorTokens":9999999918702}},{"ix":155,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":156,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":16,"t":96,"consumerPower":[5916,null,13830,null],"outstandingDowntime":[false,false,true,true]}},{"ix":157,"action":{"kind":"Undelegate","val":2,"amt":3736},"partialState":{"h":19,"t":114,"tokens":[1369,14018,14110,2797],"delegation":[369,13018,13110,1797],"delegatorTokens":9999999918702}},{"ix":158,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":159,"action":{"kind":"Deliver","chain":"provider","numPackets":2},"partialState":{"h":19,"t":114,"tokens":[1369,14018,14110,2797],"delegation":[369,13018,13110,1797],"delegatorTokens":9999999918702,"jailed":[null,1000000000000005,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":160,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":161,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":20,"t":120,"tokens":[1369,14018,14110,2797],"delegation":[369,13018,13110,1797],"delegatorTokens":9999999918702,"jailed":[null,1000000000000005,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":162,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":21,"t":126,"tokens":[1369,14018,14110,2797],"delegation":[369,13018,13110,1797],"delegatorTokens":9999999918702,"jailed":[null,1000000000000005,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":163,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":164,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":17,"t":102,"consumerPower":[5916,null,13830,null],"outstandingDowntime":[false,false,true,true]}},{"ix":165,"action":{"kind":"Undelegate","val":1,"amt":4766},"partialState":{"h":21,"t":126,"tokens":[1369,9252,14110,2797],"delegation":[369,8252,13110,1797],"delegatorTokens":9999999918702}},{"ix":166,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":167,"action":{"kind":"Deliver","chain":"consumer","numPackets":1},"partialState":{"h":17,"t":102,"consumerPower":[5916,null,13830,null],"outstandingDowntime":[false,false,true,true]}},{"ix":168,"action":{"kind":"Undelegate","val":3,"amt":3910},"partialState":{"h":21,"t":126,"tokens":[1369,9252,14110,2797],"delegation":[369,8252,13110,1797],"delegatorTokens":9999999918702}},{"ix":169,"action":{"kind":"Undelegate","val":3,"amt":4421},"partialState":{"h":21,"t":126,"tokens":[1369,9252,14110,2797],"delegation":[369,8252,13110,1797],"delegatorTokens":9999999918702}},{"ix":170,"action":{"kind":"Undelegate","val":3,"amt":3520},"partialState":{"h":21,"t":126,"tokens":[1369,9252,14110,2797],"delegation":[369,8252,13110,1797],"delegatorTokens":9999999918702}},{"ix":171,"action":{"kind":"Delegate","val":1,"amt":4690},"partialState":{"h":21,"t":126,"tokens":[1369,13942,14110,2797],"delegation":[369,12942,13110,1797],"delegatorTokens":9999999914012}},{"ix":172,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":22,"t":132,"tokens":[1369,13942,14110,2797],"delegation":[369,12942,13110,1797],"delegatorTokens":9999999914012,"jailed":[null,1000000000000005,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":173,"action":{"kind":"Deliver","chain":"consumer","numPackets":3},"partialState":{"h":17,"t":102,"consumerPower":[5916,null,13830,null],"outstandingDowntime":[false,false,true,true]}},{"ix":174,"action":{"kind":"Undelegate","val":2,"amt":3939},"partialState":{"h":22,"t":132,"tokens":[1369,13942,10171,2797],"delegation":[369,12942,9171,1797],"delegatorTokens":9999999914012}},{"ix":175,"action":{"kind":"Deliver","chain":"consumer","numPackets":6},"partialState":{"h":17,"t":102,"consumerPower":[5916,null,13830,null],"outstandingDowntime":[false,false,true,true]}},{"ix":176,"action":{"kind":"Undelegate","val":0,"amt":3212},"partialState":{"h":22,"t":132,"tokens":[1369,13942,10171,2797],"delegation":[369,12942,9171,1797],"delegatorTokens":9999999914012}},{"ix":177,"action":{"kind":"Deliver","chain":"provider","numPackets":1},"partialState":{"h":22,"t":132,"tokens":[1369,13942,10171,2797],"delegation":[369,12942,9171,1797],"delegatorTokens":9999999914012,"jailed":[null,1000000000000005,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":178,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":179,"action":{"kind":"Undelegate","val":0,"amt":3353},"partialState":{"h":22,"t":132,"tokens":[1369,13942,10171,2797],"delegation":[369,12942,9171,1797],"delegatorTokens":9999999914012}},{"ix":180,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":181,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":23,"t":138,"tokens":[1369,13942,10171,2797],"delegation":[369,12942,9171,1797],"delegatorTokens":9999999925500,"jailed":[null,1000000000000005,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":182,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":24,"t":144,"tokens":[1369,13942,10171,2797],"delegation":[369,12942,9171,1797],"delegatorTokens":9999999925500,"jailed":[null,1000000000000005,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":183,"action":{"kind":"Undelegate","val":1,"amt":1773},"partialState":{"h":24,"t":144,"tokens":[1369,12169,10171,2797],"delegation":[369,11169,9171,1797],"delegatorTokens":9999999925500}},{"ix":184,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":185,"action":{"kind":"Undelegate","val":0,"amt":3866},"partialState":{"h":24,"t":144,"tokens":[1369,12169,10171,2797],"delegation":[369,11169,9171,1797],"delegatorTokens":9999999925500}},{"ix":186,"action":{"kind":"Deliver","chain":"provider","numPackets":2},"partialState":{"h":24,"t":144,"tokens":[1369,12169,10171,2797],"delegation":[369,11169,9171,1797],"delegatorTokens":9999999925500,"jailed":[null,1000000000000005,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":187,"action":{"kind":"Delegate","val":3,"amt":3326},"partialState":{"h":24,"t":144,"tokens":[1369,12169,10171,6123],"delegation":[369,11169,9171,5123],"delegatorTokens":9999999922174}},{"ix":188,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":18,"t":108,"consumerPower":[null,null,14110,2797],"outstandingDowntime":[false,false,true,true]}},{"ix":189,"action":{"kind":"Delegate","val":1,"amt":4285},"partialState":{"h":24,"t":144,"tokens":[1369,16454,10171,6123],"delegation":[369,15454,9171,5123],"delegatorTokens":9999999917889}},{"ix":190,"action":{"kind":"Delegate","val":1,"amt":2158},"partialState":{"h":24,"t":144,"tokens":[1369,18612,10171,6123],"delegation":[369,17612,9171,5123],"delegatorTokens":9999999915731}},{"ix":191,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":19,"t":114,"consumerPower":[null,null,14110,2797],"outstandingDowntime":[false,false,true,true]}},{"ix":192,"action":{"kind":"Deliver","chain":"provider","numPackets":4},"partialState":{"h":24,"t":144,"tokens":[1369,18612,10171,6123],"delegation":[369,17612,9171,5123],"delegatorTokens":9999999915731,"jailed":[null,1000000000000005,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":193,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":194,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":195,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":196,"action":{"kind":"Deliver","chain":"consumer","numPackets":1},"partialState":{"h":19,"t":114,"consumerPower":[null,null,14110,2797],"outstandingDowntime":[false,false,true,true]}},{"ix":197,"action":{"kind":"Deliver","chain":"provider","numPackets":2},"partialState":{"h":24,"t":144,"tokens":[1369,18612,10171,6123],"delegation":[369,17612,9171,5123],"delegatorTokens":9999999915731,"jailed":[null,1000000000000005,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":198,"action":{"kind":"Delegate","val":2,"amt":3852},"partialState":{"h":24,"t":144,"tokens":[1369,18612,14023,6123],"delegation":[369,17612,13023,5123],"delegatorTokens":9999999911879}},{"ix":199,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}}],"events":["insufficient_shares","send_downtime_slash_request","send_double_sign_slash_request","insufficient_shares","send_downtime_slash_request","downtime_slash_request_outstanding","receive_double_sign_slash_request","downtime_slash_request_outstanding","send_downtime_slash_request","insufficient_shares","receive_downtime_slash_request","jail","receive_slash_request_unbonded","send_vsc_with_downtime_ack","send_vsc_without_downtime_ack","receive_slash_request_unbonded","receive_downtime_slash_ack","send_vsc_not_because_change","send_vsc_without_downtime_ack","send_vsc_without_downtime_ack","consumer_update_val","consumer_del_val","consumer_add_val","send_vsc_not_because_change","send_vsc_without_downtime_ack","insufficient_shares","send_vsc_not_because_change","send_vsc_without_downtime_ack","insufficient_shares","send_vsc_without_downtime_ack","insufficient_shares","insufficient_shares","insufficient_shares","send_vsc_without_downtime_ack","some_undels_expired_but_not_completed","send_vsc_without_downtime_ack","consumer_update_val","insufficient_shares","some_undels_expired_but_not_completed","send_vsc_without_downtime_ack","insufficient_shares","some_undels_expired_but_not_completed","send_vsc_without_downtime_ack","consumer_update_val","consumer_update_val","insufficient_shares","send_vsc_without_downtime_ack","insufficient_shares","insufficient_shares","insufficient_shares","insufficient_shares","consumer_send_maturation","consumer_send_maturation","send_vsc_without_downtime_ack","some_undels_expired_but_not_completed","insufficient_shares","insufficient_shares","insufficient_shares","some_undels_expired_but_not_completed","send_vsc_not_because_change","send_vsc_without_downtime_ack","insufficient_shares","insufficient_shares","complete_undel_immediate","complete_undel_immediate","complete_undel_immediate","complete_undel_immediate","send_vsc_without_downtime_ack","some_undels_expired_but_not_completed","insufficient_shares","consumer_del_val","consumer_update_val","consumer_add_val"]},{"meta":{"commit":"7ffd0c04e4205cbc9caf212abfe6c59ee43153bf"},"constants":{"P":"provider","C":"consumer","UNBONDING_SECONDS_P":70,"UNBONDING_SECONDS_C":50,"TRUSTING_SECONDS":49,"NUM_VALIDATORS":4,"MAX_VALIDATORS":2,"SLASH_DOUBLESIGN":0,"SLASH_DOWNTIME":0,"JAIL_SECONDS":999999999999999,"BLOCK_SECONDS":6,"INITIAL_DELEGATOR_TOKENS":10000000000000,"DELEGATE_AMT_MIN":1000,"DELEGATE_AMT_MAX":5000,"UNDELEGATE_AMT_MIN":1000,"UNDELEGATE_AMT_MAX":5000,"ISDOWNTIME_PROBABILITY":0.5,"MAX_NUM_PACKETS_FOR_DELIVER":6},"actions":[{"ix":0,"action":{"kind":"Deliver","chain":"consumer","numPackets":1},"partialState":{"h":1,"t":6,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":1,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":2,"action":{"kind":"Deliver","chain":"consumer","numPackets":4},"partialState":{"h":1,"t":6,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":3,"action":{"kind":"ConsumerSlash","val":3,"infractionHeight":0,"isDowntime":false},"partialState":{"h":1,"t":6,"outstandingDowntime":[false,false,false,false]}},{"ix":4,"action":{"kind":"Undelegate","val":0,"amt":4772},"partialState":{"h":1,"t":6,"tokens":[5000,4000,3000,2000],"delegation":[4000,3000,2000,1000],"delegatorTokens":10000000000000}},{"ix":5,"action":{"kind":"Delegate","val":3,"amt":4283},"partialState":{"h":1,"t":6,"tokens":[5000,4000,3000,6283],"delegation":[4000,3000,2000,5283],"delegatorTokens":9999999995717}},{"ix":6,"action":{"kind":"Undelegate","val":2,"amt":3020},"partialState":{"h":1,"t":6,"tokens":[5000,4000,3000,6283],"delegation":[4000,3000,2000,5283],"delegatorTokens":9999999995717}},{"ix":7,"action":{"kind":"Undelegate","val":3,"amt":4111},"partialState":{"h":1,"t":6,"tokens":[5000,4000,3000,2172],"delegation":[4000,3000,2000,1172],"delegatorTokens":9999999995717}},{"ix":8,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":9,"action":{"kind":"Deliver","chain":"provider","numPackets":5},"partialState":{"h":1,"t":6,"tokens":[5000,4000,3000,2172],"delegation":[4000,3000,2000,1172],"delegatorTokens":9999999995717,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":10,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":2,"t":12,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":11,"action":{"kind":"ConsumerSlash","val":3,"infractionHeight":1,"isDowntime":true},"partialState":{"h":2,"t":12,"outstandingDowntime":[false,false,false,true]}},{"ix":12,"action":{"kind":"ConsumerSlash","val":3,"infractionHeight":1,"isDowntime":true},"partialState":{"h":2,"t":12,"outstandingDowntime":[false,false,false,true]}},{"ix":13,"action":{"kind":"ConsumerSlash","val":2,"infractionHeight":1,"isDowntime":true},"partialState":{"h":2,"t":12,"outstandingDowntime":[false,false,true,true]}},{"ix":14,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":3,"t":18,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,false,true,true]}},{"ix":15,"action":{"kind":"ConsumerSlash","val":3,"infractionHeight":2,"isDowntime":true},"partialState":{"h":3,"t":18,"outstandingDowntime":[false,false,true,true]}},{"ix":16,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":4,"t":24,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,false,true,true]}},{"ix":17,"action":{"kind":"ConsumerSlash","val":0,"infractionHeight":3,"isDowntime":true},"partialState":{"h":4,"t":24,"outstandingDowntime":[true,false,true,true]}},{"ix":18,"action":{"kind":"Undelegate","val":3,"amt":4301},"partialState":{"h":1,"t":6,"tokens":[5000,4000,3000,2172],"delegation":[4000,3000,2000,1172],"delegatorTokens":9999999995717}},{"ix":19,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":20,"action":{"kind":"Deliver","chain":"consumer","numPackets":1},"partialState":{"h":4,"t":24,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[true,false,true,true]}},{"ix":21,"action":{"kind":"Undelegate","val":0,"amt":4070},"partialState":{"h":1,"t":6,"tokens":[5000,4000,3000,2172],"delegation":[4000,3000,2000,1172],"delegatorTokens":9999999995717}},{"ix":22,"action":{"kind":"Undelegate","val":2,"amt":3117},"partialState":{"h":1,"t":6,"tokens":[5000,4000,3000,2172],"delegation":[4000,3000,2000,1172],"delegatorTokens":9999999995717}},{"ix":23,"action":{"kind":"Deliver","chain":"provider","numPackets":4},"partialState":{"h":1,"t":6,"tokens":[5000,4000,3000,2172],"delegation":[4000,3000,2000,1172],"delegatorTokens":9999999995717,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":24,"action":{"kind":"Delegate","val":3,"amt":1699},"partialState":{"h":1,"t":6,"tokens":[5000,4000,3000,3871],"delegation":[4000,3000,2000,2871],"delegatorTokens":9999999994018}},{"ix":25,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":5,"t":30,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[true,false,true,true]}},{"ix":26,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":27,"action":{"kind":"Delegate","val":1,"amt":3853},"partialState":{"h":1,"t":6,"tokens":[5000,7853,3000,3871],"delegation":[4000,6853,2000,2871],"delegatorTokens":9999999990165}},{"ix":28,"action":{"kind":"Delegate","val":0,"amt":2948},"partialState":{"h":1,"t":6,"tokens":[7948,7853,3000,3871],"delegation":[6948,6853,2000,2871],"delegatorTokens":9999999987217}},{"ix":29,"action":{"kind":"Undelegate","val":3,"amt":1993},"partialState":{"h":1,"t":6,"tokens":[7948,7853,3000,1878],"delegation":[6948,6853,2000,878],"delegatorTokens":9999999987217}},{"ix":30,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":31,"action":{"kind":"Deliver","chain":"consumer","numPackets":5},"partialState":{"h":5,"t":30,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[true,false,true,true]}},{"ix":32,"action":{"kind":"Delegate","val":0,"amt":3175},"partialState":{"h":1,"t":6,"tokens":[11123,7853,3000,1878],"delegation":[10123,6853,2000,878],"delegatorTokens":9999999984042}},{"ix":33,"action":{"kind":"Deliver","chain":"provider","numPackets":3},"partialState":{"h":1,"t":6,"tokens":[11123,7853,3000,1878],"delegation":[10123,6853,2000,878],"delegatorTokens":9999999984042,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":34,"action":{"kind":"Undelegate","val":0,"amt":3917},"partialState":{"h":1,"t":6,"tokens":[7206,7853,3000,1878],"delegation":[6206,6853,2000,878],"delegatorTokens":9999999984042}},{"ix":35,"action":{"kind":"Undelegate","val":0,"amt":2273},"partialState":{"h":1,"t":6,"tokens":[4933,7853,3000,1878],"delegation":[3933,6853,2000,878],"delegatorTokens":9999999984042}},{"ix":36,"action":{"kind":"Deliver","chain":"consumer","numPackets":3},"partialState":{"h":5,"t":30,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[true,false,true,true]}},{"ix":37,"action":{"kind":"Undelegate","val":1,"amt":2474},"partialState":{"h":1,"t":6,"tokens":[4933,5379,3000,1878],"delegation":[3933,4379,2000,878],"delegatorTokens":9999999984042}},{"ix":38,"action":{"kind":"Undelegate","val":0,"amt":4457},"partialState":{"h":1,"t":6,"tokens":[4933,5379,3000,1878],"delegation":[3933,4379,2000,878],"delegatorTokens":9999999984042}},{"ix":39,"action":{"kind":"Deliver","chain":"consumer","numPackets":6},"partialState":{"h":5,"t":30,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[true,false,true,true]}},{"ix":40,"action":{"kind":"Undelegate","val":2,"amt":1409},"partialState":{"h":1,"t":6,"tokens":[4933,5379,1591,1878],"delegation":[3933,4379,591,878],"delegatorTokens":9999999984042}},{"ix":41,"action":{"kind":"Delegate","val":1,"amt":4714},"partialState":{"h":1,"t":6,"tokens":[4933,10093,1591,1878],"delegation":[3933,9093,591,878],"delegatorTokens":9999999979328}},{"ix":42,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":43,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":2,"t":12,"tokens":[4933,10093,1591,1878],"delegation":[3933,9093,591,878],"delegatorTokens":9999999979328,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":44,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":6,"t":36,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[true,false,true,true]}},{"ix":45,"action":{"kind":"Delegate","val":2,"amt":4051},"partialState":{"h":2,"t":12,"tokens":[4933,10093,5642,1878],"delegation":[3933,9093,4642,878],"delegatorTokens":9999999975277}},{"ix":46,"action":{"kind":"Undelegate","val":1,"amt":2832},"partialState":{"h":2,"t":12,"tokens":[4933,7261,5642,1878],"delegation":[3933,6261,4642,878],"delegatorTokens":9999999975277}},{"ix":47,"action":{"kind":"Delegate","val":3,"amt":3476},"partialState":{"h":2,"t":12,"tokens":[4933,7261,5642,5354],"delegation":[3933,6261,4642,4354],"delegatorTokens":9999999971801}},{"ix":48,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":3,"t":18,"tokens":[4933,7261,5642,5354],"delegation":[3933,6261,4642,4354],"delegatorTokens":9999999971801,"jailed":[null,null,null,null],"status":["unbonding","bonded","bonded","unbonded"]}},{"ix":49,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":50,"action":{"kind":"Deliver","chain":"provider","numPackets":3},"partialState":{"h":3,"t":18,"tokens":[4933,7261,5642,5354],"delegation":[3933,6261,4642,4354],"delegatorTokens":9999999971801,"jailed":[null,null,null,null],"status":["unbonding","bonded","bonded","unbonded"]}},{"ix":51,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":52,"action":{"kind":"Undelegate","val":0,"amt":4579},"partialState":{"h":3,"t":18,"tokens":[4933,7261,5642,5354],"delegation":[3933,6261,4642,4354],"delegatorTokens":9999999971801}},{"ix":53,"action":{"kind":"Undelegate","val":1,"amt":2173},"partialState":{"h":3,"t":18,"tokens":[4933,5088,5642,5354],"delegation":[3933,4088,4642,4354],"delegatorTokens":9999999971801}},{"ix":54,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":55,"action":{"kind":"Delegate","val":3,"amt":1786},"partialState":{"h":3,"t":18,"tokens":[4933,5088,5642,7140],"delegation":[3933,4088,4642,6140],"delegatorTokens":9999999970015}},{"ix":56,"action":{"kind":"Undelegate","val":3,"amt":2100},"partialState":{"h":3,"t":18,"tokens":[4933,5088,5642,5040],"delegation":[3933,4088,4642,4040],"delegatorTokens":9999999970015}},{"ix":57,"action":{"kind":"Delegate","val":3,"amt":4169},"partialState":{"h":3,"t":18,"tokens":[4933,5088,5642,9209],"delegation":[3933,4088,4642,8209],"delegatorTokens":9999999965846}},{"ix":58,"action":{"kind":"Undelegate","val":0,"amt":1478},"partialState":{"h":3,"t":18,"tokens":[3455,5088,5642,9209],"delegation":[2455,4088,4642,8209],"delegatorTokens":9999999965846}},{"ix":59,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":4,"t":24,"tokens":[3455,5088,5642,9209],"delegation":[2455,4088,4642,8209],"delegatorTokens":9999999965846,"jailed":[1000000000000017,null,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":60,"action":{"kind":"Delegate","val":3,"amt":1044},"partialState":{"h":4,"t":24,"tokens":[3455,5088,5642,10253],"delegation":[2455,4088,4642,9253],"delegatorTokens":9999999964802}},{"ix":61,"action":{"kind":"Deliver","chain":"provider","numPackets":2},"partialState":{"h":4,"t":24,"tokens":[3455,5088,5642,10253],"delegation":[2455,4088,4642,9253],"delegatorTokens":9999999964802,"jailed":[1000000000000017,null,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":62,"action":{"kind":"Deliver","chain":"consumer","numPackets":2},"partialState":{"h":6,"t":36,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[true,false,true,true]}},{"ix":63,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":64,"action":{"kind":"Undelegate","val":2,"amt":1454},"partialState":{"h":4,"t":24,"tokens":[3455,5088,4188,10253],"delegation":[2455,4088,3188,9253],"delegatorTokens":9999999964802}},{"ix":65,"action":{"kind":"Deliver","chain":"provider","numPackets":2},"partialState":{"h":4,"t":24,"tokens":[3455,5088,4188,10253],"delegation":[2455,4088,3188,9253],"delegatorTokens":9999999964802,"jailed":[1000000000000017,null,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":66,"action":{"kind":"Undelegate","val":1,"amt":4373},"partialState":{"h":4,"t":24,"tokens":[3455,5088,4188,10253],"delegation":[2455,4088,3188,9253],"delegatorTokens":9999999964802}},{"ix":67,"action":{"kind":"Delegate","val":3,"amt":3862},"partialState":{"h":4,"t":24,"tokens":[3455,5088,4188,14115],"delegation":[2455,4088,3188,13115],"delegatorTokens":9999999960940}},{"ix":68,"action":{"kind":"Deliver","chain":"consumer","numPackets":1},"partialState":{"h":6,"t":36,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[true,false,true,true]}},{"ix":69,"action":{"kind":"Delegate","val":2,"amt":2384},"partialState":{"h":4,"t":24,"tokens":[3455,5088,6572,14115],"delegation":[2455,4088,5572,13115],"delegatorTokens":9999999958556}},{"ix":70,"action":{"kind":"Deliver","chain":"consumer","numPackets":3},"partialState":{"h":6,"t":36,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[true,false,true,true]}},{"ix":71,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":72,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":73,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":7,"t":42,"consumerPower":[null,7261,5642,null],"outstandingDowntime":[true,false,true,true]}},{"ix":74,"action":{"kind":"Delegate","val":0,"amt":2730},"partialState":{"h":4,"t":24,"tokens":[6185,5088,6572,14115],"delegation":[5185,4088,5572,13115],"delegatorTokens":9999999955826}},{"ix":75,"action":{"kind":"Delegate","val":3,"amt":1801},"partialState":{"h":4,"t":24,"tokens":[6185,5088,6572,15916],"delegation":[5185,4088,5572,14916],"delegatorTokens":9999999954025}},{"ix":76,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":8,"t":48,"consumerPower":[null,7261,5642,null],"outstandingDowntime":[true,false,true,true]}},{"ix":77,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":5,"t":30,"tokens":[6185,5088,6572,15916],"delegation":[5185,4088,5572,14916],"delegatorTokens":9999999954025,"jailed":[1000000000000017,null,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":78,"action":{"kind":"Delegate","val":0,"amt":2925},"partialState":{"h":5,"t":30,"tokens":[9110,5088,6572,15916],"delegation":[8110,4088,5572,14916],"delegatorTokens":9999999951100}},{"ix":79,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":6,"t":36,"tokens":[9110,5088,6572,15916],"delegation":[8110,4088,5572,14916],"delegatorTokens":9999999951100,"jailed":[1000000000000017,null,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":80,"action":{"kind":"Delegate","val":2,"amt":1661},"partialState":{"h":6,"t":36,"tokens":[9110,5088,8233,15916],"delegation":[8110,4088,7233,14916],"delegatorTokens":9999999949439}},{"ix":81,"action":{"kind":"Undelegate","val":2,"amt":2139},"partialState":{"h":6,"t":36,"tokens":[9110,5088,6094,15916],"delegation":[8110,4088,5094,14916],"delegatorTokens":9999999949439}},{"ix":82,"action":{"kind":"Deliver","chain":"consumer","numPackets":4},"partialState":{"h":8,"t":48,"consumerPower":[null,7261,5642,null],"outstandingDowntime":[false,false,true,true]}},{"ix":83,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":84,"action":{"kind":"Delegate","val":2,"amt":1435},"partialState":{"h":6,"t":36,"tokens":[9110,5088,7529,15916],"delegation":[8110,4088,6529,14916],"delegatorTokens":9999999948004}},{"ix":85,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":9,"t":54,"consumerPower":[null,null,6572,15916],"outstandingDowntime":[false,false,true,true]}},{"ix":86,"action":{"kind":"Deliver","chain":"consumer","numPackets":1},"partialState":{"h":9,"t":54,"consumerPower":[null,null,6572,15916],"outstandingDowntime":[false,false,true,true]}},{"ix":87,"action":{"kind":"Delegate","val":1,"amt":4099},"partialState":{"h":6,"t":36,"tokens":[9110,9187,7529,15916],"delegation":[8110,8187,6529,14916],"delegatorTokens":9999999943905}},{"ix":88,"action":{"kind":"Delegate","val":0,"amt":4226},"partialState":{"h":6,"t":36,"tokens":[13336,9187,7529,15916],"delegation":[12336,8187,6529,14916],"delegatorTokens":9999999939679}},{"ix":89,"action":{"kind":"Deliver","chain":"consumer","numPackets":6},"partialState":{"h":9,"t":54,"consumerPower":[null,null,6572,15916],"outstandingDowntime":[false,false,true,true]}},{"ix":90,"action":{"kind":"Delegate","val":3,"amt":2099},"partialState":{"h":6,"t":36,"tokens":[13336,9187,7529,18015],"delegation":[12336,8187,6529,17015],"delegatorTokens":9999999937580}},{"ix":91,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":92,"action":{"kind":"Delegate","val":0,"amt":1263},"partialState":{"h":6,"t":36,"tokens":[14599,9187,7529,18015],"delegation":[13599,8187,6529,17015],"delegatorTokens":9999999936317}},{"ix":93,"action":{"kind":"Deliver","chain":"consumer","numPackets":3},"partialState":{"h":9,"t":54,"consumerPower":[null,null,6572,15916],"outstandingDowntime":[false,false,true,true]}},{"ix":94,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":95,"action":{"kind":"Undelegate","val":1,"amt":1775},"partialState":{"h":6,"t":36,"tokens":[14599,7412,7529,18015],"delegation":[13599,6412,6529,17015],"delegatorTokens":9999999936317}},{"ix":96,"action":{"kind":"Undelegate","val":2,"amt":2687},"partialState":{"h":6,"t":36,"tokens":[14599,7412,4842,18015],"delegation":[13599,6412,3842,17015],"delegatorTokens":9999999936317}},{"ix":97,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":98,"action":{"kind":"Deliver","chain":"consumer","numPackets":4},"partialState":{"h":9,"t":54,"consumerPower":[null,null,6572,15916],"outstandingDowntime":[false,false,true,true]}},{"ix":99,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":7,"t":42,"tokens":[14599,7412,4842,18015],"delegation":[13599,6412,3842,17015],"delegatorTokens":9999999936317,"jailed":[1000000000000017,null,null,null],"status":["unbonding","bonded","unbonding","bonded"]}},{"ix":100,"action":{"kind":"Delegate","val":1,"amt":2266},"partialState":{"h":7,"t":42,"tokens":[14599,9678,4842,18015],"delegation":[13599,8678,3842,17015],"delegatorTokens":9999999934051}},{"ix":101,"action":{"kind":"Deliver","chain":"consumer","numPackets":2},"partialState":{"h":9,"t":54,"consumerPower":[null,null,6572,15916],"outstandingDowntime":[false,false,true,true]}},{"ix":102,"action":{"kind":"Undelegate","val":3,"amt":2874},"partialState":{"h":7,"t":42,"tokens":[14599,9678,4842,15141],"delegation":[13599,8678,3842,14141],"delegatorTokens":9999999934051}},{"ix":103,"action":{"kind":"Deliver","chain":"provider","numPackets":1},"partialState":{"h":7,"t":42,"tokens":[14599,9678,4842,15141],"delegation":[13599,8678,3842,14141],"delegatorTokens":9999999934051,"jailed":[1000000000000017,null,null,null],"status":["unbonding","bonded","unbonding","bonded"]}},{"ix":104,"action":{"kind":"Undelegate","val":1,"amt":1763},"partialState":{"h":7,"t":42,"tokens":[14599,7915,4842,15141],"delegation":[13599,6915,3842,14141],"delegatorTokens":9999999934051}},{"ix":105,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":10,"t":60,"consumerPower":[null,null,6572,15916],"outstandingDowntime":[false,false,true,true]}},{"ix":106,"action":{"kind":"Undelegate","val":3,"amt":4931},"partialState":{"h":7,"t":42,"tokens":[14599,7915,4842,10210],"delegation":[13599,6915,3842,9210],"delegatorTokens":9999999934051}},{"ix":107,"action":{"kind":"Deliver","chain":"consumer","numPackets":4},"partialState":{"h":10,"t":60,"consumerPower":[null,null,6572,15916],"outstandingDowntime":[false,false,true,true]}},{"ix":108,"action":{"kind":"Delegate","val":2,"amt":1415},"partialState":{"h":7,"t":42,"tokens":[14599,7915,6257,10210],"delegation":[13599,6915,5257,9210],"delegatorTokens":9999999932636}},{"ix":109,"action":{"kind":"Deliver","chain":"provider","numPackets":1},"partialState":{"h":7,"t":42,"tokens":[14599,7915,6257,10210],"delegation":[13599,6915,5257,9210],"delegatorTokens":9999999932636,"jailed":[1000000000000017,null,null,null],"status":["unbonding","bonded","unbonding","bonded"]}},{"ix":110,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":111,"action":{"kind":"Delegate","val":3,"amt":1602},"partialState":{"h":7,"t":42,"tokens":[14599,7915,6257,11812],"delegation":[13599,6915,5257,10812],"delegatorTokens":9999999931034}},{"ix":112,"action":{"kind":"Undelegate","val":2,"amt":3354},"partialState":{"h":7,"t":42,"tokens":[14599,7915,2903,11812],"delegation":[13599,6915,1903,10812],"delegatorTokens":9999999931034}},{"ix":113,"action":{"kind":"Undelegate","val":0,"amt":1031},"partialState":{"h":7,"t":42,"tokens":[13568,7915,2903,11812],"delegation":[12568,6915,1903,10812],"delegatorTokens":9999999931034}},{"ix":114,"action":{"kind":"Deliver","chain":"consumer","numPackets":6},"partialState":{"h":10,"t":60,"consumerPower":[null,null,6572,15916],"outstandingDowntime":[false,false,true,true]}},{"ix":115,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":8,"t":48,"tokens":[13568,7915,2903,11812],"delegation":[12568,6915,1903,10812],"delegatorTokens":9999999931034,"jailed":[1000000000000017,null,null,null],"status":["unbonding","bonded","unbonding","bonded"]}},{"ix":116,"action":{"kind":"Deliver","chain":"consumer","numPackets":4},"partialState":{"h":10,"t":60,"consumerPower":[null,null,6572,15916],"outstandingDowntime":[false,false,true,true]}},{"ix":117,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":118,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":9,"t":54,"tokens":[13568,7915,2903,11812],"delegation":[12568,6915,1903,10812],"delegatorTokens":9999999931034,"jailed":[1000000000000017,null,null,null],"status":["unbonding","bonded","unbonding","bonded"]}},{"ix":119,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":120,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":121,"action":{"kind":"Undelegate","val":3,"amt":4891},"partialState":{"h":9,"t":54,"tokens":[13568,7915,2903,6921],"delegation":[12568,6915,1903,5921],"delegatorTokens":9999999931034}},{"ix":122,"action":{"kind":"Deliver","chain":"provider","numPackets":4},"partialState":{"h":9,"t":54,"tokens":[13568,7915,2903,6921],"delegation":[12568,6915,1903,5921],"delegatorTokens":9999999931034,"jailed":[1000000000000017,null,null,null],"status":["unbonding","bonded","unbonding","bonded"]}},{"ix":123,"action":{"kind":"Undelegate","val":3,"amt":4648},"partialState":{"h":9,"t":54,"tokens":[13568,7915,2903,2273],"delegation":[12568,6915,1903,1273],"delegatorTokens":9999999931034}},{"ix":124,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":11,"t":66,"consumerPower":[null,7412,null,18015],"outstandingDowntime":[false,false,true,true]}},{"ix":125,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":126,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":127,"action":{"kind":"Delegate","val":1,"amt":4576},"partialState":{"h":9,"t":54,"tokens":[13568,12491,2903,2273],"delegation":[12568,11491,1903,1273],"delegatorTokens":9999999926458}},{"ix":128,"action":{"kind":"Deliver","chain":"provider","numPackets":3},"partialState":{"h":9,"t":54,"tokens":[13568,12491,2903,2273],"delegation":[12568,11491,1903,1273],"delegatorTokens":9999999926458,"jailed":[1000000000000017,null,null,null],"status":["unbonding","bonded","unbonding","bonded"]}},{"ix":129,"action":{"kind":"Deliver","chain":"consumer","numPackets":4},"partialState":{"h":11,"t":66,"consumerPower":[null,7412,null,18015],"outstandingDowntime":[false,false,true,true]}},{"ix":130,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":131,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":10,"t":60,"tokens":[13568,12491,2903,2273],"delegation":[12568,11491,1903,1273],"delegatorTokens":9999999926458,"jailed":[1000000000000017,null,null,null],"status":["unbonding","bonded","bonded","unbonding"]}},{"ix":132,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":133,"action":{"kind":"Undelegate","val":0,"amt":4082},"partialState":{"h":10,"t":60,"tokens":[9486,12491,2903,2273],"delegation":[8486,11491,1903,1273],"delegatorTokens":9999999926458}},{"ix":134,"action":{"kind":"Deliver","chain":"provider","numPackets":6},"partialState":{"h":10,"t":60,"tokens":[9486,12491,2903,2273],"delegation":[8486,11491,1903,1273],"delegatorTokens":9999999926458,"jailed":[1000000000000017,null,null,null],"status":["unbonding","bonded","bonded","unbonding"]}},{"ix":135,"action":{"kind":"Deliver","chain":"provider","numPackets":2},"partialState":{"h":10,"t":60,"tokens":[9486,12491,2903,2273],"delegation":[8486,11491,1903,1273],"delegatorTokens":9999999926458,"jailed":[1000000000000017,null,null,null],"status":["unbonding","bonded","bonded","unbonding"]}},{"ix":136,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":137,"action":{"kind":"Delegate","val":2,"amt":2010},"partialState":{"h":10,"t":60,"tokens":[9486,12491,4913,2273],"delegation":[8486,11491,3913,1273],"delegatorTokens":9999999924448}},{"ix":138,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":139,"action":{"kind":"Undelegate","val":0,"amt":3207},"partialState":{"h":10,"t":60,"tokens":[6279,12491,4913,2273],"delegation":[5279,11491,3913,1273],"delegatorTokens":9999999924448}},{"ix":140,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":141,"action":{"kind":"Delegate","val":2,"amt":1559},"partialState":{"h":10,"t":60,"tokens":[6279,12491,6472,2273],"delegation":[5279,11491,5472,1273],"delegatorTokens":9999999922889}},{"ix":142,"action":{"kind":"Undelegate","val":2,"amt":4679},"partialState":{"h":10,"t":60,"tokens":[6279,12491,1793,2273],"delegation":[5279,11491,793,1273],"delegatorTokens":9999999922889}},{"ix":143,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":12,"t":72,"consumerPower":[null,7915,null,11812],"outstandingDowntime":[false,false,true,true]}},{"ix":144,"action":{"kind":"Deliver","chain":"provider","numPackets":2},"partialState":{"h":10,"t":60,"tokens":[6279,12491,1793,2273],"delegation":[5279,11491,793,1273],"delegatorTokens":9999999922889,"jailed":[1000000000000017,null,null,null],"status":["unbonding","bonded","bonded","unbonding"]}},{"ix":145,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":146,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":13,"t":78,"consumerPower":[null,7915,null,11812],"outstandingDowntime":[false,false,true,true]}},{"ix":147,"action":{"kind":"Undelegate","val":2,"amt":2490},"partialState":{"h":10,"t":60,"tokens":[6279,12491,1793,2273],"delegation":[5279,11491,793,1273],"delegatorTokens":9999999922889}},{"ix":148,"action":{"kind":"Delegate","val":2,"amt":2882},"partialState":{"h":10,"t":60,"tokens":[6279,12491,4675,2273],"delegation":[5279,11491,3675,1273],"delegatorTokens":9999999920007}},{"ix":149,"action":{"kind":"Deliver","chain":"provider","numPackets":5},"partialState":{"h":10,"t":60,"tokens":[6279,12491,4675,2273],"delegation":[5279,11491,3675,1273],"delegatorTokens":9999999920007,"jailed":[1000000000000017,null,null,null],"status":["unbonding","bonded","bonded","unbonding"]}},{"ix":150,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":151,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":152,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":11,"t":66,"tokens":[6279,12491,4675,2273],"delegation":[5279,11491,3675,1273],"delegatorTokens":9999999920007,"jailed":[1000000000000017,null,null,null],"status":["unbonding","bonded","bonded","unbonding"]}},{"ix":153,"action":{"kind":"Delegate","val":1,"amt":4114},"partialState":{"h":11,"t":66,"tokens":[6279,16605,4675,2273],"delegation":[5279,15605,3675,1273],"delegatorTokens":9999999915893}},{"ix":154,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":12,"t":72,"tokens":[6279,16605,4675,2273],"delegation":[5279,15605,3675,1273],"delegatorTokens":9999999915893,"jailed":[1000000000000017,null,null,null],"status":["unbonding","bonded","bonded","unbonding"]}},{"ix":155,"action":{"kind":"Delegate","val":0,"amt":2183},"partialState":{"h":12,"t":72,"tokens":[8462,16605,4675,2273],"delegation":[7462,15605,3675,1273],"delegatorTokens":9999999913710}},{"ix":156,"action":{"kind":"Delegate","val":0,"amt":1706},"partialState":{"h":12,"t":72,"tokens":[10168,16605,4675,2273],"delegation":[9168,15605,3675,1273],"delegatorTokens":9999999912004}},{"ix":157,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":13,"t":78,"tokens":[10168,16605,4675,2273],"delegation":[9168,15605,3675,1273],"delegatorTokens":9999999912004,"jailed":[1000000000000017,null,null,null],"status":["unbonding","bonded","bonded","unbonding"]}},{"ix":158,"action":{"kind":"Undelegate","val":3,"amt":2658},"partialState":{"h":13,"t":78,"tokens":[10168,16605,4675,2273],"delegation":[9168,15605,3675,1273],"delegatorTokens":9999999912004}},{"ix":159,"action":{"kind":"Deliver","chain":"consumer","numPackets":6},"partialState":{"h":13,"t":78,"consumerPower":[null,7915,null,11812],"outstandingDowntime":[false,false,true,true]}},{"ix":160,"action":{"kind":"Deliver","chain":"provider","numPackets":6},"partialState":{"h":13,"t":78,"tokens":[10168,16605,4675,2273],"delegation":[9168,15605,3675,1273],"delegatorTokens":9999999912004,"jailed":[1000000000000017,null,null,null],"status":["unbonding","bonded","bonded","unbonding"]}},{"ix":161,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":14,"t":84,"tokens":[10168,16605,4675,2273],"delegation":[9168,15605,3675,1273],"delegatorTokens":9999999912004,"jailed":[1000000000000017,null,null,null],"status":["unbonding","bonded","bonded","unbonding"]}},{"ix":162,"action":{"kind":"Deliver","chain":"provider","numPackets":3},"partialState":{"h":14,"t":84,"tokens":[10168,16605,4675,2273],"delegation":[9168,15605,3675,1273],"delegatorTokens":9999999912004,"jailed":[1000000000000017,null,null,null],"status":["unbonding","bonded","bonded","unbonding"]}},{"ix":163,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":14,"t":84,"consumerPower":[null,16605,4675,null],"outstandingDowntime":[false,false,true,true]}},{"ix":164,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":165,"action":{"kind":"Delegate","val":0,"amt":2348},"partialState":{"h":14,"t":84,"tokens":[12516,16605,4675,2273],"delegation":[11516,15605,3675,1273],"delegatorTokens":9999999909656}},{"ix":166,"action":{"kind":"Undelegate","val":0,"amt":1149},"partialState":{"h":14,"t":84,"tokens":[11367,16605,4675,2273],"delegation":[10367,15605,3675,1273],"delegatorTokens":9999999909656}},{"ix":167,"action":{"kind":"Delegate","val":3,"amt":2105},"partialState":{"h":14,"t":84,"tokens":[11367,16605,4675,4378],"delegation":[10367,15605,3675,3378],"delegatorTokens":9999999907551}},{"ix":168,"action":{"kind":"Undelegate","val":0,"amt":3772},"partialState":{"h":14,"t":84,"tokens":[7595,16605,4675,4378],"delegation":[6595,15605,3675,3378],"delegatorTokens":9999999907551}},{"ix":169,"action":{"kind":"Deliver","chain":"provider","numPackets":3},"partialState":{"h":14,"t":84,"tokens":[7595,16605,4675,4378],"delegation":[6595,15605,3675,3378],"delegatorTokens":9999999907551,"jailed":[1000000000000017,null,null,null],"status":["unbonding","bonded","bonded","unbonding"]}},{"ix":170,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":15,"t":90,"tokens":[7595,16605,4675,4378],"delegation":[6595,15605,3675,3378],"delegatorTokens":9999999907551,"jailed":[1000000000000017,null,null,null],"status":["unbonding","bonded","bonded","unbonding"]}},{"ix":171,"action":{"kind":"Delegate","val":0,"amt":3962},"partialState":{"h":15,"t":90,"tokens":[11557,16605,4675,4378],"delegation":[10557,15605,3675,3378],"delegatorTokens":9999999903589}},{"ix":172,"action":{"kind":"Deliver","chain":"consumer","numPackets":5},"partialState":{"h":14,"t":84,"consumerPower":[null,16605,4675,null],"outstandingDowntime":[false,false,true,true]}},{"ix":173,"action":{"kind":"Delegate","val":2,"amt":3183},"partialState":{"h":15,"t":90,"tokens":[11557,16605,7858,4378],"delegation":[10557,15605,6858,3378],"delegatorTokens":9999999900406}},{"ix":174,"action":{"kind":"Delegate","val":2,"amt":1120},"partialState":{"h":15,"t":90,"tokens":[11557,16605,8978,4378],"delegation":[10557,15605,7978,3378],"delegatorTokens":9999999899286}},{"ix":175,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":16,"t":96,"tokens":[11557,16605,8978,4378],"delegation":[10557,15605,7978,3378],"delegatorTokens":9999999899286,"jailed":[1000000000000017,null,null,null],"status":["unbonding","bonded","bonded","unbonding"]}},{"ix":176,"action":{"kind":"Undelegate","val":3,"amt":4990},"partialState":{"h":16,"t":96,"tokens":[11557,16605,8978,4378],"delegation":[10557,15605,7978,3378],"delegatorTokens":9999999899286}},{"ix":177,"action":{"kind":"Undelegate","val":1,"amt":2850},"partialState":{"h":16,"t":96,"tokens":[11557,13755,8978,4378],"delegation":[10557,12755,7978,3378],"delegatorTokens":9999999899286}},{"ix":178,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":179,"action":{"kind":"Delegate","val":2,"amt":2540},"partialState":{"h":16,"t":96,"tokens":[11557,13755,11518,4378],"delegation":[10557,12755,10518,3378],"delegatorTokens":9999999896746}},{"ix":180,"action":{"kind":"Deliver","chain":"provider","numPackets":6},"partialState":{"h":16,"t":96,"tokens":[11557,13755,11518,4378],"delegation":[10557,12755,10518,3378],"delegatorTokens":9999999896746,"jailed":[1000000000000017,null,null,null],"status":["unbonding","bonded","bonded","unbonding"]}},{"ix":181,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":182,"action":{"kind":"Delegate","val":3,"amt":4294},"partialState":{"h":16,"t":96,"tokens":[11557,13755,11518,8672],"delegation":[10557,12755,10518,7672],"delegatorTokens":9999999892452}},{"ix":183,"action":{"kind":"Deliver","chain":"consumer","numPackets":3},"partialState":{"h":14,"t":84,"consumerPower":[null,16605,4675,null],"outstandingDowntime":[false,false,true,true]}},{"ix":184,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":15,"t":90,"consumerPower":[null,16605,4675,null],"outstandingDowntime":[false,false,true,true]}},{"ix":185,"action":{"kind":"Deliver","chain":"consumer","numPackets":4},"partialState":{"h":15,"t":90,"consumerPower":[null,16605,4675,null],"outstandingDowntime":[false,false,true,true]}},{"ix":186,"action":{"kind":"Undelegate","val":0,"amt":3052},"partialState":{"h":16,"t":96,"tokens":[8505,13755,11518,8672],"delegation":[7505,12755,10518,7672],"delegatorTokens":9999999892452}},{"ix":187,"action":{"kind":"Deliver","chain":"consumer","numPackets":1},"partialState":{"h":15,"t":90,"consumerPower":[null,16605,4675,null],"outstandingDowntime":[false,false,true,true]}},{"ix":188,"action":{"kind":"Delegate","val":2,"amt":2109},"partialState":{"h":16,"t":96,"tokens":[8505,13755,13627,8672],"delegation":[7505,12755,12627,7672],"delegatorTokens":9999999890343}},{"ix":189,"action":{"kind":"Delegate","val":0,"amt":1163},"partialState":{"h":16,"t":96,"tokens":[9668,13755,13627,8672],"delegation":[8668,12755,12627,7672],"delegatorTokens":9999999889180}},{"ix":190,"action":{"kind":"Undelegate","val":1,"amt":3789},"partialState":{"h":16,"t":96,"tokens":[9668,9966,13627,8672],"delegation":[8668,8966,12627,7672],"delegatorTokens":9999999889180}},{"ix":191,"action":{"kind":"Undelegate","val":2,"amt":1930},"partialState":{"h":16,"t":96,"tokens":[9668,9966,11697,8672],"delegation":[8668,8966,10697,7672],"delegatorTokens":9999999889180}},{"ix":192,"action":{"kind":"Delegate","val":3,"amt":4069},"partialState":{"h":16,"t":96,"tokens":[9668,9966,11697,12741],"delegation":[8668,8966,10697,11741],"delegatorTokens":9999999885111}},{"ix":193,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":17,"t":102,"tokens":[9668,9966,11697,12741],"delegation":[8668,8966,10697,11741],"delegatorTokens":9999999885111,"jailed":[1000000000000017,null,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":194,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":195,"action":{"kind":"Undelegate","val":3,"amt":4943},"partialState":{"h":17,"t":102,"tokens":[9668,9966,11697,7798],"delegation":[8668,8966,10697,6798],"delegatorTokens":9999999885111}},{"ix":196,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":18,"t":108,"tokens":[9668,9966,11697,7798],"delegation":[8668,8966,10697,6798],"delegatorTokens":9999999885111,"jailed":[1000000000000017,null,null,null],"status":["unbonding","bonded","bonded","unbonding"]}},{"ix":197,"action":{"kind":"Delegate","val":0,"amt":2881},"partialState":{"h":18,"t":108,"tokens":[12549,9966,11697,7798],"delegation":[11549,8966,10697,6798],"delegatorTokens":9999999882230}},{"ix":198,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":199,"action":{"kind":"Deliver","chain":"provider","numPackets":4},"partialState":{"h":18,"t":108,"tokens":[12549,9966,11697,7798],"delegation":[11549,8966,10697,6798],"delegatorTokens":9999999882230,"jailed":[1000000000000017,null,null,null],"status":["unbonding","bonded","bonded","unbonding"]}}],"events":["send_double_sign_slash_request","insufficient_shares","insufficient_shares","send_downtime_slash_request","downtime_slash_request_outstanding","send_downtime_slash_request","downtime_slash_request_outstanding","send_downtime_slash_request","insufficient_shares","insufficient_shares","insufficient_shares","receive_double_sign_slash_request","insufficient_shares","receive_slash_request_unbonded","receive_slash_request_unbonded","send_vsc_without_downtime_ack","more_than_one_third_val_power_change","send_vsc_without_downtime_ack","insufficient_shares","more_than_one_third_val_power_change","receive_downtime_slash_request","jail","send_vsc_with_downtime_ack","insufficient_shares","consumer_del_val","consumer_update_val","consumer_add_val","send_vsc_without_downtime_ack","receive_downtime_slash_ack","consumer_del_val","consumer_add_val","consumer_update_val","rebond_unval","send_vsc_without_downtime_ack","send_vsc_without_downtime_ack","consumer_add_val","consumer_del_val","consumer_update_val","rebond_unval","send_vsc_without_downtime_ack","consumer_update_val","consumer_update_val","insufficient_shares","send_vsc_without_downtime_ack","send_vsc_without_downtime_ack","insufficient_shares","some_undels_expired_but_not_completed","consumer_update_val","consumer_add_val","consumer_del_val","some_undels_expired_but_not_completed","send_vsc_not_because_change","send_vsc_without_downtime_ack","some_undels_expired_but_not_completed","send_vsc_without_downtime_ack","insufficient_shares","more_than_one_third_val_power_change","rebond_unval","some_undels_expired_but_not_completed","send_vsc_without_downtime_ack","more_than_one_third_val_power_change","rebond_unval","send_vsc_without_downtime_ack"]},{"meta":{"commit":"7ffd0c04e4205cbc9caf212abfe6c59ee43153bf"},"constants":{"P":"provider","C":"consumer","UNBONDING_SECONDS_P":70,"UNBONDING_SECONDS_C":50,"TRUSTING_SECONDS":49,"NUM_VALIDATORS":4,"MAX_VALIDATORS":2,"SLASH_DOUBLESIGN":0,"SLASH_DOWNTIME":0,"JAIL_SECONDS":999999999999999,"BLOCK_SECONDS":6,"INITIAL_DELEGATOR_TOKENS":10000000000000,"DELEGATE_AMT_MIN":1000,"DELEGATE_AMT_MAX":5000,"UNDELEGATE_AMT_MIN":1000,"UNDELEGATE_AMT_MAX":5000,"ISDOWNTIME_PROBABILITY":0.5,"MAX_NUM_PACKETS_FOR_DELIVER":6},"actions":[{"ix":0,"action":{"kind":"ConsumerSlash","val":3,"infractionHeight":0,"isDowntime":true},"partialState":{"h":1,"t":6,"outstandingDowntime":[false,false,false,true]}},{"ix":1,"action":{"kind":"Delegate","val":1,"amt":4463},"partialState":{"h":1,"t":6,"tokens":[5000,8463,3000,2000],"delegation":[4000,7463,2000,1000],"delegatorTokens":9999999995537}},{"ix":2,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":2,"t":12,"tokens":[5000,8463,3000,2000],"delegation":[4000,7463,2000,1000],"delegatorTokens":9999999995537,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":3,"action":{"kind":"Delegate","val":1,"amt":3851},"partialState":{"h":2,"t":12,"tokens":[5000,12314,3000,2000],"delegation":[4000,11314,2000,1000],"delegatorTokens":9999999991686}},{"ix":4,"action":{"kind":"ConsumerSlash","val":3,"infractionHeight":0,"isDowntime":true},"partialState":{"h":1,"t":6,"outstandingDowntime":[false,false,false,true]}},{"ix":5,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":6,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":7,"action":{"kind":"Deliver","chain":"provider","numPackets":5},"partialState":{"h":2,"t":12,"tokens":[5000,12314,3000,2000],"delegation":[4000,11314,2000,1000],"delegatorTokens":9999999991686,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":8,"action":{"kind":"Delegate","val":1,"amt":3922},"partialState":{"h":2,"t":12,"tokens":[5000,16236,3000,2000],"delegation":[4000,15236,2000,1000],"delegatorTokens":9999999987764}},{"ix":9,"action":{"kind":"Deliver","chain":"consumer","numPackets":2},"partialState":{"h":1,"t":6,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,false,false,true]}},{"ix":10,"action":{"kind":"Undelegate","val":2,"amt":2588},"partialState":{"h":2,"t":12,"tokens":[5000,16236,3000,2000],"delegation":[4000,15236,2000,1000],"delegatorTokens":9999999987764}},{"ix":11,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":2,"t":12,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,false,false,true]}},{"ix":12,"action":{"kind":"Undelegate","val":0,"amt":1150},"partialState":{"h":2,"t":12,"tokens":[3850,16236,3000,2000],"delegation":[2850,15236,2000,1000],"delegatorTokens":9999999987764}},{"ix":13,"action":{"kind":"ConsumerSlash","val":0,"infractionHeight":0,"isDowntime":true},"partialState":{"h":2,"t":12,"outstandingDowntime":[true,false,false,true]}},{"ix":14,"action":{"kind":"Undelegate","val":2,"amt":1752},"partialState":{"h":2,"t":12,"tokens":[3850,16236,1248,2000],"delegation":[2850,15236,248,1000],"delegatorTokens":9999999987764}},{"ix":15,"action":{"kind":"Undelegate","val":0,"amt":1906},"partialState":{"h":2,"t":12,"tokens":[1944,16236,1248,2000],"delegation":[944,15236,248,1000],"delegatorTokens":9999999987764}},{"ix":16,"action":{"kind":"Undelegate","val":2,"amt":1804},"partialState":{"h":2,"t":12,"tokens":[1944,16236,1248,2000],"delegation":[944,15236,248,1000],"delegatorTokens":9999999987764}},{"ix":17,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":18,"action":{"kind":"Deliver","chain":"consumer","numPackets":6},"partialState":{"h":2,"t":12,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[true,false,false,true]}},{"ix":19,"action":{"kind":"Delegate","val":0,"amt":2720},"partialState":{"h":2,"t":12,"tokens":[4664,16236,1248,2000],"delegation":[3664,15236,248,1000],"delegatorTokens":9999999985044}},{"ix":20,"action":{"kind":"Delegate","val":0,"amt":3339},"partialState":{"h":2,"t":12,"tokens":[8003,16236,1248,2000],"delegation":[7003,15236,248,1000],"delegatorTokens":9999999981705}},{"ix":21,"action":{"kind":"Deliver","chain":"provider","numPackets":5},"partialState":{"h":2,"t":12,"tokens":[8003,16236,1248,2000],"delegation":[7003,15236,248,1000],"delegatorTokens":9999999981705,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":22,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":3,"t":18,"tokens":[8003,16236,1248,2000],"delegation":[7003,15236,248,1000],"delegatorTokens":9999999981705,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":23,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":24,"action":{"kind":"Undelegate","val":1,"amt":3564},"partialState":{"h":3,"t":18,"tokens":[8003,12672,1248,2000],"delegation":[7003,11672,248,1000],"delegatorTokens":9999999981705}},{"ix":25,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":3,"t":18,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[true,false,false,true]}},{"ix":26,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":4,"t":24,"tokens":[8003,12672,1248,2000],"delegation":[7003,11672,248,1000],"delegatorTokens":9999999981705,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":27,"action":{"kind":"Deliver","chain":"consumer","numPackets":3},"partialState":{"h":3,"t":18,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[true,false,false,true]}},{"ix":28,"action":{"kind":"Undelegate","val":2,"amt":2009},"partialState":{"h":4,"t":24,"tokens":[8003,12672,1248,2000],"delegation":[7003,11672,248,1000],"delegatorTokens":9999999981705}},{"ix":29,"action":{"kind":"ConsumerSlash","val":3,"infractionHeight":0,"isDowntime":true},"partialState":{"h":3,"t":18,"outstandingDowntime":[true,false,false,true]}},{"ix":30,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":31,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":4,"t":24,"consumerPower":[8003,16236,null,null],"outstandingDowntime":[true,false,false,true]}},{"ix":32,"action":{"kind":"ConsumerSlash","val":2,"infractionHeight":3,"isDowntime":true},"partialState":{"h":4,"t":24,"outstandingDowntime":[true,false,true,true]}},{"ix":33,"action":{"kind":"Deliver","chain":"provider","numPackets":1},"partialState":{"h":4,"t":24,"tokens":[8003,12672,1248,2000],"delegation":[7003,11672,248,1000],"delegatorTokens":9999999981705,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":34,"action":{"kind":"Delegate","val":1,"amt":3870},"partialState":{"h":4,"t":24,"tokens":[8003,16542,1248,2000],"delegation":[7003,15542,248,1000],"delegatorTokens":9999999977835}},{"ix":35,"action":{"kind":"Deliver","chain":"consumer","numPackets":6},"partialState":{"h":4,"t":24,"consumerPower":[8003,16236,null,null],"outstandingDowntime":[true,false,true,true]}},{"ix":36,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":37,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":5,"t":30,"consumerPower":[8003,16236,null,null],"outstandingDowntime":[true,false,true,true]}},{"ix":38,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":6,"t":36,"consumerPower":[8003,16236,null,null],"outstandingDowntime":[true,false,true,true]}},{"ix":39,"action":{"kind":"Deliver","chain":"provider","numPackets":5},"partialState":{"h":4,"t":24,"tokens":[8003,16542,1248,2000],"delegation":[7003,15542,248,1000],"delegatorTokens":9999999977835,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":40,"action":{"kind":"Deliver","chain":"provider","numPackets":5},"partialState":{"h":4,"t":24,"tokens":[8003,16542,1248,2000],"delegation":[7003,15542,248,1000],"delegatorTokens":9999999977835,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":41,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":5,"t":30,"tokens":[8003,16542,1248,2000],"delegation":[7003,15542,248,1000],"delegatorTokens":9999999977835,"jailed":[1000000000000023,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":42,"action":{"kind":"Deliver","chain":"consumer","numPackets":2},"partialState":{"h":6,"t":36,"consumerPower":[8003,16236,null,null],"outstandingDowntime":[true,false,true,true]}},{"ix":43,"action":{"kind":"Undelegate","val":1,"amt":3282},"partialState":{"h":5,"t":30,"tokens":[8003,13260,1248,2000],"delegation":[7003,12260,248,1000],"delegatorTokens":9999999977835}},{"ix":44,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":7,"t":42,"consumerPower":[8003,12672,null,null],"outstandingDowntime":[true,false,true,true]}},{"ix":45,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":6,"t":36,"tokens":[8003,13260,1248,2000],"delegation":[7003,12260,248,1000],"delegatorTokens":9999999977835,"jailed":[1000000000000023,null,null,null],"status":["unbonding","bonded","unbonded","bonded"]}},{"ix":46,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":7,"t":42,"tokens":[8003,13260,1248,2000],"delegation":[7003,12260,248,1000],"delegatorTokens":9999999977835,"jailed":[1000000000000023,null,null,null],"status":["unbonding","bonded","unbonded","bonded"]}},{"ix":47,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":48,"action":{"kind":"Deliver","chain":"consumer","numPackets":2},"partialState":{"h":7,"t":42,"consumerPower":[8003,12672,null,null],"outstandingDowntime":[false,false,true,true]}},{"ix":49,"action":{"kind":"Undelegate","val":3,"amt":1008},"partialState":{"h":7,"t":42,"tokens":[8003,13260,1248,2000],"delegation":[7003,12260,248,1000],"delegatorTokens":9999999977835}},{"ix":50,"action":{"kind":"Undelegate","val":3,"amt":1335},"partialState":{"h":7,"t":42,"tokens":[8003,13260,1248,2000],"delegation":[7003,12260,248,1000],"delegatorTokens":9999999977835}},{"ix":51,"action":{"kind":"Delegate","val":1,"amt":4749},"partialState":{"h":7,"t":42,"tokens":[8003,18009,1248,2000],"delegation":[7003,17009,248,1000],"delegatorTokens":9999999973086}},{"ix":52,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":8,"t":48,"tokens":[8003,18009,1248,2000],"delegation":[7003,17009,248,1000],"delegatorTokens":9999999973086,"jailed":[1000000000000023,null,null,null],"status":["unbonding","bonded","unbonded","bonded"]}},{"ix":53,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":8,"t":48,"consumerPower":[null,13260,null,2000],"outstandingDowntime":[false,false,true,true]}},{"ix":54,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":55,"action":{"kind":"Undelegate","val":2,"amt":3368},"partialState":{"h":8,"t":48,"tokens":[8003,18009,1248,2000],"delegation":[7003,17009,248,1000],"delegatorTokens":9999999973086}},{"ix":56,"action":{"kind":"Undelegate","val":2,"amt":1914},"partialState":{"h":8,"t":48,"tokens":[8003,18009,1248,2000],"delegation":[7003,17009,248,1000],"delegatorTokens":9999999973086}},{"ix":57,"action":{"kind":"Deliver","chain":"consumer","numPackets":2},"partialState":{"h":8,"t":48,"consumerPower":[null,13260,null,2000],"outstandingDowntime":[false,false,true,true]}},{"ix":58,"action":{"kind":"Delegate","val":2,"amt":4477},"partialState":{"h":8,"t":48,"tokens":[8003,18009,5725,2000],"delegation":[7003,17009,4725,1000],"delegatorTokens":9999999968609}},{"ix":59,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":9,"t":54,"consumerPower":[null,13260,null,2000],"outstandingDowntime":[false,false,true,true]}},{"ix":60,"action":{"kind":"Undelegate","val":3,"amt":3105},"partialState":{"h":8,"t":48,"tokens":[8003,18009,5725,2000],"delegation":[7003,17009,4725,1000],"delegatorTokens":9999999968609}},{"ix":61,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":10,"t":60,"consumerPower":[null,13260,null,2000],"outstandingDowntime":[false,false,true,true]}},{"ix":62,"action":{"kind":"Deliver","chain":"provider","numPackets":2},"partialState":{"h":8,"t":48,"tokens":[8003,18009,5725,2000],"delegation":[7003,17009,4725,1000],"delegatorTokens":9999999968609,"jailed":[1000000000000023,null,null,null],"status":["unbonding","bonded","unbonded","bonded"]}},{"ix":63,"action":{"kind":"Undelegate","val":2,"amt":4368},"partialState":{"h":8,"t":48,"tokens":[8003,18009,1357,2000],"delegation":[7003,17009,357,1000],"delegatorTokens":9999999968609}},{"ix":64,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":65,"action":{"kind":"Deliver","chain":"provider","numPackets":5},"partialState":{"h":8,"t":48,"tokens":[8003,18009,1357,2000],"delegation":[7003,17009,357,1000],"delegatorTokens":9999999968609,"jailed":[1000000000000023,null,null,null],"status":["unbonding","bonded","unbonded","bonded"]}},{"ix":66,"action":{"kind":"Deliver","chain":"consumer","numPackets":6},"partialState":{"h":10,"t":60,"consumerPower":[null,13260,null,2000],"outstandingDowntime":[false,false,true,true]}},{"ix":67,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":68,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":9,"t":54,"tokens":[8003,18009,1357,2000],"delegation":[7003,17009,357,1000],"delegatorTokens":9999999968609,"jailed":[1000000000000023,null,null,null],"status":["unbonding","bonded","unbonded","bonded"]}},{"ix":69,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":70,"action":{"kind":"Delegate","val":2,"amt":4548},"partialState":{"h":9,"t":54,"tokens":[8003,18009,5905,2000],"delegation":[7003,17009,4905,1000],"delegatorTokens":9999999964061}},{"ix":71,"action":{"kind":"Deliver","chain":"provider","numPackets":2},"partialState":{"h":9,"t":54,"tokens":[8003,18009,5905,2000],"delegation":[7003,17009,4905,1000],"delegatorTokens":9999999964061,"jailed":[1000000000000023,null,null,null],"status":["unbonding","bonded","unbonded","bonded"]}},{"ix":72,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":10,"t":60,"tokens":[8003,18009,5905,2000],"delegation":[7003,17009,4905,1000],"delegatorTokens":9999999964061,"jailed":[1000000000000023,null,null,null],"status":["unbonding","bonded","bonded","unbonding"]}},{"ix":73,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":74,"action":{"kind":"Delegate","val":3,"amt":1990},"partialState":{"h":10,"t":60,"tokens":[8003,18009,5905,3990],"delegation":[7003,17009,4905,2990],"delegatorTokens":9999999962071}},{"ix":75,"action":{"kind":"Undelegate","val":2,"amt":1189},"partialState":{"h":10,"t":60,"tokens":[8003,18009,4716,3990],"delegation":[7003,17009,3716,2990],"delegatorTokens":9999999962071}},{"ix":76,"action":{"kind":"Undelegate","val":2,"amt":4962},"partialState":{"h":10,"t":60,"tokens":[8003,18009,4716,3990],"delegation":[7003,17009,3716,2990],"delegatorTokens":9999999962071}},{"ix":77,"action":{"kind":"Undelegate","val":3,"amt":3196},"partialState":{"h":10,"t":60,"tokens":[8003,18009,4716,3990],"delegation":[7003,17009,3716,2990],"delegatorTokens":9999999962071}},{"ix":78,"action":{"kind":"Deliver","chain":"provider","numPackets":3},"partialState":{"h":10,"t":60,"tokens":[8003,18009,4716,3990],"delegation":[7003,17009,3716,2990],"delegatorTokens":9999999962071,"jailed":[1000000000000023,null,null,null],"status":["unbonding","bonded","bonded","unbonding"]}},{"ix":79,"action":{"kind":"Delegate","val":0,"amt":4231},"partialState":{"h":10,"t":60,"tokens":[12234,18009,4716,3990],"delegation":[11234,17009,3716,2990],"delegatorTokens":9999999957840}},{"ix":80,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":11,"t":66,"consumerPower":[null,13260,null,2000],"outstandingDowntime":[false,false,true,true]}},{"ix":81,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":82,"action":{"kind":"Deliver","chain":"provider","numPackets":6},"partialState":{"h":10,"t":60,"tokens":[12234,18009,4716,3990],"delegation":[11234,17009,3716,2990],"delegatorTokens":9999999957840,"jailed":[1000000000000023,null,null,null],"status":["unbonding","bonded","bonded","unbonding"]}},{"ix":83,"action":{"kind":"Undelegate","val":3,"amt":2984},"partialState":{"h":10,"t":60,"tokens":[12234,18009,4716,1006],"delegation":[11234,17009,3716,6],"delegatorTokens":9999999957840}},{"ix":84,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":85,"action":{"kind":"Deliver","chain":"consumer","numPackets":4},"partialState":{"h":11,"t":66,"consumerPower":[null,13260,null,2000],"outstandingDowntime":[false,false,true,true]}},{"ix":86,"action":{"kind":"Undelegate","val":2,"amt":1994},"partialState":{"h":10,"t":60,"tokens":[12234,18009,2722,1006],"delegation":[11234,17009,1722,6],"delegatorTokens":9999999957840}},{"ix":87,"action":{"kind":"Undelegate","val":0,"amt":2033},"partialState":{"h":10,"t":60,"tokens":[10201,18009,2722,1006],"delegation":[9201,17009,1722,6],"delegatorTokens":9999999957840}},{"ix":88,"action":{"kind":"Undelegate","val":2,"amt":2980},"partialState":{"h":10,"t":60,"tokens":[10201,18009,2722,1006],"delegation":[9201,17009,1722,6],"delegatorTokens":9999999957840}},{"ix":89,"action":{"kind":"Delegate","val":3,"amt":1189},"partialState":{"h":10,"t":60,"tokens":[10201,18009,2722,2195],"delegation":[9201,17009,1722,1195],"delegatorTokens":9999999956651}},{"ix":90,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":91,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":92,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":93,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":11,"t":66,"tokens":[10201,18009,2722,2195],"delegation":[9201,17009,1722,1195],"delegatorTokens":9999999956651,"jailed":[1000000000000023,null,null,null],"status":["unbonding","bonded","bonded","unbonding"]}},{"ix":94,"action":{"kind":"Deliver","chain":"provider","numPackets":2},"partialState":{"h":11,"t":66,"tokens":[10201,18009,2722,2195],"delegation":[9201,17009,1722,1195],"delegatorTokens":9999999956651,"jailed":[1000000000000023,null,null,null],"status":["unbonding","bonded","bonded","unbonding"]}},{"ix":95,"action":{"kind":"Undelegate","val":3,"amt":4009},"partialState":{"h":11,"t":66,"tokens":[10201,18009,2722,2195],"delegation":[9201,17009,1722,1195],"delegatorTokens":9999999956651}},{"ix":96,"action":{"kind":"Deliver","chain":"provider","numPackets":5},"partialState":{"h":11,"t":66,"tokens":[10201,18009,2722,2195],"delegation":[9201,17009,1722,1195],"delegatorTokens":9999999956651,"jailed":[1000000000000023,null,null,null],"status":["unbonding","bonded","bonded","unbonding"]}},{"ix":97,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":12,"t":72,"consumerPower":[null,18009,null,2000],"outstandingDowntime":[false,false,true,true]}},{"ix":98,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":99,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":100,"action":{"kind":"Deliver","chain":"provider","numPackets":3},"partialState":{"h":11,"t":66,"tokens":[10201,18009,2722,2195],"delegation":[9201,17009,1722,1195],"delegatorTokens":9999999956651,"jailed":[1000000000000023,null,null,null],"status":["unbonding","bonded","bonded","unbonding"]}},{"ix":101,"action":{"kind":"Delegate","val":0,"amt":1455},"partialState":{"h":11,"t":66,"tokens":[11656,18009,2722,2195],"delegation":[10656,17009,1722,1195],"delegatorTokens":9999999955196}},{"ix":102,"action":{"kind":"Undelegate","val":3,"amt":2024},"partialState":{"h":11,"t":66,"tokens":[11656,18009,2722,2195],"delegation":[10656,17009,1722,1195],"delegatorTokens":9999999955196}},{"ix":103,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":104,"action":{"kind":"Delegate","val":3,"amt":2658},"partialState":{"h":11,"t":66,"tokens":[11656,18009,2722,4853],"delegation":[10656,17009,1722,3853],"delegatorTokens":9999999952538}},{"ix":105,"action":{"kind":"Undelegate","val":0,"amt":3643},"partialState":{"h":11,"t":66,"tokens":[8013,18009,2722,4853],"delegation":[7013,17009,1722,3853],"delegatorTokens":9999999952538}},{"ix":106,"action":{"kind":"Undelegate","val":3,"amt":1948},"partialState":{"h":11,"t":66,"tokens":[8013,18009,2722,2905],"delegation":[7013,17009,1722,1905],"delegatorTokens":9999999952538}},{"ix":107,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":12,"t":72,"tokens":[8013,18009,2722,2905],"delegation":[7013,17009,1722,1905],"delegatorTokens":9999999952538,"jailed":[1000000000000023,null,null,null],"status":["unbonding","bonded","unbonding","bonded"]}},{"ix":108,"action":{"kind":"Deliver","chain":"consumer","numPackets":4},"partialState":{"h":12,"t":72,"consumerPower":[null,18009,null,2000],"outstandingDowntime":[false,false,true,true]}},{"ix":109,"action":{"kind":"Undelegate","val":3,"amt":4675},"partialState":{"h":12,"t":72,"tokens":[8013,18009,2722,2905],"delegation":[7013,17009,1722,1905],"delegatorTokens":9999999952538}},{"ix":110,"action":{"kind":"Deliver","chain":"consumer","numPackets":1},"partialState":{"h":12,"t":72,"consumerPower":[null,18009,null,2000],"outstandingDowntime":[false,false,true,true]}},{"ix":111,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":112,"action":{"kind":"Delegate","val":3,"amt":4542},"partialState":{"h":12,"t":72,"tokens":[8013,18009,2722,7447],"delegation":[7013,17009,1722,6447],"delegatorTokens":9999999947996}},{"ix":113,"action":{"kind":"Deliver","chain":"provider","numPackets":5},"partialState":{"h":12,"t":72,"tokens":[8013,18009,2722,7447],"delegation":[7013,17009,1722,6447],"delegatorTokens":9999999947996,"jailed":[1000000000000023,null,null,null],"status":["unbonding","bonded","unbonding","bonded"]}},{"ix":114,"action":{"kind":"Delegate","val":0,"amt":1612},"partialState":{"h":12,"t":72,"tokens":[9625,18009,2722,7447],"delegation":[8625,17009,1722,6447],"delegatorTokens":9999999946384}},{"ix":115,"action":{"kind":"Deliver","chain":"consumer","numPackets":4},"partialState":{"h":12,"t":72,"consumerPower":[null,18009,null,2000],"outstandingDowntime":[false,false,true,true]}},{"ix":116,"action":{"kind":"Deliver","chain":"consumer","numPackets":3},"partialState":{"h":12,"t":72,"consumerPower":[null,18009,null,2000],"outstandingDowntime":[false,false,true,true]}},{"ix":117,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":118,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":13,"t":78,"consumerPower":[null,18009,2722,null],"outstandingDowntime":[false,false,true,true]}},{"ix":119,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":120,"action":{"kind":"Delegate","val":2,"amt":2345},"partialState":{"h":12,"t":72,"tokens":[9625,18009,5067,7447],"delegation":[8625,17009,4067,6447],"delegatorTokens":9999999944039}},{"ix":121,"action":{"kind":"Deliver","chain":"consumer","numPackets":2},"partialState":{"h":13,"t":78,"consumerPower":[null,18009,2722,null],"outstandingDowntime":[false,false,true,true]}},{"ix":122,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":123,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":124,"action":{"kind":"Deliver","chain":"provider","numPackets":4},"partialState":{"h":12,"t":72,"tokens":[9625,18009,5067,7447],"delegation":[8625,17009,4067,6447],"delegatorTokens":9999999944039,"jailed":[1000000000000023,null,null,null],"status":["unbonding","bonded","unbonding","bonded"]}},{"ix":125,"action":{"kind":"Undelegate","val":2,"amt":3885},"partialState":{"h":12,"t":72,"tokens":[9625,18009,1182,7447],"delegation":[8625,17009,182,6447],"delegatorTokens":9999999944039}},{"ix":126,"action":{"kind":"Deliver","chain":"provider","numPackets":1},"partialState":{"h":12,"t":72,"tokens":[9625,18009,1182,7447],"delegation":[8625,17009,182,6447],"delegatorTokens":9999999944039,"jailed":[1000000000000023,null,null,null],"status":["unbonding","bonded","unbonding","bonded"]}},{"ix":127,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":128,"action":{"kind":"Deliver","chain":"provider","numPackets":4},"partialState":{"h":12,"t":72,"tokens":[9625,18009,1182,7447],"delegation":[8625,17009,182,6447],"delegatorTokens":9999999944039,"jailed":[1000000000000023,null,null,null],"status":["unbonding","bonded","unbonding","bonded"]}},{"ix":129,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":130,"action":{"kind":"Deliver","chain":"provider","numPackets":5},"partialState":{"h":12,"t":72,"tokens":[9625,18009,1182,7447],"delegation":[8625,17009,182,6447],"delegatorTokens":9999999944039,"jailed":[1000000000000023,null,null,null],"status":["unbonding","bonded","unbonding","bonded"]}},{"ix":131,"action":{"kind":"Delegate","val":2,"amt":2453},"partialState":{"h":12,"t":72,"tokens":[9625,18009,3635,7447],"delegation":[8625,17009,2635,6447],"delegatorTokens":9999999941586}},{"ix":132,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":133,"action":{"kind":"Undelegate","val":0,"amt":2104},"partialState":{"h":12,"t":72,"tokens":[7521,18009,3635,7447],"delegation":[6521,17009,2635,6447],"delegatorTokens":9999999941586}},{"ix":134,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":13,"t":78,"tokens":[7521,18009,3635,7447],"delegation":[6521,17009,2635,6447],"delegatorTokens":9999999941586,"jailed":[1000000000000023,null,null,null],"status":["unbonding","bonded","unbonding","bonded"]}},{"ix":135,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":14,"t":84,"tokens":[7521,18009,3635,7447],"delegation":[6521,17009,2635,6447],"delegatorTokens":9999999941586,"jailed":[1000000000000023,null,null,null],"status":["unbonding","bonded","unbonding","bonded"]}},{"ix":136,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":15,"t":90,"tokens":[7521,18009,3635,7447],"delegation":[6521,17009,2635,6447],"delegatorTokens":9999999941586,"jailed":[1000000000000023,null,null,null],"status":["unbonding","bonded","unbonding","bonded"]}},{"ix":137,"action":{"kind":"Delegate","val":2,"amt":2180},"partialState":{"h":15,"t":90,"tokens":[7521,18009,5815,7447],"delegation":[6521,17009,4815,6447],"delegatorTokens":9999999939406}},{"ix":138,"action":{"kind":"Undelegate","val":2,"amt":2053},"partialState":{"h":15,"t":90,"tokens":[7521,18009,3762,7447],"delegation":[6521,17009,2762,6447],"delegatorTokens":9999999939406}},{"ix":139,"action":{"kind":"Deliver","chain":"provider","numPackets":3},"partialState":{"h":15,"t":90,"tokens":[7521,18009,3762,7447],"delegation":[6521,17009,2762,6447],"delegatorTokens":9999999939406,"jailed":[1000000000000023,null,null,null],"status":["unbonding","bonded","unbonding","bonded"]}},{"ix":140,"action":{"kind":"Deliver","chain":"consumer","numPackets":4},"partialState":{"h":13,"t":78,"consumerPower":[null,18009,2722,null],"outstandingDowntime":[false,false,true,true]}},{"ix":141,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":142,"action":{"kind":"Delegate","val":2,"amt":2221},"partialState":{"h":15,"t":90,"tokens":[7521,18009,5983,7447],"delegation":[6521,17009,4983,6447],"delegatorTokens":9999999937185}},{"ix":143,"action":{"kind":"Delegate","val":1,"amt":4587},"partialState":{"h":15,"t":90,"tokens":[7521,22596,5983,7447],"delegation":[6521,21596,4983,6447],"delegatorTokens":9999999932598}},{"ix":144,"action":{"kind":"Undelegate","val":1,"amt":3048},"partialState":{"h":15,"t":90,"tokens":[7521,19548,5983,7447],"delegation":[6521,18548,4983,6447],"delegatorTokens":9999999932598}},{"ix":145,"action":{"kind":"Undelegate","val":1,"amt":3346},"partialState":{"h":15,"t":90,"tokens":[7521,16202,5983,7447],"delegation":[6521,15202,4983,6447],"delegatorTokens":9999999932598}},{"ix":146,"action":{"kind":"Deliver","chain":"provider","numPackets":6},"partialState":{"h":15,"t":90,"tokens":[7521,16202,5983,7447],"delegation":[6521,15202,4983,6447],"delegatorTokens":9999999932598,"jailed":[1000000000000023,null,null,null],"status":["unbonding","bonded","unbonding","bonded"]}},{"ix":147,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":148,"action":{"kind":"Undelegate","val":1,"amt":1407},"partialState":{"h":15,"t":90,"tokens":[7521,14795,5983,7447],"delegation":[6521,13795,4983,6447],"delegatorTokens":9999999932598}},{"ix":149,"action":{"kind":"Undelegate","val":1,"amt":1626},"partialState":{"h":15,"t":90,"tokens":[7521,13169,5983,7447],"delegation":[6521,12169,4983,6447],"delegatorTokens":9999999932598}},{"ix":150,"action":{"kind":"Deliver","chain":"provider","numPackets":6},"partialState":{"h":15,"t":90,"tokens":[7521,13169,5983,7447],"delegation":[6521,12169,4983,6447],"delegatorTokens":9999999932598,"jailed":[1000000000000023,null,null,null],"status":["unbonding","bonded","unbonding","bonded"]}},{"ix":151,"action":{"kind":"Delegate","val":0,"amt":3021},"partialState":{"h":15,"t":90,"tokens":[10542,13169,5983,7447],"delegation":[9542,12169,4983,6447],"delegatorTokens":9999999929577}},{"ix":152,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":153,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":16,"t":96,"tokens":[10542,13169,5983,7447],"delegation":[9542,12169,4983,6447],"delegatorTokens":9999999929577,"jailed":[1000000000000023,null,null,null],"status":["unbonding","bonded","unbonding","bonded"]}},{"ix":154,"action":{"kind":"Deliver","chain":"consumer","numPackets":1},"partialState":{"h":13,"t":78,"consumerPower":[null,18009,2722,null],"outstandingDowntime":[false,false,true,true]}},{"ix":155,"action":{"kind":"Undelegate","val":3,"amt":1028},"partialState":{"h":16,"t":96,"tokens":[10542,13169,5983,6419],"delegation":[9542,12169,4983,5419],"delegatorTokens":9999999929577}},{"ix":156,"action":{"kind":"Delegate","val":1,"amt":3514},"partialState":{"h":16,"t":96,"tokens":[10542,16683,5983,6419],"delegation":[9542,15683,4983,5419],"delegatorTokens":9999999926063}},{"ix":157,"action":{"kind":"Delegate","val":1,"amt":3645},"partialState":{"h":16,"t":96,"tokens":[10542,20328,5983,6419],"delegation":[9542,19328,4983,5419],"delegatorTokens":9999999922418}},{"ix":158,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":159,"action":{"kind":"Deliver","chain":"consumer","numPackets":4},"partialState":{"h":13,"t":78,"consumerPower":[null,18009,2722,null],"outstandingDowntime":[false,false,true,true]}},{"ix":160,"action":{"kind":"Undelegate","val":1,"amt":2094},"partialState":{"h":16,"t":96,"tokens":[10542,18234,5983,6419],"delegation":[9542,17234,4983,5419],"delegatorTokens":9999999922418}},{"ix":161,"action":{"kind":"Deliver","chain":"provider","numPackets":5},"partialState":{"h":16,"t":96,"tokens":[10542,18234,5983,6419],"delegation":[9542,17234,4983,5419],"delegatorTokens":9999999922418,"jailed":[1000000000000023,null,null,null],"status":["unbonding","bonded","unbonding","bonded"]}},{"ix":162,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":163,"action":{"kind":"Delegate","val":0,"amt":1769},"partialState":{"h":16,"t":96,"tokens":[12311,18234,5983,6419],"delegation":[11311,17234,4983,5419],"delegatorTokens":9999999920649}},{"ix":164,"action":{"kind":"Deliver","chain":"consumer","numPackets":1},"partialState":{"h":13,"t":78,"consumerPower":[null,18009,2722,null],"outstandingDowntime":[false,false,true,true]}},{"ix":165,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":14,"t":84,"consumerPower":[null,18009,null,7447],"outstandingDowntime":[false,false,true,true]}},{"ix":166,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":167,"action":{"kind":"Undelegate","val":0,"amt":4512},"partialState":{"h":16,"t":96,"tokens":[7799,18234,5983,6419],"delegation":[6799,17234,4983,5419],"delegatorTokens":9999999920649}},{"ix":168,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":169,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":17,"t":102,"tokens":[7799,18234,5983,6419],"delegation":[6799,17234,4983,5419],"delegatorTokens":9999999920649,"jailed":[1000000000000023,null,null,null],"status":["unbonding","bonded","unbonding","bonded"]}},{"ix":170,"action":{"kind":"Undelegate","val":3,"amt":2916},"partialState":{"h":17,"t":102,"tokens":[7799,18234,5983,3503],"delegation":[6799,17234,4983,2503],"delegatorTokens":9999999920649}},{"ix":171,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":15,"t":90,"consumerPower":[null,18009,null,7447],"outstandingDowntime":[false,false,true,true]}},{"ix":172,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":173,"action":{"kind":"Undelegate","val":0,"amt":1146},"partialState":{"h":17,"t":102,"tokens":[6653,18234,5983,3503],"delegation":[5653,17234,4983,2503],"delegatorTokens":9999999920649}},{"ix":174,"action":{"kind":"Delegate","val":0,"amt":3848},"partialState":{"h":17,"t":102,"tokens":[10501,18234,5983,3503],"delegation":[9501,17234,4983,2503],"delegatorTokens":9999999916801}},{"ix":175,"action":{"kind":"Deliver","chain":"provider","numPackets":1},"partialState":{"h":17,"t":102,"tokens":[10501,18234,5983,3503],"delegation":[9501,17234,4983,2503],"delegatorTokens":9999999916801,"jailed":[1000000000000023,null,null,null],"status":["unbonding","bonded","unbonding","bonded"]}},{"ix":176,"action":{"kind":"Undelegate","val":2,"amt":1605},"partialState":{"h":17,"t":102,"tokens":[10501,18234,4378,3503],"delegation":[9501,17234,3378,2503],"delegatorTokens":9999999916801}},{"ix":177,"action":{"kind":"Undelegate","val":3,"amt":3845},"partialState":{"h":17,"t":102,"tokens":[10501,18234,4378,3503],"delegation":[9501,17234,3378,2503],"delegatorTokens":9999999916801}},{"ix":178,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":179,"action":{"kind":"Undelegate","val":1,"amt":3710},"partialState":{"h":17,"t":102,"tokens":[10501,14524,4378,3503],"delegation":[9501,13524,3378,2503],"delegatorTokens":9999999916801}},{"ix":180,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":18,"t":108,"tokens":[10501,14524,4378,3503],"delegation":[9501,13524,3378,2503],"delegatorTokens":9999999916801,"jailed":[1000000000000023,null,null,null],"status":["unbonding","bonded","bonded","unbonding"]}},{"ix":181,"action":{"kind":"Deliver","chain":"provider","numPackets":6},"partialState":{"h":18,"t":108,"tokens":[10501,14524,4378,3503],"delegation":[9501,13524,3378,2503],"delegatorTokens":9999999916801,"jailed":[1000000000000023,null,null,null],"status":["unbonding","bonded","bonded","unbonding"]}},{"ix":182,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":19,"t":114,"tokens":[10501,14524,4378,3503],"delegation":[9501,13524,3378,2503],"delegatorTokens":9999999921609,"jailed":[1000000000000023,null,null,null],"status":["unbonding","bonded","bonded","unbonding"]}},{"ix":183,"action":{"kind":"Undelegate","val":1,"amt":3764},"partialState":{"h":19,"t":114,"tokens":[10501,10760,4378,3503],"delegation":[9501,9760,3378,2503],"delegatorTokens":9999999921609}},{"ix":184,"action":{"kind":"Deliver","chain":"consumer","numPackets":4},"partialState":{"h":15,"t":90,"consumerPower":[null,18009,null,7447],"outstandingDowntime":[false,false,true,true]}},{"ix":185,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":186,"action":{"kind":"Undelegate","val":3,"amt":4380},"partialState":{"h":19,"t":114,"tokens":[10501,10760,4378,3503],"delegation":[9501,9760,3378,2503],"delegatorTokens":9999999921609}},{"ix":187,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":188,"action":{"kind":"Deliver","chain":"consumer","numPackets":2},"partialState":{"h":15,"t":90,"consumerPower":[null,18009,null,7447],"outstandingDowntime":[false,false,true,true]}},{"ix":189,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":20,"t":120,"tokens":[10501,10760,4378,3503],"delegation":[9501,9760,3378,2503],"delegatorTokens":9999999921609,"jailed":[1000000000000023,null,null,null],"status":["unbonding","bonded","bonded","unbonding"]}},{"ix":190,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":191,"action":{"kind":"Delegate","val":2,"amt":1104},"partialState":{"h":20,"t":120,"tokens":[10501,10760,5482,3503],"delegation":[9501,9760,4482,2503],"delegatorTokens":9999999920505}},{"ix":192,"action":{"kind":"Deliver","chain":"consumer","numPackets":5},"partialState":{"h":15,"t":90,"consumerPower":[null,18009,null,7447],"outstandingDowntime":[false,false,true,true]}},{"ix":193,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":194,"action":{"kind":"Deliver","chain":"provider","numPackets":3},"partialState":{"h":20,"t":120,"tokens":[10501,10760,5482,3503],"delegation":[9501,9760,4482,2503],"delegatorTokens":9999999920505,"jailed":[1000000000000023,null,null,null],"status":["unbonding","bonded","bonded","unbonding"]}},{"ix":195,"action":{"kind":"Delegate","val":3,"amt":4838},"partialState":{"h":20,"t":120,"tokens":[10501,10760,5482,8341],"delegation":[9501,9760,4482,7341],"delegatorTokens":9999999915667}},{"ix":196,"action":{"kind":"Undelegate","val":1,"amt":3868},"partialState":{"h":20,"t":120,"tokens":[10501,6892,5482,8341],"delegation":[9501,5892,4482,7341],"delegatorTokens":9999999915667}},{"ix":197,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":21,"t":126,"tokens":[10501,6892,5482,8341],"delegation":[9501,5892,4482,7341],"delegatorTokens":9999999915667,"jailed":[1000000000000023,null,null,null],"status":["unbonding","bonded","unbonding","bonded"]}},{"ix":198,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":16,"t":96,"consumerPower":[null,14524,4378,null],"outstandingDowntime":[false,false,true,true]}},{"ix":199,"action":{"kind":"Delegate","val":0,"amt":2634},"partialState":{"h":21,"t":126,"tokens":[13135,6892,5482,8341],"delegation":[12135,5892,4482,7341],"delegatorTokens":9999999913033}}],"events":["send_downtime_slash_request","send_vsc_without_downtime_ack","downtime_slash_request_outstanding","insufficient_shares","send_downtime_slash_request","insufficient_shares","send_vsc_without_downtime_ack","send_vsc_without_downtime_ack","insufficient_shares","downtime_slash_request_outstanding","consumer_update_val","consumer_update_val","send_downtime_slash_request","receive_slash_request_unbonded","receive_downtime_slash_request","jail","receive_slash_request_unbonded","send_vsc_with_downtime_ack","consumer_update_val","send_vsc_without_downtime_ack","receive_downtime_slash_ack","insufficient_shares","insufficient_shares","send_vsc_without_downtime_ack","consumer_update_val","consumer_del_val","consumer_add_val","insufficient_shares","insufficient_shares","insufficient_shares","send_vsc_not_because_change","send_vsc_without_downtime_ack","send_vsc_without_downtime_ack","insufficient_shares","insufficient_shares","insufficient_shares","send_vsc_without_downtime_ack","insufficient_shares","consumer_update_val","insufficient_shares","rebond_unval","send_vsc_without_downtime_ack","insufficient_shares","consumer_send_maturation","consumer_send_maturation","consumer_add_val","consumer_del_val","send_vsc_without_downtime_ack","some_undels_expired_but_not_completed","some_undels_expired_but_not_completed","send_vsc_without_downtime_ack","consumer_del_val","consumer_add_val","send_vsc_without_downtime_ack","insufficient_shares","rebond_unval","some_undels_expired_but_not_completed","send_vsc_without_downtime_ack","complete_undel_immediate","complete_undel_immediate","complete_undel_immediate","insufficient_shares","send_vsc_without_downtime_ack","more_than_one_third_val_power_change","rebond_unval","some_undels_expired_but_not_completed","send_vsc_without_downtime_ack","consumer_send_maturation","consumer_update_val","consumer_del_val","consumer_add_val"]},{"meta":{"commit":"7ffd0c04e4205cbc9caf212abfe6c59ee43153bf"},"constants":{"P":"provider","C":"consumer","UNBONDING_SECONDS_P":70,"UNBONDING_SECONDS_C":50,"TRUSTING_SECONDS":49,"NUM_VALIDATORS":4,"MAX_VALIDATORS":2,"SLASH_DOUBLESIGN":0,"SLASH_DOWNTIME":0,"JAIL_SECONDS":999999999999999,"BLOCK_SECONDS":6,"INITIAL_DELEGATOR_TOKENS":10000000000000,"DELEGATE_AMT_MIN":1000,"DELEGATE_AMT_MAX":5000,"UNDELEGATE_AMT_MIN":1000,"UNDELEGATE_AMT_MAX":5000,"ISDOWNTIME_PROBABILITY":0.5,"MAX_NUM_PACKETS_FOR_DELIVER":6},"actions":[{"ix":0,"action":{"kind":"ConsumerSlash","val":0,"infractionHeight":0,"isDowntime":true},"partialState":{"h":1,"t":6,"outstandingDowntime":[true,false,false,false]}},{"ix":1,"action":{"kind":"ConsumerSlash","val":0,"infractionHeight":0,"isDowntime":false},"partialState":{"h":1,"t":6,"outstandingDowntime":[true,false,false,false]}},{"ix":2,"action":{"kind":"Deliver","chain":"consumer","numPackets":2},"partialState":{"h":1,"t":6,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[true,false,false,false]}},{"ix":3,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":4,"action":{"kind":"Deliver","chain":"consumer","numPackets":6},"partialState":{"h":1,"t":6,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[true,false,false,false]}},{"ix":5,"action":{"kind":"Undelegate","val":2,"amt":3881},"partialState":{"h":1,"t":6,"tokens":[5000,4000,3000,2000],"delegation":[4000,3000,2000,1000],"delegatorTokens":10000000000000}},{"ix":6,"action":{"kind":"Deliver","chain":"provider","numPackets":6},"partialState":{"h":1,"t":6,"tokens":[5000,4000,3000,2000],"delegation":[4000,3000,2000,1000],"delegatorTokens":10000000000000,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":7,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":8,"action":{"kind":"Undelegate","val":3,"amt":3108},"partialState":{"h":1,"t":6,"tokens":[5000,4000,3000,2000],"delegation":[4000,3000,2000,1000],"delegatorTokens":10000000000000}},{"ix":9,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":2,"t":12,"tokens":[5000,4000,3000,2000],"delegation":[4000,3000,2000,1000],"delegatorTokens":10000000000000,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":10,"action":{"kind":"ConsumerSlash","val":3,"infractionHeight":0,"isDowntime":true},"partialState":{"h":1,"t":6,"outstandingDowntime":[true,false,false,true]}},{"ix":11,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":3,"t":18,"tokens":[5000,4000,3000,2000],"delegation":[4000,3000,2000,1000],"delegatorTokens":10000000000000,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":12,"action":{"kind":"ConsumerSlash","val":3,"infractionHeight":0,"isDowntime":true},"partialState":{"h":1,"t":6,"outstandingDowntime":[true,false,false,true]}},{"ix":13,"action":{"kind":"ConsumerSlash","val":3,"infractionHeight":0,"isDowntime":true},"partialState":{"h":1,"t":6,"outstandingDowntime":[true,false,false,true]}},{"ix":14,"action":{"kind":"ConsumerSlash","val":3,"infractionHeight":0,"isDowntime":false},"partialState":{"h":1,"t":6,"outstandingDowntime":[true,false,false,true]}},{"ix":15,"action":{"kind":"Deliver","chain":"consumer","numPackets":3},"partialState":{"h":1,"t":6,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[true,false,false,true]}},{"ix":16,"action":{"kind":"Undelegate","val":2,"amt":1906},"partialState":{"h":3,"t":18,"tokens":[5000,4000,1094,2000],"delegation":[4000,3000,94,1000],"delegatorTokens":10000000000000}},{"ix":17,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":18,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":2,"t":12,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[true,false,false,true]}},{"ix":19,"action":{"kind":"ConsumerSlash","val":2,"infractionHeight":1,"isDowntime":true},"partialState":{"h":2,"t":12,"outstandingDowntime":[true,false,true,true]}},{"ix":20,"action":{"kind":"Deliver","chain":"consumer","numPackets":1},"partialState":{"h":2,"t":12,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[true,false,true,true]}},{"ix":21,"action":{"kind":"Deliver","chain":"consumer","numPackets":4},"partialState":{"h":2,"t":12,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[true,false,true,true]}},{"ix":22,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":23,"action":{"kind":"Deliver","chain":"consumer","numPackets":3},"partialState":{"h":2,"t":12,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[true,false,true,true]}},{"ix":24,"action":{"kind":"Undelegate","val":3,"amt":3305},"partialState":{"h":3,"t":18,"tokens":[5000,4000,1094,2000],"delegation":[4000,3000,94,1000],"delegatorTokens":10000000000000}},{"ix":25,"action":{"kind":"Undelegate","val":1,"amt":1583},"partialState":{"h":3,"t":18,"tokens":[5000,2417,1094,2000],"delegation":[4000,1417,94,1000],"delegatorTokens":10000000000000}},{"ix":26,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":3,"t":18,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[true,false,true,true]}},{"ix":27,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":4,"t":24,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[true,false,true,true]}},{"ix":28,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":29,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":4,"t":24,"tokens":[5000,2417,1094,2000],"delegation":[4000,1417,94,1000],"delegatorTokens":10000000000000,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":30,"action":{"kind":"Undelegate","val":3,"amt":3040},"partialState":{"h":4,"t":24,"tokens":[5000,2417,1094,2000],"delegation":[4000,1417,94,1000],"delegatorTokens":10000000000000}},{"ix":31,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":32,"action":{"kind":"Undelegate","val":0,"amt":4175},"partialState":{"h":4,"t":24,"tokens":[5000,2417,1094,2000],"delegation":[4000,1417,94,1000],"delegatorTokens":10000000000000}},{"ix":33,"action":{"kind":"Undelegate","val":3,"amt":4810},"partialState":{"h":4,"t":24,"tokens":[5000,2417,1094,2000],"delegation":[4000,1417,94,1000],"delegatorTokens":10000000000000}},{"ix":34,"action":{"kind":"Delegate","val":1,"amt":2527},"partialState":{"h":4,"t":24,"tokens":[5000,4944,1094,2000],"delegation":[4000,3944,94,1000],"delegatorTokens":9999999997473}},{"ix":35,"action":{"kind":"Delegate","val":0,"amt":2745},"partialState":{"h":4,"t":24,"tokens":[7745,4944,1094,2000],"delegation":[6745,3944,94,1000],"delegatorTokens":9999999994728}},{"ix":36,"action":{"kind":"Deliver","chain":"provider","numPackets":5},"partialState":{"h":4,"t":24,"tokens":[7745,4944,1094,2000],"delegation":[6745,3944,94,1000],"delegatorTokens":9999999994728,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":37,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":38,"action":{"kind":"Undelegate","val":3,"amt":1414},"partialState":{"h":4,"t":24,"tokens":[7745,4944,1094,2000],"delegation":[6745,3944,94,1000],"delegatorTokens":9999999994728}},{"ix":39,"action":{"kind":"Delegate","val":2,"amt":1298},"partialState":{"h":4,"t":24,"tokens":[7745,4944,2392,2000],"delegation":[6745,3944,1392,1000],"delegatorTokens":9999999993430}},{"ix":40,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":41,"action":{"kind":"Delegate","val":1,"amt":2176},"partialState":{"h":4,"t":24,"tokens":[7745,7120,2392,2000],"delegation":[6745,6120,1392,1000],"delegatorTokens":9999999991254}},{"ix":42,"action":{"kind":"Deliver","chain":"provider","numPackets":5},"partialState":{"h":4,"t":24,"tokens":[7745,7120,2392,2000],"delegation":[6745,6120,1392,1000],"delegatorTokens":9999999991254,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":43,"action":{"kind":"Undelegate","val":1,"amt":1372},"partialState":{"h":4,"t":24,"tokens":[7745,5748,2392,2000],"delegation":[6745,4748,1392,1000],"delegatorTokens":9999999991254}},{"ix":44,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":5,"t":30,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[true,false,true,true]}},{"ix":45,"action":{"kind":"Delegate","val":1,"amt":2946},"partialState":{"h":4,"t":24,"tokens":[7745,8694,2392,2000],"delegation":[6745,7694,1392,1000],"delegatorTokens":9999999988308}},{"ix":46,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":6,"t":36,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[true,false,true,true]}},{"ix":47,"action":{"kind":"Deliver","chain":"consumer","numPackets":3},"partialState":{"h":6,"t":36,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[true,false,true,true]}},{"ix":48,"action":{"kind":"Deliver","chain":"consumer","numPackets":5},"partialState":{"h":6,"t":36,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[true,false,true,true]}},{"ix":49,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":7,"t":42,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[true,false,true,true]}},{"ix":50,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":51,"action":{"kind":"Delegate","val":3,"amt":3799},"partialState":{"h":4,"t":24,"tokens":[7745,8694,2392,5799],"delegation":[6745,7694,1392,4799],"delegatorTokens":9999999984509}},{"ix":52,"action":{"kind":"Deliver","chain":"provider","numPackets":1},"partialState":{"h":4,"t":24,"tokens":[7745,8694,2392,5799],"delegation":[6745,7694,1392,4799],"delegatorTokens":9999999984509,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":53,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":54,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":5,"t":30,"tokens":[7745,8694,2392,5799],"delegation":[6745,7694,1392,4799],"delegatorTokens":9999999984509,"jailed":[1000000000000023,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":55,"action":{"kind":"Delegate","val":3,"amt":4612},"partialState":{"h":5,"t":30,"tokens":[7745,8694,2392,10411],"delegation":[6745,7694,1392,9411],"delegatorTokens":9999999979897}},{"ix":56,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":57,"action":{"kind":"Deliver","chain":"consumer","numPackets":4},"partialState":{"h":7,"t":42,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[true,false,true,true]}},{"ix":58,"action":{"kind":"Undelegate","val":0,"amt":4486},"partialState":{"h":5,"t":30,"tokens":[3259,8694,2392,10411],"delegation":[2259,7694,1392,9411],"delegatorTokens":9999999979897}},{"ix":59,"action":{"kind":"Undelegate","val":1,"amt":3002},"partialState":{"h":5,"t":30,"tokens":[3259,5692,2392,10411],"delegation":[2259,4692,1392,9411],"delegatorTokens":9999999979897}},{"ix":60,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":61,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":62,"action":{"kind":"Deliver","chain":"consumer","numPackets":6},"partialState":{"h":7,"t":42,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[true,false,true,true]}},{"ix":63,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":64,"action":{"kind":"Deliver","chain":"provider","numPackets":3},"partialState":{"h":5,"t":30,"tokens":[3259,5692,2392,10411],"delegation":[2259,4692,1392,9411],"delegatorTokens":9999999979897,"jailed":[1000000000000023,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":65,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":66,"action":{"kind":"Delegate","val":0,"amt":2728},"partialState":{"h":5,"t":30,"tokens":[5987,5692,2392,10411],"delegation":[4987,4692,1392,9411],"delegatorTokens":9999999977169}},{"ix":67,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":8,"t":48,"consumerPower":[5000,2417,null,null],"outstandingDowntime":[true,false,true,true]}},{"ix":68,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":9,"t":54,"consumerPower":[5000,2417,null,null],"outstandingDowntime":[true,false,true,true]}},{"ix":69,"action":{"kind":"Delegate","val":1,"amt":4782},"partialState":{"h":5,"t":30,"tokens":[5987,10474,2392,10411],"delegation":[4987,9474,1392,9411],"delegatorTokens":9999999972387}},{"ix":70,"action":{"kind":"Delegate","val":1,"amt":4256},"partialState":{"h":5,"t":30,"tokens":[5987,14730,2392,10411],"delegation":[4987,13730,1392,9411],"delegatorTokens":9999999968131}},{"ix":71,"action":{"kind":"Deliver","chain":"provider","numPackets":5},"partialState":{"h":5,"t":30,"tokens":[5987,14730,2392,10411],"delegation":[4987,13730,1392,9411],"delegatorTokens":9999999968131,"jailed":[1000000000000023,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":72,"action":{"kind":"Undelegate","val":3,"amt":2494},"partialState":{"h":5,"t":30,"tokens":[5987,14730,2392,7917],"delegation":[4987,13730,1392,6917],"delegatorTokens":9999999968131}},{"ix":73,"action":{"kind":"Delegate","val":2,"amt":3009},"partialState":{"h":5,"t":30,"tokens":[5987,14730,5401,7917],"delegation":[4987,13730,4401,6917],"delegatorTokens":9999999965122}},{"ix":74,"action":{"kind":"Deliver","chain":"consumer","numPackets":3},"partialState":{"h":9,"t":54,"consumerPower":[5000,2417,null,null],"outstandingDowntime":[true,false,true,true]}},{"ix":75,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":10,"t":60,"consumerPower":[5000,2417,null,null],"outstandingDowntime":[true,false,true,true]}},{"ix":76,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":6,"t":36,"tokens":[5987,14730,5401,7917],"delegation":[4987,13730,4401,6917],"delegatorTokens":9999999965122,"jailed":[1000000000000023,null,null,null],"status":["unbonding","bonded","unbonded","bonded"]}},{"ix":77,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":7,"t":42,"tokens":[5987,14730,5401,7917],"delegation":[4987,13730,4401,6917],"delegatorTokens":9999999965122,"jailed":[1000000000000023,null,null,null],"status":["unbonding","bonded","unbonded","bonded"]}},{"ix":78,"action":{"kind":"Delegate","val":0,"amt":1743},"partialState":{"h":7,"t":42,"tokens":[7730,14730,5401,7917],"delegation":[6730,13730,4401,6917],"delegatorTokens":9999999963379}},{"ix":79,"action":{"kind":"Undelegate","val":2,"amt":1578},"partialState":{"h":7,"t":42,"tokens":[7730,14730,3823,7917],"delegation":[6730,13730,2823,6917],"delegatorTokens":9999999963379}},{"ix":80,"action":{"kind":"Undelegate","val":3,"amt":4420},"partialState":{"h":7,"t":42,"tokens":[7730,14730,3823,3497],"delegation":[6730,13730,2823,2497],"delegatorTokens":9999999963379}},{"ix":81,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":11,"t":66,"consumerPower":[5000,2417,null,null],"outstandingDowntime":[true,false,true,true]}},{"ix":82,"action":{"kind":"Undelegate","val":1,"amt":1843},"partialState":{"h":7,"t":42,"tokens":[7730,12887,3823,3497],"delegation":[6730,11887,2823,2497],"delegatorTokens":9999999963379}},{"ix":83,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":8,"t":48,"tokens":[7730,12887,3823,3497],"delegation":[6730,11887,2823,2497],"delegatorTokens":9999999963379,"jailed":[1000000000000023,null,null,null],"status":["unbonding","bonded","bonded","unbonding"]}},{"ix":84,"action":{"kind":"Delegate","val":2,"amt":1173},"partialState":{"h":8,"t":48,"tokens":[7730,12887,4996,3497],"delegation":[6730,11887,3996,2497],"delegatorTokens":9999999962206}},{"ix":85,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":86,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":87,"action":{"kind":"Deliver","chain":"provider","numPackets":5},"partialState":{"h":8,"t":48,"tokens":[7730,12887,4996,3497],"delegation":[6730,11887,3996,2497],"delegatorTokens":9999999962206,"jailed":[1000000000000023,null,null,null],"status":["unbonding","bonded","bonded","unbonding"]}},{"ix":88,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":9,"t":54,"tokens":[7730,12887,4996,3497],"delegation":[6730,11887,3996,2497],"delegatorTokens":9999999962206,"jailed":[1000000000000023,null,null,null],"status":["unbonding","bonded","bonded","unbonding"]}},{"ix":89,"action":{"kind":"Undelegate","val":3,"amt":3404},"partialState":{"h":9,"t":54,"tokens":[7730,12887,4996,3497],"delegation":[6730,11887,3996,2497],"delegatorTokens":9999999962206}},{"ix":90,"action":{"kind":"Deliver","chain":"consumer","numPackets":1},"partialState":{"h":11,"t":66,"consumerPower":[5000,2417,null,null],"outstandingDowntime":[false,false,true,true]}},{"ix":91,"action":{"kind":"Deliver","chain":"consumer","numPackets":3},"partialState":{"h":11,"t":66,"consumerPower":[5000,2417,null,null],"outstandingDowntime":[false,false,true,true]}},{"ix":92,"action":{"kind":"Delegate","val":1,"amt":3439},"partialState":{"h":9,"t":54,"tokens":[7730,16326,4996,3497],"delegation":[6730,15326,3996,2497],"delegatorTokens":9999999958767}},{"ix":93,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":94,"action":{"kind":"Deliver","chain":"provider","numPackets":1},"partialState":{"h":9,"t":54,"tokens":[7730,16326,4996,3497],"delegation":[6730,15326,3996,2497],"delegatorTokens":9999999958767,"jailed":[1000000000000023,null,null,null],"status":["unbonding","bonded","bonded","unbonding"]}},{"ix":95,"action":{"kind":"Undelegate","val":2,"amt":3743},"partialState":{"h":9,"t":54,"tokens":[7730,16326,1253,3497],"delegation":[6730,15326,253,2497],"delegatorTokens":9999999958767}},{"ix":96,"action":{"kind":"Undelegate","val":1,"amt":2581},"partialState":{"h":9,"t":54,"tokens":[7730,13745,1253,3497],"delegation":[6730,12745,253,2497],"delegatorTokens":9999999958767}},{"ix":97,"action":{"kind":"Deliver","chain":"provider","numPackets":2},"partialState":{"h":9,"t":54,"tokens":[7730,13745,1253,3497],"delegation":[6730,12745,253,2497],"delegatorTokens":9999999958767,"jailed":[1000000000000023,null,null,null],"status":["unbonding","bonded","bonded","unbonding"]}},{"ix":98,"action":{"kind":"Delegate","val":1,"amt":4161},"partialState":{"h":9,"t":54,"tokens":[7730,17906,1253,3497],"delegation":[6730,16906,253,2497],"delegatorTokens":9999999954606}},{"ix":99,"action":{"kind":"Undelegate","val":0,"amt":4150},"partialState":{"h":9,"t":54,"tokens":[3580,17906,1253,3497],"delegation":[2580,16906,253,2497],"delegatorTokens":9999999954606}},{"ix":100,"action":{"kind":"Deliver","chain":"consumer","numPackets":3},"partialState":{"h":11,"t":66,"consumerPower":[5000,2417,null,null],"outstandingDowntime":[false,false,true,true]}},{"ix":101,"action":{"kind":"Undelegate","val":0,"amt":2286},"partialState":{"h":9,"t":54,"tokens":[1294,17906,1253,3497],"delegation":[294,16906,253,2497],"delegatorTokens":9999999954606}},{"ix":102,"action":{"kind":"Delegate","val":0,"amt":3893},"partialState":{"h":9,"t":54,"tokens":[5187,17906,1253,3497],"delegation":[4187,16906,253,2497],"delegatorTokens":9999999950713}},{"ix":103,"action":{"kind":"Deliver","chain":"consumer","numPackets":5},"partialState":{"h":11,"t":66,"consumerPower":[5000,2417,null,null],"outstandingDowntime":[false,false,true,true]}},{"ix":104,"action":{"kind":"Deliver","chain":"provider","numPackets":3},"partialState":{"h":9,"t":54,"tokens":[5187,17906,1253,3497],"delegation":[4187,16906,253,2497],"delegatorTokens":9999999950713,"jailed":[1000000000000023,null,null,null],"status":["unbonding","bonded","bonded","unbonding"]}},{"ix":105,"action":{"kind":"Undelegate","val":2,"amt":2820},"partialState":{"h":9,"t":54,"tokens":[5187,17906,1253,3497],"delegation":[4187,16906,253,2497],"delegatorTokens":9999999950713}},{"ix":106,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":10,"t":60,"tokens":[5187,17906,1253,3497],"delegation":[4187,16906,253,2497],"delegatorTokens":9999999950713,"jailed":[1000000000000023,null,null,null],"status":["unbonding","bonded","unbonding","bonded"]}},{"ix":107,"action":{"kind":"Undelegate","val":3,"amt":2489},"partialState":{"h":10,"t":60,"tokens":[5187,17906,1253,1008],"delegation":[4187,16906,253,8],"delegatorTokens":9999999950713}},{"ix":108,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":109,"action":{"kind":"Undelegate","val":1,"amt":3830},"partialState":{"h":10,"t":60,"tokens":[5187,14076,1253,1008],"delegation":[4187,13076,253,8],"delegatorTokens":9999999950713}},{"ix":110,"action":{"kind":"Deliver","chain":"provider","numPackets":3},"partialState":{"h":10,"t":60,"tokens":[5187,14076,1253,1008],"delegation":[4187,13076,253,8],"delegatorTokens":9999999950713,"jailed":[1000000000000023,null,null,null],"status":["unbonding","bonded","unbonding","bonded"]}},{"ix":111,"action":{"kind":"Undelegate","val":1,"amt":4653},"partialState":{"h":10,"t":60,"tokens":[5187,9423,1253,1008],"delegation":[4187,8423,253,8],"delegatorTokens":9999999950713}},{"ix":112,"action":{"kind":"Undelegate","val":0,"amt":1695},"partialState":{"h":10,"t":60,"tokens":[3492,9423,1253,1008],"delegation":[2492,8423,253,8],"delegatorTokens":9999999950713}},{"ix":113,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":114,"action":{"kind":"Undelegate","val":3,"amt":3400},"partialState":{"h":10,"t":60,"tokens":[3492,9423,1253,1008],"delegation":[2492,8423,253,8],"delegatorTokens":9999999950713}},{"ix":115,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":11,"t":66,"tokens":[3492,9423,1253,1008],"delegation":[2492,8423,253,8],"delegatorTokens":9999999950713,"jailed":[1000000000000023,null,null,null],"status":["unbonding","bonded","bonded","unbonding"]}},{"ix":116,"action":{"kind":"Undelegate","val":1,"amt":3857},"partialState":{"h":11,"t":66,"tokens":[3492,5566,1253,1008],"delegation":[2492,4566,253,8],"delegatorTokens":9999999950713}},{"ix":117,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":118,"action":{"kind":"Deliver","chain":"provider","numPackets":5},"partialState":{"h":11,"t":66,"tokens":[3492,5566,1253,1008],"delegation":[2492,4566,253,8],"delegatorTokens":9999999950713,"jailed":[1000000000000023,null,null,null],"status":["unbonding","bonded","bonded","unbonding"]}},{"ix":119,"action":{"kind":"Deliver","chain":"provider","numPackets":4},"partialState":{"h":11,"t":66,"tokens":[3492,5566,1253,1008],"delegation":[2492,4566,253,8],"delegatorTokens":9999999950713,"jailed":[1000000000000023,null,null,null],"status":["unbonding","bonded","bonded","unbonding"]}},{"ix":120,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":12,"t":72,"tokens":[3492,5566,1253,1008],"delegation":[2492,4566,253,8],"delegatorTokens":9999999950713,"jailed":[1000000000000023,null,null,null],"status":["unbonding","bonded","bonded","unbonding"]}},{"ix":121,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":122,"action":{"kind":"Delegate","val":3,"amt":4227},"partialState":{"h":12,"t":72,"tokens":[3492,5566,1253,5235],"delegation":[2492,4566,253,4235],"delegatorTokens":9999999946486}},{"ix":123,"action":{"kind":"Undelegate","val":0,"amt":4851},"partialState":{"h":12,"t":72,"tokens":[3492,5566,1253,5235],"delegation":[2492,4566,253,4235],"delegatorTokens":9999999946486}},{"ix":124,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":13,"t":78,"tokens":[3492,5566,1253,5235],"delegation":[2492,4566,253,4235],"delegatorTokens":9999999946486,"jailed":[1000000000000023,null,null,null],"status":["unbonding","bonded","unbonding","bonded"]}},{"ix":125,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":14,"t":84,"tokens":[3492,5566,1253,5235],"delegation":[2492,4566,253,4235],"delegatorTokens":9999999946486,"jailed":[1000000000000023,null,null,null],"status":["unbonding","bonded","unbonding","bonded"]}},{"ix":126,"action":{"kind":"Delegate","val":0,"amt":4011},"partialState":{"h":14,"t":84,"tokens":[7503,5566,1253,5235],"delegation":[6503,4566,253,4235],"delegatorTokens":9999999942475}},{"ix":127,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":128,"action":{"kind":"Delegate","val":0,"amt":4559},"partialState":{"h":14,"t":84,"tokens":[12062,5566,1253,5235],"delegation":[11062,4566,253,4235],"delegatorTokens":9999999937916}},{"ix":129,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":130,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":131,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":132,"action":{"kind":"Undelegate","val":3,"amt":1633},"partialState":{"h":14,"t":84,"tokens":[12062,5566,1253,3602],"delegation":[11062,4566,253,2602],"delegatorTokens":9999999937916}},{"ix":133,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":134,"action":{"kind":"Undelegate","val":3,"amt":4506},"partialState":{"h":14,"t":84,"tokens":[12062,5566,1253,3602],"delegation":[11062,4566,253,2602],"delegatorTokens":9999999937916}},{"ix":135,"action":{"kind":"Undelegate","val":0,"amt":3802},"partialState":{"h":14,"t":84,"tokens":[8260,5566,1253,3602],"delegation":[7260,4566,253,2602],"delegatorTokens":9999999937916}},{"ix":136,"action":{"kind":"Delegate","val":1,"amt":1219},"partialState":{"h":14,"t":84,"tokens":[8260,6785,1253,3602],"delegation":[7260,5785,253,2602],"delegatorTokens":9999999936697}},{"ix":137,"action":{"kind":"Delegate","val":3,"amt":4308},"partialState":{"h":14,"t":84,"tokens":[8260,6785,1253,7910],"delegation":[7260,5785,253,6910],"delegatorTokens":9999999932389}},{"ix":138,"action":{"kind":"Delegate","val":1,"amt":3216},"partialState":{"h":14,"t":84,"tokens":[8260,10001,1253,7910],"delegation":[7260,9001,253,6910],"delegatorTokens":9999999929173}},{"ix":139,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":140,"action":{"kind":"Delegate","val":1,"amt":3413},"partialState":{"h":14,"t":84,"tokens":[8260,13414,1253,7910],"delegation":[7260,12414,253,6910],"delegatorTokens":9999999925760}},{"ix":141,"action":{"kind":"Deliver","chain":"consumer","numPackets":4},"partialState":{"h":11,"t":66,"consumerPower":[5000,2417,null,null],"outstandingDowntime":[false,false,true,true]}},{"ix":142,"action":{"kind":"Deliver","chain":"provider","numPackets":6},"partialState":{"h":14,"t":84,"tokens":[8260,13414,1253,7910],"delegation":[7260,12414,253,6910],"delegatorTokens":9999999925760,"jailed":[1000000000000023,null,null,null],"status":["unbonding","bonded","unbonding","bonded"]}},{"ix":143,"action":{"kind":"Delegate","val":1,"amt":2897},"partialState":{"h":14,"t":84,"tokens":[8260,16311,1253,7910],"delegation":[7260,15311,253,6910],"delegatorTokens":9999999922863}},{"ix":144,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":145,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":146,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":12,"t":72,"consumerPower":[null,5566,1253,null],"outstandingDowntime":[false,false,true,true]}},{"ix":147,"action":{"kind":"Delegate","val":1,"amt":3866},"partialState":{"h":14,"t":84,"tokens":[8260,20177,1253,7910],"delegation":[7260,19177,253,6910],"delegatorTokens":9999999918997}},{"ix":148,"action":{"kind":"Delegate","val":1,"amt":2084},"partialState":{"h":14,"t":84,"tokens":[8260,22261,1253,7910],"delegation":[7260,21261,253,6910],"delegatorTokens":9999999916913}},{"ix":149,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":13,"t":78,"consumerPower":[null,5566,1253,null],"outstandingDowntime":[false,false,true,true]}},{"ix":150,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":15,"t":90,"tokens":[8260,22261,1253,7910],"delegation":[7260,21261,253,6910],"delegatorTokens":9999999916913,"jailed":[1000000000000023,null,null,null],"status":["unbonding","bonded","unbonding","bonded"]}},{"ix":151,"action":{"kind":"Deliver","chain":"provider","numPackets":4},"partialState":{"h":15,"t":90,"tokens":[8260,22261,1253,7910],"delegation":[7260,21261,253,6910],"delegatorTokens":9999999916913,"jailed":[1000000000000023,null,null,null],"status":["unbonding","bonded","unbonding","bonded"]}},{"ix":152,"action":{"kind":"Delegate","val":0,"amt":4363},"partialState":{"h":15,"t":90,"tokens":[12623,22261,1253,7910],"delegation":[11623,21261,253,6910],"delegatorTokens":9999999912550}},{"ix":153,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":154,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":155,"action":{"kind":"Delegate","val":3,"amt":1052},"partialState":{"h":15,"t":90,"tokens":[12623,22261,1253,8962],"delegation":[11623,21261,253,7962],"delegatorTokens":9999999911498}},{"ix":156,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":157,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":158,"action":{"kind":"Delegate","val":2,"amt":4008},"partialState":{"h":15,"t":90,"tokens":[12623,22261,5261,8962],"delegation":[11623,21261,4261,7962],"delegatorTokens":9999999907490}},{"ix":159,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":16,"t":96,"tokens":[12623,22261,5261,8962],"delegation":[11623,21261,4261,7962],"delegatorTokens":9999999907490,"jailed":[1000000000000023,null,null,null],"status":["unbonding","bonded","unbonding","bonded"]}},{"ix":160,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":161,"action":{"kind":"Delegate","val":3,"amt":4598},"partialState":{"h":16,"t":96,"tokens":[12623,22261,5261,13560],"delegation":[11623,21261,4261,12560],"delegatorTokens":9999999902892}},{"ix":162,"action":{"kind":"Undelegate","val":3,"amt":4851},"partialState":{"h":16,"t":96,"tokens":[12623,22261,5261,8709],"delegation":[11623,21261,4261,7709],"delegatorTokens":9999999902892}},{"ix":163,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":164,"action":{"kind":"Delegate","val":1,"amt":2211},"partialState":{"h":16,"t":96,"tokens":[12623,24472,5261,8709],"delegation":[11623,23472,4261,7709],"delegatorTokens":9999999900681}},{"ix":165,"action":{"kind":"Undelegate","val":3,"amt":2050},"partialState":{"h":16,"t":96,"tokens":[12623,24472,5261,6659],"delegation":[11623,23472,4261,5659],"delegatorTokens":9999999900681}},{"ix":166,"action":{"kind":"Undelegate","val":2,"amt":1091},"partialState":{"h":16,"t":96,"tokens":[12623,24472,4170,6659],"delegation":[11623,23472,3170,5659],"delegatorTokens":9999999900681}},{"ix":167,"action":{"kind":"Deliver","chain":"provider","numPackets":2},"partialState":{"h":16,"t":96,"tokens":[12623,24472,4170,6659],"delegation":[11623,23472,3170,5659],"delegatorTokens":9999999900681,"jailed":[1000000000000023,null,null,null],"status":["unbonding","bonded","unbonding","bonded"]}},{"ix":168,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":17,"t":102,"tokens":[12623,24472,4170,6659],"delegation":[11623,23472,3170,5659],"delegatorTokens":9999999900681,"jailed":[1000000000000023,null,null,null],"status":["unbonding","bonded","unbonding","bonded"]}},{"ix":169,"action":{"kind":"Deliver","chain":"provider","numPackets":5},"partialState":{"h":17,"t":102,"tokens":[12623,24472,4170,6659],"delegation":[11623,23472,3170,5659],"delegatorTokens":9999999900681,"jailed":[1000000000000023,null,null,null],"status":["unbonding","bonded","unbonding","bonded"]}},{"ix":170,"action":{"kind":"Undelegate","val":1,"amt":4262},"partialState":{"h":17,"t":102,"tokens":[12623,20210,4170,6659],"delegation":[11623,19210,3170,5659],"delegatorTokens":9999999900681}},{"ix":171,"action":{"kind":"Delegate","val":2,"amt":2258},"partialState":{"h":17,"t":102,"tokens":[12623,20210,6428,6659],"delegation":[11623,19210,5428,5659],"delegatorTokens":9999999898423}},{"ix":172,"action":{"kind":"Deliver","chain":"provider","numPackets":6},"partialState":{"h":17,"t":102,"tokens":[12623,20210,6428,6659],"delegation":[11623,19210,5428,5659],"delegatorTokens":9999999898423,"jailed":[1000000000000023,null,null,null],"status":["unbonding","bonded","unbonding","bonded"]}},{"ix":173,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":14,"t":84,"consumerPower":[null,5566,1253,null],"outstandingDowntime":[false,false,true,true]}},{"ix":174,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":18,"t":108,"tokens":[12623,20210,6428,6659],"delegation":[11623,19210,5428,5659],"delegatorTokens":9999999898423,"jailed":[1000000000000023,null,null,null],"status":["unbonding","bonded","unbonding","bonded"]}},{"ix":175,"action":{"kind":"Delegate","val":1,"amt":2060},"partialState":{"h":18,"t":108,"tokens":[12623,22270,6428,6659],"delegation":[11623,21270,5428,5659],"delegatorTokens":9999999896363}},{"ix":176,"action":{"kind":"Deliver","chain":"provider","numPackets":6},"partialState":{"h":18,"t":108,"tokens":[12623,22270,6428,6659],"delegation":[11623,21270,5428,5659],"delegatorTokens":9999999896363,"jailed":[1000000000000023,null,null,null],"status":["unbonding","bonded","unbonding","bonded"]}},{"ix":177,"action":{"kind":"Deliver","chain":"provider","numPackets":1},"partialState":{"h":18,"t":108,"tokens":[12623,22270,6428,6659],"delegation":[11623,21270,5428,5659],"delegatorTokens":9999999896363,"jailed":[1000000000000023,null,null,null],"status":["unbonding","bonded","unbonding","bonded"]}},{"ix":178,"action":{"kind":"Undelegate","val":3,"amt":1195},"partialState":{"h":18,"t":108,"tokens":[12623,22270,6428,5464],"delegation":[11623,21270,5428,4464],"delegatorTokens":9999999896363}},{"ix":179,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":180,"action":{"kind":"Deliver","chain":"consumer","numPackets":3},"partialState":{"h":14,"t":84,"consumerPower":[null,5566,1253,null],"outstandingDowntime":[false,false,true,true]}},{"ix":181,"action":{"kind":"Deliver","chain":"provider","numPackets":6},"partialState":{"h":18,"t":108,"tokens":[12623,22270,6428,5464],"delegation":[11623,21270,5428,4464],"delegatorTokens":9999999896363,"jailed":[1000000000000023,null,null,null],"status":["unbonding","bonded","unbonding","bonded"]}},{"ix":182,"action":{"kind":"Undelegate","val":2,"amt":3462},"partialState":{"h":18,"t":108,"tokens":[12623,22270,2966,5464],"delegation":[11623,21270,1966,4464],"delegatorTokens":9999999896363}},{"ix":183,"action":{"kind":"Deliver","chain":"provider","numPackets":3},"partialState":{"h":18,"t":108,"tokens":[12623,22270,2966,5464],"delegation":[11623,21270,1966,4464],"delegatorTokens":9999999896363,"jailed":[1000000000000023,null,null,null],"status":["unbonding","bonded","unbonding","bonded"]}},{"ix":184,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":185,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":19,"t":114,"tokens":[12623,22270,2966,5464],"delegation":[11623,21270,1966,4464],"delegatorTokens":9999999896363,"jailed":[1000000000000023,null,null,null],"status":["unbonding","bonded","unbonding","bonded"]}},{"ix":186,"action":{"kind":"Delegate","val":2,"amt":3742},"partialState":{"h":19,"t":114,"tokens":[12623,22270,6708,5464],"delegation":[11623,21270,5708,4464],"delegatorTokens":9999999892621}},{"ix":187,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":188,"action":{"kind":"Delegate","val":1,"amt":4575},"partialState":{"h":19,"t":114,"tokens":[12623,26845,6708,5464],"delegation":[11623,25845,5708,4464],"delegatorTokens":9999999888046}},{"ix":189,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":15,"t":90,"consumerPower":[null,22261,null,8962],"outstandingDowntime":[false,false,true,true]}},{"ix":190,"action":{"kind":"Delegate","val":2,"amt":4583},"partialState":{"h":19,"t":114,"tokens":[12623,26845,11291,5464],"delegation":[11623,25845,10291,4464],"delegatorTokens":9999999883463}},{"ix":191,"action":{"kind":"Undelegate","val":1,"amt":4337},"partialState":{"h":19,"t":114,"tokens":[12623,22508,11291,5464],"delegation":[11623,21508,10291,4464],"delegatorTokens":9999999883463}},{"ix":192,"action":{"kind":"Delegate","val":1,"amt":3346},"partialState":{"h":19,"t":114,"tokens":[12623,25854,11291,5464],"delegation":[11623,24854,10291,4464],"delegatorTokens":9999999880117}},{"ix":193,"action":{"kind":"Undelegate","val":0,"amt":2900},"partialState":{"h":19,"t":114,"tokens":[9723,25854,11291,5464],"delegation":[8723,24854,10291,4464],"delegatorTokens":9999999880117}},{"ix":194,"action":{"kind":"Deliver","chain":"consumer","numPackets":5},"partialState":{"h":15,"t":90,"consumerPower":[null,22261,null,8962],"outstandingDowntime":[false,false,true,true]}},{"ix":195,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":20,"t":120,"tokens":[9723,25854,11291,5464],"delegation":[8723,24854,10291,4464],"delegatorTokens":9999999880117,"jailed":[1000000000000023,null,null,null],"status":["unbonding","bonded","bonded","unbonding"]}},{"ix":196,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":16,"t":96,"consumerPower":[null,20210,null,6659],"outstandingDowntime":[false,false,true,true]}},{"ix":197,"action":{"kind":"Undelegate","val":0,"amt":2938},"partialState":{"h":20,"t":120,"tokens":[6785,25854,11291,5464],"delegation":[5785,24854,10291,4464],"delegatorTokens":9999999880117}},{"ix":198,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":21,"t":126,"tokens":[6785,25854,11291,5464],"delegation":[5785,24854,10291,4464],"delegatorTokens":9999999880117,"jailed":[1000000000000023,null,null,null],"status":["unbonding","bonded","bonded","unbonding"]}},{"ix":199,"action":{"kind":"Undelegate","val":1,"amt":1185},"partialState":{"h":21,"t":126,"tokens":[6785,24669,11291,5464],"delegation":[5785,23669,10291,4464],"delegatorTokens":9999999880117}}],"events":["send_downtime_slash_request","send_double_sign_slash_request","insufficient_shares","insufficient_shares","send_downtime_slash_request","downtime_slash_request_outstanding","downtime_slash_request_outstanding","send_double_sign_slash_request","send_downtime_slash_request","insufficient_shares","send_vsc_without_downtime_ack","insufficient_shares","insufficient_shares","insufficient_shares","receive_double_sign_slash_request","receive_double_sign_slash_request","insufficient_shares","receive_downtime_slash_request","jail","receive_slash_request_unbonded","receive_slash_request_unbonded","send_vsc_with_downtime_ack","consumer_update_val","more_than_one_third_val_power_change","send_vsc_without_downtime_ack","send_vsc_without_downtime_ack","send_vsc_without_downtime_ack","insufficient_shares","receive_downtime_slash_ack","insufficient_shares","rebond_unval","send_vsc_without_downtime_ack","insufficient_shares","rebond_unval","send_vsc_without_downtime_ack","send_vsc_without_downtime_ack","insufficient_shares","more_than_one_third_val_power_change","rebond_unval","send_vsc_without_downtime_ack","insufficient_shares","consumer_del_val","consumer_update_val","consumer_del_val","consumer_add_val","send_vsc_without_downtime_ack","some_undels_expired_but_not_completed","send_vsc_without_downtime_ack","some_undels_expired_but_not_completed","send_vsc_without_downtime_ack","some_undels_expired_but_not_completed","send_vsc_without_downtime_ack","send_vsc_without_downtime_ack","consumer_del_val","consumer_add_val","consumer_update_val","rebond_unval","some_undels_expired_but_not_completed","send_vsc_without_downtime_ack","consumer_update_val","consumer_update_val","send_vsc_not_because_change","send_vsc_without_downtime_ack"]},{"meta":{"commit":"7ffd0c04e4205cbc9caf212abfe6c59ee43153bf"},"constants":{"P":"provider","C":"consumer","UNBONDING_SECONDS_P":70,"UNBONDING_SECONDS_C":50,"TRUSTING_SECONDS":49,"NUM_VALIDATORS":4,"MAX_VALIDATORS":2,"SLASH_DOUBLESIGN":0,"SLASH_DOWNTIME":0,"JAIL_SECONDS":999999999999999,"BLOCK_SECONDS":6,"INITIAL_DELEGATOR_TOKENS":10000000000000,"DELEGATE_AMT_MIN":1000,"DELEGATE_AMT_MAX":5000,"UNDELEGATE_AMT_MIN":1000,"UNDELEGATE_AMT_MAX":5000,"ISDOWNTIME_PROBABILITY":0.5,"MAX_NUM_PACKETS_FOR_DELIVER":6},"actions":[{"ix":0,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":2,"t":12,"tokens":[5000,4000,3000,2000],"delegation":[4000,3000,2000,1000],"delegatorTokens":10000000000000,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":1,"action":{"kind":"ConsumerSlash","val":0,"infractionHeight":0,"isDowntime":true},"partialState":{"h":1,"t":6,"outstandingDowntime":[true,false,false,false]}},{"ix":2,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":3,"t":18,"tokens":[5000,4000,3000,2000],"delegation":[4000,3000,2000,1000],"delegatorTokens":10000000000000,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":3,"action":{"kind":"Delegate","val":0,"amt":1449},"partialState":{"h":3,"t":18,"tokens":[6449,4000,3000,2000],"delegation":[5449,3000,2000,1000],"delegatorTokens":9999999998551}},{"ix":4,"action":{"kind":"ConsumerSlash","val":3,"infractionHeight":0,"isDowntime":true},"partialState":{"h":1,"t":6,"outstandingDowntime":[true,false,false,true]}},{"ix":5,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":6,"action":{"kind":"Deliver","chain":"provider","numPackets":2},"partialState":{"h":3,"t":18,"tokens":[6449,4000,3000,2000],"delegation":[5449,3000,2000,1000],"delegatorTokens":9999999998551,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":7,"action":{"kind":"ConsumerSlash","val":3,"infractionHeight":0,"isDowntime":true},"partialState":{"h":1,"t":6,"outstandingDowntime":[true,false,false,true]}},{"ix":8,"action":{"kind":"Undelegate","val":3,"amt":1265},"partialState":{"h":3,"t":18,"tokens":[6449,4000,3000,2000],"delegation":[5449,3000,2000,1000],"delegatorTokens":9999999998551}},{"ix":9,"action":{"kind":"ConsumerSlash","val":0,"infractionHeight":0,"isDowntime":false},"partialState":{"h":1,"t":6,"outstandingDowntime":[true,false,false,true]}},{"ix":10,"action":{"kind":"ConsumerSlash","val":0,"infractionHeight":0,"isDowntime":true},"partialState":{"h":1,"t":6,"outstandingDowntime":[true,false,false,true]}},{"ix":11,"action":{"kind":"ConsumerSlash","val":3,"infractionHeight":0,"isDowntime":false},"partialState":{"h":1,"t":6,"outstandingDowntime":[true,false,false,true]}},{"ix":12,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":4,"t":24,"tokens":[6449,4000,3000,2000],"delegation":[5449,3000,2000,1000],"delegatorTokens":9999999998551,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":13,"action":{"kind":"Undelegate","val":2,"amt":1773},"partialState":{"h":4,"t":24,"tokens":[6449,4000,1227,2000],"delegation":[5449,3000,227,1000],"delegatorTokens":9999999998551}},{"ix":14,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":15,"action":{"kind":"Undelegate","val":3,"amt":1650},"partialState":{"h":4,"t":24,"tokens":[6449,4000,1227,2000],"delegation":[5449,3000,227,1000],"delegatorTokens":9999999998551}},{"ix":16,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":17,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":18,"action":{"kind":"Deliver","chain":"consumer","numPackets":3},"partialState":{"h":1,"t":6,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[true,false,false,true]}},{"ix":19,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":2,"t":12,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[true,false,false,true]}},{"ix":20,"action":{"kind":"Deliver","chain":"provider","numPackets":6},"partialState":{"h":4,"t":24,"tokens":[6449,4000,1227,2000],"delegation":[5449,3000,227,1000],"delegatorTokens":9999999998551,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":21,"action":{"kind":"Deliver","chain":"provider","numPackets":4},"partialState":{"h":4,"t":24,"tokens":[6449,4000,1227,2000],"delegation":[5449,3000,227,1000],"delegatorTokens":9999999998551,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":22,"action":{"kind":"Deliver","chain":"consumer","numPackets":6},"partialState":{"h":2,"t":12,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[true,false,false,true]}},{"ix":23,"action":{"kind":"Delegate","val":3,"amt":4054},"partialState":{"h":4,"t":24,"tokens":[6449,4000,1227,6054],"delegation":[5449,3000,227,5054],"delegatorTokens":9999999994497}},{"ix":24,"action":{"kind":"Undelegate","val":3,"amt":1896},"partialState":{"h":4,"t":24,"tokens":[6449,4000,1227,4158],"delegation":[5449,3000,227,3158],"delegatorTokens":9999999994497}},{"ix":25,"action":{"kind":"Deliver","chain":"consumer","numPackets":2},"partialState":{"h":2,"t":12,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[true,false,false,true]}},{"ix":26,"action":{"kind":"Delegate","val":0,"amt":3881},"partialState":{"h":4,"t":24,"tokens":[10330,4000,1227,4158],"delegation":[9330,3000,227,3158],"delegatorTokens":9999999990616}},{"ix":27,"action":{"kind":"ConsumerSlash","val":2,"infractionHeight":1,"isDowntime":true},"partialState":{"h":2,"t":12,"outstandingDowntime":[true,false,true,true]}},{"ix":28,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":3,"t":18,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[true,false,true,true]}},{"ix":29,"action":{"kind":"Delegate","val":1,"amt":4632},"partialState":{"h":4,"t":24,"tokens":[10330,8632,1227,4158],"delegation":[9330,7632,227,3158],"delegatorTokens":9999999985984}},{"ix":30,"action":{"kind":"Delegate","val":2,"amt":2980},"partialState":{"h":4,"t":24,"tokens":[10330,8632,4207,4158],"delegation":[9330,7632,3207,3158],"delegatorTokens":9999999983004}},{"ix":31,"action":{"kind":"Delegate","val":3,"amt":1400},"partialState":{"h":4,"t":24,"tokens":[10330,8632,4207,5558],"delegation":[9330,7632,3207,4558],"delegatorTokens":9999999981604}},{"ix":32,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":33,"action":{"kind":"Delegate","val":2,"amt":1193},"partialState":{"h":4,"t":24,"tokens":[10330,8632,5400,5558],"delegation":[9330,7632,4400,4558],"delegatorTokens":9999999980411}},{"ix":34,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":35,"action":{"kind":"Deliver","chain":"provider","numPackets":5},"partialState":{"h":4,"t":24,"tokens":[10330,8632,5400,5558],"delegation":[9330,7632,4400,4558],"delegatorTokens":9999999980411,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":36,"action":{"kind":"Delegate","val":1,"amt":3610},"partialState":{"h":4,"t":24,"tokens":[10330,12242,5400,5558],"delegation":[9330,11242,4400,4558],"delegatorTokens":9999999976801}},{"ix":37,"action":{"kind":"Deliver","chain":"consumer","numPackets":4},"partialState":{"h":3,"t":18,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[true,false,true,true]}},{"ix":38,"action":{"kind":"Undelegate","val":1,"amt":3816},"partialState":{"h":4,"t":24,"tokens":[10330,8426,5400,5558],"delegation":[9330,7426,4400,4558],"delegatorTokens":9999999976801}},{"ix":39,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":40,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":5,"t":30,"tokens":[10330,8426,5400,5558],"delegation":[9330,7426,4400,4558],"delegatorTokens":9999999976801,"jailed":[1000000000000023,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":41,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":6,"t":36,"tokens":[10330,8426,5400,5558],"delegation":[9330,7426,4400,4558],"delegatorTokens":9999999976801,"jailed":[1000000000000023,null,null,null],"status":["unbonding","bonded","unbonded","bonded"]}},{"ix":42,"action":{"kind":"Undelegate","val":3,"amt":1313},"partialState":{"h":6,"t":36,"tokens":[10330,8426,5400,4245],"delegation":[9330,7426,4400,3245],"delegatorTokens":9999999976801}},{"ix":43,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":44,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":45,"action":{"kind":"Delegate","val":3,"amt":1317},"partialState":{"h":6,"t":36,"tokens":[10330,8426,5400,5562],"delegation":[9330,7426,4400,4562],"delegatorTokens":9999999975484}},{"ix":46,"action":{"kind":"Deliver","chain":"provider","numPackets":6},"partialState":{"h":6,"t":36,"tokens":[10330,8426,5400,5562],"delegation":[9330,7426,4400,4562],"delegatorTokens":9999999975484,"jailed":[1000000000000023,null,null,null],"status":["unbonding","bonded","unbonded","bonded"]}},{"ix":47,"action":{"kind":"Delegate","val":2,"amt":4449},"partialState":{"h":6,"t":36,"tokens":[10330,8426,9849,5562],"delegation":[9330,7426,8849,4562],"delegatorTokens":9999999971035}},{"ix":48,"action":{"kind":"Delegate","val":0,"amt":2142},"partialState":{"h":6,"t":36,"tokens":[12472,8426,9849,5562],"delegation":[11472,7426,8849,4562],"delegatorTokens":9999999968893}},{"ix":49,"action":{"kind":"Deliver","chain":"consumer","numPackets":6},"partialState":{"h":3,"t":18,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,false,true,true]}},{"ix":50,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":51,"action":{"kind":"Deliver","chain":"provider","numPackets":2},"partialState":{"h":6,"t":36,"tokens":[12472,8426,9849,5562],"delegation":[11472,7426,8849,4562],"delegatorTokens":9999999968893,"jailed":[1000000000000023,null,null,null],"status":["unbonding","bonded","unbonded","bonded"]}},{"ix":52,"action":{"kind":"Deliver","chain":"provider","numPackets":3},"partialState":{"h":6,"t":36,"tokens":[12472,8426,9849,5562],"delegation":[11472,7426,8849,4562],"delegatorTokens":9999999968893,"jailed":[1000000000000023,null,null,null],"status":["unbonding","bonded","unbonded","bonded"]}},{"ix":53,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":54,"action":{"kind":"Undelegate","val":2,"amt":1277},"partialState":{"h":6,"t":36,"tokens":[12472,8426,8572,5562],"delegation":[11472,7426,7572,4562],"delegatorTokens":9999999968893}},{"ix":55,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":56,"action":{"kind":"Undelegate","val":3,"amt":3445},"partialState":{"h":6,"t":36,"tokens":[12472,8426,8572,2117],"delegation":[11472,7426,7572,1117],"delegatorTokens":9999999968893}},{"ix":57,"action":{"kind":"Deliver","chain":"consumer","numPackets":6},"partialState":{"h":3,"t":18,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,false,true,true]}},{"ix":58,"action":{"kind":"Deliver","chain":"consumer","numPackets":5},"partialState":{"h":3,"t":18,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,false,true,true]}},{"ix":59,"action":{"kind":"Delegate","val":3,"amt":2985},"partialState":{"h":6,"t":36,"tokens":[12472,8426,8572,5102],"delegation":[11472,7426,7572,4102],"delegatorTokens":9999999965908}},{"ix":60,"action":{"kind":"Undelegate","val":2,"amt":3830},"partialState":{"h":6,"t":36,"tokens":[12472,8426,4742,5102],"delegation":[11472,7426,3742,4102],"delegatorTokens":9999999965908}},{"ix":61,"action":{"kind":"Delegate","val":0,"amt":2410},"partialState":{"h":6,"t":36,"tokens":[14882,8426,4742,5102],"delegation":[13882,7426,3742,4102],"delegatorTokens":9999999963498}},{"ix":62,"action":{"kind":"Undelegate","val":2,"amt":3822},"partialState":{"h":6,"t":36,"tokens":[14882,8426,4742,5102],"delegation":[13882,7426,3742,4102],"delegatorTokens":9999999963498}},{"ix":63,"action":{"kind":"Undelegate","val":0,"amt":4609},"partialState":{"h":6,"t":36,"tokens":[10273,8426,4742,5102],"delegation":[9273,7426,3742,4102],"delegatorTokens":9999999963498}},{"ix":64,"action":{"kind":"Deliver","chain":"provider","numPackets":4},"partialState":{"h":6,"t":36,"tokens":[10273,8426,4742,5102],"delegation":[9273,7426,3742,4102],"delegatorTokens":9999999963498,"jailed":[1000000000000023,null,null,null],"status":["unbonding","bonded","unbonded","bonded"]}},{"ix":65,"action":{"kind":"Delegate","val":2,"amt":1748},"partialState":{"h":6,"t":36,"tokens":[10273,8426,6490,5102],"delegation":[9273,7426,5490,4102],"delegatorTokens":9999999961750}},{"ix":66,"action":{"kind":"Deliver","chain":"consumer","numPackets":5},"partialState":{"h":3,"t":18,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,false,true,true]}},{"ix":67,"action":{"kind":"Deliver","chain":"provider","numPackets":3},"partialState":{"h":6,"t":36,"tokens":[10273,8426,6490,5102],"delegation":[9273,7426,5490,4102],"delegatorTokens":9999999961750,"jailed":[1000000000000023,null,null,null],"status":["unbonding","bonded","unbonded","bonded"]}},{"ix":68,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":4,"t":24,"consumerPower":[10330,8426,null,null],"outstandingDowntime":[false,false,true,true]}},{"ix":69,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":70,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":71,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":72,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":5,"t":30,"consumerPower":[10330,8426,null,null],"outstandingDowntime":[false,false,true,true]}},{"ix":73,"action":{"kind":"Delegate","val":0,"amt":2865},"partialState":{"h":6,"t":36,"tokens":[13138,8426,6490,5102],"delegation":[12138,7426,5490,4102],"delegatorTokens":9999999958885}},{"ix":74,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":75,"action":{"kind":"Deliver","chain":"provider","numPackets":3},"partialState":{"h":6,"t":36,"tokens":[13138,8426,6490,5102],"delegation":[12138,7426,5490,4102],"delegatorTokens":9999999958885,"jailed":[1000000000000023,null,null,null],"status":["unbonding","bonded","unbonded","bonded"]}},{"ix":76,"action":{"kind":"Delegate","val":2,"amt":1412},"partialState":{"h":6,"t":36,"tokens":[13138,8426,7902,5102],"delegation":[12138,7426,6902,4102],"delegatorTokens":9999999957473}},{"ix":77,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":78,"action":{"kind":"Delegate","val":3,"amt":1372},"partialState":{"h":6,"t":36,"tokens":[13138,8426,7902,6474],"delegation":[12138,7426,6902,5474],"delegatorTokens":9999999956101}},{"ix":79,"action":{"kind":"Undelegate","val":1,"amt":1159},"partialState":{"h":6,"t":36,"tokens":[13138,7267,7902,6474],"delegation":[12138,6267,6902,5474],"delegatorTokens":9999999956101}},{"ix":80,"action":{"kind":"Deliver","chain":"provider","numPackets":3},"partialState":{"h":6,"t":36,"tokens":[13138,7267,7902,6474],"delegation":[12138,6267,6902,5474],"delegatorTokens":9999999956101,"jailed":[1000000000000023,null,null,null],"status":["unbonding","bonded","unbonded","bonded"]}},{"ix":81,"action":{"kind":"Deliver","chain":"provider","numPackets":1},"partialState":{"h":6,"t":36,"tokens":[13138,7267,7902,6474],"delegation":[12138,6267,6902,5474],"delegatorTokens":9999999956101,"jailed":[1000000000000023,null,null,null],"status":["unbonding","bonded","unbonded","bonded"]}},{"ix":82,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":6,"t":36,"consumerPower":[10330,8426,null,null],"outstandingDowntime":[false,false,true,true]}},{"ix":83,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":7,"t":42,"consumerPower":[10330,8426,null,null],"outstandingDowntime":[false,false,true,true]}},{"ix":84,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":85,"action":{"kind":"Undelegate","val":2,"amt":2277},"partialState":{"h":6,"t":36,"tokens":[13138,7267,5625,6474],"delegation":[12138,6267,4625,5474],"delegatorTokens":9999999956101}},{"ix":86,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":7,"t":42,"tokens":[13138,7267,5625,6474],"delegation":[12138,6267,4625,5474],"delegatorTokens":9999999956101,"jailed":[1000000000000023,null,null,null],"status":["unbonding","bonded","unbonded","bonded"]}},{"ix":87,"action":{"kind":"Undelegate","val":3,"amt":4749},"partialState":{"h":7,"t":42,"tokens":[13138,7267,5625,1725],"delegation":[12138,6267,4625,725],"delegatorTokens":9999999956101}},{"ix":88,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":8,"t":48,"consumerPower":[10330,8426,null,null],"outstandingDowntime":[false,false,true,true]}},{"ix":89,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":9,"t":54,"consumerPower":[10330,8426,null,null],"outstandingDowntime":[false,false,true,true]}},{"ix":90,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":8,"t":48,"tokens":[13138,7267,5625,1725],"delegation":[12138,6267,4625,725],"delegatorTokens":9999999956101,"jailed":[1000000000000023,null,null,null],"status":["unbonding","bonded","bonded","unbonding"]}},{"ix":91,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":9,"t":54,"tokens":[13138,7267,5625,1725],"delegation":[12138,6267,4625,725],"delegatorTokens":9999999956101,"jailed":[1000000000000023,null,null,null],"status":["unbonding","bonded","bonded","unbonding"]}},{"ix":92,"action":{"kind":"Delegate","val":2,"amt":2911},"partialState":{"h":9,"t":54,"tokens":[13138,7267,8536,1725],"delegation":[12138,6267,7536,725],"delegatorTokens":9999999953190}},{"ix":93,"action":{"kind":"Undelegate","val":1,"amt":4953},"partialState":{"h":9,"t":54,"tokens":[13138,2314,8536,1725],"delegation":[12138,1314,7536,725],"delegatorTokens":9999999953190}},{"ix":94,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":95,"action":{"kind":"Undelegate","val":2,"amt":3759},"partialState":{"h":9,"t":54,"tokens":[13138,2314,4777,1725],"delegation":[12138,1314,3777,725],"delegatorTokens":9999999953190}},{"ix":96,"action":{"kind":"Delegate","val":2,"amt":1211},"partialState":{"h":9,"t":54,"tokens":[13138,2314,5988,1725],"delegation":[12138,1314,4988,725],"delegatorTokens":9999999951979}},{"ix":97,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":98,"action":{"kind":"Deliver","chain":"consumer","numPackets":4},"partialState":{"h":9,"t":54,"consumerPower":[10330,8426,null,null],"outstandingDowntime":[false,false,true,true]}},{"ix":99,"action":{"kind":"Undelegate","val":2,"amt":2624},"partialState":{"h":9,"t":54,"tokens":[13138,2314,3364,1725],"delegation":[12138,1314,2364,725],"delegatorTokens":9999999951979}},{"ix":100,"action":{"kind":"Delegate","val":3,"amt":4177},"partialState":{"h":9,"t":54,"tokens":[13138,2314,3364,5902],"delegation":[12138,1314,2364,4902],"delegatorTokens":9999999947802}},{"ix":101,"action":{"kind":"Delegate","val":0,"amt":3546},"partialState":{"h":9,"t":54,"tokens":[16684,2314,3364,5902],"delegation":[15684,1314,2364,4902],"delegatorTokens":9999999944256}},{"ix":102,"action":{"kind":"Undelegate","val":0,"amt":4726},"partialState":{"h":9,"t":54,"tokens":[11958,2314,3364,5902],"delegation":[10958,1314,2364,4902],"delegatorTokens":9999999944256}},{"ix":103,"action":{"kind":"Undelegate","val":3,"amt":1160},"partialState":{"h":9,"t":54,"tokens":[11958,2314,3364,4742],"delegation":[10958,1314,2364,3742],"delegatorTokens":9999999944256}},{"ix":104,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":105,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":106,"action":{"kind":"Deliver","chain":"consumer","numPackets":2},"partialState":{"h":9,"t":54,"consumerPower":[10330,8426,null,null],"outstandingDowntime":[false,false,true,true]}},{"ix":107,"action":{"kind":"Deliver","chain":"provider","numPackets":3},"partialState":{"h":9,"t":54,"tokens":[11958,2314,3364,4742],"delegation":[10958,1314,2364,3742],"delegatorTokens":9999999944256,"jailed":[1000000000000023,null,null,null],"status":["unbonding","bonded","bonded","unbonding"]}},{"ix":108,"action":{"kind":"Undelegate","val":1,"amt":3747},"partialState":{"h":9,"t":54,"tokens":[11958,2314,3364,4742],"delegation":[10958,1314,2364,3742],"delegatorTokens":9999999944256}},{"ix":109,"action":{"kind":"Delegate","val":0,"amt":3388},"partialState":{"h":9,"t":54,"tokens":[15346,2314,3364,4742],"delegation":[14346,1314,2364,3742],"delegatorTokens":9999999940868}},{"ix":110,"action":{"kind":"Delegate","val":2,"amt":4856},"partialState":{"h":9,"t":54,"tokens":[15346,2314,8220,4742],"delegation":[14346,1314,7220,3742],"delegatorTokens":9999999936012}},{"ix":111,"action":{"kind":"Deliver","chain":"consumer","numPackets":1},"partialState":{"h":9,"t":54,"consumerPower":[10330,8426,null,null],"outstandingDowntime":[false,false,true,true]}},{"ix":112,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":113,"action":{"kind":"Delegate","val":0,"amt":1990},"partialState":{"h":9,"t":54,"tokens":[17336,2314,8220,4742],"delegation":[16336,1314,7220,3742],"delegatorTokens":9999999934022}},{"ix":114,"action":{"kind":"Undelegate","val":2,"amt":4039},"partialState":{"h":9,"t":54,"tokens":[17336,2314,4181,4742],"delegation":[16336,1314,3181,3742],"delegatorTokens":9999999934022}},{"ix":115,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":116,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":10,"t":60,"tokens":[17336,2314,4181,4742],"delegation":[16336,1314,3181,3742],"delegatorTokens":9999999934022,"jailed":[1000000000000023,null,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":117,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":10,"t":60,"consumerPower":[null,7267,5625,null],"outstandingDowntime":[false,false,true,true]}},{"ix":118,"action":{"kind":"Undelegate","val":0,"amt":3934},"partialState":{"h":10,"t":60,"tokens":[13402,2314,4181,4742],"delegation":[12402,1314,3181,3742],"delegatorTokens":9999999934022}},{"ix":119,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":11,"t":66,"consumerPower":[null,7267,5625,null],"outstandingDowntime":[false,false,true,true]}},{"ix":120,"action":{"kind":"Delegate","val":0,"amt":3813},"partialState":{"h":10,"t":60,"tokens":[17215,2314,4181,4742],"delegation":[16215,1314,3181,3742],"delegatorTokens":9999999930209}},{"ix":121,"action":{"kind":"Delegate","val":0,"amt":3720},"partialState":{"h":10,"t":60,"tokens":[20935,2314,4181,4742],"delegation":[19935,1314,3181,3742],"delegatorTokens":9999999926489}},{"ix":122,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":11,"t":66,"tokens":[20935,2314,4181,4742],"delegation":[19935,1314,3181,3742],"delegatorTokens":9999999926489,"jailed":[1000000000000023,null,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":123,"action":{"kind":"Delegate","val":3,"amt":2524},"partialState":{"h":11,"t":66,"tokens":[20935,2314,4181,7266],"delegation":[19935,1314,3181,6266],"delegatorTokens":9999999923965}},{"ix":124,"action":{"kind":"Undelegate","val":1,"amt":4416},"partialState":{"h":11,"t":66,"tokens":[20935,2314,4181,7266],"delegation":[19935,1314,3181,6266],"delegatorTokens":9999999923965}},{"ix":125,"action":{"kind":"Deliver","chain":"consumer","numPackets":1},"partialState":{"h":11,"t":66,"consumerPower":[null,7267,5625,null],"outstandingDowntime":[false,false,true,true]}},{"ix":126,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":127,"action":{"kind":"Undelegate","val":3,"amt":4791},"partialState":{"h":11,"t":66,"tokens":[20935,2314,4181,2475],"delegation":[19935,1314,3181,1475],"delegatorTokens":9999999923965}},{"ix":128,"action":{"kind":"Deliver","chain":"consumer","numPackets":3},"partialState":{"h":11,"t":66,"consumerPower":[null,7267,5625,null],"outstandingDowntime":[false,false,true,true]}},{"ix":129,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":130,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":131,"action":{"kind":"Deliver","chain":"consumer","numPackets":4},"partialState":{"h":11,"t":66,"consumerPower":[null,7267,5625,null],"outstandingDowntime":[false,false,true,true]}},{"ix":132,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":12,"t":72,"consumerPower":[null,null,4181,4742],"outstandingDowntime":[false,false,true,true]}},{"ix":133,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":134,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":135,"action":{"kind":"Delegate","val":3,"amt":3584},"partialState":{"h":11,"t":66,"tokens":[20935,2314,4181,6059],"delegation":[19935,1314,3181,5059],"delegatorTokens":9999999920381}},{"ix":136,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":12,"t":72,"tokens":[20935,2314,4181,6059],"delegation":[19935,1314,3181,5059],"delegatorTokens":9999999920381,"jailed":[1000000000000023,null,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":137,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":13,"t":78,"tokens":[20935,2314,4181,6059],"delegation":[19935,1314,3181,5059],"delegatorTokens":9999999920381,"jailed":[1000000000000023,null,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":138,"action":{"kind":"Deliver","chain":"consumer","numPackets":3},"partialState":{"h":12,"t":72,"consumerPower":[null,null,4181,4742],"outstandingDowntime":[false,false,true,true]}},{"ix":139,"action":{"kind":"Undelegate","val":1,"amt":1076},"partialState":{"h":13,"t":78,"tokens":[20935,1238,4181,6059],"delegation":[19935,238,3181,5059],"delegatorTokens":9999999920381}},{"ix":140,"action":{"kind":"Undelegate","val":2,"amt":4713},"partialState":{"h":13,"t":78,"tokens":[20935,1238,4181,6059],"delegation":[19935,238,3181,5059],"delegatorTokens":9999999920381}},{"ix":141,"action":{"kind":"Delegate","val":2,"amt":4013},"partialState":{"h":13,"t":78,"tokens":[20935,1238,8194,6059],"delegation":[19935,238,7194,5059],"delegatorTokens":9999999916368}},{"ix":142,"action":{"kind":"Delegate","val":0,"amt":4856},"partialState":{"h":13,"t":78,"tokens":[25791,1238,8194,6059],"delegation":[24791,238,7194,5059],"delegatorTokens":9999999911512}},{"ix":143,"action":{"kind":"Deliver","chain":"consumer","numPackets":4},"partialState":{"h":12,"t":72,"consumerPower":[null,null,4181,4742],"outstandingDowntime":[false,false,true,true]}},{"ix":144,"action":{"kind":"Deliver","chain":"provider","numPackets":5},"partialState":{"h":13,"t":78,"tokens":[25791,1238,8194,6059],"delegation":[24791,238,7194,5059],"delegatorTokens":9999999911512,"jailed":[1000000000000023,null,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":145,"action":{"kind":"Deliver","chain":"provider","numPackets":3},"partialState":{"h":13,"t":78,"tokens":[25791,1238,8194,6059],"delegation":[24791,238,7194,5059],"delegatorTokens":9999999911512,"jailed":[1000000000000023,null,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":146,"action":{"kind":"Delegate","val":1,"amt":3148},"partialState":{"h":13,"t":78,"tokens":[25791,4386,8194,6059],"delegation":[24791,3386,7194,5059],"delegatorTokens":9999999908364}},{"ix":147,"action":{"kind":"Undelegate","val":1,"amt":4213},"partialState":{"h":13,"t":78,"tokens":[25791,4386,8194,6059],"delegation":[24791,3386,7194,5059],"delegatorTokens":9999999908364}},{"ix":148,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":149,"action":{"kind":"Delegate","val":1,"amt":2297},"partialState":{"h":13,"t":78,"tokens":[25791,6683,8194,6059],"delegation":[24791,5683,7194,5059],"delegatorTokens":9999999906067}},{"ix":150,"action":{"kind":"Delegate","val":0,"amt":4679},"partialState":{"h":13,"t":78,"tokens":[30470,6683,8194,6059],"delegation":[29470,5683,7194,5059],"delegatorTokens":9999999901388}},{"ix":151,"action":{"kind":"Delegate","val":2,"amt":4876},"partialState":{"h":13,"t":78,"tokens":[30470,6683,13070,6059],"delegation":[29470,5683,12070,5059],"delegatorTokens":9999999896512}},{"ix":152,"action":{"kind":"Undelegate","val":3,"amt":3812},"partialState":{"h":13,"t":78,"tokens":[30470,6683,13070,2247],"delegation":[29470,5683,12070,1247],"delegatorTokens":9999999896512}},{"ix":153,"action":{"kind":"Undelegate","val":2,"amt":1933},"partialState":{"h":13,"t":78,"tokens":[30470,6683,11137,2247],"delegation":[29470,5683,10137,1247],"delegatorTokens":9999999896512}},{"ix":154,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":14,"t":84,"tokens":[30470,6683,11137,2247],"delegation":[29470,5683,10137,1247],"delegatorTokens":9999999896512,"jailed":[1000000000000023,null,null,null],"status":["unbonding","bonded","bonded","unbonding"]}},{"ix":155,"action":{"kind":"Undelegate","val":3,"amt":2850},"partialState":{"h":14,"t":84,"tokens":[30470,6683,11137,2247],"delegation":[29470,5683,10137,1247],"delegatorTokens":9999999896512}},{"ix":156,"action":{"kind":"Deliver","chain":"consumer","numPackets":2},"partialState":{"h":12,"t":72,"consumerPower":[null,null,4181,4742],"outstandingDowntime":[false,false,true,true]}},{"ix":157,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":15,"t":90,"tokens":[30470,6683,11137,2247],"delegation":[29470,5683,10137,1247],"delegatorTokens":9999999896512,"jailed":[1000000000000023,null,null,null],"status":["unbonding","bonded","bonded","unbonding"]}},{"ix":158,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":13,"t":78,"consumerPower":[null,null,4181,6059],"outstandingDowntime":[false,false,true,true]}},{"ix":159,"action":{"kind":"Delegate","val":2,"amt":2300},"partialState":{"h":15,"t":90,"tokens":[30470,6683,13437,2247],"delegation":[29470,5683,12437,1247],"delegatorTokens":9999999894212}},{"ix":160,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":16,"t":96,"tokens":[30470,6683,13437,2247],"delegation":[29470,5683,12437,1247],"delegatorTokens":9999999894212,"jailed":[1000000000000023,null,null,null],"status":["unbonding","bonded","bonded","unbonding"]}},{"ix":161,"action":{"kind":"Deliver","chain":"provider","numPackets":3},"partialState":{"h":16,"t":96,"tokens":[30470,6683,13437,2247],"delegation":[29470,5683,12437,1247],"delegatorTokens":9999999894212,"jailed":[1000000000000023,null,null,null],"status":["unbonding","bonded","bonded","unbonding"]}},{"ix":162,"action":{"kind":"Deliver","chain":"provider","numPackets":3},"partialState":{"h":16,"t":96,"tokens":[30470,6683,13437,2247],"delegation":[29470,5683,12437,1247],"delegatorTokens":9999999894212,"jailed":[1000000000000023,null,null,null],"status":["unbonding","bonded","bonded","unbonding"]}},{"ix":163,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":14,"t":84,"consumerPower":[null,null,4181,6059],"outstandingDowntime":[false,false,true,true]}},{"ix":164,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":15,"t":90,"consumerPower":[null,null,4181,6059],"outstandingDowntime":[false,false,true,true]}},{"ix":165,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":17,"t":102,"tokens":[30470,6683,13437,2247],"delegation":[29470,5683,12437,1247],"delegatorTokens":9999999894212,"jailed":[1000000000000023,null,null,null],"status":["unbonding","bonded","bonded","unbonding"]}},{"ix":166,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":16,"t":96,"consumerPower":[null,null,4181,6059],"outstandingDowntime":[false,false,true,true]}},{"ix":167,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":168,"action":{"kind":"Delegate","val":3,"amt":1483},"partialState":{"h":17,"t":102,"tokens":[30470,6683,13437,3730],"delegation":[29470,5683,12437,2730],"delegatorTokens":9999999892729}},{"ix":169,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":170,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":18,"t":108,"tokens":[30470,6683,13437,3730],"delegation":[29470,5683,12437,2730],"delegatorTokens":9999999892729,"jailed":[1000000000000023,null,null,null],"status":["unbonding","bonded","bonded","unbonding"]}},{"ix":171,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":172,"action":{"kind":"Undelegate","val":2,"amt":3976},"partialState":{"h":18,"t":108,"tokens":[30470,6683,9461,3730],"delegation":[29470,5683,8461,2730],"delegatorTokens":9999999892729}},{"ix":173,"action":{"kind":"Delegate","val":1,"amt":4112},"partialState":{"h":18,"t":108,"tokens":[30470,10795,9461,3730],"delegation":[29470,9795,8461,2730],"delegatorTokens":9999999888617}},{"ix":174,"action":{"kind":"Undelegate","val":0,"amt":4575},"partialState":{"h":18,"t":108,"tokens":[25895,10795,9461,3730],"delegation":[24895,9795,8461,2730],"delegatorTokens":9999999888617}},{"ix":175,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":19,"t":114,"tokens":[25895,10795,9461,3730],"delegation":[24895,9795,8461,2730],"delegatorTokens":9999999888617,"jailed":[1000000000000023,null,null,null],"status":["unbonding","bonded","bonded","unbonding"]}},{"ix":176,"action":{"kind":"Deliver","chain":"provider","numPackets":5},"partialState":{"h":19,"t":114,"tokens":[25895,10795,9461,3730],"delegation":[24895,9795,8461,2730],"delegatorTokens":9999999888617,"jailed":[1000000000000023,null,null,null],"status":["unbonding","bonded","bonded","unbonding"]}},{"ix":177,"action":{"kind":"Undelegate","val":0,"amt":4939},"partialState":{"h":19,"t":114,"tokens":[20956,10795,9461,3730],"delegation":[19956,9795,8461,2730],"delegatorTokens":9999999888617}},{"ix":178,"action":{"kind":"Deliver","chain":"provider","numPackets":4},"partialState":{"h":19,"t":114,"tokens":[20956,10795,9461,3730],"delegation":[19956,9795,8461,2730],"delegatorTokens":9999999888617,"jailed":[1000000000000023,null,null,null],"status":["unbonding","bonded","bonded","unbonding"]}},{"ix":179,"action":{"kind":"Delegate","val":2,"amt":3732},"partialState":{"h":19,"t":114,"tokens":[20956,10795,13193,3730],"delegation":[19956,9795,12193,2730],"delegatorTokens":9999999884885}},{"ix":180,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":17,"t":102,"consumerPower":[null,null,4181,6059],"outstandingDowntime":[false,false,true,true]}},{"ix":181,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":20,"t":120,"tokens":[20956,10795,13193,3730],"delegation":[19956,9795,12193,2730],"delegatorTokens":9999999892370,"jailed":[1000000000000023,null,null,null],"status":["unbonding","bonded","bonded","unbonding"]}},{"ix":182,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":18,"t":108,"consumerPower":[null,null,4181,6059],"outstandingDowntime":[false,false,true,true]}},{"ix":183,"action":{"kind":"Undelegate","val":2,"amt":3926},"partialState":{"h":20,"t":120,"tokens":[20956,10795,9267,3730],"delegation":[19956,9795,8267,2730],"delegatorTokens":9999999892370}},{"ix":184,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":19,"t":114,"consumerPower":[null,null,4181,6059],"outstandingDowntime":[false,false,true,true]}},{"ix":185,"action":{"kind":"Deliver","chain":"provider","numPackets":3},"partialState":{"h":20,"t":120,"tokens":[20956,10795,9267,3730],"delegation":[19956,9795,8267,2730],"delegatorTokens":9999999892370,"jailed":[1000000000000023,null,null,null],"status":["unbonding","bonded","bonded","unbonding"]}},{"ix":186,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":187,"action":{"kind":"Undelegate","val":1,"amt":2891},"partialState":{"h":20,"t":120,"tokens":[20956,7904,9267,3730],"delegation":[19956,6904,8267,2730],"delegatorTokens":9999999892370}},{"ix":188,"action":{"kind":"Undelegate","val":1,"amt":4498},"partialState":{"h":20,"t":120,"tokens":[20956,3406,9267,3730],"delegation":[19956,2406,8267,2730],"delegatorTokens":9999999892370}},{"ix":189,"action":{"kind":"Deliver","chain":"provider","numPackets":4},"partialState":{"h":20,"t":120,"tokens":[20956,3406,9267,3730],"delegation":[19956,2406,8267,2730],"delegatorTokens":9999999892370,"jailed":[1000000000000023,null,null,null],"status":["unbonding","bonded","bonded","unbonding"]}},{"ix":190,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":191,"action":{"kind":"Deliver","chain":"consumer","numPackets":1},"partialState":{"h":19,"t":114,"consumerPower":[null,null,4181,6059],"outstandingDowntime":[false,false,true,true]}},{"ix":192,"action":{"kind":"Delegate","val":1,"amt":3326},"partialState":{"h":20,"t":120,"tokens":[20956,6732,9267,3730],"delegation":[19956,5732,8267,2730],"delegatorTokens":9999999889044}},{"ix":193,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":194,"action":{"kind":"Delegate","val":1,"amt":1323},"partialState":{"h":20,"t":120,"tokens":[20956,8055,9267,3730],"delegation":[19956,7055,8267,2730],"delegatorTokens":9999999887721}},{"ix":195,"action":{"kind":"Undelegate","val":3,"amt":4924},"partialState":{"h":20,"t":120,"tokens":[20956,8055,9267,3730],"delegation":[19956,7055,8267,2730],"delegatorTokens":9999999887721}},{"ix":196,"action":{"kind":"Deliver","chain":"consumer","numPackets":3},"partialState":{"h":19,"t":114,"consumerPower":[null,null,4181,6059],"outstandingDowntime":[false,false,true,true]}},{"ix":197,"action":{"kind":"Delegate","val":2,"amt":2273},"partialState":{"h":20,"t":120,"tokens":[20956,8055,11540,3730],"delegation":[19956,7055,10540,2730],"delegatorTokens":9999999885448}},{"ix":198,"action":{"kind":"Deliver","chain":"consumer","numPackets":4},"partialState":{"h":19,"t":114,"consumerPower":[null,null,4181,6059],"outstandingDowntime":[false,false,true,true]}},{"ix":199,"action":{"kind":"Undelegate","val":3,"amt":4839},"partialState":{"h":20,"t":120,"tokens":[20956,8055,11540,3730],"delegation":[19956,7055,10540,2730],"delegatorTokens":9999999885448}}],"events":["send_downtime_slash_request","send_downtime_slash_request","downtime_slash_request_outstanding","insufficient_shares","send_double_sign_slash_request","downtime_slash_request_outstanding","send_double_sign_slash_request","send_vsc_without_downtime_ack","insufficient_shares","send_downtime_slash_request","receive_double_sign_slash_request","receive_double_sign_slash_request","receive_downtime_slash_request","jail","receive_slash_request_unbonded","send_vsc_with_downtime_ack","more_than_one_third_val_power_change","send_vsc_without_downtime_ack","receive_downtime_slash_ack","insufficient_shares","consumer_update_val","consumer_update_val","receive_slash_request_unbonded","send_vsc_without_downtime_ack","more_than_one_third_val_power_change","send_vsc_without_downtime_ack","insufficient_shares","more_than_one_third_val_power_change","rebond_unval","send_vsc_without_downtime_ack","consumer_del_val","consumer_del_val","consumer_update_val","consumer_add_val","send_vsc_not_because_change","send_vsc_without_downtime_ack","insufficient_shares","consumer_del_val","consumer_update_val","consumer_add_val","send_vsc_without_downtime_ack","insufficient_shares","insufficient_shares","more_than_one_third_val_power_change","rebond_unval","send_vsc_without_downtime_ack","insufficient_shares","consumer_send_maturation","consumer_send_maturation","consumer_update_val","send_vsc_without_downtime_ack","some_undels_expired_but_not_completed","some_undels_expired_but_not_completed","send_vsc_without_downtime_ack","some_undels_expired_but_not_completed","complete_undel_immediate","complete_undel_immediate","complete_undel_immediate","send_vsc_without_downtime_ack","consumer_send_maturation","consumer_send_maturation","consumer_send_maturation","insufficient_shares","insufficient_shares"]},{"meta":{"commit":"7ffd0c04e4205cbc9caf212abfe6c59ee43153bf"},"constants":{"P":"provider","C":"consumer","UNBONDING_SECONDS_P":70,"UNBONDING_SECONDS_C":50,"TRUSTING_SECONDS":49,"NUM_VALIDATORS":4,"MAX_VALIDATORS":2,"SLASH_DOUBLESIGN":0,"SLASH_DOWNTIME":0,"JAIL_SECONDS":999999999999999,"BLOCK_SECONDS":6,"INITIAL_DELEGATOR_TOKENS":10000000000000,"DELEGATE_AMT_MIN":1000,"DELEGATE_AMT_MAX":5000,"UNDELEGATE_AMT_MIN":1000,"UNDELEGATE_AMT_MAX":5000,"ISDOWNTIME_PROBABILITY":0.5,"MAX_NUM_PACKETS_FOR_DELIVER":6},"actions":[{"ix":0,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":2,"t":12,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":1,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":2,"t":12,"tokens":[5000,4000,3000,2000],"delegation":[4000,3000,2000,1000],"delegatorTokens":10000000000000,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":2,"action":{"kind":"Undelegate","val":1,"amt":4521},"partialState":{"h":2,"t":12,"tokens":[5000,4000,3000,2000],"delegation":[4000,3000,2000,1000],"delegatorTokens":10000000000000}},{"ix":3,"action":{"kind":"Undelegate","val":0,"amt":1075},"partialState":{"h":2,"t":12,"tokens":[3925,4000,3000,2000],"delegation":[2925,3000,2000,1000],"delegatorTokens":10000000000000}},{"ix":4,"action":{"kind":"Deliver","chain":"provider","numPackets":2},"partialState":{"h":2,"t":12,"tokens":[3925,4000,3000,2000],"delegation":[2925,3000,2000,1000],"delegatorTokens":10000000000000,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":5,"action":{"kind":"Delegate","val":0,"amt":3767},"partialState":{"h":2,"t":12,"tokens":[7692,4000,3000,2000],"delegation":[6692,3000,2000,1000],"delegatorTokens":9999999996233}},{"ix":6,"action":{"kind":"ConsumerSlash","val":3,"infractionHeight":0,"isDowntime":true},"partialState":{"h":2,"t":12,"outstandingDowntime":[false,false,false,true]}},{"ix":7,"action":{"kind":"Delegate","val":1,"amt":4346},"partialState":{"h":2,"t":12,"tokens":[7692,8346,3000,2000],"delegation":[6692,7346,2000,1000],"delegatorTokens":9999999991887}},{"ix":8,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":3,"t":18,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,false,false,true]}},{"ix":9,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":4,"t":24,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,false,false,true]}},{"ix":10,"action":{"kind":"ConsumerSlash","val":3,"infractionHeight":0,"isDowntime":true},"partialState":{"h":4,"t":24,"outstandingDowntime":[false,false,false,true]}},{"ix":11,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":12,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":3,"t":18,"tokens":[7692,8346,3000,2000],"delegation":[6692,7346,2000,1000],"delegatorTokens":9999999991887,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":13,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":14,"action":{"kind":"ConsumerSlash","val":3,"infractionHeight":0,"isDowntime":true},"partialState":{"h":4,"t":24,"outstandingDowntime":[false,false,false,true]}},{"ix":15,"action":{"kind":"Delegate","val":0,"amt":4101},"partialState":{"h":3,"t":18,"tokens":[11793,8346,3000,2000],"delegation":[10793,7346,2000,1000],"delegatorTokens":9999999987786}},{"ix":16,"action":{"kind":"Deliver","chain":"consumer","numPackets":2},"partialState":{"h":4,"t":24,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,false,false,true]}},{"ix":17,"action":{"kind":"Deliver","chain":"consumer","numPackets":4},"partialState":{"h":4,"t":24,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,false,false,true]}},{"ix":18,"action":{"kind":"Deliver","chain":"provider","numPackets":1},"partialState":{"h":3,"t":18,"tokens":[11793,8346,3000,2000],"delegation":[10793,7346,2000,1000],"delegatorTokens":9999999987786,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":19,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":20,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":4,"t":24,"tokens":[11793,8346,3000,2000],"delegation":[10793,7346,2000,1000],"delegatorTokens":9999999987786,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":21,"action":{"kind":"Undelegate","val":2,"amt":1183},"partialState":{"h":4,"t":24,"tokens":[11793,8346,1817,2000],"delegation":[10793,7346,817,1000],"delegatorTokens":9999999987786}},{"ix":22,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":23,"action":{"kind":"Delegate","val":0,"amt":1902},"partialState":{"h":4,"t":24,"tokens":[13695,8346,1817,2000],"delegation":[12695,7346,817,1000],"delegatorTokens":9999999985884}},{"ix":24,"action":{"kind":"ConsumerSlash","val":2,"infractionHeight":1,"isDowntime":true},"partialState":{"h":4,"t":24,"outstandingDowntime":[false,false,true,true]}},{"ix":25,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":5,"t":30,"tokens":[13695,8346,1817,2000],"delegation":[12695,7346,817,1000],"delegatorTokens":9999999985884,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":26,"action":{"kind":"Deliver","chain":"provider","numPackets":4},"partialState":{"h":5,"t":30,"tokens":[13695,8346,1817,2000],"delegation":[12695,7346,817,1000],"delegatorTokens":9999999985884,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":27,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":6,"t":36,"tokens":[13695,8346,1817,2000],"delegation":[12695,7346,817,1000],"delegatorTokens":9999999985884,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":28,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":29,"action":{"kind":"Deliver","chain":"provider","numPackets":3},"partialState":{"h":6,"t":36,"tokens":[13695,8346,1817,2000],"delegation":[12695,7346,817,1000],"delegatorTokens":9999999985884,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":30,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":5,"t":30,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,false,true,true]}},{"ix":31,"action":{"kind":"Undelegate","val":1,"amt":1452},"partialState":{"h":6,"t":36,"tokens":[13695,6894,1817,2000],"delegation":[12695,5894,817,1000],"delegatorTokens":9999999985884}},{"ix":32,"action":{"kind":"Undelegate","val":0,"amt":3479},"partialState":{"h":6,"t":36,"tokens":[10216,6894,1817,2000],"delegation":[9216,5894,817,1000],"delegatorTokens":9999999985884}},{"ix":33,"action":{"kind":"Undelegate","val":1,"amt":1963},"partialState":{"h":6,"t":36,"tokens":[10216,4931,1817,2000],"delegation":[9216,3931,817,1000],"delegatorTokens":9999999985884}},{"ix":34,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":7,"t":42,"tokens":[10216,4931,1817,2000],"delegation":[9216,3931,817,1000],"delegatorTokens":9999999985884,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":35,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":6,"t":36,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,false,true,true]}},{"ix":36,"action":{"kind":"Delegate","val":1,"amt":4085},"partialState":{"h":7,"t":42,"tokens":[10216,9016,1817,2000],"delegation":[9216,8016,817,1000],"delegatorTokens":9999999981799}},{"ix":37,"action":{"kind":"Deliver","chain":"provider","numPackets":2},"partialState":{"h":7,"t":42,"tokens":[10216,9016,1817,2000],"delegation":[9216,8016,817,1000],"delegatorTokens":9999999981799,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":38,"action":{"kind":"Undelegate","val":1,"amt":4211},"partialState":{"h":7,"t":42,"tokens":[10216,4805,1817,2000],"delegation":[9216,3805,817,1000],"delegatorTokens":9999999981799}},{"ix":39,"action":{"kind":"Delegate","val":3,"amt":3661},"partialState":{"h":7,"t":42,"tokens":[10216,4805,1817,5661],"delegation":[9216,3805,817,4661],"delegatorTokens":9999999978138}},{"ix":40,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":7,"t":42,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,false,true,true]}},{"ix":41,"action":{"kind":"Delegate","val":2,"amt":1697},"partialState":{"h":7,"t":42,"tokens":[10216,4805,3514,5661],"delegation":[9216,3805,2514,4661],"delegatorTokens":9999999976441}},{"ix":42,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":43,"action":{"kind":"Delegate","val":0,"amt":2302},"partialState":{"h":7,"t":42,"tokens":[12518,4805,3514,5661],"delegation":[11518,3805,2514,4661],"delegatorTokens":9999999974139}},{"ix":44,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":8,"t":48,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,false,true,true]}},{"ix":45,"action":{"kind":"Undelegate","val":0,"amt":3716},"partialState":{"h":7,"t":42,"tokens":[8802,4805,3514,5661],"delegation":[7802,3805,2514,4661],"delegatorTokens":9999999974139}},{"ix":46,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":47,"action":{"kind":"Deliver","chain":"provider","numPackets":3},"partialState":{"h":7,"t":42,"tokens":[8802,4805,3514,5661],"delegation":[7802,3805,2514,4661],"delegatorTokens":9999999974139,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":48,"action":{"kind":"ConsumerSlash","val":1,"infractionHeight":0,"isDowntime":true},"partialState":{"h":8,"t":48,"outstandingDowntime":[false,true,true,true]}},{"ix":49,"action":{"kind":"Undelegate","val":3,"amt":4038},"partialState":{"h":7,"t":42,"tokens":[8802,4805,3514,1623],"delegation":[7802,3805,2514,623],"delegatorTokens":9999999974139}},{"ix":50,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":51,"action":{"kind":"Delegate","val":1,"amt":2524},"partialState":{"h":7,"t":42,"tokens":[8802,7329,3514,1623],"delegation":[7802,6329,2514,623],"delegatorTokens":9999999971615}},{"ix":52,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":53,"action":{"kind":"Undelegate","val":1,"amt":3629},"partialState":{"h":7,"t":42,"tokens":[8802,3700,3514,1623],"delegation":[7802,2700,2514,623],"delegatorTokens":9999999971615}},{"ix":54,"action":{"kind":"Undelegate","val":2,"amt":1984},"partialState":{"h":7,"t":42,"tokens":[8802,3700,1530,1623],"delegation":[7802,2700,530,623],"delegatorTokens":9999999971615}},{"ix":55,"action":{"kind":"Deliver","chain":"provider","numPackets":1},"partialState":{"h":7,"t":42,"tokens":[8802,3700,1530,1623],"delegation":[7802,2700,530,623],"delegatorTokens":9999999971615,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":56,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":9,"t":54,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,true,true,true]}},{"ix":57,"action":{"kind":"Undelegate","val":0,"amt":4488},"partialState":{"h":7,"t":42,"tokens":[4314,3700,1530,1623],"delegation":[3314,2700,530,623],"delegatorTokens":9999999971615}},{"ix":58,"action":{"kind":"Deliver","chain":"provider","numPackets":2},"partialState":{"h":7,"t":42,"tokens":[4314,3700,1530,1623],"delegation":[3314,2700,530,623],"delegatorTokens":9999999971615,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":59,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":60,"action":{"kind":"Undelegate","val":0,"amt":2986},"partialState":{"h":7,"t":42,"tokens":[1328,3700,1530,1623],"delegation":[328,2700,530,623],"delegatorTokens":9999999971615}},{"ix":61,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":10,"t":60,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,true,true,true]}},{"ix":62,"action":{"kind":"Deliver","chain":"provider","numPackets":3},"partialState":{"h":7,"t":42,"tokens":[1328,3700,1530,1623],"delegation":[328,2700,530,623],"delegatorTokens":9999999971615,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":63,"action":{"kind":"Deliver","chain":"provider","numPackets":1},"partialState":{"h":7,"t":42,"tokens":[1328,3700,1530,1623],"delegation":[328,2700,530,623],"delegatorTokens":9999999971615,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":64,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":65,"action":{"kind":"Undelegate","val":3,"amt":3766},"partialState":{"h":7,"t":42,"tokens":[1328,3700,1530,1623],"delegation":[328,2700,530,623],"delegatorTokens":9999999971615}},{"ix":66,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":11,"t":66,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,true,true,true]}},{"ix":67,"action":{"kind":"Undelegate","val":3,"amt":4980},"partialState":{"h":7,"t":42,"tokens":[1328,3700,1530,1623],"delegation":[328,2700,530,623],"delegatorTokens":9999999971615}},{"ix":68,"action":{"kind":"Delegate","val":0,"amt":2857},"partialState":{"h":7,"t":42,"tokens":[4185,3700,1530,1623],"delegation":[3185,2700,530,623],"delegatorTokens":9999999968758}},{"ix":69,"action":{"kind":"Undelegate","val":3,"amt":3361},"partialState":{"h":7,"t":42,"tokens":[4185,3700,1530,1623],"delegation":[3185,2700,530,623],"delegatorTokens":9999999968758}},{"ix":70,"action":{"kind":"Delegate","val":0,"amt":3993},"partialState":{"h":7,"t":42,"tokens":[8178,3700,1530,1623],"delegation":[7178,2700,530,623],"delegatorTokens":9999999964765}},{"ix":71,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":72,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":12,"t":72,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,true,true,true]}},{"ix":73,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":8,"t":48,"tokens":[8178,3700,1530,1623],"delegation":[7178,2700,530,623],"delegatorTokens":9999999964765,"jailed":[null,1000000000000041,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":74,"action":{"kind":"Deliver","chain":"consumer","numPackets":5},"partialState":{"h":12,"t":72,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,true,true,true]}},{"ix":75,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":9,"t":54,"tokens":[8178,3700,1530,1623],"delegation":[7178,2700,530,623],"delegatorTokens":9999999964765,"jailed":[null,1000000000000041,null,null],"status":["bonded","unbonding","unbonded","bonded"]}},{"ix":76,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":77,"action":{"kind":"Deliver","chain":"consumer","numPackets":3},"partialState":{"h":12,"t":72,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,false,true,true]}},{"ix":78,"action":{"kind":"Delegate","val":1,"amt":3347},"partialState":{"h":9,"t":54,"tokens":[8178,7047,1530,1623],"delegation":[7178,6047,530,623],"delegatorTokens":9999999961418}},{"ix":79,"action":{"kind":"Delegate","val":0,"amt":3673},"partialState":{"h":9,"t":54,"tokens":[11851,7047,1530,1623],"delegation":[10851,6047,530,623],"delegatorTokens":9999999957745}},{"ix":80,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":13,"t":78,"consumerPower":[8178,3700,null,null],"outstandingDowntime":[false,false,true,true]}},{"ix":81,"action":{"kind":"Deliver","chain":"consumer","numPackets":5},"partialState":{"h":13,"t":78,"consumerPower":[8178,3700,null,null],"outstandingDowntime":[false,false,true,true]}},{"ix":82,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":10,"t":60,"tokens":[11851,7047,1530,1623],"delegation":[10851,6047,530,623],"delegatorTokens":9999999957745,"jailed":[null,1000000000000041,null,null],"status":["bonded","unbonding","unbonded","bonded"]}},{"ix":83,"action":{"kind":"Undelegate","val":2,"amt":4265},"partialState":{"h":10,"t":60,"tokens":[11851,7047,1530,1623],"delegation":[10851,6047,530,623],"delegatorTokens":9999999957745}},{"ix":84,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":11,"t":66,"tokens":[11851,7047,1530,1623],"delegation":[10851,6047,530,623],"delegatorTokens":9999999957745,"jailed":[null,1000000000000041,null,null],"status":["bonded","unbonding","unbonded","bonded"]}},{"ix":85,"action":{"kind":"Deliver","chain":"consumer","numPackets":2},"partialState":{"h":13,"t":78,"consumerPower":[8178,3700,null,null],"outstandingDowntime":[false,false,true,true]}},{"ix":86,"action":{"kind":"Deliver","chain":"consumer","numPackets":4},"partialState":{"h":13,"t":78,"consumerPower":[8178,3700,null,null],"outstandingDowntime":[false,false,true,true]}},{"ix":87,"action":{"kind":"Undelegate","val":2,"amt":3743},"partialState":{"h":11,"t":66,"tokens":[11851,7047,1530,1623],"delegation":[10851,6047,530,623],"delegatorTokens":9999999957745}},{"ix":88,"action":{"kind":"Deliver","chain":"provider","numPackets":3},"partialState":{"h":11,"t":66,"tokens":[11851,7047,1530,1623],"delegation":[10851,6047,530,623],"delegatorTokens":9999999957745,"jailed":[null,1000000000000041,null,null],"status":["bonded","unbonding","unbonded","bonded"]}},{"ix":89,"action":{"kind":"Undelegate","val":2,"amt":4463},"partialState":{"h":11,"t":66,"tokens":[11851,7047,1530,1623],"delegation":[10851,6047,530,623],"delegatorTokens":9999999957745}},{"ix":90,"action":{"kind":"Undelegate","val":1,"amt":1719},"partialState":{"h":11,"t":66,"tokens":[11851,5328,1530,1623],"delegation":[10851,4328,530,623],"delegatorTokens":9999999957745}},{"ix":91,"action":{"kind":"Deliver","chain":"provider","numPackets":3},"partialState":{"h":11,"t":66,"tokens":[11851,5328,1530,1623],"delegation":[10851,4328,530,623],"delegatorTokens":9999999957745,"jailed":[null,1000000000000041,null,null],"status":["bonded","unbonding","unbonded","bonded"]}},{"ix":92,"action":{"kind":"Deliver","chain":"provider","numPackets":3},"partialState":{"h":11,"t":66,"tokens":[11851,5328,1530,1623],"delegation":[10851,4328,530,623],"delegatorTokens":9999999957745,"jailed":[null,1000000000000041,null,null],"status":["bonded","unbonding","unbonded","bonded"]}},{"ix":93,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":94,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":14,"t":84,"consumerPower":[11851,null,null,1623],"outstandingDowntime":[false,false,true,true]}},{"ix":95,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":96,"action":{"kind":"Delegate","val":2,"amt":3991},"partialState":{"h":11,"t":66,"tokens":[11851,5328,5521,1623],"delegation":[10851,4328,4521,623],"delegatorTokens":9999999953754}},{"ix":97,"action":{"kind":"Delegate","val":0,"amt":3458},"partialState":{"h":11,"t":66,"tokens":[15309,5328,5521,1623],"delegation":[14309,4328,4521,623],"delegatorTokens":9999999950296}},{"ix":98,"action":{"kind":"Deliver","chain":"consumer","numPackets":2},"partialState":{"h":14,"t":84,"consumerPower":[11851,null,null,1623],"outstandingDowntime":[false,false,true,true]}},{"ix":99,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":15,"t":90,"consumerPower":[11851,null,null,1623],"outstandingDowntime":[false,false,true,true]}},{"ix":100,"action":{"kind":"Undelegate","val":2,"amt":2730},"partialState":{"h":11,"t":66,"tokens":[15309,5328,2791,1623],"delegation":[14309,4328,1791,623],"delegatorTokens":9999999950296}},{"ix":101,"action":{"kind":"Delegate","val":2,"amt":2482},"partialState":{"h":11,"t":66,"tokens":[15309,5328,5273,1623],"delegation":[14309,4328,4273,623],"delegatorTokens":9999999947814}},{"ix":102,"action":{"kind":"Delegate","val":0,"amt":4458},"partialState":{"h":11,"t":66,"tokens":[19767,5328,5273,1623],"delegation":[18767,4328,4273,623],"delegatorTokens":9999999943356}},{"ix":103,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":12,"t":72,"tokens":[19767,5328,5273,1623],"delegation":[18767,4328,4273,623],"delegatorTokens":9999999943356,"jailed":[null,1000000000000041,null,null],"status":["bonded","unbonding","bonded","unbonding"]}},{"ix":104,"action":{"kind":"Undelegate","val":0,"amt":4057},"partialState":{"h":12,"t":72,"tokens":[15710,5328,5273,1623],"delegation":[14710,4328,4273,623],"delegatorTokens":9999999943356}},{"ix":105,"action":{"kind":"Deliver","chain":"provider","numPackets":4},"partialState":{"h":12,"t":72,"tokens":[15710,5328,5273,1623],"delegation":[14710,4328,4273,623],"delegatorTokens":9999999943356,"jailed":[null,1000000000000041,null,null],"status":["bonded","unbonding","bonded","unbonding"]}},{"ix":106,"action":{"kind":"Undelegate","val":3,"amt":2377},"partialState":{"h":12,"t":72,"tokens":[15710,5328,5273,1623],"delegation":[14710,4328,4273,623],"delegatorTokens":9999999943356}},{"ix":107,"action":{"kind":"Undelegate","val":0,"amt":1096},"partialState":{"h":12,"t":72,"tokens":[14614,5328,5273,1623],"delegation":[13614,4328,4273,623],"delegatorTokens":9999999943356}},{"ix":108,"action":{"kind":"Undelegate","val":3,"amt":1140},"partialState":{"h":12,"t":72,"tokens":[14614,5328,5273,1623],"delegation":[13614,4328,4273,623],"delegatorTokens":9999999943356}},{"ix":109,"action":{"kind":"Deliver","chain":"provider","numPackets":1},"partialState":{"h":12,"t":72,"tokens":[14614,5328,5273,1623],"delegation":[13614,4328,4273,623],"delegatorTokens":9999999943356,"jailed":[null,1000000000000041,null,null],"status":["bonded","unbonding","bonded","unbonding"]}},{"ix":110,"action":{"kind":"Deliver","chain":"provider","numPackets":2},"partialState":{"h":12,"t":72,"tokens":[14614,5328,5273,1623],"delegation":[13614,4328,4273,623],"delegatorTokens":9999999943356,"jailed":[null,1000000000000041,null,null],"status":["bonded","unbonding","bonded","unbonding"]}},{"ix":111,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":112,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":113,"action":{"kind":"Delegate","val":2,"amt":1854},"partialState":{"h":12,"t":72,"tokens":[14614,5328,7127,1623],"delegation":[13614,4328,6127,623],"delegatorTokens":9999999941502}},{"ix":114,"action":{"kind":"Delegate","val":3,"amt":3697},"partialState":{"h":12,"t":72,"tokens":[14614,5328,7127,5320],"delegation":[13614,4328,6127,4320],"delegatorTokens":9999999937805}},{"ix":115,"action":{"kind":"Undelegate","val":0,"amt":2585},"partialState":{"h":12,"t":72,"tokens":[12029,5328,7127,5320],"delegation":[11029,4328,6127,4320],"delegatorTokens":9999999937805}},{"ix":116,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":117,"action":{"kind":"Undelegate","val":3,"amt":4909},"partialState":{"h":12,"t":72,"tokens":[12029,5328,7127,5320],"delegation":[11029,4328,6127,4320],"delegatorTokens":9999999937805}},{"ix":118,"action":{"kind":"Deliver","chain":"provider","numPackets":2},"partialState":{"h":12,"t":72,"tokens":[12029,5328,7127,5320],"delegation":[11029,4328,6127,4320],"delegatorTokens":9999999937805,"jailed":[null,1000000000000041,null,null],"status":["bonded","unbonding","bonded","unbonding"]}},{"ix":119,"action":{"kind":"Deliver","chain":"consumer","numPackets":2},"partialState":{"h":15,"t":90,"consumerPower":[11851,null,null,1623],"outstandingDowntime":[false,false,true,true]}},{"ix":120,"action":{"kind":"Undelegate","val":1,"amt":3370},"partialState":{"h":12,"t":72,"tokens":[12029,1958,7127,5320],"delegation":[11029,958,6127,4320],"delegatorTokens":9999999937805}},{"ix":121,"action":{"kind":"Undelegate","val":0,"amt":4246},"partialState":{"h":12,"t":72,"tokens":[7783,1958,7127,5320],"delegation":[6783,958,6127,4320],"delegatorTokens":9999999937805}},{"ix":122,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":13,"t":78,"tokens":[7783,1958,7127,5320],"delegation":[6783,958,6127,4320],"delegatorTokens":9999999937805,"jailed":[null,1000000000000041,null,null],"status":["bonded","unbonding","bonded","unbonding"]}},{"ix":123,"action":{"kind":"Undelegate","val":2,"amt":1013},"partialState":{"h":13,"t":78,"tokens":[7783,1958,6114,5320],"delegation":[6783,958,5114,4320],"delegatorTokens":9999999937805}},{"ix":124,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":125,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":16,"t":96,"consumerPower":[11851,null,null,1623],"outstandingDowntime":[false,false,true,true]}},{"ix":126,"action":{"kind":"Deliver","chain":"provider","numPackets":2},"partialState":{"h":13,"t":78,"tokens":[7783,1958,6114,5320],"delegation":[6783,958,5114,4320],"delegatorTokens":9999999937805,"jailed":[null,1000000000000041,null,null],"status":["bonded","unbonding","bonded","unbonding"]}},{"ix":127,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":14,"t":84,"tokens":[7783,1958,6114,5320],"delegation":[6783,958,5114,4320],"delegatorTokens":9999999937805,"jailed":[null,1000000000000041,null,null],"status":["bonded","unbonding","bonded","unbonding"]}},{"ix":128,"action":{"kind":"Deliver","chain":"consumer","numPackets":6},"partialState":{"h":16,"t":96,"consumerPower":[11851,null,null,1623],"outstandingDowntime":[false,false,true,true]}},{"ix":129,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":130,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":131,"action":{"kind":"Undelegate","val":3,"amt":1734},"partialState":{"h":14,"t":84,"tokens":[7783,1958,6114,3586],"delegation":[6783,958,5114,2586],"delegatorTokens":9999999937805}},{"ix":132,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":133,"action":{"kind":"Delegate","val":0,"amt":3099},"partialState":{"h":14,"t":84,"tokens":[10882,1958,6114,3586],"delegation":[9882,958,5114,2586],"delegatorTokens":9999999934706}},{"ix":134,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":135,"action":{"kind":"Delegate","val":0,"amt":4551},"partialState":{"h":14,"t":84,"tokens":[15433,1958,6114,3586],"delegation":[14433,958,5114,2586],"delegatorTokens":9999999930155}},{"ix":136,"action":{"kind":"Undelegate","val":0,"amt":2001},"partialState":{"h":14,"t":84,"tokens":[13432,1958,6114,3586],"delegation":[12432,958,5114,2586],"delegatorTokens":9999999930155}},{"ix":137,"action":{"kind":"Undelegate","val":1,"amt":1320},"partialState":{"h":14,"t":84,"tokens":[13432,1958,6114,3586],"delegation":[12432,958,5114,2586],"delegatorTokens":9999999930155}},{"ix":138,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":15,"t":90,"tokens":[13432,1958,6114,3586],"delegation":[12432,958,5114,2586],"delegatorTokens":9999999930155,"jailed":[null,1000000000000041,null,null],"status":["bonded","unbonding","bonded","unbonding"]}},{"ix":139,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":140,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":141,"action":{"kind":"Delegate","val":0,"amt":1210},"partialState":{"h":15,"t":90,"tokens":[14642,1958,6114,3586],"delegation":[13642,958,5114,2586],"delegatorTokens":9999999928945}},{"ix":142,"action":{"kind":"Delegate","val":0,"amt":1086},"partialState":{"h":15,"t":90,"tokens":[15728,1958,6114,3586],"delegation":[14728,958,5114,2586],"delegatorTokens":9999999927859}},{"ix":143,"action":{"kind":"Deliver","chain":"consumer","numPackets":6},"partialState":{"h":16,"t":96,"consumerPower":[11851,null,null,1623],"outstandingDowntime":[false,false,true,true]}},{"ix":144,"action":{"kind":"Delegate","val":0,"amt":3103},"partialState":{"h":15,"t":90,"tokens":[18831,1958,6114,3586],"delegation":[17831,958,5114,2586],"delegatorTokens":9999999924756}},{"ix":145,"action":{"kind":"Undelegate","val":2,"amt":1538},"partialState":{"h":15,"t":90,"tokens":[18831,1958,4576,3586],"delegation":[17831,958,3576,2586],"delegatorTokens":9999999924756}},{"ix":146,"action":{"kind":"Delegate","val":2,"amt":4668},"partialState":{"h":15,"t":90,"tokens":[18831,1958,9244,3586],"delegation":[17831,958,8244,2586],"delegatorTokens":9999999920088}},{"ix":147,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":148,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":149,"action":{"kind":"Undelegate","val":0,"amt":1345},"partialState":{"h":15,"t":90,"tokens":[17486,1958,9244,3586],"delegation":[16486,958,8244,2586],"delegatorTokens":9999999920088}},{"ix":150,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":17,"t":102,"consumerPower":[7783,null,6114,null],"outstandingDowntime":[false,false,true,true]}},{"ix":151,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":16,"t":96,"tokens":[17486,1958,9244,3586],"delegation":[16486,958,8244,2586],"delegatorTokens":9999999920088,"jailed":[null,1000000000000041,null,null],"status":["bonded","unbonding","bonded","unbonding"]}},{"ix":152,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":17,"t":102,"tokens":[17486,1958,9244,3586],"delegation":[16486,958,8244,2586],"delegatorTokens":9999999920088,"jailed":[null,1000000000000041,null,null],"status":["bonded","unbonding","bonded","unbonding"]}},{"ix":153,"action":{"kind":"Delegate","val":2,"amt":2098},"partialState":{"h":17,"t":102,"tokens":[17486,1958,11342,3586],"delegation":[16486,958,10342,2586],"delegatorTokens":9999999917990}},{"ix":154,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":155,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":156,"action":{"kind":"Undelegate","val":3,"amt":1234},"partialState":{"h":17,"t":102,"tokens":[17486,1958,11342,2352],"delegation":[16486,958,10342,1352],"delegatorTokens":9999999917990}},{"ix":157,"action":{"kind":"Delegate","val":1,"amt":1388},"partialState":{"h":17,"t":102,"tokens":[17486,3346,11342,2352],"delegation":[16486,2346,10342,1352],"delegatorTokens":9999999916602}},{"ix":158,"action":{"kind":"Undelegate","val":1,"amt":1045},"partialState":{"h":17,"t":102,"tokens":[17486,2301,11342,2352],"delegation":[16486,1301,10342,1352],"delegatorTokens":9999999916602}},{"ix":159,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":18,"t":108,"tokens":[17486,2301,11342,2352],"delegation":[16486,1301,10342,1352],"delegatorTokens":9999999916602,"jailed":[null,1000000000000041,null,null],"status":["bonded","unbonding","bonded","unbonding"]}},{"ix":160,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":161,"action":{"kind":"Delegate","val":2,"amt":2777},"partialState":{"h":18,"t":108,"tokens":[17486,2301,14119,2352],"delegation":[16486,1301,13119,1352],"delegatorTokens":9999999913825}},{"ix":162,"action":{"kind":"Undelegate","val":0,"amt":1421},"partialState":{"h":18,"t":108,"tokens":[16065,2301,14119,2352],"delegation":[15065,1301,13119,1352],"delegatorTokens":9999999913825}},{"ix":163,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":19,"t":114,"tokens":[16065,2301,14119,2352],"delegation":[15065,1301,13119,1352],"delegatorTokens":9999999913825,"jailed":[null,1000000000000041,null,null],"status":["bonded","unbonding","bonded","unbonding"]}},{"ix":164,"action":{"kind":"Delegate","val":2,"amt":4531},"partialState":{"h":19,"t":114,"tokens":[16065,2301,18650,2352],"delegation":[15065,1301,17650,1352],"delegatorTokens":9999999909294}},{"ix":165,"action":{"kind":"Undelegate","val":3,"amt":3017},"partialState":{"h":19,"t":114,"tokens":[16065,2301,18650,2352],"delegation":[15065,1301,17650,1352],"delegatorTokens":9999999909294}},{"ix":166,"action":{"kind":"Deliver","chain":"provider","numPackets":3},"partialState":{"h":19,"t":114,"tokens":[16065,2301,18650,2352],"delegation":[15065,1301,17650,1352],"delegatorTokens":9999999909294,"jailed":[null,1000000000000041,null,null],"status":["bonded","unbonding","bonded","unbonding"]}},{"ix":167,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":20,"t":120,"tokens":[16065,2301,18650,2352],"delegation":[15065,1301,17650,1352],"delegatorTokens":9999999909294,"jailed":[null,1000000000000041,null,null],"status":["bonded","unbonding","bonded","unbonding"]}},{"ix":168,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":21,"t":126,"tokens":[16065,2301,18650,2352],"delegation":[15065,1301,17650,1352],"delegatorTokens":9999999909294,"jailed":[null,1000000000000041,null,null],"status":["bonded","unbonding","bonded","unbonding"]}},{"ix":169,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":170,"action":{"kind":"Delegate","val":3,"amt":1049},"partialState":{"h":21,"t":126,"tokens":[16065,2301,18650,3401],"delegation":[15065,1301,17650,2401],"delegatorTokens":9999999908245}},{"ix":171,"action":{"kind":"Deliver","chain":"provider","numPackets":6},"partialState":{"h":21,"t":126,"tokens":[16065,2301,18650,3401],"delegation":[15065,1301,17650,2401],"delegatorTokens":9999999908245,"jailed":[null,1000000000000041,null,null],"status":["bonded","unbonding","bonded","unbonding"]}},{"ix":172,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":22,"t":132,"tokens":[16065,2301,18650,3401],"delegation":[15065,1301,17650,2401],"delegatorTokens":9999999908245,"jailed":[null,1000000000000041,null,null],"status":["bonded","unbonding","bonded","unbonding"]}},{"ix":173,"action":{"kind":"Undelegate","val":1,"amt":2987},"partialState":{"h":22,"t":132,"tokens":[16065,2301,18650,3401],"delegation":[15065,1301,17650,2401],"delegatorTokens":9999999908245}},{"ix":174,"action":{"kind":"Undelegate","val":1,"amt":2342},"partialState":{"h":22,"t":132,"tokens":[16065,2301,18650,3401],"delegation":[15065,1301,17650,2401],"delegatorTokens":9999999908245}},{"ix":175,"action":{"kind":"Undelegate","val":1,"amt":1238},"partialState":{"h":22,"t":132,"tokens":[16065,1063,18650,3401],"delegation":[15065,63,17650,2401],"delegatorTokens":9999999908245}},{"ix":176,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":23,"t":138,"tokens":[16065,1063,18650,3401],"delegation":[15065,63,17650,2401],"delegatorTokens":9999999908245,"jailed":[null,1000000000000041,null,null],"status":["bonded","unbonding","bonded","unbonding"]}},{"ix":177,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":178,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":18,"t":108,"consumerPower":[7783,null,6114,null],"outstandingDowntime":[false,false,true,true]}},{"ix":179,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":24,"t":144,"tokens":[16065,1063,18650,3401],"delegation":[15065,63,17650,2401],"delegatorTokens":9999999908245,"jailed":[null,1000000000000041,null,null],"status":["bonded","unbonding","bonded","unbonding"]}},{"ix":180,"action":{"kind":"Undelegate","val":1,"amt":1081},"partialState":{"h":24,"t":144,"tokens":[16065,1063,18650,3401],"delegation":[15065,63,17650,2401],"delegatorTokens":9999999908245}},{"ix":181,"action":{"kind":"Deliver","chain":"provider","numPackets":2},"partialState":{"h":24,"t":144,"tokens":[16065,1063,18650,3401],"delegation":[15065,63,17650,2401],"delegatorTokens":9999999908245,"jailed":[null,1000000000000041,null,null],"status":["bonded","unbonding","bonded","unbonding"]}},{"ix":182,"action":{"kind":"Undelegate","val":0,"amt":1401},"partialState":{"h":24,"t":144,"tokens":[14664,1063,18650,3401],"delegation":[13664,63,17650,2401],"delegatorTokens":9999999908245}},{"ix":183,"action":{"kind":"Undelegate","val":2,"amt":2440},"partialState":{"h":24,"t":144,"tokens":[14664,1063,16210,3401],"delegation":[13664,63,15210,2401],"delegatorTokens":9999999908245}},{"ix":184,"action":{"kind":"Undelegate","val":1,"amt":2413},"partialState":{"h":24,"t":144,"tokens":[14664,1063,16210,3401],"delegation":[13664,63,15210,2401],"delegatorTokens":9999999908245}},{"ix":185,"action":{"kind":"Delegate","val":0,"amt":4000},"partialState":{"h":24,"t":144,"tokens":[18664,1063,16210,3401],"delegation":[17664,63,15210,2401],"delegatorTokens":9999999904245}},{"ix":186,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":25,"t":150,"tokens":[18664,1063,16210,3401],"delegation":[17664,63,15210,2401],"delegatorTokens":9999999904245,"jailed":[null,1000000000000041,null,null],"status":["bonded","unbonding","bonded","unbonding"]}},{"ix":187,"action":{"kind":"Delegate","val":1,"amt":2953},"partialState":{"h":25,"t":150,"tokens":[18664,4016,16210,3401],"delegation":[17664,3016,15210,2401],"delegatorTokens":9999999901292}},{"ix":188,"action":{"kind":"Delegate","val":0,"amt":4187},"partialState":{"h":25,"t":150,"tokens":[22851,4016,16210,3401],"delegation":[21851,3016,15210,2401],"delegatorTokens":9999999897105}},{"ix":189,"action":{"kind":"Deliver","chain":"consumer","numPackets":4},"partialState":{"h":18,"t":108,"consumerPower":[7783,null,6114,null],"outstandingDowntime":[false,false,true,true]}},{"ix":190,"action":{"kind":"Deliver","chain":"provider","numPackets":3},"partialState":{"h":25,"t":150,"tokens":[22851,4016,16210,3401],"delegation":[21851,3016,15210,2401],"delegatorTokens":9999999897105,"jailed":[null,1000000000000041,null,null],"status":["bonded","unbonding","bonded","unbonding"]}},{"ix":191,"action":{"kind":"Deliver","chain":"provider","numPackets":2},"partialState":{"h":25,"t":150,"tokens":[22851,4016,16210,3401],"delegation":[21851,3016,15210,2401],"delegatorTokens":9999999897105,"jailed":[null,1000000000000041,null,null],"status":["bonded","unbonding","bonded","unbonding"]}},{"ix":192,"action":{"kind":"Delegate","val":2,"amt":4728},"partialState":{"h":25,"t":150,"tokens":[22851,4016,20938,3401],"delegation":[21851,3016,19938,2401],"delegatorTokens":9999999892377}},{"ix":193,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":194,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":19,"t":114,"consumerPower":[16065,null,14119,null],"outstandingDowntime":[false,false,true,true]}},{"ix":195,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":20,"t":120,"consumerPower":[16065,null,14119,null],"outstandingDowntime":[false,false,true,true]}},{"ix":196,"action":{"kind":"Deliver","chain":"consumer","numPackets":2},"partialState":{"h":20,"t":120,"consumerPower":[16065,null,14119,null],"outstandingDowntime":[false,false,true,true]}},{"ix":197,"action":{"kind":"Delegate","val":2,"amt":1501},"partialState":{"h":25,"t":150,"tokens":[22851,4016,22439,3401],"delegation":[21851,3016,21439,2401],"delegatorTokens":9999999890876}},{"ix":198,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":199,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}}],"events":["insufficient_shares","send_downtime_slash_request","downtime_slash_request_outstanding","send_vsc_without_downtime_ack","downtime_slash_request_outstanding","receive_slash_request_unbonded","send_vsc_without_downtime_ack","send_downtime_slash_request","send_vsc_without_downtime_ack","send_vsc_without_downtime_ack","send_downtime_slash_request","insufficient_shares","insufficient_shares","insufficient_shares","receive_slash_request_unbonded","receive_downtime_slash_request","jail","send_vsc_with_downtime_ack","send_vsc_without_downtime_ack","receive_downtime_slash_ack","consumer_update_val","consumer_update_val","send_vsc_without_downtime_ack","insufficient_shares","insufficient_shares","insufficient_shares","consumer_del_val","consumer_add_val","consumer_update_val","send_vsc_without_downtime_ack","insufficient_shares","insufficient_shares","insufficient_shares","send_vsc_without_downtime_ack","send_vsc_without_downtime_ack","insufficient_shares","some_undels_expired_but_not_completed","send_vsc_without_downtime_ack","consumer_update_val","consumer_add_val","consumer_del_val","send_vsc_without_downtime_ack","some_undels_expired_but_not_completed","send_vsc_without_downtime_ack","some_undels_expired_but_not_completed","send_vsc_without_downtime_ack","insufficient_shares","some_undels_expired_but_not_completed","send_vsc_without_downtime_ack","insufficient_shares","insufficient_shares","send_vsc_not_because_change","send_vsc_without_downtime_ack","some_undels_expired_but_not_completed","insufficient_shares","insufficient_shares","some_undels_expired_but_not_completed","send_vsc_without_downtime_ack","consumer_update_val","consumer_update_val"]},{"meta":{"commit":"7ffd0c04e4205cbc9caf212abfe6c59ee43153bf"},"constants":{"P":"provider","C":"consumer","UNBONDING_SECONDS_P":70,"UNBONDING_SECONDS_C":50,"TRUSTING_SECONDS":49,"NUM_VALIDATORS":4,"MAX_VALIDATORS":2,"SLASH_DOUBLESIGN":0,"SLASH_DOWNTIME":0,"JAIL_SECONDS":999999999999999,"BLOCK_SECONDS":6,"INITIAL_DELEGATOR_TOKENS":10000000000000,"DELEGATE_AMT_MIN":1000,"DELEGATE_AMT_MAX":5000,"UNDELEGATE_AMT_MIN":1000,"UNDELEGATE_AMT_MAX":5000,"ISDOWNTIME_PROBABILITY":0.5,"MAX_NUM_PACKETS_FOR_DELIVER":6},"actions":[{"ix":0,"action":{"kind":"Deliver","chain":"consumer","numPackets":2},"partialState":{"h":1,"t":6,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":1,"action":{"kind":"Undelegate","val":3,"amt":2138},"partialState":{"h":1,"t":6,"tokens":[5000,4000,3000,2000],"delegation":[4000,3000,2000,1000],"delegatorTokens":10000000000000}},{"ix":2,"action":{"kind":"Deliver","chain":"consumer","numPackets":5},"partialState":{"h":1,"t":6,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":3,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":2,"t":12,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":4,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":5,"action":{"kind":"Undelegate","val":3,"amt":3175},"partialState":{"h":1,"t":6,"tokens":[5000,4000,3000,2000],"delegation":[4000,3000,2000,1000],"delegatorTokens":10000000000000}},{"ix":6,"action":{"kind":"Deliver","chain":"provider","numPackets":6},"partialState":{"h":1,"t":6,"tokens":[5000,4000,3000,2000],"delegation":[4000,3000,2000,1000],"delegatorTokens":10000000000000,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":7,"action":{"kind":"Deliver","chain":"provider","numPackets":1},"partialState":{"h":1,"t":6,"tokens":[5000,4000,3000,2000],"delegation":[4000,3000,2000,1000],"delegatorTokens":10000000000000,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":8,"action":{"kind":"ConsumerSlash","val":2,"infractionHeight":0,"isDowntime":false},"partialState":{"h":2,"t":12,"outstandingDowntime":[false,false,false,false]}},{"ix":9,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":2,"t":12,"tokens":[5000,4000,3000,2000],"delegation":[4000,3000,2000,1000],"delegatorTokens":10000000000000,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":10,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":3,"t":18,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":11,"action":{"kind":"Deliver","chain":"consumer","numPackets":6},"partialState":{"h":3,"t":18,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":12,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":4,"t":24,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":13,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":14,"action":{"kind":"ConsumerSlash","val":1,"infractionHeight":2,"isDowntime":false},"partialState":{"h":4,"t":24,"outstandingDowntime":[false,false,false,false]}},{"ix":15,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":3,"t":18,"tokens":[5000,4000,3000,2000],"delegation":[4000,3000,2000,1000],"delegatorTokens":10000000000000,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":16,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":17,"action":{"kind":"Undelegate","val":2,"amt":2621},"partialState":{"h":3,"t":18,"tokens":[5000,4000,3000,2000],"delegation":[4000,3000,2000,1000],"delegatorTokens":10000000000000}},{"ix":18,"action":{"kind":"Undelegate","val":0,"amt":1130},"partialState":{"h":3,"t":18,"tokens":[3870,4000,3000,2000],"delegation":[2870,3000,2000,1000],"delegatorTokens":10000000000000}},{"ix":19,"action":{"kind":"Undelegate","val":0,"amt":1943},"partialState":{"h":3,"t":18,"tokens":[1927,4000,3000,2000],"delegation":[927,3000,2000,1000],"delegatorTokens":10000000000000}},{"ix":20,"action":{"kind":"Undelegate","val":0,"amt":2479},"partialState":{"h":3,"t":18,"tokens":[1927,4000,3000,2000],"delegation":[927,3000,2000,1000],"delegatorTokens":10000000000000}},{"ix":21,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":22,"action":{"kind":"Deliver","chain":"consumer","numPackets":2},"partialState":{"h":4,"t":24,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":23,"action":{"kind":"Undelegate","val":2,"amt":1708},"partialState":{"h":3,"t":18,"tokens":[1927,4000,1292,2000],"delegation":[927,3000,292,1000],"delegatorTokens":10000000000000}},{"ix":24,"action":{"kind":"ConsumerSlash","val":1,"infractionHeight":0,"isDowntime":false},"partialState":{"h":4,"t":24,"outstandingDowntime":[false,false,false,false]}},{"ix":25,"action":{"kind":"Undelegate","val":0,"amt":2961},"partialState":{"h":3,"t":18,"tokens":[1927,4000,1292,2000],"delegation":[927,3000,292,1000],"delegatorTokens":10000000000000}},{"ix":26,"action":{"kind":"Deliver","chain":"provider","numPackets":6},"partialState":{"h":3,"t":18,"tokens":[1927,4000,1292,2000],"delegation":[927,3000,292,1000],"delegatorTokens":10000000000000,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":27,"action":{"kind":"Undelegate","val":1,"amt":3845},"partialState":{"h":3,"t":18,"tokens":[1927,4000,1292,2000],"delegation":[927,3000,292,1000],"delegatorTokens":10000000000000}},{"ix":28,"action":{"kind":"Delegate","val":3,"amt":2955},"partialState":{"h":3,"t":18,"tokens":[1927,4000,1292,4955],"delegation":[927,3000,292,3955],"delegatorTokens":9999999997045}},{"ix":29,"action":{"kind":"Undelegate","val":1,"amt":3879},"partialState":{"h":3,"t":18,"tokens":[1927,4000,1292,4955],"delegation":[927,3000,292,3955],"delegatorTokens":9999999997045}},{"ix":30,"action":{"kind":"ConsumerSlash","val":1,"infractionHeight":0,"isDowntime":true},"partialState":{"h":4,"t":24,"outstandingDowntime":[false,true,false,false]}},{"ix":31,"action":{"kind":"ConsumerSlash","val":1,"infractionHeight":0,"isDowntime":false},"partialState":{"h":4,"t":24,"outstandingDowntime":[false,true,false,false]}},{"ix":32,"action":{"kind":"Undelegate","val":0,"amt":1684},"partialState":{"h":3,"t":18,"tokens":[1927,4000,1292,4955],"delegation":[927,3000,292,3955],"delegatorTokens":9999999997045}},{"ix":33,"action":{"kind":"ConsumerSlash","val":2,"infractionHeight":3,"isDowntime":true},"partialState":{"h":4,"t":24,"outstandingDowntime":[false,true,true,false]}},{"ix":34,"action":{"kind":"Deliver","chain":"provider","numPackets":2},"partialState":{"h":3,"t":18,"tokens":[1927,4000,1292,4955],"delegation":[927,3000,292,3955],"delegatorTokens":9999999997045,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":35,"action":{"kind":"Delegate","val":0,"amt":2198},"partialState":{"h":3,"t":18,"tokens":[4125,4000,1292,4955],"delegation":[3125,3000,292,3955],"delegatorTokens":9999999994847}},{"ix":36,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":37,"action":{"kind":"ConsumerSlash","val":1,"infractionHeight":2,"isDowntime":false},"partialState":{"h":4,"t":24,"outstandingDowntime":[false,true,true,false]}},{"ix":38,"action":{"kind":"ConsumerSlash","val":2,"infractionHeight":3,"isDowntime":true},"partialState":{"h":4,"t":24,"outstandingDowntime":[false,true,true,false]}},{"ix":39,"action":{"kind":"ConsumerSlash","val":1,"infractionHeight":0,"isDowntime":true},"partialState":{"h":4,"t":24,"outstandingDowntime":[false,true,true,false]}},{"ix":40,"action":{"kind":"Delegate","val":0,"amt":4024},"partialState":{"h":3,"t":18,"tokens":[8149,4000,1292,4955],"delegation":[7149,3000,292,3955],"delegatorTokens":9999999990823}},{"ix":41,"action":{"kind":"Delegate","val":3,"amt":3222},"partialState":{"h":3,"t":18,"tokens":[8149,4000,1292,8177],"delegation":[7149,3000,292,7177],"delegatorTokens":9999999987601}},{"ix":42,"action":{"kind":"Undelegate","val":1,"amt":2719},"partialState":{"h":3,"t":18,"tokens":[8149,1281,1292,8177],"delegation":[7149,281,292,7177],"delegatorTokens":9999999987601}},{"ix":43,"action":{"kind":"Delegate","val":1,"amt":3615},"partialState":{"h":3,"t":18,"tokens":[8149,4896,1292,8177],"delegation":[7149,3896,292,7177],"delegatorTokens":9999999983986}},{"ix":44,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":5,"t":30,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,true,true,false]}},{"ix":45,"action":{"kind":"Delegate","val":1,"amt":3987},"partialState":{"h":3,"t":18,"tokens":[8149,8883,1292,8177],"delegation":[7149,7883,292,7177],"delegatorTokens":9999999979999}},{"ix":46,"action":{"kind":"Delegate","val":1,"amt":2048},"partialState":{"h":3,"t":18,"tokens":[8149,10931,1292,8177],"delegation":[7149,9931,292,7177],"delegatorTokens":9999999977951}},{"ix":47,"action":{"kind":"ConsumerSlash","val":3,"infractionHeight":2,"isDowntime":true},"partialState":{"h":5,"t":30,"outstandingDowntime":[false,true,true,true]}},{"ix":48,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":6,"t":36,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,true,true,true]}},{"ix":49,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":7,"t":42,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,true,true,true]}},{"ix":50,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":8,"t":48,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,true,true,true]}},{"ix":51,"action":{"kind":"Delegate","val":0,"amt":4480},"partialState":{"h":3,"t":18,"tokens":[12629,10931,1292,8177],"delegation":[11629,9931,292,7177],"delegatorTokens":9999999973471}},{"ix":52,"action":{"kind":"Undelegate","val":2,"amt":3060},"partialState":{"h":3,"t":18,"tokens":[12629,10931,1292,8177],"delegation":[11629,9931,292,7177],"delegatorTokens":9999999973471}},{"ix":53,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":54,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":55,"action":{"kind":"Delegate","val":3,"amt":3767},"partialState":{"h":3,"t":18,"tokens":[12629,10931,1292,11944],"delegation":[11629,9931,292,10944],"delegatorTokens":9999999969704}},{"ix":56,"action":{"kind":"Undelegate","val":3,"amt":4961},"partialState":{"h":3,"t":18,"tokens":[12629,10931,1292,6983],"delegation":[11629,9931,292,5983],"delegatorTokens":9999999969704}},{"ix":57,"action":{"kind":"Deliver","chain":"consumer","numPackets":6},"partialState":{"h":8,"t":48,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,true,true,true]}},{"ix":58,"action":{"kind":"Deliver","chain":"provider","numPackets":2},"partialState":{"h":3,"t":18,"tokens":[12629,10931,1292,6983],"delegation":[11629,9931,292,5983],"delegatorTokens":9999999969704,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":59,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":60,"action":{"kind":"Delegate","val":2,"amt":4836},"partialState":{"h":3,"t":18,"tokens":[12629,10931,6128,6983],"delegation":[11629,9931,5128,5983],"delegatorTokens":9999999964868}},{"ix":61,"action":{"kind":"Deliver","chain":"consumer","numPackets":5},"partialState":{"h":8,"t":48,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,true,true,true]}},{"ix":62,"action":{"kind":"Undelegate","val":3,"amt":3700},"partialState":{"h":3,"t":18,"tokens":[12629,10931,6128,3283],"delegation":[11629,9931,5128,2283],"delegatorTokens":9999999964868}},{"ix":63,"action":{"kind":"Undelegate","val":2,"amt":1047},"partialState":{"h":3,"t":18,"tokens":[12629,10931,5081,3283],"delegation":[11629,9931,4081,2283],"delegatorTokens":9999999964868}},{"ix":64,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":65,"action":{"kind":"Delegate","val":0,"amt":1440},"partialState":{"h":3,"t":18,"tokens":[14069,10931,5081,3283],"delegation":[13069,9931,4081,2283],"delegatorTokens":9999999963428}},{"ix":66,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":4,"t":24,"tokens":[14069,10931,5081,3283],"delegation":[13069,9931,4081,2283],"delegatorTokens":9999999963428,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":67,"action":{"kind":"Undelegate","val":1,"amt":4475},"partialState":{"h":4,"t":24,"tokens":[14069,6456,5081,3283],"delegation":[13069,5456,4081,2283],"delegatorTokens":9999999963428}},{"ix":68,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":69,"action":{"kind":"Delegate","val":2,"amt":2162},"partialState":{"h":4,"t":24,"tokens":[14069,6456,7243,3283],"delegation":[13069,5456,6243,2283],"delegatorTokens":9999999961266}},{"ix":70,"action":{"kind":"Undelegate","val":3,"amt":4600},"partialState":{"h":4,"t":24,"tokens":[14069,6456,7243,3283],"delegation":[13069,5456,6243,2283],"delegatorTokens":9999999961266}},{"ix":71,"action":{"kind":"Undelegate","val":1,"amt":1051},"partialState":{"h":4,"t":24,"tokens":[14069,5405,7243,3283],"delegation":[13069,4405,6243,2283],"delegatorTokens":9999999961266}},{"ix":72,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":73,"action":{"kind":"Deliver","chain":"provider","numPackets":6},"partialState":{"h":4,"t":24,"tokens":[14069,5405,7243,3283],"delegation":[13069,4405,6243,2283],"delegatorTokens":9999999961266,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":74,"action":{"kind":"Delegate","val":2,"amt":2814},"partialState":{"h":4,"t":24,"tokens":[14069,5405,10057,3283],"delegation":[13069,4405,9057,2283],"delegatorTokens":9999999958452}},{"ix":75,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":76,"action":{"kind":"Delegate","val":1,"amt":1731},"partialState":{"h":4,"t":24,"tokens":[14069,7136,10057,3283],"delegation":[13069,6136,9057,2283],"delegatorTokens":9999999956721}},{"ix":77,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":78,"action":{"kind":"Undelegate","val":1,"amt":3349},"partialState":{"h":4,"t":24,"tokens":[14069,3787,10057,3283],"delegation":[13069,2787,9057,2283],"delegatorTokens":9999999956721}},{"ix":79,"action":{"kind":"Undelegate","val":2,"amt":1922},"partialState":{"h":4,"t":24,"tokens":[14069,3787,8135,3283],"delegation":[13069,2787,7135,2283],"delegatorTokens":9999999956721}},{"ix":80,"action":{"kind":"Undelegate","val":2,"amt":4968},"partialState":{"h":4,"t":24,"tokens":[14069,3787,3167,3283],"delegation":[13069,2787,2167,2283],"delegatorTokens":9999999956721}},{"ix":81,"action":{"kind":"Undelegate","val":3,"amt":2627},"partialState":{"h":4,"t":24,"tokens":[14069,3787,3167,3283],"delegation":[13069,2787,2167,2283],"delegatorTokens":9999999956721}},{"ix":82,"action":{"kind":"Undelegate","val":1,"amt":1190},"partialState":{"h":4,"t":24,"tokens":[14069,2597,3167,3283],"delegation":[13069,1597,2167,2283],"delegatorTokens":9999999956721}},{"ix":83,"action":{"kind":"Deliver","chain":"consumer","numPackets":4},"partialState":{"h":8,"t":48,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,true,true,true]}},{"ix":84,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":9,"t":54,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,true,true,true]}},{"ix":85,"action":{"kind":"Undelegate","val":0,"amt":2773},"partialState":{"h":4,"t":24,"tokens":[11296,2597,3167,3283],"delegation":[10296,1597,2167,2283],"delegatorTokens":9999999956721}},{"ix":86,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":10,"t":60,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,true,true,true]}},{"ix":87,"action":{"kind":"Delegate","val":0,"amt":2794},"partialState":{"h":4,"t":24,"tokens":[14090,2597,3167,3283],"delegation":[13090,1597,2167,2283],"delegatorTokens":9999999953927}},{"ix":88,"action":{"kind":"Delegate","val":1,"amt":4152},"partialState":{"h":4,"t":24,"tokens":[14090,6749,3167,3283],"delegation":[13090,5749,2167,2283],"delegatorTokens":9999999949775}},{"ix":89,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":90,"action":{"kind":"Undelegate","val":1,"amt":1334},"partialState":{"h":4,"t":24,"tokens":[14090,5415,3167,3283],"delegation":[13090,4415,2167,2283],"delegatorTokens":9999999949775}},{"ix":91,"action":{"kind":"Delegate","val":1,"amt":4297},"partialState":{"h":4,"t":24,"tokens":[14090,9712,3167,3283],"delegation":[13090,8712,2167,2283],"delegatorTokens":9999999945478}},{"ix":92,"action":{"kind":"Delegate","val":1,"amt":1337},"partialState":{"h":4,"t":24,"tokens":[14090,11049,3167,3283],"delegation":[13090,10049,2167,2283],"delegatorTokens":9999999944141}},{"ix":93,"action":{"kind":"Delegate","val":2,"amt":4192},"partialState":{"h":4,"t":24,"tokens":[14090,11049,7359,3283],"delegation":[13090,10049,6359,2283],"delegatorTokens":9999999939949}},{"ix":94,"action":{"kind":"Undelegate","val":2,"amt":1668},"partialState":{"h":4,"t":24,"tokens":[14090,11049,5691,3283],"delegation":[13090,10049,4691,2283],"delegatorTokens":9999999939949}},{"ix":95,"action":{"kind":"Deliver","chain":"consumer","numPackets":1},"partialState":{"h":10,"t":60,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,true,true,true]}},{"ix":96,"action":{"kind":"Undelegate","val":2,"amt":2086},"partialState":{"h":4,"t":24,"tokens":[14090,11049,3605,3283],"delegation":[13090,10049,2605,2283],"delegatorTokens":9999999939949}},{"ix":97,"action":{"kind":"Undelegate","val":3,"amt":1880},"partialState":{"h":4,"t":24,"tokens":[14090,11049,3605,1403],"delegation":[13090,10049,2605,403],"delegatorTokens":9999999939949}},{"ix":98,"action":{"kind":"Deliver","chain":"consumer","numPackets":3},"partialState":{"h":10,"t":60,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,true,true,true]}},{"ix":99,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":100,"action":{"kind":"Delegate","val":1,"amt":2796},"partialState":{"h":4,"t":24,"tokens":[14090,13845,3605,1403],"delegation":[13090,12845,2605,403],"delegatorTokens":9999999937153}},{"ix":101,"action":{"kind":"Deliver","chain":"provider","numPackets":5},"partialState":{"h":4,"t":24,"tokens":[14090,13845,3605,1403],"delegation":[13090,12845,2605,403],"delegatorTokens":9999999937153,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":102,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":11,"t":66,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,true,true,true]}},{"ix":103,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":104,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":105,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":106,"action":{"kind":"Deliver","chain":"provider","numPackets":5},"partialState":{"h":4,"t":24,"tokens":[14090,13845,3605,1403],"delegation":[13090,12845,2605,403],"delegatorTokens":9999999937153,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":107,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":108,"action":{"kind":"Undelegate","val":1,"amt":2182},"partialState":{"h":4,"t":24,"tokens":[14090,11663,3605,1403],"delegation":[13090,10663,2605,403],"delegatorTokens":9999999937153}},{"ix":109,"action":{"kind":"Deliver","chain":"consumer","numPackets":3},"partialState":{"h":11,"t":66,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,true,true,true]}},{"ix":110,"action":{"kind":"Deliver","chain":"provider","numPackets":4},"partialState":{"h":4,"t":24,"tokens":[14090,11663,3605,1403],"delegation":[13090,10663,2605,403],"delegatorTokens":9999999937153,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":111,"action":{"kind":"Delegate","val":3,"amt":4965},"partialState":{"h":4,"t":24,"tokens":[14090,11663,3605,6368],"delegation":[13090,10663,2605,5368],"delegatorTokens":9999999932188}},{"ix":112,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":113,"action":{"kind":"Delegate","val":2,"amt":3711},"partialState":{"h":4,"t":24,"tokens":[14090,11663,7316,6368],"delegation":[13090,10663,6316,5368],"delegatorTokens":9999999928477}},{"ix":114,"action":{"kind":"Undelegate","val":2,"amt":2743},"partialState":{"h":4,"t":24,"tokens":[14090,11663,4573,6368],"delegation":[13090,10663,3573,5368],"delegatorTokens":9999999928477}},{"ix":115,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":116,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":117,"action":{"kind":"Delegate","val":1,"amt":2031},"partialState":{"h":4,"t":24,"tokens":[14090,13694,4573,6368],"delegation":[13090,12694,3573,5368],"delegatorTokens":9999999926446}},{"ix":118,"action":{"kind":"Deliver","chain":"consumer","numPackets":4},"partialState":{"h":11,"t":66,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,true,true,true]}},{"ix":119,"action":{"kind":"Delegate","val":1,"amt":2628},"partialState":{"h":4,"t":24,"tokens":[14090,16322,4573,6368],"delegation":[13090,15322,3573,5368],"delegatorTokens":9999999923818}},{"ix":120,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":121,"action":{"kind":"Deliver","chain":"consumer","numPackets":1},"partialState":{"h":11,"t":66,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,true,true,true]}},{"ix":122,"action":{"kind":"Delegate","val":3,"amt":4165},"partialState":{"h":4,"t":24,"tokens":[14090,16322,4573,10533],"delegation":[13090,15322,3573,9533],"delegatorTokens":9999999919653}},{"ix":123,"action":{"kind":"Delegate","val":1,"amt":1882},"partialState":{"h":4,"t":24,"tokens":[14090,18204,4573,10533],"delegation":[13090,17204,3573,9533],"delegatorTokens":9999999917771}},{"ix":124,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":5,"t":30,"tokens":[14090,18204,4573,10533],"delegation":[13090,17204,3573,9533],"delegatorTokens":9999999917771,"jailed":[null,1000000000000023,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":125,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":6,"t":36,"tokens":[14090,18204,4573,10533],"delegation":[13090,17204,3573,9533],"delegatorTokens":9999999917771,"jailed":[null,1000000000000023,null,null],"status":["bonded","unbonding","unbonded","bonded"]}},{"ix":126,"action":{"kind":"Deliver","chain":"consumer","numPackets":1},"partialState":{"h":11,"t":66,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,true,true,true]}},{"ix":127,"action":{"kind":"Deliver","chain":"consumer","numPackets":3},"partialState":{"h":11,"t":66,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,false,true,true]}},{"ix":128,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":129,"action":{"kind":"Undelegate","val":2,"amt":2869},"partialState":{"h":6,"t":36,"tokens":[14090,18204,1704,10533],"delegation":[13090,17204,704,9533],"delegatorTokens":9999999917771}},{"ix":130,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":7,"t":42,"tokens":[14090,18204,1704,10533],"delegation":[13090,17204,704,9533],"delegatorTokens":9999999917771,"jailed":[null,1000000000000023,null,null],"status":["bonded","unbonding","unbonded","bonded"]}},{"ix":131,"action":{"kind":"Deliver","chain":"consumer","numPackets":6},"partialState":{"h":11,"t":66,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,false,true,true]}},{"ix":132,"action":{"kind":"Undelegate","val":3,"amt":2173},"partialState":{"h":7,"t":42,"tokens":[14090,18204,1704,8360],"delegation":[13090,17204,704,7360],"delegatorTokens":9999999917771}},{"ix":133,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":12,"t":72,"consumerPower":[14090,null,null,10533],"outstandingDowntime":[false,false,true,true]}},{"ix":134,"action":{"kind":"Deliver","chain":"provider","numPackets":6},"partialState":{"h":7,"t":42,"tokens":[14090,18204,1704,8360],"delegation":[13090,17204,704,7360],"delegatorTokens":9999999917771,"jailed":[null,1000000000000023,null,null],"status":["bonded","unbonding","unbonded","bonded"]}},{"ix":135,"action":{"kind":"Deliver","chain":"provider","numPackets":4},"partialState":{"h":7,"t":42,"tokens":[14090,18204,1704,8360],"delegation":[13090,17204,704,7360],"delegatorTokens":9999999917771,"jailed":[null,1000000000000023,null,null],"status":["bonded","unbonding","unbonded","bonded"]}},{"ix":136,"action":{"kind":"Delegate","val":3,"amt":1173},"partialState":{"h":7,"t":42,"tokens":[14090,18204,1704,9533],"delegation":[13090,17204,704,8533],"delegatorTokens":9999999916598}},{"ix":137,"action":{"kind":"Undelegate","val":3,"amt":3663},"partialState":{"h":7,"t":42,"tokens":[14090,18204,1704,5870],"delegation":[13090,17204,704,4870],"delegatorTokens":9999999916598}},{"ix":138,"action":{"kind":"Delegate","val":1,"amt":1265},"partialState":{"h":7,"t":42,"tokens":[14090,19469,1704,5870],"delegation":[13090,18469,704,4870],"delegatorTokens":9999999915333}},{"ix":139,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":140,"action":{"kind":"Delegate","val":3,"amt":3303},"partialState":{"h":7,"t":42,"tokens":[14090,19469,1704,9173],"delegation":[13090,18469,704,8173],"delegatorTokens":9999999912030}},{"ix":141,"action":{"kind":"Undelegate","val":2,"amt":2543},"partialState":{"h":7,"t":42,"tokens":[14090,19469,1704,9173],"delegation":[13090,18469,704,8173],"delegatorTokens":9999999912030}},{"ix":142,"action":{"kind":"Deliver","chain":"consumer","numPackets":6},"partialState":{"h":12,"t":72,"consumerPower":[14090,null,null,10533],"outstandingDowntime":[false,false,true,true]}},{"ix":143,"action":{"kind":"Deliver","chain":"consumer","numPackets":6},"partialState":{"h":12,"t":72,"consumerPower":[14090,null,null,10533],"outstandingDowntime":[false,false,true,true]}},{"ix":144,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":8,"t":48,"tokens":[14090,19469,1704,9173],"delegation":[13090,18469,704,8173],"delegatorTokens":9999999912030,"jailed":[null,1000000000000023,null,null],"status":["bonded","unbonding","unbonded","bonded"]}},{"ix":145,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":146,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":147,"action":{"kind":"Delegate","val":2,"amt":1896},"partialState":{"h":8,"t":48,"tokens":[14090,19469,3600,9173],"delegation":[13090,18469,2600,8173],"delegatorTokens":9999999910134}},{"ix":148,"action":{"kind":"Deliver","chain":"provider","numPackets":1},"partialState":{"h":8,"t":48,"tokens":[14090,19469,3600,9173],"delegation":[13090,18469,2600,8173],"delegatorTokens":9999999910134,"jailed":[null,1000000000000023,null,null],"status":["bonded","unbonding","unbonded","bonded"]}},{"ix":149,"action":{"kind":"Undelegate","val":0,"amt":4313},"partialState":{"h":8,"t":48,"tokens":[9777,19469,3600,9173],"delegation":[8777,18469,2600,8173],"delegatorTokens":9999999910134}},{"ix":150,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":151,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":9,"t":54,"tokens":[9777,19469,3600,9173],"delegation":[8777,18469,2600,8173],"delegatorTokens":9999999910134,"jailed":[null,1000000000000023,null,null],"status":["bonded","unbonding","unbonded","bonded"]}},{"ix":152,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":153,"action":{"kind":"Deliver","chain":"provider","numPackets":4},"partialState":{"h":9,"t":54,"tokens":[9777,19469,3600,9173],"delegation":[8777,18469,2600,8173],"delegatorTokens":9999999910134,"jailed":[null,1000000000000023,null,null],"status":["bonded","unbonding","unbonded","bonded"]}},{"ix":154,"action":{"kind":"Undelegate","val":2,"amt":3448},"partialState":{"h":9,"t":54,"tokens":[9777,19469,3600,9173],"delegation":[8777,18469,2600,8173],"delegatorTokens":9999999910134}},{"ix":155,"action":{"kind":"Deliver","chain":"provider","numPackets":5},"partialState":{"h":9,"t":54,"tokens":[9777,19469,3600,9173],"delegation":[8777,18469,2600,8173],"delegatorTokens":9999999910134,"jailed":[null,1000000000000023,null,null],"status":["bonded","unbonding","unbonded","bonded"]}},{"ix":156,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":13,"t":78,"consumerPower":[14090,null,null,10533],"outstandingDowntime":[false,false,true,true]}},{"ix":157,"action":{"kind":"Deliver","chain":"consumer","numPackets":6},"partialState":{"h":13,"t":78,"consumerPower":[14090,null,null,10533],"outstandingDowntime":[false,false,true,true]}},{"ix":158,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":159,"action":{"kind":"Deliver","chain":"consumer","numPackets":6},"partialState":{"h":13,"t":78,"consumerPower":[14090,null,null,10533],"outstandingDowntime":[false,false,true,true]}},{"ix":160,"action":{"kind":"Deliver","chain":"consumer","numPackets":6},"partialState":{"h":13,"t":78,"consumerPower":[14090,null,null,10533],"outstandingDowntime":[false,false,true,true]}},{"ix":161,"action":{"kind":"Deliver","chain":"provider","numPackets":3},"partialState":{"h":9,"t":54,"tokens":[9777,19469,3600,9173],"delegation":[8777,18469,2600,8173],"delegatorTokens":9999999910134,"jailed":[null,1000000000000023,null,null],"status":["bonded","unbonding","unbonded","bonded"]}},{"ix":162,"action":{"kind":"Undelegate","val":1,"amt":3749},"partialState":{"h":9,"t":54,"tokens":[9777,15720,3600,9173],"delegation":[8777,14720,2600,8173],"delegatorTokens":9999999910134}},{"ix":163,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":14,"t":84,"consumerPower":[14090,null,null,9173],"outstandingDowntime":[false,false,true,true]}},{"ix":164,"action":{"kind":"Deliver","chain":"provider","numPackets":3},"partialState":{"h":9,"t":54,"tokens":[9777,15720,3600,9173],"delegation":[8777,14720,2600,8173],"delegatorTokens":9999999910134,"jailed":[null,1000000000000023,null,null],"status":["bonded","unbonding","unbonded","bonded"]}},{"ix":165,"action":{"kind":"Deliver","chain":"provider","numPackets":2},"partialState":{"h":9,"t":54,"tokens":[9777,15720,3600,9173],"delegation":[8777,14720,2600,8173],"delegatorTokens":9999999910134,"jailed":[null,1000000000000023,null,null],"status":["bonded","unbonding","unbonded","bonded"]}},{"ix":166,"action":{"kind":"Deliver","chain":"consumer","numPackets":2},"partialState":{"h":14,"t":84,"consumerPower":[14090,null,null,9173],"outstandingDowntime":[false,false,true,true]}},{"ix":167,"action":{"kind":"Delegate","val":0,"amt":3675},"partialState":{"h":9,"t":54,"tokens":[13452,15720,3600,9173],"delegation":[12452,14720,2600,8173],"delegatorTokens":9999999906459}},{"ix":168,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":15,"t":90,"consumerPower":[14090,null,null,9173],"outstandingDowntime":[false,false,true,true]}},{"ix":169,"action":{"kind":"Undelegate","val":3,"amt":1873},"partialState":{"h":9,"t":54,"tokens":[13452,15720,3600,7300],"delegation":[12452,14720,2600,6300],"delegatorTokens":9999999906459}},{"ix":170,"action":{"kind":"Deliver","chain":"consumer","numPackets":4},"partialState":{"h":15,"t":90,"consumerPower":[14090,null,null,9173],"outstandingDowntime":[false,false,true,true]}},{"ix":171,"action":{"kind":"Undelegate","val":2,"amt":1568},"partialState":{"h":9,"t":54,"tokens":[13452,15720,2032,7300],"delegation":[12452,14720,1032,6300],"delegatorTokens":9999999906459}},{"ix":172,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":173,"action":{"kind":"Undelegate","val":1,"amt":1771},"partialState":{"h":9,"t":54,"tokens":[13452,13949,2032,7300],"delegation":[12452,12949,1032,6300],"delegatorTokens":9999999906459}},{"ix":174,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":175,"action":{"kind":"Delegate","val":0,"amt":2807},"partialState":{"h":9,"t":54,"tokens":[16259,13949,2032,7300],"delegation":[15259,12949,1032,6300],"delegatorTokens":9999999903652}},{"ix":176,"action":{"kind":"Deliver","chain":"provider","numPackets":6},"partialState":{"h":9,"t":54,"tokens":[16259,13949,2032,7300],"delegation":[15259,12949,1032,6300],"delegatorTokens":9999999903652,"jailed":[null,1000000000000023,null,null],"status":["bonded","unbonding","unbonded","bonded"]}},{"ix":177,"action":{"kind":"Deliver","chain":"consumer","numPackets":1},"partialState":{"h":15,"t":90,"consumerPower":[14090,null,null,9173],"outstandingDowntime":[false,false,true,true]}},{"ix":178,"action":{"kind":"Undelegate","val":3,"amt":4340},"partialState":{"h":9,"t":54,"tokens":[16259,13949,2032,2960],"delegation":[15259,12949,1032,1960],"delegatorTokens":9999999903652}},{"ix":179,"action":{"kind":"Deliver","chain":"consumer","numPackets":4},"partialState":{"h":15,"t":90,"consumerPower":[14090,null,null,9173],"outstandingDowntime":[false,false,true,true]}},{"ix":180,"action":{"kind":"Delegate","val":3,"amt":2723},"partialState":{"h":9,"t":54,"tokens":[16259,13949,2032,5683],"delegation":[15259,12949,1032,4683],"delegatorTokens":9999999900929}},{"ix":181,"action":{"kind":"Delegate","val":3,"amt":3518},"partialState":{"h":9,"t":54,"tokens":[16259,13949,2032,9201],"delegation":[15259,12949,1032,8201],"delegatorTokens":9999999897411}},{"ix":182,"action":{"kind":"Delegate","val":0,"amt":2556},"partialState":{"h":9,"t":54,"tokens":[18815,13949,2032,9201],"delegation":[17815,12949,1032,8201],"delegatorTokens":9999999894855}},{"ix":183,"action":{"kind":"Deliver","chain":"provider","numPackets":1},"partialState":{"h":9,"t":54,"tokens":[18815,13949,2032,9201],"delegation":[17815,12949,1032,8201],"delegatorTokens":9999999894855,"jailed":[null,1000000000000023,null,null],"status":["bonded","unbonding","unbonded","bonded"]}},{"ix":184,"action":{"kind":"Undelegate","val":0,"amt":1971},"partialState":{"h":9,"t":54,"tokens":[16844,13949,2032,9201],"delegation":[15844,12949,1032,8201],"delegatorTokens":9999999894855}},{"ix":185,"action":{"kind":"Delegate","val":3,"amt":2867},"partialState":{"h":9,"t":54,"tokens":[16844,13949,2032,12068],"delegation":[15844,12949,1032,11068],"delegatorTokens":9999999891988}},{"ix":186,"action":{"kind":"Delegate","val":3,"amt":1440},"partialState":{"h":9,"t":54,"tokens":[16844,13949,2032,13508],"delegation":[15844,12949,1032,12508],"delegatorTokens":9999999890548}},{"ix":187,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":10,"t":60,"tokens":[16844,13949,2032,13508],"delegation":[15844,12949,1032,12508],"delegatorTokens":9999999890548,"jailed":[null,1000000000000023,null,null],"status":["bonded","unbonding","unbonded","bonded"]}},{"ix":188,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":189,"action":{"kind":"Delegate","val":1,"amt":2627},"partialState":{"h":10,"t":60,"tokens":[16844,16576,2032,13508],"delegation":[15844,15576,1032,12508],"delegatorTokens":9999999887921}},{"ix":190,"action":{"kind":"Undelegate","val":3,"amt":3164},"partialState":{"h":10,"t":60,"tokens":[16844,16576,2032,10344],"delegation":[15844,15576,1032,9344],"delegatorTokens":9999999887921}},{"ix":191,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":192,"action":{"kind":"Undelegate","val":1,"amt":3192},"partialState":{"h":10,"t":60,"tokens":[16844,13384,2032,10344],"delegation":[15844,12384,1032,9344],"delegatorTokens":9999999887921}},{"ix":193,"action":{"kind":"Undelegate","val":0,"amt":1011},"partialState":{"h":10,"t":60,"tokens":[15833,13384,2032,10344],"delegation":[14833,12384,1032,9344],"delegatorTokens":9999999887921}},{"ix":194,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":195,"action":{"kind":"Undelegate","val":3,"amt":3144},"partialState":{"h":10,"t":60,"tokens":[15833,13384,2032,7200],"delegation":[14833,12384,1032,6200],"delegatorTokens":9999999887921}},{"ix":196,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":11,"t":66,"tokens":[15833,13384,2032,7200],"delegation":[14833,12384,1032,6200],"delegatorTokens":9999999887921,"jailed":[null,1000000000000023,null,null],"status":["bonded","unbonding","unbonded","bonded"]}},{"ix":197,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":12,"t":72,"tokens":[15833,13384,2032,7200],"delegation":[14833,12384,1032,6200],"delegatorTokens":9999999887921,"jailed":[null,1000000000000023,null,null],"status":["bonded","unbonding","unbonded","bonded"]}},{"ix":198,"action":{"kind":"Deliver","chain":"consumer","numPackets":3},"partialState":{"h":15,"t":90,"consumerPower":[14090,null,null,9173],"outstandingDowntime":[false,false,true,true]}},{"ix":199,"action":{"kind":"Deliver","chain":"provider","numPackets":1},"partialState":{"h":12,"t":72,"tokens":[15833,13384,2032,7200],"delegation":[14833,12384,1032,6200],"delegatorTokens":9999999887921,"jailed":[null,1000000000000023,null,null],"status":["bonded","unbonding","unbonded","bonded"]}}],"events":["insufficient_shares","insufficient_shares","send_double_sign_slash_request","send_double_sign_slash_request","insufficient_shares","insufficient_shares","send_double_sign_slash_request","insufficient_shares","receive_double_sign_slash_request","insufficient_shares","insufficient_shares","send_downtime_slash_request","send_double_sign_slash_request","insufficient_shares","send_downtime_slash_request","send_double_sign_slash_request","downtime_slash_request_outstanding","downtime_slash_request_outstanding","send_downtime_slash_request","insufficient_shares","receive_double_sign_slash_request","receive_double_sign_slash_request","send_vsc_without_downtime_ack","insufficient_shares","receive_double_sign_slash_request","receive_double_sign_slash_request","insufficient_shares","receive_downtime_slash_request","jail","receive_slash_request_unbonded","receive_slash_request_unbonded","send_vsc_with_downtime_ack","more_than_one_third_val_power_change","send_vsc_without_downtime_ack","receive_downtime_slash_ack","send_vsc_not_because_change","send_vsc_without_downtime_ack","consumer_update_val","consumer_del_val","consumer_add_val","insufficient_shares","send_vsc_without_downtime_ack","send_vsc_without_downtime_ack","insufficient_shares","consumer_update_val","send_vsc_without_downtime_ack","send_vsc_without_downtime_ack"]},{"meta":{"commit":"7ffd0c04e4205cbc9caf212abfe6c59ee43153bf"},"constants":{"P":"provider","C":"consumer","UNBONDING_SECONDS_P":70,"UNBONDING_SECONDS_C":50,"TRUSTING_SECONDS":49,"NUM_VALIDATORS":4,"MAX_VALIDATORS":2,"SLASH_DOUBLESIGN":0,"SLASH_DOWNTIME":0,"JAIL_SECONDS":999999999999999,"BLOCK_SECONDS":6,"INITIAL_DELEGATOR_TOKENS":10000000000000,"DELEGATE_AMT_MIN":1000,"DELEGATE_AMT_MAX":5000,"UNDELEGATE_AMT_MIN":1000,"UNDELEGATE_AMT_MAX":5000,"ISDOWNTIME_PROBABILITY":0.5,"MAX_NUM_PACKETS_FOR_DELIVER":6},"actions":[{"ix":0,"action":{"kind":"Delegate","val":0,"amt":3663},"partialState":{"h":1,"t":6,"tokens":[8663,4000,3000,2000],"delegation":[7663,3000,2000,1000],"delegatorTokens":9999999996337}},{"ix":1,"action":{"kind":"Deliver","chain":"provider","numPackets":1},"partialState":{"h":1,"t":6,"tokens":[8663,4000,3000,2000],"delegation":[7663,3000,2000,1000],"delegatorTokens":9999999996337,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":2,"action":{"kind":"Deliver","chain":"consumer","numPackets":4},"partialState":{"h":1,"t":6,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":3,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":4,"action":{"kind":"ConsumerSlash","val":3,"infractionHeight":0,"isDowntime":true},"partialState":{"h":1,"t":6,"outstandingDowntime":[false,false,false,true]}},{"ix":5,"action":{"kind":"Delegate","val":1,"amt":3512},"partialState":{"h":1,"t":6,"tokens":[8663,7512,3000,2000],"delegation":[7663,6512,2000,1000],"delegatorTokens":9999999992825}},{"ix":6,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":2,"t":12,"tokens":[8663,7512,3000,2000],"delegation":[7663,6512,2000,1000],"delegatorTokens":9999999992825,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":7,"action":{"kind":"ConsumerSlash","val":3,"infractionHeight":0,"isDowntime":true},"partialState":{"h":1,"t":6,"outstandingDowntime":[false,false,false,true]}},{"ix":8,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":2,"t":12,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,false,false,true]}},{"ix":9,"action":{"kind":"Deliver","chain":"provider","numPackets":1},"partialState":{"h":2,"t":12,"tokens":[8663,7512,3000,2000],"delegation":[7663,6512,2000,1000],"delegatorTokens":9999999992825,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":10,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":11,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":3,"t":18,"tokens":[8663,7512,3000,2000],"delegation":[7663,6512,2000,1000],"delegatorTokens":9999999992825,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":12,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":13,"action":{"kind":"Deliver","chain":"consumer","numPackets":3},"partialState":{"h":2,"t":12,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,false,false,true]}},{"ix":14,"action":{"kind":"Deliver","chain":"consumer","numPackets":2},"partialState":{"h":2,"t":12,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,false,false,true]}},{"ix":15,"action":{"kind":"Deliver","chain":"consumer","numPackets":1},"partialState":{"h":2,"t":12,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,false,false,true]}},{"ix":16,"action":{"kind":"Undelegate","val":2,"amt":2911},"partialState":{"h":3,"t":18,"tokens":[8663,7512,3000,2000],"delegation":[7663,6512,2000,1000],"delegatorTokens":9999999992825}},{"ix":17,"action":{"kind":"ConsumerSlash","val":3,"infractionHeight":0,"isDowntime":false},"partialState":{"h":2,"t":12,"outstandingDowntime":[false,false,false,true]}},{"ix":18,"action":{"kind":"Delegate","val":1,"amt":3611},"partialState":{"h":3,"t":18,"tokens":[8663,11123,3000,2000],"delegation":[7663,10123,2000,1000],"delegatorTokens":9999999989214}},{"ix":19,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":20,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":21,"action":{"kind":"Delegate","val":0,"amt":1874},"partialState":{"h":3,"t":18,"tokens":[10537,11123,3000,2000],"delegation":[9537,10123,2000,1000],"delegatorTokens":9999999987340}},{"ix":22,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":23,"action":{"kind":"Deliver","chain":"provider","numPackets":3},"partialState":{"h":3,"t":18,"tokens":[10537,11123,3000,2000],"delegation":[9537,10123,2000,1000],"delegatorTokens":9999999987340,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":24,"action":{"kind":"Deliver","chain":"consumer","numPackets":5},"partialState":{"h":2,"t":12,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,false,false,true]}},{"ix":25,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":3,"t":18,"consumerPower":[8663,7512,null,null],"outstandingDowntime":[false,false,false,true]}},{"ix":26,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":27,"action":{"kind":"Deliver","chain":"provider","numPackets":4},"partialState":{"h":3,"t":18,"tokens":[10537,11123,3000,2000],"delegation":[9537,10123,2000,1000],"delegatorTokens":9999999987340,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":28,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":4,"t":24,"consumerPower":[8663,7512,null,null],"outstandingDowntime":[false,false,false,true]}},{"ix":29,"action":{"kind":"Deliver","chain":"provider","numPackets":1},"partialState":{"h":3,"t":18,"tokens":[10537,11123,3000,2000],"delegation":[9537,10123,2000,1000],"delegatorTokens":9999999987340,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":30,"action":{"kind":"ConsumerSlash","val":1,"infractionHeight":2,"isDowntime":true},"partialState":{"h":4,"t":24,"outstandingDowntime":[false,true,false,true]}},{"ix":31,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":4,"t":24,"tokens":[10537,11123,3000,2000],"delegation":[9537,10123,2000,1000],"delegatorTokens":9999999987340,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":32,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":5,"t":30,"consumerPower":[8663,7512,null,null],"outstandingDowntime":[false,true,false,true]}},{"ix":33,"action":{"kind":"ConsumerSlash","val":3,"infractionHeight":1,"isDowntime":true},"partialState":{"h":5,"t":30,"outstandingDowntime":[false,true,false,true]}},{"ix":34,"action":{"kind":"Undelegate","val":0,"amt":1352},"partialState":{"h":4,"t":24,"tokens":[9185,11123,3000,2000],"delegation":[8185,10123,2000,1000],"delegatorTokens":9999999987340}},{"ix":35,"action":{"kind":"Deliver","chain":"provider","numPackets":6},"partialState":{"h":4,"t":24,"tokens":[9185,11123,3000,2000],"delegation":[8185,10123,2000,1000],"delegatorTokens":9999999987340,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":36,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":37,"action":{"kind":"Delegate","val":0,"amt":1482},"partialState":{"h":4,"t":24,"tokens":[10667,11123,3000,2000],"delegation":[9667,10123,2000,1000],"delegatorTokens":9999999985858}},{"ix":38,"action":{"kind":"Undelegate","val":1,"amt":4592},"partialState":{"h":4,"t":24,"tokens":[10667,6531,3000,2000],"delegation":[9667,5531,2000,1000],"delegatorTokens":9999999985858}},{"ix":39,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":40,"action":{"kind":"ConsumerSlash","val":2,"infractionHeight":4,"isDowntime":true},"partialState":{"h":5,"t":30,"outstandingDowntime":[false,true,true,true]}},{"ix":41,"action":{"kind":"Delegate","val":0,"amt":4050},"partialState":{"h":4,"t":24,"tokens":[14717,6531,3000,2000],"delegation":[13717,5531,2000,1000],"delegatorTokens":9999999981808}},{"ix":42,"action":{"kind":"Deliver","chain":"consumer","numPackets":2},"partialState":{"h":5,"t":30,"consumerPower":[8663,7512,null,null],"outstandingDowntime":[false,true,true,true]}},{"ix":43,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":44,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":45,"action":{"kind":"Delegate","val":0,"amt":1649},"partialState":{"h":4,"t":24,"tokens":[16366,6531,3000,2000],"delegation":[15366,5531,2000,1000],"delegatorTokens":9999999980159}},{"ix":46,"action":{"kind":"Undelegate","val":1,"amt":1836},"partialState":{"h":4,"t":24,"tokens":[16366,4695,3000,2000],"delegation":[15366,3695,2000,1000],"delegatorTokens":9999999980159}},{"ix":47,"action":{"kind":"Deliver","chain":"consumer","numPackets":4},"partialState":{"h":5,"t":30,"consumerPower":[8663,7512,null,null],"outstandingDowntime":[false,true,true,true]}},{"ix":48,"action":{"kind":"Undelegate","val":2,"amt":4859},"partialState":{"h":4,"t":24,"tokens":[16366,4695,3000,2000],"delegation":[15366,3695,2000,1000],"delegatorTokens":9999999980159}},{"ix":49,"action":{"kind":"Undelegate","val":2,"amt":4293},"partialState":{"h":4,"t":24,"tokens":[16366,4695,3000,2000],"delegation":[15366,3695,2000,1000],"delegatorTokens":9999999980159}},{"ix":50,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":51,"action":{"kind":"Deliver","chain":"provider","numPackets":5},"partialState":{"h":4,"t":24,"tokens":[16366,4695,3000,2000],"delegation":[15366,3695,2000,1000],"delegatorTokens":9999999980159,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":52,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":6,"t":36,"consumerPower":[8663,7512,null,null],"outstandingDowntime":[false,true,true,true]}},{"ix":53,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":7,"t":42,"consumerPower":[8663,7512,null,null],"outstandingDowntime":[false,true,true,true]}},{"ix":54,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":55,"action":{"kind":"Deliver","chain":"consumer","numPackets":3},"partialState":{"h":7,"t":42,"consumerPower":[8663,7512,null,null],"outstandingDowntime":[false,true,true,true]}},{"ix":56,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":57,"action":{"kind":"Delegate","val":1,"amt":2470},"partialState":{"h":4,"t":24,"tokens":[16366,7165,3000,2000],"delegation":[15366,6165,2000,1000],"delegatorTokens":9999999977689}},{"ix":58,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":59,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":5,"t":30,"tokens":[16366,7165,3000,2000],"delegation":[15366,6165,2000,1000],"delegatorTokens":9999999977689,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":60,"action":{"kind":"Deliver","chain":"consumer","numPackets":1},"partialState":{"h":7,"t":42,"consumerPower":[8663,7512,null,null],"outstandingDowntime":[false,true,true,true]}},{"ix":61,"action":{"kind":"Delegate","val":0,"amt":4755},"partialState":{"h":5,"t":30,"tokens":[21121,7165,3000,2000],"delegation":[20121,6165,2000,1000],"delegatorTokens":9999999972934}},{"ix":62,"action":{"kind":"Deliver","chain":"consumer","numPackets":3},"partialState":{"h":7,"t":42,"consumerPower":[8663,7512,null,null],"outstandingDowntime":[false,true,true,true]}},{"ix":63,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":8,"t":48,"consumerPower":[10537,11123,null,null],"outstandingDowntime":[false,true,true,true]}},{"ix":64,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":9,"t":54,"consumerPower":[10537,11123,null,null],"outstandingDowntime":[false,true,true,true]}},{"ix":65,"action":{"kind":"Deliver","chain":"provider","numPackets":4},"partialState":{"h":5,"t":30,"tokens":[21121,7165,3000,2000],"delegation":[20121,6165,2000,1000],"delegatorTokens":9999999972934,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":66,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":10,"t":60,"consumerPower":[10537,11123,null,null],"outstandingDowntime":[false,true,true,true]}},{"ix":67,"action":{"kind":"Undelegate","val":1,"amt":3929},"partialState":{"h":5,"t":30,"tokens":[21121,3236,3000,2000],"delegation":[20121,2236,2000,1000],"delegatorTokens":9999999972934}},{"ix":68,"action":{"kind":"Undelegate","val":1,"amt":2607},"partialState":{"h":5,"t":30,"tokens":[21121,3236,3000,2000],"delegation":[20121,2236,2000,1000],"delegatorTokens":9999999972934}},{"ix":69,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":11,"t":66,"consumerPower":[10537,11123,null,null],"outstandingDowntime":[false,true,true,true]}},{"ix":70,"action":{"kind":"Delegate","val":1,"amt":4234},"partialState":{"h":5,"t":30,"tokens":[21121,7470,3000,2000],"delegation":[20121,6470,2000,1000],"delegatorTokens":9999999968700}},{"ix":71,"action":{"kind":"Undelegate","val":3,"amt":3705},"partialState":{"h":5,"t":30,"tokens":[21121,7470,3000,2000],"delegation":[20121,6470,2000,1000],"delegatorTokens":9999999968700}},{"ix":72,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":6,"t":36,"tokens":[21121,7470,3000,2000],"delegation":[20121,6470,2000,1000],"delegatorTokens":9999999968700,"jailed":[null,1000000000000029,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":73,"action":{"kind":"Deliver","chain":"provider","numPackets":6},"partialState":{"h":6,"t":36,"tokens":[21121,7470,3000,2000],"delegation":[20121,6470,2000,1000],"delegatorTokens":9999999968700,"jailed":[null,1000000000000029,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":74,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":7,"t":42,"tokens":[21121,7470,3000,2000],"delegation":[20121,6470,2000,1000],"delegatorTokens":9999999968700,"jailed":[null,1000000000000029,null,null],"status":["bonded","unbonding","bonded","unbonded"]}},{"ix":75,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":8,"t":48,"tokens":[21121,7470,3000,2000],"delegation":[20121,6470,2000,1000],"delegatorTokens":9999999968700,"jailed":[null,1000000000000029,null,null],"status":["bonded","unbonding","bonded","unbonded"]}},{"ix":76,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":12,"t":72,"consumerPower":[10537,11123,null,null],"outstandingDowntime":[false,true,true,true]}},{"ix":77,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":78,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":9,"t":54,"tokens":[21121,7470,3000,2000],"delegation":[20121,6470,2000,1000],"delegatorTokens":9999999968700,"jailed":[null,1000000000000029,null,null],"status":["bonded","unbonding","bonded","unbonded"]}},{"ix":79,"action":{"kind":"Undelegate","val":2,"amt":1737},"partialState":{"h":9,"t":54,"tokens":[21121,7470,1263,2000],"delegation":[20121,6470,263,1000],"delegatorTokens":9999999968700}},{"ix":80,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":13,"t":78,"consumerPower":[10537,11123,null,null],"outstandingDowntime":[false,true,true,true]}},{"ix":81,"action":{"kind":"Delegate","val":3,"amt":1317},"partialState":{"h":9,"t":54,"tokens":[21121,7470,1263,3317],"delegation":[20121,6470,263,2317],"delegatorTokens":9999999967383}},{"ix":82,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":83,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":84,"action":{"kind":"Deliver","chain":"provider","numPackets":5},"partialState":{"h":9,"t":54,"tokens":[21121,7470,1263,3317],"delegation":[20121,6470,263,2317],"delegatorTokens":9999999967383,"jailed":[null,1000000000000029,null,null],"status":["bonded","unbonding","bonded","unbonded"]}},{"ix":85,"action":{"kind":"Undelegate","val":3,"amt":1931},"partialState":{"h":9,"t":54,"tokens":[21121,7470,1263,1386],"delegation":[20121,6470,263,386],"delegatorTokens":9999999967383}},{"ix":86,"action":{"kind":"Deliver","chain":"provider","numPackets":3},"partialState":{"h":9,"t":54,"tokens":[21121,7470,1263,1386],"delegation":[20121,6470,263,386],"delegatorTokens":9999999967383,"jailed":[null,1000000000000029,null,null],"status":["bonded","unbonding","bonded","unbonded"]}},{"ix":87,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":88,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":89,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":90,"action":{"kind":"Delegate","val":2,"amt":3613},"partialState":{"h":9,"t":54,"tokens":[21121,7470,4876,1386],"delegation":[20121,6470,3876,386],"delegatorTokens":9999999963770}},{"ix":91,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":14,"t":84,"consumerPower":[10537,11123,null,null],"outstandingDowntime":[false,true,true,true]}},{"ix":92,"action":{"kind":"Undelegate","val":3,"amt":3566},"partialState":{"h":9,"t":54,"tokens":[21121,7470,4876,1386],"delegation":[20121,6470,3876,386],"delegatorTokens":9999999963770}},{"ix":93,"action":{"kind":"Delegate","val":2,"amt":3202},"partialState":{"h":9,"t":54,"tokens":[21121,7470,8078,1386],"delegation":[20121,6470,7078,386],"delegatorTokens":9999999960568}},{"ix":94,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":10,"t":60,"tokens":[21121,7470,8078,1386],"delegation":[20121,6470,7078,386],"delegatorTokens":9999999960568,"jailed":[null,1000000000000029,null,null],"status":["bonded","unbonding","bonded","unbonded"]}},{"ix":95,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":15,"t":90,"consumerPower":[10537,11123,null,null],"outstandingDowntime":[false,true,true,true]}},{"ix":96,"action":{"kind":"Undelegate","val":0,"amt":1236},"partialState":{"h":10,"t":60,"tokens":[19885,7470,8078,1386],"delegation":[18885,6470,7078,386],"delegatorTokens":9999999960568}},{"ix":97,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":16,"t":96,"consumerPower":[10537,11123,null,null],"outstandingDowntime":[false,true,true,true]}},{"ix":98,"action":{"kind":"Delegate","val":1,"amt":3821},"partialState":{"h":10,"t":60,"tokens":[19885,11291,8078,1386],"delegation":[18885,10291,7078,386],"delegatorTokens":9999999956747}},{"ix":99,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":11,"t":66,"tokens":[19885,11291,8078,1386],"delegation":[18885,10291,7078,386],"delegatorTokens":9999999956747,"jailed":[null,1000000000000029,null,null],"status":["bonded","unbonding","bonded","unbonded"]}},{"ix":100,"action":{"kind":"Delegate","val":2,"amt":3845},"partialState":{"h":11,"t":66,"tokens":[19885,11291,11923,1386],"delegation":[18885,10291,10923,386],"delegatorTokens":9999999952902}},{"ix":101,"action":{"kind":"Delegate","val":3,"amt":3831},"partialState":{"h":11,"t":66,"tokens":[19885,11291,11923,5217],"delegation":[18885,10291,10923,4217],"delegatorTokens":9999999949071}},{"ix":102,"action":{"kind":"Delegate","val":3,"amt":1358},"partialState":{"h":11,"t":66,"tokens":[19885,11291,11923,6575],"delegation":[18885,10291,10923,5575],"delegatorTokens":9999999947713}},{"ix":103,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":104,"action":{"kind":"Delegate","val":2,"amt":3865},"partialState":{"h":11,"t":66,"tokens":[19885,11291,15788,6575],"delegation":[18885,10291,14788,5575],"delegatorTokens":9999999943848}},{"ix":105,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":106,"action":{"kind":"Deliver","chain":"consumer","numPackets":1},"partialState":{"h":16,"t":96,"consumerPower":[10537,11123,null,null],"outstandingDowntime":[false,true,true,true]}},{"ix":107,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":17,"t":102,"consumerPower":[16366,7165,null,null],"outstandingDowntime":[false,true,true,true]}},{"ix":108,"action":{"kind":"Undelegate","val":2,"amt":1150},"partialState":{"h":11,"t":66,"tokens":[19885,11291,14638,6575],"delegation":[18885,10291,13638,5575],"delegatorTokens":9999999943848}},{"ix":109,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":18,"t":108,"consumerPower":[16366,7165,null,null],"outstandingDowntime":[false,true,true,true]}},{"ix":110,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":111,"action":{"kind":"Undelegate","val":1,"amt":2737},"partialState":{"h":11,"t":66,"tokens":[19885,8554,14638,6575],"delegation":[18885,7554,13638,5575],"delegatorTokens":9999999943848}},{"ix":112,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":113,"action":{"kind":"Undelegate","val":3,"amt":4424},"partialState":{"h":11,"t":66,"tokens":[19885,8554,14638,2151],"delegation":[18885,7554,13638,1151],"delegatorTokens":9999999943848}},{"ix":114,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":115,"action":{"kind":"Delegate","val":1,"amt":3702},"partialState":{"h":11,"t":66,"tokens":[19885,12256,14638,2151],"delegation":[18885,11256,13638,1151],"delegatorTokens":9999999940146}},{"ix":116,"action":{"kind":"Deliver","chain":"provider","numPackets":5},"partialState":{"h":11,"t":66,"tokens":[19885,12256,14638,2151],"delegation":[18885,11256,13638,1151],"delegatorTokens":9999999940146,"jailed":[null,1000000000000029,null,null],"status":["bonded","unbonding","bonded","unbonded"]}},{"ix":117,"action":{"kind":"Delegate","val":1,"amt":1768},"partialState":{"h":11,"t":66,"tokens":[19885,14024,14638,2151],"delegation":[18885,13024,13638,1151],"delegatorTokens":9999999938378}},{"ix":118,"action":{"kind":"Delegate","val":2,"amt":2706},"partialState":{"h":11,"t":66,"tokens":[19885,14024,17344,2151],"delegation":[18885,13024,16344,1151],"delegatorTokens":9999999935672}},{"ix":119,"action":{"kind":"Undelegate","val":2,"amt":4784},"partialState":{"h":11,"t":66,"tokens":[19885,14024,12560,2151],"delegation":[18885,13024,11560,1151],"delegatorTokens":9999999935672}},{"ix":120,"action":{"kind":"Undelegate","val":1,"amt":2906},"partialState":{"h":11,"t":66,"tokens":[19885,11118,12560,2151],"delegation":[18885,10118,11560,1151],"delegatorTokens":9999999935672}},{"ix":121,"action":{"kind":"Delegate","val":1,"amt":2686},"partialState":{"h":11,"t":66,"tokens":[19885,13804,12560,2151],"delegation":[18885,12804,11560,1151],"delegatorTokens":9999999932986}},{"ix":122,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":12,"t":72,"tokens":[19885,13804,12560,2151],"delegation":[18885,12804,11560,1151],"delegatorTokens":9999999932986,"jailed":[null,1000000000000029,null,null],"status":["bonded","unbonding","bonded","unbonded"]}},{"ix":123,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":124,"action":{"kind":"Delegate","val":3,"amt":2813},"partialState":{"h":12,"t":72,"tokens":[19885,13804,12560,4964],"delegation":[18885,12804,11560,3964],"delegatorTokens":9999999930173}},{"ix":125,"action":{"kind":"Deliver","chain":"provider","numPackets":4},"partialState":{"h":12,"t":72,"tokens":[19885,13804,12560,4964],"delegation":[18885,12804,11560,3964],"delegatorTokens":9999999930173,"jailed":[null,1000000000000029,null,null],"status":["bonded","unbonding","bonded","unbonded"]}},{"ix":126,"action":{"kind":"Undelegate","val":2,"amt":1493},"partialState":{"h":12,"t":72,"tokens":[19885,13804,11067,4964],"delegation":[18885,12804,10067,3964],"delegatorTokens":9999999930173}},{"ix":127,"action":{"kind":"Undelegate","val":3,"amt":2890},"partialState":{"h":12,"t":72,"tokens":[19885,13804,11067,2074],"delegation":[18885,12804,10067,1074],"delegatorTokens":9999999930173}},{"ix":128,"action":{"kind":"Deliver","chain":"provider","numPackets":5},"partialState":{"h":12,"t":72,"tokens":[19885,13804,11067,2074],"delegation":[18885,12804,10067,1074],"delegatorTokens":9999999930173,"jailed":[null,1000000000000029,null,null],"status":["bonded","unbonding","bonded","unbonded"]}},{"ix":129,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":130,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":131,"action":{"kind":"Undelegate","val":3,"amt":3645},"partialState":{"h":12,"t":72,"tokens":[19885,13804,11067,2074],"delegation":[18885,12804,10067,1074],"delegatorTokens":9999999930173}},{"ix":132,"action":{"kind":"Undelegate","val":1,"amt":4075},"partialState":{"h":12,"t":72,"tokens":[19885,9729,11067,2074],"delegation":[18885,8729,10067,1074],"delegatorTokens":9999999930173}},{"ix":133,"action":{"kind":"Undelegate","val":0,"amt":3475},"partialState":{"h":12,"t":72,"tokens":[16410,9729,11067,2074],"delegation":[15410,8729,10067,1074],"delegatorTokens":9999999930173}},{"ix":134,"action":{"kind":"Delegate","val":0,"amt":1326},"partialState":{"h":12,"t":72,"tokens":[17736,9729,11067,2074],"delegation":[16736,8729,10067,1074],"delegatorTokens":9999999928847}},{"ix":135,"action":{"kind":"Delegate","val":0,"amt":3259},"partialState":{"h":12,"t":72,"tokens":[20995,9729,11067,2074],"delegation":[19995,8729,10067,1074],"delegatorTokens":9999999925588}},{"ix":136,"action":{"kind":"Delegate","val":0,"amt":2321},"partialState":{"h":12,"t":72,"tokens":[23316,9729,11067,2074],"delegation":[22316,8729,10067,1074],"delegatorTokens":9999999923267}},{"ix":137,"action":{"kind":"Deliver","chain":"consumer","numPackets":4},"partialState":{"h":18,"t":108,"consumerPower":[16366,7165,null,null],"outstandingDowntime":[false,false,true,true]}},{"ix":138,"action":{"kind":"Delegate","val":0,"amt":1128},"partialState":{"h":12,"t":72,"tokens":[24444,9729,11067,2074],"delegation":[23444,8729,10067,1074],"delegatorTokens":9999999922139}},{"ix":139,"action":{"kind":"Undelegate","val":3,"amt":2911},"partialState":{"h":12,"t":72,"tokens":[24444,9729,11067,2074],"delegation":[23444,8729,10067,1074],"delegatorTokens":9999999922139}},{"ix":140,"action":{"kind":"Undelegate","val":2,"amt":3726},"partialState":{"h":12,"t":72,"tokens":[24444,9729,7341,2074],"delegation":[23444,8729,6341,1074],"delegatorTokens":9999999922139}},{"ix":141,"action":{"kind":"Delegate","val":0,"amt":1533},"partialState":{"h":12,"t":72,"tokens":[25977,9729,7341,2074],"delegation":[24977,8729,6341,1074],"delegatorTokens":9999999920606}},{"ix":142,"action":{"kind":"Deliver","chain":"consumer","numPackets":6},"partialState":{"h":18,"t":108,"consumerPower":[16366,7165,null,null],"outstandingDowntime":[false,false,true,true]}},{"ix":143,"action":{"kind":"Delegate","val":3,"amt":2906},"partialState":{"h":12,"t":72,"tokens":[25977,9729,7341,4980],"delegation":[24977,8729,6341,3980],"delegatorTokens":9999999917700}},{"ix":144,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":145,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":19,"t":114,"consumerPower":[19885,null,8078,null],"outstandingDowntime":[false,false,true,true]}},{"ix":146,"action":{"kind":"Deliver","chain":"consumer","numPackets":1},"partialState":{"h":19,"t":114,"consumerPower":[19885,null,8078,null],"outstandingDowntime":[false,false,true,true]}},{"ix":147,"action":{"kind":"Undelegate","val":2,"amt":2792},"partialState":{"h":12,"t":72,"tokens":[25977,9729,4549,4980],"delegation":[24977,8729,3549,3980],"delegatorTokens":9999999917700}},{"ix":148,"action":{"kind":"Deliver","chain":"consumer","numPackets":6},"partialState":{"h":19,"t":114,"consumerPower":[19885,null,8078,null],"outstandingDowntime":[false,false,true,true]}},{"ix":149,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":150,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":151,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":152,"action":{"kind":"Deliver","chain":"provider","numPackets":6},"partialState":{"h":12,"t":72,"tokens":[25977,9729,4549,4980],"delegation":[24977,8729,3549,3980],"delegatorTokens":9999999917700,"jailed":[null,1000000000000029,null,null],"status":["bonded","unbonding","bonded","unbonded"]}},{"ix":153,"action":{"kind":"Undelegate","val":3,"amt":2668},"partialState":{"h":12,"t":72,"tokens":[25977,9729,4549,2312],"delegation":[24977,8729,3549,1312],"delegatorTokens":9999999917700}},{"ix":154,"action":{"kind":"Delegate","val":1,"amt":3603},"partialState":{"h":12,"t":72,"tokens":[25977,13332,4549,2312],"delegation":[24977,12332,3549,1312],"delegatorTokens":9999999914097}},{"ix":155,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":156,"action":{"kind":"Deliver","chain":"consumer","numPackets":3},"partialState":{"h":19,"t":114,"consumerPower":[19885,null,8078,null],"outstandingDowntime":[false,false,true,true]}},{"ix":157,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":13,"t":78,"tokens":[25977,13332,4549,2312],"delegation":[24977,12332,3549,1312],"delegatorTokens":9999999914097,"jailed":[null,1000000000000029,null,null],"status":["bonded","unbonding","bonded","unbonded"]}},{"ix":158,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":14,"t":84,"tokens":[25977,13332,4549,2312],"delegation":[24977,12332,3549,1312],"delegatorTokens":9999999914097,"jailed":[null,1000000000000029,null,null],"status":["bonded","unbonding","bonded","unbonded"]}},{"ix":159,"action":{"kind":"Undelegate","val":2,"amt":3008},"partialState":{"h":14,"t":84,"tokens":[25977,13332,1541,2312],"delegation":[24977,12332,541,1312],"delegatorTokens":9999999914097}},{"ix":160,"action":{"kind":"Deliver","chain":"consumer","numPackets":3},"partialState":{"h":19,"t":114,"consumerPower":[19885,null,8078,null],"outstandingDowntime":[false,false,true,true]}},{"ix":161,"action":{"kind":"Undelegate","val":0,"amt":2899},"partialState":{"h":14,"t":84,"tokens":[23078,13332,1541,2312],"delegation":[22078,12332,541,1312],"delegatorTokens":9999999914097}},{"ix":162,"action":{"kind":"Delegate","val":1,"amt":1377},"partialState":{"h":14,"t":84,"tokens":[23078,14709,1541,2312],"delegation":[22078,13709,541,1312],"delegatorTokens":9999999912720}},{"ix":163,"action":{"kind":"Undelegate","val":3,"amt":4153},"partialState":{"h":14,"t":84,"tokens":[23078,14709,1541,2312],"delegation":[22078,13709,541,1312],"delegatorTokens":9999999912720}},{"ix":164,"action":{"kind":"Deliver","chain":"provider","numPackets":3},"partialState":{"h":14,"t":84,"tokens":[23078,14709,1541,2312],"delegation":[22078,13709,541,1312],"delegatorTokens":9999999912720,"jailed":[null,1000000000000029,null,null],"status":["bonded","unbonding","bonded","unbonded"]}},{"ix":165,"action":{"kind":"Undelegate","val":0,"amt":3055},"partialState":{"h":14,"t":84,"tokens":[20023,14709,1541,2312],"delegation":[19023,13709,541,1312],"delegatorTokens":9999999912720}},{"ix":166,"action":{"kind":"Undelegate","val":2,"amt":1365},"partialState":{"h":14,"t":84,"tokens":[20023,14709,1541,2312],"delegation":[19023,13709,541,1312],"delegatorTokens":9999999912720}},{"ix":167,"action":{"kind":"Deliver","chain":"provider","numPackets":3},"partialState":{"h":14,"t":84,"tokens":[20023,14709,1541,2312],"delegation":[19023,13709,541,1312],"delegatorTokens":9999999912720,"jailed":[null,1000000000000029,null,null],"status":["bonded","unbonding","bonded","unbonded"]}},{"ix":168,"action":{"kind":"Deliver","chain":"consumer","numPackets":2},"partialState":{"h":19,"t":114,"consumerPower":[19885,null,8078,null],"outstandingDowntime":[false,false,true,true]}},{"ix":169,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":20,"t":120,"consumerPower":[25977,null,4549,null],"outstandingDowntime":[false,false,true,true]}},{"ix":170,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":21,"t":126,"consumerPower":[25977,null,4549,null],"outstandingDowntime":[false,false,true,true]}},{"ix":171,"action":{"kind":"Undelegate","val":0,"amt":4037},"partialState":{"h":14,"t":84,"tokens":[15986,14709,1541,2312],"delegation":[14986,13709,541,1312],"delegatorTokens":9999999912720}},{"ix":172,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":15,"t":90,"tokens":[15986,14709,1541,2312],"delegation":[14986,13709,541,1312],"delegatorTokens":9999999912720,"jailed":[null,1000000000000029,null,null],"status":["bonded","unbonding","unbonding","bonded"]}},{"ix":173,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":174,"action":{"kind":"Undelegate","val":3,"amt":4783},"partialState":{"h":15,"t":90,"tokens":[15986,14709,1541,2312],"delegation":[14986,13709,541,1312],"delegatorTokens":9999999912720}},{"ix":175,"action":{"kind":"Undelegate","val":0,"amt":2328},"partialState":{"h":15,"t":90,"tokens":[13658,14709,1541,2312],"delegation":[12658,13709,541,1312],"delegatorTokens":9999999912720}},{"ix":176,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":177,"action":{"kind":"Delegate","val":1,"amt":1383},"partialState":{"h":15,"t":90,"tokens":[13658,16092,1541,2312],"delegation":[12658,15092,541,1312],"delegatorTokens":9999999911337}},{"ix":178,"action":{"kind":"Delegate","val":3,"amt":4500},"partialState":{"h":15,"t":90,"tokens":[13658,16092,1541,6812],"delegation":[12658,15092,541,5812],"delegatorTokens":9999999906837}},{"ix":179,"action":{"kind":"Undelegate","val":2,"amt":4366},"partialState":{"h":15,"t":90,"tokens":[13658,16092,1541,6812],"delegation":[12658,15092,541,5812],"delegatorTokens":9999999906837}},{"ix":180,"action":{"kind":"Deliver","chain":"provider","numPackets":3},"partialState":{"h":15,"t":90,"tokens":[13658,16092,1541,6812],"delegation":[12658,15092,541,5812],"delegatorTokens":9999999906837,"jailed":[null,1000000000000029,null,null],"status":["bonded","unbonding","unbonding","bonded"]}},{"ix":181,"action":{"kind":"Delegate","val":3,"amt":1619},"partialState":{"h":15,"t":90,"tokens":[13658,16092,1541,8431],"delegation":[12658,15092,541,7431],"delegatorTokens":9999999905218}},{"ix":182,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":183,"action":{"kind":"Delegate","val":2,"amt":4424},"partialState":{"h":15,"t":90,"tokens":[13658,16092,5965,8431],"delegation":[12658,15092,4965,7431],"delegatorTokens":9999999900794}},{"ix":184,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":16,"t":96,"tokens":[13658,16092,5965,8431],"delegation":[12658,15092,4965,7431],"delegatorTokens":9999999900794,"jailed":[null,1000000000000029,null,null],"status":["bonded","unbonding","unbonding","bonded"]}},{"ix":185,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":17,"t":102,"tokens":[13658,16092,5965,8431],"delegation":[12658,15092,4965,7431],"delegatorTokens":9999999900794,"jailed":[null,1000000000000029,null,null],"status":["bonded","unbonding","unbonding","bonded"]}},{"ix":186,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":22,"t":132,"consumerPower":[25977,null,4549,null],"outstandingDowntime":[false,false,true,true]}},{"ix":187,"action":{"kind":"Delegate","val":2,"amt":1256},"partialState":{"h":17,"t":102,"tokens":[13658,16092,7221,8431],"delegation":[12658,15092,6221,7431],"delegatorTokens":9999999899538}},{"ix":188,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":18,"t":108,"tokens":[13658,16092,7221,8431],"delegation":[12658,15092,6221,7431],"delegatorTokens":9999999899538,"jailed":[null,1000000000000029,null,null],"status":["bonded","unbonding","unbonding","bonded"]}},{"ix":189,"action":{"kind":"Undelegate","val":3,"amt":3475},"partialState":{"h":18,"t":108,"tokens":[13658,16092,7221,4956],"delegation":[12658,15092,6221,3956],"delegatorTokens":9999999899538}},{"ix":190,"action":{"kind":"Undelegate","val":2,"amt":1339},"partialState":{"h":18,"t":108,"tokens":[13658,16092,5882,4956],"delegation":[12658,15092,4882,3956],"delegatorTokens":9999999899538}},{"ix":191,"action":{"kind":"Undelegate","val":1,"amt":3303},"partialState":{"h":18,"t":108,"tokens":[13658,12789,5882,4956],"delegation":[12658,11789,4882,3956],"delegatorTokens":9999999899538}},{"ix":192,"action":{"kind":"Undelegate","val":0,"amt":4154},"partialState":{"h":18,"t":108,"tokens":[9504,12789,5882,4956],"delegation":[8504,11789,4882,3956],"delegatorTokens":9999999899538}},{"ix":193,"action":{"kind":"Undelegate","val":3,"amt":1089},"partialState":{"h":18,"t":108,"tokens":[9504,12789,5882,3867],"delegation":[8504,11789,4882,2867],"delegatorTokens":9999999899538}},{"ix":194,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":195,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":23,"t":138,"consumerPower":[25977,null,4549,null],"outstandingDowntime":[false,false,true,true]}},{"ix":196,"action":{"kind":"Delegate","val":3,"amt":3033},"partialState":{"h":18,"t":108,"tokens":[9504,12789,5882,6900],"delegation":[8504,11789,4882,5900],"delegatorTokens":9999999896505}},{"ix":197,"action":{"kind":"Delegate","val":0,"amt":4016},"partialState":{"h":18,"t":108,"tokens":[13520,12789,5882,6900],"delegation":[12520,11789,4882,5900],"delegatorTokens":9999999892489}},{"ix":198,"action":{"kind":"Deliver","chain":"provider","numPackets":2},"partialState":{"h":18,"t":108,"tokens":[13520,12789,5882,6900],"delegation":[12520,11789,4882,5900],"delegatorTokens":9999999892489,"jailed":[null,1000000000000029,null,null],"status":["bonded","unbonding","unbonding","bonded"]}},{"ix":199,"action":{"kind":"Delegate","val":0,"amt":3568},"partialState":{"h":18,"t":108,"tokens":[17088,12789,5882,6900],"delegation":[16088,11789,4882,5900],"delegatorTokens":9999999888921}}],"events":["send_downtime_slash_request","send_vsc_without_downtime_ack","downtime_slash_request_outstanding","insufficient_shares","send_double_sign_slash_request","consumer_update_val","consumer_update_val","receive_double_sign_slash_request","send_downtime_slash_request","receive_slash_request_unbonded","send_vsc_without_downtime_ack","downtime_slash_request_outstanding","send_downtime_slash_request","insufficient_shares","insufficient_shares","send_vsc_without_downtime_ack","consumer_update_val","consumer_update_val","insufficient_shares","insufficient_shares","receive_downtime_slash_request","jail","receive_slash_request_unbonded","send_vsc_with_downtime_ack","send_vsc_without_downtime_ack","consumer_send_maturation","insufficient_shares","send_vsc_without_downtime_ack","send_vsc_without_downtime_ack","consumer_send_maturation","consumer_update_val","consumer_update_val","send_vsc_without_downtime_ack","insufficient_shares","receive_downtime_slash_ack","insufficient_shares","consumer_update_val","consumer_del_val","consumer_add_val","send_vsc_without_downtime_ack","insufficient_shares","insufficient_shares","consumer_update_val","consumer_update_val","send_vsc_without_downtime_ack","insufficient_shares","insufficient_shares","send_vsc_without_downtime_ack","some_undels_expired_but_not_completed","some_undels_expired_but_not_completed"]},{"meta":{"commit":"7ffd0c04e4205cbc9caf212abfe6c59ee43153bf"},"constants":{"P":"provider","C":"consumer","UNBONDING_SECONDS_P":70,"UNBONDING_SECONDS_C":50,"TRUSTING_SECONDS":49,"NUM_VALIDATORS":4,"MAX_VALIDATORS":2,"SLASH_DOUBLESIGN":0,"SLASH_DOWNTIME":0,"JAIL_SECONDS":999999999999999,"BLOCK_SECONDS":6,"INITIAL_DELEGATOR_TOKENS":10000000000000,"DELEGATE_AMT_MIN":1000,"DELEGATE_AMT_MAX":5000,"UNDELEGATE_AMT_MIN":1000,"UNDELEGATE_AMT_MAX":5000,"ISDOWNTIME_PROBABILITY":0.5,"MAX_NUM_PACKETS_FOR_DELIVER":6},"actions":[{"ix":0,"action":{"kind":"Delegate","val":1,"amt":1952},"partialState":{"h":1,"t":6,"tokens":[5000,5952,3000,2000],"delegation":[4000,4952,2000,1000],"delegatorTokens":9999999998048}},{"ix":1,"action":{"kind":"Delegate","val":1,"amt":4807},"partialState":{"h":1,"t":6,"tokens":[5000,10759,3000,2000],"delegation":[4000,9759,2000,1000],"delegatorTokens":9999999993241}},{"ix":2,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":2,"t":12,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":3,"action":{"kind":"ConsumerSlash","val":3,"infractionHeight":0,"isDowntime":true},"partialState":{"h":2,"t":12,"outstandingDowntime":[false,false,false,true]}},{"ix":4,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":2,"t":12,"tokens":[5000,10759,3000,2000],"delegation":[4000,9759,2000,1000],"delegatorTokens":9999999993241,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":5,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":6,"action":{"kind":"Undelegate","val":2,"amt":4487},"partialState":{"h":2,"t":12,"tokens":[5000,10759,3000,2000],"delegation":[4000,9759,2000,1000],"delegatorTokens":9999999993241}},{"ix":7,"action":{"kind":"Deliver","chain":"provider","numPackets":2},"partialState":{"h":2,"t":12,"tokens":[5000,10759,3000,2000],"delegation":[4000,9759,2000,1000],"delegatorTokens":9999999993241,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":8,"action":{"kind":"Delegate","val":0,"amt":4784},"partialState":{"h":2,"t":12,"tokens":[9784,10759,3000,2000],"delegation":[8784,9759,2000,1000],"delegatorTokens":9999999988457}},{"ix":9,"action":{"kind":"Undelegate","val":3,"amt":4810},"partialState":{"h":2,"t":12,"tokens":[9784,10759,3000,2000],"delegation":[8784,9759,2000,1000],"delegatorTokens":9999999988457}},{"ix":10,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":11,"action":{"kind":"ConsumerSlash","val":2,"infractionHeight":0,"isDowntime":true},"partialState":{"h":2,"t":12,"outstandingDowntime":[false,false,true,true]}},{"ix":12,"action":{"kind":"Deliver","chain":"provider","numPackets":1},"partialState":{"h":2,"t":12,"tokens":[9784,10759,3000,2000],"delegation":[8784,9759,2000,1000],"delegatorTokens":9999999988457,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":13,"action":{"kind":"Deliver","chain":"consumer","numPackets":2},"partialState":{"h":2,"t":12,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,false,true,true]}},{"ix":14,"action":{"kind":"Deliver","chain":"provider","numPackets":3},"partialState":{"h":2,"t":12,"tokens":[9784,10759,3000,2000],"delegation":[8784,9759,2000,1000],"delegatorTokens":9999999988457,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":15,"action":{"kind":"Deliver","chain":"provider","numPackets":4},"partialState":{"h":2,"t":12,"tokens":[9784,10759,3000,2000],"delegation":[8784,9759,2000,1000],"delegatorTokens":9999999988457,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":16,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":17,"action":{"kind":"Undelegate","val":3,"amt":1703},"partialState":{"h":2,"t":12,"tokens":[9784,10759,3000,2000],"delegation":[8784,9759,2000,1000],"delegatorTokens":9999999988457}},{"ix":18,"action":{"kind":"Undelegate","val":1,"amt":2712},"partialState":{"h":2,"t":12,"tokens":[9784,8047,3000,2000],"delegation":[8784,7047,2000,1000],"delegatorTokens":9999999988457}},{"ix":19,"action":{"kind":"Delegate","val":1,"amt":1835},"partialState":{"h":2,"t":12,"tokens":[9784,9882,3000,2000],"delegation":[8784,8882,2000,1000],"delegatorTokens":9999999986622}},{"ix":20,"action":{"kind":"Undelegate","val":3,"amt":1285},"partialState":{"h":2,"t":12,"tokens":[9784,9882,3000,2000],"delegation":[8784,8882,2000,1000],"delegatorTokens":9999999986622}},{"ix":21,"action":{"kind":"Deliver","chain":"provider","numPackets":3},"partialState":{"h":2,"t":12,"tokens":[9784,9882,3000,2000],"delegation":[8784,8882,2000,1000],"delegatorTokens":9999999986622,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":22,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":3,"t":18,"tokens":[9784,9882,3000,2000],"delegation":[8784,8882,2000,1000],"delegatorTokens":9999999986622,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":23,"action":{"kind":"Delegate","val":2,"amt":3794},"partialState":{"h":3,"t":18,"tokens":[9784,9882,6794,2000],"delegation":[8784,8882,5794,1000],"delegatorTokens":9999999982828}},{"ix":24,"action":{"kind":"Deliver","chain":"provider","numPackets":3},"partialState":{"h":3,"t":18,"tokens":[9784,9882,6794,2000],"delegation":[8784,8882,5794,1000],"delegatorTokens":9999999982828,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":25,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":4,"t":24,"tokens":[9784,9882,6794,2000],"delegation":[8784,8882,5794,1000],"delegatorTokens":9999999982828,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":26,"action":{"kind":"ConsumerSlash","val":2,"infractionHeight":1,"isDowntime":true},"partialState":{"h":2,"t":12,"outstandingDowntime":[false,false,true,true]}},{"ix":27,"action":{"kind":"Undelegate","val":2,"amt":1701},"partialState":{"h":4,"t":24,"tokens":[9784,9882,5093,2000],"delegation":[8784,8882,4093,1000],"delegatorTokens":9999999982828}},{"ix":28,"action":{"kind":"ConsumerSlash","val":1,"infractionHeight":0,"isDowntime":true},"partialState":{"h":2,"t":12,"outstandingDowntime":[false,true,true,true]}},{"ix":29,"action":{"kind":"Undelegate","val":3,"amt":3528},"partialState":{"h":4,"t":24,"tokens":[9784,9882,5093,2000],"delegation":[8784,8882,4093,1000],"delegatorTokens":9999999982828}},{"ix":30,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":5,"t":30,"tokens":[9784,9882,5093,2000],"delegation":[8784,8882,4093,1000],"delegatorTokens":9999999982828,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":31,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":32,"action":{"kind":"Delegate","val":0,"amt":2008},"partialState":{"h":5,"t":30,"tokens":[11792,9882,5093,2000],"delegation":[10792,8882,4093,1000],"delegatorTokens":9999999980820}},{"ix":33,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":34,"action":{"kind":"Deliver","chain":"provider","numPackets":6},"partialState":{"h":5,"t":30,"tokens":[11792,9882,5093,2000],"delegation":[10792,8882,4093,1000],"delegatorTokens":9999999980820,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":35,"action":{"kind":"Deliver","chain":"provider","numPackets":3},"partialState":{"h":5,"t":30,"tokens":[11792,9882,5093,2000],"delegation":[10792,8882,4093,1000],"delegatorTokens":9999999980820,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":36,"action":{"kind":"Delegate","val":0,"amt":1227},"partialState":{"h":5,"t":30,"tokens":[13019,9882,5093,2000],"delegation":[12019,8882,4093,1000],"delegatorTokens":9999999979593}},{"ix":37,"action":{"kind":"Delegate","val":2,"amt":1636},"partialState":{"h":5,"t":30,"tokens":[13019,9882,6729,2000],"delegation":[12019,8882,5729,1000],"delegatorTokens":9999999977957}},{"ix":38,"action":{"kind":"Deliver","chain":"provider","numPackets":2},"partialState":{"h":5,"t":30,"tokens":[13019,9882,6729,2000],"delegation":[12019,8882,5729,1000],"delegatorTokens":9999999977957,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":39,"action":{"kind":"Delegate","val":0,"amt":3720},"partialState":{"h":5,"t":30,"tokens":[16739,9882,6729,2000],"delegation":[15739,8882,5729,1000],"delegatorTokens":9999999974237}},{"ix":40,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":41,"action":{"kind":"Undelegate","val":2,"amt":4752},"partialState":{"h":5,"t":30,"tokens":[16739,9882,1977,2000],"delegation":[15739,8882,977,1000],"delegatorTokens":9999999974237}},{"ix":42,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":43,"action":{"kind":"Undelegate","val":1,"amt":4765},"partialState":{"h":5,"t":30,"tokens":[16739,5117,1977,2000],"delegation":[15739,4117,977,1000],"delegatorTokens":9999999974237}},{"ix":44,"action":{"kind":"Deliver","chain":"provider","numPackets":3},"partialState":{"h":5,"t":30,"tokens":[16739,5117,1977,2000],"delegation":[15739,4117,977,1000],"delegatorTokens":9999999974237,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":45,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":6,"t":36,"tokens":[16739,5117,1977,2000],"delegation":[15739,4117,977,1000],"delegatorTokens":9999999974237,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":46,"action":{"kind":"Delegate","val":2,"amt":3241},"partialState":{"h":6,"t":36,"tokens":[16739,5117,5218,2000],"delegation":[15739,4117,4218,1000],"delegatorTokens":9999999970996}},{"ix":47,"action":{"kind":"Deliver","chain":"consumer","numPackets":5},"partialState":{"h":2,"t":12,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,true,true,true]}},{"ix":48,"action":{"kind":"Undelegate","val":0,"amt":1177},"partialState":{"h":6,"t":36,"tokens":[15562,5117,5218,2000],"delegation":[14562,4117,4218,1000],"delegatorTokens":9999999970996}},{"ix":49,"action":{"kind":"Undelegate","val":3,"amt":3802},"partialState":{"h":6,"t":36,"tokens":[15562,5117,5218,2000],"delegation":[14562,4117,4218,1000],"delegatorTokens":9999999970996}},{"ix":50,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":3,"t":18,"consumerPower":[9784,9882,null,null],"outstandingDowntime":[false,true,true,true]}},{"ix":51,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":52,"action":{"kind":"Deliver","chain":"consumer","numPackets":1},"partialState":{"h":3,"t":18,"consumerPower":[9784,9882,null,null],"outstandingDowntime":[false,true,true,true]}},{"ix":53,"action":{"kind":"Deliver","chain":"provider","numPackets":1},"partialState":{"h":6,"t":36,"tokens":[15562,5117,5218,2000],"delegation":[14562,4117,4218,1000],"delegatorTokens":9999999970996,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":54,"action":{"kind":"Deliver","chain":"provider","numPackets":5},"partialState":{"h":6,"t":36,"tokens":[15562,5117,5218,2000],"delegation":[14562,4117,4218,1000],"delegatorTokens":9999999970996,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":55,"action":{"kind":"Deliver","chain":"consumer","numPackets":2},"partialState":{"h":3,"t":18,"consumerPower":[9784,9882,null,null],"outstandingDowntime":[false,true,true,true]}},{"ix":56,"action":{"kind":"Delegate","val":2,"amt":2565},"partialState":{"h":6,"t":36,"tokens":[15562,5117,7783,2000],"delegation":[14562,4117,6783,1000],"delegatorTokens":9999999968431}},{"ix":57,"action":{"kind":"Delegate","val":0,"amt":4354},"partialState":{"h":6,"t":36,"tokens":[19916,5117,7783,2000],"delegation":[18916,4117,6783,1000],"delegatorTokens":9999999964077}},{"ix":58,"action":{"kind":"Delegate","val":1,"amt":2028},"partialState":{"h":6,"t":36,"tokens":[19916,7145,7783,2000],"delegation":[18916,6145,6783,1000],"delegatorTokens":9999999962049}},{"ix":59,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":60,"action":{"kind":"Delegate","val":1,"amt":1857},"partialState":{"h":6,"t":36,"tokens":[19916,9002,7783,2000],"delegation":[18916,8002,6783,1000],"delegatorTokens":9999999960192}},{"ix":61,"action":{"kind":"Delegate","val":3,"amt":2341},"partialState":{"h":6,"t":36,"tokens":[19916,9002,7783,4341],"delegation":[18916,8002,6783,3341],"delegatorTokens":9999999957851}},{"ix":62,"action":{"kind":"Delegate","val":1,"amt":1698},"partialState":{"h":6,"t":36,"tokens":[19916,10700,7783,4341],"delegation":[18916,9700,6783,3341],"delegatorTokens":9999999956153}},{"ix":63,"action":{"kind":"Deliver","chain":"consumer","numPackets":6},"partialState":{"h":3,"t":18,"consumerPower":[9784,9882,null,null],"outstandingDowntime":[false,true,true,true]}},{"ix":64,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":65,"action":{"kind":"Undelegate","val":1,"amt":2772},"partialState":{"h":6,"t":36,"tokens":[19916,7928,7783,4341],"delegation":[18916,6928,6783,3341],"delegatorTokens":9999999956153}},{"ix":66,"action":{"kind":"Undelegate","val":1,"amt":4461},"partialState":{"h":6,"t":36,"tokens":[19916,3467,7783,4341],"delegation":[18916,2467,6783,3341],"delegatorTokens":9999999956153}},{"ix":67,"action":{"kind":"Delegate","val":1,"amt":3485},"partialState":{"h":6,"t":36,"tokens":[19916,6952,7783,4341],"delegation":[18916,5952,6783,3341],"delegatorTokens":9999999952668}},{"ix":68,"action":{"kind":"Undelegate","val":0,"amt":1761},"partialState":{"h":6,"t":36,"tokens":[18155,6952,7783,4341],"delegation":[17155,5952,6783,3341],"delegatorTokens":9999999952668}},{"ix":69,"action":{"kind":"Deliver","chain":"consumer","numPackets":2},"partialState":{"h":3,"t":18,"consumerPower":[9784,9882,null,null],"outstandingDowntime":[false,true,true,true]}},{"ix":70,"action":{"kind":"Delegate","val":3,"amt":4022},"partialState":{"h":6,"t":36,"tokens":[18155,6952,7783,8363],"delegation":[17155,5952,6783,7363],"delegatorTokens":9999999948646}},{"ix":71,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":72,"action":{"kind":"Undelegate","val":2,"amt":4480},"partialState":{"h":6,"t":36,"tokens":[18155,6952,3303,8363],"delegation":[17155,5952,2303,7363],"delegatorTokens":9999999948646}},{"ix":73,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":74,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":75,"action":{"kind":"Deliver","chain":"provider","numPackets":2},"partialState":{"h":6,"t":36,"tokens":[18155,6952,3303,8363],"delegation":[17155,5952,2303,7363],"delegatorTokens":9999999948646,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":76,"action":{"kind":"Undelegate","val":3,"amt":4809},"partialState":{"h":6,"t":36,"tokens":[18155,6952,3303,3554],"delegation":[17155,5952,2303,2554],"delegatorTokens":9999999948646}},{"ix":77,"action":{"kind":"Deliver","chain":"consumer","numPackets":1},"partialState":{"h":3,"t":18,"consumerPower":[9784,9882,null,null],"outstandingDowntime":[false,true,true,true]}},{"ix":78,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":4,"t":24,"consumerPower":[9784,9882,null,null],"outstandingDowntime":[false,true,true,true]}},{"ix":79,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":80,"action":{"kind":"Undelegate","val":3,"amt":1779},"partialState":{"h":6,"t":36,"tokens":[18155,6952,3303,1775],"delegation":[17155,5952,2303,775],"delegatorTokens":9999999948646}},{"ix":81,"action":{"kind":"Delegate","val":1,"amt":2591},"partialState":{"h":6,"t":36,"tokens":[18155,9543,3303,1775],"delegation":[17155,8543,2303,775],"delegatorTokens":9999999946055}},{"ix":82,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":7,"t":42,"tokens":[18155,9543,3303,1775],"delegation":[17155,8543,2303,775],"delegatorTokens":9999999946055,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":83,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":84,"action":{"kind":"Undelegate","val":3,"amt":4469},"partialState":{"h":7,"t":42,"tokens":[18155,9543,3303,1775],"delegation":[17155,8543,2303,775],"delegatorTokens":9999999946055}},{"ix":85,"action":{"kind":"Undelegate","val":2,"amt":3607},"partialState":{"h":7,"t":42,"tokens":[18155,9543,3303,1775],"delegation":[17155,8543,2303,775],"delegatorTokens":9999999946055}},{"ix":86,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":87,"action":{"kind":"Undelegate","val":1,"amt":1231},"partialState":{"h":7,"t":42,"tokens":[18155,8312,3303,1775],"delegation":[17155,7312,2303,775],"delegatorTokens":9999999946055}},{"ix":88,"action":{"kind":"Deliver","chain":"provider","numPackets":5},"partialState":{"h":7,"t":42,"tokens":[18155,8312,3303,1775],"delegation":[17155,7312,2303,775],"delegatorTokens":9999999946055,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":89,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":90,"action":{"kind":"Undelegate","val":0,"amt":3163},"partialState":{"h":7,"t":42,"tokens":[14992,8312,3303,1775],"delegation":[13992,7312,2303,775],"delegatorTokens":9999999946055}},{"ix":91,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":92,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":5,"t":30,"consumerPower":[9784,9882,null,null],"outstandingDowntime":[false,true,true,true]}},{"ix":93,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":94,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":95,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":8,"t":48,"tokens":[14992,8312,3303,1775],"delegation":[13992,7312,2303,775],"delegatorTokens":9999999946055,"jailed":[null,1000000000000041,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":96,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":6,"t":36,"consumerPower":[9784,9882,null,null],"outstandingDowntime":[false,true,true,true]}},{"ix":97,"action":{"kind":"Undelegate","val":0,"amt":4306},"partialState":{"h":8,"t":48,"tokens":[10686,8312,3303,1775],"delegation":[9686,7312,2303,775],"delegatorTokens":9999999946055}},{"ix":98,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":7,"t":42,"consumerPower":[9784,9882,null,null],"outstandingDowntime":[false,true,true,true]}},{"ix":99,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":8,"t":48,"consumerPower":[9784,9882,null,null],"outstandingDowntime":[false,true,true,true]}},{"ix":100,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":9,"t":54,"consumerPower":[9784,9882,null,null],"outstandingDowntime":[false,true,true,true]}},{"ix":101,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":10,"t":60,"consumerPower":[9784,9882,null,null],"outstandingDowntime":[false,true,true,true]}},{"ix":102,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":103,"action":{"kind":"Undelegate","val":1,"amt":3188},"partialState":{"h":8,"t":48,"tokens":[10686,5124,3303,1775],"delegation":[9686,4124,2303,775],"delegatorTokens":9999999946055}},{"ix":104,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":105,"action":{"kind":"Undelegate","val":2,"amt":3334},"partialState":{"h":8,"t":48,"tokens":[10686,5124,3303,1775],"delegation":[9686,4124,2303,775],"delegatorTokens":9999999946055}},{"ix":106,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":9,"t":54,"tokens":[10686,5124,3303,1775],"delegation":[9686,4124,2303,775],"delegatorTokens":9999999946055,"jailed":[null,1000000000000041,null,null],"status":["bonded","unbonding","bonded","unbonded"]}},{"ix":107,"action":{"kind":"Deliver","chain":"provider","numPackets":1},"partialState":{"h":9,"t":54,"tokens":[10686,5124,3303,1775],"delegation":[9686,4124,2303,775],"delegatorTokens":9999999946055,"jailed":[null,1000000000000041,null,null],"status":["bonded","unbonding","bonded","unbonded"]}},{"ix":108,"action":{"kind":"Delegate","val":1,"amt":1792},"partialState":{"h":9,"t":54,"tokens":[10686,6916,3303,1775],"delegation":[9686,5916,2303,775],"delegatorTokens":9999999944263}},{"ix":109,"action":{"kind":"Undelegate","val":1,"amt":3027},"partialState":{"h":9,"t":54,"tokens":[10686,3889,3303,1775],"delegation":[9686,2889,2303,775],"delegatorTokens":9999999944263}},{"ix":110,"action":{"kind":"Deliver","chain":"provider","numPackets":3},"partialState":{"h":9,"t":54,"tokens":[10686,3889,3303,1775],"delegation":[9686,2889,2303,775],"delegatorTokens":9999999944263,"jailed":[null,1000000000000041,null,null],"status":["bonded","unbonding","bonded","unbonded"]}},{"ix":111,"action":{"kind":"Undelegate","val":1,"amt":3179},"partialState":{"h":9,"t":54,"tokens":[10686,3889,3303,1775],"delegation":[9686,2889,2303,775],"delegatorTokens":9999999944263}},{"ix":112,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":113,"action":{"kind":"Undelegate","val":3,"amt":4171},"partialState":{"h":9,"t":54,"tokens":[10686,3889,3303,1775],"delegation":[9686,2889,2303,775],"delegatorTokens":9999999944263}},{"ix":114,"action":{"kind":"Deliver","chain":"consumer","numPackets":5},"partialState":{"h":10,"t":60,"consumerPower":[9784,9882,null,null],"outstandingDowntime":[false,false,true,true]}},{"ix":115,"action":{"kind":"Undelegate","val":3,"amt":4465},"partialState":{"h":9,"t":54,"tokens":[10686,3889,3303,1775],"delegation":[9686,2889,2303,775],"delegatorTokens":9999999944263}},{"ix":116,"action":{"kind":"Undelegate","val":3,"amt":1002},"partialState":{"h":9,"t":54,"tokens":[10686,3889,3303,1775],"delegation":[9686,2889,2303,775],"delegatorTokens":9999999944263}},{"ix":117,"action":{"kind":"Delegate","val":0,"amt":3717},"partialState":{"h":9,"t":54,"tokens":[14403,3889,3303,1775],"delegation":[13403,2889,2303,775],"delegatorTokens":9999999940546}},{"ix":118,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":119,"action":{"kind":"Delegate","val":3,"amt":2449},"partialState":{"h":9,"t":54,"tokens":[14403,3889,3303,4224],"delegation":[13403,2889,2303,3224],"delegatorTokens":9999999938097}},{"ix":120,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":121,"action":{"kind":"Undelegate","val":2,"amt":1614},"partialState":{"h":9,"t":54,"tokens":[14403,3889,1689,4224],"delegation":[13403,2889,689,3224],"delegatorTokens":9999999938097}},{"ix":122,"action":{"kind":"Deliver","chain":"provider","numPackets":5},"partialState":{"h":9,"t":54,"tokens":[14403,3889,1689,4224],"delegation":[13403,2889,689,3224],"delegatorTokens":9999999938097,"jailed":[null,1000000000000041,null,null],"status":["bonded","unbonding","bonded","unbonded"]}},{"ix":123,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":124,"action":{"kind":"Undelegate","val":3,"amt":3403},"partialState":{"h":9,"t":54,"tokens":[14403,3889,1689,4224],"delegation":[13403,2889,689,3224],"delegatorTokens":9999999938097}},{"ix":125,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":11,"t":66,"consumerPower":[14992,8312,null,null],"outstandingDowntime":[false,false,true,true]}},{"ix":126,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":127,"action":{"kind":"Undelegate","val":0,"amt":1003},"partialState":{"h":9,"t":54,"tokens":[13400,3889,1689,4224],"delegation":[12400,2889,689,3224],"delegatorTokens":9999999938097}},{"ix":128,"action":{"kind":"Undelegate","val":2,"amt":4519},"partialState":{"h":9,"t":54,"tokens":[13400,3889,1689,4224],"delegation":[12400,2889,689,3224],"delegatorTokens":9999999938097}},{"ix":129,"action":{"kind":"Deliver","chain":"consumer","numPackets":5},"partialState":{"h":11,"t":66,"consumerPower":[14992,8312,null,null],"outstandingDowntime":[false,false,true,true]}},{"ix":130,"action":{"kind":"Undelegate","val":3,"amt":4599},"partialState":{"h":9,"t":54,"tokens":[13400,3889,1689,4224],"delegation":[12400,2889,689,3224],"delegatorTokens":9999999938097}},{"ix":131,"action":{"kind":"Undelegate","val":0,"amt":4380},"partialState":{"h":9,"t":54,"tokens":[9020,3889,1689,4224],"delegation":[8020,2889,689,3224],"delegatorTokens":9999999938097}},{"ix":132,"action":{"kind":"Delegate","val":0,"amt":4462},"partialState":{"h":9,"t":54,"tokens":[13482,3889,1689,4224],"delegation":[12482,2889,689,3224],"delegatorTokens":9999999933635}},{"ix":133,"action":{"kind":"Deliver","chain":"consumer","numPackets":1},"partialState":{"h":11,"t":66,"consumerPower":[14992,8312,null,null],"outstandingDowntime":[false,false,true,true]}},{"ix":134,"action":{"kind":"Deliver","chain":"consumer","numPackets":4},"partialState":{"h":11,"t":66,"consumerPower":[14992,8312,null,null],"outstandingDowntime":[false,false,true,true]}},{"ix":135,"action":{"kind":"Undelegate","val":2,"amt":3771},"partialState":{"h":9,"t":54,"tokens":[13482,3889,1689,4224],"delegation":[12482,2889,689,3224],"delegatorTokens":9999999933635}},{"ix":136,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":137,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":12,"t":72,"consumerPower":[14992,8312,null,null],"outstandingDowntime":[false,false,true,true]}},{"ix":138,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":10,"t":60,"tokens":[13482,3889,1689,4224],"delegation":[12482,2889,689,3224],"delegatorTokens":9999999933635,"jailed":[null,1000000000000041,null,null],"status":["bonded","unbonding","unbonding","bonded"]}},{"ix":139,"action":{"kind":"Deliver","chain":"provider","numPackets":4},"partialState":{"h":10,"t":60,"tokens":[13482,3889,1689,4224],"delegation":[12482,2889,689,3224],"delegatorTokens":9999999933635,"jailed":[null,1000000000000041,null,null],"status":["bonded","unbonding","unbonding","bonded"]}},{"ix":140,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":13,"t":78,"consumerPower":[14992,8312,null,null],"outstandingDowntime":[false,false,true,true]}},{"ix":141,"action":{"kind":"Delegate","val":1,"amt":4037},"partialState":{"h":10,"t":60,"tokens":[13482,7926,1689,4224],"delegation":[12482,6926,689,3224],"delegatorTokens":9999999929598}},{"ix":142,"action":{"kind":"Undelegate","val":2,"amt":1789},"partialState":{"h":10,"t":60,"tokens":[13482,7926,1689,4224],"delegation":[12482,6926,689,3224],"delegatorTokens":9999999929598}},{"ix":143,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":144,"action":{"kind":"Deliver","chain":"provider","numPackets":5},"partialState":{"h":10,"t":60,"tokens":[13482,7926,1689,4224],"delegation":[12482,6926,689,3224],"delegatorTokens":9999999929598,"jailed":[null,1000000000000041,null,null],"status":["bonded","unbonding","unbonding","bonded"]}},{"ix":145,"action":{"kind":"Undelegate","val":0,"amt":4242},"partialState":{"h":10,"t":60,"tokens":[9240,7926,1689,4224],"delegation":[8240,6926,689,3224],"delegatorTokens":9999999929598}},{"ix":146,"action":{"kind":"Deliver","chain":"provider","numPackets":3},"partialState":{"h":10,"t":60,"tokens":[9240,7926,1689,4224],"delegation":[8240,6926,689,3224],"delegatorTokens":9999999929598,"jailed":[null,1000000000000041,null,null],"status":["bonded","unbonding","unbonding","bonded"]}},{"ix":147,"action":{"kind":"Deliver","chain":"provider","numPackets":4},"partialState":{"h":10,"t":60,"tokens":[9240,7926,1689,4224],"delegation":[8240,6926,689,3224],"delegatorTokens":9999999929598,"jailed":[null,1000000000000041,null,null],"status":["bonded","unbonding","unbonding","bonded"]}},{"ix":148,"action":{"kind":"Deliver","chain":"consumer","numPackets":1},"partialState":{"h":13,"t":78,"consumerPower":[14992,8312,null,null],"outstandingDowntime":[false,false,true,true]}},{"ix":149,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":14,"t":84,"consumerPower":[10686,null,3303,null],"outstandingDowntime":[false,false,true,true]}},{"ix":150,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":11,"t":66,"tokens":[9240,7926,1689,4224],"delegation":[8240,6926,689,3224],"delegatorTokens":9999999929598,"jailed":[null,1000000000000041,null,null],"status":["bonded","unbonding","unbonding","bonded"]}},{"ix":151,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":12,"t":72,"tokens":[9240,7926,1689,4224],"delegation":[8240,6926,689,3224],"delegatorTokens":9999999929598,"jailed":[null,1000000000000041,null,null],"status":["bonded","unbonding","unbonding","bonded"]}},{"ix":152,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":153,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":154,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":13,"t":78,"tokens":[9240,7926,1689,4224],"delegation":[8240,6926,689,3224],"delegatorTokens":9999999929598,"jailed":[null,1000000000000041,null,null],"status":["bonded","unbonding","unbonding","bonded"]}},{"ix":155,"action":{"kind":"Deliver","chain":"consumer","numPackets":6},"partialState":{"h":14,"t":84,"consumerPower":[10686,null,3303,null],"outstandingDowntime":[false,false,true,true]}},{"ix":156,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":14,"t":84,"tokens":[9240,7926,1689,4224],"delegation":[8240,6926,689,3224],"delegatorTokens":9999999929598,"jailed":[null,1000000000000041,null,null],"status":["bonded","unbonding","unbonding","bonded"]}},{"ix":157,"action":{"kind":"Deliver","chain":"consumer","numPackets":6},"partialState":{"h":14,"t":84,"consumerPower":[10686,null,3303,null],"outstandingDowntime":[false,false,true,true]}},{"ix":158,"action":{"kind":"Undelegate","val":3,"amt":3483},"partialState":{"h":14,"t":84,"tokens":[9240,7926,1689,4224],"delegation":[8240,6926,689,3224],"delegatorTokens":9999999929598}},{"ix":159,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":15,"t":90,"consumerPower":[9240,null,null,4224],"outstandingDowntime":[false,false,true,true]}},{"ix":160,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":161,"action":{"kind":"Delegate","val":2,"amt":2843},"partialState":{"h":14,"t":84,"tokens":[9240,7926,4532,4224],"delegation":[8240,6926,3532,3224],"delegatorTokens":9999999926755}},{"ix":162,"action":{"kind":"Deliver","chain":"provider","numPackets":6},"partialState":{"h":14,"t":84,"tokens":[9240,7926,4532,4224],"delegation":[8240,6926,3532,3224],"delegatorTokens":9999999926755,"jailed":[null,1000000000000041,null,null],"status":["bonded","unbonding","unbonding","bonded"]}},{"ix":163,"action":{"kind":"Delegate","val":1,"amt":2132},"partialState":{"h":14,"t":84,"tokens":[9240,10058,4532,4224],"delegation":[8240,9058,3532,3224],"delegatorTokens":9999999924623}},{"ix":164,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":16,"t":96,"consumerPower":[9240,null,null,4224],"outstandingDowntime":[false,false,true,true]}},{"ix":165,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":15,"t":90,"tokens":[9240,10058,4532,4224],"delegation":[8240,9058,3532,3224],"delegatorTokens":9999999927335,"jailed":[null,1000000000000041,null,null],"status":["bonded","unbonding","bonded","unbonding"]}},{"ix":166,"action":{"kind":"Undelegate","val":3,"amt":1954},"partialState":{"h":15,"t":90,"tokens":[9240,10058,4532,2270],"delegation":[8240,9058,3532,1270],"delegatorTokens":9999999927335}},{"ix":167,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":16,"t":96,"tokens":[9240,10058,4532,2270],"delegation":[8240,9058,3532,1270],"delegatorTokens":9999999927335,"jailed":[null,1000000000000041,null,null],"status":["bonded","unbonding","bonded","unbonding"]}},{"ix":168,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":17,"t":102,"tokens":[9240,10058,4532,2270],"delegation":[8240,9058,3532,1270],"delegatorTokens":9999999929036,"jailed":[null,1000000000000041,null,null],"status":["bonded","unbonding","bonded","unbonding"]}},{"ix":169,"action":{"kind":"Deliver","chain":"consumer","numPackets":6},"partialState":{"h":16,"t":96,"consumerPower":[9240,null,null,4224],"outstandingDowntime":[false,false,true,true]}},{"ix":170,"action":{"kind":"Delegate","val":3,"amt":3542},"partialState":{"h":17,"t":102,"tokens":[9240,10058,4532,5812],"delegation":[8240,9058,3532,4812],"delegatorTokens":9999999925494}},{"ix":171,"action":{"kind":"Undelegate","val":0,"amt":3508},"partialState":{"h":17,"t":102,"tokens":[5732,10058,4532,5812],"delegation":[4732,9058,3532,4812],"delegatorTokens":9999999925494}},{"ix":172,"action":{"kind":"Delegate","val":2,"amt":4491},"partialState":{"h":17,"t":102,"tokens":[5732,10058,9023,5812],"delegation":[4732,9058,8023,4812],"delegatorTokens":9999999921003}},{"ix":173,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":17,"t":102,"consumerPower":[9240,null,4532,null],"outstandingDowntime":[false,false,true,true]}},{"ix":174,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":18,"t":108,"tokens":[5732,10058,9023,5812],"delegation":[4732,9058,8023,4812],"delegatorTokens":9999999921003,"jailed":[null,1000000000000041,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":175,"action":{"kind":"Undelegate","val":3,"amt":2507},"partialState":{"h":18,"t":108,"tokens":[5732,10058,9023,3305],"delegation":[4732,9058,8023,2305],"delegatorTokens":9999999921003}},{"ix":176,"action":{"kind":"Undelegate","val":2,"amt":3159},"partialState":{"h":18,"t":108,"tokens":[5732,10058,5864,3305],"delegation":[4732,9058,4864,2305],"delegatorTokens":9999999921003}},{"ix":177,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":18,"t":108,"consumerPower":[9240,null,4532,null],"outstandingDowntime":[false,false,true,true]}},{"ix":178,"action":{"kind":"Delegate","val":3,"amt":4779},"partialState":{"h":18,"t":108,"tokens":[5732,10058,5864,8084],"delegation":[4732,9058,4864,7084],"delegatorTokens":9999999916224}},{"ix":179,"action":{"kind":"Delegate","val":0,"amt":2435},"partialState":{"h":18,"t":108,"tokens":[8167,10058,5864,8084],"delegation":[7167,9058,4864,7084],"delegatorTokens":9999999913789}},{"ix":180,"action":{"kind":"Deliver","chain":"provider","numPackets":1},"partialState":{"h":18,"t":108,"tokens":[8167,10058,5864,8084],"delegation":[7167,9058,4864,7084],"delegatorTokens":9999999913789,"jailed":[null,1000000000000041,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":181,"action":{"kind":"Delegate","val":0,"amt":3410},"partialState":{"h":18,"t":108,"tokens":[11577,10058,5864,8084],"delegation":[10577,9058,4864,7084],"delegatorTokens":9999999910379}},{"ix":182,"action":{"kind":"Deliver","chain":"consumer","numPackets":5},"partialState":{"h":18,"t":108,"consumerPower":[9240,null,4532,null],"outstandingDowntime":[false,false,true,true]}},{"ix":183,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":184,"action":{"kind":"Undelegate","val":2,"amt":3643},"partialState":{"h":18,"t":108,"tokens":[11577,10058,2221,8084],"delegation":[10577,9058,1221,7084],"delegatorTokens":9999999910379}},{"ix":185,"action":{"kind":"Deliver","chain":"consumer","numPackets":1},"partialState":{"h":18,"t":108,"consumerPower":[9240,null,4532,null],"outstandingDowntime":[false,false,true,true]}},{"ix":186,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":187,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":188,"action":{"kind":"Delegate","val":1,"amt":2421},"partialState":{"h":18,"t":108,"tokens":[11577,12479,2221,8084],"delegation":[10577,11479,1221,7084],"delegatorTokens":9999999907958}},{"ix":189,"action":{"kind":"Delegate","val":0,"amt":3915},"partialState":{"h":18,"t":108,"tokens":[15492,12479,2221,8084],"delegation":[14492,11479,1221,7084],"delegatorTokens":9999999904043}},{"ix":190,"action":{"kind":"Delegate","val":2,"amt":3249},"partialState":{"h":18,"t":108,"tokens":[15492,12479,5470,8084],"delegation":[14492,11479,4470,7084],"delegatorTokens":9999999900794}},{"ix":191,"action":{"kind":"Deliver","chain":"consumer","numPackets":6},"partialState":{"h":18,"t":108,"consumerPower":[9240,null,4532,null],"outstandingDowntime":[false,false,true,true]}},{"ix":192,"action":{"kind":"Deliver","chain":"provider","numPackets":2},"partialState":{"h":18,"t":108,"tokens":[15492,12479,5470,8084],"delegation":[14492,11479,4470,7084],"delegatorTokens":9999999900794,"jailed":[null,1000000000000041,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":193,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":19,"t":114,"consumerPower":[9240,null,4532,null],"outstandingDowntime":[false,false,true,true]}},{"ix":194,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":195,"action":{"kind":"Delegate","val":3,"amt":3830},"partialState":{"h":18,"t":108,"tokens":[15492,12479,5470,11914],"delegation":[14492,11479,4470,10914],"delegatorTokens":9999999896964}},{"ix":196,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":20,"t":120,"consumerPower":[9240,null,4532,null],"outstandingDowntime":[false,false,true,true]}},{"ix":197,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":21,"t":126,"consumerPower":[9240,null,4532,null],"outstandingDowntime":[false,false,true,true]}},{"ix":198,"action":{"kind":"Delegate","val":3,"amt":1856},"partialState":{"h":18,"t":108,"tokens":[15492,12479,5470,13770],"delegation":[14492,11479,4470,12770],"delegatorTokens":9999999895108}},{"ix":199,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":22,"t":132,"consumerPower":[9240,null,4532,null],"outstandingDowntime":[false,false,true,true]}}],"events":["send_downtime_slash_request","send_vsc_without_downtime_ack","insufficient_shares","insufficient_shares","send_downtime_slash_request","insufficient_shares","insufficient_shares","send_vsc_without_downtime_ack","downtime_slash_request_outstanding","send_downtime_slash_request","insufficient_shares","send_vsc_not_because_change","send_vsc_without_downtime_ack","send_vsc_without_downtime_ack","insufficient_shares","consumer_update_val","consumer_update_val","send_vsc_without_downtime_ack","insufficient_shares","insufficient_shares","receive_slash_request_unbonded","receive_slash_request_unbonded","receive_downtime_slash_request","jail","send_vsc_with_downtime_ack","insufficient_shares","send_vsc_without_downtime_ack","insufficient_shares","insufficient_shares","receive_downtime_slash_ack","insufficient_shares","insufficient_shares","insufficient_shares","consumer_update_val","consumer_update_val","insufficient_shares","insufficient_shares","insufficient_shares","consumer_send_maturation","consumer_send_maturation","consumer_send_maturation","send_vsc_without_downtime_ack","insufficient_shares","consumer_update_val","consumer_del_val","consumer_add_val","set_undel_hold_false","set_undel_hold_false","send_vsc_without_downtime_ack","insufficient_shares","consumer_update_val","consumer_del_val","consumer_add_val","rebond_unval","complete_undel_in_endblock","send_vsc_without_downtime_ack","send_vsc_not_because_change","send_vsc_without_downtime_ack","complete_undel_in_endblock","consumer_add_val","consumer_del_val","more_than_one_third_val_power_change","rebond_unval","some_undels_expired_but_not_completed","send_vsc_without_downtime_ack","consumer_send_maturation","consumer_send_maturation","consumer_send_maturation"]},{"meta":{"commit":"7ffd0c04e4205cbc9caf212abfe6c59ee43153bf"},"constants":{"P":"provider","C":"consumer","UNBONDING_SECONDS_P":70,"UNBONDING_SECONDS_C":50,"TRUSTING_SECONDS":49,"NUM_VALIDATORS":4,"MAX_VALIDATORS":2,"SLASH_DOUBLESIGN":0,"SLASH_DOWNTIME":0,"JAIL_SECONDS":999999999999999,"BLOCK_SECONDS":6,"INITIAL_DELEGATOR_TOKENS":10000000000000,"DELEGATE_AMT_MIN":1000,"DELEGATE_AMT_MAX":5000,"UNDELEGATE_AMT_MIN":1000,"UNDELEGATE_AMT_MAX":5000,"ISDOWNTIME_PROBABILITY":0.5,"MAX_NUM_PACKETS_FOR_DELIVER":6},"actions":[{"ix":0,"action":{"kind":"ConsumerSlash","val":2,"infractionHeight":0,"isDowntime":true},"partialState":{"h":1,"t":6,"outstandingDowntime":[false,false,true,false]}},{"ix":1,"action":{"kind":"Deliver","chain":"consumer","numPackets":2},"partialState":{"h":1,"t":6,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,false,true,false]}},{"ix":2,"action":{"kind":"Delegate","val":1,"amt":4624},"partialState":{"h":1,"t":6,"tokens":[5000,8624,3000,2000],"delegation":[4000,7624,2000,1000],"delegatorTokens":9999999995376}},{"ix":3,"action":{"kind":"ConsumerSlash","val":3,"infractionHeight":0,"isDowntime":false},"partialState":{"h":1,"t":6,"outstandingDowntime":[false,false,true,false]}},{"ix":4,"action":{"kind":"Delegate","val":1,"amt":3027},"partialState":{"h":1,"t":6,"tokens":[5000,11651,3000,2000],"delegation":[4000,10651,2000,1000],"delegatorTokens":9999999992349}},{"ix":5,"action":{"kind":"Undelegate","val":2,"amt":1080},"partialState":{"h":1,"t":6,"tokens":[5000,11651,1920,2000],"delegation":[4000,10651,920,1000],"delegatorTokens":9999999992349}},{"ix":6,"action":{"kind":"ConsumerSlash","val":2,"infractionHeight":0,"isDowntime":true},"partialState":{"h":1,"t":6,"outstandingDowntime":[false,false,true,false]}},{"ix":7,"action":{"kind":"Delegate","val":1,"amt":1460},"partialState":{"h":1,"t":6,"tokens":[5000,13111,1920,2000],"delegation":[4000,12111,920,1000],"delegatorTokens":9999999990889}},{"ix":8,"action":{"kind":"ConsumerSlash","val":3,"infractionHeight":0,"isDowntime":true},"partialState":{"h":1,"t":6,"outstandingDowntime":[false,false,true,true]}},{"ix":9,"action":{"kind":"Deliver","chain":"provider","numPackets":3},"partialState":{"h":1,"t":6,"tokens":[5000,13111,1920,2000],"delegation":[4000,12111,920,1000],"delegatorTokens":9999999990889,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":10,"action":{"kind":"Undelegate","val":2,"amt":2397},"partialState":{"h":1,"t":6,"tokens":[5000,13111,1920,2000],"delegation":[4000,12111,920,1000],"delegatorTokens":9999999990889}},{"ix":11,"action":{"kind":"ConsumerSlash","val":0,"infractionHeight":0,"isDowntime":true},"partialState":{"h":1,"t":6,"outstandingDowntime":[true,false,true,true]}},{"ix":12,"action":{"kind":"Deliver","chain":"consumer","numPackets":5},"partialState":{"h":1,"t":6,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[true,false,true,true]}},{"ix":13,"action":{"kind":"Undelegate","val":3,"amt":3770},"partialState":{"h":1,"t":6,"tokens":[5000,13111,1920,2000],"delegation":[4000,12111,920,1000],"delegatorTokens":9999999990889}},{"ix":14,"action":{"kind":"Delegate","val":3,"amt":2454},"partialState":{"h":1,"t":6,"tokens":[5000,13111,1920,4454],"delegation":[4000,12111,920,3454],"delegatorTokens":9999999988435}},{"ix":15,"action":{"kind":"Undelegate","val":2,"amt":3773},"partialState":{"h":1,"t":6,"tokens":[5000,13111,1920,4454],"delegation":[4000,12111,920,3454],"delegatorTokens":9999999988435}},{"ix":16,"action":{"kind":"Delegate","val":1,"amt":3494},"partialState":{"h":1,"t":6,"tokens":[5000,16605,1920,4454],"delegation":[4000,15605,920,3454],"delegatorTokens":9999999984941}},{"ix":17,"action":{"kind":"Deliver","chain":"consumer","numPackets":4},"partialState":{"h":1,"t":6,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[true,false,true,true]}},{"ix":18,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":2,"t":12,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[true,false,true,true]}},{"ix":19,"action":{"kind":"Deliver","chain":"consumer","numPackets":1},"partialState":{"h":2,"t":12,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[true,false,true,true]}},{"ix":20,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":21,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":22,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":23,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":3,"t":18,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[true,false,true,true]}},{"ix":24,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":25,"action":{"kind":"Delegate","val":2,"amt":2806},"partialState":{"h":1,"t":6,"tokens":[5000,16605,4726,4454],"delegation":[4000,15605,3726,3454],"delegatorTokens":9999999982135}},{"ix":26,"action":{"kind":"Deliver","chain":"provider","numPackets":2},"partialState":{"h":1,"t":6,"tokens":[5000,16605,4726,4454],"delegation":[4000,15605,3726,3454],"delegatorTokens":9999999982135,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":27,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":2,"t":12,"tokens":[5000,16605,4726,4454],"delegation":[4000,15605,3726,3454],"delegatorTokens":9999999982135,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":28,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":3,"t":18,"tokens":[5000,16605,4726,4454],"delegation":[4000,15605,3726,3454],"delegatorTokens":9999999982135,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":29,"action":{"kind":"Delegate","val":1,"amt":4112},"partialState":{"h":3,"t":18,"tokens":[5000,20717,4726,4454],"delegation":[4000,19717,3726,3454],"delegatorTokens":9999999978023}},{"ix":30,"action":{"kind":"Deliver","chain":"consumer","numPackets":4},"partialState":{"h":3,"t":18,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[true,false,true,true]}},{"ix":31,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":32,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":33,"action":{"kind":"Deliver","chain":"consumer","numPackets":6},"partialState":{"h":3,"t":18,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[true,false,true,true]}},{"ix":34,"action":{"kind":"Deliver","chain":"consumer","numPackets":1},"partialState":{"h":3,"t":18,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[true,false,true,true]}},{"ix":35,"action":{"kind":"Deliver","chain":"consumer","numPackets":1},"partialState":{"h":3,"t":18,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[true,false,true,true]}},{"ix":36,"action":{"kind":"Deliver","chain":"consumer","numPackets":4},"partialState":{"h":3,"t":18,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[true,false,true,true]}},{"ix":37,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":4,"t":24,"consumerPower":[5000,16605,null,null],"outstandingDowntime":[true,false,true,true]}},{"ix":38,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":39,"action":{"kind":"Delegate","val":1,"amt":1436},"partialState":{"h":3,"t":18,"tokens":[5000,22153,4726,4454],"delegation":[4000,21153,3726,3454],"delegatorTokens":9999999976587}},{"ix":40,"action":{"kind":"Deliver","chain":"provider","numPackets":4},"partialState":{"h":3,"t":18,"tokens":[5000,22153,4726,4454],"delegation":[4000,21153,3726,3454],"delegatorTokens":9999999976587,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":41,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":42,"action":{"kind":"Undelegate","val":0,"amt":1846},"partialState":{"h":3,"t":18,"tokens":[3154,22153,4726,4454],"delegation":[2154,21153,3726,3454],"delegatorTokens":9999999976587}},{"ix":43,"action":{"kind":"Deliver","chain":"consumer","numPackets":2},"partialState":{"h":4,"t":24,"consumerPower":[5000,16605,null,null],"outstandingDowntime":[true,false,true,true]}},{"ix":44,"action":{"kind":"Undelegate","val":1,"amt":4197},"partialState":{"h":3,"t":18,"tokens":[3154,17956,4726,4454],"delegation":[2154,16956,3726,3454],"delegatorTokens":9999999976587}},{"ix":45,"action":{"kind":"Undelegate","val":3,"amt":3028},"partialState":{"h":3,"t":18,"tokens":[3154,17956,4726,1426],"delegation":[2154,16956,3726,426],"delegatorTokens":9999999976587}},{"ix":46,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":47,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":48,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":49,"action":{"kind":"Deliver","chain":"provider","numPackets":5},"partialState":{"h":3,"t":18,"tokens":[3154,17956,4726,1426],"delegation":[2154,16956,3726,426],"delegatorTokens":9999999976587,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":50,"action":{"kind":"Deliver","chain":"consumer","numPackets":6},"partialState":{"h":4,"t":24,"consumerPower":[5000,16605,null,null],"outstandingDowntime":[true,false,true,true]}},{"ix":51,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":5,"t":30,"consumerPower":[5000,16605,null,null],"outstandingDowntime":[true,false,true,true]}},{"ix":52,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":4,"t":24,"tokens":[3154,17956,4726,1426],"delegation":[2154,16956,3726,426],"delegatorTokens":9999999976587,"jailed":[1000000000000017,null,null,null],"status":["unbonding","bonded","bonded","unbonded"]}},{"ix":53,"action":{"kind":"Undelegate","val":2,"amt":4427},"partialState":{"h":4,"t":24,"tokens":[3154,17956,4726,1426],"delegation":[2154,16956,3726,426],"delegatorTokens":9999999976587}},{"ix":54,"action":{"kind":"Delegate","val":0,"amt":4053},"partialState":{"h":4,"t":24,"tokens":[7207,17956,4726,1426],"delegation":[6207,16956,3726,426],"delegatorTokens":9999999972534}},{"ix":55,"action":{"kind":"Undelegate","val":3,"amt":3460},"partialState":{"h":4,"t":24,"tokens":[7207,17956,4726,1426],"delegation":[6207,16956,3726,426],"delegatorTokens":9999999972534}},{"ix":56,"action":{"kind":"Delegate","val":0,"amt":4744},"partialState":{"h":4,"t":24,"tokens":[11951,17956,4726,1426],"delegation":[10951,16956,3726,426],"delegatorTokens":9999999967790}},{"ix":57,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":5,"t":30,"tokens":[11951,17956,4726,1426],"delegation":[10951,16956,3726,426],"delegatorTokens":9999999967790,"jailed":[1000000000000017,null,null,null],"status":["unbonding","bonded","bonded","unbonded"]}},{"ix":58,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":6,"t":36,"tokens":[11951,17956,4726,1426],"delegation":[10951,16956,3726,426],"delegatorTokens":9999999967790,"jailed":[1000000000000017,null,null,null],"status":["unbonding","bonded","bonded","unbonded"]}},{"ix":59,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":6,"t":36,"consumerPower":[5000,16605,null,null],"outstandingDowntime":[true,false,true,true]}},{"ix":60,"action":{"kind":"Delegate","val":3,"amt":4715},"partialState":{"h":6,"t":36,"tokens":[11951,17956,4726,6141],"delegation":[10951,16956,3726,5141],"delegatorTokens":9999999963075}},{"ix":61,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":62,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":7,"t":42,"tokens":[11951,17956,4726,6141],"delegation":[10951,16956,3726,5141],"delegatorTokens":9999999963075,"jailed":[1000000000000017,null,null,null],"status":["unbonding","bonded","unbonding","bonded"]}},{"ix":63,"action":{"kind":"Undelegate","val":3,"amt":1210},"partialState":{"h":7,"t":42,"tokens":[11951,17956,4726,4931],"delegation":[10951,16956,3726,3931],"delegatorTokens":9999999963075}},{"ix":64,"action":{"kind":"Delegate","val":3,"amt":1771},"partialState":{"h":7,"t":42,"tokens":[11951,17956,4726,6702],"delegation":[10951,16956,3726,5702],"delegatorTokens":9999999961304}},{"ix":65,"action":{"kind":"Deliver","chain":"provider","numPackets":5},"partialState":{"h":7,"t":42,"tokens":[11951,17956,4726,6702],"delegation":[10951,16956,3726,5702],"delegatorTokens":9999999961304,"jailed":[1000000000000017,null,null,null],"status":["unbonding","bonded","unbonding","bonded"]}},{"ix":66,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":67,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":68,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":7,"t":42,"consumerPower":[5000,16605,null,null],"outstandingDowntime":[true,false,true,true]}},{"ix":69,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":70,"action":{"kind":"Undelegate","val":3,"amt":2414},"partialState":{"h":7,"t":42,"tokens":[11951,17956,4726,4288],"delegation":[10951,16956,3726,3288],"delegatorTokens":9999999961304}},{"ix":71,"action":{"kind":"Undelegate","val":2,"amt":1251},"partialState":{"h":7,"t":42,"tokens":[11951,17956,3475,4288],"delegation":[10951,16956,2475,3288],"delegatorTokens":9999999961304}},{"ix":72,"action":{"kind":"Deliver","chain":"provider","numPackets":2},"partialState":{"h":7,"t":42,"tokens":[11951,17956,3475,4288],"delegation":[10951,16956,2475,3288],"delegatorTokens":9999999961304,"jailed":[1000000000000017,null,null,null],"status":["unbonding","bonded","unbonding","bonded"]}},{"ix":73,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":74,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":75,"action":{"kind":"Undelegate","val":1,"amt":2449},"partialState":{"h":7,"t":42,"tokens":[11951,15507,3475,4288],"delegation":[10951,14507,2475,3288],"delegatorTokens":9999999961304}},{"ix":76,"action":{"kind":"Deliver","chain":"provider","numPackets":3},"partialState":{"h":7,"t":42,"tokens":[11951,15507,3475,4288],"delegation":[10951,14507,2475,3288],"delegatorTokens":9999999961304,"jailed":[1000000000000017,null,null,null],"status":["unbonding","bonded","unbonding","bonded"]}},{"ix":77,"action":{"kind":"Undelegate","val":3,"amt":3855},"partialState":{"h":7,"t":42,"tokens":[11951,15507,3475,4288],"delegation":[10951,14507,2475,3288],"delegatorTokens":9999999961304}},{"ix":78,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":79,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":8,"t":48,"consumerPower":[5000,16605,null,null],"outstandingDowntime":[true,false,true,true]}},{"ix":80,"action":{"kind":"Delegate","val":3,"amt":1337},"partialState":{"h":7,"t":42,"tokens":[11951,15507,3475,5625],"delegation":[10951,14507,2475,4625],"delegatorTokens":9999999959967}},{"ix":81,"action":{"kind":"Delegate","val":0,"amt":1896},"partialState":{"h":7,"t":42,"tokens":[13847,15507,3475,5625],"delegation":[12847,14507,2475,4625],"delegatorTokens":9999999958071}},{"ix":82,"action":{"kind":"Undelegate","val":0,"amt":3894},"partialState":{"h":7,"t":42,"tokens":[9953,15507,3475,5625],"delegation":[8953,14507,2475,4625],"delegatorTokens":9999999958071}},{"ix":83,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":8,"t":48,"tokens":[9953,15507,3475,5625],"delegation":[8953,14507,2475,4625],"delegatorTokens":9999999958071,"jailed":[1000000000000017,null,null,null],"status":["unbonding","bonded","unbonding","bonded"]}},{"ix":84,"action":{"kind":"Delegate","val":3,"amt":2971},"partialState":{"h":8,"t":48,"tokens":[9953,15507,3475,8596],"delegation":[8953,14507,2475,7596],"delegatorTokens":9999999955100}},{"ix":85,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":9,"t":54,"consumerPower":[5000,16605,null,null],"outstandingDowntime":[true,false,true,true]}},{"ix":86,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":87,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":10,"t":60,"consumerPower":[5000,16605,null,null],"outstandingDowntime":[true,false,true,true]}},{"ix":88,"action":{"kind":"Delegate","val":3,"amt":3781},"partialState":{"h":8,"t":48,"tokens":[9953,15507,3475,12377],"delegation":[8953,14507,2475,11377],"delegatorTokens":9999999951319}},{"ix":89,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":9,"t":54,"tokens":[9953,15507,3475,12377],"delegation":[8953,14507,2475,11377],"delegatorTokens":9999999951319,"jailed":[1000000000000017,null,null,null],"status":["unbonding","bonded","unbonding","bonded"]}},{"ix":90,"action":{"kind":"Deliver","chain":"consumer","numPackets":4},"partialState":{"h":10,"t":60,"consumerPower":[5000,16605,null,null],"outstandingDowntime":[false,false,true,true]}},{"ix":91,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":11,"t":66,"consumerPower":[null,15507,null,5625],"outstandingDowntime":[false,false,true,true]}},{"ix":92,"action":{"kind":"Undelegate","val":2,"amt":4020},"partialState":{"h":9,"t":54,"tokens":[9953,15507,3475,12377],"delegation":[8953,14507,2475,11377],"delegatorTokens":9999999951319}},{"ix":93,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":94,"action":{"kind":"Delegate","val":3,"amt":2938},"partialState":{"h":9,"t":54,"tokens":[9953,15507,3475,15315],"delegation":[8953,14507,2475,14315],"delegatorTokens":9999999948381}},{"ix":95,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":10,"t":60,"tokens":[9953,15507,3475,15315],"delegation":[8953,14507,2475,14315],"delegatorTokens":9999999948381,"jailed":[1000000000000017,null,null,null],"status":["unbonding","bonded","unbonding","bonded"]}},{"ix":96,"action":{"kind":"Deliver","chain":"consumer","numPackets":5},"partialState":{"h":11,"t":66,"consumerPower":[null,15507,null,5625],"outstandingDowntime":[false,false,true,true]}},{"ix":97,"action":{"kind":"Deliver","chain":"provider","numPackets":3},"partialState":{"h":10,"t":60,"tokens":[9953,15507,3475,15315],"delegation":[8953,14507,2475,14315],"delegatorTokens":9999999948381,"jailed":[1000000000000017,null,null,null],"status":["unbonding","bonded","unbonding","bonded"]}},{"ix":98,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":99,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":100,"action":{"kind":"Delegate","val":1,"amt":4295},"partialState":{"h":10,"t":60,"tokens":[9953,19802,3475,15315],"delegation":[8953,18802,2475,14315],"delegatorTokens":9999999944086}},{"ix":101,"action":{"kind":"Undelegate","val":3,"amt":4529},"partialState":{"h":10,"t":60,"tokens":[9953,19802,3475,10786],"delegation":[8953,18802,2475,9786],"delegatorTokens":9999999944086}},{"ix":102,"action":{"kind":"Delegate","val":2,"amt":1440},"partialState":{"h":10,"t":60,"tokens":[9953,19802,4915,10786],"delegation":[8953,18802,3915,9786],"delegatorTokens":9999999942646}},{"ix":103,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":12,"t":72,"consumerPower":[null,15507,null,12377],"outstandingDowntime":[false,false,true,true]}},{"ix":104,"action":{"kind":"Delegate","val":0,"amt":1254},"partialState":{"h":10,"t":60,"tokens":[11207,19802,4915,10786],"delegation":[10207,18802,3915,9786],"delegatorTokens":9999999941392}},{"ix":105,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":13,"t":78,"consumerPower":[null,15507,null,12377],"outstandingDowntime":[false,false,true,true]}},{"ix":106,"action":{"kind":"Undelegate","val":2,"amt":3486},"partialState":{"h":10,"t":60,"tokens":[11207,19802,1429,10786],"delegation":[10207,18802,429,9786],"delegatorTokens":9999999941392}},{"ix":107,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":108,"action":{"kind":"Delegate","val":1,"amt":4087},"partialState":{"h":10,"t":60,"tokens":[11207,23889,1429,10786],"delegation":[10207,22889,429,9786],"delegatorTokens":9999999937305}},{"ix":109,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":14,"t":84,"consumerPower":[null,15507,null,12377],"outstandingDowntime":[false,false,true,true]}},{"ix":110,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":111,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":15,"t":90,"consumerPower":[null,15507,null,12377],"outstandingDowntime":[false,false,true,true]}},{"ix":112,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":113,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":11,"t":66,"tokens":[11207,23889,1429,10786],"delegation":[10207,22889,429,9786],"delegatorTokens":9999999937305,"jailed":[1000000000000017,null,null,null],"status":["unbonding","bonded","unbonding","bonded"]}},{"ix":114,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":115,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":12,"t":72,"tokens":[11207,23889,1429,10786],"delegation":[10207,22889,429,9786],"delegatorTokens":9999999937305,"jailed":[1000000000000017,null,null,null],"status":["unbonding","bonded","unbonding","bonded"]}},{"ix":116,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":117,"action":{"kind":"Undelegate","val":0,"amt":2081},"partialState":{"h":12,"t":72,"tokens":[9126,23889,1429,10786],"delegation":[8126,22889,429,9786],"delegatorTokens":9999999937305}},{"ix":118,"action":{"kind":"Delegate","val":0,"amt":2788},"partialState":{"h":12,"t":72,"tokens":[11914,23889,1429,10786],"delegation":[10914,22889,429,9786],"delegatorTokens":9999999934517}},{"ix":119,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":120,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":121,"action":{"kind":"Delegate","val":1,"amt":1856},"partialState":{"h":12,"t":72,"tokens":[11914,25745,1429,10786],"delegation":[10914,24745,429,9786],"delegatorTokens":9999999932661}},{"ix":122,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":123,"action":{"kind":"Deliver","chain":"consumer","numPackets":6},"partialState":{"h":15,"t":90,"consumerPower":[null,15507,null,12377],"outstandingDowntime":[false,false,true,true]}},{"ix":124,"action":{"kind":"Undelegate","val":2,"amt":3510},"partialState":{"h":12,"t":72,"tokens":[11914,25745,1429,10786],"delegation":[10914,24745,429,9786],"delegatorTokens":9999999932661}},{"ix":125,"action":{"kind":"Deliver","chain":"provider","numPackets":1},"partialState":{"h":12,"t":72,"tokens":[11914,25745,1429,10786],"delegation":[10914,24745,429,9786],"delegatorTokens":9999999932661,"jailed":[1000000000000017,null,null,null],"status":["unbonding","bonded","unbonding","bonded"]}},{"ix":126,"action":{"kind":"Delegate","val":2,"amt":4240},"partialState":{"h":12,"t":72,"tokens":[11914,25745,5669,10786],"delegation":[10914,24745,4669,9786],"delegatorTokens":9999999928421}},{"ix":127,"action":{"kind":"Deliver","chain":"provider","numPackets":1},"partialState":{"h":12,"t":72,"tokens":[11914,25745,5669,10786],"delegation":[10914,24745,4669,9786],"delegatorTokens":9999999928421,"jailed":[1000000000000017,null,null,null],"status":["unbonding","bonded","unbonding","bonded"]}},{"ix":128,"action":{"kind":"Delegate","val":2,"amt":4556},"partialState":{"h":12,"t":72,"tokens":[11914,25745,10225,10786],"delegation":[10914,24745,9225,9786],"delegatorTokens":9999999923865}},{"ix":129,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":130,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":16,"t":96,"consumerPower":[null,23889,null,10786],"outstandingDowntime":[false,false,true,true]}},{"ix":131,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":132,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":13,"t":78,"tokens":[11914,25745,10225,10786],"delegation":[10914,24745,9225,9786],"delegatorTokens":9999999923865,"jailed":[1000000000000017,null,null,null],"status":["unbonding","bonded","unbonding","bonded"]}},{"ix":133,"action":{"kind":"Undelegate","val":0,"amt":1076},"partialState":{"h":13,"t":78,"tokens":[10838,25745,10225,10786],"delegation":[9838,24745,9225,9786],"delegatorTokens":9999999923865}},{"ix":134,"action":{"kind":"Undelegate","val":3,"amt":3689},"partialState":{"h":13,"t":78,"tokens":[10838,25745,10225,7097],"delegation":[9838,24745,9225,6097],"delegatorTokens":9999999923865}},{"ix":135,"action":{"kind":"Deliver","chain":"provider","numPackets":1},"partialState":{"h":13,"t":78,"tokens":[10838,25745,10225,7097],"delegation":[9838,24745,9225,6097],"delegatorTokens":9999999923865,"jailed":[1000000000000017,null,null,null],"status":["unbonding","bonded","unbonding","bonded"]}},{"ix":136,"action":{"kind":"Deliver","chain":"provider","numPackets":3},"partialState":{"h":13,"t":78,"tokens":[10838,25745,10225,7097],"delegation":[9838,24745,9225,6097],"delegatorTokens":9999999923865,"jailed":[1000000000000017,null,null,null],"status":["unbonding","bonded","unbonding","bonded"]}},{"ix":137,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":14,"t":84,"tokens":[10838,25745,10225,7097],"delegation":[9838,24745,9225,6097],"delegatorTokens":9999999924945,"jailed":[1000000000000017,null,null,null],"status":["unbonding","bonded","bonded","unbonding"]}},{"ix":138,"action":{"kind":"Deliver","chain":"provider","numPackets":3},"partialState":{"h":14,"t":84,"tokens":[10838,25745,10225,7097],"delegation":[9838,24745,9225,6097],"delegatorTokens":9999999924945,"jailed":[1000000000000017,null,null,null],"status":["unbonding","bonded","bonded","unbonding"]}},{"ix":139,"action":{"kind":"Undelegate","val":3,"amt":3601},"partialState":{"h":14,"t":84,"tokens":[10838,25745,10225,3496],"delegation":[9838,24745,9225,2496],"delegatorTokens":9999999924945}},{"ix":140,"action":{"kind":"Deliver","chain":"provider","numPackets":3},"partialState":{"h":14,"t":84,"tokens":[10838,25745,10225,3496],"delegation":[9838,24745,9225,2496],"delegatorTokens":9999999924945,"jailed":[1000000000000017,null,null,null],"status":["unbonding","bonded","bonded","unbonding"]}},{"ix":141,"action":{"kind":"Undelegate","val":1,"amt":3428},"partialState":{"h":14,"t":84,"tokens":[10838,22317,10225,3496],"delegation":[9838,21317,9225,2496],"delegatorTokens":9999999924945}},{"ix":142,"action":{"kind":"Undelegate","val":3,"amt":1703},"partialState":{"h":14,"t":84,"tokens":[10838,22317,10225,1793],"delegation":[9838,21317,9225,793],"delegatorTokens":9999999924945}},{"ix":143,"action":{"kind":"Deliver","chain":"provider","numPackets":4},"partialState":{"h":14,"t":84,"tokens":[10838,22317,10225,1793],"delegation":[9838,21317,9225,793],"delegatorTokens":9999999924945,"jailed":[1000000000000017,null,null,null],"status":["unbonding","bonded","bonded","unbonding"]}},{"ix":144,"action":{"kind":"Undelegate","val":3,"amt":3526},"partialState":{"h":14,"t":84,"tokens":[10838,22317,10225,1793],"delegation":[9838,21317,9225,793],"delegatorTokens":9999999924945}},{"ix":145,"action":{"kind":"Delegate","val":3,"amt":3846},"partialState":{"h":14,"t":84,"tokens":[10838,22317,10225,5639],"delegation":[9838,21317,9225,4639],"delegatorTokens":9999999921099}},{"ix":146,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":15,"t":90,"tokens":[10838,22317,10225,5639],"delegation":[9838,21317,9225,4639],"delegatorTokens":9999999921099,"jailed":[1000000000000017,null,null,null],"status":["unbonding","bonded","bonded","unbonding"]}},{"ix":147,"action":{"kind":"Delegate","val":1,"amt":2943},"partialState":{"h":15,"t":90,"tokens":[10838,25260,10225,5639],"delegation":[9838,24260,9225,4639],"delegatorTokens":9999999918156}},{"ix":148,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":149,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":150,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":16,"t":96,"tokens":[10838,25260,10225,5639],"delegation":[9838,24260,9225,4639],"delegatorTokens":9999999918156,"jailed":[1000000000000017,null,null,null],"status":["unbonding","bonded","bonded","unbonding"]}},{"ix":151,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":17,"t":102,"consumerPower":[null,23889,null,10786],"outstandingDowntime":[false,false,true,true]}},{"ix":152,"action":{"kind":"Deliver","chain":"consumer","numPackets":2},"partialState":{"h":17,"t":102,"consumerPower":[null,23889,null,10786],"outstandingDowntime":[false,false,true,true]}},{"ix":153,"action":{"kind":"Undelegate","val":2,"amt":1424},"partialState":{"h":16,"t":96,"tokens":[10838,25260,8801,5639],"delegation":[9838,24260,7801,4639],"delegatorTokens":9999999918156}},{"ix":154,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":17,"t":102,"tokens":[10838,25260,8801,5639],"delegation":[9838,24260,7801,4639],"delegatorTokens":9999999918156,"jailed":[1000000000000017,null,null,null],"status":["unbonding","bonded","bonded","unbonding"]}},{"ix":155,"action":{"kind":"Deliver","chain":"consumer","numPackets":1},"partialState":{"h":17,"t":102,"consumerPower":[null,23889,null,10786],"outstandingDowntime":[false,false,true,true]}},{"ix":156,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":157,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":18,"t":108,"tokens":[10838,25260,8801,5639],"delegation":[9838,24260,7801,4639],"delegatorTokens":9999999918156,"jailed":[1000000000000017,null,null,null],"status":["unbonding","bonded","bonded","unbonding"]}},{"ix":158,"action":{"kind":"Deliver","chain":"consumer","numPackets":6},"partialState":{"h":17,"t":102,"consumerPower":[null,23889,null,10786],"outstandingDowntime":[false,false,true,true]}},{"ix":159,"action":{"kind":"Undelegate","val":1,"amt":2334},"partialState":{"h":18,"t":108,"tokens":[10838,22926,8801,5639],"delegation":[9838,21926,7801,4639],"delegatorTokens":9999999918156}},{"ix":160,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":161,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":19,"t":114,"tokens":[10838,22926,8801,5639],"delegation":[9838,21926,7801,4639],"delegatorTokens":9999999918156,"jailed":[1000000000000017,null,null,null],"status":["unbonding","bonded","bonded","unbonding"]}},{"ix":162,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":18,"t":108,"consumerPower":[null,25260,8801,null],"outstandingDowntime":[false,false,true,true]}},{"ix":163,"action":{"kind":"Deliver","chain":"consumer","numPackets":6},"partialState":{"h":18,"t":108,"consumerPower":[null,25260,8801,null],"outstandingDowntime":[false,false,true,true]}},{"ix":164,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":20,"t":120,"tokens":[10838,22926,8801,5639],"delegation":[9838,21926,7801,4639],"delegatorTokens":9999999918156,"jailed":[1000000000000017,null,null,null],"status":["unbonding","bonded","bonded","unbonding"]}},{"ix":165,"action":{"kind":"Delegate","val":2,"amt":1360},"partialState":{"h":20,"t":120,"tokens":[10838,22926,10161,5639],"delegation":[9838,21926,9161,4639],"delegatorTokens":9999999916796}},{"ix":166,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":19,"t":114,"consumerPower":[null,25260,8801,null],"outstandingDowntime":[false,false,true,true]}},{"ix":167,"action":{"kind":"Deliver","chain":"consumer","numPackets":2},"partialState":{"h":19,"t":114,"consumerPower":[null,25260,8801,null],"outstandingDowntime":[false,false,true,true]}},{"ix":168,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":169,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":170,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":171,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":172,"action":{"kind":"Undelegate","val":1,"amt":4460},"partialState":{"h":20,"t":120,"tokens":[10838,18466,10161,5639],"delegation":[9838,17466,9161,4639],"delegatorTokens":9999999916796}},{"ix":173,"action":{"kind":"Delegate","val":3,"amt":2316},"partialState":{"h":20,"t":120,"tokens":[10838,18466,10161,7955],"delegation":[9838,17466,9161,6955],"delegatorTokens":9999999914480}},{"ix":174,"action":{"kind":"Delegate","val":2,"amt":1865},"partialState":{"h":20,"t":120,"tokens":[10838,18466,12026,7955],"delegation":[9838,17466,11026,6955],"delegatorTokens":9999999912615}},{"ix":175,"action":{"kind":"Delegate","val":1,"amt":4734},"partialState":{"h":20,"t":120,"tokens":[10838,23200,12026,7955],"delegation":[9838,22200,11026,6955],"delegatorTokens":9999999907881}},{"ix":176,"action":{"kind":"Undelegate","val":1,"amt":1364},"partialState":{"h":20,"t":120,"tokens":[10838,21836,12026,7955],"delegation":[9838,20836,11026,6955],"delegatorTokens":9999999907881}},{"ix":177,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":178,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":21,"t":126,"tokens":[10838,21836,12026,7955],"delegation":[9838,20836,11026,6955],"delegatorTokens":9999999907881,"jailed":[1000000000000017,null,null,null],"status":["unbonding","bonded","bonded","unbonding"]}},{"ix":179,"action":{"kind":"Undelegate","val":0,"amt":4800},"partialState":{"h":21,"t":126,"tokens":[6038,21836,12026,7955],"delegation":[5038,20836,11026,6955],"delegatorTokens":9999999907881}},{"ix":180,"action":{"kind":"Undelegate","val":1,"amt":1498},"partialState":{"h":21,"t":126,"tokens":[6038,20338,12026,7955],"delegation":[5038,19338,11026,6955],"delegatorTokens":9999999907881}},{"ix":181,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":182,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":183,"action":{"kind":"Delegate","val":1,"amt":4508},"partialState":{"h":21,"t":126,"tokens":[6038,24846,12026,7955],"delegation":[5038,23846,11026,6955],"delegatorTokens":9999999903373}},{"ix":184,"action":{"kind":"Undelegate","val":2,"amt":4676},"partialState":{"h":21,"t":126,"tokens":[6038,24846,7350,7955],"delegation":[5038,23846,6350,6955],"delegatorTokens":9999999903373}},{"ix":185,"action":{"kind":"Deliver","chain":"provider","numPackets":3},"partialState":{"h":21,"t":126,"tokens":[6038,24846,7350,7955],"delegation":[5038,23846,6350,6955],"delegatorTokens":9999999903373,"jailed":[1000000000000017,null,null,null],"status":["unbonding","bonded","bonded","unbonding"]}},{"ix":186,"action":{"kind":"Deliver","chain":"provider","numPackets":2},"partialState":{"h":21,"t":126,"tokens":[6038,24846,7350,7955],"delegation":[5038,23846,6350,6955],"delegatorTokens":9999999903373,"jailed":[1000000000000017,null,null,null],"status":["unbonding","bonded","bonded","unbonding"]}},{"ix":187,"action":{"kind":"Delegate","val":0,"amt":4928},"partialState":{"h":21,"t":126,"tokens":[10966,24846,7350,7955],"delegation":[9966,23846,6350,6955],"delegatorTokens":9999999898445}},{"ix":188,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":189,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":190,"action":{"kind":"Undelegate","val":2,"amt":2782},"partialState":{"h":21,"t":126,"tokens":[10966,24846,4568,7955],"delegation":[9966,23846,3568,6955],"delegatorTokens":9999999898445}},{"ix":191,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":192,"action":{"kind":"Delegate","val":0,"amt":4980},"partialState":{"h":21,"t":126,"tokens":[15946,24846,4568,7955],"delegation":[14946,23846,3568,6955],"delegatorTokens":9999999893465}},{"ix":193,"action":{"kind":"Deliver","chain":"provider","numPackets":3},"partialState":{"h":21,"t":126,"tokens":[15946,24846,4568,7955],"delegation":[14946,23846,3568,6955],"delegatorTokens":9999999893465,"jailed":[1000000000000017,null,null,null],"status":["unbonding","bonded","bonded","unbonding"]}},{"ix":194,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":195,"action":{"kind":"Delegate","val":0,"amt":1922},"partialState":{"h":21,"t":126,"tokens":[17868,24846,4568,7955],"delegation":[16868,23846,3568,6955],"delegatorTokens":9999999891543}},{"ix":196,"action":{"kind":"Undelegate","val":1,"amt":1248},"partialState":{"h":21,"t":126,"tokens":[17868,23598,4568,7955],"delegation":[16868,22598,3568,6955],"delegatorTokens":9999999891543}},{"ix":197,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":198,"action":{"kind":"Undelegate","val":0,"amt":2877},"partialState":{"h":21,"t":126,"tokens":[14991,23598,4568,7955],"delegation":[13991,22598,3568,6955],"delegatorTokens":9999999891543}},{"ix":199,"action":{"kind":"Deliver","chain":"consumer","numPackets":3},"partialState":{"h":19,"t":114,"consumerPower":[null,25260,8801,null],"outstandingDowntime":[false,false,true,true]}}],"events":["send_downtime_slash_request","send_double_sign_slash_request","downtime_slash_request_outstanding","send_downtime_slash_request","insufficient_shares","send_downtime_slash_request","insufficient_shares","insufficient_shares","receive_double_sign_slash_request","receive_slash_request_unbonded","send_vsc_without_downtime_ack","consumer_update_val","receive_slash_request_unbonded","receive_downtime_slash_request","jail","send_vsc_with_downtime_ack","insufficient_shares","insufficient_shares","send_vsc_without_downtime_ack","insufficient_shares","send_vsc_without_downtime_ack","send_vsc_without_downtime_ack","receive_downtime_slash_ack","consumer_del_val","consumer_update_val","consumer_del_val","consumer_add_val","insufficient_shares","send_vsc_without_downtime_ack","consumer_update_val","consumer_send_maturation","send_vsc_without_downtime_ack","insufficient_shares","consumer_update_val","consumer_update_val","set_undel_hold_false","send_vsc_without_downtime_ack","rebond_unval","complete_undel_in_endblock","send_vsc_without_downtime_ack","insufficient_shares","send_vsc_without_downtime_ack","some_undels_expired_but_not_completed","send_vsc_without_downtime_ack","send_vsc_without_downtime_ack","send_vsc_without_downtime_ack","consumer_update_val","consumer_add_val","consumer_del_val","some_undels_expired_but_not_completed","send_vsc_without_downtime_ack"]},{"meta":{"commit":"7ffd0c04e4205cbc9caf212abfe6c59ee43153bf"},"constants":{"P":"provider","C":"consumer","UNBONDING_SECONDS_P":70,"UNBONDING_SECONDS_C":50,"TRUSTING_SECONDS":49,"NUM_VALIDATORS":4,"MAX_VALIDATORS":2,"SLASH_DOUBLESIGN":0,"SLASH_DOWNTIME":0,"JAIL_SECONDS":999999999999999,"BLOCK_SECONDS":6,"INITIAL_DELEGATOR_TOKENS":10000000000000,"DELEGATE_AMT_MIN":1000,"DELEGATE_AMT_MAX":5000,"UNDELEGATE_AMT_MIN":1000,"UNDELEGATE_AMT_MAX":5000,"ISDOWNTIME_PROBABILITY":0.5,"MAX_NUM_PACKETS_FOR_DELIVER":6},"actions":[{"ix":0,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":2,"t":12,"tokens":[5000,4000,3000,2000],"delegation":[4000,3000,2000,1000],"delegatorTokens":10000000000000,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":1,"action":{"kind":"Deliver","chain":"consumer","numPackets":4},"partialState":{"h":1,"t":6,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":2,"action":{"kind":"Undelegate","val":2,"amt":1746},"partialState":{"h":2,"t":12,"tokens":[5000,4000,1254,2000],"delegation":[4000,3000,254,1000],"delegatorTokens":10000000000000}},{"ix":3,"action":{"kind":"Undelegate","val":3,"amt":2945},"partialState":{"h":2,"t":12,"tokens":[5000,4000,1254,2000],"delegation":[4000,3000,254,1000],"delegatorTokens":10000000000000}},{"ix":4,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":5,"action":{"kind":"Delegate","val":3,"amt":3968},"partialState":{"h":2,"t":12,"tokens":[5000,4000,1254,5968],"delegation":[4000,3000,254,4968],"delegatorTokens":9999999996032}},{"ix":6,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":7,"action":{"kind":"Deliver","chain":"consumer","numPackets":4},"partialState":{"h":1,"t":6,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":8,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":9,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":10,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":2,"t":12,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,false,false,false]}},{"ix":11,"action":{"kind":"Undelegate","val":3,"amt":3053},"partialState":{"h":2,"t":12,"tokens":[5000,4000,1254,2915],"delegation":[4000,3000,254,1915],"delegatorTokens":9999999996032}},{"ix":12,"action":{"kind":"Undelegate","val":3,"amt":4467},"partialState":{"h":2,"t":12,"tokens":[5000,4000,1254,2915],"delegation":[4000,3000,254,1915],"delegatorTokens":9999999996032}},{"ix":13,"action":{"kind":"ConsumerSlash","val":3,"infractionHeight":0,"isDowntime":true},"partialState":{"h":2,"t":12,"outstandingDowntime":[false,false,false,true]}},{"ix":14,"action":{"kind":"Deliver","chain":"provider","numPackets":4},"partialState":{"h":2,"t":12,"tokens":[5000,4000,1254,2915],"delegation":[4000,3000,254,1915],"delegatorTokens":9999999996032,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":15,"action":{"kind":"Deliver","chain":"consumer","numPackets":2},"partialState":{"h":2,"t":12,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,false,false,true]}},{"ix":16,"action":{"kind":"Delegate","val":3,"amt":1043},"partialState":{"h":2,"t":12,"tokens":[5000,4000,1254,3958],"delegation":[4000,3000,254,2958],"delegatorTokens":9999999994989}},{"ix":17,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":18,"action":{"kind":"ConsumerSlash","val":2,"infractionHeight":0,"isDowntime":true},"partialState":{"h":2,"t":12,"outstandingDowntime":[false,false,true,true]}},{"ix":19,"action":{"kind":"Undelegate","val":0,"amt":4045},"partialState":{"h":2,"t":12,"tokens":[5000,4000,1254,3958],"delegation":[4000,3000,254,2958],"delegatorTokens":9999999994989}},{"ix":20,"action":{"kind":"Undelegate","val":3,"amt":2463},"partialState":{"h":2,"t":12,"tokens":[5000,4000,1254,1495],"delegation":[4000,3000,254,495],"delegatorTokens":9999999994989}},{"ix":21,"action":{"kind":"Undelegate","val":0,"amt":4617},"partialState":{"h":2,"t":12,"tokens":[5000,4000,1254,1495],"delegation":[4000,3000,254,495],"delegatorTokens":9999999994989}},{"ix":22,"action":{"kind":"Delegate","val":0,"amt":1238},"partialState":{"h":2,"t":12,"tokens":[6238,4000,1254,1495],"delegation":[5238,3000,254,495],"delegatorTokens":9999999993751}},{"ix":23,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":3,"t":18,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,false,true,true]}},{"ix":24,"action":{"kind":"ConsumerSlash","val":2,"infractionHeight":1,"isDowntime":false},"partialState":{"h":3,"t":18,"outstandingDowntime":[false,false,true,true]}},{"ix":25,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":26,"action":{"kind":"Deliver","chain":"consumer","numPackets":5},"partialState":{"h":3,"t":18,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,false,true,true]}},{"ix":27,"action":{"kind":"Undelegate","val":0,"amt":4746},"partialState":{"h":2,"t":12,"tokens":[1492,4000,1254,1495],"delegation":[492,3000,254,495],"delegatorTokens":9999999993751}},{"ix":28,"action":{"kind":"Deliver","chain":"consumer","numPackets":2},"partialState":{"h":3,"t":18,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,false,true,true]}},{"ix":29,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":30,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":31,"action":{"kind":"Deliver","chain":"consumer","numPackets":1},"partialState":{"h":3,"t":18,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,false,true,true]}},{"ix":32,"action":{"kind":"Delegate","val":0,"amt":3696},"partialState":{"h":2,"t":12,"tokens":[5188,4000,1254,1495],"delegation":[4188,3000,254,495],"delegatorTokens":9999999990055}},{"ix":33,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":34,"action":{"kind":"Delegate","val":0,"amt":4938},"partialState":{"h":2,"t":12,"tokens":[10126,4000,1254,1495],"delegation":[9126,3000,254,495],"delegatorTokens":9999999985117}},{"ix":35,"action":{"kind":"Undelegate","val":2,"amt":1497},"partialState":{"h":2,"t":12,"tokens":[10126,4000,1254,1495],"delegation":[9126,3000,254,495],"delegatorTokens":9999999985117}},{"ix":36,"action":{"kind":"Undelegate","val":3,"amt":4516},"partialState":{"h":2,"t":12,"tokens":[10126,4000,1254,1495],"delegation":[9126,3000,254,495],"delegatorTokens":9999999985117}},{"ix":37,"action":{"kind":"Undelegate","val":1,"amt":4478},"partialState":{"h":2,"t":12,"tokens":[10126,4000,1254,1495],"delegation":[9126,3000,254,495],"delegatorTokens":9999999985117}},{"ix":38,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":4,"t":24,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,false,true,true]}},{"ix":39,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":40,"action":{"kind":"ConsumerSlash","val":2,"infractionHeight":1,"isDowntime":true},"partialState":{"h":4,"t":24,"outstandingDowntime":[false,false,true,true]}},{"ix":41,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":3,"t":18,"tokens":[10126,4000,1254,1495],"delegation":[9126,3000,254,495],"delegatorTokens":9999999985117,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":42,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":4,"t":24,"tokens":[10126,4000,1254,1495],"delegation":[9126,3000,254,495],"delegatorTokens":9999999985117,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":43,"action":{"kind":"Deliver","chain":"provider","numPackets":2},"partialState":{"h":4,"t":24,"tokens":[10126,4000,1254,1495],"delegation":[9126,3000,254,495],"delegatorTokens":9999999985117,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":44,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":45,"action":{"kind":"Undelegate","val":1,"amt":3391},"partialState":{"h":4,"t":24,"tokens":[10126,4000,1254,1495],"delegation":[9126,3000,254,495],"delegatorTokens":9999999985117}},{"ix":46,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":5,"t":30,"tokens":[10126,4000,1254,1495],"delegation":[9126,3000,254,495],"delegatorTokens":9999999985117,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":47,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":5,"t":30,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,false,true,true]}},{"ix":48,"action":{"kind":"Undelegate","val":2,"amt":1326},"partialState":{"h":5,"t":30,"tokens":[10126,4000,1254,1495],"delegation":[9126,3000,254,495],"delegatorTokens":9999999985117}},{"ix":49,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":6,"t":36,"tokens":[10126,4000,1254,1495],"delegation":[9126,3000,254,495],"delegatorTokens":9999999985117,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":50,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":51,"action":{"kind":"Deliver","chain":"consumer","numPackets":4},"partialState":{"h":5,"t":30,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,false,true,true]}},{"ix":52,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":53,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":7,"t":42,"tokens":[10126,4000,1254,1495],"delegation":[9126,3000,254,495],"delegatorTokens":9999999985117,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":54,"action":{"kind":"Undelegate","val":1,"amt":2163},"partialState":{"h":7,"t":42,"tokens":[10126,1837,1254,1495],"delegation":[9126,837,254,495],"delegatorTokens":9999999985117}},{"ix":55,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":6,"t":36,"consumerPower":[10126,4000,null,null],"outstandingDowntime":[false,false,true,true]}},{"ix":56,"action":{"kind":"ConsumerSlash","val":0,"infractionHeight":4,"isDowntime":true},"partialState":{"h":6,"t":36,"outstandingDowntime":[true,false,true,true]}},{"ix":57,"action":{"kind":"Delegate","val":1,"amt":3576},"partialState":{"h":7,"t":42,"tokens":[10126,5413,1254,1495],"delegation":[9126,4413,254,495],"delegatorTokens":9999999981541}},{"ix":58,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":7,"t":42,"consumerPower":[10126,4000,null,null],"outstandingDowntime":[true,false,true,true]}},{"ix":59,"action":{"kind":"Delegate","val":0,"amt":2512},"partialState":{"h":7,"t":42,"tokens":[12638,5413,1254,1495],"delegation":[11638,4413,254,495],"delegatorTokens":9999999979029}},{"ix":60,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":8,"t":48,"consumerPower":[10126,4000,null,null],"outstandingDowntime":[true,false,true,true]}},{"ix":61,"action":{"kind":"Undelegate","val":0,"amt":4811},"partialState":{"h":7,"t":42,"tokens":[7827,5413,1254,1495],"delegation":[6827,4413,254,495],"delegatorTokens":9999999979029}},{"ix":62,"action":{"kind":"Undelegate","val":1,"amt":3711},"partialState":{"h":7,"t":42,"tokens":[7827,1702,1254,1495],"delegation":[6827,702,254,495],"delegatorTokens":9999999979029}},{"ix":63,"action":{"kind":"Delegate","val":1,"amt":2811},"partialState":{"h":7,"t":42,"tokens":[7827,4513,1254,1495],"delegation":[6827,3513,254,495],"delegatorTokens":9999999976218}},{"ix":64,"action":{"kind":"Delegate","val":1,"amt":2335},"partialState":{"h":7,"t":42,"tokens":[7827,6848,1254,1495],"delegation":[6827,5848,254,495],"delegatorTokens":9999999973883}},{"ix":65,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":8,"t":48,"tokens":[7827,6848,1254,1495],"delegation":[6827,5848,254,495],"delegatorTokens":9999999973883,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":66,"action":{"kind":"Deliver","chain":"consumer","numPackets":4},"partialState":{"h":8,"t":48,"consumerPower":[10126,4000,null,null],"outstandingDowntime":[true,false,true,true]}},{"ix":67,"action":{"kind":"Undelegate","val":2,"amt":1112},"partialState":{"h":8,"t":48,"tokens":[7827,6848,1254,1495],"delegation":[6827,5848,254,495],"delegatorTokens":9999999973883}},{"ix":68,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":9,"t":54,"consumerPower":[10126,4000,null,null],"outstandingDowntime":[true,false,true,true]}},{"ix":69,"action":{"kind":"Delegate","val":2,"amt":1488},"partialState":{"h":8,"t":48,"tokens":[7827,6848,2742,1495],"delegation":[6827,5848,1742,495],"delegatorTokens":9999999972395}},{"ix":70,"action":{"kind":"Undelegate","val":1,"amt":1400},"partialState":{"h":8,"t":48,"tokens":[7827,5448,2742,1495],"delegation":[6827,4448,1742,495],"delegatorTokens":9999999972395}},{"ix":71,"action":{"kind":"Deliver","chain":"provider","numPackets":6},"partialState":{"h":8,"t":48,"tokens":[7827,5448,2742,1495],"delegation":[6827,4448,1742,495],"delegatorTokens":9999999972395,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":72,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":10,"t":60,"consumerPower":[10126,4000,null,null],"outstandingDowntime":[true,false,true,true]}},{"ix":73,"action":{"kind":"Delegate","val":1,"amt":2917},"partialState":{"h":8,"t":48,"tokens":[7827,8365,2742,1495],"delegation":[6827,7365,1742,495],"delegatorTokens":9999999969478}},{"ix":74,"action":{"kind":"Delegate","val":2,"amt":2139},"partialState":{"h":8,"t":48,"tokens":[7827,8365,4881,1495],"delegation":[6827,7365,3881,495],"delegatorTokens":9999999967339}},{"ix":75,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":76,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":77,"action":{"kind":"Undelegate","val":1,"amt":4228},"partialState":{"h":8,"t":48,"tokens":[7827,4137,4881,1495],"delegation":[6827,3137,3881,495],"delegatorTokens":9999999967339}},{"ix":78,"action":{"kind":"Undelegate","val":2,"amt":2616},"partialState":{"h":8,"t":48,"tokens":[7827,4137,2265,1495],"delegation":[6827,3137,1265,495],"delegatorTokens":9999999967339}},{"ix":79,"action":{"kind":"Deliver","chain":"consumer","numPackets":5},"partialState":{"h":10,"t":60,"consumerPower":[10126,4000,null,null],"outstandingDowntime":[true,false,true,true]}},{"ix":80,"action":{"kind":"Delegate","val":1,"amt":2404},"partialState":{"h":8,"t":48,"tokens":[7827,6541,2265,1495],"delegation":[6827,5541,1265,495],"delegatorTokens":9999999964935}},{"ix":81,"action":{"kind":"Deliver","chain":"provider","numPackets":1},"partialState":{"h":8,"t":48,"tokens":[7827,6541,2265,1495],"delegation":[6827,5541,1265,495],"delegatorTokens":9999999964935,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":82,"action":{"kind":"Delegate","val":1,"amt":1029},"partialState":{"h":8,"t":48,"tokens":[7827,7570,2265,1495],"delegation":[6827,6570,1265,495],"delegatorTokens":9999999963906}},{"ix":83,"action":{"kind":"Undelegate","val":3,"amt":2629},"partialState":{"h":8,"t":48,"tokens":[7827,7570,2265,1495],"delegation":[6827,6570,1265,495],"delegatorTokens":9999999963906}},{"ix":84,"action":{"kind":"Deliver","chain":"consumer","numPackets":3},"partialState":{"h":10,"t":60,"consumerPower":[10126,4000,null,null],"outstandingDowntime":[true,false,true,true]}},{"ix":85,"action":{"kind":"Deliver","chain":"consumer","numPackets":1},"partialState":{"h":10,"t":60,"consumerPower":[10126,4000,null,null],"outstandingDowntime":[true,false,true,true]}},{"ix":86,"action":{"kind":"Deliver","chain":"provider","numPackets":2},"partialState":{"h":8,"t":48,"tokens":[7827,7570,2265,1495],"delegation":[6827,6570,1265,495],"delegatorTokens":9999999963906,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":87,"action":{"kind":"Delegate","val":2,"amt":1678},"partialState":{"h":8,"t":48,"tokens":[7827,7570,3943,1495],"delegation":[6827,6570,2943,495],"delegatorTokens":9999999962228}},{"ix":88,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":11,"t":66,"consumerPower":[10126,4000,null,null],"outstandingDowntime":[true,false,true,true]}},{"ix":89,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":12,"t":72,"consumerPower":[10126,4000,null,null],"outstandingDowntime":[true,false,true,true]}},{"ix":90,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":13,"t":78,"consumerPower":[10126,4000,null,null],"outstandingDowntime":[true,false,true,true]}},{"ix":91,"action":{"kind":"Delegate","val":3,"amt":1874},"partialState":{"h":8,"t":48,"tokens":[7827,7570,3943,3369],"delegation":[6827,6570,2943,2369],"delegatorTokens":9999999960354}},{"ix":92,"action":{"kind":"Deliver","chain":"provider","numPackets":4},"partialState":{"h":8,"t":48,"tokens":[7827,7570,3943,3369],"delegation":[6827,6570,2943,2369],"delegatorTokens":9999999960354,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":93,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":9,"t":54,"tokens":[7827,7570,3943,3369],"delegation":[6827,6570,2943,2369],"delegatorTokens":9999999960354,"jailed":[1000000000000047,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":94,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":95,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":96,"action":{"kind":"Undelegate","val":3,"amt":4493},"partialState":{"h":9,"t":54,"tokens":[7827,7570,3943,3369],"delegation":[6827,6570,2943,2369],"delegatorTokens":9999999960354}},{"ix":97,"action":{"kind":"Delegate","val":0,"amt":4572},"partialState":{"h":9,"t":54,"tokens":[12399,7570,3943,3369],"delegation":[11399,6570,2943,2369],"delegatorTokens":9999999955782}},{"ix":98,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":99,"action":{"kind":"Deliver","chain":"provider","numPackets":2},"partialState":{"h":9,"t":54,"tokens":[12399,7570,3943,3369],"delegation":[11399,6570,2943,2369],"delegatorTokens":9999999955782,"jailed":[1000000000000047,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":100,"action":{"kind":"Delegate","val":1,"amt":2236},"partialState":{"h":9,"t":54,"tokens":[12399,9806,3943,3369],"delegation":[11399,8806,2943,2369],"delegatorTokens":9999999953546}},{"ix":101,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":102,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":14,"t":84,"consumerPower":[10126,4000,null,null],"outstandingDowntime":[true,false,true,true]}},{"ix":103,"action":{"kind":"Delegate","val":0,"amt":2315},"partialState":{"h":9,"t":54,"tokens":[14714,9806,3943,3369],"delegation":[13714,8806,2943,2369],"delegatorTokens":9999999951231}},{"ix":104,"action":{"kind":"Deliver","chain":"provider","numPackets":3},"partialState":{"h":9,"t":54,"tokens":[14714,9806,3943,3369],"delegation":[13714,8806,2943,2369],"delegatorTokens":9999999951231,"jailed":[1000000000000047,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":105,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":106,"action":{"kind":"Delegate","val":1,"amt":3449},"partialState":{"h":9,"t":54,"tokens":[14714,13255,3943,3369],"delegation":[13714,12255,2943,2369],"delegatorTokens":9999999947782}},{"ix":107,"action":{"kind":"Deliver","chain":"provider","numPackets":6},"partialState":{"h":9,"t":54,"tokens":[14714,13255,3943,3369],"delegation":[13714,12255,2943,2369],"delegatorTokens":9999999947782,"jailed":[1000000000000047,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":108,"action":{"kind":"Delegate","val":0,"amt":4262},"partialState":{"h":9,"t":54,"tokens":[18976,13255,3943,3369],"delegation":[17976,12255,2943,2369],"delegatorTokens":9999999943520}},{"ix":109,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":15,"t":90,"consumerPower":[10126,4000,null,null],"outstandingDowntime":[true,false,true,true]}},{"ix":110,"action":{"kind":"Undelegate","val":2,"amt":3061},"partialState":{"h":9,"t":54,"tokens":[18976,13255,3943,3369],"delegation":[17976,12255,2943,2369],"delegatorTokens":9999999943520}},{"ix":111,"action":{"kind":"Delegate","val":2,"amt":4349},"partialState":{"h":9,"t":54,"tokens":[18976,13255,8292,3369],"delegation":[17976,12255,7292,2369],"delegatorTokens":9999999939171}},{"ix":112,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":113,"action":{"kind":"Deliver","chain":"consumer","numPackets":4},"partialState":{"h":15,"t":90,"consumerPower":[10126,4000,null,null],"outstandingDowntime":[true,false,true,true]}},{"ix":114,"action":{"kind":"Delegate","val":0,"amt":4597},"partialState":{"h":9,"t":54,"tokens":[23573,13255,8292,3369],"delegation":[22573,12255,7292,2369],"delegatorTokens":9999999934574}},{"ix":115,"action":{"kind":"Delegate","val":2,"amt":4520},"partialState":{"h":9,"t":54,"tokens":[23573,13255,12812,3369],"delegation":[22573,12255,11812,2369],"delegatorTokens":9999999930054}},{"ix":116,"action":{"kind":"Undelegate","val":0,"amt":4525},"partialState":{"h":9,"t":54,"tokens":[19048,13255,12812,3369],"delegation":[18048,12255,11812,2369],"delegatorTokens":9999999930054}},{"ix":117,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":118,"action":{"kind":"Deliver","chain":"consumer","numPackets":2},"partialState":{"h":15,"t":90,"consumerPower":[10126,4000,null,null],"outstandingDowntime":[true,false,true,true]}},{"ix":119,"action":{"kind":"Deliver","chain":"provider","numPackets":6},"partialState":{"h":9,"t":54,"tokens":[19048,13255,12812,3369],"delegation":[18048,12255,11812,2369],"delegatorTokens":9999999930054,"jailed":[1000000000000047,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":120,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":10,"t":60,"tokens":[19048,13255,12812,3369],"delegation":[18048,12255,11812,2369],"delegatorTokens":9999999930054,"jailed":[1000000000000047,null,null,null],"status":["unbonding","bonded","bonded","unbonded"]}},{"ix":121,"action":{"kind":"Deliver","chain":"provider","numPackets":5},"partialState":{"h":10,"t":60,"tokens":[19048,13255,12812,3369],"delegation":[18048,12255,11812,2369],"delegatorTokens":9999999930054,"jailed":[1000000000000047,null,null,null],"status":["unbonding","bonded","bonded","unbonded"]}},{"ix":122,"action":{"kind":"Delegate","val":0,"amt":2231},"partialState":{"h":10,"t":60,"tokens":[21279,13255,12812,3369],"delegation":[20279,12255,11812,2369],"delegatorTokens":9999999927823}},{"ix":123,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":16,"t":96,"consumerPower":[7827,6848,null,null],"outstandingDowntime":[true,false,true,true]}},{"ix":124,"action":{"kind":"Delegate","val":3,"amt":3563},"partialState":{"h":10,"t":60,"tokens":[21279,13255,12812,6932],"delegation":[20279,12255,11812,5932],"delegatorTokens":9999999924260}},{"ix":125,"action":{"kind":"Deliver","chain":"consumer","numPackets":6},"partialState":{"h":16,"t":96,"consumerPower":[7827,6848,null,null],"outstandingDowntime":[false,false,true,true]}},{"ix":126,"action":{"kind":"Undelegate","val":0,"amt":1930},"partialState":{"h":10,"t":60,"tokens":[19349,13255,12812,6932],"delegation":[18349,12255,11812,5932],"delegatorTokens":9999999924260}},{"ix":127,"action":{"kind":"Deliver","chain":"consumer","numPackets":6},"partialState":{"h":16,"t":96,"consumerPower":[7827,6848,null,null],"outstandingDowntime":[false,false,true,true]}},{"ix":128,"action":{"kind":"Delegate","val":1,"amt":1073},"partialState":{"h":10,"t":60,"tokens":[19349,14328,12812,6932],"delegation":[18349,13328,11812,5932],"delegatorTokens":9999999923187}},{"ix":129,"action":{"kind":"Undelegate","val":1,"amt":1948},"partialState":{"h":10,"t":60,"tokens":[19349,12380,12812,6932],"delegation":[18349,11380,11812,5932],"delegatorTokens":9999999923187}},{"ix":130,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":17,"t":102,"consumerPower":[7827,7570,null,null],"outstandingDowntime":[false,false,true,true]}},{"ix":131,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":11,"t":66,"tokens":[19349,12380,12812,6932],"delegation":[18349,11380,11812,5932],"delegatorTokens":9999999923187,"jailed":[1000000000000047,null,null,null],"status":["unbonding","bonded","bonded","unbonded"]}},{"ix":132,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":133,"action":{"kind":"Delegate","val":1,"amt":4244},"partialState":{"h":11,"t":66,"tokens":[19349,16624,12812,6932],"delegation":[18349,15624,11812,5932],"delegatorTokens":9999999918943}},{"ix":134,"action":{"kind":"Undelegate","val":0,"amt":4064},"partialState":{"h":11,"t":66,"tokens":[15285,16624,12812,6932],"delegation":[14285,15624,11812,5932],"delegatorTokens":9999999918943}},{"ix":135,"action":{"kind":"Deliver","chain":"consumer","numPackets":5},"partialState":{"h":17,"t":102,"consumerPower":[7827,7570,null,null],"outstandingDowntime":[false,false,true,true]}},{"ix":136,"action":{"kind":"Undelegate","val":1,"amt":2152},"partialState":{"h":11,"t":66,"tokens":[15285,14472,12812,6932],"delegation":[14285,13472,11812,5932],"delegatorTokens":9999999918943}},{"ix":137,"action":{"kind":"Undelegate","val":2,"amt":1633},"partialState":{"h":11,"t":66,"tokens":[15285,14472,11179,6932],"delegation":[14285,13472,10179,5932],"delegatorTokens":9999999918943}},{"ix":138,"action":{"kind":"Deliver","chain":"consumer","numPackets":4},"partialState":{"h":17,"t":102,"consumerPower":[7827,7570,null,null],"outstandingDowntime":[false,false,true,true]}},{"ix":139,"action":{"kind":"Deliver","chain":"consumer","numPackets":3},"partialState":{"h":17,"t":102,"consumerPower":[7827,7570,null,null],"outstandingDowntime":[false,false,true,true]}},{"ix":140,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":18,"t":108,"consumerPower":[null,13255,12812,null],"outstandingDowntime":[false,false,true,true]}},{"ix":141,"action":{"kind":"Deliver","chain":"consumer","numPackets":6},"partialState":{"h":18,"t":108,"consumerPower":[null,13255,12812,null],"outstandingDowntime":[false,false,true,true]}},{"ix":142,"action":{"kind":"Deliver","chain":"provider","numPackets":3},"partialState":{"h":11,"t":66,"tokens":[15285,14472,11179,6932],"delegation":[14285,13472,10179,5932],"delegatorTokens":9999999918943,"jailed":[1000000000000047,null,null,null],"status":["unbonding","bonded","bonded","unbonded"]}},{"ix":143,"action":{"kind":"Undelegate","val":0,"amt":4285},"partialState":{"h":11,"t":66,"tokens":[11000,14472,11179,6932],"delegation":[10000,13472,10179,5932],"delegatorTokens":9999999918943}},{"ix":144,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":145,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":146,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":147,"action":{"kind":"Undelegate","val":0,"amt":2334},"partialState":{"h":11,"t":66,"tokens":[8666,14472,11179,6932],"delegation":[7666,13472,10179,5932],"delegatorTokens":9999999918943}},{"ix":148,"action":{"kind":"Undelegate","val":1,"amt":3179},"partialState":{"h":11,"t":66,"tokens":[8666,11293,11179,6932],"delegation":[7666,10293,10179,5932],"delegatorTokens":9999999918943}},{"ix":149,"action":{"kind":"Undelegate","val":2,"amt":2310},"partialState":{"h":11,"t":66,"tokens":[8666,11293,8869,6932],"delegation":[7666,10293,7869,5932],"delegatorTokens":9999999918943}},{"ix":150,"action":{"kind":"Undelegate","val":0,"amt":3920},"partialState":{"h":11,"t":66,"tokens":[4746,11293,8869,6932],"delegation":[3746,10293,7869,5932],"delegatorTokens":9999999918943}},{"ix":151,"action":{"kind":"Undelegate","val":2,"amt":3457},"partialState":{"h":11,"t":66,"tokens":[4746,11293,5412,6932],"delegation":[3746,10293,4412,5932],"delegatorTokens":9999999918943}},{"ix":152,"action":{"kind":"Undelegate","val":1,"amt":4927},"partialState":{"h":11,"t":66,"tokens":[4746,6366,5412,6932],"delegation":[3746,5366,4412,5932],"delegatorTokens":9999999918943}},{"ix":153,"action":{"kind":"Deliver","chain":"consumer","numPackets":2},"partialState":{"h":18,"t":108,"consumerPower":[null,13255,12812,null],"outstandingDowntime":[false,false,true,true]}},{"ix":154,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":12,"t":72,"tokens":[4746,6366,5412,6932],"delegation":[3746,5366,4412,5932],"delegatorTokens":9999999918943,"jailed":[1000000000000047,null,null,null],"status":["unbonding","bonded","unbonding","bonded"]}},{"ix":155,"action":{"kind":"Deliver","chain":"provider","numPackets":1},"partialState":{"h":12,"t":72,"tokens":[4746,6366,5412,6932],"delegation":[3746,5366,4412,5932],"delegatorTokens":9999999918943,"jailed":[1000000000000047,null,null,null],"status":["unbonding","bonded","unbonding","bonded"]}},{"ix":156,"action":{"kind":"Deliver","chain":"consumer","numPackets":4},"partialState":{"h":18,"t":108,"consumerPower":[null,13255,12812,null],"outstandingDowntime":[false,false,true,true]}},{"ix":157,"action":{"kind":"Deliver","chain":"provider","numPackets":4},"partialState":{"h":12,"t":72,"tokens":[4746,6366,5412,6932],"delegation":[3746,5366,4412,5932],"delegatorTokens":9999999918943,"jailed":[1000000000000047,null,null,null],"status":["unbonding","bonded","unbonding","bonded"]}},{"ix":158,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":159,"action":{"kind":"Delegate","val":0,"amt":3468},"partialState":{"h":12,"t":72,"tokens":[8214,6366,5412,6932],"delegation":[7214,5366,4412,5932],"delegatorTokens":9999999915475}},{"ix":160,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":161,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":13,"t":78,"tokens":[8214,6366,5412,6932],"delegation":[7214,5366,4412,5932],"delegatorTokens":9999999915475,"jailed":[1000000000000047,null,null,null],"status":["unbonding","bonded","unbonding","bonded"]}},{"ix":162,"action":{"kind":"Deliver","chain":"provider","numPackets":2},"partialState":{"h":13,"t":78,"tokens":[8214,6366,5412,6932],"delegation":[7214,5366,4412,5932],"delegatorTokens":9999999915475,"jailed":[1000000000000047,null,null,null],"status":["unbonding","bonded","unbonding","bonded"]}},{"ix":163,"action":{"kind":"Deliver","chain":"provider","numPackets":1},"partialState":{"h":13,"t":78,"tokens":[8214,6366,5412,6932],"delegation":[7214,5366,4412,5932],"delegatorTokens":9999999915475,"jailed":[1000000000000047,null,null,null],"status":["unbonding","bonded","unbonding","bonded"]}},{"ix":164,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":165,"action":{"kind":"Undelegate","val":3,"amt":4690},"partialState":{"h":13,"t":78,"tokens":[8214,6366,5412,2242],"delegation":[7214,5366,4412,1242],"delegatorTokens":9999999915475}},{"ix":166,"action":{"kind":"Undelegate","val":3,"amt":2902},"partialState":{"h":13,"t":78,"tokens":[8214,6366,5412,2242],"delegation":[7214,5366,4412,1242],"delegatorTokens":9999999915475}},{"ix":167,"action":{"kind":"Undelegate","val":1,"amt":1454},"partialState":{"h":13,"t":78,"tokens":[8214,4912,5412,2242],"delegation":[7214,3912,4412,1242],"delegatorTokens":9999999915475}},{"ix":168,"action":{"kind":"Delegate","val":0,"amt":3109},"partialState":{"h":13,"t":78,"tokens":[11323,4912,5412,2242],"delegation":[10323,3912,4412,1242],"delegatorTokens":9999999912366}},{"ix":169,"action":{"kind":"Delegate","val":3,"amt":3278},"partialState":{"h":13,"t":78,"tokens":[11323,4912,5412,5520],"delegation":[10323,3912,4412,4520],"delegatorTokens":9999999909088}},{"ix":170,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":14,"t":84,"tokens":[11323,4912,5412,5520],"delegation":[10323,3912,4412,4520],"delegatorTokens":9999999909088,"jailed":[1000000000000047,null,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":171,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":19,"t":114,"consumerPower":[null,12380,12812,null],"outstandingDowntime":[false,false,true,true]}},{"ix":172,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":173,"action":{"kind":"Delegate","val":0,"amt":4383},"partialState":{"h":14,"t":84,"tokens":[15706,4912,5412,5520],"delegation":[14706,3912,4412,4520],"delegatorTokens":9999999904705}},{"ix":174,"action":{"kind":"Deliver","chain":"provider","numPackets":5},"partialState":{"h":14,"t":84,"tokens":[15706,4912,5412,5520],"delegation":[14706,3912,4412,4520],"delegatorTokens":9999999904705,"jailed":[1000000000000047,null,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":175,"action":{"kind":"Deliver","chain":"consumer","numPackets":5},"partialState":{"h":19,"t":114,"consumerPower":[null,12380,12812,null],"outstandingDowntime":[false,false,true,true]}},{"ix":176,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":20,"t":120,"consumerPower":[null,6366,null,6932],"outstandingDowntime":[false,false,true,true]}},{"ix":177,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":178,"action":{"kind":"Undelegate","val":2,"amt":4932},"partialState":{"h":14,"t":84,"tokens":[15706,4912,5412,5520],"delegation":[14706,3912,4412,4520],"delegatorTokens":9999999904705}},{"ix":179,"action":{"kind":"Undelegate","val":3,"amt":4883},"partialState":{"h":14,"t":84,"tokens":[15706,4912,5412,5520],"delegation":[14706,3912,4412,4520],"delegatorTokens":9999999904705}},{"ix":180,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":181,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":182,"action":{"kind":"Undelegate","val":2,"amt":1290},"partialState":{"h":14,"t":84,"tokens":[15706,4912,4122,5520],"delegation":[14706,3912,3122,4520],"delegatorTokens":9999999904705}},{"ix":183,"action":{"kind":"Delegate","val":1,"amt":4365},"partialState":{"h":14,"t":84,"tokens":[15706,9277,4122,5520],"delegation":[14706,8277,3122,4520],"delegatorTokens":9999999900340}},{"ix":184,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":185,"action":{"kind":"Undelegate","val":0,"amt":1512},"partialState":{"h":14,"t":84,"tokens":[14194,9277,4122,5520],"delegation":[13194,8277,3122,4520],"delegatorTokens":9999999900340}},{"ix":186,"action":{"kind":"Deliver","chain":"consumer","numPackets":5},"partialState":{"h":20,"t":120,"consumerPower":[null,6366,null,6932],"outstandingDowntime":[false,false,true,true]}},{"ix":187,"action":{"kind":"Deliver","chain":"provider","numPackets":1},"partialState":{"h":14,"t":84,"tokens":[14194,9277,4122,5520],"delegation":[13194,8277,3122,4520],"delegatorTokens":9999999900340,"jailed":[1000000000000047,null,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":188,"action":{"kind":"Deliver","chain":"provider","numPackets":6},"partialState":{"h":14,"t":84,"tokens":[14194,9277,4122,5520],"delegation":[13194,8277,3122,4520],"delegatorTokens":9999999900340,"jailed":[1000000000000047,null,null,null],"status":["unbonding","unbonding","bonded","bonded"]}},{"ix":189,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":21,"t":126,"consumerPower":[null,6366,null,6932],"outstandingDowntime":[false,false,true,true]}},{"ix":190,"action":{"kind":"Delegate","val":0,"amt":2355},"partialState":{"h":14,"t":84,"tokens":[16549,9277,4122,5520],"delegation":[15549,8277,3122,4520],"delegatorTokens":9999999897985}},{"ix":191,"action":{"kind":"Delegate","val":0,"amt":3078},"partialState":{"h":14,"t":84,"tokens":[19627,9277,4122,5520],"delegation":[18627,8277,3122,4520],"delegatorTokens":9999999894907}},{"ix":192,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":15,"t":90,"tokens":[19627,9277,4122,5520],"delegation":[18627,8277,3122,4520],"delegatorTokens":9999999906915,"jailed":[1000000000000047,null,null,null],"status":["unbonding","bonded","unbonding","bonded"]}},{"ix":193,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":16,"t":96,"tokens":[19627,9277,4122,5520],"delegation":[18627,8277,3122,4520],"delegatorTokens":9999999906915,"jailed":[1000000000000047,null,null,null],"status":["unbonding","bonded","unbonding","bonded"]}},{"ix":194,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":17,"t":102,"tokens":[19627,9277,4122,5520],"delegation":[18627,8277,3122,4520],"delegatorTokens":9999999906915,"jailed":[1000000000000047,null,null,null],"status":["unbonding","bonded","unbonding","bonded"]}},{"ix":195,"action":{"kind":"Undelegate","val":2,"amt":2475},"partialState":{"h":17,"t":102,"tokens":[19627,9277,1647,5520],"delegation":[18627,8277,647,4520],"delegatorTokens":9999999906915}},{"ix":196,"action":{"kind":"Undelegate","val":2,"amt":4312},"partialState":{"h":17,"t":102,"tokens":[19627,9277,1647,5520],"delegation":[18627,8277,647,4520],"delegatorTokens":9999999906915}},{"ix":197,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":198,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":199,"action":{"kind":"Delegate","val":3,"amt":4199},"partialState":{"h":17,"t":102,"tokens":[19627,9277,1647,9719],"delegation":[18627,8277,647,8719],"delegatorTokens":9999999902716}}],"events":["insufficient_shares","insufficient_shares","send_downtime_slash_request","send_downtime_slash_request","insufficient_shares","insufficient_shares","send_double_sign_slash_request","insufficient_shares","insufficient_shares","insufficient_shares","downtime_slash_request_outstanding","send_vsc_without_downtime_ack","insufficient_shares","receive_slash_request_unbonded","receive_slash_request_unbonded","insufficient_shares","consumer_update_val","send_downtime_slash_request","send_vsc_without_downtime_ack","insufficient_shares","receive_double_sign_slash_request","insufficient_shares","receive_downtime_slash_request","jail","send_vsc_with_downtime_ack","insufficient_shares","consumer_send_maturation","insufficient_shares","more_than_one_third_val_power_change","send_vsc_without_downtime_ack","consumer_update_val","consumer_update_val","receive_downtime_slash_ack","consumer_update_val","send_vsc_without_downtime_ack","consumer_del_val","consumer_update_val","consumer_add_val","more_than_one_third_val_power_change","set_undel_hold_false","set_undel_hold_false","set_undel_hold_false","set_undel_hold_false","send_vsc_without_downtime_ack","insufficient_shares","more_than_one_third_val_power_change","rebond_unval","send_vsc_without_downtime_ack","consumer_update_val","consumer_update_val","consumer_del_val","consumer_add_val","insufficient_shares","insufficient_shares","more_than_one_third_val_power_change","rebond_unval","complete_undel_in_endblock","send_vsc_without_downtime_ack","insufficient_shares"]},{"meta":{"commit":"7ffd0c04e4205cbc9caf212abfe6c59ee43153bf"},"constants":{"P":"provider","C":"consumer","UNBONDING_SECONDS_P":70,"UNBONDING_SECONDS_C":50,"TRUSTING_SECONDS":49,"NUM_VALIDATORS":4,"MAX_VALIDATORS":2,"SLASH_DOUBLESIGN":0,"SLASH_DOWNTIME":0,"JAIL_SECONDS":999999999999999,"BLOCK_SECONDS":6,"INITIAL_DELEGATOR_TOKENS":10000000000000,"DELEGATE_AMT_MIN":1000,"DELEGATE_AMT_MAX":5000,"UNDELEGATE_AMT_MIN":1000,"UNDELEGATE_AMT_MAX":5000,"ISDOWNTIME_PROBABILITY":0.5,"MAX_NUM_PACKETS_FOR_DELIVER":6},"actions":[{"ix":0,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":2,"t":12,"tokens":[5000,4000,3000,2000],"delegation":[4000,3000,2000,1000],"delegatorTokens":10000000000000,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":1,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":2,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":3,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":4,"action":{"kind":"Undelegate","val":2,"amt":3044},"partialState":{"h":2,"t":12,"tokens":[5000,4000,3000,2000],"delegation":[4000,3000,2000,1000],"delegatorTokens":10000000000000}},{"ix":5,"action":{"kind":"Deliver","chain":"provider","numPackets":2},"partialState":{"h":2,"t":12,"tokens":[5000,4000,3000,2000],"delegation":[4000,3000,2000,1000],"delegatorTokens":10000000000000,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":6,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":7,"action":{"kind":"ConsumerSlash","val":3,"infractionHeight":0,"isDowntime":true},"partialState":{"h":1,"t":6,"outstandingDowntime":[false,false,false,true]}},{"ix":8,"action":{"kind":"Delegate","val":0,"amt":4236},"partialState":{"h":2,"t":12,"tokens":[9236,4000,3000,2000],"delegation":[8236,3000,2000,1000],"delegatorTokens":9999999995764}},{"ix":9,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":3,"t":18,"tokens":[9236,4000,3000,2000],"delegation":[8236,3000,2000,1000],"delegatorTokens":9999999995764,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":10,"action":{"kind":"Deliver","chain":"consumer","numPackets":4},"partialState":{"h":1,"t":6,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,false,false,true]}},{"ix":11,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":12,"action":{"kind":"ConsumerSlash","val":3,"infractionHeight":0,"isDowntime":false},"partialState":{"h":1,"t":6,"outstandingDowntime":[false,false,false,true]}},{"ix":13,"action":{"kind":"Delegate","val":1,"amt":3594},"partialState":{"h":3,"t":18,"tokens":[9236,7594,3000,2000],"delegation":[8236,6594,2000,1000],"delegatorTokens":9999999992170}},{"ix":14,"action":{"kind":"Delegate","val":0,"amt":2396},"partialState":{"h":3,"t":18,"tokens":[11632,7594,3000,2000],"delegation":[10632,6594,2000,1000],"delegatorTokens":9999999989774}},{"ix":15,"action":{"kind":"Undelegate","val":0,"amt":4228},"partialState":{"h":3,"t":18,"tokens":[7404,7594,3000,2000],"delegation":[6404,6594,2000,1000],"delegatorTokens":9999999989774}},{"ix":16,"action":{"kind":"Delegate","val":1,"amt":2463},"partialState":{"h":3,"t":18,"tokens":[7404,10057,3000,2000],"delegation":[6404,9057,2000,1000],"delegatorTokens":9999999987311}},{"ix":17,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":2,"t":12,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,false,false,true]}},{"ix":18,"action":{"kind":"Delegate","val":1,"amt":2148},"partialState":{"h":3,"t":18,"tokens":[7404,12205,3000,2000],"delegation":[6404,11205,2000,1000],"delegatorTokens":9999999985163}},{"ix":19,"action":{"kind":"ConsumerSlash","val":3,"infractionHeight":0,"isDowntime":true},"partialState":{"h":2,"t":12,"outstandingDowntime":[false,false,false,true]}},{"ix":20,"action":{"kind":"ConsumerSlash","val":2,"infractionHeight":1,"isDowntime":true},"partialState":{"h":2,"t":12,"outstandingDowntime":[false,false,true,true]}},{"ix":21,"action":{"kind":"Undelegate","val":2,"amt":3791},"partialState":{"h":3,"t":18,"tokens":[7404,12205,3000,2000],"delegation":[6404,11205,2000,1000],"delegatorTokens":9999999985163}},{"ix":22,"action":{"kind":"ConsumerSlash","val":0,"infractionHeight":1,"isDowntime":true},"partialState":{"h":2,"t":12,"outstandingDowntime":[true,false,true,true]}},{"ix":23,"action":{"kind":"Deliver","chain":"consumer","numPackets":2},"partialState":{"h":2,"t":12,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[true,false,true,true]}},{"ix":24,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":25,"action":{"kind":"Deliver","chain":"consumer","numPackets":6},"partialState":{"h":2,"t":12,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[true,false,true,true]}},{"ix":26,"action":{"kind":"Delegate","val":0,"amt":1722},"partialState":{"h":3,"t":18,"tokens":[9126,12205,3000,2000],"delegation":[8126,11205,2000,1000],"delegatorTokens":9999999983441}},{"ix":27,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":28,"action":{"kind":"Delegate","val":2,"amt":3004},"partialState":{"h":3,"t":18,"tokens":[9126,12205,6004,2000],"delegation":[8126,11205,5004,1000],"delegatorTokens":9999999980437}},{"ix":29,"action":{"kind":"Undelegate","val":2,"amt":2399},"partialState":{"h":3,"t":18,"tokens":[9126,12205,3605,2000],"delegation":[8126,11205,2605,1000],"delegatorTokens":9999999980437}},{"ix":30,"action":{"kind":"Delegate","val":1,"amt":3330},"partialState":{"h":3,"t":18,"tokens":[9126,15535,3605,2000],"delegation":[8126,14535,2605,1000],"delegatorTokens":9999999977107}},{"ix":31,"action":{"kind":"Undelegate","val":2,"amt":4503},"partialState":{"h":3,"t":18,"tokens":[9126,15535,3605,2000],"delegation":[8126,14535,2605,1000],"delegatorTokens":9999999977107}},{"ix":32,"action":{"kind":"Undelegate","val":1,"amt":4213},"partialState":{"h":3,"t":18,"tokens":[9126,11322,3605,2000],"delegation":[8126,10322,2605,1000],"delegatorTokens":9999999977107}},{"ix":33,"action":{"kind":"Deliver","chain":"provider","numPackets":1},"partialState":{"h":3,"t":18,"tokens":[9126,11322,3605,2000],"delegation":[8126,10322,2605,1000],"delegatorTokens":9999999977107,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":34,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":3,"t":18,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[true,false,true,true]}},{"ix":35,"action":{"kind":"Deliver","chain":"consumer","numPackets":6},"partialState":{"h":3,"t":18,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[true,false,true,true]}},{"ix":36,"action":{"kind":"Deliver","chain":"provider","numPackets":1},"partialState":{"h":3,"t":18,"tokens":[9126,11322,3605,2000],"delegation":[8126,10322,2605,1000],"delegatorTokens":9999999977107,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":37,"action":{"kind":"Deliver","chain":"provider","numPackets":5},"partialState":{"h":3,"t":18,"tokens":[9126,11322,3605,2000],"delegation":[8126,10322,2605,1000],"delegatorTokens":9999999977107,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":38,"action":{"kind":"Deliver","chain":"provider","numPackets":4},"partialState":{"h":3,"t":18,"tokens":[9126,11322,3605,2000],"delegation":[8126,10322,2605,1000],"delegatorTokens":9999999977107,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":39,"action":{"kind":"Deliver","chain":"provider","numPackets":2},"partialState":{"h":3,"t":18,"tokens":[9126,11322,3605,2000],"delegation":[8126,10322,2605,1000],"delegatorTokens":9999999977107,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":40,"action":{"kind":"Delegate","val":1,"amt":3333},"partialState":{"h":3,"t":18,"tokens":[9126,14655,3605,2000],"delegation":[8126,13655,2605,1000],"delegatorTokens":9999999973774}},{"ix":41,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":4,"t":24,"tokens":[9126,14655,3605,2000],"delegation":[8126,13655,2605,1000],"delegatorTokens":9999999973774,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":42,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":43,"action":{"kind":"Undelegate","val":0,"amt":4044},"partialState":{"h":4,"t":24,"tokens":[5082,14655,3605,2000],"delegation":[4082,13655,2605,1000],"delegatorTokens":9999999973774}},{"ix":44,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":4,"t":24,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[true,false,true,true]}},{"ix":45,"action":{"kind":"Deliver","chain":"consumer","numPackets":2},"partialState":{"h":4,"t":24,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[true,false,true,true]}},{"ix":46,"action":{"kind":"Deliver","chain":"provider","numPackets":3},"partialState":{"h":4,"t":24,"tokens":[5082,14655,3605,2000],"delegation":[4082,13655,2605,1000],"delegatorTokens":9999999973774,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":47,"action":{"kind":"Deliver","chain":"consumer","numPackets":6},"partialState":{"h":4,"t":24,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[true,false,true,true]}},{"ix":48,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":49,"action":{"kind":"Deliver","chain":"provider","numPackets":1},"partialState":{"h":4,"t":24,"tokens":[5082,14655,3605,2000],"delegation":[4082,13655,2605,1000],"delegatorTokens":9999999973774,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":50,"action":{"kind":"Deliver","chain":"provider","numPackets":5},"partialState":{"h":4,"t":24,"tokens":[5082,14655,3605,2000],"delegation":[4082,13655,2605,1000],"delegatorTokens":9999999973774,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":51,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":5,"t":30,"tokens":[5082,14655,3605,2000],"delegation":[4082,13655,2605,1000],"delegatorTokens":9999999973774,"jailed":[1000000000000023,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":52,"action":{"kind":"Undelegate","val":1,"amt":2188},"partialState":{"h":5,"t":30,"tokens":[5082,12467,3605,2000],"delegation":[4082,11467,2605,1000],"delegatorTokens":9999999973774}},{"ix":53,"action":{"kind":"Delegate","val":0,"amt":1792},"partialState":{"h":5,"t":30,"tokens":[6874,12467,3605,2000],"delegation":[5874,11467,2605,1000],"delegatorTokens":9999999971982}},{"ix":54,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":55,"action":{"kind":"Deliver","chain":"provider","numPackets":6},"partialState":{"h":5,"t":30,"tokens":[6874,12467,3605,2000],"delegation":[5874,11467,2605,1000],"delegatorTokens":9999999971982,"jailed":[1000000000000023,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":56,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":57,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":5,"t":30,"consumerPower":[9236,4000,null,null],"outstandingDowntime":[true,false,true,true]}},{"ix":58,"action":{"kind":"Delegate","val":2,"amt":4051},"partialState":{"h":5,"t":30,"tokens":[6874,12467,7656,2000],"delegation":[5874,11467,6656,1000],"delegatorTokens":9999999967931}},{"ix":59,"action":{"kind":"Delegate","val":0,"amt":3401},"partialState":{"h":5,"t":30,"tokens":[10275,12467,7656,2000],"delegation":[9275,11467,6656,1000],"delegatorTokens":9999999964530}},{"ix":60,"action":{"kind":"Delegate","val":1,"amt":1789},"partialState":{"h":5,"t":30,"tokens":[10275,14256,7656,2000],"delegation":[9275,13256,6656,1000],"delegatorTokens":9999999962741}},{"ix":61,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":62,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":63,"action":{"kind":"Deliver","chain":"consumer","numPackets":4},"partialState":{"h":5,"t":30,"consumerPower":[9236,4000,null,null],"outstandingDowntime":[true,false,true,true]}},{"ix":64,"action":{"kind":"Deliver","chain":"consumer","numPackets":1},"partialState":{"h":5,"t":30,"consumerPower":[9236,4000,null,null],"outstandingDowntime":[true,false,true,true]}},{"ix":65,"action":{"kind":"Undelegate","val":1,"amt":4076},"partialState":{"h":5,"t":30,"tokens":[10275,10180,7656,2000],"delegation":[9275,9180,6656,1000],"delegatorTokens":9999999962741}},{"ix":66,"action":{"kind":"Undelegate","val":1,"amt":1853},"partialState":{"h":5,"t":30,"tokens":[10275,8327,7656,2000],"delegation":[9275,7327,6656,1000],"delegatorTokens":9999999962741}},{"ix":67,"action":{"kind":"Deliver","chain":"consumer","numPackets":5},"partialState":{"h":5,"t":30,"consumerPower":[9236,4000,null,null],"outstandingDowntime":[true,false,true,true]}},{"ix":68,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":69,"action":{"kind":"Deliver","chain":"consumer","numPackets":6},"partialState":{"h":5,"t":30,"consumerPower":[9236,4000,null,null],"outstandingDowntime":[true,false,true,true]}},{"ix":70,"action":{"kind":"Undelegate","val":2,"amt":1445},"partialState":{"h":5,"t":30,"tokens":[10275,8327,6211,2000],"delegation":[9275,7327,5211,1000],"delegatorTokens":9999999962741}},{"ix":71,"action":{"kind":"Deliver","chain":"provider","numPackets":6},"partialState":{"h":5,"t":30,"tokens":[10275,8327,6211,2000],"delegation":[9275,7327,5211,1000],"delegatorTokens":9999999962741,"jailed":[1000000000000023,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":72,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":6,"t":36,"consumerPower":[9126,14655,null,null],"outstandingDowntime":[true,false,true,true]}},{"ix":73,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":6,"t":36,"tokens":[10275,8327,6211,2000],"delegation":[9275,7327,5211,1000],"delegatorTokens":9999999962741,"jailed":[1000000000000023,null,null,null],"status":["unbonding","bonded","bonded","unbonded"]}},{"ix":74,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":7,"t":42,"consumerPower":[9126,14655,null,null],"outstandingDowntime":[true,false,true,true]}},{"ix":75,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":7,"t":42,"tokens":[10275,8327,6211,2000],"delegation":[9275,7327,5211,1000],"delegatorTokens":9999999962741,"jailed":[1000000000000023,null,null,null],"status":["unbonding","bonded","bonded","unbonded"]}},{"ix":76,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":8,"t":48,"consumerPower":[9126,14655,null,null],"outstandingDowntime":[true,false,true,true]}},{"ix":77,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":78,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":8,"t":48,"tokens":[10275,8327,6211,2000],"delegation":[9275,7327,5211,1000],"delegatorTokens":9999999962741,"jailed":[1000000000000023,null,null,null],"status":["unbonding","bonded","bonded","unbonded"]}},{"ix":79,"action":{"kind":"Delegate","val":3,"amt":3421},"partialState":{"h":8,"t":48,"tokens":[10275,8327,6211,5421],"delegation":[9275,7327,5211,4421],"delegatorTokens":9999999959320}},{"ix":80,"action":{"kind":"Delegate","val":2,"amt":1059},"partialState":{"h":8,"t":48,"tokens":[10275,8327,7270,5421],"delegation":[9275,7327,6270,4421],"delegatorTokens":9999999958261}},{"ix":81,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":9,"t":54,"consumerPower":[9126,14655,null,null],"outstandingDowntime":[true,false,true,true]}},{"ix":82,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":83,"action":{"kind":"Deliver","chain":"provider","numPackets":1},"partialState":{"h":8,"t":48,"tokens":[10275,8327,7270,5421],"delegation":[9275,7327,6270,4421],"delegatorTokens":9999999958261,"jailed":[1000000000000023,null,null,null],"status":["unbonding","bonded","bonded","unbonded"]}},{"ix":84,"action":{"kind":"Undelegate","val":0,"amt":1373},"partialState":{"h":8,"t":48,"tokens":[8902,8327,7270,5421],"delegation":[7902,7327,6270,4421],"delegatorTokens":9999999958261}},{"ix":85,"action":{"kind":"Undelegate","val":0,"amt":4264},"partialState":{"h":8,"t":48,"tokens":[4638,8327,7270,5421],"delegation":[3638,7327,6270,4421],"delegatorTokens":9999999958261}},{"ix":86,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":10,"t":60,"consumerPower":[9126,14655,null,null],"outstandingDowntime":[true,false,true,true]}},{"ix":87,"action":{"kind":"Undelegate","val":2,"amt":1994},"partialState":{"h":8,"t":48,"tokens":[4638,8327,5276,5421],"delegation":[3638,7327,4276,4421],"delegatorTokens":9999999958261}},{"ix":88,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":89,"action":{"kind":"Delegate","val":0,"amt":4062},"partialState":{"h":8,"t":48,"tokens":[8700,8327,5276,5421],"delegation":[7700,7327,4276,4421],"delegatorTokens":9999999954199}},{"ix":90,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":11,"t":66,"consumerPower":[9126,14655,null,null],"outstandingDowntime":[true,false,true,true]}},{"ix":91,"action":{"kind":"Undelegate","val":2,"amt":3031},"partialState":{"h":8,"t":48,"tokens":[8700,8327,2245,5421],"delegation":[7700,7327,1245,4421],"delegatorTokens":9999999954199}},{"ix":92,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":12,"t":72,"consumerPower":[9126,14655,null,null],"outstandingDowntime":[true,false,true,true]}},{"ix":93,"action":{"kind":"Undelegate","val":1,"amt":1942},"partialState":{"h":8,"t":48,"tokens":[8700,6385,2245,5421],"delegation":[7700,5385,1245,4421],"delegatorTokens":9999999954199}},{"ix":94,"action":{"kind":"Deliver","chain":"consumer","numPackets":6},"partialState":{"h":12,"t":72,"consumerPower":[9126,14655,null,null],"outstandingDowntime":[false,false,true,true]}},{"ix":95,"action":{"kind":"Undelegate","val":3,"amt":1279},"partialState":{"h":8,"t":48,"tokens":[8700,6385,2245,4142],"delegation":[7700,5385,1245,3142],"delegatorTokens":9999999954199}},{"ix":96,"action":{"kind":"Deliver","chain":"provider","numPackets":2},"partialState":{"h":8,"t":48,"tokens":[8700,6385,2245,4142],"delegation":[7700,5385,1245,3142],"delegatorTokens":9999999954199,"jailed":[1000000000000023,null,null,null],"status":["unbonding","bonded","bonded","unbonded"]}},{"ix":97,"action":{"kind":"Deliver","chain":"provider","numPackets":2},"partialState":{"h":8,"t":48,"tokens":[8700,6385,2245,4142],"delegation":[7700,5385,1245,3142],"delegatorTokens":9999999954199,"jailed":[1000000000000023,null,null,null],"status":["unbonding","bonded","bonded","unbonded"]}},{"ix":98,"action":{"kind":"Delegate","val":1,"amt":2765},"partialState":{"h":8,"t":48,"tokens":[8700,9150,2245,4142],"delegation":[7700,8150,1245,3142],"delegatorTokens":9999999951434}},{"ix":99,"action":{"kind":"Delegate","val":0,"amt":3049},"partialState":{"h":8,"t":48,"tokens":[11749,9150,2245,4142],"delegation":[10749,8150,1245,3142],"delegatorTokens":9999999948385}},{"ix":100,"action":{"kind":"Deliver","chain":"provider","numPackets":3},"partialState":{"h":8,"t":48,"tokens":[11749,9150,2245,4142],"delegation":[10749,8150,1245,3142],"delegatorTokens":9999999948385,"jailed":[1000000000000023,null,null,null],"status":["unbonding","bonded","bonded","unbonded"]}},{"ix":101,"action":{"kind":"Undelegate","val":3,"amt":2428},"partialState":{"h":8,"t":48,"tokens":[11749,9150,2245,1714],"delegation":[10749,8150,1245,714],"delegatorTokens":9999999948385}},{"ix":102,"action":{"kind":"Deliver","chain":"provider","numPackets":3},"partialState":{"h":8,"t":48,"tokens":[11749,9150,2245,1714],"delegation":[10749,8150,1245,714],"delegatorTokens":9999999948385,"jailed":[1000000000000023,null,null,null],"status":["unbonding","bonded","bonded","unbonded"]}},{"ix":103,"action":{"kind":"Delegate","val":1,"amt":2340},"partialState":{"h":8,"t":48,"tokens":[11749,11490,2245,1714],"delegation":[10749,10490,1245,714],"delegatorTokens":9999999946045}},{"ix":104,"action":{"kind":"Undelegate","val":2,"amt":3878},"partialState":{"h":8,"t":48,"tokens":[11749,11490,2245,1714],"delegation":[10749,10490,1245,714],"delegatorTokens":9999999946045}},{"ix":105,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":106,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":9,"t":54,"tokens":[11749,11490,2245,1714],"delegation":[10749,10490,1245,714],"delegatorTokens":9999999946045,"jailed":[1000000000000023,null,null,null],"status":["unbonding","bonded","bonded","unbonded"]}},{"ix":107,"action":{"kind":"Deliver","chain":"provider","numPackets":5},"partialState":{"h":9,"t":54,"tokens":[11749,11490,2245,1714],"delegation":[10749,10490,1245,714],"delegatorTokens":9999999946045,"jailed":[1000000000000023,null,null,null],"status":["unbonding","bonded","bonded","unbonded"]}},{"ix":108,"action":{"kind":"Undelegate","val":1,"amt":1875},"partialState":{"h":9,"t":54,"tokens":[11749,9615,2245,1714],"delegation":[10749,8615,1245,714],"delegatorTokens":9999999946045}},{"ix":109,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":10,"t":60,"tokens":[11749,9615,2245,1714],"delegation":[10749,8615,1245,714],"delegatorTokens":9999999946045,"jailed":[1000000000000023,null,null,null],"status":["unbonding","bonded","bonded","unbonded"]}},{"ix":110,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":13,"t":78,"consumerPower":[null,8327,6211,null],"outstandingDowntime":[false,false,true,true]}},{"ix":111,"action":{"kind":"Undelegate","val":3,"amt":4782},"partialState":{"h":10,"t":60,"tokens":[11749,9615,2245,1714],"delegation":[10749,8615,1245,714],"delegatorTokens":9999999946045}},{"ix":112,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":113,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":114,"action":{"kind":"Delegate","val":0,"amt":4318},"partialState":{"h":10,"t":60,"tokens":[16067,9615,2245,1714],"delegation":[15067,8615,1245,714],"delegatorTokens":9999999941727}},{"ix":115,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":11,"t":66,"tokens":[16067,9615,2245,1714],"delegation":[15067,8615,1245,714],"delegatorTokens":9999999941727,"jailed":[1000000000000023,null,null,null],"status":["unbonding","bonded","bonded","unbonded"]}},{"ix":116,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":14,"t":84,"consumerPower":[null,8327,6211,null],"outstandingDowntime":[false,false,true,true]}},{"ix":117,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":118,"action":{"kind":"Delegate","val":2,"amt":4596},"partialState":{"h":11,"t":66,"tokens":[16067,9615,6841,1714],"delegation":[15067,8615,5841,714],"delegatorTokens":9999999937131}},{"ix":119,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":15,"t":90,"consumerPower":[null,8327,6211,null],"outstandingDowntime":[false,false,true,true]}},{"ix":120,"action":{"kind":"Deliver","chain":"consumer","numPackets":5},"partialState":{"h":15,"t":90,"consumerPower":[null,8327,6211,null],"outstandingDowntime":[false,false,true,true]}},{"ix":121,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":12,"t":72,"tokens":[16067,9615,6841,1714],"delegation":[15067,8615,5841,714],"delegatorTokens":9999999937131,"jailed":[1000000000000023,null,null,null],"status":["unbonding","bonded","bonded","unbonded"]}},{"ix":122,"action":{"kind":"Deliver","chain":"consumer","numPackets":4},"partialState":{"h":15,"t":90,"consumerPower":[null,8327,6211,null],"outstandingDowntime":[false,false,true,true]}},{"ix":123,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":16,"t":96,"consumerPower":[null,9615,2245,null],"outstandingDowntime":[false,false,true,true]}},{"ix":124,"action":{"kind":"Deliver","chain":"consumer","numPackets":3},"partialState":{"h":16,"t":96,"consumerPower":[null,9615,2245,null],"outstandingDowntime":[false,false,true,true]}},{"ix":125,"action":{"kind":"Undelegate","val":3,"amt":2551},"partialState":{"h":12,"t":72,"tokens":[16067,9615,6841,1714],"delegation":[15067,8615,5841,714],"delegatorTokens":9999999937131}},{"ix":126,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":17,"t":102,"consumerPower":[null,9615,2245,null],"outstandingDowntime":[false,false,true,true]}},{"ix":127,"action":{"kind":"Delegate","val":0,"amt":3086},"partialState":{"h":12,"t":72,"tokens":[19153,9615,6841,1714],"delegation":[18153,8615,5841,714],"delegatorTokens":9999999934045}},{"ix":128,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":13,"t":78,"tokens":[19153,9615,6841,1714],"delegation":[18153,8615,5841,714],"delegatorTokens":9999999934045,"jailed":[1000000000000023,null,null,null],"status":["unbonding","bonded","bonded","unbonded"]}},{"ix":129,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":18,"t":108,"consumerPower":[null,9615,2245,null],"outstandingDowntime":[false,false,true,true]}},{"ix":130,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":19,"t":114,"consumerPower":[null,9615,2245,null],"outstandingDowntime":[false,false,true,true]}},{"ix":131,"action":{"kind":"Deliver","chain":"provider","numPackets":5},"partialState":{"h":13,"t":78,"tokens":[19153,9615,6841,1714],"delegation":[18153,8615,5841,714],"delegatorTokens":9999999934045,"jailed":[1000000000000023,null,null,null],"status":["unbonding","bonded","bonded","unbonded"]}},{"ix":132,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":133,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":14,"t":84,"tokens":[19153,9615,6841,1714],"delegation":[18153,8615,5841,714],"delegatorTokens":9999999934045,"jailed":[1000000000000023,null,null,null],"status":["unbonding","bonded","bonded","unbonded"]}},{"ix":134,"action":{"kind":"Undelegate","val":1,"amt":2487},"partialState":{"h":14,"t":84,"tokens":[19153,7128,6841,1714],"delegation":[18153,6128,5841,714],"delegatorTokens":9999999934045}},{"ix":135,"action":{"kind":"Delegate","val":2,"amt":1674},"partialState":{"h":14,"t":84,"tokens":[19153,7128,8515,1714],"delegation":[18153,6128,7515,714],"delegatorTokens":9999999932371}},{"ix":136,"action":{"kind":"Undelegate","val":3,"amt":4667},"partialState":{"h":14,"t":84,"tokens":[19153,7128,8515,1714],"delegation":[18153,6128,7515,714],"delegatorTokens":9999999932371}},{"ix":137,"action":{"kind":"Undelegate","val":2,"amt":2553},"partialState":{"h":14,"t":84,"tokens":[19153,7128,5962,1714],"delegation":[18153,6128,4962,714],"delegatorTokens":9999999932371}},{"ix":138,"action":{"kind":"Undelegate","val":3,"amt":4713},"partialState":{"h":14,"t":84,"tokens":[19153,7128,5962,1714],"delegation":[18153,6128,4962,714],"delegatorTokens":9999999932371}},{"ix":139,"action":{"kind":"Undelegate","val":2,"amt":3007},"partialState":{"h":14,"t":84,"tokens":[19153,7128,2955,1714],"delegation":[18153,6128,1955,714],"delegatorTokens":9999999932371}},{"ix":140,"action":{"kind":"Deliver","chain":"provider","numPackets":4},"partialState":{"h":14,"t":84,"tokens":[19153,7128,2955,1714],"delegation":[18153,6128,1955,714],"delegatorTokens":9999999932371,"jailed":[1000000000000023,null,null,null],"status":["unbonding","bonded","bonded","unbonded"]}},{"ix":141,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":142,"action":{"kind":"Undelegate","val":2,"amt":2104},"partialState":{"h":14,"t":84,"tokens":[19153,7128,2955,1714],"delegation":[18153,6128,1955,714],"delegatorTokens":9999999932371}},{"ix":143,"action":{"kind":"Deliver","chain":"provider","numPackets":5},"partialState":{"h":14,"t":84,"tokens":[19153,7128,2955,1714],"delegation":[18153,6128,1955,714],"delegatorTokens":9999999932371,"jailed":[1000000000000023,null,null,null],"status":["unbonding","bonded","bonded","unbonded"]}},{"ix":144,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":15,"t":90,"tokens":[19153,7128,2955,1714],"delegation":[18153,6128,1955,714],"delegatorTokens":9999999932371,"jailed":[1000000000000023,null,null,null],"status":["unbonding","bonded","bonded","unbonded"]}},{"ix":145,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":146,"action":{"kind":"Deliver","chain":"consumer","numPackets":1},"partialState":{"h":19,"t":114,"consumerPower":[null,9615,2245,null],"outstandingDowntime":[false,false,true,true]}},{"ix":147,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":148,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":149,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":20,"t":120,"consumerPower":[null,9615,6841,null],"outstandingDowntime":[false,false,true,true]}},{"ix":150,"action":{"kind":"Delegate","val":3,"amt":4298},"partialState":{"h":15,"t":90,"tokens":[19153,7128,2955,6012],"delegation":[18153,6128,1955,5012],"delegatorTokens":9999999928073}},{"ix":151,"action":{"kind":"Undelegate","val":1,"amt":4775},"partialState":{"h":15,"t":90,"tokens":[19153,2353,2955,6012],"delegation":[18153,1353,1955,5012],"delegatorTokens":9999999928073}},{"ix":152,"action":{"kind":"Delegate","val":1,"amt":3198},"partialState":{"h":15,"t":90,"tokens":[19153,5551,2955,6012],"delegation":[18153,4551,1955,5012],"delegatorTokens":9999999924875}},{"ix":153,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":21,"t":126,"consumerPower":[null,9615,6841,null],"outstandingDowntime":[false,false,true,true]}},{"ix":154,"action":{"kind":"Undelegate","val":1,"amt":1655},"partialState":{"h":15,"t":90,"tokens":[19153,3896,2955,6012],"delegation":[18153,2896,1955,5012],"delegatorTokens":9999999924875}},{"ix":155,"action":{"kind":"Delegate","val":2,"amt":1618},"partialState":{"h":15,"t":90,"tokens":[19153,3896,4573,6012],"delegation":[18153,2896,3573,5012],"delegatorTokens":9999999923257}},{"ix":156,"action":{"kind":"Delegate","val":0,"amt":1109},"partialState":{"h":15,"t":90,"tokens":[20262,3896,4573,6012],"delegation":[19262,2896,3573,5012],"delegatorTokens":9999999922148}},{"ix":157,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":158,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":159,"action":{"kind":"Undelegate","val":2,"amt":3462},"partialState":{"h":15,"t":90,"tokens":[20262,3896,1111,6012],"delegation":[19262,2896,111,5012],"delegatorTokens":9999999922148}},{"ix":160,"action":{"kind":"Deliver","chain":"consumer","numPackets":4},"partialState":{"h":21,"t":126,"consumerPower":[null,9615,6841,null],"outstandingDowntime":[false,false,true,true]}},{"ix":161,"action":{"kind":"Undelegate","val":0,"amt":2753},"partialState":{"h":15,"t":90,"tokens":[17509,3896,1111,6012],"delegation":[16509,2896,111,5012],"delegatorTokens":9999999922148}},{"ix":162,"action":{"kind":"Deliver","chain":"consumer","numPackets":3},"partialState":{"h":21,"t":126,"consumerPower":[null,9615,6841,null],"outstandingDowntime":[false,false,true,true]}},{"ix":163,"action":{"kind":"Deliver","chain":"consumer","numPackets":1},"partialState":{"h":21,"t":126,"consumerPower":[null,9615,6841,null],"outstandingDowntime":[false,false,true,true]}},{"ix":164,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":16,"t":96,"tokens":[17509,3896,1111,6012],"delegation":[16509,2896,111,5012],"delegatorTokens":9999999932988,"jailed":[1000000000000023,null,null,null],"status":["unbonding","bonded","unbonding","bonded"]}},{"ix":165,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":17,"t":102,"tokens":[17509,3896,1111,6012],"delegation":[16509,2896,111,5012],"delegatorTokens":9999999932988,"jailed":[1000000000000023,null,null,null],"status":["unbonding","bonded","unbonding","bonded"]}},{"ix":166,"action":{"kind":"Undelegate","val":1,"amt":4064},"partialState":{"h":17,"t":102,"tokens":[17509,3896,1111,6012],"delegation":[16509,2896,111,5012],"delegatorTokens":9999999932988}},{"ix":167,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":168,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":169,"action":{"kind":"Delegate","val":2,"amt":2279},"partialState":{"h":17,"t":102,"tokens":[17509,3896,3390,6012],"delegation":[16509,2896,2390,5012],"delegatorTokens":9999999930709}},{"ix":170,"action":{"kind":"Deliver","chain":"provider","numPackets":1},"partialState":{"h":17,"t":102,"tokens":[17509,3896,3390,6012],"delegation":[16509,2896,2390,5012],"delegatorTokens":9999999930709,"jailed":[1000000000000023,null,null,null],"status":["unbonding","bonded","unbonding","bonded"]}},{"ix":171,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":18,"t":108,"tokens":[17509,3896,3390,6012],"delegation":[16509,2896,2390,5012],"delegatorTokens":9999999930709,"jailed":[1000000000000023,null,null,null],"status":["unbonding","bonded","unbonding","bonded"]}},{"ix":172,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":173,"action":{"kind":"Undelegate","val":2,"amt":1659},"partialState":{"h":18,"t":108,"tokens":[17509,3896,1731,6012],"delegation":[16509,2896,731,5012],"delegatorTokens":9999999930709}},{"ix":174,"action":{"kind":"Undelegate","val":2,"amt":3781},"partialState":{"h":18,"t":108,"tokens":[17509,3896,1731,6012],"delegation":[16509,2896,731,5012],"delegatorTokens":9999999930709}},{"ix":175,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":22,"t":132,"consumerPower":[null,9615,6841,null],"outstandingDowntime":[false,false,true,true]}},{"ix":176,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":23,"t":138,"consumerPower":[null,9615,6841,null],"outstandingDowntime":[false,false,true,true]}},{"ix":177,"action":{"kind":"Delegate","val":0,"amt":1703},"partialState":{"h":18,"t":108,"tokens":[19212,3896,1731,6012],"delegation":[18212,2896,731,5012],"delegatorTokens":9999999929006}},{"ix":178,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":179,"action":{"kind":"Undelegate","val":0,"amt":4088},"partialState":{"h":18,"t":108,"tokens":[15124,3896,1731,6012],"delegation":[14124,2896,731,5012],"delegatorTokens":9999999929006}},{"ix":180,"action":{"kind":"Delegate","val":1,"amt":4754},"partialState":{"h":18,"t":108,"tokens":[15124,8650,1731,6012],"delegation":[14124,7650,731,5012],"delegatorTokens":9999999924252}},{"ix":181,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":19,"t":114,"tokens":[15124,8650,1731,6012],"delegation":[14124,7650,731,5012],"delegatorTokens":9999999924252,"jailed":[1000000000000023,null,null,null],"status":["unbonding","bonded","unbonding","bonded"]}},{"ix":182,"action":{"kind":"Delegate","val":3,"amt":1625},"partialState":{"h":19,"t":114,"tokens":[15124,8650,1731,7637],"delegation":[14124,7650,731,6637],"delegatorTokens":9999999922627}},{"ix":183,"action":{"kind":"Deliver","chain":"provider","numPackets":1},"partialState":{"h":19,"t":114,"tokens":[15124,8650,1731,7637],"delegation":[14124,7650,731,6637],"delegatorTokens":9999999922627,"jailed":[1000000000000023,null,null,null],"status":["unbonding","bonded","unbonding","bonded"]}},{"ix":184,"action":{"kind":"Delegate","val":0,"amt":4127},"partialState":{"h":19,"t":114,"tokens":[19251,8650,1731,7637],"delegation":[18251,7650,731,6637],"delegatorTokens":9999999918500}},{"ix":185,"action":{"kind":"Undelegate","val":3,"amt":2215},"partialState":{"h":19,"t":114,"tokens":[19251,8650,1731,5422],"delegation":[18251,7650,731,4422],"delegatorTokens":9999999918500}},{"ix":186,"action":{"kind":"Undelegate","val":1,"amt":4858},"partialState":{"h":19,"t":114,"tokens":[19251,3792,1731,5422],"delegation":[18251,2792,731,4422],"delegatorTokens":9999999918500}},{"ix":187,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":24,"t":144,"consumerPower":[null,9615,6841,null],"outstandingDowntime":[false,false,true,true]}},{"ix":188,"action":{"kind":"Undelegate","val":3,"amt":3805},"partialState":{"h":19,"t":114,"tokens":[19251,3792,1731,1617],"delegation":[18251,2792,731,617],"delegatorTokens":9999999918500}},{"ix":189,"action":{"kind":"Delegate","val":0,"amt":2534},"partialState":{"h":19,"t":114,"tokens":[21785,3792,1731,1617],"delegation":[20785,2792,731,617],"delegatorTokens":9999999915966}},{"ix":190,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":191,"action":{"kind":"Undelegate","val":1,"amt":3552},"partialState":{"h":19,"t":114,"tokens":[21785,3792,1731,1617],"delegation":[20785,2792,731,617],"delegatorTokens":9999999915966}},{"ix":192,"action":{"kind":"Undelegate","val":0,"amt":2549},"partialState":{"h":19,"t":114,"tokens":[19236,3792,1731,1617],"delegation":[18236,2792,731,617],"delegatorTokens":9999999915966}},{"ix":193,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":194,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":20,"t":120,"tokens":[19236,3792,1731,1617],"delegation":[18236,2792,731,617],"delegatorTokens":9999999920010,"jailed":[1000000000000023,null,null,null],"status":["unbonding","bonded","bonded","unbonding"]}},{"ix":195,"action":{"kind":"Undelegate","val":0,"amt":3655},"partialState":{"h":20,"t":120,"tokens":[15581,3792,1731,1617],"delegation":[14581,2792,731,617],"delegatorTokens":9999999920010}},{"ix":196,"action":{"kind":"Delegate","val":1,"amt":4534},"partialState":{"h":20,"t":120,"tokens":[15581,8326,1731,1617],"delegation":[14581,7326,731,617],"delegatorTokens":9999999915476}},{"ix":197,"action":{"kind":"Deliver","chain":"provider","numPackets":6},"partialState":{"h":20,"t":120,"tokens":[15581,8326,1731,1617],"delegation":[14581,7326,731,617],"delegatorTokens":9999999915476,"jailed":[1000000000000023,null,null,null],"status":["unbonding","bonded","bonded","unbonding"]}},{"ix":198,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":25,"t":150,"consumerPower":[null,9615,6841,null],"outstandingDowntime":[false,false,true,true]}},{"ix":199,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":26,"t":156,"consumerPower":[null,9615,6841,null],"outstandingDowntime":[false,false,true,true]}}],"events":["insufficient_shares","send_downtime_slash_request","send_vsc_without_downtime_ack","send_double_sign_slash_request","downtime_slash_request_outstanding","send_downtime_slash_request","insufficient_shares","send_downtime_slash_request","insufficient_shares","receive_double_sign_slash_request","receive_slash_request_unbonded","send_vsc_without_downtime_ack","receive_slash_request_unbonded","receive_downtime_slash_request","jail","send_vsc_with_downtime_ack","consumer_update_val","consumer_update_val","consumer_update_val","more_than_one_third_val_power_change","send_vsc_without_downtime_ack","receive_downtime_slash_ack","insufficient_shares","send_vsc_without_downtime_ack","send_vsc_without_downtime_ack","consumer_del_val","consumer_update_val","consumer_add_val","insufficient_shares","consumer_send_maturation","consumer_send_maturation","send_vsc_without_downtime_ack","consumer_update_val","consumer_update_val","insufficient_shares","set_undel_hold_false","set_undel_hold_false","set_undel_hold_false","insufficient_shares","insufficient_shares","insufficient_shares","send_vsc_without_downtime_ack","consumer_update_val","more_than_one_third_val_power_change","complete_undel_in_endblock","send_vsc_without_downtime_ack","some_undels_expired_but_not_completed","insufficient_shares","some_undels_expired_but_not_completed","insufficient_shares","consumer_send_maturation","consumer_send_maturation","send_vsc_without_downtime_ack","insufficient_shares","rebond_unval","complete_undel_immediate","send_vsc_without_downtime_ack","consumer_send_maturation","consumer_send_maturation"]},{"meta":{"commit":"7ffd0c04e4205cbc9caf212abfe6c59ee43153bf"},"constants":{"P":"provider","C":"consumer","UNBONDING_SECONDS_P":70,"UNBONDING_SECONDS_C":50,"TRUSTING_SECONDS":49,"NUM_VALIDATORS":4,"MAX_VALIDATORS":2,"SLASH_DOUBLESIGN":0,"SLASH_DOWNTIME":0,"JAIL_SECONDS":999999999999999,"BLOCK_SECONDS":6,"INITIAL_DELEGATOR_TOKENS":10000000000000,"DELEGATE_AMT_MIN":1000,"DELEGATE_AMT_MAX":5000,"UNDELEGATE_AMT_MIN":1000,"UNDELEGATE_AMT_MAX":5000,"ISDOWNTIME_PROBABILITY":0.5,"MAX_NUM_PACKETS_FOR_DELIVER":6},"actions":[{"ix":0,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":1,"action":{"kind":"ConsumerSlash","val":2,"infractionHeight":0,"isDowntime":true},"partialState":{"h":1,"t":6,"outstandingDowntime":[false,false,true,false]}},{"ix":2,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":2,"t":12,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,false,true,false]}},{"ix":3,"action":{"kind":"Delegate","val":1,"amt":1687},"partialState":{"h":1,"t":6,"tokens":[5000,5687,3000,2000],"delegation":[4000,4687,2000,1000],"delegatorTokens":9999999998313}},{"ix":4,"action":{"kind":"Deliver","chain":"consumer","numPackets":1},"partialState":{"h":2,"t":12,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,false,true,false]}},{"ix":5,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":3,"t":18,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,false,true,false]}},{"ix":6,"action":{"kind":"Delegate","val":1,"amt":3020},"partialState":{"h":1,"t":6,"tokens":[5000,8707,3000,2000],"delegation":[4000,7707,2000,1000],"delegatorTokens":9999999995293}},{"ix":7,"action":{"kind":"Undelegate","val":3,"amt":3567},"partialState":{"h":1,"t":6,"tokens":[5000,8707,3000,2000],"delegation":[4000,7707,2000,1000],"delegatorTokens":9999999995293}},{"ix":8,"action":{"kind":"Deliver","chain":"consumer","numPackets":4},"partialState":{"h":3,"t":18,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,false,true,false]}},{"ix":9,"action":{"kind":"Delegate","val":2,"amt":2819},"partialState":{"h":1,"t":6,"tokens":[5000,8707,5819,2000],"delegation":[4000,7707,4819,1000],"delegatorTokens":9999999992474}},{"ix":10,"action":{"kind":"Delegate","val":3,"amt":4829},"partialState":{"h":1,"t":6,"tokens":[5000,8707,5819,6829],"delegation":[4000,7707,4819,5829],"delegatorTokens":9999999987645}},{"ix":11,"action":{"kind":"Undelegate","val":3,"amt":1117},"partialState":{"h":1,"t":6,"tokens":[5000,8707,5819,5712],"delegation":[4000,7707,4819,4712],"delegatorTokens":9999999987645}},{"ix":12,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":13,"action":{"kind":"Deliver","chain":"consumer","numPackets":6},"partialState":{"h":3,"t":18,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,false,true,false]}},{"ix":14,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":4,"t":24,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,false,true,false]}},{"ix":15,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":16,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":17,"action":{"kind":"Undelegate","val":0,"amt":1124},"partialState":{"h":1,"t":6,"tokens":[3876,8707,5819,5712],"delegation":[2876,7707,4819,4712],"delegatorTokens":9999999987645}},{"ix":18,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":5,"t":30,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,false,true,false]}},{"ix":19,"action":{"kind":"Deliver","chain":"provider","numPackets":4},"partialState":{"h":1,"t":6,"tokens":[3876,8707,5819,5712],"delegation":[2876,7707,4819,4712],"delegatorTokens":9999999987645,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":20,"action":{"kind":"ConsumerSlash","val":2,"infractionHeight":4,"isDowntime":false},"partialState":{"h":5,"t":30,"outstandingDowntime":[false,false,true,false]}},{"ix":21,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":22,"action":{"kind":"Delegate","val":0,"amt":2591},"partialState":{"h":1,"t":6,"tokens":[6467,8707,5819,5712],"delegation":[5467,7707,4819,4712],"delegatorTokens":9999999985054}},{"ix":23,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":6,"t":36,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,false,true,false]}},{"ix":24,"action":{"kind":"Deliver","chain":"provider","numPackets":1},"partialState":{"h":1,"t":6,"tokens":[6467,8707,5819,5712],"delegation":[5467,7707,4819,4712],"delegatorTokens":9999999985054,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":25,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":2,"t":12,"tokens":[6467,8707,5819,5712],"delegation":[5467,7707,4819,4712],"delegatorTokens":9999999985054,"jailed":[null,null,null,null],"status":["bonded","bonded","unbonded","unbonded"]}},{"ix":26,"action":{"kind":"Undelegate","val":3,"amt":2137},"partialState":{"h":2,"t":12,"tokens":[6467,8707,5819,3575],"delegation":[5467,7707,4819,2575],"delegatorTokens":9999999985054}},{"ix":27,"action":{"kind":"Delegate","val":3,"amt":2503},"partialState":{"h":2,"t":12,"tokens":[6467,8707,5819,6078],"delegation":[5467,7707,4819,5078],"delegatorTokens":9999999982551}},{"ix":28,"action":{"kind":"Delegate","val":3,"amt":1576},"partialState":{"h":2,"t":12,"tokens":[6467,8707,5819,7654],"delegation":[5467,7707,4819,6654],"delegatorTokens":9999999980975}},{"ix":29,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":7,"t":42,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,false,true,false]}},{"ix":30,"action":{"kind":"Delegate","val":2,"amt":4941},"partialState":{"h":2,"t":12,"tokens":[6467,8707,10760,7654],"delegation":[5467,7707,9760,6654],"delegatorTokens":9999999976034}},{"ix":31,"action":{"kind":"Undelegate","val":0,"amt":3665},"partialState":{"h":2,"t":12,"tokens":[2802,8707,10760,7654],"delegation":[1802,7707,9760,6654],"delegatorTokens":9999999976034}},{"ix":32,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":8,"t":48,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,false,true,false]}},{"ix":33,"action":{"kind":"Deliver","chain":"consumer","numPackets":4},"partialState":{"h":8,"t":48,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,false,true,false]}},{"ix":34,"action":{"kind":"Delegate","val":0,"amt":2522},"partialState":{"h":2,"t":12,"tokens":[5324,8707,10760,7654],"delegation":[4324,7707,9760,6654],"delegatorTokens":9999999973512}},{"ix":35,"action":{"kind":"ConsumerSlash","val":2,"infractionHeight":5,"isDowntime":true},"partialState":{"h":8,"t":48,"outstandingDowntime":[false,false,true,false]}},{"ix":36,"action":{"kind":"Delegate","val":1,"amt":3548},"partialState":{"h":2,"t":12,"tokens":[5324,12255,10760,7654],"delegation":[4324,11255,9760,6654],"delegatorTokens":9999999969964}},{"ix":37,"action":{"kind":"Delegate","val":0,"amt":4901},"partialState":{"h":2,"t":12,"tokens":[10225,12255,10760,7654],"delegation":[9225,11255,9760,6654],"delegatorTokens":9999999965063}},{"ix":38,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":39,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":3,"t":18,"tokens":[10225,12255,10760,7654],"delegation":[9225,11255,9760,6654],"delegatorTokens":9999999965063,"jailed":[null,null,null,null],"status":["unbonding","bonded","bonded","unbonded"]}},{"ix":40,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":9,"t":54,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[false,false,true,false]}},{"ix":41,"action":{"kind":"ConsumerSlash","val":0,"infractionHeight":8,"isDowntime":true},"partialState":{"h":9,"t":54,"outstandingDowntime":[true,false,true,false]}},{"ix":42,"action":{"kind":"ConsumerSlash","val":3,"infractionHeight":6,"isDowntime":true},"partialState":{"h":9,"t":54,"outstandingDowntime":[true,false,true,true]}},{"ix":43,"action":{"kind":"Deliver","chain":"consumer","numPackets":4},"partialState":{"h":9,"t":54,"consumerPower":[5000,4000,null,null],"outstandingDowntime":[true,false,true,true]}},{"ix":44,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":4,"t":24,"tokens":[10225,12255,10760,7654],"delegation":[9225,11255,9760,6654],"delegatorTokens":9999999965063,"jailed":[null,null,null,null],"status":["unbonding","bonded","bonded","unbonded"]}},{"ix":45,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":5,"t":30,"tokens":[10225,12255,10760,7654],"delegation":[9225,11255,9760,6654],"delegatorTokens":9999999965063,"jailed":[null,null,null,null],"status":["unbonding","bonded","bonded","unbonded"]}},{"ix":46,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":10,"t":60,"consumerPower":[6467,8707,null,null],"outstandingDowntime":[true,false,true,true]}},{"ix":47,"action":{"kind":"Deliver","chain":"provider","numPackets":3},"partialState":{"h":5,"t":30,"tokens":[10225,12255,10760,7654],"delegation":[9225,11255,9760,6654],"delegatorTokens":9999999965063,"jailed":[null,null,null,null],"status":["unbonding","bonded","bonded","unbonded"]}},{"ix":48,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":49,"action":{"kind":"Undelegate","val":1,"amt":4132},"partialState":{"h":5,"t":30,"tokens":[10225,8123,10760,7654],"delegation":[9225,7123,9760,6654],"delegatorTokens":9999999965063}},{"ix":50,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":51,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":52,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":53,"action":{"kind":"Delegate","val":2,"amt":4635},"partialState":{"h":5,"t":30,"tokens":[10225,8123,15395,7654],"delegation":[9225,7123,14395,6654],"delegatorTokens":9999999960428}},{"ix":54,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":55,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":6,"t":36,"tokens":[10225,8123,15395,7654],"delegation":[9225,7123,14395,6654],"delegatorTokens":9999999960428,"jailed":[null,null,null,null],"status":["bonded","unbonding","bonded","unbonded"]}},{"ix":56,"action":{"kind":"Deliver","chain":"provider","numPackets":1},"partialState":{"h":6,"t":36,"tokens":[10225,8123,15395,7654],"delegation":[9225,7123,14395,6654],"delegatorTokens":9999999960428,"jailed":[null,null,null,null],"status":["bonded","unbonding","bonded","unbonded"]}},{"ix":57,"action":{"kind":"Delegate","val":0,"amt":3358},"partialState":{"h":6,"t":36,"tokens":[13583,8123,15395,7654],"delegation":[12583,7123,14395,6654],"delegatorTokens":9999999957070}},{"ix":58,"action":{"kind":"Delegate","val":3,"amt":3390},"partialState":{"h":6,"t":36,"tokens":[13583,8123,15395,11044],"delegation":[12583,7123,14395,10044],"delegatorTokens":9999999953680}},{"ix":59,"action":{"kind":"Delegate","val":2,"amt":1400},"partialState":{"h":6,"t":36,"tokens":[13583,8123,16795,11044],"delegation":[12583,7123,15795,10044],"delegatorTokens":9999999952280}},{"ix":60,"action":{"kind":"Deliver","chain":"consumer","numPackets":6},"partialState":{"h":10,"t":60,"consumerPower":[6467,8707,null,null],"outstandingDowntime":[true,false,true,true]}},{"ix":61,"action":{"kind":"Delegate","val":1,"amt":4900},"partialState":{"h":6,"t":36,"tokens":[13583,13023,16795,11044],"delegation":[12583,12023,15795,10044],"delegatorTokens":9999999947380}},{"ix":62,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":11,"t":66,"consumerPower":[null,12255,10760,null],"outstandingDowntime":[true,false,true,true]}},{"ix":63,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":12,"t":72,"consumerPower":[null,12255,10760,null],"outstandingDowntime":[true,false,true,true]}},{"ix":64,"action":{"kind":"Delegate","val":3,"amt":2407},"partialState":{"h":6,"t":36,"tokens":[13583,13023,16795,13451],"delegation":[12583,12023,15795,12451],"delegatorTokens":9999999944973}},{"ix":65,"action":{"kind":"Undelegate","val":3,"amt":4759},"partialState":{"h":6,"t":36,"tokens":[13583,13023,16795,8692],"delegation":[12583,12023,15795,7692],"delegatorTokens":9999999944973}},{"ix":66,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":7,"t":42,"tokens":[13583,13023,16795,8692],"delegation":[12583,12023,15795,7692],"delegatorTokens":9999999944973,"jailed":[null,null,null,null],"status":["bonded","unbonding","bonded","unbonded"]}},{"ix":67,"action":{"kind":"Delegate","val":3,"amt":3384},"partialState":{"h":7,"t":42,"tokens":[13583,13023,16795,12076],"delegation":[12583,12023,15795,11076],"delegatorTokens":9999999941589}},{"ix":68,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":8,"t":48,"tokens":[13583,13023,16795,12076],"delegation":[12583,12023,15795,11076],"delegatorTokens":9999999941589,"jailed":[null,null,null,null],"status":["bonded","unbonding","bonded","unbonded"]}},{"ix":69,"action":{"kind":"Delegate","val":2,"amt":3329},"partialState":{"h":8,"t":48,"tokens":[13583,13023,20124,12076],"delegation":[12583,12023,19124,11076],"delegatorTokens":9999999938260}},{"ix":70,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":71,"action":{"kind":"Deliver","chain":"provider","numPackets":6},"partialState":{"h":8,"t":48,"tokens":[13583,13023,20124,12076],"delegation":[12583,12023,19124,11076],"delegatorTokens":9999999938260,"jailed":[null,null,null,null],"status":["bonded","unbonding","bonded","unbonded"]}},{"ix":72,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":73,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":9,"t":54,"tokens":[13583,13023,20124,12076],"delegation":[12583,12023,19124,11076],"delegatorTokens":9999999938260,"jailed":[1000000000000047,null,null,null],"status":["bonded","unbonding","bonded","unbonded"]}},{"ix":74,"action":{"kind":"Deliver","chain":"consumer","numPackets":3},"partialState":{"h":12,"t":72,"consumerPower":[null,12255,10760,null],"outstandingDowntime":[true,false,true,true]}},{"ix":75,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":13,"t":78,"consumerPower":[13583,null,16795,null],"outstandingDowntime":[true,false,true,true]}},{"ix":76,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":77,"action":{"kind":"Deliver","chain":"consumer","numPackets":5},"partialState":{"h":13,"t":78,"consumerPower":[13583,null,16795,null],"outstandingDowntime":[true,false,true,true]}},{"ix":78,"action":{"kind":"Deliver","chain":"consumer","numPackets":4},"partialState":{"h":13,"t":78,"consumerPower":[13583,null,16795,null],"outstandingDowntime":[true,false,true,true]}},{"ix":79,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":80,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":81,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":82,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":10,"t":60,"tokens":[13583,13023,20124,12076],"delegation":[12583,12023,19124,11076],"delegatorTokens":9999999938260,"jailed":[1000000000000047,null,null,null],"status":["unbonding","bonded","bonded","unbonded"]}},{"ix":83,"action":{"kind":"Deliver","chain":"provider","numPackets":5},"partialState":{"h":10,"t":60,"tokens":[13583,13023,20124,12076],"delegation":[12583,12023,19124,11076],"delegatorTokens":9999999938260,"jailed":[1000000000000047,null,null,null],"status":["unbonding","bonded","bonded","unbonded"]}},{"ix":84,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":85,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":14,"t":84,"consumerPower":[13583,null,16795,null],"outstandingDowntime":[true,false,true,true]}},{"ix":86,"action":{"kind":"Deliver","chain":"provider","numPackets":4},"partialState":{"h":10,"t":60,"tokens":[13583,13023,20124,12076],"delegation":[12583,12023,19124,11076],"delegatorTokens":9999999938260,"jailed":[1000000000000047,null,null,null],"status":["unbonding","bonded","bonded","unbonded"]}},{"ix":87,"action":{"kind":"Undelegate","val":3,"amt":4975},"partialState":{"h":10,"t":60,"tokens":[13583,13023,20124,7101],"delegation":[12583,12023,19124,6101],"delegatorTokens":9999999938260}},{"ix":88,"action":{"kind":"Undelegate","val":0,"amt":2946},"partialState":{"h":10,"t":60,"tokens":[10637,13023,20124,7101],"delegation":[9637,12023,19124,6101],"delegatorTokens":9999999938260}},{"ix":89,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":15,"t":90,"consumerPower":[13583,null,16795,null],"outstandingDowntime":[true,false,true,true]}},{"ix":90,"action":{"kind":"Delegate","val":2,"amt":2070},"partialState":{"h":10,"t":60,"tokens":[10637,13023,22194,7101],"delegation":[9637,12023,21194,6101],"delegatorTokens":9999999936190}},{"ix":91,"action":{"kind":"Delegate","val":0,"amt":1587},"partialState":{"h":10,"t":60,"tokens":[12224,13023,22194,7101],"delegation":[11224,12023,21194,6101],"delegatorTokens":9999999934603}},{"ix":92,"action":{"kind":"Delegate","val":0,"amt":2206},"partialState":{"h":10,"t":60,"tokens":[14430,13023,22194,7101],"delegation":[13430,12023,21194,6101],"delegatorTokens":9999999932397}},{"ix":93,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":16,"t":96,"consumerPower":[13583,null,16795,null],"outstandingDowntime":[true,false,true,true]}},{"ix":94,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":11,"t":66,"tokens":[14430,13023,22194,7101],"delegation":[13430,12023,21194,6101],"delegatorTokens":9999999932397,"jailed":[1000000000000047,null,null,null],"status":["unbonding","bonded","bonded","unbonded"]}},{"ix":95,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":12,"t":72,"tokens":[14430,13023,22194,7101],"delegation":[13430,12023,21194,6101],"delegatorTokens":9999999932397,"jailed":[1000000000000047,null,null,null],"status":["unbonding","bonded","bonded","unbonded"]}},{"ix":96,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":97,"action":{"kind":"Undelegate","val":0,"amt":4545},"partialState":{"h":12,"t":72,"tokens":[9885,13023,22194,7101],"delegation":[8885,12023,21194,6101],"delegatorTokens":9999999932397}},{"ix":98,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":17,"t":102,"consumerPower":[13583,null,16795,null],"outstandingDowntime":[true,false,true,true]}},{"ix":99,"action":{"kind":"Deliver","chain":"consumer","numPackets":6},"partialState":{"h":17,"t":102,"consumerPower":[13583,null,16795,null],"outstandingDowntime":[false,false,true,true]}},{"ix":100,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":101,"action":{"kind":"Deliver","chain":"consumer","numPackets":1},"partialState":{"h":17,"t":102,"consumerPower":[13583,null,16795,null],"outstandingDowntime":[false,false,true,true]}},{"ix":102,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":103,"action":{"kind":"Deliver","chain":"consumer","numPackets":1},"partialState":{"h":17,"t":102,"consumerPower":[13583,null,16795,null],"outstandingDowntime":[false,false,true,true]}},{"ix":104,"action":{"kind":"Deliver","chain":"consumer","numPackets":1},"partialState":{"h":17,"t":102,"consumerPower":[13583,null,16795,null],"outstandingDowntime":[false,false,true,true]}},{"ix":105,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":18,"t":108,"consumerPower":[null,13023,22194,null],"outstandingDowntime":[false,false,true,true]}},{"ix":106,"action":{"kind":"Undelegate","val":0,"amt":1819},"partialState":{"h":12,"t":72,"tokens":[8066,13023,22194,7101],"delegation":[7066,12023,21194,6101],"delegatorTokens":9999999932397}},{"ix":107,"action":{"kind":"Undelegate","val":2,"amt":3733},"partialState":{"h":12,"t":72,"tokens":[8066,13023,18461,7101],"delegation":[7066,12023,17461,6101],"delegatorTokens":9999999932397}},{"ix":108,"action":{"kind":"Deliver","chain":"consumer","numPackets":6},"partialState":{"h":18,"t":108,"consumerPower":[null,13023,22194,null],"outstandingDowntime":[false,false,true,true]}},{"ix":109,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":19,"t":114,"consumerPower":[null,13023,22194,null],"outstandingDowntime":[false,false,true,true]}},{"ix":110,"action":{"kind":"Deliver","chain":"provider","numPackets":4},"partialState":{"h":12,"t":72,"tokens":[8066,13023,18461,7101],"delegation":[7066,12023,17461,6101],"delegatorTokens":9999999932397,"jailed":[1000000000000047,null,null,null],"status":["unbonding","bonded","bonded","unbonded"]}},{"ix":111,"action":{"kind":"Undelegate","val":2,"amt":4719},"partialState":{"h":12,"t":72,"tokens":[8066,13023,13742,7101],"delegation":[7066,12023,12742,6101],"delegatorTokens":9999999932397}},{"ix":112,"action":{"kind":"Delegate","val":3,"amt":2911},"partialState":{"h":12,"t":72,"tokens":[8066,13023,13742,10012],"delegation":[7066,12023,12742,9012],"delegatorTokens":9999999929486}},{"ix":113,"action":{"kind":"Deliver","chain":"consumer","numPackets":4},"partialState":{"h":19,"t":114,"consumerPower":[null,13023,22194,null],"outstandingDowntime":[false,false,true,true]}},{"ix":114,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":115,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":13,"t":78,"tokens":[8066,13023,13742,10012],"delegation":[7066,12023,12742,9012],"delegatorTokens":9999999929486,"jailed":[1000000000000047,null,null,null],"status":["unbonding","bonded","bonded","unbonded"]}},{"ix":116,"action":{"kind":"Undelegate","val":0,"amt":2139},"partialState":{"h":13,"t":78,"tokens":[5927,13023,13742,10012],"delegation":[4927,12023,12742,9012],"delegatorTokens":9999999929486}},{"ix":117,"action":{"kind":"Undelegate","val":3,"amt":2691},"partialState":{"h":13,"t":78,"tokens":[5927,13023,13742,7321],"delegation":[4927,12023,12742,6321],"delegatorTokens":9999999929486}},{"ix":118,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":14,"t":84,"tokens":[5927,13023,13742,7321],"delegation":[4927,12023,12742,6321],"delegatorTokens":9999999929486,"jailed":[1000000000000047,null,null,null],"status":["unbonding","bonded","bonded","unbonded"]}},{"ix":119,"action":{"kind":"Undelegate","val":0,"amt":1102},"partialState":{"h":14,"t":84,"tokens":[4825,13023,13742,7321],"delegation":[3825,12023,12742,6321],"delegatorTokens":9999999929486}},{"ix":120,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":15,"t":90,"tokens":[4825,13023,13742,7321],"delegation":[3825,12023,12742,6321],"delegatorTokens":9999999929486,"jailed":[1000000000000047,null,null,null],"status":["unbonding","bonded","bonded","unbonded"]}},{"ix":121,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":122,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":123,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":124,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":125,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":126,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":127,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":20,"t":120,"consumerPower":[null,13023,22194,null],"outstandingDowntime":[false,false,true,true]}},{"ix":128,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":129,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":130,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":21,"t":126,"consumerPower":[null,13023,22194,null],"outstandingDowntime":[false,false,true,true]}},{"ix":131,"action":{"kind":"Undelegate","val":3,"amt":2872},"partialState":{"h":15,"t":90,"tokens":[4825,13023,13742,4449],"delegation":[3825,12023,12742,3449],"delegatorTokens":9999999929486}},{"ix":132,"action":{"kind":"Deliver","chain":"provider","numPackets":1},"partialState":{"h":15,"t":90,"tokens":[4825,13023,13742,4449],"delegation":[3825,12023,12742,3449],"delegatorTokens":9999999929486,"jailed":[1000000000000047,null,null,null],"status":["unbonding","bonded","bonded","unbonded"]}},{"ix":133,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":134,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":135,"action":{"kind":"Deliver","chain":"consumer","numPackets":1},"partialState":{"h":21,"t":126,"consumerPower":[null,13023,22194,null],"outstandingDowntime":[false,false,true,true]}},{"ix":136,"action":{"kind":"Deliver","chain":"consumer","numPackets":3},"partialState":{"h":21,"t":126,"consumerPower":[null,13023,22194,null],"outstandingDowntime":[false,false,true,true]}},{"ix":137,"action":{"kind":"Undelegate","val":3,"amt":4317},"partialState":{"h":15,"t":90,"tokens":[4825,13023,13742,4449],"delegation":[3825,12023,12742,3449],"delegatorTokens":9999999929486}},{"ix":138,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":139,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":140,"action":{"kind":"Delegate","val":2,"amt":3872},"partialState":{"h":15,"t":90,"tokens":[4825,13023,17614,4449],"delegation":[3825,12023,16614,3449],"delegatorTokens":9999999925614}},{"ix":141,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":142,"action":{"kind":"Undelegate","val":3,"amt":4481},"partialState":{"h":15,"t":90,"tokens":[4825,13023,17614,4449],"delegation":[3825,12023,16614,3449],"delegatorTokens":9999999925614}},{"ix":143,"action":{"kind":"Delegate","val":1,"amt":4612},"partialState":{"h":15,"t":90,"tokens":[4825,17635,17614,4449],"delegation":[3825,16635,16614,3449],"delegatorTokens":9999999921002}},{"ix":144,"action":{"kind":"Delegate","val":2,"amt":4472},"partialState":{"h":15,"t":90,"tokens":[4825,17635,22086,4449],"delegation":[3825,16635,21086,3449],"delegatorTokens":9999999916530}},{"ix":145,"action":{"kind":"Deliver","chain":"consumer","numPackets":6},"partialState":{"h":21,"t":126,"consumerPower":[null,13023,22194,null],"outstandingDowntime":[false,false,true,true]}},{"ix":146,"action":{"kind":"Delegate","val":1,"amt":1399},"partialState":{"h":15,"t":90,"tokens":[4825,19034,22086,4449],"delegation":[3825,18034,21086,3449],"delegatorTokens":9999999915131}},{"ix":147,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":16,"t":96,"tokens":[4825,19034,22086,4449],"delegation":[3825,18034,21086,3449],"delegatorTokens":9999999917372,"jailed":[1000000000000047,null,null,null],"status":["unbonding","bonded","bonded","unbonded"]}},{"ix":148,"action":{"kind":"Delegate","val":1,"amt":2274},"partialState":{"h":16,"t":96,"tokens":[4825,21308,22086,4449],"delegation":[3825,20308,21086,3449],"delegatorTokens":9999999915098}},{"ix":149,"action":{"kind":"Deliver","chain":"consumer","numPackets":4},"partialState":{"h":21,"t":126,"consumerPower":[null,13023,22194,null],"outstandingDowntime":[false,false,true,true]}},{"ix":150,"action":{"kind":"Delegate","val":0,"amt":1012},"partialState":{"h":16,"t":96,"tokens":[5837,21308,22086,4449],"delegation":[4837,20308,21086,3449],"delegatorTokens":9999999914086}},{"ix":151,"action":{"kind":"Undelegate","val":1,"amt":3170},"partialState":{"h":16,"t":96,"tokens":[5837,18138,22086,4449],"delegation":[4837,17138,21086,3449],"delegatorTokens":9999999914086}},{"ix":152,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":22,"t":132,"consumerPower":[null,13023,13742,null],"outstandingDowntime":[false,false,true,true]}},{"ix":153,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":23,"t":138,"consumerPower":[null,13023,13742,null],"outstandingDowntime":[false,false,true,true]}},{"ix":154,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":155,"action":{"kind":"Delegate","val":2,"amt":3366},"partialState":{"h":16,"t":96,"tokens":[5837,18138,25452,4449],"delegation":[4837,17138,24452,3449],"delegatorTokens":9999999910720}},{"ix":156,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":17,"t":102,"tokens":[5837,18138,25452,4449],"delegation":[4837,17138,24452,3449],"delegatorTokens":9999999910720,"jailed":[1000000000000047,null,null,null],"status":["unbonding","bonded","bonded","unbonded"]}},{"ix":157,"action":{"kind":"Deliver","chain":"consumer","numPackets":6},"partialState":{"h":23,"t":138,"consumerPower":[null,13023,13742,null],"outstandingDowntime":[false,false,true,true]}},{"ix":158,"action":{"kind":"Delegate","val":0,"amt":2450},"partialState":{"h":17,"t":102,"tokens":[8287,18138,25452,4449],"delegation":[7287,17138,24452,3449],"delegatorTokens":9999999908270}},{"ix":159,"action":{"kind":"Undelegate","val":0,"amt":4628},"partialState":{"h":17,"t":102,"tokens":[3659,18138,25452,4449],"delegation":[2659,17138,24452,3449],"delegatorTokens":9999999908270}},{"ix":160,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":24,"t":144,"consumerPower":[null,19034,22086,null],"outstandingDowntime":[false,false,true,true]}},{"ix":161,"action":{"kind":"Delegate","val":3,"amt":2553},"partialState":{"h":17,"t":102,"tokens":[3659,18138,25452,7002],"delegation":[2659,17138,24452,6002],"delegatorTokens":9999999905717}},{"ix":162,"action":{"kind":"Delegate","val":3,"amt":2540},"partialState":{"h":17,"t":102,"tokens":[3659,18138,25452,9542],"delegation":[2659,17138,24452,8542],"delegatorTokens":9999999903177}},{"ix":163,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":164,"action":{"kind":"Deliver","chain":"consumer","numPackets":4},"partialState":{"h":24,"t":144,"consumerPower":[null,19034,22086,null],"outstandingDowntime":[false,false,true,true]}},{"ix":165,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":18,"t":108,"tokens":[3659,18138,25452,9542],"delegation":[2659,17138,24452,8542],"delegatorTokens":9999999903177,"jailed":[1000000000000047,null,null,null],"status":["unbonding","bonded","bonded","unbonded"]}},{"ix":166,"action":{"kind":"Delegate","val":0,"amt":4156},"partialState":{"h":18,"t":108,"tokens":[7815,18138,25452,9542],"delegation":[6815,17138,24452,8542],"delegatorTokens":9999999899021}},{"ix":167,"action":{"kind":"Delegate","val":2,"amt":3918},"partialState":{"h":18,"t":108,"tokens":[7815,18138,29370,9542],"delegation":[6815,17138,28370,8542],"delegatorTokens":9999999895103}},{"ix":168,"action":{"kind":"Deliver","chain":"provider","numPackets":3},"partialState":{"h":18,"t":108,"tokens":[7815,18138,29370,9542],"delegation":[6815,17138,28370,8542],"delegatorTokens":9999999895103,"jailed":[1000000000000047,null,null,null],"status":["unbonding","bonded","bonded","unbonded"]}},{"ix":169,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":170,"action":{"kind":"Deliver","chain":"provider","numPackets":4},"partialState":{"h":18,"t":108,"tokens":[7815,18138,29370,9542],"delegation":[6815,17138,28370,8542],"delegatorTokens":9999999895103,"jailed":[1000000000000047,null,null,null],"status":["unbonding","bonded","bonded","unbonded"]}},{"ix":171,"action":{"kind":"Deliver","chain":"consumer","numPackets":4},"partialState":{"h":24,"t":144,"consumerPower":[null,19034,22086,null],"outstandingDowntime":[false,false,true,true]}},{"ix":172,"action":{"kind":"Deliver","chain":"consumer","numPackets":6},"partialState":{"h":24,"t":144,"consumerPower":[null,19034,22086,null],"outstandingDowntime":[false,false,true,true]}},{"ix":173,"action":{"kind":"Undelegate","val":2,"amt":3758},"partialState":{"h":18,"t":108,"tokens":[7815,18138,25612,9542],"delegation":[6815,17138,24612,8542],"delegatorTokens":9999999895103}},{"ix":174,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":25,"t":150,"consumerPower":[null,18138,25452,null],"outstandingDowntime":[false,false,true,true]}},{"ix":175,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":176,"action":{"kind":"Undelegate","val":3,"amt":1392},"partialState":{"h":18,"t":108,"tokens":[7815,18138,25612,8150],"delegation":[6815,17138,24612,7150],"delegatorTokens":9999999895103}},{"ix":177,"action":{"kind":"Delegate","val":0,"amt":3637},"partialState":{"h":18,"t":108,"tokens":[11452,18138,25612,8150],"delegation":[10452,17138,24612,7150],"delegatorTokens":9999999891466}},{"ix":178,"action":{"kind":"Deliver","chain":"consumer","numPackets":1},"partialState":{"h":25,"t":150,"consumerPower":[null,18138,25452,null],"outstandingDowntime":[false,false,true,true]}},{"ix":179,"action":{"kind":"Deliver","chain":"provider","numPackets":5},"partialState":{"h":18,"t":108,"tokens":[11452,18138,25612,8150],"delegation":[10452,17138,24612,7150],"delegatorTokens":9999999891466,"jailed":[1000000000000047,null,null,null],"status":["unbonding","bonded","bonded","unbonded"]}},{"ix":180,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":181,"action":{"kind":"Deliver","chain":"consumer","numPackets":5},"partialState":{"h":25,"t":150,"consumerPower":[null,18138,25452,null],"outstandingDowntime":[false,false,true,true]}},{"ix":182,"action":{"kind":"Deliver","chain":"consumer","numPackets":3},"partialState":{"h":25,"t":150,"consumerPower":[null,18138,25452,null],"outstandingDowntime":[false,false,true,true]}},{"ix":183,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":184,"action":{"kind":"Delegate","val":3,"amt":3658},"partialState":{"h":18,"t":108,"tokens":[11452,18138,25612,11808],"delegation":[10452,17138,24612,10808],"delegatorTokens":9999999887808}},{"ix":185,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":19,"t":114,"tokens":[11452,18138,25612,11808],"delegation":[10452,17138,24612,10808],"delegatorTokens":9999999902501,"jailed":[1000000000000047,null,null,null],"status":["unbonding","bonded","bonded","unbonded"]}},{"ix":186,"action":{"kind":"Undelegate","val":3,"amt":3910},"partialState":{"h":19,"t":114,"tokens":[11452,18138,25612,7898],"delegation":[10452,17138,24612,6898],"delegatorTokens":9999999902501}},{"ix":187,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":188,"action":{"kind":"Delegate","val":2,"amt":3229},"partialState":{"h":19,"t":114,"tokens":[11452,18138,28841,7898],"delegation":[10452,17138,27841,6898],"delegatorTokens":9999999899272}},{"ix":189,"action":{"kind":"UpdateClient","chain":"consumer"},"partialState":{}},{"ix":190,"action":{"kind":"Deliver","chain":"provider","numPackets":4},"partialState":{"h":19,"t":114,"tokens":[11452,18138,28841,7898],"delegation":[10452,17138,27841,6898],"delegatorTokens":9999999899272,"jailed":[1000000000000047,null,null,null],"status":["unbonding","bonded","bonded","unbonded"]}},{"ix":191,"action":{"kind":"Delegate","val":1,"amt":2992},"partialState":{"h":19,"t":114,"tokens":[11452,21130,28841,7898],"delegation":[10452,20130,27841,6898],"delegatorTokens":9999999896280}},{"ix":192,"action":{"kind":"Deliver","chain":"provider","numPackets":6},"partialState":{"h":19,"t":114,"tokens":[11452,21130,28841,7898],"delegation":[10452,20130,27841,6898],"delegatorTokens":9999999896280,"jailed":[1000000000000047,null,null,null],"status":["unbonding","bonded","bonded","unbonded"]}},{"ix":193,"action":{"kind":"EndAndBeginBlock","chain":"provider"},"partialState":{"h":20,"t":120,"tokens":[11452,21130,28841,7898],"delegation":[10452,20130,27841,6898],"delegatorTokens":9999999896280,"jailed":[1000000000000047,null,null,null],"status":["unbonding","bonded","bonded","unbonded"]}},{"ix":194,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":195,"action":{"kind":"Undelegate","val":2,"amt":3271},"partialState":{"h":20,"t":120,"tokens":[11452,21130,25570,7898],"delegation":[10452,20130,24570,6898],"delegatorTokens":9999999896280}},{"ix":196,"action":{"kind":"EndAndBeginBlock","chain":"consumer"},"partialState":{"h":26,"t":156,"consumerPower":[null,18138,25452,null],"outstandingDowntime":[false,false,true,true]}},{"ix":197,"action":{"kind":"UpdateClient","chain":"provider"},"partialState":{}},{"ix":198,"action":{"kind":"Undelegate","val":2,"amt":3192},"partialState":{"h":20,"t":120,"tokens":[11452,21130,22378,7898],"delegation":[10452,20130,21378,6898],"delegatorTokens":9999999896280}},{"ix":199,"action":{"kind":"Undelegate","val":2,"amt":2092},"partialState":{"h":20,"t":120,"tokens":[11452,21130,20286,7898],"delegation":[10452,20130,19286,6898],"delegatorTokens":9999999896280}}],"events":["send_downtime_slash_request","insufficient_shares","send_double_sign_slash_request","receive_slash_request_unbonded","send_vsc_without_downtime_ack","downtime_slash_request_outstanding","more_than_one_third_val_power_change","send_vsc_without_downtime_ack","send_downtime_slash_request","send_downtime_slash_request","consumer_update_val","consumer_update_val","receive_double_sign_slash_request","more_than_one_third_val_power_change","rebond_unval","send_vsc_without_downtime_ack","consumer_del_val","consumer_update_val","consumer_add_val","send_vsc_without_downtime_ack","receive_downtime_slash_request","jail","receive_slash_request_unbonded","send_vsc_with_downtime_ack","consumer_add_val","consumer_del_val","consumer_update_val","more_than_one_third_val_power_change","rebond_unval","send_vsc_without_downtime_ack","send_vsc_without_downtime_ack","receive_downtime_slash_ack","consumer_update_val","consumer_del_val","consumer_add_val","consumer_send_maturation","send_vsc_without_downtime_ack","some_undels_expired_but_not_completed","send_vsc_not_because_change","send_vsc_without_downtime_ack","some_undels_expired_but_not_completed","send_vsc_not_because_change","send_vsc_without_downtime_ack","consumer_send_maturation","insufficient_shares","insufficient_shares","complete_undel_immediate","complete_undel_immediate","send_vsc_without_downtime_ack","consumer_send_maturation","consumer_send_maturation","consumer_update_val","send_vsc_without_downtime_ack","consumer_update_val","consumer_update_val","some_undels_expired_but_not_completed","send_vsc_not_because_change","send_vsc_without_downtime_ack","consumer_update_val","consumer_update_val","some_undels_expired_but_not_completed","complete_undel_immediate","complete_undel_immediate","complete_undel_immediate","complete_undel_immediate","send_vsc_without_downtime_ack","send_vsc_without_downtime_ack"]}] \ No newline at end of file diff --git a/tests/difference/core/model/.eslintignore b/tests/difference/core/model/.eslintignore deleted file mode 100644 index fc40c5a94d..0000000000 --- a/tests/difference/core/model/.eslintignore +++ /dev/null @@ -1 +0,0 @@ -/**/*.js diff --git a/tests/difference/core/model/.eslintrc.json b/tests/difference/core/model/.eslintrc.json deleted file mode 100644 index 239cad64e9..0000000000 --- a/tests/difference/core/model/.eslintrc.json +++ /dev/null @@ -1,27 +0,0 @@ -{ - "env": { - "browser": false, - "es6": true, - "node": true - }, - "parser": "@typescript-eslint/parser", - "parserOptions": { - "project": "tsconfig.json", - "sourceType": "module", - "ecmaVersion": 2020 - }, - "plugins": [ - "@typescript-eslint", - "jest" - ], - "extends": [ - "eslint:recommended", - "plugin:@typescript-eslint/eslint-recommended", - "plugin:@typescript-eslint/recommended", - "plugin:jest/recommended", - "prettier" - ], - "rules": { - "@typescript-eslint/no-var-requires": 0 - } -} \ No newline at end of file diff --git a/tests/difference/core/model/.gitignore b/tests/difference/core/model/.gitignore deleted file mode 100644 index 48c9c9e654..0000000000 --- a/tests/difference/core/model/.gitignore +++ /dev/null @@ -1,31 +0,0 @@ -# Logs -logs -*.log -npm-debug.log* - -# Dependencies -node_modules/ - -# Coverage -coverage - -# Transpiled files -build/ - -# VS Code -.vscode -!.vscode/tasks.js - -# JetBrains IDEs -.idea/ - -# Optional npm cache directory -.npm - -# Optional eslint cache -.eslintcache - -# Misc -.DS_Store - -traces/ \ No newline at end of file diff --git a/tests/difference/core/model/.prettierrc b/tests/difference/core/model/.prettierrc deleted file mode 100644 index f17b0543ee..0000000000 --- a/tests/difference/core/model/.prettierrc +++ /dev/null @@ -1,17 +0,0 @@ -{ - "singleQuote": true, - "trailingComma": "all", - "overrides": [ - { - "files": [ - "*.ts", - "*.mts" - ], - "options": { - "parser": "typescript" - } - } - ], - "tabWidth": 2, - "printWidth": 74 -} \ No newline at end of file diff --git a/tests/difference/core/model/__tests__/gen.test.ts b/tests/difference/core/model/__tests__/gen.test.ts deleted file mode 100644 index 5bc75b7fdf..0000000000 --- a/tests/difference/core/model/__tests__/gen.test.ts +++ /dev/null @@ -1,14 +0,0 @@ -import { gen } from '../src/main.js'; - -/** - * This test is useful to check how much coverage - * trace generation actually gets over the model. - * - * yarn jest --collect-coverage - */ -describe('check properties', () => { - it('_', () => { - gen(120, true); - expect(true).toBeTruthy(); // satisfies linter - }); -}); diff --git a/tests/difference/core/model/__tests__/tsconfig.json b/tests/difference/core/model/__tests__/tsconfig.json deleted file mode 100644 index 734ac11619..0000000000 --- a/tests/difference/core/model/__tests__/tsconfig.json +++ /dev/null @@ -1,30 +0,0 @@ -{ - "compilerOptions": { - "target": "ES2022", - "module": "node16", - "lib": [ - "ES2022" - ], - "moduleResolution": "Node16", - "rootDir": "..", - "outDir": "build", - "allowSyntheticDefaultImports": true, - "importHelpers": true, - "alwaysStrict": true, - "sourceMap": true, - "forceConsistentCasingInFileNames": true, - "noFallthroughCasesInSwitch": true, - "noImplicitReturns": true, - "noUnusedLocals": true, - "noUnusedParameters": true, - "noImplicitAny": true, - "noImplicitThis": true, - "strictNullChecks": true, - "allowJs": true, - "esModuleInterop": true - }, - "include": [ - "src/**/*", - "__tests__/**/*" - ] -} \ No newline at end of file diff --git a/tests/difference/core/model/jest.config.js b/tests/difference/core/model/jest.config.js deleted file mode 100644 index 2d2c1ef1d3..0000000000 --- a/tests/difference/core/model/jest.config.js +++ /dev/null @@ -1,24 +0,0 @@ -export default { - testEnvironment: 'node', - preset: 'ts-jest/presets/js-with-ts-esm', - globals: { - 'ts-jest': { - useESM: true, - tsconfig: '/__tests__/tsconfig.json', - }, - }, - transformIgnorePatterns: [ - "node_modules/(?!(time-span|convert-hrtime))", - ], - moduleNameMapper: { - '^(\\.{1,2}/.*)\\.(m)?js$': '$1', - }, - testRegex: '(/__tests__/.*|(\\.|/)(test|spec))\\.(m)?ts$', - coverageDirectory: 'coverage', - collectCoverageFrom: [ - 'src/**/*.ts', - 'src/**/*.mts', - '!src/**/*.d.ts', - '!src/**/*.d.mts', - ], -}; diff --git a/tests/difference/core/model/package.json b/tests/difference/core/model/package.json deleted file mode 100644 index cb129e4ce2..0000000000 --- a/tests/difference/core/model/package.json +++ /dev/null @@ -1,50 +0,0 @@ -{ - "name": "diff-tests-core", - "version": "3.0.1", - "description": "A model for generating difference tests for Interchain Security core protocol components.", - "type": "module", - "engines": { - "node": ">= 16.13 <17" - }, - "devDependencies": { - "@types/jest": "^28.1.4", - "@types/node": "~16", - "@typescript-eslint/eslint-plugin": "~5.26", - "@typescript-eslint/parser": "~5.26", - "eslint": "~8.16", - "eslint-config-prettier": "~8.5", - "eslint-plugin-jest": "~26.2", - "jest": "^28.1.1", - "prettier": "~2.6", - "rimraf": "~3.0", - "source-map-support": "^0.5.21", - "ts-jest": "^28.0.5", - "tsutils": "~3.21", - "typescript": "~4.7" - }, - "scripts": { - "start": "node build/src/main.js", - "clean": "rimraf coverage build tmp", - "prebuild": "npm run lint", - "build": "tsc -p tsconfig.json", - "build:watch": "tsc -w -p tsconfig.json", - "build:release": "npm run clean && tsc -p tsconfig.release.json", - "lint": "eslint . --ext .ts --ext .mts", - "test": "jest --coverage", - "prettier": "prettier --config .prettierrc --write .", - "test:watch": "jest --watch" - }, - "author": "", - "license": "Apache-2.0", - "dependencies": { - "@types/clone-deep": "^4.0.1", - "@types/underscore": "^1.11.4", - "clone-deep": "^4.0.1", - "time-span": "^5.1.0", - "tslib": "~2.4", - "underscore": "^1.13.4" - }, - "volta": { - "node": "16.13.0" - } -} \ No newline at end of file diff --git a/tests/difference/core/model/src/common.ts b/tests/difference/core/model/src/common.ts deleted file mode 100644 index c71c99473b..0000000000 --- a/tests/difference/core/model/src/common.ts +++ /dev/null @@ -1,244 +0,0 @@ -type Chain = 'provider' | 'consumer'; - -type Validator = number; - -enum Status { - BONDED = 'bonded', - UNBONDING = 'unbonding', - UNBONDED = 'unbonded', -} - -/** - * All the data needed to represent an undelegation occuring - * in the sdk staking module. - */ -interface Undelegation { - val: Validator; - creationHeight: number; - completionTime: number; - balance: number; - initialBalance: number; - onHold: boolean; - opID: number; - willBeProcessedByStakingModule: boolean; -} - -/** - * All the data needed to represent an unbonding validator - * occuring in the sdk staking module. - */ -interface Unval { - val: Validator; - unbondingHeight: number; - unbondingTime: number; - onHold: boolean; - opID: number; -} - -/** - * A representation of the validator set change data structure - * sent from the provider to the consumer. - */ -interface Vsc { - vscID: number; - updates: Record; - downtimeSlashAcks: number[]; -} - -/** - * Validator Set Change Maturity notification data structure - */ -interface VscMaturity { - vscID: number; -} - -/** - * A representation of the packet sent by the consumer to the - * provider when slashing. - */ -interface ConsumerInitiatedSlashPacketData { - val: Validator; - vscID: number; - isDowntime: boolean; -} - -type PacketData = Vsc | VscMaturity | ConsumerInitiatedSlashPacketData; - -interface Packet { - data: PacketData; - // Necessary to deduce a partial order between the provider - // and consumer chain, as dictated by packet sending and - // receiving. - sendHeight: number; -} - -interface Action { - // A tag to identify the action type - kind: string; -} - -type Delegate = { - kind: string; - val: Validator; // Validator to delegate to - amt: number; // Amount to delegate -}; - -type Undelegate = { - kind: string; - val: Validator; // Validator to undelegate from - amt: number; // Max amount to undelegate -}; - -type ConsumerSlash = { - kind: string; - val: Validator; // Validator to slash - infractionHeight: number; // Height of the infraction on consumer - isDowntime: boolean; // Whether the slash is for downtime (or double sign) -}; - -type UpdateClient = { - kind: string; - // The chain who will receive the light client header TX - // (details not modelled explicitly) - chain: Chain; -}; - -type Deliver = { - kind: string; - // The chain who will receive packets which have been sent to it - chain: Chain; - // The MAX number of packets to deliver, from those available - numPackets: number; -}; - -type EndAndBeginBlock = { - kind: string; - // Which chain will end and begin a block? - chain: Chain; -}; - -/** - * A snapshot of a portion of the model state at the time - * that a block is committed on one of the chains. - * - * The state is exactly the state that is needed to check - * system properties. - */ -type PropertiesSystemState = { - h: Record; - t: Record; - tokens: number[]; - status: Status[]; - undelegationQ: Undelegation[]; - delegatorTokens: number; - consumerPower: (number | null)[]; - vscIDtoH: Record; - hToVscID: Record; -}; - -/** - * Record a snapshot of both chain states at the height and timestamp - * of a committed block for a chain. - */ -interface CommittedBlock { - chain: Chain; - propertiesSystemState: PropertiesSystemState; -} - -/** - * A partial snapshot of model state. It is the state - * needed to check that the SUT is behaving correctly - * when compared to the model. - * - * NOTE: This is not a complete snapshot of the model state - * because not all of the data is needed, and the space - * needed adds up quickly. Also, a concise representation - * makes traces much more readable and easier to debug - * by inspection. - * - * Fields are optional because not of the state is interesting - * for all of the possible actions. This could be achieved - * with a union type. - */ -interface PartialState { - h?: number; // Chain local height - t?: number; // Chain local timestamp - tokens?: number[]; - delegation?: number[]; - delegatorTokens?: number; - jailed?: (number | null)[]; - status?: Status[]; - consumerPower?: (number | null)[]; - outstandingDowntime?: boolean[]; -} - -interface TraceAction { - ix: number; - action: Action; - partialState: PartialState; -} - -/** - * The initial state of a new model instances. - * - * See model.ts for details of each field. - */ -type ModelInitState = { - h: Record; - t: Record; - staking: { - delegation: number[]; - tokens: number[]; - status: Status[]; - undelegationQ: Undelegation[]; - validatorQ: Unval[]; - jailed: (number | null)[]; - delegatorTokens: number; - opID: number; - changes: Record; - lastVals: Validator[]; - lastTokens: number[]; - }; - ccvC: { - hToVscID: Record; - pendingChanges: Record[]; - maturingVscs: Map; - outstandingDowntime: boolean[]; - consumerPower: (number | null)[]; - }; - ccvP: { - initialHeight: number; - vscID: number; - vscIDtoH: Record; - vscIDtoOpIDs: Map; - downtimeSlashAcks: number[]; - tombstoned: boolean[]; - matureUnbondingOps: number[]; - queue: (ConsumerInitiatedSlashPacketData | VscMaturity)[]; - }; -}; - -export { - ModelInitState, - PartialState, - TraceAction, - CommittedBlock, - Chain, - Validator, - Action, - Delegate, - Undelegate, - ConsumerSlash, - UpdateClient, - Deliver, - EndAndBeginBlock, - PropertiesSystemState, - Status, - Undelegation, - Unval, - Vsc, - VscMaturity, - ConsumerInitiatedSlashPacketData, - PacketData, - Packet, -}; diff --git a/tests/difference/core/model/src/constants.ts b/tests/difference/core/model/src/constants.ts deleted file mode 100644 index 53b0051bdd..0000000000 --- a/tests/difference/core/model/src/constants.ts +++ /dev/null @@ -1,140 +0,0 @@ -import { ModelInitState, Status } from './common.js'; - -const P = 'provider'; -const C = 'consumer'; - -// Block interval, set to mimic real life. -const BLOCK_SECONDS = 6; -// Trusting period -const TRUSTING_SECONDS = 49; -// Unbonding period for consumer. Must be greater than TRUSTING_SECONDS -const UNBONDING_SECONDS_C = 50; -// Unbonding period for provider. Must be greater than TRUSTING_SECONDS. -// Should be greater than UNBONDING_SECONDS_C -const UNBONDING_SECONDS_P = 70; - -// Total number of validators to model. -const NUM_VALIDATORS = 4; -// Maximum number of active validator at a given time. This should be less -// than NUM_VALIDATORS in order to test scenarios where validators -// join and leave the active set, or are jailed. -const MAX_VALIDATORS = 2; // allows jailing 2 validators -// Slash factor for double signing. This is set to 0 in order to test slashing -// logic while avoiding divergence between model and SUT due to differences -// in numerical implementations. -const SLASH_DOUBLESIGN = 0; -// ^^ -const SLASH_DOWNTIME = 0; -// Jail time. Unjailing is not modelled. -const JAIL_SECONDS = 999999999999999; -// Initial token balance for the (sole) delegator account. Should -// be large enough to allow unlimited delegate actions. -const INITIAL_DELEGATOR_TOKENS = 10000000000000; - -const DELEGATE_AMT_MIN = 1000; -const DELEGATE_AMT_MAX = 5000; -const UNDELEGATE_AMT_MIN = 1000; -const UNDELEGATE_AMT_MAX = 5000; -const ISDOWNTIME_PROBABILITY = 0.5; -const MAX_NUM_PACKETS_FOR_DELIVER = 6; - -const MODEL_INIT_STATE: ModelInitState = { - h: { provider: 0, consumer: 0 }, - t: { provider: 0, consumer: 0 }, - ccvC: { - // We model a consumer chain that has already been established, - // but we model starting from height 0. It is necessary to have - // a vscid from the previous block, as is always the case in the - // real system and algorithm once a consumer has been added. - // Therefore we use -1 to represent the phantom vscid from the height - // before the first modelled height. - hToVscID: { 0: -1, 1: -1 }, - pendingChanges: [], - maturingVscs: new Map(), - outstandingDowntime: [false, false, false, false], - consumerPower: [5000, 4000, null, null], - }, - ccvP: { - initialHeight: 0, - vscID: 0, - // See ccvC.hToVscID - vscIDtoH: { [-1]: 0 }, - vscIDtoOpIDs: new Map(), - downtimeSlashAcks: [], - tombstoned: [false, false, false, false], - matureUnbondingOps: [], - queue: [], - }, - staking: { - delegation: [4000, 3000, 2000, 1000], - tokens: [5000, 4000, 3000, 2000], - status: [ - Status.BONDED, // Bonded as per the delegation above - Status.BONDED, // ^^ - Status.UNBONDED, // Unbonded as per MAX_VALIDATORS - Status.UNBONDED, // ^^ - ], - undelegationQ: [], - validatorQ: [], - jailed: [null, null, null, null], - delegatorTokens: INITIAL_DELEGATOR_TOKENS, - opID: 0, - changes: {}, - lastVals: [0, 1], - lastTokens: [5000, 4000, 3000, 2000], - }, -}; - -/* - * Used to track various semantic events that occur during model exploration. - */ -enum Event { - REBOND_UNVAL = 'rebond_unval', - COMPLETE_UNVAL_IN_ENDBLOCK = 'complete_unval_in_endblock', - SET_UNVAL_HOLD_FALSE = 'set_unval_hold_false', - COMPLETE_UNDEL_IN_ENDBLOCK = 'complete_undel_in_endblock', - COMPLETE_UNDEL_IMMEDIATE = 'complete_undel_immediate', - SET_UNDEL_HOLD_FALSE = 'set_undel_hold_false', - INSUFFICIENT_SHARES = 'insufficient_shares', - SLASH_UNDEL = 'slash_undel', - JAIL = 'jail', - SEND_DOWNTIME_SLASH_REQUEST = 'send_downtime_slash_request', - RECEIVE_DOWNTIME_SLASH_REQUEST = 'receive_downtime_slash_request', - RECEIVE_DOWNTIME_SLASH_ACK = 'receive_downtime_slash_ack', - SEND_DOUBLE_SIGN_SLASH_REQUEST = 'send_double_sign_slash_request', - CONSUMER_SEND_MATURATION = 'consumer_send_maturation', - SEND_VSC_NOT_BECAUSE_CHANGE = 'send_vsc_not_because_change', - SEND_VSC_WITH_DOWNTIME_ACK = 'send_vsc_with_downtime_ack', - SEND_VSC_WITHOUT_DOWNTIME_ACK = 'send_vsc_without_downtime_ack', - SOME_UNDELS_EXPIRED_BUT_NOT_COMPLETED = 'some_undels_expired_but_not_completed', - RECEIVE_DOUBLE_SIGN_SLASH_REQUEST = 'receive_double_sign_slash_request', - RECEIVE_SLASH_REQUEST_UNBONDED = 'receive_slash_request_unbonded', - DOWNTIME_SLASH_REQUEST_OUTSTANDING = 'downtime_slash_request_outstanding', - CONSUMER_UPDATE_VAL = 'consumer_update_val', - CONSUMER_DEL_VAL = 'consumer_del_val', - CONSUMER_ADD_VAL = 'consumer_add_val', - MORE_THAN_ONE_THIRD_VAL_POWER_CHANGE = 'more_than_one_third_val_power_change', -} - -export { - P, - C, - UNBONDING_SECONDS_P, - UNBONDING_SECONDS_C, - TRUSTING_SECONDS, - NUM_VALIDATORS, - MAX_VALIDATORS, - SLASH_DOUBLESIGN, - SLASH_DOWNTIME, - JAIL_SECONDS, - BLOCK_SECONDS, - INITIAL_DELEGATOR_TOKENS, - DELEGATE_AMT_MIN, - DELEGATE_AMT_MAX, - UNDELEGATE_AMT_MIN, - UNDELEGATE_AMT_MAX, - ISDOWNTIME_PROBABILITY, - MAX_NUM_PACKETS_FOR_DELIVER, - Event, - MODEL_INIT_STATE, -}; diff --git a/tests/difference/core/model/src/main.ts b/tests/difference/core/model/src/main.ts deleted file mode 100644 index c225155ba5..0000000000 --- a/tests/difference/core/model/src/main.ts +++ /dev/null @@ -1,533 +0,0 @@ -import * as fs from 'fs'; -import _ from 'underscore'; -import timeSpan from 'time-span'; -import cloneDeep from 'clone-deep'; -import { - BlockHistory, - stakingWithoutSlashing, - bondBasedConsumerVotingPower, - validatorSetReplication, -} from './properties.js'; -import { Model } from './model.js'; -import { - createSmallSubsetOfCoveringTraces, - dumpTrace, - forceMakeEmptyDir, - logEventData, -} from './traceUtil.js'; - -import { - Action, - Undelegate, - Delegate, - ConsumerSlash, - UpdateClient, - Deliver, - EndAndBeginBlock, - TraceAction, - Chain, - PartialState, -} from './common.js'; - -import { - P, - C, - NUM_VALIDATORS, - DELEGATE_AMT_MIN, - DELEGATE_AMT_MAX, - UNDELEGATE_AMT_MIN, - UNDELEGATE_AMT_MAX, - ISDOWNTIME_PROBABILITY, - TRUSTING_SECONDS, - BLOCK_SECONDS, - MAX_NUM_PACKETS_FOR_DELIVER, - Event, - MODEL_INIT_STATE, -} from './constants.js'; - -/** - * A mechanism for generating actions (API calls) in a way that - * ensures good coverage of a range of system behaviors. In order - * to achieve this, some bookkeeping state is kept around, that is - * NOT state of the model, but is used to inform the action generation. - * - * For example, we explore behaviors where the IBC clients of the chains - * do not expire. To achieve this, we keep track of the last time a client - */ -class ActionGenerator { - model; - // Was the validator slashed? This is used to prevent jailing all validators - // It does not make sense to jail all validators, because we know this will - // kill the chain, and we want to explore other behaviors. - didSlash = new Array(NUM_VALIDATORS).fill(false); - // For each chain CHAIN, the timestamp contained in the last header from the - // OPPOSING chain that was trusted by the light client on CHAIN. - // This is used to prevent the light clients from expiring. - tLastTrustedHeader = { provider: 0, consumer: 0 }; - // For each chain CHAIN, the timestamp of the last block that was committed - // on CHAIN. - // This is used to prevent the light clients from expiring. - tLastCommit = { provider: 0, consumer: 0 }; - - constructor(model: Model) { - this.model = model; - } - - createCandidateAction = (): Action => { - const kind = _.sample([ - 'Delegate', - 'Undelegate', - 'ConsumerSlash', - 'EndAndBeginBlock', - 'Deliver', - 'UpdateClient', - ]); - if (kind === 'Delegate') { - return { - kind, - val: _.random(0, NUM_VALIDATORS - 1), // Choose any validator - amt: _.random(DELEGATE_AMT_MIN, DELEGATE_AMT_MAX), // An amount - } as Delegate; - } - if (kind === 'Undelegate') { - return { - kind, - val: _.random(0, NUM_VALIDATORS - 1), // Any validator - amt: _.random(UNDELEGATE_AMT_MIN, UNDELEGATE_AMT_MAX), // An amount - } as Undelegate; - } - if (kind === 'ConsumerSlash') { - return { - kind, - val: _.random(0, NUM_VALIDATORS - 1), // Any validator - // Any height up to the current height of the chain - infractionHeight: Math.floor(Math.random() * this.model.h[C]), - // Choose downtime or doublesign - isDowntime: Math.random() < ISDOWNTIME_PROBABILITY, - } as ConsumerSlash; - } - if (kind === 'UpdateClient') { - return { - kind, - // Any chain - chain: _.sample([P, C]) as Chain - } as UpdateClient; - } - if (kind === 'Deliver') { - return { - kind, - chain: _.sample([P, C]) as Chain, // Any chain - numPackets: _.random(1, MAX_NUM_PACKETS_FOR_DELIVER), // Any number of packets - } as Deliver; - } - if (kind === 'EndAndBeginBlock') { - return { - kind, - chain: _.sample([P, C]) as Chain, // Any chain - } as EndAndBeginBlock; - } - throw `kind doesn't match`; - }; - - validAction = (a: Action): boolean => { - if (a.kind === 'Delegate') { - return true; - } - if (a.kind === 'Undelegate') { - return true; - } - if (a.kind === 'ConsumerSlash') { - return 2 <= this.didSlash.filter((x) => !x).length; - } - if (a.kind === 'UpdateClient') { - return true; - } - if (a.kind === 'Deliver') { - return true; - } - if (a.kind === 'EndAndBeginBlock') { - // It is only possible for a chain to progress if progressing - // will not cause its light client to expire. - const chain = (a as EndAndBeginBlock).chain; - return ( - // If this holds, adding BLOCK_SECONDS to the chain time - // will not cause the the last trusted header timestamp - // to fall outside of the trusted period. - this.model.t[chain] + BLOCK_SECONDS < - this.tLastTrustedHeader[chain] + TRUSTING_SECONDS - ); - } - throw `kind doesn't match`; - }; - - /** - * Update internal state to inform rule based action generation - * and prevent generating traces which over approximate the system. - * e.g. traces that expire the light clients or jail all validators. - * @param a action - */ - do = (a: Action) => { - // Update internal state to prevent jailing all validators - if (a.kind === 'ConsumerSlash') { - this.didSlash[(a as ConsumerSlash).val] = true; - } - // Update internal state to prevent expiring light clients - // Client is also updated for Deliver, because this is needed in practice - // for SUT. - if (a.kind === 'UpdateClient' || a.kind === 'Deliver') { - const chain = (a as UpdateClient).chain; - if ( - this.tLastTrustedHeader[chain] + TRUSTING_SECONDS <= - this.model.t[chain] - ) { - // This implies the client has expired. This should not happen. - // Sanity check to make sure. - throw 'Client expired (updateClient), model is not written correctly.'; - } - this.tLastTrustedHeader[chain] = - this.tLastCommit[chain == P ? C : P]; - } - // Update internal state to prevent expiring light clients - if (a.kind === 'EndAndBeginBlock') { - const chain = (a as EndAndBeginBlock).chain; - this.tLastCommit[chain] = this.model.t[chain]; - } - }; - - /** - * Get a sensible (valid) action, which can be executed against the model. - * @returns A valid model action. - */ - get = (): Action => { - // Loop not infinite: some actions are always valid (e.g. Delegate) - /* eslint no-constant-condition: 1*/ - while (true) { - const a = this.createCandidateAction(); - if (this.validAction(a)) { - // Update the internal state of the action generator - this.do(a); - return a; - } - } - }; -} - -/** - * Executes an action against the model, thereby updating the model state. - * @param model The model instance - * @param action The action to be executed against the model - */ -function doAction(model: Model, action: Action): PartialState { - const kind = action.kind; - if (kind === 'Delegate') { - const a = action as Delegate; - model.delegate(a.val, a.amt); - return { - h: model.h[P], - t: model.t[P], - tokens: model.staking.tokens, - delegation: model.staking.delegation, - delegatorTokens: model.staking.delegatorTokens, - }; - } - if (kind === 'Undelegate') { - const a = action as Undelegate; - model.undelegate(a.val, a.amt); - return { - h: model.h[P], - t: model.t[P], - tokens: model.staking.tokens, - delegation: model.staking.delegation, - delegatorTokens: model.staking.delegatorTokens, - }; - } - if (kind === 'ConsumerSlash') { - const a = action as ConsumerSlash; - model.consumerInitiatedSlash(a.val, a.infractionHeight, a.isDowntime); - return { - h: model.h[C], - t: model.t[C], - outstandingDowntime: model.ccvC.outstandingDowntime, - }; - } - if (kind === 'UpdateClient') { - const a = action as UpdateClient; - model.updateClient(a.chain); - return {}; - } - if (kind === 'Deliver') { - const a = action as Deliver; - model.deliver(a.chain, a.numPackets); - if (a.chain === P) { - return { - h: model.h[P], - t: model.t[P], - tokens: model.staking.tokens, - delegation: model.staking.delegation, - delegatorTokens: model.staking.delegatorTokens, - jailed: model.staking.jailed, - status: model.staking.status, - }; - } - if (a.chain === C) { - return { - h: model.h[C], - t: model.t[C], - consumerPower: model.ccvC.consumerPower, - outstandingDowntime: model.ccvC.outstandingDowntime, - }; - } - } - if (kind === 'EndAndBeginBlock') { - const a = action as EndAndBeginBlock; - model.endAndBeginBlock(a.chain); - if (a.chain === P) { - return { - h: model.h[P], - t: model.t[P], - tokens: model.staking.tokens, - delegation: model.staking.delegation, - delegatorTokens: model.staking.delegatorTokens, - jailed: model.staking.jailed, - status: model.staking.status, - }; - } - if (a.chain === C) { - return { - h: model.h[C], - t: model.t[C], - consumerPower: model.ccvC.consumerPower, - outstandingDowntime: model.ccvC.outstandingDowntime, - }; - } - } - throw 'Action kind not recognized'; -} - -/** - * Generates traces by repeatedly creating new model instances - * and executing randomly generated actions against them. - * The trace consists of data including the actions taken, and the - * successive model states that result from the actions. Additional - * data is included - * - * @param seconds Duration to generate traces. - * @param checkProperties If true, will check properties and only write trace - * if property is violated. - */ -function generateTraces(seconds: number, checkProperties: boolean) { - // Compute millis run time - const runTimeMillis = seconds * 1000; - let elapsedMillis = 0; - - // Number of actions to execute against each model instance - // Free parameter! 200 is a good default for this model. - // - // INFO: A number of actions MAY or MAY NOT lead to interesting - // system states. - // A very large number of actions MAY result in a state - // which is 'stuck': further actions change the state very little or - // explore nearby areas. - // A very small number of actions MAY not explore the model - // deeply enough to uncover bugs. - // You should choose this number based on coverage measurements - // and your intuition about the model. - const NUM_ACTIONS = 200; - - // Directory to output traces in json format - const DIR = 'traces/'; - // Make or clear the output directory. WARNING: may delete data. - forceMakeEmptyDir(DIR); - - let i = 0; // Used to measure operations per second - - // Track the model events that occur during the generation process - // this data is used to check that all events are emitted by some - // trace. - const allEvents = []; - - while (elapsedMillis < runTimeMillis) { - i += 1; - const end = timeSpan(); - //////////////////////// - const hist = new BlockHistory(); - // Store all events emitted during trace execution - const events: Event[] = []; - const model = new Model(hist, events, cloneDeep(MODEL_INIT_STATE)); - const actionGenerator = new ActionGenerator(model); - const actions: TraceAction[] = []; - for (let j = 0; j < NUM_ACTIONS; j++) { - const a = actionGenerator.get(); - const partialState = doAction(model, a); - actions.push({ - ix: j, - // Store the action taken - action: a, - // Store the portion of the model state which is relevant - // for checking that this action was processed correctly. - partialState: cloneDeep(partialState), - }); - if (checkProperties) { - // Checking properties is flagged because it is computationally - // expensive. - - // If a property does not hold, we write the trace to file for debugging - // (and replaying). - if (!validatorSetReplication(hist)) { - dumpTrace(`${DIR}trace_${i}.json`, actions, events); - throw 'validatorSetReplication property failure, trace written.'; - } - if (!bondBasedConsumerVotingPower(hist)) { - dumpTrace(`${DIR}trace_${i}.json`, actions, events); - throw 'bondBasedConsumerVotingPower property failure, trace written.'; - } - if (!stakingWithoutSlashing(hist)) { - dumpTrace(`${DIR}trace_${i}.json`, actions, events); - throw 'stakingWithoutSlashing property failure, trace written.'; - } - } - } - // Only write trace if not checking properties because disk IO, - // and we are not interested in the trace if the properties hold. - if (!checkProperties) { - // Write the trace to file, along with metadata. - dumpTrace(`${DIR}trace_${i}.json`, actions, events); - } - // Accumulate all events - allEvents.push(...events); - //////////////////////// - elapsedMillis += end.rounded(); - // Log progress stats - if (i % 10000 === 0) { - console.log( - `done ${i}, actions per second ${(i * NUM_ACTIONS) / (elapsedMillis / 1000) - }`, - ); - } - } - logEventData(allEvents); -} - -/** - * Replays a list of actions against a new model instance. - * This function is best used to debug the model or to debug - * a failing test against the SUT. In this manner it is possible - * to step through the model execution and the SUT execution of trace - * side-by-side. - * - * The model is deterministic, thus a fixed list of actions always - * results in the same behavior and model states. - * - * @param actions - */ -function replayActions(actions: TraceAction[]) { - const hist = new BlockHistory(); - const events: Event[] = []; - const model = new Model(hist, events, MODEL_INIT_STATE); - const actionGenerator = new ActionGenerator(model); - for (let i = 0; i < actions.length; i++) { - const a = actions[i]; - actionGenerator.do(a.action); - doAction(model, a.action); - } -} - -/** - * Takes a path to a json file containing traces and replays the trace - * at the given index, for the given number of actions. - * - * @param fn filename of the file containing the json traces - * @param ix the index of the trace in the json - * @param numActions The number of actions to replay from the trace. If numActions - * is less than the length of the trace, then execution will complete before - * the entire trace has been executed. This helps with debugging because it makes - * logs shorter. - */ -function replayFile(fn: string, ix: number, numActions: number) { - const traces = JSON.parse(fs.readFileSync(fn, 'utf8')); - const trace = traces[ix]; - const traceActions = trace.actions as TraceAction[]; - const actions = traceActions.slice(0, numActions); - replayActions(actions); -} - -console.log(`running main`); - -/* - * Generate new traces and write them to files, for seconds. - * - * Use a mixture of randomness and heuristics to generate random actions - * and run them against the model. This is done many times, and the results - * of each run are written to a file called a trace. - * - * yarn start gen - */ -if (process.argv[2] === 'gen') { - console.log(`gen`); - console.log(`generating traces to /traces`); - const seconds = parseInt(process.argv[3]); - generateTraces(seconds, false); -} else if (process.argv[2] === 'properties') { - /* - * Check properties of the model for seconds. - * - * The system has properties that must be true at all times. We - * can check that the model satisfies these properties by running - * random sequences of actions (as in the gen command) and checking - * that after each action, the model is still in a state that satisfies - * all the properties. - * - * yarn start properties - */ - console.log(`properties`); - console.log(`checking that random executions satisfy properties`); - const seconds = parseInt(process.argv[3]); - generateTraces(seconds, true); -} else if (process.argv[2] === 'subset') { - /* - * Creates a trace file containing several traces, in a way that ensures - * each interesting model event is emitted by some trace. - * - * When generating millions of traces, many of them will be very similar - * and you will not need all of them to get a good test coverage of your system. - * It is useful to select a small subset of the traces, which can be run - * efficiently and which cover all interesting events. - * - * yarn start subset - * - * NOTE: num event instances = n means that the resulting subset of traces will - * overall contain the event at least n times (if possible). If, over all traces, - * the event occurs less than n times, then the subset will include all traces - * including that event. WARNING: make sure that all events are covered! - */ - console.log(`createSmallSubsetOfCoveringTraces`); - console.log(`selecting a small subset of traces that cover all events`); - const outFile = process.argv[3]; - - let eventInstances = 400; // Sensible, conservative default. - - if (3 < process.argv.length) { - eventInstances = parseInt(process.argv[4]); - } - createSmallSubsetOfCoveringTraces(outFile, eventInstances); -} else if (process.argv[2] === 'replay') { - /* - * Replay a trace from a a file, up to a given number of actions. - * - * This is useful for debugging. If you have a failed test, you can - * step through the model and the SUT side-by-side using a debugger - * or print statements. - * - * yarn start replay - */ - console.log(`replay`); - console.log(`replaying the actions of a trace against a new model instance`); - const [fn, traceNum, numActions] = process.argv.slice(3, 6); - replayFile(fn, parseInt(traceNum), parseInt(numActions)); -} else { - console.log(`did not execute any function, please specify a function to run`); -} - -console.log(`finished running main`); - -export { generateTraces as gen }; diff --git a/tests/difference/core/model/src/model.ts b/tests/difference/core/model/src/model.ts deleted file mode 100644 index 94288da416..0000000000 --- a/tests/difference/core/model/src/model.ts +++ /dev/null @@ -1,794 +0,0 @@ -import _ from 'underscore'; -import { BlockHistory } from './properties.js'; -import cloneDeep from 'clone-deep'; -import { strict as assert } from 'node:assert'; - -/** - * This model may need updating pending - * https://github.com/cosmos/ibc/issues/796 (model updated, spec awaiting PR) - */ - -import { - P, - C, - UNBONDING_SECONDS_P, - UNBONDING_SECONDS_C, - NUM_VALIDATORS, - MAX_VALIDATORS, - JAIL_SECONDS, - BLOCK_SECONDS, - Event, -} from './constants.js'; - -import { - Undelegation, - Unval, - Vsc, - VscMaturity, - Packet, - Chain, - Validator, - PacketData, - ConsumerInitiatedSlashPacketData, - PropertiesSystemState, - Status, - ModelInitState, -} from './common.js'; - -/** - * Store outbound packets in FIFO order from a given chain. - * The number of block commits for each packet is stored, - * and deliverable packets can be consumed once they are sufficiently - * committed. This mimics real IBC connections. - */ -class Outbox { - model; - chain; - // [packet, num commits] - fifo: [Packet, number][]; - - constructor(model: Model, chain: Chain) { - this.model = model; - this.chain = chain; - this.fifo = []; - } - - /** - * Adds a packet to the outbox, with 0 commits. - * @param data packet data - */ - add = (data: PacketData) => { - this.fifo.push([ - { - data, - sendHeight: this.model.h[this.chain], - }, - 0, - ]); - }; - - /** - * Get and internally delete deliverable packets from the outbox. - * @param num max num packets to consume - * @returns A list of deliverable packets - */ - consume = (num: number): Packet[] => { - const [available, unavailable] = _.partition( - this.fifo, - (e) => 1 < e[1], - ); - const take = available.slice(0, num); - this.fifo = available.slice(num).concat(unavailable); - return take.map((e) => e[0]); - }; - - /** - * Commit the packets in the outbox. Once a packet has been - * committed twice it is available for delivery, as per the - * ibc light-client functioning. - * - * A packet must be committed once to make it to the chain - * permanently. A packet must be committed twice for IBC - * to deliver it, in practice, because the IBC light client - * requires a header H+1 to process a packet in - */ - commit = () => { - // Bump the number of commits by 1 - this.fifo = this.fifo.map((e) => [e[0], e[1] + 1]); - }; -} - -class Staking { - // Model handle - m; - // Validator delegations from the sole delegator account. - // A fixed descending order is used for the initial values to allow - // easy setup in the SUT. - delegation: number[]; - // Validator tokens. Tokens are equivalent to power, with a ratio 1:1. - // Validator tokens are not equal to delegation, because the validator - // may have tokens from delegation by OTHER delegators, and we model - // a single delegator. - tokens: number[]; - // Validator status - status: Status[]; - // Undelegation queue - undelegationQ: Undelegation[]; - // Unbonding validator queue - validatorQ: Unval[]; - // Validator jail timestamp - // null if validator is not jailed - jailed: (number | null)[]; - // Initial balance of the sole delegator account. - // Only a single delegator is modelled, as this seems sufficient - // to exercise all Interchain Security logic. - delegatorTokens: number; - // Unique ID used to count unbonding and redelegation queue entries, - // as well as unbonding validators. - opID: number; - // maps validator id -> power - // used to compute validator set changes - changes: Record; - // The validators of the last block - lastVals: number[]; - // The number of tokens of the last block - // Used to compute validator power changes used in VSCs - lastTokens: number[]; - - constructor(model: Model, { staking }: ModelInitState) { - this.m = model; - Object.assign(this, staking); - } - - /** - * Compute the new set of active validators - */ - newVals = () => { - const valid = (i: number): boolean => - 1 <= this.tokens[i] && this.jailed[i] === null; - let vals = _.range(NUM_VALIDATORS); - // stable sort => breaks ties based on validator - // address numerical value. This mimics staking module. - vals = _.sortBy(vals, (i) => -this.tokens[i]); - vals = vals.filter(valid); - vals = vals.slice(0, MAX_VALIDATORS); - - assert( - 0 < vals.length, - 'EMPTY VAL SET - not supposed to happen. Model or action generation is wrong.', - ); - - { - // Is at least 2/3 of new active voting power held by - // old validators? - - // How much active power does the old val set have? - const newActivePowerOldVals = this.tokens.reduce( - (sum, x, i) => - // old val and new val - this.lastVals.includes(i) && vals.includes(i) ? sum + x : sum, - 0, - ); - // How much active power is there in total? - const newActivePowerTotal = this.tokens.reduce( - (sum, x, i) => (vals.includes(i) ? sum + x : sum), - 0, - ); - if (newActivePowerOldVals < (2 / 3) * newActivePowerTotal) { - this.m.events.push(Event.MORE_THAN_ONE_THIRD_VAL_POWER_CHANGE); - } - } - return vals; - }; - - endBlockComputeValUpdates = () => { - const oldVals = this.lastVals; - const newVals = this.newVals(); - // Bond new validators - newVals.forEach((i) => { - this.status[i] = Status.BONDED; - const before = this.validatorQ.length; - this.validatorQ = this.validatorQ.filter((e) => e.val != i); - if (this.validatorQ.length != before) { - this.m.events.push(Event.REBOND_UNVAL); - } - }); - // Start unbonding old validators - _.difference(oldVals, newVals) - // sort is necessary because order of iteration - // defines an implicit mapping of opID to unval. - // This must match SUT. - .sort((a, b) => a - b) - .forEach((i) => { - const unval: Unval = { - val: i, - unbondingHeight: this.m.h[P], - unbondingTime: this.m.t[P] + UNBONDING_SECONDS_P, - onHold: true, - opID: this.opID, - }; - this.validatorQ.push(unval); - this.m.ccvP.afterUnbondingInitiated(this.opID); - this.opID += 1; - this.status[i] = Status.UNBONDING; - }); - - // Compute updates - this.changes = {}; - newVals.forEach((i) => { - if (this.tokens[i] != this.lastTokens[i]) { - // validator power changed - this.changes[i] = this.tokens[i]; - } - }); - _.difference(newVals, oldVals).forEach((i) => { - // validator bonded - this.changes[i] = this.tokens[i]; - }); - _.difference(oldVals, newVals).forEach((i) => { - // validator no longer bonded - this.changes[i] = 0; - }); - - // Save the valset and their tokens - // (mimics block commit) - this.lastVals = newVals; - this.lastTokens = _.clone(this.tokens); - }; - - endBlockMaturation = () => { - // Process any unbonding validators that might have matured - const completedUnvals = this.validatorQ.filter( - (e: Unval) => - e.unbondingTime <= this.m.t[P] && - e.unbondingHeight <= this.m.h[P] && - !e.onHold, - ); - completedUnvals.forEach((e: Unval) => { - this.status[e.val] = Status.UNBONDED; - this.m.events.push(Event.COMPLETE_UNVAL_IN_ENDBLOCK); - }); - this.validatorQ = this.validatorQ.filter( - (e) => !completedUnvals.includes(e), - ); - - // Process any undelegations that might have matured - const processedUndels = this.undelegationQ.filter( - (e) => - e.completionTime <= this.m.t[P] && - e.willBeProcessedByStakingModule, - ); - processedUndels.forEach( - (e: Undelegation) => (e.willBeProcessedByStakingModule = false), - ); - const completedUndels = processedUndels.filter((e) => !e.onHold); - if (completedUndels.length < processedUndels.length) { - this.m.events.push(Event.SOME_UNDELS_EXPIRED_BUT_NOT_COMPLETED); - } - this.undelegationQ = this.undelegationQ.filter( - (e: Undelegation) => !completedUndels.includes(e), - ); - if (0 < completedUndels.length) { - this.m.events.push(Event.COMPLETE_UNDEL_IN_ENDBLOCK); - } - // Refund completed undelegations - this.delegatorTokens += completedUndels.reduce( - (x, e) => x + e.balance, - 0, - ); - }; - - endBlock = () => { - this.endBlockComputeValUpdates(); - this.endBlockMaturation(); - }; - - delegate = (val: Validator, amt: number) => { - this.delegatorTokens -= amt; - this.tokens[val] += amt; - this.delegation[val] += amt; - }; - - undelegate = (val: Validator, amt: number) => { - if (this.delegation[val] < amt) { - this.m.events.push(Event.INSUFFICIENT_SHARES); - return; - } - this.tokens[val] -= amt; - this.delegation[val] -= amt; - const und: Undelegation = { - val: val, - creationHeight: this.m.h[P], - completionTime: this.m.t[P] + UNBONDING_SECONDS_P, - balance: amt, - initialBalance: amt, - onHold: true, - opID: this.opID, - willBeProcessedByStakingModule: true, - }; - this.undelegationQ.push(und); - this.m.ccvP.afterUnbondingInitiated(this.opID); - this.opID += 1; - }; - - slash = (val: Validator, infractionHeight: number) => { - const valid = (e: Undelegation): boolean => - e.val === val && - infractionHeight <= e.creationHeight && - (this.m.t[P] < e.completionTime || e.onHold); - const ubds: Undelegation[] = this.undelegationQ.filter(valid); - if (infractionHeight < this.m.h[P]) { - ubds.forEach(() => { - this.m.events.push(Event.SLASH_UNDEL); - }); - } - }; - - jailUntil = (val: Validator, timestamp: number) => { - this.jailed[val] = timestamp; - this.m.events.push(Event.JAIL); - }; - - unbondingCanComplete = (opID: number) => { - { - // Allow maturity of relevant validator - const e = _.find(this.validatorQ, (e) => e.opID === opID); - if (e) { - e.onHold = false; - this.m.events.push(Event.SET_UNVAL_HOLD_FALSE); - return; - } - } - { - // Allow maturity of relevant unbonding delegation - const e = _.find(this.undelegationQ, (e) => e.opID === opID); - if (e) { - if (e.completionTime <= this.m.t[P]) { - this.delegatorTokens += e.balance; - this.undelegationQ = this.undelegationQ.filter((x) => x !== e); - this.m.events.push(Event.COMPLETE_UNDEL_IMMEDIATE); - } else { - e.onHold = false; - this.m.events.push(Event.SET_UNDEL_HOLD_FALSE); - } - } - } - }; - - valUpdates = () => { - return _.clone(this.changes); - }; -} - -class CCVProvider { - m; - // height of onChanOpenConfirm event - initialHeight: number; - // next id to use - vscID: number; - // map ids to height of sending - // used to calculate infraction height from consumer initiated slashing - vscIDtoH: Record; - // map ids to unbonding operation ids - // used to mature unbonding operations when receiving maturity packets - vscIDtoOpIDs: Map; - // validators who have been slashed since last VSC - downtimeSlashAcks: Validator[]; - // is a validator tombstoned? - tombstoned: boolean[]; - // unbonding operations to be completed in EndBlock - matureUnbondingOps: number[]; - // queue of packets to be processed - // there is only one consumer so global queue is not needed - queue: (ConsumerInitiatedSlashPacketData | VscMaturity)[]; - - constructor(model: Model, { ccvP }: ModelInitState) { - this.m = model; - Object.assign(this, ccvP); - } - - endBlockCIS = () => { - this.vscIDtoH[this.vscID] = this.m.h[P] + 1; - this.processPackets(); - }; - - endBlockVSU = () => { - // notify staking module that unbonding operations can complete - this.matureUnbondingOps.forEach((opID) => { - this.m.staking.unbondingCanComplete(opID); - }); - this.matureUnbondingOps = []; - const valUpdates = this.m.staking.valUpdates(); - if ( - 0 < _.keys(valUpdates).length || - this.vscIDtoOpIDs.has(this.vscID) - ) { - if (0 === _.keys(valUpdates).length) { - this.m.events.push(Event.SEND_VSC_NOT_BECAUSE_CHANGE); - } - if (0 < this.downtimeSlashAcks.length) { - this.m.events.push(Event.SEND_VSC_WITH_DOWNTIME_ACK); - } else { - this.m.events.push(Event.SEND_VSC_WITHOUT_DOWNTIME_ACK); - } - const data: Vsc = { - vscID: this.vscID, - updates: valUpdates, - downtimeSlashAcks: this.downtimeSlashAcks, - }; - this.downtimeSlashAcks = []; - this.m.outbox[P].add(data); - } - this.vscID += 1; - }; - - endBlock = () => { - this.endBlockCIS(); - this.endBlockVSU(); - }; - - onReceive = (data: PacketData) => { - - // Drop slash packets for double-sign infraction - if ('isDowntime' in data && ! data.isDowntime) { - this.m.events.push(Event.RECEIVE_DOUBLE_SIGN_SLASH_REQUEST); - return; - } - - /* - TODO: tidy up before merging to main - This is some quick prototyping to get the tests passing - We have 1 consumer chain so the slash queue is the global queue - if the queue is empty we can just process the packet. - */ - if (this.queue.length == 0 && !('isDowntime' in data)) { - // Skip the queue - this.onReceiveVSCMatured(data as VscMaturity); - } else { - this.queue.push(data); - } - }; - - processPackets = () => { - this.queue.forEach((data) => { - // It's sufficient to use isDowntime field as differentiator - if ('isDowntime' in data) { - this.onReceiveSlash(data); - } else { - this.onReceiveVSCMatured(data); - } - }); - this.queue = []; - }; - - onReceiveVSCMatured = (data: VscMaturity) => { - if (this.vscIDtoOpIDs.has(data.vscID)) { - this.vscIDtoOpIDs.get(data.vscID)!.forEach((opID: number) => { - this.matureUnbondingOps.push(opID); - }); - this.vscIDtoOpIDs.delete(data.vscID); - } - }; - - onReceiveSlash = (data: ConsumerInitiatedSlashPacketData) => { - - // Check validator status - if (this.m.staking.status[data.val] === Status.UNBONDED) { - this.m.events.push(Event.RECEIVE_SLASH_REQUEST_UNBONDED); - return; - } - - // - // Soft opt out logic - // - - // Sort token powers from lowest to highest - const tokens = this.m.staking.tokens; - const sortedTokens = Object.values(tokens).sort((a, b) => a - b); - - // Get total power (token is 1:1 to power) - let totalPower = 0; - sortedTokens.forEach((token, _) => { - totalPower += token; - }); - - let smallestNonOptOutPower = -1; - - // Soft opt out threshold is set as 0 as for now soft opt-out is disabled. - // See createConsumerGenesis() in diff test setup.go - const softOptOutThreshold = 0; - - if (softOptOutThreshold == 0) { - smallestNonOptOutPower = 0 - } else { - // get power of the smallest validator that cannot soft opt out - let powerSum = 0; - - for (let i = 0; i < sortedTokens.length; i++) { - powerSum += sortedTokens[i]; - if (powerSum / totalPower > softOptOutThreshold) { - smallestNonOptOutPower = sortedTokens[i]; - break; - } - } - } - - if (smallestNonOptOutPower == -1) { - throw new Error('control flow should not reach here'); - } - - if (this.m.staking.tokens[data.val] < smallestNonOptOutPower) { - // soft opt out if validator power is smaller than smallest power which needs to be up - return; - } - - this.m.events.push(Event.RECEIVE_DOWNTIME_SLASH_REQUEST); - - - if (this.tombstoned[data.val]) { - return; - } - - // jail validator - this.m.staking.jailUntil(data.val, this.m.t[P] + JAIL_SECONDS); - // update slash acks - this.downtimeSlashAcks.push(data.val); - - }; - - afterUnbondingInitiated = (opID: number) => { - if (!this.vscIDtoOpIDs.has(this.vscID)) { - this.vscIDtoOpIDs.set(this.vscID, []); - } - this.vscIDtoOpIDs.get(this.vscID)!.push(opID); - }; -} - -class CCVConsumer { - m; - // maps consumer height h to the id of the last vscid - // received at height h-1 - hToVscID: Record; - // validator power changes pending aggregation - pendingChanges: Record[]; - // maps vscid to earliest timestamp to mature - maturingVscs: Map; - // is there an outstanding downtime operation for a validator? - outstandingDowntime: boolean[]; - // array of validators to power - // value null if validator is not known to consumer - consumerPower: (number | null)[]; - - constructor(model: Model, { ccvC }: ModelInitState) { - this.m = model; - Object.assign(this, ccvC); - } - - beginBlock = () => { - this.hToVscID[this.m.h[C] + 1] = this.hToVscID[this.m.h[C]]; - }; - - endBlockVSU = () => { - // Gather all matured VSCs - const matured = (() => { - const ret: number[] = []; - this.maturingVscs.forEach((time, vscID) => { - if (time <= this.m.t[C]) { - ret.push(vscID); - } - }); - return ret; - })(); - // Send a maturity packet for each matured VSC - matured.forEach((vscID) => { - const data: VscMaturity = { vscID }; - this.m.events.push(Event.CONSUMER_SEND_MATURATION); - this.m.outbox[C].add(data); - this.maturingVscs.delete(vscID); - }); - - // Aggregate and apply validator voting power changes - const changes = (() => { - const ret: Map = new Map(); - this.pendingChanges.forEach((updates) => { - Object.entries(updates).forEach(([val, power]) => - ret.set(parseInt(val), power), - ); - }); - return ret; - })(); - - this.pendingChanges = []; - - changes.forEach((power, val) => { - if (0 < power) { - if (this.consumerPower[val] === null) { - this.m.events.push(Event.CONSUMER_ADD_VAL); - } else { - this.m.events.push(Event.CONSUMER_UPDATE_VAL); - } - this.consumerPower[val] = power; - } else { - this.consumerPower[val] = null; - this.m.events.push(Event.CONSUMER_DEL_VAL); - } - }); - }; - - endBlock = () => { - this.endBlockVSU(); - }; - - onReceive = (data: PacketData) => { - this.onReceiveVSC(data as Vsc); - }; - - onReceiveVSC = (data: Vsc) => { - this.hToVscID[this.m.h[C] + 1] = data.vscID; - this.pendingChanges.push(data.updates); - this.maturingVscs.set(data.vscID, this.m.t[C] + UNBONDING_SECONDS_C); - data.downtimeSlashAcks.forEach((val: Validator) => { - this.m.events.push(Event.RECEIVE_DOWNTIME_SLASH_ACK); - this.outstandingDowntime[val] = false; - }); - }; - - sendSlashRequest = ( - val: Validator, - infractionHeight: number, - isDowntime: boolean, - ) => { - if (isDowntime && this.outstandingDowntime[val]) { - this.m.events.push(Event.DOWNTIME_SLASH_REQUEST_OUTSTANDING); - return; - } - const data: ConsumerInitiatedSlashPacketData = { - val, - vscID: this.hToVscID[infractionHeight], - isDowntime, - }; - this.m.outbox[C].add(data); - if (isDowntime) { - this.m.events.push(Event.SEND_DOWNTIME_SLASH_REQUEST); - this.outstandingDowntime[val] = true; - } else { - this.m.events.push(Event.SEND_DOUBLE_SIGN_SLASH_REQUEST); - } - }; -} - -class Model { - h; - t; // The network outboxes for each chain - outbox: Record = { - provider: new Outbox(this, P), - consumer: new Outbox(this, C), - }; - staking: Staking; - ccvP: CCVProvider; - ccvC: CCVConsumer; - history: BlockHistory; - events: Event[]; - - constructor( - history: BlockHistory, - events: Event[], - state: ModelInitState, - ) { - this.history = history; - this.events = events; - this.h = state.h; - this.t = state.t; - this.staking = new Staking(this, state); - this.ccvP = new CCVProvider(this, state); - this.ccvC = new CCVConsumer(this, state); - // Implicitly, there is already a partial order between - // model initial blocks on P and C because C starts with - // the same validator set as P (and thus must have received - // a packet from P). - this.history.partialOrder.deliver(C, 0, 0); - this.history.commitBlock(P, this.propertiesSystemState()); - this.history.commitBlock(C, this.propertiesSystemState()); - this.beginBlock(P, BLOCK_SECONDS); - this.beginBlock(C, BLOCK_SECONDS); - } - - propertiesSystemState = (): PropertiesSystemState => { - return cloneDeep({ - h: this.h, - t: this.t, - tokens: this.staking.tokens, - status: this.staking.status, - undelegationQ: this.staking.undelegationQ, - delegatorTokens: this.staking.delegatorTokens, - consumerPower: this.ccvC.consumerPower, - vscIDtoH: this.ccvP.vscIDtoH, - hToVscID: this.ccvC.hToVscID - }); - }; - - /* - ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ - ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ - MODEL API - */ - - delegate = (val: number, amt: number) => { - this.staking.delegate(val, amt); - }; - - undelegate = (val: number, amt: number) => { - this.staking.undelegate(val, amt); - }; - - consumerInitiatedSlash = ( - val: number, - infractionHeight: number, - isDowntime: boolean, - ) => { - this.ccvC.sendSlashRequest(val, infractionHeight, isDowntime); - }; - - updateClient = (_: Chain) => { - // noop. We do not explicitly model the client update process - // but we must call this function at appropriate times in order - // to test the SUT using this model. This is because - // if we allow too much time to elapse between updates, the light - // clients in the SUT will expire, and the test will fail. - }; - - deliver = (chain: Chain, num: number) => { - if (chain === P) { - this.outbox[C].consume(num).forEach((p) => { - this.history.partialOrder.deliver(P, p.sendHeight, this.h[P]); - this.ccvP.onReceive(p.data); - }); - } - if (chain === C) { - this.outbox[P].consume(num).forEach((p) => { - this.history.partialOrder.deliver(C, p.sendHeight, this.h[C]); - this.ccvC.onReceive(p.data); - }); - } - }; - - endAndBeginBlock = (chain: Chain) => { - this.endBlock(chain); - this.beginBlock(chain, BLOCK_SECONDS); - }; - - /* - END MODEL API - ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ - ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ - */ - - endBlock = (chain: Chain) => { - if (chain === P) { - // Mimic real provider app behavior - this.staking.endBlock(); - this.ccvP.endBlock(); - } - if (chain === C) { - this.ccvC.endBlock(); - } - // Commit all packets sent by the chain - this.outbox[chain].commit(); - // Record a slice of the system state for checking properties - this.history.commitBlock(chain, this.propertiesSystemState()); - }; - - beginBlock = (chain: Chain, dt: number) => { - this.h[chain] += 1; - this.t[chain] += dt; - if (chain === P) { - // No op. There is nothing interesting - // to do at the beginning of a block on P. - } - if (chain === C) { - this.ccvC.beginBlock(); - } - }; -} - -export { Outbox, Model }; diff --git a/tests/difference/core/model/src/properties.ts b/tests/difference/core/model/src/properties.ts deleted file mode 100644 index 3b4e2d7218..0000000000 --- a/tests/difference/core/model/src/properties.ts +++ /dev/null @@ -1,359 +0,0 @@ -import { strict as assert } from 'node:assert'; -import _ from 'underscore'; -import { - P, - C, - UNBONDING_SECONDS_C, - NUM_VALIDATORS, -} from './constants.js'; -import { - PropertiesSystemState, - Chain, - CommittedBlock, - Status, -} from './common.js'; - -/** - * Queries and data structures in this file are currently naive - * and below optimal. - * Partial order queries and other total order queries in - * bond-based-consumer-voting-power can be done with binary searches. - */ - -/** - * Data structure used to store a partial order of blocks. The partial order - * is induced by packet delivery for blocks on different chains, and by height - * for blocks on the same chain. - * See https://github.com/cosmos/ibc/blob/main/spec/app/ics-028-cross-chain-validation/system_model_and_properties.md#system-properties - */ -class PartialOrder { - // map chain -> block height in chain -> block height in counterparty chain - greatestPred: Record> = { - provider: new Map(), - consumer: new Map(), - }; - // map chain -> block height in chain -> block height in counterparty chain - leastSucc: Record> = { - provider: new Map(), - consumer: new Map(), - }; - - /** - * Mark the delivery of a packet. Induces a partial order between blocks - * on different chains. - * @param receiverChain chain receiving packet - * @param sendHeight send height on sending chain - * @param receiveHeight receive height on receiving chain - */ - deliver = ( - receiverChain: Chain, - sendHeight: number, - receiveHeight: number, - ) => { - let h = sendHeight; - if (this.greatestPred[receiverChain].has(receiveHeight)) { - h = Math.max( - this.greatestPred[receiverChain].get(receiveHeight) as number, - h, - ); - } - this.greatestPred[receiverChain].set(receiveHeight, h); - const senderChain = receiverChain === P ? C : P; - h = receiveHeight; - if (this.leastSucc[senderChain].has(sendHeight)) { - h = Math.min( - this.leastSucc[senderChain].get(sendHeight) as number, - h, - ); - } - this.leastSucc[senderChain].set(sendHeight, h); - }; - - /** - * @param chain chain of block - * @param height height of block - * @returns Returns the height greatest predecessor block on the counterparty - * chain if it exists, else undefined. - */ - getGreatestPred = ( - chain: Chain, - height: number, - ): number | undefined => { - const it = this.greatestPred[chain].keys(); - let bestH = -1; - let bestV = -1; - let result = it.next(); - while (!result.done) { - const h = result.value; - if (bestH < h && h <= height) { - bestH = h; - bestV = this.greatestPred[chain].get(h) as number; - } - result = it.next(); - } - if (bestV === -1) { - // No greatest predecessor exists. - return; - } - return bestV; - }; - - /** - * - * @param chain chain of block - * @param height height of block - * @returns Returns the height of the least successing block on the counterparty - * chain if it exists, else undefined. - */ - getLeastSucc = (chain: Chain, height: number): number | undefined => { - const it = this.leastSucc[chain].keys(); - let bestH = 100000000000000; // Infinity - let bestAnswer = -1; - let result = it.next(); - while (!result.done) { - const h = result.value; - if (h < bestH && height <= h) { - bestH = h; - bestAnswer = this.leastSucc[chain].get(h) as number; - } - result = it.next(); - } - if (bestAnswer === -1) { - // No least successor exists. - return; - } - return bestAnswer; - }; -} - -class BlockHistory { - partialOrder = new PartialOrder(); - blocks: Record> = { - provider: new Map(), - consumer: new Map(), - }; - /** - * Mark state as permanently committed to the blockchain. - * @param chain - * @param propertiesSystemState - */ - commitBlock = (chain: Chain, propertiesSystemState: PropertiesSystemState) => { - const h = propertiesSystemState.h[chain]; - const b: CommittedBlock = { - chain, - propertiesSystemState: propertiesSystemState, - }; - this.blocks[chain].set(h, b); - }; -} - -function sum(arr: number[]): number { - return arr.reduce((sum: number, x: number) => sum + x, 0); -} - -/** - * Is the total fund value in the system constant? - * It only makes sense to check this if slashing with non-zero - * slash factors never occurs, because slashing with non-zero - * slash factors burns funds. - * - * @param hist A history of blocks. - * @returns Is the property satisfied? - */ -function stakingWithoutSlashing(hist: BlockHistory): boolean { - const blocks = Array.from(hist.blocks[P].entries()) - .sort((a, b) => a[0] - b[0]) - .map((e) => e[1]) - .map((b) => b.propertiesSystemState); - - function value(e: PropertiesSystemState) { - let x = e.delegatorTokens; - x += sum(e.tokens); - x += sum(e.undelegationQ.map((e) => e.balance)); - return x; - } - - const v = value(blocks[0]); - for (let i = 1; i < blocks.length; i++) { - if (value(blocks[i]) !== v) { - return false; - } - } - return true; -} - -/** - * Checks the validator set replication property as defined - * https://github.com/cosmos/ibc/blob/main/spec/app/ics-028-cross-chain-validation/system_model_and_properties.md#system-properties - * - * @param hist A history of blocks. - * @returns Is the property satisfied? - */ -function validatorSetReplication(hist: BlockHistory): boolean { - const blocks = hist.blocks; - let good = true; - - // Each committed block on the consumer chain has a last vscID - // received that informs the validator set at the NEXT height. - // Thus, on every received VSCPacket with vscID at height H, - // the consumer sets hToVscID[H+1] to vscID. - // - // The consumer valset is exactly the valset on the provider - // at the NEXT height after the vscID was sent. - // Thus, on every sent VSCPacket with vscID at height H, - // the provider sets vscIDtoH[vscID] to H+1 - // - // As a result, for every height hC on the consumer, the active - // valset was last updated by the VSCPacket with ID vscID = hToVscID[hc]. - // This packet was sent by the provider at height hP-1, with hP = vscIDtoH[vscID]. - // This means that the consumer valset at height hC MUST match - // the provider valset at height hP. - // - // We compare these valsets, which are committed in blocks - // hC-1 and hP-1, respectively (the valset is always used at the NEXT height). - for (const [hC, b] of blocks[C]) { - if (hC < 1) { - // The model starts at consumer height 0, so there is - // no committed block at height - 1. This means it does - // not make sense to try to check the property for height 0. - continue - } - const snapshotC = b.propertiesSystemState; - // Get the vscid of the last update which dictated - // the consumer valset valsetC committed at hC-1 - const vscid = snapshotC.hToVscID[hC]; - // The VSU packet was sent at height hP-1 - const hP = snapshotC.vscIDtoH[vscid]; - // Compare the validator sets at hC-1 and hP-1 - const valsetC = blocks[C].get(hC - 1)!.propertiesSystemState.consumerPower; - // The provider set is implicitly defined by the status and tokens (power) - if (hP < 1) { - // The model starts at provider height 0, so there is - // no committed block at height - 1. This means it does not - // make sense to try to check the property for height 0. - continue - } - const snapshotP = blocks[P].get(hP - 1)!.propertiesSystemState; - const statusP = snapshotP.status; - const tokensP = snapshotP.tokens; - assert(valsetC.length === statusP.length, 'this should never happen.'); - assert(valsetC.length === tokensP.length, 'this should never happen.'); - valsetC.forEach((power, i) => { - if (power !== null) { // null means the validator is not in the set - // Check that the consumer power is strictly equal to the provider power - good = good && (tokensP[i] === power); - } - }) - statusP.forEach((status, i) => { - if (status === Status.BONDED) { - const power = tokensP[i]; - // Check that the consumer power is strictly equal to the provider power - good = good && (valsetC[i] === power); - } - else { - // Ensure that the consumer validator set does not contain a non-bonded validator - good = good && (valsetC[i] === null); - } - }) - - } - return good; -} - -/** - * Checks the bond-based consumer voting power property as defined - * in https://github.com/cosmos/ibc/blob/main/spec/app/ics-028-cross-chain-validation/system_model_and_properties.md#system-properties - * but modified to account for finite executions and always zero slash factors. - * - * @param hist A history of blocks. - * @returns Is the property satisfied? - */ -function bondBasedConsumerVotingPower(hist: BlockHistory): boolean { - const partialOrder = hist.partialOrder; - const blocks = hist.blocks; - /** - * @param block to compute validator voting powers for - * @param hp is the earliest height for unbondings to account for - * @returns burnable voting power for each validator on the Provider chain - */ - function powerProvider(block: CommittedBlock, hp: number): number[] { - return _.range(NUM_VALIDATORS).map((i) => { - let x = 0; - if (block.propertiesSystemState.status[i] !== Status.UNBONDED) { - x += block.propertiesSystemState.tokens[i]; - } - x += sum( - block.propertiesSystemState.undelegationQ - .filter((e) => e.val === i) - .filter((e) => hp <= e.creationHeight) - .map((e) => e.initialBalance), - ); - return x; - }); - } - function powerConsumer(block: CommittedBlock) { - return block.propertiesSystemState.consumerPower; - } - function inner(hc: number): boolean { - const hp = partialOrder.getGreatestPred(C, hc); - assert(hp !== undefined, 'this should never happen.'); - function getHC_() { - const tsHC = (blocks[C].get(hc) as CommittedBlock).propertiesSystemState - .t[C]; - // Get earliest height on consumer - // that a VSC received at hc could mature - const heights = Array.from(blocks[C].keys()).sort((a, b) => a - b); - for (let i = 0; i < heights.length; i++) { - const hc_ = heights[i]; - if ( - tsHC + UNBONDING_SECONDS_C <= - (blocks[C].get(hc_) as CommittedBlock).propertiesSystemState.t[C] - ) { - return hc_; - } - } - return undefined; - } - const hc_ = getHC_(); - let hp_ = undefined; - if (hc_ !== undefined) { - hp_ = partialOrder.getLeastSucc(C, hc_); - } - let limit = Math.max(...Array.from(blocks[P].keys())) + 1; - if (hp_ !== undefined) { - // If provider receives maturation - // only check property up to and not including - // the block at which received. - limit = hp_; - } - for (let h = hp; h < limit; h++) { - for (let i = 0; i < NUM_VALIDATORS; i++) { - const powerP = powerProvider( - blocks[P].get(h) as CommittedBlock, - hp + 1, - ); - const powerC = powerConsumer(blocks[C].get(hc) as CommittedBlock); - if (powerC[i] !== null) { - if (powerP[i] < (powerC[i] as number)) { - return false; - } - } - } - } - return true; - } - return _.reduce( - Array.from(blocks[C].keys()), - (good, hc) => good && inner(hc), - true, - ); -} - -export { - PartialOrder, - CommittedBlock, - BlockHistory, - stakingWithoutSlashing, - bondBasedConsumerVotingPower, - validatorSetReplication, -}; diff --git a/tests/difference/core/model/src/traceUtil.ts b/tests/difference/core/model/src/traceUtil.ts deleted file mode 100644 index 31f7a196c7..0000000000 --- a/tests/difference/core/model/src/traceUtil.ts +++ /dev/null @@ -1,233 +0,0 @@ -import * as fs from 'fs'; -import * as childProcess from 'child_process'; -import _ from 'underscore'; -import { TraceAction } from './common.js'; -import { Event } from './constants.js'; - -import { - P, - C, - UNBONDING_SECONDS_P, - UNBONDING_SECONDS_C, - TRUSTING_SECONDS, - NUM_VALIDATORS, - MAX_VALIDATORS, - SLASH_DOUBLESIGN, - SLASH_DOWNTIME, - JAIL_SECONDS, - BLOCK_SECONDS, - INITIAL_DELEGATOR_TOKENS, - DELEGATE_AMT_MIN, - DELEGATE_AMT_MAX, - UNDELEGATE_AMT_MIN, - UNDELEGATE_AMT_MAX, - ISDOWNTIME_PROBABILITY, - MAX_NUM_PACKETS_FOR_DELIVER, -} from './constants.js'; - -/** - * Record meta data to written traces. - */ -const meta = { - // Commit of interchain-security/ that the trace was generated. - commit: childProcess.execSync('git rev-parse HEAD').toString().trim(), - // Diff between the working tree and the commit. - // diff: childProcess.execSync('git diff').toString().trim(), -}; - -/** - * Forcibly ensure an empty directory exists. - * @param dir directory name - */ -function forceMakeEmptyDir(dir: string) { - if (!fs.existsSync(dir)) { - fs.mkdirSync(dir); - return; - } - fs.rmSync(dir, { recursive: true }); - forceMakeEmptyDir(dir); -} - -/** - * Write the trace data to file, with accompanying metadata. - * - * @param fn Filename - * @param events Events included in trace - * @param actions Actions included in trace - * @param blocks Block snapshots included in trace - */ -function dumpTrace(fn: string, actions: TraceAction[], events: Event[]) { - const toDump = { - // Record metadata - meta, - // Record values of model constants - constants: { - P, - C, - UNBONDING_SECONDS_P, - UNBONDING_SECONDS_C, - TRUSTING_SECONDS, - NUM_VALIDATORS, - MAX_VALIDATORS, - SLASH_DOUBLESIGN, - SLASH_DOWNTIME, - JAIL_SECONDS, - BLOCK_SECONDS, - INITIAL_DELEGATOR_TOKENS, - DELEGATE_AMT_MIN, - DELEGATE_AMT_MAX, - UNDELEGATE_AMT_MIN, - UNDELEGATE_AMT_MAX, - ISDOWNTIME_PROBABILITY, - MAX_NUM_PACKETS_FOR_DELIVER, - }, - // Record which actions occurred - actions, - // Events which occurred - events, - }; - // Write human readable JSON - const json = JSON.stringify([toDump], null); - fs.writeFileSync(fn, json); -} - -/** - * Reads all json traces in traces/ and creates a new trace file - * consisting of a list of several traces. The traces in the new - * trace file are chosen in such a way to ensure a covering of - * each model event. - * The traces are selected according to a greedy algorithm, ensuring - * that each event occurs EVENT_INSTANCES times while somewhat - * minimizing the number of traces included. - * In this way, it is possible to obtain a concise set of traces which - * test many model behaviors, reducing the time needed to test the SUT. - * - * @param outFilePrefix absolute filepath to write output to - * @param targetCntForEventMax max number of times to it each event - */ -function createSmallSubsetOfCoveringTraces( - outFilePrefix: string, - targetCntForEventMax: number, -) { - // directory to read traces from - const DIR = 'traces/'; - // file to write the new traces to - const inputFilenames: string[] = []; - - fs.readdirSync(DIR).forEach((fn) => { - inputFilenames.push(`${DIR}${fn}`); - }); - - const eventNameToCounterIx: Record = {}; - - for (const evt in Event) { - const stringRepr = Event[evt as keyof typeof Event]; - eventNameToCounterIx[stringRepr] = Object.keys(Event).indexOf(evt); - } - - const NUM_EVENTS = Object.keys(Event).length; - - const maxPossibleCntForEvent = new Array(NUM_EVENTS).fill(0); - - const eventCntsByTrace: [string, number[]][] = []; - // For each trace file - inputFilenames.forEach((fn) => { - const trace = JSON.parse(fs.readFileSync(fn, 'utf8'))[0]; - const traceEventCnt: number[] = new Array( - Object.keys(Event).length, - ).fill(0); - // for each event that occurred in the trace - trace.events.forEach((evtName: string) => { - const i = eventNameToCounterIx[evtName]; - // cnt the occurrences in this trace - traceEventCnt[i] += 1; - // cnt the global occurrences - maxPossibleCntForEvent[i] += 1; - }); - eventCntsByTrace.push([fn, traceEventCnt]); - }); - - const targetCntForEvent = maxPossibleCntForEvent.map((x) => - Math.min(x, targetCntForEventMax), - ); - - const accumulatedCntForEvent = new Array(NUM_EVENTS).fill(0); - /** - * Computes greedy score for a event frequency cnt vector - * @param v vector representing event counts - * @returns - */ - function score(v: number[]): number { - let x = 0; - for (let i = 0; i < v.length; i++) { - // How many events of this type are still desired? - const need = Math.max( - targetCntForEvent[i] - accumulatedCntForEvent[i], - 0, - ); - // How many events of this type does this trace have? - const get = v[i]; - x += Math.min(need, get); - } - return x; - } - - const outputFilenames: string[] = []; - // While we have not reached the target occurrence count for all events - while ( - accumulatedCntForEvent.some((x, i) => x < targetCntForEvent[i]) - ) { - // Sort by score descending - eventCntsByTrace.sort((a, b) => score(b[1]) - score(a[1])); - const [fn, traceEventCnt] = eventCntsByTrace.shift()!; - for (let i = 0; i < traceEventCnt.length; i++) { - accumulatedCntForEvent[i] += traceEventCnt[i]; - } - // Use this trace - outputFilenames.push(fn); - } - - // Diagnostic //////////////////////////////////////////// - console.log(`num traces used: `, outputFilenames.length); - for (let i = 0; i < accumulatedCntForEvent.length; i++) { - const evtName = Object.keys(Event)[i]; - const cnt = accumulatedCntForEvent[i]; - console.log(evtName, cnt); - } - ////////////////////////////////////////////////////////// - - // Condense all the traces into one file - const allTraces: any[] = []; - outputFilenames.forEach((fn) => { - const traceJson = JSON.parse(fs.readFileSync(fn, 'utf8')); - const trace = traceJson[0]; - allTraces.push(trace); - }); - fs.writeFileSync(outFilePrefix, JSON.stringify(allTraces)); -} - -/** - * Pretty print the number of times each event occurs. - * @param allEvents A map of event type to number of occurrences - */ -function logEventData(allEvents: Event[]) { - const eventCnt = _.countBy(allEvents, _.identity); - for (const evt in Event) { - const evtName = (Event as any)[evt]; - if (!_.has(eventCnt, evtName)) { - eventCnt[evtName] = 0; - } - } - const cnts = _.chain(eventCnt) - .pairs() - .sortBy((pair) => -pair[1]); - - console.log(cnts); -} - -export { - createSmallSubsetOfCoveringTraces, - dumpTrace, - forceMakeEmptyDir, - logEventData, -}; diff --git a/tests/difference/core/model/tsconfig.json b/tests/difference/core/model/tsconfig.json deleted file mode 100644 index 2a6e221b27..0000000000 --- a/tests/difference/core/model/tsconfig.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "compilerOptions": { - "target": "ES2022", - "module": "node16", - "lib": [ - "ES2022" - ], - "moduleResolution": "Node16", - "rootDir": ".", - "outDir": "build", - "allowSyntheticDefaultImports": true, - "importHelpers": true, - "alwaysStrict": true, - "sourceMap": true, - "forceConsistentCasingInFileNames": true, - "noFallthroughCasesInSwitch": true, - "noImplicitReturns": true, - "noUnusedLocals": true, - "noUnusedParameters": true, - "noImplicitAny": true, - "noImplicitThis": true, - "strictNullChecks": true, - }, - "include": [ - "src/**/*", - "__tests__/**/*" - ] -} \ No newline at end of file diff --git a/tests/difference/core/model/tsconfig.release.json b/tests/difference/core/model/tsconfig.release.json deleted file mode 100644 index f08638c215..0000000000 --- a/tests/difference/core/model/tsconfig.release.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "extends": "./tsconfig.json", - "compilerOptions": { - "sourceMap": false, - "removeComments": true - }, - "include": ["src/**/*"] -} diff --git a/tests/difference/core/model/yarn.lock b/tests/difference/core/model/yarn.lock deleted file mode 100644 index a708e2fa11..0000000000 --- a/tests/difference/core/model/yarn.lock +++ /dev/null @@ -1,2862 +0,0 @@ -# THIS IS AN AUTOGENERATED FILE. DO NOT EDIT THIS FILE DIRECTLY. -# yarn lockfile v1 - - -"@ampproject/remapping@^2.1.0": - version "2.2.0" - resolved "https://registry.yarnpkg.com/@ampproject/remapping/-/remapping-2.2.0.tgz#56c133824780de3174aed5ab6834f3026790154d" - integrity sha512-qRmjj8nj9qmLTQXXmaR1cck3UXSRMPrbsLJAasZpF+t3riI71BXed5ebIOYwQntykeZuhjsdweEc9BxH5Jc26w== - dependencies: - "@jridgewell/gen-mapping" "^0.1.0" - "@jridgewell/trace-mapping" "^0.3.9" - -"@babel/code-frame@^7.0.0", "@babel/code-frame@^7.12.13", "@babel/code-frame@^7.18.6": - version "7.18.6" - resolved "https://registry.yarnpkg.com/@babel/code-frame/-/code-frame-7.18.6.tgz#3b25d38c89600baa2dcc219edfa88a74eb2c427a" - integrity sha512-TDCmlK5eOvH+eH7cdAFlNXeVJqWIQ7gW9tY1GJIpUtFb6CmjVyq2VM3u71bOyR8CRihcCgMUYoDNyLXao3+70Q== - dependencies: - "@babel/highlight" "^7.18.6" - -"@babel/compat-data@^7.18.6": - version "7.18.6" - resolved "https://registry.yarnpkg.com/@babel/compat-data/-/compat-data-7.18.6.tgz#8b37d24e88e8e21c499d4328db80577d8882fa53" - integrity sha512-tzulrgDT0QD6U7BJ4TKVk2SDDg7wlP39P9yAx1RfLy7vP/7rsDRlWVfbWxElslu56+r7QOhB2NSDsabYYruoZQ== - -"@babel/core@^7.11.6", "@babel/core@^7.12.3": - version "7.18.6" - resolved "https://registry.yarnpkg.com/@babel/core/-/core-7.18.6.tgz#54a107a3c298aee3fe5e1947a6464b9b6faca03d" - integrity sha512-cQbWBpxcbbs/IUredIPkHiAGULLV8iwgNRMFzvbhEXISp4f3rUUXE5+TIw6KwUWUR3DwyI6gmBRnmAtYaWehwQ== - dependencies: - "@ampproject/remapping" "^2.1.0" - "@babel/code-frame" "^7.18.6" - "@babel/generator" "^7.18.6" - "@babel/helper-compilation-targets" "^7.18.6" - "@babel/helper-module-transforms" "^7.18.6" - "@babel/helpers" "^7.18.6" - "@babel/parser" "^7.18.6" - "@babel/template" "^7.18.6" - "@babel/traverse" "^7.18.6" - "@babel/types" "^7.18.6" - convert-source-map "^1.7.0" - debug "^4.1.0" - gensync "^1.0.0-beta.2" - json5 "^2.2.1" - semver "^6.3.0" - -"@babel/generator@^7.18.6", "@babel/generator@^7.7.2": - version "7.18.7" - resolved "https://registry.yarnpkg.com/@babel/generator/-/generator-7.18.7.tgz#2aa78da3c05aadfc82dbac16c99552fc802284bd" - integrity sha512-shck+7VLlY72a2w9c3zYWuE1pwOKEiQHV7GTUbSnhyl5eu3i04t30tBY82ZRWrDfo3gkakCFtevExnxbkf2a3A== - dependencies: - "@babel/types" "^7.18.7" - "@jridgewell/gen-mapping" "^0.3.2" - jsesc "^2.5.1" - -"@babel/helper-compilation-targets@^7.18.6": - version "7.18.6" - resolved "https://registry.yarnpkg.com/@babel/helper-compilation-targets/-/helper-compilation-targets-7.18.6.tgz#18d35bfb9f83b1293c22c55b3d576c1315b6ed96" - integrity sha512-vFjbfhNCzqdeAtZflUFrG5YIFqGTqsctrtkZ1D/NB0mDW9TwW3GmmUepYY4G9wCET5rY5ugz4OGTcLd614IzQg== - dependencies: - "@babel/compat-data" "^7.18.6" - "@babel/helper-validator-option" "^7.18.6" - browserslist "^4.20.2" - semver "^6.3.0" - -"@babel/helper-environment-visitor@^7.18.6": - version "7.18.6" - resolved "https://registry.yarnpkg.com/@babel/helper-environment-visitor/-/helper-environment-visitor-7.18.6.tgz#b7eee2b5b9d70602e59d1a6cad7dd24de7ca6cd7" - integrity sha512-8n6gSfn2baOY+qlp+VSzsosjCVGFqWKmDF0cCWOybh52Dw3SEyoWR1KrhMJASjLwIEkkAufZ0xvr+SxLHSpy2Q== - -"@babel/helper-function-name@^7.18.6": - version "7.18.6" - resolved "https://registry.yarnpkg.com/@babel/helper-function-name/-/helper-function-name-7.18.6.tgz#8334fecb0afba66e6d87a7e8c6bb7fed79926b83" - integrity sha512-0mWMxV1aC97dhjCah5U5Ua7668r5ZmSC2DLfH2EZnf9c3/dHZKiFa5pRLMH5tjSl471tY6496ZWk/kjNONBxhw== - dependencies: - "@babel/template" "^7.18.6" - "@babel/types" "^7.18.6" - -"@babel/helper-hoist-variables@^7.18.6": - version "7.18.6" - resolved "https://registry.yarnpkg.com/@babel/helper-hoist-variables/-/helper-hoist-variables-7.18.6.tgz#d4d2c8fb4baeaa5c68b99cc8245c56554f926678" - integrity sha512-UlJQPkFqFULIcyW5sbzgbkxn2FKRgwWiRexcuaR8RNJRy8+LLveqPjwZV/bwrLZCN0eUHD/x8D0heK1ozuoo6Q== - dependencies: - "@babel/types" "^7.18.6" - -"@babel/helper-module-imports@^7.18.6": - version "7.18.6" - resolved "https://registry.yarnpkg.com/@babel/helper-module-imports/-/helper-module-imports-7.18.6.tgz#1e3ebdbbd08aad1437b428c50204db13c5a3ca6e" - integrity sha512-0NFvs3VkuSYbFi1x2Vd6tKrywq+z/cLeYC/RJNFrIX/30Bf5aiGYbtvGXolEktzJH8o5E5KJ3tT+nkxuuZFVlA== - dependencies: - "@babel/types" "^7.18.6" - -"@babel/helper-module-transforms@^7.18.6": - version "7.18.6" - resolved "https://registry.yarnpkg.com/@babel/helper-module-transforms/-/helper-module-transforms-7.18.6.tgz#57e3ca669e273d55c3cda55e6ebf552f37f483c8" - integrity sha512-L//phhB4al5uucwzlimruukHB3jRd5JGClwRMD/ROrVjXfLqovYnvQrK/JK36WYyVwGGO7OD3kMyVTjx+WVPhw== - dependencies: - "@babel/helper-environment-visitor" "^7.18.6" - "@babel/helper-module-imports" "^7.18.6" - "@babel/helper-simple-access" "^7.18.6" - "@babel/helper-split-export-declaration" "^7.18.6" - "@babel/helper-validator-identifier" "^7.18.6" - "@babel/template" "^7.18.6" - "@babel/traverse" "^7.18.6" - "@babel/types" "^7.18.6" - -"@babel/helper-plugin-utils@^7.0.0", "@babel/helper-plugin-utils@^7.10.4", "@babel/helper-plugin-utils@^7.12.13", "@babel/helper-plugin-utils@^7.14.5", "@babel/helper-plugin-utils@^7.18.6", "@babel/helper-plugin-utils@^7.8.0": - version "7.18.6" - resolved "https://registry.yarnpkg.com/@babel/helper-plugin-utils/-/helper-plugin-utils-7.18.6.tgz#9448974dd4fb1d80fefe72e8a0af37809cd30d6d" - integrity sha512-gvZnm1YAAxh13eJdkb9EWHBnF3eAub3XTLCZEehHT2kWxiKVRL64+ae5Y6Ivne0mVHmMYKT+xWgZO+gQhuLUBg== - -"@babel/helper-simple-access@^7.18.6": - version "7.18.6" - resolved "https://registry.yarnpkg.com/@babel/helper-simple-access/-/helper-simple-access-7.18.6.tgz#d6d8f51f4ac2978068df934b569f08f29788c7ea" - integrity sha512-iNpIgTgyAvDQpDj76POqg+YEt8fPxx3yaNBg3S30dxNKm2SWfYhD0TGrK/Eu9wHpUW63VQU894TsTg+GLbUa1g== - dependencies: - "@babel/types" "^7.18.6" - -"@babel/helper-split-export-declaration@^7.18.6": - version "7.18.6" - resolved "https://registry.yarnpkg.com/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.18.6.tgz#7367949bc75b20c6d5a5d4a97bba2824ae8ef075" - integrity sha512-bde1etTx6ZyTmobl9LLMMQsaizFVZrquTEHOqKeQESMKo4PlObf+8+JA25ZsIpZhT/WEd39+vOdLXAFG/nELpA== - dependencies: - "@babel/types" "^7.18.6" - -"@babel/helper-validator-identifier@^7.18.6": - version "7.18.6" - resolved "https://registry.yarnpkg.com/@babel/helper-validator-identifier/-/helper-validator-identifier-7.18.6.tgz#9c97e30d31b2b8c72a1d08984f2ca9b574d7a076" - integrity sha512-MmetCkz9ej86nJQV+sFCxoGGrUbU3q02kgLciwkrt9QqEB7cP39oKEY0PakknEO0Gu20SskMRi+AYZ3b1TpN9g== - -"@babel/helper-validator-option@^7.18.6": - version "7.18.6" - resolved "https://registry.yarnpkg.com/@babel/helper-validator-option/-/helper-validator-option-7.18.6.tgz#bf0d2b5a509b1f336099e4ff36e1a63aa5db4db8" - integrity sha512-XO7gESt5ouv/LRJdrVjkShckw6STTaB7l9BrpBaAHDeF5YZT+01PCwmR0SJHnkW6i8OwW/EVWRShfi4j2x+KQw== - -"@babel/helpers@^7.18.6": - version "7.18.6" - resolved "https://registry.yarnpkg.com/@babel/helpers/-/helpers-7.18.6.tgz#4c966140eaa1fcaa3d5a8c09d7db61077d4debfd" - integrity sha512-vzSiiqbQOghPngUYt/zWGvK3LAsPhz55vc9XNN0xAl2gV4ieShI2OQli5duxWHD+72PZPTKAcfcZDE1Cwc5zsQ== - dependencies: - "@babel/template" "^7.18.6" - "@babel/traverse" "^7.18.6" - "@babel/types" "^7.18.6" - -"@babel/highlight@^7.18.6": - version "7.18.6" - resolved "https://registry.yarnpkg.com/@babel/highlight/-/highlight-7.18.6.tgz#81158601e93e2563795adcbfbdf5d64be3f2ecdf" - integrity sha512-u7stbOuYjaPezCuLj29hNW1v64M2Md2qupEKP1fHc7WdOA3DgLh37suiSrZYY7haUB7iBeQZ9P1uiRF359do3g== - dependencies: - "@babel/helper-validator-identifier" "^7.18.6" - chalk "^2.0.0" - js-tokens "^4.0.0" - -"@babel/parser@^7.1.0", "@babel/parser@^7.14.7", "@babel/parser@^7.18.6": - version "7.18.6" - resolved "https://registry.yarnpkg.com/@babel/parser/-/parser-7.18.6.tgz#845338edecad65ebffef058d3be851f1d28a63bc" - integrity sha512-uQVSa9jJUe/G/304lXspfWVpKpK4euFLgGiMQFOCpM/bgcAdeoHwi/OQz23O9GK2osz26ZiXRRV9aV+Yl1O8tw== - -"@babel/plugin-syntax-async-generators@^7.8.4": - version "7.8.4" - resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-async-generators/-/plugin-syntax-async-generators-7.8.4.tgz#a983fb1aeb2ec3f6ed042a210f640e90e786fe0d" - integrity sha512-tycmZxkGfZaxhMRbXlPXuVFpdWlXpir2W4AMhSJgRKzk/eDlIXOhb2LHWoLpDF7TEHylV5zNhykX6KAgHJmTNw== - dependencies: - "@babel/helper-plugin-utils" "^7.8.0" - -"@babel/plugin-syntax-bigint@^7.8.3": - version "7.8.3" - resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-bigint/-/plugin-syntax-bigint-7.8.3.tgz#4c9a6f669f5d0cdf1b90a1671e9a146be5300cea" - integrity sha512-wnTnFlG+YxQm3vDxpGE57Pj0srRU4sHE/mDkt1qv2YJJSeUAec2ma4WLUnUPeKjyrfntVwe/N6dCXpU+zL3Npg== - dependencies: - "@babel/helper-plugin-utils" "^7.8.0" - -"@babel/plugin-syntax-class-properties@^7.8.3": - version "7.12.13" - resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-class-properties/-/plugin-syntax-class-properties-7.12.13.tgz#b5c987274c4a3a82b89714796931a6b53544ae10" - integrity sha512-fm4idjKla0YahUNgFNLCB0qySdsoPiZP3iQE3rky0mBUtMZ23yDJ9SJdg6dXTSDnulOVqiF3Hgr9nbXvXTQZYA== - dependencies: - "@babel/helper-plugin-utils" "^7.12.13" - -"@babel/plugin-syntax-import-meta@^7.8.3": - version "7.10.4" - resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-import-meta/-/plugin-syntax-import-meta-7.10.4.tgz#ee601348c370fa334d2207be158777496521fd51" - integrity sha512-Yqfm+XDx0+Prh3VSeEQCPU81yC+JWZ2pDPFSS4ZdpfZhp4MkFMaDC1UqseovEKwSUpnIL7+vK+Clp7bfh0iD7g== - dependencies: - "@babel/helper-plugin-utils" "^7.10.4" - -"@babel/plugin-syntax-json-strings@^7.8.3": - version "7.8.3" - resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-json-strings/-/plugin-syntax-json-strings-7.8.3.tgz#01ca21b668cd8218c9e640cb6dd88c5412b2c96a" - integrity sha512-lY6kdGpWHvjoe2vk4WrAapEuBR69EMxZl+RoGRhrFGNYVK8mOPAW8VfbT/ZgrFbXlDNiiaxQnAtgVCZ6jv30EA== - dependencies: - "@babel/helper-plugin-utils" "^7.8.0" - -"@babel/plugin-syntax-logical-assignment-operators@^7.8.3": - version "7.10.4" - resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-logical-assignment-operators/-/plugin-syntax-logical-assignment-operators-7.10.4.tgz#ca91ef46303530448b906652bac2e9fe9941f699" - integrity sha512-d8waShlpFDinQ5MtvGU9xDAOzKH47+FFoney2baFIoMr952hKOLp1HR7VszoZvOsV/4+RRszNY7D17ba0te0ig== - dependencies: - "@babel/helper-plugin-utils" "^7.10.4" - -"@babel/plugin-syntax-nullish-coalescing-operator@^7.8.3": - version "7.8.3" - resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-nullish-coalescing-operator/-/plugin-syntax-nullish-coalescing-operator-7.8.3.tgz#167ed70368886081f74b5c36c65a88c03b66d1a9" - integrity sha512-aSff4zPII1u2QD7y+F8oDsz19ew4IGEJg9SVW+bqwpwtfFleiQDMdzA/R+UlWDzfnHFCxxleFT0PMIrR36XLNQ== - dependencies: - "@babel/helper-plugin-utils" "^7.8.0" - -"@babel/plugin-syntax-numeric-separator@^7.8.3": - version "7.10.4" - resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-numeric-separator/-/plugin-syntax-numeric-separator-7.10.4.tgz#b9b070b3e33570cd9fd07ba7fa91c0dd37b9af97" - integrity sha512-9H6YdfkcK/uOnY/K7/aA2xpzaAgkQn37yzWUMRK7OaPOqOpGS1+n0H5hxT9AUw9EsSjPW8SVyMJwYRtWs3X3ug== - dependencies: - "@babel/helper-plugin-utils" "^7.10.4" - -"@babel/plugin-syntax-object-rest-spread@^7.8.3": - version "7.8.3" - resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-object-rest-spread/-/plugin-syntax-object-rest-spread-7.8.3.tgz#60e225edcbd98a640332a2e72dd3e66f1af55871" - integrity sha512-XoqMijGZb9y3y2XskN+P1wUGiVwWZ5JmoDRwx5+3GmEplNyVM2s2Dg8ILFQm8rWM48orGy5YpI5Bl8U1y7ydlA== - dependencies: - "@babel/helper-plugin-utils" "^7.8.0" - -"@babel/plugin-syntax-optional-catch-binding@^7.8.3": - version "7.8.3" - resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-optional-catch-binding/-/plugin-syntax-optional-catch-binding-7.8.3.tgz#6111a265bcfb020eb9efd0fdfd7d26402b9ed6c1" - integrity sha512-6VPD0Pc1lpTqw0aKoeRTMiB+kWhAoT24PA+ksWSBrFtl5SIRVpZlwN3NNPQjehA2E/91FV3RjLWoVTglWcSV3Q== - dependencies: - "@babel/helper-plugin-utils" "^7.8.0" - -"@babel/plugin-syntax-optional-chaining@^7.8.3": - version "7.8.3" - resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-optional-chaining/-/plugin-syntax-optional-chaining-7.8.3.tgz#4f69c2ab95167e0180cd5336613f8c5788f7d48a" - integrity sha512-KoK9ErH1MBlCPxV0VANkXW2/dw4vlbGDrFgz8bmUsBGYkFRcbRwMh6cIJubdPrkxRwuGdtCk0v/wPTKbQgBjkg== - dependencies: - "@babel/helper-plugin-utils" "^7.8.0" - -"@babel/plugin-syntax-top-level-await@^7.8.3": - version "7.14.5" - resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-top-level-await/-/plugin-syntax-top-level-await-7.14.5.tgz#c1cfdadc35a646240001f06138247b741c34d94c" - integrity sha512-hx++upLv5U1rgYfwe1xBQUhRmU41NEvpUvrp8jkrSCdvGSnM5/qdRMtylJ6PG5OFkBaHkbTAKTnd3/YyESRHFw== - dependencies: - "@babel/helper-plugin-utils" "^7.14.5" - -"@babel/plugin-syntax-typescript@^7.7.2": - version "7.18.6" - resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-typescript/-/plugin-syntax-typescript-7.18.6.tgz#1c09cd25795c7c2b8a4ba9ae49394576d4133285" - integrity sha512-mAWAuq4rvOepWCBid55JuRNvpTNf2UGVgoz4JV0fXEKolsVZDzsa4NqCef758WZJj/GDu0gVGItjKFiClTAmZA== - dependencies: - "@babel/helper-plugin-utils" "^7.18.6" - -"@babel/template@^7.18.6", "@babel/template@^7.3.3": - version "7.18.6" - resolved "https://registry.yarnpkg.com/@babel/template/-/template-7.18.6.tgz#1283f4993e00b929d6e2d3c72fdc9168a2977a31" - integrity sha512-JoDWzPe+wgBsTTgdnIma3iHNFC7YVJoPssVBDjiHfNlyt4YcunDtcDOUmfVDfCK5MfdsaIoX9PkijPhjH3nYUw== - dependencies: - "@babel/code-frame" "^7.18.6" - "@babel/parser" "^7.18.6" - "@babel/types" "^7.18.6" - -"@babel/traverse@^7.18.6", "@babel/traverse@^7.7.2": - version "7.18.6" - resolved "https://registry.yarnpkg.com/@babel/traverse/-/traverse-7.18.6.tgz#a228562d2f46e89258efa4ddd0416942e2fd671d" - integrity sha512-zS/OKyqmD7lslOtFqbscH6gMLFYOfG1YPqCKfAW5KrTeolKqvB8UelR49Fpr6y93kYkW2Ik00mT1LOGiAGvizw== - dependencies: - "@babel/code-frame" "^7.18.6" - "@babel/generator" "^7.18.6" - "@babel/helper-environment-visitor" "^7.18.6" - "@babel/helper-function-name" "^7.18.6" - "@babel/helper-hoist-variables" "^7.18.6" - "@babel/helper-split-export-declaration" "^7.18.6" - "@babel/parser" "^7.18.6" - "@babel/types" "^7.18.6" - debug "^4.1.0" - globals "^11.1.0" - -"@babel/types@^7.0.0", "@babel/types@^7.18.6", "@babel/types@^7.18.7", "@babel/types@^7.3.0", "@babel/types@^7.3.3": - version "7.18.7" - resolved "https://registry.yarnpkg.com/@babel/types/-/types-7.18.7.tgz#a4a2c910c15040ea52cdd1ddb1614a65c8041726" - integrity sha512-QG3yxTcTIBoAcQmkCs+wAPYZhu7Dk9rXKacINfNbdJDNERTbLQbHGyVG8q/YGMPeCJRIhSY0+fTc5+xuh6WPSQ== - dependencies: - "@babel/helper-validator-identifier" "^7.18.6" - to-fast-properties "^2.0.0" - -"@bcoe/v8-coverage@^0.2.3": - version "0.2.3" - resolved "https://registry.yarnpkg.com/@bcoe/v8-coverage/-/v8-coverage-0.2.3.tgz#75a2e8b51cb758a7553d6804a5932d7aace75c39" - integrity sha512-0hYQ8SB4Db5zvZB4axdMHGwEaQjkZzFjQiN9LVYvIFB2nSUHW9tYpxWriPrWDASIxiaXax83REcLxuSdnGPZtw== - -"@eslint/eslintrc@^1.3.0": - version "1.3.0" - resolved "https://registry.yarnpkg.com/@eslint/eslintrc/-/eslintrc-1.3.0.tgz#29f92c30bb3e771e4a2048c95fa6855392dfac4f" - integrity sha512-UWW0TMTmk2d7hLcWD1/e2g5HDM/HQ3csaLSqXCfqwh4uNDuNqlaKWXmEsL4Cs41Z0KnILNvwbHAah3C2yt06kw== - dependencies: - ajv "^6.12.4" - debug "^4.3.2" - espree "^9.3.2" - globals "^13.15.0" - ignore "^5.2.0" - import-fresh "^3.2.1" - js-yaml "^4.1.0" - minimatch "^3.1.2" - strip-json-comments "^3.1.1" - -"@humanwhocodes/config-array@^0.9.2": - version "0.9.5" - resolved "https://registry.yarnpkg.com/@humanwhocodes/config-array/-/config-array-0.9.5.tgz#2cbaf9a89460da24b5ca6531b8bbfc23e1df50c7" - integrity sha512-ObyMyWxZiCu/yTisA7uzx81s40xR2fD5Cg/2Kq7G02ajkNubJf6BopgDTmDyc3U7sXpNKM8cYOw7s7Tyr+DnCw== - dependencies: - "@humanwhocodes/object-schema" "^1.2.1" - debug "^4.1.1" - minimatch "^3.0.4" - -"@humanwhocodes/object-schema@^1.2.1": - version "1.2.1" - resolved "https://registry.yarnpkg.com/@humanwhocodes/object-schema/-/object-schema-1.2.1.tgz#b520529ec21d8e5945a1851dfd1c32e94e39ff45" - integrity sha512-ZnQMnLV4e7hDlUvw8H+U8ASL02SS2Gn6+9Ac3wGGLIe7+je2AeAOxPY+izIPJDfFDb7eDjev0Us8MO1iFRN8hA== - -"@istanbuljs/load-nyc-config@^1.0.0": - version "1.1.0" - resolved "https://registry.yarnpkg.com/@istanbuljs/load-nyc-config/-/load-nyc-config-1.1.0.tgz#fd3db1d59ecf7cf121e80650bb86712f9b55eced" - integrity sha512-VjeHSlIzpv/NyD3N0YuHfXOPDIixcA1q2ZV98wsMqcYlPmv2n3Yb2lYP9XMElnaFVXg5A7YLTeLu6V84uQDjmQ== - dependencies: - camelcase "^5.3.1" - find-up "^4.1.0" - get-package-type "^0.1.0" - js-yaml "^3.13.1" - resolve-from "^5.0.0" - -"@istanbuljs/schema@^0.1.2": - version "0.1.3" - resolved "https://registry.yarnpkg.com/@istanbuljs/schema/-/schema-0.1.3.tgz#e45e384e4b8ec16bce2fd903af78450f6bf7ec98" - integrity sha512-ZXRY4jNvVgSVQ8DL3LTcakaAtXwTVUxE81hslsyD2AtoXW/wVob10HkOJ1X/pAlcI7D+2YoZKg5do8G/w6RYgA== - -"@jest/console@^28.1.1": - version "28.1.1" - resolved "https://registry.yarnpkg.com/@jest/console/-/console-28.1.1.tgz#305f8ca50b6e70413839f54c0e002b60a0f2fd7d" - integrity sha512-0RiUocPVFEm3WRMOStIHbRWllG6iW6E3/gUPnf4lkrVFyXIIDeCe+vlKeYyFOMhB2EPE6FLFCNADSOOQMaqvyA== - dependencies: - "@jest/types" "^28.1.1" - "@types/node" "*" - chalk "^4.0.0" - jest-message-util "^28.1.1" - jest-util "^28.1.1" - slash "^3.0.0" - -"@jest/core@^28.1.2": - version "28.1.2" - resolved "https://registry.yarnpkg.com/@jest/core/-/core-28.1.2.tgz#eac519b9acbd154313854b8823a47b5c645f785a" - integrity sha512-Xo4E+Sb/nZODMGOPt2G3cMmCBqL4/W2Ijwr7/mrXlq4jdJwcFQ/9KrrJZT2adQRk2otVBXXOz1GRQ4Z5iOgvRQ== - dependencies: - "@jest/console" "^28.1.1" - "@jest/reporters" "^28.1.2" - "@jest/test-result" "^28.1.1" - "@jest/transform" "^28.1.2" - "@jest/types" "^28.1.1" - "@types/node" "*" - ansi-escapes "^4.2.1" - chalk "^4.0.0" - ci-info "^3.2.0" - exit "^0.1.2" - graceful-fs "^4.2.9" - jest-changed-files "^28.0.2" - jest-config "^28.1.2" - jest-haste-map "^28.1.1" - jest-message-util "^28.1.1" - jest-regex-util "^28.0.2" - jest-resolve "^28.1.1" - jest-resolve-dependencies "^28.1.2" - jest-runner "^28.1.2" - jest-runtime "^28.1.2" - jest-snapshot "^28.1.2" - jest-util "^28.1.1" - jest-validate "^28.1.1" - jest-watcher "^28.1.1" - micromatch "^4.0.4" - pretty-format "^28.1.1" - rimraf "^3.0.0" - slash "^3.0.0" - strip-ansi "^6.0.0" - -"@jest/environment@^28.1.2": - version "28.1.2" - resolved "https://registry.yarnpkg.com/@jest/environment/-/environment-28.1.2.tgz#94a052c0c5f9f8c8e6d13ea6da78dbc5d7d9b85b" - integrity sha512-I0CR1RUMmOzd0tRpz10oUfaChBWs+/Hrvn5xYhMEF/ZqrDaaeHwS8yDBqEWCrEnkH2g+WE/6g90oBv3nKpcm8Q== - dependencies: - "@jest/fake-timers" "^28.1.2" - "@jest/types" "^28.1.1" - "@types/node" "*" - jest-mock "^28.1.1" - -"@jest/expect-utils@^28.1.1": - version "28.1.1" - resolved "https://registry.yarnpkg.com/@jest/expect-utils/-/expect-utils-28.1.1.tgz#d84c346025b9f6f3886d02c48a6177e2b0360587" - integrity sha512-n/ghlvdhCdMI/hTcnn4qV57kQuV9OTsZzH1TTCVARANKhl6hXJqLKUkwX69ftMGpsbpt96SsDD8n8LD2d9+FRw== - dependencies: - jest-get-type "^28.0.2" - -"@jest/expect@^28.1.2": - version "28.1.2" - resolved "https://registry.yarnpkg.com/@jest/expect/-/expect-28.1.2.tgz#0b25acedff46e1e1e5606285306c8a399c12534f" - integrity sha512-HBzyZBeFBiOelNbBKN0pilWbbrGvwDUwAqMC46NVJmWm8AVkuE58NbG1s7DR4cxFt4U5cVLxofAoHxgvC5MyOw== - dependencies: - expect "^28.1.1" - jest-snapshot "^28.1.2" - -"@jest/fake-timers@^28.1.2": - version "28.1.2" - resolved "https://registry.yarnpkg.com/@jest/fake-timers/-/fake-timers-28.1.2.tgz#d49e8ee4e02ba85a6e844a52a5e7c59c23e3b76f" - integrity sha512-xSYEI7Y0D5FbZN2LsCUj/EKRR1zfQYmGuAUVh6xTqhx7V5JhjgMcK5Pa0iR6WIk0GXiHDe0Ke4A+yERKE9saqg== - dependencies: - "@jest/types" "^28.1.1" - "@sinonjs/fake-timers" "^9.1.2" - "@types/node" "*" - jest-message-util "^28.1.1" - jest-mock "^28.1.1" - jest-util "^28.1.1" - -"@jest/globals@^28.1.2": - version "28.1.2" - resolved "https://registry.yarnpkg.com/@jest/globals/-/globals-28.1.2.tgz#92fab296e337c7309c25e4202fb724f62249d83f" - integrity sha512-cz0lkJVDOtDaYhvT3Fv2U1B6FtBnV+OpEyJCzTHM1fdoTsU4QNLAt/H4RkiwEUU+dL4g/MFsoTuHeT2pvbo4Hg== - dependencies: - "@jest/environment" "^28.1.2" - "@jest/expect" "^28.1.2" - "@jest/types" "^28.1.1" - -"@jest/reporters@^28.1.2": - version "28.1.2" - resolved "https://registry.yarnpkg.com/@jest/reporters/-/reporters-28.1.2.tgz#0327be4ce4d0d9ae49e7908656f89669d0c2a260" - integrity sha512-/whGLhiwAqeCTmQEouSigUZJPVl7sW8V26EiboImL+UyXznnr1a03/YZ2BX8OlFw0n+Zlwu+EZAITZtaeRTxyA== - dependencies: - "@bcoe/v8-coverage" "^0.2.3" - "@jest/console" "^28.1.1" - "@jest/test-result" "^28.1.1" - "@jest/transform" "^28.1.2" - "@jest/types" "^28.1.1" - "@jridgewell/trace-mapping" "^0.3.13" - "@types/node" "*" - chalk "^4.0.0" - collect-v8-coverage "^1.0.0" - exit "^0.1.2" - glob "^7.1.3" - graceful-fs "^4.2.9" - istanbul-lib-coverage "^3.0.0" - istanbul-lib-instrument "^5.1.0" - istanbul-lib-report "^3.0.0" - istanbul-lib-source-maps "^4.0.0" - istanbul-reports "^3.1.3" - jest-message-util "^28.1.1" - jest-util "^28.1.1" - jest-worker "^28.1.1" - slash "^3.0.0" - string-length "^4.0.1" - strip-ansi "^6.0.0" - terminal-link "^2.0.0" - v8-to-istanbul "^9.0.1" - -"@jest/schemas@^28.0.2": - version "28.0.2" - resolved "https://registry.yarnpkg.com/@jest/schemas/-/schemas-28.0.2.tgz#08c30df6a8d07eafea0aef9fb222c5e26d72e613" - integrity sha512-YVDJZjd4izeTDkij00vHHAymNXQ6WWsdChFRK86qck6Jpr3DCL5W3Is3vslviRlP+bLuMYRLbdp98amMvqudhA== - dependencies: - "@sinclair/typebox" "^0.23.3" - -"@jest/source-map@^28.1.2": - version "28.1.2" - resolved "https://registry.yarnpkg.com/@jest/source-map/-/source-map-28.1.2.tgz#7fe832b172b497d6663cdff6c13b0a920e139e24" - integrity sha512-cV8Lx3BeStJb8ipPHnqVw/IM2VCMWO3crWZzYodSIkxXnRcXJipCdx1JCK0K5MsJJouZQTH73mzf4vgxRaH9ww== - dependencies: - "@jridgewell/trace-mapping" "^0.3.13" - callsites "^3.0.0" - graceful-fs "^4.2.9" - -"@jest/test-result@^28.1.1": - version "28.1.1" - resolved "https://registry.yarnpkg.com/@jest/test-result/-/test-result-28.1.1.tgz#c6f18d1bbb01aa88925dd687872a75f8414b317a" - integrity sha512-hPmkugBktqL6rRzwWAtp1JtYT4VHwv8OQ+9lE5Gymj6dHzubI/oJHMUpPOt8NrdVWSrz9S7bHjJUmv2ggFoUNQ== - dependencies: - "@jest/console" "^28.1.1" - "@jest/types" "^28.1.1" - "@types/istanbul-lib-coverage" "^2.0.0" - collect-v8-coverage "^1.0.0" - -"@jest/test-sequencer@^28.1.1": - version "28.1.1" - resolved "https://registry.yarnpkg.com/@jest/test-sequencer/-/test-sequencer-28.1.1.tgz#f594ee2331df75000afe0d1ae3237630ecec732e" - integrity sha512-nuL+dNSVMcWB7OOtgb0EGH5AjO4UBCt68SLP08rwmC+iRhyuJWS9MtZ/MpipxFwKAlHFftbMsydXqWre8B0+XA== - dependencies: - "@jest/test-result" "^28.1.1" - graceful-fs "^4.2.9" - jest-haste-map "^28.1.1" - slash "^3.0.0" - -"@jest/transform@^28.1.2": - version "28.1.2" - resolved "https://registry.yarnpkg.com/@jest/transform/-/transform-28.1.2.tgz#b367962c53fd53821269bde050ce373e111327c1" - integrity sha512-3o+lKF6iweLeJFHBlMJysdaPbpoMmtbHEFsjzSv37HIq/wWt5ijTeO2Yf7MO5yyczCopD507cNwNLeX8Y/CuIg== - dependencies: - "@babel/core" "^7.11.6" - "@jest/types" "^28.1.1" - "@jridgewell/trace-mapping" "^0.3.13" - babel-plugin-istanbul "^6.1.1" - chalk "^4.0.0" - convert-source-map "^1.4.0" - fast-json-stable-stringify "^2.0.0" - graceful-fs "^4.2.9" - jest-haste-map "^28.1.1" - jest-regex-util "^28.0.2" - jest-util "^28.1.1" - micromatch "^4.0.4" - pirates "^4.0.4" - slash "^3.0.0" - write-file-atomic "^4.0.1" - -"@jest/types@^28.1.1": - version "28.1.1" - resolved "https://registry.yarnpkg.com/@jest/types/-/types-28.1.1.tgz#d059bbc80e6da6eda9f081f293299348bd78ee0b" - integrity sha512-vRXVqSg1VhDnB8bWcmvLzmg0Bt9CRKVgHPXqYwvWMX3TvAjeO+nRuK6+VdTKCtWOvYlmkF/HqNAL/z+N3B53Kw== - dependencies: - "@jest/schemas" "^28.0.2" - "@types/istanbul-lib-coverage" "^2.0.0" - "@types/istanbul-reports" "^3.0.0" - "@types/node" "*" - "@types/yargs" "^17.0.8" - chalk "^4.0.0" - -"@jridgewell/gen-mapping@^0.1.0": - version "0.1.1" - resolved "https://registry.yarnpkg.com/@jridgewell/gen-mapping/-/gen-mapping-0.1.1.tgz#e5d2e450306a9491e3bd77e323e38d7aff315996" - integrity sha512-sQXCasFk+U8lWYEe66WxRDOE9PjVz4vSM51fTu3Hw+ClTpUSQb718772vH3pyS5pShp6lvQM7SxgIDXXXmOX7w== - dependencies: - "@jridgewell/set-array" "^1.0.0" - "@jridgewell/sourcemap-codec" "^1.4.10" - -"@jridgewell/gen-mapping@^0.3.2": - version "0.3.2" - resolved "https://registry.yarnpkg.com/@jridgewell/gen-mapping/-/gen-mapping-0.3.2.tgz#c1aedc61e853f2bb9f5dfe6d4442d3b565b253b9" - integrity sha512-mh65xKQAzI6iBcFzwv28KVWSmCkdRBWoOh+bYQGW3+6OZvbbN3TqMGo5hqYxQniRcH9F2VZIoJCm4pa3BPDK/A== - dependencies: - "@jridgewell/set-array" "^1.0.1" - "@jridgewell/sourcemap-codec" "^1.4.10" - "@jridgewell/trace-mapping" "^0.3.9" - -"@jridgewell/resolve-uri@^3.0.3": - version "3.0.8" - resolved "https://registry.yarnpkg.com/@jridgewell/resolve-uri/-/resolve-uri-3.0.8.tgz#687cc2bbf243f4e9a868ecf2262318e2658873a1" - integrity sha512-YK5G9LaddzGbcucK4c8h5tWFmMPBvRZ/uyWmN1/SbBdIvqGUdWGkJ5BAaccgs6XbzVLsqbPJrBSFwKv3kT9i7w== - -"@jridgewell/set-array@^1.0.0", "@jridgewell/set-array@^1.0.1": - version "1.1.2" - resolved "https://registry.yarnpkg.com/@jridgewell/set-array/-/set-array-1.1.2.tgz#7c6cf998d6d20b914c0a55a91ae928ff25965e72" - integrity sha512-xnkseuNADM0gt2bs+BvhO0p78Mk762YnZdsuzFV018NoG1Sj1SCQvpSqa7XUaTam5vAGasABV9qXASMKnFMwMw== - -"@jridgewell/sourcemap-codec@^1.4.10": - version "1.4.14" - resolved "https://registry.yarnpkg.com/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.4.14.tgz#add4c98d341472a289190b424efbdb096991bb24" - integrity sha512-XPSJHWmi394fuUuzDnGz1wiKqWfo1yXecHQMRf2l6hztTO+nPru658AyDngaBe7isIxEkRsPR3FZh+s7iVa4Uw== - -"@jridgewell/trace-mapping@^0.3.12", "@jridgewell/trace-mapping@^0.3.13", "@jridgewell/trace-mapping@^0.3.9": - version "0.3.14" - resolved "https://registry.yarnpkg.com/@jridgewell/trace-mapping/-/trace-mapping-0.3.14.tgz#b231a081d8f66796e475ad588a1ef473112701ed" - integrity sha512-bJWEfQ9lPTvm3SneWwRFVLzrh6nhjwqw7TUFFBEMzwvg7t7PCDenf2lDwqo4NQXzdpgBXyFgDWnQA+2vkruksQ== - dependencies: - "@jridgewell/resolve-uri" "^3.0.3" - "@jridgewell/sourcemap-codec" "^1.4.10" - -"@nodelib/fs.scandir@2.1.5": - version "2.1.5" - resolved "https://registry.yarnpkg.com/@nodelib/fs.scandir/-/fs.scandir-2.1.5.tgz#7619c2eb21b25483f6d167548b4cfd5a7488c3d5" - integrity sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g== - dependencies: - "@nodelib/fs.stat" "2.0.5" - run-parallel "^1.1.9" - -"@nodelib/fs.stat@2.0.5", "@nodelib/fs.stat@^2.0.2": - version "2.0.5" - resolved "https://registry.yarnpkg.com/@nodelib/fs.stat/-/fs.stat-2.0.5.tgz#5bd262af94e9d25bd1e71b05deed44876a222e8b" - integrity sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A== - -"@nodelib/fs.walk@^1.2.3": - version "1.2.8" - resolved "https://registry.yarnpkg.com/@nodelib/fs.walk/-/fs.walk-1.2.8.tgz#e95737e8bb6746ddedf69c556953494f196fe69a" - integrity sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg== - dependencies: - "@nodelib/fs.scandir" "2.1.5" - fastq "^1.6.0" - -"@sinclair/typebox@^0.23.3": - version "0.23.5" - resolved "https://registry.yarnpkg.com/@sinclair/typebox/-/typebox-0.23.5.tgz#93f7b9f4e3285a7a9ade7557d9a8d36809cbc47d" - integrity sha512-AFBVi/iT4g20DHoujvMH1aEDn8fGJh4xsRGCP6d8RpLPMqsNPvW01Jcn0QysXTsg++/xj25NmJsGyH9xug/wKg== - -"@sinonjs/commons@^1.7.0": - version "1.8.3" - resolved "https://registry.yarnpkg.com/@sinonjs/commons/-/commons-1.8.3.tgz#3802ddd21a50a949b6721ddd72da36e67e7f1b2d" - integrity sha512-xkNcLAn/wZaX14RPlwizcKicDk9G3F8m2nU3L7Ukm5zBgTwiT0wsoFAHx9Jq56fJA1z/7uKGtCRu16sOUCLIHQ== - dependencies: - type-detect "4.0.8" - -"@sinonjs/fake-timers@^9.1.2": - version "9.1.2" - resolved "https://registry.yarnpkg.com/@sinonjs/fake-timers/-/fake-timers-9.1.2.tgz#4eaab737fab77332ab132d396a3c0d364bd0ea8c" - integrity sha512-BPS4ynJW/o92PUR4wgriz2Ud5gpST5vz6GQfMixEDK0Z8ZCUv2M7SkBLykH56T++Xs+8ln9zTGbOvNGIe02/jw== - dependencies: - "@sinonjs/commons" "^1.7.0" - -"@types/babel__core@^7.1.14": - version "7.1.19" - resolved "https://registry.yarnpkg.com/@types/babel__core/-/babel__core-7.1.19.tgz#7b497495b7d1b4812bdb9d02804d0576f43ee460" - integrity sha512-WEOTgRsbYkvA/KCsDwVEGkd7WAr1e3g31VHQ8zy5gul/V1qKullU/BU5I68X5v7V3GnB9eotmom4v5a5gjxorw== - dependencies: - "@babel/parser" "^7.1.0" - "@babel/types" "^7.0.0" - "@types/babel__generator" "*" - "@types/babel__template" "*" - "@types/babel__traverse" "*" - -"@types/babel__generator@*": - version "7.6.4" - resolved "https://registry.yarnpkg.com/@types/babel__generator/-/babel__generator-7.6.4.tgz#1f20ce4c5b1990b37900b63f050182d28c2439b7" - integrity sha512-tFkciB9j2K755yrTALxD44McOrk+gfpIpvC3sxHjRawj6PfnQxrse4Clq5y/Rq+G3mrBurMax/lG8Qn2t9mSsg== - dependencies: - "@babel/types" "^7.0.0" - -"@types/babel__template@*": - version "7.4.1" - resolved "https://registry.yarnpkg.com/@types/babel__template/-/babel__template-7.4.1.tgz#3d1a48fd9d6c0edfd56f2ff578daed48f36c8969" - integrity sha512-azBFKemX6kMg5Io+/rdGT0dkGreboUVR0Cdm3fz9QJWpaQGJRQXl7C+6hOTCZcMll7KFyEQpgbYI2lHdsS4U7g== - dependencies: - "@babel/parser" "^7.1.0" - "@babel/types" "^7.0.0" - -"@types/babel__traverse@*", "@types/babel__traverse@^7.0.6": - version "7.17.1" - resolved "https://registry.yarnpkg.com/@types/babel__traverse/-/babel__traverse-7.17.1.tgz#1a0e73e8c28c7e832656db372b779bfd2ef37314" - integrity sha512-kVzjari1s2YVi77D3w1yuvohV2idweYXMCDzqBiVNN63TcDWrIlTVOYpqVrvbbyOE/IyzBoTKF0fdnLPEORFxA== - dependencies: - "@babel/types" "^7.3.0" - -"@types/clone-deep@^4.0.1": - version "4.0.1" - resolved "https://registry.yarnpkg.com/@types/clone-deep/-/clone-deep-4.0.1.tgz#7c488443ab9f571cd343d774551b78e9264ea990" - integrity sha512-bdkCSkyVHsgl3Goe1y16T9k6JuQx7SiDREkq728QjKmTZkGJZuS8R3gGcnGzVuGBP0mssKrzM/GlMOQxtip9cg== - -"@types/graceful-fs@^4.1.3": - version "4.1.5" - resolved "https://registry.yarnpkg.com/@types/graceful-fs/-/graceful-fs-4.1.5.tgz#21ffba0d98da4350db64891f92a9e5db3cdb4e15" - integrity sha512-anKkLmZZ+xm4p8JWBf4hElkM4XR+EZeA2M9BAkkTldmcyDY4mbdIJnRghDJH3Ov5ooY7/UAoENtmdMSkaAd7Cw== - dependencies: - "@types/node" "*" - -"@types/istanbul-lib-coverage@*", "@types/istanbul-lib-coverage@^2.0.0", "@types/istanbul-lib-coverage@^2.0.1": - version "2.0.4" - resolved "https://registry.yarnpkg.com/@types/istanbul-lib-coverage/-/istanbul-lib-coverage-2.0.4.tgz#8467d4b3c087805d63580480890791277ce35c44" - integrity sha512-z/QT1XN4K4KYuslS23k62yDIDLwLFkzxOuMplDtObz0+y7VqJCaO2o+SPwHCvLFZh7xazvvoor2tA/hPz9ee7g== - -"@types/istanbul-lib-report@*": - version "3.0.0" - resolved "https://registry.yarnpkg.com/@types/istanbul-lib-report/-/istanbul-lib-report-3.0.0.tgz#c14c24f18ea8190c118ee7562b7ff99a36552686" - integrity sha512-plGgXAPfVKFoYfa9NpYDAkseG+g6Jr294RqeqcqDixSbU34MZVJRi/P+7Y8GDpzkEwLaGZZOpKIEmeVZNtKsrg== - dependencies: - "@types/istanbul-lib-coverage" "*" - -"@types/istanbul-reports@^3.0.0": - version "3.0.1" - resolved "https://registry.yarnpkg.com/@types/istanbul-reports/-/istanbul-reports-3.0.1.tgz#9153fe98bba2bd565a63add9436d6f0d7f8468ff" - integrity sha512-c3mAZEuK0lvBp8tmuL74XRKn1+y2dcwOUpH7x4WrF6gk1GIgiluDRgMYQtw2OFcBvAJWlt6ASU3tSqxp0Uu0Aw== - dependencies: - "@types/istanbul-lib-report" "*" - -"@types/jest@^28.1.4": - version "28.1.4" - resolved "https://registry.yarnpkg.com/@types/jest/-/jest-28.1.4.tgz#a11ee6c8fd0b52c19c9c18138b78bbcc201dad5a" - integrity sha512-telv6G5N7zRJiLcI3Rs3o+ipZ28EnE+7EvF0pSrt2pZOMnAVI/f+6/LucDxOvcBcTeTL3JMF744BbVQAVBUQRA== - dependencies: - jest-matcher-utils "^28.0.0" - pretty-format "^28.0.0" - -"@types/json-schema@^7.0.9": - version "7.0.11" - resolved "https://registry.yarnpkg.com/@types/json-schema/-/json-schema-7.0.11.tgz#d421b6c527a3037f7c84433fd2c4229e016863d3" - integrity sha512-wOuvG1SN4Us4rez+tylwwwCV1psiNVOkJeM3AUWUNWg/jDQY2+HE/444y5gc+jBmRqASOm2Oeh5c1axHobwRKQ== - -"@types/node@*": - version "18.0.0" - resolved "https://registry.yarnpkg.com/@types/node/-/node-18.0.0.tgz#67c7b724e1bcdd7a8821ce0d5ee184d3b4dd525a" - integrity sha512-cHlGmko4gWLVI27cGJntjs/Sj8th9aYwplmZFwmmgYQQvL5NUsgVJG7OddLvNfLqYS31KFN0s3qlaD9qCaxACA== - -"@types/node@~16": - version "16.11.42" - resolved "https://registry.yarnpkg.com/@types/node/-/node-16.11.42.tgz#d2a75c58e9b0902b82dc54bd4c13f8ef12bd1020" - integrity sha512-iwLrPOopPy6V3E+1yHTpJea3bdsNso0b0utLOJJwaa/PLzqBt3GZl3stMcakc/gr89SfcNk2ki3z7Gvue9hYGQ== - -"@types/prettier@^2.1.5": - version "2.6.3" - resolved "https://registry.yarnpkg.com/@types/prettier/-/prettier-2.6.3.tgz#68ada76827b0010d0db071f739314fa429943d0a" - integrity sha512-ymZk3LEC/fsut+/Q5qejp6R9O1rMxz3XaRHDV6kX8MrGAhOSPqVARbDi+EZvInBpw+BnCX3TD240byVkOfQsHg== - -"@types/stack-utils@^2.0.0": - version "2.0.1" - resolved "https://registry.yarnpkg.com/@types/stack-utils/-/stack-utils-2.0.1.tgz#20f18294f797f2209b5f65c8e3b5c8e8261d127c" - integrity sha512-Hl219/BT5fLAaz6NDkSuhzasy49dwQS/DSdu4MdggFB8zcXv7vflBI3xp7FEmkmdDkBUI2bPUNeMttp2knYdxw== - -"@types/underscore@^1.11.4": - version "1.11.4" - resolved "https://registry.yarnpkg.com/@types/underscore/-/underscore-1.11.4.tgz#62e393f8bc4bd8a06154d110c7d042a93751def3" - integrity sha512-uO4CD2ELOjw8tasUrAhvnn2W4A0ZECOvMjCivJr4gA9pGgjv+qxKWY9GLTMVEK8ej85BxQOocUyE7hImmSQYcg== - -"@types/yargs-parser@*": - version "21.0.0" - resolved "https://registry.yarnpkg.com/@types/yargs-parser/-/yargs-parser-21.0.0.tgz#0c60e537fa790f5f9472ed2776c2b71ec117351b" - integrity sha512-iO9ZQHkZxHn4mSakYV0vFHAVDyEOIJQrV2uZ06HxEPcx+mt8swXoZHIbaaJ2crJYFfErySgktuTZ3BeLz+XmFA== - -"@types/yargs@^17.0.8": - version "17.0.10" - resolved "https://registry.yarnpkg.com/@types/yargs/-/yargs-17.0.10.tgz#591522fce85d8739bca7b8bb90d048e4478d186a" - integrity sha512-gmEaFwpj/7f/ROdtIlci1R1VYU1J4j95m8T+Tj3iBgiBFKg1foE/PSl93bBd5T9LDXNPo8UlNN6W0qwD8O5OaA== - dependencies: - "@types/yargs-parser" "*" - -"@typescript-eslint/eslint-plugin@~5.26": - version "5.26.0" - resolved "https://registry.yarnpkg.com/@typescript-eslint/eslint-plugin/-/eslint-plugin-5.26.0.tgz#c1f98ccba9d345e38992975d3ca56ed6260643c2" - integrity sha512-oGCmo0PqnRZZndr+KwvvAUvD3kNE4AfyoGCwOZpoCncSh4MVD06JTE8XQa2u9u+NX5CsyZMBTEc2C72zx38eYA== - dependencies: - "@typescript-eslint/scope-manager" "5.26.0" - "@typescript-eslint/type-utils" "5.26.0" - "@typescript-eslint/utils" "5.26.0" - debug "^4.3.4" - functional-red-black-tree "^1.0.1" - ignore "^5.2.0" - regexpp "^3.2.0" - semver "^7.3.7" - tsutils "^3.21.0" - -"@typescript-eslint/parser@~5.26": - version "5.26.0" - resolved "https://registry.yarnpkg.com/@typescript-eslint/parser/-/parser-5.26.0.tgz#a61b14205fe2ab7533deb4d35e604add9a4ceee2" - integrity sha512-n/IzU87ttzIdnAH5vQ4BBDnLPly7rC5VnjN3m0xBG82HK6rhRxnCb3w/GyWbNDghPd+NktJqB/wl6+YkzZ5T5Q== - dependencies: - "@typescript-eslint/scope-manager" "5.26.0" - "@typescript-eslint/types" "5.26.0" - "@typescript-eslint/typescript-estree" "5.26.0" - debug "^4.3.4" - -"@typescript-eslint/scope-manager@5.26.0": - version "5.26.0" - resolved "https://registry.yarnpkg.com/@typescript-eslint/scope-manager/-/scope-manager-5.26.0.tgz#44209c7f649d1a120f0717e0e82da856e9871339" - integrity sha512-gVzTJUESuTwiju/7NiTb4c5oqod8xt5GhMbExKsCTp6adU3mya6AGJ4Pl9xC7x2DX9UYFsjImC0mA62BCY22Iw== - dependencies: - "@typescript-eslint/types" "5.26.0" - "@typescript-eslint/visitor-keys" "5.26.0" - -"@typescript-eslint/scope-manager@5.30.0": - version "5.30.0" - resolved "https://registry.yarnpkg.com/@typescript-eslint/scope-manager/-/scope-manager-5.30.0.tgz#bf585ee801ab4ad84db2f840174e171a6bb002c7" - integrity sha512-3TZxvlQcK5fhTBw5solQucWSJvonXf5yua5nx8OqK94hxdrT7/6W3/CS42MLd/f1BmlmmbGEgQcTHHCktUX5bQ== - dependencies: - "@typescript-eslint/types" "5.30.0" - "@typescript-eslint/visitor-keys" "5.30.0" - -"@typescript-eslint/type-utils@5.26.0": - version "5.26.0" - resolved "https://registry.yarnpkg.com/@typescript-eslint/type-utils/-/type-utils-5.26.0.tgz#937dee97702361744a3815c58991acf078230013" - integrity sha512-7ccbUVWGLmcRDSA1+ADkDBl5fP87EJt0fnijsMFTVHXKGduYMgienC/i3QwoVhDADUAPoytgjbZbCOMj4TY55A== - dependencies: - "@typescript-eslint/utils" "5.26.0" - debug "^4.3.4" - tsutils "^3.21.0" - -"@typescript-eslint/types@5.26.0": - version "5.26.0" - resolved "https://registry.yarnpkg.com/@typescript-eslint/types/-/types-5.26.0.tgz#cb204bb154d3c103d9cc4d225f311b08219469f3" - integrity sha512-8794JZFE1RN4XaExLWLI2oSXsVImNkl79PzTOOWt9h0UHROwJedNOD2IJyfL0NbddFllcktGIO2aOu10avQQyA== - -"@typescript-eslint/types@5.30.0": - version "5.30.0" - resolved "https://registry.yarnpkg.com/@typescript-eslint/types/-/types-5.30.0.tgz#db7d81d585a3da3801432a9c1d2fafbff125e110" - integrity sha512-vfqcBrsRNWw/LBXyncMF/KrUTYYzzygCSsVqlZ1qGu1QtGs6vMkt3US0VNSQ05grXi5Yadp3qv5XZdYLjpp8ag== - -"@typescript-eslint/typescript-estree@5.26.0": - version "5.26.0" - resolved "https://registry.yarnpkg.com/@typescript-eslint/typescript-estree/-/typescript-estree-5.26.0.tgz#16cbceedb0011c2ed4f607255f3ee1e6e43b88c3" - integrity sha512-EyGpw6eQDsfD6jIqmXP3rU5oHScZ51tL/cZgFbFBvWuCwrIptl+oueUZzSmLtxFuSOQ9vDcJIs+279gnJkfd1w== - dependencies: - "@typescript-eslint/types" "5.26.0" - "@typescript-eslint/visitor-keys" "5.26.0" - debug "^4.3.4" - globby "^11.1.0" - is-glob "^4.0.3" - semver "^7.3.7" - tsutils "^3.21.0" - -"@typescript-eslint/typescript-estree@5.30.0": - version "5.30.0" - resolved "https://registry.yarnpkg.com/@typescript-eslint/typescript-estree/-/typescript-estree-5.30.0.tgz#4565ee8a6d2ac368996e20b2344ea0eab1a8f0bb" - integrity sha512-hDEawogreZB4n1zoqcrrtg/wPyyiCxmhPLpZ6kmWfKF5M5G0clRLaEexpuWr31fZ42F96SlD/5xCt1bT5Qm4Nw== - dependencies: - "@typescript-eslint/types" "5.30.0" - "@typescript-eslint/visitor-keys" "5.30.0" - debug "^4.3.4" - globby "^11.1.0" - is-glob "^4.0.3" - semver "^7.3.7" - tsutils "^3.21.0" - -"@typescript-eslint/utils@5.26.0": - version "5.26.0" - resolved "https://registry.yarnpkg.com/@typescript-eslint/utils/-/utils-5.26.0.tgz#896b8480eb124096e99c8b240460bb4298afcfb4" - integrity sha512-PJFwcTq2Pt4AMOKfe3zQOdez6InIDOjUJJD3v3LyEtxHGVVRK3Vo7Dd923t/4M9hSH2q2CLvcTdxlLPjcIk3eg== - dependencies: - "@types/json-schema" "^7.0.9" - "@typescript-eslint/scope-manager" "5.26.0" - "@typescript-eslint/types" "5.26.0" - "@typescript-eslint/typescript-estree" "5.26.0" - eslint-scope "^5.1.1" - eslint-utils "^3.0.0" - -"@typescript-eslint/utils@^5.10.0": - version "5.30.0" - resolved "https://registry.yarnpkg.com/@typescript-eslint/utils/-/utils-5.30.0.tgz#1dac771fead5eab40d31860716de219356f5f754" - integrity sha512-0bIgOgZflLKIcZsWvfklsaQTM3ZUbmtH0rJ1hKyV3raoUYyeZwcjQ8ZUJTzS7KnhNcsVT1Rxs7zeeMHEhGlltw== - dependencies: - "@types/json-schema" "^7.0.9" - "@typescript-eslint/scope-manager" "5.30.0" - "@typescript-eslint/types" "5.30.0" - "@typescript-eslint/typescript-estree" "5.30.0" - eslint-scope "^5.1.1" - eslint-utils "^3.0.0" - -"@typescript-eslint/visitor-keys@5.26.0": - version "5.26.0" - resolved "https://registry.yarnpkg.com/@typescript-eslint/visitor-keys/-/visitor-keys-5.26.0.tgz#7195f756e367f789c0e83035297c45b417b57f57" - integrity sha512-wei+ffqHanYDOQgg/fS6Hcar6wAWv0CUPQ3TZzOWd2BLfgP539rb49bwua8WRAs7R6kOSLn82rfEu2ro6Llt8Q== - dependencies: - "@typescript-eslint/types" "5.26.0" - eslint-visitor-keys "^3.3.0" - -"@typescript-eslint/visitor-keys@5.30.0": - version "5.30.0" - resolved "https://registry.yarnpkg.com/@typescript-eslint/visitor-keys/-/visitor-keys-5.30.0.tgz#07721d23daca2ec4c2da7f1e660d41cd78bacac3" - integrity sha512-6WcIeRk2DQ3pHKxU1Ni0qMXJkjO/zLjBymlYBy/53qxe7yjEFSvzKLDToJjURUhSl2Fzhkl4SMXQoETauF74cw== - dependencies: - "@typescript-eslint/types" "5.30.0" - eslint-visitor-keys "^3.3.0" - -acorn-jsx@^5.3.2: - version "5.3.2" - resolved "https://registry.yarnpkg.com/acorn-jsx/-/acorn-jsx-5.3.2.tgz#7ed5bb55908b3b2f1bc55c6af1653bada7f07937" - integrity sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ== - -acorn@^8.7.1: - version "8.7.1" - resolved "https://registry.yarnpkg.com/acorn/-/acorn-8.7.1.tgz#0197122c843d1bf6d0a5e83220a788f278f63c30" - integrity sha512-Xx54uLJQZ19lKygFXOWsscKUbsBZW0CPykPhVQdhIeIwrbPmJzqeASDInc8nKBnp/JT6igTs82qPXz069H8I/A== - -ajv@^6.10.0, ajv@^6.12.4: - version "6.12.6" - resolved "https://registry.yarnpkg.com/ajv/-/ajv-6.12.6.tgz#baf5a62e802b07d977034586f8c3baf5adf26df4" - integrity sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g== - dependencies: - fast-deep-equal "^3.1.1" - fast-json-stable-stringify "^2.0.0" - json-schema-traverse "^0.4.1" - uri-js "^4.2.2" - -ansi-escapes@^4.2.1: - version "4.3.2" - resolved "https://registry.yarnpkg.com/ansi-escapes/-/ansi-escapes-4.3.2.tgz#6b2291d1db7d98b6521d5f1efa42d0f3a9feb65e" - integrity sha512-gKXj5ALrKWQLsYG9jlTRmR/xKluxHV+Z9QEwNIgCfM1/uwPMCuzVVnh5mwTd+OuBZcwSIMbqssNWRm1lE51QaQ== - dependencies: - type-fest "^0.21.3" - -ansi-regex@^5.0.1: - version "5.0.1" - resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-5.0.1.tgz#082cb2c89c9fe8659a311a53bd6a4dc5301db304" - integrity sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ== - -ansi-styles@^3.2.1: - version "3.2.1" - resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-3.2.1.tgz#41fbb20243e50b12be0f04b8dedbf07520ce841d" - integrity sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA== - dependencies: - color-convert "^1.9.0" - -ansi-styles@^4.0.0, ansi-styles@^4.1.0: - version "4.3.0" - resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-4.3.0.tgz#edd803628ae71c04c85ae7a0906edad34b648937" - integrity sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg== - dependencies: - color-convert "^2.0.1" - -ansi-styles@^5.0.0: - version "5.2.0" - resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-5.2.0.tgz#07449690ad45777d1924ac2abb2fc8895dba836b" - integrity sha512-Cxwpt2SfTzTtXcfOlzGEee8O+c+MmUgGrNiBcXnuWxuFJHe6a5Hz7qwhwe5OgaSYI0IJvkLqWX1ASG+cJOkEiA== - -anymatch@^3.0.3: - version "3.1.2" - resolved "https://registry.yarnpkg.com/anymatch/-/anymatch-3.1.2.tgz#c0557c096af32f106198f4f4e2a383537e378716" - integrity sha512-P43ePfOAIupkguHUycrc4qJ9kz8ZiuOUijaETwX7THt0Y/GNK7v0aa8rY816xWjZ7rJdA5XdMcpVFTKMq+RvWg== - dependencies: - normalize-path "^3.0.0" - picomatch "^2.0.4" - -argparse@^1.0.7: - version "1.0.10" - resolved "https://registry.yarnpkg.com/argparse/-/argparse-1.0.10.tgz#bcd6791ea5ae09725e17e5ad988134cd40b3d911" - integrity sha512-o5Roy6tNG4SL/FOkCAN6RzjiakZS25RLYFrcMttJqbdd8BWrnA+fGz57iN5Pb06pvBGvl5gQ0B48dJlslXvoTg== - dependencies: - sprintf-js "~1.0.2" - -argparse@^2.0.1: - version "2.0.1" - resolved "https://registry.yarnpkg.com/argparse/-/argparse-2.0.1.tgz#246f50f3ca78a3240f6c997e8a9bd1eac49e4b38" - integrity sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q== - -array-union@^2.1.0: - version "2.1.0" - resolved "https://registry.yarnpkg.com/array-union/-/array-union-2.1.0.tgz#b798420adbeb1de828d84acd8a2e23d3efe85e8d" - integrity sha512-HGyxoOTYUyCM6stUe6EJgnd4EoewAI7zMdfqO+kGjnlZmBDz/cR5pf8r/cR4Wq60sL/p0IkcjUEEPwS3GFrIyw== - -babel-jest@^28.1.2: - version "28.1.2" - resolved "https://registry.yarnpkg.com/babel-jest/-/babel-jest-28.1.2.tgz#2b37fb81439f14d34d8b2cc4a4bd7efabf9acbfe" - integrity sha512-pfmoo6sh4L/+5/G2OOfQrGJgvH7fTa1oChnuYH2G/6gA+JwDvO8PELwvwnofKBMNrQsam0Wy/Rw+QSrBNewq2Q== - dependencies: - "@jest/transform" "^28.1.2" - "@types/babel__core" "^7.1.14" - babel-plugin-istanbul "^6.1.1" - babel-preset-jest "^28.1.1" - chalk "^4.0.0" - graceful-fs "^4.2.9" - slash "^3.0.0" - -babel-plugin-istanbul@^6.1.1: - version "6.1.1" - resolved "https://registry.yarnpkg.com/babel-plugin-istanbul/-/babel-plugin-istanbul-6.1.1.tgz#fa88ec59232fd9b4e36dbbc540a8ec9a9b47da73" - integrity sha512-Y1IQok9821cC9onCx5otgFfRm7Lm+I+wwxOx738M/WLPZ9Q42m4IG5W0FNX8WLL2gYMZo3JkuXIH2DOpWM+qwA== - dependencies: - "@babel/helper-plugin-utils" "^7.0.0" - "@istanbuljs/load-nyc-config" "^1.0.0" - "@istanbuljs/schema" "^0.1.2" - istanbul-lib-instrument "^5.0.4" - test-exclude "^6.0.0" - -babel-plugin-jest-hoist@^28.1.1: - version "28.1.1" - resolved "https://registry.yarnpkg.com/babel-plugin-jest-hoist/-/babel-plugin-jest-hoist-28.1.1.tgz#5e055cdcc47894f28341f87f5e35aad2df680b11" - integrity sha512-NovGCy5Hn25uMJSAU8FaHqzs13cFoOI4lhIujiepssjCKRsAo3TA734RDWSGxuFTsUJXerYOqQQodlxgmtqbzw== - dependencies: - "@babel/template" "^7.3.3" - "@babel/types" "^7.3.3" - "@types/babel__core" "^7.1.14" - "@types/babel__traverse" "^7.0.6" - -babel-preset-current-node-syntax@^1.0.0: - version "1.0.1" - resolved "https://registry.yarnpkg.com/babel-preset-current-node-syntax/-/babel-preset-current-node-syntax-1.0.1.tgz#b4399239b89b2a011f9ddbe3e4f401fc40cff73b" - integrity sha512-M7LQ0bxarkxQoN+vz5aJPsLBn77n8QgTFmo8WK0/44auK2xlCXrYcUxHFxgU7qW5Yzw/CjmLRK2uJzaCd7LvqQ== - dependencies: - "@babel/plugin-syntax-async-generators" "^7.8.4" - "@babel/plugin-syntax-bigint" "^7.8.3" - "@babel/plugin-syntax-class-properties" "^7.8.3" - "@babel/plugin-syntax-import-meta" "^7.8.3" - "@babel/plugin-syntax-json-strings" "^7.8.3" - "@babel/plugin-syntax-logical-assignment-operators" "^7.8.3" - "@babel/plugin-syntax-nullish-coalescing-operator" "^7.8.3" - "@babel/plugin-syntax-numeric-separator" "^7.8.3" - "@babel/plugin-syntax-object-rest-spread" "^7.8.3" - "@babel/plugin-syntax-optional-catch-binding" "^7.8.3" - "@babel/plugin-syntax-optional-chaining" "^7.8.3" - "@babel/plugin-syntax-top-level-await" "^7.8.3" - -babel-preset-jest@^28.1.1: - version "28.1.1" - resolved "https://registry.yarnpkg.com/babel-preset-jest/-/babel-preset-jest-28.1.1.tgz#5b6e5e69f963eb2d70f739c607b8f723c0ee75e4" - integrity sha512-FCq9Oud0ReTeWtcneYf/48981aTfXYuB9gbU4rBNNJVBSQ6ssv7E6v/qvbBxtOWwZFXjLZwpg+W3q7J6vhH25g== - dependencies: - babel-plugin-jest-hoist "^28.1.1" - babel-preset-current-node-syntax "^1.0.0" - -balanced-match@^1.0.0: - version "1.0.2" - resolved "https://registry.yarnpkg.com/balanced-match/-/balanced-match-1.0.2.tgz#e83e3a7e3f300b34cb9d87f615fa0cbf357690ee" - integrity sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw== - -brace-expansion@^1.1.7: - version "1.1.11" - resolved "https://registry.yarnpkg.com/brace-expansion/-/brace-expansion-1.1.11.tgz#3c7fcbf529d87226f3d2f52b966ff5271eb441dd" - integrity sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA== - dependencies: - balanced-match "^1.0.0" - concat-map "0.0.1" - -braces@^3.0.2: - version "3.0.2" - resolved "https://registry.yarnpkg.com/braces/-/braces-3.0.2.tgz#3454e1a462ee8d599e236df336cd9ea4f8afe107" - integrity sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A== - dependencies: - fill-range "^7.0.1" - -browserslist@^4.20.2: - version "4.21.1" - resolved "https://registry.yarnpkg.com/browserslist/-/browserslist-4.21.1.tgz#c9b9b0a54c7607e8dc3e01a0d311727188011a00" - integrity sha512-Nq8MFCSrnJXSc88yliwlzQe3qNe3VntIjhsArW9IJOEPSHNx23FalwApUVbzAWABLhYJJ7y8AynWI/XM8OdfjQ== - dependencies: - caniuse-lite "^1.0.30001359" - electron-to-chromium "^1.4.172" - node-releases "^2.0.5" - update-browserslist-db "^1.0.4" - -bs-logger@0.x: - version "0.2.6" - resolved "https://registry.yarnpkg.com/bs-logger/-/bs-logger-0.2.6.tgz#eb7d365307a72cf974cc6cda76b68354ad336bd8" - integrity sha512-pd8DCoxmbgc7hyPKOvxtqNcjYoOsABPQdcCUjGp3d42VR2CX1ORhk2A87oqqu5R1kk+76nsxZupkmyd+MVtCog== - dependencies: - fast-json-stable-stringify "2.x" - -bser@2.1.1: - version "2.1.1" - resolved "https://registry.yarnpkg.com/bser/-/bser-2.1.1.tgz#e6787da20ece9d07998533cfd9de6f5c38f4bc05" - integrity sha512-gQxTNE/GAfIIrmHLUE3oJyp5FO6HRBfhjnw4/wMmA63ZGDJnWBmgY/lyQBpnDUkGmAhbSe39tx2d/iTOAfglwQ== - dependencies: - node-int64 "^0.4.0" - -buffer-from@^1.0.0: - version "1.1.2" - resolved "https://registry.yarnpkg.com/buffer-from/-/buffer-from-1.1.2.tgz#2b146a6fd72e80b4f55d255f35ed59a3a9a41bd5" - integrity sha512-E+XQCRwSbaaiChtv6k6Dwgc+bx+Bs6vuKJHHl5kox/BaKbhiXzqQOwK4cO22yElGp2OCmjwVhT3HmxgyPGnJfQ== - -callsites@^3.0.0: - version "3.1.0" - resolved "https://registry.yarnpkg.com/callsites/-/callsites-3.1.0.tgz#b3630abd8943432f54b3f0519238e33cd7df2f73" - integrity sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ== - -camelcase@^5.3.1: - version "5.3.1" - resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-5.3.1.tgz#e3c9b31569e106811df242f715725a1f4c494320" - integrity sha512-L28STB170nwWS63UjtlEOE3dldQApaJXZkOI1uMFfzf3rRuPegHaHesyee+YxQ+W6SvRDQV6UrdOdRiR153wJg== - -camelcase@^6.2.0: - version "6.3.0" - resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-6.3.0.tgz#5685b95eb209ac9c0c177467778c9c84df58ba9a" - integrity sha512-Gmy6FhYlCY7uOElZUSbxo2UCDH8owEk996gkbrpsgGtrJLM3J7jGxl9Ic7Qwwj4ivOE5AWZWRMecDdF7hqGjFA== - -caniuse-lite@^1.0.30001359: - version "1.0.30001361" - resolved "https://registry.yarnpkg.com/caniuse-lite/-/caniuse-lite-1.0.30001361.tgz#ba2adb2527566fb96f3ac7c67698ae7fc495a28d" - integrity sha512-ybhCrjNtkFji1/Wto6SSJKkWk6kZgVQsDq5QI83SafsF6FXv2JB4df9eEdH6g8sdGgqTXrFLjAxqBGgYoU3azQ== - -chalk@^2.0.0: - version "2.4.2" - resolved "https://registry.yarnpkg.com/chalk/-/chalk-2.4.2.tgz#cd42541677a54333cf541a49108c1432b44c9424" - integrity sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ== - dependencies: - ansi-styles "^3.2.1" - escape-string-regexp "^1.0.5" - supports-color "^5.3.0" - -chalk@^4.0.0: - version "4.1.2" - resolved "https://registry.yarnpkg.com/chalk/-/chalk-4.1.2.tgz#aac4e2b7734a740867aeb16bf02aad556a1e7a01" - integrity sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA== - dependencies: - ansi-styles "^4.1.0" - supports-color "^7.1.0" - -char-regex@^1.0.2: - version "1.0.2" - resolved "https://registry.yarnpkg.com/char-regex/-/char-regex-1.0.2.tgz#d744358226217f981ed58f479b1d6bcc29545dcf" - integrity sha512-kWWXztvZ5SBQV+eRgKFeh8q5sLuZY2+8WUIzlxWVTg+oGwY14qylx1KbKzHd8P6ZYkAg0xyIDU9JMHhyJMZ1jw== - -ci-info@^3.2.0: - version "3.3.2" - resolved "https://registry.yarnpkg.com/ci-info/-/ci-info-3.3.2.tgz#6d2967ffa407466481c6c90b6e16b3098f080128" - integrity sha512-xmDt/QIAdeZ9+nfdPsaBCpMvHNLFiLdjj59qjqn+6iPe6YmHGQ35sBnQ8uslRBXFmXkiZQOJRjvQeoGppoTjjg== - -cjs-module-lexer@^1.0.0: - version "1.2.2" - resolved "https://registry.yarnpkg.com/cjs-module-lexer/-/cjs-module-lexer-1.2.2.tgz#9f84ba3244a512f3a54e5277e8eef4c489864e40" - integrity sha512-cOU9usZw8/dXIXKtwa8pM0OTJQuJkxMN6w30csNRUerHfeQ5R6U3kkU/FtJeIf3M202OHfY2U8ccInBG7/xogA== - -cliui@^7.0.2: - version "7.0.4" - resolved "https://registry.yarnpkg.com/cliui/-/cliui-7.0.4.tgz#a0265ee655476fc807aea9df3df8df7783808b4f" - integrity sha512-OcRE68cOsVMXp1Yvonl/fzkQOyjLSu/8bhPDfQt0e0/Eb283TKP20Fs2MqoPsr9SwA595rRCA+QMzYc9nBP+JQ== - dependencies: - string-width "^4.2.0" - strip-ansi "^6.0.0" - wrap-ansi "^7.0.0" - -clone-deep@^4.0.1: - version "4.0.1" - resolved "https://registry.yarnpkg.com/clone-deep/-/clone-deep-4.0.1.tgz#c19fd9bdbbf85942b4fd979c84dcf7d5f07c2387" - integrity sha512-neHB9xuzh/wk0dIHweyAXv2aPGZIVk3pLMe+/RNzINf17fe0OG96QroktYAUm7SM1PBnzTabaLboqqxDyMU+SQ== - dependencies: - is-plain-object "^2.0.4" - kind-of "^6.0.2" - shallow-clone "^3.0.0" - -co@^4.6.0: - version "4.6.0" - resolved "https://registry.yarnpkg.com/co/-/co-4.6.0.tgz#6ea6bdf3d853ae54ccb8e47bfa0bf3f9031fb184" - integrity sha512-QVb0dM5HvG+uaxitm8wONl7jltx8dqhfU33DcqtOZcLSVIKSDDLDi7+0LbAKiyI8hD9u42m2YxXSkMGWThaecQ== - -collect-v8-coverage@^1.0.0: - version "1.0.1" - resolved "https://registry.yarnpkg.com/collect-v8-coverage/-/collect-v8-coverage-1.0.1.tgz#cc2c8e94fc18bbdffe64d6534570c8a673b27f59" - integrity sha512-iBPtljfCNcTKNAto0KEtDfZ3qzjJvqE3aTGZsbhjSBlorqpXJlaWWtPO35D+ZImoC3KWejX64o+yPGxhWSTzfg== - -color-convert@^1.9.0: - version "1.9.3" - resolved "https://registry.yarnpkg.com/color-convert/-/color-convert-1.9.3.tgz#bb71850690e1f136567de629d2d5471deda4c1e8" - integrity sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg== - dependencies: - color-name "1.1.3" - -color-convert@^2.0.1: - version "2.0.1" - resolved "https://registry.yarnpkg.com/color-convert/-/color-convert-2.0.1.tgz#72d3a68d598c9bdb3af2ad1e84f21d896abd4de3" - integrity sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ== - dependencies: - color-name "~1.1.4" - -color-name@1.1.3: - version "1.1.3" - resolved "https://registry.yarnpkg.com/color-name/-/color-name-1.1.3.tgz#a7d0558bd89c42f795dd42328f740831ca53bc25" - integrity sha512-72fSenhMw2HZMTVHeCA9KCmpEIbzWiQsjN+BHcBbS9vr1mtt+vJjPdksIBNUmKAW8TFUDPJK5SUU3QhE9NEXDw== - -color-name@~1.1.4: - version "1.1.4" - resolved "https://registry.yarnpkg.com/color-name/-/color-name-1.1.4.tgz#c2a09a87acbde69543de6f63fa3995c826c536a2" - integrity sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA== - -concat-map@0.0.1: - version "0.0.1" - resolved "https://registry.yarnpkg.com/concat-map/-/concat-map-0.0.1.tgz#d8a96bd77fd68df7793a73036a3ba0d5405d477b" - integrity sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg== - -convert-hrtime@^5.0.0: - version "5.0.0" - resolved "https://registry.yarnpkg.com/convert-hrtime/-/convert-hrtime-5.0.0.tgz#f2131236d4598b95de856926a67100a0a97e9fa3" - integrity sha512-lOETlkIeYSJWcbbcvjRKGxVMXJR+8+OQb/mTPbA4ObPMytYIsUbuOE0Jzy60hjARYszq1id0j8KgVhC+WGZVTg== - -convert-source-map@^1.4.0, convert-source-map@^1.6.0, convert-source-map@^1.7.0: - version "1.8.0" - resolved "https://registry.yarnpkg.com/convert-source-map/-/convert-source-map-1.8.0.tgz#f3373c32d21b4d780dd8004514684fb791ca4369" - integrity sha512-+OQdjP49zViI/6i7nIJpA8rAl4sV/JdPfU9nZs3VqOwGIgizICvuN2ru6fMd+4llL0tar18UYJXfZ/TWtmhUjA== - dependencies: - safe-buffer "~5.1.1" - -cross-spawn@^7.0.2, cross-spawn@^7.0.3: - version "7.0.3" - resolved "https://registry.yarnpkg.com/cross-spawn/-/cross-spawn-7.0.3.tgz#f73a85b9d5d41d045551c177e2882d4ac85728a6" - integrity sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w== - dependencies: - path-key "^3.1.0" - shebang-command "^2.0.0" - which "^2.0.1" - -debug@^4.1.0, debug@^4.1.1, debug@^4.3.2, debug@^4.3.4: - version "4.3.4" - resolved "https://registry.yarnpkg.com/debug/-/debug-4.3.4.tgz#1319f6579357f2338d3337d2cdd4914bb5dcc865" - integrity sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ== - dependencies: - ms "2.1.2" - -dedent@^0.7.0: - version "0.7.0" - resolved "https://registry.yarnpkg.com/dedent/-/dedent-0.7.0.tgz#2495ddbaf6eb874abb0e1be9df22d2e5a544326c" - integrity sha512-Q6fKUPqnAHAyhiUgFU7BUzLiv0kd8saH9al7tnu5Q/okj6dnupxyTgFIBjVzJATdfIAm9NAsvXNzjaKa+bxVyA== - -deep-is@^0.1.3: - version "0.1.4" - resolved "https://registry.yarnpkg.com/deep-is/-/deep-is-0.1.4.tgz#a6f2dce612fadd2ef1f519b73551f17e85199831" - integrity sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ== - -deepmerge@^4.2.2: - version "4.2.2" - resolved "https://registry.yarnpkg.com/deepmerge/-/deepmerge-4.2.2.tgz#44d2ea3679b8f4d4ffba33f03d865fc1e7bf4955" - integrity sha512-FJ3UgI4gIl+PHZm53knsuSFpE+nESMr7M4v9QcgB7S63Kj/6WqMiFQJpBBYz1Pt+66bZpP3Q7Lye0Oo9MPKEdg== - -detect-newline@^3.0.0: - version "3.1.0" - resolved "https://registry.yarnpkg.com/detect-newline/-/detect-newline-3.1.0.tgz#576f5dfc63ae1a192ff192d8ad3af6308991b651" - integrity sha512-TLz+x/vEXm/Y7P7wn1EJFNLxYpUD4TgMosxY6fAVJUnJMbupHBOncxyWUG9OpTaH9EBD7uFI5LfEgmMOc54DsA== - -diff-sequences@^28.1.1: - version "28.1.1" - resolved "https://registry.yarnpkg.com/diff-sequences/-/diff-sequences-28.1.1.tgz#9989dc731266dc2903457a70e996f3a041913ac6" - integrity sha512-FU0iFaH/E23a+a718l8Qa/19bF9p06kgE0KipMOMadwa3SjnaElKzPaUC0vnibs6/B/9ni97s61mcejk8W1fQw== - -dir-glob@^3.0.1: - version "3.0.1" - resolved "https://registry.yarnpkg.com/dir-glob/-/dir-glob-3.0.1.tgz#56dbf73d992a4a93ba1584f4534063fd2e41717f" - integrity sha512-WkrWp9GR4KXfKGYzOLmTuGVi1UWFfws377n9cc55/tb6DuqyF6pcQ5AbiHEshaDpY9v6oaSr2XCDidGmMwdzIA== - dependencies: - path-type "^4.0.0" - -doctrine@^3.0.0: - version "3.0.0" - resolved "https://registry.yarnpkg.com/doctrine/-/doctrine-3.0.0.tgz#addebead72a6574db783639dc87a121773973961" - integrity sha512-yS+Q5i3hBf7GBkd4KG8a7eBNNWNGLTaEwwYWUijIYM7zrlYDM0BFXHjjPWlWZ1Rg7UaddZeIDmi9jF3HmqiQ2w== - dependencies: - esutils "^2.0.2" - -electron-to-chromium@^1.4.172: - version "1.4.176" - resolved "https://registry.yarnpkg.com/electron-to-chromium/-/electron-to-chromium-1.4.176.tgz#61ab2a1de3b5072ee31881a937c08ac6780d1cfa" - integrity sha512-92JdgyRlcNDwuy75MjuFSb3clt6DGJ2IXSpg0MCjKd3JV9eSmuUAIyWiGAp/EtT0z2D4rqbYqThQLV90maH3Zw== - -emittery@^0.10.2: - version "0.10.2" - resolved "https://registry.yarnpkg.com/emittery/-/emittery-0.10.2.tgz#902eec8aedb8c41938c46e9385e9db7e03182933" - integrity sha512-aITqOwnLanpHLNXZJENbOgjUBeHocD+xsSJmNrjovKBW5HbSpW3d1pEls7GFQPUWXiwG9+0P4GtHfEqC/4M0Iw== - -emoji-regex@^8.0.0: - version "8.0.0" - resolved "https://registry.yarnpkg.com/emoji-regex/-/emoji-regex-8.0.0.tgz#e818fd69ce5ccfcb404594f842963bf53164cc37" - integrity sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A== - -error-ex@^1.3.1: - version "1.3.2" - resolved "https://registry.yarnpkg.com/error-ex/-/error-ex-1.3.2.tgz#b4ac40648107fdcdcfae242f428bea8a14d4f1bf" - integrity sha512-7dFHNmqeFSEt2ZBsCriorKnn3Z2pj+fd9kmI6QoWw4//DL+icEBfc0U7qJCisqrTsKTjw4fNFy2pW9OqStD84g== - dependencies: - is-arrayish "^0.2.1" - -escalade@^3.1.1: - version "3.1.1" - resolved "https://registry.yarnpkg.com/escalade/-/escalade-3.1.1.tgz#d8cfdc7000965c5a0174b4a82eaa5c0552742e40" - integrity sha512-k0er2gUkLf8O0zKJiAhmkTnJlTvINGv7ygDNPbeIsX/TJjGJZHuh9B2UxbsaEkmlEo9MfhrSzmhIlhRlI2GXnw== - -escape-string-regexp@^1.0.5: - version "1.0.5" - resolved "https://registry.yarnpkg.com/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz#1b61c0562190a8dff6ae3bb2cf0200ca130b86d4" - integrity sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg== - -escape-string-regexp@^2.0.0: - version "2.0.0" - resolved "https://registry.yarnpkg.com/escape-string-regexp/-/escape-string-regexp-2.0.0.tgz#a30304e99daa32e23b2fd20f51babd07cffca344" - integrity sha512-UpzcLCXolUWcNu5HtVMHYdXJjArjsF9C0aNnquZYY4uW/Vu0miy5YoWvbV345HauVvcAUnpRuhMMcqTcGOY2+w== - -escape-string-regexp@^4.0.0: - version "4.0.0" - resolved "https://registry.yarnpkg.com/escape-string-regexp/-/escape-string-regexp-4.0.0.tgz#14ba83a5d373e3d311e5afca29cf5bfad965bf34" - integrity sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA== - -eslint-config-prettier@~8.5: - version "8.5.0" - resolved "https://registry.yarnpkg.com/eslint-config-prettier/-/eslint-config-prettier-8.5.0.tgz#5a81680ec934beca02c7b1a61cf8ca34b66feab1" - integrity sha512-obmWKLUNCnhtQRKc+tmnYuQl0pFU1ibYJQ5BGhTVB08bHe9wC8qUeG7c08dj9XX+AuPj1YSGSQIHl1pnDHZR0Q== - -eslint-plugin-jest@~26.2: - version "26.2.2" - resolved "https://registry.yarnpkg.com/eslint-plugin-jest/-/eslint-plugin-jest-26.2.2.tgz#74e000544259f1ef0462a609a3fc9e5da3768f6c" - integrity sha512-etSFZ8VIFX470aA6kTqDPhIq7YWe0tjBcboFNV3WeiC18PJ/AVonGhuTwlmuz2fBkH8FJHA7JQ4k7GsQIj1Gew== - dependencies: - "@typescript-eslint/utils" "^5.10.0" - -eslint-scope@^5.1.1: - version "5.1.1" - resolved "https://registry.yarnpkg.com/eslint-scope/-/eslint-scope-5.1.1.tgz#e786e59a66cb92b3f6c1fb0d508aab174848f48c" - integrity sha512-2NxwbF/hZ0KpepYN0cNbo+FN6XoK7GaHlQhgx/hIZl6Va0bF45RQOOwhLIy8lQDbuCiadSLCBnH2CFYquit5bw== - dependencies: - esrecurse "^4.3.0" - estraverse "^4.1.1" - -eslint-scope@^7.1.1: - version "7.1.1" - resolved "https://registry.yarnpkg.com/eslint-scope/-/eslint-scope-7.1.1.tgz#fff34894c2f65e5226d3041ac480b4513a163642" - integrity sha512-QKQM/UXpIiHcLqJ5AOyIW7XZmzjkzQXYE54n1++wb0u9V/abW3l9uQnxX8Z5Xd18xyKIMTUAyQ0k1e8pz6LUrw== - dependencies: - esrecurse "^4.3.0" - estraverse "^5.2.0" - -eslint-utils@^3.0.0: - version "3.0.0" - resolved "https://registry.yarnpkg.com/eslint-utils/-/eslint-utils-3.0.0.tgz#8aebaface7345bb33559db0a1f13a1d2d48c3672" - integrity sha512-uuQC43IGctw68pJA1RgbQS8/NP7rch6Cwd4j3ZBtgo4/8Flj4eGE7ZYSZRN3iq5pVUv6GPdW5Z1RFleo84uLDA== - dependencies: - eslint-visitor-keys "^2.0.0" - -eslint-visitor-keys@^2.0.0: - version "2.1.0" - resolved "https://registry.yarnpkg.com/eslint-visitor-keys/-/eslint-visitor-keys-2.1.0.tgz#f65328259305927392c938ed44eb0a5c9b2bd303" - integrity sha512-0rSmRBzXgDzIsD6mGdJgevzgezI534Cer5L/vyMX0kHzT/jiB43jRhd9YUlMGYLQy2zprNmoT8qasCGtY+QaKw== - -eslint-visitor-keys@^3.3.0: - version "3.3.0" - resolved "https://registry.yarnpkg.com/eslint-visitor-keys/-/eslint-visitor-keys-3.3.0.tgz#f6480fa6b1f30efe2d1968aa8ac745b862469826" - integrity sha512-mQ+suqKJVyeuwGYHAdjMFqjCyfl8+Ldnxuyp3ldiMBFKkvytrXUZWaiPCEav8qDHKty44bD+qV1IP4T+w+xXRA== - -eslint@~8.16: - version "8.16.0" - resolved "https://registry.yarnpkg.com/eslint/-/eslint-8.16.0.tgz#6d936e2d524599f2a86c708483b4c372c5d3bbae" - integrity sha512-MBndsoXY/PeVTDJeWsYj7kLZ5hQpJOfMYLsF6LicLHQWbRDG19lK5jOix4DPl8yY4SUFcE3txy86OzFLWT+yoA== - dependencies: - "@eslint/eslintrc" "^1.3.0" - "@humanwhocodes/config-array" "^0.9.2" - ajv "^6.10.0" - chalk "^4.0.0" - cross-spawn "^7.0.2" - debug "^4.3.2" - doctrine "^3.0.0" - escape-string-regexp "^4.0.0" - eslint-scope "^7.1.1" - eslint-utils "^3.0.0" - eslint-visitor-keys "^3.3.0" - espree "^9.3.2" - esquery "^1.4.0" - esutils "^2.0.2" - fast-deep-equal "^3.1.3" - file-entry-cache "^6.0.1" - functional-red-black-tree "^1.0.1" - glob-parent "^6.0.1" - globals "^13.15.0" - ignore "^5.2.0" - import-fresh "^3.0.0" - imurmurhash "^0.1.4" - is-glob "^4.0.0" - js-yaml "^4.1.0" - json-stable-stringify-without-jsonify "^1.0.1" - levn "^0.4.1" - lodash.merge "^4.6.2" - minimatch "^3.1.2" - natural-compare "^1.4.0" - optionator "^0.9.1" - regexpp "^3.2.0" - strip-ansi "^6.0.1" - strip-json-comments "^3.1.0" - text-table "^0.2.0" - v8-compile-cache "^2.0.3" - -espree@^9.3.2: - version "9.3.2" - resolved "https://registry.yarnpkg.com/espree/-/espree-9.3.2.tgz#f58f77bd334731182801ced3380a8cc859091596" - integrity sha512-D211tC7ZwouTIuY5x9XnS0E9sWNChB7IYKX/Xp5eQj3nFXhqmiUDB9q27y76oFl8jTg3pXcQx/bpxMfs3CIZbA== - dependencies: - acorn "^8.7.1" - acorn-jsx "^5.3.2" - eslint-visitor-keys "^3.3.0" - -esprima@^4.0.0: - version "4.0.1" - resolved "https://registry.yarnpkg.com/esprima/-/esprima-4.0.1.tgz#13b04cdb3e6c5d19df91ab6987a8695619b0aa71" - integrity sha512-eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A== - -esquery@^1.4.0: - version "1.4.0" - resolved "https://registry.yarnpkg.com/esquery/-/esquery-1.4.0.tgz#2148ffc38b82e8c7057dfed48425b3e61f0f24a5" - integrity sha512-cCDispWt5vHHtwMY2YrAQ4ibFkAL8RbH5YGBnZBc90MolvvfkkQcJro/aZiAQUlQ3qgrYS6D6v8Gc5G5CQsc9w== - dependencies: - estraverse "^5.1.0" - -esrecurse@^4.3.0: - version "4.3.0" - resolved "https://registry.yarnpkg.com/esrecurse/-/esrecurse-4.3.0.tgz#7ad7964d679abb28bee72cec63758b1c5d2c9921" - integrity sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag== - dependencies: - estraverse "^5.2.0" - -estraverse@^4.1.1: - version "4.3.0" - resolved "https://registry.yarnpkg.com/estraverse/-/estraverse-4.3.0.tgz#398ad3f3c5a24948be7725e83d11a7de28cdbd1d" - integrity sha512-39nnKffWz8xN1BU/2c79n9nB9HDzo0niYUqx6xyqUnyoAnQyyWpOTdZEeiCch8BBu515t4wp9ZmgVfVhn9EBpw== - -estraverse@^5.1.0, estraverse@^5.2.0: - version "5.3.0" - resolved "https://registry.yarnpkg.com/estraverse/-/estraverse-5.3.0.tgz#2eea5290702f26ab8fe5370370ff86c965d21123" - integrity sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA== - -esutils@^2.0.2: - version "2.0.3" - resolved "https://registry.yarnpkg.com/esutils/-/esutils-2.0.3.tgz#74d2eb4de0b8da1293711910d50775b9b710ef64" - integrity sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g== - -execa@^5.0.0: - version "5.1.1" - resolved "https://registry.yarnpkg.com/execa/-/execa-5.1.1.tgz#f80ad9cbf4298f7bd1d4c9555c21e93741c411dd" - integrity sha512-8uSpZZocAZRBAPIEINJj3Lo9HyGitllczc27Eh5YYojjMFMn8yHMDMaUHE2Jqfq05D/wucwI4JGURyXt1vchyg== - dependencies: - cross-spawn "^7.0.3" - get-stream "^6.0.0" - human-signals "^2.1.0" - is-stream "^2.0.0" - merge-stream "^2.0.0" - npm-run-path "^4.0.1" - onetime "^5.1.2" - signal-exit "^3.0.3" - strip-final-newline "^2.0.0" - -exit@^0.1.2: - version "0.1.2" - resolved "https://registry.yarnpkg.com/exit/-/exit-0.1.2.tgz#0632638f8d877cc82107d30a0fff1a17cba1cd0c" - integrity sha512-Zk/eNKV2zbjpKzrsQ+n1G6poVbErQxJ0LBOJXaKZ1EViLzH+hrLu9cdXI4zw9dBQJslwBEpbQ2P1oS7nDxs6jQ== - -expect@^28.1.1: - version "28.1.1" - resolved "https://registry.yarnpkg.com/expect/-/expect-28.1.1.tgz#ca6fff65f6517cf7220c2e805a49c19aea30b420" - integrity sha512-/AANEwGL0tWBwzLNOvO0yUdy2D52jVdNXppOqswC49sxMN2cPWsGCQdzuIf9tj6hHoBQzNvx75JUYuQAckPo3w== - dependencies: - "@jest/expect-utils" "^28.1.1" - jest-get-type "^28.0.2" - jest-matcher-utils "^28.1.1" - jest-message-util "^28.1.1" - jest-util "^28.1.1" - -fast-deep-equal@^3.1.1, fast-deep-equal@^3.1.3: - version "3.1.3" - resolved "https://registry.yarnpkg.com/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz#3a7d56b559d6cbc3eb512325244e619a65c6c525" - integrity sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q== - -fast-glob@^3.2.9: - version "3.2.11" - resolved "https://registry.yarnpkg.com/fast-glob/-/fast-glob-3.2.11.tgz#a1172ad95ceb8a16e20caa5c5e56480e5129c1d9" - integrity sha512-xrO3+1bxSo3ZVHAnqzyuewYT6aMFHRAd4Kcs92MAonjwQZLsK9d0SF1IyQ3k5PoirxTW0Oe/RqFgMQ6TcNE5Ew== - dependencies: - "@nodelib/fs.stat" "^2.0.2" - "@nodelib/fs.walk" "^1.2.3" - glob-parent "^5.1.2" - merge2 "^1.3.0" - micromatch "^4.0.4" - -fast-json-stable-stringify@2.x, fast-json-stable-stringify@^2.0.0: - version "2.1.0" - resolved "https://registry.yarnpkg.com/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz#874bf69c6f404c2b5d99c481341399fd55892633" - integrity sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw== - -fast-levenshtein@^2.0.6: - version "2.0.6" - resolved "https://registry.yarnpkg.com/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz#3d8a5c66883a16a30ca8643e851f19baa7797917" - integrity sha512-DCXu6Ifhqcks7TZKY3Hxp3y6qphY5SJZmrWMDrKcERSOXWQdMhU9Ig/PYrzyw/ul9jOIyh0N4M0tbC5hodg8dw== - -fastq@^1.6.0: - version "1.13.0" - resolved "https://registry.yarnpkg.com/fastq/-/fastq-1.13.0.tgz#616760f88a7526bdfc596b7cab8c18938c36b98c" - integrity sha512-YpkpUnK8od0o1hmeSc7UUs/eB/vIPWJYjKck2QKIzAf71Vm1AAQ3EbuZB3g2JIy+pg+ERD0vqI79KyZiB2e2Nw== - dependencies: - reusify "^1.0.4" - -fb-watchman@^2.0.0: - version "2.0.1" - resolved "https://registry.yarnpkg.com/fb-watchman/-/fb-watchman-2.0.1.tgz#fc84fb39d2709cf3ff6d743706157bb5708a8a85" - integrity sha512-DkPJKQeY6kKwmuMretBhr7G6Vodr7bFwDYTXIkfG1gjvNpaxBTQV3PbXg6bR1c1UP4jPOX0jHUbbHANL9vRjVg== - dependencies: - bser "2.1.1" - -file-entry-cache@^6.0.1: - version "6.0.1" - resolved "https://registry.yarnpkg.com/file-entry-cache/-/file-entry-cache-6.0.1.tgz#211b2dd9659cb0394b073e7323ac3c933d522027" - integrity sha512-7Gps/XWymbLk2QLYK4NzpMOrYjMhdIxXuIvy2QBsLE6ljuodKvdkWs/cpyJJ3CVIVpH0Oi1Hvg1ovbMzLdFBBg== - dependencies: - flat-cache "^3.0.4" - -fill-range@^7.0.1: - version "7.0.1" - resolved "https://registry.yarnpkg.com/fill-range/-/fill-range-7.0.1.tgz#1919a6a7c75fe38b2c7c77e5198535da9acdda40" - integrity sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ== - dependencies: - to-regex-range "^5.0.1" - -find-up@^4.0.0, find-up@^4.1.0: - version "4.1.0" - resolved "https://registry.yarnpkg.com/find-up/-/find-up-4.1.0.tgz#97afe7d6cdc0bc5928584b7c8d7b16e8a9aa5d19" - integrity sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw== - dependencies: - locate-path "^5.0.0" - path-exists "^4.0.0" - -flat-cache@^3.0.4: - version "3.0.4" - resolved "https://registry.yarnpkg.com/flat-cache/-/flat-cache-3.0.4.tgz#61b0338302b2fe9f957dcc32fc2a87f1c3048b11" - integrity sha512-dm9s5Pw7Jc0GvMYbshN6zchCA9RgQlzzEZX3vylR9IqFfS8XciblUXOKfW6SiuJ0e13eDYZoZV5wdrev7P3Nwg== - dependencies: - flatted "^3.1.0" - rimraf "^3.0.2" - -flatted@^3.1.0: - version "3.2.6" - resolved "https://registry.yarnpkg.com/flatted/-/flatted-3.2.6.tgz#022e9218c637f9f3fc9c35ab9c9193f05add60b2" - integrity sha512-0sQoMh9s0BYsm+12Huy/rkKxVu4R1+r96YX5cG44rHV0pQ6iC3Q+mkoMFaGWObMFYQxCVT+ssG1ksneA2MI9KQ== - -fs.realpath@^1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/fs.realpath/-/fs.realpath-1.0.0.tgz#1504ad2523158caa40db4a2787cb01411994ea4f" - integrity sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw== - -fsevents@^2.3.2: - version "2.3.2" - resolved "https://registry.yarnpkg.com/fsevents/-/fsevents-2.3.2.tgz#8a526f78b8fdf4623b709e0b975c52c24c02fd1a" - integrity sha512-xiqMQR4xAeHTuB9uWm+fFRcIOgKBMiOBP+eXiyT7jsgVCq1bkVygt00oASowB7EdtpOHaaPgKt812P9ab+DDKA== - -function-bind@^1.1.1: - version "1.1.1" - resolved "https://registry.yarnpkg.com/function-bind/-/function-bind-1.1.1.tgz#a56899d3ea3c9bab874bb9773b7c5ede92f4895d" - integrity sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A== - -functional-red-black-tree@^1.0.1: - version "1.0.1" - resolved "https://registry.yarnpkg.com/functional-red-black-tree/-/functional-red-black-tree-1.0.1.tgz#1b0ab3bd553b2a0d6399d29c0e3ea0b252078327" - integrity sha512-dsKNQNdj6xA3T+QlADDA7mOSlX0qiMINjn0cgr+eGHGsbSHzTabcIogz2+p/iqP1Xs6EP/sS2SbqH+brGTbq0g== - -gensync@^1.0.0-beta.2: - version "1.0.0-beta.2" - resolved "https://registry.yarnpkg.com/gensync/-/gensync-1.0.0-beta.2.tgz#32a6ee76c3d7f52d46b2b1ae5d93fea8580a25e0" - integrity sha512-3hN7NaskYvMDLQY55gnW3NQ+mesEAepTqlg+VEbj7zzqEMBVNhzcGYYeqFo/TlYz6eQiFcp1HcsCZO+nGgS8zg== - -get-caller-file@^2.0.5: - version "2.0.5" - resolved "https://registry.yarnpkg.com/get-caller-file/-/get-caller-file-2.0.5.tgz#4f94412a82db32f36e3b0b9741f8a97feb031f7e" - integrity sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg== - -get-package-type@^0.1.0: - version "0.1.0" - resolved "https://registry.yarnpkg.com/get-package-type/-/get-package-type-0.1.0.tgz#8de2d803cff44df3bc6c456e6668b36c3926e11a" - integrity sha512-pjzuKtY64GYfWizNAJ0fr9VqttZkNiK2iS430LtIHzjBEr6bX8Am2zm4sW4Ro5wjWW5cAlRL1qAMTcXbjNAO2Q== - -get-stream@^6.0.0: - version "6.0.1" - resolved "https://registry.yarnpkg.com/get-stream/-/get-stream-6.0.1.tgz#a262d8eef67aced57c2852ad6167526a43cbf7b7" - integrity sha512-ts6Wi+2j3jQjqi70w5AlN8DFnkSwC+MqmxEzdEALB2qXZYV3X/b1CTfgPLGJNMeAWxdPfU8FO1ms3NUfaHCPYg== - -glob-parent@^5.1.2: - version "5.1.2" - resolved "https://registry.yarnpkg.com/glob-parent/-/glob-parent-5.1.2.tgz#869832c58034fe68a4093c17dc15e8340d8401c4" - integrity sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow== - dependencies: - is-glob "^4.0.1" - -glob-parent@^6.0.1: - version "6.0.2" - resolved "https://registry.yarnpkg.com/glob-parent/-/glob-parent-6.0.2.tgz#6d237d99083950c79290f24c7642a3de9a28f9e3" - integrity sha512-XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A== - dependencies: - is-glob "^4.0.3" - -glob@^7.1.3, glob@^7.1.4: - version "7.2.3" - resolved "https://registry.yarnpkg.com/glob/-/glob-7.2.3.tgz#b8df0fb802bbfa8e89bd1d938b4e16578ed44f2b" - integrity sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q== - dependencies: - fs.realpath "^1.0.0" - inflight "^1.0.4" - inherits "2" - minimatch "^3.1.1" - once "^1.3.0" - path-is-absolute "^1.0.0" - -globals@^11.1.0: - version "11.12.0" - resolved "https://registry.yarnpkg.com/globals/-/globals-11.12.0.tgz#ab8795338868a0babd8525758018c2a7eb95c42e" - integrity sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA== - -globals@^13.15.0: - version "13.15.0" - resolved "https://registry.yarnpkg.com/globals/-/globals-13.15.0.tgz#38113218c907d2f7e98658af246cef8b77e90bac" - integrity sha512-bpzcOlgDhMG070Av0Vy5Owklpv1I6+j96GhUI7Rh7IzDCKLzboflLrrfqMu8NquDbiR4EOQk7XzJwqVJxicxog== - dependencies: - type-fest "^0.20.2" - -globby@^11.1.0: - version "11.1.0" - resolved "https://registry.yarnpkg.com/globby/-/globby-11.1.0.tgz#bd4be98bb042f83d796f7e3811991fbe82a0d34b" - integrity sha512-jhIXaOzy1sb8IyocaruWSn1TjmnBVs8Ayhcy83rmxNJ8q2uWKCAj3CnJY+KpGSXCueAPc0i05kVvVKtP1t9S3g== - dependencies: - array-union "^2.1.0" - dir-glob "^3.0.1" - fast-glob "^3.2.9" - ignore "^5.2.0" - merge2 "^1.4.1" - slash "^3.0.0" - -graceful-fs@^4.2.9: - version "4.2.10" - resolved "https://registry.yarnpkg.com/graceful-fs/-/graceful-fs-4.2.10.tgz#147d3a006da4ca3ce14728c7aefc287c367d7a6c" - integrity sha512-9ByhssR2fPVsNZj478qUUbKfmL0+t5BDVyjShtyZZLiK7ZDAArFFfopyOTj0M05wE2tJPisA4iTnnXl2YoPvOA== - -has-flag@^3.0.0: - version "3.0.0" - resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-3.0.0.tgz#b5d454dc2199ae225699f3467e5a07f3b955bafd" - integrity sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw== - -has-flag@^4.0.0: - version "4.0.0" - resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-4.0.0.tgz#944771fd9c81c81265c4d6941860da06bb59479b" - integrity sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ== - -has@^1.0.3: - version "1.0.3" - resolved "https://registry.yarnpkg.com/has/-/has-1.0.3.tgz#722d7cbfc1f6aa8241f16dd814e011e1f41e8796" - integrity sha512-f2dvO0VU6Oej7RkWJGrehjbzMAjFp5/VKPp5tTpWIV4JHHZK1/BxbFRtf/siA2SWTe09caDmVtYYzWEIbBS4zw== - dependencies: - function-bind "^1.1.1" - -html-escaper@^2.0.0: - version "2.0.2" - resolved "https://registry.yarnpkg.com/html-escaper/-/html-escaper-2.0.2.tgz#dfd60027da36a36dfcbe236262c00a5822681453" - integrity sha512-H2iMtd0I4Mt5eYiapRdIDjp+XzelXQ0tFE4JS7YFwFevXXMmOp9myNrUvCg0D6ws8iqkRPBfKHgbwig1SmlLfg== - -human-signals@^2.1.0: - version "2.1.0" - resolved "https://registry.yarnpkg.com/human-signals/-/human-signals-2.1.0.tgz#dc91fcba42e4d06e4abaed33b3e7a3c02f514ea0" - integrity sha512-B4FFZ6q/T2jhhksgkbEW3HBvWIfDW85snkQgawt07S7J5QXTk6BkNV+0yAeZrM5QpMAdYlocGoljn0sJ/WQkFw== - -ignore@^5.2.0: - version "5.2.0" - resolved "https://registry.yarnpkg.com/ignore/-/ignore-5.2.0.tgz#6d3bac8fa7fe0d45d9f9be7bac2fc279577e345a" - integrity sha512-CmxgYGiEPCLhfLnpPp1MoRmifwEIOgjcHXxOBjv7mY96c+eWScsOP9c112ZyLdWHi0FxHjI+4uVhKYp/gcdRmQ== - -import-fresh@^3.0.0, import-fresh@^3.2.1: - version "3.3.0" - resolved "https://registry.yarnpkg.com/import-fresh/-/import-fresh-3.3.0.tgz#37162c25fcb9ebaa2e6e53d5b4d88ce17d9e0c2b" - integrity sha512-veYYhQa+D1QBKznvhUHxb8faxlrwUnxseDAbAp457E0wLNio2bOSKnjYDhMj+YiAq61xrMGhQk9iXVk5FzgQMw== - dependencies: - parent-module "^1.0.0" - resolve-from "^4.0.0" - -import-local@^3.0.2: - version "3.1.0" - resolved "https://registry.yarnpkg.com/import-local/-/import-local-3.1.0.tgz#b4479df8a5fd44f6cdce24070675676063c95cb4" - integrity sha512-ASB07uLtnDs1o6EHjKpX34BKYDSqnFerfTOJL2HvMqF70LnxpjkzDB8J44oT9pu4AMPkQwf8jl6szgvNd2tRIg== - dependencies: - pkg-dir "^4.2.0" - resolve-cwd "^3.0.0" - -imurmurhash@^0.1.4: - version "0.1.4" - resolved "https://registry.yarnpkg.com/imurmurhash/-/imurmurhash-0.1.4.tgz#9218b9b2b928a238b13dc4fb6b6d576f231453ea" - integrity sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA== - -inflight@^1.0.4: - version "1.0.6" - resolved "https://registry.yarnpkg.com/inflight/-/inflight-1.0.6.tgz#49bd6331d7d02d0c09bc910a1075ba8165b56df9" - integrity sha512-k92I/b08q4wvFscXCLvqfsHCrjrF7yiXsQuIVvVE7N82W3+aqpzuUdBbfhWcy/FZR3/4IgflMgKLOsvPDrGCJA== - dependencies: - once "^1.3.0" - wrappy "1" - -inherits@2: - version "2.0.4" - resolved "https://registry.yarnpkg.com/inherits/-/inherits-2.0.4.tgz#0fa2c64f932917c3433a0ded55363aae37416b7c" - integrity sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ== - -is-arrayish@^0.2.1: - version "0.2.1" - resolved "https://registry.yarnpkg.com/is-arrayish/-/is-arrayish-0.2.1.tgz#77c99840527aa8ecb1a8ba697b80645a7a926a9d" - integrity sha512-zz06S8t0ozoDXMG+ube26zeCTNXcKIPJZJi8hBrF4idCLms4CG9QtK7qBl1boi5ODzFpjswb5JPmHCbMpjaYzg== - -is-core-module@^2.9.0: - version "2.9.0" - resolved "https://registry.yarnpkg.com/is-core-module/-/is-core-module-2.9.0.tgz#e1c34429cd51c6dd9e09e0799e396e27b19a9c69" - integrity sha512-+5FPy5PnwmO3lvfMb0AsoPaBG+5KHUI0wYFXOtYPnVVVspTFUuMZNfNaNVRt3FZadstu2c8x23vykRW/NBoU6A== - dependencies: - has "^1.0.3" - -is-extglob@^2.1.1: - version "2.1.1" - resolved "https://registry.yarnpkg.com/is-extglob/-/is-extglob-2.1.1.tgz#a88c02535791f02ed37c76a1b9ea9773c833f8c2" - integrity sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ== - -is-fullwidth-code-point@^3.0.0: - version "3.0.0" - resolved "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz#f116f8064fe90b3f7844a38997c0b75051269f1d" - integrity sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg== - -is-generator-fn@^2.0.0: - version "2.1.0" - resolved "https://registry.yarnpkg.com/is-generator-fn/-/is-generator-fn-2.1.0.tgz#7d140adc389aaf3011a8f2a2a4cfa6faadffb118" - integrity sha512-cTIB4yPYL/Grw0EaSzASzg6bBy9gqCofvWN8okThAYIxKJZC+udlRAmGbM0XLeniEJSs8uEgHPGuHSe1XsOLSQ== - -is-glob@^4.0.0, is-glob@^4.0.1, is-glob@^4.0.3: - version "4.0.3" - resolved "https://registry.yarnpkg.com/is-glob/-/is-glob-4.0.3.tgz#64f61e42cbbb2eec2071a9dac0b28ba1e65d5084" - integrity sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg== - dependencies: - is-extglob "^2.1.1" - -is-number@^7.0.0: - version "7.0.0" - resolved "https://registry.yarnpkg.com/is-number/-/is-number-7.0.0.tgz#7535345b896734d5f80c4d06c50955527a14f12b" - integrity sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng== - -is-plain-object@^2.0.4: - version "2.0.4" - resolved "https://registry.yarnpkg.com/is-plain-object/-/is-plain-object-2.0.4.tgz#2c163b3fafb1b606d9d17928f05c2a1c38e07677" - integrity sha512-h5PpgXkWitc38BBMYawTYMWJHFZJVnBquFE57xFpjB8pJFiF6gZ+bU+WyI/yqXiFR5mdLsgYNaPe8uao6Uv9Og== - dependencies: - isobject "^3.0.1" - -is-stream@^2.0.0: - version "2.0.1" - resolved "https://registry.yarnpkg.com/is-stream/-/is-stream-2.0.1.tgz#fac1e3d53b97ad5a9d0ae9cef2389f5810a5c077" - integrity sha512-hFoiJiTl63nn+kstHGBtewWSKnQLpyb155KHheA1l39uvtO9nWIop1p3udqPcUd/xbF1VLMO4n7OI6p7RbngDg== - -isexe@^2.0.0: - version "2.0.0" - resolved "https://registry.yarnpkg.com/isexe/-/isexe-2.0.0.tgz#e8fbf374dc556ff8947a10dcb0572d633f2cfa10" - integrity sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw== - -isobject@^3.0.1: - version "3.0.1" - resolved "https://registry.yarnpkg.com/isobject/-/isobject-3.0.1.tgz#4e431e92b11a9731636aa1f9c8d1ccbcfdab78df" - integrity sha512-WhB9zCku7EGTj/HQQRz5aUQEUeoQZH2bWcltRErOpymJ4boYE6wL9Tbr23krRPSZ+C5zqNSrSw+Cc7sZZ4b7vg== - -istanbul-lib-coverage@^3.0.0, istanbul-lib-coverage@^3.2.0: - version "3.2.0" - resolved "https://registry.yarnpkg.com/istanbul-lib-coverage/-/istanbul-lib-coverage-3.2.0.tgz#189e7909d0a39fa5a3dfad5b03f71947770191d3" - integrity sha512-eOeJ5BHCmHYvQK7xt9GkdHuzuCGS1Y6g9Gvnx3Ym33fz/HpLRYxiS0wHNr+m/MBC8B647Xt608vCDEvhl9c6Mw== - -istanbul-lib-instrument@^5.0.4, istanbul-lib-instrument@^5.1.0: - version "5.2.0" - resolved "https://registry.yarnpkg.com/istanbul-lib-instrument/-/istanbul-lib-instrument-5.2.0.tgz#31d18bdd127f825dd02ea7bfdfd906f8ab840e9f" - integrity sha512-6Lthe1hqXHBNsqvgDzGO6l03XNeu3CrG4RqQ1KM9+l5+jNGpEJfIELx1NS3SEHmJQA8np/u+E4EPRKRiu6m19A== - dependencies: - "@babel/core" "^7.12.3" - "@babel/parser" "^7.14.7" - "@istanbuljs/schema" "^0.1.2" - istanbul-lib-coverage "^3.2.0" - semver "^6.3.0" - -istanbul-lib-report@^3.0.0: - version "3.0.0" - resolved "https://registry.yarnpkg.com/istanbul-lib-report/-/istanbul-lib-report-3.0.0.tgz#7518fe52ea44de372f460a76b5ecda9ffb73d8a6" - integrity sha512-wcdi+uAKzfiGT2abPpKZ0hSU1rGQjUQnLvtY5MpQ7QCTahD3VODhcu4wcfY1YtkGaDD5yuydOLINXsfbus9ROw== - dependencies: - istanbul-lib-coverage "^3.0.0" - make-dir "^3.0.0" - supports-color "^7.1.0" - -istanbul-lib-source-maps@^4.0.0: - version "4.0.1" - resolved "https://registry.yarnpkg.com/istanbul-lib-source-maps/-/istanbul-lib-source-maps-4.0.1.tgz#895f3a709fcfba34c6de5a42939022f3e4358551" - integrity sha512-n3s8EwkdFIJCG3BPKBYvskgXGoy88ARzvegkitk60NxRdwltLOTaH7CUiMRXvwYorl0Q712iEjcWB+fK/MrWVw== - dependencies: - debug "^4.1.1" - istanbul-lib-coverage "^3.0.0" - source-map "^0.6.1" - -istanbul-reports@^3.1.3: - version "3.1.4" - resolved "https://registry.yarnpkg.com/istanbul-reports/-/istanbul-reports-3.1.4.tgz#1b6f068ecbc6c331040aab5741991273e609e40c" - integrity sha512-r1/DshN4KSE7xWEknZLLLLDn5CJybV3nw01VTkp6D5jzLuELlcbudfj/eSQFvrKsJuTVCGnePO7ho82Nw9zzfw== - dependencies: - html-escaper "^2.0.0" - istanbul-lib-report "^3.0.0" - -jest-changed-files@^28.0.2: - version "28.0.2" - resolved "https://registry.yarnpkg.com/jest-changed-files/-/jest-changed-files-28.0.2.tgz#7d7810660a5bd043af9e9cfbe4d58adb05e91531" - integrity sha512-QX9u+5I2s54ZnGoMEjiM2WeBvJR2J7w/8ZUmH2um/WLAuGAYFQcsVXY9+1YL6k0H/AGUdH8pXUAv6erDqEsvIA== - dependencies: - execa "^5.0.0" - throat "^6.0.1" - -jest-circus@^28.1.2: - version "28.1.2" - resolved "https://registry.yarnpkg.com/jest-circus/-/jest-circus-28.1.2.tgz#0d5a5623eccb244efe87d1edc365696e4fcf80ce" - integrity sha512-E2vdPIJG5/69EMpslFhaA46WkcrN74LI5V/cSJ59L7uS8UNoXbzTxmwhpi9XrIL3zqvMt5T0pl5k2l2u2GwBNQ== - dependencies: - "@jest/environment" "^28.1.2" - "@jest/expect" "^28.1.2" - "@jest/test-result" "^28.1.1" - "@jest/types" "^28.1.1" - "@types/node" "*" - chalk "^4.0.0" - co "^4.6.0" - dedent "^0.7.0" - is-generator-fn "^2.0.0" - jest-each "^28.1.1" - jest-matcher-utils "^28.1.1" - jest-message-util "^28.1.1" - jest-runtime "^28.1.2" - jest-snapshot "^28.1.2" - jest-util "^28.1.1" - pretty-format "^28.1.1" - slash "^3.0.0" - stack-utils "^2.0.3" - throat "^6.0.1" - -jest-cli@^28.1.2: - version "28.1.2" - resolved "https://registry.yarnpkg.com/jest-cli/-/jest-cli-28.1.2.tgz#b89012e5bad14135e71b1628b85475d3773a1bbc" - integrity sha512-l6eoi5Do/IJUXAFL9qRmDiFpBeEJAnjJb1dcd9i/VWfVWbp3mJhuH50dNtX67Ali4Ecvt4eBkWb4hXhPHkAZTw== - dependencies: - "@jest/core" "^28.1.2" - "@jest/test-result" "^28.1.1" - "@jest/types" "^28.1.1" - chalk "^4.0.0" - exit "^0.1.2" - graceful-fs "^4.2.9" - import-local "^3.0.2" - jest-config "^28.1.2" - jest-util "^28.1.1" - jest-validate "^28.1.1" - prompts "^2.0.1" - yargs "^17.3.1" - -jest-config@^28.1.2: - version "28.1.2" - resolved "https://registry.yarnpkg.com/jest-config/-/jest-config-28.1.2.tgz#ba00ad30caf62286c86e7c1099e915218a0ac8c6" - integrity sha512-g6EfeRqddVbjPVBVY4JWpUY4IvQoFRIZcv4V36QkqzE0IGhEC/VkugFeBMAeUE7PRgC8KJF0yvJNDeQRbamEVA== - dependencies: - "@babel/core" "^7.11.6" - "@jest/test-sequencer" "^28.1.1" - "@jest/types" "^28.1.1" - babel-jest "^28.1.2" - chalk "^4.0.0" - ci-info "^3.2.0" - deepmerge "^4.2.2" - glob "^7.1.3" - graceful-fs "^4.2.9" - jest-circus "^28.1.2" - jest-environment-node "^28.1.2" - jest-get-type "^28.0.2" - jest-regex-util "^28.0.2" - jest-resolve "^28.1.1" - jest-runner "^28.1.2" - jest-util "^28.1.1" - jest-validate "^28.1.1" - micromatch "^4.0.4" - parse-json "^5.2.0" - pretty-format "^28.1.1" - slash "^3.0.0" - strip-json-comments "^3.1.1" - -jest-diff@^28.1.1: - version "28.1.1" - resolved "https://registry.yarnpkg.com/jest-diff/-/jest-diff-28.1.1.tgz#1a3eedfd81ae79810931c63a1d0f201b9120106c" - integrity sha512-/MUUxeR2fHbqHoMMiffe/Afm+U8U4olFRJ0hiVG2lZatPJcnGxx292ustVu7bULhjV65IYMxRdploAKLbcrsyg== - dependencies: - chalk "^4.0.0" - diff-sequences "^28.1.1" - jest-get-type "^28.0.2" - pretty-format "^28.1.1" - -jest-docblock@^28.1.1: - version "28.1.1" - resolved "https://registry.yarnpkg.com/jest-docblock/-/jest-docblock-28.1.1.tgz#6f515c3bf841516d82ecd57a62eed9204c2f42a8" - integrity sha512-3wayBVNiOYx0cwAbl9rwm5kKFP8yHH3d/fkEaL02NPTkDojPtheGB7HZSFY4wzX+DxyrvhXz0KSCVksmCknCuA== - dependencies: - detect-newline "^3.0.0" - -jest-each@^28.1.1: - version "28.1.1" - resolved "https://registry.yarnpkg.com/jest-each/-/jest-each-28.1.1.tgz#ba5238dacf4f31d9fe23ddc2c44c01e7c23885c4" - integrity sha512-A042rqh17ZvEhRceDMi784ppoXR7MWGDEKTXEZXb4svt0eShMZvijGxzKsx+yIjeE8QYmHPrnHiTSQVhN4nqaw== - dependencies: - "@jest/types" "^28.1.1" - chalk "^4.0.0" - jest-get-type "^28.0.2" - jest-util "^28.1.1" - pretty-format "^28.1.1" - -jest-environment-node@^28.1.2: - version "28.1.2" - resolved "https://registry.yarnpkg.com/jest-environment-node/-/jest-environment-node-28.1.2.tgz#3e2eb47f6d173b0648d5f7c717cb1c26651d5c8a" - integrity sha512-oYsZz9Qw27XKmOgTtnl0jW7VplJkN2oeof+SwAwKFQacq3CLlG9u4kTGuuLWfvu3J7bVutWlrbEQMOCL/jughw== - dependencies: - "@jest/environment" "^28.1.2" - "@jest/fake-timers" "^28.1.2" - "@jest/types" "^28.1.1" - "@types/node" "*" - jest-mock "^28.1.1" - jest-util "^28.1.1" - -jest-get-type@^28.0.2: - version "28.0.2" - resolved "https://registry.yarnpkg.com/jest-get-type/-/jest-get-type-28.0.2.tgz#34622e628e4fdcd793d46db8a242227901fcf203" - integrity sha512-ioj2w9/DxSYHfOm5lJKCdcAmPJzQXmbM/Url3rhlghrPvT3tt+7a/+oXc9azkKmLvoiXjtV83bEWqi+vs5nlPA== - -jest-haste-map@^28.1.1: - version "28.1.1" - resolved "https://registry.yarnpkg.com/jest-haste-map/-/jest-haste-map-28.1.1.tgz#471685f1acd365a9394745bb97c8fc16289adca3" - integrity sha512-ZrRSE2o3Ezh7sb1KmeLEZRZ4mgufbrMwolcFHNRSjKZhpLa8TdooXOOFlSwoUzlbVs1t0l7upVRW2K7RWGHzbQ== - dependencies: - "@jest/types" "^28.1.1" - "@types/graceful-fs" "^4.1.3" - "@types/node" "*" - anymatch "^3.0.3" - fb-watchman "^2.0.0" - graceful-fs "^4.2.9" - jest-regex-util "^28.0.2" - jest-util "^28.1.1" - jest-worker "^28.1.1" - micromatch "^4.0.4" - walker "^1.0.8" - optionalDependencies: - fsevents "^2.3.2" - -jest-leak-detector@^28.1.1: - version "28.1.1" - resolved "https://registry.yarnpkg.com/jest-leak-detector/-/jest-leak-detector-28.1.1.tgz#537f37afd610a4b3f4cab15e06baf60484548efb" - integrity sha512-4jvs8V8kLbAaotE+wFR7vfUGf603cwYtFf1/PYEsyX2BAjSzj8hQSVTP6OWzseTl0xL6dyHuKs2JAks7Pfubmw== - dependencies: - jest-get-type "^28.0.2" - pretty-format "^28.1.1" - -jest-matcher-utils@^28.0.0, jest-matcher-utils@^28.1.1: - version "28.1.1" - resolved "https://registry.yarnpkg.com/jest-matcher-utils/-/jest-matcher-utils-28.1.1.tgz#a7c4653c2b782ec96796eb3088060720f1e29304" - integrity sha512-NPJPRWrbmR2nAJ+1nmnfcKKzSwgfaciCCrYZzVnNoxVoyusYWIjkBMNvu0RHJe7dNj4hH3uZOPZsQA+xAYWqsw== - dependencies: - chalk "^4.0.0" - jest-diff "^28.1.1" - jest-get-type "^28.0.2" - pretty-format "^28.1.1" - -jest-message-util@^28.1.1: - version "28.1.1" - resolved "https://registry.yarnpkg.com/jest-message-util/-/jest-message-util-28.1.1.tgz#60aa0b475cfc08c8a9363ed2fb9108514dd9ab89" - integrity sha512-xoDOOT66fLfmTRiqkoLIU7v42mal/SqwDKvfmfiWAdJMSJiU+ozgluO7KbvoAgiwIrrGZsV7viETjc8GNrA/IQ== - dependencies: - "@babel/code-frame" "^7.12.13" - "@jest/types" "^28.1.1" - "@types/stack-utils" "^2.0.0" - chalk "^4.0.0" - graceful-fs "^4.2.9" - micromatch "^4.0.4" - pretty-format "^28.1.1" - slash "^3.0.0" - stack-utils "^2.0.3" - -jest-mock@^28.1.1: - version "28.1.1" - resolved "https://registry.yarnpkg.com/jest-mock/-/jest-mock-28.1.1.tgz#37903d269427fa1ef5b2447be874e1c62a39a371" - integrity sha512-bDCb0FjfsmKweAvE09dZT59IMkzgN0fYBH6t5S45NoJfd2DHkS3ySG2K+hucortryhO3fVuXdlxWcbtIuV/Skw== - dependencies: - "@jest/types" "^28.1.1" - "@types/node" "*" - -jest-pnp-resolver@^1.2.2: - version "1.2.2" - resolved "https://registry.yarnpkg.com/jest-pnp-resolver/-/jest-pnp-resolver-1.2.2.tgz#b704ac0ae028a89108a4d040b3f919dfddc8e33c" - integrity sha512-olV41bKSMm8BdnuMsewT4jqlZ8+3TCARAXjZGT9jcoSnrfUnRCqnMoF9XEeoWjbzObpqF9dRhHQj0Xb9QdF6/w== - -jest-regex-util@^28.0.2: - version "28.0.2" - resolved "https://registry.yarnpkg.com/jest-regex-util/-/jest-regex-util-28.0.2.tgz#afdc377a3b25fb6e80825adcf76c854e5bf47ead" - integrity sha512-4s0IgyNIy0y9FK+cjoVYoxamT7Zeo7MhzqRGx7YDYmaQn1wucY9rotiGkBzzcMXTtjrCAP/f7f+E0F7+fxPNdw== - -jest-resolve-dependencies@^28.1.2: - version "28.1.2" - resolved "https://registry.yarnpkg.com/jest-resolve-dependencies/-/jest-resolve-dependencies-28.1.2.tgz#ca528858e0c6642d5a1dda8fc7cda10230c275bc" - integrity sha512-OXw4vbOZuyRTBi3tapWBqdyodU+T33ww5cPZORuTWkg+Y8lmsxQlVu3MWtJh6NMlKRTHQetF96yGPv01Ye7Mbg== - dependencies: - jest-regex-util "^28.0.2" - jest-snapshot "^28.1.2" - -jest-resolve@^28.1.1: - version "28.1.1" - resolved "https://registry.yarnpkg.com/jest-resolve/-/jest-resolve-28.1.1.tgz#bc2eaf384abdcc1aaf3ba7c50d1adf01e59095e5" - integrity sha512-/d1UbyUkf9nvsgdBildLe6LAD4DalgkgZcKd0nZ8XUGPyA/7fsnaQIlKVnDiuUXv/IeZhPEDrRJubVSulxrShA== - dependencies: - chalk "^4.0.0" - graceful-fs "^4.2.9" - jest-haste-map "^28.1.1" - jest-pnp-resolver "^1.2.2" - jest-util "^28.1.1" - jest-validate "^28.1.1" - resolve "^1.20.0" - resolve.exports "^1.1.0" - slash "^3.0.0" - -jest-runner@^28.1.2: - version "28.1.2" - resolved "https://registry.yarnpkg.com/jest-runner/-/jest-runner-28.1.2.tgz#f293409592a62234285a71237e38499a3554e350" - integrity sha512-6/k3DlAsAEr5VcptCMdhtRhOoYClZQmxnVMZvZ/quvPGRpN7OBQYPIC32tWSgOnbgqLXNs5RAniC+nkdFZpD4A== - dependencies: - "@jest/console" "^28.1.1" - "@jest/environment" "^28.1.2" - "@jest/test-result" "^28.1.1" - "@jest/transform" "^28.1.2" - "@jest/types" "^28.1.1" - "@types/node" "*" - chalk "^4.0.0" - emittery "^0.10.2" - graceful-fs "^4.2.9" - jest-docblock "^28.1.1" - jest-environment-node "^28.1.2" - jest-haste-map "^28.1.1" - jest-leak-detector "^28.1.1" - jest-message-util "^28.1.1" - jest-resolve "^28.1.1" - jest-runtime "^28.1.2" - jest-util "^28.1.1" - jest-watcher "^28.1.1" - jest-worker "^28.1.1" - source-map-support "0.5.13" - throat "^6.0.1" - -jest-runtime@^28.1.2: - version "28.1.2" - resolved "https://registry.yarnpkg.com/jest-runtime/-/jest-runtime-28.1.2.tgz#d68f34f814a848555a345ceda23289f14d59a688" - integrity sha512-i4w93OsWzLOeMXSi9epmakb2+3z0AchZtUQVF1hesBmcQQy4vtaql5YdVe9KexdJaVRyPDw8DoBR0j3lYsZVYw== - dependencies: - "@jest/environment" "^28.1.2" - "@jest/fake-timers" "^28.1.2" - "@jest/globals" "^28.1.2" - "@jest/source-map" "^28.1.2" - "@jest/test-result" "^28.1.1" - "@jest/transform" "^28.1.2" - "@jest/types" "^28.1.1" - chalk "^4.0.0" - cjs-module-lexer "^1.0.0" - collect-v8-coverage "^1.0.0" - execa "^5.0.0" - glob "^7.1.3" - graceful-fs "^4.2.9" - jest-haste-map "^28.1.1" - jest-message-util "^28.1.1" - jest-mock "^28.1.1" - jest-regex-util "^28.0.2" - jest-resolve "^28.1.1" - jest-snapshot "^28.1.2" - jest-util "^28.1.1" - slash "^3.0.0" - strip-bom "^4.0.0" - -jest-snapshot@^28.1.2: - version "28.1.2" - resolved "https://registry.yarnpkg.com/jest-snapshot/-/jest-snapshot-28.1.2.tgz#93d31b87b11b384f5946fe0767541496135f8d52" - integrity sha512-wzrieFttZYfLvrCVRJxX+jwML2YTArOUqFpCoSVy1QUapx+LlV9uLbV/mMEhYj4t7aMeE9aSQFHSvV/oNoDAMA== - dependencies: - "@babel/core" "^7.11.6" - "@babel/generator" "^7.7.2" - "@babel/plugin-syntax-typescript" "^7.7.2" - "@babel/traverse" "^7.7.2" - "@babel/types" "^7.3.3" - "@jest/expect-utils" "^28.1.1" - "@jest/transform" "^28.1.2" - "@jest/types" "^28.1.1" - "@types/babel__traverse" "^7.0.6" - "@types/prettier" "^2.1.5" - babel-preset-current-node-syntax "^1.0.0" - chalk "^4.0.0" - expect "^28.1.1" - graceful-fs "^4.2.9" - jest-diff "^28.1.1" - jest-get-type "^28.0.2" - jest-haste-map "^28.1.1" - jest-matcher-utils "^28.1.1" - jest-message-util "^28.1.1" - jest-util "^28.1.1" - natural-compare "^1.4.0" - pretty-format "^28.1.1" - semver "^7.3.5" - -jest-util@^28.0.0, jest-util@^28.1.1: - version "28.1.1" - resolved "https://registry.yarnpkg.com/jest-util/-/jest-util-28.1.1.tgz#ff39e436a1aca397c0ab998db5a51ae2b7080d05" - integrity sha512-FktOu7ca1DZSyhPAxgxB6hfh2+9zMoJ7aEQA759Z6p45NuO8mWcqujH+UdHlCm/V6JTWwDztM2ITCzU1ijJAfw== - dependencies: - "@jest/types" "^28.1.1" - "@types/node" "*" - chalk "^4.0.0" - ci-info "^3.2.0" - graceful-fs "^4.2.9" - picomatch "^2.2.3" - -jest-validate@^28.1.1: - version "28.1.1" - resolved "https://registry.yarnpkg.com/jest-validate/-/jest-validate-28.1.1.tgz#59b7b339b3c85b5144bd0c06ad3600f503a4acc8" - integrity sha512-Kpf6gcClqFCIZ4ti5++XemYJWUPCFUW+N2gknn+KgnDf549iLul3cBuKVe1YcWRlaF8tZV8eJCap0eECOEE3Ug== - dependencies: - "@jest/types" "^28.1.1" - camelcase "^6.2.0" - chalk "^4.0.0" - jest-get-type "^28.0.2" - leven "^3.1.0" - pretty-format "^28.1.1" - -jest-watcher@^28.1.1: - version "28.1.1" - resolved "https://registry.yarnpkg.com/jest-watcher/-/jest-watcher-28.1.1.tgz#533597fb3bfefd52b5cd115cd916cffd237fb60c" - integrity sha512-RQIpeZ8EIJMxbQrXpJQYIIlubBnB9imEHsxxE41f54ZwcqWLysL/A0ZcdMirf+XsMn3xfphVQVV4EW0/p7i7Ug== - dependencies: - "@jest/test-result" "^28.1.1" - "@jest/types" "^28.1.1" - "@types/node" "*" - ansi-escapes "^4.2.1" - chalk "^4.0.0" - emittery "^0.10.2" - jest-util "^28.1.1" - string-length "^4.0.1" - -jest-worker@^28.1.1: - version "28.1.1" - resolved "https://registry.yarnpkg.com/jest-worker/-/jest-worker-28.1.1.tgz#3480c73247171dfd01eda77200f0063ab6a3bf28" - integrity sha512-Au7slXB08C6h+xbJPp7VIb6U0XX5Kc9uel/WFc6/rcTzGiaVCBRngBExSYuXSLFPULPSYU3cJ3ybS988lNFQhQ== - dependencies: - "@types/node" "*" - merge-stream "^2.0.0" - supports-color "^8.0.0" - -jest@^28.1.1: - version "28.1.2" - resolved "https://registry.yarnpkg.com/jest/-/jest-28.1.2.tgz#451ff24081ce31ca00b07b60c61add13aa96f8eb" - integrity sha512-Tuf05DwLeCh2cfWCQbcz9UxldoDyiR1E9Igaei5khjonKncYdc6LDfynKCEWozK0oLE3GD+xKAo2u8x/0s6GOg== - dependencies: - "@jest/core" "^28.1.2" - "@jest/types" "^28.1.1" - import-local "^3.0.2" - jest-cli "^28.1.2" - -js-tokens@^4.0.0: - version "4.0.0" - resolved "https://registry.yarnpkg.com/js-tokens/-/js-tokens-4.0.0.tgz#19203fb59991df98e3a287050d4647cdeaf32499" - integrity sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ== - -js-yaml@^3.13.1: - version "3.14.1" - resolved "https://registry.yarnpkg.com/js-yaml/-/js-yaml-3.14.1.tgz#dae812fdb3825fa306609a8717383c50c36a0537" - integrity sha512-okMH7OXXJ7YrN9Ok3/SXrnu4iX9yOk+25nqX4imS2npuvTYDmo/QEZoqwZkYaIDk3jVvBOTOIEgEhaLOynBS9g== - dependencies: - argparse "^1.0.7" - esprima "^4.0.0" - -js-yaml@^4.1.0: - version "4.1.0" - resolved "https://registry.yarnpkg.com/js-yaml/-/js-yaml-4.1.0.tgz#c1fb65f8f5017901cdd2c951864ba18458a10602" - integrity sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA== - dependencies: - argparse "^2.0.1" - -jsesc@^2.5.1: - version "2.5.2" - resolved "https://registry.yarnpkg.com/jsesc/-/jsesc-2.5.2.tgz#80564d2e483dacf6e8ef209650a67df3f0c283a4" - integrity sha512-OYu7XEzjkCQ3C5Ps3QIZsQfNpqoJyZZA99wd9aWd05NCtC5pWOkShK2mkL6HXQR6/Cy2lbNdPlZBpuQHXE63gA== - -json-parse-even-better-errors@^2.3.0: - version "2.3.1" - resolved "https://registry.yarnpkg.com/json-parse-even-better-errors/-/json-parse-even-better-errors-2.3.1.tgz#7c47805a94319928e05777405dc12e1f7a4ee02d" - integrity sha512-xyFwyhro/JEof6Ghe2iz2NcXoj2sloNsWr/XsERDK/oiPCfaNhl5ONfp+jQdAZRQQ0IJWNzH9zIZF7li91kh2w== - -json-schema-traverse@^0.4.1: - version "0.4.1" - resolved "https://registry.yarnpkg.com/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz#69f6a87d9513ab8bb8fe63bdb0979c448e684660" - integrity sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg== - -json-stable-stringify-without-jsonify@^1.0.1: - version "1.0.1" - resolved "https://registry.yarnpkg.com/json-stable-stringify-without-jsonify/-/json-stable-stringify-without-jsonify-1.0.1.tgz#9db7b59496ad3f3cfef30a75142d2d930ad72651" - integrity sha512-Bdboy+l7tA3OGW6FjyFHWkP5LuByj1Tk33Ljyq0axyzdk9//JSi2u3fP1QSmd1KNwq6VOKYGlAu87CisVir6Pw== - -json5@^2.2.1: - version "2.2.3" - resolved "https://registry.yarnpkg.com/json5/-/json5-2.2.3.tgz#78cd6f1a19bdc12b73db5ad0c61efd66c1e29283" - integrity sha512-XmOWe7eyHYH14cLdVPoyg+GOH3rYX++KpzrylJwSW98t3Nk+U8XOl8FWKOgwtzdb8lXGf6zYwDUzeHMWfxasyg== - -kind-of@^6.0.2: - version "6.0.3" - resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-6.0.3.tgz#07c05034a6c349fa06e24fa35aa76db4580ce4dd" - integrity sha512-dcS1ul+9tmeD95T+x28/ehLgd9mENa3LsvDTtzm3vyBEO7RPptvAD+t44WVXaUjTBRcrpFeFlC8WCruUR456hw== - -kleur@^3.0.3: - version "3.0.3" - resolved "https://registry.yarnpkg.com/kleur/-/kleur-3.0.3.tgz#a79c9ecc86ee1ce3fa6206d1216c501f147fc07e" - integrity sha512-eTIzlVOSUR+JxdDFepEYcBMtZ9Qqdef+rnzWdRZuMbOywu5tO2w2N7rqjoANZ5k9vywhL6Br1VRjUIgTQx4E8w== - -leven@^3.1.0: - version "3.1.0" - resolved "https://registry.yarnpkg.com/leven/-/leven-3.1.0.tgz#77891de834064cccba82ae7842bb6b14a13ed7f2" - integrity sha512-qsda+H8jTaUaN/x5vzW2rzc+8Rw4TAQ/4KjB46IwK5VH+IlVeeeje/EoZRpiXvIqjFgK84QffqPztGI3VBLG1A== - -levn@^0.4.1: - version "0.4.1" - resolved "https://registry.yarnpkg.com/levn/-/levn-0.4.1.tgz#ae4562c007473b932a6200d403268dd2fffc6ade" - integrity sha512-+bT2uH4E5LGE7h/n3evcS/sQlJXCpIp6ym8OWJ5eV6+67Dsql/LaaT7qJBAt2rzfoa/5QBGBhxDix1dMt2kQKQ== - dependencies: - prelude-ls "^1.2.1" - type-check "~0.4.0" - -lines-and-columns@^1.1.6: - version "1.2.4" - resolved "https://registry.yarnpkg.com/lines-and-columns/-/lines-and-columns-1.2.4.tgz#eca284f75d2965079309dc0ad9255abb2ebc1632" - integrity sha512-7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg== - -locate-path@^5.0.0: - version "5.0.0" - resolved "https://registry.yarnpkg.com/locate-path/-/locate-path-5.0.0.tgz#1afba396afd676a6d42504d0a67a3a7eb9f62aa0" - integrity sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g== - dependencies: - p-locate "^4.1.0" - -lodash.memoize@4.x: - version "4.1.2" - resolved "https://registry.yarnpkg.com/lodash.memoize/-/lodash.memoize-4.1.2.tgz#bcc6c49a42a2840ed997f323eada5ecd182e0bfe" - integrity sha512-t7j+NzmgnQzTAYXcsHYLgimltOV1MXHtlOWf6GjL9Kj8GK5FInw5JotxvbOs+IvV1/Dzo04/fCGfLVs7aXb4Ag== - -lodash.merge@^4.6.2: - version "4.6.2" - resolved "https://registry.yarnpkg.com/lodash.merge/-/lodash.merge-4.6.2.tgz#558aa53b43b661e1925a0afdfa36a9a1085fe57a" - integrity sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ== - -lru-cache@^6.0.0: - version "6.0.0" - resolved "https://registry.yarnpkg.com/lru-cache/-/lru-cache-6.0.0.tgz#6d6fe6570ebd96aaf90fcad1dafa3b2566db3a94" - integrity sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA== - dependencies: - yallist "^4.0.0" - -make-dir@^3.0.0: - version "3.1.0" - resolved "https://registry.yarnpkg.com/make-dir/-/make-dir-3.1.0.tgz#415e967046b3a7f1d185277d84aa58203726a13f" - integrity sha512-g3FeP20LNwhALb/6Cz6Dd4F2ngze0jz7tbzrD2wAV+o9FeNHe4rL+yK2md0J/fiSf1sa1ADhXqi5+oVwOM/eGw== - dependencies: - semver "^6.0.0" - -make-error@1.x: - version "1.3.6" - resolved "https://registry.yarnpkg.com/make-error/-/make-error-1.3.6.tgz#2eb2e37ea9b67c4891f684a1394799af484cf7a2" - integrity sha512-s8UhlNe7vPKomQhC1qFelMokr/Sc3AgNbso3n74mVPA5LTZwkB9NlXf4XPamLxJE8h0gh73rM94xvwRT2CVInw== - -makeerror@1.0.12: - version "1.0.12" - resolved "https://registry.yarnpkg.com/makeerror/-/makeerror-1.0.12.tgz#3e5dd2079a82e812e983cc6610c4a2cb0eaa801a" - integrity sha512-JmqCvUhmt43madlpFzG4BQzG2Z3m6tvQDNKdClZnO3VbIudJYmxsT0FNJMeiB2+JTSlTQTSbU8QdesVmwJcmLg== - dependencies: - tmpl "1.0.5" - -merge-stream@^2.0.0: - version "2.0.0" - resolved "https://registry.yarnpkg.com/merge-stream/-/merge-stream-2.0.0.tgz#52823629a14dd00c9770fb6ad47dc6310f2c1f60" - integrity sha512-abv/qOcuPfk3URPfDzmZU1LKmuw8kT+0nIHvKrKgFrwifol/doWcdA4ZqsWQ8ENrFKkd67Mfpo/LovbIUsbt3w== - -merge2@^1.3.0, merge2@^1.4.1: - version "1.4.1" - resolved "https://registry.yarnpkg.com/merge2/-/merge2-1.4.1.tgz#4368892f885e907455a6fd7dc55c0c9d404990ae" - integrity sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg== - -micromatch@^4.0.4: - version "4.0.5" - resolved "https://registry.yarnpkg.com/micromatch/-/micromatch-4.0.5.tgz#bc8999a7cbbf77cdc89f132f6e467051b49090c6" - integrity sha512-DMy+ERcEW2q8Z2Po+WNXuw3c5YaUSFjAO5GsJqfEl7UjvtIuFKO6ZrKvcItdy98dwFI2N1tg3zNIdKaQT+aNdA== - dependencies: - braces "^3.0.2" - picomatch "^2.3.1" - -mimic-fn@^2.1.0: - version "2.1.0" - resolved "https://registry.yarnpkg.com/mimic-fn/-/mimic-fn-2.1.0.tgz#7ed2c2ccccaf84d3ffcb7a69b57711fc2083401b" - integrity sha512-OqbOk5oEQeAZ8WXWydlu9HJjz9WVdEIvamMCcXmuqUYjTknH/sqsWvhQ3vgwKFRR1HpjvNBKQ37nbJgYzGqGcg== - -minimatch@^3.0.4, minimatch@^3.1.1, minimatch@^3.1.2: - version "3.1.2" - resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-3.1.2.tgz#19cd194bfd3e428f049a70817c038d89ab4be35b" - integrity sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw== - dependencies: - brace-expansion "^1.1.7" - -ms@2.1.2: - version "2.1.2" - resolved "https://registry.yarnpkg.com/ms/-/ms-2.1.2.tgz#d09d1f357b443f493382a8eb3ccd183872ae6009" - integrity sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w== - -natural-compare@^1.4.0: - version "1.4.0" - resolved "https://registry.yarnpkg.com/natural-compare/-/natural-compare-1.4.0.tgz#4abebfeed7541f2c27acfb29bdbbd15c8d5ba4f7" - integrity sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw== - -node-int64@^0.4.0: - version "0.4.0" - resolved "https://registry.yarnpkg.com/node-int64/-/node-int64-0.4.0.tgz#87a9065cdb355d3182d8f94ce11188b825c68a3b" - integrity sha512-O5lz91xSOeoXP6DulyHfllpq+Eg00MWitZIbtPfoSEvqIHdl5gfcY6hYzDWnj0qD5tz52PI08u9qUvSVeUBeHw== - -node-releases@^2.0.5: - version "2.0.5" - resolved "https://registry.yarnpkg.com/node-releases/-/node-releases-2.0.5.tgz#280ed5bc3eba0d96ce44897d8aee478bfb3d9666" - integrity sha512-U9h1NLROZTq9uE1SNffn6WuPDg8icmi3ns4rEl/oTfIle4iLjTliCzgTsbaIFMq/Xn078/lfY/BL0GWZ+psK4Q== - -normalize-path@^3.0.0: - version "3.0.0" - resolved "https://registry.yarnpkg.com/normalize-path/-/normalize-path-3.0.0.tgz#0dcd69ff23a1c9b11fd0978316644a0388216a65" - integrity sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA== - -npm-run-path@^4.0.1: - version "4.0.1" - resolved "https://registry.yarnpkg.com/npm-run-path/-/npm-run-path-4.0.1.tgz#b7ecd1e5ed53da8e37a55e1c2269e0b97ed748ea" - integrity sha512-S48WzZW777zhNIrn7gxOlISNAqi9ZC/uQFnRdbeIHhZhCA6UqpkOT8T1G7BvfdgP4Er8gF4sUbaS0i7QvIfCWw== - dependencies: - path-key "^3.0.0" - -once@^1.3.0: - version "1.4.0" - resolved "https://registry.yarnpkg.com/once/-/once-1.4.0.tgz#583b1aa775961d4b113ac17d9c50baef9dd76bd1" - integrity sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w== - dependencies: - wrappy "1" - -onetime@^5.1.2: - version "5.1.2" - resolved "https://registry.yarnpkg.com/onetime/-/onetime-5.1.2.tgz#d0e96ebb56b07476df1dd9c4806e5237985ca45e" - integrity sha512-kbpaSSGJTWdAY5KPVeMOKXSrPtr8C8C7wodJbcsd51jRnmD+GZu8Y0VoU6Dm5Z4vWr0Ig/1NKuWRKf7j5aaYSg== - dependencies: - mimic-fn "^2.1.0" - -optionator@^0.9.1: - version "0.9.1" - resolved "https://registry.yarnpkg.com/optionator/-/optionator-0.9.1.tgz#4f236a6373dae0566a6d43e1326674f50c291499" - integrity sha512-74RlY5FCnhq4jRxVUPKDaRwrVNXMqsGsiW6AJw4XK8hmtm10wC0ypZBLw5IIp85NZMr91+qd1RvvENwg7jjRFw== - dependencies: - deep-is "^0.1.3" - fast-levenshtein "^2.0.6" - levn "^0.4.1" - prelude-ls "^1.2.1" - type-check "^0.4.0" - word-wrap "^1.2.3" - -p-limit@^2.2.0: - version "2.3.0" - resolved "https://registry.yarnpkg.com/p-limit/-/p-limit-2.3.0.tgz#3dd33c647a214fdfffd835933eb086da0dc21db1" - integrity sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w== - dependencies: - p-try "^2.0.0" - -p-locate@^4.1.0: - version "4.1.0" - resolved "https://registry.yarnpkg.com/p-locate/-/p-locate-4.1.0.tgz#a3428bb7088b3a60292f66919278b7c297ad4f07" - integrity sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A== - dependencies: - p-limit "^2.2.0" - -p-try@^2.0.0: - version "2.2.0" - resolved "https://registry.yarnpkg.com/p-try/-/p-try-2.2.0.tgz#cb2868540e313d61de58fafbe35ce9004d5540e6" - integrity sha512-R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ== - -parent-module@^1.0.0: - version "1.0.1" - resolved "https://registry.yarnpkg.com/parent-module/-/parent-module-1.0.1.tgz#691d2709e78c79fae3a156622452d00762caaaa2" - integrity sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g== - dependencies: - callsites "^3.0.0" - -parse-json@^5.2.0: - version "5.2.0" - resolved "https://registry.yarnpkg.com/parse-json/-/parse-json-5.2.0.tgz#c76fc66dee54231c962b22bcc8a72cf2f99753cd" - integrity sha512-ayCKvm/phCGxOkYRSCM82iDwct8/EonSEgCSxWxD7ve6jHggsFl4fZVQBPRNgQoKiuV/odhFrGzQXZwbifC8Rg== - dependencies: - "@babel/code-frame" "^7.0.0" - error-ex "^1.3.1" - json-parse-even-better-errors "^2.3.0" - lines-and-columns "^1.1.6" - -path-exists@^4.0.0: - version "4.0.0" - resolved "https://registry.yarnpkg.com/path-exists/-/path-exists-4.0.0.tgz#513bdbe2d3b95d7762e8c1137efa195c6c61b5b3" - integrity sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w== - -path-is-absolute@^1.0.0: - version "1.0.1" - resolved "https://registry.yarnpkg.com/path-is-absolute/-/path-is-absolute-1.0.1.tgz#174b9268735534ffbc7ace6bf53a5a9e1b5c5f5f" - integrity sha512-AVbw3UJ2e9bq64vSaS9Am0fje1Pa8pbGqTTsmXfaIiMpnr5DlDhfJOuLj9Sf95ZPVDAUerDfEk88MPmPe7UCQg== - -path-key@^3.0.0, path-key@^3.1.0: - version "3.1.1" - resolved "https://registry.yarnpkg.com/path-key/-/path-key-3.1.1.tgz#581f6ade658cbba65a0d3380de7753295054f375" - integrity sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q== - -path-parse@^1.0.7: - version "1.0.7" - resolved "https://registry.yarnpkg.com/path-parse/-/path-parse-1.0.7.tgz#fbc114b60ca42b30d9daf5858e4bd68bbedb6735" - integrity sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw== - -path-type@^4.0.0: - version "4.0.0" - resolved "https://registry.yarnpkg.com/path-type/-/path-type-4.0.0.tgz#84ed01c0a7ba380afe09d90a8c180dcd9d03043b" - integrity sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw== - -picocolors@^1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/picocolors/-/picocolors-1.0.0.tgz#cb5bdc74ff3f51892236eaf79d68bc44564ab81c" - integrity sha512-1fygroTLlHu66zi26VoTDv8yRgm0Fccecssto+MhsZ0D/DGW2sm8E8AjW7NU5VVTRt5GxbeZ5qBuJr+HyLYkjQ== - -picomatch@^2.0.4, picomatch@^2.2.3, picomatch@^2.3.1: - version "2.3.1" - resolved "https://registry.yarnpkg.com/picomatch/-/picomatch-2.3.1.tgz#3ba3833733646d9d3e4995946c1365a67fb07a42" - integrity sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA== - -pirates@^4.0.4: - version "4.0.5" - resolved "https://registry.yarnpkg.com/pirates/-/pirates-4.0.5.tgz#feec352ea5c3268fb23a37c702ab1699f35a5f3b" - integrity sha512-8V9+HQPupnaXMA23c5hvl69zXvTwTzyAYasnkb0Tts4XvO4CliqONMOnvlq26rkhLC3nWDFBJf73LU1e1VZLaQ== - -pkg-dir@^4.2.0: - version "4.2.0" - resolved "https://registry.yarnpkg.com/pkg-dir/-/pkg-dir-4.2.0.tgz#f099133df7ede422e81d1d8448270eeb3e4261f3" - integrity sha512-HRDzbaKjC+AOWVXxAU/x54COGeIv9eb+6CkDSQoNTt4XyWoIJvuPsXizxu/Fr23EiekbtZwmh1IcIG/l/a10GQ== - dependencies: - find-up "^4.0.0" - -prelude-ls@^1.2.1: - version "1.2.1" - resolved "https://registry.yarnpkg.com/prelude-ls/-/prelude-ls-1.2.1.tgz#debc6489d7a6e6b0e7611888cec880337d316396" - integrity sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g== - -prettier@~2.6: - version "2.6.2" - resolved "https://registry.yarnpkg.com/prettier/-/prettier-2.6.2.tgz#e26d71a18a74c3d0f0597f55f01fb6c06c206032" - integrity sha512-PkUpF+qoXTqhOeWL9fu7As8LXsIUZ1WYaJiY/a7McAQzxjk82OF0tibkFXVCDImZtWxbvojFjerkiLb0/q8mew== - -pretty-format@^28.0.0, pretty-format@^28.1.1: - version "28.1.1" - resolved "https://registry.yarnpkg.com/pretty-format/-/pretty-format-28.1.1.tgz#f731530394e0f7fcd95aba6b43c50e02d86b95cb" - integrity sha512-wwJbVTGFHeucr5Jw2bQ9P+VYHyLdAqedFLEkdQUVaBF/eiidDwH5OpilINq4mEfhbCjLnirt6HTTDhv1HaTIQw== - dependencies: - "@jest/schemas" "^28.0.2" - ansi-regex "^5.0.1" - ansi-styles "^5.0.0" - react-is "^18.0.0" - -prompts@^2.0.1: - version "2.4.2" - resolved "https://registry.yarnpkg.com/prompts/-/prompts-2.4.2.tgz#7b57e73b3a48029ad10ebd44f74b01722a4cb069" - integrity sha512-NxNv/kLguCA7p3jE8oL2aEBsrJWgAakBpgmgK6lpPWV+WuOmY6r2/zbAVnP+T8bQlA0nzHXSJSJW0Hq7ylaD2Q== - dependencies: - kleur "^3.0.3" - sisteransi "^1.0.5" - -punycode@^2.1.0: - version "2.1.1" - resolved "https://registry.yarnpkg.com/punycode/-/punycode-2.1.1.tgz#b58b010ac40c22c5657616c8d2c2c02c7bf479ec" - integrity sha512-XRsRjdf+j5ml+y/6GKHPZbrF/8p2Yga0JPtdqTIY2Xe5ohJPD9saDJJLPvp9+NSBprVvevdXZybnj2cv8OEd0A== - -queue-microtask@^1.2.2: - version "1.2.3" - resolved "https://registry.yarnpkg.com/queue-microtask/-/queue-microtask-1.2.3.tgz#4929228bbc724dfac43e0efb058caf7b6cfb6243" - integrity sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A== - -react-is@^18.0.0: - version "18.2.0" - resolved "https://registry.yarnpkg.com/react-is/-/react-is-18.2.0.tgz#199431eeaaa2e09f86427efbb4f1473edb47609b" - integrity sha512-xWGDIW6x921xtzPkhiULtthJHoJvBbF3q26fzloPCK0hsvxtPVelvftw3zjbHWSkR2km9Z+4uxbDDK/6Zw9B8w== - -regexpp@^3.2.0: - version "3.2.0" - resolved "https://registry.yarnpkg.com/regexpp/-/regexpp-3.2.0.tgz#0425a2768d8f23bad70ca4b90461fa2f1213e1b2" - integrity sha512-pq2bWo9mVD43nbts2wGv17XLiNLya+GklZ8kaDLV2Z08gDCsGpnKn9BFMepvWuHCbyVvY7J5o5+BVvoQbmlJLg== - -require-directory@^2.1.1: - version "2.1.1" - resolved "https://registry.yarnpkg.com/require-directory/-/require-directory-2.1.1.tgz#8c64ad5fd30dab1c976e2344ffe7f792a6a6df42" - integrity sha512-fGxEI7+wsG9xrvdjsrlmL22OMTTiHRwAMroiEeMgq8gzoLC/PQr7RsRDSTLUg/bZAZtF+TVIkHc6/4RIKrui+Q== - -resolve-cwd@^3.0.0: - version "3.0.0" - resolved "https://registry.yarnpkg.com/resolve-cwd/-/resolve-cwd-3.0.0.tgz#0f0075f1bb2544766cf73ba6a6e2adfebcb13f2d" - integrity sha512-OrZaX2Mb+rJCpH/6CpSqt9xFVpN++x01XnN2ie9g6P5/3xelLAkXWVADpdz1IHD/KFfEXyE6V0U01OQ3UO2rEg== - dependencies: - resolve-from "^5.0.0" - -resolve-from@^4.0.0: - version "4.0.0" - resolved "https://registry.yarnpkg.com/resolve-from/-/resolve-from-4.0.0.tgz#4abcd852ad32dd7baabfe9b40e00a36db5f392e6" - integrity sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g== - -resolve-from@^5.0.0: - version "5.0.0" - resolved "https://registry.yarnpkg.com/resolve-from/-/resolve-from-5.0.0.tgz#c35225843df8f776df21c57557bc087e9dfdfc69" - integrity sha512-qYg9KP24dD5qka9J47d0aVky0N+b4fTU89LN9iDnjB5waksiC49rvMB0PrUJQGoTmH50XPiqOvAjDfaijGxYZw== - -resolve.exports@^1.1.0: - version "1.1.0" - resolved "https://registry.yarnpkg.com/resolve.exports/-/resolve.exports-1.1.0.tgz#5ce842b94b05146c0e03076985d1d0e7e48c90c9" - integrity sha512-J1l+Zxxp4XK3LUDZ9m60LRJF/mAe4z6a4xyabPHk7pvK5t35dACV32iIjJDFeWZFfZlO29w6SZ67knR0tHzJtQ== - -resolve@^1.20.0: - version "1.22.1" - resolved "https://registry.yarnpkg.com/resolve/-/resolve-1.22.1.tgz#27cb2ebb53f91abb49470a928bba7558066ac177" - integrity sha512-nBpuuYuY5jFsli/JIs1oldw6fOQCBioohqWZg/2hiaOybXOft4lonv85uDOKXdf8rhyK159cxU5cDcK/NKk8zw== - dependencies: - is-core-module "^2.9.0" - path-parse "^1.0.7" - supports-preserve-symlinks-flag "^1.0.0" - -reusify@^1.0.4: - version "1.0.4" - resolved "https://registry.yarnpkg.com/reusify/-/reusify-1.0.4.tgz#90da382b1e126efc02146e90845a88db12925d76" - integrity sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw== - -rimraf@^3.0.0, rimraf@^3.0.2, rimraf@~3.0: - version "3.0.2" - resolved "https://registry.yarnpkg.com/rimraf/-/rimraf-3.0.2.tgz#f1a5402ba6220ad52cc1282bac1ae3aa49fd061a" - integrity sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA== - dependencies: - glob "^7.1.3" - -run-parallel@^1.1.9: - version "1.2.0" - resolved "https://registry.yarnpkg.com/run-parallel/-/run-parallel-1.2.0.tgz#66d1368da7bdf921eb9d95bd1a9229e7f21a43ee" - integrity sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA== - dependencies: - queue-microtask "^1.2.2" - -safe-buffer@~5.1.1: - version "5.1.2" - resolved "https://registry.yarnpkg.com/safe-buffer/-/safe-buffer-5.1.2.tgz#991ec69d296e0313747d59bdfd2b745c35f8828d" - integrity sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g== - -semver@7.x, semver@^7.3.5, semver@^7.3.7: - version "7.5.4" - resolved "https://registry.yarnpkg.com/semver/-/semver-7.5.4.tgz#483986ec4ed38e1c6c48c34894a9182dbff68a6e" - integrity sha512-1bCSESV6Pv+i21Hvpxp3Dx+pSD8lIPt8uVjRrxAUt/nbswYc+tK6Y2btiULjd4+fnq15PX+nqQDC7Oft7WkwcA== - dependencies: - lru-cache "^6.0.0" - -semver@^6.0.0, semver@^6.3.0: - version "6.3.1" - resolved "https://registry.yarnpkg.com/semver/-/semver-6.3.1.tgz#556d2ef8689146e46dcea4bfdd095f3434dffcb4" - integrity sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA== - -shallow-clone@^3.0.0: - version "3.0.1" - resolved "https://registry.yarnpkg.com/shallow-clone/-/shallow-clone-3.0.1.tgz#8f2981ad92531f55035b01fb230769a40e02efa3" - integrity sha512-/6KqX+GVUdqPuPPd2LxDDxzX6CAbjJehAAOKlNpqqUpAqPM6HeL8f+o3a+JsyGjn2lv0WY8UsTgUJjU9Ok55NA== - dependencies: - kind-of "^6.0.2" - -shebang-command@^2.0.0: - version "2.0.0" - resolved "https://registry.yarnpkg.com/shebang-command/-/shebang-command-2.0.0.tgz#ccd0af4f8835fbdc265b82461aaf0c36663f34ea" - integrity sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA== - dependencies: - shebang-regex "^3.0.0" - -shebang-regex@^3.0.0: - version "3.0.0" - resolved "https://registry.yarnpkg.com/shebang-regex/-/shebang-regex-3.0.0.tgz#ae16f1644d873ecad843b0307b143362d4c42172" - integrity sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A== - -signal-exit@^3.0.3, signal-exit@^3.0.7: - version "3.0.7" - resolved "https://registry.yarnpkg.com/signal-exit/-/signal-exit-3.0.7.tgz#a9a1767f8af84155114eaabd73f99273c8f59ad9" - integrity sha512-wnD2ZE+l+SPC/uoS0vXeE9L1+0wuaMqKlfz9AMUo38JsyLSBWSFcHR1Rri62LZc12vLr1gb3jl7iwQhgwpAbGQ== - -sisteransi@^1.0.5: - version "1.0.5" - resolved "https://registry.yarnpkg.com/sisteransi/-/sisteransi-1.0.5.tgz#134d681297756437cc05ca01370d3a7a571075ed" - integrity sha512-bLGGlR1QxBcynn2d5YmDX4MGjlZvy2MRBDRNHLJ8VI6l6+9FUiyTFNJ0IveOSP0bcXgVDPRcfGqA0pjaqUpfVg== - -slash@^3.0.0: - version "3.0.0" - resolved "https://registry.yarnpkg.com/slash/-/slash-3.0.0.tgz#6539be870c165adbd5240220dbe361f1bc4d4634" - integrity sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q== - -source-map-support@0.5.13: - version "0.5.13" - resolved "https://registry.yarnpkg.com/source-map-support/-/source-map-support-0.5.13.tgz#31b24a9c2e73c2de85066c0feb7d44767ed52932" - integrity sha512-SHSKFHadjVA5oR4PPqhtAVdcBWwRYVd6g6cAXnIbRiIwc2EhPrTuKUBdSLvlEKyIP3GCf89fltvcZiP9MMFA1w== - dependencies: - buffer-from "^1.0.0" - source-map "^0.6.0" - -source-map-support@^0.5.21: - version "0.5.21" - resolved "https://registry.yarnpkg.com/source-map-support/-/source-map-support-0.5.21.tgz#04fe7c7f9e1ed2d662233c28cb2b35b9f63f6e4f" - integrity sha512-uBHU3L3czsIyYXKX88fdrGovxdSCoTGDRZ6SYXtSRxLZUzHg5P/66Ht6uoUlHu9EZod+inXhKo3qQgwXUT/y1w== - dependencies: - buffer-from "^1.0.0" - source-map "^0.6.0" - -source-map@^0.6.0, source-map@^0.6.1: - version "0.6.1" - resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.6.1.tgz#74722af32e9614e9c287a8d0bbde48b5e2f1a263" - integrity sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g== - -sprintf-js@~1.0.2: - version "1.0.3" - resolved "https://registry.yarnpkg.com/sprintf-js/-/sprintf-js-1.0.3.tgz#04e6926f662895354f3dd015203633b857297e2c" - integrity sha512-D9cPgkvLlV3t3IzL0D0YLvGA9Ahk4PcvVwUbN0dSGr1aP0Nrt4AEnTUbuGvquEC0mA64Gqt1fzirlRs5ibXx8g== - -stack-utils@^2.0.3: - version "2.0.5" - resolved "https://registry.yarnpkg.com/stack-utils/-/stack-utils-2.0.5.tgz#d25265fca995154659dbbfba3b49254778d2fdd5" - integrity sha512-xrQcmYhOsn/1kX+Vraq+7j4oE2j/6BFscZ0etmYg81xuM8Gq0022Pxb8+IqgOFUIaxHs0KaSb7T1+OegiNrNFA== - dependencies: - escape-string-regexp "^2.0.0" - -string-length@^4.0.1: - version "4.0.2" - resolved "https://registry.yarnpkg.com/string-length/-/string-length-4.0.2.tgz#a8a8dc7bd5c1a82b9b3c8b87e125f66871b6e57a" - integrity sha512-+l6rNN5fYHNhZZy41RXsYptCjA2Igmq4EG7kZAYFQI1E1VTXarr6ZPXBg6eq7Y6eK4FEhY6AJlyuFIb/v/S0VQ== - dependencies: - char-regex "^1.0.2" - strip-ansi "^6.0.0" - -string-width@^4.1.0, string-width@^4.2.0, string-width@^4.2.3: - version "4.2.3" - resolved "https://registry.yarnpkg.com/string-width/-/string-width-4.2.3.tgz#269c7117d27b05ad2e536830a8ec895ef9c6d010" - integrity sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g== - dependencies: - emoji-regex "^8.0.0" - is-fullwidth-code-point "^3.0.0" - strip-ansi "^6.0.1" - -strip-ansi@^6.0.0, strip-ansi@^6.0.1: - version "6.0.1" - resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-6.0.1.tgz#9e26c63d30f53443e9489495b2105d37b67a85d9" - integrity sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A== - dependencies: - ansi-regex "^5.0.1" - -strip-bom@^4.0.0: - version "4.0.0" - resolved "https://registry.yarnpkg.com/strip-bom/-/strip-bom-4.0.0.tgz#9c3505c1db45bcedca3d9cf7a16f5c5aa3901878" - integrity sha512-3xurFv5tEgii33Zi8Jtp55wEIILR9eh34FAW00PZf+JnSsTmV/ioewSgQl97JHvgjoRGwPShsWm+IdrxB35d0w== - -strip-final-newline@^2.0.0: - version "2.0.0" - resolved "https://registry.yarnpkg.com/strip-final-newline/-/strip-final-newline-2.0.0.tgz#89b852fb2fcbe936f6f4b3187afb0a12c1ab58ad" - integrity sha512-BrpvfNAE3dcvq7ll3xVumzjKjZQ5tI1sEUIKr3Uoks0XUl45St3FlatVqef9prk4jRDzhW6WZg+3bk93y6pLjA== - -strip-json-comments@^3.1.0, strip-json-comments@^3.1.1: - version "3.1.1" - resolved "https://registry.yarnpkg.com/strip-json-comments/-/strip-json-comments-3.1.1.tgz#31f1281b3832630434831c310c01cccda8cbe006" - integrity sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig== - -supports-color@^5.3.0: - version "5.5.0" - resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-5.5.0.tgz#e2e69a44ac8772f78a1ec0b35b689df6530efc8f" - integrity sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow== - dependencies: - has-flag "^3.0.0" - -supports-color@^7.0.0, supports-color@^7.1.0: - version "7.2.0" - resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-7.2.0.tgz#1b7dcdcb32b8138801b3e478ba6a51caa89648da" - integrity sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw== - dependencies: - has-flag "^4.0.0" - -supports-color@^8.0.0: - version "8.1.1" - resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-8.1.1.tgz#cd6fc17e28500cff56c1b86c0a7fd4a54a73005c" - integrity sha512-MpUEN2OodtUzxvKQl72cUF7RQ5EiHsGvSsVG0ia9c5RbWGL2CI4C7EpPS8UTBIplnlzZiNuV56w+FuNxy3ty2Q== - dependencies: - has-flag "^4.0.0" - -supports-hyperlinks@^2.0.0: - version "2.2.0" - resolved "https://registry.yarnpkg.com/supports-hyperlinks/-/supports-hyperlinks-2.2.0.tgz#4f77b42488765891774b70c79babd87f9bd594bb" - integrity sha512-6sXEzV5+I5j8Bmq9/vUphGRM/RJNT9SCURJLjwfOg51heRtguGWDzcaBlgAzKhQa0EVNpPEKzQuBwZ8S8WaCeQ== - dependencies: - has-flag "^4.0.0" - supports-color "^7.0.0" - -supports-preserve-symlinks-flag@^1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/supports-preserve-symlinks-flag/-/supports-preserve-symlinks-flag-1.0.0.tgz#6eda4bd344a3c94aea376d4cc31bc77311039e09" - integrity sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w== - -terminal-link@^2.0.0: - version "2.1.1" - resolved "https://registry.yarnpkg.com/terminal-link/-/terminal-link-2.1.1.tgz#14a64a27ab3c0df933ea546fba55f2d078edc994" - integrity sha512-un0FmiRUQNr5PJqy9kP7c40F5BOfpGlYTrxonDChEZB7pzZxRNp/bt+ymiy9/npwXya9KH99nJ/GXFIiUkYGFQ== - dependencies: - ansi-escapes "^4.2.1" - supports-hyperlinks "^2.0.0" - -test-exclude@^6.0.0: - version "6.0.0" - resolved "https://registry.yarnpkg.com/test-exclude/-/test-exclude-6.0.0.tgz#04a8698661d805ea6fa293b6cb9e63ac044ef15e" - integrity sha512-cAGWPIyOHU6zlmg88jwm7VRyXnMN7iV68OGAbYDk/Mh/xC/pzVPlQtY6ngoIH/5/tciuhGfvESU8GrHrcxD56w== - dependencies: - "@istanbuljs/schema" "^0.1.2" - glob "^7.1.4" - minimatch "^3.0.4" - -text-table@^0.2.0: - version "0.2.0" - resolved "https://registry.yarnpkg.com/text-table/-/text-table-0.2.0.tgz#7f5ee823ae805207c00af2df4a84ec3fcfa570b4" - integrity sha512-N+8UisAXDGk8PFXP4HAzVR9nbfmVJ3zYLAWiTIoqC5v5isinhr+r5uaO8+7r3BMfuNIufIsA7RdpVgacC2cSpw== - -throat@^6.0.1: - version "6.0.1" - resolved "https://registry.yarnpkg.com/throat/-/throat-6.0.1.tgz#d514fedad95740c12c2d7fc70ea863eb51ade375" - integrity sha512-8hmiGIJMDlwjg7dlJ4yKGLK8EsYqKgPWbG3b4wjJddKNwc7N7Dpn08Df4szr/sZdMVeOstrdYSsqzX6BYbcB+w== - -time-span@^5.1.0: - version "5.1.0" - resolved "https://registry.yarnpkg.com/time-span/-/time-span-5.1.0.tgz#80c76cf5a0ca28e0842d3f10a4e99034ce94b90d" - integrity sha512-75voc/9G4rDIJleOo4jPvN4/YC4GRZrY8yy1uU4lwrB3XEQbWve8zXoO5No4eFrGcTAMYyoY67p8jRQdtA1HbA== - dependencies: - convert-hrtime "^5.0.0" - -tmpl@1.0.5: - version "1.0.5" - resolved "https://registry.yarnpkg.com/tmpl/-/tmpl-1.0.5.tgz#8683e0b902bb9c20c4f726e3c0b69f36518c07cc" - integrity sha512-3f0uOEAQwIqGuWW2MVzYg8fV/QNnc/IpuJNG837rLuczAaLVHslWHZQj4IGiEl5Hs3kkbhwL9Ab7Hrsmuj+Smw== - -to-fast-properties@^2.0.0: - version "2.0.0" - resolved "https://registry.yarnpkg.com/to-fast-properties/-/to-fast-properties-2.0.0.tgz#dc5e698cbd079265bc73e0377681a4e4e83f616e" - integrity sha512-/OaKK0xYrs3DmxRYqL/yDc+FxFUVYhDlXMhRmv3z915w2HF1tnN1omB354j8VUGO/hbRzyD6Y3sA7v7GS/ceog== - -to-regex-range@^5.0.1: - version "5.0.1" - resolved "https://registry.yarnpkg.com/to-regex-range/-/to-regex-range-5.0.1.tgz#1648c44aae7c8d988a326018ed72f5b4dd0392e4" - integrity sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ== - dependencies: - is-number "^7.0.0" - -ts-jest@^28.0.5: - version "28.0.5" - resolved "https://registry.yarnpkg.com/ts-jest/-/ts-jest-28.0.5.tgz#31776f768fba6dfc8c061d488840ed0c8eeac8b9" - integrity sha512-Sx9FyP9pCY7pUzQpy4FgRZf2bhHY3za576HMKJFs+OnQ9jS96Du5vNsDKkyedQkik+sEabbKAnCliv9BEsHZgQ== - dependencies: - bs-logger "0.x" - fast-json-stable-stringify "2.x" - jest-util "^28.0.0" - json5 "^2.2.1" - lodash.memoize "4.x" - make-error "1.x" - semver "7.x" - yargs-parser "^21.0.1" - -tslib@^1.8.1: - version "1.14.1" - resolved "https://registry.yarnpkg.com/tslib/-/tslib-1.14.1.tgz#cf2d38bdc34a134bcaf1091c41f6619e2f672d00" - integrity sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg== - -tslib@~2.4: - version "2.4.0" - resolved "https://registry.yarnpkg.com/tslib/-/tslib-2.4.0.tgz#7cecaa7f073ce680a05847aa77be941098f36dc3" - integrity sha512-d6xOpEDfsi2CZVlPQzGeux8XMwLT9hssAsaPYExaQMuYskwb+x1x7J371tWlbBdWHroy99KnVB6qIkUbs5X3UQ== - -tsutils@^3.21.0, tsutils@~3.21: - version "3.21.0" - resolved "https://registry.yarnpkg.com/tsutils/-/tsutils-3.21.0.tgz#b48717d394cea6c1e096983eed58e9d61715b623" - integrity sha512-mHKK3iUXL+3UF6xL5k0PEhKRUBKPBCv/+RkEOpjRWxxx27KKRBmmA60A9pgOUvMi8GKhRMPEmjBRPzs2W7O1OA== - dependencies: - tslib "^1.8.1" - -type-check@^0.4.0, type-check@~0.4.0: - version "0.4.0" - resolved "https://registry.yarnpkg.com/type-check/-/type-check-0.4.0.tgz#07b8203bfa7056c0657050e3ccd2c37730bab8f1" - integrity sha512-XleUoc9uwGXqjWwXaUTZAmzMcFZ5858QA2vvx1Ur5xIcixXIP+8LnFDgRplU30us6teqdlskFfu+ae4K79Ooew== - dependencies: - prelude-ls "^1.2.1" - -type-detect@4.0.8: - version "4.0.8" - resolved "https://registry.yarnpkg.com/type-detect/-/type-detect-4.0.8.tgz#7646fb5f18871cfbb7749e69bd39a6388eb7450c" - integrity sha512-0fr/mIH1dlO+x7TlcMy+bIDqKPsw/70tVyeHW787goQjhmqaZe10uwLujubK9q9Lg6Fiho1KUKDYz0Z7k7g5/g== - -type-fest@^0.20.2: - version "0.20.2" - resolved "https://registry.yarnpkg.com/type-fest/-/type-fest-0.20.2.tgz#1bf207f4b28f91583666cb5fbd327887301cd5f4" - integrity sha512-Ne+eE4r0/iWnpAxD852z3A+N0Bt5RN//NjJwRd2VFHEmrywxf5vsZlh4R6lixl6B+wz/8d+maTSAkN1FIkI3LQ== - -type-fest@^0.21.3: - version "0.21.3" - resolved "https://registry.yarnpkg.com/type-fest/-/type-fest-0.21.3.tgz#d260a24b0198436e133fa26a524a6d65fa3b2e37" - integrity sha512-t0rzBq87m3fVcduHDUFhKmyyX+9eo6WQjZvf51Ea/M0Q7+T374Jp1aUiyUl0GKxp8M/OETVHSDvmkyPgvX+X2w== - -typescript@~4.7: - version "4.7.4" - resolved "https://registry.yarnpkg.com/typescript/-/typescript-4.7.4.tgz#1a88596d1cf47d59507a1bcdfb5b9dfe4d488235" - integrity sha512-C0WQT0gezHuw6AdY1M2jxUO83Rjf0HP7Sk1DtXj6j1EwkQNZrHAg2XPWlq62oqEhYvONq5pkC2Y9oPljWToLmQ== - -underscore@^1.13.4: - version "1.13.4" - resolved "https://registry.yarnpkg.com/underscore/-/underscore-1.13.4.tgz#7886b46bbdf07f768e0052f1828e1dcab40c0dee" - integrity sha512-BQFnUDuAQ4Yf/cYY5LNrK9NCJFKriaRbD9uR1fTeXnBeoa97W0i41qkZfGO9pSo8I5KzjAcSY2XYtdf0oKd7KQ== - -update-browserslist-db@^1.0.4: - version "1.0.4" - resolved "https://registry.yarnpkg.com/update-browserslist-db/-/update-browserslist-db-1.0.4.tgz#dbfc5a789caa26b1db8990796c2c8ebbce304824" - integrity sha512-jnmO2BEGUjsMOe/Fg9u0oczOe/ppIDZPebzccl1yDWGLFP16Pa1/RM5wEoKYPG2zstNcDuAStejyxsOuKINdGA== - dependencies: - escalade "^3.1.1" - picocolors "^1.0.0" - -uri-js@^4.2.2: - version "4.4.1" - resolved "https://registry.yarnpkg.com/uri-js/-/uri-js-4.4.1.tgz#9b1a52595225859e55f669d928f88c6c57f2a77e" - integrity sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg== - dependencies: - punycode "^2.1.0" - -v8-compile-cache@^2.0.3: - version "2.3.0" - resolved "https://registry.yarnpkg.com/v8-compile-cache/-/v8-compile-cache-2.3.0.tgz#2de19618c66dc247dcfb6f99338035d8245a2cee" - integrity sha512-l8lCEmLcLYZh4nbunNZvQCJc5pv7+RCwa8q/LdUx8u7lsWvPDKmpodJAJNwkAhJC//dFY48KuIEmjtd4RViDrA== - -v8-to-istanbul@^9.0.1: - version "9.0.1" - resolved "https://registry.yarnpkg.com/v8-to-istanbul/-/v8-to-istanbul-9.0.1.tgz#b6f994b0b5d4ef255e17a0d17dc444a9f5132fa4" - integrity sha512-74Y4LqY74kLE6IFyIjPtkSTWzUZmj8tdHT9Ii/26dvQ6K9Dl2NbEfj0XgU2sHCtKgt5VupqhlO/5aWuqS+IY1w== - dependencies: - "@jridgewell/trace-mapping" "^0.3.12" - "@types/istanbul-lib-coverage" "^2.0.1" - convert-source-map "^1.6.0" - -walker@^1.0.8: - version "1.0.8" - resolved "https://registry.yarnpkg.com/walker/-/walker-1.0.8.tgz#bd498db477afe573dc04185f011d3ab8a8d7653f" - integrity sha512-ts/8E8l5b7kY0vlWLewOkDXMmPdLcVV4GmOQLyxuSswIJsweeFZtAsMF7k1Nszz+TYBQrlYRmzOnr398y1JemQ== - dependencies: - makeerror "1.0.12" - -which@^2.0.1: - version "2.0.2" - resolved "https://registry.yarnpkg.com/which/-/which-2.0.2.tgz#7c6a8dd0a636a0327e10b59c9286eee93f3f51b1" - integrity sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA== - dependencies: - isexe "^2.0.0" - -word-wrap@^1.2.3: - version "1.2.3" - resolved "https://registry.yarnpkg.com/word-wrap/-/word-wrap-1.2.3.tgz#610636f6b1f703891bd34771ccb17fb93b47079c" - integrity sha512-Hz/mrNwitNRh/HUAtM/VT/5VH+ygD6DV7mYKZAtHOrbs8U7lvPS6xf7EJKMF0uW1KJCl0H701g3ZGus+muE5vQ== - -wrap-ansi@^7.0.0: - version "7.0.0" - resolved "https://registry.yarnpkg.com/wrap-ansi/-/wrap-ansi-7.0.0.tgz#67e145cff510a6a6984bdf1152911d69d2eb9e43" - integrity sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q== - dependencies: - ansi-styles "^4.0.0" - string-width "^4.1.0" - strip-ansi "^6.0.0" - -wrappy@1: - version "1.0.2" - resolved "https://registry.yarnpkg.com/wrappy/-/wrappy-1.0.2.tgz#b5243d8f3ec1aa35f1364605bc0d1036e30ab69f" - integrity sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ== - -write-file-atomic@^4.0.1: - version "4.0.1" - resolved "https://registry.yarnpkg.com/write-file-atomic/-/write-file-atomic-4.0.1.tgz#9faa33a964c1c85ff6f849b80b42a88c2c537c8f" - integrity sha512-nSKUxgAbyioruk6hU87QzVbY279oYT6uiwgDoujth2ju4mJ+TZau7SQBhtbTmUyuNYTuXnSyRn66FV0+eCgcrQ== - dependencies: - imurmurhash "^0.1.4" - signal-exit "^3.0.7" - -y18n@^5.0.5: - version "5.0.8" - resolved "https://registry.yarnpkg.com/y18n/-/y18n-5.0.8.tgz#7f4934d0f7ca8c56f95314939ddcd2dd91ce1d55" - integrity sha512-0pfFzegeDWJHJIAmTLRP2DwHjdF5s7jo9tuztdQxAhINCdvS+3nGINqPd00AphqJR/0LhANUS6/+7SCb98YOfA== - -yallist@^4.0.0: - version "4.0.0" - resolved "https://registry.yarnpkg.com/yallist/-/yallist-4.0.0.tgz#9bb92790d9c0effec63be73519e11a35019a3a72" - integrity sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A== - -yargs-parser@^21.0.0, yargs-parser@^21.0.1: - version "21.0.1" - resolved "https://registry.yarnpkg.com/yargs-parser/-/yargs-parser-21.0.1.tgz#0267f286c877a4f0f728fceb6f8a3e4cb95c6e35" - integrity sha512-9BK1jFpLzJROCI5TzwZL/TU4gqjK5xiHV/RfWLOahrjAko/e4DJkRDZQXfvqAsiZzzYhgAzbgz6lg48jcm4GLg== - -yargs@^17.3.1: - version "17.5.1" - resolved "https://registry.yarnpkg.com/yargs/-/yargs-17.5.1.tgz#e109900cab6fcb7fd44b1d8249166feb0b36e58e" - integrity sha512-t6YAJcxDkNX7NFYiVtKvWUz8l+PaKTLiL63mJYWR2GnHq2gjEWISzsLp9wg3aY36dY1j+gfIEL3pIF+XlJJfbA== - dependencies: - cliui "^7.0.2" - escalade "^3.1.1" - get-caller-file "^2.0.5" - require-directory "^2.1.1" - string-width "^4.2.3" - y18n "^5.0.5" - yargs-parser "^21.0.0" diff --git a/tests/difference/core/quint_model/driver/generate_traces.sh b/tests/difference/core/quint_model/driver/generate_traces.sh deleted file mode 100755 index 0d08ea436b..0000000000 --- a/tests/difference/core/quint_model/driver/generate_traces.sh +++ /dev/null @@ -1,10 +0,0 @@ -echo "Generating bounded drift traces with timeouts" -go run ./... -modelPath=../ccv_boundeddrift.qnt -step stepBoundedDrift -invariant CanTimeoutConsumer -traceFolder traces/bound_timeout -numTraces 10 -numSteps 200 -numSamples 200 -echo "Generating long bounded drift traces without invariants" -go run ./... -modelPath=../ccv_boundeddrift.qnt -step stepBoundedDrift -traceFolder traces/bound_noinv -numTraces 10 -numSteps 500 -numSamples 1 -echo "Generating bounded drift traces with maturations" -go run ./... -modelPath=../ccv_boundeddrift.qnt -step stepBoundedDrift -invariant CanReceiveMaturations -traceFolder traces/bound_mat -numTraces 10 -numSteps 100 -numSamples 20 -echo "Generating synched traces with maturations" -go run ./... -modelPath=../ccv_sync.qnt -init initHappy -step stepHappy -invariant CanReceiveMaturations -traceFolder traces/sync_mat -numTraces 10 -numSteps 300 -numSamples 20 -echo "Generating long synched traces without invariants" -go run ./... -modelPath=../ccv_sync.qnt -init initHappy -step stepHappy -traceFolder traces/sync_noinv -numTraces 10 -numSteps 500 -numSamples 1 \ No newline at end of file diff --git a/tests/difference/core/quint_model/.gitignore b/tests/mbt/.gitignore similarity index 100% rename from tests/difference/core/quint_model/.gitignore rename to tests/mbt/.gitignore diff --git a/tests/mbt/README.md b/tests/mbt/README.md new file mode 100644 index 0000000000..d4905db9f0 --- /dev/null +++ b/tests/mbt/README.md @@ -0,0 +1,68 @@ +# Model-based testing for the Cross-Chain Validation protocol + +This folder contains the model-based testing (MBT) framework that we use to test the Cross-Chain Validation (CCV) protocol. + +The basic idea is that it is hard to test that protocols make sense and fulfill desired properties just by +looking at them hard. Typically, we give these requirements as +*invariants* should hold for the protocol. For example, a property of the CCV protocol is +that the validator set on the consumer chains should always be or have been a validator set on the provider chain. +This is a property that we can express as an invariant. +However, it is pretty hard to check that this invariant holds just by looking at the protocol. + + This is where languages like Quint come in: +Quint is amenable to *model-checking*, which means that when we write a specification (equivalently called model) +in Quint, we can use tools like Apalache to automatically check whether invariants hold in *all* +possible traces (up to a certain length). + +This is different from property-based testing: there, we generate random traces and check that the invariants hold +for these traces. Property-based testing is a good way to find bugs, but it is not a good way to prove that a protocol is correct - +because the state space of the protocol is extremely large, we can't hope to cover it all with random traces. +Model-checking is great at this, because it provides a systematic way to check all possible traces, +and it can even help when there are infinitely many possible traces (that is the power of formal logic!). + +So now let's assume we have modelled the CCV protocol in Quint, we have written some invariants, and model-checking +gave us confidence that the protocol is correct. Unfortunately, the model we have just checked is *not* the actual implementation. +Thus, the missing step is to check that the actual implementation behaves like the model. +We do this by randomly generating traces in the model, and then running the same traces against the actual implementation, +while checking that the actual system behaves like the model. + +The way we gain confidence is then: +* We model-check the Quint model to ensure it satisfies desirable properties... +* ...and we run the model against the actual implementation to ensure the actual implementation behaves like the model... +* ...so the actual implementation also satisfies the desirable properties. + +## Limitations + +#### Models are more abstract than implementations + +Despite the fact that we can gain confidence in the actual implementation by running it against the model, +the model *is not* the same as the implementation. +In part, this is on purpose - we want to model the protocol, not the implementation. +This means we typically model protocols at a higher level of abstraction than the implementation. +For example, in the model, we don't model the whole of IBC, but we instead make some +assumptions about how IBC works, and we model the protocol on top of these assumptions. + +This limitation means that MBT cannot replace diligent unit and end-to-end testing, but it can add value to them. + +#### Model-checking has limits + +Model-checking is a powerful tool, but it suffers from the state-space explosion problem. +We typically parameterize models, e.g. the number of consumer chains is a parameter of the CCV model. +It is typically not possible to check protocols for large instantiations of such parameters (say, with 100 consumer chains) +because the state space gets too large. +Similarly, we can typically not model-check the protocol for very long traces. +Throwing more computational power at the problem can push the boundary forward, but +it does not solve the underlying problem that model-checking is inherently a computationally hard problem. + +The counterpoint to these concerns is that for most real protocols, +invariant violations appear even with short traces and small parameter values, because we +indeed check *all* short traces. + +However, the limitations inherent to model-checking are still real, and we need to be aware of them. + +## File structure + +* `model` contains the Quint model +* `driver` contains the driver, which is the instrumentation code that runs and checks the model against the actual implementation. + +See the readmes in the specific folders for more information. \ No newline at end of file diff --git a/tests/difference/core/quint_model/driver/.gitignore b/tests/mbt/driver/.gitignore similarity index 100% rename from tests/difference/core/quint_model/driver/.gitignore rename to tests/mbt/driver/.gitignore diff --git a/tests/mbt/driver/README.md b/tests/mbt/driver/README.md new file mode 100644 index 0000000000..64fc533ffe --- /dev/null +++ b/tests/mbt/driver/README.md @@ -0,0 +1,5 @@ +This folder contains the driver for the MBT framework. +It is responsible for running traces generated by the model against the actual implementation. + +The driver runs the system in-memory, using the ["IBC testing"](https://github.com/cosmos/ibc-go/tree/release/v7.0.x/testing) +library to simulate the network. \ No newline at end of file diff --git a/tests/difference/core/quint_model/driver/common.go b/tests/mbt/driver/common.go similarity index 100% rename from tests/difference/core/quint_model/driver/common.go rename to tests/mbt/driver/common.go diff --git a/tests/difference/core/quint_model/driver/core.go b/tests/mbt/driver/core.go similarity index 99% rename from tests/difference/core/quint_model/driver/core.go rename to tests/mbt/driver/core.go index 6fcfc33c63..aa08737e0e 100644 --- a/tests/difference/core/quint_model/driver/core.go +++ b/tests/mbt/driver/core.go @@ -491,7 +491,8 @@ func (s *Driver) DeliverPacketFromConsumer(sender ChainId, expectError bool) { // DeliverAcks delivers, for each path, // all possible acks (up to math.MaxInt many per path). func (s *Driver) DeliverAcks() { - for _, path := range s.simibcs { + for _, chain := range s.runningConsumers() { + path := s.path(ChainId(chain.ChainId)) path.DeliverAcks(string(path.Path.EndpointA.Chain.ChainID), math.MaxInt) path.DeliverAcks(string(path.Path.EndpointB.Chain.ChainID), math.MaxInt) } diff --git a/tests/mbt/driver/generate_traces.sh b/tests/mbt/driver/generate_traces.sh new file mode 100755 index 0000000000..8c97202a57 --- /dev/null +++ b/tests/mbt/driver/generate_traces.sh @@ -0,0 +1,10 @@ +echo "Generating bounded drift traces with timeouts" +go run ./... -modelPath=../model/ccv_boundeddrift.qnt -step stepBoundedDrift -invariant CanTimeoutConsumer -traceFolder traces/bound_timeout -numTraces 100 -numSteps 200 -numSamples 200 +echo "Generating long bounded drift traces without invariants" +go run ./... -modelPath=../model/ccv_boundeddrift.qnt -step stepBoundedDrift -traceFolder traces/bound_noinv -numTraces 100 -numSteps 500 -numSamples 1 +echo "Generating bounded drift traces with maturations" +go run ./... -modelPath=../model/ccv_boundeddrift.qnt -step stepBoundedDrift -invariant CanReceiveMaturations -traceFolder traces/bound_mat -numTraces 100 -numSteps 100 -numSamples 20 +echo "Generating synched traces with maturations" +go run ./... -modelPath=../model/ccv_sync.qnt -init initHappy -step stepHappy -invariant CanReceiveMaturations -traceFolder traces/sync_mat -numTraces 100 -numSteps 300 -numSamples 20 +echo "Generating long synched traces without invariants" +go run ./... -modelPath=../model/ccv_sync.qnt -init initHappy -step stepHappy -traceFolder traces/sync_noinv -numTraces 100 -numSteps 500 -numSamples 1 \ No newline at end of file diff --git a/tests/difference/core/quint_model/driver/main.go b/tests/mbt/driver/main.go similarity index 100% rename from tests/difference/core/quint_model/driver/main.go rename to tests/mbt/driver/main.go diff --git a/tests/difference/core/quint_model/driver/mbt_test.go b/tests/mbt/driver/mbt_test.go similarity index 99% rename from tests/difference/core/quint_model/driver/mbt_test.go rename to tests/mbt/driver/mbt_test.go index 7fe1ea3772..8c5c34483d 100644 --- a/tests/difference/core/quint_model/driver/mbt_test.go +++ b/tests/mbt/driver/mbt_test.go @@ -332,6 +332,7 @@ func RunItfTrace(t *testing.T, path string) { } // check that the actual state is the same as the model state + t.Logf("Comparing model state to actual state...") // compare the running consumers modelRunningConsumers := RunningConsumers(currentModelState) @@ -353,26 +354,21 @@ func RunItfTrace(t *testing.T, path string) { require.Equal(t, modelRunningConsumers, actualRunningConsumers, "Running consumers do not match") // check validator sets - provider current validator set should be the one from the staking keeper - t.Log("Comparing validator sets") CompareValidatorSets(t, driver, currentModelState, actualRunningConsumers, index) - t.Log("Validator sets match") // check times - sanity check that the block times match the ones from the model - t.Log("Comparing timestamps") CompareTimes(t, driver, actualRunningConsumers, currentModelState, timeOffset) - t.Log("Timestamps match") // check sent packets: we check that the package queues in the model and the system have the same length. - t.Log("Comparing packet queues") for _, consumer := range actualRunningConsumers { ComparePacketQueues(t, driver, currentModelState, consumer, timeOffset) } - t.Log("Packet queues match") - // compare that the sent packets on the proider match the model CompareSentPacketsOnProvider(driver, currentModelState, timeOffset) stats.EnterStats(driver) + + t.Logf("State %v of trace %v is ok!", index, path) } t.Log("🟢 Trace is ok!") } diff --git a/tests/difference/core/quint_model/driver/model_viewer.go b/tests/mbt/driver/model_viewer.go similarity index 100% rename from tests/difference/core/quint_model/driver/model_viewer.go rename to tests/mbt/driver/model_viewer.go diff --git a/tests/difference/core/quint_model/driver/setup.go b/tests/mbt/driver/setup.go similarity index 100% rename from tests/difference/core/quint_model/driver/setup.go rename to tests/mbt/driver/setup.go diff --git a/tests/difference/core/quint_model/driver/stats.go b/tests/mbt/driver/stats.go similarity index 100% rename from tests/difference/core/quint_model/driver/stats.go rename to tests/mbt/driver/stats.go diff --git a/tests/difference/core/quint_model/driver/trace_gen.go b/tests/mbt/driver/trace_gen.go similarity index 100% rename from tests/difference/core/quint_model/driver/trace_gen.go rename to tests/mbt/driver/trace_gen.go diff --git a/tests/difference/core/quint_model/README.md b/tests/mbt/model/README.md similarity index 51% rename from tests/difference/core/quint_model/README.md rename to tests/mbt/model/README.md index 0cef3bc632..10bfd5d98b 100644 --- a/tests/difference/core/quint_model/README.md +++ b/tests/mbt/model/README.md @@ -1,15 +1,19 @@ This folder contains a Quint model for the core logic of Cross-Chain Validation (CCV). -### File structure +## File structure The files are as follows: - ccv.qnt: Contains the type definitions, data structures, functional logic for CCV. The core of the protocol. - ccv_model.qnt: Contains the stateful part of the model for CCV. Very roughly speaking, this could be seen as "e2e tests". Also contains invariants. +- ccv_sync.qnt: An extra layer on top of ccv_model.qnt which restricts the traces to only ones where the +consumer chains and provider chain produce blocks in sync. +- ccv_boundeddrift.qnt: An extra layer on top of ccv_model.qnt which restricts traces to ones where +chains never drift too far apart in time. - ccv_test.qnt: Contains unit tests for the functional layer of CCV. - libraries/*: Libraries that don't belong to CCV, but are used by it. -### Model details +## Model details To see the data structures used in the model, see the `ProtocolState` type in ccv.qnt. @@ -18,7 +22,47 @@ Other functions are for utility. The parameters of the protocol are defined as consts in [ccv.qnt](ccv.qnt). -### Tests +### Actions + +The model has these actions: +* `VotingPowerChange(validator: Node, changeAmount: int)`: On the provider chain, changes the voting power of the `validator` by `changeAmount`. +* `EndAndBeginBlockForProvider(timeAdvancement: Time, consumersToStart: Set[Chain], consumersToStop: Set[Chain])`: On the provider chain, ends the current block, and begins a new one. Starts the consumer chains in `consumersToStart`, and stops the consumer chains in `consumersToStop`. +All the logic in EndBlock/BeginBlock happens here, like updating the validator set, sending packets, etc. +* `EndAndBeginBlockForConsumer(chain: Chain, timeAdvancement: Time)`: On the consumer `chain`, ends the current block, and begins a new one. Again, all the logic in EndBlock/BeginBlock happens here, like validator set change maturations. +* `DeliverVscPacket(receiver: Chain)`: Delivers a pending VSCPacket from the provider to the consumer `receiver`. +* `DeliverVscMaturedPacket(receiver: Chain)`: Delivers a pending VSCMaturedPacket from the consumer `receiver` to the provider. + +### State machines + +There are 3 different "state machine layers" that can be put on top of the core logic. + +#### ccv_model.qnt +This is the most general state machine layer. It allows the most behaviour, +in particular it allows abitrary clock drift between chains, it allows starting and +stopping consumer chains during runtime, etc. +This layer is most useful for model checking, because it encompasses the most behaviour. + +#### ccv_boundeddrift.qnt +This state machine layer is more restricted to generate more interesting traces: +* It never allows consumer chains to drift more than `MaxDrift` time apart from each other. +In practice, we set `MaxDrift` to be the maximal allowed clock drift/trusting period for light clients. +Then this state machine allows us to not worry about light client expirations, which is important +for generating traces we can run against the real system, because the model doesn't actually model +light client expirations, while in the real system, they can normally happen. +* It might stop consumers during runtime, but only with small probability. +Without this, it becomes very likely that consumer chains are stopped very frequently when generating +traces, which leads to less interesting traces. + +##### ccv_sync.qnt +This state machine layer is even more restricted: +* It starts all consumer chains right at the start of the trace, and never stops them. +* It only allows chains to end and begin blocks together. + +This is useful for generating happy path traces, but means these +traces are not very useful for testing. + + +## Tests To run unit tests, run ``` @@ -29,7 +73,7 @@ and quint test ccv_model.qnt ``` -### Invariants +## Invariants The invariants to check are in [ccv_model.qnt](ccv_model.qnt). Check a single invariant by running @@ -56,7 +100,7 @@ quint verify --invariant ValidatorUpdatesArePropagatedInv,ValidatorSetHasExisted ccv_model.qnt ``` -### Sanity Checks +## Sanity Checks Sanity checks verify that certain patterns of behaviour can appear in the model. In detail, they are invariant checks that we expect to fail. diff --git a/tests/difference/core/quint_model/ccv.qnt b/tests/mbt/model/ccv.qnt similarity index 100% rename from tests/difference/core/quint_model/ccv.qnt rename to tests/mbt/model/ccv.qnt diff --git a/tests/difference/core/quint_model/ccv_boundeddrift.qnt b/tests/mbt/model/ccv_boundeddrift.qnt similarity index 91% rename from tests/difference/core/quint_model/ccv_boundeddrift.qnt rename to tests/mbt/model/ccv_boundeddrift.qnt index ba258ea387..b4678b8430 100644 --- a/tests/difference/core/quint_model/ccv_boundeddrift.qnt +++ b/tests/mbt/model/ccv_boundeddrift.qnt @@ -18,6 +18,9 @@ module ccv_boundeddrift { // this value. pure val maxDrift = defUnbondingPeriod - 2 * Hour + // The chance, in percentage points, that we will stop consumer chains, whenever we begin a block on the provider chain. + pure val consumerStopChance = 2 + pure def findMaxTimeAdvancement(advancingChain: Ccvt::ChainState, otherChains: Set[Ccvt::ChainState], maximalDrift: Time): Time = val otherChainsLastTimes = otherChains.map(c => c.lastTimestamp) // start with advancingChain.RunningTime - if this is the minimal element, we can advance by maxDrift anyways @@ -74,8 +77,9 @@ module ccv_boundeddrift { // advance a block for the provider val consumerStatus = currentState.providerState.consumerStatus nondet consumersToStart = oneOf(nonConsumers.powerset()) - // nondet consumersToStop = oneOf(runningConsumers.powerset()) - nondet consumersToStop = Set() // never stop consumers + // make it so we stop consumers only with small likelyhood: + nondet stopConsumers = oneOf(1.to(100)) + nondet consumersToStop = if (stopConsumers <= consumerStopChance) oneOf(runningConsumers.powerset()) else Set() nondet timeAdvancement = oneOf(possibleAdvancements) EndAndBeginBlockForProvider(timeAdvancement, consumersToStart, consumersToStop), } diff --git a/tests/difference/core/quint_model/ccv_model.qnt b/tests/mbt/model/ccv_model.qnt similarity index 100% rename from tests/difference/core/quint_model/ccv_model.qnt rename to tests/mbt/model/ccv_model.qnt diff --git a/tests/difference/core/quint_model/ccv_sync.qnt b/tests/mbt/model/ccv_sync.qnt similarity index 100% rename from tests/difference/core/quint_model/ccv_sync.qnt rename to tests/mbt/model/ccv_sync.qnt diff --git a/tests/difference/core/quint_model/ccv_test.qnt b/tests/mbt/model/ccv_test.qnt similarity index 100% rename from tests/difference/core/quint_model/ccv_test.qnt rename to tests/mbt/model/ccv_test.qnt diff --git a/tests/difference/core/quint_model/libraries/Time.qnt b/tests/mbt/model/libraries/Time.qnt similarity index 100% rename from tests/difference/core/quint_model/libraries/Time.qnt rename to tests/mbt/model/libraries/Time.qnt diff --git a/tests/difference/core/quint_model/libraries/extraSpells.qnt b/tests/mbt/model/libraries/extraSpells.qnt similarity index 100% rename from tests/difference/core/quint_model/libraries/extraSpells.qnt rename to tests/mbt/model/libraries/extraSpells.qnt diff --git a/tests/difference/core/quint_model/run_invariants.sh b/tests/mbt/run_invariants.sh similarity index 100% rename from tests/difference/core/quint_model/run_invariants.sh rename to tests/mbt/run_invariants.sh From 0e584c331b046d7731aa5a496ae20d0e5c01c474 Mon Sep 17 00:00:00 2001 From: Philip Offtermatt Date: Thu, 30 Nov 2023 11:22:01 +0100 Subject: [PATCH 061/111] Add back consumer chain stopping --- tests/mbt/driver/mbt_test.go | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/tests/mbt/driver/mbt_test.go b/tests/mbt/driver/mbt_test.go index 8c5c34483d..413eb6e18f 100644 --- a/tests/mbt/driver/mbt_test.go +++ b/tests/mbt/driver/mbt_test.go @@ -246,6 +246,11 @@ func RunItfTrace(t *testing.T, path string) { ) } + // stop consumers + for _, consumer := range consumersToStop { + driver.providerKeeper().StopConsumerChain(driver.providerCtx(), consumer.Value.(string), true) + } + // reset the times for the consumers that were not stopped or started just now // their times were messed up by the coordinator for consumer, timestamp := range lastTimestamps { From 95e525358179af76a69510105c281482ac976d85 Mon Sep 17 00:00:00 2001 From: Philip Offtermatt Date: Thu, 30 Nov 2023 11:29:15 +0100 Subject: [PATCH 062/111] Disallow empty validator sets --- tests/mbt/model/ccv.qnt | 23 ++++++++++++++--------- tests/mbt/model/ccv_test.qnt | 18 ++++++++++++++++++ 2 files changed, 32 insertions(+), 9 deletions(-) diff --git a/tests/mbt/model/ccv.qnt b/tests/mbt/model/ccv.qnt index 109a2e9ba4..9d2627d666 100644 --- a/tests/mbt/model/ccv.qnt +++ b/tests/mbt/model/ccv.qnt @@ -255,15 +255,20 @@ module ccv { } else { pure val newVotingPower = oldVotingPower + amount pure val newValidatorSet = currentValidatorSet.put(validator, if(newVotingPower >= 0) newVotingPower else 0) - // set the validator set changed flag - val newProviderState = currentState.providerState.with( - "providerValidatorSetChangedInThisBlock", true - ) - pure val tmpState = currentState.with( - "providerState", newProviderState - ) - pure val newState = setProviderValidatorSet(tmpState, newValidatorSet) - Ok(newState) + // if the new validator set contains no validators with positive voting power, the validator set is invalid + if (newValidatorSet.values().filter(votingPower => votingPower > 0).size() == 0) { + Err("Voting power change resulted in empty validator set!") + } else { + // set the validator set changed flag + val newProviderState = currentState.providerState.with( + "providerValidatorSetChangedInThisBlock", true + ) + pure val tmpState = currentState.with( + "providerState", newProviderState + ) + pure val newState = setProviderValidatorSet(tmpState, newValidatorSet) + Ok(newState) + } } } diff --git a/tests/mbt/model/ccv_test.qnt b/tests/mbt/model/ccv_test.qnt index 0101460219..0a664fa0bb 100644 --- a/tests/mbt/model/ccv_test.qnt +++ b/tests/mbt/model/ccv_test.qnt @@ -20,6 +20,8 @@ module ccv_test { "chainState", GetEmptyProtocolState.providerState.chainState.with( "currentValidatorSet", GetEmptyProtocolState.providerState.chainState.currentValidatorSet.put( "validator", 5 + ).put( + "validator2", 5 ) ) ) @@ -108,7 +110,23 @@ module ccv_test { not(result.hasError()) and result.newState.providerState.chainState.currentValidatorSet.get("validator") == 0 and result2.hasError() + } + // Changing the validator set to be empty results in an error + run VotingPowerChangeToEmptyTest = + { + val result = votingPowerChange( + votingPowerTestInitState, + "validator", + -5 + ) + val result2 = votingPowerChange( + result.newState, + "validator2", + -5 + ) + not(result.hasError()) and + result2.hasError() } // Defines a test state to test the deliverPacketToProvider function against. From d272b737648514858ea35ddbf23fbcd5f88c0d65 Mon Sep 17 00:00:00 2001 From: Philip Offtermatt Date: Thu, 30 Nov 2023 12:13:25 +0100 Subject: [PATCH 063/111] Add README and generate fewer traces --- tests/mbt/driver/README.md | 131 +++++++++++++++++++++++++++- tests/mbt/driver/generate_traces.sh | 10 +-- 2 files changed, 135 insertions(+), 6 deletions(-) diff --git a/tests/mbt/driver/README.md b/tests/mbt/driver/README.md index 64fc533ffe..202baa7e3f 100644 --- a/tests/mbt/driver/README.md +++ b/tests/mbt/driver/README.md @@ -2,4 +2,133 @@ This folder contains the driver for the MBT framework. It is responsible for running traces generated by the model against the actual implementation. The driver runs the system in-memory, using the ["IBC testing"](https://github.com/cosmos/ibc-go/tree/release/v7.0.x/testing) -library to simulate the network. \ No newline at end of file +library to simulate the network. +This means that we can test the implementation of the app without needing to worry about consensus, relayers, etc. + +## How to run +### Generating traces + +To generate traces, run +``` +./generate_traces.sh +``` + +This will generate several "families" of traces in the `traces` folder. + +Here is what one of the lines from `./generate traces` looks like: +``` +go run ./... -modelPath=../model/ccv_boundeddrift.qnt -step stepBoundedDrift -invariant CanTimeoutConsumer -traceFolder traces/bound_timeout -numTraces 10 -numSteps 200 -numSamples 200 +``` + +One very useful concept is the given `-invariant`. This is a property written in Quint which the trace generator tries to *violate*. +For example, the invariant `CanTimeoutConsumer` is a property that says "No consumer can ever time out". +If we *violate* the property, we thus find a trace where we *can* time out a consumer. +The "sanity checks" from the model make for great invariants to target here, since they +are properties that essentially specify interesting behaviour. + + +You may adjust the `numTraces`, `numSteps`, and `numSamples` parameters to generate more or fewer traces, +with more or fewer steps. `numSamples` is only important when you want to generate traces that find a violation +for a given invariant (in this case, used to generate traces that reach an interesting state, i.e. where a consumer has timed out). +Then a higher `numSamples` will give a higher likelihood to actually find a trace that reaches the interesting state. + +As a rule of thumb to know how many traces to generate, assume generating a trace with 200 steps takes about 20 seconds, and running it against the actual implementation takes about 10 seconds. + +#### Trace families + +By default, I chose to generate 5 different "families" of traces: + +* Bounded Drift Traces with Timeouts (`bound_timeout`): This trace family is generated to test the behavior of the system when a consumer times out. It aims to generate traces that reach an interesting state where a consumer has timed out. + +* Long Bounded Drift Traces without Invariants (`bound_noinv`): This trace family focuses on generating longer traces without specific invariants. It can be useful for exploring the behavior of the system over an extended period of time. + +* Bounded Drift Traces with Maturations (`bound_mat`): This trace family is designed to test the behavior of the system when VSCMaturedPackets are received on the provider. + +* Synced Traces with Maturations (`sync_mat`): This trace family is designed to test the behavior of the system when VSCMaturedPackets are received on the provider. It is similar to the Bounded Drift Traces with Maturations family, but it generates traces where the chains are synchronized. + +* Long Synced Traces without Invariants (`sync_noinv`): This trace family generates longer traces without specific invariants for synchronized behavior. It is similar to the Long Bounded Drift Traces without Invariants family, but it generates traces where the chains are synchronized. + + +### Running against traces + +Once you have populated the `traces` folder with traces, you can run the traces against the actual implementation +by running + +``` +go test -v -timeout 30m +``` + +Make sure to set an appropriate timeout. +As a rule of thumb, assume running one trace with 100 steps takes about 10 second, +so for 50 traces, you might want to schedule 600 seconds to allow some buffer. + +## Testing other apps + +By default, we are testing with the provider and consumer apps that are provided by Interchain security. + +While I have not tested it yet, it should, in principle, be very easy to plug in other applications - +simply change the `icstestingutils.ProviderAppIniter` or `icstestingutils.ConsumerAppIniter` in `setup.go` +to use the apps you are interested in. + +## State comparisons + +The driver is responsible for comparing the state of the model and the implementation. +This is done by comparing the state of the model and the implementation after each step of the trace. + +Right now, it compares the following parts of the state: +* It checks that the consumer chains that are considered running by the provider in the system are the same as the consumers running in the model. +* It checks that the actual timestamps of all running chains match the timestamps in the model (to a second precision, see Limitations). +* It checks that the validator sets of all running chains match the validator sets in the model. +* It checks that the packet queues where both receiver and sender are running match those packet queues in the model. +It ensures the timeout timestamps of packets match, but does not check any further packet data. +* It checks that the VSCSendTimestamps on the provider match the ones from the model. + +## Statistics + +The driver also produces some statistics about the traces it runs. +These are relatively minimal at the moment, but can be extended as needed. + +Right now, the statistics look, for example, like this, printed after running the traces: +``` +mbt_test.go:59: 499 traces run +mbt_test.go:62: Highest observed voting power: 800 +mbt_test.go:63: Number of started chains: 1497 +mbt_test.go:64: Number of stopped chains: 279 +mbt_test.go:65: Number of timeouts: 317 +mbt_test.go:66: Number of sent packets: 15183 +mbt_test.go:67: Number of blocks: 196990 +mbt_test.go:68: Number of transactions: 20813 +mbt_test.go:69: Average summed block time delta passed per trace: 876h46m29.361303503s +``` + +Some notes are: +* We count a timeout when a consumer times out either due to the VSCTimeout, or when we attempt to deliver a packet sent from/to the consumer to a chain where its timeout timestamp has passed (and thus the channel would be closed). +* Started chains - stopped chains - timeouts is not 0, because we often just leave chains running until the end of the trace, in which case they are neither stopped nor timed out. +* The average summed block time delta passed per trace is the total time passed in all trace (as measured by the sum of time increments we have performed) divided by the number of traces. +* The number of transactions is how many VotingPowerChanges we have seen in total. + +## Limitations + +The driver has some limitations and quirks that are documented here. + +#### One Block in the model is not one block in the implementation +In the model, we assume that when a consumer chain is started, +it takes just 1 block to get it connected to the provider, i.e. everything happens in the same block. +In reality, an IBC connection takes several blocks to be established. +Similarly, due to the limitations of light clients, we need to produce 2 blocks +to produce packets that can be received on the consumer (to accept a package from height H, the light client +needs to have seen a header of height H+1). + +#### Block times are not accurate to nanoseconds + +In the model, we have a notion of time that is expressed in seconds. +In the actual system, we produce blocks whose timestamps match the ones from the model, +but for technical reasons inside the ibc-go testing framework, we sometimes need to produce many +blocks in the system (e.g. when we set up an IBC connection), and those blocks need +to have different, increasing timestamps. +We solve this problem by only comparing timestamps to a second precision, and +producing "extra blocks" with only single nanosecond increments between block times. +Thus, to the coarse second precision, the timestamps match, but to the nanosecond precision, +they are different. +This will cause problems in practice if we produce on the order of tens of millions of blocks in one trace, +but as long as we produce only a few thousand blocks per trace, this should not be a problem. \ No newline at end of file diff --git a/tests/mbt/driver/generate_traces.sh b/tests/mbt/driver/generate_traces.sh index 8c97202a57..d37fef776c 100755 --- a/tests/mbt/driver/generate_traces.sh +++ b/tests/mbt/driver/generate_traces.sh @@ -1,10 +1,10 @@ echo "Generating bounded drift traces with timeouts" -go run ./... -modelPath=../model/ccv_boundeddrift.qnt -step stepBoundedDrift -invariant CanTimeoutConsumer -traceFolder traces/bound_timeout -numTraces 100 -numSteps 200 -numSamples 200 +go run ./... -modelPath=../model/ccv_boundeddrift.qnt -step stepBoundedDrift -invariant CanTimeoutConsumer -traceFolder traces/bound_timeout -numTraces 10 -numSteps 200 -numSamples 200 echo "Generating long bounded drift traces without invariants" -go run ./... -modelPath=../model/ccv_boundeddrift.qnt -step stepBoundedDrift -traceFolder traces/bound_noinv -numTraces 100 -numSteps 500 -numSamples 1 +go run ./... -modelPath=../model/ccv_boundeddrift.qnt -step stepBoundedDrift -traceFolder traces/bound_noinv -numTraces 10 -numSteps 500 -numSamples 1 echo "Generating bounded drift traces with maturations" -go run ./... -modelPath=../model/ccv_boundeddrift.qnt -step stepBoundedDrift -invariant CanReceiveMaturations -traceFolder traces/bound_mat -numTraces 100 -numSteps 100 -numSamples 20 +go run ./... -modelPath=../model/ccv_boundeddrift.qnt -step stepBoundedDrift -invariant CanReceiveMaturations -traceFolder traces/bound_mat -numTraces 10 -numSteps 100 -numSamples 20 echo "Generating synched traces with maturations" -go run ./... -modelPath=../model/ccv_sync.qnt -init initHappy -step stepHappy -invariant CanReceiveMaturations -traceFolder traces/sync_mat -numTraces 100 -numSteps 300 -numSamples 20 +go run ./... -modelPath=../model/ccv_sync.qnt -init initHappy -step stepHappy -invariant CanReceiveMaturations -traceFolder traces/sync_mat -numTraces 10 -numSteps 300 -numSamples 20 echo "Generating long synched traces without invariants" -go run ./... -modelPath=../model/ccv_sync.qnt -init initHappy -step stepHappy -traceFolder traces/sync_noinv -numTraces 100 -numSteps 500 -numSamples 1 \ No newline at end of file +go run ./... -modelPath=../model/ccv_sync.qnt -init initHappy -step stepHappy -traceFolder traces/sync_noinv -numTraces 10 -numSteps 500 -numSamples 1 \ No newline at end of file From 684a2e5ed8b038cc674b15e320c8aedec5f7e89b Mon Sep 17 00:00:00 2001 From: Philip Offtermatt Date: Thu, 30 Nov 2023 12:46:28 +0100 Subject: [PATCH 064/111] Remove difftest link from old docs --- docs/old/testing.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/old/testing.md b/docs/old/testing.md index 4c288f5136..2ac3b621ac 100644 --- a/docs/old/testing.md +++ b/docs/old/testing.md @@ -16,7 +16,7 @@ To run integration tests against your own consumer/provider implementations, use ## Differential Tests (WIP) -[Differential tests](../../tests/difference/) is similar to integration tests, but they compare the system state to an expected state generated from a model implementation. +Differential tests is similar to integration tests, but they compare the system state to an expected state generated from a model implementation. ## End-to-End (E2E) Tests From b8db7bc85d6a3ec1ab577d451f4c7e67b9f986d9 Mon Sep 17 00:00:00 2001 From: Philip Offtermatt Date: Thu, 30 Nov 2023 12:49:34 +0100 Subject: [PATCH 065/111] Revert changes to e2e tests --- tests/e2e/actions.go | 65 +++++------------------- tests/e2e/steps_start_chains.go | 42 +++++++++++++-- tests/e2e/testnet-scripts/start-chain.sh | 1 - 3 files changed, 51 insertions(+), 57 deletions(-) diff --git a/tests/e2e/actions.go b/tests/e2e/actions.go index 3cb0d375e5..b95be90d12 100644 --- a/tests/e2e/actions.go +++ b/tests/e2e/actions.go @@ -41,8 +41,7 @@ func (tr TestConfig) sendTokens( tr.validatorConfigs[action.From].DelAddress, tr.validatorConfigs[action.To].DelAddress, fmt.Sprint(action.Amount)+`stake`, - `--gas-prices`, `0.0025stake`, - `--gas-adjustment`, `1.5`, + `--chain-id`, string(tr.chainConfigs[action.Chain].ChainId), `--home`, tr.getValidatorHome(action.Chain, action.From), `--node`, tr.getValidatorNode(action.Chain, action.From), @@ -205,9 +204,6 @@ func (tr TestConfig) submitTextProposal( `--description`, action.Description, `--deposit`, fmt.Sprint(action.Deposit)+`stake`, `--from`, `validator`+fmt.Sprint(action.From), - `--gas`, "auto", - `--gas-prices`, `0.0025stake`, - `--gas-adjustment`, `1.5`, `--chain-id`, string(tr.chainConfigs[action.Chain].ChainId), `--home`, tr.getValidatorHome(action.Chain, action.From), `--node`, tr.getValidatorNode(action.Chain, action.From), @@ -277,22 +273,16 @@ func (tr TestConfig) submitConsumerAdditionProposal( //#nosec G204 -- Bypass linter warning for spawning subprocess with cmd arguments. // CONSUMER ADDITION PROPOSAL - cmd := exec.Command("docker", "exec", tr.containerConfig.InstanceName, tr.chainConfigs[action.Chain].BinaryName, + bz, err = exec.Command("docker", "exec", tr.containerConfig.InstanceName, tr.chainConfigs[action.Chain].BinaryName, "tx", "gov", "submit-legacy-proposal", "consumer-addition", "/temp-proposal.json", `--from`, `validator`+fmt.Sprint(action.From), - `--gas-prices`, `0.0025stake`, - `--gas-adjustment`, `1.5`, `--chain-id`, string(tr.chainConfigs[action.Chain].ChainId), `--home`, tr.getValidatorHome(action.Chain, action.From), - `--gas`, "auto", + `--gas`, `900000`, `--node`, tr.getValidatorNode(action.Chain, action.From), `--keyring-backend`, `test`, `-y`, - ) - - log.Println(cmd) - - bz, err = cmd.CombinedOutput() + ).CombinedOutput() if err != nil { log.Fatal(err, "\n", string(bz)) @@ -347,12 +337,10 @@ func (tr TestConfig) submitConsumerRemovalProposal( "tx", "gov", "submit-legacy-proposal", "consumer-removal", "/temp-proposal.json", `--from`, `validator`+fmt.Sprint(action.From), - `--gas-prices`, `0.0025stake`, - `--gas-adjustment`, `1.5`, `--chain-id`, string(tr.chainConfigs[action.Chain].ChainId), `--home`, tr.getValidatorHome(action.Chain, action.From), `--node`, tr.getValidatorNode(action.Chain, action.From), - `--gas`, "auto", + `--gas`, "900000", `--keyring-backend`, `test`, `-y`, ).CombinedOutput() @@ -425,12 +413,10 @@ func (tr TestConfig) submitParamChangeProposal( "tx", "gov", "submit-legacy-proposal", "param-change", "/params-proposal.json", `--from`, `validator`+fmt.Sprint(action.From), - `--gas-prices`, `0.0025stake`, - `--gas-adjustment`, `1.5`, `--chain-id`, string(tr.chainConfigs[action.Chain].ChainId), `--home`, tr.getValidatorHome(action.Chain, action.From), `--node`, tr.getValidatorNode(action.Chain, action.From), - `--gas`, "auto", + `--gas`, "900000", `--keyring-backend`, `test`, `-y`, ) @@ -468,13 +454,11 @@ func (tr *TestConfig) voteGovProposal( fmt.Sprint(action.PropNumber), vote, `--from`, `validator`+fmt.Sprint(val), - `--gas-prices`, `0.0025stake`, - `--gas-adjustment`, `1.5`, `--chain-id`, string(tr.chainConfigs[action.Chain].ChainId), `--home`, tr.getValidatorHome(action.Chain, val), `--node`, tr.getValidatorNode(action.Chain, val), `--keyring-backend`, `test`, - `--gas`, "auto", + `--gas`, "900000", `-y`, ).CombinedOutput() if err != nil { @@ -685,7 +669,7 @@ ccv_consumer_chain = %v [chains.gas_price] denom = "stake" - price = 0.025 + price = 0.000 [chains.trust_threshold] denominator = "3" @@ -968,10 +952,6 @@ func (tr TestConfig) addIbcConnectionHermes( "--b-client", "07-tendermint-"+fmt.Sprint(action.ClientB), ) - if verbose { - log.Println("addIbcConnectionHermes cmd: ", cmd.String()) - } - cmdReader, err := cmd.StdoutPipe() if err != nil { log.Fatal(err) @@ -1343,9 +1323,6 @@ func (tr TestConfig) delegateTokens( fmt.Sprint(action.Amount)+`stake`, `--from`, `validator`+fmt.Sprint(action.From), - `--gas`, "auto", - `--gas-prices`, `0.0025stake`, - `--gas-adjustment`, `1.5`, `--chain-id`, string(tr.chainConfigs[action.Chain].ChainId), `--home`, tr.getValidatorHome(action.Chain, action.From), `--node`, tr.getValidatorNode(action.Chain, action.From), @@ -1390,12 +1367,10 @@ func (tr TestConfig) unbondTokens( fmt.Sprint(action.Amount)+`stake`, `--from`, `validator`+fmt.Sprint(action.Sender), - `--gas-prices`, `0.0025stake`, - `--gas-adjustment`, `1.5`, `--chain-id`, string(tr.chainConfigs[action.Chain].ChainId), `--home`, tr.getValidatorHome(action.Chain, action.Sender), `--node`, tr.getValidatorNode(action.Chain, action.Sender), - `--gas`, "auto", + `--gas`, "900000", `--keyring-backend`, `test`, `-y`, ) @@ -1459,12 +1434,10 @@ func (tr TestConfig) cancelUnbondTokens( fmt.Sprint(action.Amount)+`stake`, fmt.Sprint(creationHeight), `--from`, `validator`+fmt.Sprint(action.Delegator), - `--gas-prices`, `0.0025stake`, - `--gas-adjustment`, `1.5`, `--chain-id`, string(tr.chainConfigs[action.Chain].ChainId), `--home`, tr.getValidatorHome(action.Chain, action.Delegator), `--node`, tr.getValidatorNode(action.Chain, action.Delegator), - `--gas`, "auto", + `--gas`, "900000", `--keyring-backend`, `test`, `-o`, `json`, `-y`, @@ -1514,13 +1487,11 @@ func (tr TestConfig) redelegateTokens(action redelegateTokensAction, verbose boo redelegateDst, fmt.Sprint(action.Amount)+`stake`, `--from`, `validator`+fmt.Sprint(action.TxSender), - `--gas-prices`, `0.0025stake`, - `--gas-adjustment`, `1.5`, `--chain-id`, string(tr.chainConfigs[action.Chain].ChainId), `--home`, tr.getValidatorHome(action.Chain, action.TxSender), `--node`, tr.getValidatorNode(action.Chain, action.TxSender), // Need to manually set gas limit past default (200000), since redelegate has a lot of operations - `--gas`, "auto", + `--gas`, "900000", `--keyring-backend`, `test`, `-y`, ) @@ -1646,9 +1617,7 @@ func (tr TestConfig) unjailValidator(action unjailValidatorAction, verbose bool) `--chain-id`, string(tr.chainConfigs[action.Provider].ChainId), `--home`, tr.getValidatorHome(action.Provider, action.Validator), `--node`, tr.getValidatorNode(action.Provider, action.Validator), - `--gas`, "auto", - `--gas-prices`, `0.0025stake`, - `--gas-adjustment`, `1.5`, + `--gas`, "900000", `--keyring-backend`, `test`, `-y`, ) @@ -1706,9 +1675,6 @@ func (tr TestConfig) registerRepresentative( `--commission-max-change-rate`, "0.01", `--min-self-delegation`, "1", `--from`, `validator`+fmt.Sprint(val), - `--gas`, "auto", - `--gas-prices`, `0.0025stake`, - `--gas-adjustment`, `1.5`, `--chain-id`, string(tr.chainConfigs[action.Chain].ChainId), `--home`, tr.getValidatorHome(action.Chain, val), `--node`, tr.getValidatorNode(action.Chain, val), @@ -1773,9 +1739,7 @@ func (tr TestConfig) submitChangeRewardDenomsProposal(action submitChangeRewardD `--chain-id`, string(providerChain.ChainId), `--home`, tr.getValidatorHome(providerChain.ChainId, action.From), `--node`, tr.getValidatorNode(providerChain.ChainId, action.From), - `--gas`, "auto", - `--gas-prices`, `0.0025stake`, - `--gas-adjustment`, `1.5`, + `--gas`, "9000000", `--keyring-backend`, `test`, `-y`, ).CombinedOutput() @@ -1928,7 +1892,7 @@ func (tr TestConfig) assignConsumerPubKey(action assignConsumerPubKeyAction, ver gas = "9000000" } assignKey := fmt.Sprintf( - `%s tx provider assign-consensus-key %s '%s' --from validator%s --chain-id %s --home %s --node %s --gas %s --gas-prices %s --gas-adjustment 1.5 --keyring-backend test -y -o json`, + `%s tx provider assign-consensus-key %s '%s' --from validator%s --chain-id %s --home %s --node %s --gas %s --keyring-backend test -y -o json`, tr.chainConfigs[ChainID("provi")].BinaryName, string(tr.chainConfigs[action.Chain].ChainId), action.ConsumerPubkey, @@ -1937,7 +1901,6 @@ func (tr TestConfig) assignConsumerPubKey(action assignConsumerPubKeyAction, ver tr.getValidatorHome(ChainID("provi"), action.Validator), tr.getValidatorNode(ChainID("provi"), action.Validator), gas, - `0.0025stake`, ) //#nosec G204 -- Bypass linter warning for spawning subprocess with cmd arguments. diff --git a/tests/e2e/steps_start_chains.go b/tests/e2e/steps_start_chains.go index 9e6541bfe9..58a5f75162 100644 --- a/tests/e2e/steps_start_chains.go +++ b/tests/e2e/steps_start_chains.go @@ -10,12 +10,20 @@ func stepStartProviderChain() []Step { Action: StartChainAction{ Chain: ChainID("provi"), Validators: []StartChainValidator{ - {Id: ValidatorID("bob"), Stake: 500000000, Allocation: 1000000000000000}, - {Id: ValidatorID("alice"), Stake: 500000000, Allocation: 1000000000000000}, - {Id: ValidatorID("carol"), Stake: 500000000, Allocation: 1000000000000000}, + {Id: ValidatorID("bob"), Stake: 500000000, Allocation: 10000000000}, + {Id: ValidatorID("alice"), Stake: 500000000, Allocation: 10000000000}, + {Id: ValidatorID("carol"), Stake: 500000000, Allocation: 10000000000}, + }, + }, + State: State{ + ChainID("provi"): ChainState{ + ValBalances: &map[ValidatorID]uint{ + ValidatorID("alice"): 9500000000, + ValidatorID("bob"): 9500000000, + ValidatorID("carol"): 9500000000, + }, }, }, - State: State{}, }, } } @@ -33,6 +41,10 @@ func stepsStartConsumerChain(consumerName string, proposalIndex, chainIndex uint }, State: State{ ChainID("provi"): ChainState{ + ValBalances: &map[ValidatorID]uint{ + ValidatorID("alice"): 9489999999, + ValidatorID("bob"): 9500000000, + }, Proposals: &map[uint]Proposal{ proposalIndex: ConsumerAdditionProposal{ Deposit: 10000001, @@ -122,6 +134,10 @@ func stepsStartConsumerChain(consumerName string, proposalIndex, chainIndex uint Status: "PROPOSAL_STATUS_PASSED", }, }, + ValBalances: &map[ValidatorID]uint{ + ValidatorID("alice"): 9500000000, + ValidatorID("bob"): 9500000000, + }, }, }, }, @@ -141,7 +157,23 @@ func stepsStartConsumerChain(consumerName string, proposalIndex, chainIndex uint // values from the genesis file. GenesisChanges: ".app_state.ccvconsumer.params.soft_opt_out_threshold = \"0.05\"", }, - State: State{}, + State: State{ + ChainID("provi"): ChainState{ + ValBalances: &map[ValidatorID]uint{ + ValidatorID("alice"): 9500000000, + ValidatorID("bob"): 9500000000, + ValidatorID("carol"): 9500000000, + }, + ProposedConsumerChains: &[]string{}, + }, + ChainID(consumerName): ChainState{ + ValBalances: &map[ValidatorID]uint{ + ValidatorID("alice"): 10000000000, + ValidatorID("bob"): 10000000000, + ValidatorID("carol"): 10000000000, + }, + }, + }, }, { Action: addIbcConnectionAction{ diff --git a/tests/e2e/testnet-scripts/start-chain.sh b/tests/e2e/testnet-scripts/start-chain.sh index 769253ce0f..e3e6b6054f 100644 --- a/tests/e2e/testnet-scripts/start-chain.sh +++ b/tests/e2e/testnet-scripts/start-chain.sh @@ -198,7 +198,6 @@ do #'s/foo/bar/;s/abc/def/' sed -i "$TENDERMINT_CONFIG_TRANSFORM" $CHAIN_ID/validator$VAL_ID/config/config.toml fi - sed -i 's/minimum-gas-prices = "0stake"/minimum-gas-prices = "0.0025stake"/g' $CHAIN_ID/validator$VAL_ID/config/app.toml done From ce62ab0d17b9879be825761e7b2f135e8b1b9cc6 Mon Sep 17 00:00:00 2001 From: Philip Offtermatt Date: Thu, 30 Nov 2023 12:52:02 +0100 Subject: [PATCH 066/111] Fix link to MBT --- TESTING.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/TESTING.md b/TESTING.md index 8e524fdc55..b86e63c44f 100644 --- a/TESTING.md +++ b/TESTING.md @@ -14,9 +14,9 @@ Unit tests are useful for simple standalone functionality, and CRUD operations. To run integration tests against your own consumer/provider implementations, use [instance_test.go](../../tests/integration/instance_test.go) as an example. All you'll need to do is make sure your applications implement the necessary interfaces defined in [interfaces.go](../../testutil/integration/interfaces.go), pattern match [specific_setup.go](../../testutil/ibc_testing/specific_setup.go), then pass in the appropriate types and parameters to the suite, as is done in `instance_test.go` for the dummy provider/consumer implementations. -## Differential Tests (WIP) +## Model-Based Tests (MBT) -Differential tests is similar to integration tests, but they compare the system state to an expected state generated from a model implementation. +[MBT](tests/mbt/) tests are similar to integration tests, but they compare the system state to an expected state generated from a formally verified specification written in Quint. ## End-to-End (E2E) Tests From 7eeb540ff851e4bf78656c3bdc6a0e247062fa5a Mon Sep 17 00:00:00 2001 From: Philip Offtermatt Date: Thu, 30 Nov 2023 12:57:38 +0100 Subject: [PATCH 067/111] Tidy go mod and use go 1.20 --- go.mod | 4 +--- go.sum | 39 --------------------------------------- 2 files changed, 1 insertion(+), 42 deletions(-) diff --git a/go.mod b/go.mod index 53ff5d272a..b63074556a 100644 --- a/go.mod +++ b/go.mod @@ -1,8 +1,6 @@ module github.com/cosmos/interchain-security/v3 -go 1.21.1 - -toolchain go1.21.3 +go 1.20 require ( cosmossdk.io/errors v1.0.0 diff --git a/go.sum b/go.sum index 81520b7947..3e686ac82b 100644 --- a/go.sum +++ b/go.sum @@ -209,7 +209,6 @@ github.com/99designs/go-keychain v0.0.0-20191008050251-8e49817e8af4/go.mod h1:hN github.com/99designs/keyring v1.2.1 h1:tYLp1ULvO7i3fI5vE21ReQuj99QFSs7lGm0xWyJo87o= github.com/99designs/keyring v1.2.1/go.mod h1:fc+wB5KTk9wQ9sDx0kFXB3A0MaeGHM9AwRStKOQ5vOA= github.com/Azure/go-ansiterm v0.0.0-20210617225240-d185dfc1b5a1 h1:UQHMgLO+TxOElx5B5HZ4hJQsoJ/PvUvKRhJHDQXO8P8= -github.com/Azure/go-ansiterm v0.0.0-20210617225240-d185dfc1b5a1/go.mod h1:xomTg63KZ2rFqZQzSB4Vz2SUXa1BpHTVz9L5PTmPC4E= github.com/BurntSushi/toml v0.3.1/go.mod h1:xHWCNGjB5oqiDr8zfno3MHue2Ht5sIBksp03qcyfWMU= github.com/BurntSushi/xgb v0.0.0-20160522181843-27f122750802/go.mod h1:IVnqGOEym/WlBOVXweHU+Q+/VP0lqqI8lqeDx9IjBqo= github.com/ChainSafe/go-schnorrkel v0.0.0-20200405005733-88cbf1b4c40d h1:nalkkPQcITbvhmL4+C4cKA87NW0tfm3Kl9VXRoPywFg= @@ -217,9 +216,7 @@ github.com/ChainSafe/go-schnorrkel v0.0.0-20200405005733-88cbf1b4c40d/go.mod h1: github.com/DataDog/datadog-go v3.2.0+incompatible/go.mod h1:LButxg5PwREeZtORoXG3tL4fMGNddJ+vMq1mwgfaqoQ= github.com/Knetic/govaluate v3.0.1-0.20171022003610-9aa49832a739+incompatible/go.mod h1:r7JcOSlj0wfOMncg0iLm8Leh48TZaKVeNIfJntJ2wa0= github.com/Microsoft/go-winio v0.6.0 h1:slsWYD/zyx7lCXoZVlvQrj0hPTM1HI4+v1sIda2yDvg= -github.com/Microsoft/go-winio v0.6.0/go.mod h1:cTAf44im0RAYeL23bpB+fzCyDH2MJiz2BO69KH/soAE= github.com/Nvveen/Gotty v0.0.0-20120604004816-cd527374f1e5 h1:TngWCqHvy9oXAN6lEVMRuU21PR1EtLVZJmdB18Gu3Rw= -github.com/Nvveen/Gotty v0.0.0-20120604004816-cd527374f1e5/go.mod h1:lmUJ/7eu/Q8D7ML55dXQrVaamCz2vxCfdQBasLZfHKk= github.com/OneOfOne/xxhash v1.2.2 h1:KMrpdQIwFcEqXDklaen+P1axHaj9BSKzvpUUfnHldSE= github.com/OneOfOne/xxhash v1.2.2/go.mod h1:HSdplMjZKSmBqAxg5vPj2TmRDmfkzw+cTzAElWljhcU= github.com/Shopify/sarama v1.19.0/go.mod h1:FVkBWblsNy7DGZRfXLU0O9RCGt5g3g3yEuWXgklEdEo= @@ -227,7 +224,6 @@ github.com/Shopify/toxiproxy v2.1.4+incompatible/go.mod h1:OXgGpZ6Cli1/URJOF1DMx 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/adlio/schema v1.3.3 h1:oBJn8I02PyTB466pZO1UZEn1TV5XLlifBSyMrmHl/1I= -github.com/adlio/schema v1.3.3/go.mod h1:1EsRssiv9/Ce2CMzq5DoL7RiMshhuigQxrR4DMV9fHg= github.com/afex/hystrix-go v0.0.0-20180502004556-fa1af6a1f4f5/go.mod h1:SkGFH1ia65gfNATL8TAiHDNxPzPdmEL5uirI2Uyuz6c= 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= @@ -262,11 +258,8 @@ github.com/bgentry/speakeasy v0.1.1-0.20220910012023-760eaf8b6816/go.mod h1:+zsy 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= github.com/btcsuite/btcd/btcutil v1.1.2 h1:XLMbX8JQEiwMcYft2EGi8zPUkoa0abKIU6/BJSRsjzQ= -github.com/btcsuite/btcd/btcutil v1.1.2/go.mod h1:UR7dsSJzJUfMmFiiLlIrMq1lS9jh9EdCV7FStZSnpi0= github.com/btcsuite/btcd/chaincfg/chainhash v1.0.1 h1:q0rUy8C/TYNBQS1+CGKw68tLOFYSNEs0TFnxxnS9+4U= -github.com/btcsuite/btcd/chaincfg/chainhash v1.0.1/go.mod h1:7SFka0XMvUgj3hfZtydOrQY2mwhPclbT2snogU7SQQc= github.com/bufbuild/protocompile v0.4.0 h1:LbFKd2XowZvQ/kajzguUp2DC9UEIQhIq77fZZlaQsNA= -github.com/bufbuild/protocompile v0.4.0/go.mod h1:3v93+mbWn/v3xzN+31nwkJfrEpAUwp+BagBSZWx+TP8= github.com/casbin/casbin/v2 v2.1.2/go.mod h1:YcPU1XXisHhLzuxH9coDNf2FbKpjGlbCg3n9yuLkIJQ= github.com/cenkalti/backoff v2.2.1+incompatible h1:tNowT99t7UNflLxfYYSlKYsBpXdEet03Pg2g16Swow4= github.com/cenkalti/backoff v2.2.1+incompatible/go.mod h1:90ReRw6GdpyfrHakVjL/QHaoyV4aDUVVkXQJJJ3NXXM= @@ -321,7 +314,6 @@ github.com/cometbft/cometbft-db v0.8.0/go.mod h1:6ASCP4pfhmrCBpfk01/9E1SI29nD3Hf 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/containerd/continuity v0.3.0 h1:nisirsYROK15TAMVukJOUyGJjz4BNQJBVsNvAXZJ/eg= -github.com/containerd/continuity v0.3.0/go.mod h1:wJEAIwKOm/pBZuBd0JmeTvnLquTB1Ag8espWhkykbPM= github.com/coreos/etcd v3.3.10+incompatible/go.mod h1:uF7uidLiAD3TWHmW31ZFd/JWoc32PjwdhPthX9715RE= 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= @@ -365,7 +357,6 @@ github.com/davecgh/go-spew v1.1.0/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSs github.com/davecgh/go-spew v1.1.1 h1:vj9j/u1bqnvCEfJOwUhtlOARqs3+rkHYY13jYWTU97c= github.com/davecgh/go-spew v1.1.1/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38= 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.1.0 h1:HbphB4TFFXpv7MNrT52FGrrgVXF1owhMVTHFZIlnvd4= github.com/decred/dcrd/dcrec/secp256k1/v4 v4.1.0/go.mod h1:DZGJHZMqrU4JJqFAWUS2UO1+lbSKsdiOoYi9Zzey7Fc= github.com/desertbit/timer v0.0.0-20180107155436-c41aec40b27f h1:U5y3Y5UE0w7amNe7Z5G/twsBW0KEalRQXZzf8ufSh9I= @@ -380,9 +371,7 @@ github.com/dgryski/go-farm v0.0.0-20190423205320-6a90982ecee2/go.mod h1:SqUrOPUn github.com/dgryski/go-farm v0.0.0-20200201041132-a6ae2369ad13 h1:fAjc9m62+UWV/WAFKLNi6ZS0675eEUC9y3AlwSbQu1Y= github.com/dgryski/go-farm v0.0.0-20200201041132-a6ae2369ad13/go.mod h1:SqUrOPUnsFjfmXRMNPybcSiG0BgUW2AuFH8PAnS2iTw= github.com/docker/go-connections v0.4.0 h1:El9xVISelRB7BuFusrZozjnkIM5YnzCViNKohAFqRJQ= -github.com/docker/go-connections v0.4.0/go.mod h1:Gbd7IOopHjR8Iph03tsViu4nIes5XhDvyHbTtUxmeec= github.com/docker/go-units v0.5.0 h1:69rxXcBk27SvSaaxTtLh/8llcHD8vYHT7WSdRZ/jvr4= -github.com/docker/go-units v0.5.0/go.mod h1:fgPhTUdO+D/Jk86RDLlptpiXQzgHJF7gydDDbaIK4Dk= 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 h1:GzkhY7T5VNhEkwH0PVJgjz+fX1rhBrR7pRT3mDkpeCY= @@ -409,11 +398,9 @@ github.com/felixge/httpsnoop v1.0.1/go.mod h1:m8KPJKqk1gH5J9DgRY2ASl2lWCfGKXixSw github.com/felixge/httpsnoop v1.0.2 h1:+nS9g82KMXccJ/wp0zyRW9ZBHFETmMGtkk+2CTTrW4o= github.com/felixge/httpsnoop v1.0.2/go.mod h1:m8KPJKqk1gH5J9DgRY2ASl2lWCfGKXixSwevea8zH2U= github.com/fortytw2/leaktest v1.3.0 h1:u8491cBMTQ8ft8aeV+adlcytMZylmA5nnwwkRZjI8vw= -github.com/fortytw2/leaktest v1.3.0/go.mod h1:jDsjWgpAGjm2CA7WthBh/CdZYEPF31XHquHwclZch5g= 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.4 h1:g2rn0vABPOOXmZUj+vbmUp0lPoXEMuhTpIluN0XL9UY= -github.com/frankban/quicktest v1.14.4/go.mod h1:4ptaffx2x8+WTWXmUCuVU6aPUX1/Mz7zb5vbUoiM6w0= 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= @@ -425,9 +412,7 @@ 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.8.1 h1:4+fr/el88TOO3ewCmQr8cx/CtZ/umlIRIs5M4NTNjf8= -github.com/gin-gonic/gin v1.8.1/go.mod h1:ji8BvRH1azfM+SYow9zQ6SZMvR8qOMZHmsCuWR9tTTk= github.com/go-errors/errors v1.4.2 h1:J6MZopCL4uSllY1OfXM374weqZFFItUbrImctkmUxIA= -github.com/go-errors/errors v1.4.2/go.mod h1:sIVyrIiJhuEF+Pj9Ebtd6P/rEYROXFi3BopGUQ5a5Og= github.com/go-gl/glfw v0.0.0-20190409004039-e6da0acd62b1/go.mod h1:vR7hzQXu2zJy9AVAgeJqvqgH9Q5CA+iKCZ2gyEVpxRU= github.com/go-gl/glfw/v3.3/glfw v0.0.0-20191125211704-12ad95a8df72/go.mod h1:tQ2UAYgL5IevRw8kRxooKSPJfGvJ9fJQFa0TUsXzTg8= github.com/go-gl/glfw/v3.3/glfw v0.0.0-20200222043503-6f7a984d4dc4/go.mod h1:tQ2UAYgL5IevRw8kRxooKSPJfGvJ9fJQFa0TUsXzTg8= @@ -446,13 +431,10 @@ github.com/go-logfmt/logfmt v0.6.0/go.mod h1:WYhtIu8zTZfxdn5+rREduYbwxfcBr/Vr6KE github.com/go-playground/assert/v2 v2.0.1/go.mod h1:VDjEfimB/XKnb+ZQfWdccd7VUvScMdVu0Titje2rxJ4= github.com/go-playground/locales v0.13.0/go.mod h1:taPMhCMXrRLJO55olJkUXHZBHCxTMfnGwq/HNwmWNS8= 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.11.1 h1:prmOlTVv+YjZjmRmNSF3VmspqJIxJWXmqUsHwfTRRkQ= -github.com/go-playground/validator/v10 v10.11.1/go.mod h1:i+3WkQ1FvaUjjxh1kSvIA4dMGDBiPU55YFDl0WbKdWU= github.com/go-sql-driver/mysql v1.4.0/go.mod h1:zAC/RDZ24gD3HViQzih4MyKcchzm+sOG5ZlKdlhCg5w= github.com/go-stack/stack v1.8.0/go.mod h1:v0f6uXyyMGvRgIKkXu+yp6POWl0qKG85gN/melR3HDY= github.com/gobwas/httphead v0.0.0-20180130184737-2c6c146eadee h1:s+21KNqlpePfkah2I+gwHF8xmJWRjooY+5248k6m4A0= @@ -462,7 +444,6 @@ github.com/gobwas/pool v0.2.0/go.mod h1:q8bcK0KcYlCgd9e7WYLm9LpyS+YeLd8JVDW6Wezm 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/goccy/go-json v0.9.11/go.mod h1:6MelG93GURQebXPDq3khkgXZkazVtN9CRI+MGFi0w8I= 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= @@ -543,14 +524,12 @@ github.com/google/go-cmp v0.6.0/go.mod h1:17dUlkBOakJ0+DkrSSNjCkIjxS6bF9zb3elmeN 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.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/go.mod h1:oBOf6HBosgwRXnUGWUB05QECsc6uvmMiJ3+6W4l/CUk= github.com/google/martian/v3 v3.3.2 h1:IqNFLAmvJOgVlpdEBiQbDc2EwKW77amAycfTuWKdfvw= -github.com/google/martian/v3 v3.3.2/go.mod h1:oBOf6HBosgwRXnUGWUB05QECsc6uvmMiJ3+6W4l/CUk= 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= @@ -678,7 +657,6 @@ github.com/influxdata/influxdb1-client v0.0.0-20191209144304-8bf82d3c094d/go.mod github.com/informalsystems/itf-go v0.0.1 h1:lVvdg3v+IMWOsVfIvOOGy1hHFO5KxoS8b8EiwKLbQDg= github.com/informalsystems/itf-go v0.0.1/go.mod h1:wgqaQ/yl2kbNlgw6GaleuHEefpZvkZo6Hc0jc8cGG9M= github.com/jhump/protoreflect v1.15.1 h1:HUMERORf3I3ZdX05WaQ6MIpd/NJ434hTp5YiKgfCL6c= -github.com/jhump/protoreflect v1.15.1/go.mod h1:jD/2GMKKE6OqX8qTjhADU1e6DShO+gavG9e0Q693nKo= 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= @@ -694,7 +672,6 @@ github.com/json-iterator/go v1.1.8/go.mod h1:KdQUCv79m/52Kvf8AW2vK1V8akMuk1QjK/u 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.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/jtolds/gls v4.20.0+incompatible/go.mod h1:QJZ7F/aHp+rZTRtaJ1ow/lLfFfVYBRgL+9YlvaHOwJU= @@ -725,7 +702,6 @@ github.com/kylelemons/godebug v1.1.0 h1:RPNrshWIDI6G2gRW9EHilWtl7Z6Sb1BR0xunSBf0 github.com/kylelemons/godebug v1.1.0/go.mod h1:9/0rRGxNHcop5bhtWyNeEfOS8JIWk580+fNqagV/RAw= 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.10.7 h1:p7ZhMD+KsSRozJr34udlUrhboJwWAgCg34+/ZZNvZZw= github.com/lib/pq v1.10.7/go.mod h1:AlVN5x4E4T544tWzH6hKfbfQvm3HdbOxrmggDNAPY9o= github.com/libp2p/go-buffer-pool v0.1.0 h1:oK4mSFcQz7cTQIfqbe4MIj9gLW+mnanjyFtc6cdF0Y8= @@ -781,7 +757,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/mtibben/percent v0.2.1 h1:5gssi8Nqo8QU/r2pynCm+hBQHpkB/uNK7BJCFogWdzs= github.com/mtibben/percent v0.2.1/go.mod h1:KG9uO+SZkUp+VkRHsCdYQV3XSZrrSpR3O9ibNBTZrns= github.com/mwitkow/go-conntrack v0.0.0-20161129095857-cc309e4a2223/go.mod h1:qRWi+5nqEBWmkhHvq77mSJWrCKwh8bxhgT7d/eI7P4U= @@ -798,7 +773,6 @@ github.com/nats-io/nuid v1.0.1/go.mod h1:19wcPz3Ph3q0Jbyiqsd0kePYG7A95tJPxeL+1OS github.com/niemeyer/pretty v0.0.0-20200227124842-a10e7caefd8e/go.mod h1:zD1mROLANZcx1PVRCS0qkT7pwLkGfwJo4zjcN/Tysno= github.com/nxadm/tail v1.4.4/go.mod h1:kenIhsEOeOJmVchQTgglprH7qJGnHDVpk1VPCcaMI8A= github.com/nxadm/tail v1.4.8 h1:nPr65rt6Y5JFSKQO7qToXr7pePgD6Gwiw05lkbyAQTE= -github.com/nxadm/tail v1.4.8/go.mod h1:+ncqLTQzXmGhMZNUePPaPqPvBxHAIsmXswZKocGu+AU= 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/olekukonko/tablewriter v0.0.0-20170122224234-a0225b3f23b5/go.mod h1:vsDQFd/mU46D+Z4whnwzcISnGGzXWMclvtLoiIKAKIo= @@ -807,19 +781,14 @@ github.com/onsi/ginkgo v1.7.0/go.mod h1:lLunBs/Ym6LB5Z9jYTR76FiuTmxDTDusOGeTQH+W github.com/onsi/ginkgo v1.12.1/go.mod h1:zj2OWP4+oCPe1qIXoGWkgMRwljMUYCdkwsT2108oapk= 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/ginkgo v1.16.4/go.mod h1:dX+/inL/fNMqNlz0e9LfyB9TswhZpCVdJM/Z6Vvnwo0= 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.20.0 h1:8W0cWlwFkflGPLltQvLRB7ZVD5HuP6ng320w2IS245Q= -github.com/onsi/gomega v1.20.0/go.mod h1:DtrZpjmvpn2mPm4YWQa0/ALMDj9v4YxLgojwPeREyVo= 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/go-digest v1.0.0/go.mod h1:0JzlMkj0TRzQZfJkVvzbP0HBR3IKzErnv2BNG4W4MAM= github.com/opencontainers/image-spec v1.1.0-rc2 h1:2zx/Stx4Wc5pIPDvIxHXvXtQFW/7XWJGmnM7r3wg034= -github.com/opencontainers/image-spec v1.1.0-rc2/go.mod h1:3OVijpioIKYWTqjiG0zfF6wvoJ4fAXGbjdZuI2NgsRQ= github.com/opencontainers/runc v1.1.3 h1:vIXrkId+0/J2Ymu2m7VjGvbSlAId9XNRPhn2p4b+d8w= -github.com/opencontainers/runc v1.1.3/go.mod h1:1J5XiS+vdZ3wCyZybsuxXZWGrgSr8fFJHLXuG2PsnNg= github.com/opentracing-contrib/go-observer v0.0.0-20170622124052-a52f23424492/go.mod h1:Ngi6UdF0k5OKD5t5wlmGhe/EDKPoUM3BXZSSfIuJbis= github.com/opentracing/basictracer-go v1.0.0/go.mod h1:QfBfYuafItcjQuMwinw9GhYKwFXS9KnPs5lxoYwgW74= github.com/opentracing/opentracing-go v1.0.2/go.mod h1:UkNAQd3GIcIGf0SeVgPpRdFStlNbqXla1AfSYxPUl2o= @@ -829,7 +798,6 @@ github.com/openzipkin/zipkin-go v0.1.6/go.mod h1:QgAqvLzwWbR/WpD4A3cGpPtJrZXNIiJ github.com/openzipkin/zipkin-go v0.2.1/go.mod h1:NaW6tEwdmWMaCDZzg8sh+IBNOxHMPnhQw8ySjnjRyN4= github.com/openzipkin/zipkin-go v0.2.2/go.mod h1:NaW6tEwdmWMaCDZzg8sh+IBNOxHMPnhQw8ySjnjRyN4= github.com/ory/dockertest v3.3.5+incompatible h1:iLLK6SQwIhcbrG783Dghaaa3WPzGc+4Emza6EbVUUGA= -github.com/ory/dockertest v3.3.5+incompatible/go.mod h1:1vX4m9wsvi00u5bseYwXaSnhNrne+V0E6LAcBILJdPs= github.com/oxyno-zeta/gomock-extra-matcher v1.2.0 h1:WPEclU0y0PMwUzdDcaKZvld4aXpa3fkzjiUMQdcBEHg= github.com/oxyno-zeta/gomock-extra-matcher v1.2.0/go.mod h1:S0r7HmKeCGsHmvIVFMjKWwswb4+30nCNWbXRMBVPkaU= github.com/pact-foundation/pact-go v1.0.4/go.mod h1:uExwJY4kCzNPcHRj+hCR/HBbOOIwwtUjcrb0b5/5kLM= @@ -847,7 +815,6 @@ github.com/petermattis/goid v0.0.0-20230317030725-371a4b8eda08/go.mod h1:pxMtw7c 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/pingcap/errors v0.11.4 h1:lFuQV/oaUMGcD2tqt+01ROSmJs75VG1ToEOkZIZ4nE4= -github.com/pingcap/errors v0.11.4/go.mod h1:Oi8TUi2kEtXXLMJk9l1cGmz20kV3TaQ0usTwv5KuLY8= github.com/pkg/diff v0.0.0-20210226163009-20ebb0f2a09e/go.mod h1:pJLUxLENpZxwdsKMEsNbx1VGcRFpLqf3715MtcvvzbA= github.com/pkg/errors v0.8.0/go.mod h1:bwawxfHBFNV+L2hUp1rHADufV3IMtnDRdf1r5NINEl0= github.com/pkg/errors v0.8.1/go.mod h1:bwawxfHBFNV+L2hUp1rHADufV3IMtnDRdf1r5NINEl0= @@ -921,7 +888,6 @@ github.com/sirupsen/logrus v1.4.2/go.mod h1:tLMulIdttU9McNUspp0xgXVQah82FyeX6Mwd github.com/sirupsen/logrus v1.6.0/go.mod h1:7uNnSEd1DgxDLC74fIahvMZmmYsHGZGEOFrfsX/uA88= github.com/sirupsen/logrus v1.7.0/go.mod h1:yWOB1SBYBC5VeMP7gHvWumXLIWorT60ONWic61uBYv0= github.com/sirupsen/logrus v1.9.0 h1:trlNQbNUG3OdDrDil03MCb1H2o9nJ1x4/5LYw7byDE0= -github.com/sirupsen/logrus v1.9.0/go.mod h1:naHLuLoDiP4jHNo9R0sCBMtWGeIprob74mVsIT4qYEQ= github.com/smartystreets/assertions v0.0.0-20180927180507-b2de0cb4f26d/go.mod h1:OnSkiWE9lh6wB0YB77sQom3nweQdgAjqCqsofrRNTgc= github.com/smartystreets/goconvey v1.6.4/go.mod h1:syvi0/a8iFYH4r/RixwvyeAJjdLS9QV7WQ/tjFTllLA= github.com/soheilhy/cmux v0.1.4/go.mod h1:IM3LyeVVIOuxMH7sFAkER9+bJ4dT7Ms6E4xg4kGIyLM= @@ -990,7 +956,6 @@ 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/go.mod h1:Ax+UKWsSmolVDwsd+7N3ZtXu+yMGCf907BLYF3GoBXY= github.com/ugorji/go/codec v1.2.7 h1:YPXUKf7fYbp/y8xloBqZOw2qaVggbfwMlI8WM3wZUJ0= -github.com/ugorji/go/codec v1.2.7/go.mod h1:WGN1fab3R1fzQlVQTkfxVtIBhWDRqOviHU95kRgeqEY= 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= @@ -1093,7 +1058,6 @@ golang.org/x/mod v0.4.2/go.mod h1:s0Qsj1ACt9ePp/hMypM3fl4fZqREWJwdYDEqhRiZZUA= golang.org/x/mod v0.5.1/go.mod h1:5OXOZSfqPIIbmVBIIKWRFfZjPR0E5r58TLhUjH0a2Ro= golang.org/x/mod v0.6.0-dev.0.20220419223038-86c51ed26bb4/go.mod h1:jJ57K6gSWd91VN4djpZkiMVwK6gcyfeH4XE8wZrZaV4= golang.org/x/mod v0.11.0 h1:bUO06HqtnRcc/7l71XBe4WcqTZ+3AH1J59zWDDwLKgU= -golang.org/x/mod v0.11.0/go.mod h1:iBbtSCu2XBx23ZKBPSOrRkjjQPZFPuis4dIYUhu/chs= 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= golang.org/x/net v0.0.0-20180906233101-161cd47e91fd/go.mod h1:mL1N/T3taQHkDXs73rZJwtUhF3w3ftmwwsq0BUmARs4= @@ -1388,7 +1352,6 @@ golang.org/x/tools v0.1.5/go.mod h1:o0xws9oXOQQZyjljx8fwUC0k7L1pTE6eaCbjGeHmOkk= golang.org/x/tools v0.1.8/go.mod h1:nABZi5QlRsZVlzPpHl034qft6wpY4eDcsTt5AaioBiU= 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/tools v0.6.0/go.mod h1:Xwgl3UAJ/d3gWutnCtw505GrjyAbvKui8lOU390QaIU= 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= @@ -1639,7 +1602,6 @@ gopkg.in/check.v1 v1.0.0-20180628173108-788fd7840127/go.mod h1:Co6ibVJAznAaIkqp8 gopkg.in/check.v1 v1.0.0-20190902080502-41f04d3bba15/go.mod h1:Co6ibVJAznAaIkqp8huTwlJQCZ016jof/cbN4VW5Yz0= gopkg.in/check.v1 v1.0.0-20200902074654-038fdea0a05b/go.mod h1:Co6ibVJAznAaIkqp8huTwlJQCZ016jof/cbN4VW5Yz0= gopkg.in/check.v1 v1.0.0-20201130134442-10cb98267c6c h1:Hei/4ADfdWqJk1ZMxUNpqntNwaWcugrBjAiHlqqRiVk= -gopkg.in/check.v1 v1.0.0-20201130134442-10cb98267c6c/go.mod h1:JHkPIbrfpd72SG/EVd6muEfDQjcINNoR0C8j2r3qZ4Q= gopkg.in/cheggaaa/pb.v1 v1.0.25/go.mod h1:V/YB90LKu/1FcN3WVnfiiE5oMCibMjukxqG/qStrOgw= gopkg.in/cheggaaa/pb.v1 v1.0.27/go.mod h1:V/YB90LKu/1FcN3WVnfiiE5oMCibMjukxqG/qStrOgw= gopkg.in/errgo.v2 v2.1.0/go.mod h1:hNsd1EY+bozCKY1Ytp96fpM3vjJbqLJn88ws8XvfDNI= @@ -1667,7 +1629,6 @@ 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/v3 v3.5.0 h1:Ljk6PdHdOhAb5aDMWXjDLMMhph+BpztA4v1QdqEW2eY= -gotest.tools/v3 v3.5.0/go.mod h1:isy3WKz7GK6uNw/sbHzfKBLvlvXwUyV06n6brMxxopU= 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= From 2a9c39b45bd4139a3bdba23c4fc621b18344961b Mon Sep 17 00:00:00 2001 From: Philip Offtermatt Date: Thu, 30 Nov 2023 13:13:58 +0100 Subject: [PATCH 068/111] Start linting --- .github/workflows/test.yml | 10 ++++---- Makefile | 14 +++++------ tests/mbt/driver/core.go | 18 ++++++-------- tests/mbt/driver/mbt_test.go | 31 ++++++++++++------------ tests/mbt/driver/model_viewer.go | 2 +- tests/mbt/driver/setup.go | 35 ++++++++++++++------------- testutil/simibc/ordered_outbox.go | 2 +- x/ccv/provider/types/proposal_test.go | 2 +- 8 files changed, 56 insertions(+), 58 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index efd2860398..3d5ac1fab6 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -110,19 +110,19 @@ jobs: **/go.sum **/Makefile Makefile - - name: difference tests + - name: mbt tests if: env.GIT_DIFF run: | - make test-difference-cov + make test-mbt-cov - uses: actions/upload-artifact@v3 if: env.GIT_DIFF with: - name: "${{ github.sha }}-difference-coverage" - path: ./difference-profile.out + name: "${{ github.sha }}-mbt-coverage" + path: ./mbt-profile.out repo-analysis: runs-on: ubuntu-latest - needs: [tests, test-integration, test-difference] + needs: [tests, test-integration, test-mbt] steps: - uses: actions/checkout@v4 - uses: technote-space/get-diff-action@v6.1.2 diff --git a/Makefile b/Makefile index 33420f4c4e..4232ca8a30 100644 --- a/Makefile +++ b/Makefile @@ -10,10 +10,10 @@ install: go.sum go install $(BUILD_FLAGS) ./cmd/interchain-security-sd # run all tests: unit, integration, diff, and E2E -test: test-unit test-integration test-difference test-e2e +test: test-unit test-integration test-mbt test-e2e # shortcut for local development -test-dev: test-unit test-integration test-difference +test-dev: test-unit test-integration test-mbt # run unit tests test-unit: @@ -29,12 +29,12 @@ test-integration: test-integration-cov: go test ./tests/integration/... -timeout 30m -coverpkg=./... -coverprofile=integration-profile.out -covermode=atomic -# run difference tests -test-difference: - go test ./tests/difference/... -timeout 30m +# run mbt tests +test-mbt: + go test ./tests/mbt/... -timeout 30m -test-difference-cov: - go test ./tests/difference/... -timeout 30m -coverpkg=./... -coverprofile=difference-profile.out -covermode=atomic +test-mbt-cov: + go test ./tests/mbt/... -timeout 30m -coverpkg=./... -coverprofile=mbt-profile.out -covermode=atomic # run E2E tests test-e2e: diff --git a/tests/mbt/driver/core.go b/tests/mbt/driver/core.go index aa08737e0e..b17d72b390 100644 --- a/tests/mbt/driver/core.go +++ b/tests/mbt/driver/core.go @@ -7,6 +7,7 @@ import ( "testing" "time" + channeltypes "github.com/cosmos/ibc-go/v7/modules/core/04-channel/types" tendermint "github.com/cosmos/ibc-go/v7/modules/light-clients/07-tendermint" ibctesting "github.com/cosmos/ibc-go/v7/testing" "github.com/stretchr/testify/require" @@ -15,20 +16,17 @@ import ( slashingkeeper "github.com/cosmos/cosmos-sdk/x/slashing/keeper" stakingkeeper "github.com/cosmos/cosmos-sdk/x/staking/keeper" stakingtypes "github.com/cosmos/cosmos-sdk/x/staking/types" - consumertypes "github.com/cosmos/interchain-security/v3/x/ccv/consumer/types" - providertypes "github.com/cosmos/interchain-security/v3/x/ccv/provider/types" + + abcitypes "github.com/cometbft/cometbft/abci/types" + cmttypes "github.com/cometbft/cometbft/types" appConsumer "github.com/cosmos/interchain-security/v3/app/consumer" appProvider "github.com/cosmos/interchain-security/v3/app/provider" - simibc "github.com/cosmos/interchain-security/v3/testutil/simibc" consumerkeeper "github.com/cosmos/interchain-security/v3/x/ccv/consumer/keeper" + consumertypes "github.com/cosmos/interchain-security/v3/x/ccv/consumer/types" providerkeeper "github.com/cosmos/interchain-security/v3/x/ccv/provider/keeper" - - abcitypes "github.com/cometbft/cometbft/abci/types" - cmttypes "github.com/cometbft/cometbft/types" - - channeltypes "github.com/cosmos/ibc-go/v7/modules/core/04-channel/types" + providertypes "github.com/cosmos/interchain-security/v3/x/ccv/provider/types" ) // Define a new type for ChainIds to be more explicit @@ -262,7 +260,7 @@ func (s *Driver) updateClient(chain ChainId) error { // packetQueue returns the queued packet sfrom sender to receiver, // where either sender or receiver must be the provider. -func (s *Driver) packetQueue(sender ChainId, receiver ChainId) []simibc.Packet { +func (s *Driver) packetQueue(sender, receiver ChainId) []simibc.Packet { var path *simibc.RelayedPath if sender == P { path = s.path(receiver) @@ -405,7 +403,7 @@ func (s *Driver) getChainStateString(chain ChainId) string { } // endAndBeginBlock ends the current block and begins a new one. -// After comitting, it processes any packets that have been sent by the chain, +// After committing, it processes any packets that have been sent by the chain, // as witnessed by events, and adds them to the correct paths. // It also updates the client header on the paths // that involve the chain. diff --git a/tests/mbt/driver/mbt_test.go b/tests/mbt/driver/mbt_test.go index 413eb6e18f..35626e200a 100644 --- a/tests/mbt/driver/mbt_test.go +++ b/tests/mbt/driver/mbt_test.go @@ -10,15 +10,16 @@ import ( "testing" "time" - cmttypes "github.com/cometbft/cometbft/types" - sdktypes "github.com/cosmos/cosmos-sdk/types" - providertypes "github.com/cosmos/interchain-security/v3/x/ccv/provider/types" - "github.com/kylelemons/godebug/pretty" - + ibctesting "github.com/cosmos/ibc-go/v7/testing" "github.com/informalsystems/itf-go/itf" + "github.com/kylelemons/godebug/pretty" "github.com/stretchr/testify/require" - ibctesting "github.com/cosmos/ibc-go/v7/testing" + sdktypes "github.com/cosmos/cosmos-sdk/types" + + cmttypes "github.com/cometbft/cometbft/types" + + providertypes "github.com/cosmos/interchain-security/v3/x/ccv/provider/types" ) const verbose = false @@ -481,25 +482,23 @@ func CompareTimes( consumers []string, currentModelState map[string]itf.Expr, timeOffset time.Time, -) { +) (err error) { providerRunningTimestamp := RunningTime(currentModelState, "provider") actualRunningProviderTime := driver.runningTime("provider") - require.Equal(t, - providerRunningTimestamp, - actualRunningProviderTime.Unix()-timeOffset.Unix(), - "Running times do not match for provider") + if providerRunningTimestamp != actualRunningProviderTime.Unix()-timeOffset.Unix() { + return fmt.Errorf("Running times do not match for provider") + } for _, chain := range consumers { modelRunningTimestamp := RunningTime(currentModelState, chain) actualRunningChainTime := driver.runningTime(ChainId(chain)) - require.Equal(t, - modelRunningTimestamp, - actualRunningChainTime.Unix()-timeOffset.Unix(), - "Running times do not match for chain %v", chain) - + if modelRunningTimestamp != actualRunningChainTime.Unix()-timeOffset.Unix() { + return fmt.Errorf("Running times do not match for chain %v", chain) + } } + return nil } // CompareValSet compares the validator set in the model to the validator set in the system. diff --git a/tests/mbt/driver/model_viewer.go b/tests/mbt/driver/model_viewer.go index b2167febbb..c1a4bfd7e8 100644 --- a/tests/mbt/driver/model_viewer.go +++ b/tests/mbt/driver/model_viewer.go @@ -48,7 +48,7 @@ func RunningTime(curStateExpr itf.MapExprType, chain string) int64 { // PacketQueue returns the queued packets between sender and receiver. // Either sender or receiver need to be the provider. -func PacketQueue(curStateExpr itf.MapExprType, sender string, receiver string) itf.ListExprType { +func PacketQueue(curStateExpr itf.MapExprType, sender, receiver string) itf.ListExprType { if sender == Provider { packetQueue := ProviderState(curStateExpr)["outstandingPacketsToConsumer"].Value.(itf.MapExprType)[receiver] if packetQueue.Value == nil { diff --git a/tests/mbt/driver/setup.go b/tests/mbt/driver/setup.go index c72227801d..021f48cbc2 100644 --- a/tests/mbt/driver/setup.go +++ b/tests/mbt/driver/setup.go @@ -6,34 +6,35 @@ import ( "testing" "time" - "cosmossdk.io/math" - abcitypes "github.com/cometbft/cometbft/abci/types" - cmtproto "github.com/cometbft/cometbft/proto/tendermint/types" - cmttypes "github.com/cometbft/cometbft/types" - "github.com/cosmos/cosmos-sdk/baseapp" - codectypes "github.com/cosmos/cosmos-sdk/codec/types" - cryptocodec "github.com/cosmos/cosmos-sdk/crypto/codec" - "github.com/cosmos/cosmos-sdk/crypto/keys/secp256k1" - sdk "github.com/cosmos/cosmos-sdk/types" clienttypes "github.com/cosmos/ibc-go/v7/modules/core/02-client/types" + channeltypes "github.com/cosmos/ibc-go/v7/modules/core/04-channel/types" commitmenttypes "github.com/cosmos/ibc-go/v7/modules/core/23-commitment/types" ibctmtypes "github.com/cosmos/ibc-go/v7/modules/light-clients/07-tendermint" tendermint "github.com/cosmos/ibc-go/v7/modules/light-clients/07-tendermint" - icstestingutils "github.com/cosmos/interchain-security/v3/testutil/ibc_testing" - "github.com/cosmos/interchain-security/v3/testutil/integration" - simibc "github.com/cosmos/interchain-security/v3/testutil/simibc" + ibctesting "github.com/cosmos/ibc-go/v7/testing" "github.com/stretchr/testify/require" - ccv "github.com/cosmos/interchain-security/v3/x/ccv/types" + "cosmossdk.io/math" + "github.com/cosmos/cosmos-sdk/baseapp" + codectypes "github.com/cosmos/cosmos-sdk/codec/types" + cryptocodec "github.com/cosmos/cosmos-sdk/crypto/codec" + "github.com/cosmos/cosmos-sdk/crypto/keys/secp256k1" + sdk "github.com/cosmos/cosmos-sdk/types" authtypes "github.com/cosmos/cosmos-sdk/x/auth/types" banktypes "github.com/cosmos/cosmos-sdk/x/bank/types" stakingtypes "github.com/cosmos/cosmos-sdk/x/staking/types" - channeltypes "github.com/cosmos/ibc-go/v7/modules/core/04-channel/types" + + abcitypes "github.com/cometbft/cometbft/abci/types" + cmtproto "github.com/cometbft/cometbft/proto/tendermint/types" + cmttypes "github.com/cometbft/cometbft/types" + + icstestingutils "github.com/cosmos/interchain-security/v3/testutil/ibc_testing" + "github.com/cosmos/interchain-security/v3/testutil/integration" + simibc "github.com/cosmos/interchain-security/v3/testutil/simibc" consumertypes "github.com/cosmos/interchain-security/v3/x/ccv/consumer/types" + ccv "github.com/cosmos/interchain-security/v3/x/ccv/types" ccvtypes "github.com/cosmos/interchain-security/v3/x/ccv/types" - - ibctesting "github.com/cosmos/ibc-go/v7/testing" ) const ( @@ -309,7 +310,7 @@ func newChain( // Creates a path for cross-chain validation from the consumer to the provider and configures the channel config of the endpoints // as well as the clients. // this function stops when there is an initialized, ready-to-relay channel between the provider and consumer. -func (s *Driver) ConfigureNewPath(consumerChain *ibctesting.TestChain, providerChain *ibctesting.TestChain, params ModelParams, lastProviderHeader *ibctmtypes.Header) *ibctesting.Path { +func (s *Driver) ConfigureNewPath(consumerChain, providerChain *ibctesting.TestChain, params ModelParams, lastProviderHeader *ibctmtypes.Header) *ibctesting.Path { consumerChainId := ChainId(consumerChain.ChainID) path := ibctesting.NewPath(consumerChain, providerChain) diff --git a/testutil/simibc/ordered_outbox.go b/testutil/simibc/ordered_outbox.go index b107cda7d8..fdeb449962 100644 --- a/testutil/simibc/ordered_outbox.go +++ b/testutil/simibc/ordered_outbox.go @@ -3,7 +3,7 @@ package simibc import channeltypes "github.com/cosmos/ibc-go/v7/modules/core/04-channel/types" // The number of blocks to wait before a packet or ack is available for delivery -// after it has been comitted on the chain. +// after it has been committed on the chain. // For example, if DelayPeriodBlocks is 0 and a packet p was sent at height h // (i.e. the chain has produced a header height h) // the packet can immediately be received. diff --git a/x/ccv/provider/types/proposal_test.go b/x/ccv/provider/types/proposal_test.go index d8f10766dd..532831b0a6 100644 --- a/x/ccv/provider/types/proposal_test.go +++ b/x/ccv/provider/types/proposal_test.go @@ -7,7 +7,7 @@ import ( clienttypes "github.com/cosmos/ibc-go/v7/modules/core/02-client/types" ibctmtypes "github.com/cosmos/ibc-go/v7/modules/light-clients/07-tendermint" - "github.com/golang/protobuf/proto" //nolint:staticcheck // see: https://github.com/cosmos/interchain-security/issues/236 + "github.com/golang/protobuf/proto" "github.com/stretchr/testify/require" "github.com/cosmos/cosmos-sdk/codec" From b533d1ff802609c127d779ce5da598a45df4aa05 Mon Sep 17 00:00:00 2001 From: Philip Offtermatt Date: Thu, 30 Nov 2023 14:13:45 +0100 Subject: [PATCH 069/111] Lint files --- .../proposals_whitelisting_test.go | 3 +- tests/mbt/driver/core.go | 121 +----------------- tests/mbt/driver/mbt_test.go | 21 ++- tests/mbt/driver/setup.go | 30 +++-- testutil/ibc_testing/generic_setup.go | 4 +- testutil/integration/validators.go | 25 ++-- x/ccv/provider/types/proposal_test.go | 2 +- 7 files changed, 55 insertions(+), 151 deletions(-) diff --git a/app/consumer-democracy/proposals_whitelisting_test.go b/app/consumer-democracy/proposals_whitelisting_test.go index d0e5a7742d..a4b43cdffe 100644 --- a/app/consumer-democracy/proposals_whitelisting_test.go +++ b/app/consumer-democracy/proposals_whitelisting_test.go @@ -12,7 +12,8 @@ import ( ) func TestDemocracyGovernanceWhitelistingKeys(t *testing.T) { - _, valUpdates, _ := testutil.CreateValidators(t, 4) + _, valUpdates, _, err := testutil.CreateValidators(4) + require.NoError(t, err) ibctesting.DefaultTestingAppInit = icstestingutils.DemocracyConsumerAppIniter(valUpdates) chain := ibctesting.NewTestChain(t, ibctesting.NewCoordinator(t, 0), "test") paramKeeper := chain.App.(*appConsumer.App).ParamsKeeper diff --git a/tests/mbt/driver/core.go b/tests/mbt/driver/core.go index b17d72b390..417a286e77 100644 --- a/tests/mbt/driver/core.go +++ b/tests/mbt/driver/core.go @@ -13,7 +13,6 @@ import ( "github.com/stretchr/testify/require" sdk "github.com/cosmos/cosmos-sdk/types" - slashingkeeper "github.com/cosmos/cosmos-sdk/x/slashing/keeper" stakingkeeper "github.com/cosmos/cosmos-sdk/x/staking/keeper" stakingtypes "github.com/cosmos/cosmos-sdk/x/staking/types" @@ -87,19 +86,10 @@ func (b *Driver) providerStakingKeeper() stakingkeeper.Keeper { return *b.providerChain().App.(*appProvider.App).StakingKeeper } -func (b *Driver) providerSlashingKeeper() slashingkeeper.Keeper { - return b.providerChain().App.(*appProvider.App).SlashingKeeper -} - func (b *Driver) consumerKeeper(chain ChainId) consumerkeeper.Keeper { return b.chain(chain).App.(*appConsumer.App).ConsumerKeeper } -// height returns the height of the current header of chain -func (s *Driver) height(chain ChainId) int64 { - return s.chain(chain).CurrentHeader.GetHeight() -} - // runningTime returns the timestamp of the current header of chain func (s *Driver) runningTime(chain ChainId) time.Time { testChain := s.chain(chain) @@ -112,15 +102,6 @@ func (s *Driver) lastTime(chain ChainId) time.Time { return testChain.LastHeader.Header.Time } -func (s *Driver) allTimes() map[ChainId]time.Time { - chains := s.coordinator.Chains - times := make(map[ChainId]time.Time, len(chains)) - for _, chain := range chains { - times[ChainId(chain.ChainID)] = chain.CurrentHeader.Time - } - return times -} - // delegator retrieves the address for the delegator account func (s *Driver) delegator() sdk.AccAddress { return s.providerChain().SenderAccount.GetAddress() @@ -131,25 +112,12 @@ func (s *Driver) validator(i int64) sdk.ValAddress { return sdk.ValAddress(s.validators[i].Address) } -// consAddr returns the ConsAdd for the validator with id (ix) i -func (s *Driver) consAddr(i int64) sdk.ConsAddress { - return sdk.ConsAddress(s.validator(i)) -} - -// isJailed returns the jail status of validator with id (ix) i -func (s *Driver) isJailed(i int64) bool { - val, found := s.providerStakingKeeper().GetValidator(s.ctx(P), s.validator(i)) - - require.True(s.t, found, "GetValidator(%v) -> !found", s.validator(i)) - return val.IsJailed() -} - // consumerPower returns the power on the consumer chain chain for // validator with id (ix) i func (s *Driver) consumerPower(i int64, chain ChainId) (int64, error) { v, found := s.consumerKeeper(chain).GetCCValidator(s.ctx(chain), s.validator(i)) if !found { - return 0, fmt.Errorf("GetCCValidator(%v) -> !found", s.validator(i)) + return 0, fmt.Errorf("validator %v not found", s.validator(i)) } return v.Power, nil } @@ -159,41 +127,12 @@ func (s *Driver) consumerPower(i int64, chain ChainId) (int64, error) { func (s *Driver) providerPower(i int64) (int64, error) { v, found := s.providerStakingKeeper().GetValidator(s.ctx(P), s.validator(i)) if !found { - return 0, fmt.Errorf("Validator with id %v not found on provider!", i) + return 0, fmt.Errorf("validator with id %v not found on provider", i) } else { return v.BondedTokens().Int64(), nil } } -// delegation returns the number of delegated tokens in the delegation from -// the delegator account to the validator with id (ix) i -func (s *Driver) delegation(i int64) int64 { - d, found := s.providerStakingKeeper().GetDelegation(s.ctx(P), s.delegator(), s.validator(i)) - require.True(s.t, found, "GetDelegation(%v) -> !found", s.validator(i)) - return d.Shares.TruncateInt64() -} - -// validatorStatus returns the validator status for validator with id (ix) i -// on the provider chain, and also whether the validator was found. -// If the validator was not found, the status is returned as Unbonded. -func (s *Driver) validatorStatus(i int64) (stakingtypes.BondStatus, bool) { - v, found := s.providerStakingKeeper().GetValidator(s.ctx(P), s.validator(i)) - if !found { - return stakingtypes.Unbonded, false - } - return v.GetStatus(), true -} - -// providerTokens returns the number of tokens that the validator with -// id (ix) i has delegated to it in total on the provider chain -func (s *Driver) providerTokens(i int64) int64 { - v, found := s.providerStakingKeeper().GetValidator(s.ctx(P), s.validator(i)) - if !found { - return 0 - } - return v.Tokens.Int64() -} - func (s *Driver) providerValidatorSet() []stakingtypes.Validator { return s.providerStakingKeeper().GetAllValidators(s.ctx(P)) } @@ -202,13 +141,6 @@ func (s *Driver) consumerValidatorSet(chain ChainId) []consumertypes.CrossChainV return s.consumerKeeper(chain).GetAllCCValidator(s.ctx(chain)) } -// delegatorBalance returns the balance of the delegator account -func (s *Driver) delegatorBalance() int64 { - d := s.delegator() - bal := s.providerChain().App.(*appProvider.App).BankKeeper.GetBalance(s.ctx(P), d, sdk.DefaultBondDenom) - return bal.Amount.Int64() -} - // delegate delegates amt tokens to validator val func (s *Driver) delegate(val, amt int64) { providerStaking := s.providerStakingKeeper() @@ -236,28 +168,6 @@ func (s *Driver) undelegate(val, amt int64) { providerStaking.GetAllDelegations(s.ctx(P)) } -// consumerSlash simulates a slash event occurring on the consumer chain. -// It can be for a downtime or doublesign. -func (s *Driver) consumerSlash(val sdk.ConsAddress, h int64, isDowntime bool, chain ChainId) { - kind := stakingtypes.Infraction_INFRACTION_DOUBLE_SIGN - if isDowntime { - kind = stakingtypes.Infraction_INFRACTION_DOWNTIME - } - ctx := s.ctx(chain) - before := len(ctx.EventManager().Events()) - s.consumerKeeper(chain).SlashWithInfractionReason(ctx, val, h, 0, sdk.Dec{}, kind) - // consumer module emits packets on slash, so these must be collected. - evts := ctx.EventManager().Events() - packets := simibc.ParsePacketsFromEvents(evts[before:]) - if len(packets) > 0 { - s.path(chain).Outboxes.AddPacket(string(chain), packets[0]) - } -} - -func (s *Driver) updateClient(chain ChainId) error { - return s.path(chain).UpdateClient(string(chain), false) -} - // packetQueue returns the queued packet sfrom sender to receiver, // where either sender or receiver must be the provider. func (s *Driver) packetQueue(sender, receiver ChainId) []simibc.Packet { @@ -277,14 +187,6 @@ func (s *Driver) packetQueue(sender, receiver ChainId) []simibc.Packet { } } -func (s *Driver) getPacketsFromProviderToConsumer(consumer ChainId) []simibc.Packet { - return s.path(consumer).Outboxes.OutboxPackets[string(consumer)] -} - -func (s *Driver) getPacketsFromConsumerToProvider(consumer ChainId) []simibc.Packet { - return s.path(consumer).Outboxes.OutboxPackets[P] -} - func (s *Driver) getStateString() string { var state strings.Builder @@ -466,12 +368,6 @@ func (s *Driver) setTime(chain ChainId, newTime time.Time) { testChain.App.BeginBlock(abcitypes.RequestBeginBlock{Header: testChain.CurrentHeader}) } -func (s *Driver) setAllTimes(newTimes map[ChainId]time.Time) { - for chain, newTime := range newTimes { - s.setTime(chain, newTime) - } -} - // DeliverPacketToConsumer delivers a packet from the provider to the given consumer recipient. // It updates the client before delivering the packet. // Since the channel is ordered, the packet that is delivered is the first packet in the outbox. @@ -491,19 +387,15 @@ func (s *Driver) DeliverPacketFromConsumer(sender ChainId, expectError bool) { func (s *Driver) DeliverAcks() { for _, chain := range s.runningConsumers() { path := s.path(ChainId(chain.ChainId)) - path.DeliverAcks(string(path.Path.EndpointA.Chain.ChainID), math.MaxInt) - path.DeliverAcks(string(path.Path.EndpointB.Chain.ChainID), math.MaxInt) + path.DeliverAcks(path.Path.EndpointA.Chain.ChainID, math.MaxInt) + path.DeliverAcks(path.Path.EndpointB.Chain.ChainID, math.MaxInt) } } // stopConsumer stops a given consumer chain. -func (s *Driver) stopConsumer(chain ChainId) { +func (s *Driver) stopConsumer(chain ChainId) error { // stop the consumer chain on the provider - s.providerKeeper().StopConsumerChain(s.providerCtx(), string(chain), true) - // delete the chain from the coordinator - delete(s.coordinator.Chains, string(chain)) - // delete the path from the driver - delete(s.simibcs, chain) + return s.providerKeeper().StopConsumerChain(s.providerCtx(), string(chain), true) } // newDriver creates a new Driver object. @@ -511,6 +403,7 @@ func (s *Driver) stopConsumer(chain ChainId) { // The caller must call setupChains to start the chains and // fully populate the Driver. func newDriver(t *testing.T, validators []*cmttypes.Validator, valNames []string) *Driver { + t.Helper() t.Log("Creating coordinator") coordinator := ibctesting.NewCoordinator(t, 0) // start without chains, which we add later diff --git a/tests/mbt/driver/mbt_test.go b/tests/mbt/driver/mbt_test.go index 35626e200a..3571d861cd 100644 --- a/tests/mbt/driver/mbt_test.go +++ b/tests/mbt/driver/mbt_test.go @@ -71,6 +71,7 @@ func TestMBT(t *testing.T) { } func RunItfTrace(t *testing.T, path string) { + t.Helper() t.Logf("🟡 Testing trace %s", path) // Load trace @@ -140,7 +141,8 @@ func RunItfTrace(t *testing.T, path string) { } // initialValSet has the right vals, but not yet the right powers - valSet, addressMap, signers := CreateValSet(t, initialValSet) + valSet, addressMap, signers, err := CreateValSet(initialValSet) + require.NoError(t, err, "Error creating validator set") // get a slice of validators in the right order nodes := make([]*cmttypes.Validator, len(valNames)) @@ -249,7 +251,10 @@ func RunItfTrace(t *testing.T, path string) { // stop consumers for _, consumer := range consumersToStop { - driver.providerKeeper().StopConsumerChain(driver.providerCtx(), consumer.Value.(string), true) + err := driver.stopConsumer(ChainId(consumer.Value.(string))) + if err != nil { + log.Fatalf("Error stopping consumer %v: %v", consumer, err) + } } // reset the times for the consumers that were not stopped or started just now @@ -264,7 +269,7 @@ func RunItfTrace(t *testing.T, path string) { if len(consumersToStart) > 0 && consumer.ChainId == consumersToStart[len(consumersToStart)-1].Value.(string) { continue } - consumerChainId := string(consumer.ChainId) + consumerChainId := consumer.ChainId driver.path(ChainId(consumerChainId)).AddClientHeader(Provider, driver.providerHeader()) err := driver.path(ChainId(consumerChainId)).UpdateClient(consumerChainId, false) @@ -363,7 +368,7 @@ func RunItfTrace(t *testing.T, path string) { CompareValidatorSets(t, driver, currentModelState, actualRunningConsumers, index) // check times - sanity check that the block times match the ones from the model - CompareTimes(t, driver, actualRunningConsumers, currentModelState, timeOffset) + CompareTimes(driver, actualRunningConsumers, currentModelState, timeOffset) // check sent packets: we check that the package queues in the model and the system have the same length. for _, consumer := range actualRunningConsumers { @@ -380,6 +385,7 @@ func RunItfTrace(t *testing.T, path string) { } func CompareValidatorSets(t *testing.T, driver *Driver, currentModelState map[string]itf.Expr, consumers []string, index int) { + t.Helper() modelValSet := ValidatorSet(currentModelState, "provider") curValSet := driver.providerValidatorSet() @@ -387,7 +393,7 @@ func CompareValidatorSets(t *testing.T, driver *Driver, currentModelState map[st for _, val := range curValSet { valName := val.Description.Moniker - actualValSet[valName] = int64(val.Tokens.Int64()) + actualValSet[valName] = val.Tokens.Int64() } require.NoError(t, CompareValSet(modelValSet, actualValSet), "Validator sets do not match") @@ -411,7 +417,7 @@ func CompareValidatorSets(t *testing.T, driver *Driver, currentModelState map[st providerVal, found := driver.providerStakingKeeper().GetValidatorByConsAddr(driver.providerCtx(), providerConsAddr.Address) require.True(t, found, "Error getting provider validator") - consumerCurValSet[providerVal.GetMoniker()] = int64(val.Power) + consumerCurValSet[providerVal.GetMoniker()] = val.Power } for val, power := range modelValSet { _ = val @@ -432,6 +438,7 @@ func ComparePacketQueues( consumer string, timeOffset time.Time, ) { + t.Helper() ComparePacketQueue(t, driver, currentModelState, Provider, consumer, timeOffset) ComparePacketQueue(t, driver, currentModelState, consumer, Provider, timeOffset) } @@ -444,6 +451,7 @@ func ComparePacketQueue( receiver string, timeOffset time.Time, ) { + t.Helper() modelSenderQueue := PacketQueue(currentModelState, sender, receiver) actualSenderQueue := driver.packetQueue(ChainId(sender), ChainId(receiver)) @@ -477,7 +485,6 @@ func ComparePacketQueue( // We only compare down to seconds, because the model and system will differ // on the order of nanoseconds. func CompareTimes( - t *testing.T, driver *Driver, consumers []string, currentModelState map[string]itf.Expr, diff --git a/tests/mbt/driver/setup.go b/tests/mbt/driver/setup.go index 021f48cbc2..24b2a36678 100644 --- a/tests/mbt/driver/setup.go +++ b/tests/mbt/driver/setup.go @@ -10,7 +10,6 @@ import ( channeltypes "github.com/cosmos/ibc-go/v7/modules/core/04-channel/types" commitmenttypes "github.com/cosmos/ibc-go/v7/modules/core/23-commitment/types" ibctmtypes "github.com/cosmos/ibc-go/v7/modules/light-clients/07-tendermint" - tendermint "github.com/cosmos/ibc-go/v7/modules/light-clients/07-tendermint" ibctesting "github.com/cosmos/ibc-go/v7/testing" "github.com/stretchr/testify/require" @@ -33,7 +32,6 @@ import ( "github.com/cosmos/interchain-security/v3/testutil/integration" simibc "github.com/cosmos/interchain-security/v3/testutil/simibc" consumertypes "github.com/cosmos/interchain-security/v3/x/ccv/consumer/types" - ccv "github.com/cosmos/interchain-security/v3/x/ccv/types" ccvtypes "github.com/cosmos/interchain-security/v3/x/ccv/types" ) @@ -58,9 +56,12 @@ var ( // - a validator set // - a map from node names to validator objects and // - a map from validator addresses to private validators (signers) -func CreateValSet(t *testing.T, initialValidatorSet map[string]int64) (*cmttypes.ValidatorSet, map[string]*cmttypes.Validator, map[string]cmttypes.PrivValidator) { +func CreateValSet(initialValidatorSet map[string]int64) (*cmttypes.ValidatorSet, map[string]*cmttypes.Validator, map[string]cmttypes.PrivValidator, error) { // create a valSet and signers, but the voting powers will not yet be right - valSet, _, signers := integration.CreateValidators(t, len(initialValidatorSet)) + valSet, _, signers, err := integration.CreateValidators(len(initialValidatorSet)) + if err != nil { + return nil, nil, nil, err + } // create a map from validator names to validators valMap := make(map[string]*cmttypes.Validator) @@ -87,7 +88,7 @@ func CreateValSet(t *testing.T, initialValidatorSet map[string]int64) (*cmttypes // override the valSet by creating a new one with the right voting powers valSet = cmttypes.NewValidatorSet(vals) - return valSet, valMap, signers + return valSet, valMap, signers, nil } func getAppBytesAndSenders( @@ -251,6 +252,7 @@ func newChain( nodes []*cmttypes.Validator, valNames []string, ) *ibctesting.TestChain { + t.Helper() app, genesis := appInit() baseapp.SetChainID(chainID)(app.GetBaseApp()) @@ -310,7 +312,7 @@ func newChain( // Creates a path for cross-chain validation from the consumer to the provider and configures the channel config of the endpoints // as well as the clients. // this function stops when there is an initialized, ready-to-relay channel between the provider and consumer. -func (s *Driver) ConfigureNewPath(consumerChain, providerChain *ibctesting.TestChain, params ModelParams, lastProviderHeader *ibctmtypes.Header) *ibctesting.Path { +func (s *Driver) ConfigureNewPath(consumerChain, providerChain *ibctesting.TestChain, params ModelParams) *ibctesting.Path { consumerChainId := ChainId(consumerChain.ChainID) path := ibctesting.NewPath(consumerChain, providerChain) @@ -388,7 +390,7 @@ func (s *Driver) ConfigureNewPath(consumerChain, providerChain *ibctesting.TestC // the same time and height. This is the starting point for all our // data driven testing. lastConsumerHeader, _ := simibc.EndBlock(consumerChain, func() {}) - lastProviderHeader, _ = simibc.EndBlock(providerChain, func() {}) + lastProviderHeader, _ := simibc.EndBlock(providerChain, func() {}) // Get ready to update clients. simibc.BeginBlock(providerChain, 5) @@ -404,7 +406,7 @@ func (s *Driver) ConfigureNewPath(consumerChain, providerChain *ibctesting.TestC return path } -func (s *Driver) providerHeader() *tendermint.Header { +func (s *Driver) providerHeader() *ibctmtypes.Header { return s.coordinator.Chains["provider"].LastHeader } @@ -450,7 +452,7 @@ func (s *Driver) setupConsumer( consumerChain := newChain(s.t, params, s.coordinator, icstestingutils.ConsumerAppIniter(initValUpdates), chain, valSet, signers, nodes, valNames) s.coordinator.Chains[chain] = consumerChain - path := s.ConfigureNewPath(consumerChain, providerChain, params, s.providerHeader()) + path := s.ConfigureNewPath(consumerChain, providerChain, params) s.simibcs[ChainId(chain)] = simibc.MakeRelayedPath(s.t, path) } @@ -458,20 +460,20 @@ func createConsumerGenesis(modelParams ModelParams, providerChain *ibctesting.Te providerConsState := providerChain.LastHeader.ConsensusState() valUpdates := cmttypes.TM2PB.ValidatorUpdates(providerChain.Vals) - params := ccv.NewParams( + params := ccvtypes.NewParams( true, 1000, // ignore distribution "", // ignore distribution "", // ignore distribution modelParams.CcvTimeout[ChainId(consumerClientState.ChainId)], - ccv.DefaultTransferTimeoutPeriod, - ccv.DefaultConsumerRedistributeFrac, - ccv.DefaultHistoricalEntries, + ccvtypes.DefaultTransferTimeoutPeriod, + ccvtypes.DefaultConsumerRedistributeFrac, + ccvtypes.DefaultHistoricalEntries, modelParams.UnbondingPeriodPerChain[ChainId(consumerClientState.ChainId)], "0", // disable soft opt-out []string{}, []string{}, - ccv.DefaultRetryDelayPeriod, + ccvtypes.DefaultRetryDelayPeriod, ) return consumertypes.NewInitialGenesisState(consumerClientState, providerConsState, valUpdates, params) diff --git a/testutil/ibc_testing/generic_setup.go b/testutil/ibc_testing/generic_setup.go index 4b108e8120..11d6c2d817 100644 --- a/testutil/ibc_testing/generic_setup.go +++ b/testutil/ibc_testing/generic_setup.go @@ -7,6 +7,7 @@ import ( clienttypes "github.com/cosmos/ibc-go/v7/modules/core/02-client/types" ibctesting "github.com/cosmos/ibc-go/v7/testing" + "github.com/stretchr/testify/require" "github.com/stretchr/testify/suite" sdk "github.com/cosmos/cosmos-sdk/types" @@ -88,7 +89,8 @@ func AddDemocracyConsumer[T testutil.DemocConsumerApp]( s.T().Helper() // generate validators private/public key - valSet, valUpdates, signers := testutil.CreateValidators(s.T(), 4) + valSet, valUpdates, signers, err := testutil.CreateValidators(4) + require.NoError(s.T(), err) ibctesting.DefaultTestingAppInit = appIniter(valUpdates) democConsumer := ibctesting.NewTestChainWithValSet(s.T(), coordinator, democConsumerChainID, valSet, signers) diff --git a/testutil/integration/validators.go b/testutil/integration/validators.go index c8d2decadc..2fca9e5390 100644 --- a/testutil/integration/validators.go +++ b/testutil/integration/validators.go @@ -1,10 +1,6 @@ package integration import ( - "testing" - - "github.com/stretchr/testify/require" - "github.com/cosmos/cosmos-sdk/testutil/mock" "github.com/cometbft/cometbft/abci/types" @@ -12,10 +8,9 @@ import ( tmtypes "github.com/cometbft/cometbft/types" ) -func CreateValidators(t *testing.T, n int) ( - *tmtypes.ValidatorSet, []types.ValidatorUpdate, map[string]tmtypes.PrivValidator, +func CreateValidators(n int) ( + *tmtypes.ValidatorSet, []types.ValidatorUpdate, map[string]tmtypes.PrivValidator, error, ) { - t.Helper() // generate validators private/public key var ( validators []*tmtypes.Validator @@ -24,7 +19,9 @@ func CreateValidators(t *testing.T, n int) ( for i := 0; i < n; i++ { privVal := mock.NewPV() pubKey, err := privVal.GetPubKey() - require.NoError(t, err) + if err != nil { + return nil, nil, nil, err + } val := tmtypes.NewValidator(pubKey, 1) validators = append(validators, val) signersByAddress[pubKey.Address().String()] = privVal @@ -33,18 +30,20 @@ func CreateValidators(t *testing.T, n int) ( // Note that the validators are sorted by voting power // or, if equal, by address lexical order valSet := tmtypes.NewValidatorSet(validators) - return valSet, ToValidatorUpdates(t, valSet), signersByAddress + valUpdates, err := ToValidatorUpdates(valSet) + return valSet, valUpdates, signersByAddress, err } -func ToValidatorUpdates(t *testing.T, valSet *tmtypes.ValidatorSet) (valUpdates []types.ValidatorUpdate) { - t.Helper() +func ToValidatorUpdates(valSet *tmtypes.ValidatorSet) (valUpdates []types.ValidatorUpdate, err error) { for _, val := range valSet.Validators { protoPubKey, err := tmencoding.PubKeyToProto(val.PubKey) - require.NoError(t, err) valUpdates = append(valUpdates, types.ValidatorUpdate{ PubKey: protoPubKey, Power: val.VotingPower, }) + if err != nil { + return nil, err + } } - return + return valUpdates, nil } diff --git a/x/ccv/provider/types/proposal_test.go b/x/ccv/provider/types/proposal_test.go index 532831b0a6..35642c3d6a 100644 --- a/x/ccv/provider/types/proposal_test.go +++ b/x/ccv/provider/types/proposal_test.go @@ -7,7 +7,7 @@ import ( clienttypes "github.com/cosmos/ibc-go/v7/modules/core/02-client/types" ibctmtypes "github.com/cosmos/ibc-go/v7/modules/light-clients/07-tendermint" - "github.com/golang/protobuf/proto" + "github.com/golang/protobuf/proto" "github.com/stretchr/testify/require" "github.com/cosmos/cosmos-sdk/codec" From 4c205f6485883cb93cd5412b2944cd01e60df8b5 Mon Sep 17 00:00:00 2001 From: Philip Offtermatt Date: Thu, 30 Nov 2023 14:14:24 +0100 Subject: [PATCH 070/111] Add nolint instruction from main --- x/ccv/provider/types/proposal_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/x/ccv/provider/types/proposal_test.go b/x/ccv/provider/types/proposal_test.go index 35642c3d6a..d8f10766dd 100644 --- a/x/ccv/provider/types/proposal_test.go +++ b/x/ccv/provider/types/proposal_test.go @@ -7,7 +7,7 @@ import ( clienttypes "github.com/cosmos/ibc-go/v7/modules/core/02-client/types" ibctmtypes "github.com/cosmos/ibc-go/v7/modules/light-clients/07-tendermint" - "github.com/golang/protobuf/proto" + "github.com/golang/protobuf/proto" //nolint:staticcheck // see: https://github.com/cosmos/interchain-security/issues/236 "github.com/stretchr/testify/require" "github.com/cosmos/cosmos-sdk/codec" From 4c74bcbaf2f22043ca0f00ec0b873dc0e2373fbd Mon Sep 17 00:00:00 2001 From: Philip Offtermatt Date: Thu, 30 Nov 2023 14:21:01 +0100 Subject: [PATCH 071/111] Do not check for errors for consumer chain stopping --- tests/mbt/driver/generate_traces.sh | 4 ++-- tests/mbt/driver/mbt_test.go | 5 +---- 2 files changed, 3 insertions(+), 6 deletions(-) diff --git a/tests/mbt/driver/generate_traces.sh b/tests/mbt/driver/generate_traces.sh index d37fef776c..4daa07dff5 100755 --- a/tests/mbt/driver/generate_traces.sh +++ b/tests/mbt/driver/generate_traces.sh @@ -4,7 +4,7 @@ echo "Generating long bounded drift traces without invariants" go run ./... -modelPath=../model/ccv_boundeddrift.qnt -step stepBoundedDrift -traceFolder traces/bound_noinv -numTraces 10 -numSteps 500 -numSamples 1 echo "Generating bounded drift traces with maturations" go run ./... -modelPath=../model/ccv_boundeddrift.qnt -step stepBoundedDrift -invariant CanReceiveMaturations -traceFolder traces/bound_mat -numTraces 10 -numSteps 100 -numSamples 20 -echo "Generating synched traces with maturations" +echo "Generating synced traces with maturations" go run ./... -modelPath=../model/ccv_sync.qnt -init initHappy -step stepHappy -invariant CanReceiveMaturations -traceFolder traces/sync_mat -numTraces 10 -numSteps 300 -numSamples 20 -echo "Generating long synched traces without invariants" +echo "Generating long synced traces without invariants" go run ./... -modelPath=../model/ccv_sync.qnt -init initHappy -step stepHappy -traceFolder traces/sync_noinv -numTraces 10 -numSteps 500 -numSamples 1 \ No newline at end of file diff --git a/tests/mbt/driver/mbt_test.go b/tests/mbt/driver/mbt_test.go index 3571d861cd..1871afc60f 100644 --- a/tests/mbt/driver/mbt_test.go +++ b/tests/mbt/driver/mbt_test.go @@ -251,10 +251,7 @@ func RunItfTrace(t *testing.T, path string) { // stop consumers for _, consumer := range consumersToStop { - err := driver.stopConsumer(ChainId(consumer.Value.(string))) - if err != nil { - log.Fatalf("Error stopping consumer %v: %v", consumer, err) - } + driver.stopConsumer(ChainId(consumer.Value.(string))) } // reset the times for the consumers that were not stopped or started just now From fc485752b5bca2ddd8fbaad48c60318e2e8727d5 Mon Sep 17 00:00:00 2001 From: Philip Offtermatt Date: Thu, 30 Nov 2023 14:37:37 +0100 Subject: [PATCH 072/111] Add mbt to makefile and CI --- .github/workflows/test.yml | 10 ++++++++-- Makefile | 4 +++- tests/mbt/driver/generate_traces.sh | 10 +++++----- 3 files changed, 16 insertions(+), 8 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 3d5ac1fab6..0900fcc522 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -89,7 +89,7 @@ jobs: name: "${{ github.sha }}-integration-coverage" path: ./integration-profile.out - test-difference: + test-mbt: runs-on: ubuntu-latest steps: - uses: actions/checkout@v4 @@ -99,6 +99,12 @@ jobs: check-latest: true cache: true cache-dependency-path: go.sum + - uses: actions/setup-node@v4 + with: + node-version: ">= 18" + check-latest: true + cache: 'npm' + - run: npm i @informalsystems/quint -g - uses: technote-space/get-diff-action@v6.1.2 id: git_diff with: @@ -145,7 +151,7 @@ jobs: - uses: actions/download-artifact@v3 if: env.GIT_DIFF with: - name: "${{ github.sha }}-difference-coverage" + name: "${{ github.sha }}-mbt-coverage" continue-on-error: true - name: sonarcloud if: ${{ env.GIT_DIFF && !github.event.pull_request.draft }} diff --git a/Makefile b/Makefile index 4232ca8a30..7f3c9c4b28 100644 --- a/Makefile +++ b/Makefile @@ -31,7 +31,9 @@ test-integration-cov: # run mbt tests test-mbt: - go test ./tests/mbt/... -timeout 30m + cd tests/mbt/driver;\ + sh generate_traces.sh;\ + go test ./... -timeout 30m test-mbt-cov: go test ./tests/mbt/... -timeout 30m -coverpkg=./... -coverprofile=mbt-profile.out -covermode=atomic diff --git a/tests/mbt/driver/generate_traces.sh b/tests/mbt/driver/generate_traces.sh index 4daa07dff5..9a39d98c2b 100755 --- a/tests/mbt/driver/generate_traces.sh +++ b/tests/mbt/driver/generate_traces.sh @@ -1,10 +1,10 @@ echo "Generating bounded drift traces with timeouts" -go run ./... -modelPath=../model/ccv_boundeddrift.qnt -step stepBoundedDrift -invariant CanTimeoutConsumer -traceFolder traces/bound_timeout -numTraces 10 -numSteps 200 -numSamples 200 +go run ./... -modelPath=../model/ccv_boundeddrift.qnt -step stepBoundedDrift -invariant CanTimeoutConsumer -traceFolder traces/bound_timeout -numTraces 2 -numSteps 200 -numSamples 200 echo "Generating long bounded drift traces without invariants" -go run ./... -modelPath=../model/ccv_boundeddrift.qnt -step stepBoundedDrift -traceFolder traces/bound_noinv -numTraces 10 -numSteps 500 -numSamples 1 +go run ./... -modelPath=../model/ccv_boundeddrift.qnt -step stepBoundedDrift -traceFolder traces/bound_noinv -numTraces 2 -numSteps 500 -numSamples 1 echo "Generating bounded drift traces with maturations" -go run ./... -modelPath=../model/ccv_boundeddrift.qnt -step stepBoundedDrift -invariant CanReceiveMaturations -traceFolder traces/bound_mat -numTraces 10 -numSteps 100 -numSamples 20 +go run ./... -modelPath=../model/ccv_boundeddrift.qnt -step stepBoundedDrift -invariant CanReceiveMaturations -traceFolder traces/bound_mat -numTraces 2 -numSteps 100 -numSamples 20 echo "Generating synced traces with maturations" -go run ./... -modelPath=../model/ccv_sync.qnt -init initHappy -step stepHappy -invariant CanReceiveMaturations -traceFolder traces/sync_mat -numTraces 10 -numSteps 300 -numSamples 20 +go run ./... -modelPath=../model/ccv_sync.qnt -init initHappy -step stepHappy -invariant CanReceiveMaturations -traceFolder traces/sync_mat -numTraces 2 -numSteps 300 -numSamples 20 echo "Generating long synced traces without invariants" -go run ./... -modelPath=../model/ccv_sync.qnt -init initHappy -step stepHappy -traceFolder traces/sync_noinv -numTraces 10 -numSteps 500 -numSamples 1 \ No newline at end of file +go run ./... -modelPath=../model/ccv_sync.qnt -init initHappy -step stepHappy -traceFolder traces/sync_noinv -numTraces 2 -numSteps 500 -numSamples 1 \ No newline at end of file From 680b9dfaa18388011c3cb049e70dad7903d2c17a Mon Sep 17 00:00:00 2001 From: Philip Offtermatt Date: Thu, 30 Nov 2023 14:37:56 +0100 Subject: [PATCH 073/111] Move reference to difftests into reference to MBT --- TESTING.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/TESTING.md b/TESTING.md index b86e63c44f..7508e5306b 100644 --- a/TESTING.md +++ b/TESTING.md @@ -35,10 +35,10 @@ make test-unit # run integration tests make test-integration -# run difference tests -make test-difference +# run mbt tests +make test-mbt -# run unit, integration, and difference tests - shortcut for local development +# run unit and integration, and mbt tests - shortcut for local development mate test-dev # run E2E tests From 10ced0ab5a46343d5a61f53d1466a508e87c2905 Mon Sep 17 00:00:00 2001 From: Philip Offtermatt Date: Thu, 30 Nov 2023 15:00:48 +0100 Subject: [PATCH 074/111] Remove cache npm --- .github/workflows/test.yml | 1 - 1 file changed, 1 deletion(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 0900fcc522..e861e48d18 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -103,7 +103,6 @@ jobs: with: node-version: ">= 18" check-latest: true - cache: 'npm' - run: npm i @informalsystems/quint -g - uses: technote-space/get-diff-action@v6.1.2 id: git_diff From 8bce14824f13c6c01faa355bcebd528ee04b3bc7 Mon Sep 17 00:00:00 2001 From: Philip Offtermatt Date: Thu, 30 Nov 2023 15:03:33 +0100 Subject: [PATCH 075/111] Fix test-mbt-cov Make instructions --- Makefile | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Makefile b/Makefile index 7f3c9c4b28..266819c690 100644 --- a/Makefile +++ b/Makefile @@ -36,6 +36,8 @@ test-mbt: go test ./... -timeout 30m test-mbt-cov: + cd tests/mbt/driver;\ + sh generate_traces.sh;\ go test ./tests/mbt/... -timeout 30m -coverpkg=./... -coverprofile=mbt-profile.out -covermode=atomic # run E2E tests From d00a1cc4e5b13b835f075be432bdba7f7f3a3c7f Mon Sep 17 00:00:00 2001 From: Philip Offtermatt Date: Thu, 30 Nov 2023 15:46:53 +0100 Subject: [PATCH 076/111] Generate less traces and fix path for testing --- Makefile | 4 +++- tests/mbt/driver/generate_traces.sh | 10 +++++----- 2 files changed, 8 insertions(+), 6 deletions(-) diff --git a/Makefile b/Makefile index 266819c690..813584a131 100644 --- a/Makefile +++ b/Makefile @@ -33,11 +33,13 @@ test-integration-cov: test-mbt: cd tests/mbt/driver;\ sh generate_traces.sh;\ - go test ./... -timeout 30m + cd ../..;\ + go test ./tests/mbt/... -timeout 30m test-mbt-cov: cd tests/mbt/driver;\ sh generate_traces.sh;\ + cd ../..;\ go test ./tests/mbt/... -timeout 30m -coverpkg=./... -coverprofile=mbt-profile.out -covermode=atomic # run E2E tests diff --git a/tests/mbt/driver/generate_traces.sh b/tests/mbt/driver/generate_traces.sh index 9a39d98c2b..418d7004dc 100755 --- a/tests/mbt/driver/generate_traces.sh +++ b/tests/mbt/driver/generate_traces.sh @@ -1,10 +1,10 @@ echo "Generating bounded drift traces with timeouts" -go run ./... -modelPath=../model/ccv_boundeddrift.qnt -step stepBoundedDrift -invariant CanTimeoutConsumer -traceFolder traces/bound_timeout -numTraces 2 -numSteps 200 -numSamples 200 +go run ./... -modelPath=../model/ccv_boundeddrift.qnt -step stepBoundedDrift -invariant CanTimeoutConsumer -traceFolder traces/bound_timeout -numTraces 1 -numSteps 200 -numSamples 200 echo "Generating long bounded drift traces without invariants" -go run ./... -modelPath=../model/ccv_boundeddrift.qnt -step stepBoundedDrift -traceFolder traces/bound_noinv -numTraces 2 -numSteps 500 -numSamples 1 +go run ./... -modelPath=../model/ccv_boundeddrift.qnt -step stepBoundedDrift -traceFolder traces/bound_noinv -numTraces 1 -numSteps 500 -numSamples 1 echo "Generating bounded drift traces with maturations" -go run ./... -modelPath=../model/ccv_boundeddrift.qnt -step stepBoundedDrift -invariant CanReceiveMaturations -traceFolder traces/bound_mat -numTraces 2 -numSteps 100 -numSamples 20 +go run ./... -modelPath=../model/ccv_boundeddrift.qnt -step stepBoundedDrift -invariant CanReceiveMaturations -traceFolder traces/bound_mat -numTraces 1 -numSteps 100 -numSamples 20 echo "Generating synced traces with maturations" -go run ./... -modelPath=../model/ccv_sync.qnt -init initHappy -step stepHappy -invariant CanReceiveMaturations -traceFolder traces/sync_mat -numTraces 2 -numSteps 300 -numSamples 20 +go run ./... -modelPath=../model/ccv_sync.qnt -init initHappy -step stepHappy -invariant CanReceiveMaturations -traceFolder traces/sync_mat -numTraces 1 -numSteps 300 -numSamples 20 echo "Generating long synced traces without invariants" -go run ./... -modelPath=../model/ccv_sync.qnt -init initHappy -step stepHappy -traceFolder traces/sync_noinv -numTraces 2 -numSteps 500 -numSamples 1 \ No newline at end of file +go run ./... -modelPath=../model/ccv_sync.qnt -init initHappy -step stepHappy -traceFolder traces/sync_noinv -numTraces 1 -numSteps 500 -numSamples 1 \ No newline at end of file From df7ea65610458eaf964bbaf75f7a00b8003f89bf Mon Sep 17 00:00:00 2001 From: Philip Offtermatt Date: Thu, 30 Nov 2023 15:48:16 +0100 Subject: [PATCH 077/111] Fix test path --- Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index 813584a131..c5f817c0d7 100644 --- a/Makefile +++ b/Makefile @@ -33,13 +33,13 @@ test-integration-cov: test-mbt: cd tests/mbt/driver;\ sh generate_traces.sh;\ - cd ../..;\ + cd ../../..;\ go test ./tests/mbt/... -timeout 30m test-mbt-cov: cd tests/mbt/driver;\ sh generate_traces.sh;\ - cd ../..;\ + cd ../../..;\ go test ./tests/mbt/... -timeout 30m -coverpkg=./... -coverprofile=mbt-profile.out -covermode=atomic # run E2E tests From 6b99c028aa38c4713c433525404cc8c82e7c67fc Mon Sep 17 00:00:00 2001 From: Philip Offtermatt Date: Fri, 1 Dec 2023 10:22:29 +0100 Subject: [PATCH 078/111] Archive traces in workflow --- .github/workflows/test.yml | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index e861e48d18..9643c659d3 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -124,7 +124,11 @@ jobs: with: name: "${{ github.sha }}-mbt-coverage" path: ./mbt-profile.out - + - name: Archive MBT traces + uses: actions/upload-artifact@v3 + with: + name: mbt-traces + path: tests/mbt/driver/traces repo-analysis: runs-on: ubuntu-latest needs: [tests, test-integration, test-mbt] From e2ee8a297eb7089f0d50feb850d5725719837be0 Mon Sep 17 00:00:00 2001 From: Philip Offtermatt Date: Fri, 1 Dec 2023 11:22:05 +0100 Subject: [PATCH 079/111] Add long version of MBT to makefile --- .github/workflows/test.yml | 3 ++- Makefile | 7 +++++++ tests/mbt/driver/generate_traces_long.sh | 10 ++++++++++ 3 files changed, 19 insertions(+), 1 deletion(-) create mode 100755 tests/mbt/driver/generate_traces_long.sh diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 9643c659d3..c7db082018 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -128,7 +128,8 @@ jobs: uses: actions/upload-artifact@v3 with: name: mbt-traces - path: tests/mbt/driver/traces + path: tests/mbt/driver/traces + retention-days: 2 repo-analysis: runs-on: ubuntu-latest needs: [tests, test-integration, test-mbt] diff --git a/Makefile b/Makefile index c5f817c0d7..9646bcae60 100644 --- a/Makefile +++ b/Makefile @@ -42,6 +42,13 @@ test-mbt-cov: cd ../../..;\ go test ./tests/mbt/... -timeout 30m -coverpkg=./... -coverprofile=mbt-profile.out -covermode=atomic +# runs mbt tests, but generates more traces +test-mbt-long: + cd tests/mbt/driver;\ + sh generate_traces_long.sh;\ + cd ../../..;\ + go test ./tests/mbt/... -timeout 30m + # run E2E tests test-e2e: go run ./tests/e2e/... diff --git a/tests/mbt/driver/generate_traces_long.sh b/tests/mbt/driver/generate_traces_long.sh new file mode 100755 index 0000000000..49089c5232 --- /dev/null +++ b/tests/mbt/driver/generate_traces_long.sh @@ -0,0 +1,10 @@ +echo "Generating bounded drift traces with timeouts" +go run ./... -modelPath=../model/ccv_boundeddrift.qnt -step stepBoundedDrift -invariant CanTimeoutConsumer -traceFolder traces/bound_timeout -numTraces 20 -numSteps 200 -numSamples 200 +echo "Generating long bounded drift traces without invariants" +go run ./... -modelPath=../model/ccv_boundeddrift.qnt -step stepBoundedDrift -traceFolder traces/bound_noinv -numTraces 20 -numSteps 500 -numSamples 1 +echo "Generating bounded drift traces with maturations" +go run ./... -modelPath=../model/ccv_boundeddrift.qnt -step stepBoundedDrift -invariant CanReceiveMaturations -traceFolder traces/bound_mat -numTraces 20 -numSteps 100 -numSamples 20 +echo "Generating synced traces with maturations" +go run ./... -modelPath=../model/ccv_sync.qnt -init initHappy -step stepHappy -invariant CanReceiveMaturations -traceFolder traces/sync_mat -numTraces 20 -numSteps 300 -numSamples 20 +echo "Generating long synced traces without invariants" +go run ./... -modelPath=../model/ccv_sync.qnt -init initHappy -step stepHappy -traceFolder traces/sync_noinv -numTraces 20 -numSteps 500 -numSamples 1 \ No newline at end of file From 0ac3c8ad7994bcb9438e03bce6b96f6bb67556a4 Mon Sep 17 00:00:00 2001 From: Philip Offtermatt Date: Mon, 4 Dec 2023 12:49:30 +0100 Subject: [PATCH 080/111] Use variable instead of true to better signal semantics --- tests/mbt/driver/mbt_test.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/mbt/driver/mbt_test.go b/tests/mbt/driver/mbt_test.go index 1871afc60f..4164d623fd 100644 --- a/tests/mbt/driver/mbt_test.go +++ b/tests/mbt/driver/mbt_test.go @@ -304,7 +304,7 @@ func RunItfTrace(t *testing.T, path string) { driver.DeliverPacketToConsumer(ChainId(consumerChain), expectError) // stop the consumer chain - driver.providerKeeper().StopConsumerChain(driver.providerCtx(), consumerChain, true) + driver.providerKeeper().StopConsumerChain(driver.providerCtx(), consumerChain, expectError) } else { expectError = false driver.DeliverPacketToConsumer(ChainId(consumerChain), expectError) @@ -321,7 +321,7 @@ func RunItfTrace(t *testing.T, path string) { driver.DeliverPacketFromConsumer(ChainId(consumerChain), expectError) // stop the consumer chain on the provider - driver.providerKeeper().StopConsumerChain(driver.providerCtx(), consumerChain, true) + driver.providerKeeper().StopConsumerChain(driver.providerCtx(), consumerChain, expectError) } else { expectError = false driver.DeliverPacketFromConsumer(ChainId(consumerChain), expectError) From db9a69790f0326109af42db8df19dafde4b08c09 Mon Sep 17 00:00:00 2001 From: Philip Offtermatt <57488781+p-offtermatt@users.noreply.github.com> Date: Mon, 4 Dec 2023 13:28:30 +0100 Subject: [PATCH 081/111] Update testutil/simibc/chain_util.go --- testutil/simibc/chain_util.go | 1 - 1 file changed, 1 deletion(-) diff --git a/testutil/simibc/chain_util.go b/testutil/simibc/chain_util.go index b102fffd13..ffcc318ac0 100644 --- a/testutil/simibc/chain_util.go +++ b/testutil/simibc/chain_util.go @@ -49,7 +49,6 @@ func EndBlock( It is useful to call arbitrary code after ending the block but before committing the block because the sdk.Context is cleared after committing. */ - // preCommitCallback() c.App.Commit() From bf2d8d5f1346ed8fa4bf75b4061a92b0bdd90ea2 Mon Sep 17 00:00:00 2001 From: Philip Offtermatt Date: Tue, 5 Dec 2023 15:34:14 +0100 Subject: [PATCH 082/111] Address comments --- Makefile | 4 ++-- tests/mbt/driver/core.go | 14 +++++--------- ...rate_traces_long.sh => generate_more_traces.sh} | 0 tests/mbt/model/ccv.qnt | 2 +- 4 files changed, 8 insertions(+), 12 deletions(-) rename tests/mbt/driver/{generate_traces_long.sh => generate_more_traces.sh} (100%) diff --git a/Makefile b/Makefile index 9646bcae60..dbc4a32964 100644 --- a/Makefile +++ b/Makefile @@ -43,9 +43,9 @@ test-mbt-cov: go test ./tests/mbt/... -timeout 30m -coverpkg=./... -coverprofile=mbt-profile.out -covermode=atomic # runs mbt tests, but generates more traces -test-mbt-long: +test-mbt-more-traces: cd tests/mbt/driver;\ - sh generate_traces_long.sh;\ + sh generate_more_traces.sh;\ cd ../../..;\ go test ./tests/mbt/... -timeout 30m diff --git a/tests/mbt/driver/core.go b/tests/mbt/driver/core.go index 417a286e77..9dbddd89eb 100644 --- a/tests/mbt/driver/core.go +++ b/tests/mbt/driver/core.go @@ -113,7 +113,7 @@ func (s *Driver) validator(i int64) sdk.ValAddress { } // consumerPower returns the power on the consumer chain chain for -// validator with id (ix) i +// the validator with index i func (s *Driver) consumerPower(i int64, chain ChainId) (int64, error) { v, found := s.consumerKeeper(chain).GetCCValidator(s.ctx(chain), s.validator(i)) if !found { @@ -149,9 +149,7 @@ func (s *Driver) delegate(val, amt int64) { d := s.delegator() v := s.validator(val) msg := stakingtypes.NewMsgDelegate(d, v, coin) - _, err := server.Delegate(sdk.WrapSDKContext(s.ctx(P)), msg) - // There may or may not be an error, depending on the trace - _ = err + server.Delegate(sdk.WrapSDKContext(s.ctx(P)), msg) } // undelegate undelegates amt tokens from validator val @@ -162,13 +160,11 @@ func (s *Driver) undelegate(val, amt int64) { d := s.delegator() v := s.validator(val) msg := stakingtypes.NewMsgUndelegate(d, v, coin) - _, err := server.Undelegate(sdk.WrapSDKContext(s.ctx(P)), msg) - // There may or may not be an error, depending on the trace - _ = err + server.Undelegate(sdk.WrapSDKContext(s.ctx(P)), msg) providerStaking.GetAllDelegations(s.ctx(P)) } -// packetQueue returns the queued packet sfrom sender to receiver, +// packetQueue returns the queued packets from sender to receiver, // where either sender or receiver must be the provider. func (s *Driver) packetQueue(sender, receiver ChainId) []simibc.Packet { var path *simibc.RelayedPath @@ -213,7 +209,7 @@ func (s *Driver) getStateString() string { } func (s *Driver) isProviderChain(chain ChainId) bool { - return chain == "provider" + return chain == P } func (s *Driver) getChainStateString(chain ChainId) string { diff --git a/tests/mbt/driver/generate_traces_long.sh b/tests/mbt/driver/generate_more_traces.sh similarity index 100% rename from tests/mbt/driver/generate_traces_long.sh rename to tests/mbt/driver/generate_more_traces.sh diff --git a/tests/mbt/model/ccv.qnt b/tests/mbt/model/ccv.qnt index 9d2627d666..8249c824ea 100644 --- a/tests/mbt/model/ccv.qnt +++ b/tests/mbt/model/ccv.qnt @@ -388,7 +388,7 @@ module ccv { consumersToStop: Set[Chain]): Result = { val currentProviderState = currentState.providerState - // check for Vsc timeouts + // check for vsc timeouts val timedOutConsumers = getRunningConsumers(currentProviderState).filter( consumer => val res = TimeoutDueToVscTimeout(currentState, consumer) From d68914203ba3500fe2b0dad672203edd3f360cc7 Mon Sep 17 00:00:00 2001 From: Philip Offtermatt <57488781+p-offtermatt@users.noreply.github.com> Date: Wed, 6 Dec 2023 12:23:40 +0100 Subject: [PATCH 083/111] Add punctuation remoced due to main merge --- TESTING.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/TESTING.md b/TESTING.md index 8bfb8563b2..644426c675 100644 --- a/TESTING.md +++ b/TESTING.md @@ -16,7 +16,7 @@ To run integration tests against your own consumer/provider implementations, use ## Model-Based Tests (MBT) -[MBT](tests/mbt/) tests are similar to integration tests, but they compare the system state to an expected state generated from a formally verified specification written in Quint +[MBT](tests/mbt/) tests are similar to integration tests, but they compare the system state to an expected state generated from a formally verified specification written in Quint. ## End-to-End (E2E) Tests @@ -128,4 +128,4 @@ If using VSCode, see [vscode-go/wiki/debugging](https://github.com/golang/vscode ## More -More instructions will be added soon, in time for the testnet. \ No newline at end of file +More instructions will be added soon, in time for the testnet. From e730ebf31017035fe88d43c3c552551c017094dc Mon Sep 17 00:00:00 2001 From: Philip Offtermatt Date: Wed, 6 Dec 2023 17:57:14 +0100 Subject: [PATCH 084/111] Remove outdated doc line --- tests/mbt/model/ccv.qnt | 1 - 1 file changed, 1 deletion(-) diff --git a/tests/mbt/model/ccv.qnt b/tests/mbt/model/ccv.qnt index 8249c824ea..99e1f00229 100644 --- a/tests/mbt/model/ccv.qnt +++ b/tests/mbt/model/ccv.qnt @@ -200,7 +200,6 @@ module ccv { // Things that are not modelled: // * Reward distribution - // * Starting/Stopping chains during execution // * Slashes // Things that explicitly are modelled: From d103bdafd46a8f0a46837e47e1565e820ddd19b3 Mon Sep 17 00:00:00 2001 From: Philip Offtermatt Date: Fri, 8 Dec 2023 10:55:24 +0100 Subject: [PATCH 085/111] Add Quint tests to CI --- .github/workflows/test.yml | 20 ++++++++++++++++++++ Makefile | 10 ++++++++++ 2 files changed, 30 insertions(+) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 9876f48888..39cfffbb17 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -248,3 +248,23 @@ jobs: Makefile - name: trace-e2e tests run: make test-trace + model-analysis: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v4 + with: + lfs: true + - name: checkout LFS objects + run: git lfs checkout + - uses: actions/setup-node@v4 + with: + node-version: ">= 18" + check-latest: true + - run: npm i @informalsystems/quint -g + - uses: technote-space/get-diff-action@v6.1.2 + id: git_diff + with: + PATTERNS: | + tests/mbt/model/**.qnt + - name: verify the Quint model + run: make verify-models diff --git a/Makefile b/Makefile index 57110fd3b0..dfa42b3e82 100644 --- a/Makefile +++ b/Makefile @@ -105,6 +105,16 @@ test-no-cache: test-trace: go run ./tests/e2e/... --test-file tests/e2e/tracehandler_testdata/happyPath.json::default +# tests and verifies the Quint models. +# Note: this is *not* using the Quint models to test the system, +# this tests/verifies the Quint models *themselves*. +verify-models: + quint test tests/mbt/model/ccv_test.qnt;\ + quint test tests/mbt/model/ccv_model.qnt;\ + quint run --invariant "all{ValidatorUpdatesArePropagatedInv,ValidatorSetHasExistedInv,SameVscPacketsInv,MatureOnTimeInv,EventuallyMatureOnProviderInv}" tests/mbt/model/ccv_model.qnt --max-steps 200 --max-samples 200 + + + ############################################################################### ### Linting ### ############################################################################### From 5d97774665e0b4fb5b5638401da833245fe441e6 Mon Sep 17 00:00:00 2001 From: Philip Offtermatt <57488781+p-offtermatt@users.noreply.github.com> Date: Fri, 8 Dec 2023 10:56:02 +0100 Subject: [PATCH 086/111] Update tests/mbt/model/ccv_model.qnt Co-authored-by: insumity --- tests/mbt/model/ccv_model.qnt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/mbt/model/ccv_model.qnt b/tests/mbt/model/ccv_model.qnt index 750ae20792..6368644014 100644 --- a/tests/mbt/model/ccv_model.qnt +++ b/tests/mbt/model/ccv_model.qnt @@ -195,7 +195,7 @@ module ccv_model { // but it's probably not much faster than just trying and failing. all { runningConsumers.size() > 0, // ensure there is a running consumer, otherwise this action does not make sense - nondet recciver = oneOf(runningConsumers) + nondet receiver = oneOf(runningConsumers) DeliverVscPacket(recciver), }, } From 5fecff12d864f2f779734b9880071bed50cb4d36 Mon Sep 17 00:00:00 2001 From: Philip Offtermatt Date: Fri, 8 Dec 2023 11:00:00 +0100 Subject: [PATCH 087/111] Address comments --- tests/mbt/model/ccv_model.qnt | 19 +++++++------------ 1 file changed, 7 insertions(+), 12 deletions(-) diff --git a/tests/mbt/model/ccv_model.qnt b/tests/mbt/model/ccv_model.qnt index 6368644014..c1d91ca796 100644 --- a/tests/mbt/model/ccv_model.qnt +++ b/tests/mbt/model/ccv_model.qnt @@ -196,7 +196,7 @@ module ccv_model { all { runningConsumers.size() > 0, // ensure there is a running consumer, otherwise this action does not make sense nondet receiver = oneOf(runningConsumers) - DeliverVscPacket(recciver), + DeliverVscPacket(receiver), }, } @@ -249,18 +249,13 @@ module ccv_model { (res, pack) => if(res.sendingTime >= pack.sendingTime) { res } else { pack } ) - // run maxByTest = - // all { - // assert(maxBy(Set(1, 2, 3), __x => __x) == 3), - // assert(maxBy(Set(1, 2, 3), __x => -__x) == 1), - // } run earliestLatestTest = { - val packet1 = { - id: 1, - validatorSet: Map(), - sendingTime: 1 * Second, - timeoutTime: 1 * Second, - } + val packet1 = { + id: 1, + validatorSet: Map(), + sendingTime: 1 * Second, + timeoutTime: 1 * Second, + } val packet2 = { id: 2, From 90acddcc138ec7cde15a0e827aa8687917b621e3 Mon Sep 17 00:00:00 2001 From: Philip Offtermatt Date: Fri, 8 Dec 2023 13:34:25 +0100 Subject: [PATCH 088/111] Add zero check to VotingPowerChangeToEmptyTest --- tests/mbt/model/ccv_test.qnt | 1 + 1 file changed, 1 insertion(+) diff --git a/tests/mbt/model/ccv_test.qnt b/tests/mbt/model/ccv_test.qnt index 0a664fa0bb..4dae28ec03 100644 --- a/tests/mbt/model/ccv_test.qnt +++ b/tests/mbt/model/ccv_test.qnt @@ -126,6 +126,7 @@ module ccv_test { -5 ) not(result.hasError()) and + result.newState.providerState.chainState.currentValidatorSet.get("validator") == 0 and result2.hasError() } From 17989245b1d29cb6b0928a20da7806a274ea7965 Mon Sep 17 00:00:00 2001 From: Philip Offtermatt Date: Fri, 8 Dec 2023 17:58:01 +0100 Subject: [PATCH 089/111] Incorporate Karolos' comments --- tests/mbt/driver/generate_more_traces.sh | 4 +-- tests/mbt/driver/generate_traces.sh | 4 +-- tests/mbt/model/ccv.qnt | 2 +- tests/mbt/model/ccv_boundeddrift.qnt | 6 ++-- tests/mbt/model/ccv_model.qnt | 42 ++++++++++++++---------- tests/mbt/model/ccv_sync.qnt | 36 ++++++++++---------- 6 files changed, 51 insertions(+), 43 deletions(-) diff --git a/tests/mbt/driver/generate_more_traces.sh b/tests/mbt/driver/generate_more_traces.sh index 49089c5232..2b9fad2d90 100755 --- a/tests/mbt/driver/generate_more_traces.sh +++ b/tests/mbt/driver/generate_more_traces.sh @@ -5,6 +5,6 @@ go run ./... -modelPath=../model/ccv_boundeddrift.qnt -step stepBoundedDrift -tr echo "Generating bounded drift traces with maturations" go run ./... -modelPath=../model/ccv_boundeddrift.qnt -step stepBoundedDrift -invariant CanReceiveMaturations -traceFolder traces/bound_mat -numTraces 20 -numSteps 100 -numSamples 20 echo "Generating synced traces with maturations" -go run ./... -modelPath=../model/ccv_sync.qnt -init initHappy -step stepHappy -invariant CanReceiveMaturations -traceFolder traces/sync_mat -numTraces 20 -numSteps 300 -numSamples 20 +go run ./... -modelPath=../model/ccv_sync.qnt -init initHappy -step stepSync -invariant CanReceiveMaturations -traceFolder traces/sync_mat -numTraces 20 -numSteps 300 -numSamples 20 echo "Generating long synced traces without invariants" -go run ./... -modelPath=../model/ccv_sync.qnt -init initHappy -step stepHappy -traceFolder traces/sync_noinv -numTraces 20 -numSteps 500 -numSamples 1 \ No newline at end of file +go run ./... -modelPath=../model/ccv_sync.qnt -init initHappy -step stepSync -traceFolder traces/sync_noinv -numTraces 20 -numSteps 500 -numSamples 1 \ No newline at end of file diff --git a/tests/mbt/driver/generate_traces.sh b/tests/mbt/driver/generate_traces.sh index 418d7004dc..e792a2cf3c 100755 --- a/tests/mbt/driver/generate_traces.sh +++ b/tests/mbt/driver/generate_traces.sh @@ -5,6 +5,6 @@ go run ./... -modelPath=../model/ccv_boundeddrift.qnt -step stepBoundedDrift -tr echo "Generating bounded drift traces with maturations" go run ./... -modelPath=../model/ccv_boundeddrift.qnt -step stepBoundedDrift -invariant CanReceiveMaturations -traceFolder traces/bound_mat -numTraces 1 -numSteps 100 -numSamples 20 echo "Generating synced traces with maturations" -go run ./... -modelPath=../model/ccv_sync.qnt -init initHappy -step stepHappy -invariant CanReceiveMaturations -traceFolder traces/sync_mat -numTraces 1 -numSteps 300 -numSamples 20 +go run ./... -modelPath=../model/ccv_sync.qnt -init initHappy -step stepSync -invariant CanReceiveMaturations -traceFolder traces/sync_mat -numTraces 1 -numSteps 300 -numSamples 20 echo "Generating long synced traces without invariants" -go run ./... -modelPath=../model/ccv_sync.qnt -init initHappy -step stepHappy -traceFolder traces/sync_noinv -numTraces 1 -numSteps 500 -numSamples 1 \ No newline at end of file +go run ./... -modelPath=../model/ccv_sync.qnt -init initHappy -step stepSync -traceFolder traces/sync_noinv -numTraces 1 -numSteps 500 -numSamples 1 \ No newline at end of file diff --git a/tests/mbt/model/ccv.qnt b/tests/mbt/model/ccv.qnt index 99e1f00229..6080ae9be7 100644 --- a/tests/mbt/model/ccv.qnt +++ b/tests/mbt/model/ccv.qnt @@ -622,9 +622,9 @@ module ccv { // Advances the timestamp in the chainState by timeAdvancement pure def advanceTime(chainState: ChainState, timeAdvancement: Time): ChainState = { + ...chainState, lastTimestamp: chainState.runningTimestamp, runningTimestamp: chainState.runningTimestamp + timeAdvancement, - ...chainState } // common logic to update the chain state, used by both provider and consumers. diff --git a/tests/mbt/model/ccv_boundeddrift.qnt b/tests/mbt/model/ccv_boundeddrift.qnt index b4678b8430..21a53074c0 100644 --- a/tests/mbt/model/ccv_boundeddrift.qnt +++ b/tests/mbt/model/ccv_boundeddrift.qnt @@ -16,6 +16,8 @@ module ccv_boundeddrift { // In particular, it will ensure that the lastTime of any chain // does not differ from the runningTime of any other chain by more than // this value. + // We choose unbondingPeriod - 2 * Hour here, because we want this to be less than the trustingPeriod, + // which is currently defined as unbondingPeriod - 1 * Hour pure val maxDrift = defUnbondingPeriod - 2 * Hour // The chance, in percentage points, that we will stop consumer chains, whenever we begin a block on the provider chain. @@ -54,7 +56,7 @@ module ccv_boundeddrift { // thus the clock times are always in sync. // This is useful to test happy paths. action stepBoundedDrift = any { - step_common, // allow actions that do not influence time + stepCommon, // allow actions that do not influence time // advance a block for a consumer all { @@ -77,7 +79,7 @@ module ccv_boundeddrift { // advance a block for the provider val consumerStatus = currentState.providerState.consumerStatus nondet consumersToStart = oneOf(nonConsumers.powerset()) - // make it so we stop consumers only with small likelyhood: + // make it so we stop consumers only with small likelihood: nondet stopConsumers = oneOf(1.to(100)) nondet consumersToStop = if (stopConsumers <= consumerStopChance) oneOf(runningConsumers.powerset()) else Set() nondet timeAdvancement = oneOf(possibleAdvancements) diff --git a/tests/mbt/model/ccv_model.qnt b/tests/mbt/model/ccv_model.qnt index c1d91ca796..0f06850dc9 100644 --- a/tests/mbt/model/ccv_model.qnt +++ b/tests/mbt/model/ccv_model.qnt @@ -34,6 +34,10 @@ module ccv_model { InitialValidatorSet: Node -> int, } + // The params variable is never actually changed, and + // just exists so the parameters are entered into the .itf file when we generate traces. + // This should be removed when/if Quint adds support to put the + // constant initializations in its output. var params: Parameters var currentState: ProtocolState @@ -64,7 +68,7 @@ module ccv_model { // Note that these can still be combined, so in effect we can get all time advancements by any amount of seconds. // These should be smaller than the minimal TrustingPeriodPerChain, // otherwise connections will break down. - pure val timeAdvancements = Set(1 * Second, 1 * Day, 1 * Week - 1 * Hour) // 4 * Week) + pure val timeAdvancements = Set(1 * Second, 1 * Day, 1 * Week - 1 * Hour, 4 * Week) pure def emptyAction = { @@ -175,8 +179,8 @@ module ccv_model { params' = params, } - // step_common is the core functionality of steps that does not have anything to do with time. - action step_common = any { + // stepCommon is the core functionality of steps that does not have anything to do with time. + action stepCommon = any { nondet node = oneOf(nodes) // very restricted set of voting powers. exact values are not important, // and this keeps the state space smaller. @@ -218,38 +222,38 @@ module ccv_model { nondet timeAdvancement = oneOf(timeAdvancements) EndAndBeginBlockForProvider(timeAdvancement, consumersToStart, consumersToStop), - step_common + stepCommon } // ================== // UTILITY FUNCTIONS // ================== - pure def earliest(packets: Set[VscPacket]): VscPacket = - val latestPossiblePacket: VscPacket = { + pure def oldest(packets: Set[VscPacket]): VscPacket = + val newestPossiblePacket: VscPacket = { id: 0, validatorSet: Map(), sendingTime: 9999999999999 * Second, timeoutTime: 9999999999999 * Second, } packets.fold( - latestPossiblePacket, + newestPossiblePacket, (res, pack) => if(res.sendingTime < pack.sendingTime) { res } else { pack } ) - pure def latest(packets: Set[VscPacket]): VscPacket = - val earliestPossiblePacket: VscPacket = { + pure def newest(packets: Set[VscPacket]): VscPacket = + val oldestPossiblePacket: VscPacket = { id: 0, validatorSet: Map(), sendingTime: -9999999999 * Second, timeoutTime: -9999999999 * Second, } packets.fold( - earliestPossiblePacket, + oldestPossiblePacket, (res, pack) => if(res.sendingTime >= pack.sendingTime) { res } else { pack } ) - run earliestLatestTest = { + run oldestnewestTest = { val packet1 = { id: 1, validatorSet: Map(), @@ -271,10 +275,10 @@ module ccv_model { timeoutTime: 3 * Second, } all { - assert(earliest(Set(packet1, packet2, packet3)) == packet1), - assert(earliest(Set(packet3, packet2, packet1)) == packet1), - assert(latest(Set(packet1, packet2, packet3)) == packet3), - assert(latest(Set(packet3, packet2, packet1)) == packet3), + assert(oldest(Set(packet1, packet2, packet3)) == packet1), + assert(oldest(Set(packet3, packet2, packet1)) == packet1), + assert(newest(Set(packet1, packet2, packet3)) == packet3), + assert(newest(Set(packet3, packet2, packet1)) == packet3), } } @@ -328,8 +332,8 @@ module ccv_model { if (commonPackets.size() == 0) { true // they don't share any packets, so nothing to check } else { - val newestCommonPacket = commonPackets.latest() - val oldestCommonPacket = commonPackets.earliest() + val newestCommonPacket = commonPackets.newest() + val oldestCommonPacket = commonPackets.oldest() // get all packets sent between the oldest and newest common packet val packetsBetween1 = packets1.select( packet => packet.sendingTime >= oldestCommonPacket.sendingTime and packet.sendingTime <= newestCommonPacket.sendingTime @@ -508,6 +512,8 @@ module ccv_model { assert(currentState.consumerStates.get("consumer1").chainState.currentValidatorSet == InitialValidatorSet.put("node1", 200)), // advance time on provider and consumer until unbonding period is over - ensure that the consumer and provider // stay in sync relative to each other + // We want to make sure the steps we make are shorter the trusting period, + // since that would time out clients in reality. 4.reps( i => EndAndBeginBlockForProvider(UnbondingPeriodPerChain.get("consumer1")/4, Set(), Set()).then( @@ -614,7 +620,7 @@ module ccv_model { EndAndBeginBlockForProvider(VscTimeout + 1 * Second, Set(), Set()) ) .then( - // eenter the advanced time on chain + // enter the advanced time on chain EndAndBeginBlockForProvider(1 * Second, Set(), Set()) ) .then( diff --git a/tests/mbt/model/ccv_sync.qnt b/tests/mbt/model/ccv_sync.qnt index 99bbcdc720..d828b88a76 100644 --- a/tests/mbt/model/ccv_sync.qnt +++ b/tests/mbt/model/ccv_sync.qnt @@ -13,21 +13,21 @@ module ccv_sync { // "action scheduling", essentially using a variable to // determine the next action to be taken. - // QueuedEndBlocks contains a list of chains which will end their blocks next, + // QueuedChainsToEndBlock contains a list of chains which will end their blocks next, // together with the time advancement they should advance by. - // When stepHappy selects an action, it checks if there are any chains in this list, + // When stepSync selects an action, it checks if there are any chains in this list, // and if so, it will only select actions that end blocks on the head of the list. - // QueuedEndBlocks is thus used to schedule actions. - var QueuedEndBlocks: List[(ccvt::Chain, Time)] + // QueuedChainsToEndBlock is thus used to schedule actions. + var QueuedChainsToEndBlock: List[(ccvt::Chain, Time)] // runs init, then ends and begins a block for each chain, while also starting all consumers. // necessary because we want the happy path to have all consumer chains started. - action initHappy = + action initSync = all { init.then( EndAndBeginBlockForProvider(1 * Second, consumerChains, Set()) ), - QueuedEndBlocks' = consumerChainList.foldl( + QueuedChainsToEndBlock' = consumerChainList.foldl( List(), (acc, consumer) => acc.append((consumer, 1 * Second)) ), @@ -38,30 +38,30 @@ module ccv_sync { // step will advance time for all chains at the same rate, // thus the clock times are always in sync. // This is useful to test happy paths. - action stepHappy = any { + action stepSync = any { // choose any of the three "all" blocks nondet timeAdvancement = oneOf(timeAdvancements) all { - QueuedEndBlocks.length() == 0, - EndAndBeginBlockForProvider(timeAdvancement, Set(), Set()), - QueuedEndBlocks' = consumerChainList.foldl( + QueuedChainsToEndBlock.length() == 0, // no queued action needs to be taken + EndAndBeginBlockForProvider(timeAdvancement, Set(), Set()), // end a block for the provider + QueuedChainsToEndBlock' = consumerChainList.foldl( // queue all consumers to end a block List(), (acc, consumer) => acc.append((consumer, timeAdvancement)) ), }, all { - QueuedEndBlocks.length() > 0, - val pair = QueuedEndBlocks.head() + QueuedChainsToEndBlock.length() > 0, // there is a consumer that needs to end a block next + val pair = QueuedChainsToEndBlock.head() val chain = pair._1 val timeAdv = pair._2 - EndAndBeginBlockForConsumer(chain, timeAdv), - QueuedEndBlocks' = QueuedEndBlocks.tail(), + EndAndBeginBlockForConsumer(chain, timeAdv), // end a block for that consumer + QueuedChainsToEndBlock' = QueuedChainsToEndBlock.tail(), // remove that consumer from the queue }, - all { - QueuedEndBlocks.length() == 0, - step_common, - QueuedEndBlocks' = QueuedEndBlocks, + all { + QueuedChainsToEndBlock.length() == 0, // no action is queued + stepCommon, // do one of the actions that are NOT ending a block, like delivering packets, voting power changes, ... + QueuedChainsToEndBlock' = QueuedChainsToEndBlock, } } } \ No newline at end of file From 30a79ad0e6d4008e6626a4035a57dd367a79bde4 Mon Sep 17 00:00:00 2001 From: Philip Offtermatt Date: Mon, 11 Dec 2023 08:46:43 +0100 Subject: [PATCH 090/111] Add spacing between jobs --- .github/workflows/test.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 39cfffbb17..a0cf695f24 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -131,6 +131,7 @@ jobs: name: mbt-traces path: tests/mbt/driver/traces retention-days: 2 + repo-analysis: runs-on: ubuntu-latest needs: [tests, test-integration, test-mbt] From 23960381abc1eceee1a6d2dbd9d2ed8d3bf991ad Mon Sep 17 00:00:00 2001 From: Philip Offtermatt <57488781+p-offtermatt@users.noreply.github.com> Date: Mon, 11 Dec 2023 11:20:40 +0100 Subject: [PATCH 091/111] Update tests/mbt/model/ccv_model.qnt Co-authored-by: insumity --- tests/mbt/model/ccv_model.qnt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/mbt/model/ccv_model.qnt b/tests/mbt/model/ccv_model.qnt index 0f06850dc9..f9bd2ba685 100644 --- a/tests/mbt/model/ccv_model.qnt +++ b/tests/mbt/model/ccv_model.qnt @@ -512,7 +512,7 @@ module ccv_model { assert(currentState.consumerStates.get("consumer1").chainState.currentValidatorSet == InitialValidatorSet.put("node1", 200)), // advance time on provider and consumer until unbonding period is over - ensure that the consumer and provider // stay in sync relative to each other - // We want to make sure the steps we make are shorter the trusting period, + // We want to make sure the steps we make are shorter than the trusting period, // since that would time out clients in reality. 4.reps( i => From 16598923d0a537efe4252d6f39a7d60351c1061e Mon Sep 17 00:00:00 2001 From: Philip Offtermatt Date: Mon, 11 Dec 2023 11:26:22 +0100 Subject: [PATCH 092/111] Address comments --- tests/mbt/driver/generate_more_traces.sh | 4 ++-- tests/mbt/driver/generate_traces.sh | 4 ++-- tests/mbt/driver/mbt_test.go | 10 +++++----- 3 files changed, 9 insertions(+), 9 deletions(-) diff --git a/tests/mbt/driver/generate_more_traces.sh b/tests/mbt/driver/generate_more_traces.sh index 2b9fad2d90..74e73eb262 100755 --- a/tests/mbt/driver/generate_more_traces.sh +++ b/tests/mbt/driver/generate_more_traces.sh @@ -5,6 +5,6 @@ go run ./... -modelPath=../model/ccv_boundeddrift.qnt -step stepBoundedDrift -tr echo "Generating bounded drift traces with maturations" go run ./... -modelPath=../model/ccv_boundeddrift.qnt -step stepBoundedDrift -invariant CanReceiveMaturations -traceFolder traces/bound_mat -numTraces 20 -numSteps 100 -numSamples 20 echo "Generating synced traces with maturations" -go run ./... -modelPath=../model/ccv_sync.qnt -init initHappy -step stepSync -invariant CanReceiveMaturations -traceFolder traces/sync_mat -numTraces 20 -numSteps 300 -numSamples 20 +go run ./... -modelPath=../model/ccv_sync.qnt -init initSync -step stepSync -invariant CanReceiveMaturations -traceFolder traces/sync_mat -numTraces 20 -numSteps 300 -numSamples 20 echo "Generating long synced traces without invariants" -go run ./... -modelPath=../model/ccv_sync.qnt -init initHappy -step stepSync -traceFolder traces/sync_noinv -numTraces 20 -numSteps 500 -numSamples 1 \ No newline at end of file +go run ./... -modelPath=../model/ccv_sync.qnt -init initSync -step stepSync -traceFolder traces/sync_noinv -numTraces 20 -numSteps 500 -numSamples 1 \ No newline at end of file diff --git a/tests/mbt/driver/generate_traces.sh b/tests/mbt/driver/generate_traces.sh index e792a2cf3c..ea13d82653 100755 --- a/tests/mbt/driver/generate_traces.sh +++ b/tests/mbt/driver/generate_traces.sh @@ -5,6 +5,6 @@ go run ./... -modelPath=../model/ccv_boundeddrift.qnt -step stepBoundedDrift -tr echo "Generating bounded drift traces with maturations" go run ./... -modelPath=../model/ccv_boundeddrift.qnt -step stepBoundedDrift -invariant CanReceiveMaturations -traceFolder traces/bound_mat -numTraces 1 -numSteps 100 -numSamples 20 echo "Generating synced traces with maturations" -go run ./... -modelPath=../model/ccv_sync.qnt -init initHappy -step stepSync -invariant CanReceiveMaturations -traceFolder traces/sync_mat -numTraces 1 -numSteps 300 -numSamples 20 +go run ./... -modelPath=../model/ccv_sync.qnt -init initSync -step stepSync -invariant CanReceiveMaturations -traceFolder traces/sync_mat -numTraces 1 -numSteps 300 -numSamples 20 echo "Generating long synced traces without invariants" -go run ./... -modelPath=../model/ccv_sync.qnt -init initHappy -step stepSync -traceFolder traces/sync_noinv -numTraces 1 -numSteps 500 -numSamples 1 \ No newline at end of file +go run ./... -modelPath=../model/ccv_sync.qnt -init initSync -step stepSync -traceFolder traces/sync_noinv -numTraces 1 -numSteps 500 -numSamples 1 \ No newline at end of file diff --git a/tests/mbt/driver/mbt_test.go b/tests/mbt/driver/mbt_test.go index 4164d623fd..8fbed30661 100644 --- a/tests/mbt/driver/mbt_test.go +++ b/tests/mbt/driver/mbt_test.go @@ -93,7 +93,7 @@ func RunItfTrace(t *testing.T, path string) { _, ok := varNames[expectedVarName] require.True(t, ok, "Expected var name %v not found in actual var names %v", expectedVarName, varNames) } - // extra var names are ok, so no need to change the length + // extra var names are ok, so no need to check inclusion the other way around t.Log("Reading params...") params := trace.States[0].VarValues["params"].Value.(itf.MapExprType) @@ -140,7 +140,6 @@ func RunItfTrace(t *testing.T, path string) { valNames[i] = val.Value.(string) } - // initialValSet has the right vals, but not yet the right powers valSet, addressMap, signers, err := CreateValSet(initialValSet) require.NoError(t, err, "Error creating validator set") @@ -167,9 +166,9 @@ func RunItfTrace(t *testing.T, path string) { for index, state := range trace.States { t.Logf("Reading state %v of trace %v", index, path) - // modelState := state.VarValues["currentState"] trace := state.VarValues["trace"].Value.(itf.ListExprType) - // fmt.Println(modelState) + // lastAction will get the last action that was executed so far along the model trace, + // i.e. the action we should perform before checking model vs actual system equivalence lastAction := trace[len(trace)-1].Value.(itf.MapExprType) currentModelState := state.VarValues["currentState"].Value.(itf.MapExprType) @@ -207,7 +206,7 @@ func RunItfTrace(t *testing.T, path string) { // we need 2 blocks, because for a packet sent at height H, the receiving chain // needs a header of height H+1 to accept the packet // so we do one time advancement with a very small increment, - // and then increment the rest of the time] + // and then increment the rest of the time runningConsumersBefore := driver.runningConsumers() driver.endAndBeginBlock("provider", 1*time.Nanosecond) driver.endAndBeginBlock("provider", time.Duration(timeAdvancement)*time.Second-1*time.Nanosecond) @@ -262,6 +261,7 @@ func RunItfTrace(t *testing.T, path string) { // for all connected consumers, update the clients... // unless it was the last consumer to be started, in which case it already has the header + // as we called driver.setupConsumer for _, consumer := range driver.runningConsumers() { if len(consumersToStart) > 0 && consumer.ChainId == consumersToStart[len(consumersToStart)-1].Value.(string) { continue From 21813de8c3bfcb279379fa1001621e7539740797 Mon Sep 17 00:00:00 2001 From: Philip Offtermatt Date: Mon, 11 Dec 2023 12:41:54 +0100 Subject: [PATCH 093/111] Remove 4 week time advancement --- tests/mbt/model/ccv_model.qnt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/mbt/model/ccv_model.qnt b/tests/mbt/model/ccv_model.qnt index f9bd2ba685..13974dc4d8 100644 --- a/tests/mbt/model/ccv_model.qnt +++ b/tests/mbt/model/ccv_model.qnt @@ -68,7 +68,7 @@ module ccv_model { // Note that these can still be combined, so in effect we can get all time advancements by any amount of seconds. // These should be smaller than the minimal TrustingPeriodPerChain, // otherwise connections will break down. - pure val timeAdvancements = Set(1 * Second, 1 * Day, 1 * Week - 1 * Hour, 4 * Week) + pure val timeAdvancements = Set(1 * Second, 1 * Day, 1 * Week - 1 * Hour, 2 * Week - 2 * Hour) pure def emptyAction = { @@ -512,7 +512,7 @@ module ccv_model { assert(currentState.consumerStates.get("consumer1").chainState.currentValidatorSet == InitialValidatorSet.put("node1", 200)), // advance time on provider and consumer until unbonding period is over - ensure that the consumer and provider // stay in sync relative to each other - // We want to make sure the steps we make are shorter than the trusting period, + // We want to make sure the steps we make are shorter the trusting period, // since that would time out clients in reality. 4.reps( i => From a3df82746d4ac4efe859c1260fbb5704cdb0bbca Mon Sep 17 00:00:00 2001 From: Philip Offtermatt Date: Mon, 11 Dec 2023 12:42:36 +0100 Subject: [PATCH 094/111] Upload traces even when test fails --- .github/workflows/test.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index a0cf695f24..8300dfa5f8 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -127,11 +127,12 @@ jobs: path: ./mbt-profile.out - name: Archive MBT traces uses: actions/upload-artifact@v3 + if: success() | failure() # to upload the traces only when the test failed with: name: mbt-traces path: tests/mbt/driver/traces retention-days: 2 - + repo-analysis: runs-on: ubuntu-latest needs: [tests, test-integration, test-mbt] From e52d1864c58e332e1cf32062bb67240470996591 Mon Sep 17 00:00:00 2001 From: Philip Offtermatt Date: Mon, 11 Dec 2023 12:51:03 +0100 Subject: [PATCH 095/111] Fix condition for trace archival --- .github/workflows/test.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 8300dfa5f8..be14486b41 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -127,7 +127,7 @@ jobs: path: ./mbt-profile.out - name: Archive MBT traces uses: actions/upload-artifact@v3 - if: success() | failure() # to upload the traces only when the test failed + if: ${{ success() | failure() }} # to upload the traces only when the test failed with: name: mbt-traces path: tests/mbt/driver/traces From b74a09f3f3f4dca6eb4184519148467564299a46 Mon Sep 17 00:00:00 2001 From: Philip Offtermatt Date: Mon, 11 Dec 2023 13:07:22 +0100 Subject: [PATCH 096/111] Remove unused index --- tests/mbt/driver/mbt_test.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/mbt/driver/mbt_test.go b/tests/mbt/driver/mbt_test.go index 8fbed30661..86d3e38cf7 100644 --- a/tests/mbt/driver/mbt_test.go +++ b/tests/mbt/driver/mbt_test.go @@ -362,7 +362,7 @@ func RunItfTrace(t *testing.T, path string) { require.Equal(t, modelRunningConsumers, actualRunningConsumers, "Running consumers do not match") // check validator sets - provider current validator set should be the one from the staking keeper - CompareValidatorSets(t, driver, currentModelState, actualRunningConsumers, index) + CompareValidatorSets(t, driver, currentModelState, actualRunningConsumers) // check times - sanity check that the block times match the ones from the model CompareTimes(driver, actualRunningConsumers, currentModelState, timeOffset) @@ -381,7 +381,7 @@ func RunItfTrace(t *testing.T, path string) { t.Log("🟢 Trace is ok!") } -func CompareValidatorSets(t *testing.T, driver *Driver, currentModelState map[string]itf.Expr, consumers []string, index int) { +func CompareValidatorSets(t *testing.T, driver *Driver, currentModelState map[string]itf.Expr, consumers []string) { t.Helper() modelValSet := ValidatorSet(currentModelState, "provider") curValSet := driver.providerValidatorSet() From e039ef944ff36b45a33da2b4ace5443a4fca34cc Mon Sep 17 00:00:00 2001 From: Philip Offtermatt Date: Mon, 11 Dec 2023 13:08:51 +0100 Subject: [PATCH 097/111] Remove outdated for loop --- tests/mbt/driver/mbt_test.go | 5 ----- 1 file changed, 5 deletions(-) diff --git a/tests/mbt/driver/mbt_test.go b/tests/mbt/driver/mbt_test.go index 86d3e38cf7..23f0104690 100644 --- a/tests/mbt/driver/mbt_test.go +++ b/tests/mbt/driver/mbt_test.go @@ -416,11 +416,6 @@ func CompareValidatorSets(t *testing.T, driver *Driver, currentModelState map[st consumerCurValSet[providerVal.GetMoniker()] = val.Power } - for val, power := range modelValSet { - _ = val - intPow := power.Value.(int64) - _ = intPow - } require.NoError(t, CompareValSet(modelValSet, consumerCurValSet), "Validator sets do not match for consumer %v", consumer) } } From b13ead1535ec1a4d076934c24f24ebfddf847ed0 Mon Sep 17 00:00:00 2001 From: Philip Offtermatt Date: Mon, 11 Dec 2023 13:09:44 +0100 Subject: [PATCH 098/111] Fix if condition for trace upload --- .github/workflows/test.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index be14486b41..7b7ea49457 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -127,7 +127,7 @@ jobs: path: ./mbt-profile.out - name: Archive MBT traces uses: actions/upload-artifact@v3 - if: ${{ success() | failure() }} # to upload the traces only when the test failed + if: ${{ success() || failure() }} # to upload the traces only when the test failed with: name: mbt-traces path: tests/mbt/driver/traces From e7807bf4fbd5cd5be290b51494a986e048261a5f Mon Sep 17 00:00:00 2001 From: Philip Offtermatt Date: Mon, 11 Dec 2023 13:25:47 +0100 Subject: [PATCH 099/111] Add comment about timestamps --- tests/mbt/driver/mbt_test.go | 23 +++++++++++++++++++---- 1 file changed, 19 insertions(+), 4 deletions(-) diff --git a/tests/mbt/driver/mbt_test.go b/tests/mbt/driver/mbt_test.go index 23f0104690..41aab10190 100644 --- a/tests/mbt/driver/mbt_test.go +++ b/tests/mbt/driver/mbt_test.go @@ -384,11 +384,12 @@ func RunItfTrace(t *testing.T, path string) { func CompareValidatorSets(t *testing.T, driver *Driver, currentModelState map[string]itf.Expr, consumers []string) { t.Helper() modelValSet := ValidatorSet(currentModelState, "provider") - curValSet := driver.providerValidatorSet() - actualValSet := make(map[string]int64, len(curValSet)) + rawActualValSet := driver.providerValidatorSet() - for _, val := range curValSet { + actualValSet := make(map[string]int64, len(rawActualValSet)) + + for _, val := range rawActualValSet { valName := val.Description.Moniker actualValSet[valName] = val.Tokens.Int64() } @@ -406,14 +407,20 @@ func CompareValidatorSets(t *testing.T, driver *Driver, currentModelState map[st consAddr := providertypes.NewConsumerConsAddress(sdktypes.ConsAddress(pubkey.Address().Bytes())) + // the consumer vals right now are CrossChainValidators, for which we don't know their mnemonic + // so we need to find the mnemonic of the consumer val now to enter it by name in the map + + // get the address on the provider that corresponds to the consumer address providerConsAddr, found := driver.providerKeeper().GetValidatorByConsumerAddr(driver.providerCtx(), consumer, consAddr) if !found { providerConsAddr = providertypes.NewProviderConsAddress(consAddr.Address) } + // get the validator for that address on the provider providerVal, found := driver.providerStakingKeeper().GetValidatorByConsAddr(driver.providerCtx(), providerConsAddr.Address) require.True(t, found, "Error getting provider validator") + // use the moniker of that validator consumerCurValSet[providerVal.GetMoniker()] = val.Power } require.NoError(t, CompareValSet(modelValSet, consumerCurValSet), "Validator sets do not match for consumer %v", consumer) @@ -422,7 +429,8 @@ func CompareValidatorSets(t *testing.T, driver *Driver, currentModelState map[st // ComparePacketQueues compares the packet queues in the model to the packet queues in the system. // It compares both incoming (provider->consumer) and outgoing (consumer->provider) packets. -// It only takes the number of packets into account, not the contents. +// It takes the number of packets into account, as well as the timeout timestamp on each packet. +// Other fields are not compared. func ComparePacketQueues( t *testing.T, driver *Driver, @@ -476,6 +484,13 @@ func ComparePacketQueue( // of the chains in the system after the system has been initialized. // We only compare down to seconds, because the model and system will differ // on the order of nanoseconds. +// In more detail, the model will have timestamp `X seconds, 0 nanoseconds`, +// and the actual system will have timestamp `X seconds, Y nanoseconds`, +// where Y roughly depends on how many extra blocks needed to be produced +// when setting up consumer chains. +// Note: If Y gets too large, the check might fail, even though it should not. +// This will happen if on the order of 10^8 consumer chains +// are started during the execution of a trace. func CompareTimes( driver *Driver, consumers []string, From a052b21fe6674bb18e38967c992d0bd4109690dc Mon Sep 17 00:00:00 2001 From: Philip Offtermatt Date: Mon, 11 Dec 2023 13:46:38 +0100 Subject: [PATCH 100/111] Remove long time advancements --- tests/mbt/model/ccv_model.qnt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/mbt/model/ccv_model.qnt b/tests/mbt/model/ccv_model.qnt index 13974dc4d8..fba4ddea6c 100644 --- a/tests/mbt/model/ccv_model.qnt +++ b/tests/mbt/model/ccv_model.qnt @@ -68,7 +68,7 @@ module ccv_model { // Note that these can still be combined, so in effect we can get all time advancements by any amount of seconds. // These should be smaller than the minimal TrustingPeriodPerChain, // otherwise connections will break down. - pure val timeAdvancements = Set(1 * Second, 1 * Day, 1 * Week - 1 * Hour, 2 * Week - 2 * Hour) + pure val timeAdvancements = Set(1 * Second, 1 * Day, 1 * Week - 1 * Hour) pure def emptyAction = { From 60589a16b020f733cb06597b038f4e58df163969 Mon Sep 17 00:00:00 2001 From: Philip Offtermatt Date: Mon, 11 Dec 2023 14:00:22 +0100 Subject: [PATCH 101/111] Address comments --- tests/mbt/driver/common.go | 2 +- tests/mbt/driver/core.go | 23 +++++++++++++---------- tests/mbt/driver/mbt_test.go | 12 ++++++------ tests/mbt/driver/model_viewer.go | 14 ++------------ tests/mbt/driver/setup.go | 24 +++++++----------------- 5 files changed, 29 insertions(+), 46 deletions(-) diff --git a/tests/mbt/driver/common.go b/tests/mbt/driver/common.go index db1557c2d0..47d82833cc 100644 --- a/tests/mbt/driver/common.go +++ b/tests/mbt/driver/common.go @@ -5,7 +5,7 @@ import ( ) const ( - P = "provider" + PROVIDER = "provider" ) // getIndexOfString returns the index of the first occurrence of the given string diff --git a/tests/mbt/driver/core.go b/tests/mbt/driver/core.go index 9dbddd89eb..c98ee3335c 100644 --- a/tests/mbt/driver/core.go +++ b/tests/mbt/driver/core.go @@ -2,6 +2,7 @@ package main import ( "fmt" + "log" "math" "strings" "testing" @@ -125,7 +126,7 @@ func (s *Driver) consumerPower(i int64, chain ChainId) (int64, error) { // consumerTokens returns the number of tokens that the validator with // id (ix) i has delegated to it in total on the provider chain func (s *Driver) providerPower(i int64) (int64, error) { - v, found := s.providerStakingKeeper().GetValidator(s.ctx(P), s.validator(i)) + v, found := s.providerStakingKeeper().GetValidator(s.ctx(PROVIDER), s.validator(i)) if !found { return 0, fmt.Errorf("validator with id %v not found on provider", i) } else { @@ -134,7 +135,7 @@ func (s *Driver) providerPower(i int64) (int64, error) { } func (s *Driver) providerValidatorSet() []stakingtypes.Validator { - return s.providerStakingKeeper().GetAllValidators(s.ctx(P)) + return s.providerStakingKeeper().GetAllValidators(s.ctx(PROVIDER)) } func (s *Driver) consumerValidatorSet(chain ChainId) []consumertypes.CrossChainValidator { @@ -149,7 +150,7 @@ func (s *Driver) delegate(val, amt int64) { d := s.delegator() v := s.validator(val) msg := stakingtypes.NewMsgDelegate(d, v, coin) - server.Delegate(sdk.WrapSDKContext(s.ctx(P)), msg) + server.Delegate(sdk.WrapSDKContext(s.ctx(PROVIDER)), msg) } // undelegate undelegates amt tokens from validator val @@ -160,17 +161,19 @@ func (s *Driver) undelegate(val, amt int64) { d := s.delegator() v := s.validator(val) msg := stakingtypes.NewMsgUndelegate(d, v, coin) - server.Undelegate(sdk.WrapSDKContext(s.ctx(P)), msg) - providerStaking.GetAllDelegations(s.ctx(P)) + server.Undelegate(sdk.WrapSDKContext(s.ctx(PROVIDER)), msg) } // packetQueue returns the queued packets from sender to receiver, // where either sender or receiver must be the provider. func (s *Driver) packetQueue(sender, receiver ChainId) []simibc.Packet { var path *simibc.RelayedPath - if sender == P { + if sender == PROVIDER { path = s.path(receiver) } else { + if receiver != PROVIDER { + log.Fatalf("either receiver '%v' or sender '%v' should be provider '%v', but neither is", sender, receiver, PROVIDER) + } path = s.path(sender) } outboxes := path.Outboxes @@ -209,7 +212,7 @@ func (s *Driver) getStateString() string { } func (s *Driver) isProviderChain(chain ChainId) bool { - return chain == P + return chain == PROVIDER } func (s *Driver) getChainStateString(chain ChainId) string { @@ -275,7 +278,7 @@ func (s *Driver) getChainStateString(chain ChainId) string { } outboxInfo.WriteString("IncomingPackets: \n") - incoming := s.path(chain).Outboxes.OutboxPackets[P] + incoming := s.path(chain).Outboxes.OutboxPackets[PROVIDER] for _, packet := range incoming { outboxInfo.WriteString(fmt.Sprintf("%v\n", packet.Packet.String())) } @@ -289,7 +292,7 @@ func (s *Driver) getChainStateString(chain ChainId) string { } outboxInfo.WriteString("IncomingAcks: \n") - incomingAcks := s.path(chain).Outboxes.OutboxAcks[P] + incomingAcks := s.path(chain).Outboxes.OutboxAcks[PROVIDER] for _, packet := range incomingAcks { outboxInfo.WriteString(fmt.Sprintf("%v\n", packet.Packet.String())) } @@ -375,7 +378,7 @@ func (s *Driver) DeliverPacketToConsumer(recipient ChainId, expectError bool) { // It updates the client before delivering the packet. // Since the channel is ordered, the packet that is delivered is the first packet in the outbox. func (s *Driver) DeliverPacketFromConsumer(sender ChainId, expectError bool) { - s.path(sender).DeliverPackets(P, 1, expectError) // deliver to the provider + s.path(sender).DeliverPackets(PROVIDER, 1, expectError) // deliver to the provider } // DeliverAcks delivers, for each path, diff --git a/tests/mbt/driver/mbt_test.go b/tests/mbt/driver/mbt_test.go index 41aab10190..b28b1e9006 100644 --- a/tests/mbt/driver/mbt_test.go +++ b/tests/mbt/driver/mbt_test.go @@ -268,7 +268,7 @@ func RunItfTrace(t *testing.T, path string) { } consumerChainId := consumer.ChainId - driver.path(ChainId(consumerChainId)).AddClientHeader(Provider, driver.providerHeader()) + driver.path(ChainId(consumerChainId)).AddClientHeader(PROVIDER, driver.providerHeader()) err := driver.path(ChainId(consumerChainId)).UpdateClient(consumerChainId, false) require.True(t, err == nil, "Error updating client from %v on provider: %v", consumerChainId, err) } @@ -289,7 +289,7 @@ func RunItfTrace(t *testing.T, path string) { // update the client on the provider consumerHeader := driver.chain(ChainId(consumerChain)).LastHeader driver.path(ChainId(consumerChain)).AddClientHeader(consumerChain, consumerHeader) - err := driver.path(ChainId(consumerChain)).UpdateClient(Provider, false) + err := driver.path(ChainId(consumerChain)).UpdateClient(PROVIDER, false) require.True(t, err == nil, "Error updating client from %v on provider: %v", consumerChain, err) case "DeliverVscPacket": @@ -439,8 +439,8 @@ func ComparePacketQueues( timeOffset time.Time, ) { t.Helper() - ComparePacketQueue(t, driver, currentModelState, Provider, consumer, timeOffset) - ComparePacketQueue(t, driver, currentModelState, consumer, Provider, timeOffset) + ComparePacketQueue(t, driver, currentModelState, PROVIDER, consumer, timeOffset) + ComparePacketQueue(t, driver, currentModelState, consumer, PROVIDER, timeOffset) } func ComparePacketQueue( @@ -578,8 +578,8 @@ func (s *Stats) EnterStats(driver *Driver) { // max number of in-flight packets inFlightPackets := 0 for _, consumer := range driver.runningConsumers() { - inFlightPackets += len(driver.packetQueue(Provider, ChainId(consumer.ChainId))) - inFlightPackets += len(driver.packetQueue(ChainId(consumer.ChainId), Provider)) + inFlightPackets += len(driver.packetQueue(PROVIDER, ChainId(consumer.ChainId))) + inFlightPackets += len(driver.packetQueue(ChainId(consumer.ChainId), PROVIDER)) } if inFlightPackets > s.maxNumInFlightPackets { s.maxNumInFlightPackets = inFlightPackets diff --git a/tests/mbt/driver/model_viewer.go b/tests/mbt/driver/model_viewer.go index c1a4bfd7e8..9976a40980 100644 --- a/tests/mbt/driver/model_viewer.go +++ b/tests/mbt/driver/model_viewer.go @@ -7,8 +7,6 @@ import ( // This file contains logic to process // and access parts of the current state of the Quint trace. -const Provider = "provider" - func ProviderState(curStateExpr itf.MapExprType) itf.MapExprType { return curStateExpr["providerState"].Value.(itf.MapExprType) } @@ -18,7 +16,7 @@ func ConsumerState(curStateExpr itf.MapExprType, consumer string) itf.MapExprTyp } func State(curStateExpr itf.MapExprType, chain string) itf.MapExprType { - if chain == Provider { + if chain == PROVIDER { return ProviderState(curStateExpr) } else { return ConsumerState(curStateExpr, chain) @@ -38,10 +36,6 @@ func HistoricalValidatorSet(curStateExpr itf.MapExprType, chain string, index in return history[index].Value.(itf.MapExprType) } -func LastTime(curStateExpr itf.MapExprType, chain string) int64 { - return ChainState(curStateExpr, chain)["lastTimestamp"].Value.(int64) -} - func RunningTime(curStateExpr itf.MapExprType, chain string) int64 { return ChainState(curStateExpr, chain)["runningTimestamp"].Value.(int64) } @@ -49,7 +43,7 @@ func RunningTime(curStateExpr itf.MapExprType, chain string) int64 { // PacketQueue returns the queued packets between sender and receiver. // Either sender or receiver need to be the provider. func PacketQueue(curStateExpr itf.MapExprType, sender, receiver string) itf.ListExprType { - if sender == Provider { + if sender == PROVIDER { packetQueue := ProviderState(curStateExpr)["outstandingPacketsToConsumer"].Value.(itf.MapExprType)[receiver] if packetQueue.Value == nil { return itf.ListExprType{} @@ -80,10 +74,6 @@ func ConsumerStatus(curStateExpr itf.MapExprType, consumer string) string { return ProviderState(curStateExpr)["consumerStatus"].Value.(itf.MapExprType)[consumer].Value.(string) } -func LocalClientExpired(curStateExpr itf.MapExprType, consumer string) bool { - return ConsumerState(curStateExpr, consumer)["localClientExpired"].Value.(bool) -} - func GetTimeoutForPacket(packetExpr itf.MapExprType) int64 { return packetExpr["timeoutTime"].Value.(int64) } diff --git a/tests/mbt/driver/setup.go b/tests/mbt/driver/setup.go index 24b2a36678..773f5e4680 100644 --- a/tests/mbt/driver/setup.go +++ b/tests/mbt/driver/setup.go @@ -39,13 +39,13 @@ const ( INITIAL_ACCOUNT_BALANCE = 1000000000 // Parameters used in the staking module - StakingParamsMaxEntries = 10000 - StakingParamsMaxValidators = 100 + STAKING_PARAMS_MAX_ENTRIES = 10000 + STAKING_PARAMS_MAX_VALS = 100 ) // Parameters used by CometBFT var ( - ConsensusParams = cmttypes.DefaultConsensusParams() + CONSENSUS_PARAMS = cmttypes.DefaultConsensusParams() ) // Given a map from node names to voting powers, create a validator set with the right voting powers. @@ -111,8 +111,6 @@ func getAppBytesAndSenders( acc := authtypes.NewBaseAccount(pk.PubKey().Address().Bytes(), pk.PubKey(), uint64(i), 0) // Give enough funds for many delegations - // Extra units are to delegate to extra validators created later - // in order to bond them and still have INITIAL_DELEGATOR_TOKENS remaining bal := banktypes.Balance{ Address: acc.GetAddress().String(), Coins: sdk.NewCoins(sdk.NewCoin(sdk.DefaultBondDenom, @@ -211,8 +209,8 @@ func getAppBytesAndSenders( } // Set model parameters - genesisStaking.Params.MaxEntries = StakingParamsMaxEntries - genesisStaking.Params.MaxValidators = StakingParamsMaxValidators + genesisStaking.Params.MaxEntries = STAKING_PARAMS_MAX_ENTRIES + genesisStaking.Params.MaxValidators = STAKING_PARAMS_MAX_VALS genesisStaking.Params.UnbondingTime = modelParams.UnbondingPeriodPerChain[ChainId(chainID)] genesisStaking = *stakingtypes.NewGenesisState(genesisStaking.Params, stakingValidators, delegations) genesis[stakingtypes.ModuleName] = app.AppCodec().MustMarshalJSON(&genesisStaking) @@ -259,7 +257,7 @@ func newChain( stateBytes, senderAccounts := getAppBytesAndSenders(chainID, modelParams, app, genesis, validators, nodes, valNames) - protoConsParams := ConsensusParams.ToProto() + protoConsParams := CONSENSUS_PARAMS.ToProto() app.InitChain( abcitypes.RequestInitChain{ ChainId: chainID, @@ -336,14 +334,6 @@ func (s *Driver) ConfigureNewPath(consumerChain, providerChain *ibctesting.TestC // Create the Consumer chain ID mapping in the provider state s.providerKeeper().SetConsumerClientId(providerChain.GetContext(), consumerChain.ChainID, providerEndPoint.ClientID) - // create consumer key assignment - // for _, val := range s.providerValidatorSet(ChainId(providerChain.ChainID)) { - // pubKey, err := val.TmConsPublicKey() - // require.NoError(s.t, err, "Error getting consensus pubkey for validator %v", val) - - // err = s.providerKeeper().AssignConsumerKey(providerChain.GetContext(), consumerChain.ChainID, val, pubKey) - // } - // Configure and create the client on the consumer tmCfg = consumerEndPoint.ClientConfig.(*ibctesting.TendermintConfig) tmCfg.UnbondingPeriod = params.UnbondingPeriodPerChain[consumerChainId] @@ -371,7 +361,7 @@ func (s *Driver) ConfigureNewPath(consumerChain, providerChain *ibctesting.TestC string(consumerChainId), consumerGenesisForProvider) - // Client ID is set in InitGenesis and we treat it as a block box. So + // Client ID is set in InitGenesis and we treat it as a black box. So // must query it to use it with the endpoint. clientID, _ := s.consumerKeeper(consumerChainId).GetProviderClientID(s.ctx(consumerChainId)) consumerEndPoint.ClientID = clientID From 82ca1370943a68729c2b2920bc673be5a02c7b4b Mon Sep 17 00:00:00 2001 From: Philip Offtermatt Date: Mon, 11 Dec 2023 14:41:58 +0100 Subject: [PATCH 102/111] Make comment clearer --- tests/mbt/driver/mbt_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/mbt/driver/mbt_test.go b/tests/mbt/driver/mbt_test.go index b28b1e9006..409a74e40c 100644 --- a/tests/mbt/driver/mbt_test.go +++ b/tests/mbt/driver/mbt_test.go @@ -521,7 +521,7 @@ func CompareTimes( // The names in the model validator set are expected to correspond to the monikers in the system validator set. func CompareValSet(modelValSet map[string]itf.Expr, systemValSet map[string]int64) error { expectedValSet := make(map[string]int64, len(modelValSet)) - // strip away vals with power 0, because they are not always in the system validator set + // strip away vals with power 0, because they don't matter for the comparison for val, power := range modelValSet { if power.Value.(int64) == 0 { continue From 6d68920d842a6aeebc3fb998ac60512f3d8182e2 Mon Sep 17 00:00:00 2001 From: Philip Offtermatt <57488781+p-offtermatt@users.noreply.github.com> Date: Fri, 15 Dec 2023 11:14:27 +0100 Subject: [PATCH 103/111] Update tests/mbt/driver/generate_traces.sh Co-authored-by: Simon Noetzlin --- tests/mbt/driver/generate_traces.sh | 2 ++ 1 file changed, 2 insertions(+) diff --git a/tests/mbt/driver/generate_traces.sh b/tests/mbt/driver/generate_traces.sh index ea13d82653..ca0a6ba973 100755 --- a/tests/mbt/driver/generate_traces.sh +++ b/tests/mbt/driver/generate_traces.sh @@ -1,3 +1,5 @@ +#!/bin/bash + echo "Generating bounded drift traces with timeouts" go run ./... -modelPath=../model/ccv_boundeddrift.qnt -step stepBoundedDrift -invariant CanTimeoutConsumer -traceFolder traces/bound_timeout -numTraces 1 -numSteps 200 -numSamples 200 echo "Generating long bounded drift traces without invariants" From 49ba056f5614199efa62418d540a57d0dd82c3dc Mon Sep 17 00:00:00 2001 From: Philip Offtermatt <57488781+p-offtermatt@users.noreply.github.com> Date: Fri, 15 Dec 2023 11:14:40 +0100 Subject: [PATCH 104/111] Update tests/mbt/run_invariants.sh Co-authored-by: Simon Noetzlin --- tests/mbt/run_invariants.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/mbt/run_invariants.sh b/tests/mbt/run_invariants.sh index 03e63db579..613664aeae 100755 --- a/tests/mbt/run_invariants.sh +++ b/tests/mbt/run_invariants.sh @@ -1,4 +1,4 @@ -#! /bin/sh +#!/bin/bash quint test ccv_model.qnt quint test ccv_test.qnt From d04e1400b33758fc4b4fd1b8e8342c6fe686b067 Mon Sep 17 00:00:00 2001 From: Philip Offtermatt <57488781+p-offtermatt@users.noreply.github.com> Date: Fri, 15 Dec 2023 11:14:49 +0100 Subject: [PATCH 105/111] Update tests/mbt/driver/README.md Co-authored-by: Simon Noetzlin --- tests/mbt/driver/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/mbt/driver/README.md b/tests/mbt/driver/README.md index 202baa7e3f..7b3d8c0963 100644 --- a/tests/mbt/driver/README.md +++ b/tests/mbt/driver/README.md @@ -15,7 +15,7 @@ To generate traces, run This will generate several "families" of traces in the `traces` folder. -Here is what one of the lines from `./generate traces` looks like: +Here is what one of the lines from `./generate_traces.sh` looks like: ``` go run ./... -modelPath=../model/ccv_boundeddrift.qnt -step stepBoundedDrift -invariant CanTimeoutConsumer -traceFolder traces/bound_timeout -numTraces 10 -numSteps 200 -numSamples 200 ``` From d01e561a69524951dc7054098ce5d265cac78e52 Mon Sep 17 00:00:00 2001 From: Philip Offtermatt <57488781+p-offtermatt@users.noreply.github.com> Date: Fri, 15 Dec 2023 11:26:17 +0100 Subject: [PATCH 106/111] Update testutil/simibc/relayed_path.go Co-authored-by: Simon Noetzlin --- testutil/simibc/relayed_path.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/testutil/simibc/relayed_path.go b/testutil/simibc/relayed_path.go index 4a5226e59a..4967c02f37 100644 --- a/testutil/simibc/relayed_path.go +++ b/testutil/simibc/relayed_path.go @@ -41,7 +41,7 @@ func MakeRelayedPath(t *testing.T, path *ibctesting.Path) *RelayedPath { } } -// PacketBelongs returns true if the packet belongs to this relayed path. +// PacketSentByChain returns true if the packet belongs to this relayed path. func (f *RelayedPath) PacketSentByChain(packet channeltypes.Packet, chainID string) bool { if chainID == f.Path.EndpointA.Chain.ChainID { return f.PacketSentByA(packet) From 2a1db2b0d0b36abf0ad39c3df134f6038311b59b Mon Sep 17 00:00:00 2001 From: Philip Offtermatt <57488781+p-offtermatt@users.noreply.github.com> Date: Fri, 15 Dec 2023 11:26:25 +0100 Subject: [PATCH 107/111] Update tests/mbt/driver/generate_more_traces.sh Co-authored-by: Simon Noetzlin --- tests/mbt/driver/generate_more_traces.sh | 2 ++ 1 file changed, 2 insertions(+) diff --git a/tests/mbt/driver/generate_more_traces.sh b/tests/mbt/driver/generate_more_traces.sh index 74e73eb262..9af4da82e9 100755 --- a/tests/mbt/driver/generate_more_traces.sh +++ b/tests/mbt/driver/generate_more_traces.sh @@ -1,3 +1,5 @@ +#!/bin/bash + echo "Generating bounded drift traces with timeouts" go run ./... -modelPath=../model/ccv_boundeddrift.qnt -step stepBoundedDrift -invariant CanTimeoutConsumer -traceFolder traces/bound_timeout -numTraces 20 -numSteps 200 -numSamples 200 echo "Generating long bounded drift traces without invariants" From 2488377d84750c53046b22661f9557c3596a9d6c Mon Sep 17 00:00:00 2001 From: Philip Offtermatt Date: Fri, 15 Dec 2023 11:29:55 +0100 Subject: [PATCH 108/111] Remove difftest folder --- tests/difference/core/docs/METHOD.md | 128 ---- tests/difference/core/driver/setup.go | 625 ------------------ tests/difference/core/model/src/common.ts | 244 ------- tests/difference/core/model/src/properties.ts | 359 ---------- 4 files changed, 1356 deletions(-) delete mode 100644 tests/difference/core/docs/METHOD.md delete mode 100644 tests/difference/core/driver/setup.go delete mode 100644 tests/difference/core/model/src/common.ts delete mode 100644 tests/difference/core/model/src/properties.ts diff --git a/tests/difference/core/docs/METHOD.md b/tests/difference/core/docs/METHOD.md deleted file mode 100644 index da14a42f9a..0000000000 --- a/tests/difference/core/docs/METHOD.md +++ /dev/null @@ -1,128 +0,0 @@ -# Method - -Contains information about the differential/difference testing method in general and how it impacts the project. - -## Motivation - -The goal is to find more, deeper, bugs in the long run life of the project in a more cost effective way than can be done by other testing methods (unit, full node, integration, model based testing). - -Each of the traditional methods has draw backs - -- unit\ -Finds shallow bugs. -- full node\ -Expensive to setup and run, hard to debug, slow. -- integration\ -Limited to isolated parts of system so cannot find logic bugs across systems. -- model based\ -Exhaustive model checkers do not scale well to large systems. Esoteric languages hard to onboard and maintain. - -Diff testing should be - -- Able to find deep bugs (and shallow ones)\ -Complicated systems *may* have tricky, deep bugs which are caused by specific interleavings of API calls with specific params. We want a way to try to find these. -- Maintainable\ -If the requirements change or a major piece of the system API changes it should be possible to modify existing test code to handle the new system, without having to scrap everything. -- Scalable\ -Everything should run in memory, cheaply. It should be possible to use the debugger to step through failed tests. - -Diff testing does not - -- Try to find every bug\ -Diff testing is based on randomness and heuristics and these can only get you so far in finding bugs. More on this in [Limitations](#limitations). - -## Concepts - -Here we use terminology as it is already used in the project, we do **not** use academic parlance. - -We have a system under test (SUT) and we want to test that it satisfies all our design properties (e.g. Validator Set Replication). Diff testing works by making a simplified implementation of the business logic of our system, observing executions of the simplified implementation, and then checking that those observations 'match' what is happening in the real system. - -![diagram0](./diagrams/diagram0.png) - -We have three major components, a model and driver, and the SUT. The creation of each part could go something like - -1. Figure out what parts of the system state you need to observe to know that your system is working. E.g. token balances, voting powers. -2. Figure out which API calls influence that state. -3. Create the simplest possible implementation of those API calls that results in the correct state. This is the raw model. -4. Randomly make API calls against your model. You might need some heuristics or bespoke logic to make sure these random calls result in good coverage (see [Limitations](#limitations)). -5. Record the random API calls made ('actions') and observations of the state made at regular intervals. Together this data forms a trace. Repeated many times from the zero state you obtain *traces*. -6. Create a 'driver': some code that wraps the API of the SUT and can interpret traces and 'test' those traces against the SUT. For each tested trace, setup the SUT to a suitable zero state, and make each API call as in the trace. For each state observation in the trace, check that the SUT state corresponds. - -## Benefits - -- You know that the system behavior matches the model behavior. -- The model should be much simpler and easier to check properties for. It will have clear boundaries. -- A well written model can be the specification. -- You can instrument the model with arbitrary code to make sure that your random API calls get good coverage. This can go well beyond statement/branch coverage. -- Based on my anecdotal experience, the ratio of confidence gained per line of code written and maintained can be much much higher for this kind of testing than for unit tests, integration tests, full node tests. -- You can find deep bugs because the random exploration will find many cases that humans won't think of. - -## Limitations - -- You have to maintain a model and all the surrounding framework. -- If you want to make a major change to your system you will have to change the model and the SUT.\ -NOTE: Change the model first, and THEN change the SUT. This is TDD. - -and... - -The biggest limitation is that random exploration can be severely limited. This warrants more explanation: - -### Random exploration - -It's easy to find example programs where random exploration will have very poor results. Consider - -```go -func foo(x uint64) { - if x = 123456 { - // BUG - } else { - // NO BUG - } -} -``` - -By testing foo with uniformly randomly chosen x's 80 million times per second you will never find the bug. This is a contrived example, but it illustrates the point that you cannot rely on randomness. - -## Influences - -In creating diff testing I was influenced ideas from Model Based Testing (see [section](#comparison-to-model-based-testing)). Both methods share the notions of model, driver, and trace but the way the model is written and the traces are generated is different. - -## Other - -### Random exploration good or bad? - -While you shouldn't rely on random exploration for good coverage it proves to be practical and useful in many real life systems. You should definitely measure the coverage of your exploration. With measurements, you can freely experiment with adding heuristic rules to restrict the randomness in particular ways. You can also look at qualities of your particular system and try to make combinatorial or probabilistic arguments for coverage. - -### Usage of model as the spec - -The model could be the spec, if you want it to be. All the dependencies should be abstracted away behind contract satisfying interfaces, and any implementation detail related to performance or environment boilerplate can be omitted. - -### Creating many implementations from a single model - -The same model can be used to create drivers for, and test, many different implementations of the system in any language, environment etc - -## Comparison to Model Based Testing - -Informal Systems uses the term model based testing to refer to, essentially diff testing, with two major differences - -- The model is written in a formal specification language with semantics and properties that make it amenable to formal verification and automated reasoning techniques.\ -Example languages: [TLA+](https://en.wikipedia.org/wiki/TLA%2B), [Quint](https://github.com/informalsystems/quint). Example semantic: [Temporal Logic of Actions](https://en.wikipedia.org/wiki/Temporal_logic_of_actions). Example techniques: [SAT Solving](https://en.wikipedia.org/wiki/SAT_solver), [Symbolic Model Checking](https://blog.acolyer.org/2019/11/29/tla-model-checking-made-symbolic/), [State Enumerating Model Checking](https://en.wikipedia.org/wiki/State_space_enumeration). Example tools: [TLC](https://github.com/tlaplus/tlaplus), [Apalache](https://apalache.informal.systems/). -- The model is explored not by randomness and heuristics but by using a [*model checker*](https://en.wikipedia.org/wiki/Model_checking). Model checkers pull on a massive field of research and they're about applying efficient techniques for exploring program behaviors. While modern model checkers are highly optimized and capable, they are not silver bullets, as they all suffer from the [State Space Explosion Problem](https://en.wikipedia.org/wiki/Combinatorial_explosion). See [this wiki page](https://en.wikipedia.org/wiki/Model_checking#Techniques) for more info. - -Why not use model checking? They require expert knowledge which is hard to onboard, the State Space Explosion Problem can be very real in practice, and the tooling e.g TLA+ is generally not industrial strength in terms of maintainability etc. - -Note that the Apalache team at Informal is working hard to make MBT a powerful practical tool. They have made leaps and bounds in the last year since diff testing began in April 2022. In particular they have created a new programming language called Quint which should be an industrial strength formal specification language. They have also added powerful exploration capabilities (see [::simulate](https://apalache.informal.systems/docs/apalache/running.html?highlight=simulate#running-the-tool)) which combines random exploration with optimized model checker based exploration. - - I recommend checking out [Apalache](https://github.com/informalsystems/apalache) and [Quint](https://github.com/informalsystems/quint) and consulting with Igor. - -## Comparison to Property Based Testing - -Property Based Testing is a loose term for testing properties of your system. Generally the idea is to make API calls using random heuristics and known tricks, and check that the result satisfies properties. Please see [this page](https://github.com/cosmos/interchain-security/blob/danwt/pbt-prototype/tests/pbt/tutorial.md) for a full tutorial on using a golang PBT library. - -~~Why not use property based testing?~~ I suggest using it. See next section. - -## Recommendation going forward - -In the long run I suggest scrapping the existing model and trace, and using property based testing instead. The existing driver can easily be adapted to take input from a property based testing library like [golang's Rapid](https://github.com/flyingmutant/rapid). The properties from `properties.ts` can easily be written in go and tested in go. A model will not be needed at all, only the action generation heuristics. I think PBT will be able to achieve the same or better results without having to maintain the model. - -In the long run I **also** suggest incorporating Informals tools [Apalache](https://github.com/informalsystems/apalache) and [Quint](https://github.com/informalsystems/quint). Please consult with Igor on this. diff --git a/tests/difference/core/driver/setup.go b/tests/difference/core/driver/setup.go deleted file mode 100644 index 7114a3b26a..0000000000 --- a/tests/difference/core/driver/setup.go +++ /dev/null @@ -1,625 +0,0 @@ -package core - -import ( - "bytes" - cryptoEd25519 "crypto/ed25519" - "encoding/json" - "time" - - clienttypes "github.com/cosmos/ibc-go/v7/modules/core/02-client/types" - channeltypes "github.com/cosmos/ibc-go/v7/modules/core/04-channel/types" - commitmenttypes "github.com/cosmos/ibc-go/v7/modules/core/23-commitment/types" - ibctmtypes "github.com/cosmos/ibc-go/v7/modules/light-clients/07-tendermint" - ibctesting "github.com/cosmos/ibc-go/v7/testing" - "github.com/cosmos/ibc-go/v7/testing/mock" - "github.com/stretchr/testify/require" - "github.com/stretchr/testify/suite" - - "github.com/cosmos/cosmos-sdk/baseapp" - codectypes "github.com/cosmos/cosmos-sdk/codec/types" - cryptocodec "github.com/cosmos/cosmos-sdk/crypto/codec" - cosmosEd25519 "github.com/cosmos/cosmos-sdk/crypto/keys/ed25519" - "github.com/cosmos/cosmos-sdk/crypto/keys/secp256k1" - sdk "github.com/cosmos/cosmos-sdk/types" - authtypes "github.com/cosmos/cosmos-sdk/x/auth/types" - banktypes "github.com/cosmos/cosmos-sdk/x/bank/types" - slashingkeeper "github.com/cosmos/cosmos-sdk/x/slashing/keeper" - slashingtypes "github.com/cosmos/cosmos-sdk/x/slashing/types" - stakingkeeper "github.com/cosmos/cosmos-sdk/x/staking/keeper" - stakingtypes "github.com/cosmos/cosmos-sdk/x/staking/types" - - abci "github.com/cometbft/cometbft/abci/types" - tmproto "github.com/cometbft/cometbft/proto/tendermint/types" - tmtypes "github.com/cometbft/cometbft/types" - - appConsumer "github.com/cosmos/interchain-security/v3/app/consumer" - appProvider "github.com/cosmos/interchain-security/v3/app/provider" - icstestingutils "github.com/cosmos/interchain-security/v3/testutil/ibc_testing" - testutil "github.com/cosmos/interchain-security/v3/testutil/integration" - simibc "github.com/cosmos/interchain-security/v3/testutil/simibc" - consumerkeeper "github.com/cosmos/interchain-security/v3/x/ccv/consumer/keeper" - consumertypes "github.com/cosmos/interchain-security/v3/x/ccv/consumer/types" - providerkeeper "github.com/cosmos/interchain-security/v3/x/ccv/provider/keeper" - ccv "github.com/cosmos/interchain-security/v3/x/ccv/types" -) - -type Builder struct { - suite *suite.Suite - path *ibctesting.Path - coordinator *ibctesting.Coordinator - valAddresses []sdk.ValAddress - initState InitState -} - -func (b *Builder) provider() *ibctesting.TestChain { - return b.coordinator.GetChain(ibctesting.GetChainID(0)) -} - -func (b *Builder) consumer() *ibctesting.TestChain { - return b.coordinator.GetChain(ibctesting.GetChainID(1)) -} - -func (b *Builder) providerCtx() sdk.Context { - return b.provider().GetContext() -} - -func (b *Builder) consumerCtx() sdk.Context { - return b.consumer().GetContext() -} - -func (b *Builder) providerStakingKeeper() stakingkeeper.Keeper { - return *b.provider().App.(*appProvider.App).StakingKeeper -} - -func (b *Builder) providerSlashingKeeper() slashingkeeper.Keeper { - return b.provider().App.(*appProvider.App).SlashingKeeper -} - -func (b *Builder) providerKeeper() providerkeeper.Keeper { - return b.provider().App.(*appProvider.App).ProviderKeeper -} - -func (b *Builder) consumerKeeper() consumerkeeper.Keeper { - return b.consumer().App.(*appConsumer.App).ConsumerKeeper -} - -func (b *Builder) providerEndpoint() *ibctesting.Endpoint { - return b.path.EndpointB -} - -func (b *Builder) consumerEndpoint() *ibctesting.Endpoint { - return b.path.EndpointA -} - -func (b *Builder) validator(i int64) sdk.ValAddress { - return b.valAddresses[i] -} - -func (b *Builder) consAddr(i int64) sdk.ConsAddress { - return sdk.ConsAddress(b.validator(i)) -} - -// getValidatorPK returns the validator private key using the given seed index -func (b *Builder) getValidatorPK(seedIx int) mock.PV { - seed := []byte(b.initState.PKSeeds[seedIx]) - return mock.PV{PrivKey: &cosmosEd25519.PrivKey{Key: cryptoEd25519.NewKeyFromSeed(seed)}} //nolint:staticcheck // SA1019: cosmosEd25519.PrivKey is deprecated: PrivKey defines a ed25519 private key. NOTE: ed25519 keys must not be used in SDK apps except in a tendermint validator context. -} - -func (b *Builder) getAppBytesAndSenders( - chainID string, - app ibctesting.TestingApp, - genesis map[string]json.RawMessage, - validators *tmtypes.ValidatorSet, -) ([]byte, []ibctesting.SenderAccount) { - accounts := []authtypes.GenesisAccount{} - balances := []banktypes.Balance{} - senderAccounts := []ibctesting.SenderAccount{} - - // Create genesis accounts. - for i := 0; i < b.initState.MaxValidators; i++ { - pk := secp256k1.GenPrivKey() - acc := authtypes.NewBaseAccount(pk.PubKey().Address().Bytes(), pk.PubKey(), uint64(i), 0) - - // Give enough funds for many delegations - // Extra units are to delegate to extra validators created later - // in order to bond them and still have INITIAL_DELEGATOR_TOKENS remaining - extra := 0 - for j := 0; j < b.initState.NumValidators; j++ { - if b.initState.ValStates.Status[j] != stakingtypes.Bonded { - extra += b.initState.ValStates.Delegation[j] - } - } - amt := uint64(b.initState.InitialDelegatorTokens + extra) - - bal := banktypes.Balance{ - Address: acc.GetAddress().String(), - Coins: sdk.NewCoins(sdk.NewCoin(sdk.DefaultBondDenom, sdk.NewIntFromUint64(amt))), - } - - accounts = append(accounts, acc) - balances = append(balances, bal) - - senderAccount := ibctesting.SenderAccount{ - SenderAccount: acc, - SenderPrivKey: pk, - } - - senderAccounts = append(senderAccounts, senderAccount) - } - - // set genesis accounts - genesisAuth := authtypes.NewGenesisState(authtypes.DefaultParams(), accounts) - genesis[authtypes.ModuleName] = app.AppCodec().MustMarshalJSON(genesisAuth) - - stakingValidators := make([]stakingtypes.Validator, 0, len(validators.Validators)) - delegations := make([]stakingtypes.Delegation, 0, len(validators.Validators)) - - // Sum bonded is needed for BondedPool account - sumBonded := sdk.NewInt(0) - initValPowers := []abci.ValidatorUpdate{} - - for i, val := range validators.Validators { - status := b.initState.ValStates.Status[i] - delegation := b.initState.ValStates.Delegation[i] - extra := b.initState.ValStates.ValidatorExtraTokens[i] - - tokens := sdk.NewInt(int64(delegation + extra)) - b.suite.Require().Equal(status, stakingtypes.Bonded, "All genesis validators should be bonded") - sumBonded = sumBonded.Add(tokens) - // delegator account receives delShares shares - delShares := sdk.NewDec(int64(delegation)) - // validator has additional sumShares due to extra units - sumShares := sdk.NewDec(int64(delegation + extra)) - - pk, err := cryptocodec.FromTmPubKeyInterface(val.PubKey) - require.NoError(b.suite.T(), err) - pkAny, err := codectypes.NewAnyWithValue(pk) - require.NoError(b.suite.T(), err) - - validator := stakingtypes.Validator{ - OperatorAddress: sdk.ValAddress(val.Address).String(), - ConsensusPubkey: pkAny, - Jailed: false, - Status: status, - Tokens: tokens, - DelegatorShares: sumShares, - Description: stakingtypes.Description{}, - UnbondingHeight: int64(0), - UnbondingTime: time.Unix(0, 0).UTC(), - Commission: stakingtypes.NewCommission(sdk.ZeroDec(), sdk.ZeroDec(), sdk.ZeroDec()), - MinSelfDelegation: sdk.ZeroInt(), - } - - stakingValidators = append(stakingValidators, validator) - - // Store delegation from the model delegator account - delegations = append(delegations, stakingtypes.NewDelegation(accounts[0].GetAddress(), val.Address.Bytes(), delShares)) - // Remaining delegation is from extra account - delegations = append(delegations, stakingtypes.NewDelegation(accounts[1].GetAddress(), val.Address.Bytes(), sumShares.Sub(delShares))) - - // add initial validator powers so consumer InitGenesis runs correctly - pub, _ := val.ToProto() - initValPowers = append(initValPowers, abci.ValidatorUpdate{ - Power: val.VotingPower, - PubKey: pub.PubKey, - }) - } - - bondDenom := sdk.DefaultBondDenom - genesisStaking := stakingtypes.GenesisState{} - genesisConsumer := consumertypes.GenesisState{} - - if genesis[stakingtypes.ModuleName] != nil { - // If staking module genesis already exists - app.AppCodec().MustUnmarshalJSON(genesis[stakingtypes.ModuleName], &genesisStaking) - bondDenom = genesisStaking.Params.BondDenom - } - - if genesis[consumertypes.ModuleName] != nil { - app.AppCodec().MustUnmarshalJSON(genesis[consumertypes.ModuleName], &genesisConsumer) - genesisConsumer.Provider.InitialValSet = initValPowers - genesisConsumer.Params.Enabled = true - genesis[consumertypes.ModuleName] = app.AppCodec().MustMarshalJSON(&genesisConsumer) - } - - // Set model parameters - genesisStaking.Params.MaxEntries = uint32(b.initState.MaxEntries) - genesisStaking.Params.MaxValidators = uint32(b.initState.MaxValidators) - genesisStaking.Params.UnbondingTime = b.initState.UnbondingP - genesisStaking = *stakingtypes.NewGenesisState(genesisStaking.Params, stakingValidators, delegations) - genesis[stakingtypes.ModuleName] = app.AppCodec().MustMarshalJSON(&genesisStaking) - - // add bonded amount to bonded pool module account - balances = append(balances, banktypes.Balance{ - Address: authtypes.NewModuleAddress(stakingtypes.BondedPoolName).String(), - Coins: sdk.Coins{sdk.NewCoin(bondDenom, sumBonded)}, - }) - - // add unbonded amount - balances = append(balances, banktypes.Balance{ - Address: authtypes.NewModuleAddress(stakingtypes.NotBondedPoolName).String(), - Coins: sdk.Coins{sdk.NewCoin(bondDenom, sdk.ZeroInt())}, - }) - - // update total funds supply - genesisBank := banktypes.NewGenesisState(banktypes.DefaultGenesisState().Params, balances, sdk.NewCoins(), []banktypes.Metadata{}, []banktypes.SendEnabled{}) - genesis[banktypes.ModuleName] = app.AppCodec().MustMarshalJSON(genesisBank) - - stateBytes, err := json.MarshalIndent(genesis, "", " ") - require.NoError(b.suite.T(), err) - - return stateBytes, senderAccounts -} - -func (b *Builder) newChain( - coord *ibctesting.Coordinator, - appInit icstestingutils.AppIniter, - chainID string, - validators *tmtypes.ValidatorSet, - signers map[string]tmtypes.PrivValidator, -) *ibctesting.TestChain { - app, genesis := appInit() - - baseapp.SetChainID(chainID)(app.GetBaseApp()) - - stateBytes, senderAccounts := b.getAppBytesAndSenders(chainID, app, genesis, validators) - - app.InitChain( - abci.RequestInitChain{ - ChainId: chainID, - Validators: []abci.ValidatorUpdate{}, - ConsensusParams: b.initState.ConsensusParams, - AppStateBytes: stateBytes, - }, - ) - - app.Commit() - - app.BeginBlock( - abci.RequestBeginBlock{ - Header: tmproto.Header{ - ChainID: chainID, - Height: app.LastBlockHeight() + 1, - AppHash: app.LastCommitID().Hash, - ValidatorsHash: validators.Hash(), - NextValidatorsHash: validators.Hash(), - }, - }, - ) - - chain := &ibctesting.TestChain{ - T: b.suite.T(), - Coordinator: coord, - ChainID: chainID, - App: app, - CurrentHeader: tmproto.Header{ - ChainID: chainID, - Height: 1, - Time: coord.CurrentTime.UTC(), - }, - QueryServer: app.GetIBCKeeper(), - TxConfig: app.GetTxConfig(), - Codec: app.AppCodec(), - Vals: validators, - NextVals: validators, - Signers: signers, - SenderPrivKey: senderAccounts[0].SenderPrivKey, - SenderAccount: senderAccounts[0].SenderAccount, - SenderAccounts: senderAccounts, - } - - coord.CommitBlock(chain) - - return chain -} - -func (b *Builder) createValidators() (*tmtypes.ValidatorSet, map[string]tmtypes.PrivValidator, []sdk.ValAddress) { - addresses := []sdk.ValAddress{} - signers := map[string]tmtypes.PrivValidator{} - validators := []*tmtypes.Validator{} - - for i, power := range b.initState.ValStates.Tokens { - if b.initState.ValStates.Status[i] != stakingtypes.Bonded { - continue - } - privVal := b.getValidatorPK(i) - - pubKey, err := privVal.GetPubKey() - require.NoError(b.suite.T(), err) - - // Compute address - addr, err := sdk.ValAddressFromHex(pubKey.Address().String()) - require.NoError(b.suite.T(), err) - addresses = append(addresses, addr) - - // Save signer - signers[pubKey.Address().String()] = privVal - - // Save validator with power - validators = append(validators, tmtypes.NewValidator(pubKey, int64(power))) - } - - return tmtypes.NewValidatorSet(validators), signers, addresses -} - -func (b *Builder) createProviderAndConsumer() { - coordinator := ibctesting.NewCoordinator(b.suite.T(), 0) - - // Create validators - validators, signers, addresses := b.createValidators() - // Create provider - coordinator.Chains[ibctesting.GetChainID(0)] = b.newChain(coordinator, icstestingutils.ProviderAppIniter, ibctesting.GetChainID(0), validators, signers) - // Create consumer, using the same validators. - valUpdates := testutil.ToValidatorUpdates(b.suite.T(), validators) - coordinator.Chains[ibctesting.GetChainID(1)] = b.newChain(coordinator, icstestingutils.ConsumerAppIniter(valUpdates), ibctesting.GetChainID(1), validators, signers) - - b.coordinator = coordinator - b.valAddresses = addresses -} - -// setSigningInfos sets the validator signing info in the provider Slashing module -func (b *Builder) setSigningInfos() { - for i := 0; i < b.initState.NumValidators; i++ { - info := slashingtypes.NewValidatorSigningInfo( - b.consAddr(int64(i)), - b.provider().CurrentHeader.GetHeight(), - 0, - time.Unix(0, 0), - false, - 0, - ) - b.providerSlashingKeeper().SetValidatorSigningInfo(b.providerCtx(), b.consAddr(int64(i)), info) - } -} - -// Checks that the lexicographic ordering of validator addresses as computed in -// the staking module match the ordering of validators in the model. -func (b *Builder) ensureValidatorLexicographicOrderingMatchesModel() { - check := func(lesser, greater sdk.ValAddress) { - lesserV, _ := b.providerStakingKeeper().GetValidator(b.providerCtx(), lesser) - greaterV, _ := b.providerStakingKeeper().GetValidator(b.providerCtx(), greater) - lesserKey := stakingtypes.GetValidatorsByPowerIndexKey(lesserV, sdk.DefaultPowerReduction) - greaterKey := stakingtypes.GetValidatorsByPowerIndexKey(greaterV, sdk.DefaultPowerReduction) - // The result will be 0 if a==b, -1 if a < b, and +1 if a > b. - res := bytes.Compare(lesserKey, greaterKey) - // Confirm that validator precedence is the same in code as in model - b.suite.Require().Equal(-1, res) - } - - // In order to match the model to the system under test it is necessary - // to enforce a strict lexicographic ordering on the validators. - // We must do this because the staking module will break ties when - // deciding the active validator set by comparing addresses lexicographically. - // Thus, we assert here that the ordering in the model matches the ordering - // in the SUT. - for i := range b.valAddresses[:len(b.valAddresses)-1] { - // validators are chosen sorted descending in the staking module - greater := b.valAddresses[i] - lesser := b.valAddresses[i+1] - check(lesser, greater) - } -} - -// delegate is used to delegate tokens to newly created -// validators in the setup process. -func (b *Builder) delegate(del int, val sdk.ValAddress, amt int64) { - d := b.provider().SenderAccounts[del].SenderAccount.GetAddress() - coins := sdk.NewCoin(sdk.DefaultBondDenom, sdk.NewInt(amt)) - msg := stakingtypes.NewMsgDelegate(d, val, coins) - providerStaking := b.providerStakingKeeper() - pskServer := stakingkeeper.NewMsgServerImpl(&providerStaking) - _, err := pskServer.Delegate(sdk.WrapSDKContext(b.providerCtx()), msg) - b.suite.Require().NoError(err) -} - -// addValidatorToStakingModule creates an additional validator with zero commission -// and zero tokens (zero voting power). -func (b *Builder) addValidatorToStakingModule(privVal mock.PV) { - coin := sdk.NewCoin(sdk.DefaultBondDenom, sdk.NewInt(0)) - - pubKey, err := privVal.GetPubKey() - require.NoError(b.suite.T(), err) - - // Compute address - addr, err := sdk.ValAddressFromHex(pubKey.Address().String()) - require.NoError(b.suite.T(), err) - - sdkPK, err := cryptocodec.FromTmPubKeyInterface(pubKey) - require.NoError(b.suite.T(), err) - - msg, err := stakingtypes.NewMsgCreateValidator( - addr, - sdkPK, - coin, - stakingtypes.Description{}, - stakingtypes.NewCommissionRates(sdk.ZeroDec(), sdk.ZeroDec(), sdk.ZeroDec()), - sdk.ZeroInt()) - b.suite.Require().NoError(err) - providerStaking := b.providerStakingKeeper() - pskServer := stakingkeeper.NewMsgServerImpl(&providerStaking) - _, _ = pskServer.CreateValidator(sdk.WrapSDKContext(b.providerCtx()), msg) -} - -func (b *Builder) addExtraProviderValidators() { - for i, status := range b.initState.ValStates.Status { - if status == stakingtypes.Unbonded { - privVal := b.getValidatorPK(i) - b.addValidatorToStakingModule(privVal) - pubKey, err := privVal.GetPubKey() - require.NoError(b.suite.T(), err) - - addr, err := sdk.ValAddressFromHex(pubKey.Address().String()) - require.NoError(b.suite.T(), err) - - b.valAddresses = append(b.valAddresses, addr) - b.provider().Signers[pubKey.Address().String()] = privVal - b.consumer().Signers[pubKey.Address().String()] = privVal - } - } - - b.setSigningInfos() - - b.ensureValidatorLexicographicOrderingMatchesModel() - - for i := range b.initState.ValStates.Status { - if b.initState.ValStates.Status[i] == stakingtypes.Unbonded { - del := b.initState.ValStates.Delegation[i] - extra := b.initState.ValStates.ValidatorExtraTokens[i] - b.delegate(0, b.validator(int64(i)), int64(del)) - b.delegate(1, b.validator(int64(i)), int64(extra)) - } - } -} - -func (b *Builder) setProviderParams() { - // Set the slash factors on the provider to match the model - slash := b.providerSlashingKeeper().GetParams(b.providerCtx()) - slash.SlashFractionDoubleSign = b.initState.SlashDoublesign - slash.SlashFractionDowntime = b.initState.SlashDowntime - err := b.providerSlashingKeeper().SetParams(b.providerCtx(), slash) - if err != nil { - panic(err) - } - // Set the throttle factors - throttle := b.providerKeeper().GetParams(b.providerCtx()) - throttle.SlashMeterReplenishFraction = "1.0" - throttle.SlashMeterReplenishPeriod = time.Second * 1 - b.providerKeeper().SetParams(b.providerCtx(), throttle) -} - -func (b *Builder) configurePath() { - b.path = ibctesting.NewPath(b.consumer(), b.provider()) - b.consumerEndpoint().ChannelConfig.PortID = ccv.ConsumerPortID - b.providerEndpoint().ChannelConfig.PortID = ccv.ProviderPortID - b.consumerEndpoint().ChannelConfig.Version = ccv.Version - b.providerEndpoint().ChannelConfig.Version = ccv.Version - b.consumerEndpoint().ChannelConfig.Order = channeltypes.ORDERED - b.providerEndpoint().ChannelConfig.Order = channeltypes.ORDERED -} - -func (b *Builder) createProvidersLocalClient() { - // Configure and create the consumer Client - tmCfg := b.providerEndpoint().ClientConfig.(*ibctesting.TendermintConfig) - tmCfg.UnbondingPeriod = b.initState.UnbondingC - tmCfg.TrustingPeriod = b.initState.Trusting - tmCfg.MaxClockDrift = b.initState.MaxClockDrift - err := b.providerEndpoint().CreateClient() - b.suite.Require().NoError(err) - // Create the Consumer chain ID mapping in the provider state - b.providerKeeper().SetConsumerClientId(b.providerCtx(), b.consumer().ChainID, b.providerEndpoint().ClientID) -} - -func (b *Builder) createConsumersLocalClientGenesis() *ibctmtypes.ClientState { - tmCfg := b.consumerEndpoint().ClientConfig.(*ibctesting.TendermintConfig) - tmCfg.UnbondingPeriod = b.initState.UnbondingP - tmCfg.TrustingPeriod = b.initState.Trusting - tmCfg.MaxClockDrift = b.initState.MaxClockDrift - - return ibctmtypes.NewClientState( - b.provider().ChainID, tmCfg.TrustLevel, tmCfg.TrustingPeriod, tmCfg.UnbondingPeriod, tmCfg.MaxClockDrift, - b.provider().LastHeader.GetHeight().(clienttypes.Height), commitmenttypes.GetSDKSpecs(), - []string{"upgrade", "upgradedIBCState"}, - ) -} - -func (b *Builder) createConsumerGenesis(client *ibctmtypes.ClientState) *consumertypes.GenesisState { - providerConsState := b.provider().LastHeader.ConsensusState() - - valUpdates := tmtypes.TM2PB.ValidatorUpdates(b.provider().Vals) - params := ccv.NewParams( - true, - 1000, // ignore distribution - "", // ignore distribution - "", // ignore distribution - ccv.DefaultCCVTimeoutPeriod, - ccv.DefaultTransferTimeoutPeriod, - ccv.DefaultConsumerRedistributeFrac, - ccv.DefaultHistoricalEntries, - b.initState.UnbondingC, - "0", // disable soft opt-out - []string{}, - []string{}, - ccv.DefaultRetryDelayPeriod, - ) - return consumertypes.NewInitialGenesisState(client, providerConsState, valUpdates, params) -} - -// The state of the data returned is equivalent to the state of two chains -// after a full handshake, but the precise order of steps used to reach the -// state does not necessarily mimic the order of steps that happen in a -// live scenario. -func GetZeroState( - suite *suite.Suite, - initState InitState, -) (path *ibctesting.Path, addrs []sdk.ValAddress, heightLastCommitted, timeLastCommitted int64) { - b := Builder{initState: initState, suite: suite} - - b.createProviderAndConsumer() - - b.setProviderParams() - - // This is the simplest way to initialize the slash meter - // after a change to the param value. - b.providerKeeper().InitializeSlashMeter(b.providerCtx()) - - b.addExtraProviderValidators() - - // Commit the additional validators - b.coordinator.CommitBlock(b.provider()) - - b.configurePath() - - // Create a client for the provider chain to use, using ibc go testing. - b.createProvidersLocalClient() - - // Manually create a client for the consumer chain to and bootstrap - // via genesis. - clientState := b.createConsumersLocalClientGenesis() - - consumerGenesis := b.createConsumerGenesis(clientState) - - b.consumerKeeper().InitGenesis(b.consumerCtx(), consumerGenesis) - - // Client ID is set in InitGenesis and we treat it as a block box. So - // must query it to use it with the endpoint. - clientID, _ := b.consumerKeeper().GetProviderClientID(b.consumerCtx()) - b.consumerEndpoint().ClientID = clientID - - // Handshake - b.coordinator.CreateConnections(b.path) - b.coordinator.CreateChannels(b.path) - - // Usually the consumer sets the channel ID when it receives a first VSC packet - // to the provider. For testing purposes, we can set it here. This is because - // we model a blank slate: a provider and consumer that have fully established - // their channel, and are ready for anything to happen. - b.consumerKeeper().SetProviderChannel(b.consumerCtx(), b.consumerEndpoint().ChannelID) - - // Catch up consumer height to provider height. The provider was one ahead - // from committing additional validators. - simibc.EndBlock(b.consumer(), func() {}) - - simibc.BeginBlock(b.consumer(), initState.BlockInterval) - simibc.BeginBlock(b.provider(), initState.BlockInterval) - - // Commit a block on both chains, giving us two committed headers from - // the same time and height. This is the starting point for all our - // data driven testing. - lastProviderHeader, _ := simibc.EndBlock(b.provider(), func() {}) - lastConsumerHeader, _ := simibc.EndBlock(b.consumer(), func() {}) - - // Want the height and time of last COMMITTED block - heightLastCommitted = b.provider().CurrentHeader.Height - timeLastCommitted = b.provider().CurrentHeader.Time.Unix() - - // Get ready to update clients. - simibc.BeginBlock(b.provider(), initState.BlockInterval) - simibc.BeginBlock(b.consumer(), initState.BlockInterval) - - // Update clients to the latest header. Now everything is ready to go! - // Ignore errors for brevity. Everything is checked in Assumptions test. - _ = simibc.UpdateReceiverClient(b.consumerEndpoint(), b.providerEndpoint(), lastConsumerHeader) - _ = simibc.UpdateReceiverClient(b.providerEndpoint(), b.consumerEndpoint(), lastProviderHeader) - - return b.path, b.valAddresses, heightLastCommitted, timeLastCommitted -} diff --git a/tests/difference/core/model/src/common.ts b/tests/difference/core/model/src/common.ts deleted file mode 100644 index 1ff002e6fc..0000000000 --- a/tests/difference/core/model/src/common.ts +++ /dev/null @@ -1,244 +0,0 @@ -type Chain = 'provider' | 'consumer'; - -type Validator = number; - -enum Status { - BONDED = 'bonded', - UNBONDING = 'unbonding', - UNBONDED = 'unbonded', -} - -/** - * All the data needed to represent an undelegation occurring - * in the sdk staking module. - */ -interface Undelegation { - val: Validator; - creationHeight: number; - completionTime: number; - balance: number; - initialBalance: number; - onHold: boolean; - opID: number; - willBeProcessedByStakingModule: boolean; -} - -/** - * All the data needed to represent an unbonding validator - * occurring in the sdk staking module. - */ -interface Unval { - val: Validator; - unbondingHeight: number; - unbondingTime: number; - onHold: boolean; - opID: number; -} - -/** - * A representation of the validator set change data structure - * sent from the provider to the consumer. - */ -interface Vsc { - vscID: number; - updates: Record; - downtimeSlashAcks: number[]; -} - -/** - * Validator Set Change Maturity notification data structure - */ -interface VscMaturity { - vscID: number; -} - -/** - * A representation of the packet sent by the consumer to the - * provider when slashing. - */ -interface ConsumerInitiatedSlashPacketData { - val: Validator; - vscID: number; - isDowntime: boolean; -} - -type PacketData = Vsc | VscMaturity | ConsumerInitiatedSlashPacketData; - -interface Packet { - data: PacketData; - // Necessary to deduce a partial order between the provider - // and consumer chain, as dictated by packet sending and - // receiving. - sendHeight: number; -} - -interface Action { - // A tag to identify the action type - kind: string; -} - -type Delegate = { - kind: string; - val: Validator; // Validator to delegate to - amt: number; // Amount to delegate -}; - -type Undelegate = { - kind: string; - val: Validator; // Validator to undelegate from - amt: number; // Max amount to undelegate -}; - -type ConsumerSlash = { - kind: string; - val: Validator; // Validator to slash - infractionHeight: number; // Height of the infraction on consumer - isDowntime: boolean; // Whether the slash is for downtime (or double sign) -}; - -type UpdateClient = { - kind: string; - // The chain who will receive the light client header TX - // (details not modelled explicitly) - chain: Chain; -}; - -type Deliver = { - kind: string; - // The chain who will receive packets which have been sent to it - chain: Chain; - // The MAX number of packets to deliver, from those available - numPackets: number; -}; - -type EndAndBeginBlock = { - kind: string; - // Which chain will end and begin a block? - chain: Chain; -}; - -/** - * A snapshot of a portion of the model state at the time - * that a block is committed on one of the chains. - * - * The state is exactly the state that is needed to check - * system properties. - */ -type PropertiesSystemState = { - h: Record; - t: Record; - tokens: number[]; - status: Status[]; - undelegationQ: Undelegation[]; - delegatorTokens: number; - consumerPower: (number | null)[]; - vscIDtoH: Record; - hToVscID: Record; -}; - -/** - * Record a snapshot of both chain states at the height and timestamp - * of a committed block for a chain. - */ -interface CommittedBlock { - chain: Chain; - propertiesSystemState: PropertiesSystemState; -} - -/** - * A partial snapshot of model state. It is the state - * needed to check that the SUT is behaving correctly - * when compared to the model. - * - * NOTE: This is not a complete snapshot of the model state - * because not all of the data is needed, and the space - * needed adds up quickly. Also, a concise representation - * makes traces much more readable and easier to debug - * by inspection. - * - * Fields are optional because not of the state is interesting - * for all of the possible actions. This could be achieved - * with a union type. - */ -interface PartialState { - h?: number; // Chain local height - t?: number; // Chain local timestamp - tokens?: number[]; - delegation?: number[]; - delegatorTokens?: number; - jailed?: (number | null)[]; - status?: Status[]; - consumerPower?: (number | null)[]; - outstandingDowntime?: boolean[]; -} - -interface TraceAction { - ix: number; - action: Action; - partialState: PartialState; -} - -/** - * The initial state of a new model instances. - * - * See model.ts for details of each field. - */ -type ModelInitState = { - h: Record; - t: Record; - staking: { - delegation: number[]; - tokens: number[]; - status: Status[]; - undelegationQ: Undelegation[]; - validatorQ: Unval[]; - jailed: (number | null)[]; - delegatorTokens: number; - opID: number; - changes: Record; - lastVals: Validator[]; - lastTokens: number[]; - }; - ccvC: { - hToVscID: Record; - pendingChanges: Record[]; - maturingVscs: Map; - outstandingDowntime: boolean[]; - consumerPower: (number | null)[]; - }; - ccvP: { - initialHeight: number; - vscID: number; - vscIDtoH: Record; - vscIDtoOpIDs: Map; - downtimeSlashAcks: number[]; - tombstoned: boolean[]; - matureUnbondingOps: number[]; - queue: (ConsumerInitiatedSlashPacketData | VscMaturity)[]; - }; -}; - -export { - ModelInitState, - PartialState, - TraceAction, - CommittedBlock, - Chain, - Validator, - Action, - Delegate, - Undelegate, - ConsumerSlash, - UpdateClient, - Deliver, - EndAndBeginBlock, - PropertiesSystemState, - Status, - Undelegation, - Unval, - Vsc, - VscMaturity, - ConsumerInitiatedSlashPacketData, - PacketData, - Packet, -}; diff --git a/tests/difference/core/model/src/properties.ts b/tests/difference/core/model/src/properties.ts deleted file mode 100644 index c7c035d689..0000000000 --- a/tests/difference/core/model/src/properties.ts +++ /dev/null @@ -1,359 +0,0 @@ -import { strict as assert } from 'node:assert'; -import _ from 'underscore'; -import { - P, - C, - UNBONDING_SECONDS_C, - NUM_VALIDATORS, -} from './constants.js'; -import { - PropertiesSystemState, - Chain, - CommittedBlock, - Status, -} from './common.js'; - -/** - * Queries and data structures in this file are currently naive - * and below optimal. - * Partial order queries and other total order queries in - * bond-based-consumer-voting-power can be done with binary searches. - */ - -/** - * Data structure used to store a partial order of blocks. The partial order - * is induced by packet delivery for blocks on different chains, and by height - * for blocks on the same chain. - * See https://github.com/cosmos/ibc/blob/main/spec/app/ics-028-cross-chain-validation/system_model_and_properties.md#system-properties - */ -class PartialOrder { - // map chain -> block height in chain -> block height in counterparty chain - greatestPred: Record> = { - provider: new Map(), - consumer: new Map(), - }; - // map chain -> block height in chain -> block height in counterparty chain - leastSucc: Record> = { - provider: new Map(), - consumer: new Map(), - }; - - /** - * Mark the delivery of a packet. Induces a partial order between blocks - * on different chains. - * @param receiverChain chain receiving packet - * @param sendHeight send height on sending chain - * @param receiveHeight receive height on receiving chain - */ - deliver = ( - receiverChain: Chain, - sendHeight: number, - receiveHeight: number, - ) => { - let h = sendHeight; - if (this.greatestPred[receiverChain].has(receiveHeight)) { - h = Math.max( - this.greatestPred[receiverChain].get(receiveHeight) as number, - h, - ); - } - this.greatestPred[receiverChain].set(receiveHeight, h); - const senderChain = receiverChain === P ? C : P; - h = receiveHeight; - if (this.leastSucc[senderChain].has(sendHeight)) { - h = Math.min( - this.leastSucc[senderChain].get(sendHeight) as number, - h, - ); - } - this.leastSucc[senderChain].set(sendHeight, h); - }; - - /** - * @param chain chain of block - * @param height height of block - * @returns Returns the height greatest predecessor block on the counterparty - * chain if it exists, else undefined. - */ - getGreatestPred = ( - chain: Chain, - height: number, - ): number | undefined => { - const it = this.greatestPred[chain].keys(); - let bestH = -1; - let bestV = -1; - let result = it.next(); - while (!result.done) { - const h = result.value; - if (bestH < h && h <= height) { - bestH = h; - bestV = this.greatestPred[chain].get(h) as number; - } - result = it.next(); - } - if (bestV === -1) { - // No greatest predecessor exists. - return; - } - return bestV; - }; - - /** - * - * @param chain chain of block - * @param height height of block - * @returns Returns the height of the least successor block on the counterparty - * chain if it exists, else undefined. - */ - getLeastSucc = (chain: Chain, height: number): number | undefined => { - const it = this.leastSucc[chain].keys(); - let bestH = 100000000000000; // Infinity - let bestAnswer = -1; - let result = it.next(); - while (!result.done) { - const h = result.value; - if (h < bestH && height <= h) { - bestH = h; - bestAnswer = this.leastSucc[chain].get(h) as number; - } - result = it.next(); - } - if (bestAnswer === -1) { - // No least successor exists. - return; - } - return bestAnswer; - }; -} - -class BlockHistory { - partialOrder = new PartialOrder(); - blocks: Record> = { - provider: new Map(), - consumer: new Map(), - }; - /** - * Mark state as permanently committed to the blockchain. - * @param chain - * @param propertiesSystemState - */ - commitBlock = (chain: Chain, propertiesSystemState: PropertiesSystemState) => { - const h = propertiesSystemState.h[chain]; - const b: CommittedBlock = { - chain, - propertiesSystemState: propertiesSystemState, - }; - this.blocks[chain].set(h, b); - }; -} - -function sum(arr: number[]): number { - return arr.reduce((sum: number, x: number) => sum + x, 0); -} - -/** - * Is the total fund value in the system constant? - * It only makes sense to check this if slashing with non-zero - * slash factors never occurs, because slashing with non-zero - * slash factors burns funds. - * - * @param hist A history of blocks. - * @returns Is the property satisfied? - */ -function stakingWithoutSlashing(hist: BlockHistory): boolean { - const blocks = Array.from(hist.blocks[P].entries()) - .sort((a, b) => a[0] - b[0]) - .map((e) => e[1]) - .map((b) => b.propertiesSystemState); - - function value(e: PropertiesSystemState) { - let x = e.delegatorTokens; - x += sum(e.tokens); - x += sum(e.undelegationQ.map((e) => e.balance)); - return x; - } - - const v = value(blocks[0]); - for (let i = 1; i < blocks.length; i++) { - if (value(blocks[i]) !== v) { - return false; - } - } - return true; -} - -/** - * Checks the validator set replication property as defined - * https://github.com/cosmos/ibc/blob/main/spec/app/ics-028-cross-chain-validation/system_model_and_properties.md#system-properties - * - * @param hist A history of blocks. - * @returns Is the property satisfied? - */ -function validatorSetReplication(hist: BlockHistory): boolean { - const blocks = hist.blocks; - let good = true; - - // Each committed block on the consumer chain has a last vscID - // received that informs the validator set at the NEXT height. - // Thus, on every received VSCPacket with vscID at height H, - // the consumer sets hToVscID[H+1] to vscID. - // - // The consumer valset is exactly the valset on the provider - // at the NEXT height after the vscID was sent. - // Thus, on every sent VSCPacket with vscID at height H, - // the provider sets vscIDtoH[vscID] to H+1 - // - // As a result, for every height hC on the consumer, the active - // valset was last updated by the VSCPacket with ID vscID = hToVscID[hc]. - // This packet was sent by the provider at height hP-1, with hP = vscIDtoH[vscID]. - // This means that the consumer valset at height hC MUST match - // the provider valset at height hP. - // - // We compare these valsets, which are committed in blocks - // hC-1 and hP-1, respectively (the valset is always used at the NEXT height). - for (const [hC, b] of blocks[C]) { - if (hC < 1) { - // The model starts at consumer height 0, so there is - // no committed block at height - 1. This means it does - // not make sense to try to check the property for height 0. - continue - } - const snapshotC = b.propertiesSystemState; - // Get the vscid of the last update which dictated - // the consumer valset valsetC committed at hC-1 - const vscid = snapshotC.hToVscID[hC]; - // The VSU packet was sent at height hP-1 - const hP = snapshotC.vscIDtoH[vscid]; - // Compare the validator sets at hC-1 and hP-1 - const valsetC = blocks[C].get(hC - 1)!.propertiesSystemState.consumerPower; - // The provider set is implicitly defined by the status and tokens (power) - if (hP < 1) { - // The model starts at provider height 0, so there is - // no committed block at height - 1. This means it does not - // make sense to try to check the property for height 0. - continue - } - const snapshotP = blocks[P].get(hP - 1)!.propertiesSystemState; - const statusP = snapshotP.status; - const tokensP = snapshotP.tokens; - assert(valsetC.length === statusP.length, 'this should never happen.'); - assert(valsetC.length === tokensP.length, 'this should never happen.'); - valsetC.forEach((power, i) => { - if (power !== null) { // null means the validator is not in the set - // Check that the consumer power is strictly equal to the provider power - good = good && (tokensP[i] === power); - } - }) - statusP.forEach((status, i) => { - if (status === Status.BONDED) { - const power = tokensP[i]; - // Check that the consumer power is strictly equal to the provider power - good = good && (valsetC[i] === power); - } - else { - // Ensure that the consumer validator set does not contain a non-bonded validator - good = good && (valsetC[i] === null); - } - }) - - } - return good; -} - -/** - * Checks the bond-based consumer voting power property as defined - * in https://github.com/cosmos/ibc/blob/main/spec/app/ics-028-cross-chain-validation/system_model_and_properties.md#system-properties - * but modified to account for finite executions and always zero slash factors. - * - * @param hist A history of blocks. - * @returns Is the property satisfied? - */ -function bondBasedConsumerVotingPower(hist: BlockHistory): boolean { - const partialOrder = hist.partialOrder; - const blocks = hist.blocks; - /** - * @param block to compute validator voting powers for - * @param hp is the earliest height for unbondings to account for - * @returns burnable voting power for each validator on the Provider chain - */ - function powerProvider(block: CommittedBlock, hp: number): number[] { - return _.range(NUM_VALIDATORS).map((i) => { - let x = 0; - if (block.propertiesSystemState.status[i] !== Status.UNBONDED) { - x += block.propertiesSystemState.tokens[i]; - } - x += sum( - block.propertiesSystemState.undelegationQ - .filter((e) => e.val === i) - .filter((e) => hp <= e.creationHeight) - .map((e) => e.initialBalance), - ); - return x; - }); - } - function powerConsumer(block: CommittedBlock) { - return block.propertiesSystemState.consumerPower; - } - function inner(hc: number): boolean { - const hp = partialOrder.getGreatestPred(C, hc); - assert(hp !== undefined, 'this should never happen.'); - function getHC_() { - const tsHC = (blocks[C].get(hc) as CommittedBlock).propertiesSystemState - .t[C]; - // Get earliest height on consumer - // that a VSC received at hc could mature - const heights = Array.from(blocks[C].keys()).sort((a, b) => a - b); - for (let i = 0; i < heights.length; i++) { - const hc_ = heights[i]; - if ( - tsHC + UNBONDING_SECONDS_C <= - (blocks[C].get(hc_) as CommittedBlock).propertiesSystemState.t[C] - ) { - return hc_; - } - } - return undefined; - } - const hc_ = getHC_(); - let hp_ = undefined; - if (hc_ !== undefined) { - hp_ = partialOrder.getLeastSucc(C, hc_); - } - let limit = Math.max(...Array.from(blocks[P].keys())) + 1; - if (hp_ !== undefined) { - // If provider receives maturation - // only check property up to and not including - // the block at which received. - limit = hp_; - } - for (let h = hp; h < limit; h++) { - for (let i = 0; i < NUM_VALIDATORS; i++) { - const powerP = powerProvider( - blocks[P].get(h) as CommittedBlock, - hp + 1, - ); - const powerC = powerConsumer(blocks[C].get(hc) as CommittedBlock); - if (powerC[i] !== null) { - if (powerP[i] < (powerC[i] as number)) { - return false; - } - } - } - } - return true; - } - return _.reduce( - Array.from(blocks[C].keys()), - (good, hc) => good && inner(hc), - true, - ); -} - -export { - PartialOrder, - CommittedBlock, - BlockHistory, - stakingWithoutSlashing, - bondBasedConsumerVotingPower, - validatorSetReplication, -}; From 73ba96f3111d09dd41326e490a85950b9515b06c Mon Sep 17 00:00:00 2001 From: Philip Offtermatt Date: Fri, 15 Dec 2023 11:36:23 +0100 Subject: [PATCH 109/111] Minor fixes based on PR comments --- tests/mbt/driver/core.go | 7 ++----- tests/mbt/driver/model_viewer.go | 6 +++--- 2 files changed, 5 insertions(+), 8 deletions(-) diff --git a/tests/mbt/driver/core.go b/tests/mbt/driver/core.go index c98ee3335c..9fe803b2d0 100644 --- a/tests/mbt/driver/core.go +++ b/tests/mbt/driver/core.go @@ -123,8 +123,7 @@ func (s *Driver) consumerPower(i int64, chain ChainId) (int64, error) { return v.Power, nil } -// consumerTokens returns the number of tokens that the validator with -// id (ix) i has delegated to it in total on the provider chain +// providerPower returns the power(=number of bonded tokens) of the i-th validator on the provider. func (s *Driver) providerPower(i int64) (int64, error) { v, found := s.providerStakingKeeper().GetValidator(s.ctx(PROVIDER), s.validator(i)) if !found { @@ -181,9 +180,8 @@ func (s *Driver) packetQueue(sender, receiver ChainId) []simibc.Packet { res, ok := outboxPackets[string(sender)] if !ok { return []simibc.Packet{} - } else { - return res } + return res } func (s *Driver) getStateString() string { @@ -345,7 +343,6 @@ func (s *Driver) endAndBeginBlock(chain ChainId, timeAdvancement time.Duration) } func (s *Driver) runningConsumers() []providertypes.Chain { - // consumers that are still consumers on the provider consumersOnProvider := s.providerKeeper().GetAllConsumerChains(s.providerCtx()) consumersWithIntactChannel := make([]providertypes.Chain, 0) diff --git a/tests/mbt/driver/model_viewer.go b/tests/mbt/driver/model_viewer.go index 9976a40980..ed090b2b86 100644 --- a/tests/mbt/driver/model_viewer.go +++ b/tests/mbt/driver/model_viewer.go @@ -85,9 +85,9 @@ func GetSendingTimeForPacket(packetExpr itf.MapExprType) int64 { func VscSendTimestamps(curStateExpr itf.MapExprType, consumer string) []int64 { sentVscPackets := ProviderState(curStateExpr)["sentVscPacketsToConsumer"].Value.(itf.MapExprType)[consumer].Value.(itf.ListExprType) - res := make([]int64, 0) - for _, packetExpr := range sentVscPackets { - res = append(res, GetSendingTimeForPacket(packetExpr.Value.(itf.MapExprType))) + res := make([]int64, len(sentVscPackets)) + for i, packetExpr := range sentVscPackets { + res[i] = GetSendingTimeForPacket(packetExpr.Value.(itf.MapExprType)) } return res } From 44e61452e4a4b381859dd30de181532f7947d914 Mon Sep 17 00:00:00 2001 From: Philip Offtermatt Date: Mon, 18 Dec 2023 11:46:03 +0100 Subject: [PATCH 110/111] Make timedout status a const --- tests/mbt/driver/mbt_test.go | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/tests/mbt/driver/mbt_test.go b/tests/mbt/driver/mbt_test.go index 409a74e40c..4bf355e9e1 100644 --- a/tests/mbt/driver/mbt_test.go +++ b/tests/mbt/driver/mbt_test.go @@ -24,6 +24,8 @@ import ( const verbose = false +const TIMEDOUT_STATUS = "timedout" + // keep some interesting statistics var stats = Stats{} @@ -299,7 +301,7 @@ func RunItfTrace(t *testing.T, path string) { // delivering the packet should give an error // if the consumer is timed out in the model var expectError bool - if ConsumerStatus(currentModelState, consumerChain) == "timedout" { + if ConsumerStatus(currentModelState, consumerChain) == TIMEDOUT_STATUS { expectError = true driver.DeliverPacketToConsumer(ChainId(consumerChain), expectError) @@ -314,7 +316,7 @@ func RunItfTrace(t *testing.T, path string) { t.Log("DeliverVscMaturedPacket", consumerChain) var expectError bool - if ConsumerStatus(currentModelState, consumerChain) == "timedout" { + if ConsumerStatus(currentModelState, consumerChain) == TIMEDOUT_STATUS { expectError = true // expectError is true, because we expect the consumer to have timed out. // the call will fail if there is no error From 7940d0f1f2e1165f21a3f3c57431f18aefcf8231 Mon Sep 17 00:00:00 2001 From: Philip Offtermatt Date: Mon, 18 Dec 2023 11:47:27 +0100 Subject: [PATCH 111/111] Lengthen retention to 6 days --- .github/workflows/test.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 8c1ec7d604..6c02a4572a 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -131,7 +131,7 @@ jobs: with: name: mbt-traces path: tests/mbt/driver/traces - retention-days: 2 + retention-days: 6 # to not clog our cloud storage too much, we retain only for a few days repo-analysis: runs-on: ubuntu-latest